buildgrid-ui 1.18.0 → 1.19.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/README.md +1 -1
- package/package.json +5 -3
package/README.md
CHANGED
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
BuildGrid UI is a comprehensive React component library featuring **44+ components** and **12 specialized blocks**, all built with production use in mind.
|
|
29
29
|
|
|
30
30
|
- 🎯 **Battle-Tested** - Components refined through real-world usage
|
|
31
|
-
- 🎨 **Modern Stack** - Built with React
|
|
31
|
+
- 🎨 **Modern Stack** - Built with React 18+, TypeScript, and Tailwind CSS
|
|
32
32
|
- ♿ **Accessible** - WCAG compliant with full keyboard navigation
|
|
33
33
|
- 📱 **Responsive** - Mobile-first design approach
|
|
34
34
|
- 🎭 **Customizable** - Flexible theming and styling options
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "buildgrid-ui",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.19.1",
|
|
4
4
|
"homepage": "http://adrianomaringolo.github.io/buildgrid-ui",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -43,6 +43,8 @@
|
|
|
43
43
|
"sync-docs-version": "node scripts/verify-docs-version.js sync",
|
|
44
44
|
"update-stats": "node scripts/update-stats.js",
|
|
45
45
|
"update-blog-posts": "node scripts/update-blog-posts.js",
|
|
46
|
+
"update-lib-version": "node scripts/update-lib-version.js",
|
|
47
|
+
"update-data": "npm run update-lib-version && npm run update-stats && npm run update-blog-posts",
|
|
46
48
|
"copy-coverage": "node scripts/copy-coverage.js",
|
|
47
49
|
"pre-push": "npm run verify-docs-version && npm run test:coverage && npm run copy-coverage && npm run build:storybook",
|
|
48
50
|
"build": "vite build && npm run build:types",
|
|
@@ -106,8 +108,8 @@
|
|
|
106
108
|
"tw-animate-css": "^1.3.6"
|
|
107
109
|
},
|
|
108
110
|
"peerDependencies": {
|
|
109
|
-
"react": "^19.0.0",
|
|
110
|
-
"react-dom": "^19.0.0"
|
|
111
|
+
"react": "^18.0.0 || ^19.0.0",
|
|
112
|
+
"react-dom": "^18.0.0 || ^19.0.0"
|
|
111
113
|
},
|
|
112
114
|
"devDependencies": {
|
|
113
115
|
"@commitlint/cli": "^19.8.1",
|