@adapttable/mantine 0.2.0 → 0.2.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 CHANGED
@@ -1,5 +1,13 @@
1
1
  # @adapttable/mantine
2
2
 
3
+ ## 0.2.1
4
+
5
+ ### Patch Changes
6
+
7
+ - dd60cf0: docs: each package readme now links the docs site, live demo, and getting-started guide (top links + a Documentation section deep-linking each feature), the `homepage` field points at the docs site, and the root readme gains npm badges. Tailwind/shadcn is reframed as the unstyled adapter path rather than a batteries-included styled adapter.
8
+ - Updated dependencies [dd60cf0]
9
+ - @adapttable/core@0.2.1
10
+
3
11
  ## 0.2.0
4
12
 
5
13
  ### Minor Changes
package/README.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # @adapttable/mantine
2
2
 
3
+ ![@adapttable/mantine — a Mantine data table built on AdaptTable](https://raw.githubusercontent.com/orwa-mahmoud/adapttable/main/assets/hero-mantine.png)
4
+
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
+
3
7
  The **Mantine adapter** for [AdaptTable](https://github.com/orwa-mahmoud/adapttable) —
4
8
  a batteries-included React data table with sorting, filtering, URL-synced
5
9
  state, selection + bulk actions, RTL, dark mode, and optional entrance
@@ -59,6 +63,15 @@ server-paginated `useInfiniteQuery` — nothing else changes.
59
63
  - **Customisation**: `slots`, `classNames`, custom `toolbar`, injectable
60
64
  `confirm`, and full headless escape hatch via `@adapttable/core`.
61
65
 
66
+ ## Documentation
67
+
68
+ [Getting started](https://orwa-mahmoud.github.io/adapttable/getting-started/) · [Live demo](https://orwa-mahmoud.github.io/adapttable/demo/) · [Comparison vs ag-Grid · MUI X · TanStack](https://orwa-mahmoud.github.io/adapttable/comparison/)
69
+
70
+ - **Data** — [client vs server tiers](https://orwa-mahmoud.github.io/adapttable/data-tiers/) · [pagination & infinite scroll](https://orwa-mahmoud.github.io/adapttable/pagination/) · [URL-synced state](https://orwa-mahmoud.github.io/adapttable/url-state/)
71
+ - **Interaction** — [filtering](https://orwa-mahmoud.github.io/adapttable/filtering/) · [sorting](https://orwa-mahmoud.github.io/adapttable/sorting/) · [selection & bulk actions](https://orwa-mahmoud.github.io/adapttable/selection/) · [row expansion](https://orwa-mahmoud.github.io/adapttable/row-expansion/)
72
+ - **Columns** — [show/hide · reorder · pin · resize](https://orwa-mahmoud.github.io/adapttable/column-management/)
73
+ - **More** — [i18n & RTL](https://orwa-mahmoud.github.io/adapttable/i18n-rtl/) · [virtualization](https://orwa-mahmoud.github.io/adapttable/virtualization/) · [customization](https://orwa-mahmoud.github.io/adapttable/customization/) · [API](https://orwa-mahmoud.github.io/adapttable/api/) · [FAQ](https://orwa-mahmoud.github.io/adapttable/faq/)
74
+
62
75
  ## License
63
76
 
64
77
  [MIT](../../LICENSE) © Orwa Mahmoud
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adapttable/mantine",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "description": "Mantine adapter for AdaptTable — a batteries-included, themeable React data table with sorting, filtering, URL state, virtualization, RTL, dark mode, and responsive card rendering.",
5
5
  "keywords": [
6
6
  "react",
@@ -19,7 +19,7 @@
19
19
  ],
20
20
  "license": "MIT",
21
21
  "author": "Orwa Mahmoud",
22
- "homepage": "https://github.com/orwa-mahmoud/adapttable/tree/main/packages/adapter-mantine#readme",
22
+ "homepage": "https://orwa-mahmoud.github.io/adapttable/",
23
23
  "repository": {
24
24
  "type": "git",
25
25
  "url": "git+https://github.com/orwa-mahmoud/adapttable.git",
@@ -50,7 +50,7 @@
50
50
  "./package.json": "./package.json"
51
51
  },
52
52
  "dependencies": {
53
- "@adapttable/core": "0.2.0"
53
+ "@adapttable/core": "0.2.1"
54
54
  },
55
55
  "peerDependencies": {
56
56
  "@mantine/core": "^7.0.0 || ^8.0.0 || ^9.0.0",