@adapttable/shadcn 0.3.2 → 1.0.0

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 (2) hide show
  1. package/CHANGELOG.md +25 -0
  2. package/package.json +3 -3
package/CHANGELOG.md CHANGED
@@ -1,5 +1,30 @@
1
1
  # @adapttable/shadcn
2
2
 
3
+ ## 1.0.0
4
+
5
+ ### Major Changes
6
+
7
+ - a94745e: AdaptTable 1.0 — the public API is now stable under semantic versioning.
8
+
9
+ This release freezes the committed-stable surface: the `@adapttable/core` engine
10
+ (source builders, `useDataTable` and its prop-getters, the core types, and the
11
+ URL-state hooks), every adapter's `<DataTable>` props and extension points
12
+ (`slots`, `classNames`, `toolbar`, `confirm`), and the `@adapttable/i18n` locale
13
+ presets. From this release on, breaking changes to that surface ship only in a
14
+ major version. There are no runtime behavior changes — this marks the stability
15
+ commitment. `@adapttable/cli` is a scaffolding tool and keeps its own cadence.
16
+
17
+ ### Patch Changes
18
+
19
+ - Updated dependencies [a94745e]
20
+ - @adapttable/unstyled@1.0.0
21
+
22
+ ## 0.3.3
23
+
24
+ ### Patch Changes
25
+
26
+ - @adapttable/unstyled@0.3.3
27
+
3
28
  ## 0.3.2
4
29
 
5
30
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adapttable/shadcn",
3
- "version": "0.3.2",
3
+ "version": "1.0.0",
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.2"
51
+ "@adapttable/unstyled": "1.0.0"
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.2"
65
+ "@adapttable/core": "1.0.0"
66
66
  },
67
67
  "publishConfig": {
68
68
  "access": "public"