@aiready/components 0.13.3 → 0.13.5
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/package.json +88 -25
package/package.json
CHANGED
|
@@ -1,35 +1,98 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aiready/components",
|
|
3
|
-
"version": "0.13.
|
|
3
|
+
"version": "0.13.5",
|
|
4
4
|
"description": "Unified shared components library (UI, charts, hooks, utilities) for AIReady",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
7
7
|
"types": "./dist/index.d.ts",
|
|
8
8
|
"exports": {
|
|
9
|
-
".":
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
"./
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
"./
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
"./
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
"./
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
"./
|
|
9
|
+
".": {
|
|
10
|
+
"types": "./dist/index.d.ts",
|
|
11
|
+
"import": "./dist/index.js"
|
|
12
|
+
},
|
|
13
|
+
"./button": {
|
|
14
|
+
"types": "./dist/components/button.d.ts",
|
|
15
|
+
"import": "./dist/components/button.js"
|
|
16
|
+
},
|
|
17
|
+
"./card": {
|
|
18
|
+
"types": "./dist/components/card.d.ts",
|
|
19
|
+
"import": "./dist/components/card.js"
|
|
20
|
+
},
|
|
21
|
+
"./input": {
|
|
22
|
+
"types": "./dist/components/input.d.ts",
|
|
23
|
+
"import": "./dist/components/input.js"
|
|
24
|
+
},
|
|
25
|
+
"./label": {
|
|
26
|
+
"types": "./dist/components/label.d.ts",
|
|
27
|
+
"import": "./dist/components/label.js"
|
|
28
|
+
},
|
|
29
|
+
"./badge": {
|
|
30
|
+
"types": "./dist/components/badge.d.ts",
|
|
31
|
+
"import": "./dist/components/badge.js"
|
|
32
|
+
},
|
|
33
|
+
"./container": {
|
|
34
|
+
"types": "./dist/components/container.d.ts",
|
|
35
|
+
"import": "./dist/components/container.js"
|
|
36
|
+
},
|
|
37
|
+
"./grid": {
|
|
38
|
+
"types": "./dist/components/grid.d.ts",
|
|
39
|
+
"import": "./dist/components/grid.js"
|
|
40
|
+
},
|
|
41
|
+
"./stack": {
|
|
42
|
+
"types": "./dist/components/stack.d.ts",
|
|
43
|
+
"import": "./dist/components/stack.js"
|
|
44
|
+
},
|
|
45
|
+
"./separator": {
|
|
46
|
+
"types": "./dist/components/separator.d.ts",
|
|
47
|
+
"import": "./dist/components/separator.js"
|
|
48
|
+
},
|
|
49
|
+
"./checkbox": {
|
|
50
|
+
"types": "./dist/components/checkbox.d.ts",
|
|
51
|
+
"import": "./dist/components/checkbox.js"
|
|
52
|
+
},
|
|
53
|
+
"./radio-group": {
|
|
54
|
+
"types": "./dist/components/radio-group.d.ts",
|
|
55
|
+
"import": "./dist/components/radio-group.js"
|
|
56
|
+
},
|
|
57
|
+
"./switch": {
|
|
58
|
+
"types": "./dist/components/switch.d.ts",
|
|
59
|
+
"import": "./dist/components/switch.js"
|
|
60
|
+
},
|
|
61
|
+
"./textarea": {
|
|
62
|
+
"types": "./dist/components/textarea.d.ts",
|
|
63
|
+
"import": "./dist/components/textarea.js"
|
|
64
|
+
},
|
|
65
|
+
"./select": {
|
|
66
|
+
"types": "./dist/components/select.d.ts",
|
|
67
|
+
"import": "./dist/components/select.js"
|
|
68
|
+
},
|
|
69
|
+
"./utils/cn": {
|
|
70
|
+
"types": "./dist/utils/cn.d.ts",
|
|
71
|
+
"import": "./dist/utils/cn.js"
|
|
72
|
+
},
|
|
73
|
+
"./utils/colors": {
|
|
74
|
+
"types": "./dist/utils/colors.d.ts",
|
|
75
|
+
"import": "./dist/utils/colors.js"
|
|
76
|
+
},
|
|
77
|
+
"./utils/formatters": {
|
|
78
|
+
"types": "./dist/utils/formatters.d.ts",
|
|
79
|
+
"import": "./dist/utils/formatters.js"
|
|
80
|
+
},
|
|
81
|
+
"./hooks/useDebounce": {
|
|
82
|
+
"types": "./dist/hooks/useDebounce.d.ts",
|
|
83
|
+
"import": "./dist/hooks/useDebounce.js"
|
|
84
|
+
},
|
|
85
|
+
"./hooks/useD3": {
|
|
86
|
+
"types": "./dist/hooks/useD3.d.ts",
|
|
87
|
+
"import": "./dist/hooks/useD3.js"
|
|
88
|
+
},
|
|
89
|
+
"./hooks/useForceSimulation": {
|
|
90
|
+
"types": "./dist/hooks/useForceSimulation.d.ts",
|
|
91
|
+
"import": "./dist/hooks/useForceSimulation.js"
|
|
92
|
+
},
|
|
30
93
|
"./charts/ForceDirectedGraph": {
|
|
31
|
-
"
|
|
32
|
-
"
|
|
94
|
+
"types": "./dist/charts/ForceDirectedGraph.d.ts",
|
|
95
|
+
"import": "./dist/charts/ForceDirectedGraph.js"
|
|
33
96
|
},
|
|
34
97
|
"./tailwind-config": "./tailwind.config.js"
|
|
35
98
|
},
|
|
@@ -65,7 +128,7 @@
|
|
|
65
128
|
"framer-motion": "^12.35.0",
|
|
66
129
|
"lucide-react": "^0.577.0",
|
|
67
130
|
"tailwind-merge": "^3.0.0",
|
|
68
|
-
"@aiready/core": "0.23.
|
|
131
|
+
"@aiready/core": "0.23.6"
|
|
69
132
|
},
|
|
70
133
|
"devDependencies": {
|
|
71
134
|
"@testing-library/jest-dom": "^6.6.5",
|