@arcadeai/design-system 2.0.0 → 2.1.1

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 (38) hide show
  1. package/dist/assets/index.css +1 -1
  2. package/dist/assets/tokens.css +1 -1
  3. package/dist/assets/variables.css +1 -1
  4. package/dist/components/index.js +235 -231
  5. package/dist/components/ui/atoms/icons/imgflip.d.ts +3 -0
  6. package/dist/components/ui/atoms/icons/imgflip.js +35 -0
  7. package/dist/components/ui/atoms/icons/index.d.ts +2 -0
  8. package/dist/components/ui/atoms/icons/index.js +126 -122
  9. package/dist/components/ui/atoms/icons/mongodb.d.ts +3 -0
  10. package/dist/components/ui/atoms/icons/mongodb.js +39 -0
  11. package/dist/components/ui/atoms/index.js +213 -209
  12. package/dist/components/ui/atoms/resizable.js +1 -1
  13. package/dist/components/ui/atoms/switch.d.ts +5 -1
  14. package/dist/components/ui/atoms/switch.js +98 -73
  15. package/dist/components/ui/index.js +235 -231
  16. package/dist/components/ui/molecules/index.js +1 -1
  17. package/dist/components/ui/molecules/requirement-badges.js +2 -2
  18. package/dist/components/ui/molecules/toolkit-card.js +1 -1
  19. package/dist/components/ui/molecules/toolkit-selection-summary.js +2 -2
  20. package/dist/components/ui/organisms/toolkit-picker/components/search-input.js +2 -2
  21. package/dist/components/ui/organisms/toolkit-picker/components/select-button.js +2 -2
  22. package/dist/components/ui/organisms/toolkit-picker/components/toolkit-card-with-selection.js +1 -1
  23. package/dist/components/ui/organisms/toolkit-picker/hooks/use-toolkit-picker-filter.test.js +2 -2
  24. package/dist/components/ui/organisms/toolkit-picker/hooks/use-toolkit-picker-search.test.js +2 -2
  25. package/dist/components/ui/organisms/toolkit-picker/hooks/use-toolkit-picker-selection.test.js +2 -2
  26. package/dist/components/ui/organisms/toolkit-picker/toolkit-picker.js +2 -2
  27. package/dist/components/ui/organisms/toolkit-picker/toolkit-picker.test.js +2 -2
  28. package/dist/components/ui/utils/memo.test.js +1 -1
  29. package/dist/lib/arcade/arcade.test.js +1 -1
  30. package/dist/lib/utils.test.js +1 -1
  31. package/dist/{magic-string.es-QnVUNas7.js → magic-string.es-uPKorP4O.js} +7 -4
  32. package/dist/main.js +263 -259
  33. package/dist/metadata/toolkits.js +138 -106
  34. package/dist/{react-resizable-panels.browser-ZHjTH32c.js → react-resizable-panels.browser-DggUboAp.js} +2 -2
  35. package/dist/{react.esm-CAxz4dXo.js → react.esm-DUaR5u-J.js} +1 -1
  36. package/dist/{toolkit-card-fWmjBnBQ.js → toolkit-card-DgjPGtsJ.js} +1 -1
  37. package/dist/{vi.bdSIJ99Y-hyudrc3R.js → vi.bdSIJ99Y-Bs-viS39.js} +1 -1
  38. package/package.json +35 -34
@@ -11,7 +11,7 @@ import { ByocBadge as z } from "./components/ui/atoms/byoc-badge.js";
11
11
  import "./components/ui/atoms/chart.js";
12
12
  import "./components/ui/atoms/mobile-tooltip.js";
13
13
  import { ProBadge as U } from "./components/ui/atoms/pro-badge.js";
14
- import "./react-resizable-panels.browser-ZHjTH32c.js";
14
+ import "./react-resizable-panels.browser-DggUboAp.js";
15
15
  import "./components/ui/atoms/sidebar.js";
16
16
  import "./components/ui/atoms/table.js";
17
17
  import { Tooltip as y, TooltipTrigger as w, TooltipContent as C } from "./components/ui/atoms/tooltip.js";
@@ -9647,7 +9647,7 @@ function Sg(e, t) {
9647
9647
  return s + 1;
9648
9648
  }
9649
9649
  async function Tg(e, t) {
9650
- const n = (await import("./magic-string.es-QnVUNas7.js")).default, r = new Set(t.map((o) => o.file));
9650
+ const n = (await import("./magic-string.es-uPKorP4O.js")).default, r = new Set(t.map((o) => o.file));
9651
9651
  await Promise.all(Array.from(r).map(async (o) => {
9652
9652
  const s = t.filter((c) => c.file === o), i = await e.readSnapshotFile(o), a = new n(i);
9653
9653
  for (const c of s) {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@arcadeai/design-system",
3
3
  "private": false,
4
- "version": "2.0.0",
4
+ "version": "2.1.1",
5
5
  "type": "module",
6
6
  "main": "dist/main.js",
7
7
  "types": "dist/main.d.ts",
@@ -41,16 +41,17 @@
41
41
  "dev:vite": "vite",
42
42
  "prebuild": "node ./scripts/generate-icon-components.js",
43
43
  "build": "tsc -b ./tsconfig.lib.json && vite build",
44
- "lint": "npx ultracite lint",
45
- "format": "npx ultracite format",
44
+ "lint": "pnpm dlx ultracite check",
45
+ "format": "pnpm dlx ultracite fix",
46
46
  "preview": "vite preview",
47
47
  "prepublishOnly": "pnpm run build",
48
48
  "build-storybook": "storybook build",
49
49
  "test:storybook": "vitest --project=storybook --coverage --run",
50
50
  "test:unit": "vitest --project=unit --coverage --run",
51
51
  "test": "vitest --coverage --run",
52
- "generate-metadata-json": "npx tsx ./scripts/generate-metadata-json.ts",
53
- "generate-icons": "node ./scripts/generate-icon-components.js"
52
+ "generate-metadata-json": "pnpm dlx tsx ./scripts/generate-metadata-json.ts",
53
+ "generate-icons": "node ./scripts/generate-icon-components.js",
54
+ "prepare": "husky"
54
55
  },
55
56
  "release": {
56
57
  "branches": [
@@ -83,58 +84,58 @@
83
84
  },
84
85
  "peerDependencies": {
85
86
  "@hookform/resolvers": "^5.2.1",
86
- "lucide-react": "^0.539.0",
87
- "react": "^19.1.0",
88
- "react-dom": "^19.1.0",
87
+ "lucide-react": "^0.544.0",
88
+ "react": "^19.1.1",
89
+ "react-dom": "^19.1.1",
89
90
  "react-hook-form": "^7.62.0",
90
- "recharts": "^3.1.2",
91
- "tailwindcss": "^4.1.11"
91
+ "recharts": "^3.2.0",
92
+ "tailwindcss": "^4.1.13"
92
93
  },
93
94
  "devDependencies": {
94
- "@biomejs/biome": "2.2.0",
95
+ "@biomejs/biome": "2.2.4",
95
96
  "@commitlint/cli": "19.8.1",
96
97
  "@commitlint/config-conventional": "19.8.1",
97
98
  "@hookform/resolvers": "5.2.1",
98
99
  "@semantic-release/changelog": "6.0.3",
99
100
  "@semantic-release/git": "10.0.1",
100
- "@storybook/addon-a11y": "9.1.3",
101
- "@storybook/addon-docs": "9.1.3",
102
- "@storybook/addon-themes": "9.1.3",
103
- "@storybook/addon-vitest": "9.1.3",
104
- "@storybook/react-vite": "9.1.3",
101
+ "@storybook/addon-a11y": "9.1.5",
102
+ "@storybook/addon-docs": "9.1.5",
103
+ "@storybook/addon-themes": "9.1.5",
104
+ "@storybook/addon-vitest": "9.1.5",
105
+ "@storybook/react-vite": "9.1.5",
105
106
  "@testing-library/dom": "^10.4.1",
106
107
  "@testing-library/jest-dom": "6.8.0",
107
108
  "@testing-library/react": "^16.3.0",
108
109
  "@testing-library/user-event": "^14.6.1",
109
- "@types/node": "24.3.0",
110
- "@types/react": "19.1.10",
111
- "@types/react-dom": "19.1.7",
110
+ "@types/node": "24.3.1",
111
+ "@types/react": "19.1.12",
112
+ "@types/react-dom": "19.1.9",
112
113
  "@vitejs/plugin-react-swc": "4.0.1",
113
114
  "@vitest/browser": "3.2.4",
114
115
  "@vitest/coverage-v8": "3.2.4",
115
- "chromatic": "13.1.3",
116
+ "chromatic": "13.1.4",
116
117
  "glob": "11.0.3",
117
- "globals": "16.3.0",
118
+ "globals": "16.4.0",
118
119
  "happy-dom": "^18.0.1",
119
120
  "husky": "9.1.7",
120
- "lint-staged": "16.1.5",
121
- "lucide-react": "0.540.0",
121
+ "lint-staged": "16.1.6",
122
+ "lucide-react": "0.544.0",
122
123
  "playwright": "1.55.0",
123
124
  "react": "19.1.1",
124
125
  "react-dom": "19.1.1",
125
126
  "react-hook-form": "7.62.0",
126
- "recharts": "3.1.2",
127
- "semantic-release": "24.2.7",
128
- "storybook": "9.1.3",
127
+ "recharts": "3.2.0",
128
+ "semantic-release": "24.2.8",
129
+ "storybook": "9.1.5",
129
130
  "storybook-addon-test-codegen": "2.0.1",
130
- "tailwindcss": "4.1.12",
131
- "tw-animate-css": "1.3.7",
131
+ "tailwindcss": "4.1.13",
132
+ "tw-animate-css": "1.3.8",
132
133
  "typescript": "~5.9.2",
133
- "ultracite": "5.2.5",
134
- "vite": "7.1.3",
134
+ "ultracite": "5.3.4",
135
+ "vite": "7.1.5",
135
136
  "vite-plugin-dts": "4.5.4",
136
137
  "vitest": "3.2.4",
137
- "zod": "4.0.17"
138
+ "zod": "4.1.8"
138
139
  },
139
140
  "dependencies": {
140
141
  "@arcadeai/arcadejs": "^1.9.1",
@@ -159,11 +160,11 @@
159
160
  "@radix-ui/react-tabs": "1.1.13",
160
161
  "@radix-ui/react-toggle": "1.1.10",
161
162
  "@radix-ui/react-tooltip": "1.2.8",
162
- "@tailwindcss/vite": "4.1.12",
163
+ "@tailwindcss/vite": "4.1.13",
163
164
  "class-variance-authority": "0.7.1",
164
165
  "clsx": "2.1.1",
165
166
  "cmdk": "1.1.1",
166
- "react-resizable-panels": "3.0.4",
167
+ "react-resizable-panels": "3.0.5",
167
168
  "tailwind-merge": "3.3.1"
168
169
  },
169
170
  "engines": {
@@ -172,7 +173,7 @@
172
173
  "packageManager": "pnpm@10.14.0",
173
174
  "lint-staged": {
174
175
  "*.{js,jsx,ts,tsx,json,jsonc,css,scss,md,mdx}": [
175
- "npx biome format"
176
+ "pnpm dlx biome fix"
176
177
  ]
177
178
  }
178
179
  }