@adapttable/shadcn 0.2.1 → 0.3.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/CHANGELOG.md +20 -0
- package/README.md +0 -2
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,25 @@
|
|
|
1
1
|
# @adapttable/shadcn
|
|
2
2
|
|
|
3
|
+
## 0.3.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- @adapttable/unstyled@0.3.3
|
|
8
|
+
|
|
9
|
+
## 0.3.2
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- 682d3b7: Road-to-1.0 prep: document the versioning & stability contract, mark the
|
|
14
|
+
`mergeProps`/`Props` prop-getter plumbing as `@internal` (consumers use the
|
|
15
|
+
`useDataTable` prop-getters, not the merge helper), add a `smoke-dist`
|
|
16
|
+
post-build check that asserts every advertised `exports`/`main`/`module`/`types`
|
|
17
|
+
target is actually emitted, and harden `getPath`/`humanizeKey` to tolerate an
|
|
18
|
+
empty/undefined key so a transiently-malformed column key can never crash a
|
|
19
|
+
render. No behaviour changes; no breaking changes.
|
|
20
|
+
- Updated dependencies [682d3b7]
|
|
21
|
+
- @adapttable/unstyled@0.3.2
|
|
22
|
+
|
|
3
23
|
## 0.2.1
|
|
4
24
|
|
|
5
25
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -2,8 +2,6 @@
|
|
|
2
2
|
|
|
3
3
|
[](https://orwa-mahmoud.github.io/adapttable/media/demo-shadcn.mp4)
|
|
4
4
|
|
|
5
|
-
▶ **[Watch the demo](https://orwa-mahmoud.github.io/adapttable/media/demo-shadcn.mp4)**
|
|
6
|
-
|
|
7
5
|
**[📖 Documentation](https://orwa-mahmoud.github.io/adapttable/)** · **[🚀 Live demo](https://orwa-mahmoud.github.io/adapttable/demo/)** · **[Get started](https://orwa-mahmoud.github.io/adapttable/getting-started/)**
|
|
8
6
|
|
|
9
7
|
The **shadcn/ui adapter** for [AdaptTable](https://github.com/orwa-mahmoud/adapttable) —
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adapttable/shadcn",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.3",
|
|
4
4
|
"description": "shadcn/ui adapter for AdaptTable — a fully-styled React data table in one import, built on the headless @adapttable/core engine and shadcn's design tokens.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"react",
|
|
@@ -48,7 +48,7 @@
|
|
|
48
48
|
},
|
|
49
49
|
"dependencies": {
|
|
50
50
|
"react-compiler-runtime": "^1.0.0",
|
|
51
|
-
"@adapttable/unstyled": "0.3.
|
|
51
|
+
"@adapttable/unstyled": "0.3.3"
|
|
52
52
|
},
|
|
53
53
|
"peerDependencies": {
|
|
54
54
|
"react": "^18.0.0 || ^19.0.0",
|
|
@@ -62,7 +62,7 @@
|
|
|
62
62
|
"react": "^19.2.7",
|
|
63
63
|
"react-dom": "^19.2.7",
|
|
64
64
|
"vitest-axe": "^0.1.0",
|
|
65
|
-
"@adapttable/core": "0.3.
|
|
65
|
+
"@adapttable/core": "0.3.3"
|
|
66
66
|
},
|
|
67
67
|
"publishConfig": {
|
|
68
68
|
"access": "public"
|