RELEASE;New version 0.0.73

This commit is contained in:
CI 2020-05-29 10:04:19 +00:00
parent 055c4f9068
commit f270eedc06
11 changed files with 36 additions and 36 deletions

View file

@ -3,5 +3,5 @@
"modules/*" "modules/*"
], ],
"npmClient": "npm", "npmClient": "npm",
"version": "0.0.72" "version": "0.0.73"
} }

View file

@ -1,6 +1,6 @@
{ {
"name": "documentation", "name": "documentation",
"version": "0.0.72", "version": "0.0.73",
"description": "", "description": "",
"author": "romanjaros <jarosr93@gmail.com>", "author": "romanjaros <jarosr93@gmail.com>",
"license": "ISC", "license": "ISC",
@ -10,13 +10,13 @@
"build": "webpack --mode production" "build": "webpack --mode production"
}, },
"dependencies": { "dependencies": {
"@romanjaros/treejs-api": "0.0.72", "@romanjaros/treejs-api": "^0.0.73",
"@romanjaros/treejs-auth": "0.0.72", "@romanjaros/treejs-auth": "^0.0.73",
"@romanjaros/treejs-components": "0.0.72", "@romanjaros/treejs-components": "^0.0.73",
"@romanjaros/treejs-constants": "0.0.72", "@romanjaros/treejs-constants": "^0.0.73",
"@romanjaros/treejs-forms": "0.0.72", "@romanjaros/treejs-forms": "^0.0.73",
"@romanjaros/treejs-localization": "0.0.72", "@romanjaros/treejs-localization": "^0.0.73",
"@romanjaros/treejs-types": "0.0.72", "@romanjaros/treejs-types": "^0.0.73",
"@romanjaros/treejs-utils": "0.0.72" "@romanjaros/treejs-utils": "^0.0.73"
} }
} }

View file

@ -326,7 +326,7 @@
} }
] ]
}, },
"defaultValue": "styled.div.attrs({\r\n\tclassName: 'Grid',\r\n})<IGrid>`\r\n\tdisplay: flex;\r\n\tflex-wrap: wrap;\r\n\r\n\tjustify-content: ${p => p.horizontalAlign};\r\n\r\n\tmargin-bottom: 30px;\r\n`" "defaultValue": "styled.div.attrs({\n\tclassName: 'Grid',\n})<IGrid>`\n\tdisplay: flex;\n\tflex-wrap: wrap;\n\n\tjustify-content: ${p => p.horizontalAlign};\n\n\tmargin-bottom: 30px;\n`"
}, },
{ {
"id": 15, "id": 15,
@ -437,7 +437,7 @@
} }
] ]
}, },
"defaultValue": "styled.div.attrs({\r\n\tclassName: 'GridCol',\r\n})<IGridCol>`\r\n\tmargin: 5px;\r\n\r\n\talign-self: flex-start;\r\n\r\n\twidth: calc(100% - 10px);\r\n\r\n\t@media only screen and (min-width: ${p => p.theme.tabletScreenSize}px) {\r\n\t\twidth: calc(${p => (100 / 12) * (p.size < 4 ? 4 : p.size)}% - 10px);\r\n\t}\r\n\r\n\t@media only screen and (min-width: ${p => p.theme.mediumScreenSize}px) {\r\n\t\twidth: calc(${p => (100 / 12) * (p.size < 4 ? 4 : p.size)}% - 10px);\r\n\t}\r\n\r\n\t@media only screen and (min-width: ${p => p.theme.largeScreenSize}px) {\r\n\t\twidth: calc(${p => (100 / 12) * p.size}% - 10px);\r\n\t}\r\n\r\n\t/* @media only screen and (min-width: ${p => p.theme.extraLargeScreenSize}px) {\r\n\t\tmin-width: 100px;\r\n\t\twidth: calc(${p => (100 / 12) * p.size}% - 10%);\r\n\t} */\r\n`" "defaultValue": "styled.div.attrs({\n\tclassName: 'GridCol',\n})<IGridCol>`\n\tmargin: 5px;\n\n\talign-self: flex-start;\n\n\twidth: calc(100% - 10px);\n\n\t@media only screen and (min-width: ${p => p.theme.tabletScreenSize}px) {\n\t\twidth: calc(${p => (100 / 12) * (p.size < 4 ? 4 : p.size)}% - 10px);\n\t}\n\n\t@media only screen and (min-width: ${p => p.theme.mediumScreenSize}px) {\n\t\twidth: calc(${p => (100 / 12) * (p.size < 4 ? 4 : p.size)}% - 10px);\n\t}\n\n\t@media only screen and (min-width: ${p => p.theme.largeScreenSize}px) {\n\t\twidth: calc(${p => (100 / 12) * p.size}% - 10px);\n\t}\n\n\t/* @media only screen and (min-width: ${p => p.theme.extraLargeScreenSize}px) {\n\t\tmin-width: 100px;\n\t\twidth: calc(${p => (100 / 12) * p.size}% - 10%);\n\t} */\n`"
} }
], ],
"groups": [ "groups": [

View file

@ -1,6 +1,6 @@
{ {
"name": "@romanjaros/treejs-api", "name": "@romanjaros/treejs-api",
"version": "0.0.72", "version": "0.0.73",
"description": "", "description": "",
"author": "romanjaros <jarosr93@gmail.com>", "author": "romanjaros <jarosr93@gmail.com>",
"license": "ISC", "license": "ISC",
@ -10,12 +10,12 @@
"ci:publish": "cp package.json dist && cd dist/ && npm publish && rm package.json" "ci:publish": "cp package.json dist && cd dist/ && npm publish && rm package.json"
}, },
"dependencies": { "dependencies": {
"@romanjaros/treejs-constants": "0.0.72", "@romanjaros/treejs-constants": "^0.0.73",
"@romanjaros/treejs-types": "0.0.72", "@romanjaros/treejs-types": "^0.0.73",
"@romanjaros/treejs-utils": "0.0.72" "@romanjaros/treejs-utils": "^0.0.73"
}, },
"devDependencies": { "devDependencies": {
"redux": "4.0.5", "redux": "4.0.5",
"reselect": "4.0.0" "reselect": "4.0.0"
} }
} }

View file

@ -1,6 +1,6 @@
{ {
"name": "@romanjaros/treejs-auth", "name": "@romanjaros/treejs-auth",
"version": "0.0.72", "version": "0.0.73",
"description": "", "description": "",
"author": "romanjaros <jarosr93@gmail.com>", "author": "romanjaros <jarosr93@gmail.com>",
"license": "ISC", "license": "ISC",
@ -10,8 +10,8 @@
"ci:publish": "cp package.json dist && cd dist/ && npm publish && rm package.json" "ci:publish": "cp package.json dist && cd dist/ && npm publish && rm package.json"
}, },
"dependencies": { "dependencies": {
"@romanjaros/treejs-constants": "0.0.72", "@romanjaros/treejs-constants": "^0.0.73",
"@romanjaros/treejs-types": "0.0.72" "@romanjaros/treejs-types": "^0.0.73"
}, },
"peerDependencies": { "peerDependencies": {
"react": "16.13.0", "react": "16.13.0",

View file

@ -1,6 +1,6 @@
{ {
"name": "@romanjaros/treejs-components", "name": "@romanjaros/treejs-components",
"version": "0.0.72", "version": "0.0.73",
"description": "", "description": "",
"author": "romanjaros <jarosr93@gmail.com>", "author": "romanjaros <jarosr93@gmail.com>",
"license": "ISC", "license": "ISC",
@ -10,9 +10,9 @@
"ci:publish": "cp package.json dist && cd dist/ && npm publish && rm package.json" "ci:publish": "cp package.json dist && cd dist/ && npm publish && rm package.json"
}, },
"dependencies": { "dependencies": {
"@romanjaros/treejs-constants": "0.0.72", "@romanjaros/treejs-constants": "^0.0.73",
"@romanjaros/treejs-types": "0.0.72", "@romanjaros/treejs-types": "^0.0.73",
"@romanjaros/treejs-utils": "0.0.72" "@romanjaros/treejs-utils": "^0.0.73"
}, },
"peerDependencies": { "peerDependencies": {
"@fortawesome/fontawesome-svg-core": "1.2.27", "@fortawesome/fontawesome-svg-core": "1.2.27",

View file

@ -1,6 +1,6 @@
{ {
"name": "@romanjaros/treejs-constants", "name": "@romanjaros/treejs-constants",
"version": "0.0.72", "version": "0.0.73",
"description": "", "description": "",
"author": "romanjaros <jarosr93@gmail.com>", "author": "romanjaros <jarosr93@gmail.com>",
"license": "ISC", "license": "ISC",
@ -9,4 +9,4 @@
"build": "tsc --b tsconfig.build.json", "build": "tsc --b tsconfig.build.json",
"ci:publish": "cp package.json dist && cd dist/ && npm publish && rm package.json" "ci:publish": "cp package.json dist && cd dist/ && npm publish && rm package.json"
} }
} }

View file

@ -1,6 +1,6 @@
{ {
"name": "@romanjaros/treejs-forms", "name": "@romanjaros/treejs-forms",
"version": "0.0.72", "version": "0.0.73",
"description": "", "description": "",
"author": "romanjaros <jarosr93@gmail.com>", "author": "romanjaros <jarosr93@gmail.com>",
"license": "ISC", "license": "ISC",
@ -10,9 +10,9 @@
"ci:publish": "cp package.json dist && cd dist/ && npm publish && rm package.json" "ci:publish": "cp package.json dist && cd dist/ && npm publish && rm package.json"
}, },
"dependencies": { "dependencies": {
"@romanjaros/treejs-components": "0.0.72", "@romanjaros/treejs-components": "^0.0.73",
"@romanjaros/treejs-types": "0.0.72", "@romanjaros/treejs-types": "^0.0.73",
"@romanjaros/treejs-utils": "0.0.72" "@romanjaros/treejs-utils": "^0.0.73"
}, },
"devDependencies": { "devDependencies": {
"formik": "2.1.4" "formik": "2.1.4"

View file

@ -1,6 +1,6 @@
{ {
"name": "@romanjaros/treejs-localization", "name": "@romanjaros/treejs-localization",
"version": "0.0.72", "version": "0.0.73",
"description": "", "description": "",
"author": "romanjaros <jarosr93@gmail.com>", "author": "romanjaros <jarosr93@gmail.com>",
"license": "ISC", "license": "ISC",

View file

@ -1,6 +1,6 @@
{ {
"name": "@romanjaros/treejs-types", "name": "@romanjaros/treejs-types",
"version": "0.0.72", "version": "0.0.73",
"description": "", "description": "",
"author": "romanjaros <jarosr93@gmail.com>", "author": "romanjaros <jarosr93@gmail.com>",
"license": "ISC", "license": "ISC",
@ -12,4 +12,4 @@
"peerDependencies": { "peerDependencies": {
"react": "16.13.0" "react": "16.13.0"
} }
} }

View file

@ -1,6 +1,6 @@
{ {
"name": "@romanjaros/treejs-utils", "name": "@romanjaros/treejs-utils",
"version": "0.0.72", "version": "0.0.73",
"description": "", "description": "",
"author": "romanjaros <jarosr93@gmail.com>", "author": "romanjaros <jarosr93@gmail.com>",
"license": "ISC", "license": "ISC",