@chumsinc/sortable-tables 2.1.0 → 2.1.2
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 +23 -1
- package/dist/DataTableCell.d.ts +1 -1
- package/package.json +12 -6
package/CHANGELOG.md
CHANGED
|
@@ -7,7 +7,29 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
9
9
|
|
|
10
|
-
#### [v2.1.
|
|
10
|
+
#### [v2.1.2](https://github.com/ChumsInc/sortable-tables/compare/v2.1.1...v2.1.2)
|
|
11
|
+
|
|
12
|
+
> 2025-12-02
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Commits
|
|
18
|
+
|
|
19
|
+
- [`210a01e`](https://github.com/ChumsInc/sortable-tables/commit/210a01e9cf4e62a63d569bd6ced41a26f17b5ae5) chore: update dependencies in package-lock.json
|
|
20
|
+
|
|
21
|
+
#### [v2.1.1](https://github.com/ChumsInc/sortable-tables/compare/v2.1.0...v2.1.1) - 2025-11-04
|
|
22
|
+
|
|
23
|
+
> 2025-11-04
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
### Commits
|
|
29
|
+
|
|
30
|
+
- [`be79047`](https://github.com/ChumsInc/sortable-tables/commit/be79047541456eee2006706438b55aa61aed4fc1) chore: update types and dependencies
|
|
31
|
+
|
|
32
|
+
#### [v2.1.0](https://github.com/ChumsInc/sortable-tables/compare/v2.0.14...v2.1.0) - 2025-11-03
|
|
11
33
|
|
|
12
34
|
> 2025-11-03
|
|
13
35
|
|
package/dist/DataTableCell.d.ts
CHANGED
|
@@ -57,7 +57,7 @@ export default function DataTableCell<T = unknown>({ field, row, className, as,
|
|
|
57
57
|
results?: number | undefined;
|
|
58
58
|
security?: string | undefined;
|
|
59
59
|
unselectable?: "on" | "off" | undefined;
|
|
60
|
-
popover?: "" | "auto" | "manual" | undefined;
|
|
60
|
+
popover?: "" | "auto" | "manual" | "hint" | undefined;
|
|
61
61
|
popoverTargetAction?: "toggle" | "show" | "hide" | undefined;
|
|
62
62
|
popoverTarget?: string | undefined;
|
|
63
63
|
inert?: boolean | undefined;
|
package/package.json
CHANGED
|
@@ -1,15 +1,21 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@chumsinc/sortable-tables",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.2",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"source": "./src/index.tsx",
|
|
6
|
-
"main": "dist/index.umd.js",
|
|
7
|
-
"module": "dist/index.es.js",
|
|
8
|
-
"types": "dist/index.d.ts",
|
|
6
|
+
"main": "./dist/index.umd.js",
|
|
7
|
+
"module": "./dist/index.es.js",
|
|
8
|
+
"types": "./dist/index.d.ts",
|
|
9
9
|
"exports": {
|
|
10
10
|
".": {
|
|
11
|
-
"import":
|
|
12
|
-
|
|
11
|
+
"import": {
|
|
12
|
+
"types": "./dist/index.d.ts",
|
|
13
|
+
"default": "./dist/index.es.js"
|
|
14
|
+
},
|
|
15
|
+
"require": {
|
|
16
|
+
"types": "./dist/index.d.ts",
|
|
17
|
+
"default": "./dist/index.umd.js"
|
|
18
|
+
}
|
|
13
19
|
}
|
|
14
20
|
},
|
|
15
21
|
"peerDependencies": {
|