@adapttable/unstyled 0.2.1 → 0.3.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,41 @@
1
1
  # @adapttable/unstyled
2
2
 
3
+ ## 0.3.0
4
+
5
+ ### Minor Changes
6
+
7
+ - a90a2c2: Logical column pinning, so pinning stays correct under RTL.
8
+
9
+ **Breaking.** Pinned-side values are now `"start"` / `"end"` (were `"left"` /
10
+ `"right"`) — this is the public `pinned` layout value and the `colPin` URL token
11
+ (e.g. `colPin=name:start`); pre-existing `left`/`right` URLs no longer parse. The
12
+ label keys `pinLeft` / `pinRight` / `moveLeft` / `moveRight` are renamed to
13
+ `pinStart` / `pinEnd` / `moveStart` / `moveEnd`, with logical display strings
14
+ shipped for every locale. Pinning a data column is now a start-only toggle; the
15
+ injected actions column keeps its one-click end-pin.
16
+
17
+ To migrate: update any `defaultColumnLayout={{ pinned: { x: "left" } }}` to
18
+ `"start"` (and `"right"` → `"end"`), any persisted `colPin` URLs, and any custom
19
+ `labels` overriding the renamed keys.
20
+
21
+ - a90a2c2: Numbered page buttons in every adapter's pagination (with first/last and
22
+ ellipsis truncation), replacing the prev/next-only control — driven by a shared
23
+ `paginationItems` builder in `@adapttable/core`.
24
+
25
+ ### Patch Changes
26
+
27
+ - Updated dependencies [a90a2c2]
28
+ - Updated dependencies [a90a2c2]
29
+ - @adapttable/core@0.3.0
30
+
31
+ ## 0.2.2
32
+
33
+ ### Patch Changes
34
+
35
+ - 0fe5eca: Ship the **React Compiler**. The published packages are now built with `babel-plugin-react-compiler` (target 18, **production build only** — not the test build), so components and hooks are auto-memoized for fewer wasted re-renders. Tests still run against un-compiled source, so coverage is unaffected; the compiled output adds `react-compiler-runtime` as a small runtime dependency.
36
+ - Updated dependencies [0fe5eca]
37
+ - @adapttable/core@0.2.2
38
+
3
39
  ## 0.2.1
4
40
 
5
41
  ### Patch Changes
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # @adapttable/unstyled
2
2
 
3
- ![@adapttable/unstyled — a headless table styled with Tailwind / shadcn](https://raw.githubusercontent.com/orwa-mahmoud/adapttable/main/assets/hero-unstyled.png)
3
+ ![@adapttable/unstyled — a headless table styled with Tailwind / shadcn](https://orwa-mahmoud.github.io/adapttable/media/demo-unstyled.gif)
4
4
 
5
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
6