@adapttable/mantine 0.1.1 → 0.2.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 +34 -0
- package/dist/index.cjs +1902 -1932
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +197 -151
- package/dist/index.d.cts.map +1 -0
- package/dist/index.d.ts +197 -150
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +1848 -1900
- package/dist/index.js.map +1 -1
- package/package.json +17 -15
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,39 @@
|
|
|
1
1
|
# @adapttable/mantine
|
|
2
2
|
|
|
3
|
+
## 0.2.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 83610ec: Support React 19 and the latest major of every UI kit.
|
|
8
|
+
|
|
9
|
+
- **core / unstyled**: hook and chrome ref types follow React 19's
|
|
10
|
+
`useRef<T>(null) → RefObject<T | null>` change, and the deprecated
|
|
11
|
+
`MutableRefObject` is replaced with `RefObject`. The prop-getters
|
|
12
|
+
(`getTableProps`, `getHeaderCellProps`, `getSortButtonProps`,
|
|
13
|
+
`getCellProps`, `getSearchInputProps`) now return precise element-prop
|
|
14
|
+
interfaces instead of a bare `Record<string, unknown>`, so adapters spread
|
|
15
|
+
them without unsafe casts. React peer stays `^18 || ^19`.
|
|
16
|
+
- **mantine**: adds `@mantine/core` / `@mantine/hooks` `^9` to the peer range
|
|
17
|
+
(now `^7 || ^8 || ^9`); Mantine 9 requires React 19.
|
|
18
|
+
- **mui**: adds `@mui/material` `^8 || ^9` to the peer range. System props
|
|
19
|
+
that v7 removed from `Stack` / `Box` / `Typography` (`alignItems`, `py`,
|
|
20
|
+
`fontWeight`, …) moved into `sx`, which is backward-compatible to v5.
|
|
21
|
+
- **chakra**: rebuilt for Chakra UI **v3** — compound components
|
|
22
|
+
(`Table.Root`, `Menu.Root`, `Popover.Root`, `Drawer.Root`, …),
|
|
23
|
+
`ChakraProvider value={defaultSystem}`, and the v3 prop renames
|
|
24
|
+
(`colorScheme → colorPalette`, `isOpen → open`, …). Peer is now
|
|
25
|
+
`@chakra-ui/react@^3`; Chakra v2 is no longer supported.
|
|
26
|
+
- **antd**: rebuilt for Ant Design **v6** — `Alert` `message → title`,
|
|
27
|
+
`Drawer` `width → size`, `Popover` `styles.body → styles.content`, `Space`
|
|
28
|
+
`direction → orientation`, `Tag` `bordered={false} → variant="filled"`, and
|
|
29
|
+
the logical fixed-column class names. Peer is now `antd@^6`; Ant Design v5 is
|
|
30
|
+
no longer supported.
|
|
31
|
+
|
|
32
|
+
### Patch Changes
|
|
33
|
+
|
|
34
|
+
- Updated dependencies [83610ec]
|
|
35
|
+
- @adapttable/core@0.2.0
|
|
36
|
+
|
|
3
37
|
## 0.1.1
|
|
4
38
|
|
|
5
39
|
### Patch Changes
|