@lax-wp/design-system 0.2.12 → 0.3.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/dist/components/button/Button.d.ts +25 -0
- package/dist/components/buttons/more-button/MoreButton.d.ts +58 -0
- package/dist/components/buttons/more-button/index.d.ts +2 -0
- package/dist/components/buttons/tab-drag-overlay/TabDragOverlay.d.ts +12 -0
- package/dist/components/data-display/resizable-sidebar/ResizableSidebar.d.ts +0 -6
- package/dist/components/feedback/confirmation-modal/ConfirmationModal.d.ts +56 -0
- package/dist/components/feedback/toast/Toast.d.ts +1 -1
- package/dist/components/navigation/tab-switch/Children.d.ts +3 -0
- package/dist/components/navigation/tab-switch/TabSwitch.d.ts +11 -0
- package/dist/components/navigation/tab-switch/index.d.ts +4 -0
- package/dist/components/navigation/tab-switch/types.d.ts +51 -0
- package/dist/components/navigation/tab-switch/useResolveTo.d.ts +2 -0
- package/dist/components/navigation/tabs/DropableWrapper.d.ts +27 -0
- package/dist/components/navigation/tabs/SortableTab.d.ts +27 -0
- package/dist/components/navigation/tabs/Tabs.d.ts +155 -0
- package/dist/components/navigation/tabs/index.d.ts +5 -0
- package/dist/components/navigation/tabs/types.d.ts +108 -0
- package/dist/index.d.ts +16 -4
- package/dist/index.es.js +32335 -21439
- package/dist/index.umd.js +145 -80
- package/package.json +12 -2
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lax-wp/design-system",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "0.
|
|
4
|
+
"version": "0.3.0",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.umd.js",
|
|
7
7
|
"module": "dist/index.es.js",
|
|
@@ -33,11 +33,15 @@
|
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
35
|
"@codeium/react-code-editor": "^1.0.12",
|
|
36
|
+
"@dnd-kit/core": "^6.0.8",
|
|
37
|
+
"@dnd-kit/sortable": "^9.0.0",
|
|
38
|
+
"@dnd-kit/utilities": "^3.2.2",
|
|
36
39
|
"@emotion/styled": "^11.14.1",
|
|
37
40
|
"@monaco-editor/react": "^4.6.0",
|
|
38
41
|
"@mui/icons-material": "^7.3.1",
|
|
39
42
|
"@storybook/addon-actions": "^9.0.8",
|
|
40
43
|
"antd": "^5.27.0",
|
|
44
|
+
"array-move": "^4.0.0",
|
|
41
45
|
"classnames": "^2.5.1",
|
|
42
46
|
"diff": "^8.0.2",
|
|
43
47
|
"immer": "^10.1.1",
|
|
@@ -52,7 +56,9 @@
|
|
|
52
56
|
"peerDependencies": {
|
|
53
57
|
"framer-motion": "^10.0.0 || ^11.0.0 || ^12.0.0",
|
|
54
58
|
"react": "^18.2.0 || ^19.0.0",
|
|
55
|
-
"react-dom": "^18.2.0 || ^19.0.0"
|
|
59
|
+
"react-dom": "^18.2.0 || ^19.0.0",
|
|
60
|
+
"react-i18next": "^14.0.0",
|
|
61
|
+
"react-router-dom": "^6.0.0"
|
|
56
62
|
},
|
|
57
63
|
"devDependencies": {
|
|
58
64
|
"@chromatic-com/storybook": "^4.0.1",
|
|
@@ -63,6 +69,7 @@
|
|
|
63
69
|
"@storybook/react-vite": "^9.0.18",
|
|
64
70
|
"@types/react": "^18.2.0",
|
|
65
71
|
"@types/react-dom": "^18.2.0",
|
|
72
|
+
"@types/react-router-dom": "^5.3.3",
|
|
66
73
|
"@vitejs/plugin-react": "^4.6.0",
|
|
67
74
|
"@vitest/browser": "^3.2.4",
|
|
68
75
|
"@vitest/coverage-v8": "^3.2.4",
|
|
@@ -73,10 +80,13 @@
|
|
|
73
80
|
"eslint-plugin-storybook": "^9.0.18",
|
|
74
81
|
"framer-motion": "^12.23.12",
|
|
75
82
|
"globals": "^16.3.0",
|
|
83
|
+
"i18next": "^25.6.0",
|
|
76
84
|
"playwright": "^1.54.1",
|
|
77
85
|
"postcss": "^8.4.47",
|
|
78
86
|
"react": "^18.2.0",
|
|
79
87
|
"react-dom": "^18.2.0",
|
|
88
|
+
"react-i18next": "^16.1.1",
|
|
89
|
+
"react-router-dom": "^7.9.4",
|
|
80
90
|
"storybook": "^9.0.18",
|
|
81
91
|
"tailwindcss": "^3.4.13",
|
|
82
92
|
"typescript": "^5.6.3",
|