@leaflink/stash 53.4.5 → 53.4.6

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@leaflink/stash",
3
- "version": "53.4.5",
3
+ "version": "53.4.6",
4
4
  "description": "LeafLink's design system.",
5
5
  "homepage": "https://stash.leaflink.com",
6
6
  "main": "./dist/index.ts",
@@ -24,6 +24,11 @@
24
24
  "./styles/overrides/*": "./styles/overrides/*",
25
25
  "./styles/utility/*": "./styles/utility/*",
26
26
  "./styles/*": "./styles/*",
27
+ "./DataTable": {
28
+ "types": "./dist/DataTable/index.d.ts",
29
+ "import": "./dist/DataTable/index.js",
30
+ "default": "./dist/DataTable/index.js"
31
+ },
27
32
  "./types/*": "./types/*.ts",
28
33
  "./utils/*": {
29
34
  "types": "./dist/*.d.ts",
@@ -76,6 +81,7 @@
76
81
  "@floating-ui/vue": "1.1.5",
77
82
  "@googlemaps/js-api-loader": "1.16.8",
78
83
  "@leaflink/snitch": "1.2.1",
84
+ "@tanstack/vue-table": "^8.21.3",
79
85
  "@vueuse/core": "14.1.0",
80
86
  "date-fns": "3.6.0",
81
87
  "date-fns-tz": "3.1.3",
@@ -0,0 +1,18 @@
1
+ import type { RowData } from '@tanstack/vue-table';
2
+
3
+ declare module '@tanstack/vue-table' {
4
+ // eslint-disable-next-line @typescript-eslint/no-unused-vars -- TData, TValue are required by ColumnMeta
5
+ interface ColumnMeta<TData extends RowData, TValue> {
6
+ class?: string;
7
+ headerClass?: string;
8
+ cellClass?: string;
9
+ }
10
+ }
11
+
12
+ declare module '@tanstack/table-core' {
13
+ // eslint-disable-next-line @typescript-eslint/no-unused-vars -- generics required by ColumnDef
14
+ interface ColumnDef<TData extends RowData, TValue = unknown> {
15
+ minSize?: number;
16
+ maxSize?: number;
17
+ }
18
+ }