@adapttable/mantine 0.3.0 → 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 +24 -0
- package/README.md +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,29 @@
|
|
|
1
1
|
# @adapttable/mantine
|
|
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
|
+
|
|
17
|
+
## 0.3.1
|
|
18
|
+
|
|
19
|
+
### Patch Changes
|
|
20
|
+
|
|
21
|
+
- 6ab1391: docs: every package README now leads with a click-to-play demo — a poster (with
|
|
22
|
+
a play button) that links to an mp4 of the table in action — replacing the
|
|
23
|
+
autoplaying GIF. Republishing so the new READMEs land on npm.
|
|
24
|
+
- Updated dependencies [6ab1391]
|
|
25
|
+
- @adapttable/core@0.3.1
|
|
26
|
+
|
|
3
27
|
## 0.3.0
|
|
4
28
|
|
|
5
29
|
### Minor Changes
|
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# @adapttable/mantine
|
|
2
2
|
|
|
3
|
-
](https://orwa-mahmoud.github.io/adapttable/media/demo-mantine.mp4)
|
|
4
4
|
|
|
5
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/)**
|
|
6
6
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adapttable/mantine",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.2",
|
|
4
4
|
"description": "Mantine adapter for AdaptTable — a batteries-included, themeable React data table with sorting, filtering, URL state, virtualization, RTL, dark mode, and responsive card rendering.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"react",
|
|
@@ -51,7 +51,7 @@
|
|
|
51
51
|
},
|
|
52
52
|
"dependencies": {
|
|
53
53
|
"react-compiler-runtime": "^1.0.0",
|
|
54
|
-
"@adapttable/core": "0.3.
|
|
54
|
+
"@adapttable/core": "0.3.2"
|
|
55
55
|
},
|
|
56
56
|
"peerDependencies": {
|
|
57
57
|
"@mantine/core": "^7.0.0 || ^8.0.0 || ^9.0.0",
|