@lax-wp/design-system 0.3.87 → 0.3.89
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/data-display/context-menu/ContextMenu.d.ts +42 -0
- package/dist/components/data-display/datatype-icon/DataTypeIcon.d.ts +104 -0
- package/dist/components/data-display/empty-state/NoDataFound.d.ts +27 -0
- package/dist/components/data-display/empty-state/PageNotFound.d.ts +38 -0
- package/dist/components/data-display/empty-state/UserNotFound.d.ts +28 -0
- package/dist/components/data-display/empty-state/index.d.ts +6 -0
- package/dist/components/data-display/json-grid-viewer/AddKeyModal.d.ts +7 -0
- package/dist/components/data-display/json-grid-viewer/JsonGridBulkFloatingBar.d.ts +2 -0
- package/dist/components/data-display/json-grid-viewer/JsonGridCore.d.ts +3 -0
- package/dist/components/data-display/json-grid-viewer/JsonGridViewer.d.ts +47 -0
- package/dist/components/data-display/json-grid-viewer/JsonGridViewerContext.d.ts +4 -0
- package/dist/components/data-display/json-grid-viewer/JsonValueDisplay.d.ts +8 -0
- package/dist/components/data-display/json-grid-viewer/NestedJsonGrid.d.ts +7 -0
- package/dist/components/data-display/json-grid-viewer/hooks.d.ts +6 -0
- package/dist/components/data-display/json-grid-viewer/index.d.ts +12 -0
- package/dist/components/data-display/json-grid-viewer/types.d.ts +64 -0
- package/dist/components/data-display/json-grid-viewer/utils.d.ts +4 -0
- package/dist/components/data-display/lottie-animation/LottieAnimation.d.ts +34 -0
- package/dist/components/data-display/permission-wrapper/PermissionWrapper.d.ts +28 -0
- package/dist/components/forms/file-upload-dragger/FileUploadDragger.d.ts +85 -0
- package/dist/components/forms/file-upload-dragger/icons.d.ts +12 -0
- package/dist/components/user-avatar/NameInitialLogo.d.ts +15 -0
- package/dist/components/user-avatar/UserProfilePic.d.ts +15 -0
- package/dist/components/user-avatar/index.d.ts +4 -0
- package/dist/index.d.ts +20 -0
- package/dist/index.es.js +35626 -26124
- package/dist/index.umd.js +117 -109
- package/package.json +3 -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.3.
|
|
4
|
+
"version": "0.3.89",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.umd.js",
|
|
7
7
|
"module": "dist/index.es.js",
|
|
@@ -52,6 +52,7 @@
|
|
|
52
52
|
"immer": "^10.1.1",
|
|
53
53
|
"lodash": "^4.17.21",
|
|
54
54
|
"lodash.debounce": "^4.0.8",
|
|
55
|
+
"lottie-web": "^5.13.0",
|
|
55
56
|
"re-resizable": "^6.11.2",
|
|
56
57
|
"react-custom-scrollbars-2": "^4.5.0",
|
|
57
58
|
"react-debounce-input": "^3.3.0",
|
|
@@ -71,7 +72,7 @@
|
|
|
71
72
|
"react": "^18.2.0 || ^19.0.0",
|
|
72
73
|
"react-dom": "^18.2.0 || ^19.0.0",
|
|
73
74
|
"react-i18next": "^14.0.0",
|
|
74
|
-
"react-router-dom": "^
|
|
75
|
+
"react-router-dom": "^6.30.3"
|
|
75
76
|
},
|
|
76
77
|
"devDependencies": {
|
|
77
78
|
"@chromatic-com/storybook": "^4.0.1",
|