@arcadeai/design-system 1.2.0 → 1.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/arcade-49z5mR1G.js +1541 -0
- package/dist/assets/icons/arcade.d.ts +3 -0
- package/dist/assets/icons/arcade.js +33 -0
- package/dist/assets/icons/google-docs.js +110 -120
- package/dist/assets/icons/index.d.ts +1 -0
- package/dist/assets/icons/index.js +124 -122
- package/dist/assets/icons/utils.d.ts +26 -0
- package/dist/assets/icons/utils.js +155 -138
- package/dist/components/index.js +62 -48
- package/dist/components/ui/atoms/accordion.js +1 -1
- package/dist/components/ui/atoms/alert.js +2 -2
- package/dist/components/ui/atoms/avatar.js +1 -1
- package/dist/components/ui/atoms/badge.js +2 -2
- package/dist/components/ui/atoms/breadcrumb.js +13 -15
- package/dist/components/ui/atoms/button.js +2 -2
- package/dist/components/ui/atoms/byoc-badge.js +2 -2
- package/dist/components/ui/atoms/card.js +1 -1
- package/dist/components/ui/atoms/chart.js +1 -1
- package/dist/components/ui/atoms/checkbox.js +1 -1
- package/dist/components/ui/atoms/command.js +2 -2
- package/dist/components/ui/atoms/dialog.js +8 -8
- package/dist/components/ui/atoms/dropdown-menu.js +2 -2
- package/dist/components/ui/atoms/form.d.ts +1 -1
- package/dist/components/ui/atoms/form.js +8 -7
- package/dist/components/ui/atoms/hover-card.js +2 -2
- package/dist/components/ui/atoms/index.js +14 -13
- package/dist/components/ui/atoms/input.js +1 -1
- package/dist/components/ui/atoms/label.js +1 -1
- package/dist/components/ui/atoms/popover.js +2 -2
- package/dist/components/ui/atoms/pro-badge.js +2 -2
- package/dist/components/ui/atoms/progress.js +1 -1
- package/dist/components/ui/atoms/radio-group.js +1 -1
- package/dist/components/ui/atoms/resizable.js +24 -1527
- package/dist/components/ui/atoms/scroll-area.js +1 -1
- package/dist/components/ui/atoms/select.js +2 -2
- package/dist/components/ui/atoms/separator.js +1 -1
- package/dist/components/ui/atoms/sheet.js +2 -2
- package/dist/components/ui/atoms/sidebar.js +3 -3
- package/dist/components/ui/atoms/skeleton.js +1 -1
- package/dist/components/ui/atoms/slider.js +1 -1
- package/dist/components/ui/atoms/switch.js +1 -1
- package/dist/components/ui/atoms/table.js +1 -1
- package/dist/components/ui/atoms/tabs.js +1 -1
- package/dist/components/ui/atoms/textarea.js +1 -1
- package/dist/components/ui/atoms/toggle.js +2 -2
- package/dist/components/ui/atoms/tooltip.js +60 -60
- package/dist/components/ui/atoms/view-tools-control.d.ts +12 -0
- package/dist/components/ui/atoms/view-tools-control.js +53 -0
- package/dist/components/ui/index.d.ts +2 -0
- package/dist/components/ui/index.js +62 -48
- package/dist/components/ui/molecules/empty-state.d.ts +5 -0
- package/dist/components/ui/molecules/empty-state.js +25 -0
- package/dist/components/ui/molecules/index.d.ts +6 -0
- package/dist/components/ui/molecules/index.js +13 -0
- package/dist/components/ui/molecules/requirement-badges.d.ts +29 -0
- package/dist/components/ui/molecules/requirement-badges.js +24 -0
- package/dist/components/ui/molecules/tool-card.d.ts +17 -0
- package/dist/components/ui/molecules/tool-card.js +127 -0
- package/dist/components/ui/molecules/toolkit-card.d.ts +24 -0
- package/dist/components/ui/molecules/toolkit-card.js +13 -0
- package/dist/components/ui/molecules/toolkit-picker-trigger.d.ts +8 -0
- package/dist/components/ui/molecules/toolkit-picker-trigger.js +96 -0
- package/dist/components/ui/molecules/toolkit-selection-summary.d.ts +10 -0
- package/dist/components/ui/molecules/toolkit-selection-summary.js +117 -0
- package/dist/components/ui/organisms/index.d.ts +1 -0
- package/dist/components/ui/organisms/index.js +4 -0
- package/dist/components/ui/organisms/toolkit-picker/components/footer-summary.d.ts +1 -0
- package/dist/components/ui/organisms/toolkit-picker/components/footer-summary.js +36 -0
- package/dist/components/ui/organisms/toolkit-picker/components/mobile-filter-badges.d.ts +1 -0
- package/dist/components/ui/organisms/toolkit-picker/components/mobile-filter-badges.js +96 -0
- package/dist/components/ui/organisms/toolkit-picker/components/search-input.d.ts +1 -0
- package/dist/components/ui/organisms/toolkit-picker/components/search-input.js +36 -0
- package/dist/components/ui/organisms/toolkit-picker/components/select-button.d.ts +9 -0
- package/dist/components/ui/organisms/toolkit-picker/components/select-button.js +35 -0
- package/dist/components/ui/organisms/toolkit-picker/components/toolkit-card-with-selection.d.ts +9 -0
- package/dist/components/ui/organisms/toolkit-picker/components/toolkit-card-with-selection.js +36 -0
- package/dist/components/ui/organisms/toolkit-picker/hooks/use-toolkit-picker-filter.test.d.ts +1 -0
- package/dist/components/ui/organisms/toolkit-picker/hooks/use-toolkit-picker-filter.test.js +44 -0
- package/dist/components/ui/organisms/toolkit-picker/hooks/use-toolkit-picker-search.test.d.ts +1 -0
- package/dist/components/ui/organisms/toolkit-picker/hooks/use-toolkit-picker-search.test.js +46 -0
- package/dist/components/ui/organisms/toolkit-picker/hooks/use-toolkit-picker-selection.test.d.ts +1 -0
- package/dist/components/ui/organisms/toolkit-picker/hooks/use-toolkit-picker-selection.test.js +28 -0
- package/dist/components/ui/organisms/toolkit-picker/hooks/use-toolkit-picker.d.ts +40 -0
- package/dist/components/ui/organisms/toolkit-picker/hooks/use-toolkit-picker.js +267 -0
- package/dist/components/ui/organisms/toolkit-picker/index.d.ts +14 -0
- package/dist/components/ui/organisms/toolkit-picker/index.js +16 -0
- package/dist/components/ui/organisms/toolkit-picker/mocks/toolkit-collection.d.ts +7 -0
- package/dist/components/ui/organisms/toolkit-picker/mocks/toolkit-collection.js +432 -0
- package/dist/components/ui/organisms/toolkit-picker/toolkit-picker.d.ts +2 -0
- package/dist/components/ui/organisms/toolkit-picker/toolkit-picker.js +395 -0
- package/dist/components/ui/organisms/toolkit-picker/toolkit-picker.test.d.ts +0 -0
- package/dist/components/ui/organisms/toolkit-picker/toolkit-picker.test.js +12832 -0
- package/dist/components/ui/utils/memo.d.ts +2 -0
- package/dist/components/ui/utils/memo.js +25 -0
- package/dist/{index-CQhYMnjT.js → index-BDE30rcJ.js} +1 -1
- package/dist/{index-PlrlSrPo.js → index-DEJd-dpa.js} +1 -1
- package/dist/{index-BSWzylXR.js → index-Ez2mlmzx.js} +2 -2
- package/dist/lib/arcade/arcade.d.ts +100 -0
- package/dist/lib/arcade/arcade.js +5 -0
- package/dist/lib/arcade/arcade.test.d.ts +1 -0
- package/dist/lib/arcade/arcade.test.js +299 -0
- package/dist/lib/arcade/mocks.d.ts +2 -0
- package/dist/lib/arcade/mocks.js +547 -0
- package/dist/lib/utils.d.ts +1 -0
- package/dist/lib/utils.js +3 -2
- package/dist/magic-string.es-BQ9KnLz-.js +659 -0
- package/dist/main.js +62 -48
- package/dist/react-resizable-panels.browser-ZHjTH32c.js +1509 -0
- package/dist/react.esm-369wBsAv.js +35565 -0
- package/dist/toolkit-card-GhM_oj4G.js +304 -0
- package/dist/{utils-CRiPKpXj.js → utils-Db4QWi-E.js} +204 -189
- package/dist/vi.bdSIJ99Y-CZgZQPWH.js +11996 -0
- package/package.json +49 -39
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@arcadeai/design-system",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "1.
|
|
4
|
+
"version": "1.3.0",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/main.js",
|
|
7
7
|
"types": "dist/main.d.ts",
|
|
@@ -12,6 +12,19 @@
|
|
|
12
12
|
"sideEffects": [
|
|
13
13
|
"**/*.css"
|
|
14
14
|
],
|
|
15
|
+
"scripts": {
|
|
16
|
+
"dev": "storybook dev -p 6006",
|
|
17
|
+
"dev:vite": "vite",
|
|
18
|
+
"build": "tsc -b ./tsconfig.lib.json && vite build",
|
|
19
|
+
"lint": "npx ultracite lint",
|
|
20
|
+
"format": "npx ultracite format",
|
|
21
|
+
"preview": "vite preview",
|
|
22
|
+
"prepublishOnly": "pnpm run build",
|
|
23
|
+
"build-storybook": "storybook build",
|
|
24
|
+
"test:storybook": "vitest --project=storybook --coverage --run",
|
|
25
|
+
"test:unit": "vitest --project=unit --coverage --run",
|
|
26
|
+
"test": "vitest --coverage --run"
|
|
27
|
+
},
|
|
15
28
|
"release": {
|
|
16
29
|
"branches": [
|
|
17
30
|
"main"
|
|
@@ -42,56 +55,62 @@
|
|
|
42
55
|
]
|
|
43
56
|
},
|
|
44
57
|
"peerDependencies": {
|
|
45
|
-
"@hookform/resolvers": "5.
|
|
46
|
-
"lucide-react": "0.
|
|
47
|
-
"react": "19.1.0",
|
|
48
|
-
"react-dom": "19.1.0",
|
|
49
|
-
"react-hook-form": "7.
|
|
50
|
-
"recharts": "3.1.
|
|
51
|
-
"tailwindcss": "4.1.11"
|
|
58
|
+
"@hookform/resolvers": "^5.2.1",
|
|
59
|
+
"lucide-react": "^0.539.0",
|
|
60
|
+
"react": "^19.1.0",
|
|
61
|
+
"react-dom": "^19.1.0",
|
|
62
|
+
"react-hook-form": "^7.62.0",
|
|
63
|
+
"recharts": "^3.1.2",
|
|
64
|
+
"tailwindcss": "^4.1.11"
|
|
52
65
|
},
|
|
53
66
|
"devDependencies": {
|
|
54
|
-
"@biomejs/biome": "2.1.
|
|
67
|
+
"@biomejs/biome": "2.1.4",
|
|
55
68
|
"@commitlint/cli": "19.8.1",
|
|
56
69
|
"@commitlint/config-conventional": "19.8.1",
|
|
57
70
|
"@hookform/resolvers": "5.2.1",
|
|
58
71
|
"@semantic-release/changelog": "6.0.3",
|
|
59
72
|
"@semantic-release/git": "10.0.1",
|
|
60
|
-
"@storybook/addon-a11y": "9.
|
|
61
|
-
"@storybook/addon-docs": "9.
|
|
62
|
-
"@storybook/addon-themes": "9.
|
|
63
|
-
"@storybook/addon-vitest": "9.
|
|
64
|
-
"@storybook/react-vite": "9.
|
|
65
|
-
"@
|
|
66
|
-
"@
|
|
73
|
+
"@storybook/addon-a11y": "9.1.2",
|
|
74
|
+
"@storybook/addon-docs": "9.1.2",
|
|
75
|
+
"@storybook/addon-themes": "9.1.2",
|
|
76
|
+
"@storybook/addon-vitest": "9.1.2",
|
|
77
|
+
"@storybook/react-vite": "9.1.2",
|
|
78
|
+
"@testing-library/dom": "^10.4.1",
|
|
79
|
+
"@testing-library/jest-dom": "6.6.4",
|
|
80
|
+
"@testing-library/react": "^16.3.0",
|
|
81
|
+
"@testing-library/user-event": "^14.6.1",
|
|
82
|
+
"@types/node": "24.2.1",
|
|
83
|
+
"@types/react": "19.1.10",
|
|
67
84
|
"@types/react-dom": "19.1.7",
|
|
68
|
-
"@vitejs/plugin-react-swc": "
|
|
85
|
+
"@vitejs/plugin-react-swc": "4.0.0",
|
|
69
86
|
"@vitest/browser": "3.2.4",
|
|
70
87
|
"@vitest/coverage-v8": "3.2.4",
|
|
71
|
-
"chromatic": "13.1.
|
|
88
|
+
"chromatic": "13.1.3",
|
|
72
89
|
"glob": "11.0.3",
|
|
73
90
|
"globals": "16.3.0",
|
|
91
|
+
"happy-dom": "^18.0.1",
|
|
74
92
|
"husky": "9.1.7",
|
|
75
|
-
"lint-staged": "16.1.
|
|
76
|
-
"lucide-react": "0.
|
|
77
|
-
"playwright": "1.54.
|
|
93
|
+
"lint-staged": "16.1.5",
|
|
94
|
+
"lucide-react": "0.539.0",
|
|
95
|
+
"playwright": "1.54.2",
|
|
78
96
|
"react": "19.1.1",
|
|
79
97
|
"react-dom": "19.1.1",
|
|
80
|
-
"react-hook-form": "7.
|
|
81
|
-
"recharts": "3.1.
|
|
98
|
+
"react-hook-form": "7.62.0",
|
|
99
|
+
"recharts": "3.1.2",
|
|
82
100
|
"semantic-release": "24.2.7",
|
|
83
|
-
"storybook": "9.
|
|
101
|
+
"storybook": "9.1.2",
|
|
84
102
|
"storybook-addon-test-codegen": "2.0.1",
|
|
85
103
|
"tailwindcss": "4.1.11",
|
|
86
104
|
"tw-animate-css": "1.3.6",
|
|
87
|
-
"typescript": "~5.
|
|
105
|
+
"typescript": "~5.9.2",
|
|
88
106
|
"ultracite": "5.1.2",
|
|
89
|
-
"vite": "7.
|
|
107
|
+
"vite": "7.1.2",
|
|
90
108
|
"vite-plugin-dts": "4.5.4",
|
|
91
109
|
"vitest": "3.2.4",
|
|
92
|
-
"zod": "4.0.
|
|
110
|
+
"zod": "4.0.17"
|
|
93
111
|
},
|
|
94
112
|
"dependencies": {
|
|
113
|
+
"@arcadeai/arcadejs": "^1.9.0",
|
|
95
114
|
"@radix-ui/react-accordion": "1.2.11",
|
|
96
115
|
"@radix-ui/react-avatar": "1.1.10",
|
|
97
116
|
"@radix-ui/react-checkbox": "^1.3.2",
|
|
@@ -120,21 +139,12 @@
|
|
|
120
139
|
"tailwind-merge": "3.3.1"
|
|
121
140
|
},
|
|
122
141
|
"engines": {
|
|
123
|
-
"node": ">=
|
|
142
|
+
"node": ">=20.17.0"
|
|
124
143
|
},
|
|
144
|
+
"packageManager": "pnpm@10.14.0",
|
|
125
145
|
"lint-staged": {
|
|
126
146
|
"*.{js,jsx,ts,tsx,json,jsonc,css,scss,md,mdx}": [
|
|
127
147
|
"npx biome format"
|
|
128
148
|
]
|
|
129
|
-
},
|
|
130
|
-
"scripts": {
|
|
131
|
-
"dev": "storybook dev -p 6006",
|
|
132
|
-
"dev:vite": "vite",
|
|
133
|
-
"build": "tsc -b ./tsconfig.lib.json && vite build",
|
|
134
|
-
"lint": "npx ultracite lint",
|
|
135
|
-
"format": "npx ultracite format",
|
|
136
|
-
"preview": "vite preview",
|
|
137
|
-
"build-storybook": "storybook build",
|
|
138
|
-
"test": "vitest --project=storybook --coverage --run"
|
|
139
149
|
}
|
|
140
|
-
}
|
|
150
|
+
}
|