buildgrid-ui 1.1.0-alpha.1 → 1.1.0-alpha.3
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/.editorconfig +5 -0
- package/.eslintrc.json +3 -0
- package/.prettierignore +6 -0
- package/.prettierrc +6 -0
- package/CHANGELOG.md +14 -0
- package/README.md +1 -1
- package/dist/buildgrid-ui.es.js +2929 -0
- package/dist/buildgrid-ui.umd.js +31 -0
- package/dist/components/badge/Badge.d.ts +9 -0
- package/dist/components/badge/index.d.ts +1 -0
- package/dist/components/button/Button.d.ts +11 -0
- package/dist/components/button/index.d.ts +1 -0
- package/dist/components/card/Card.d.ts +8 -0
- package/dist/components/card/index.d.ts +1 -0
- package/dist/components/index.d.ts +4 -0
- package/dist/components/skeleton/Skeleton.d.ts +5 -0
- package/dist/components/skeleton/index.d.ts +1 -0
- package/dist/index.d.ts +2 -0
- package/dist/lib/index.d.ts +1 -0
- package/dist/lib/utils/cn.d.ts +2 -0
- package/eslint.config.mjs +13 -0
- package/package.json +21 -4
- package/src/components/badge/Badge.stories.tsx +30 -0
- package/src/components/badge/Badge.tsx +34 -0
- package/src/components/badge/index.ts +1 -0
- package/src/components/button/Button.stories.tsx +33 -20
- package/src/components/button/index.ts +1 -1
- package/src/components/card/Card.stories.tsx +41 -0
- package/src/components/card/Card.tsx +61 -0
- package/src/components/card/index.ts +1 -0
- package/src/components/index.ts +4 -0
- package/src/components/skeleton/Skeleton.stories.tsx +24 -0
- package/src/components/skeleton/Skeleton.tsx +19 -0
- package/src/components/skeleton/index.ts +1 -0
- package/src/index.ts +2 -1
- package/src/lib/index.ts +1 -0
- package/tsconfig.json +12 -2
- package/src/lib/utils.ts +0 -6
package/.editorconfig
ADDED
package/.eslintrc.json
ADDED
package/.prettierignore
ADDED
package/.prettierrc
ADDED
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
# [1.1.0-alpha.3](https://github.com/adrianomaringolo/buildgrid-ui/compare/v1.1.0-alpha.2...v1.1.0-alpha.3) (2025-01-02)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* add new components ([acc2538](https://github.com/adrianomaringolo/buildgrid-ui/commit/acc253867cbadec11b61c3d9dcf1b5151ac3096b))
|
|
7
|
+
|
|
8
|
+
# [1.1.0-alpha.2](https://github.com/adrianomaringolo/buildgrid-ui/compare/v1.1.0-alpha.1...v1.1.0-alpha.2) (2025-01-02)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Features
|
|
12
|
+
|
|
13
|
+
* add Badge component and related stories ([4106287](https://github.com/adrianomaringolo/buildgrid-ui/commit/41062872c2807cfa14494c9cab1f2b8fe506d246))
|
|
14
|
+
|
|
1
15
|
# [1.1.0-alpha.1](https://github.com/adrianomaringolo/buildgrid-ui/compare/v1.0.0...v1.1.0-alpha.1) (2025-01-02)
|
|
2
16
|
|
|
3
17
|
|
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
### This lib is under construction, take a look again soon 🚧
|
|
4
4
|
|
|
5
|
-
A React component library built using [Vite](https://vitejs.dev) and [shadcn](https://shadcn.
|
|
5
|
+
A React component library built using [Vite](https://vitejs.dev) and [shadcn](https://ui.shadcn.com/) as the foundation. This library is designed to integrate seamlessly with React and Next.js applications and includes support for [TailwindCSS](https://tailwindcss.com). It also provides a Storybook setup to display and document the components.
|
|
6
6
|
|
|
7
7
|
## Features
|
|
8
8
|
|