@adapttable/mui 0.2.1 → 0.3.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 +40 -0
- package/README.md +1 -1
- package/dist/index.cjs +2848 -1023
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +2854 -1029
- package/dist/index.js.map +1 -1
- package/package.json +3 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,45 @@
|
|
|
1
1
|
# @adapttable/mui
|
|
2
2
|
|
|
3
|
+
## 0.3.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- a90a2c2: Logical column pinning, so pinning stays correct under RTL.
|
|
8
|
+
|
|
9
|
+
**Breaking.** Pinned-side values are now `"start"` / `"end"` (were `"left"` /
|
|
10
|
+
`"right"`) — this is the public `pinned` layout value and the `colPin` URL token
|
|
11
|
+
(e.g. `colPin=name:start`); pre-existing `left`/`right` URLs no longer parse. The
|
|
12
|
+
label keys `pinLeft` / `pinRight` / `moveLeft` / `moveRight` are renamed to
|
|
13
|
+
`pinStart` / `pinEnd` / `moveStart` / `moveEnd`, with logical display strings
|
|
14
|
+
shipped for every locale. Pinning a data column is now a start-only toggle; the
|
|
15
|
+
injected actions column keeps its one-click end-pin.
|
|
16
|
+
|
|
17
|
+
To migrate: update any `defaultColumnLayout={{ pinned: { x: "left" } }}` to
|
|
18
|
+
`"start"` (and `"right"` → `"end"`), any persisted `colPin` URLs, and any custom
|
|
19
|
+
`labels` overriding the renamed keys.
|
|
20
|
+
|
|
21
|
+
- a90a2c2: Numbered page buttons in every adapter's pagination (with first/last and
|
|
22
|
+
ellipsis truncation), replacing the prev/next-only control — driven by a shared
|
|
23
|
+
`paginationItems` builder in `@adapttable/core`.
|
|
24
|
+
|
|
25
|
+
### Patch Changes
|
|
26
|
+
|
|
27
|
+
- 07db665: Accessibility: give the filter overlay an accessible name — the Chakra and
|
|
28
|
+
Radix filter popovers and the MUI filter drawer now set `aria-label` on their
|
|
29
|
+
`role="dialog"` wrapper, fixing an `aria-dialog-name` violation. Locked in with
|
|
30
|
+
axe assertions across every adapter's filter overlay (popover + drawer).
|
|
31
|
+
- Updated dependencies [a90a2c2]
|
|
32
|
+
- Updated dependencies [a90a2c2]
|
|
33
|
+
- @adapttable/core@0.3.0
|
|
34
|
+
|
|
35
|
+
## 0.2.2
|
|
36
|
+
|
|
37
|
+
### Patch Changes
|
|
38
|
+
|
|
39
|
+
- 0fe5eca: Ship the **React Compiler**. The published packages are now built with `babel-plugin-react-compiler` (target 18, **production build only** — not the test build), so components and hooks are auto-memoized for fewer wasted re-renders. Tests still run against un-compiled source, so coverage is unaffected; the compiled output adds `react-compiler-runtime` as a small runtime dependency.
|
|
40
|
+
- Updated dependencies [0fe5eca]
|
|
41
|
+
- @adapttable/core@0.2.2
|
|
42
|
+
|
|
3
43
|
## 0.2.1
|
|
4
44
|
|
|
5
45
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# @adapttable/mui
|
|
2
2
|
|
|
3
|
-

|
|
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
|
|