@shipfox/react-ui 0.28.0 → 0.30.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/dashboard/pages/analytics-page.js +9 -15
- package/dist/components/date-picker/date-picker.js +1 -0
- package/dist/components/index.d.ts +1 -0
- package/dist/components/index.js +1 -0
- package/dist/components/shipql-editor/index.d.ts +3 -0
- package/dist/components/shipql-editor/index.js +3 -0
- package/dist/components/shipql-editor/lexical/handle-arrow-right-from-leaf.d.ts +9 -0
- package/dist/components/shipql-editor/lexical/handle-arrow-right-from-leaf.js +46 -0
- package/dist/components/shipql-editor/lexical/leaf-close-overlay.d.ts +2 -0
- package/dist/components/shipql-editor/lexical/leaf-close-overlay.js +110 -0
- package/dist/components/shipql-editor/lexical/on-blur-plugin.d.ts +7 -0
- package/dist/components/shipql-editor/lexical/on-blur-plugin.js +27 -0
- package/dist/components/shipql-editor/lexical/on-text-change-plugin.d.ts +6 -0
- package/dist/components/shipql-editor/lexical/on-text-change-plugin.js +21 -0
- package/dist/components/shipql-editor/lexical/shipql-leaf-node.d.ts +31 -0
- package/dist/components/shipql-editor/lexical/shipql-leaf-node.js +124 -0
- package/dist/components/shipql-editor/lexical/shipql-plugin.d.ts +9 -0
- package/dist/components/shipql-editor/lexical/shipql-plugin.js +285 -0
- package/dist/components/shipql-editor/shipql-editor-inner.d.ts +3 -0
- package/dist/components/shipql-editor/shipql-editor-inner.js +103 -0
- package/dist/components/shipql-editor/shipql-editor.d.ts +21 -0
- package/dist/components/shipql-editor/shipql-editor.js +67 -0
- package/dist/components/table/table.stories.data.js +10 -5
- package/dist/styles.css +1 -1
- package/index.css +1051 -0
- package/package.json +10 -7
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@shipfox/react-ui",
|
|
3
3
|
"license": "MIT",
|
|
4
|
-
"version": "0.
|
|
4
|
+
"version": "0.30.0",
|
|
5
5
|
"private": false,
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"types": "dist/index.d.ts",
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"dist/**/*.js",
|
|
12
12
|
"dist/**/*.d.ts",
|
|
13
13
|
"dist/styles.css",
|
|
14
|
-
"
|
|
14
|
+
"index.css",
|
|
15
15
|
"README.md",
|
|
16
16
|
"LICENSE"
|
|
17
17
|
],
|
|
@@ -20,9 +20,9 @@
|
|
|
20
20
|
"types": "./dist/index.d.ts",
|
|
21
21
|
"default": "./dist/index.js"
|
|
22
22
|
},
|
|
23
|
-
"./
|
|
24
|
-
"
|
|
25
|
-
"default": "./
|
|
23
|
+
"./index.css": {
|
|
24
|
+
"style": "./index.css",
|
|
25
|
+
"default": "./index.css"
|
|
26
26
|
},
|
|
27
27
|
"./dist/styles.css": "./dist/styles.css"
|
|
28
28
|
},
|
|
@@ -51,7 +51,7 @@
|
|
|
51
51
|
"clsx": "^2.1.1",
|
|
52
52
|
"framer-motion": "^12.23.24",
|
|
53
53
|
"gsap": "^3.13.0",
|
|
54
|
-
"lucide-react": "^0.
|
|
54
|
+
"lucide-react": "^0.575.0",
|
|
55
55
|
"react-day-picker": "^9.5.1",
|
|
56
56
|
"recharts": "^3.1.0",
|
|
57
57
|
"shiki": "^3.15.0",
|
|
@@ -59,7 +59,10 @@
|
|
|
59
59
|
"sonner": "^2.0.7",
|
|
60
60
|
"tailwind-merge": "^3.2.0",
|
|
61
61
|
"vaul": "^1.1.1",
|
|
62
|
-
"@swc/helpers": "^0.5.17"
|
|
62
|
+
"@swc/helpers": "^0.5.17",
|
|
63
|
+
"lexical": "^0.40.0",
|
|
64
|
+
"@lexical/react": "^0.40.0",
|
|
65
|
+
"@shipfox/shipql-parser": "0.1.0"
|
|
63
66
|
},
|
|
64
67
|
"peerDependencies": {
|
|
65
68
|
"@tanstack/react-table": "^8.19.3",
|