@soli92/solids 1.1.1 → 1.2.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.
- package/CHANGELOG.md +14 -0
- package/README.md +1 -1
- package/package.json +48 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
## [1.2.1](https://github.com/soli92/solids/compare/v1.2.0...v1.2.1) (2026-03-24)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **ci:** disable GitHub issue labels for semantic-release failures ([4f9f18d](https://github.com/soli92/solids/commit/4f9f18dd81793d80267a8ca7951397532850911e))
|
|
7
|
+
|
|
8
|
+
# [1.2.0](https://github.com/soli92/solids/compare/v1.1.1...v1.2.0) (2026-03-24)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Features
|
|
12
|
+
|
|
13
|
+
* full shadcn/ui kit, Storybook UI stories, registry solids-ui block ([2d55ae5](https://github.com/soli92/solids/commit/2d55ae5310e1106570753a234096a63ee202ecd0))
|
|
14
|
+
|
|
1
15
|
## [1.1.1](https://github.com/soli92/solids/compare/v1.1.0...v1.1.1) (2026-03-24)
|
|
2
16
|
|
|
3
17
|
|
package/README.md
CHANGED
|
@@ -59,7 +59,7 @@ Serve anche `tailwindcss-animate` (dipendenza tipica di shadcn):
|
|
|
59
59
|
npm install tailwindcss-animate
|
|
60
60
|
```
|
|
61
61
|
|
|
62
|
-
Poi inizializza shadcn e aggiungi i componenti
|
|
62
|
+
Poi inizializza shadcn e aggiungi i componenti: **tutto il kit** con `npx shadcn@latest add @solids/solids-ui` oppure singoli item (`@solids/solids-button`, …). I componenti usano le variabili `--background`, `--primary`, ecc., già mappate da SoliDS. Esempio `components.json`: [templates/components.json.example](./templates/components.json.example).
|
|
63
63
|
|
|
64
64
|
➡️ Guida completa: [docs/shadcn-integration.md](./docs/shadcn-integration.md)
|
|
65
65
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@soli92/solids",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.2.1",
|
|
4
4
|
"description": "SoliDS – agnostic design system foundations (tokens + CSS) with shadcn/ui compatibility.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -50,13 +50,41 @@
|
|
|
50
50
|
"prepublishOnly": "npm run build",
|
|
51
51
|
"release": "semantic-release",
|
|
52
52
|
"build:storybook-css": "tailwindcss -c ./tailwind.config.cjs -i ./.storybook/preview-tw.input.css -o ./.storybook/preview-tw.built.css",
|
|
53
|
-
"
|
|
54
|
-
"
|
|
53
|
+
"ui:stories": "node ./scripts/generate-ui-stories.mjs",
|
|
54
|
+
"storybook": "npm run build && npm run build:storybook-css && npm run ui:stories && storybook dev -p 6006",
|
|
55
|
+
"build-storybook": "npm run build && npm run build:storybook-css && npm run ui:stories && storybook build",
|
|
55
56
|
"registry:sync": "node ./scripts/sync-registry.mjs",
|
|
56
57
|
"registry:build": "node ./scripts/sync-registry.mjs && shadcn build --output ./registry/r"
|
|
57
58
|
},
|
|
58
59
|
"devDependencies": {
|
|
59
|
-
"@
|
|
60
|
+
"@hookform/resolvers": "^5.2.2",
|
|
61
|
+
"@radix-ui/react-accordion": "^1.2.12",
|
|
62
|
+
"@radix-ui/react-alert-dialog": "^1.1.15",
|
|
63
|
+
"@radix-ui/react-aspect-ratio": "^1.1.8",
|
|
64
|
+
"@radix-ui/react-avatar": "^1.1.11",
|
|
65
|
+
"@radix-ui/react-checkbox": "^1.3.3",
|
|
66
|
+
"@radix-ui/react-collapsible": "^1.1.12",
|
|
67
|
+
"@radix-ui/react-context-menu": "^2.2.16",
|
|
68
|
+
"@radix-ui/react-dialog": "^1.1.15",
|
|
69
|
+
"@radix-ui/react-dropdown-menu": "^2.1.16",
|
|
70
|
+
"@radix-ui/react-hover-card": "^1.1.15",
|
|
71
|
+
"@radix-ui/react-label": "^2.1.8",
|
|
72
|
+
"@radix-ui/react-menubar": "^1.1.16",
|
|
73
|
+
"@radix-ui/react-navigation-menu": "^1.2.14",
|
|
74
|
+
"@radix-ui/react-popover": "^1.1.15",
|
|
75
|
+
"@radix-ui/react-progress": "^1.1.8",
|
|
76
|
+
"@radix-ui/react-radio-group": "^1.3.8",
|
|
77
|
+
"@radix-ui/react-scroll-area": "^1.2.10",
|
|
78
|
+
"@radix-ui/react-select": "^2.2.6",
|
|
79
|
+
"@radix-ui/react-separator": "^1.1.8",
|
|
80
|
+
"@radix-ui/react-slider": "^1.3.6",
|
|
81
|
+
"@radix-ui/react-slot": "^1.2.4",
|
|
82
|
+
"@radix-ui/react-switch": "^1.2.6",
|
|
83
|
+
"@radix-ui/react-tabs": "^1.1.13",
|
|
84
|
+
"@radix-ui/react-toast": "^1.2.15",
|
|
85
|
+
"@radix-ui/react-toggle": "^1.1.10",
|
|
86
|
+
"@radix-ui/react-toggle-group": "^1.1.11",
|
|
87
|
+
"@radix-ui/react-tooltip": "^1.2.8",
|
|
60
88
|
"@semantic-release/changelog": "^6.0.0",
|
|
61
89
|
"@semantic-release/commit-analyzer": "^13.0.0",
|
|
62
90
|
"@semantic-release/git": "^10.0.0",
|
|
@@ -72,13 +100,28 @@
|
|
|
72
100
|
"autoprefixer": "^10.4.20",
|
|
73
101
|
"class-variance-authority": "^0.7.1",
|
|
74
102
|
"clsx": "^2.1.1",
|
|
103
|
+
"cmdk": "^1.1.1",
|
|
104
|
+
"date-fns": "^4.1.0",
|
|
105
|
+
"embla-carousel-react": "^8.6.0",
|
|
106
|
+
"input-otp": "^1.4.2",
|
|
107
|
+
"lucide-react": "^1.3.0",
|
|
108
|
+
"next-themes": "^0.4.6",
|
|
75
109
|
"postcss": "^8.4.49",
|
|
110
|
+
"react": "^18.3.1",
|
|
111
|
+
"react-day-picker": "^9.14.0",
|
|
112
|
+
"react-dom": "^18.3.1",
|
|
113
|
+
"react-hook-form": "^7.72.0",
|
|
114
|
+
"react-resizable-panels": "^4.7.5",
|
|
115
|
+
"recharts": "^2.15.4",
|
|
76
116
|
"semantic-release": "^25.0.0",
|
|
77
117
|
"shadcn": "^4.1.0",
|
|
118
|
+
"sonner": "^2.0.7",
|
|
78
119
|
"storybook": "^8.6.14",
|
|
79
120
|
"tailwind-merge": "^2.6.0",
|
|
80
121
|
"tailwindcss": "^3.4.17",
|
|
81
122
|
"tailwindcss-animate": "^1.0.7",
|
|
82
|
-
"typescript": "^5.7.2"
|
|
123
|
+
"typescript": "^5.7.2",
|
|
124
|
+
"vaul": "^1.1.2",
|
|
125
|
+
"zod": "^4.3.6"
|
|
83
126
|
}
|
|
84
127
|
}
|