@adapttable/unstyled 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 +3 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +3 -2
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,25 @@
|
|
|
1
1
|
# @adapttable/unstyled
|
|
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
|
@@ -764,12 +764,13 @@ function Chips({
|
|
|
764
764
|
},
|
|
765
765
|
chip.key
|
|
766
766
|
)),
|
|
767
|
-
/* @__PURE__ */ jsxRuntime.jsx("li", { children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
767
|
+
/* @__PURE__ */ jsxRuntime.jsx("li", { "data-adapttable-part": "chip", className: classNames.chip, children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
768
768
|
"button",
|
|
769
769
|
{
|
|
770
770
|
type: "button",
|
|
771
|
-
|
|
771
|
+
"data-adapttable-part": "chip-remove",
|
|
772
772
|
className: classNames.chipRemove,
|
|
773
|
+
onClick: onClearAll,
|
|
773
774
|
children: labels.clearAll
|
|
774
775
|
}
|
|
775
776
|
) })
|