@open-condo/ui 1.16.0 → 1.20.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +18 -2
- package/dist/components/Banner/banner.d.ts +1 -0
- package/dist/components/Banner/banner.d.ts.map +1 -1
- package/dist/components/Button/button.d.ts +1 -8
- package/dist/components/Button/button.d.ts.map +1 -1
- package/dist/components/Carousel/carousel.d.ts +1 -1
- package/dist/components/Checkbox/checkbox.d.ts +1 -1
- package/dist/components/Checkbox/checkbox.d.ts.map +1 -1
- package/dist/components/Markdown/codeWrapper.d.ts +3 -0
- package/dist/components/Markdown/codeWrapper.d.ts.map +1 -0
- package/dist/components/Markdown/index.d.ts +2 -1
- package/dist/components/Markdown/index.d.ts.map +1 -1
- package/dist/components/Markdown/markdown.d.ts.map +1 -1
- package/dist/components/Radio/radio.d.ts +2 -2
- package/dist/components/Radio/radio.d.ts.map +1 -1
- package/dist/components/Select/constants.d.ts +2 -0
- package/dist/components/Select/constants.d.ts.map +1 -0
- package/dist/components/Select/index.d.ts +5 -0
- package/dist/components/Select/index.d.ts.map +1 -0
- package/dist/components/Select/select.d.ts +25 -0
- package/dist/components/Select/select.d.ts.map +1 -0
- package/dist/components/Space/space.d.ts +4 -2
- package/dist/components/Space/space.d.ts.map +1 -1
- package/dist/components/Typography/title.d.ts +1 -1
- package/dist/components/_utils/analytics.d.ts +19 -5
- package/dist/components/_utils/analytics.d.ts.map +1 -1
- package/dist/index.d.ts +3 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +3040 -3027
- package/dist/style-vars/variables.css +161 -0
- package/dist/style-vars/variables.less +158 -0
- package/dist/styles.css +1629 -591
- package/dist/styles.min.css +2 -2
- package/package.json +10 -7
package/package.json
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"React",
|
|
9
9
|
"components"
|
|
10
10
|
],
|
|
11
|
-
"version": "1.
|
|
11
|
+
"version": "1.20.0",
|
|
12
12
|
"repository": {
|
|
13
13
|
"type": "git",
|
|
14
14
|
"url": "git+https://github.com/open-condo-software/condo.git",
|
|
@@ -29,15 +29,14 @@
|
|
|
29
29
|
],
|
|
30
30
|
"scripts": {
|
|
31
31
|
"build:deps": "turbo build --filter=ui^...",
|
|
32
|
-
"build:styles": "find src/tokens -mindepth 1 -not -name 'tokens.json' -delete && node bin/prepare-tokens.js && node bin/buildStyleVars/runner.js --web less",
|
|
32
|
+
"build:styles": "find src/tokens -mindepth 1 -not -name 'tokens.json' -delete && node bin/prepare-tokens.js && node bin/buildStyleVars/runner.js --web less css",
|
|
33
33
|
"build:colors": "find src/colors -mindepth 1 -not -name 'index.ts' -delete && node bin/generate-colors.js",
|
|
34
34
|
"build:tokens": "yarn build:styles && yarn build:colors",
|
|
35
35
|
"build:lib": "webpack --config webpack.prod.js && tsc --project tsconfig.prod.json",
|
|
36
36
|
"build": "yarn build:deps && yarn build:tokens && yarn build:lib",
|
|
37
37
|
"build:sb": "yarn build:deps && yarn build:tokens && build-storybook",
|
|
38
38
|
"dev": "yarn build:deps && yarn build:tokens && start-storybook -p 6006",
|
|
39
|
-
"watch": "yarn build:deps && yarn build:tokens && webpack --config webpack.dev.js"
|
|
40
|
-
"prepack": "yarn install --mode update-lockfile && yarn build"
|
|
39
|
+
"watch": "yarn build:deps && yarn build:tokens && webpack --config webpack.dev.js"
|
|
41
40
|
},
|
|
42
41
|
"files": [
|
|
43
42
|
"dist"
|
|
@@ -50,7 +49,9 @@
|
|
|
50
49
|
"./colors": "./dist/colors/index.js",
|
|
51
50
|
"./src": "./src/index.ts",
|
|
52
51
|
"./src/": "./src/",
|
|
53
|
-
"./dist/": "./dist/"
|
|
52
|
+
"./dist/": "./dist/",
|
|
53
|
+
"./style-vars/css": "./dist/style-vars/variables.css",
|
|
54
|
+
"./style-vars/less": "./dist/style-vars/variables.less"
|
|
54
55
|
},
|
|
55
56
|
"typesVersions": {
|
|
56
57
|
"*": {
|
|
@@ -72,7 +73,7 @@
|
|
|
72
73
|
"@babel/preset-react": "^7.18.6",
|
|
73
74
|
"@babel/preset-typescript": "^7.18.6",
|
|
74
75
|
"@mdx-js/react": "^1.6.22",
|
|
75
|
-
"@open-condo/tsconfig": "1.0.
|
|
76
|
+
"@open-condo/tsconfig": "1.0.2",
|
|
76
77
|
"@storybook/addon-actions": "^6.5.10",
|
|
77
78
|
"@storybook/addon-docs": "^6.5.10",
|
|
78
79
|
"@storybook/addon-essentials": "^6.5.10",
|
|
@@ -90,6 +91,7 @@
|
|
|
90
91
|
"babel-loader": "^8.2.5",
|
|
91
92
|
"chromatic": "^6.9.0",
|
|
92
93
|
"commander": "^9.4.0",
|
|
94
|
+
"copy-webpack-plugin": "^11.0.0",
|
|
93
95
|
"css-loader": "^6.7.1",
|
|
94
96
|
"css-minimizer-webpack-plugin": "^4.0.0",
|
|
95
97
|
"less": "^4.1.3",
|
|
@@ -103,6 +105,7 @@
|
|
|
103
105
|
"quicktype-core": "^6.0.71",
|
|
104
106
|
"react": "^16.13.1",
|
|
105
107
|
"react-dom": "^16.13.1",
|
|
108
|
+
"source-map-loader": "^4.0.1",
|
|
106
109
|
"style-dictionary": "^3.7.1",
|
|
107
110
|
"style-loader": "^3.3.1",
|
|
108
111
|
"token-transformer": "^0.0.27",
|
|
@@ -117,7 +120,7 @@
|
|
|
117
120
|
},
|
|
118
121
|
"dependencies": {
|
|
119
122
|
"@ant-design/icons": "^4.7.0",
|
|
120
|
-
"@open-condo/icons": "1.
|
|
123
|
+
"@open-condo/icons": "1.5.1",
|
|
121
124
|
"antd": "^4.24.3",
|
|
122
125
|
"classnames": "^2.3.2",
|
|
123
126
|
"react-markdown": "^6",
|