@adapttable/mui 0.3.3 → 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.
- package/CHANGELOG.md +19 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,24 @@
|
|
|
1
1
|
# @adapttable/mui
|
|
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/core@1.0.0
|
|
21
|
+
|
|
3
22
|
## 0.3.3
|
|
4
23
|
|
|
5
24
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adapttable/mui",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "1.0.0",
|
|
4
4
|
"description": "Material UI adapter for AdaptTable — a batteries-included MUI data table with sorting, filtering, URL state, selection, RTL, dark mode, and a free DataGrid-style experience.",
|
|
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/core": "0.
|
|
51
|
+
"@adapttable/core": "1.0.0"
|
|
52
52
|
},
|
|
53
53
|
"peerDependencies": {
|
|
54
54
|
"@mui/material": "^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0",
|