@maggioli-design-system/mds-table-row 4.4.1 → 4.4.3

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 (60) hide show
  1. package/dist/cjs/{index-6d791eac.js → index-7b6fb148.js} +46 -31
  2. package/dist/cjs/loader.cjs.js +1 -1
  3. package/dist/cjs/mds-table-row.cjs.entry.js +11 -11
  4. package/dist/cjs/mds-table-row.cjs.js +2 -2
  5. package/dist/collection/collection-manifest.json +1 -1
  6. package/dist/collection/common/aria.js +18 -18
  7. package/dist/collection/common/keyboard-manager.js +38 -38
  8. package/dist/collection/common/unit.js +7 -7
  9. package/dist/collection/components/mds-table-row/mds-table-row.js +51 -51
  10. package/dist/collection/dictionary/autocomplete.js +56 -56
  11. package/dist/collection/dictionary/button.js +19 -19
  12. package/dist/collection/dictionary/color.js +14 -14
  13. package/dist/collection/dictionary/floating-ui.js +14 -14
  14. package/dist/collection/dictionary/input.js +31 -15
  15. package/dist/collection/dictionary/loading.js +2 -2
  16. package/dist/collection/dictionary/typography.js +46 -46
  17. package/dist/collection/dictionary/variant.js +54 -54
  18. package/dist/collection/fixtures/cities.js +107 -107
  19. package/dist/components/mds-table-row.d.ts +2 -2
  20. package/dist/components/mds-table-row.js +26 -26
  21. package/dist/documentation.d.ts +1 -21
  22. package/dist/documentation.json +2 -2
  23. package/dist/esm/{index-04035e77.js → index-9f40909f.js} +46 -31
  24. package/dist/esm/loader.js +2 -2
  25. package/dist/esm/mds-table-row.entry.js +11 -11
  26. package/dist/esm/mds-table-row.js +3 -3
  27. package/dist/esm-es5/index-9f40909f.js +1 -0
  28. package/dist/esm-es5/loader.js +1 -1
  29. package/dist/esm-es5/mds-table-row.entry.js +1 -1
  30. package/dist/esm-es5/mds-table-row.js +1 -1
  31. package/dist/mds-table-row/mds-table-row.esm.js +1 -1
  32. package/dist/mds-table-row/mds-table-row.js +15 -15
  33. package/dist/mds-table-row/{p-abb0ef2f.entry.js → p-0f958c61.entry.js} +1 -1
  34. package/dist/mds-table-row/p-24e0f761.system.js +2 -0
  35. package/dist/mds-table-row/p-4e5a0559.js +2 -0
  36. package/dist/mds-table-row/{p-43afa545.system.entry.js → p-8da35bc4.system.entry.js} +1 -1
  37. package/{www/build/p-35ae09e1.system.js → dist/mds-table-row/p-fe4b1f1b.system.js} +1 -1
  38. package/dist/stats.json +37 -34
  39. package/dist/types/common/keyboard-manager.d.ts +9 -9
  40. package/dist/types/components/mds-table-row/mds-table-row.d.ts +3 -3
  41. package/dist/types/dictionary/input.d.ts +2 -1
  42. package/dist/types/interface/input-value.d.ts +1 -1
  43. package/dist/types/stencil-public-runtime.d.ts +8 -0
  44. package/documentation.json +14 -4
  45. package/package.json +4 -4
  46. package/src/dictionary/input.ts +18 -0
  47. package/src/fixtures/icons.json +3 -0
  48. package/src/fixtures/iconsauce.json +3 -0
  49. package/www/build/mds-table-row.esm.js +1 -1
  50. package/www/build/mds-table-row.js +15 -15
  51. package/www/build/{p-abb0ef2f.entry.js → p-0f958c61.entry.js} +1 -1
  52. package/www/build/p-24e0f761.system.js +2 -0
  53. package/www/build/p-4e5a0559.js +2 -0
  54. package/www/build/{p-43afa545.system.entry.js → p-8da35bc4.system.entry.js} +1 -1
  55. package/{dist/mds-table-row/p-35ae09e1.system.js → www/build/p-fe4b1f1b.system.js} +1 -1
  56. package/dist/esm-es5/index-04035e77.js +0 -1
  57. package/dist/mds-table-row/p-88b806ec.js +0 -2
  58. package/dist/mds-table-row/p-8f394fbb.system.js +0 -2
  59. package/www/build/p-88b806ec.js +0 -2
  60. package/www/build/p-8f394fbb.system.js +0 -2
@@ -3,34 +3,34 @@ import { proxyCustomElement, HTMLElement, h, Host } from '@stencil/core/internal
3
3
  const mdsTableRowCss = ".fixed{position:fixed}.absolute{position:absolute}.border{border-width:1px}.shadow{--tw-shadow:0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);--tw-shadow-colored:0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);-webkit-box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)}:host{display:table-row}:host([interactive]:hover){--mds-table-cell-background:var(--mds-table-cell-background-hover, rgb(var(--tone-neutral)))}";
4
4
 
5
5
  const MdsTableRow$1 = /*@__PURE__*/ proxyCustomElement(class MdsTableRow extends HTMLElement {
6
- constructor() {
7
- super();
8
- this.__registerHost();
9
- this.__attachShadow();
10
- this.interactive = undefined;
11
- }
12
- tableInteractiveHandler(event) {
13
- this.interactive = event.detail;
14
- }
15
- render() {
16
- return (h(Host, { role: "row" }, h("slot", null)));
17
- }
18
- static get style() { return mdsTableRowCss; }
6
+ constructor() {
7
+ super();
8
+ this.__registerHost();
9
+ this.__attachShadow();
10
+ this.interactive = undefined;
11
+ }
12
+ tableInteractiveHandler(event) {
13
+ this.interactive = event.detail;
14
+ }
15
+ render() {
16
+ return (h(Host, { role: "row" }, h("slot", null)));
17
+ }
18
+ static get style() { return mdsTableRowCss; }
19
19
  }, [1, "mds-table-row", {
20
- "interactive": [1540]
21
- }, [[4, "mdsTableInteractiveChange", "tableInteractiveHandler"]]]);
20
+ "interactive": [1540]
21
+ }, [[4, "mdsTableInteractiveChange", "tableInteractiveHandler"]]]);
22
22
  function defineCustomElement$1() {
23
- if (typeof customElements === "undefined") {
24
- return;
25
- }
26
- const components = ["mds-table-row"];
27
- components.forEach(tagName => { switch (tagName) {
28
- case "mds-table-row":
29
- if (!customElements.get(tagName)) {
30
- customElements.define(tagName, MdsTableRow$1);
31
- }
32
- break;
33
- } });
23
+ if (typeof customElements === "undefined") {
24
+ return;
25
+ }
26
+ const components = ["mds-table-row"];
27
+ components.forEach(tagName => { switch (tagName) {
28
+ case "mds-table-row":
29
+ if (!customElements.get(tagName)) {
30
+ customElements.define(tagName, MdsTableRow$1);
31
+ }
32
+ break;
33
+ } });
34
34
  }
35
35
 
36
36
  const MdsTableRow = MdsTableRow$1;
@@ -60,30 +60,10 @@ interface ComponentCompilerEventComplexType {
60
60
  }
61
61
  interface ComponentCompilerMethodComplexType {
62
62
  signature: string;
63
- parameters: CompilerJsDoc[];
63
+ parameters: JsonDocMethodParameter[];
64
64
  references: ComponentCompilerTypeReferences;
65
65
  return: string;
66
66
  }
67
- interface CompilerJsDoc {
68
- /**
69
- * The text associated with the JSDoc
70
- */
71
- text: string;
72
- /**
73
- * Tags included in the JSDoc
74
- */
75
- tags: CompilerJsDocTagInfo[];
76
- }
77
- interface CompilerJsDocTagInfo {
78
- /**
79
- * The name of the tag - e.g. `@deprecated`
80
- */
81
- name: string;
82
- /**
83
- * Additional text that is associated with the tag - e.g. `@deprecated use v2 of this API`
84
- */
85
- text?: string;
86
- }
87
67
  /**
88
68
  * The Type Library holds information about the types which are used in a
89
69
  * Stencil project. During compilation, Stencil gathers information about the
@@ -1,8 +1,8 @@
1
1
  {
2
- "timestamp": "2023-11-13T20:08:42",
2
+ "timestamp": "2024-01-10T08:28:32",
3
3
  "compiler": {
4
4
  "name": "@stencil/core",
5
- "version": "4.7.2",
5
+ "version": "4.9.1",
6
6
  "typescriptVersion": "5.2.2"
7
7
  },
8
8
  "components": [
@@ -315,7 +315,11 @@ const setAccessor = (elm, memberName, oldValue, newValue, isSvg, flags) => {
315
315
  elm[memberName] = newValue;
316
316
  }
317
317
  }
318
- catch (e) { }
318
+ catch (e) {
319
+ /**
320
+ * in case someone tries to set a read-only property, e.g. "namespaceURI", we just ignore it
321
+ */
322
+ }
319
323
  }
320
324
  if (newValue == null || newValue === false) {
321
325
  if (newValue !== false || elm.getAttribute(memberName) === '') {
@@ -395,6 +399,9 @@ const createElm = (oldParentVNode, newParentVNode, childIndex, parentElm) => {
395
399
  }
396
400
  }
397
401
  }
402
+ // This needs to always happen so we can hide nodes that are projected
403
+ // to another component but don't end up in a slot
404
+ elm['s-hn'] = hostTagName;
398
405
  return elm;
399
406
  };
400
407
  /**
@@ -518,8 +525,9 @@ const removeVnodes = (vnodes, startIdx, endIdx) => {
518
525
  * @param oldCh the old children of the parent node
519
526
  * @param newVNode the new VNode which will replace the parent
520
527
  * @param newCh the new children of the parent node
528
+ * @param isInitialRender whether or not this is the first render of the vdom
521
529
  */
522
- const updateChildren = (parentElm, oldCh, newVNode, newCh) => {
530
+ const updateChildren = (parentElm, oldCh, newVNode, newCh, isInitialRender = false) => {
523
531
  let oldStartIdx = 0;
524
532
  let newStartIdx = 0;
525
533
  let oldEndIdx = oldCh.length - 1;
@@ -543,25 +551,25 @@ const updateChildren = (parentElm, oldCh, newVNode, newCh) => {
543
551
  else if (newEndVnode == null) {
544
552
  newEndVnode = newCh[--newEndIdx];
545
553
  }
546
- else if (isSameVnode(oldStartVnode, newStartVnode)) {
554
+ else if (isSameVnode(oldStartVnode, newStartVnode, isInitialRender)) {
547
555
  // if the start nodes are the same then we should patch the new VNode
548
556
  // onto the old one, and increment our `newStartIdx` and `oldStartIdx`
549
557
  // indices to reflect that. We don't need to move any DOM Nodes around
550
558
  // since things are matched up in order.
551
- patch(oldStartVnode, newStartVnode);
559
+ patch(oldStartVnode, newStartVnode, isInitialRender);
552
560
  oldStartVnode = oldCh[++oldStartIdx];
553
561
  newStartVnode = newCh[++newStartIdx];
554
562
  }
555
- else if (isSameVnode(oldEndVnode, newEndVnode)) {
563
+ else if (isSameVnode(oldEndVnode, newEndVnode, isInitialRender)) {
556
564
  // likewise, if the end nodes are the same we patch new onto old and
557
565
  // decrement our end indices, and also likewise in this case we don't
558
566
  // need to move any DOM Nodes.
559
- patch(oldEndVnode, newEndVnode);
567
+ patch(oldEndVnode, newEndVnode, isInitialRender);
560
568
  oldEndVnode = oldCh[--oldEndIdx];
561
569
  newEndVnode = newCh[--newEndIdx];
562
570
  }
563
- else if (isSameVnode(oldStartVnode, newEndVnode)) {
564
- patch(oldStartVnode, newEndVnode);
571
+ else if (isSameVnode(oldStartVnode, newEndVnode, isInitialRender)) {
572
+ patch(oldStartVnode, newEndVnode, isInitialRender);
565
573
  // We need to move the element for `oldStartVnode` into a position which
566
574
  // will be appropriate for `newEndVnode`. For this we can use
567
575
  // `.insertBefore` and `oldEndVnode.$elm$.nextSibling`. If there is a
@@ -583,8 +591,8 @@ const updateChildren = (parentElm, oldCh, newVNode, newCh) => {
583
591
  oldStartVnode = oldCh[++oldStartIdx];
584
592
  newEndVnode = newCh[--newEndIdx];
585
593
  }
586
- else if (isSameVnode(oldEndVnode, newStartVnode)) {
587
- patch(oldEndVnode, newStartVnode);
594
+ else if (isSameVnode(oldEndVnode, newStartVnode, isInitialRender)) {
595
+ patch(oldEndVnode, newStartVnode, isInitialRender);
588
596
  // We've already checked above if `oldStartVnode` and `newStartVnode` are
589
597
  // the same node, so since we're here we know that they are not. Thus we
590
598
  // can move the element for `oldEndVnode` _before_ the element for
@@ -638,9 +646,10 @@ const updateChildren = (parentElm, oldCh, newVNode, newCh) => {
638
646
  *
639
647
  * @param leftVNode the first VNode to check
640
648
  * @param rightVNode the second VNode to check
649
+ * @param isInitialRender whether or not this is the first render of the vdom
641
650
  * @returns whether they're equal or not
642
651
  */
643
- const isSameVnode = (leftVNode, rightVNode) => {
652
+ const isSameVnode = (leftVNode, rightVNode, isInitialRender = false) => {
644
653
  // compare if two vnode to see if they're "technically" the same
645
654
  // need to have the same element tag, and same key to be the same
646
655
  if (leftVNode.$tag$ === rightVNode.$tag$) {
@@ -655,8 +664,9 @@ const isSameVnode = (leftVNode, rightVNode) => {
655
664
  *
656
665
  * @param oldVNode an old VNode whose DOM element and children we want to update
657
666
  * @param newVNode a new VNode representing an updated version of the old one
667
+ * @param isInitialRender whether or not this is the first render of the vdom
658
668
  */
659
- const patch = (oldVNode, newVNode) => {
669
+ const patch = (oldVNode, newVNode, isInitialRender = false) => {
660
670
  const elm = (newVNode.$elm$ = oldVNode.$elm$);
661
671
  const oldChildren = oldVNode.$children$;
662
672
  const newChildren = newVNode.$children$;
@@ -675,7 +685,7 @@ const patch = (oldVNode, newVNode) => {
675
685
  if (oldChildren !== null && newChildren !== null) {
676
686
  // looks like there's child vnodes for both the old and new vnodes
677
687
  // so we need to call `updateChildren` to reconcile them
678
- updateChildren(elm, oldChildren, newVNode, newChildren);
688
+ updateChildren(elm, oldChildren, newVNode, newChildren, isInitialRender);
679
689
  }
680
690
  else if (newChildren !== null) {
681
691
  // add the new vnode children
@@ -744,7 +754,7 @@ const renderVdom = (hostRef, renderFnResults, isInitialLoad = false) => {
744
754
  scopeId = hostElm['s-sc'];
745
755
  }
746
756
  // synchronous patch
747
- patch(oldVNode, rootVnode);
757
+ patch(oldVNode, rootVnode, isInitialLoad);
748
758
  };
749
759
  const attachToAncestor = (hostRef, ancestorComponent) => {
750
760
  if (ancestorComponent && !hostRef.$onRenderResolve$ && ancestorComponent['s-p']) {
@@ -1026,10 +1036,10 @@ const setValue = (ref, propName, newVal, cmpMeta) => {
1026
1036
  */
1027
1037
  const proxyComponent = (Cstr, cmpMeta, flags) => {
1028
1038
  var _a;
1039
+ const prototype = Cstr.prototype;
1029
1040
  if (cmpMeta.$members$) {
1030
1041
  // It's better to have a const than two Object.entries()
1031
1042
  const members = Object.entries(cmpMeta.$members$);
1032
- const prototype = Cstr.prototype;
1033
1043
  members.map(([memberName, [memberFlags]]) => {
1034
1044
  if ((memberFlags & 31 /* MEMBER_FLAGS.Prop */ ||
1035
1045
  ((flags & 2 /* PROXY_FLAGS.proxyState */) && memberFlags & 32 /* MEMBER_FLAGS.State */))) {
@@ -1052,6 +1062,7 @@ const proxyComponent = (Cstr, cmpMeta, flags) => {
1052
1062
  const attrNameToPropName = new Map();
1053
1063
  prototype.attributeChangedCallback = function (attrName, oldValue, newValue) {
1054
1064
  plt.jmp(() => {
1065
+ var _a;
1055
1066
  const propName = attrNameToPropName.get(attrName);
1056
1067
  // In a web component lifecycle the attributeChangedCallback runs prior to connectedCallback
1057
1068
  // in the case where an attribute was set inline.
@@ -1107,11 +1118,12 @@ const proxyComponent = (Cstr, cmpMeta, flags) => {
1107
1118
  // 1. The instance is ready
1108
1119
  // 2. The watchers are ready
1109
1120
  // 3. The value has changed
1110
- if (!(flags & 8 /* HOST_FLAGS.isConstructingInstance */) &&
1121
+ if (flags &&
1122
+ !(flags & 8 /* HOST_FLAGS.isConstructingInstance */) &&
1111
1123
  flags & 128 /* HOST_FLAGS.isWatchReady */ &&
1112
1124
  newValue !== oldValue) {
1113
1125
  const instance = hostRef.$lazyInstance$ ;
1114
- const entry = cmpMeta.$watchers$[attrName];
1126
+ const entry = (_a = cmpMeta.$watchers$) === null || _a === void 0 ? void 0 : _a[attrName];
1115
1127
  entry === null || entry === void 0 ? void 0 : entry.forEach((callbackName) => {
1116
1128
  if (instance[callbackName] != null) {
1117
1129
  instance[callbackName].call(instance, newValue, oldValue, attrName);
@@ -1133,10 +1145,11 @@ const proxyComponent = (Cstr, cmpMeta, flags) => {
1133
1145
  ...members
1134
1146
  .filter(([_, m]) => m[0] & 15 /* MEMBER_FLAGS.HasAttribute */)
1135
1147
  .map(([propName, m]) => {
1148
+ var _a;
1136
1149
  const attrName = m[1] || propName;
1137
1150
  attrNameToPropName.set(attrName, propName);
1138
1151
  if (m[0] & 512 /* MEMBER_FLAGS.ReflectAttr */) {
1139
- cmpMeta.$attrsToReflect$.push([propName, attrName]);
1152
+ (_a = cmpMeta.$attrsToReflect$) === null || _a === void 0 ? void 0 : _a.push([propName, attrName]);
1140
1153
  }
1141
1154
  return attrName;
1142
1155
  }),
@@ -1391,12 +1404,14 @@ const bootstrapLazy = (lazyBundles, options = {}) => {
1391
1404
  // If we have styles, add them to the DOM
1392
1405
  if (dataStyles.innerHTML.length) {
1393
1406
  dataStyles.setAttribute('data-styles', '');
1394
- head.insertBefore(dataStyles, metaCharset ? metaCharset.nextSibling : head.firstChild);
1395
1407
  // Apply CSP nonce to the style tag if it exists
1396
1408
  const nonce = (_a = plt.$nonce$) !== null && _a !== void 0 ? _a : queryNonceMetaTagContent(doc);
1397
1409
  if (nonce != null) {
1398
1410
  dataStyles.setAttribute('nonce', nonce);
1399
1411
  }
1412
+ // Insert the styles into the document head
1413
+ // NOTE: this _needs_ to happen last so we can ensure the nonce (and other attributes) are applied
1414
+ head.insertBefore(dataStyles, metaCharset ? metaCharset.nextSibling : head.firstChild);
1400
1415
  }
1401
1416
  // Process deferred connectedCallbacks now all components have been registered
1402
1417
  isBootstrapping = false;
@@ -1509,19 +1524,19 @@ const loadModule = (cmpMeta, hostRef, hmrVersionId) => {
1509
1524
  return module[exportName];
1510
1525
  }
1511
1526
 
1512
- if (!hmrVersionId || !BUILD.hotModuleReplacement) {
1513
- const processMod = importedModule => {
1514
- cmpModules.set(bundleId, importedModule);
1515
- return importedModule[exportName];
1516
- }
1517
- switch(bundleId) {
1518
-
1519
- case 'mds-table-row':
1520
- return import(
1521
- /* webpackMode: "lazy" */
1522
- './mds-table-row.entry.js').then(processMod, consoleError);
1527
+ if (!hmrVersionId || !BUILD.hotModuleReplacement) {
1528
+ const processMod = importedModule => {
1529
+ cmpModules.set(bundleId, importedModule);
1530
+ return importedModule[exportName];
1531
+ }
1532
+ switch(bundleId) {
1533
+
1534
+ case 'mds-table-row':
1535
+ return import(
1536
+ /* webpackMode: "lazy" */
1537
+ './mds-table-row.entry.js').then(processMod, consoleError);
1538
+ }
1523
1539
  }
1524
- }
1525
1540
  return import(
1526
1541
  /* @vite-ignore */
1527
1542
  /* webpackInclude: /\.entry\.js$/ */
@@ -1,5 +1,5 @@
1
- import { b as bootstrapLazy } from './index-04035e77.js';
2
- export { s as setNonce } from './index-04035e77.js';
1
+ import { b as bootstrapLazy } from './index-9f40909f.js';
2
+ export { s as setNonce } from './index-9f40909f.js';
3
3
 
4
4
  const defineCustomElements = (win, options) => {
5
5
  if (typeof window === 'undefined') return undefined;
@@ -1,18 +1,18 @@
1
- import { r as registerInstance, h, H as Host } from './index-04035e77.js';
1
+ import { r as registerInstance, h, H as Host } from './index-9f40909f.js';
2
2
 
3
3
  const mdsTableRowCss = ".fixed{position:fixed}.absolute{position:absolute}.border{border-width:1px}.shadow{--tw-shadow:0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);--tw-shadow-colored:0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);-webkit-box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)}:host{display:table-row}:host([interactive]:hover){--mds-table-cell-background:var(--mds-table-cell-background-hover, rgb(var(--tone-neutral)))}";
4
4
 
5
5
  const MdsTableRow = class {
6
- constructor(hostRef) {
7
- registerInstance(this, hostRef);
8
- this.interactive = undefined;
9
- }
10
- tableInteractiveHandler(event) {
11
- this.interactive = event.detail;
12
- }
13
- render() {
14
- return (h(Host, { role: "row" }, h("slot", null)));
15
- }
6
+ constructor(hostRef) {
7
+ registerInstance(this, hostRef);
8
+ this.interactive = undefined;
9
+ }
10
+ tableInteractiveHandler(event) {
11
+ this.interactive = event.detail;
12
+ }
13
+ render() {
14
+ return (h(Host, { role: "row" }, h("slot", null)));
15
+ }
16
16
  };
17
17
  MdsTableRow.style = mdsTableRowCss;
18
18
 
@@ -1,8 +1,8 @@
1
- import { p as promiseResolve, b as bootstrapLazy } from './index-04035e77.js';
2
- export { s as setNonce } from './index-04035e77.js';
1
+ import { p as promiseResolve, b as bootstrapLazy } from './index-9f40909f.js';
2
+ export { s as setNonce } from './index-9f40909f.js';
3
3
 
4
4
  /*
5
- Stencil Client Patch Browser v4.7.2 | MIT Licensed | https://stenciljs.com
5
+ Stencil Client Patch Browser v4.9.1 | MIT Licensed | https://stenciljs.com
6
6
  */
7
7
  const patchBrowser = () => {
8
8
  const importMeta = import.meta.url;
@@ -0,0 +1 @@
1
+ var __extends=this&&this.__extends||function(){var e=function(n,r){e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,n){e.__proto__=n}||function(e,n){for(var r in n)if(Object.prototype.hasOwnProperty.call(n,r))e[r]=n[r]};return e(n,r)};return function(n,r){if(typeof r!=="function"&&r!==null)throw new TypeError("Class extends value "+String(r)+" is not a constructor or null");e(n,r);function t(){this.constructor=n}n.prototype=r===null?Object.create(r):(t.prototype=r.prototype,new t)}}();var __awaiter=this&&this.__awaiter||function(e,n,r,t){function i(e){return e instanceof r?e:new r((function(n){n(e)}))}return new(r||(r=Promise))((function(r,a){function o(e){try{f(t.next(e))}catch(e){a(e)}}function u(e){try{f(t["throw"](e))}catch(e){a(e)}}function f(e){e.done?r(e.value):i(e.value).then(o,u)}f((t=t.apply(e,n||[])).next())}))};var __generator=this&&this.__generator||function(e,n){var r={label:0,sent:function(){if(a[0]&1)throw a[1];return a[1]},trys:[],ops:[]},t,i,a,o;return o={next:u(0),throw:u(1),return:u(2)},typeof Symbol==="function"&&(o[Symbol.iterator]=function(){return this}),o;function u(e){return function(n){return f([e,n])}}function f(u){if(t)throw new TypeError("Generator is already executing.");while(o&&(o=0,u[0]&&(r=0)),r)try{if(t=1,i&&(a=u[0]&2?i["return"]:u[0]?i["throw"]||((a=i["return"])&&a.call(i),0):i.next)&&!(a=a.call(i,u[1])).done)return a;if(i=0,a)u=[u[0]&2,a.value];switch(u[0]){case 0:case 1:a=u;break;case 4:r.label++;return{value:u[1],done:false};case 5:r.label++;i=u[1];u=[0];continue;case 7:u=r.ops.pop();r.trys.pop();continue;default:if(!(a=r.trys,a=a.length>0&&a[a.length-1])&&(u[0]===6||u[0]===2)){r=0;continue}if(u[0]===3&&(!a||u[1]>a[0]&&u[1]<a[3])){r.label=u[1];break}if(u[0]===6&&r.label<a[1]){r.label=a[1];a=u;break}if(a&&r.label<a[2]){r.label=a[2];r.ops.push(u);break}if(a[2])r.ops.pop();r.trys.pop();continue}u=n.call(e,r)}catch(e){u=[6,e];i=0}finally{t=a=0}if(u[0]&5)throw u[1];return{value:u[0]?u[1]:void 0,done:true}}};var __spreadArray=this&&this.__spreadArray||function(e,n,r){if(r||arguments.length===2)for(var t=0,i=n.length,a;t<i;t++){if(a||!(t in n)){if(!a)a=Array.prototype.slice.call(n,0,t);a[t]=n[t]}}return e.concat(a||Array.prototype.slice.call(n))};var NAMESPACE="mds-table-row";var scopeId;var hostTagName;var isSvgMode=false;var queuePending=false;var createTime=function(e,n){if(n===void 0){n=""}{return function(){return}}};var uniqueTime=function(e,n){{return function(){return}}};var HYDRATED_CSS="{visibility:hidden}[hydrated]{visibility:inherit}";var SLOT_FB_CSS="slot-fb{display:contents}slot-fb[hidden]{display:none}";var EMPTY_OBJ={};var isDef=function(e){return e!=null};var isComplexType=function(e){e=typeof e;return e==="object"||e==="function"};function queryNonceMetaTagContent(e){var n,r,t;return(t=(r=(n=e.head)===null||n===void 0?void 0:n.querySelector('meta[name="csp-nonce"]'))===null||r===void 0?void 0:r.getAttribute("content"))!==null&&t!==void 0?t:undefined}var h=function(e,n){var r=[];for(var t=2;t<arguments.length;t++){r[t-2]=arguments[t]}var i=null;var a=false;var o=false;var u=[];var f=function(n){for(var r=0;r<n.length;r++){i=n[r];if(Array.isArray(i)){f(i)}else if(i!=null&&typeof i!=="boolean"){if(a=typeof e!=="function"&&!isComplexType(i)){i=String(i)}if(a&&o){u[u.length-1].t+=i}else{u.push(a?newVNode(null,i):i)}o=a}}};f(r);var s=newVNode(e,null);s.i=n;if(u.length>0){s.o=u}return s};var newVNode=function(e,n){var r={u:0,l:e,t:n,v:null,o:null};{r.i=null}return r};var Host={};var isHost=function(e){return e&&e.l===Host};var parsePropertyValue=function(e,n){if(e!=null&&!isComplexType(e)){if(n&4){return e==="false"?false:e===""||!!e}return e}return e};var emitEvent=function(e,n,r){var t=plt.ce(n,r);e.dispatchEvent(t);return t};var rootAppliedStyles=new WeakMap;var registerStyle=function(e,n,r){var t=styles.get(e);if(supportsConstructableStylesheets&&r){t=t||new CSSStyleSheet;if(typeof t==="string"){t=n}else{t.replaceSync(n)}}else{t=n}styles.set(e,t)};var addStyle=function(e,n,r){var t;var i=getScopeId(n);var a=styles.get(i);e=e.nodeType===11?e:doc;if(a){if(typeof a==="string"){e=e.head||e;var o=rootAppliedStyles.get(e);var u=void 0;if(!o){rootAppliedStyles.set(e,o=new Set)}if(!o.has(i)){{u=doc.createElement("style");u.innerHTML=a;var f=(t=plt.p)!==null&&t!==void 0?t:queryNonceMetaTagContent(doc);if(f!=null){u.setAttribute("nonce",f)}e.insertBefore(u,e.querySelector("link"))}if(n.u&4){u.innerHTML+=SLOT_FB_CSS}if(o){o.add(i)}}}else if(!e.adoptedStyleSheets.includes(a)){e.adoptedStyleSheets=__spreadArray(__spreadArray([],e.adoptedStyleSheets,true),[a],false)}}return i};var attachStyles=function(e){var n=e.m;var r=e.$hostElement$;var t=n.u;var i=createTime("attachStyles",n.h);var a=addStyle(r.shadowRoot?r.shadowRoot:r.getRootNode(),n);if(t&10){r["s-sc"]=a;r.classList.add(a+"-h")}i()};var getScopeId=function(e,n){return"sc-"+e.h};var setAccessor=function(e,n,r,t,i,a){if(r!==t){var o=isMemberInElement(e,n);n.toLowerCase();{var u=isComplexType(t);if((o||u&&t!==null)&&!i){try{if(!e.tagName.includes("-")){var f=t==null?"":t;if(n==="list"){o=false}else if(r==null||e[n]!=f){e[n]=f}}else{e[n]=t}}catch(e){}}if(t==null||t===false){if(t!==false||e.getAttribute(n)===""){{e.removeAttribute(n)}}}else if((!o||a&4||i)&&!u){t=t===true?"":t;{e.setAttribute(n,t)}}}}};var updateElement=function(e,n,r,t){var i=n.v.nodeType===11&&n.v.host?n.v.host:n.v;var a=e&&e.i||EMPTY_OBJ;var o=n.i||EMPTY_OBJ;{for(t in a){if(!(t in o)){setAccessor(i,t,a[t],undefined,r,n.u)}}}for(t in o){setAccessor(i,t,a[t],o[t],r,n.u)}};var createElm=function(e,n,r,t){var i=n.o[r];var a=0;var o;var u;{o=i.v=doc.createElement(i.l);{updateElement(null,i,isSvgMode)}if(isDef(scopeId)&&o["s-si"]!==scopeId){o.classList.add(o["s-si"]=scopeId)}if(i.o){for(a=0;a<i.o.length;++a){u=createElm(e,i,a);if(u){o.appendChild(u)}}}}o["s-hn"]=hostTagName;return o};var addVnodes=function(e,n,r,t,i,a){var o=e;var u;if(o.shadowRoot&&o.tagName===hostTagName){o=o.shadowRoot}for(;i<=a;++i){if(t[i]){u=createElm(null,r,i);if(u){t[i].v=u;o.insertBefore(u,n)}}}};var removeVnodes=function(e,n,r){for(var t=n;t<=r;++t){var i=e[t];if(i){var a=i.v;if(a){a.remove()}}}};var updateChildren=function(e,n,r,t,i){if(i===void 0){i=false}var a=0;var o=0;var u=n.length-1;var f=n[0];var s=n[u];var l=t.length-1;var c=t[0];var v=t[l];var d;while(a<=u&&o<=l){if(f==null){f=n[++a]}else if(s==null){s=n[--u]}else if(c==null){c=t[++o]}else if(v==null){v=t[--l]}else if(isSameVnode(f,c,i)){patch(f,c,i);f=n[++a];c=t[++o]}else if(isSameVnode(s,v,i)){patch(s,v,i);s=n[--u];v=t[--l]}else if(isSameVnode(f,v,i)){patch(f,v,i);e.insertBefore(f.v,s.v.nextSibling);f=n[++a];v=t[--l]}else if(isSameVnode(s,c,i)){patch(s,c,i);e.insertBefore(s.v,f.v);s=n[--u];c=t[++o]}else{{d=createElm(n&&n[o],r,o);c=t[++o]}if(d){{f.v.parentNode.insertBefore(d,f.v)}}}}if(a>u){addVnodes(e,t[l+1]==null?null:t[l+1].v,r,t,o,l)}else if(o>l){removeVnodes(n,a,u)}};var isSameVnode=function(e,n,r){if(r===void 0){r=false}if(e.l===n.l){return true}return false};var patch=function(e,n,r){if(r===void 0){r=false}var t=n.v=e.v;var i=e.o;var a=n.o;var o=n.l;{{if(o==="slot");else{updateElement(e,n,isSvgMode)}}if(i!==null&&a!==null){updateChildren(t,i,n,a,r)}else if(a!==null){addVnodes(t,null,n,a,0,a.length-1)}else if(i!==null){removeVnodes(i,0,i.length-1)}}};var renderVdom=function(e,n,r){if(r===void 0){r=false}var t=e.$hostElement$;var i=e.m;var a=e.S||newVNode(null,null);var o=isHost(n)?n:h(null,null,n);hostTagName=t.tagName;if(i.T){o.i=o.i||{};i.T.map((function(e){var n=e[0],r=e[1];return o.i[r]=t[n]}))}if(r&&o.i){for(var u=0,f=Object.keys(o.i);u<f.length;u++){var s=f[u];if(t.hasAttribute(s)&&!["key","ref","style","class"].includes(s)){o.i[s]=t[s]}}}o.l=null;o.u|=4;e.S=o;o.v=a.v=t.shadowRoot||t;{scopeId=t["s-sc"]}patch(a,o,r)};var attachToAncestor=function(e,n){if(n&&!e._&&n["s-p"]){n["s-p"].push(new Promise((function(n){return e._=n})))}};var scheduleUpdate=function(e,n){{e.u|=16}if(e.u&4){e.u|=512;return}attachToAncestor(e,e.C);var r=function(){return dispatchHooks(e,n)};return writeTask(r)};var dispatchHooks=function(e,n){var r=createTime("scheduleUpdate",e.m.h);var t=e.$;var i;if(n){{e.u|=256;if(e.H){e.H.map((function(e){var n=e[0],r=e[1];return safeCall(t,n,r)}));e.H=undefined}}}r();return enqueue(i,(function(){return updateComponent(e,t,n)}))};var enqueue=function(e,n){return isPromisey(e)?e.then(n):n()};var isPromisey=function(e){return e instanceof Promise||e&&e.then&&typeof e.then==="function"};var updateComponent=function(e,n,r){return __awaiter(void 0,void 0,void 0,(function(){var t,i,a,o,u,f,s;return __generator(this,(function(l){i=e.$hostElement$;a=createTime("update",e.m.h);o=i["s-rc"];if(r){attachStyles(e)}u=createTime("render",e.m.h);{callRender(e,n,i,r)}if(o){o.map((function(e){return e()}));i["s-rc"]=undefined}u();a();{f=(t=i["s-p"])!==null&&t!==void 0?t:[];s=function(){return postUpdateComponent(e)};if(f.length===0){s()}else{Promise.all(f).then(s);e.u|=4;f.length=0}}return[2]}))}))};var callRender=function(e,n,r,t){try{n=n.render();{e.u&=~16}{e.u|=2}{{{renderVdom(e,n,t)}}}}catch(n){consoleError(n,e.$hostElement$)}return null};var postUpdateComponent=function(e){var n=e.m.h;var r=e.$hostElement$;var t=createTime("postUpdate",n);var i=e.C;if(!(e.u&64)){e.u|=64;{addHydratedFlag(r)}t();{e.M(r);if(!i){appDidLoad()}}}else{t()}{if(e._){e._();e._=undefined}if(e.u&512){nextTick((function(){return scheduleUpdate(e,false)}))}e.u&=~(4|512)}};var appDidLoad=function(e){{addHydratedFlag(doc.documentElement)}nextTick((function(){return emitEvent(win,"appload",{detail:{namespace:NAMESPACE}})}))};var safeCall=function(e,n,r){if(e&&e[n]){try{return e[n](r)}catch(e){consoleError(e)}}return undefined};var addHydratedFlag=function(e){return e.setAttribute("hydrated","")};var getValue=function(e,n){return getHostRef(e).k.get(n)};var setValue=function(e,n,r,t){var i=getHostRef(e);var a=i.k.get(n);var o=i.u;var u=i.$;r=parsePropertyValue(r,t.A[n][0]);var f=Number.isNaN(a)&&Number.isNaN(r);var s=r!==a&&!f;if((!(o&8)||a===undefined)&&s){i.k.set(n,r);if(u){if((o&(2|16))===2){scheduleUpdate(i,false)}}}};var proxyComponent=function(e,n,r){var t;var i=e.prototype;if(n.A){var a=Object.entries(n.A);a.map((function(e){var t=e[0],a=e[1][0];if(a&31||r&2&&a&32){Object.defineProperty(i,t,{get:function(){return getValue(this,t)},set:function(e){setValue(this,t,e,n)},configurable:true,enumerable:true})}}));if(r&1){var o=new Map;i.attributeChangedCallback=function(e,r,t){var a=this;plt.jmp((function(){var u;var f=o.get(e);if(a.hasOwnProperty(f)){t=a[f];delete a[f]}else if(i.hasOwnProperty(f)&&typeof a[f]==="number"&&a[f]==t){return}else if(f==null){var s=getHostRef(a);var l=s===null||s===void 0?void 0:s.u;if(l&&!(l&8)&&l&128&&t!==r){var c=s.$;var v=(u=n.V)===null||u===void 0?void 0:u[e];v===null||v===void 0?void 0:v.forEach((function(n){if(c[n]!=null){c[n].call(c,t,r,e)}}))}return}a[f]=t===null&&typeof a[f]==="boolean"?false:t}))};e.observedAttributes=Array.from(new Set(__spreadArray(__spreadArray([],Object.keys((t=n.V)!==null&&t!==void 0?t:{}),true),a.filter((function(e){var n=e[0],r=e[1];return r[0]&15})).map((function(e){var r=e[0],t=e[1];var i;var a=t[1]||r;o.set(a,r);if(t[0]&512){(i=n.T)===null||i===void 0?void 0:i.push([r,a])}return a})),true)))}}return e};var initializeComponent=function(e,n,r,t){return __awaiter(void 0,void 0,void 0,(function(){var e,t,i,a,o,u,f,s;return __generator(this,(function(l){switch(l.label){case 0:if(!((n.u&32)===0))return[3,3];n.u|=32;e=loadModule(r);if(!e.then)return[3,2];t=uniqueTime();return[4,e];case 1:e=l.sent();t();l.label=2;case 2:if(!e.isProxied){proxyComponent(e,r,2);e.isProxied=true}i=createTime("createInstance",r.h);{n.u|=8}try{new e(n)}catch(e){consoleError(e)}{n.u&=~8}i();if(e.style){a=e.style;o=getScopeId(r);if(!styles.has(o)){u=createTime("registerStyles",r.h);registerStyle(o,a,!!(r.u&1));u()}}l.label=3;case 3:f=n.C;s=function(){return scheduleUpdate(n,true)};if(f&&f["s-rc"]){f["s-rc"].push(s)}else{s()}return[2]}}))}))};var fireConnectedCallback=function(e){};var connectedCallback=function(e){if((plt.u&1)===0){var n=getHostRef(e);var r=n.m;var t=createTime("connectedCallback",r.h);if(!(n.u&1)){n.u|=1;{var i=e;while(i=i.parentNode||i.host){if(i["s-p"]){attachToAncestor(n,n.C=i);break}}}if(r.A){Object.entries(r.A).map((function(n){var r=n[0],t=n[1][0];if(t&31&&e.hasOwnProperty(r)){var i=e[r];delete e[r];e[r]=i}}))}{initializeComponent(e,n,r)}}else{addHostEventListeners(e,n,r.R);if(n===null||n===void 0?void 0:n.$);else if(n===null||n===void 0?void 0:n.P){n.P.then((function(){return fireConnectedCallback()}))}}t()}};var disconnectInstance=function(e){};var disconnectedCallback=function(e){return __awaiter(void 0,void 0,void 0,(function(){var n;return __generator(this,(function(r){if((plt.u&1)===0){n=getHostRef(e);{if(n.q){n.q.map((function(e){return e()}));n.q=undefined}}if(n===null||n===void 0?void 0:n.$);else if(n===null||n===void 0?void 0:n.P){n.P.then((function(){return disconnectInstance()}))}}return[2]}))}))};var bootstrapLazy=function(e,n){if(n===void 0){n={}}var r;var t=createTime();var i=[];var a=n.exclude||[];var o=win.customElements;var u=doc.head;var f=u.querySelector("meta[charset]");var s=doc.createElement("style");var l=[];var c;var v=true;Object.assign(plt,n);plt.L=new URL(n.resourcesUrl||"./",doc.baseURI).href;var d=false;e.map((function(e){e[1].map((function(n){var r={u:n[0],h:n[1],A:n[2],R:n[3]};if(r.u&4){d=true}{r.A=n[2]}{r.R=n[3]}{r.T=[]}var t=r.h;var u=function(e){__extends(n,e);function n(n){var t=e.call(this,n)||this;n=t;registerHost(n,r);if(r.u&1){{{n.attachShadow({mode:"open"})}}}return t}n.prototype.connectedCallback=function(){var e=this;if(c){clearTimeout(c);c=null}if(v){l.push(this)}else{plt.jmp((function(){return connectedCallback(e)}))}};n.prototype.disconnectedCallback=function(){var e=this;plt.jmp((function(){return disconnectedCallback(e)}))};n.prototype.componentOnReady=function(){return getHostRef(this).P};return n}(HTMLElement);r.N=e[0];if(!a.includes(t)&&!o.get(t)){i.push(t);o.define(t,proxyComponent(u,r,1))}}))}));if(d){s.innerHTML+=SLOT_FB_CSS}{s.innerHTML+=i+HYDRATED_CSS}if(s.innerHTML.length){s.setAttribute("data-styles","");var p=(r=plt.p)!==null&&r!==void 0?r:queryNonceMetaTagContent(doc);if(p!=null){s.setAttribute("nonce",p)}u.insertBefore(s,f?f.nextSibling:u.firstChild)}v=false;if(l.length){l.map((function(e){return e.connectedCallback()}))}else{{plt.jmp((function(){return c=setTimeout(appDidLoad,30)}))}}t()};var addHostEventListeners=function(e,n,r,t){if(r){r.map((function(r){var t=r[0],i=r[1],a=r[2];var o=getHostListenerTarget(e,t);var u=hostListenerProxy(n,a);var f=hostListenerOpts(t);plt.ael(o,i,u,f);(n.q=n.q||[]).push((function(){return plt.rel(o,i,u,f)}))}))}};var hostListenerProxy=function(e,n){return function(r){try{{if(e.u&256){e.$[n](r)}else{(e.H=e.H||[]).push([n,r])}}}catch(e){consoleError(e)}}};var getHostListenerTarget=function(e,n){if(n&4)return doc;return e};var hostListenerOpts=function(e){return(e&2)!==0};var setNonce=function(e){return plt.p=e};var hostRefs=new WeakMap;var getHostRef=function(e){return hostRefs.get(e)};var registerInstance=function(e,n){return hostRefs.set(n.$=e,n)};var registerHost=function(e,n){var r={u:0,$hostElement$:e,m:n,k:new Map};{r.P=new Promise((function(e){return r.M=e}));e["s-p"]=[];e["s-rc"]=[]}addHostEventListeners(e,r,n.R);return hostRefs.set(e,r)};var isMemberInElement=function(e,n){return n in e};var consoleError=function(e,n){return(0,console.error)(e,n)};var cmpModules=new Map;var loadModule=function(e,n,r){var t=e.h.replace(/-/g,"_");var i=e.N;var a=cmpModules.get(i);if(a){return a[t]}if(!r||!BUILD.hotModuleReplacement){var o=function(e){cmpModules.set(i,e);return e[t]};switch(i){case"mds-table-row":return import("./mds-table-row.entry.js").then(o,consoleError)}}return import("./".concat(i,".entry.js").concat("")).then((function(e){{cmpModules.set(i,e)}return e[t]}),consoleError)};var styles=new Map;var win=typeof window!=="undefined"?window:{};var doc=win.document||{head:{}};var plt={u:0,L:"",jmp:function(e){return e()},raf:function(e){return requestAnimationFrame(e)},ael:function(e,n,r,t){return e.addEventListener(n,r,t)},rel:function(e,n,r,t){return e.removeEventListener(n,r,t)},ce:function(e,n){return new CustomEvent(e,n)}};var promiseResolve=function(e){return Promise.resolve(e)};var supportsConstructableStylesheets=function(){try{new CSSStyleSheet;return typeof(new CSSStyleSheet).replaceSync==="function"}catch(e){}return false}();var queueDomReads=[];var queueDomWrites=[];var queueTask=function(e,n){return function(r){e.push(r);if(!queuePending){queuePending=true;if(n&&plt.u&4){nextTick(flush)}else{plt.raf(flush)}}}};var consume=function(e){for(var n=0;n<e.length;n++){try{e[n](performance.now())}catch(e){consoleError(e)}}e.length=0};var flush=function(){consume(queueDomReads);{consume(queueDomWrites);if(queuePending=queueDomReads.length>0){plt.raf(flush)}}};var nextTick=function(e){return promiseResolve().then(e)};var writeTask=queueTask(queueDomWrites,true);export{Host as H,bootstrapLazy as b,h,promiseResolve as p,registerInstance as r,setNonce as s};
@@ -1 +1 @@
1
- import{b as bootstrapLazy}from"./index-04035e77.js";export{s as setNonce}from"./index-04035e77.js";var defineCustomElements=function(e,t){if(typeof window==="undefined")return undefined;return bootstrapLazy([["mds-table-row",[[1,"mds-table-row",{interactive:[1540]},[[4,"mdsTableInteractiveChange","tableInteractiveHandler"]]]]]],t)};export{defineCustomElements};
1
+ import{b as bootstrapLazy}from"./index-9f40909f.js";export{s as setNonce}from"./index-9f40909f.js";var defineCustomElements=function(e,t){if(typeof window==="undefined")return undefined;return bootstrapLazy([["mds-table-row",[[1,"mds-table-row",{interactive:[1540]},[[4,"mdsTableInteractiveChange","tableInteractiveHandler"]]]]]],t)};export{defineCustomElements};
@@ -1 +1 @@
1
- import{r as registerInstance,h,H as Host}from"./index-04035e77.js";var mdsTableRowCss=".fixed{position:fixed}.absolute{position:absolute}.border{border-width:1px}.shadow{--tw-shadow:0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);--tw-shadow-colored:0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);-webkit-box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)}:host{display:table-row}:host([interactive]:hover){--mds-table-cell-background:var(--mds-table-cell-background-hover, rgb(var(--tone-neutral)))}";var MdsTableRow=function(){function o(o){registerInstance(this,o);this.interactive=undefined}o.prototype.tableInteractiveHandler=function(o){this.interactive=o.detail};o.prototype.render=function(){return h(Host,{role:"row"},h("slot",null))};return o}();MdsTableRow.style=mdsTableRowCss;export{MdsTableRow as mds_table_row};
1
+ import{r as registerInstance,h,H as Host}from"./index-9f40909f.js";var mdsTableRowCss=".fixed{position:fixed}.absolute{position:absolute}.border{border-width:1px}.shadow{--tw-shadow:0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);--tw-shadow-colored:0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);-webkit-box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)}:host{display:table-row}:host([interactive]:hover){--mds-table-cell-background:var(--mds-table-cell-background-hover, rgb(var(--tone-neutral)))}";var MdsTableRow=function(){function o(o){registerInstance(this,o);this.interactive=undefined}o.prototype.tableInteractiveHandler=function(o){this.interactive=o.detail};o.prototype.render=function(){return h(Host,{role:"row"},h("slot",null))};return o}();MdsTableRow.style=mdsTableRowCss;export{MdsTableRow as mds_table_row};
@@ -1 +1 @@
1
- import{p as promiseResolve,b as bootstrapLazy}from"./index-04035e77.js";export{s as setNonce}from"./index-04035e77.js";var patchBrowser=function(){var e=import.meta.url;var r={};if(e!==""){r.resourcesUrl=new URL(".",e).href}return promiseResolve(r)};patchBrowser().then((function(e){return bootstrapLazy([["mds-table-row",[[1,"mds-table-row",{interactive:[1540]},[[4,"mdsTableInteractiveChange","tableInteractiveHandler"]]]]]],e)}));
1
+ import{p as promiseResolve,b as bootstrapLazy}from"./index-9f40909f.js";export{s as setNonce}from"./index-9f40909f.js";var patchBrowser=function(){var e=import.meta.url;var r={};if(e!==""){r.resourcesUrl=new URL(".",e).href}return promiseResolve(r)};patchBrowser().then((function(e){return bootstrapLazy([["mds-table-row",[[1,"mds-table-row",{interactive:[1540]},[[4,"mdsTableInteractiveChange","tableInteractiveHandler"]]]]]],e)}));
@@ -1 +1 @@
1
- import{p as e,b as t}from"./p-88b806ec.js";export{s as setNonce}from"./p-88b806ec.js";(()=>{const t=import.meta.url,a={};return""!==t&&(a.resourcesUrl=new URL(".",t).href),e(a)})().then((e=>t([["p-abb0ef2f",[[1,"mds-table-row",{interactive:[1540]},[[4,"mdsTableInteractiveChange","tableInteractiveHandler"]]]]]],e)));
1
+ import{p as e,b as t}from"./p-4e5a0559.js";export{s as setNonce}from"./p-4e5a0559.js";(()=>{const t=import.meta.url,a={};return""!==t&&(a.resourcesUrl=new URL(".",t).href),e(a)})().then((e=>t([["p-0f958c61",[[1,"mds-table-row",{interactive:[1540]},[[4,"mdsTableInteractiveChange","tableInteractiveHandler"]]]]]],e)));
@@ -6,7 +6,7 @@
6
6
  // Safari 10 support type="module" but still download and executes the nomodule script
7
7
  if (!currentScript || !currentScript.hasAttribute('nomodule') || !('onbeforeload' in currentScript)) {
8
8
 
9
- /**
9
+ /**
10
10
  * core-js 3.6.5
11
11
  * https://github.com/zloirock/core-js
12
12
  * License: http://rock.mit-license.org
@@ -106,22 +106,22 @@ DOMTokenList
106
106
  */
107
107
  !function(){var e="undefined"!=typeof self,n=e?self:global;var t;if("undefined"!=typeof document){var e=document.querySelector("base[href]");e&&(t=e.href)}if(!t&&"undefined"!=typeof location){var e=(t=location.href.split("#")[0].split("?")[0]).lastIndexOf("/");-1!==e&&(t=t.slice(0,e+1))}var r=/\\/g,o="undefined"!=typeof Symbol,i=o&&Symbol.toStringTag,c=o?Symbol():"@";function u(){this[c]={}}var s=u.prototype;var l;s.import=function(e,n){var t=this;return Promise.resolve(t.resolve(e,n)).then(function(e){var n=function e(n,t,r){var o=n[c][t];if(o)return o;var u=[],s=Object.create(null);i&&Object.defineProperty(s,i,{value:"Module"});var l=Promise.resolve().then(function(){return n.instantiate(t,r)}).then(function(e){if(!e)throw Error("Module "+t+" did not instantiate");var r=e[1](function(e,n){o.h=!0;var t=!1;if("object"!=typeof e)e in s&&s[e]===n||(s[e]=n,t=!0);else for(var n in e){var r=e[n];n in s&&s[n]===r||(s[n]=r,t=!0)}if(t)for(var e=0;e<u.length;e++)u[e](s);return n},2===e[1].length?{import:function(e){return n.import(e,t)},meta:n.createContext(t)}:void 0);return o.e=r.execute||function(){},[e[0],r.setters||[]]});var f=l.then(function(r){return Promise.all(r[0].map(function(o,i){var c=r[1][i];return Promise.resolve(n.resolve(o,t)).then(function(r){var o=e(n,r,t);return Promise.resolve(o.I).then(function(){return c&&(o.i.push(c),!o.h&&o.I||c(o.n)),o})})})).then(function(e){o.d=e})});return f.catch(function(e){o.e=null,o.er=e}),o=n[c][t]={id:t,i:u,n:s,I:l,L:f,h:!1,d:void 0,e:void 0,er:void 0,E:void 0,C:void 0}}(t,e);return n.C||function(e,n){return n.C=function e(n,t,r){if(!r[t.id])return r[t.id]=!0,Promise.resolve(t.L).then(function(){return Promise.all(t.d.map(function(t){return e(n,t,r)}))})}(e,n,{}).then(function(){return function e(n,t,r){if(r[t.id])return;if(r[t.id]=!0,!t.e){if(t.er)throw t.er;return t.E?t.E:void 0}var o;return t.d.forEach(function(t){{var i=e(n,t,r);i&&(o=o||[]).push(i)}}),o?Promise.all(o).then(i):i();function i(){try{var e=t.e.call(f);if(e)return e=e.then(function(){t.C=t.n,t.E=null}),t.E=t.E||e;t.C=t.n}catch(e){throw t.er=e,e}finally{t.L=t.I=void 0,t.e=null}}}(e,n,{})}).then(function(){return n.n})}(t,n)})},s.createContext=function(e){return{url:e}},s.register=function(e,n){l=[e,n]},s.getRegister=function(){var e=l;return l=void 0,e};var f=Object.freeze(Object.create(null));n.System=n.System||new u;var d=s.register;s.register=function(e,n){d.call(this,e,n)},s.instantiate=function(e,n){var t=this;return".json"===e.substr(-5)?fetch(e).then(function(e){return e.text()}).then(function(e){return[[],function(n){return{execute:function(){n("default",JSON.parse(e))}}}]}):new Promise(function(r,o){var i;function c(n){n.filename===e&&(i=n.error)}window.addEventListener("error",c);var u=document.createElement("script");u.charset="utf-8",u.async=!0,u.addEventListener("error",function(){window.removeEventListener("error",c),o(Error("Error loading "+e+(n?" from "+n:"")))}),u.addEventListener("load",function(){window.removeEventListener("error",c),document.head.removeChild(u),i?o(i):r(t.getRegister())}),u.src=e,document.head.appendChild(u)})},e&&"function"==typeof importScripts&&(s.instantiate=function(e){var n=this;return new Promise(function(t,r){try{importScripts(e)}catch(e){r(e)}t(n.getRegister())})}),s.resolve=function(e,n){var o=function(e,n){if(-1!==e.indexOf("\\")&&(e=e.replace(r,"/")),"/"===e[0]&&"/"===e[1])return n.slice(0,n.indexOf(":")+1)+e;if("."===e[0]&&("/"===e[1]||"."===e[1]&&("/"===e[2]||2===e.length&&(e+="/"))||1===e.length&&(e+="/"))||"/"===e[0]){var t=n.slice(0,n.indexOf(":")+1);var r;if(r="/"===n[t.length+1]?"file:"!==t?(r=n.slice(t.length+2)).slice(r.indexOf("/")+1):n.slice(8):n.slice(t.length+("/"===n[t.length])),"/"===e[0])return n.slice(0,n.length-r.length-1)+e;var o=r.slice(0,r.lastIndexOf("/")+1)+e,i=[];var c=-1;for(var e=0;e<o.length;e++)-1!==c?"/"===o[e]&&(i.push(o.slice(c,e+1)),c=-1):"."===o[e]?"."!==o[e+1]||"/"!==o[e+2]&&e+2!==o.length?"/"===o[e+1]||e+1===o.length?e+=1:c=e:(i.pop(),e+=2):c=e;return-1!==c&&i.push(o.slice(c)),n.slice(0,n.length-r.length)+i.join("")}}(e,n||t);if(!o){if(-1!==e.indexOf(":"))return Promise.resolve(e);throw Error('Cannot resolve "'+e+(n?'" from '+n:'"'))}return Promise.resolve(o)}}();
108
108
 
109
- // Figure out currentScript (for IE11, since it does not support currentScript)
110
- var regex = /\/mds-table-row(\.esm)?\.js($|\?|#)/;
111
- var scriptElm = currentScript || Array.from(document.querySelectorAll('script')).find(function(s) {
112
- return regex.test(s.src) || s.getAttribute('data-stencil-namespace') === "mds-table-row";
113
- });
109
+ // Figure out currentScript (for IE11, since it does not support currentScript)
110
+ var regex = /\/mds-table-row(\.esm)?\.js($|\?|#)/;
111
+ var scriptElm = currentScript || Array.from(document.querySelectorAll('script')).find(function(s) {
112
+ return regex.test(s.src) || s.getAttribute('data-stencil-namespace') === "mds-table-row";
113
+ });
114
114
 
115
- var resourcesUrl = scriptElm ? scriptElm.getAttribute('data-resources-url') || scriptElm.src : '';
116
- var start = function() {
117
- // if src is not present then origin is "null", and new URL() throws TypeError: Failed to construct 'URL': Invalid base URL
118
- var url = new URL('./p-35ae09e1.system.js', new URL(resourcesUrl, window.location.origin !== 'null' ? window.location.origin : undefined));
119
- System.import(url.href);
120
- };
115
+ var resourcesUrl = scriptElm ? scriptElm.getAttribute('data-resources-url') || scriptElm.src : '';
116
+ var start = function() {
117
+ // if src is not present then origin is "null", and new URL() throws TypeError: Failed to construct 'URL': Invalid base URL
118
+ var url = new URL('./p-fe4b1f1b.system.js', new URL(resourcesUrl, window.location.origin !== 'null' ? window.location.origin : undefined));
119
+ System.import(url.href);
120
+ };
121
121
 
122
- start();
122
+ start();
123
123
 
124
- // Note: using .call(window) here because the self-executing function needs
125
- // to be scoped to the window object for the ES6Promise polyfill to work
124
+ // Note: using .call(window) here because the self-executing function needs
125
+ // to be scoped to the window object for the ES6Promise polyfill to work
126
126
  }
127
127
  }).call(window);
@@ -1 +1 @@
1
- import{r as o,h as r,H as a}from"./p-88b806ec.js";const t=class{constructor(r){o(this,r),this.interactive=void 0}tableInteractiveHandler(o){this.interactive=o.detail}render(){return r(a,{role:"row"},r("slot",null))}};t.style=".fixed{position:fixed}.absolute{position:absolute}.border{border-width:1px}.shadow{--tw-shadow:0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);--tw-shadow-colored:0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);-webkit-box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)}:host{display:table-row}:host([interactive]:hover){--mds-table-cell-background:var(--mds-table-cell-background-hover, rgb(var(--tone-neutral)))}";export{t as mds_table_row}
1
+ import{r as o,h as r,H as a}from"./p-4e5a0559.js";const t=class{constructor(r){o(this,r),this.interactive=void 0}tableInteractiveHandler(o){this.interactive=o.detail}render(){return r(a,{role:"row"},r("slot",null))}};t.style=".fixed{position:fixed}.absolute{position:absolute}.border{border-width:1px}.shadow{--tw-shadow:0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);--tw-shadow-colored:0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);-webkit-box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)}:host{display:table-row}:host([interactive]:hover){--mds-table-cell-background:var(--mds-table-cell-background-hover, rgb(var(--tone-neutral)))}";export{t as mds_table_row}
@@ -0,0 +1,2 @@
1
+ var __extends=this&&this.__extends||function(){var n=function(r,e){n=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(n,r){n.__proto__=r}||function(n,r){for(var e in r)if(Object.prototype.hasOwnProperty.call(r,e))n[e]=r[e]};return n(r,e)};return function(r,e){if(typeof e!=="function"&&e!==null)throw new TypeError("Class extends value "+String(e)+" is not a constructor or null");n(r,e);function t(){this.constructor=r}r.prototype=e===null?Object.create(e):(t.prototype=e.prototype,new t)}}();var __awaiter=this&&this.__awaiter||function(n,r,e,t){function i(n){return n instanceof e?n:new e((function(r){r(n)}))}return new(e||(e=Promise))((function(e,a){function u(n){try{o(t.next(n))}catch(n){a(n)}}function f(n){try{o(t["throw"](n))}catch(n){a(n)}}function o(n){n.done?e(n.value):i(n.value).then(u,f)}o((t=t.apply(n,r||[])).next())}))};var __generator=this&&this.__generator||function(n,r){var e={label:0,sent:function(){if(a[0]&1)throw a[1];return a[1]},trys:[],ops:[]},t,i,a,u;return u={next:f(0),throw:f(1),return:f(2)},typeof Symbol==="function"&&(u[Symbol.iterator]=function(){return this}),u;function f(n){return function(r){return o([n,r])}}function o(f){if(t)throw new TypeError("Generator is already executing.");while(u&&(u=0,f[0]&&(e=0)),e)try{if(t=1,i&&(a=f[0]&2?i["return"]:f[0]?i["throw"]||((a=i["return"])&&a.call(i),0):i.next)&&!(a=a.call(i,f[1])).done)return a;if(i=0,a)f=[f[0]&2,a.value];switch(f[0]){case 0:case 1:a=f;break;case 4:e.label++;return{value:f[1],done:false};case 5:e.label++;i=f[1];f=[0];continue;case 7:f=e.ops.pop();e.trys.pop();continue;default:if(!(a=e.trys,a=a.length>0&&a[a.length-1])&&(f[0]===6||f[0]===2)){e=0;continue}if(f[0]===3&&(!a||f[1]>a[0]&&f[1]<a[3])){e.label=f[1];break}if(f[0]===6&&e.label<a[1]){e.label=a[1];a=f;break}if(a&&e.label<a[2]){e.label=a[2];e.ops.push(f);break}if(a[2])e.ops.pop();e.trys.pop();continue}f=r.call(n,e)}catch(n){f=[6,n];i=0}finally{t=a=0}if(f[0]&5)throw f[1];return{value:f[0]?f[1]:void 0,done:true}}};var __spreadArray=this&&this.__spreadArray||function(n,r,e){if(e||arguments.length===2)for(var t=0,i=r.length,a;t<i;t++){if(a||!(t in r)){if(!a)a=Array.prototype.slice.call(r,0,t);a[t]=r[t]}}return n.concat(a||Array.prototype.slice.call(r))};System.register([],(function(n,r){"use strict";return{execute:function(){var e=this;var t="mds-table-row";var i;var a;var u=false;var f=false;var o=function(n,r){if(r===void 0){r=""}{return function(){return}}};var v=function(n,r){{return function(){return}}};var l="{visibility:hidden}[hydrated]{visibility:inherit}";var c="slot-fb{display:contents}slot-fb[hidden]{display:none}";var s={};var d=function(n){return n!=null};var h=function(n){n=typeof n;return n==="object"||n==="function"};function y(n){var r,e,t;return(t=(e=(r=n.head)===null||r===void 0?void 0:r.querySelector('meta[name="csp-nonce"]'))===null||e===void 0?void 0:e.getAttribute("content"))!==null&&t!==void 0?t:undefined}var p=n("h",(function(n,r){var e=[];for(var t=2;t<arguments.length;t++){e[t-2]=arguments[t]}var i=null;var a=false;var u=false;var f=[];var o=function(r){for(var e=0;e<r.length;e++){i=r[e];if(Array.isArray(i)){o(i)}else if(i!=null&&typeof i!=="boolean"){if(a=typeof n!=="function"&&!h(i)){i=String(i)}if(a&&u){f[f.length-1].t+=i}else{f.push(a?w(null,i):i)}u=a}}};o(e);var v=w(n,null);v.i=r;if(f.length>0){v.u=f}return v}));var w=function(n,r){var e={o:0,v:n,t:r,l:null,u:null};{e.i=null}return e};var _=n("H",{});var b=function(n){return n&&n.v===_};var m=function(n,r){if(n!=null&&!h(n)){if(r&4){return n==="false"?false:n===""||!!n}return n}return n};var $=function(n,r,e){var t=bn.ce(r,e);n.dispatchEvent(t);return t};var S=new WeakMap;var g=function(n,r,e){var t=pn.get(n);if($n&&e){t=t||new CSSStyleSheet;if(typeof t==="string"){t=r}else{t.replaceSync(r)}}else{t=r}pn.set(n,t)};var j=function(n,r,e){var t;var i=k(r);var a=pn.get(i);n=n.nodeType===11?n:_n;if(a){if(typeof a==="string"){n=n.head||n;var u=S.get(n);var f=void 0;if(!u){S.set(n,u=new Set)}if(!u.has(i)){{f=_n.createElement("style");f.innerHTML=a;var o=(t=bn.h)!==null&&t!==void 0?t:y(_n);if(o!=null){f.setAttribute("nonce",o)}n.insertBefore(f,n.querySelector("link"))}if(r.o&4){f.innerHTML+=c}if(u){u.add(i)}}}else if(!n.adoptedStyleSheets.includes(a)){n.adoptedStyleSheets=__spreadArray(__spreadArray([],n.adoptedStyleSheets,true),[a],false)}}return i};var A=function(n){var r=n.p;var e=n.$hostElement$;var t=r.o;var i=o("attachStyles",r._);var a=j(e.shadowRoot?e.shadowRoot:e.getRootNode(),r);if(t&10){e["s-sc"]=a;e.classList.add(a+"-h")}i()};var k=function(n,r){return"sc-"+n._};var O=function(n,r,e,t,i,a){if(e!==t){var u=sn(n,r);r.toLowerCase();{var f=h(t);if((u||f&&t!==null)&&!i){try{if(!n.tagName.includes("-")){var o=t==null?"":t;if(r==="list"){u=false}else if(e==null||n[r]!=o){n[r]=o}}else{n[r]=t}}catch(n){}}if(t==null||t===false){if(t!==false||n.getAttribute(r)===""){{n.removeAttribute(r)}}}else if((!u||a&4||i)&&!f){t=t===true?"":t;{n.setAttribute(r,t)}}}}};var M=function(n,r,e,t){var i=r.l.nodeType===11&&r.l.host?r.l.host:r.l;var a=n&&n.i||s;var u=r.i||s;{for(t in a){if(!(t in u)){O(i,t,a[t],undefined,e,r.o)}}}for(t in u){O(i,t,a[t],u[t],e,r.o)}};var x=function(n,r,e,t){var f=r.u[e];var o=0;var v;var l;{v=f.l=_n.createElement(f.v);{M(null,f,u)}if(d(i)&&v["s-si"]!==i){v.classList.add(v["s-si"]=i)}if(f.u){for(o=0;o<f.u.length;++o){l=x(n,f,o);if(l){v.appendChild(l)}}}}v["s-hn"]=a;return v};var C=function(n,r,e,t,i,u){var f=n;var o;if(f.shadowRoot&&f.tagName===a){f=f.shadowRoot}for(;i<=u;++i){if(t[i]){o=x(null,e,i);if(o){t[i].l=o;f.insertBefore(o,r)}}}};var P=function(n,r,e){for(var t=r;t<=e;++t){var i=n[t];if(i){var a=i.l;if(a){a.remove()}}}};var E=function(n,r,e,t,i){if(i===void 0){i=false}var a=0;var u=0;var f=r.length-1;var o=r[0];var v=r[f];var l=t.length-1;var c=t[0];var s=t[l];var d;while(a<=f&&u<=l){if(o==null){o=r[++a]}else if(v==null){v=r[--f]}else if(c==null){c=t[++u]}else if(s==null){s=t[--l]}else if(T(o,c,i)){U(o,c,i);o=r[++a];c=t[++u]}else if(T(v,s,i)){U(v,s,i);v=r[--f];s=t[--l]}else if(T(o,s,i)){U(o,s,i);n.insertBefore(o.l,v.l.nextSibling);o=r[++a];s=t[--l]}else if(T(v,c,i)){U(v,c,i);n.insertBefore(v.l,o.l);v=r[--f];c=t[++u]}else{{d=x(r&&r[u],e,u);c=t[++u]}if(d){{o.l.parentNode.insertBefore(d,o.l)}}}}if(a>f){C(n,t[l+1]==null?null:t[l+1].l,e,t,u,l)}else if(u>l){P(r,a,f)}};var T=function(n,r,e){if(e===void 0){e=false}if(n.v===r.v){return true}return false};var U=function(n,r,e){if(e===void 0){e=false}var t=r.l=n.l;var i=n.u;var a=r.u;var f=r.v;{{if(f==="slot");else{M(n,r,u)}}if(i!==null&&a!==null){E(t,i,r,a,e)}else if(a!==null){C(t,null,r,a,0,a.length-1)}else if(i!==null){P(i,0,i.length-1)}}};var N=function(n,r,e){if(e===void 0){e=false}var t=n.$hostElement$;var u=n.p;var f=n.m||w(null,null);var o=b(r)?r:p(null,null,r);a=t.tagName;if(u.$){o.i=o.i||{};u.$.map((function(n){var r=n[0],e=n[1];return o.i[e]=t[r]}))}if(e&&o.i){for(var v=0,l=Object.keys(o.i);v<l.length;v++){var c=l[v];if(t.hasAttribute(c)&&!["key","ref","style","class"].includes(c)){o.i[c]=t[c]}}}o.v=null;o.o|=4;n.m=o;o.l=f.l=t.shadowRoot||t;{i=t["s-sc"]}U(f,o,e)};var H=function(n,r){if(r&&!n.S&&r["s-p"]){r["s-p"].push(new Promise((function(r){return n.S=r})))}};var L=function(n,r){{n.o|=16}if(n.o&4){n.o|=512;return}H(n,n.j);var e=function(){return W(n,r)};return Mn(e)};var W=function(n,r){var e=o("scheduleUpdate",n.p._);var t=n.A;var i;if(r){{n.o|=256;if(n.k){n.k.map((function(n){var r=n[0],e=n[1];return z(t,r,e)}));n.k=undefined}}}e();return q(i,(function(){return G(n,t,r)}))};var q=function(n,r){return F(n)?n.then(r):r()};var F=function(n){return n instanceof Promise||n&&n.then&&typeof n.then==="function"};var G=function(n,r,t){return __awaiter(e,void 0,void 0,(function(){var e,i,a,u,f,v,l;return __generator(this,(function(c){i=n.$hostElement$;a=o("update",n.p._);u=i["s-rc"];if(t){A(n)}f=o("render",n.p._);{I(n,r,i,t)}if(u){u.map((function(n){return n()}));i["s-rc"]=undefined}f();a();{v=(e=i["s-p"])!==null&&e!==void 0?e:[];l=function(){return R(n)};if(v.length===0){l()}else{Promise.all(v).then(l);n.o|=4;v.length=0}}return[2]}))}))};var I=function(n,r,e,t){try{r=r.render();{n.o&=~16}{n.o|=2}{{{N(n,r,t)}}}}catch(r){dn(r,n.$hostElement$)}return null};var R=function(n){var r=n.p._;var e=n.$hostElement$;var t=o("postUpdate",r);var i=n.j;if(!(n.o&64)){n.o|=64;{B(e)}t();{n.O(e);if(!i){V()}}}else{t()}{if(n.S){n.S();n.S=undefined}if(n.o&512){On((function(){return L(n,false)}))}n.o&=~(4|512)}};var V=function(n){{B(_n.documentElement)}On((function(){return $(wn,"appload",{detail:{namespace:t}})}))};var z=function(n,r,e){if(n&&n[r]){try{return n[r](e)}catch(n){dn(n)}}return undefined};var B=function(n){return n.setAttribute("hydrated","")};var D=function(n,r){return vn(n).M.get(r)};var J=function(n,r,e,t){var i=vn(n);var a=i.M.get(r);var u=i.o;var f=i.A;e=m(e,t.C[r][0]);var o=Number.isNaN(a)&&Number.isNaN(e);var v=e!==a&&!o;if((!(u&8)||a===undefined)&&v){i.M.set(r,e);if(f){if((u&(2|16))===2){L(i,false)}}}};var K=function(n,r,e){var t;var i=n.prototype;if(r.C){var a=Object.entries(r.C);a.map((function(n){var t=n[0],a=n[1][0];if(a&31||e&2&&a&32){Object.defineProperty(i,t,{get:function(){return D(this,t)},set:function(n){J(this,t,n,r)},configurable:true,enumerable:true})}}));if(e&1){var u=new Map;i.attributeChangedCallback=function(n,e,t){var a=this;bn.jmp((function(){var f;var o=u.get(n);if(a.hasOwnProperty(o)){t=a[o];delete a[o]}else if(i.hasOwnProperty(o)&&typeof a[o]==="number"&&a[o]==t){return}else if(o==null){var v=vn(a);var l=v===null||v===void 0?void 0:v.o;if(l&&!(l&8)&&l&128&&t!==e){var c=v.A;var s=(f=r.P)===null||f===void 0?void 0:f[n];s===null||s===void 0?void 0:s.forEach((function(r){if(c[r]!=null){c[r].call(c,t,e,n)}}))}return}a[o]=t===null&&typeof a[o]==="boolean"?false:t}))};n.observedAttributes=Array.from(new Set(__spreadArray(__spreadArray([],Object.keys((t=r.P)!==null&&t!==void 0?t:{}),true),a.filter((function(n){var r=n[0],e=n[1];return e[0]&15})).map((function(n){var e=n[0],t=n[1];var i;var a=t[1]||e;u.set(a,e);if(t[0]&512){(i=r.$)===null||i===void 0?void 0:i.push([e,a])}return a})),true)))}}return n};var Q=function(n,r,t,i){return __awaiter(e,void 0,void 0,(function(){var n,e,i,a,u,f,l,c;return __generator(this,(function(s){switch(s.label){case 0:if(!((r.o&32)===0))return[3,3];r.o|=32;n=yn(t);if(!n.then)return[3,2];e=v();return[4,n];case 1:n=s.sent();e();s.label=2;case 2:if(!n.isProxied){K(n,t,2);n.isProxied=true}i=o("createInstance",t._);{r.o|=8}try{new n(r)}catch(n){dn(n)}{r.o&=~8}i();if(n.style){a=n.style;u=k(t);if(!pn.has(u)){f=o("registerStyles",t._);g(u,a,!!(t.o&1));f()}}s.label=3;case 3:l=r.j;c=function(){return L(r,true)};if(l&&l["s-rc"]){l["s-rc"].push(c)}else{c()}return[2]}}))}))};var X=function(n){};var Y=function(n){if((bn.o&1)===0){var r=vn(n);var e=r.p;var t=o("connectedCallback",e._);if(!(r.o&1)){r.o|=1;{var i=n;while(i=i.parentNode||i.host){if(i["s-p"]){H(r,r.j=i);break}}}if(e.C){Object.entries(e.C).map((function(r){var e=r[0],t=r[1][0];if(t&31&&n.hasOwnProperty(e)){var i=n[e];delete n[e];n[e]=i}}))}{Q(n,r,e)}}else{en(n,r,e.T);if(r===null||r===void 0?void 0:r.A);else if(r===null||r===void 0?void 0:r.U){r.U.then((function(){return X()}))}}t()}};var Z=function(n){};var nn=function(n){return __awaiter(e,void 0,void 0,(function(){var r;return __generator(this,(function(e){if((bn.o&1)===0){r=vn(n);{if(r.N){r.N.map((function(n){return n()}));r.N=undefined}}if(r===null||r===void 0?void 0:r.A);else if(r===null||r===void 0?void 0:r.U){r.U.then((function(){return Z()}))}}return[2]}))}))};var rn=n("b",(function(n,r){if(r===void 0){r={}}var e;var t=o();var i=[];var a=r.exclude||[];var u=wn.customElements;var f=_n.head;var v=f.querySelector("meta[charset]");var s=_n.createElement("style");var d=[];var h;var p=true;Object.assign(bn,r);bn.H=new URL(r.resourcesUrl||"./",_n.baseURI).href;var w=false;n.map((function(n){n[1].map((function(r){var e={o:r[0],_:r[1],C:r[2],T:r[3]};if(e.o&4){w=true}{e.C=r[2]}{e.T=r[3]}{e.$=[]}var t=e._;var f=function(n){__extends(r,n);function r(r){var t=n.call(this,r)||this;r=t;cn(r,e);if(e.o&1){{{r.attachShadow({mode:"open"})}}}return t}r.prototype.connectedCallback=function(){var n=this;if(h){clearTimeout(h);h=null}if(p){d.push(this)}else{bn.jmp((function(){return Y(n)}))}};r.prototype.disconnectedCallback=function(){var n=this;bn.jmp((function(){return nn(n)}))};r.prototype.componentOnReady=function(){return vn(this).U};return r}(HTMLElement);e.L=n[0];if(!a.includes(t)&&!u.get(t)){i.push(t);u.define(t,K(f,e,1))}}))}));if(w){s.innerHTML+=c}{s.innerHTML+=i+l}if(s.innerHTML.length){s.setAttribute("data-styles","");var _=(e=bn.h)!==null&&e!==void 0?e:y(_n);if(_!=null){s.setAttribute("nonce",_)}f.insertBefore(s,v?v.nextSibling:f.firstChild)}p=false;if(d.length){d.map((function(n){return n.connectedCallback()}))}else{{bn.jmp((function(){return h=setTimeout(V,30)}))}}t()}));var en=function(n,r,e,t){if(e){e.map((function(e){var t=e[0],i=e[1],a=e[2];var u=an(n,t);var f=tn(r,a);var o=un(t);bn.ael(u,i,f,o);(r.N=r.N||[]).push((function(){return bn.rel(u,i,f,o)}))}))}};var tn=function(n,r){return function(e){try{{if(n.o&256){n.A[r](e)}else{(n.k=n.k||[]).push([r,e])}}}catch(n){dn(n)}}};var an=function(n,r){if(r&4)return _n;return n};var un=function(n){return(n&2)!==0};var fn=n("s",(function(n){return bn.h=n}));var on=new WeakMap;var vn=function(n){return on.get(n)};var ln=n("r",(function(n,r){return on.set(r.A=n,r)}));var cn=function(n,r){var e={o:0,$hostElement$:n,p:r,M:new Map};{e.U=new Promise((function(n){return e.O=n}));n["s-p"]=[];n["s-rc"]=[]}en(n,e,r.T);return on.set(n,e)};var sn=function(n,r){return r in n};var dn=function(n,r){return(0,console.error)(n,r)};var hn=new Map;var yn=function(n,e,t){var i=n._.replace(/-/g,"_");var a=n.L;var u=hn.get(a);if(u){return u[i]}
2
+ /*!__STENCIL_STATIC_IMPORT_SWITCH__*/return r.import("./".concat(a,".entry.js").concat("")).then((function(n){{hn.set(a,n)}return n[i]}),dn)};var pn=new Map;var wn=typeof window!=="undefined"?window:{};var _n=wn.document||{head:{}};var bn={o:0,H:"",jmp:function(n){return n()},raf:function(n){return requestAnimationFrame(n)},ael:function(n,r,e,t){return n.addEventListener(r,e,t)},rel:function(n,r,e,t){return n.removeEventListener(r,e,t)},ce:function(n,r){return new CustomEvent(n,r)}};var mn=n("p",(function(n){return Promise.resolve(n)}));var $n=function(){try{new CSSStyleSheet;return typeof(new CSSStyleSheet).replaceSync==="function"}catch(n){}return false}();var Sn=[];var gn=[];var jn=function(n,r){return function(e){n.push(e);if(!f){f=true;if(r&&bn.o&4){On(kn)}else{bn.raf(kn)}}}};var An=function(n){for(var r=0;r<n.length;r++){try{n[r](performance.now())}catch(n){dn(n)}}n.length=0};var kn=function(){An(Sn);{An(gn);if(f=Sn.length>0){bn.raf(kn)}}};var On=function(n){return mn().then(n)};var Mn=jn(gn,true)}}}));
@@ -0,0 +1,2 @@
1
+ let n,t,e=!1;const l="slot-fb{display:contents}slot-fb[hidden]{display:none}",o={},s=n=>"object"==(n=typeof n)||"function"===n;function i(n){var t,e,l;return null!==(l=null===(e=null===(t=n.head)||void 0===t?void 0:t.querySelector('meta[name="csp-nonce"]'))||void 0===e?void 0:e.getAttribute("content"))&&void 0!==l?l:void 0}const r=(n,t,...e)=>{let l=null,o=!1,i=!1;const r=[],u=t=>{for(let e=0;e<t.length;e++)l=t[e],Array.isArray(l)?u(l):null!=l&&"boolean"!=typeof l&&((o="function"!=typeof n&&!s(l))&&(l+=""),o&&i?r[r.length-1].t+=l:r.push(o?c(null,l):l),i=o)};u(e);const a=c(n,null);return a.l=t,r.length>0&&(a.o=r),a},c=(n,t)=>({i:0,u:n,t,h:null,o:null,l:null}),u={},a=new WeakMap,f=n=>"sc-"+n.v,d=(n,t,e,l,o,i)=>{if(e!==l){let r=V(n,t);t.toLowerCase();{const c=s(l);if((r||c&&null!==l)&&!o)try{if(n.tagName.includes("-"))n[t]=l;else{const o=null==l?"":l;"list"===t?r=!1:null!=e&&n[t]==o||(n[t]=o)}}catch(n){}null==l||!1===l?!1===l&&""!==n.getAttribute(t)||n.removeAttribute(t):(!r||4&i||o)&&!c&&n.setAttribute(t,l=!0===l?"":l)}}},y=(n,t,e,l)=>{const s=11===t.h.nodeType&&t.h.host?t.h.host:t.h,i=n&&n.l||o,r=t.l||o;for(l in i)l in r||d(s,l,i[l],void 0,e,t.i);for(l in r)d(s,l,i[l],r[l],e,t.i)},h=(e,l,o)=>{const s=l.o[o];let i,r,c=0;if(i=s.h=I.createElement(s.u),y(null,s,!1),null!=n&&i["s-si"]!==n&&i.classList.add(i["s-si"]=n),s.o)for(c=0;c<s.o.length;++c)r=h(e,s,c),r&&i.appendChild(r);return i["s-hn"]=t,i},v=(n,e,l,o,s,i)=>{let r,c=n;for(c.shadowRoot&&c.tagName===t&&(c=c.shadowRoot);s<=i;++s)o[s]&&(r=h(null,l,s),r&&(o[s].h=r,c.insertBefore(r,e)))},$=(n,t,e)=>{for(let l=t;l<=e;++l){const t=n[l];if(t){const n=t.h;n&&n.remove()}}},m=(n,t)=>n.u===t.u,p=(n,t,e=!1)=>{const l=t.h=n.h,o=n.o,s=t.o;"slot"===t.u||y(n,t,!1),null!==o&&null!==s?((n,t,e,l,o=!1)=>{let s,i=0,r=0,c=t.length-1,u=t[0],a=t[c],f=l.length-1,d=l[0],y=l[f];for(;i<=c&&r<=f;)null==u?u=t[++i]:null==a?a=t[--c]:null==d?d=l[++r]:null==y?y=l[--f]:m(u,d)?(p(u,d,o),u=t[++i],d=l[++r]):m(a,y)?(p(a,y,o),a=t[--c],y=l[--f]):m(u,y)?(p(u,y,o),n.insertBefore(u.h,a.h.nextSibling),u=t[++i],y=l[--f]):m(a,d)?(p(a,d,o),n.insertBefore(a.h,u.h),a=t[--c],d=l[++r]):(s=h(t&&t[r],e,r),d=l[++r],s&&u.h.parentNode.insertBefore(s,u.h));i>c?v(n,null==l[f+1]?null:l[f+1].h,e,l,r,f):r>f&&$(t,i,c)})(l,o,t,s,e):null!==s?v(l,null,t,s,0,s.length-1):null!==o&&$(o,0,o.length-1)},b=(n,t)=>{t&&!n.$&&t["s-p"]&&t["s-p"].push(new Promise((t=>n.$=t)))},w=(n,t)=>{if(n.i|=16,!(4&n.i))return b(n,n.m),ln((()=>S(n,t)));n.i|=512},S=(n,t)=>{const e=n.p;return t&&(n.i|=256,n.S&&(n.S.map((([n,t])=>P(e,n,t))),n.S=void 0)),g(void 0,(()=>M(n,e,t)))},g=(n,t)=>j(n)?n.then(t):t(),j=n=>n instanceof Promise||n&&n.then&&"function"==typeof n.then,M=async(n,t,e)=>{var o;const s=n.$hostElement$,r=s["s-rc"];e&&(n=>{const t=n.j,e=n.$hostElement$,o=t.i,s=((n,t)=>{var e;const o=f(t),s=D.get(o);if(n=11===n.nodeType?n:I,s)if("string"==typeof s){let r,c=a.get(n=n.head||n);if(c||a.set(n,c=new Set),!c.has(o)){{r=I.createElement("style"),r.innerHTML=s;const t=null!==(e=J.M)&&void 0!==e?e:i(I);null!=t&&r.setAttribute("nonce",t),n.insertBefore(r,n.querySelector("link"))}4&t.i&&(r.innerHTML+=l),c&&c.add(o)}}else n.adoptedStyleSheets.includes(s)||(n.adoptedStyleSheets=[...n.adoptedStyleSheets,s]);return o})(e.shadowRoot?e.shadowRoot:e.getRootNode(),t);10&o&&(e["s-sc"]=s,e.classList.add(s+"-h"))})(n);k(n,t,s,e),r&&(r.map((n=>n())),s["s-rc"]=void 0);{const t=null!==(o=s["s-p"])&&void 0!==o?o:[],e=()=>O(n);0===t.length?e():(Promise.all(t).then(e),n.i|=4,t.length=0)}},k=(e,l,o,s)=>{try{l=l.render(),e.i&=-17,e.i|=2,((e,l,o=!1)=>{const s=e.$hostElement$,i=e.j,a=e.k||c(null,null),f=(n=>n&&n.u===u)(l)?l:r(null,null,l);if(t=s.tagName,i.O&&(f.l=f.l||{},i.O.map((([n,t])=>f.l[t]=s[n]))),o&&f.l)for(const n of Object.keys(f.l))s.hasAttribute(n)&&!["key","ref","style","class"].includes(n)&&(f.l[n]=s[n]);f.u=null,f.i|=4,e.k=f,f.h=a.h=s.shadowRoot||s,n=s["s-sc"],p(a,f,o)})(e,l,s)}catch(n){_(n,e.$hostElement$)}return null},O=n=>{const t=n.$hostElement$,e=n.m;64&n.i||(n.i|=64,x(t),n.C(t),e||C()),n.$&&(n.$(),n.$=void 0),512&n.i&&en((()=>w(n,!1))),n.i&=-517},C=()=>{x(I.documentElement),en((()=>(n=>{const t=J.ce("appload",{detail:{namespace:"mds-table-row"}});return n.dispatchEvent(t),t})(G)))},P=(n,t,e)=>{if(n&&n[t])try{return n[t](e)}catch(n){_(n)}},x=n=>n.setAttribute("hydrated",""),A=(n,t,e)=>{var l;const o=n.prototype;if(t.P){const i=Object.entries(t.P);if(i.map((([n,[l]])=>{(31&l||2&e&&32&l)&&Object.defineProperty(o,n,{get(){return((n,t)=>W(this).A.get(t))(0,n)},set(e){((n,t,e,l)=>{const o=W(n),i=o.A.get(t),r=o.i,c=o.p;e=((n,t)=>null==n||s(n)?n:4&t?"false"!==n&&(""===n||!!n):n)(e,l.P[t][0]),8&r&&void 0!==i||e===i||Number.isNaN(i)&&Number.isNaN(e)||(o.A.set(t,e),c&&2==(18&r)&&w(o,!1))})(this,n,e,t)},configurable:!0,enumerable:!0})})),1&e){const e=new Map;o.attributeChangedCallback=function(n,l,s){J.jmp((()=>{var i;const r=e.get(n);if(this.hasOwnProperty(r))s=this[r],delete this[r];else{if(o.hasOwnProperty(r)&&"number"==typeof this[r]&&this[r]==s)return;if(null==r){const e=W(this),o=null==e?void 0:e.i;if(o&&!(8&o)&&128&o&&s!==l){const o=e.p,r=null===(i=t.N)||void 0===i?void 0:i[n];null==r||r.forEach((t=>{null!=o[t]&&o[t].call(o,s,l,n)}))}return}}this[r]=(null!==s||"boolean"!=typeof this[r])&&s}))},n.observedAttributes=Array.from(new Set([...Object.keys(null!==(l=t.N)&&void 0!==l?l:{}),...i.filter((([n,t])=>15&t[0])).map((([n,l])=>{var o;const s=l[1]||n;return e.set(s,n),512&l[0]&&(null===(o=t.O)||void 0===o||o.push([n,s])),s}))]))}}return n},E=(n,t={})=>{var e;const o=[],s=t.exclude||[],r=G.customElements,c=I.head,u=c.querySelector("meta[charset]"),a=I.createElement("style"),d=[];let y,h=!0;Object.assign(J,t),J.T=new URL(t.resourcesUrl||"./",I.baseURI).href;let v=!1;if(n.map((n=>{n[1].map((t=>{const e={i:t[0],v:t[1],P:t[2],H:t[3]};4&e.i&&(v=!0),e.P=t[2],e.H=t[3],e.O=[];const l=e.v,i=class extends HTMLElement{constructor(n){super(n),F(n=this,e),1&e.i&&n.attachShadow({mode:"open"})}connectedCallback(){y&&(clearTimeout(y),y=null),h?d.push(this):J.jmp((()=>(n=>{if(0==(1&J.i)){const t=W(n),e=t.j,l=()=>{};if(1&t.i)N(n,t,e.H),(null==t?void 0:t.p)||(null==t?void 0:t.L)&&t.L.then((()=>{}));else{t.i|=1;{let e=n;for(;e=e.parentNode||e.host;)if(e["s-p"]){b(t,t.m=e);break}}e.P&&Object.entries(e.P).map((([t,[e]])=>{if(31&e&&n.hasOwnProperty(t)){const e=n[t];delete n[t],n[t]=e}})),(async(n,t,e)=>{let l;if(0==(32&t.i)){t.i|=32;{if(l=B(e),l.then){const n=()=>{};l=await l,n()}l.isProxied||(A(l,e,2),l.isProxied=!0);const n=()=>{};t.i|=8;try{new l(t)}catch(n){_(n)}t.i&=-9,n()}if(l.style){let n=l.style;const t=f(e);if(!D.has(t)){const l=()=>{};((n,t,e)=>{let l=D.get(n);Q&&e?(l=l||new CSSStyleSheet,"string"==typeof l?l=t:l.replaceSync(t)):l=t,D.set(n,l)})(t,n,!!(1&e.i)),l()}}}const o=t.m,s=()=>w(t,!0);o&&o["s-rc"]?o["s-rc"].push(s):s()})(0,t,e)}l()}})(this)))}disconnectedCallback(){J.jmp((()=>(async()=>{if(0==(1&J.i)){const n=W(this);n.R&&(n.R.map((n=>n())),n.R=void 0),(null==n?void 0:n.p)||(null==n?void 0:n.L)&&n.L.then((()=>{}))}})()))}componentOnReady(){return W(this).L}};e.U=n[0],s.includes(l)||r.get(l)||(o.push(l),r.define(l,A(i,e,1)))}))})),v&&(a.innerHTML+=l),a.innerHTML+=o+"{visibility:hidden}[hydrated]{visibility:inherit}",a.innerHTML.length){a.setAttribute("data-styles","");const n=null!==(e=J.M)&&void 0!==e?e:i(I);null!=n&&a.setAttribute("nonce",n),c.insertBefore(a,u?u.nextSibling:c.firstChild)}h=!1,d.length?d.map((n=>n.connectedCallback())):J.jmp((()=>y=setTimeout(C,30)))},N=(n,t,e)=>{e&&e.map((([e,l,o])=>{const s=H(n,e),i=T(t,o),r=L(e);J.ael(s,l,i,r),(t.R=t.R||[]).push((()=>J.rel(s,l,i,r)))}))},T=(n,t)=>e=>{try{256&n.i?n.p[t](e):(n.S=n.S||[]).push([t,e])}catch(n){_(n)}},H=(n,t)=>4&t?I:n,L=n=>0!=(2&n),R=n=>J.M=n,U=new WeakMap,W=n=>U.get(n),q=(n,t)=>U.set(t.p=n,t),F=(n,t)=>{const e={i:0,$hostElement$:n,j:t,A:new Map};return e.L=new Promise((n=>e.C=n)),n["s-p"]=[],n["s-rc"]=[],N(n,e,t.H),U.set(n,e)},V=(n,t)=>t in n,_=(n,t)=>(0,console.error)(n,t),z=new Map,B=n=>{const t=n.v.replace(/-/g,"_"),e=n.U,l=z.get(e);return l?l[t]:import(`./${e}.entry.js`).then((n=>(z.set(e,n),n[t])),_)
2
+ /*!__STENCIL_STATIC_IMPORT_SWITCH__*/},D=new Map,G="undefined"!=typeof window?window:{},I=G.document||{head:{}},J={i:0,T:"",jmp:n=>n(),raf:n=>requestAnimationFrame(n),ael:(n,t,e,l)=>n.addEventListener(t,e,l),rel:(n,t,e,l)=>n.removeEventListener(t,e,l),ce:(n,t)=>new CustomEvent(n,t)},K=n=>Promise.resolve(n),Q=(()=>{try{return new CSSStyleSheet,"function"==typeof(new CSSStyleSheet).replaceSync}catch(n){}return!1})(),X=[],Y=[],Z=(n,t)=>l=>{n.push(l),e||(e=!0,t&&4&J.i?en(tn):J.raf(tn))},nn=n=>{for(let t=0;t<n.length;t++)try{n[t](performance.now())}catch(n){_(n)}n.length=0},tn=()=>{nn(X),nn(Y),(e=X.length>0)&&J.raf(tn)},en=n=>K().then(n),ln=Z(Y,!0);export{u as H,E as b,r as h,K as p,q as r,R as s}
@@ -1 +1 @@
1
- System.register(["./p-8f394fbb.system.js"],(function(o){"use strict";var t,r,a;return{setters:[function(o){t=o.r;r=o.h;a=o.H}],execute:function(){var s=".fixed{position:fixed}.absolute{position:absolute}.border{border-width:1px}.shadow{--tw-shadow:0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);--tw-shadow-colored:0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);-webkit-box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)}:host{display:table-row}:host([interactive]:hover){--mds-table-cell-background:var(--mds-table-cell-background-hover, rgb(var(--tone-neutral)))}";var e=o("mds_table_row",function(){function o(o){t(this,o);this.interactive=undefined}o.prototype.tableInteractiveHandler=function(o){this.interactive=o.detail};o.prototype.render=function(){return r(a,{role:"row"},r("slot",null))};return o}());e.style=s}}}));
1
+ System.register(["./p-24e0f761.system.js"],(function(o){"use strict";var t,r,a;return{setters:[function(o){t=o.r;r=o.h;a=o.H}],execute:function(){var e=".fixed{position:fixed}.absolute{position:absolute}.border{border-width:1px}.shadow{--tw-shadow:0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);--tw-shadow-colored:0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);-webkit-box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)}:host{display:table-row}:host([interactive]:hover){--mds-table-cell-background:var(--mds-table-cell-background-hover, rgb(var(--tone-neutral)))}";var s=o("mds_table_row",function(){function o(o){t(this,o);this.interactive=undefined}o.prototype.tableInteractiveHandler=function(o){this.interactive=o.detail};o.prototype.render=function(){return r(a,{role:"row"},r("slot",null))};return o}());s.style=e}}}));
@@ -1 +1 @@
1
- System.register(["./p-8f394fbb.system.js"],(function(e,t){"use strict";var n,r;return{setters:[function(t){n=t.p;r=t.b;e("setNonce",t.s)}],execute:function(){var e=function(){var e=t.meta.url;var r={};if(e!==""){r.resourcesUrl=new URL(".",e).href}return n(r)};e().then((function(e){return r([["p-43afa545.system",[[1,"mds-table-row",{interactive:[1540]},[[4,"mdsTableInteractiveChange","tableInteractiveHandler"]]]]]],e)}))}}}));
1
+ System.register(["./p-24e0f761.system.js"],(function(e,t){"use strict";var n,r;return{setters:[function(t){n=t.p;r=t.b;e("setNonce",t.s)}],execute:function(){var e=function(){var e=t.meta.url;var r={};if(e!==""){r.resourcesUrl=new URL(".",e).href}return n(r)};e().then((function(e){return r([["p-8da35bc4.system",[[1,"mds-table-row",{interactive:[1540]},[[4,"mdsTableInteractiveChange","tableInteractiveHandler"]]]]]],e)}))}}}));