@livechat/design-system-react-components 1.0.0-alpha.11 → 1.0.0-alpha.12
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/dist/dsrc.cjs.js +1 -1
- package/dist/dsrc.es.js +395 -332
- package/dist/dsrc.umd.js +1 -1
- package/dist/src/components/Alert/Alert.d.ts +3 -7
- package/dist/src/components/Icon/Icon.d.ts +6 -62
- package/dist/src/components/Icon/index.d.ts +1 -1
- package/dist/src/components/Modal/ModalPortal.d.ts +1 -1
- package/dist/src/components/Progress/ProgressBar.d.ts +9 -0
- package/dist/src/components/Progress/constants.d.ts +2 -10
- package/dist/src/components/Progress/index.d.ts +1 -0
- package/dist/src/components/PromoBanner/PromoBanner.d.ts +0 -6
- package/dist/src/components/Search/Search.d.ts +16 -0
- package/dist/src/components/Search/index.d.ts +1 -0
- package/dist/src/components/Switch/Switch.d.ts +1 -8
- package/dist/src/components/Toast/Toast.d.ts +2 -8
- package/dist/src/components/Toast/ToastWrapper.d.ts +2 -9
- package/dist/src/index.d.ts +1 -0
- package/dist/style.css +1 -1
- package/dist/themes/dark.css +129 -0
- package/dist/themes/dark.css.map +1 -0
- package/dist/themes/legacy.css +130 -0
- package/dist/themes/legacy.css.map +1 -0
- package/dist/themes/light.css +129 -0
- package/dist/themes/light.css.map +1 -0
- package/package.json +13 -8
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@livechat/design-system-react-components",
|
|
3
|
-
"version": "1.0.0-alpha.
|
|
3
|
+
"version": "1.0.0-alpha.12",
|
|
4
4
|
"description": "",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -35,10 +35,13 @@
|
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
37
|
"@babel/core": "^7.17.7",
|
|
38
|
-
"@storybook/addon-actions": "^6.4.
|
|
39
|
-
"@storybook/addon-
|
|
40
|
-
"@storybook/addon-
|
|
41
|
-
"@storybook/
|
|
38
|
+
"@storybook/addon-actions": "^6.4.22",
|
|
39
|
+
"@storybook/addon-docs": "^6.4.22",
|
|
40
|
+
"@storybook/addon-essentials": "^6.4.22",
|
|
41
|
+
"@storybook/addon-links": "^6.4.22",
|
|
42
|
+
"@storybook/builder-vite": "^0.1.28",
|
|
43
|
+
"@storybook/core-common": "^6.4.22",
|
|
44
|
+
"@storybook/react": "^6.4.22",
|
|
42
45
|
"@testing-library/jest-dom": "^5.16.2",
|
|
43
46
|
"@testing-library/react": "^12.1.4",
|
|
44
47
|
"@testing-library/user-event": "^13.5.0",
|
|
@@ -55,14 +58,16 @@
|
|
|
55
58
|
"react-dom": "^17.0.2",
|
|
56
59
|
"sass": "^1.49.9",
|
|
57
60
|
"storybook-addon-themes": "^6.1.0",
|
|
58
|
-
"storybook-builder-vite": "^0.1.20",
|
|
59
61
|
"typescript": "^4.5.4",
|
|
60
62
|
"vite": "^2.8.0",
|
|
61
63
|
"vite-plugin-dts": "^0.9.10",
|
|
62
64
|
"vitest": "^0.6.3"
|
|
63
65
|
},
|
|
64
66
|
"dependencies": {
|
|
65
|
-
"@
|
|
67
|
+
"@emotion/css": "^11.9.0",
|
|
68
|
+
"@floating-ui/react-dom": "^0.7.0",
|
|
69
|
+
"@livechat/data-utils": "^0.2.16",
|
|
70
|
+
"@livechat/design-system-icons": "^1.0.0-alpha.12",
|
|
66
71
|
"@popperjs/core": "^2.11.2",
|
|
67
72
|
"clsx": "^1.1.1",
|
|
68
73
|
"lodash.debounce": "^4.0.8",
|
|
@@ -71,5 +76,5 @@
|
|
|
71
76
|
"react-popper": "^2.2.5",
|
|
72
77
|
"react-transition-group": "^4.4.2"
|
|
73
78
|
},
|
|
74
|
-
"gitHead": "
|
|
79
|
+
"gitHead": "091a933059ed675eea7cb11013a3160a603fd2f1"
|
|
75
80
|
}
|