@adapttable/mantine 0.1.0 → 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 CHANGED
@@ -1,5 +1,59 @@
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
+
37
+ ## 0.1.1
38
+
39
+ ### Patch Changes
40
+
41
+ - 4584081: Three fixes surfaced by the new demo pages:
42
+ - **core**: in infinite mode, the window growing at the bottom (the
43
+ sentinel incrementing the page) no longer triggers the scroll-to-top
44
+ reset — only real paged navigation does. Reaching the end of a long
45
+ virtualized list no longer teleports the reader back to the top.
46
+ - **mantine**: `stickyHeader` now actually pins in page-scroll mode —
47
+ Chromium cannot stick a `th` inside a `border-collapse: collapse`
48
+ table (Mantine's default), so the sticky header switches the table to
49
+ separate borders (visually identical).
50
+ - **unstyled**: the chips clear-all button rendered as a bare `<li>` —
51
+ an unstylable stray list bullet. It now carries the same `chip`
52
+ part/class as its siblings, so consumer styling applies.
53
+
54
+ - Updated dependencies [4584081]
55
+ - @adapttable/core@0.1.1
56
+
3
57
  ## 0.1.0
4
58
 
5
59
  ### Minor Changes