@umbraco-ui/uui-table 1.17.0-rc.4 → 1.17.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.
@@ -21,6 +21,20 @@ interface TableItem {
21
21
  newsletter: boolean;
22
22
  }
23
23
  export declare class UUITableWithSelectionExampleElement extends LitElement {
24
+ /**
25
+ * This property is used to generate the label for the select all checkbox
26
+ * @type {string}
27
+ * @attr
28
+ */
29
+ selectAllLabel: string;
30
+ /**
31
+ * This property is used to generate the label for individual row checkboxes.
32
+ * The item name will be appended. For example, with the default value "Select" and an item named "John Doe",
33
+ * the resulting label will be "Select John Doe".
34
+ * @type {string}
35
+ * @attr
36
+ */
37
+ selectRowLabel: string;
24
38
  private _columns;
25
39
  private _items;
26
40
  private _selectionMode;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@umbraco-ui/uui-table",
3
- "version": "1.17.0-rc.4",
3
+ "version": "1.17.0",
4
4
  "license": "MIT",
5
5
  "keywords": [
6
6
  "Umbraco",
@@ -30,7 +30,7 @@
30
30
  "custom-elements.json"
31
31
  ],
32
32
  "dependencies": {
33
- "@umbraco-ui/uui-base": "1.17.0-rc.4"
33
+ "@umbraco-ui/uui-base": "1.17.0"
34
34
  },
35
35
  "scripts": {
36
36
  "build": "npm run analyze && tsc --build && rollup -c rollup.config.js",
@@ -41,5 +41,5 @@
41
41
  "access": "public"
42
42
  },
43
43
  "homepage": "https://uui.umbraco.com/?path=/story/uui-table",
44
- "gitHead": "a4a929fa86b765eff039d33969e4117f493aaa29"
44
+ "gitHead": "7d602fc76ed33f3100ead94a01e1d6f1eedf0f5e"
45
45
  }