@adapttable/mui 0.1.1 → 0.2.1
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 +42 -0
- package/README.md +13 -0
- package/dist/index.cjs +1736 -1847
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +81 -76
- package/dist/index.d.cts.map +1 -0
- package/dist/index.d.ts +81 -76
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +1689 -1822
- package/dist/index.js.map +1 -1
- package/package.json +14 -14
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,47 @@
|
|
|
1
1
|
# @adapttable/mui
|
|
2
2
|
|
|
3
|
+
## 0.2.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- dd60cf0: docs: each package readme now links the docs site, live demo, and getting-started guide (top links + a Documentation section deep-linking each feature), the `homepage` field points at the docs site, and the root readme gains npm badges. Tailwind/shadcn is reframed as the unstyled adapter path rather than a batteries-included styled adapter.
|
|
8
|
+
- Updated dependencies [dd60cf0]
|
|
9
|
+
- @adapttable/core@0.2.1
|
|
10
|
+
|
|
11
|
+
## 0.2.0
|
|
12
|
+
|
|
13
|
+
### Minor Changes
|
|
14
|
+
|
|
15
|
+
- 83610ec: Support React 19 and the latest major of every UI kit.
|
|
16
|
+
|
|
17
|
+
- **core / unstyled**: hook and chrome ref types follow React 19's
|
|
18
|
+
`useRef<T>(null) → RefObject<T | null>` change, and the deprecated
|
|
19
|
+
`MutableRefObject` is replaced with `RefObject`. The prop-getters
|
|
20
|
+
(`getTableProps`, `getHeaderCellProps`, `getSortButtonProps`,
|
|
21
|
+
`getCellProps`, `getSearchInputProps`) now return precise element-prop
|
|
22
|
+
interfaces instead of a bare `Record<string, unknown>`, so adapters spread
|
|
23
|
+
them without unsafe casts. React peer stays `^18 || ^19`.
|
|
24
|
+
- **mantine**: adds `@mantine/core` / `@mantine/hooks` `^9` to the peer range
|
|
25
|
+
(now `^7 || ^8 || ^9`); Mantine 9 requires React 19.
|
|
26
|
+
- **mui**: adds `@mui/material` `^8 || ^9` to the peer range. System props
|
|
27
|
+
that v7 removed from `Stack` / `Box` / `Typography` (`alignItems`, `py`,
|
|
28
|
+
`fontWeight`, …) moved into `sx`, which is backward-compatible to v5.
|
|
29
|
+
- **chakra**: rebuilt for Chakra UI **v3** — compound components
|
|
30
|
+
(`Table.Root`, `Menu.Root`, `Popover.Root`, `Drawer.Root`, …),
|
|
31
|
+
`ChakraProvider value={defaultSystem}`, and the v3 prop renames
|
|
32
|
+
(`colorScheme → colorPalette`, `isOpen → open`, …). Peer is now
|
|
33
|
+
`@chakra-ui/react@^3`; Chakra v2 is no longer supported.
|
|
34
|
+
- **antd**: rebuilt for Ant Design **v6** — `Alert` `message → title`,
|
|
35
|
+
`Drawer` `width → size`, `Popover` `styles.body → styles.content`, `Space`
|
|
36
|
+
`direction → orientation`, `Tag` `bordered={false} → variant="filled"`, and
|
|
37
|
+
the logical fixed-column class names. Peer is now `antd@^6`; Ant Design v5 is
|
|
38
|
+
no longer supported.
|
|
39
|
+
|
|
40
|
+
### Patch Changes
|
|
41
|
+
|
|
42
|
+
- Updated dependencies [83610ec]
|
|
43
|
+
- @adapttable/core@0.2.0
|
|
44
|
+
|
|
3
45
|
## 0.1.1
|
|
4
46
|
|
|
5
47
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# @adapttable/mui
|
|
2
2
|
|
|
3
|
+

|
|
4
|
+
|
|
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
|
+
|
|
3
7
|
The **Material UI adapter** for [AdaptTable](https://github.com/orwa-mahmoud/adapttable) —
|
|
4
8
|
a batteries-included MUI data table with sorting, filtering, URL-synced
|
|
5
9
|
state, selection + bulk actions, RTL, and dark mode. A free, headless
|
|
@@ -45,6 +49,15 @@ from a server-paginated query — the component doesn't change.
|
|
|
45
49
|
- Auto desktop table ↔ mobile cards.
|
|
46
50
|
- `slots` (skeleton, empty), `className`, `size`, injectable `confirm`.
|
|
47
51
|
|
|
52
|
+
## Documentation
|
|
53
|
+
|
|
54
|
+
[Getting started](https://orwa-mahmoud.github.io/adapttable/getting-started/) · [Live demo](https://orwa-mahmoud.github.io/adapttable/demo/) · [Comparison vs ag-Grid · MUI X · TanStack](https://orwa-mahmoud.github.io/adapttable/comparison/)
|
|
55
|
+
|
|
56
|
+
- **Data** — [client vs server tiers](https://orwa-mahmoud.github.io/adapttable/data-tiers/) · [pagination & infinite scroll](https://orwa-mahmoud.github.io/adapttable/pagination/) · [URL-synced state](https://orwa-mahmoud.github.io/adapttable/url-state/)
|
|
57
|
+
- **Interaction** — [filtering](https://orwa-mahmoud.github.io/adapttable/filtering/) · [sorting](https://orwa-mahmoud.github.io/adapttable/sorting/) · [selection & bulk actions](https://orwa-mahmoud.github.io/adapttable/selection/) · [row expansion](https://orwa-mahmoud.github.io/adapttable/row-expansion/)
|
|
58
|
+
- **Columns** — [show/hide · reorder · pin · resize](https://orwa-mahmoud.github.io/adapttable/column-management/)
|
|
59
|
+
- **More** — [i18n & RTL](https://orwa-mahmoud.github.io/adapttable/i18n-rtl/) · [virtualization](https://orwa-mahmoud.github.io/adapttable/virtualization/) · [customization](https://orwa-mahmoud.github.io/adapttable/customization/) · [API](https://orwa-mahmoud.github.io/adapttable/api/) · [FAQ](https://orwa-mahmoud.github.io/adapttable/faq/)
|
|
60
|
+
|
|
48
61
|
## License
|
|
49
62
|
|
|
50
63
|
[MIT](../../LICENSE) © Orwa Mahmoud
|