@adapttable/mui 0.3.1 → 0.3.2

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 CHANGED
@@ -1,5 +1,19 @@
1
1
  # @adapttable/mui
2
2
 
3
+ ## 0.3.2
4
+
5
+ ### Patch Changes
6
+
7
+ - 682d3b7: Road-to-1.0 prep: document the versioning & stability contract, mark the
8
+ `mergeProps`/`Props` prop-getter plumbing as `@internal` (consumers use the
9
+ `useDataTable` prop-getters, not the merge helper), add a `smoke-dist`
10
+ post-build check that asserts every advertised `exports`/`main`/`module`/`types`
11
+ target is actually emitted, and harden `getPath`/`humanizeKey` to tolerate an
12
+ empty/undefined key so a transiently-malformed column key can never crash a
13
+ render. No behaviour changes; no breaking changes.
14
+ - Updated dependencies [682d3b7]
15
+ - @adapttable/core@0.3.2
16
+
3
17
  ## 0.3.1
4
18
 
5
19
  ### Patch Changes
package/README.md CHANGED
@@ -2,8 +2,6 @@
2
2
 
3
3
  [![@adapttable/mui — a Material UI data table built on AdaptTable](https://orwa-mahmoud.github.io/adapttable/media/demo-mui-poster.png)](https://orwa-mahmoud.github.io/adapttable/media/demo-mui.mp4)
4
4
 
5
- ▶ **[Watch the demo](https://orwa-mahmoud.github.io/adapttable/media/demo-mui.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 **Material UI adapter** for [AdaptTable](https://github.com/orwa-mahmoud/adapttable) —
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adapttable/mui",
3
- "version": "0.3.1",
3
+ "version": "0.3.2",
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.3.1"
51
+ "@adapttable/core": "0.3.2"
52
52
  },
53
53
  "peerDependencies": {
54
54
  "@mui/material": "^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0",