@umbraco-ui/uui-table 1.8.0 → 1.9.0-rc.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.
Files changed (2) hide show
  1. package/lib/index.js +7 -14
  2. package/package.json +3 -3
package/lib/index.js CHANGED
@@ -10,8 +10,7 @@ var __decorateClass$5 = (decorators, target, key, kind) => {
10
10
  for (var i = decorators.length - 1, decorator; i >= 0; i--)
11
11
  if (decorator = decorators[i])
12
12
  result = (kind ? decorator(target, key, result) : decorator(result)) || result;
13
- if (kind && result)
14
- __defProp$5(target, key, result);
13
+ if (kind && result) __defProp$5(target, key, result);
15
14
  return result;
16
15
  };
17
16
  let UUITableElement = class extends LitElement {
@@ -46,8 +45,7 @@ var __decorateClass$4 = (decorators, target, key, kind) => {
46
45
  for (var i = decorators.length - 1, decorator; i >= 0; i--)
47
46
  if (decorator = decorators[i])
48
47
  result = (kind ? decorator(target, key, result) : decorator(result)) || result;
49
- if (kind && result)
50
- __defProp$4(target, key, result);
48
+ if (kind && result) __defProp$4(target, key, result);
51
49
  return result;
52
50
  };
53
51
  let UUITableCellElement = class extends LitElement {
@@ -151,8 +149,7 @@ var __decorateClass$3 = (decorators, target, key, kind) => {
151
149
  for (var i = decorators.length - 1, decorator; i >= 0; i--)
152
150
  if (decorator = decorators[i])
153
151
  result = (kind ? decorator(target, key, result) : decorator(result)) || result;
154
- if (kind && result)
155
- __defProp$3(target, key, result);
152
+ if (kind && result) __defProp$3(target, key, result);
156
153
  return result;
157
154
  };
158
155
  let UUITableColumnElement = class extends LitElement {
@@ -175,8 +172,7 @@ var __decorateClass$2 = (decorators, target, key, kind) => {
175
172
  for (var i = decorators.length - 1, decorator; i >= 0; i--)
176
173
  if (decorator = decorators[i])
177
174
  result = (kind ? decorator(target, key, result) : decorator(result)) || result;
178
- if (kind && result)
179
- __defProp$2(target, key, result);
175
+ if (kind && result) __defProp$2(target, key, result);
180
176
  return result;
181
177
  };
182
178
  let UUITableHeadCellElement = class extends UUITableCellElement {
@@ -204,8 +200,7 @@ var __decorateClass$1 = (decorators, target, key, kind) => {
204
200
  for (var i = decorators.length - 1, decorator; i >= 0; i--)
205
201
  if (decorator = decorators[i])
206
202
  result = (kind ? decorator(target, key, result) : decorator(result)) || result;
207
- if (kind && result)
208
- __defProp$1(target, key, result);
203
+ if (kind && result) __defProp$1(target, key, result);
209
204
  return result;
210
205
  };
211
206
  let UUITableHeadElement = class extends LitElement {
@@ -236,8 +231,7 @@ var __decorateClass = (decorators, target, key, kind) => {
236
231
  for (var i = decorators.length - 1, decorator; i >= 0; i--)
237
232
  if (decorator = decorators[i])
238
233
  result = (kind ? decorator(target, key, result) : decorator(result)) || result;
239
- if (kind && result)
240
- __defProp(target, key, result);
234
+ if (kind && result) __defProp(target, key, result);
241
235
  return result;
242
236
  };
243
237
  let UUITableRowElement = class extends SelectOnlyMixin(
@@ -265,8 +259,7 @@ let UUITableRowElement = class extends SelectOnlyMixin(
265
259
  this.setAttribute("role", "row");
266
260
  }
267
261
  updated(changedProperties) {
268
- if (changedProperties.has("selectOnly"))
269
- this.updateChildSelectOnly();
262
+ if (changedProperties.has("selectOnly")) this.updateChildSelectOnly();
270
263
  }
271
264
  updateChildSelectOnly() {
272
265
  if (this.slotCellNodes) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@umbraco-ui/uui-table",
3
- "version": "1.8.0",
3
+ "version": "1.9.0-rc.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.8.0"
33
+ "@umbraco-ui/uui-base": "1.9.0-rc.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": "53021762a52dc54a46f0c5ef829c1cbaabde1160"
44
+ "gitHead": "e3e398e07b6ff9874aa0656cb7767df42f58a4ce"
45
45
  }