@vuu-ui/vuu-table-types 2.1.6 → 2.1.7

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.
Files changed (2) hide show
  1. package/index.d.ts +6 -0
  2. package/package.json +4 -4
package/index.d.ts CHANGED
@@ -60,6 +60,12 @@ export declare type TableSelectionModel =
60
60
  | "single"
61
61
  | "single-no-deselect"
62
62
  | "checkbox"
63
+ /**
64
+ * User may need to temporarily disable selection. In order to avoid a layout shift
65
+ * when checkboxes are removed, we have a 'checkbox-disabled' state, which means no
66
+ * selection will be in effect, but we preserve placeholders for the checkboxes.
67
+ */
68
+ | "checkbox-disabled"
63
69
  | "extended";
64
70
 
65
71
  export declare type TableHeading = { label: string; width: number };
package/package.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "@vuu-ui/vuu-table-types",
3
- "version": "2.1.6",
3
+ "version": "2.1.7",
4
4
  "devDependencies": {
5
- "@vuu-ui/vuu-data-types": "2.1.6",
6
- "@vuu-ui/vuu-filter-types": "2.1.6",
7
- "@vuu-ui/vuu-protocol-types": "2.1.6"
5
+ "@vuu-ui/vuu-data-types": "2.1.7",
6
+ "@vuu-ui/vuu-filter-types": "2.1.7",
7
+ "@vuu-ui/vuu-protocol-types": "2.1.7"
8
8
  },
9
9
  "author": "heswell",
10
10
  "license": "Apache-2.0",