@lax-wp/design-system 0.4.13 → 0.5.2
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/design-system.css +1 -1
- package/dist/index.es.js +18432 -64074
- package/dist/index.es.js.map +1 -0
- package/dist/index.umd.js +35 -337
- package/dist/index.umd.js.map +1 -0
- package/package.json +82 -33
package/package.json
CHANGED
|
@@ -1,17 +1,21 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lax-wp/design-system",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "0.
|
|
4
|
+
"version": "0.5.2",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.umd.js",
|
|
7
7
|
"module": "dist/index.es.js",
|
|
8
8
|
"types": "dist/index.d.ts",
|
|
9
|
+
"sideEffects": [
|
|
10
|
+
"**/*.css"
|
|
11
|
+
],
|
|
9
12
|
"exports": {
|
|
10
13
|
".": {
|
|
11
14
|
"types": "./dist/index.d.ts",
|
|
12
15
|
"import": "./dist/index.es.js",
|
|
13
16
|
"require": "./dist/index.umd.js"
|
|
14
|
-
}
|
|
17
|
+
},
|
|
18
|
+
"./styles.css": "./dist/style.css"
|
|
15
19
|
},
|
|
16
20
|
"files": [
|
|
17
21
|
"dist"
|
|
@@ -34,65 +38,91 @@
|
|
|
34
38
|
"format:check": "prettier --check \"src/**/*.{ts,tsx,js,jsx,json,css,md}\""
|
|
35
39
|
},
|
|
36
40
|
"dependencies": {
|
|
37
|
-
"@codeium/react-code-editor": "^1.0.12",
|
|
38
|
-
"@emotion/styled": "^11.14.1",
|
|
39
|
-
"@monaco-editor/react": "^4.6.0",
|
|
40
|
-
"@mui/icons-material": "^7.3.1",
|
|
41
|
-
"@mui/material": "^7.3.1",
|
|
42
|
-
"@storybook/addon-actions": "^9.0.8",
|
|
43
|
-
"antd": "^5.27.1",
|
|
44
|
-
"array-move": "^2.2.2",
|
|
45
41
|
"classnames": "^2.5.1",
|
|
46
42
|
"clsx": "^2.1.1",
|
|
47
|
-
"country-flag-icons": "^1.5.13",
|
|
48
|
-
"diff": "^8.0.2",
|
|
49
|
-
"immer": "^10.1.1",
|
|
50
|
-
"lodash": "^4.17.23",
|
|
51
|
-
"lodash.debounce": "^4.0.8",
|
|
52
|
-
"lottie-web": "^5.13.0",
|
|
53
|
-
"re-resizable": "^6.11.2",
|
|
54
|
-
"react-contenteditable": "^3.3.7",
|
|
55
|
-
"react-custom-scrollbars-2": "^4.5.0",
|
|
56
|
-
"react-debounce-input": "^3.3.0",
|
|
57
|
-
"react-easy-sort": "^1.8.0",
|
|
58
|
-
"react-full-screen": "^1.1.1",
|
|
59
|
-
"react-icons": "^5.5.0",
|
|
60
|
-
"react-markdown": "^10.1.0",
|
|
61
|
-
"react-popper-tooltip": "^4.4.2",
|
|
62
|
-
"react-select": "^5.7.3",
|
|
63
|
-
"react-toastify": "^9.1.3",
|
|
64
|
-
"react-window": "^1.8.11",
|
|
65
|
-
"remark-gfm": "^4.0.1",
|
|
66
|
-
"styled-components": "^6.1.9",
|
|
67
43
|
"tailwind-merge": "^3.3.1"
|
|
68
44
|
},
|
|
69
45
|
"peerDependencies": {
|
|
46
|
+
"@codeium/react-code-editor": "^1.0.0",
|
|
70
47
|
"@dnd-kit/core": "^6.0.0",
|
|
71
|
-
"@dnd-kit/sortable": "7.0.
|
|
48
|
+
"@dnd-kit/sortable": "^7.0.0",
|
|
49
|
+
"@emotion/styled": "^11.0.0",
|
|
50
|
+
"@monaco-editor/react": "^4.0.0",
|
|
51
|
+
"@mui/icons-material": "^6.0.0 || ^7.0.0",
|
|
52
|
+
"@mui/material": "^6.0.0 || ^7.0.0",
|
|
53
|
+
"antd": "^5.0.0",
|
|
54
|
+
"country-flag-icons": "^1.5.0",
|
|
55
|
+
"diff": "^8.0.0",
|
|
72
56
|
"framer-motion": "^10.0.0 || ^11.0.0 || ^12.0.0",
|
|
57
|
+
"immer": "^10.0.0",
|
|
58
|
+
"lodash": "^4.17.0",
|
|
59
|
+
"lottie-web": "^5.0.0",
|
|
60
|
+
"re-resizable": "^6.0.0",
|
|
73
61
|
"react": "^18.2.0 || ^19.0.0",
|
|
62
|
+
"react-contenteditable": "^3.0.0",
|
|
63
|
+
"react-custom-scrollbars-2": "^4.0.0",
|
|
64
|
+
"react-debounce-input": "^3.0.0",
|
|
74
65
|
"react-dom": "^18.2.0 || ^19.0.0",
|
|
66
|
+
"react-easy-sort": "^1.0.0",
|
|
67
|
+
"react-full-screen": "^1.0.0",
|
|
75
68
|
"react-helmet-async": "^1.3.0",
|
|
76
69
|
"react-i18next": "^14.0.0",
|
|
77
|
-
"react-
|
|
78
|
-
"react-
|
|
70
|
+
"react-icons": "^5.0.0",
|
|
71
|
+
"react-markdown": "^9.0.0 || ^10.0.0",
|
|
72
|
+
"react-popper-tooltip": "^4.0.0",
|
|
73
|
+
"react-router-dom": "^6.0.0",
|
|
74
|
+
"react-select": "^5.0.0",
|
|
75
|
+
"react-toastify": "^9.0.0",
|
|
76
|
+
"react-window": "^1.8.0",
|
|
77
|
+
"remark-gfm": "^4.0.0",
|
|
78
|
+
"styled-components": "^6.0.0"
|
|
79
|
+
},
|
|
80
|
+
"peerDependenciesMeta": {
|
|
81
|
+
"@codeium/react-code-editor": {
|
|
82
|
+
"optional": true
|
|
83
|
+
},
|
|
84
|
+
"@monaco-editor/react": {
|
|
85
|
+
"optional": true
|
|
86
|
+
},
|
|
87
|
+
"lottie-web": {
|
|
88
|
+
"optional": true
|
|
89
|
+
},
|
|
90
|
+
"react-markdown": {
|
|
91
|
+
"optional": true
|
|
92
|
+
},
|
|
93
|
+
"remark-gfm": {
|
|
94
|
+
"optional": true
|
|
95
|
+
},
|
|
96
|
+
"diff": {
|
|
97
|
+
"optional": true
|
|
98
|
+
}
|
|
79
99
|
},
|
|
80
100
|
"devDependencies": {
|
|
81
101
|
"@chromatic-com/storybook": "^4.0.1",
|
|
102
|
+
"@codeium/react-code-editor": "^1.0.12",
|
|
82
103
|
"@dnd-kit/core": "^6.0.8",
|
|
83
104
|
"@dnd-kit/sortable": "7.0.2",
|
|
105
|
+
"@emotion/styled": "^11.14.1",
|
|
84
106
|
"@eslint/js": "^9.30.1",
|
|
107
|
+
"@monaco-editor/react": "^4.6.0",
|
|
108
|
+
"@mui/icons-material": "^7.3.1",
|
|
109
|
+
"@mui/material": "^7.3.1",
|
|
85
110
|
"@storybook/addon-a11y": "^9.0.18",
|
|
111
|
+
"@storybook/addon-actions": "^9.0.8",
|
|
86
112
|
"@storybook/addon-docs": "^9.0.18",
|
|
87
113
|
"@storybook/addon-vitest": "^9.0.18",
|
|
88
114
|
"@storybook/react-vite": "^9.0.18",
|
|
115
|
+
"@types/lodash": "^4.17.0",
|
|
89
116
|
"@types/react": "^18.2.0",
|
|
90
117
|
"@types/react-dom": "^18.2.0",
|
|
91
118
|
"@types/react-window": "^1.8.8",
|
|
92
119
|
"@vitejs/plugin-react": "^4.6.0",
|
|
93
120
|
"@vitest/browser": "^3.2.4",
|
|
94
121
|
"@vitest/coverage-v8": "^3.2.4",
|
|
122
|
+
"antd": "^5.27.1",
|
|
95
123
|
"autoprefixer": "^10.4.19",
|
|
124
|
+
"country-flag-icons": "^1.5.13",
|
|
125
|
+
"diff": "^8.0.2",
|
|
96
126
|
"eslint": "^9.30.1",
|
|
97
127
|
"eslint-plugin-react-hooks": "^5.2.0",
|
|
98
128
|
"eslint-plugin-react-refresh": "^0.4.20",
|
|
@@ -100,13 +130,32 @@
|
|
|
100
130
|
"framer-motion": "^12.23.12",
|
|
101
131
|
"globals": "^16.3.0",
|
|
102
132
|
"i18next": "^25.6.0",
|
|
133
|
+
"immer": "^10.1.1",
|
|
134
|
+
"lodash": "^4.17.23",
|
|
135
|
+
"lottie-web": "^5.13.0",
|
|
103
136
|
"playwright": "^1.54.1",
|
|
104
137
|
"postcss": "^8.4.47",
|
|
105
138
|
"prettier": "^3.7.1",
|
|
139
|
+
"re-resizable": "^6.11.2",
|
|
106
140
|
"react": "^18.2.0",
|
|
141
|
+
"react-contenteditable": "^3.3.7",
|
|
142
|
+
"react-custom-scrollbars-2": "^4.5.0",
|
|
143
|
+
"react-debounce-input": "^3.3.0",
|
|
107
144
|
"react-dom": "^18.2.0",
|
|
145
|
+
"react-easy-sort": "^1.8.0",
|
|
146
|
+
"react-full-screen": "^1.1.1",
|
|
147
|
+
"react-helmet-async": "^1.3.0",
|
|
108
148
|
"react-i18next": "^16.1.1",
|
|
149
|
+
"react-icons": "^5.5.0",
|
|
150
|
+
"react-markdown": "^10.1.0",
|
|
151
|
+
"react-popper-tooltip": "^4.4.2",
|
|
152
|
+
"react-router-dom": "^6.30.3",
|
|
153
|
+
"react-select": "^5.7.3",
|
|
154
|
+
"react-toastify": "^9.1.3",
|
|
155
|
+
"react-window": "^1.8.11",
|
|
156
|
+
"remark-gfm": "^4.0.1",
|
|
109
157
|
"storybook": "^9.0.18",
|
|
158
|
+
"styled-components": "^6.1.9",
|
|
110
159
|
"tailwindcss": "^3.4.13",
|
|
111
160
|
"typescript": "^5.6.3",
|
|
112
161
|
"typescript-eslint": "^8.35.1",
|