@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.
Files changed (1) hide show
  1. 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",
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
- ".": "./dist/index.js",
10
- "./button": "./dist/components/button.js",
11
- "./card": "./dist/components/card.js",
12
- "./input": "./dist/components/input.js",
13
- "./label": "./dist/components/label.js",
14
- "./badge": "./dist/components/badge.js",
15
- "./container": "./dist/components/container.js",
16
- "./grid": "./dist/components/grid.js",
17
- "./stack": "./dist/components/stack.js",
18
- "./separator": "./dist/components/separator.js",
19
- "./checkbox": "./dist/components/checkbox.js",
20
- "./radio-group": "./dist/components/radio-group.js",
21
- "./switch": "./dist/components/switch.js",
22
- "./textarea": "./dist/components/textarea.js",
23
- "./select": "./dist/components/select.js",
24
- "./utils/cn": "./dist/utils/cn.js",
25
- "./utils/colors": "./dist/utils/colors.js",
26
- "./utils/formatters": "./dist/utils/formatters.js",
27
- "./hooks/useDebounce": "./dist/hooks/useDebounce.js",
28
- "./hooks/useD3": "./dist/hooks/useD3.js",
29
- "./hooks/useForceSimulation": "./dist/hooks/useForceSimulation.js",
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
- "import": "./dist/charts/ForceDirectedGraph.js",
32
- "types": "./dist/charts/ForceDirectedGraph.d.ts"
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.3"
131
+ "@aiready/core": "0.23.6"
69
132
  },
70
133
  "devDependencies": {
71
134
  "@testing-library/jest-dom": "^6.6.5",