@adapttable/mantine 0.1.0 → 0.1.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 +20 -0
- package/dist/index.cjs +1 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,25 @@
|
|
|
1
1
|
# @adapttable/mantine
|
|
2
2
|
|
|
3
|
+
## 0.1.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 4584081: Three fixes surfaced by the new demo pages:
|
|
8
|
+
- **core**: in infinite mode, the window growing at the bottom (the
|
|
9
|
+
sentinel incrementing the page) no longer triggers the scroll-to-top
|
|
10
|
+
reset — only real paged navigation does. Reaching the end of a long
|
|
11
|
+
virtualized list no longer teleports the reader back to the top.
|
|
12
|
+
- **mantine**: `stickyHeader` now actually pins in page-scroll mode —
|
|
13
|
+
Chromium cannot stick a `th` inside a `border-collapse: collapse`
|
|
14
|
+
table (Mantine's default), so the sticky header switches the table to
|
|
15
|
+
separate borders (visually identical).
|
|
16
|
+
- **unstyled**: the chips clear-all button rendered as a bare `<li>` —
|
|
17
|
+
an unstylable stray list bullet. It now carries the same `chip`
|
|
18
|
+
part/class as its siblings, so consumer styling applies.
|
|
19
|
+
|
|
20
|
+
- Updated dependencies [4584081]
|
|
21
|
+
- @adapttable/core@0.1.1
|
|
22
|
+
|
|
3
23
|
## 0.1.0
|
|
4
24
|
|
|
5
25
|
### Minor Changes
|
package/dist/index.cjs
CHANGED
|
@@ -983,6 +983,7 @@ function DesktopTable({
|
|
|
983
983
|
verticalSpacing,
|
|
984
984
|
horizontalSpacing,
|
|
985
985
|
miw: Math.max(480, minWidth),
|
|
986
|
+
style: stickyHeader ? { borderCollapse: "separate", borderSpacing: 0 } : void 0,
|
|
986
987
|
children: [
|
|
987
988
|
/* @__PURE__ */ jsxRuntime.jsxs(core$1.Table.Thead, { style: { background: "var(--mantine-color-body)" }, children: [
|
|
988
989
|
groupCells && /* @__PURE__ */ jsxRuntime.jsxs(core$1.Table.Tr, { children: [
|