@umbraco-ui/uui-table 0.0.17 → 0.0.18

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/README.md CHANGED
@@ -13,30 +13,20 @@ npm i @umbraco-ui/uui-table
13
13
  Import the registration of `<uui-table>`, `<uui-table-row>`, `<uui-table-cell>`, `<uui-table-head>`, `<uui-table-head-cell>`, `<uui-table-column>` via:
14
14
 
15
15
  ```javascript
16
- import '@umbraco-ui/uui-table/lib';
16
+ import '@umbraco-ui/uui-table';
17
17
  ```
18
18
 
19
19
  When looking to leverage the `UUITableElement`, `UUITableRowElement`, `UUITableCellElement`, `UUITableHeadElement`, `UUITableHeadCellElement`, `UUITableColumnElement` base class as a type and/or for extension purposes, do so via:
20
20
 
21
21
  ```javascript
22
- import { UUITableElement } from '@umbraco-ui/uui-table/lib/uui-table.element';
23
- import { UUITableRowElement } from '@umbraco-ui/uui-table/lib/uui-table-row.element';
24
- import { UUITableCellElement } from '@umbraco-ui/uui-table/lib/uui-table-cell.element';
25
- import { UUITableHeadElement } from '@umbraco-ui/uui-table/lib/uui-table-head.element';
26
- import { UUITableHeadCellElement } from '@umbraco-ui/uui-table/lib/uui-table-head-cell.element';
27
- import { UUITableColumnElement } from '@umbraco-ui/uui-table/lib/uui-table-column.element';
28
- ```
29
-
30
- ### CDN
31
-
32
- The component is available via CDN. This means it can be added to your application without the need of any bundler configuration. Here is how to use it with jsDelivr.
33
-
34
- ```html
35
- <!-- Latest Version -->
36
- <script src="https://cdn.jsdelivr.net/npm/@umbraco-ui/uui-table@latest/dist/uui-table.min.js"></script>
37
-
38
- <!-- Specific version -->
39
- <script src="https://cdn.jsdelivr.net/npm/@umbraco-ui/uui-table@X.X.X/dist/uui-table.min.js"></script>
22
+ import {
23
+ UUITableElement,
24
+ UUITableRowElement,
25
+ UUITableCellElement,
26
+ UUITableHeadElement,
27
+ UUITableHeadCellElement,
28
+ UUITableColumnElement,
29
+ } from '@umbraco-ui/uui-table';
40
30
  ```
41
31
 
42
32
  ## Usage
package/lib/index.d.ts CHANGED
@@ -1 +1,6 @@
1
- export {};
1
+ export * from './uui-table.element';
2
+ export * from './uui-table-cell.element';
3
+ export * from './uui-table-column.element';
4
+ export * from './uui-table-head-cell.element';
5
+ export * from './uui-table-head.element';
6
+ export * from './uui-table-row.element';
package/lib/index.js CHANGED
@@ -1,72 +1,55 @@
1
- import { LitElement, html, css } from 'lit';
2
- import { SelectOnlyMixin, SelectableMixin } from '@umbraco-ui/uui-base/lib/mixins';
3
- import { queryAssignedNodes, property } from 'lit/decorators.js';
4
1
  import { defineElement } from '@umbraco-ui/uui-base/lib/registration';
2
+ import { css, LitElement, html } from 'lit';
3
+ import { property, queryAssignedNodes } from 'lit/decorators.js';
4
+ import { SelectOnlyMixin, SelectableMixin } from '@umbraco-ui/uui-base/lib/mixins';
5
5
 
6
- var __defProp$1 = Object.defineProperty;
7
- var __getOwnPropDesc$1 = Object.getOwnPropertyDescriptor;
8
- var __decorateClass$1 = (decorators, target, key, kind) => {
9
- var result = kind > 1 ? void 0 : kind ? __getOwnPropDesc$1(target, key) : target;
6
+ var __defProp$5 = Object.defineProperty;
7
+ var __getOwnPropDesc$5 = Object.getOwnPropertyDescriptor;
8
+ var __decorateClass$5 = (decorators, target, key, kind) => {
9
+ var result = kind > 1 ? void 0 : kind ? __getOwnPropDesc$5(target, key) : target;
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
13
  if (kind && result)
14
- __defProp$1(target, key, result);
14
+ __defProp$5(target, key, result);
15
15
  return result;
16
16
  };
17
- class UUITableRowElement extends SelectOnlyMixin(SelectableMixin(LitElement)) {
17
+ let UUITableElement = class extends LitElement {
18
18
  connectedCallback() {
19
19
  super.connectedCallback();
20
- this.setAttribute("role", "row");
21
- }
22
- updated(changedProperties) {
23
- if (changedProperties.has("selectOnly"))
24
- this.updateChildSelectOnly();
25
- }
26
- updateChildSelectOnly() {
27
- if (this.slotCellNodes) {
28
- this.slotCellNodes.forEach((el) => {
29
- el.disableChildInteraction = this.selectOnly;
30
- });
31
- }
20
+ this.setAttribute("role", "table");
32
21
  }
33
22
  render() {
34
- return html` <slot @slotchanged=${this.updateChildSelectOnly}></slot> `;
23
+ return html`<slot></slot>`;
35
24
  }
36
- }
37
- UUITableRowElement.styles = [
25
+ };
26
+ UUITableElement.styles = [
38
27
  css`
39
28
  :host {
40
- display: table-row;
41
- position: relative;
42
- }
43
-
44
- :host([selectable]) {
45
- cursor: pointer;
46
- }
47
-
48
- :host([selected]) {
49
- outline: 2px solid var(--uui-interface-select,#3544b1);
50
- outline-offset: -3px;
29
+ display: table;
30
+ width: 100%;
31
+ border-radius: var(--uui-border-radius,3px);
32
+ background-color: var(--uui-interface-surface,#fefefe);
33
+ cursor: default;
51
34
  }
52
35
  `
53
36
  ];
54
- __decorateClass$1([
55
- queryAssignedNodes(void 0, true, "uui-table-cell")
56
- ], UUITableRowElement.prototype, "slotCellNodes", 2);
37
+ UUITableElement = __decorateClass$5([
38
+ defineElement("uui-table")
39
+ ], UUITableElement);
57
40
 
58
- var __defProp = Object.defineProperty;
59
- var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
60
- var __decorateClass = (decorators, target, key, kind) => {
61
- var result = kind > 1 ? void 0 : kind ? __getOwnPropDesc(target, key) : target;
41
+ var __defProp$4 = Object.defineProperty;
42
+ var __getOwnPropDesc$4 = Object.getOwnPropertyDescriptor;
43
+ var __decorateClass$4 = (decorators, target, key, kind) => {
44
+ var result = kind > 1 ? void 0 : kind ? __getOwnPropDesc$4(target, key) : target;
62
45
  for (var i = decorators.length - 1, decorator; i >= 0; i--)
63
46
  if (decorator = decorators[i])
64
47
  result = (kind ? decorator(target, key, result) : decorator(result)) || result;
65
48
  if (kind && result)
66
- __defProp(target, key, result);
49
+ __defProp$4(target, key, result);
67
50
  return result;
68
51
  };
69
- class UUITableCellElement extends LitElement {
52
+ let UUITableCellElement = class extends LitElement {
70
53
  constructor() {
71
54
  super(...arguments);
72
55
  this.disableChildInteraction = false;
@@ -92,6 +75,7 @@ class UUITableCellElement extends LitElement {
92
75
  this._observer.disconnect();
93
76
  }
94
77
  updated(changedProperties) {
78
+ super.updated(changedProperties);
95
79
  if (changedProperties.has("clipText")) {
96
80
  if (this.clipText) {
97
81
  this._detectOverflow();
@@ -104,7 +88,7 @@ class UUITableCellElement extends LitElement {
104
88
  render() {
105
89
  return html` <slot @slotchange=${this._detectOverflow}></slot>`;
106
90
  }
107
- }
91
+ };
108
92
  UUITableCellElement.styles = [
109
93
  css`
110
94
  :host {
@@ -137,26 +121,64 @@ UUITableCellElement.styles = [
137
121
  }
138
122
  `
139
123
  ];
140
- __decorateClass([
124
+ __decorateClass$4([
141
125
  property({
142
126
  type: Boolean,
143
127
  reflect: true,
144
128
  attribute: "disable-child-interaction"
145
129
  })
146
130
  ], UUITableCellElement.prototype, "disableChildInteraction", 2);
147
- __decorateClass([
131
+ __decorateClass$4([
148
132
  property({ type: Boolean, reflect: true, attribute: "no-padding" })
149
133
  ], UUITableCellElement.prototype, "noPadding", 2);
150
- __decorateClass([
134
+ __decorateClass$4([
151
135
  property({ type: Boolean, reflect: true, attribute: "clip-text" })
152
136
  ], UUITableCellElement.prototype, "clipText", 2);
137
+ UUITableCellElement = __decorateClass$4([
138
+ defineElement("uui-table-cell")
139
+ ], UUITableCellElement);
153
140
 
154
- class UUITableHeadCellElement extends UUITableCellElement {
141
+ var __defProp$3 = Object.defineProperty;
142
+ var __getOwnPropDesc$3 = Object.getOwnPropertyDescriptor;
143
+ var __decorateClass$3 = (decorators, target, key, kind) => {
144
+ var result = kind > 1 ? void 0 : kind ? __getOwnPropDesc$3(target, key) : target;
145
+ for (var i = decorators.length - 1, decorator; i >= 0; i--)
146
+ if (decorator = decorators[i])
147
+ result = (kind ? decorator(target, key, result) : decorator(result)) || result;
148
+ if (kind && result)
149
+ __defProp$3(target, key, result);
150
+ return result;
151
+ };
152
+ let UUITableColumnElement = class extends LitElement {
153
+ };
154
+ UUITableColumnElement.styles = [
155
+ css`
156
+ :host {
157
+ display: table-column;
158
+ }
159
+ `
160
+ ];
161
+ UUITableColumnElement = __decorateClass$3([
162
+ defineElement("uui-table-column")
163
+ ], UUITableColumnElement);
164
+
165
+ var __defProp$2 = Object.defineProperty;
166
+ var __getOwnPropDesc$2 = Object.getOwnPropertyDescriptor;
167
+ var __decorateClass$2 = (decorators, target, key, kind) => {
168
+ var result = kind > 1 ? void 0 : kind ? __getOwnPropDesc$2(target, key) : target;
169
+ for (var i = decorators.length - 1, decorator; i >= 0; i--)
170
+ if (decorator = decorators[i])
171
+ result = (kind ? decorator(target, key, result) : decorator(result)) || result;
172
+ if (kind && result)
173
+ __defProp$2(target, key, result);
174
+ return result;
175
+ };
176
+ let UUITableHeadCellElement = class extends UUITableCellElement {
155
177
  connectedCallback() {
156
178
  super.connectedCallback();
157
179
  this.setAttribute("role", "columnheader");
158
180
  }
159
- }
181
+ };
160
182
  UUITableHeadCellElement.styles = [
161
183
  ...UUITableCellElement.styles,
162
184
  css`
@@ -165,8 +187,22 @@ UUITableHeadCellElement.styles = [
165
187
  }
166
188
  `
167
189
  ];
190
+ UUITableHeadCellElement = __decorateClass$2([
191
+ defineElement("uui-table-head-cell")
192
+ ], UUITableHeadCellElement);
168
193
 
169
- class UUITableHeadElement extends LitElement {
194
+ var __defProp$1 = Object.defineProperty;
195
+ var __getOwnPropDesc$1 = Object.getOwnPropertyDescriptor;
196
+ var __decorateClass$1 = (decorators, target, key, kind) => {
197
+ var result = kind > 1 ? void 0 : kind ? __getOwnPropDesc$1(target, key) : target;
198
+ for (var i = decorators.length - 1, decorator; i >= 0; i--)
199
+ if (decorator = decorators[i])
200
+ result = (kind ? decorator(target, key, result) : decorator(result)) || result;
201
+ if (kind && result)
202
+ __defProp$1(target, key, result);
203
+ return result;
204
+ };
205
+ let UUITableHeadElement = class extends LitElement {
170
206
  connectedCallback() {
171
207
  super.connectedCallback();
172
208
  this.setAttribute("role", "row");
@@ -174,7 +210,7 @@ class UUITableHeadElement extends LitElement {
174
210
  render() {
175
211
  return html`<slot></slot>`;
176
212
  }
177
- }
213
+ };
178
214
  UUITableHeadElement.styles = [
179
215
  css`
180
216
  :host {
@@ -183,41 +219,63 @@ UUITableHeadElement.styles = [
183
219
  }
184
220
  `
185
221
  ];
222
+ UUITableHeadElement = __decorateClass$1([
223
+ defineElement("uui-table-head")
224
+ ], UUITableHeadElement);
186
225
 
187
- class UUITableColumnElement extends LitElement {
188
- }
189
- UUITableColumnElement.styles = [
190
- css`
191
- :host {
192
- display: table-column;
193
- }
194
- `
195
- ];
196
-
197
- class UUITableElement extends LitElement {
226
+ var __defProp = Object.defineProperty;
227
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
228
+ var __decorateClass = (decorators, target, key, kind) => {
229
+ var result = kind > 1 ? void 0 : kind ? __getOwnPropDesc(target, key) : target;
230
+ for (var i = decorators.length - 1, decorator; i >= 0; i--)
231
+ if (decorator = decorators[i])
232
+ result = (kind ? decorator(target, key, result) : decorator(result)) || result;
233
+ if (kind && result)
234
+ __defProp(target, key, result);
235
+ return result;
236
+ };
237
+ let UUITableRowElement = class extends SelectOnlyMixin(SelectableMixin(LitElement)) {
198
238
  connectedCallback() {
199
239
  super.connectedCallback();
200
- this.setAttribute("role", "table");
240
+ this.setAttribute("role", "row");
241
+ }
242
+ updated(changedProperties) {
243
+ if (changedProperties.has("selectOnly"))
244
+ this.updateChildSelectOnly();
245
+ }
246
+ updateChildSelectOnly() {
247
+ if (this.slotCellNodes) {
248
+ this.slotCellNodes.forEach((el) => {
249
+ el.disableChildInteraction = this.selectOnly;
250
+ });
251
+ }
201
252
  }
202
253
  render() {
203
- return html`<slot></slot>`;
254
+ return html` <slot @slotchanged=${this.updateChildSelectOnly}></slot> `;
204
255
  }
205
- }
206
- UUITableElement.styles = [
256
+ };
257
+ UUITableRowElement.styles = [
207
258
  css`
208
259
  :host {
209
- display: table;
210
- width: 100%;
211
- border-radius: var(--uui-border-radius,3px);
212
- background-color: var(--uui-interface-surface,#fefefe);
213
- cursor: default;
260
+ display: table-row;
261
+ position: relative;
262
+ }
263
+
264
+ :host([selectable]) {
265
+ cursor: pointer;
266
+ }
267
+
268
+ :host([selected]) {
269
+ outline: 2px solid var(--uui-interface-select,#3544b1);
270
+ outline-offset: -3px;
214
271
  }
215
272
  `
216
273
  ];
274
+ __decorateClass([
275
+ queryAssignedNodes(void 0, true, "uui-table-cell")
276
+ ], UUITableRowElement.prototype, "slotCellNodes", 2);
277
+ UUITableRowElement = __decorateClass([
278
+ defineElement("uui-table-row")
279
+ ], UUITableRowElement);
217
280
 
218
- defineElement("uui-table-column", UUITableColumnElement);
219
- defineElement("uui-table-head-cell", UUITableHeadCellElement);
220
- defineElement("uui-table-head", UUITableHeadElement);
221
- defineElement("uui-table-cell", UUITableCellElement);
222
- defineElement("uui-table-row", UUITableRowElement);
223
- defineElement("uui-table", UUITableElement);
281
+ export { UUITableCellElement, UUITableColumnElement, UUITableElement, UUITableHeadCellElement, UUITableHeadElement, UUITableRowElement };
@@ -1,11 +1,11 @@
1
+ import '.';
2
+ import '@umbraco-ui/uui-avatar/lib';
3
+ import '@umbraco-ui/uui-box/lib';
4
+ import '@umbraco-ui/uui-button/lib';
5
+ import '@umbraco-ui/uui-icon/lib';
6
+ import '@umbraco-ui/uui-progress-bar/lib';
7
+ import '@umbraco-ui/uui-tag/lib';
1
8
  import { LitElement } from 'lit';
2
- import '@umbraco-ui/uui-table/lib/index';
3
- import '@umbraco-ui/uui-box/lib/index';
4
- import '@umbraco-ui/uui-tag/lib/index';
5
- import '@umbraco-ui/uui-avatar/lib/index';
6
- import '@umbraco-ui/uui-button/lib/index';
7
- import '@umbraco-ui/uui-progress-bar/lib/index';
8
- import '@umbraco-ui/uui-icon/lib/index';
9
9
  interface TableColumn {
10
10
  name: string;
11
11
  sort: Function;
@@ -30,6 +30,11 @@ export declare class UUITableCellElement extends LitElement {
30
30
  private _detectOverflow;
31
31
  connectedCallback(): void;
32
32
  disconnectedCallback(): void;
33
- updated(changedProperties: any): void;
33
+ updated(changedProperties: Map<string | number | symbol, unknown>): void;
34
34
  render(): import("lit-html").TemplateResult<1>;
35
35
  }
36
+ declare global {
37
+ interface HTMLElementTagNameMap {
38
+ 'uui-table-cell': UUITableCellElement;
39
+ }
40
+ }
@@ -6,3 +6,8 @@ import { LitElement } from 'lit';
6
6
  export declare class UUITableColumnElement extends LitElement {
7
7
  static styles: import("lit").CSSResult[];
8
8
  }
9
+ declare global {
10
+ interface HTMLElementTagNameMap {
11
+ 'uui-table-column': UUITableColumnElement;
12
+ }
13
+ }
@@ -7,3 +7,8 @@ export declare class UUITableHeadCellElement extends UUITableCellElement {
7
7
  static styles: import("lit").CSSResult[];
8
8
  connectedCallback(): void;
9
9
  }
10
+ declare global {
11
+ interface HTMLElementTagNameMap {
12
+ 'uui-table-head-cell': UUITableHeadCellElement;
13
+ }
14
+ }
@@ -9,3 +9,8 @@ export declare class UUITableHeadElement extends LitElement {
9
9
  connectedCallback(): void;
10
10
  render(): import("lit-html").TemplateResult<1>;
11
11
  }
12
+ declare global {
13
+ interface HTMLElementTagNameMap {
14
+ 'uui-table-head': UUITableHeadElement;
15
+ }
16
+ }
@@ -13,4 +13,9 @@ export declare class UUITableRowElement extends UUITableRowElement_base {
13
13
  private updateChildSelectOnly;
14
14
  render(): import("lit-html").TemplateResult<1>;
15
15
  }
16
+ declare global {
17
+ interface HTMLElementTagNameMap {
18
+ 'uui-table-row': UUITableRowElement;
19
+ }
20
+ }
16
21
  export {};
@@ -9,3 +9,8 @@ export declare class UUITableElement extends LitElement {
9
9
  connectedCallback(): void;
10
10
  render(): import("lit-html").TemplateResult<1>;
11
11
  }
12
+ declare global {
13
+ interface HTMLElementTagNameMap {
14
+ 'uui-table': UUITableElement;
15
+ }
16
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@umbraco-ui/uui-table",
3
- "version": "0.0.17",
3
+ "version": "0.0.18",
4
4
  "license": "MIT",
5
5
  "keywords": [
6
6
  "Umbraco",
@@ -19,17 +19,18 @@
19
19
  "bugs": {
20
20
  "url": "https://github.com/umbraco/Umbraco.UI/issues"
21
21
  },
22
- "main": "./dist/uui-table.min.js",
22
+ "main": "./lib/index.js",
23
23
  "module": "./lib/index.js",
24
+ "types": "./lib/index.d.ts",
25
+ "type": "module",
24
26
  "customElements": "custom-elements.json",
25
27
  "files": [
26
- "dist",
27
28
  "lib/**/*.d.ts",
28
29
  "lib/**/*.js",
29
30
  "custom-elements.json"
30
31
  ],
31
32
  "dependencies": {
32
- "@umbraco-ui/uui-base": "0.0.15"
33
+ "@umbraco-ui/uui-base": "0.0.16"
33
34
  },
34
35
  "scripts": {
35
36
  "build": "npm run analyze && tsc --build --force && rollup -c rollup.config.js",
@@ -40,5 +41,5 @@
40
41
  "access": "public"
41
42
  },
42
43
  "homepage": "https://uui.umbraco.com/?path=/story/uui-table",
43
- "gitHead": "2a640ce4460de94e9c92a97310e27b84bbd6edda"
44
+ "gitHead": "6fbddfc1295e2ea00a532d4f9eb798165b2d39ac"
44
45
  }
@@ -1,34 +0,0 @@
1
- (function(g){typeof define=="function"&&define.amd?define(g):g()})(function(){"use strict";/**
2
- * @license
3
- * Copyright 2019 Google LLC
4
- * SPDX-License-Identifier: BSD-3-Clause
5
- */const g=window.ShadowRoot&&(window.ShadyCSS===void 0||window.ShadyCSS.nativeShadow)&&"adoptedStyleSheets"in Document.prototype&&"replace"in CSSStyleSheet.prototype,L=Symbol(),Q=new Map;class X{constructor(e,t){if(this._$cssResult$=!0,t!==L)throw Error("CSSResult is not constructable. Use `unsafeCSS` or `css` instead.");this.cssText=e}get styleSheet(){let e=Q.get(this.cssText);return g&&e===void 0&&(Q.set(this.cssText,e=new CSSStyleSheet),e.replaceSync(this.cssText)),e}toString(){return this.cssText}}const Ee=r=>new X(typeof r=="string"?r:r+"",L),b=(r,...e)=>{const t=r.length===1?r[0]:e.reduce((s,i,l)=>s+(n=>{if(n._$cssResult$===!0)return n.cssText;if(typeof n=="number")return n;throw Error("Value passed to 'css' function must be a 'css' function result: "+n+". Use 'unsafeCSS' to pass non-literal values, but take care to ensure page security.")})(i)+r[l+1],r[0]);return new X(t,L)},we=(r,e)=>{g?r.adoptedStyleSheets=e.map(t=>t instanceof CSSStyleSheet?t:t.styleSheet):e.forEach(t=>{const s=document.createElement("style"),i=window.litNonce;i!==void 0&&s.setAttribute("nonce",i),s.textContent=t.cssText,r.appendChild(s)})},Y=g?r=>r:r=>r instanceof CSSStyleSheet?(e=>{let t="";for(const s of e.cssRules)t+=s.cssText;return Ee(t)})(r):r;/**
6
- * @license
7
- * Copyright 2017 Google LLC
8
- * SPDX-License-Identifier: BSD-3-Clause
9
- */var j;const ee=window.trustedTypes,Se=ee?ee.emptyScript:"",te=window.reactiveElementPolyfillSupport,B={toAttribute(r,e){switch(e){case Boolean:r=r?Se:null;break;case Object:case Array:r=r==null?r:JSON.stringify(r)}return r},fromAttribute(r,e){let t=r;switch(e){case Boolean:t=r!==null;break;case Number:t=r===null?null:Number(r);break;case Object:case Array:try{t=JSON.parse(r)}catch{t=null}}return t}},se=(r,e)=>e!==r&&(e==e||r==r),V={attribute:!0,type:String,converter:B,reflect:!1,hasChanged:se};class m extends HTMLElement{constructor(){super(),this._$Et=new Map,this.isUpdatePending=!1,this.hasUpdated=!1,this._$Ei=null,this.o()}static addInitializer(e){var t;(t=this.l)!==null&&t!==void 0||(this.l=[]),this.l.push(e)}static get observedAttributes(){this.finalize();const e=[];return this.elementProperties.forEach((t,s)=>{const i=this._$Eh(s,t);i!==void 0&&(this._$Eu.set(i,s),e.push(i))}),e}static createProperty(e,t=V){if(t.state&&(t.attribute=!1),this.finalize(),this.elementProperties.set(e,t),!t.noAccessor&&!this.prototype.hasOwnProperty(e)){const s=typeof e=="symbol"?Symbol():"__"+e,i=this.getPropertyDescriptor(e,s,t);i!==void 0&&Object.defineProperty(this.prototype,e,i)}}static getPropertyDescriptor(e,t,s){return{get(){return this[t]},set(i){const l=this[e];this[t]=i,this.requestUpdate(e,l,s)},configurable:!0,enumerable:!0}}static getPropertyOptions(e){return this.elementProperties.get(e)||V}static finalize(){if(this.hasOwnProperty("finalized"))return!1;this.finalized=!0;const e=Object.getPrototypeOf(this);if(e.finalize(),this.elementProperties=new Map(e.elementProperties),this._$Eu=new Map,this.hasOwnProperty("properties")){const t=this.properties,s=[...Object.getOwnPropertyNames(t),...Object.getOwnPropertySymbols(t)];for(const i of s)this.createProperty(i,t[i])}return this.elementStyles=this.finalizeStyles(this.styles),!0}static finalizeStyles(e){const t=[];if(Array.isArray(e)){const s=new Set(e.flat(1/0).reverse());for(const i of s)t.unshift(Y(i))}else e!==void 0&&t.push(Y(e));return t}static _$Eh(e,t){const s=t.attribute;return s===!1?void 0:typeof s=="string"?s:typeof e=="string"?e.toLowerCase():void 0}o(){var e;this._$Ep=new Promise(t=>this.enableUpdating=t),this._$AL=new Map,this._$Em(),this.requestUpdate(),(e=this.constructor.l)===null||e===void 0||e.forEach(t=>t(this))}addController(e){var t,s;((t=this._$Eg)!==null&&t!==void 0?t:this._$Eg=[]).push(e),this.renderRoot!==void 0&&this.isConnected&&((s=e.hostConnected)===null||s===void 0||s.call(e))}removeController(e){var t;(t=this._$Eg)===null||t===void 0||t.splice(this._$Eg.indexOf(e)>>>0,1)}_$Em(){this.constructor.elementProperties.forEach((e,t)=>{this.hasOwnProperty(t)&&(this._$Et.set(t,this[t]),delete this[t])})}createRenderRoot(){var e;const t=(e=this.shadowRoot)!==null&&e!==void 0?e:this.attachShadow(this.constructor.shadowRootOptions);return we(t,this.constructor.elementStyles),t}connectedCallback(){var e;this.renderRoot===void 0&&(this.renderRoot=this.createRenderRoot()),this.enableUpdating(!0),(e=this._$Eg)===null||e===void 0||e.forEach(t=>{var s;return(s=t.hostConnected)===null||s===void 0?void 0:s.call(t)})}enableUpdating(e){}disconnectedCallback(){var e;(e=this._$Eg)===null||e===void 0||e.forEach(t=>{var s;return(s=t.hostDisconnected)===null||s===void 0?void 0:s.call(t)})}attributeChangedCallback(e,t,s){this._$AK(e,s)}_$ES(e,t,s=V){var i,l;const n=this.constructor._$Eh(e,s);if(n!==void 0&&s.reflect===!0){const c=((l=(i=s.converter)===null||i===void 0?void 0:i.toAttribute)!==null&&l!==void 0?l:B.toAttribute)(t,s.type);this._$Ei=e,c==null?this.removeAttribute(n):this.setAttribute(n,c),this._$Ei=null}}_$AK(e,t){var s,i,l;const n=this.constructor,c=n._$Eu.get(e);if(c!==void 0&&this._$Ei!==c){const o=n.getPropertyOptions(c),a=o.converter,p=(l=(i=(s=a)===null||s===void 0?void 0:s.fromAttribute)!==null&&i!==void 0?i:typeof a=="function"?a:null)!==null&&l!==void 0?l:B.fromAttribute;this._$Ei=c,this[c]=p(t,o.type),this._$Ei=null}}requestUpdate(e,t,s){let i=!0;e!==void 0&&(((s=s||this.constructor.getPropertyOptions(e)).hasChanged||se)(this[e],t)?(this._$AL.has(e)||this._$AL.set(e,t),s.reflect===!0&&this._$Ei!==e&&(this._$E_===void 0&&(this._$E_=new Map),this._$E_.set(e,s))):i=!1),!this.isUpdatePending&&i&&(this._$Ep=this._$EC())}async _$EC(){this.isUpdatePending=!0;try{await this._$Ep}catch(t){Promise.reject(t)}const e=this.scheduleUpdate();return e!=null&&await e,!this.isUpdatePending}scheduleUpdate(){return this.performUpdate()}performUpdate(){var e;if(!this.isUpdatePending)return;this.hasUpdated,this._$Et&&(this._$Et.forEach((i,l)=>this[l]=i),this._$Et=void 0);let t=!1;const s=this._$AL;try{t=this.shouldUpdate(s),t?(this.willUpdate(s),(e=this._$Eg)===null||e===void 0||e.forEach(i=>{var l;return(l=i.hostUpdate)===null||l===void 0?void 0:l.call(i)}),this.update(s)):this._$EU()}catch(i){throw t=!1,this._$EU(),i}t&&this._$AE(s)}willUpdate(e){}_$AE(e){var t;(t=this._$Eg)===null||t===void 0||t.forEach(s=>{var i;return(i=s.hostUpdated)===null||i===void 0?void 0:i.call(s)}),this.hasUpdated||(this.hasUpdated=!0,this.firstUpdated(e)),this.updated(e)}_$EU(){this._$AL=new Map,this.isUpdatePending=!1}get updateComplete(){return this.getUpdateComplete()}getUpdateComplete(){return this._$Ep}shouldUpdate(e){return!0}update(e){this._$E_!==void 0&&(this._$E_.forEach((t,s)=>this._$ES(s,this[s],t)),this._$E_=void 0),this._$EU()}updated(e){}firstUpdated(e){}}m.finalized=!0,m.elementProperties=new Map,m.elementStyles=[],m.shadowRootOptions={mode:"open"},te==null||te({ReactiveElement:m}),((j=globalThis.reactiveElementVersions)!==null&&j!==void 0?j:globalThis.reactiveElementVersions=[]).push("1.2.0");/**
10
- * @license
11
- * Copyright 2017 Google LLC
12
- * SPDX-License-Identifier: BSD-3-Clause
13
- */var W;const A=globalThis.trustedTypes,ie=A?A.createPolicy("lit-html",{createHTML:r=>r}):void 0,_=`lit$${(Math.random()+"").slice(9)}$`,re="?"+_,Ce=`<${re}>`,E=document,P=(r="")=>E.createComment(r),U=r=>r===null||typeof r!="object"&&typeof r!="function",ne=Array.isArray,xe=r=>{var e;return ne(r)||typeof((e=r)===null||e===void 0?void 0:e[Symbol.iterator])=="function"},T=/<(?:(!--|\/[^a-zA-Z])|(\/?[a-zA-Z][^>\s]*)|(\/?$))/g,le=/-->/g,oe=/>/g,y=/>|[ \n \r](?:([^\s"'>=/]+)([ \n \r]*=[ \n \r]*(?:[^ \n \r"'`<>=]|("|')|))|$)/g,ae=/'/g,ce=/"/g,he=/^(?:script|style|textarea)$/i,Oe=r=>(e,...t)=>({_$litType$:r,strings:e,values:t}),N=Oe(1),w=Symbol.for("lit-noChange"),u=Symbol.for("lit-nothing"),de=new WeakMap,Pe=(r,e,t)=>{var s,i;const l=(s=t==null?void 0:t.renderBefore)!==null&&s!==void 0?s:e;let n=l._$litPart$;if(n===void 0){const c=(i=t==null?void 0:t.renderBefore)!==null&&i!==void 0?i:null;l._$litPart$=n=new M(e.insertBefore(P(),c),c,void 0,t??{})}return n._$AI(r),n},S=E.createTreeWalker(E,129,null,!1),Ue=(r,e)=>{const t=r.length-1,s=[];let i,l=e===2?"<svg>":"",n=T;for(let o=0;o<t;o++){const a=r[o];let p,h,d=-1,v=0;for(;v<a.length&&(n.lastIndex=v,h=n.exec(a),h!==null);)v=n.lastIndex,n===T?h[1]==="!--"?n=le:h[1]!==void 0?n=oe:h[2]!==void 0?(he.test(h[2])&&(i=RegExp("</"+h[2],"g")),n=y):h[3]!==void 0&&(n=y):n===y?h[0]===">"?(n=i??T,d=-1):h[1]===void 0?d=-2:(d=n.lastIndex-h[2].length,p=h[1],n=h[3]===void 0?y:h[3]==='"'?ce:ae):n===ce||n===ae?n=y:n===le||n===oe?n=T:(n=y,i=void 0);const z=n===y&&r[o+1].startsWith("/>")?" ":"";l+=n===T?a+Ce:d>=0?(s.push(p),a.slice(0,d)+"$lit$"+a.slice(d)+_+z):a+_+(d===-2?(s.push(void 0),o):z)}const c=l+(r[t]||"<?>")+(e===2?"</svg>":"");if(!Array.isArray(r)||!r.hasOwnProperty("raw"))throw Error("invalid template strings array");return[ie!==void 0?ie.createHTML(c):c,s]};class H{constructor({strings:e,_$litType$:t},s){let i;this.parts=[];let l=0,n=0;const c=e.length-1,o=this.parts,[a,p]=Ue(e,t);if(this.el=H.createElement(a,s),S.currentNode=this.el.content,t===2){const h=this.el.content,d=h.firstChild;d.remove(),h.append(...d.childNodes)}for(;(i=S.nextNode())!==null&&o.length<c;){if(i.nodeType===1){if(i.hasAttributes()){const h=[];for(const d of i.getAttributeNames())if(d.endsWith("$lit$")||d.startsWith(_)){const v=p[n++];if(h.push(d),v!==void 0){const z=i.getAttribute(v.toLowerCase()+"$lit$").split(_),k=/([.?@])?(.*)/.exec(v);o.push({type:1,index:l,name:k[2],strings:z,ctor:k[1]==="."?Ne:k[1]==="?"?Me:k[1]==="@"?Re:I})}else o.push({type:6,index:l})}for(const d of h)i.removeAttribute(d)}if(he.test(i.tagName)){const h=i.textContent.split(_),d=h.length-1;if(d>0){i.textContent=A?A.emptyScript:"";for(let v=0;v<d;v++)i.append(h[v],P()),S.nextNode(),o.push({type:2,index:++l});i.append(h[d],P())}}}else if(i.nodeType===8)if(i.data===re)o.push({type:2,index:l});else{let h=-1;for(;(h=i.data.indexOf(_,h+1))!==-1;)o.push({type:7,index:l}),h+=_.length-1}l++}}static createElement(e,t){const s=E.createElement("template");return s.innerHTML=e,s}}function C(r,e,t=r,s){var i,l,n,c;if(e===w)return e;let o=s!==void 0?(i=t._$Cl)===null||i===void 0?void 0:i[s]:t._$Cu;const a=U(e)?void 0:e._$litDirective$;return(o==null?void 0:o.constructor)!==a&&((l=o==null?void 0:o._$AO)===null||l===void 0||l.call(o,!1),a===void 0?o=void 0:(o=new a(r),o._$AT(r,t,s)),s!==void 0?((n=(c=t)._$Cl)!==null&&n!==void 0?n:c._$Cl=[])[s]=o:t._$Cu=o),o!==void 0&&(e=C(r,o._$AS(r,e.values),o,s)),e}class Te{constructor(e,t){this.v=[],this._$AN=void 0,this._$AD=e,this._$AM=t}get parentNode(){return this._$AM.parentNode}get _$AU(){return this._$AM._$AU}p(e){var t;const{el:{content:s},parts:i}=this._$AD,l=((t=e==null?void 0:e.creationScope)!==null&&t!==void 0?t:E).importNode(s,!0);S.currentNode=l;let n=S.nextNode(),c=0,o=0,a=i[0];for(;a!==void 0;){if(c===a.index){let p;a.type===2?p=new M(n,n.nextSibling,this,e):a.type===1?p=new a.ctor(n,a.name,a.strings,this,e):a.type===6&&(p=new De(n,this,e)),this.v.push(p),a=i[++o]}c!==(a==null?void 0:a.index)&&(n=S.nextNode(),c++)}return l}m(e){let t=0;for(const s of this.v)s!==void 0&&(s.strings!==void 0?(s._$AI(e,s,t),t+=s.strings.length-2):s._$AI(e[t])),t++}}class M{constructor(e,t,s,i){var l;this.type=2,this._$AH=u,this._$AN=void 0,this._$AA=e,this._$AB=t,this._$AM=s,this.options=i,this._$Cg=(l=i==null?void 0:i.isConnected)===null||l===void 0||l}get _$AU(){var e,t;return(t=(e=this._$AM)===null||e===void 0?void 0:e._$AU)!==null&&t!==void 0?t:this._$Cg}get parentNode(){let e=this._$AA.parentNode;const t=this._$AM;return t!==void 0&&e.nodeType===11&&(e=t.parentNode),e}get startNode(){return this._$AA}get endNode(){return this._$AB}_$AI(e,t=this){e=C(this,e,t),U(e)?e===u||e==null||e===""?(this._$AH!==u&&this._$AR(),this._$AH=u):e!==this._$AH&&e!==w&&this.$(e):e._$litType$!==void 0?this.T(e):e.nodeType!==void 0?this.S(e):xe(e)?this.A(e):this.$(e)}M(e,t=this._$AB){return this._$AA.parentNode.insertBefore(e,t)}S(e){this._$AH!==e&&(this._$AR(),this._$AH=this.M(e))}$(e){this._$AH!==u&&U(this._$AH)?this._$AA.nextSibling.data=e:this.S(E.createTextNode(e)),this._$AH=e}T(e){var t;const{values:s,_$litType$:i}=e,l=typeof i=="number"?this._$AC(e):(i.el===void 0&&(i.el=H.createElement(i.h,this.options)),i);if(((t=this._$AH)===null||t===void 0?void 0:t._$AD)===l)this._$AH.m(s);else{const n=new Te(l,this),c=n.p(this.options);n.m(s),this.S(c),this._$AH=n}}_$AC(e){let t=de.get(e.strings);return t===void 0&&de.set(e.strings,t=new H(e)),t}A(e){ne(this._$AH)||(this._$AH=[],this._$AR());const t=this._$AH;let s,i=0;for(const l of e)i===t.length?t.push(s=new M(this.M(P()),this.M(P()),this,this.options)):s=t[i],s._$AI(l),i++;i<t.length&&(this._$AR(s&&s._$AB.nextSibling,i),t.length=i)}_$AR(e=this._$AA.nextSibling,t){var s;for((s=this._$AP)===null||s===void 0||s.call(this,!1,!0,t);e&&e!==this._$AB;){const i=e.nextSibling;e.remove(),e=i}}setConnected(e){var t;this._$AM===void 0&&(this._$Cg=e,(t=this._$AP)===null||t===void 0||t.call(this,e))}}class I{constructor(e,t,s,i,l){this.type=1,this._$AH=u,this._$AN=void 0,this.element=e,this.name=t,this._$AM=i,this.options=l,s.length>2||s[0]!==""||s[1]!==""?(this._$AH=Array(s.length-1).fill(new String),this.strings=s):this._$AH=u}get tagName(){return this.element.tagName}get _$AU(){return this._$AM._$AU}_$AI(e,t=this,s,i){const l=this.strings;let n=!1;if(l===void 0)e=C(this,e,t,0),n=!U(e)||e!==this._$AH&&e!==w,n&&(this._$AH=e);else{const c=e;let o,a;for(e=l[0],o=0;o<l.length-1;o++)a=C(this,c[s+o],t,o),a===w&&(a=this._$AH[o]),n||(n=!U(a)||a!==this._$AH[o]),a===u?e=u:e!==u&&(e+=(a??"")+l[o+1]),this._$AH[o]=a}n&&!i&&this.k(e)}k(e){e===u?this.element.removeAttribute(this.name):this.element.setAttribute(this.name,e??"")}}class Ne extends I{constructor(){super(...arguments),this.type=3}k(e){this.element[this.name]=e===u?void 0:e}}const He=A?A.emptyScript:"";class Me extends I{constructor(){super(...arguments),this.type=4}k(e){e&&e!==u?this.element.setAttribute(this.name,He):this.element.removeAttribute(this.name)}}class Re extends I{constructor(e,t,s,i,l){super(e,t,s,i,l),this.type=5}_$AI(e,t=this){var s;if((e=(s=C(this,e,t,0))!==null&&s!==void 0?s:u)===w)return;const i=this._$AH,l=e===u&&i!==u||e.capture!==i.capture||e.once!==i.once||e.passive!==i.passive,n=e!==u&&(i===u||l);l&&this.element.removeEventListener(this.name,this,i),n&&this.element.addEventListener(this.name,this,e),this._$AH=e}handleEvent(e){var t,s;typeof this._$AH=="function"?this._$AH.call((s=(t=this.options)===null||t===void 0?void 0:t.host)!==null&&s!==void 0?s:this.element,e):this._$AH.handleEvent(e)}}class De{constructor(e,t,s){this.element=e,this.type=6,this._$AN=void 0,this._$AM=t,this.options=s}get _$AU(){return this._$AM._$AU}_$AI(e){C(this,e)}}const ue=window.litHtmlPolyfillSupport;ue==null||ue(H,M),((W=globalThis.litHtmlVersions)!==null&&W!==void 0?W:globalThis.litHtmlVersions=[]).push("2.1.1");/**
14
- * @license
15
- * Copyright 2017 Google LLC
16
- * SPDX-License-Identifier: BSD-3-Clause
17
- */var q,K;class f extends m{constructor(){super(...arguments),this.renderOptions={host:this},this._$Dt=void 0}createRenderRoot(){var e,t;const s=super.createRenderRoot();return(e=(t=this.renderOptions).renderBefore)!==null&&e!==void 0||(t.renderBefore=s.firstChild),s}update(e){const t=this.render();this.hasUpdated||(this.renderOptions.isConnected=this.isConnected),super.update(e),this._$Dt=Pe(t,this.renderRoot,this.renderOptions)}connectedCallback(){var e;super.connectedCallback(),(e=this._$Dt)===null||e===void 0||e.setConnected(!0)}disconnectedCallback(){var e;super.disconnectedCallback(),(e=this._$Dt)===null||e===void 0||e.setConnected(!1)}render(){return w}}f.finalized=!0,f._$litElement$=!0,(q=globalThis.litElementHydrateSupport)===null||q===void 0||q.call(globalThis,{LitElement:f});const pe=globalThis.litElementPolyfillSupport;pe==null||pe({LitElement:f}),((K=globalThis.litElementVersions)!==null&&K!==void 0?K:globalThis.litElementVersions=[]).push("3.1.1");/**
18
- * @license
19
- * Copyright 2017 Google LLC
20
- * SPDX-License-Identifier: BSD-3-Clause
21
- */const Ie=(r,e)=>e.kind==="method"&&e.descriptor&&!("value"in e.descriptor)?{...e,finisher(t){t.createProperty(e.key,r)}}:{kind:"field",key:Symbol(),placement:"own",descriptor:{},originalKey:e.key,initializer(){typeof e.initializer=="function"&&(this[e.key]=e.initializer.call(this))},finisher(t){t.createProperty(e.key,r)}};function $(r){return(e,t)=>t!==void 0?((s,i,l)=>{i.constructor.createProperty(l,s)})(r,e,t):Ie(r,e)}/**
22
- * @license
23
- * Copyright 2017 Google LLC
24
- * SPDX-License-Identifier: BSD-3-Clause
25
- */const ve=({finisher:r,descriptor:e})=>(t,s)=>{var i;if(s===void 0){const l=(i=t.originalKey)!==null&&i!==void 0?i:t.key,n=e!=null?{kind:"method",placement:"prototype",key:l,descriptor:e(t.key)}:{...t,key:l};return r!=null&&(n.finisher=function(c){r(c,l)}),n}{const l=t.constructor;e!==void 0&&Object.defineProperty(t,s,e(s)),r==null||r(l,s)}};/**
26
- * @license
27
- * Copyright 2021 Google LLC
28
- * SPDX-License-Identifier: BSD-3-Clause
29
- */var J;const ze=((J=window.HTMLSlotElement)===null||J===void 0?void 0:J.prototype.assignedElements)!=null?(r,e)=>r.assignedElements(e):(r,e)=>r.assignedNodes(e).filter(t=>t.nodeType===Node.ELEMENT_NODE);function ke(r){const{slot:e,selector:t}=r??{};return ve({descriptor:s=>({get(){var i;const l="slot"+(e?`[name=${e}]`:":not([name])"),n=(i=this.renderRoot)===null||i===void 0?void 0:i.querySelector(l),c=n!=null?ze(n,r):[];return t?c.filter(o=>o.matches(t)):c},enumerable:!0,configurable:!0})})}/**
30
- * @license
31
- * Copyright 2017 Google LLC
32
- * SPDX-License-Identifier: BSD-3-Clause
33
- */function Le(r,e,t){let s,i=r;return typeof r=="object"?(i=r.slot,s=r):s={flatten:e},t?ke({slot:i,flatten:e,selector:t}):ve({descriptor:l=>({get(){var n,c;const o="slot"+(i?`[name=${i}]`:":not([name])"),a=(n=this.renderRoot)===null||n===void 0?void 0:n.querySelector(o);return(c=a==null?void 0:a.assignedNodes(s))!==null&&c!==void 0?c:[]},enumerable:!0,configurable:!0})})}var je=Object.defineProperty,fe=Object.getOwnPropertySymbols,Be=Object.prototype.hasOwnProperty,Ve=Object.prototype.propertyIsEnumerable,$e=(r,e,t)=>e in r?je(r,e,{enumerable:!0,configurable:!0,writable:!0,value:t}):r[e]=t,_e=(r,e)=>{for(var t in e||(e={}))Be.call(e,t)&&$e(r,t,e[t]);if(fe)for(var t of fe(e))Ve.call(e,t)&&$e(r,t,e[t]);return r};const We={composed:!0};class qe extends Event{constructor(e,t={}){super(e,_e(_e({},We),t));this.detail=t.detail||{}}}class R extends qe{}R.SELECTED="selected",R.UNSELECTED="unselected";var Ke=Object.defineProperty,Je=Object.getOwnPropertyDescriptor,be=(r,e,t,s)=>{for(var i=s>1?void 0:s?Je(e,t):e,l=r.length-1,n;l>=0;l--)(n=r[l])&&(i=(s?n(e,t,i):n(i))||i);return s&&i&&Ke(e,t,i),i};const Ze=r=>{class e extends r{constructor(...s){super(...s);this._selectable=!1,this.selected=!1,this.addEventListener("click",this._toggleSelect),this.addEventListener("keydown",this.handleSelectKeydown)}get selectable(){return this._selectable}set selectable(s){const i=this._selectable;this._selectable=s,this.setAttribute("tabindex",`${s?"0":"-1"}`),this.requestUpdate("selected",i)}handleSelectKeydown(s){s.key!==" "&&s.key!=="Enter"||(s.preventDefault(),this._toggleSelect())}_toggleSelect(){this.selectable!==!1&&(this.selected=!this.selected,this.dispatchEvent(new R(this.selected?R.SELECTED:R.UNSELECTED,this)))}}return be([$({type:Boolean,reflect:!0})],e.prototype,"selectable",1),be([$({type:Boolean,reflect:!0})],e.prototype,"selected",2),e};var Fe=Object.defineProperty,Ge=Object.getOwnPropertyDescriptor,Qe=(r,e,t,s)=>{for(var i=s>1?void 0:s?Ge(e,t):e,l=r.length-1,n;l>=0;l--)(n=r[l])&&(i=(s?n(e,t,i):n(i))||i);return s&&i&&Fe(e,t,i),i};const Xe=r=>{class e extends r{constructor(){super(...arguments);this._selectOnly=!1}get selectOnly(){return this._selectOnly}set selectOnly(s){const i=this._selectOnly;this._selectOnly=s,this.requestUpdate("selectOnly",i)}}return Qe([$({type:Boolean,reflect:!0,attribute:"select-only"})],e.prototype,"selectOnly",1),e};var Ye=Object.defineProperty,et=Object.getOwnPropertyDescriptor,tt=(r,e,t,s)=>{for(var i=s>1?void 0:s?et(e,t):e,l=r.length-1,n;l>=0;l--)(n=r[l])&&(i=(s?n(e,t,i):n(i))||i);return s&&i&&Ye(e,t,i),i};class Z extends Xe(Ze(f)){connectedCallback(){super.connectedCallback(),this.setAttribute("role","row")}updated(e){e.has("selectOnly")&&this.updateChildSelectOnly()}updateChildSelectOnly(){this.slotCellNodes&&this.slotCellNodes.forEach(e=>{e.disableChildInteraction=this.selectOnly})}render(){return N`<slot @slotchanged="${this.updateChildSelectOnly}"></slot>`}}Z.styles=[b`:host{display:table-row;position:relative}:host([selectable]){cursor:pointer}:host([selected]){outline:2px solid var(--uui-interface-select,#3544b1);outline-offset:-3px}`],tt([Le(void 0,!0,"uui-table-cell")],Z.prototype,"slotCellNodes",2);var st=Object.defineProperty,it=Object.getOwnPropertyDescriptor,F=(r,e,t,s)=>{for(var i=s>1?void 0:s?it(e,t):e,l=r.length-1,n;l>=0;l--)(n=r[l])&&(i=(s?n(e,t,i):n(i))||i);return s&&i&&st(e,t,i),i};class D extends f{constructor(){super(...arguments);this.disableChildInteraction=!1,this.noPadding=!1,this.clipText=!1,this._observer=new ResizeObserver(()=>{this._detectOverflow()})}_detectOverflow(){this.scrollWidth>this.clientWidth?this.setAttribute("title",this.innerText):this.removeAttribute("title")}connectedCallback(){super.connectedCallback(),this.setAttribute("role","cell")}disconnectedCallback(){super.disconnectedCallback(),this._observer.disconnect()}updated(e){e.has("clipText")&&(this.clipText?(this._detectOverflow(),this._observer.observe(this)):this._observer.disconnect())}render(){return N`<slot @slotchange="${this._detectOverflow}"></slot>`}}D.styles=[b`:host{display:table-cell;height:var(--uui-size-12,36px);padding:var(--uui-table-cell-padding,var(--uui-size-4,12px) var(--uui-size-5,15px));border-top:1px solid var(--uui-interface-border,#c4c4c4);vertical-align:middle}:host([clip-text]){max-width:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;box-sizing:border-box}:host([disable-child-interaction]) ::slotted(*){pointer-events:none}:host([disable-child-interaction])::after{content:'';position:absolute;inset:0}`],F([$({type:Boolean,reflect:!0,attribute:"disable-child-interaction"})],D.prototype,"disableChildInteraction",2),F([$({type:Boolean,reflect:!0,attribute:"no-padding"})],D.prototype,"noPadding",2),F([$({type:Boolean,reflect:!0,attribute:"clip-text"})],D.prototype,"clipText",2);var rt=Object.defineProperty,nt=Object.getOwnPropertyDescriptor,G=(r,e,t,s)=>{for(var i=s>1?void 0:s?nt(e,t):e,l=r.length-1,n;l>=0;l--)(n=r[l])&&(i=(s?n(e,t,i):n(i))||i);return s&&i&&rt(e,t,i),i};class x extends f{constructor(){super(...arguments);this.disableChildInteraction=!1,this.noPadding=!1,this.clipText=!1,this._observer=new ResizeObserver(()=>{this._detectOverflow()})}_detectOverflow(){this.scrollWidth>this.clientWidth?this.setAttribute("title",this.innerText):this.removeAttribute("title")}connectedCallback(){super.connectedCallback(),this.setAttribute("role","cell")}disconnectedCallback(){super.disconnectedCallback(),this._observer.disconnect()}updated(e){e.has("clipText")&&(this.clipText?(this._detectOverflow(),this._observer.observe(this)):this._observer.disconnect())}render(){return N`<slot @slotchange="${this._detectOverflow}"></slot>`}}x.styles=[b`:host{display:table-cell;height:var(--uui-size-12,36px);padding:var(--uui-table-cell-padding,var(--uui-size-4,12px) var(--uui-size-5,15px));border-top:1px solid var(--uui-interface-border,#c4c4c4);vertical-align:middle}:host([clip-text]){max-width:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;box-sizing:border-box}:host([disable-child-interaction]) ::slotted(*){pointer-events:none}:host([disable-child-interaction])::after{content:'';position:absolute;inset:0}`],G([$({type:Boolean,reflect:!0,attribute:"disable-child-interaction"})],x.prototype,"disableChildInteraction",2),G([$({type:Boolean,reflect:!0,attribute:"no-padding"})],x.prototype,"noPadding",2),G([$({type:Boolean,reflect:!0,attribute:"clip-text"})],x.prototype,"clipText",2);class ye extends x{connectedCallback(){super.connectedCallback(),this.setAttribute("role","columnheader")}}ye.styles=[...x.styles,b`:host{border-top:none}`];class ge extends f{connectedCallback(){super.connectedCallback(),this.setAttribute("role","row")}render(){return N`<slot></slot>`}}ge.styles=[b`:host{display:table-header-group;font-weight:700}`];class me extends f{}me.styles=[b`:host{display:table-column}`];class Ae extends f{connectedCallback(){super.connectedCallback(),this.setAttribute("role","table")}render(){return N`<slot></slot>`}}Ae.styles=[b`:host{display:table;width:100%;border-radius:var(--uui-border-radius,3px);background-color:var(--uui-interface-surface,#fefefe);cursor:default}`];const O=(r,e,t)=>{if(r.indexOf("-")>0===!1){console.error(`${r} is not a valid custom element name. A custom element name should consist of at least two words separated by a hyphen.`);return}customElements.get(r)?console.error(`${r} is already defined`):customElements.define(r,e,t)};O("uui-table-column",me),O("uui-table-head-cell",ye),O("uui-table-head",ge),O("uui-table-cell",D),O("uui-table-row",Z),O("uui-table",Ae)});
34
- //# sourceMappingURL=uui-table.min.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"uui-table.min.js","sources":["../../../node_modules/@lit/reactive-element/css-tag.js","../../../node_modules/@lit/reactive-element/reactive-element.js","../../../node_modules/lit-html/lit-html.js","../../../node_modules/lit/node_modules/lit-element/lit-element.js","../../../node_modules/@lit/reactive-element/decorators/property.js","../../../node_modules/@lit/reactive-element/decorators/base.js","../../../node_modules/@lit/reactive-element/decorators/query-assigned-elements.js","../../../node_modules/@lit/reactive-element/decorators/query-assigned-nodes.js","../../uui-base/lib/events/index.js","../../uui-base/lib/mixins/index.js","../lib/uui-table-row.element.js","../lib/uui-table-cell.element.js","../lib/uui-table-head-cell.element.js","../lib/uui-table-head.element.js","../lib/uui-table-column.element.js","../lib/uui-table.element.js","../../uui-base/lib/registration/index.js","../lib/index.ts"],"sourcesContent":["/**\n * @license\n * Copyright 2019 Google LLC\n * SPDX-License-Identifier: BSD-3-Clause\n */\nconst t=window.ShadowRoot&&(void 0===window.ShadyCSS||window.ShadyCSS.nativeShadow)&&\"adoptedStyleSheets\"in Document.prototype&&\"replace\"in CSSStyleSheet.prototype,e=Symbol(),n=new Map;class s{constructor(t,n){if(this._$cssResult$=!0,n!==e)throw Error(\"CSSResult is not constructable. Use `unsafeCSS` or `css` instead.\");this.cssText=t}get styleSheet(){let e=n.get(this.cssText);return t&&void 0===e&&(n.set(this.cssText,e=new CSSStyleSheet),e.replaceSync(this.cssText)),e}toString(){return this.cssText}}const o=t=>new s(\"string\"==typeof t?t:t+\"\",e),r=(t,...n)=>{const o=1===t.length?t[0]:n.reduce(((e,n,s)=>e+(t=>{if(!0===t._$cssResult$)return t.cssText;if(\"number\"==typeof t)return t;throw Error(\"Value passed to 'css' function must be a 'css' function result: \"+t+\". Use 'unsafeCSS' to pass non-literal values, but take care to ensure page security.\")})(n)+t[s+1]),t[0]);return new s(o,e)},i=(e,n)=>{t?e.adoptedStyleSheets=n.map((t=>t instanceof CSSStyleSheet?t:t.styleSheet)):n.forEach((t=>{const n=document.createElement(\"style\"),s=window.litNonce;void 0!==s&&n.setAttribute(\"nonce\",s),n.textContent=t.cssText,e.appendChild(n)}))},S=t?t=>t:t=>t instanceof CSSStyleSheet?(t=>{let e=\"\";for(const n of t.cssRules)e+=n.cssText;return o(e)})(t):t;export{s as CSSResult,i as adoptStyles,r as css,S as getCompatibleStyle,t as supportsAdoptingStyleSheets,o as unsafeCSS};\n//# sourceMappingURL=css-tag.js.map\n","import{getCompatibleStyle as t,adoptStyles as i}from\"./css-tag.js\";export{CSSResult,adoptStyles,css,getCompatibleStyle,supportsAdoptingStyleSheets,unsafeCSS}from\"./css-tag.js\";\n/**\n * @license\n * Copyright 2017 Google LLC\n * SPDX-License-Identifier: BSD-3-Clause\n */var s;const e=window.trustedTypes,r=e?e.emptyScript:\"\",h=window.reactiveElementPolyfillSupport,o={toAttribute(t,i){switch(i){case Boolean:t=t?r:null;break;case Object:case Array:t=null==t?t:JSON.stringify(t)}return t},fromAttribute(t,i){let s=t;switch(i){case Boolean:s=null!==t;break;case Number:s=null===t?null:Number(t);break;case Object:case Array:try{s=JSON.parse(t)}catch(t){s=null}}return s}},n=(t,i)=>i!==t&&(i==i||t==t),l={attribute:!0,type:String,converter:o,reflect:!1,hasChanged:n};class a extends HTMLElement{constructor(){super(),this._$Et=new Map,this.isUpdatePending=!1,this.hasUpdated=!1,this._$Ei=null,this.o()}static addInitializer(t){var i;null!==(i=this.l)&&void 0!==i||(this.l=[]),this.l.push(t)}static get observedAttributes(){this.finalize();const t=[];return this.elementProperties.forEach(((i,s)=>{const e=this._$Eh(s,i);void 0!==e&&(this._$Eu.set(e,s),t.push(e))})),t}static createProperty(t,i=l){if(i.state&&(i.attribute=!1),this.finalize(),this.elementProperties.set(t,i),!i.noAccessor&&!this.prototype.hasOwnProperty(t)){const s=\"symbol\"==typeof t?Symbol():\"__\"+t,e=this.getPropertyDescriptor(t,s,i);void 0!==e&&Object.defineProperty(this.prototype,t,e)}}static getPropertyDescriptor(t,i,s){return{get(){return this[i]},set(e){const r=this[t];this[i]=e,this.requestUpdate(t,r,s)},configurable:!0,enumerable:!0}}static getPropertyOptions(t){return this.elementProperties.get(t)||l}static finalize(){if(this.hasOwnProperty(\"finalized\"))return!1;this.finalized=!0;const t=Object.getPrototypeOf(this);if(t.finalize(),this.elementProperties=new Map(t.elementProperties),this._$Eu=new Map,this.hasOwnProperty(\"properties\")){const t=this.properties,i=[...Object.getOwnPropertyNames(t),...Object.getOwnPropertySymbols(t)];for(const s of i)this.createProperty(s,t[s])}return this.elementStyles=this.finalizeStyles(this.styles),!0}static finalizeStyles(i){const s=[];if(Array.isArray(i)){const e=new Set(i.flat(1/0).reverse());for(const i of e)s.unshift(t(i))}else void 0!==i&&s.push(t(i));return s}static _$Eh(t,i){const s=i.attribute;return!1===s?void 0:\"string\"==typeof s?s:\"string\"==typeof t?t.toLowerCase():void 0}o(){var t;this._$Ep=new Promise((t=>this.enableUpdating=t)),this._$AL=new Map,this._$Em(),this.requestUpdate(),null===(t=this.constructor.l)||void 0===t||t.forEach((t=>t(this)))}addController(t){var i,s;(null!==(i=this._$Eg)&&void 0!==i?i:this._$Eg=[]).push(t),void 0!==this.renderRoot&&this.isConnected&&(null===(s=t.hostConnected)||void 0===s||s.call(t))}removeController(t){var i;null===(i=this._$Eg)||void 0===i||i.splice(this._$Eg.indexOf(t)>>>0,1)}_$Em(){this.constructor.elementProperties.forEach(((t,i)=>{this.hasOwnProperty(i)&&(this._$Et.set(i,this[i]),delete this[i])}))}createRenderRoot(){var t;const s=null!==(t=this.shadowRoot)&&void 0!==t?t:this.attachShadow(this.constructor.shadowRootOptions);return i(s,this.constructor.elementStyles),s}connectedCallback(){var t;void 0===this.renderRoot&&(this.renderRoot=this.createRenderRoot()),this.enableUpdating(!0),null===(t=this._$Eg)||void 0===t||t.forEach((t=>{var i;return null===(i=t.hostConnected)||void 0===i?void 0:i.call(t)}))}enableUpdating(t){}disconnectedCallback(){var t;null===(t=this._$Eg)||void 0===t||t.forEach((t=>{var i;return null===(i=t.hostDisconnected)||void 0===i?void 0:i.call(t)}))}attributeChangedCallback(t,i,s){this._$AK(t,s)}_$ES(t,i,s=l){var e,r;const h=this.constructor._$Eh(t,s);if(void 0!==h&&!0===s.reflect){const n=(null!==(r=null===(e=s.converter)||void 0===e?void 0:e.toAttribute)&&void 0!==r?r:o.toAttribute)(i,s.type);this._$Ei=t,null==n?this.removeAttribute(h):this.setAttribute(h,n),this._$Ei=null}}_$AK(t,i){var s,e,r;const h=this.constructor,n=h._$Eu.get(t);if(void 0!==n&&this._$Ei!==n){const t=h.getPropertyOptions(n),l=t.converter,a=null!==(r=null!==(e=null===(s=l)||void 0===s?void 0:s.fromAttribute)&&void 0!==e?e:\"function\"==typeof l?l:null)&&void 0!==r?r:o.fromAttribute;this._$Ei=n,this[n]=a(i,t.type),this._$Ei=null}}requestUpdate(t,i,s){let e=!0;void 0!==t&&(((s=s||this.constructor.getPropertyOptions(t)).hasChanged||n)(this[t],i)?(this._$AL.has(t)||this._$AL.set(t,i),!0===s.reflect&&this._$Ei!==t&&(void 0===this._$E_&&(this._$E_=new Map),this._$E_.set(t,s))):e=!1),!this.isUpdatePending&&e&&(this._$Ep=this._$EC())}async _$EC(){this.isUpdatePending=!0;try{await this._$Ep}catch(t){Promise.reject(t)}const t=this.scheduleUpdate();return null!=t&&await t,!this.isUpdatePending}scheduleUpdate(){return this.performUpdate()}performUpdate(){var t;if(!this.isUpdatePending)return;this.hasUpdated,this._$Et&&(this._$Et.forEach(((t,i)=>this[i]=t)),this._$Et=void 0);let i=!1;const s=this._$AL;try{i=this.shouldUpdate(s),i?(this.willUpdate(s),null===(t=this._$Eg)||void 0===t||t.forEach((t=>{var i;return null===(i=t.hostUpdate)||void 0===i?void 0:i.call(t)})),this.update(s)):this._$EU()}catch(t){throw i=!1,this._$EU(),t}i&&this._$AE(s)}willUpdate(t){}_$AE(t){var i;null===(i=this._$Eg)||void 0===i||i.forEach((t=>{var i;return null===(i=t.hostUpdated)||void 0===i?void 0:i.call(t)})),this.hasUpdated||(this.hasUpdated=!0,this.firstUpdated(t)),this.updated(t)}_$EU(){this._$AL=new Map,this.isUpdatePending=!1}get updateComplete(){return this.getUpdateComplete()}getUpdateComplete(){return this._$Ep}shouldUpdate(t){return!0}update(t){void 0!==this._$E_&&(this._$E_.forEach(((t,i)=>this._$ES(i,this[i],t))),this._$E_=void 0),this._$EU()}updated(t){}firstUpdated(t){}}a.finalized=!0,a.elementProperties=new Map,a.elementStyles=[],a.shadowRootOptions={mode:\"open\"},null==h||h({ReactiveElement:a}),(null!==(s=globalThis.reactiveElementVersions)&&void 0!==s?s:globalThis.reactiveElementVersions=[]).push(\"1.2.0\");export{a as ReactiveElement,o as defaultConverter,n as notEqual};\n//# sourceMappingURL=reactive-element.js.map\n","/**\n * @license\n * Copyright 2017 Google LLC\n * SPDX-License-Identifier: BSD-3-Clause\n */\nvar t;const i=globalThis.trustedTypes,s=i?i.createPolicy(\"lit-html\",{createHTML:t=>t}):void 0,e=`lit$${(Math.random()+\"\").slice(9)}$`,o=\"?\"+e,n=`<${o}>`,l=document,h=(t=\"\")=>l.createComment(t),r=t=>null===t||\"object\"!=typeof t&&\"function\"!=typeof t,d=Array.isArray,u=t=>{var i;return d(t)||\"function\"==typeof(null===(i=t)||void 0===i?void 0:i[Symbol.iterator])},c=/<(?:(!--|\\/[^a-zA-Z])|(\\/?[a-zA-Z][^>\\s]*)|(\\/?$))/g,v=/-->/g,a=/>/g,f=/>|[ \t\\n\f\\r](?:([^\\s\"'>=/]+)([ \t\\n\f\\r]*=[ \t\\n\f\\r]*(?:[^ \t\\n\f\\r\"'`<>=]|(\"|')|))|$)/g,_=/'/g,m=/\"/g,g=/^(?:script|style|textarea)$/i,p=t=>(i,...s)=>({_$litType$:t,strings:i,values:s}),$=p(1),y=p(2),b=Symbol.for(\"lit-noChange\"),w=Symbol.for(\"lit-nothing\"),T=new WeakMap,x=(t,i,s)=>{var e,o;const n=null!==(e=null==s?void 0:s.renderBefore)&&void 0!==e?e:i;let l=n._$litPart$;if(void 0===l){const t=null!==(o=null==s?void 0:s.renderBefore)&&void 0!==o?o:null;n._$litPart$=l=new N(i.insertBefore(h(),t),t,void 0,null!=s?s:{})}return l._$AI(t),l},A=l.createTreeWalker(l,129,null,!1),C=(t,i)=>{const o=t.length-1,l=[];let h,r=2===i?\"<svg>\":\"\",d=c;for(let i=0;i<o;i++){const s=t[i];let o,u,p=-1,$=0;for(;$<s.length&&(d.lastIndex=$,u=d.exec(s),null!==u);)$=d.lastIndex,d===c?\"!--\"===u[1]?d=v:void 0!==u[1]?d=a:void 0!==u[2]?(g.test(u[2])&&(h=RegExp(\"</\"+u[2],\"g\")),d=f):void 0!==u[3]&&(d=f):d===f?\">\"===u[0]?(d=null!=h?h:c,p=-1):void 0===u[1]?p=-2:(p=d.lastIndex-u[2].length,o=u[1],d=void 0===u[3]?f:'\"'===u[3]?m:_):d===m||d===_?d=f:d===v||d===a?d=c:(d=f,h=void 0);const y=d===f&&t[i+1].startsWith(\"/>\")?\" \":\"\";r+=d===c?s+n:p>=0?(l.push(o),s.slice(0,p)+\"$lit$\"+s.slice(p)+e+y):s+e+(-2===p?(l.push(void 0),i):y)}const u=r+(t[o]||\"<?>\")+(2===i?\"</svg>\":\"\");if(!Array.isArray(t)||!t.hasOwnProperty(\"raw\"))throw Error(\"invalid template strings array\");return[void 0!==s?s.createHTML(u):u,l]};class E{constructor({strings:t,_$litType$:s},n){let l;this.parts=[];let r=0,d=0;const u=t.length-1,c=this.parts,[v,a]=C(t,s);if(this.el=E.createElement(v,n),A.currentNode=this.el.content,2===s){const t=this.el.content,i=t.firstChild;i.remove(),t.append(...i.childNodes)}for(;null!==(l=A.nextNode())&&c.length<u;){if(1===l.nodeType){if(l.hasAttributes()){const t=[];for(const i of l.getAttributeNames())if(i.endsWith(\"$lit$\")||i.startsWith(e)){const s=a[d++];if(t.push(i),void 0!==s){const t=l.getAttribute(s.toLowerCase()+\"$lit$\").split(e),i=/([.?@])?(.*)/.exec(s);c.push({type:1,index:r,name:i[2],strings:t,ctor:\".\"===i[1]?M:\"?\"===i[1]?H:\"@\"===i[1]?I:S})}else c.push({type:6,index:r})}for(const i of t)l.removeAttribute(i)}if(g.test(l.tagName)){const t=l.textContent.split(e),s=t.length-1;if(s>0){l.textContent=i?i.emptyScript:\"\";for(let i=0;i<s;i++)l.append(t[i],h()),A.nextNode(),c.push({type:2,index:++r});l.append(t[s],h())}}}else if(8===l.nodeType)if(l.data===o)c.push({type:2,index:r});else{let t=-1;for(;-1!==(t=l.data.indexOf(e,t+1));)c.push({type:7,index:r}),t+=e.length-1}r++}}static createElement(t,i){const s=l.createElement(\"template\");return s.innerHTML=t,s}}function P(t,i,s=t,e){var o,n,l,h;if(i===b)return i;let d=void 0!==e?null===(o=s._$Cl)||void 0===o?void 0:o[e]:s._$Cu;const u=r(i)?void 0:i._$litDirective$;return(null==d?void 0:d.constructor)!==u&&(null===(n=null==d?void 0:d._$AO)||void 0===n||n.call(d,!1),void 0===u?d=void 0:(d=new u(t),d._$AT(t,s,e)),void 0!==e?(null!==(l=(h=s)._$Cl)&&void 0!==l?l:h._$Cl=[])[e]=d:s._$Cu=d),void 0!==d&&(i=P(t,d._$AS(t,i.values),d,e)),i}class V{constructor(t,i){this.v=[],this._$AN=void 0,this._$AD=t,this._$AM=i}get parentNode(){return this._$AM.parentNode}get _$AU(){return this._$AM._$AU}p(t){var i;const{el:{content:s},parts:e}=this._$AD,o=(null!==(i=null==t?void 0:t.creationScope)&&void 0!==i?i:l).importNode(s,!0);A.currentNode=o;let n=A.nextNode(),h=0,r=0,d=e[0];for(;void 0!==d;){if(h===d.index){let i;2===d.type?i=new N(n,n.nextSibling,this,t):1===d.type?i=new d.ctor(n,d.name,d.strings,this,t):6===d.type&&(i=new L(n,this,t)),this.v.push(i),d=e[++r]}h!==(null==d?void 0:d.index)&&(n=A.nextNode(),h++)}return o}m(t){let i=0;for(const s of this.v)void 0!==s&&(void 0!==s.strings?(s._$AI(t,s,i),i+=s.strings.length-2):s._$AI(t[i])),i++}}class N{constructor(t,i,s,e){var o;this.type=2,this._$AH=w,this._$AN=void 0,this._$AA=t,this._$AB=i,this._$AM=s,this.options=e,this._$Cg=null===(o=null==e?void 0:e.isConnected)||void 0===o||o}get _$AU(){var t,i;return null!==(i=null===(t=this._$AM)||void 0===t?void 0:t._$AU)&&void 0!==i?i:this._$Cg}get parentNode(){let t=this._$AA.parentNode;const i=this._$AM;return void 0!==i&&11===t.nodeType&&(t=i.parentNode),t}get startNode(){return this._$AA}get endNode(){return this._$AB}_$AI(t,i=this){t=P(this,t,i),r(t)?t===w||null==t||\"\"===t?(this._$AH!==w&&this._$AR(),this._$AH=w):t!==this._$AH&&t!==b&&this.$(t):void 0!==t._$litType$?this.T(t):void 0!==t.nodeType?this.S(t):u(t)?this.A(t):this.$(t)}M(t,i=this._$AB){return this._$AA.parentNode.insertBefore(t,i)}S(t){this._$AH!==t&&(this._$AR(),this._$AH=this.M(t))}$(t){this._$AH!==w&&r(this._$AH)?this._$AA.nextSibling.data=t:this.S(l.createTextNode(t)),this._$AH=t}T(t){var i;const{values:s,_$litType$:e}=t,o=\"number\"==typeof e?this._$AC(t):(void 0===e.el&&(e.el=E.createElement(e.h,this.options)),e);if((null===(i=this._$AH)||void 0===i?void 0:i._$AD)===o)this._$AH.m(s);else{const t=new V(o,this),i=t.p(this.options);t.m(s),this.S(i),this._$AH=t}}_$AC(t){let i=T.get(t.strings);return void 0===i&&T.set(t.strings,i=new E(t)),i}A(t){d(this._$AH)||(this._$AH=[],this._$AR());const i=this._$AH;let s,e=0;for(const o of t)e===i.length?i.push(s=new N(this.M(h()),this.M(h()),this,this.options)):s=i[e],s._$AI(o),e++;e<i.length&&(this._$AR(s&&s._$AB.nextSibling,e),i.length=e)}_$AR(t=this._$AA.nextSibling,i){var s;for(null===(s=this._$AP)||void 0===s||s.call(this,!1,!0,i);t&&t!==this._$AB;){const i=t.nextSibling;t.remove(),t=i}}setConnected(t){var i;void 0===this._$AM&&(this._$Cg=t,null===(i=this._$AP)||void 0===i||i.call(this,t))}}class S{constructor(t,i,s,e,o){this.type=1,this._$AH=w,this._$AN=void 0,this.element=t,this.name=i,this._$AM=e,this.options=o,s.length>2||\"\"!==s[0]||\"\"!==s[1]?(this._$AH=Array(s.length-1).fill(new String),this.strings=s):this._$AH=w}get tagName(){return this.element.tagName}get _$AU(){return this._$AM._$AU}_$AI(t,i=this,s,e){const o=this.strings;let n=!1;if(void 0===o)t=P(this,t,i,0),n=!r(t)||t!==this._$AH&&t!==b,n&&(this._$AH=t);else{const e=t;let l,h;for(t=o[0],l=0;l<o.length-1;l++)h=P(this,e[s+l],i,l),h===b&&(h=this._$AH[l]),n||(n=!r(h)||h!==this._$AH[l]),h===w?t=w:t!==w&&(t+=(null!=h?h:\"\")+o[l+1]),this._$AH[l]=h}n&&!e&&this.k(t)}k(t){t===w?this.element.removeAttribute(this.name):this.element.setAttribute(this.name,null!=t?t:\"\")}}class M extends S{constructor(){super(...arguments),this.type=3}k(t){this.element[this.name]=t===w?void 0:t}}const k=i?i.emptyScript:\"\";class H extends S{constructor(){super(...arguments),this.type=4}k(t){t&&t!==w?this.element.setAttribute(this.name,k):this.element.removeAttribute(this.name)}}class I extends S{constructor(t,i,s,e,o){super(t,i,s,e,o),this.type=5}_$AI(t,i=this){var s;if((t=null!==(s=P(this,t,i,0))&&void 0!==s?s:w)===b)return;const e=this._$AH,o=t===w&&e!==w||t.capture!==e.capture||t.once!==e.once||t.passive!==e.passive,n=t!==w&&(e===w||o);o&&this.element.removeEventListener(this.name,this,e),n&&this.element.addEventListener(this.name,this,t),this._$AH=t}handleEvent(t){var i,s;\"function\"==typeof this._$AH?this._$AH.call(null!==(s=null===(i=this.options)||void 0===i?void 0:i.host)&&void 0!==s?s:this.element,t):this._$AH.handleEvent(t)}}class L{constructor(t,i,s){this.element=t,this.type=6,this._$AN=void 0,this._$AM=i,this.options=s}get _$AU(){return this._$AM._$AU}_$AI(t){P(this,t)}}const R={P:\"$lit$\",V:e,L:o,I:1,N:C,R:V,D:u,j:P,H:N,O:S,F:H,B:I,W:M,Z:L},z=window.litHtmlPolyfillSupport;null==z||z(E,N),(null!==(t=globalThis.litHtmlVersions)&&void 0!==t?t:globalThis.litHtmlVersions=[]).push(\"2.1.1\");export{R as _$LH,$ as html,b as noChange,w as nothing,x as render,y as svg};\n//# sourceMappingURL=lit-html.js.map\n","import{ReactiveElement as t}from\"@lit/reactive-element\";export*from\"@lit/reactive-element\";import{render as e,noChange as i}from\"lit-html\";export*from\"lit-html\";\n/**\n * @license\n * Copyright 2017 Google LLC\n * SPDX-License-Identifier: BSD-3-Clause\n */var l,o;const r=t;class s extends t{constructor(){super(...arguments),this.renderOptions={host:this},this._$Dt=void 0}createRenderRoot(){var t,e;const i=super.createRenderRoot();return null!==(t=(e=this.renderOptions).renderBefore)&&void 0!==t||(e.renderBefore=i.firstChild),i}update(t){const i=this.render();this.hasUpdated||(this.renderOptions.isConnected=this.isConnected),super.update(t),this._$Dt=e(i,this.renderRoot,this.renderOptions)}connectedCallback(){var t;super.connectedCallback(),null===(t=this._$Dt)||void 0===t||t.setConnected(!0)}disconnectedCallback(){var t;super.disconnectedCallback(),null===(t=this._$Dt)||void 0===t||t.setConnected(!1)}render(){return i}}s.finalized=!0,s._$litElement$=!0,null===(l=globalThis.litElementHydrateSupport)||void 0===l||l.call(globalThis,{LitElement:s});const n=globalThis.litElementPolyfillSupport;null==n||n({LitElement:s});const h={_$AK:(t,e,i)=>{t._$AK(e,i)},_$AL:t=>t._$AL};(null!==(o=globalThis.litElementVersions)&&void 0!==o?o:globalThis.litElementVersions=[]).push(\"3.1.1\");export{s as LitElement,r as UpdatingElement,h as _$LE};\n//# sourceMappingURL=lit-element.js.map\n","/**\n * @license\n * Copyright 2017 Google LLC\n * SPDX-License-Identifier: BSD-3-Clause\n */\nconst i=(i,e)=>\"method\"===e.kind&&e.descriptor&&!(\"value\"in e.descriptor)?{...e,finisher(n){n.createProperty(e.key,i)}}:{kind:\"field\",key:Symbol(),placement:\"own\",descriptor:{},originalKey:e.key,initializer(){\"function\"==typeof e.initializer&&(this[e.key]=e.initializer.call(this))},finisher(n){n.createProperty(e.key,i)}};function e(e){return(n,t)=>void 0!==t?((i,e,n)=>{e.constructor.createProperty(n,i)})(e,n,t):i(e,n)}export{e as property};\n//# sourceMappingURL=property.js.map\n","/**\n * @license\n * Copyright 2017 Google LLC\n * SPDX-License-Identifier: BSD-3-Clause\n */\nconst e=(e,t,o)=>{Object.defineProperty(t,o,e)},t=(e,t)=>({kind:\"method\",placement:\"prototype\",key:t.key,descriptor:e}),o=({finisher:e,descriptor:t})=>(o,n)=>{var r;if(void 0===n){const n=null!==(r=o.originalKey)&&void 0!==r?r:o.key,i=null!=t?{kind:\"method\",placement:\"prototype\",key:n,descriptor:t(o.key)}:{...o,key:n};return null!=e&&(i.finisher=function(t){e(t,n)}),i}{const r=o.constructor;void 0!==t&&Object.defineProperty(o,n,t(n)),null==e||e(r,n)}};export{o as decorateProperty,e as legacyPrototypeMethod,t as standardPrototypeMethod};\n//# sourceMappingURL=base.js.map\n","import{decorateProperty as o}from\"./base.js\";\n/**\n * @license\n * Copyright 2021 Google LLC\n * SPDX-License-Identifier: BSD-3-Clause\n */var n;const e=null!=(null===(n=window.HTMLSlotElement)||void 0===n?void 0:n.prototype.assignedElements)?(o,n)=>o.assignedElements(n):(o,n)=>o.assignedNodes(n).filter((o=>o.nodeType===Node.ELEMENT_NODE));function l(n){const{slot:l,selector:t}=null!=n?n:{};return o({descriptor:o=>({get(){var o;const r=\"slot\"+(l?`[name=${l}]`:\":not([name])\"),i=null===(o=this.renderRoot)||void 0===o?void 0:o.querySelector(r),s=null!=i?e(i,n):[];return t?s.filter((o=>o.matches(t))):s},enumerable:!0,configurable:!0})})}export{l as queryAssignedElements};\n//# sourceMappingURL=query-assigned-elements.js.map\n","import{decorateProperty as e}from\"./base.js\";import{queryAssignedElements as t}from\"./query-assigned-elements.js\";\n/**\n * @license\n * Copyright 2017 Google LLC\n * SPDX-License-Identifier: BSD-3-Clause\n */function o(o,n,r){let l,s=o;return\"object\"==typeof o?(s=o.slot,l=o):l={flatten:n},r?t({slot:s,flatten:n,selector:r}):e({descriptor:e=>({get(){var e,t;const o=\"slot\"+(s?`[name=${s}]`:\":not([name])\"),n=null===(e=this.renderRoot)||void 0===e?void 0:e.querySelector(o);return null!==(t=null==n?void 0:n.assignedNodes(l))&&void 0!==t?t:[]},enumerable:!0,configurable:!0})})}export{o as queryAssignedNodes};\n//# sourceMappingURL=query-assigned-nodes.js.map\n","var __defProp = Object.defineProperty;\nvar __getOwnPropSymbols = Object.getOwnPropertySymbols;\nvar __hasOwnProp = Object.prototype.hasOwnProperty;\nvar __propIsEnum = Object.prototype.propertyIsEnumerable;\nvar __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;\nvar __spreadValues = (a, b) => {\n for (var prop in b || (b = {}))\n if (__hasOwnProp.call(b, prop))\n __defNormalProp(a, prop, b[prop]);\n if (__getOwnPropSymbols)\n for (var prop of __getOwnPropSymbols(b)) {\n if (__propIsEnum.call(b, prop))\n __defNormalProp(a, prop, b[prop]);\n }\n return a;\n};\nconst DefaultInit = {\n composed: true\n};\nclass UUIEvent extends Event {\n constructor(evName, eventInit = {}) {\n super(evName, __spreadValues(__spreadValues({}, DefaultInit), eventInit));\n this.detail = eventInit.detail || {};\n }\n}\n\nexport { UUIEvent };\n","import { property, state } from 'lit/decorators.js';\nimport { html } from 'lit';\nimport { UUIEvent } from '@umbraco-ui/uui-base/lib/events';\n\nvar __defProp$3 = Object.defineProperty;\nvar __getOwnPropDesc$3 = Object.getOwnPropertyDescriptor;\nvar __decorateClass$3 = (decorators, target, key, kind) => {\n var result = kind > 1 ? void 0 : kind ? __getOwnPropDesc$3(target, key) : target;\n for (var i = decorators.length - 1, decorator; i >= 0; i--)\n if (decorator = decorators[i])\n result = (kind ? decorator(target, key, result) : decorator(result)) || result;\n if (kind && result)\n __defProp$3(target, key, result);\n return result;\n};\nconst ActiveMixin = (superClass) => {\n class ActiveMixinClass extends superClass {\n constructor() {\n super(...arguments);\n this.active = false;\n }\n }\n __decorateClass$3([\n property({ type: Boolean, reflect: true })\n ], ActiveMixinClass.prototype, \"active\", 2);\n return ActiveMixinClass;\n};\n\nvar __defProp$2 = Object.defineProperty;\nvar __getOwnPropDesc$2 = Object.getOwnPropertyDescriptor;\nvar __decorateClass$2 = (decorators, target, key, kind) => {\n var result = kind > 1 ? void 0 : kind ? __getOwnPropDesc$2(target, key) : target;\n for (var i = decorators.length - 1, decorator; i >= 0; i--)\n if (decorator = decorators[i])\n result = (kind ? decorator(target, key, result) : decorator(result)) || result;\n if (kind && result)\n __defProp$2(target, key, result);\n return result;\n};\nconst LabelMixin = (labelSlotName, superClass) => {\n class LabelMixinClass extends superClass {\n constructor() {\n super(...arguments);\n this._labelSlotHasContent = false;\n }\n connectedCallback() {\n super.connectedCallback();\n if (!this.label) {\n console.warn(this.tagName + \" needs a `label`\", this);\n }\n }\n labelSlotChanged(e) {\n this._labelSlotHasContent = e.target.assignedNodes({ flatten: true }).length > 0;\n }\n renderLabel() {\n return html`\n ${this._labelSlotHasContent === false ? html`<span class=\"label\">${this.label}</span>` : \"\"}\n <slot\n class=\"label\"\n style=${this._labelSlotHasContent ? \"\" : \"visibility: hidden\"}\n name=${labelSlotName ? labelSlotName : \"\"}\n @slotchange=${this.labelSlotChanged}></slot>\n `;\n }\n }\n __decorateClass$2([\n property({ type: String })\n ], LabelMixinClass.prototype, \"label\", 2);\n __decorateClass$2([\n state()\n ], LabelMixinClass.prototype, \"_labelSlotHasContent\", 2);\n return LabelMixinClass;\n};\n\nclass UUISelectableEvent extends UUIEvent {\n}\nUUISelectableEvent.SELECTED = \"selected\";\nUUISelectableEvent.UNSELECTED = \"unselected\";\n\nvar __defProp$1 = Object.defineProperty;\nvar __getOwnPropDesc$1 = Object.getOwnPropertyDescriptor;\nvar __decorateClass$1 = (decorators, target, key, kind) => {\n var result = kind > 1 ? void 0 : kind ? __getOwnPropDesc$1(target, key) : target;\n for (var i = decorators.length - 1, decorator; i >= 0; i--)\n if (decorator = decorators[i])\n result = (kind ? decorator(target, key, result) : decorator(result)) || result;\n if (kind && result)\n __defProp$1(target, key, result);\n return result;\n};\nconst SelectableMixin = (superClass) => {\n class SelectableMixinClass extends superClass {\n constructor(...args) {\n super(...args);\n this._selectable = false;\n this.selected = false;\n this.addEventListener(\"click\", this._toggleSelect);\n this.addEventListener(\"keydown\", this.handleSelectKeydown);\n }\n get selectable() {\n return this._selectable;\n }\n set selectable(newVal) {\n const oldVal = this._selectable;\n this._selectable = newVal;\n this.setAttribute(\"tabindex\", `${newVal ? \"0\" : \"-1\"}`);\n this.requestUpdate(\"selected\", oldVal);\n }\n handleSelectKeydown(e) {\n if (e.key !== \" \" && e.key !== \"Enter\")\n return;\n e.preventDefault();\n this._toggleSelect();\n }\n _toggleSelect() {\n if (this.selectable === false)\n return;\n this.selected = !this.selected;\n this.dispatchEvent(new UUISelectableEvent(this.selected ? UUISelectableEvent.SELECTED : UUISelectableEvent.UNSELECTED, this));\n }\n }\n __decorateClass$1([\n property({ type: Boolean, reflect: true })\n ], SelectableMixinClass.prototype, \"selectable\", 1);\n __decorateClass$1([\n property({ type: Boolean, reflect: true })\n ], SelectableMixinClass.prototype, \"selected\", 2);\n return SelectableMixinClass;\n};\n\nvar __defProp = Object.defineProperty;\nvar __getOwnPropDesc = Object.getOwnPropertyDescriptor;\nvar __decorateClass = (decorators, target, key, kind) => {\n var result = kind > 1 ? void 0 : kind ? __getOwnPropDesc(target, key) : target;\n for (var i = decorators.length - 1, decorator; i >= 0; i--)\n if (decorator = decorators[i])\n result = (kind ? decorator(target, key, result) : decorator(result)) || result;\n if (kind && result)\n __defProp(target, key, result);\n return result;\n};\nconst SelectOnlyMixin = (superClass) => {\n class SelectOnlyMixinClass extends superClass {\n constructor() {\n super(...arguments);\n this._selectOnly = false;\n }\n get selectOnly() {\n return this._selectOnly;\n }\n set selectOnly(newVal) {\n const oldVal = this._selectOnly;\n this._selectOnly = newVal;\n this.requestUpdate(\"selectOnly\", oldVal);\n }\n }\n __decorateClass([\n property({ type: Boolean, reflect: true, attribute: \"select-only\" })\n ], SelectOnlyMixinClass.prototype, \"selectOnly\", 1);\n return SelectOnlyMixinClass;\n};\n\nexport { ActiveMixin, LabelMixin, SelectOnlyMixin, SelectableMixin };\n","import { LitElement, html, css } from 'lit';\nimport { SelectOnlyMixin, SelectableMixin } from '@umbraco-ui/uui-base/lib/mixins';\nimport { queryAssignedNodes } from 'lit/decorators.js';\n\nvar __defProp = Object.defineProperty;\nvar __getOwnPropDesc = Object.getOwnPropertyDescriptor;\nvar __decorateClass = (decorators, target, key, kind) => {\n var result = kind > 1 ? void 0 : kind ? __getOwnPropDesc(target, key) : target;\n for (var i = decorators.length - 1, decorator; i >= 0; i--)\n if (decorator = decorators[i])\n result = (kind ? decorator(target, key, result) : decorator(result)) || result;\n if (kind && result)\n __defProp(target, key, result);\n return result;\n};\nclass UUITableRowElement extends SelectOnlyMixin(SelectableMixin(LitElement)) {\n connectedCallback() {\n super.connectedCallback();\n this.setAttribute(\"role\", \"row\");\n }\n updated(changedProperties) {\n if (changedProperties.has(\"selectOnly\"))\n this.updateChildSelectOnly();\n }\n updateChildSelectOnly() {\n if (this.slotCellNodes) {\n this.slotCellNodes.forEach((el) => {\n el.disableChildInteraction = this.selectOnly;\n });\n }\n }\n render() {\n return html` <slot @slotchanged=${this.updateChildSelectOnly}></slot> `;\n }\n}\nUUITableRowElement.styles = [\n css`\n :host {\n display: table-row;\n position: relative;\n }\n\n :host([selectable]) {\n cursor: pointer;\n }\n\n :host([selected]) {\n outline: 2px solid var(--uui-interface-select,#3544b1);\n outline-offset: -3px;\n }\n `\n];\n__decorateClass([\n queryAssignedNodes(void 0, true, \"uui-table-cell\")\n], UUITableRowElement.prototype, \"slotCellNodes\", 2);\n\nexport { UUITableRowElement };\n","import { css, LitElement, html } from 'lit';\nimport { property } from 'lit/decorators.js';\n\nvar __defProp = Object.defineProperty;\nvar __getOwnPropDesc = Object.getOwnPropertyDescriptor;\nvar __decorateClass = (decorators, target, key, kind) => {\n var result = kind > 1 ? void 0 : kind ? __getOwnPropDesc(target, key) : target;\n for (var i = decorators.length - 1, decorator; i >= 0; i--)\n if (decorator = decorators[i])\n result = (kind ? decorator(target, key, result) : decorator(result)) || result;\n if (kind && result)\n __defProp(target, key, result);\n return result;\n};\nclass UUITableCellElement extends LitElement {\n constructor() {\n super(...arguments);\n this.disableChildInteraction = false;\n this.noPadding = false;\n this.clipText = false;\n this._observer = new ResizeObserver(() => {\n this._detectOverflow();\n });\n }\n _detectOverflow() {\n if (this.scrollWidth > this.clientWidth) {\n this.setAttribute(\"title\", this.innerText);\n } else {\n this.removeAttribute(\"title\");\n }\n }\n connectedCallback() {\n super.connectedCallback();\n this.setAttribute(\"role\", \"cell\");\n }\n disconnectedCallback() {\n super.disconnectedCallback();\n this._observer.disconnect();\n }\n updated(changedProperties) {\n if (changedProperties.has(\"clipText\")) {\n if (this.clipText) {\n this._detectOverflow();\n this._observer.observe(this);\n } else {\n this._observer.disconnect();\n }\n }\n }\n render() {\n return html` <slot @slotchange=${this._detectOverflow}></slot>`;\n }\n}\nUUITableCellElement.styles = [\n css`\n :host {\n display: table-cell;\n height: var(--uui-size-12,36px);\n padding: var(\n --uui-table-cell-padding,\n var(--uui-size-4,12px) var(--uui-size-5,15px)\n );\n border-top: 1px solid var(--uui-interface-border,#c4c4c4);\n vertical-align: middle;\n }\n\n :host([clip-text]) {\n max-width: 0;\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n box-sizing: border-box;\n }\n\n :host([disable-child-interaction]) ::slotted(*) {\n pointer-events: none;\n }\n\n :host([disable-child-interaction])::after {\n content: '';\n position: absolute;\n inset: 0;\n }\n `\n];\n__decorateClass([\n property({\n type: Boolean,\n reflect: true,\n attribute: \"disable-child-interaction\"\n })\n], UUITableCellElement.prototype, \"disableChildInteraction\", 2);\n__decorateClass([\n property({ type: Boolean, reflect: true, attribute: \"no-padding\" })\n], UUITableCellElement.prototype, \"noPadding\", 2);\n__decorateClass([\n property({ type: Boolean, reflect: true, attribute: \"clip-text\" })\n], UUITableCellElement.prototype, \"clipText\", 2);\n\nexport { UUITableCellElement };\n","import { css, LitElement, html } from 'lit';\nimport { property } from 'lit/decorators.js';\n\nvar __defProp = Object.defineProperty;\nvar __getOwnPropDesc = Object.getOwnPropertyDescriptor;\nvar __decorateClass = (decorators, target, key, kind) => {\n var result = kind > 1 ? void 0 : kind ? __getOwnPropDesc(target, key) : target;\n for (var i = decorators.length - 1, decorator; i >= 0; i--)\n if (decorator = decorators[i])\n result = (kind ? decorator(target, key, result) : decorator(result)) || result;\n if (kind && result)\n __defProp(target, key, result);\n return result;\n};\nclass UUITableCellElement extends LitElement {\n constructor() {\n super(...arguments);\n this.disableChildInteraction = false;\n this.noPadding = false;\n this.clipText = false;\n this._observer = new ResizeObserver(() => {\n this._detectOverflow();\n });\n }\n _detectOverflow() {\n if (this.scrollWidth > this.clientWidth) {\n this.setAttribute(\"title\", this.innerText);\n } else {\n this.removeAttribute(\"title\");\n }\n }\n connectedCallback() {\n super.connectedCallback();\n this.setAttribute(\"role\", \"cell\");\n }\n disconnectedCallback() {\n super.disconnectedCallback();\n this._observer.disconnect();\n }\n updated(changedProperties) {\n if (changedProperties.has(\"clipText\")) {\n if (this.clipText) {\n this._detectOverflow();\n this._observer.observe(this);\n } else {\n this._observer.disconnect();\n }\n }\n }\n render() {\n return html` <slot @slotchange=${this._detectOverflow}></slot>`;\n }\n}\nUUITableCellElement.styles = [\n css`\n :host {\n display: table-cell;\n height: var(--uui-size-12,36px);\n padding: var(\n --uui-table-cell-padding,\n var(--uui-size-4,12px) var(--uui-size-5,15px)\n );\n border-top: 1px solid var(--uui-interface-border,#c4c4c4);\n vertical-align: middle;\n }\n\n :host([clip-text]) {\n max-width: 0;\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n box-sizing: border-box;\n }\n\n :host([disable-child-interaction]) ::slotted(*) {\n pointer-events: none;\n }\n\n :host([disable-child-interaction])::after {\n content: '';\n position: absolute;\n inset: 0;\n }\n `\n];\n__decorateClass([\n property({\n type: Boolean,\n reflect: true,\n attribute: \"disable-child-interaction\"\n })\n], UUITableCellElement.prototype, \"disableChildInteraction\", 2);\n__decorateClass([\n property({ type: Boolean, reflect: true, attribute: \"no-padding\" })\n], UUITableCellElement.prototype, \"noPadding\", 2);\n__decorateClass([\n property({ type: Boolean, reflect: true, attribute: \"clip-text\" })\n], UUITableCellElement.prototype, \"clipText\", 2);\n\nclass UUITableHeadCellElement extends UUITableCellElement {\n connectedCallback() {\n super.connectedCallback();\n this.setAttribute(\"role\", \"columnheader\");\n }\n}\nUUITableHeadCellElement.styles = [\n ...UUITableCellElement.styles,\n css`\n :host {\n border-top: none;\n }\n `\n];\n\nexport { UUITableHeadCellElement };\n","import { css, LitElement, html } from 'lit';\n\nclass UUITableHeadElement extends LitElement {\n connectedCallback() {\n super.connectedCallback();\n this.setAttribute(\"role\", \"row\");\n }\n render() {\n return html`<slot></slot>`;\n }\n}\nUUITableHeadElement.styles = [\n css`\n :host {\n display: table-header-group;\n font-weight: bold;\n }\n `\n];\n\nexport { UUITableHeadElement };\n","import { css, LitElement } from 'lit';\n\nclass UUITableColumnElement extends LitElement {\n}\nUUITableColumnElement.styles = [\n css`\n :host {\n display: table-column;\n }\n `\n];\n\nexport { UUITableColumnElement };\n","import { css, LitElement, html } from 'lit';\n\nclass UUITableElement extends LitElement {\n connectedCallback() {\n super.connectedCallback();\n this.setAttribute(\"role\", \"table\");\n }\n render() {\n return html`<slot></slot>`;\n }\n}\nUUITableElement.styles = [\n css`\n :host {\n display: table;\n width: 100%;\n border-radius: var(--uui-border-radius,3px);\n background-color: var(--uui-interface-surface,#fefefe);\n cursor: default;\n }\n `\n];\n\nexport { UUITableElement };\n","const defineElement = (name, constructor, options) => {\n const isValidElementName = name.indexOf(\"-\") > 0;\n if (isValidElementName === false) {\n console.error(`${name} is not a valid custom element name. A custom element name should consist of at least two words separated by a hyphen.`);\n return;\n }\n if (customElements.get(name)) {\n console.error(`${name} is already defined`);\n } else {\n customElements.define(name, constructor, options);\n }\n};\n\nexport { defineElement };\n","import { UUITableRowElement } from './uui-table-row.element';\nimport { UUITableCellElement } from './uui-table-cell.element';\nimport { UUITableHeadCellElement } from './uui-table-head-cell.element';\nimport { UUITableHeadElement } from './uui-table-head.element';\nimport { UUITableColumnElement } from './uui-table-column.element';\nimport { UUITableElement } from './uui-table.element';\nimport { defineElement } from '@umbraco-ui/uui-base/lib/registration';\n\ndefineElement('uui-table-column', UUITableColumnElement as any);\ndefineElement('uui-table-head-cell', UUITableHeadCellElement as any);\ndefineElement('uui-table-head', UUITableHeadElement as any);\ndefineElement('uui-table-cell', UUITableCellElement as any);\ndefineElement('uui-table-row', UUITableRowElement as any);\ndefineElement('uui-table', UUITableElement as any);\n"],"names":["t","e","n","s","o","r","i","S","h","l","a","__defProp","__getOwnPropDesc$1","__decorateClass$1","__defProp$1","property","__getOwnPropDesc","__decorateClass","html","css","queryAssignedNodes","UUITableCellElement"],"mappings":"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,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,EAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,OAAO,CAAC,CAAC,OAAO,KAAK,CAAC,GAAG,CAAC,EAAE,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,OAAO,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,IAAI,CAAC,IAAI,CAAC,EAAE,CAAC,IAAI,CAAC,IAAI,EAAE,CAAC,CAAC,MAAM,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,MAAM,CAAC,IAAI,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,MAAM,GAAG,IAAI,CAAC,IAAI,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,EAAC,CAAC,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,EAAE,KAAK,CAAC,GAAG,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,GAAG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"}
@@ -1,100 +0,0 @@
1
- import { css, LitElement, html } from 'lit';
2
- import { property } from 'lit/decorators.js';
3
-
4
- var __defProp = Object.defineProperty;
5
- var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
6
- var __decorateClass = (decorators, target, key, kind) => {
7
- var result = kind > 1 ? void 0 : kind ? __getOwnPropDesc(target, key) : target;
8
- for (var i = decorators.length - 1, decorator; i >= 0; i--)
9
- if (decorator = decorators[i])
10
- result = (kind ? decorator(target, key, result) : decorator(result)) || result;
11
- if (kind && result)
12
- __defProp(target, key, result);
13
- return result;
14
- };
15
- class UUITableCellElement extends LitElement {
16
- constructor() {
17
- super(...arguments);
18
- this.disableChildInteraction = false;
19
- this.noPadding = false;
20
- this.clipText = false;
21
- this._observer = new ResizeObserver(() => {
22
- this._detectOverflow();
23
- });
24
- }
25
- _detectOverflow() {
26
- if (this.scrollWidth > this.clientWidth) {
27
- this.setAttribute("title", this.innerText);
28
- } else {
29
- this.removeAttribute("title");
30
- }
31
- }
32
- connectedCallback() {
33
- super.connectedCallback();
34
- this.setAttribute("role", "cell");
35
- }
36
- disconnectedCallback() {
37
- super.disconnectedCallback();
38
- this._observer.disconnect();
39
- }
40
- updated(changedProperties) {
41
- if (changedProperties.has("clipText")) {
42
- if (this.clipText) {
43
- this._detectOverflow();
44
- this._observer.observe(this);
45
- } else {
46
- this._observer.disconnect();
47
- }
48
- }
49
- }
50
- render() {
51
- return html` <slot @slotchange=${this._detectOverflow}></slot>`;
52
- }
53
- }
54
- UUITableCellElement.styles = [
55
- css`
56
- :host {
57
- display: table-cell;
58
- height: var(--uui-size-12,36px);
59
- padding: var(
60
- --uui-table-cell-padding,
61
- var(--uui-size-4,12px) var(--uui-size-5,15px)
62
- );
63
- border-top: 1px solid var(--uui-interface-border,#c4c4c4);
64
- vertical-align: middle;
65
- }
66
-
67
- :host([clip-text]) {
68
- max-width: 0;
69
- overflow: hidden;
70
- text-overflow: ellipsis;
71
- white-space: nowrap;
72
- box-sizing: border-box;
73
- }
74
-
75
- :host([disable-child-interaction]) ::slotted(*) {
76
- pointer-events: none;
77
- }
78
-
79
- :host([disable-child-interaction])::after {
80
- content: '';
81
- position: absolute;
82
- inset: 0;
83
- }
84
- `
85
- ];
86
- __decorateClass([
87
- property({
88
- type: Boolean,
89
- reflect: true,
90
- attribute: "disable-child-interaction"
91
- })
92
- ], UUITableCellElement.prototype, "disableChildInteraction", 2);
93
- __decorateClass([
94
- property({ type: Boolean, reflect: true, attribute: "no-padding" })
95
- ], UUITableCellElement.prototype, "noPadding", 2);
96
- __decorateClass([
97
- property({ type: Boolean, reflect: true, attribute: "clip-text" })
98
- ], UUITableCellElement.prototype, "clipText", 2);
99
-
100
- export { UUITableCellElement };
@@ -1,13 +0,0 @@
1
- import { css, LitElement } from 'lit';
2
-
3
- class UUITableColumnElement extends LitElement {
4
- }
5
- UUITableColumnElement.styles = [
6
- css`
7
- :host {
8
- display: table-column;
9
- }
10
- `
11
- ];
12
-
13
- export { UUITableColumnElement };
@@ -1,115 +0,0 @@
1
- import { css, LitElement, html } from 'lit';
2
- import { property } from 'lit/decorators.js';
3
-
4
- var __defProp = Object.defineProperty;
5
- var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
6
- var __decorateClass = (decorators, target, key, kind) => {
7
- var result = kind > 1 ? void 0 : kind ? __getOwnPropDesc(target, key) : target;
8
- for (var i = decorators.length - 1, decorator; i >= 0; i--)
9
- if (decorator = decorators[i])
10
- result = (kind ? decorator(target, key, result) : decorator(result)) || result;
11
- if (kind && result)
12
- __defProp(target, key, result);
13
- return result;
14
- };
15
- class UUITableCellElement extends LitElement {
16
- constructor() {
17
- super(...arguments);
18
- this.disableChildInteraction = false;
19
- this.noPadding = false;
20
- this.clipText = false;
21
- this._observer = new ResizeObserver(() => {
22
- this._detectOverflow();
23
- });
24
- }
25
- _detectOverflow() {
26
- if (this.scrollWidth > this.clientWidth) {
27
- this.setAttribute("title", this.innerText);
28
- } else {
29
- this.removeAttribute("title");
30
- }
31
- }
32
- connectedCallback() {
33
- super.connectedCallback();
34
- this.setAttribute("role", "cell");
35
- }
36
- disconnectedCallback() {
37
- super.disconnectedCallback();
38
- this._observer.disconnect();
39
- }
40
- updated(changedProperties) {
41
- if (changedProperties.has("clipText")) {
42
- if (this.clipText) {
43
- this._detectOverflow();
44
- this._observer.observe(this);
45
- } else {
46
- this._observer.disconnect();
47
- }
48
- }
49
- }
50
- render() {
51
- return html` <slot @slotchange=${this._detectOverflow}></slot>`;
52
- }
53
- }
54
- UUITableCellElement.styles = [
55
- css`
56
- :host {
57
- display: table-cell;
58
- height: var(--uui-size-12,36px);
59
- padding: var(
60
- --uui-table-cell-padding,
61
- var(--uui-size-4,12px) var(--uui-size-5,15px)
62
- );
63
- border-top: 1px solid var(--uui-interface-border,#c4c4c4);
64
- vertical-align: middle;
65
- }
66
-
67
- :host([clip-text]) {
68
- max-width: 0;
69
- overflow: hidden;
70
- text-overflow: ellipsis;
71
- white-space: nowrap;
72
- box-sizing: border-box;
73
- }
74
-
75
- :host([disable-child-interaction]) ::slotted(*) {
76
- pointer-events: none;
77
- }
78
-
79
- :host([disable-child-interaction])::after {
80
- content: '';
81
- position: absolute;
82
- inset: 0;
83
- }
84
- `
85
- ];
86
- __decorateClass([
87
- property({
88
- type: Boolean,
89
- reflect: true,
90
- attribute: "disable-child-interaction"
91
- })
92
- ], UUITableCellElement.prototype, "disableChildInteraction", 2);
93
- __decorateClass([
94
- property({ type: Boolean, reflect: true, attribute: "no-padding" })
95
- ], UUITableCellElement.prototype, "noPadding", 2);
96
- __decorateClass([
97
- property({ type: Boolean, reflect: true, attribute: "clip-text" })
98
- ], UUITableCellElement.prototype, "clipText", 2);
99
-
100
- class UUITableHeadCellElement extends UUITableCellElement {
101
- connectedCallback() {
102
- super.connectedCallback();
103
- this.setAttribute("role", "columnheader");
104
- }
105
- }
106
- UUITableHeadCellElement.styles = [
107
- ...UUITableCellElement.styles,
108
- css`
109
- :host {
110
- border-top: none;
111
- }
112
- `
113
- ];
114
-
115
- export { UUITableHeadCellElement };
@@ -1,21 +0,0 @@
1
- import { css, LitElement, html } from 'lit';
2
-
3
- class UUITableHeadElement extends LitElement {
4
- connectedCallback() {
5
- super.connectedCallback();
6
- this.setAttribute("role", "row");
7
- }
8
- render() {
9
- return html`<slot></slot>`;
10
- }
11
- }
12
- UUITableHeadElement.styles = [
13
- css`
14
- :host {
15
- display: table-header-group;
16
- font-weight: bold;
17
- }
18
- `
19
- ];
20
-
21
- export { UUITableHeadElement };
@@ -1,57 +0,0 @@
1
- import { LitElement, html, css } from 'lit';
2
- import { SelectOnlyMixin, SelectableMixin } from '@umbraco-ui/uui-base/lib/mixins';
3
- import { queryAssignedNodes } from 'lit/decorators.js';
4
-
5
- var __defProp = Object.defineProperty;
6
- var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
7
- var __decorateClass = (decorators, target, key, kind) => {
8
- var result = kind > 1 ? void 0 : kind ? __getOwnPropDesc(target, key) : target;
9
- for (var i = decorators.length - 1, decorator; i >= 0; i--)
10
- if (decorator = decorators[i])
11
- result = (kind ? decorator(target, key, result) : decorator(result)) || result;
12
- if (kind && result)
13
- __defProp(target, key, result);
14
- return result;
15
- };
16
- class UUITableRowElement extends SelectOnlyMixin(SelectableMixin(LitElement)) {
17
- connectedCallback() {
18
- super.connectedCallback();
19
- this.setAttribute("role", "row");
20
- }
21
- updated(changedProperties) {
22
- if (changedProperties.has("selectOnly"))
23
- this.updateChildSelectOnly();
24
- }
25
- updateChildSelectOnly() {
26
- if (this.slotCellNodes) {
27
- this.slotCellNodes.forEach((el) => {
28
- el.disableChildInteraction = this.selectOnly;
29
- });
30
- }
31
- }
32
- render() {
33
- return html` <slot @slotchanged=${this.updateChildSelectOnly}></slot> `;
34
- }
35
- }
36
- UUITableRowElement.styles = [
37
- css`
38
- :host {
39
- display: table-row;
40
- position: relative;
41
- }
42
-
43
- :host([selectable]) {
44
- cursor: pointer;
45
- }
46
-
47
- :host([selected]) {
48
- outline: 2px solid var(--uui-interface-select,#3544b1);
49
- outline-offset: -3px;
50
- }
51
- `
52
- ];
53
- __decorateClass([
54
- queryAssignedNodes(void 0, true, "uui-table-cell")
55
- ], UUITableRowElement.prototype, "slotCellNodes", 2);
56
-
57
- export { UUITableRowElement };
@@ -1,24 +0,0 @@
1
- import { css, LitElement, html } from 'lit';
2
-
3
- class UUITableElement extends LitElement {
4
- connectedCallback() {
5
- super.connectedCallback();
6
- this.setAttribute("role", "table");
7
- }
8
- render() {
9
- return html`<slot></slot>`;
10
- }
11
- }
12
- UUITableElement.styles = [
13
- css`
14
- :host {
15
- display: table;
16
- width: 100%;
17
- border-radius: var(--uui-border-radius,3px);
18
- background-color: var(--uui-interface-surface,#fefefe);
19
- cursor: default;
20
- }
21
- `
22
- ];
23
-
24
- export { UUITableElement };