@maggioli-design-system/mds-table-row 4.0.0 → 4.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (72) hide show
  1. package/dist/cjs/{index-1066e7b9.js → index-bf51ecaa.js} +163 -32
  2. package/dist/cjs/loader.cjs.js +2 -11
  3. package/dist/cjs/mds-table-row.cjs.entry.js +1 -1
  4. package/dist/cjs/mds-table-row.cjs.js +2 -2
  5. package/dist/collection/collection-manifest.json +3 -3
  6. package/dist/collection/common/aria.js +4 -2
  7. package/dist/collection/common/keyboard-manager.js +1 -1
  8. package/dist/collection/common/unit.js +10 -0
  9. package/dist/collection/components/mds-table-row/mds-table-row.css +1 -1
  10. package/dist/collection/components/mds-table-row/mds-table-row.js +4 -1
  11. package/dist/collection/dictionary/button.js +5 -1
  12. package/dist/collection/dictionary/icon.js +2 -2
  13. package/dist/collection/dictionary/variant.js +9 -1
  14. package/dist/components/index.d.ts +5 -3
  15. package/dist/components/index.js +1 -2
  16. package/dist/components/mds-table-row.js +1 -1
  17. package/dist/documentation.d.ts +421 -0
  18. package/dist/documentation.json +68 -0
  19. package/dist/esm/{index-be386e76.js → index-627212b2.js} +163 -32
  20. package/dist/esm/loader.js +3 -12
  21. package/dist/esm/mds-table-row.entry.js +1 -1
  22. package/dist/esm/mds-table-row.js +3 -3
  23. package/dist/esm-es5/index-627212b2.js +2 -0
  24. package/dist/esm-es5/loader.js +1 -1
  25. package/dist/esm-es5/mds-table-row.entry.js +1 -1
  26. package/dist/esm-es5/mds-table-row.js +1 -1
  27. package/dist/mds-table-row/mds-table-row.esm.js +1 -1
  28. package/dist/mds-table-row/mds-table-row.js +2 -6
  29. package/dist/mds-table-row/{p-30a6116a.entry.js → p-792ca9b5.entry.js} +1 -1
  30. package/dist/mds-table-row/p-94ed7d2d.system.js +2 -0
  31. package/dist/mds-table-row/{p-7d3f05d4.system.entry.js → p-ad55a7c6.system.entry.js} +1 -1
  32. package/dist/mds-table-row/p-caa45624.js +2 -0
  33. package/dist/mds-table-row/{p-fb327bab.system.js → p-f2dd20fa.system.js} +1 -1
  34. package/dist/stats.json +41 -33
  35. package/dist/types/common/unit.d.ts +2 -0
  36. package/dist/types/components/mds-table-row/mds-table-row.d.ts +3 -0
  37. package/dist/types/dictionary/button.d.ts +2 -1
  38. package/dist/types/dictionary/variant.d.ts +2 -1
  39. package/dist/types/interface/input-value.d.ts +1 -1
  40. package/dist/types/stencil-public-runtime.d.ts +32 -17
  41. package/dist/types/type/button.d.ts +1 -0
  42. package/dist/types/type/variant.d.ts +1 -0
  43. package/documentation.json +410 -0
  44. package/loader/index.d.ts +2 -2
  45. package/package.json +11 -5
  46. package/readme.md +7 -0
  47. package/src/common/aria.ts +2 -2
  48. package/src/common/keyboard-manager.ts +1 -1
  49. package/src/common/unit.ts +14 -0
  50. package/src/components/mds-table-row/mds-table-row.css +1 -1
  51. package/src/components/mds-table-row/mds-table-row.tsx +5 -0
  52. package/src/components/mds-table-row/readme.md +7 -0
  53. package/src/dictionary/button.ts +7 -1
  54. package/src/dictionary/variant.ts +10 -0
  55. package/src/fixtures/icons.json +40 -0
  56. package/src/fixtures/iconsauce.json +38 -0
  57. package/src/interface/input-value.ts +1 -1
  58. package/src/type/button.ts +4 -0
  59. package/src/type/variant.ts +9 -0
  60. package/www/build/mds-table-row.esm.js +1 -1
  61. package/www/build/mds-table-row.js +2 -6
  62. package/www/build/{p-30a6116a.entry.js → p-792ca9b5.entry.js} +1 -1
  63. package/www/build/p-94ed7d2d.system.js +2 -0
  64. package/www/build/{p-7d3f05d4.system.entry.js → p-ad55a7c6.system.entry.js} +1 -1
  65. package/www/build/p-caa45624.js +2 -0
  66. package/www/build/{p-fb327bab.system.js → p-f2dd20fa.system.js} +1 -1
  67. package/dist/esm/polyfills/css-shim.js +0 -1
  68. package/dist/esm-es5/index-be386e76.js +0 -2
  69. package/dist/mds-table-row/p-2647d8bd.system.js +0 -2
  70. package/dist/mds-table-row/p-426bd1f3.js +0 -2
  71. package/www/build/p-2647d8bd.system.js +0 -2
  72. package/www/build/p-426bd1f3.js +0 -2
@@ -36,6 +36,13 @@ const HYDRATED_CSS = '{visibility:hidden}[hydrated]{visibility:inherit}';
36
36
  */
37
37
  const EMPTY_OBJ = {};
38
38
  const isDef = (v) => v != null;
39
+ /**
40
+ * Check whether a value is a 'complex type', defined here as an object or a
41
+ * function.
42
+ *
43
+ * @param o the value to check
44
+ * @returns whether it's a complex type or not
45
+ */
39
46
  const isComplexType = (o) => {
40
47
  // https://jsperf.com/typeof-fn-object/5
41
48
  o = typeof o;
@@ -194,9 +201,9 @@ const registerStyle = (scopeId, cssText, allowCS) => {
194
201
  }
195
202
  styles.set(scopeId, style);
196
203
  };
197
- const addStyle = (styleContainerNode, cmpMeta, mode, hostElm) => {
204
+ const addStyle = (styleContainerNode, cmpMeta, mode) => {
198
205
  var _a;
199
- let scopeId = getScopeId(cmpMeta);
206
+ const scopeId = getScopeId(cmpMeta);
200
207
  const style = styles.get(scopeId);
201
208
  // if an element is NOT connected then getRootNode() will return the wrong root node
202
209
  // so the fallback is to always use the document for the root node in those cases
@@ -211,10 +218,8 @@ const addStyle = (styleContainerNode, cmpMeta, mode, hostElm) => {
211
218
  }
212
219
  if (!appliedStyles.has(scopeId)) {
213
220
  {
214
- {
215
- styleElm = doc.createElement('style');
216
- styleElm.innerHTML = style;
217
- }
221
+ styleElm = doc.createElement('style');
222
+ styleElm.innerHTML = style;
218
223
  // Apply CSP nonce to the style tag if it exists
219
224
  const nonce = (_a = plt.$nonce$) !== null && _a !== void 0 ? _a : queryNonceMetaTagContent(doc);
220
225
  if (nonce != null) {
@@ -261,6 +266,21 @@ const getScopeId = (cmp, mode) => 'sc-' + (cmp.$tagName$);
261
266
  *
262
267
  * Modified for Stencil's compiler and vdom
263
268
  */
269
+ /**
270
+ * When running a VDom render set properties present on a VDom node onto the
271
+ * corresponding HTML element.
272
+ *
273
+ * Note that this function has special functionality for the `class`,
274
+ * `style`, `key`, and `ref` attributes, as well as event handlers (like
275
+ * `onClick`, etc). All others are just passed through as-is.
276
+ *
277
+ * @param elm the HTMLElement onto which attributes should be set
278
+ * @param memberName the name of the attribute to set
279
+ * @param oldValue the old value for the attribute
280
+ * @param newValue the new value for the attribute
281
+ * @param isSvg whether we're in an svg context or not
282
+ * @param flags bitflags for Vdom variables
283
+ */
264
284
  const setAccessor = (elm, memberName, oldValue, newValue, isSvg, flags) => {
265
285
  if (oldValue !== newValue) {
266
286
  let isProp = isMemberInElement(elm, memberName);
@@ -407,15 +427,16 @@ const addVnodes = (parentElm, before, parentVNode, vnodes, startIdx, endIdx) =>
407
427
  * @param vnodes a list of virtual DOM nodes to remove
408
428
  * @param startIdx the index at which to start removing nodes (inclusive)
409
429
  * @param endIdx the index at which to stop removing nodes (inclusive)
410
- * @param vnode a VNode
411
- * @param elm an element
412
430
  */
413
- const removeVnodes = (vnodes, startIdx, endIdx, vnode, elm) => {
414
- for (; startIdx <= endIdx; ++startIdx) {
415
- if ((vnode = vnodes[startIdx])) {
416
- elm = vnode.$elm$;
417
- // remove the vnode's element from the dom
418
- elm.remove();
431
+ const removeVnodes = (vnodes, startIdx, endIdx) => {
432
+ for (let index = startIdx; index <= endIdx; ++index) {
433
+ const vnode = vnodes[index];
434
+ if (vnode) {
435
+ const elm = vnode.$elm$;
436
+ if (elm) {
437
+ // remove the vnode's element from the dom
438
+ elm.remove();
439
+ }
419
440
  }
420
441
  }
421
442
  };
@@ -666,17 +687,44 @@ const patch = (oldVNode, newVNode) => {
666
687
  * @param hostRef data needed to root and render the virtual DOM tree, such as
667
688
  * the DOM node into which it should be rendered.
668
689
  * @param renderFnResults the virtual DOM nodes to be rendered
690
+ * @param isInitialLoad whether or not this is the first call after page load
669
691
  */
670
- const renderVdom = (hostRef, renderFnResults) => {
692
+ const renderVdom = (hostRef, renderFnResults, isInitialLoad = false) => {
671
693
  const hostElm = hostRef.$hostElement$;
672
694
  const cmpMeta = hostRef.$cmpMeta$;
673
695
  const oldVNode = hostRef.$vnode$ || newVNode(null, null);
696
+ // if `renderFnResults` is a Host node then we can use it directly. If not,
697
+ // we need to call `h` again to wrap the children of our component in a
698
+ // 'dummy' Host node (well, an empty vnode) since `renderVdom` assumes
699
+ // implicitly that the top-level vdom node is 1) an only child and 2)
700
+ // contains attrs that need to be set on the host element.
674
701
  const rootVnode = isHost(renderFnResults) ? renderFnResults : h(null, null, renderFnResults);
675
702
  hostTagName = hostElm.tagName;
676
703
  if (cmpMeta.$attrsToReflect$) {
677
704
  rootVnode.$attrs$ = rootVnode.$attrs$ || {};
678
705
  cmpMeta.$attrsToReflect$.map(([propName, attribute]) => (rootVnode.$attrs$[attribute] = hostElm[propName]));
679
706
  }
707
+ // On the first render and *only* on the first render we want to check for
708
+ // any attributes set on the host element which are also set on the vdom
709
+ // node. If we find them, we override the value on the VDom node attrs with
710
+ // the value from the host element, which allows developers building apps
711
+ // with Stencil components to override e.g. the `role` attribute on a
712
+ // component even if it's already set on the `Host`.
713
+ if (isInitialLoad && rootVnode.$attrs$) {
714
+ for (const key of Object.keys(rootVnode.$attrs$)) {
715
+ // We have a special implementation in `setAccessor` for `style` and
716
+ // `class` which reconciles values coming from the VDom with values
717
+ // already present on the DOM element, so we don't want to override those
718
+ // attributes on the VDom tree with values from the host element if they
719
+ // are present.
720
+ //
721
+ // Likewise, `ref` and `key` are special internal values for the Stencil
722
+ // runtime and we don't want to override those either.
723
+ if (hostElm.hasAttribute(key) && !['key', 'ref', 'style', 'class'].includes(key)) {
724
+ rootVnode.$attrs$[key] = hostElm[key];
725
+ }
726
+ }
727
+ }
680
728
  rootVnode.$tag$ = null;
681
729
  rootVnode.$flags$ |= 4 /* VNODE_FLAGS.isHost */;
682
730
  hostRef.$vnode$ = rootVnode;
@@ -707,24 +755,85 @@ const scheduleUpdate = (hostRef, isInitialLoad) => {
707
755
  const dispatch = () => dispatchHooks(hostRef, isInitialLoad);
708
756
  return writeTask(dispatch) ;
709
757
  };
758
+ /**
759
+ * Dispatch initial-render and update lifecycle hooks, enqueuing calls to
760
+ * component lifecycle methods like `componentWillLoad` as well as
761
+ * {@link updateComponent}, which will kick off the virtual DOM re-render.
762
+ *
763
+ * @param hostRef a reference to a host DOM node
764
+ * @param isInitialLoad whether we're on the initial load or not
765
+ * @returns an empty Promise which is used to enqueue a series of operations for
766
+ * the component
767
+ */
710
768
  const dispatchHooks = (hostRef, isInitialLoad) => {
711
769
  const endSchedule = createTime('scheduleUpdate', hostRef.$cmpMeta$.$tagName$);
712
770
  const instance = hostRef.$lazyInstance$ ;
713
- let promise;
771
+ // We're going to use this variable together with `enqueue` to implement a
772
+ // little promise-based queue. We start out with it `undefined`. When we add
773
+ // the first function to the queue we'll set this variable to be that
774
+ // function's return value. When we attempt to add subsequent values to the
775
+ // queue we'll check that value and, if it was a `Promise`, we'll then chain
776
+ // the new function off of that `Promise` using `.then()`. This will give our
777
+ // queue two nice properties:
778
+ //
779
+ // 1. If all functions added to the queue are synchronous they'll be called
780
+ // synchronously right away.
781
+ // 2. If all functions added to the queue are asynchronous they'll all be
782
+ // called in order after `dispatchHooks` exits.
783
+ let maybePromise;
714
784
  if (isInitialLoad) {
715
785
  {
716
786
  hostRef.$flags$ |= 256 /* HOST_FLAGS.isListenReady */;
717
787
  if (hostRef.$queuedListeners$) {
718
788
  hostRef.$queuedListeners$.map(([methodName, event]) => safeCall(instance, methodName, event));
719
- hostRef.$queuedListeners$ = null;
789
+ hostRef.$queuedListeners$ = undefined;
720
790
  }
721
791
  }
722
792
  }
723
793
  endSchedule();
724
- return then(promise, () => updateComponent(hostRef, instance, isInitialLoad));
794
+ return enqueue(maybePromise, () => updateComponent(hostRef, instance, isInitialLoad));
725
795
  };
796
+ /**
797
+ * This function uses a Promise to implement a simple first-in, first-out queue
798
+ * of functions to be called.
799
+ *
800
+ * The queue is ordered on the basis of the first argument. If it's
801
+ * `undefined`, then nothing is on the queue yet, so the provided function can
802
+ * be called synchronously (although note that this function may return a
803
+ * `Promise`). The idea is that then the return value of that enqueueing
804
+ * operation is kept around, so that if it was a `Promise` then subsequent
805
+ * functions can be enqueued by calling this function again with that `Promise`
806
+ * as the first argument.
807
+ *
808
+ * @param maybePromise either a `Promise` which should resolve before the next function is called or an 'empty' sentinel
809
+ * @param fn a function to enqueue
810
+ * @returns either a `Promise` or the return value of the provided function
811
+ */
812
+ const enqueue = (maybePromise, fn) => isPromisey(maybePromise) ? maybePromise.then(fn) : fn();
813
+ /**
814
+ * Check that a value is a `Promise`. To check, we first see if the value is an
815
+ * instance of the `Promise` global. In a few circumstances, in particular if
816
+ * the global has been overwritten, this is could be misleading, so we also do
817
+ * a little 'duck typing' check to see if the `.then` property of the value is
818
+ * defined and a function.
819
+ *
820
+ * @param maybePromise it might be a promise!
821
+ * @returns whether it is or not
822
+ */
823
+ const isPromisey = (maybePromise) => maybePromise instanceof Promise ||
824
+ (maybePromise && maybePromise.then && typeof maybePromise.then === 'function');
825
+ /**
826
+ * Update a component given reference to its host elements and so on.
827
+ *
828
+ * @param hostRef an object containing references to the element's host node,
829
+ * VDom nodes, and other metadata
830
+ * @param instance a reference to the underlying host element where it will be
831
+ * rendered
832
+ * @param isInitialLoad whether or not this function is being called as part of
833
+ * the first render cycle
834
+ */
726
835
  const updateComponent = async (hostRef, instance, isInitialLoad) => {
727
- // updateComponent
836
+ var _a;
728
837
  const elm = hostRef.$hostElement$;
729
838
  const endUpdate = createTime('update', hostRef.$cmpMeta$.$tagName$);
730
839
  const rc = elm['s-rc'];
@@ -734,7 +843,7 @@ const updateComponent = async (hostRef, instance, isInitialLoad) => {
734
843
  }
735
844
  const endRender = createTime('render', hostRef.$cmpMeta$.$tagName$);
736
845
  {
737
- callRender(hostRef, instance);
846
+ callRender(hostRef, instance, elm, isInitialLoad);
738
847
  }
739
848
  if (rc) {
740
849
  // ok, so turns out there are some child host elements
@@ -746,7 +855,7 @@ const updateComponent = async (hostRef, instance, isInitialLoad) => {
746
855
  endRender();
747
856
  endUpdate();
748
857
  {
749
- const childrenPromises = elm['s-p'];
858
+ const childrenPromises = (_a = elm['s-p']) !== null && _a !== void 0 ? _a : [];
750
859
  const postUpdate = () => postUpdateComponent(hostRef);
751
860
  if (childrenPromises.length === 0) {
752
861
  postUpdate();
@@ -758,7 +867,19 @@ const updateComponent = async (hostRef, instance, isInitialLoad) => {
758
867
  }
759
868
  }
760
869
  };
761
- const callRender = (hostRef, instance, elm) => {
870
+ /**
871
+ * Handle making the call to the VDom renderer with the proper context given
872
+ * various build variables
873
+ *
874
+ * @param hostRef an object containing references to the element's host node,
875
+ * VDom nodes, and other metadata
876
+ * @param instance a reference to the underlying host element where it will be
877
+ * rendered
878
+ * @param elm the Host element for the component
879
+ * @param isInitialLoad whether or not this function is being called as part of
880
+ * @returns an empty promise
881
+ */
882
+ const callRender = (hostRef, instance, elm, isInitialLoad) => {
762
883
  try {
763
884
  instance = instance.render() ;
764
885
  {
@@ -773,7 +894,7 @@ const callRender = (hostRef, instance, elm) => {
773
894
  // or we need to update the css class/attrs on the host element
774
895
  // DOM WRITE!
775
896
  {
776
- renderVdom(hostRef, instance);
897
+ renderVdom(hostRef, instance, isInitialLoad);
777
898
  }
778
899
  }
779
900
  }
@@ -840,9 +961,6 @@ const safeCall = (instance, method, arg) => {
840
961
  }
841
962
  return undefined;
842
963
  };
843
- const then = (promise, thenFn) => {
844
- return promise && promise.then ? promise.then(thenFn) : thenFn();
845
- };
846
964
  const addHydratedFlag = (elm) => elm.setAttribute('hydrated', '')
847
965
  ;
848
966
  const getValue = (ref, propName) => getHostRef(ref).$instanceValues$.get(propName);
@@ -929,12 +1047,12 @@ const proxyComponent = (Cstr, cmpMeta, flags) => {
929
1047
  // customElements.define('my-component', MyComponent);
930
1048
  // </script>
931
1049
  // ```
932
- // In this case if we do not unshadow here and use the value of the shadowing property, attributeChangedCallback
1050
+ // In this case if we do not un-shadow here and use the value of the shadowing property, attributeChangedCallback
933
1051
  // will be called with `newValue = "some-value"` and will set the shadowed property (this.someAttribute = "another-value")
934
1052
  // to the value that was set inline i.e. "some-value" from above example. When
935
- // the connectedCallback attempts to unshadow it will use "some-value" as the initial value rather than "another-value"
1053
+ // the connectedCallback attempts to un-shadow it will use "some-value" as the initial value rather than "another-value"
936
1054
  //
937
- // The case where the attribute was NOT set inline but was not set programmatically shall be handled/unshadowed
1055
+ // The case where the attribute was NOT set inline but was not set programmatically shall be handled/un-shadowed
938
1056
  // by connectedCallback as this attributeChangedCallback will not fire.
939
1057
  //
940
1058
  // https://developers.google.com/web/fundamentals/web-components/best-practices#lazy-properties
@@ -976,9 +1094,9 @@ const proxyComponent = (Cstr, cmpMeta, flags) => {
976
1094
  const initializeComponent = async (elm, hostRef, cmpMeta, hmrVersionId, Cstr) => {
977
1095
  // initializeComponent
978
1096
  if ((hostRef.$flags$ & 32 /* HOST_FLAGS.hasInitializedComponent */) === 0) {
1097
+ // Let the runtime know that the component has been initialized
1098
+ hostRef.$flags$ |= 32 /* HOST_FLAGS.hasInitializedComponent */;
979
1099
  {
980
- // we haven't initialized this element yet
981
- hostRef.$flags$ |= 32 /* HOST_FLAGS.hasInitializedComponent */;
982
1100
  // lazy loaded components
983
1101
  // request the component's implementation to be
984
1102
  // wired up with the host element
@@ -1042,6 +1160,8 @@ const initializeComponent = async (elm, hostRef, cmpMeta, hmrVersionId, Cstr) =>
1042
1160
  schedule();
1043
1161
  }
1044
1162
  };
1163
+ const fireConnectedCallback = (instance) => {
1164
+ };
1045
1165
  const connectedCallback = (elm) => {
1046
1166
  if ((plt.$flags$ & 1 /* PLATFORM_FLAGS.isTmpDisconnected */) === 0) {
1047
1167
  const hostRef = getHostRef(elm);
@@ -1085,11 +1205,18 @@ const connectedCallback = (elm) => {
1085
1205
  // reattach any event listeners to the host
1086
1206
  // since they would have been removed when disconnected
1087
1207
  addHostEventListeners(elm, hostRef, cmpMeta.$listeners$);
1208
+ // fire off connectedCallback() on component instance
1209
+ if (hostRef === null || hostRef === void 0 ? void 0 : hostRef.$lazyInstance$) ;
1210
+ else if (hostRef === null || hostRef === void 0 ? void 0 : hostRef.$onReadyPromise$) {
1211
+ hostRef.$onReadyPromise$.then(() => fireConnectedCallback());
1212
+ }
1088
1213
  }
1089
1214
  endConnected();
1090
1215
  }
1091
1216
  };
1092
- const disconnectedCallback = (elm) => {
1217
+ const disconnectInstance = (instance) => {
1218
+ };
1219
+ const disconnectedCallback = async (elm) => {
1093
1220
  if ((plt.$flags$ & 1 /* PLATFORM_FLAGS.isTmpDisconnected */) === 0) {
1094
1221
  const hostRef = getHostRef(elm);
1095
1222
  {
@@ -1098,6 +1225,10 @@ const disconnectedCallback = (elm) => {
1098
1225
  hostRef.$rmListeners$ = undefined;
1099
1226
  }
1100
1227
  }
1228
+ if (hostRef === null || hostRef === void 0 ? void 0 : hostRef.$lazyInstance$) ;
1229
+ else if (hostRef === null || hostRef === void 0 ? void 0 : hostRef.$onReadyPromise$) {
1230
+ hostRef.$onReadyPromise$.then(() => disconnectInstance());
1231
+ }
1101
1232
  }
1102
1233
  };
1103
1234
  const bootstrapLazy = (lazyBundles, options = {}) => {
@@ -1,18 +1,9 @@
1
- import { p as promiseResolve, b as bootstrapLazy } from './index-be386e76.js';
2
- export { s as setNonce } from './index-be386e76.js';
3
-
4
- /*
5
- Stencil Client Patch Esm v2.22.2 | MIT Licensed | https://stenciljs.com
6
- */
7
- const patchEsm = () => {
8
- return promiseResolve();
9
- };
1
+ import { b as bootstrapLazy } from './index-627212b2.js';
2
+ export { s as setNonce } from './index-627212b2.js';
10
3
 
11
4
  const defineCustomElements = (win, options) => {
12
- if (typeof window === 'undefined') return Promise.resolve();
13
- return patchEsm().then(() => {
5
+ if (typeof window === 'undefined') return undefined;
14
6
  return bootstrapLazy([["mds-table-row",[[1,"mds-table-row",{"interactive":[1540]},[[4,"mdsTableInteractiveChange","tableInteractiveHandler"]]]]]], options);
15
- });
16
7
  };
17
8
 
18
9
  export { defineCustomElements };
@@ -1,4 +1,4 @@
1
- import { r as registerInstance, h, H as Host } from './index-be386e76.js';
1
+ import { r as registerInstance, h, H as Host } from './index-627212b2.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
 
@@ -1,8 +1,8 @@
1
- import { p as promiseResolve, b as bootstrapLazy } from './index-be386e76.js';
2
- export { s as setNonce } from './index-be386e76.js';
1
+ import { p as promiseResolve, b as bootstrapLazy } from './index-627212b2.js';
2
+ export { s as setNonce } from './index-627212b2.js';
3
3
 
4
4
  /*
5
- Stencil Client Patch Browser v2.22.2 | MIT Licensed | https://stenciljs.com
5
+ Stencil Client Patch Browser v4.2.1 | MIT Licensed | https://stenciljs.com
6
6
  */
7
7
  const patchBrowser = () => {
8
8
  const importMeta = import.meta.url;
@@ -0,0 +1,2 @@
1
+ var __extends=this&&this.__extends||function(){var e=function(t,n){e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)if(Object.prototype.hasOwnProperty.call(t,n))e[n]=t[n]};return e(t,n)};return function(t,n){if(typeof n!=="function"&&n!==null)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");e(t,n);function r(){this.constructor=t}t.prototype=n===null?Object.create(n):(r.prototype=n.prototype,new r)}}();var __awaiter=this&&this.__awaiter||function(e,t,n,r){function a(e){return e instanceof n?e:new n((function(t){t(e)}))}return new(n||(n=Promise))((function(n,o){function i(e){try{l(r.next(e))}catch(e){o(e)}}function s(e){try{l(r["throw"](e))}catch(e){o(e)}}function l(e){e.done?n(e.value):a(e.value).then(i,s)}l((r=r.apply(e,t||[])).next())}))};var __generator=this&&this.__generator||function(e,t){var n={label:0,sent:function(){if(o[0]&1)throw o[1];return o[1]},trys:[],ops:[]},r,a,o,i;return i={next:s(0),throw:s(1),return:s(2)},typeof Symbol==="function"&&(i[Symbol.iterator]=function(){return this}),i;function s(e){return function(t){return l([e,t])}}function l(s){if(r)throw new TypeError("Generator is already executing.");while(i&&(i=0,s[0]&&(n=0)),n)try{if(r=1,a&&(o=s[0]&2?a["return"]:s[0]?a["throw"]||((o=a["return"])&&o.call(a),0):a.next)&&!(o=o.call(a,s[1])).done)return o;if(a=0,o)s=[s[0]&2,o.value];switch(s[0]){case 0:case 1:o=s;break;case 4:n.label++;return{value:s[1],done:false};case 5:n.label++;a=s[1];s=[0];continue;case 7:s=n.ops.pop();n.trys.pop();continue;default:if(!(o=n.trys,o=o.length>0&&o[o.length-1])&&(s[0]===6||s[0]===2)){n=0;continue}if(s[0]===3&&(!o||s[1]>o[0]&&s[1]<o[3])){n.label=s[1];break}if(s[0]===6&&n.label<o[1]){n.label=o[1];o=s;break}if(o&&n.label<o[2]){n.label=o[2];n.ops.push(s);break}if(o[2])n.ops.pop();n.trys.pop();continue}s=t.call(e,n)}catch(e){s=[6,e];a=0}finally{r=o=0}if(s[0]&5)throw s[1];return{value:s[0]?s[1]:void 0,done:true}}};var __spreadArray=this&&this.__spreadArray||function(e,t,n){if(n||arguments.length===2)for(var r=0,a=t.length,o;r<a;r++){if(o||!(r in t)){if(!o)o=Array.prototype.slice.call(t,0,r);o[r]=t[r]}}return e.concat(o||Array.prototype.slice.call(t))};var NAMESPACE="mds-table-row";var scopeId;var hostTagName;var isSvgMode=false;var queuePending=false;var createTime=function(e,t){if(t===void 0){t=""}{return function(){return}}};var uniqueTime=function(e,t){{return function(){return}}};var HYDRATED_CSS="{visibility:hidden}[hydrated]{visibility:inherit}";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 t,n,r;return(r=(n=(t=e.head)===null||t===void 0?void 0:t.querySelector('meta[name="csp-nonce"]'))===null||n===void 0?void 0:n.getAttribute("content"))!==null&&r!==void 0?r:undefined}var h=function(e,t){var n=[];for(var r=2;r<arguments.length;r++){n[r-2]=arguments[r]}var a=null;var o=false;var i=false;var s=[];var l=function(t){for(var n=0;n<t.length;n++){a=t[n];if(Array.isArray(a)){l(a)}else if(a!=null&&typeof a!=="boolean"){if(o=typeof e!=="function"&&!isComplexType(a)){a=String(a)}if(o&&i){s[s.length-1].$text$+=a}else{s.push(o?newVNode(null,a):a)}i=o}}};l(n);var u=newVNode(e,null);u.$attrs$=t;if(s.length>0){u.$children$=s}return u};var newVNode=function(e,t){var n={$flags$:0,$tag$:e,$text$:t,$elm$:null,$children$:null};{n.$attrs$=null}return n};var Host={};var isHost=function(e){return e&&e.$tag$===Host};var parsePropertyValue=function(e,t){if(e!=null&&!isComplexType(e)){if(t&4){return e==="false"?false:e===""||!!e}return e}return e};var emitEvent=function(e,t,n){var r=plt.ce(t,n);e.dispatchEvent(r);return r};var rootAppliedStyles=new WeakMap;var registerStyle=function(e,t,n){var r=styles.get(e);if(supportsConstructableStylesheets&&n){r=r||new CSSStyleSheet;if(typeof r==="string"){r=t}else{r.replaceSync(t)}}else{r=t}styles.set(e,r)};var addStyle=function(e,t,n){var r;var a=getScopeId(t);var o=styles.get(a);e=e.nodeType===11?e:doc;if(o){if(typeof o==="string"){e=e.head||e;var i=rootAppliedStyles.get(e);var s=void 0;if(!i){rootAppliedStyles.set(e,i=new Set)}if(!i.has(a)){{s=doc.createElement("style");s.innerHTML=o;var l=(r=plt.$nonce$)!==null&&r!==void 0?r:queryNonceMetaTagContent(doc);if(l!=null){s.setAttribute("nonce",l)}e.insertBefore(s,e.querySelector("link"))}if(i){i.add(a)}}}else if(!e.adoptedStyleSheets.includes(o)){e.adoptedStyleSheets=__spreadArray(__spreadArray([],e.adoptedStyleSheets,true),[o],false)}}return a};var attachStyles=function(e){var t=e.$cmpMeta$;var n=e.$hostElement$;var r=t.$flags$;var a=createTime("attachStyles",t.$tagName$);var o=addStyle(n.shadowRoot?n.shadowRoot:n.getRootNode(),t);if(r&10){n["s-sc"]=o;n.classList.add(o+"-h")}a()};var getScopeId=function(e,t){return"sc-"+e.$tagName$};var setAccessor=function(e,t,n,r,a,o){if(n!==r){var i=isMemberInElement(e,t);t.toLowerCase();{var s=isComplexType(r);if((i||s&&r!==null)&&!a){try{if(!e.tagName.includes("-")){var l=r==null?"":r;if(t==="list"){i=false}else if(n==null||e[t]!=l){e[t]=l}}else{e[t]=r}}catch(e){}}if(r==null||r===false){if(r!==false||e.getAttribute(t)===""){{e.removeAttribute(t)}}}else if((!i||o&4||a)&&!s){r=r===true?"":r;{e.setAttribute(t,r)}}}}};var updateElement=function(e,t,n,r){var a=t.$elm$.nodeType===11&&t.$elm$.host?t.$elm$.host:t.$elm$;var o=e&&e.$attrs$||EMPTY_OBJ;var i=t.$attrs$||EMPTY_OBJ;{for(r in o){if(!(r in i)){setAccessor(a,r,o[r],undefined,n,t.$flags$)}}}for(r in i){setAccessor(a,r,o[r],i[r],n,t.$flags$)}};var createElm=function(e,t,n,r){var a=t.$children$[n];var o=0;var i;var s;{i=a.$elm$=doc.createElement(a.$tag$);{updateElement(null,a,isSvgMode)}if(isDef(scopeId)&&i["s-si"]!==scopeId){i.classList.add(i["s-si"]=scopeId)}if(a.$children$){for(o=0;o<a.$children$.length;++o){s=createElm(e,a,o);if(s){i.appendChild(s)}}}}return i};var addVnodes=function(e,t,n,r,a,o){var i=e;var s;if(i.shadowRoot&&i.tagName===hostTagName){i=i.shadowRoot}for(;a<=o;++a){if(r[a]){s=createElm(null,n,a);if(s){r[a].$elm$=s;i.insertBefore(s,t)}}}};var removeVnodes=function(e,t,n){for(var r=t;r<=n;++r){var a=e[r];if(a){var o=a.$elm$;if(o){o.remove()}}}};var updateChildren=function(e,t,n,r){var a=0;var o=0;var i=t.length-1;var s=t[0];var l=t[i];var u=r.length-1;var c=r[0];var f=r[u];var $;while(a<=i&&o<=u){if(s==null){s=t[++a]}else if(l==null){l=t[--i]}else if(c==null){c=r[++o]}else if(f==null){f=r[--u]}else if(isSameVnode(s,c)){patch(s,c);s=t[++a];c=r[++o]}else if(isSameVnode(l,f)){patch(l,f);l=t[--i];f=r[--u]}else if(isSameVnode(s,f)){patch(s,f);e.insertBefore(s.$elm$,l.$elm$.nextSibling);s=t[++a];f=r[--u]}else if(isSameVnode(l,c)){patch(l,c);e.insertBefore(l.$elm$,s.$elm$);l=t[--i];c=r[++o]}else{{$=createElm(t&&t[o],n,o);c=r[++o]}if($){{s.$elm$.parentNode.insertBefore($,s.$elm$)}}}}if(a>i){addVnodes(e,r[u+1]==null?null:r[u+1].$elm$,n,r,o,u)}else if(o>u){removeVnodes(t,a,i)}};var isSameVnode=function(e,t){if(e.$tag$===t.$tag$){return true}return false};var patch=function(e,t){var n=t.$elm$=e.$elm$;var r=e.$children$;var a=t.$children$;var o=t.$tag$;{{if(o==="slot");else{updateElement(e,t,isSvgMode)}}if(r!==null&&a!==null){updateChildren(n,r,t,a)}else if(a!==null){addVnodes(n,null,t,a,0,a.length-1)}else if(r!==null){removeVnodes(r,0,r.length-1)}}};var renderVdom=function(e,t,n){if(n===void 0){n=false}var r=e.$hostElement$;var a=e.$cmpMeta$;var o=e.$vnode$||newVNode(null,null);var i=isHost(t)?t:h(null,null,t);hostTagName=r.tagName;if(a.$attrsToReflect$){i.$attrs$=i.$attrs$||{};a.$attrsToReflect$.map((function(e){var t=e[0],n=e[1];return i.$attrs$[n]=r[t]}))}if(n&&i.$attrs$){for(var s=0,l=Object.keys(i.$attrs$);s<l.length;s++){var u=l[s];if(r.hasAttribute(u)&&!["key","ref","style","class"].includes(u)){i.$attrs$[u]=r[u]}}}i.$tag$=null;i.$flags$|=4;e.$vnode$=i;i.$elm$=o.$elm$=r.shadowRoot||r;{scopeId=r["s-sc"]}patch(o,i)};var attachToAncestor=function(e,t){if(t&&!e.$onRenderResolve$&&t["s-p"]){t["s-p"].push(new Promise((function(t){return e.$onRenderResolve$=t})))}};var scheduleUpdate=function(e,t){{e.$flags$|=16}if(e.$flags$&4){e.$flags$|=512;return}attachToAncestor(e,e.$ancestorComponent$);var n=function(){return dispatchHooks(e,t)};return writeTask(n)};var dispatchHooks=function(e,t){var n=createTime("scheduleUpdate",e.$cmpMeta$.$tagName$);var r=e.$lazyInstance$;var a;if(t){{e.$flags$|=256;if(e.$queuedListeners$){e.$queuedListeners$.map((function(e){var t=e[0],n=e[1];return safeCall(r,t,n)}));e.$queuedListeners$=undefined}}}n();return enqueue(a,(function(){return updateComponent(e,r,t)}))};var enqueue=function(e,t){return isPromisey(e)?e.then(t):t()};var isPromisey=function(e){return e instanceof Promise||e&&e.then&&typeof e.then==="function"};var updateComponent=function(e,t,n){return __awaiter(void 0,void 0,void 0,(function(){var r,a,o,i,s,l,u;return __generator(this,(function(c){a=e.$hostElement$;o=createTime("update",e.$cmpMeta$.$tagName$);i=a["s-rc"];if(n){attachStyles(e)}s=createTime("render",e.$cmpMeta$.$tagName$);{callRender(e,t,a,n)}if(i){i.map((function(e){return e()}));a["s-rc"]=undefined}s();o();{l=(r=a["s-p"])!==null&&r!==void 0?r:[];u=function(){return postUpdateComponent(e)};if(l.length===0){u()}else{Promise.all(l).then(u);e.$flags$|=4;l.length=0}}return[2]}))}))};var callRender=function(e,t,n,r){try{t=t.render();{e.$flags$&=~16}{e.$flags$|=2}{{{renderVdom(e,t,r)}}}}catch(t){consoleError(t,e.$hostElement$)}return null};var postUpdateComponent=function(e){var t=e.$cmpMeta$.$tagName$;var n=e.$hostElement$;var r=createTime("postUpdate",t);var a=e.$ancestorComponent$;if(!(e.$flags$&64)){e.$flags$|=64;{addHydratedFlag(n)}r();{e.$onReadyResolve$(n);if(!a){appDidLoad()}}}else{r()}{if(e.$onRenderResolve$){e.$onRenderResolve$();e.$onRenderResolve$=undefined}if(e.$flags$&512){nextTick((function(){return scheduleUpdate(e,false)}))}e.$flags$&=~(4|512)}};var appDidLoad=function(e){{addHydratedFlag(doc.documentElement)}nextTick((function(){return emitEvent(win,"appload",{detail:{namespace:NAMESPACE}})}))};var safeCall=function(e,t,n){if(e&&e[t]){try{return e[t](n)}catch(e){consoleError(e)}}return undefined};var addHydratedFlag=function(e){return e.setAttribute("hydrated","")};var getValue=function(e,t){return getHostRef(e).$instanceValues$.get(t)};var setValue=function(e,t,n,r){var a=getHostRef(e);var o=a.$instanceValues$.get(t);var i=a.$flags$;var s=a.$lazyInstance$;n=parsePropertyValue(n,r.$members$[t][0]);var l=Number.isNaN(o)&&Number.isNaN(n);var u=n!==o&&!l;if((!(i&8)||o===undefined)&&u){a.$instanceValues$.set(t,n);if(s){if((i&(2|16))===2){scheduleUpdate(a,false)}}}};var proxyComponent=function(e,t,n){if(t.$members$){var r=Object.entries(t.$members$);var a=e.prototype;r.map((function(e){var r=e[0],o=e[1][0];if(o&31||n&2&&o&32){Object.defineProperty(a,r,{get:function(){return getValue(this,r)},set:function(e){setValue(this,r,e,t)},configurable:true,enumerable:true})}}));if(n&1){var o=new Map;a.attributeChangedCallback=function(e,t,n){var r=this;plt.jmp((function(){var t=o.get(e);if(r.hasOwnProperty(t)){n=r[t];delete r[t]}else if(a.hasOwnProperty(t)&&typeof r[t]==="number"&&r[t]==n){return}r[t]=n===null&&typeof r[t]==="boolean"?false:n}))};e.observedAttributes=r.filter((function(e){var t=e[0],n=e[1];return n[0]&15})).map((function(e){var n=e[0],r=e[1];var a=r[1]||n;o.set(a,n);if(r[0]&512){t.$attrsToReflect$.push([n,a])}return a}))}}return e};var initializeComponent=function(e,t,n,r,a){return __awaiter(void 0,void 0,void 0,(function(){var e,r,o,i,s,l,u;return __generator(this,(function(c){switch(c.label){case 0:if(!((t.$flags$&32)===0))return[3,3];t.$flags$|=32;a=loadModule(n);if(!a.then)return[3,2];e=uniqueTime();return[4,a];case 1:a=c.sent();e();c.label=2;case 2:if(!a.isProxied){proxyComponent(a,n,2);a.isProxied=true}r=createTime("createInstance",n.$tagName$);{t.$flags$|=8}try{new a(t)}catch(e){consoleError(e)}{t.$flags$&=~8}r();if(a.style){o=a.style;i=getScopeId(n);if(!styles.has(i)){s=createTime("registerStyles",n.$tagName$);registerStyle(i,o,!!(n.$flags$&1));s()}}c.label=3;case 3:l=t.$ancestorComponent$;u=function(){return scheduleUpdate(t,true)};if(l&&l["s-rc"]){l["s-rc"].push(u)}else{u()}return[2]}}))}))};var fireConnectedCallback=function(e){};var connectedCallback=function(e){if((plt.$flags$&1)===0){var t=getHostRef(e);var n=t.$cmpMeta$;var r=createTime("connectedCallback",n.$tagName$);if(!(t.$flags$&1)){t.$flags$|=1;{var a=e;while(a=a.parentNode||a.host){if(a["s-p"]){attachToAncestor(t,t.$ancestorComponent$=a);break}}}if(n.$members$){Object.entries(n.$members$).map((function(t){var n=t[0],r=t[1][0];if(r&31&&e.hasOwnProperty(n)){var a=e[n];delete e[n];e[n]=a}}))}{initializeComponent(e,t,n)}}else{addHostEventListeners(e,t,n.$listeners$);if(t===null||t===void 0?void 0:t.$lazyInstance$);else if(t===null||t===void 0?void 0:t.$onReadyPromise$){t.$onReadyPromise$.then((function(){return fireConnectedCallback()}))}}r()}};var disconnectInstance=function(e){};var disconnectedCallback=function(e){return __awaiter(void 0,void 0,void 0,(function(){var t;return __generator(this,(function(n){if((plt.$flags$&1)===0){t=getHostRef(e);{if(t.$rmListeners$){t.$rmListeners$.map((function(e){return e()}));t.$rmListeners$=undefined}}if(t===null||t===void 0?void 0:t.$lazyInstance$);else if(t===null||t===void 0?void 0:t.$onReadyPromise$){t.$onReadyPromise$.then((function(){return disconnectInstance()}))}}return[2]}))}))};var bootstrapLazy=function(e,t){if(t===void 0){t={}}var n;var r=createTime();var a=[];var o=t.exclude||[];var i=win.customElements;var s=doc.head;var l=s.querySelector("meta[charset]");var u=doc.createElement("style");var c=[];var f;var $=true;Object.assign(plt,t);plt.$resourcesUrl$=new URL(t.resourcesUrl||"./",doc.baseURI).href;e.map((function(e){e[1].map((function(t){var n={$flags$:t[0],$tagName$:t[1],$members$:t[2],$listeners$:t[3]};{n.$members$=t[2]}{n.$listeners$=t[3]}{n.$attrsToReflect$=[]}var r=n.$tagName$;var s=function(e){__extends(t,e);function t(t){var r=e.call(this,t)||this;t=r;registerHost(t,n);if(n.$flags$&1){{{t.attachShadow({mode:"open"})}}}return r}t.prototype.connectedCallback=function(){var e=this;if(f){clearTimeout(f);f=null}if($){c.push(this)}else{plt.jmp((function(){return connectedCallback(e)}))}};t.prototype.disconnectedCallback=function(){var e=this;plt.jmp((function(){return disconnectedCallback(e)}))};t.prototype.componentOnReady=function(){return getHostRef(this).$onReadyPromise$};return t}(HTMLElement);n.$lazyBundleId$=e[0];if(!o.includes(r)&&!i.get(r)){a.push(r);i.define(r,proxyComponent(s,n,1))}}))}));{u.innerHTML=a+HYDRATED_CSS;u.setAttribute("data-styles","");var d=(n=plt.$nonce$)!==null&&n!==void 0?n:queryNonceMetaTagContent(doc);if(d!=null){u.setAttribute("nonce",d)}s.insertBefore(u,l?l.nextSibling:s.firstChild)}$=false;if(c.length){c.map((function(e){return e.connectedCallback()}))}else{{plt.jmp((function(){return f=setTimeout(appDidLoad,30)}))}}r()};var addHostEventListeners=function(e,t,n,r){if(n){n.map((function(n){var r=n[0],a=n[1],o=n[2];var i=getHostListenerTarget(e,r);var s=hostListenerProxy(t,o);var l=hostListenerOpts(r);plt.ael(i,a,s,l);(t.$rmListeners$=t.$rmListeners$||[]).push((function(){return plt.rel(i,a,s,l)}))}))}};var hostListenerProxy=function(e,t){return function(n){try{{if(e.$flags$&256){e.$lazyInstance$[t](n)}else{(e.$queuedListeners$=e.$queuedListeners$||[]).push([t,n])}}}catch(e){consoleError(e)}}};var getHostListenerTarget=function(e,t){if(t&4)return doc;return e};var hostListenerOpts=function(e){return(e&2)!==0};var setNonce=function(e){return plt.$nonce$=e};var hostRefs=new WeakMap;var getHostRef=function(e){return hostRefs.get(e)};var registerInstance=function(e,t){return hostRefs.set(t.$lazyInstance$=e,t)};var registerHost=function(e,t){var n={$flags$:0,$hostElement$:e,$cmpMeta$:t,$instanceValues$:new Map};{n.$onReadyPromise$=new Promise((function(e){return n.$onReadyResolve$=e}));e["s-p"]=[];e["s-rc"]=[]}addHostEventListeners(e,n,t.$listeners$);return hostRefs.set(e,n)};var isMemberInElement=function(e,t){return t in e};var consoleError=function(e,t){return(0,console.error)(e,t)};var cmpModules=new Map;var loadModule=function(e,t,n){var r=e.$tagName$.replace(/-/g,"_");var a=e.$lazyBundleId$;var o=cmpModules.get(a);if(o){return o[r]}
2
+ /*!__STENCIL_STATIC_IMPORT_SWITCH__*/return import("./".concat(a,".entry.js").concat("")).then((function(e){{cmpModules.set(a,e)}return e[r]}),consoleError)};var styles=new Map;var win=typeof window!=="undefined"?window:{};var doc=win.document||{head:{}};var plt={$flags$:0,$resourcesUrl$:"",jmp:function(e){return e()},raf:function(e){return requestAnimationFrame(e)},ael:function(e,t,n,r){return e.addEventListener(t,n,r)},rel:function(e,t,n,r){return e.removeEventListener(t,n,r)},ce:function(e,t){return new CustomEvent(e,t)}};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,t){return function(n){e.push(n);if(!queuePending){queuePending=true;if(t&&plt.$flags$&4){nextTick(flush)}else{plt.raf(flush)}}}};var consume=function(e){for(var t=0;t<e.length;t++){try{e[t](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{p as promiseResolve,b as bootstrapLazy}from"./index-be386e76.js";export{s as setNonce}from"./index-be386e76.js";var patchEsm=function(){return promiseResolve()};var defineCustomElements=function(e,t){if(typeof window==="undefined")return Promise.resolve();return patchEsm().then((function(){return bootstrapLazy([["mds-table-row",[[1,"mds-table-row",{interactive:[1540]},[[4,"mdsTableInteractiveChange","tableInteractiveHandler"]]]]]],t)}))};export{defineCustomElements};
1
+ import{b as bootstrapLazy}from"./index-627212b2.js";export{s as setNonce}from"./index-627212b2.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-be386e76.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-627212b2.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-be386e76.js";export{s as setNonce}from"./index-be386e76.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-627212b2.js";export{s as setNonce}from"./index-627212b2.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-426bd1f3.js";export{s as setNonce}from"./p-426bd1f3.js";(()=>{const t=import.meta.url,a={};return""!==t&&(a.resourcesUrl=new URL(".",t).href),e(a)})().then((e=>t([["p-30a6116a",[[1,"mds-table-row",{interactive:[1540]},[[4,"mdsTableInteractiveChange","tableInteractiveHandler"]]]]]],e)));
1
+ import{p as a,b as e}from"./p-caa45624.js";export{s as setNonce}from"./p-caa45624.js";(()=>{const e=import.meta.url,t={};return""!==e&&(t.resourcesUrl=new URL(".",e).href),a(t)})().then((a=>e([["p-792ca9b5",[[1,"mds-table-row",{interactive:[1540]},[[4,"mdsTableInteractiveChange","tableInteractiveHandler"]]]]]],a)));
@@ -115,15 +115,11 @@ DOMTokenList
115
115
  var resourcesUrl = scriptElm ? scriptElm.getAttribute('data-resources-url') || scriptElm.src : '';
116
116
  var start = function() {
117
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-fb327bab.system.js', new URL(resourcesUrl, window.location.origin !== 'null' ? window.location.origin : undefined));
118
+ var url = new URL('./p-f2dd20fa.system.js', new URL(resourcesUrl, window.location.origin !== 'null' ? window.location.origin : undefined));
119
119
  System.import(url.href);
120
120
  };
121
121
 
122
- if (window.__cssshim) {
123
- window.__cssshim.i().then(start);
124
- } else {
125
- start();
126
- }
122
+ start();
127
123
 
128
124
  // Note: using .call(window) here because the self-executing function needs
129
125
  // to be scoped to the window object for the ES6Promise polyfill to work
@@ -1 +1 @@
1
- import{r as o,h as r,H as a}from"./p-426bd1f3.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-caa45624.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 e=function(n,t){e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,n){e.__proto__=n}||function(e,n){for(var t in n)if(Object.prototype.hasOwnProperty.call(n,t))e[t]=n[t]};return e(n,t)};return function(n,t){if(typeof t!=="function"&&t!==null)throw new TypeError("Class extends value "+String(t)+" is not a constructor or null");e(n,t);function r(){this.constructor=n}n.prototype=t===null?Object.create(t):(r.prototype=t.prototype,new r)}}();var __awaiter=this&&this.__awaiter||function(e,n,t,r){function a(e){return e instanceof t?e:new t((function(n){n(e)}))}return new(t||(t=Promise))((function(t,i){function o(e){try{l(r.next(e))}catch(e){i(e)}}function u(e){try{l(r["throw"](e))}catch(e){i(e)}}function l(e){e.done?t(e.value):a(e.value).then(o,u)}l((r=r.apply(e,n||[])).next())}))};var __generator=this&&this.__generator||function(e,n){var t={label:0,sent:function(){if(i[0]&1)throw i[1];return i[1]},trys:[],ops:[]},r,a,i,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 l([e,n])}}function l(u){if(r)throw new TypeError("Generator is already executing.");while(o&&(o=0,u[0]&&(t=0)),t)try{if(r=1,a&&(i=u[0]&2?a["return"]:u[0]?a["throw"]||((i=a["return"])&&i.call(a),0):a.next)&&!(i=i.call(a,u[1])).done)return i;if(a=0,i)u=[u[0]&2,i.value];switch(u[0]){case 0:case 1:i=u;break;case 4:t.label++;return{value:u[1],done:false};case 5:t.label++;a=u[1];u=[0];continue;case 7:u=t.ops.pop();t.trys.pop();continue;default:if(!(i=t.trys,i=i.length>0&&i[i.length-1])&&(u[0]===6||u[0]===2)){t=0;continue}if(u[0]===3&&(!i||u[1]>i[0]&&u[1]<i[3])){t.label=u[1];break}if(u[0]===6&&t.label<i[1]){t.label=i[1];i=u;break}if(i&&t.label<i[2]){t.label=i[2];t.ops.push(u);break}if(i[2])t.ops.pop();t.trys.pop();continue}u=n.call(e,t)}catch(e){u=[6,e];a=0}finally{r=i=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,t){if(t||arguments.length===2)for(var r=0,a=n.length,i;r<a;r++){if(i||!(r in n)){if(!i)i=Array.prototype.slice.call(n,0,r);i[r]=n[r]}}return e.concat(i||Array.prototype.slice.call(n))};System.register([],(function(e,n){"use strict";return{execute:function(){var t=this;var r="mds-table-row";var a;var i;var o=false;var u=false;var l=function(e,n){if(n===void 0){n=""}{return function(){return}}};var s=function(e,n){{return function(){return}}};var f="{visibility:hidden}[hydrated]{visibility:inherit}";var $={};var c=function(e){return e!=null};var v=function(e){e=typeof e;return e==="object"||e==="function"};function d(e){var n,t,r;return(r=(t=(n=e.head)===null||n===void 0?void 0:n.querySelector('meta[name="csp-nonce"]'))===null||t===void 0?void 0:t.getAttribute("content"))!==null&&r!==void 0?r:undefined}var h=e("h",(function(e,n){var t=[];for(var r=2;r<arguments.length;r++){t[r-2]=arguments[r]}var a=null;var i=false;var o=false;var u=[];var l=function(n){for(var t=0;t<n.length;t++){a=n[t];if(Array.isArray(a)){l(a)}else if(a!=null&&typeof a!=="boolean"){if(i=typeof e!=="function"&&!v(a)){a=String(a)}if(i&&o){u[u.length-1].$text$+=a}else{u.push(i?p(null,a):a)}o=i}}};l(t);var s=p(e,null);s.$attrs$=n;if(u.length>0){s.$children$=u}return s}));var p=function(e,n){var t={$flags$:0,$tag$:e,$text$:n,$elm$:null,$children$:null};{t.$attrs$=null}return t};var m=e("H",{});var g=function(e){return e&&e.$tag$===m};var y=function(e,n){if(e!=null&&!v(e)){if(n&4){return e==="false"?false:e===""||!!e}return e}return e};var b=function(e,n,t){var r=me.ce(n,t);e.dispatchEvent(r);return r};var w=new WeakMap;var _=function(e,n,t){var r=de.get(e);if(ye&&t){r=r||new CSSStyleSheet;if(typeof r==="string"){r=n}else{r.replaceSync(n)}}else{r=n}de.set(e,r)};var S=function(e,n,t){var r;var a=N(n);var i=de.get(a);e=e.nodeType===11?e:pe;if(i){if(typeof i==="string"){e=e.head||e;var o=w.get(e);var u=void 0;if(!o){w.set(e,o=new Set)}if(!o.has(a)){{u=pe.createElement("style");u.innerHTML=i;var l=(r=me.$nonce$)!==null&&r!==void 0?r:d(pe);if(l!=null){u.setAttribute("nonce",l)}e.insertBefore(u,e.querySelector("link"))}if(o){o.add(a)}}}else if(!e.adoptedStyleSheets.includes(i)){e.adoptedStyleSheets=__spreadArray(__spreadArray([],e.adoptedStyleSheets,true),[i],false)}}return a};var R=function(e){var n=e.$cmpMeta$;var t=e.$hostElement$;var r=n.$flags$;var a=l("attachStyles",n.$tagName$);var i=S(t.shadowRoot?t.shadowRoot:t.getRootNode(),n);if(r&10){t["s-sc"]=i;t.classList.add(i+"-h")}a()};var N=function(e,n){return"sc-"+e.$tagName$};var A=function(e,n,t,r,a,i){if(t!==r){var o=fe(e,n);n.toLowerCase();{var u=v(r);if((o||u&&r!==null)&&!a){try{if(!e.tagName.includes("-")){var l=r==null?"":r;if(n==="list"){o=false}else if(t==null||e[n]!=l){e[n]=l}}else{e[n]=r}}catch(e){}}if(r==null||r===false){if(r!==false||e.getAttribute(n)===""){{e.removeAttribute(n)}}}else if((!o||i&4||a)&&!u){r=r===true?"":r;{e.setAttribute(n,r)}}}}};var P=function(e,n,t,r){var a=n.$elm$.nodeType===11&&n.$elm$.host?n.$elm$.host:n.$elm$;var i=e&&e.$attrs$||$;var o=n.$attrs$||$;{for(r in i){if(!(r in o)){A(a,r,i[r],undefined,t,n.$flags$)}}}for(r in o){A(a,r,i[r],o[r],t,n.$flags$)}};var L=function(e,n,t,r){var i=n.$children$[t];var u=0;var l;var s;{l=i.$elm$=pe.createElement(i.$tag$);{P(null,i,o)}if(c(a)&&l["s-si"]!==a){l.classList.add(l["s-si"]=a)}if(i.$children$){for(u=0;u<i.$children$.length;++u){s=L(e,i,u);if(s){l.appendChild(s)}}}}return l};var C=function(e,n,t,r,a,o){var u=e;var l;if(u.shadowRoot&&u.tagName===i){u=u.shadowRoot}for(;a<=o;++a){if(r[a]){l=L(null,t,a);if(l){r[a].$elm$=l;u.insertBefore(l,n)}}}};var E=function(e,n,t){for(var r=n;r<=t;++r){var a=e[r];if(a){var i=a.$elm$;if(i){i.remove()}}}};var x=function(e,n,t,r){var a=0;var i=0;var o=n.length-1;var u=n[0];var l=n[o];var s=r.length-1;var f=r[0];var $=r[s];var c;while(a<=o&&i<=s){if(u==null){u=n[++a]}else if(l==null){l=n[--o]}else if(f==null){f=r[++i]}else if($==null){$=r[--s]}else if(M(u,f)){j(u,f);u=n[++a];f=r[++i]}else if(M(l,$)){j(l,$);l=n[--o];$=r[--s]}else if(M(u,$)){j(u,$);e.insertBefore(u.$elm$,l.$elm$.nextSibling);u=n[++a];$=r[--s]}else if(M(l,f)){j(l,f);e.insertBefore(l.$elm$,u.$elm$);l=n[--o];f=r[++i]}else{{c=L(n&&n[i],t,i);f=r[++i]}if(c){{u.$elm$.parentNode.insertBefore(c,u.$elm$)}}}}if(a>o){C(e,r[s+1]==null?null:r[s+1].$elm$,t,r,i,s)}else if(i>s){E(n,a,o)}};var M=function(e,n){if(e.$tag$===n.$tag$){return true}return false};var j=function(e,n){var t=n.$elm$=e.$elm$;var r=e.$children$;var a=n.$children$;var i=n.$tag$;{{if(i==="slot");else{P(e,n,o)}}if(r!==null&&a!==null){x(t,r,n,a)}else if(a!==null){C(t,null,n,a,0,a.length-1)}else if(r!==null){E(r,0,r.length-1)}}};var k=function(e,n,t){if(t===void 0){t=false}var r=e.$hostElement$;var o=e.$cmpMeta$;var u=e.$vnode$||p(null,null);var l=g(n)?n:h(null,null,n);i=r.tagName;if(o.$attrsToReflect$){l.$attrs$=l.$attrs$||{};o.$attrsToReflect$.map((function(e){var n=e[0],t=e[1];return l.$attrs$[t]=r[n]}))}if(t&&l.$attrs$){for(var s=0,f=Object.keys(l.$attrs$);s<f.length;s++){var $=f[s];if(r.hasAttribute($)&&!["key","ref","style","class"].includes($)){l.$attrs$[$]=r[$]}}}l.$tag$=null;l.$flags$|=4;e.$vnode$=l;l.$elm$=u.$elm$=r.shadowRoot||r;{a=r["s-sc"]}j(u,l)};var O=function(e,n){if(n&&!e.$onRenderResolve$&&n["s-p"]){n["s-p"].push(new Promise((function(n){return e.$onRenderResolve$=n})))}};var T=function(e,n){{e.$flags$|=16}if(e.$flags$&4){e.$flags$|=512;return}O(e,e.$ancestorComponent$);var t=function(){return I(e,n)};return Ae(t)};var I=function(e,n){var t=l("scheduleUpdate",e.$cmpMeta$.$tagName$);var r=e.$lazyInstance$;var a;if(n){{e.$flags$|=256;if(e.$queuedListeners$){e.$queuedListeners$.map((function(e){var n=e[0],t=e[1];return W(r,n,t)}));e.$queuedListeners$=undefined}}}t();return q(a,(function(){return B(e,r,n)}))};var q=function(e,n){return z(e)?e.then(n):n()};var z=function(e){return e instanceof Promise||e&&e.then&&typeof e.then==="function"};var B=function(e,n,r){return __awaiter(t,void 0,void 0,(function(){var t,a,i,o,u,s,f;return __generator(this,(function($){a=e.$hostElement$;i=l("update",e.$cmpMeta$.$tagName$);o=a["s-rc"];if(r){R(e)}u=l("render",e.$cmpMeta$.$tagName$);{U(e,n,a,r)}if(o){o.map((function(e){return e()}));a["s-rc"]=undefined}u();i();{s=(t=a["s-p"])!==null&&t!==void 0?t:[];f=function(){return H(e)};if(s.length===0){f()}else{Promise.all(s).then(f);e.$flags$|=4;s.length=0}}return[2]}))}))};var U=function(e,n,t,r){try{n=n.render();{e.$flags$&=~16}{e.$flags$|=2}{{{k(e,n,r)}}}}catch(n){$e(n,e.$hostElement$)}return null};var H=function(e){var n=e.$cmpMeta$.$tagName$;var t=e.$hostElement$;var r=l("postUpdate",n);var a=e.$ancestorComponent$;if(!(e.$flags$&64)){e.$flags$|=64;{F(t)}r();{e.$onReadyResolve$(t);if(!a){V()}}}else{r()}{if(e.$onRenderResolve$){e.$onRenderResolve$();e.$onRenderResolve$=undefined}if(e.$flags$&512){Ne((function(){return T(e,false)}))}e.$flags$&=~(4|512)}};var V=function(e){{F(pe.documentElement)}Ne((function(){return b(he,"appload",{detail:{namespace:r}})}))};var W=function(e,n,t){if(e&&e[n]){try{return e[n](t)}catch(e){$e(e)}}return undefined};var F=function(e){return e.setAttribute("hydrated","")};var G=function(e,n){return ue(e).$instanceValues$.get(n)};var D=function(e,n,t,r){var a=ue(e);var i=a.$instanceValues$.get(n);var o=a.$flags$;var u=a.$lazyInstance$;t=y(t,r.$members$[n][0]);var l=Number.isNaN(i)&&Number.isNaN(t);var s=t!==i&&!l;if((!(o&8)||i===undefined)&&s){a.$instanceValues$.set(n,t);if(u){if((o&(2|16))===2){T(a,false)}}}};var J=function(e,n,t){if(n.$members$){var r=Object.entries(n.$members$);var a=e.prototype;r.map((function(e){var r=e[0],i=e[1][0];if(i&31||t&2&&i&32){Object.defineProperty(a,r,{get:function(){return G(this,r)},set:function(e){D(this,r,e,n)},configurable:true,enumerable:true})}}));if(t&1){var i=new Map;a.attributeChangedCallback=function(e,n,t){var r=this;me.jmp((function(){var n=i.get(e);if(r.hasOwnProperty(n)){t=r[n];delete r[n]}else if(a.hasOwnProperty(n)&&typeof r[n]==="number"&&r[n]==t){return}r[n]=t===null&&typeof r[n]==="boolean"?false:t}))};e.observedAttributes=r.filter((function(e){var n=e[0],t=e[1];return t[0]&15})).map((function(e){var t=e[0],r=e[1];var a=r[1]||t;i.set(a,t);if(r[0]&512){n.$attrsToReflect$.push([t,a])}return a}))}}return e};var K=function(e,n,r,a,i){return __awaiter(t,void 0,void 0,(function(){var e,t,a,o,u,f,$;return __generator(this,(function(c){switch(c.label){case 0:if(!((n.$flags$&32)===0))return[3,3];n.$flags$|=32;i=ve(r);if(!i.then)return[3,2];e=s();return[4,i];case 1:i=c.sent();e();c.label=2;case 2:if(!i.isProxied){J(i,r,2);i.isProxied=true}t=l("createInstance",r.$tagName$);{n.$flags$|=8}try{new i(n)}catch(e){$e(e)}{n.$flags$&=~8}t();if(i.style){a=i.style;o=N(r);if(!de.has(o)){u=l("registerStyles",r.$tagName$);_(o,a,!!(r.$flags$&1));u()}}c.label=3;case 3:f=n.$ancestorComponent$;$=function(){return T(n,true)};if(f&&f["s-rc"]){f["s-rc"].push($)}else{$()}return[2]}}))}))};var Q=function(e){};var X=function(e){if((me.$flags$&1)===0){var n=ue(e);var t=n.$cmpMeta$;var r=l("connectedCallback",t.$tagName$);if(!(n.$flags$&1)){n.$flags$|=1;{var a=e;while(a=a.parentNode||a.host){if(a["s-p"]){O(n,n.$ancestorComponent$=a);break}}}if(t.$members$){Object.entries(t.$members$).map((function(n){var t=n[0],r=n[1][0];if(r&31&&e.hasOwnProperty(t)){var a=e[t];delete e[t];e[t]=a}}))}{K(e,n,t)}}else{ne(e,n,t.$listeners$);if(n===null||n===void 0?void 0:n.$lazyInstance$);else if(n===null||n===void 0?void 0:n.$onReadyPromise$){n.$onReadyPromise$.then((function(){return Q()}))}}r()}};var Y=function(e){};var Z=function(e){return __awaiter(t,void 0,void 0,(function(){var n;return __generator(this,(function(t){if((me.$flags$&1)===0){n=ue(e);{if(n.$rmListeners$){n.$rmListeners$.map((function(e){return e()}));n.$rmListeners$=undefined}}if(n===null||n===void 0?void 0:n.$lazyInstance$);else if(n===null||n===void 0?void 0:n.$onReadyPromise$){n.$onReadyPromise$.then((function(){return Y()}))}}return[2]}))}))};var ee=e("b",(function(e,n){if(n===void 0){n={}}var t;var r=l();var a=[];var i=n.exclude||[];var o=he.customElements;var u=pe.head;var s=u.querySelector("meta[charset]");var $=pe.createElement("style");var c=[];var v;var h=true;Object.assign(me,n);me.$resourcesUrl$=new URL(n.resourcesUrl||"./",pe.baseURI).href;e.map((function(e){e[1].map((function(n){var t={$flags$:n[0],$tagName$:n[1],$members$:n[2],$listeners$:n[3]};{t.$members$=n[2]}{t.$listeners$=n[3]}{t.$attrsToReflect$=[]}var r=t.$tagName$;var u=function(e){__extends(n,e);function n(n){var r=e.call(this,n)||this;n=r;se(n,t);if(t.$flags$&1){{{n.attachShadow({mode:"open"})}}}return r}n.prototype.connectedCallback=function(){var e=this;if(v){clearTimeout(v);v=null}if(h){c.push(this)}else{me.jmp((function(){return X(e)}))}};n.prototype.disconnectedCallback=function(){var e=this;me.jmp((function(){return Z(e)}))};n.prototype.componentOnReady=function(){return ue(this).$onReadyPromise$};return n}(HTMLElement);t.$lazyBundleId$=e[0];if(!i.includes(r)&&!o.get(r)){a.push(r);o.define(r,J(u,t,1))}}))}));{$.innerHTML=a+f;$.setAttribute("data-styles","");var p=(t=me.$nonce$)!==null&&t!==void 0?t:d(pe);if(p!=null){$.setAttribute("nonce",p)}u.insertBefore($,s?s.nextSibling:u.firstChild)}h=false;if(c.length){c.map((function(e){return e.connectedCallback()}))}else{{me.jmp((function(){return v=setTimeout(V,30)}))}}r()}));var ne=function(e,n,t,r){if(t){t.map((function(t){var r=t[0],a=t[1],i=t[2];var o=re(e,r);var u=te(n,i);var l=ae(r);me.ael(o,a,u,l);(n.$rmListeners$=n.$rmListeners$||[]).push((function(){return me.rel(o,a,u,l)}))}))}};var te=function(e,n){return function(t){try{{if(e.$flags$&256){e.$lazyInstance$[n](t)}else{(e.$queuedListeners$=e.$queuedListeners$||[]).push([n,t])}}}catch(e){$e(e)}}};var re=function(e,n){if(n&4)return pe;return e};var ae=function(e){return(e&2)!==0};var ie=e("s",(function(e){return me.$nonce$=e}));var oe=new WeakMap;var ue=function(e){return oe.get(e)};var le=e("r",(function(e,n){return oe.set(n.$lazyInstance$=e,n)}));var se=function(e,n){var t={$flags$:0,$hostElement$:e,$cmpMeta$:n,$instanceValues$:new Map};{t.$onReadyPromise$=new Promise((function(e){return t.$onReadyResolve$=e}));e["s-p"]=[];e["s-rc"]=[]}ne(e,t,n.$listeners$);return oe.set(e,t)};var fe=function(e,n){return n in e};var $e=function(e,n){return(0,console.error)(e,n)};var ce=new Map;var ve=function(e,t,r){var a=e.$tagName$.replace(/-/g,"_");var i=e.$lazyBundleId$;var o=ce.get(i);if(o){return o[a]}
2
+ /*!__STENCIL_STATIC_IMPORT_SWITCH__*/return n.import("./".concat(i,".entry.js").concat("")).then((function(e){{ce.set(i,e)}return e[a]}),$e)};var de=new Map;var he=typeof window!=="undefined"?window:{};var pe=he.document||{head:{}};var me={$flags$:0,$resourcesUrl$:"",jmp:function(e){return e()},raf:function(e){return requestAnimationFrame(e)},ael:function(e,n,t,r){return e.addEventListener(n,t,r)},rel:function(e,n,t,r){return e.removeEventListener(n,t,r)},ce:function(e,n){return new CustomEvent(e,n)}};var ge=e("p",(function(e){return Promise.resolve(e)}));var ye=function(){try{new CSSStyleSheet;return typeof(new CSSStyleSheet).replaceSync==="function"}catch(e){}return false}();var be=[];var we=[];var _e=function(e,n){return function(t){e.push(t);if(!u){u=true;if(n&&me.$flags$&4){Ne(Re)}else{me.raf(Re)}}}};var Se=function(e){for(var n=0;n<e.length;n++){try{e[n](performance.now())}catch(e){$e(e)}}e.length=0};var Re=function(){Se(be);{Se(we);if(u=be.length>0){me.raf(Re)}}};var Ne=function(e){return ge().then(e)};var Ae=_e(we,true)}}}));
@@ -1 +1 @@
1
- System.register(["./p-2647d8bd.system.js"],(function(t){"use strict";var r,o,e;return{setters:[function(t){r=t.r;o=t.h;e=t.H}],execute:function(){var a=".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=t("mds_table_row",function(){function t(t){r(this,t);this.interactive=undefined}t.prototype.tableInteractiveHandler=function(t){this.interactive=t.detail};t.prototype.render=function(){return o(e,{role:"row"},o("slot",null))};return t}());s.style=a}}}));
1
+ System.register(["./p-94ed7d2d.system.js"],(function(t){"use strict";var r,o,e;return{setters:[function(t){r=t.r;o=t.h;e=t.H}],execute:function(){var a=".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=t("mds_table_row",function(){function t(t){r(this,t);this.interactive=undefined}t.prototype.tableInteractiveHandler=function(t){this.interactive=t.detail};t.prototype.render=function(){return o(e,{role:"row"},o("slot",null))};return t}());s.style=a}}}));
@@ -0,0 +1,2 @@
1
+ let n,t,e=!1;const l={},o=n=>"object"==(n=typeof n)||"function"===n;function s(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 i=(n,t,...e)=>{let l=null,s=!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&&((s="function"!=typeof n&&!o(l))&&(l+=""),s&&i?r[r.length-1].t+=l:r.push(s?c(null,l):l),i=s)};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}),r={},u=new WeakMap,a=n=>"sc-"+n.$,f=(n,t,e,l,s,i)=>{if(e!==l){let c=F(n,t);t.toLowerCase();{const r=o(l);if((c||r&&null!==l)&&!s)try{if(n.tagName.includes("-"))n[t]=l;else{const o=null==l?"":l;"list"===t?c=!1:null!=e&&n[t]==o||(n[t]=o)}}catch(n){}null==l||!1===l?!1===l&&""!==n.getAttribute(t)||n.removeAttribute(t):(!c||4&i||s)&&!r&&n.setAttribute(t,l=!0===l?"":l)}}},d=(n,t,e,o)=>{const s=11===t.h.nodeType&&t.h.host?t.h.host:t.h,i=n&&n.l||l,c=t.l||l;for(o in i)o in c||f(s,o,i[o],void 0,e,t.i);for(o in c)f(s,o,i[o],c[o],e,t.i)},y=(t,e,l)=>{const o=e.o[l];let s,i,c=0;if(s=o.h=G.createElement(o.u),d(null,o,!1),null!=n&&s["s-si"]!==n&&s.classList.add(s["s-si"]=n),o.o)for(c=0;c<o.o.length;++c)i=y(t,o,c),i&&s.appendChild(i);return s},h=(n,e,l,o,s,i)=>{let c,r=n;for(r.shadowRoot&&r.tagName===t&&(r=r.shadowRoot);s<=i;++s)o[s]&&(c=y(null,l,s),c&&(o[s].h=c,r.insertBefore(c,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)=>{const e=t.h=n.h,l=n.o,o=t.o;"slot"===t.u||d(n,t,!1),null!==l&&null!==o?((n,t,e,l)=>{let o,s=0,i=0,c=t.length-1,r=t[0],u=t[c],a=l.length-1,f=l[0],d=l[a];for(;s<=c&&i<=a;)null==r?r=t[++s]:null==u?u=t[--c]:null==f?f=l[++i]:null==d?d=l[--a]:m(r,f)?(p(r,f),r=t[++s],f=l[++i]):m(u,d)?(p(u,d),u=t[--c],d=l[--a]):m(r,d)?(p(r,d),n.insertBefore(r.h,u.h.nextSibling),r=t[++s],d=l[--a]):m(u,f)?(p(u,f),n.insertBefore(u.h,r.h),u=t[--c],f=l[++i]):(o=y(t&&t[i],e,i),f=l[++i],o&&r.h.parentNode.insertBefore(o,r.h));s>c?h(n,null==l[a+1]?null:l[a+1].h,e,l,i,a):i>a&&$(t,s,c)})(e,l,t,o):null!==o?h(e,null,t,o,0,o.length-1):null!==l&&$(l,0,l.length-1)},v=(n,t)=>{t&&!n.m&&t["s-p"]&&t["s-p"].push(new Promise((t=>n.m=t)))},b=(n,t)=>{if(n.i|=16,!(4&n.i))return v(n,n.p),en((()=>w(n,t)));n.i|=512},w=(n,t)=>{const e=n.v;return t&&(n.i|=256,n.S&&(n.S.map((([n,t])=>O(e,n,t))),n.S=void 0)),S(void 0,(()=>j(n,e,t)))},S=(n,t)=>g(n)?n.then(t):t(),g=n=>n instanceof Promise||n&&n.then&&"function"==typeof n.then,j=async(n,t,e)=>{var l;const o=n.g,i=o["s-rc"];e&&(n=>{const t=n.j,e=n.g,l=t.i,o=((n,t)=>{var e;const l=a(t),o=B.get(l);if(n=11===n.nodeType?n:G,o)if("string"==typeof o){let t,i=u.get(n=n.head||n);if(i||u.set(n,i=new Set),!i.has(l)){{t=G.createElement("style"),t.innerHTML=o;const l=null!==(e=I.M)&&void 0!==e?e:s(G);null!=l&&t.setAttribute("nonce",l),n.insertBefore(t,n.querySelector("link"))}i&&i.add(l)}}else n.adoptedStyleSheets.includes(o)||(n.adoptedStyleSheets=[...n.adoptedStyleSheets,o]);return l})(e.shadowRoot?e.shadowRoot:e.getRootNode(),t);10&l&&(e["s-sc"]=o,e.classList.add(o+"-h"))})(n);M(n,t,o,e),i&&(i.map((n=>n())),o["s-rc"]=void 0);{const t=null!==(l=o["s-p"])&&void 0!==l?l:[],e=()=>k(n);0===t.length?e():(Promise.all(t).then(e),n.i|=4,t.length=0)}},M=(e,l,o,s)=>{try{l=l.render(),e.i&=-17,e.i|=2,((e,l,o=!1)=>{const s=e.g,u=e.j,a=e.k||c(null,null),f=(n=>n&&n.u===r)(l)?l:i(null,null,l);if(t=s.tagName,u.C&&(f.l=f.l||{},u.C.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)})(e,l,s)}catch(n){V(n,e.g)}return null},k=n=>{const t=n.g,e=n.p;64&n.i||(n.i|=64,P(t),n.O(t),e||C()),n.m&&(n.m(),n.m=void 0),512&n.i&&tn((()=>b(n,!1))),n.i&=-517},C=()=>{P(G.documentElement),tn((()=>(n=>{const t=I.ce("appload",{detail:{namespace:"mds-table-row"}});return n.dispatchEvent(t),t})(D)))},O=(n,t,e)=>{if(n&&n[t])try{return n[t](e)}catch(n){V(n)}},P=n=>n.setAttribute("hydrated",""),x=(n,t,e)=>{if(t.P){const l=Object.entries(t.P),s=n.prototype;if(l.map((([n,[l]])=>{(31&l||2&e&&32&l)&&Object.defineProperty(s,n,{get(){return((n,t)=>U(this).N.get(t))(0,n)},set(e){((n,t,e,l)=>{const s=U(n),i=s.N.get(t),c=s.i,r=s.v;e=((n,t)=>null==n||o(n)?n:4&t?"false"!==n&&(""===n||!!n):n)(e,l.P[t][0]),8&c&&void 0!==i||e===i||Number.isNaN(i)&&Number.isNaN(e)||(s.N.set(t,e),r&&2==(18&c)&&b(s,!1))})(this,n,e,t)},configurable:!0,enumerable:!0})})),1&e){const e=new Map;s.attributeChangedCallback=function(n,t,l){I.jmp((()=>{const t=e.get(n);if(this.hasOwnProperty(t))l=this[t],delete this[t];else if(s.hasOwnProperty(t)&&"number"==typeof this[t]&&this[t]==l)return;this[t]=(null!==l||"boolean"!=typeof this[t])&&l}))},n.observedAttributes=l.filter((([n,t])=>15&t[0])).map((([n,l])=>{const o=l[1]||n;return e.set(o,n),512&l[0]&&t.C.push([n,o]),o}))}}return n},E=(n,t={})=>{var e;const l=[],o=t.exclude||[],i=D.customElements,c=G.head,r=c.querySelector("meta[charset]"),u=G.createElement("style"),f=[];let d,y=!0;Object.assign(I,t),I.T=new URL(t.resourcesUrl||"./",G.baseURI).href,n.map((n=>{n[1].map((t=>{const e={i:t[0],$:t[1],P:t[2],A:t[3]};e.P=t[2],e.A=t[3],e.C=[];const s=e.$,c=class extends HTMLElement{constructor(n){super(n),q(n=this,e),1&e.i&&n.attachShadow({mode:"open"})}connectedCallback(){d&&(clearTimeout(d),d=null),y?f.push(this):I.jmp((()=>(n=>{if(0==(1&I.i)){const t=U(n),e=t.j,l=()=>{};if(1&t.i)N(n,t,e.A),(null==t?void 0:t.v)||(null==t?void 0:t.H)&&t.H.then((()=>{}));else{t.i|=1;{let e=n;for(;e=e.parentNode||e.host;)if(e["s-p"]){v(t,t.p=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,l,o)=>{if(0==(32&t.i)){t.i|=32;{if((o=z(e)).then){const n=()=>{};o=await o,n()}o.isProxied||(x(o,e,2),o.isProxied=!0);const n=()=>{};t.i|=8;try{new o(t)}catch(n){V(n)}t.i&=-9,n()}if(o.style){let n=o.style;const t=a(e);if(!B.has(t)){const l=()=>{};((n,t,e)=>{let l=B.get(n);K&&e?(l=l||new CSSStyleSheet,"string"==typeof l?l=t:l.replaceSync(t)):l=t,B.set(n,l)})(t,n,!!(1&e.i)),l()}}}const s=t.p,i=()=>b(t,!0);s&&s["s-rc"]?s["s-rc"].push(i):i()})(0,t,e)}l()}})(this)))}disconnectedCallback(){I.jmp((()=>(async()=>{if(0==(1&I.i)){const n=U(this);n.L&&(n.L.map((n=>n())),n.L=void 0),(null==n?void 0:n.v)||(null==n?void 0:n.H)&&n.H.then((()=>{}))}})()))}componentOnReady(){return U(this).H}};e.R=n[0],o.includes(s)||i.get(s)||(l.push(s),i.define(s,x(c,e,1)))}))}));{u.innerHTML=l+"{visibility:hidden}[hydrated]{visibility:inherit}",u.setAttribute("data-styles","");const n=null!==(e=I.M)&&void 0!==e?e:s(G);null!=n&&u.setAttribute("nonce",n),c.insertBefore(u,r?r.nextSibling:c.firstChild)}y=!1,f.length?f.map((n=>n.connectedCallback())):I.jmp((()=>d=setTimeout(C,30)))},N=(n,t,e)=>{e&&e.map((([e,l,o])=>{const s=A(n,e),i=T(t,o),c=H(e);I.ael(s,l,i,c),(t.L=t.L||[]).push((()=>I.rel(s,l,i,c)))}))},T=(n,t)=>e=>{try{256&n.i?n.v[t](e):(n.S=n.S||[]).push([t,e])}catch(n){V(n)}},A=(n,t)=>4&t?G:n,H=n=>0!=(2&n),L=n=>I.M=n,R=new WeakMap,U=n=>R.get(n),W=(n,t)=>R.set(t.v=n,t),q=(n,t)=>{const e={i:0,g:n,j:t,N:new Map};return e.H=new Promise((n=>e.O=n)),n["s-p"]=[],n["s-rc"]=[],N(n,e,t.A),R.set(n,e)},F=(n,t)=>t in n,V=(n,t)=>(0,console.error)(n,t),_=new Map,z=n=>{const t=n.$.replace(/-/g,"_"),e=n.R,l=_.get(e);return l?l[t]:import(`./${e}.entry.js`).then((n=>(_.set(e,n),n[t])),V)
2
+ /*!__STENCIL_STATIC_IMPORT_SWITCH__*/},B=new Map,D="undefined"!=typeof window?window:{},G=D.document||{head:{}},I={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)},J=n=>Promise.resolve(n),K=(()=>{try{return new CSSStyleSheet,"function"==typeof(new CSSStyleSheet).replaceSync}catch(n){}return!1})(),Q=[],X=[],Y=(n,t)=>l=>{n.push(l),e||(e=!0,t&&4&I.i?tn(nn):I.raf(nn))},Z=n=>{for(let t=0;t<n.length;t++)try{n[t](performance.now())}catch(n){V(n)}n.length=0},nn=()=>{Z(Q),Z(X),(e=Q.length>0)&&I.raf(nn)},tn=n=>J().then(n),en=Y(X,!0);export{r as H,E as b,i as h,J as p,W as r,L as s}
@@ -1 +1 @@
1
- System.register(["./p-2647d8bd.system.js"],(function(e,t){"use strict";var r,n;return{setters:[function(t){r=t.p;n=t.b;e("setNonce",t.s)}],execute:function(){var e=function(){var e=t.meta.url;var n={};if(e!==""){n.resourcesUrl=new URL(".",e).href}return r(n)};e().then((function(e){return n([["p-7d3f05d4.system",[[1,"mds-table-row",{interactive:[1540]},[[4,"mdsTableInteractiveChange","tableInteractiveHandler"]]]]]],e)}))}}}));
1
+ System.register(["./p-94ed7d2d.system.js"],(function(e,t){"use strict";var r,n;return{setters:[function(t){r=t.p;n=t.b;e("setNonce",t.s)}],execute:function(){var e=function(){var e=t.meta.url;var n={};if(e!==""){n.resourcesUrl=new URL(".",e).href}return r(n)};e().then((function(e){return n([["p-ad55a7c6.system",[[1,"mds-table-row",{interactive:[1540]},[[4,"mdsTableInteractiveChange","tableInteractiveHandler"]]]]]],e)}))}}}));