@maggioli-design-system/mds-list 3.4.0 → 3.4.2

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 (50) hide show
  1. package/dist/cjs/{index-8b891baa.js → index-9c256f25.js} +62 -7
  2. package/dist/cjs/loader.cjs.js +1 -1
  3. package/dist/cjs/mds-list.cjs.entry.js +2 -2
  4. package/dist/cjs/mds-list.cjs.js +2 -2
  5. package/dist/collection/collection-manifest.json +2 -2
  6. package/dist/collection/common/aria.js +9 -1
  7. package/dist/collection/common/keyboard-manager.js +2 -2
  8. package/dist/collection/components/mds-list/mds-list.css +11 -11
  9. package/dist/components/mds-list.js +1 -1
  10. package/dist/documentation.json +3 -3
  11. package/dist/esm/{index-fc613209.js → index-91cc404a.js} +62 -7
  12. package/dist/esm/loader.js +2 -2
  13. package/dist/esm/mds-list.entry.js +2 -2
  14. package/dist/esm/mds-list.js +3 -3
  15. package/dist/esm-es5/index-91cc404a.js +1 -0
  16. package/dist/esm-es5/loader.js +1 -1
  17. package/dist/esm-es5/mds-list.entry.js +1 -1
  18. package/dist/esm-es5/mds-list.js +1 -1
  19. package/dist/mds-list/mds-list.esm.js +1 -1
  20. package/dist/mds-list/mds-list.js +1 -1
  21. package/dist/mds-list/p-5ca4f187.system.js +2 -0
  22. package/dist/mds-list/{p-f2362255.entry.js → p-6405aac0.entry.js} +1 -1
  23. package/dist/mds-list/{p-f2f76a70.system.entry.js → p-8bf8e6ee.system.entry.js} +1 -1
  24. package/dist/mds-list/p-b6cf7a75.js +2 -0
  25. package/dist/mds-list/p-db0281ca.system.js +1 -0
  26. package/dist/stats.json +27 -25
  27. package/dist/types/common/aria.d.ts +2 -1
  28. package/dist/types/stencil-public-runtime.d.ts +19 -0
  29. package/documentation.json +15 -5
  30. package/package.json +4 -4
  31. package/readme.md +3 -1
  32. package/src/common/aria.ts +12 -0
  33. package/src/common/keyboard-manager.ts +2 -2
  34. package/src/components/mds-list/mds-list.css +2 -2
  35. package/src/components/mds-list/readme.md +1 -1
  36. package/src/fixtures/icons.json +2 -0
  37. package/www/build/mds-list.esm.js +1 -1
  38. package/www/build/mds-list.js +1 -1
  39. package/www/build/p-5ca4f187.system.js +2 -0
  40. package/www/build/{p-f2362255.entry.js → p-6405aac0.entry.js} +1 -1
  41. package/www/build/{p-f2f76a70.system.entry.js → p-8bf8e6ee.system.entry.js} +1 -1
  42. package/www/build/p-b6cf7a75.js +2 -0
  43. package/www/build/p-db0281ca.system.js +1 -0
  44. package/dist/esm-es5/index-fc613209.js +0 -2
  45. package/dist/mds-list/p-21fac44b.js +0 -2
  46. package/dist/mds-list/p-39e961ff.system.js +0 -2
  47. package/dist/mds-list/p-8f9f276f.system.js +0 -1
  48. package/www/build/p-21fac44b.js +0 -2
  49. package/www/build/p-39e961ff.system.js +0 -2
  50. package/www/build/p-8f9f276f.system.js +0 -1
@@ -506,6 +506,10 @@ const updateComponent = async (hostRef, instance, isInitialLoad) => {
506
506
  */
507
507
  const callRender = (hostRef, instance, elm, isInitialLoad) => {
508
508
  try {
509
+ /**
510
+ * minification optimization: `allRenderFn` is `true` if all components have a `render`
511
+ * method, so we can call the method immediately. If not, check before calling it.
512
+ */
509
513
  instance = instance.render() ;
510
514
  {
511
515
  hostRef.$flags$ |= 2 /* HOST_FLAGS.hasRendered */;
@@ -587,7 +591,18 @@ const addHydratedFlag = (elm) => elm.setAttribute('hydrated', '')
587
591
  const proxyComponent = (Cstr, cmpMeta, flags) => {
588
592
  return Cstr;
589
593
  };
590
- const initializeComponent = async (elm, hostRef, cmpMeta, hmrVersionId, Cstr) => {
594
+ /**
595
+ * Initialize a Stencil component given a reference to its host element, its
596
+ * runtime bookkeeping data structure, runtime metadata about the component,
597
+ * and (optionally) an HMR version ID.
598
+ *
599
+ * @param elm a host element
600
+ * @param hostRef the element's runtime bookkeeping object
601
+ * @param cmpMeta runtime metadata for the Stencil component
602
+ * @param hmrVersionId an (optional) HMR version ID
603
+ */
604
+ const initializeComponent = async (elm, hostRef, cmpMeta, hmrVersionId) => {
605
+ let Cstr;
591
606
  // initializeComponent
592
607
  if ((hostRef.$flags$ & 32 /* HOST_FLAGS.hasInitializedComponent */) === 0) {
593
608
  // Let the runtime know that the component has been initialized
@@ -792,22 +807,49 @@ const bootstrapLazy = (lazyBundles, options = {}) => {
792
807
  * @returns void
793
808
  */
794
809
  const setNonce = (nonce) => (plt.$nonce$ = nonce);
810
+ /**
811
+ * A WeakMap mapping runtime component references to their corresponding host reference
812
+ * instances.
813
+ */
795
814
  const hostRefs = /*@__PURE__*/ new WeakMap();
815
+ /**
816
+ * Given a {@link d.RuntimeRef} retrieve the corresponding {@link d.HostRef}
817
+ *
818
+ * @param ref the runtime ref of interest
819
+ * @returns the Host reference (if found) or undefined
820
+ */
796
821
  const getHostRef = (ref) => hostRefs.get(ref);
822
+ /**
823
+ * Register a lazy instance with the {@link hostRefs} object so it's
824
+ * corresponding {@link d.HostRef} can be retrieved later.
825
+ *
826
+ * @param lazyInstance the lazy instance of interest
827
+ * @param hostRef that instances `HostRef` object
828
+ * @returns a reference to the host ref WeakMap
829
+ */
797
830
  const registerInstance = (lazyInstance, hostRef) => hostRefs.set((hostRef.$lazyInstance$ = lazyInstance), hostRef);
798
- const registerHost = (elm, cmpMeta) => {
831
+ /**
832
+ * Register a host element for a Stencil component, setting up various metadata
833
+ * and callbacks based on {@link BUILD} flags as well as the component's runtime
834
+ * metadata.
835
+ *
836
+ * @param hostElement the host element to register
837
+ * @param cmpMeta runtime metadata for that component
838
+ * @returns a reference to the host ref WeakMap
839
+ */
840
+ const registerHost = (hostElement, cmpMeta) => {
799
841
  const hostRef = {
800
842
  $flags$: 0,
801
- $hostElement$: elm,
843
+ $hostElement$: hostElement,
802
844
  $cmpMeta$: cmpMeta,
803
845
  $instanceValues$: new Map(),
804
846
  };
805
847
  {
806
848
  hostRef.$onReadyPromise$ = new Promise((r) => (hostRef.$onReadyResolve$ = r));
807
- elm['s-p'] = [];
808
- elm['s-rc'] = [];
849
+ hostElement['s-p'] = [];
850
+ hostElement['s-rc'] = [];
809
851
  }
810
- return hostRefs.set(elm, hostRef);
852
+ return hostRefs.set(hostElement, hostRef);
811
853
  };
812
854
  const consoleError = (e, el) => (0, console.error)(e, el);
813
855
  const cmpModules = /*@__PURE__*/ new Map();
@@ -819,7 +861,20 @@ const loadModule = (cmpMeta, hostRef, hmrVersionId) => {
819
861
  if (module) {
820
862
  return module[exportName];
821
863
  }
822
- /*!__STENCIL_STATIC_IMPORT_SWITCH__*/
864
+
865
+ if (!hmrVersionId || !BUILD.hotModuleReplacement) {
866
+ const processMod = importedModule => {
867
+ cmpModules.set(bundleId, importedModule);
868
+ return importedModule[exportName];
869
+ }
870
+ switch(bundleId) {
871
+
872
+ case 'mds-list.cjs':
873
+ return Promise.resolve().then(function () { return /*#__PURE__*/_interopNamespace(require(
874
+ /* webpackMode: "lazy" */
875
+ './mds-list.cjs.entry.js')); }).then(processMod, consoleError);
876
+ }
877
+ }
823
878
  return Promise.resolve().then(function () { return /*#__PURE__*/_interopNamespace(require(
824
879
  /* @vite-ignore */
825
880
  /* webpackInclude: /\.entry\.js$/ */
@@ -2,7 +2,7 @@
2
2
 
3
3
  Object.defineProperty(exports, '__esModule', { value: true });
4
4
 
5
- const index = require('./index-8b891baa.js');
5
+ const index = require('./index-9c256f25.js');
6
6
 
7
7
  const defineCustomElements = (win, options) => {
8
8
  if (typeof window === 'undefined') return undefined;
@@ -2,9 +2,9 @@
2
2
 
3
3
  Object.defineProperty(exports, '__esModule', { value: true });
4
4
 
5
- const index = require('./index-8b891baa.js');
5
+ const index = require('./index-9c256f25.js');
6
6
 
7
- const mdsListCss = ".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:grid;gap:1rem;padding-left:1rem}ul{margin:0px;padding:0px}";
7
+ const mdsListCss = ".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{gap:1rem;padding-left:1rem;display:grid}ul{margin:0px;padding:0px}";
8
8
 
9
9
  const MdsList = class {
10
10
  constructor(hostRef) {
@@ -2,10 +2,10 @@
2
2
 
3
3
  Object.defineProperty(exports, '__esModule', { value: true });
4
4
 
5
- const index = require('./index-8b891baa.js');
5
+ const index = require('./index-9c256f25.js');
6
6
 
7
7
  /*
8
- Stencil Client Patch Browser v4.2.1 | MIT Licensed | https://stenciljs.com
8
+ Stencil Client Patch Browser v4.5.0 | MIT Licensed | https://stenciljs.com
9
9
  */
10
10
  const patchBrowser = () => {
11
11
  const importMeta = (typeof document === 'undefined' ? new (require('u' + 'rl').URL)('file:' + __filename).href : (document.currentScript && document.currentScript.src || new URL('mds-list.cjs.js', document.baseURI).href));
@@ -4,8 +4,8 @@
4
4
  ],
5
5
  "compiler": {
6
6
  "name": "@stencil/core",
7
- "version": "4.2.1",
8
- "typescriptVersion": "5.1.6"
7
+ "version": "4.5.0",
8
+ "typescriptVersion": "5.2.2"
9
9
  },
10
10
  "collections": [],
11
11
  "bundles": []
@@ -5,6 +5,7 @@ const hash = (s) => {
5
5
  }
6
6
  return h.toString();
7
7
  };
8
+ const randomInt = (max) => Math.floor(Math.random() * max);
8
9
  const unslugName = (name) => {
9
10
  var _a, _b, _c;
10
11
  return (_c = (_b = (_a = name.split('/')) === null || _a === void 0 ? void 0 : _a.slice(-1).pop()) === null || _b === void 0 ? void 0 : _b.replace(/-/g, ' ')) !== null && _c !== void 0 ? _c : name;
@@ -18,4 +19,11 @@ const setAttributeIfEmpty = (element, attribute, value) => {
18
19
  return value;
19
20
  };
20
21
  const hashValue = (value) => `${value}-${hash(value)}`;
21
- export { unslugName, setAttributeIfEmpty, hashValue, };
22
+ const hashRandomValue = (value) => {
23
+ const randomValue = randomInt(1000000);
24
+ if (value) {
25
+ return `${value}-${hash(randomValue.toString())}`;
26
+ }
27
+ return hash(randomValue.toString());
28
+ };
29
+ export { unslugName, setAttributeIfEmpty, hashRandomValue, hashValue, };
@@ -26,13 +26,13 @@ export class KeyboardManager {
26
26
  };
27
27
  this.attachEscapeBehavior = (callBack) => {
28
28
  this.escapeCallback = callBack;
29
- if (typeof window !== undefined) {
29
+ if (window !== undefined) {
30
30
  window.addEventListener('keydown', this.handleEscapeBehaviorDispatchEvent.bind(this));
31
31
  }
32
32
  };
33
33
  this.detachEscapeBehavior = () => {
34
34
  this.escapeCallback = () => { return; };
35
- if (typeof window !== undefined) {
35
+ if (window !== undefined) {
36
36
  window.removeEventListener('keydown', this.handleEscapeBehaviorDispatchEvent.bind(this));
37
37
  }
38
38
  };
@@ -1,39 +1,39 @@
1
1
  .fixed {
2
2
 
3
- position: fixed
3
+ position: fixed
4
4
  }
5
5
 
6
6
  .absolute {
7
7
 
8
- position: absolute
8
+ position: absolute
9
9
  }
10
10
 
11
11
  .border {
12
12
 
13
- border-width: 1px
13
+ border-width: 1px
14
14
  }
15
15
 
16
16
  .shadow {
17
17
 
18
- --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
18
+ --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
19
19
 
20
- --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
20
+ --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
21
21
 
22
- box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)
22
+ box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)
23
23
  }
24
24
 
25
25
  :host {
26
26
 
27
- display: grid;
27
+ gap: 1rem;
28
28
 
29
- gap: 1rem;
29
+ padding-left: 1rem;
30
30
 
31
- padding-left: 1rem
31
+ display: grid
32
32
  }
33
33
 
34
34
  ul {
35
35
 
36
- margin: 0px;
36
+ margin: 0px;
37
37
 
38
- padding: 0px
38
+ padding: 0px
39
39
  }
@@ -1,6 +1,6 @@
1
1
  import { proxyCustomElement, HTMLElement, h, Host } from '@stencil/core/internal/client';
2
2
 
3
- const mdsListCss = ".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:grid;gap:1rem;padding-left:1rem}ul{margin:0px;padding:0px}";
3
+ const mdsListCss = ".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{gap:1rem;padding-left:1rem;display:grid}ul{margin:0px;padding:0px}";
4
4
 
5
5
  const MdsList$1 = /*@__PURE__*/ proxyCustomElement(class MdsList extends HTMLElement {
6
6
  constructor() {
@@ -1,9 +1,9 @@
1
1
  {
2
- "timestamp": "2023-09-18T09:17:49",
2
+ "timestamp": "2023-10-19T09:55:02",
3
3
  "compiler": {
4
4
  "name": "@stencil/core",
5
- "version": "4.2.1",
6
- "typescriptVersion": "5.1.6"
5
+ "version": "4.5.0",
6
+ "typescriptVersion": "5.2.2"
7
7
  },
8
8
  "components": [
9
9
  {
@@ -484,6 +484,10 @@ const updateComponent = async (hostRef, instance, isInitialLoad) => {
484
484
  */
485
485
  const callRender = (hostRef, instance, elm, isInitialLoad) => {
486
486
  try {
487
+ /**
488
+ * minification optimization: `allRenderFn` is `true` if all components have a `render`
489
+ * method, so we can call the method immediately. If not, check before calling it.
490
+ */
487
491
  instance = instance.render() ;
488
492
  {
489
493
  hostRef.$flags$ |= 2 /* HOST_FLAGS.hasRendered */;
@@ -565,7 +569,18 @@ const addHydratedFlag = (elm) => elm.setAttribute('hydrated', '')
565
569
  const proxyComponent = (Cstr, cmpMeta, flags) => {
566
570
  return Cstr;
567
571
  };
568
- const initializeComponent = async (elm, hostRef, cmpMeta, hmrVersionId, Cstr) => {
572
+ /**
573
+ * Initialize a Stencil component given a reference to its host element, its
574
+ * runtime bookkeeping data structure, runtime metadata about the component,
575
+ * and (optionally) an HMR version ID.
576
+ *
577
+ * @param elm a host element
578
+ * @param hostRef the element's runtime bookkeeping object
579
+ * @param cmpMeta runtime metadata for the Stencil component
580
+ * @param hmrVersionId an (optional) HMR version ID
581
+ */
582
+ const initializeComponent = async (elm, hostRef, cmpMeta, hmrVersionId) => {
583
+ let Cstr;
569
584
  // initializeComponent
570
585
  if ((hostRef.$flags$ & 32 /* HOST_FLAGS.hasInitializedComponent */) === 0) {
571
586
  // Let the runtime know that the component has been initialized
@@ -770,22 +785,49 @@ const bootstrapLazy = (lazyBundles, options = {}) => {
770
785
  * @returns void
771
786
  */
772
787
  const setNonce = (nonce) => (plt.$nonce$ = nonce);
788
+ /**
789
+ * A WeakMap mapping runtime component references to their corresponding host reference
790
+ * instances.
791
+ */
773
792
  const hostRefs = /*@__PURE__*/ new WeakMap();
793
+ /**
794
+ * Given a {@link d.RuntimeRef} retrieve the corresponding {@link d.HostRef}
795
+ *
796
+ * @param ref the runtime ref of interest
797
+ * @returns the Host reference (if found) or undefined
798
+ */
774
799
  const getHostRef = (ref) => hostRefs.get(ref);
800
+ /**
801
+ * Register a lazy instance with the {@link hostRefs} object so it's
802
+ * corresponding {@link d.HostRef} can be retrieved later.
803
+ *
804
+ * @param lazyInstance the lazy instance of interest
805
+ * @param hostRef that instances `HostRef` object
806
+ * @returns a reference to the host ref WeakMap
807
+ */
775
808
  const registerInstance = (lazyInstance, hostRef) => hostRefs.set((hostRef.$lazyInstance$ = lazyInstance), hostRef);
776
- const registerHost = (elm, cmpMeta) => {
809
+ /**
810
+ * Register a host element for a Stencil component, setting up various metadata
811
+ * and callbacks based on {@link BUILD} flags as well as the component's runtime
812
+ * metadata.
813
+ *
814
+ * @param hostElement the host element to register
815
+ * @param cmpMeta runtime metadata for that component
816
+ * @returns a reference to the host ref WeakMap
817
+ */
818
+ const registerHost = (hostElement, cmpMeta) => {
777
819
  const hostRef = {
778
820
  $flags$: 0,
779
- $hostElement$: elm,
821
+ $hostElement$: hostElement,
780
822
  $cmpMeta$: cmpMeta,
781
823
  $instanceValues$: new Map(),
782
824
  };
783
825
  {
784
826
  hostRef.$onReadyPromise$ = new Promise((r) => (hostRef.$onReadyResolve$ = r));
785
- elm['s-p'] = [];
786
- elm['s-rc'] = [];
827
+ hostElement['s-p'] = [];
828
+ hostElement['s-rc'] = [];
787
829
  }
788
- return hostRefs.set(elm, hostRef);
830
+ return hostRefs.set(hostElement, hostRef);
789
831
  };
790
832
  const consoleError = (e, el) => (0, console.error)(e, el);
791
833
  const cmpModules = /*@__PURE__*/ new Map();
@@ -797,7 +839,20 @@ const loadModule = (cmpMeta, hostRef, hmrVersionId) => {
797
839
  if (module) {
798
840
  return module[exportName];
799
841
  }
800
- /*!__STENCIL_STATIC_IMPORT_SWITCH__*/
842
+
843
+ if (!hmrVersionId || !BUILD.hotModuleReplacement) {
844
+ const processMod = importedModule => {
845
+ cmpModules.set(bundleId, importedModule);
846
+ return importedModule[exportName];
847
+ }
848
+ switch(bundleId) {
849
+
850
+ case 'mds-list':
851
+ return import(
852
+ /* webpackMode: "lazy" */
853
+ './mds-list.entry.js').then(processMod, consoleError);
854
+ }
855
+ }
801
856
  return import(
802
857
  /* @vite-ignore */
803
858
  /* webpackInclude: /\.entry\.js$/ */
@@ -1,5 +1,5 @@
1
- import { b as bootstrapLazy } from './index-fc613209.js';
2
- export { s as setNonce } from './index-fc613209.js';
1
+ import { b as bootstrapLazy } from './index-91cc404a.js';
2
+ export { s as setNonce } from './index-91cc404a.js';
3
3
 
4
4
  const defineCustomElements = (win, options) => {
5
5
  if (typeof window === 'undefined') return undefined;
@@ -1,6 +1,6 @@
1
- import { r as registerInstance, h, H as Host } from './index-fc613209.js';
1
+ import { r as registerInstance, h, H as Host } from './index-91cc404a.js';
2
2
 
3
- const mdsListCss = ".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:grid;gap:1rem;padding-left:1rem}ul{margin:0px;padding:0px}";
3
+ const mdsListCss = ".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{gap:1rem;padding-left:1rem;display:grid}ul{margin:0px;padding:0px}";
4
4
 
5
5
  const MdsList = class {
6
6
  constructor(hostRef) {
@@ -1,8 +1,8 @@
1
- import { p as promiseResolve, b as bootstrapLazy } from './index-fc613209.js';
2
- export { s as setNonce } from './index-fc613209.js';
1
+ import { p as promiseResolve, b as bootstrapLazy } from './index-91cc404a.js';
2
+ export { s as setNonce } from './index-91cc404a.js';
3
3
 
4
4
  /*
5
- Stencil Client Patch Browser v4.2.1 | MIT Licensed | https://stenciljs.com
5
+ Stencil Client Patch Browser v4.5.0 | 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,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 i(e){return e instanceof t?e:new t((function(n){n(e)}))}return new(t||(t=Promise))((function(t,o){function a(e){try{c(r.next(e))}catch(e){o(e)}}function u(e){try{c(r["throw"](e))}catch(e){o(e)}}function c(e){e.done?t(e.value):i(e.value).then(a,u)}c((r=r.apply(e,n||[])).next())}))};var __generator=this&&this.__generator||function(e,n){var t={label:0,sent:function(){if(o[0]&1)throw o[1];return o[1]},trys:[],ops:[]},r,i,o,a;return a={next:u(0),throw:u(1),return:u(2)},typeof Symbol==="function"&&(a[Symbol.iterator]=function(){return this}),a;function u(e){return function(n){return c([e,n])}}function c(u){if(r)throw new TypeError("Generator is already executing.");while(a&&(a=0,u[0]&&(t=0)),t)try{if(r=1,i&&(o=u[0]&2?i["return"]:u[0]?i["throw"]||((o=i["return"])&&o.call(i),0):i.next)&&!(o=o.call(i,u[1])).done)return o;if(i=0,o)u=[u[0]&2,o.value];switch(u[0]){case 0:case 1:o=u;break;case 4:t.label++;return{value:u[1],done:false};case 5:t.label++;i=u[1];u=[0];continue;case 7:u=t.ops.pop();t.trys.pop();continue;default:if(!(o=t.trys,o=o.length>0&&o[o.length-1])&&(u[0]===6||u[0]===2)){t=0;continue}if(u[0]===3&&(!o||u[1]>o[0]&&u[1]<o[3])){t.label=u[1];break}if(u[0]===6&&t.label<o[1]){t.label=o[1];o=u;break}if(o&&t.label<o[2]){t.label=o[2];t.ops.push(u);break}if(o[2])t.ops.pop();t.trys.pop();continue}u=n.call(e,t)}catch(e){u=[6,e];i=0}finally{r=o=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,i=n.length,o;r<i;r++){if(o||!(r in n)){if(!o)o=Array.prototype.slice.call(n,0,r);o[r]=n[r]}}return e.concat(o||Array.prototype.slice.call(n))};var NAMESPACE="mds-list";var scopeId;var hostTagName;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 isDef=function(e){return e!=null};var isComplexType=function(e){e=typeof e;return e==="object"||e==="function"};function queryNonceMetaTagContent(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=function(e,n){var t=[];for(var r=2;r<arguments.length;r++){t[r-2]=arguments[r]}var i=null;var o=false;var a=false;var u=[];var c=function(n){for(var t=0;t<n.length;t++){i=n[t];if(Array.isArray(i)){c(i)}else if(i!=null&&typeof i!=="boolean"){if(o=typeof e!=="function"&&!isComplexType(i)){i=String(i)}if(o&&a){u[u.length-1].t+=i}else{u.push(o?newVNode(null,i):i)}a=o}}};c(t);var s=newVNode(e,null);s.i=n;if(u.length>0){s.o=u}return s};var newVNode=function(e,n){var t={u:0,l:e,t:n,v:null,o:null};return t};var Host={};var isHost=function(e){return e&&e.l===Host};var emitEvent=function(e,n,t){var r=plt.ce(n,t);e.dispatchEvent(r);return r};var rootAppliedStyles=new WeakMap;var registerStyle=function(e,n,t){var r=styles.get(e);if(supportsConstructableStylesheets&&t){r=r||new CSSStyleSheet;if(typeof r==="string"){r=n}else{r.replaceSync(n)}}else{r=n}styles.set(e,r)};var addStyle=function(e,n,t){var r;var i=getScopeId(n);var o=styles.get(i);e=e.nodeType===11?e:doc;if(o){if(typeof o==="string"){e=e.head||e;var a=rootAppliedStyles.get(e);var u=void 0;if(!a){rootAppliedStyles.set(e,a=new Set)}if(!a.has(i)){{u=doc.createElement("style");u.innerHTML=o;var c=(r=plt.p)!==null&&r!==void 0?r:queryNonceMetaTagContent(doc);if(c!=null){u.setAttribute("nonce",c)}e.insertBefore(u,e.querySelector("link"))}if(a){a.add(i)}}}else if(!e.adoptedStyleSheets.includes(o)){e.adoptedStyleSheets=__spreadArray(__spreadArray([],e.adoptedStyleSheets,true),[o],false)}}return i};var attachStyles=function(e){var n=e.m;var t=e.$hostElement$;var r=n.u;var i=createTime("attachStyles",n.h);var o=addStyle(t.shadowRoot?t.shadowRoot:t.getRootNode(),n);if(r&10){t["s-sc"]=o;t.classList.add(o+"-h")}i()};var getScopeId=function(e,n){return"sc-"+e.h};var createElm=function(e,n,t,r){var i=n.o[t];var o=0;var a;var u;{a=i.v=doc.createElement(i.l);if(isDef(scopeId)&&a["s-si"]!==scopeId){a.classList.add(a["s-si"]=scopeId)}if(i.o){for(o=0;o<i.o.length;++o){u=createElm(e,i,o);if(u){a.appendChild(u)}}}}return a};var addVnodes=function(e,n,t,r,i,o){var a=e;var u;if(a.shadowRoot&&a.tagName===hostTagName){a=a.shadowRoot}for(;i<=o;++i){if(r[i]){u=createElm(null,t,i);if(u){r[i].v=u;a.insertBefore(u,n)}}}};var patch=function(e,n){var t=n.v=e.v;var r=n.o;{if(r!==null){addVnodes(t,null,n,r,0,r.length-1)}else;}};var renderVdom=function(e,n,t){if(t===void 0){t=false}var r=e.$hostElement$;var i=e.S||newVNode(null,null);var o=isHost(n)?n:h(null,null,n);hostTagName=r.tagName;if(t&&o.i){for(var a=0,u=Object.keys(o.i);a<u.length;a++){var c=u[a];if(r.hasAttribute(c)&&!["key","ref","style","class"].includes(c)){o.i[c]=r[c]}}}o.l=null;o.u|=4;e.S=o;o.v=i.v=r.shadowRoot||r;{scopeId=r["s-sc"]}patch(i,o)};var attachToAncestor=function(e,n){if(n&&!e.T&&n["s-p"]){n["s-p"].push(new Promise((function(n){return e.T=n})))}};var scheduleUpdate=function(e,n){if(e.u&4){e.u|=512;return}attachToAncestor(e,e.C);var t=function(){return dispatchHooks(e,n)};return writeTask(t)};var dispatchHooks=function(e,n){var t=createTime("scheduleUpdate",e.m.h);var r=e._;var i;t();return enqueue(i,(function(){return updateComponent(e,r,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,t){return __awaiter(void 0,void 0,void 0,(function(){var r,i,o,a,u,c,s;return __generator(this,(function(f){i=e.$hostElement$;o=createTime("update",e.m.h);a=i["s-rc"];if(t){attachStyles(e)}u=createTime("render",e.m.h);{callRender(e,n,i,t)}if(a){a.map((function(e){return e()}));i["s-rc"]=undefined}u();o();{c=(r=i["s-p"])!==null&&r!==void 0?r:[];s=function(){return postUpdateComponent(e)};if(c.length===0){s()}else{Promise.all(c).then(s);e.u|=4;c.length=0}}return[2]}))}))};var callRender=function(e,n,t,r){try{n=n.render();{e.u|=2}{{{renderVdom(e,n,r)}}}}catch(n){consoleError(n,e.$hostElement$)}return null};var postUpdateComponent=function(e){var n=e.m.h;var t=e.$hostElement$;var r=createTime("postUpdate",n);var i=e.C;if(!(e.u&64)){e.u|=64;{addHydratedFlag(t)}r();{e.$(t);if(!i){appDidLoad()}}}else{r()}{if(e.T){e.T();e.T=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 addHydratedFlag=function(e){return e.setAttribute("hydrated","")};var proxyComponent=function(e,n,t){return e};var initializeComponent=function(e,n,t,r){return __awaiter(void 0,void 0,void 0,(function(){var e,r,i,o,a,u,c,s;return __generator(this,(function(f){switch(f.label){case 0:if(!((n.u&32)===0))return[3,3];n.u|=32;e=loadModule(t);if(!e.then)return[3,2];r=uniqueTime();return[4,e];case 1:e=f.sent();r();f.label=2;case 2:i=createTime("createInstance",t.h);try{new e(n)}catch(e){consoleError(e)}i();if(e.style){o=e.style;a=getScopeId(t);if(!styles.has(a)){u=createTime("registerStyles",t.h);registerStyle(a,o,!!(t.u&1));u()}}f.label=3;case 3:c=n.C;s=function(){return scheduleUpdate(n,true)};if(c&&c["s-rc"]){c["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 t=n.m;var r=createTime("connectedCallback",t.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}}}{initializeComponent(e,n,t)}}else{if(n===null||n===void 0?void 0:n._);else if(n===null||n===void 0?void 0:n.k){n.k.then((function(){return fireConnectedCallback()}))}}r()}};var disconnectInstance=function(e){};var disconnectedCallback=function(e){return __awaiter(void 0,void 0,void 0,(function(){var n;return __generator(this,(function(t){if((plt.u&1)===0){n=getHostRef(e);if(n===null||n===void 0?void 0:n._);else if(n===null||n===void 0?void 0:n.k){n.k.then((function(){return disconnectInstance()}))}}return[2]}))}))};var bootstrapLazy=function(e,n){if(n===void 0){n={}}var t;var r=createTime();var i=[];var o=n.exclude||[];var a=win.customElements;var u=doc.head;var c=u.querySelector("meta[charset]");var s=doc.createElement("style");var f=[];var l;var v=true;Object.assign(plt,n);plt.q=new URL(n.resourcesUrl||"./",doc.baseURI).href;e.map((function(e){e[1].map((function(n){var t={u:n[0],h:n[1],A:n[2],H:n[3]};var r=t.h;var u=function(e){__extends(n,e);function n(n){var r=e.call(this,n)||this;n=r;registerHost(n,t);if(t.u&1){{{n.attachShadow({mode:"open"})}}}return r}n.prototype.connectedCallback=function(){var e=this;if(l){clearTimeout(l);l=null}if(v){f.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).k};return n}(HTMLElement);t.R=e[0];if(!o.includes(r)&&!a.get(r)){i.push(r);a.define(r,proxyComponent(u))}}))}));{s.innerHTML=i+HYDRATED_CSS;s.setAttribute("data-styles","");var d=(t=plt.p)!==null&&t!==void 0?t:queryNonceMetaTagContent(doc);if(d!=null){s.setAttribute("nonce",d)}u.insertBefore(s,c?c.nextSibling:u.firstChild)}v=false;if(f.length){f.map((function(e){return e.connectedCallback()}))}else{{plt.jmp((function(){return l=setTimeout(appDidLoad,30)}))}}r()};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 t={u:0,$hostElement$:e,m:n,M:new Map};{t.k=new Promise((function(e){return t.$=e}));e["s-p"]=[];e["s-rc"]=[]}return hostRefs.set(e,t)};var consoleError=function(e,n){return(0,console.error)(e,n)};var cmpModules=new Map;var loadModule=function(e,n,t){var r=e.h.replace(/-/g,"_");var i=e.R;var o=cmpModules.get(i);if(o){return o[r]}if(!t||!BUILD.hotModuleReplacement){var a=function(e){cmpModules.set(i,e);return e[r]};switch(i){case"mds-list":return import("./mds-list.entry.js").then(a,consoleError)}}return import("./".concat(i,".entry.js").concat("")).then((function(e){{cmpModules.set(i,e)}return e[r]}),consoleError)};var styles=new Map;var win=typeof window!=="undefined"?window:{};var doc=win.document||{head:{}};var plt={u:0,q:"",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 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(t){e.push(t);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-fc613209.js";export{s as setNonce}from"./index-fc613209.js";var defineCustomElements=function(e,t){if(typeof window==="undefined")return undefined;return bootstrapLazy([["mds-list",[[1,"mds-list"]]]],t)};export{defineCustomElements};
1
+ import{b as bootstrapLazy}from"./index-91cc404a.js";export{s as setNonce}from"./index-91cc404a.js";var defineCustomElements=function(e,t){if(typeof window==="undefined")return undefined;return bootstrapLazy([["mds-list",[[1,"mds-list"]]]],t)};export{defineCustomElements};
@@ -1 +1 @@
1
- import{r as registerInstance,h,H as Host}from"./index-fc613209.js";var mdsListCss=".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:grid;gap:1rem;padding-left:1rem}ul{margin:0px;padding:0px}";var MdsList=function(){function s(s){registerInstance(this,s)}s.prototype.render=function(){return h(Host,null,h("slot",null))};return s}();MdsList.style=mdsListCss;export{MdsList as mds_list};
1
+ import{r as registerInstance,h,H as Host}from"./index-91cc404a.js";var mdsListCss=".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{gap:1rem;padding-left:1rem;display:grid}ul{margin:0px;padding:0px}";var MdsList=function(){function s(s){registerInstance(this,s)}s.prototype.render=function(){return h(Host,null,h("slot",null))};return s}();MdsList.style=mdsListCss;export{MdsList as mds_list};
@@ -1 +1 @@
1
- import{p as promiseResolve,b as bootstrapLazy}from"./index-fc613209.js";export{s as setNonce}from"./index-fc613209.js";var patchBrowser=function(){var r=import.meta.url;var e={};if(r!==""){e.resourcesUrl=new URL(".",r).href}return promiseResolve(e)};patchBrowser().then((function(r){return bootstrapLazy([["mds-list",[[1,"mds-list"]]]],r)}));
1
+ import{p as promiseResolve,b as bootstrapLazy}from"./index-91cc404a.js";export{s as setNonce}from"./index-91cc404a.js";var patchBrowser=function(){var r=import.meta.url;var s={};if(r!==""){s.resourcesUrl=new URL(".",r).href}return promiseResolve(s)};patchBrowser().then((function(r){return bootstrapLazy([["mds-list",[[1,"mds-list"]]]],r)}));
@@ -1 +1 @@
1
- import{p as t,b as o}from"./p-21fac44b.js";export{s as setNonce}from"./p-21fac44b.js";(()=>{const s=import.meta.url,o={};return""!==s&&(o.resourcesUrl=new URL(".",s).href),t(o)})().then((s=>o([["p-f2362255",[[1,"mds-list"]]]],s)));
1
+ import{p as a,b as t}from"./p-b6cf7a75.js";export{s as setNonce}from"./p-b6cf7a75.js";(()=>{const s=import.meta.url,t={};return""!==s&&(t.resourcesUrl=new URL(".",s).href),a(t)})().then((s=>t([["p-6405aac0",[[1,"mds-list"]]]],s)));
@@ -115,7 +115,7 @@ 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-8f9f276f.system.js', new URL(resourcesUrl, window.location.origin !== 'null' ? window.location.origin : undefined));
118
+ var url = new URL('./p-db0281ca.system.js', new URL(resourcesUrl, window.location.origin !== 'null' ? window.location.origin : undefined));
119
119
  System.import(url.href);
120
120
  };
121
121
 
@@ -0,0 +1,2 @@
1
+ var __extends=this&&this.__extends||function(){var n=function(r,t){n=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(n,r){n.__proto__=r}||function(n,r){for(var t in r)if(Object.prototype.hasOwnProperty.call(r,t))n[t]=r[t]};return n(r,t)};return function(r,t){if(typeof t!=="function"&&t!==null)throw new TypeError("Class extends value "+String(t)+" is not a constructor or null");n(r,t);function e(){this.constructor=r}r.prototype=t===null?Object.create(t):(e.prototype=t.prototype,new e)}}();var __awaiter=this&&this.__awaiter||function(n,r,t,e){function i(n){return n instanceof t?n:new t((function(r){r(n)}))}return new(t||(t=Promise))((function(t,a){function u(n){try{o(e.next(n))}catch(n){a(n)}}function f(n){try{o(e["throw"](n))}catch(n){a(n)}}function o(n){n.done?t(n.value):i(n.value).then(u,f)}o((e=e.apply(n,r||[])).next())}))};var __generator=this&&this.__generator||function(n,r){var t={label:0,sent:function(){if(a[0]&1)throw a[1];return a[1]},trys:[],ops:[]},e,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(e)throw new TypeError("Generator is already executing.");while(u&&(u=0,f[0]&&(t=0)),t)try{if(e=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:t.label++;return{value:f[1],done:false};case 5:t.label++;i=f[1];f=[0];continue;case 7:f=t.ops.pop();t.trys.pop();continue;default:if(!(a=t.trys,a=a.length>0&&a[a.length-1])&&(f[0]===6||f[0]===2)){t=0;continue}if(f[0]===3&&(!a||f[1]>a[0]&&f[1]<a[3])){t.label=f[1];break}if(f[0]===6&&t.label<a[1]){t.label=a[1];a=f;break}if(a&&t.label<a[2]){t.label=a[2];t.ops.push(f);break}if(a[2])t.ops.pop();t.trys.pop();continue}f=r.call(n,t)}catch(n){f=[6,n];i=0}finally{e=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,t){if(t||arguments.length===2)for(var e=0,i=r.length,a;e<i;e++){if(a||!(e in r)){if(!a)a=Array.prototype.slice.call(r,0,e);a[e]=r[e]}}return n.concat(a||Array.prototype.slice.call(r))};System.register([],(function(n,r){"use strict";return{execute:function(){var t=this;var e="mds-list";var i;var a;var u=false;var f=function(n,r){if(r===void 0){r=""}{return function(){return}}};var o=function(n,r){{return function(){return}}};var c="{visibility:hidden}[hydrated]{visibility:inherit}";var v=function(n){return n!=null};var l=function(n){n=typeof n;return n==="object"||n==="function"};function s(n){var r,t,e;return(e=(t=(r=n.head)===null||r===void 0?void 0:r.querySelector('meta[name="csp-nonce"]'))===null||t===void 0?void 0:t.getAttribute("content"))!==null&&e!==void 0?e:undefined}var d=n("h",(function(n,r){var t=[];for(var e=2;e<arguments.length;e++){t[e-2]=arguments[e]}var i=null;var a=false;var u=false;var f=[];var o=function(r){for(var t=0;t<r.length;t++){i=r[t];if(Array.isArray(i)){o(i)}else if(i!=null&&typeof i!=="boolean"){if(a=typeof n!=="function"&&!l(i)){i=String(i)}if(a&&u){f[f.length-1].t+=i}else{f.push(a?h(null,i):i)}u=a}}};o(t);var c=h(n,null);c.i=r;if(f.length>0){c.u=f}return c}));var h=function(n,r){var t={o:0,v:n,t:r,l:null,u:null};return t};var y=n("H",{});var w=function(n){return n&&n.v===y};var p=function(n,r,t){var e=rn.ce(r,t);n.dispatchEvent(e);return e};var _=new WeakMap;var $=function(n,r,t){var e=Y.get(n);if(en&&t){e=e||new CSSStyleSheet;if(typeof e==="string"){e=r}else{e.replaceSync(r)}}else{e=r}Y.set(n,e)};var m=function(n,r,t){var e;var i=S(r);var a=Y.get(i);n=n.nodeType===11?n:nn;if(a){if(typeof a==="string"){n=n.head||n;var u=_.get(n);var f=void 0;if(!u){_.set(n,u=new Set)}if(!u.has(i)){{f=nn.createElement("style");f.innerHTML=a;var o=(e=rn.h)!==null&&e!==void 0?e:s(nn);if(o!=null){f.setAttribute("nonce",o)}n.insertBefore(f,n.querySelector("link"))}if(u){u.add(i)}}}else if(!n.adoptedStyleSheets.includes(a)){n.adoptedStyleSheets=__spreadArray(__spreadArray([],n.adoptedStyleSheets,true),[a],false)}}return i};var b=function(n){var r=n.p;var t=n.$hostElement$;var e=r.o;var i=f("attachStyles",r._);var a=m(t.shadowRoot?t.shadowRoot:t.getRootNode(),r);if(e&10){t["s-sc"]=a;t.classList.add(a+"-h")}i()};var S=function(n,r){return"sc-"+n._};var g=function(n,r,t,e){var a=r.u[t];var u=0;var f;var o;{f=a.l=nn.createElement(a.v);if(v(i)&&f["s-si"]!==i){f.classList.add(f["s-si"]=i)}if(a.u){for(u=0;u<a.u.length;++u){o=g(n,a,u);if(o){f.appendChild(o)}}}}return f};var k=function(n,r,t,e,i,u){var f=n;var o;if(f.shadowRoot&&f.tagName===a){f=f.shadowRoot}for(;i<=u;++i){if(e[i]){o=g(null,t,i);if(o){e[i].l=o;f.insertBefore(o,r)}}}};var j=function(n,r){var t=r.l=n.l;var e=r.u;{if(e!==null){k(t,null,r,e,0,e.length-1)}else;}};var A=function(n,r,t){if(t===void 0){t=false}var e=n.$hostElement$;var u=n.$||h(null,null);var f=w(r)?r:d(null,null,r);a=e.tagName;if(t&&f.i){for(var o=0,c=Object.keys(f.i);o<c.length;o++){var v=c[o];if(e.hasAttribute(v)&&!["key","ref","style","class"].includes(v)){f.i[v]=e[v]}}}f.v=null;f.o|=4;n.$=f;f.l=u.l=e.shadowRoot||e;{i=e["s-sc"]}j(u,f)};var x=function(n,r){if(r&&!n.m&&r["s-p"]){r["s-p"].push(new Promise((function(r){return n.m=r})))}};var M=function(n,r){if(n.o&4){n.o|=512;return}x(n,n.S);var t=function(){return C(n,r)};return ln(t)};var C=function(n,r){var t=f("scheduleUpdate",n.p._);var e=n.k;var i;t();return P(i,(function(){return O(n,e,r)}))};var P=function(n,r){return E(n)?n.then(r):r()};var E=function(n){return n instanceof Promise||n&&n.then&&typeof n.then==="function"};var O=function(n,r,e){return __awaiter(t,void 0,void 0,(function(){var t,i,a,u,o,c,v;return __generator(this,(function(l){i=n.$hostElement$;a=f("update",n.p._);u=i["s-rc"];if(e){b(n)}o=f("render",n.p._);{T(n,r,i,e)}if(u){u.map((function(n){return n()}));i["s-rc"]=undefined}o();a();{c=(t=i["s-p"])!==null&&t!==void 0?t:[];v=function(){return U(n)};if(c.length===0){v()}else{Promise.all(c).then(v);n.o|=4;c.length=0}}return[2]}))}))};var T=function(n,r,t,e){try{r=r.render();{n.o|=2}{{{A(n,r,e)}}}}catch(r){K(r,n.$hostElement$)}return null};var U=function(n){var r=n.p._;var t=n.$hostElement$;var e=f("postUpdate",r);var i=n.S;if(!(n.o&64)){n.o|=64;{L(t)}e();{n.j(t);if(!i){H()}}}else{e()}{if(n.m){n.m();n.m=undefined}if(n.o&512){vn((function(){return M(n,false)}))}n.o&=~(4|512)}};var H=function(n){{L(nn.documentElement)}vn((function(){return p(Z,"appload",{detail:{namespace:e}})}))};var L=function(n){return n.setAttribute("hydrated","")};var W=function(n,r,t){return n};var q=function(n,r,e,i){return __awaiter(t,void 0,void 0,(function(){var n,t,i,a,u,c,v,l;return __generator(this,(function(s){switch(s.label){case 0:if(!((r.o&32)===0))return[3,3];r.o|=32;n=X(e);if(!n.then)return[3,2];t=o();return[4,n];case 1:n=s.sent();t();s.label=2;case 2:i=f("createInstance",e._);try{new n(r)}catch(n){K(n)}i();if(n.style){a=n.style;u=S(e);if(!Y.has(u)){c=f("registerStyles",e._);$(u,a,!!(e.o&1));c()}}s.label=3;case 3:v=r.S;l=function(){return M(r,true)};if(v&&v["s-rc"]){v["s-rc"].push(l)}else{l()}return[2]}}))}))};var F=function(n){};var G=function(n){if((rn.o&1)===0){var r=B(n);var t=r.p;var e=f("connectedCallback",t._);if(!(r.o&1)){r.o|=1;{var i=n;while(i=i.parentNode||i.host){if(i["s-p"]){x(r,r.S=i);break}}}{q(n,r,t)}}else{if(r===null||r===void 0?void 0:r.k);else if(r===null||r===void 0?void 0:r.A){r.A.then((function(){return F()}))}}e()}};var I=function(n){};var N=function(n){return __awaiter(t,void 0,void 0,(function(){var r;return __generator(this,(function(t){if((rn.o&1)===0){r=B(n);if(r===null||r===void 0?void 0:r.k);else if(r===null||r===void 0?void 0:r.A){r.A.then((function(){return I()}))}}return[2]}))}))};var R=n("b",(function(n,r){if(r===void 0){r={}}var t;var e=f();var i=[];var a=r.exclude||[];var u=Z.customElements;var o=nn.head;var v=o.querySelector("meta[charset]");var l=nn.createElement("style");var d=[];var h;var y=true;Object.assign(rn,r);rn.M=new URL(r.resourcesUrl||"./",nn.baseURI).href;n.map((function(n){n[1].map((function(r){var t={o:r[0],_:r[1],C:r[2],P:r[3]};var e=t._;var f=function(n){__extends(r,n);function r(r){var e=n.call(this,r)||this;r=e;J(r,t);if(t.o&1){{{r.attachShadow({mode:"open"})}}}return e}r.prototype.connectedCallback=function(){var n=this;if(h){clearTimeout(h);h=null}if(y){d.push(this)}else{rn.jmp((function(){return G(n)}))}};r.prototype.disconnectedCallback=function(){var n=this;rn.jmp((function(){return N(n)}))};r.prototype.componentOnReady=function(){return B(this).A};return r}(HTMLElement);t.O=n[0];if(!a.includes(e)&&!u.get(e)){i.push(e);u.define(e,W(f))}}))}));{l.innerHTML=i+c;l.setAttribute("data-styles","");var w=(t=rn.h)!==null&&t!==void 0?t:s(nn);if(w!=null){l.setAttribute("nonce",w)}o.insertBefore(l,v?v.nextSibling:o.firstChild)}y=false;if(d.length){d.map((function(n){return n.connectedCallback()}))}else{{rn.jmp((function(){return h=setTimeout(H,30)}))}}e()}));var V=n("s",(function(n){return rn.h=n}));var z=new WeakMap;var B=function(n){return z.get(n)};var D=n("r",(function(n,r){return z.set(r.k=n,r)}));var J=function(n,r){var t={o:0,$hostElement$:n,p:r,T:new Map};{t.A=new Promise((function(n){return t.j=n}));n["s-p"]=[];n["s-rc"]=[]}return z.set(n,t)};var K=function(n,r){return(0,console.error)(n,r)};var Q=new Map;var X=function(n,t,e){var i=n._.replace(/-/g,"_");var a=n.O;var u=Q.get(a);if(u){return u[i]}
2
+ /*!__STENCIL_STATIC_IMPORT_SWITCH__*/return r.import("./".concat(a,".entry.js").concat("")).then((function(n){{Q.set(a,n)}return n[i]}),K)};var Y=new Map;var Z=typeof window!=="undefined"?window:{};var nn=Z.document||{head:{}};var rn={o:0,M:"",jmp:function(n){return n()},raf:function(n){return requestAnimationFrame(n)},ael:function(n,r,t,e){return n.addEventListener(r,t,e)},rel:function(n,r,t,e){return n.removeEventListener(r,t,e)},ce:function(n,r){return new CustomEvent(n,r)}};var tn=n("p",(function(n){return Promise.resolve(n)}));var en=function(){try{new CSSStyleSheet;return typeof(new CSSStyleSheet).replaceSync==="function"}catch(n){}return false}();var an=[];var un=[];var fn=function(n,r){return function(t){n.push(t);if(!u){u=true;if(r&&rn.o&4){vn(cn)}else{rn.raf(cn)}}}};var on=function(n){for(var r=0;r<n.length;r++){try{n[r](performance.now())}catch(n){K(n)}}n.length=0};var cn=function(){on(an);{on(un);if(u=an.length>0){rn.raf(cn)}}};var vn=function(n){return tn().then(n)};var ln=fn(un,true)}}}));
@@ -1 +1 @@
1
- import{r as o,h as r,H as a}from"./p-21fac44b.js";const s=class{constructor(r){o(this,r)}render(){return r(a,null,r("slot",null))}};s.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:grid;gap:1rem;padding-left:1rem}ul{margin:0px;padding:0px}";export{s as mds_list}
1
+ import{r as o,h as r,H as a}from"./p-b6cf7a75.js";const s=class{constructor(r){o(this,r)}render(){return r(a,null,r("slot",null))}};s.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{gap:1rem;padding-left:1rem;display:grid}ul{margin:0px;padding:0px}";export{s as mds_list}
@@ -1 +1 @@
1
- System.register(["./p-39e961ff.system.js"],(function(t){"use strict";var r,o,s;return{setters:[function(t){r=t.r;o=t.h;s=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:grid;gap:1rem;padding-left:1rem}ul{margin:0px;padding:0px}";var e=t("mds_list",function(){function t(t){r(this,t)}t.prototype.render=function(){return o(s,null,o("slot",null))};return t}());e.style=a}}}));
1
+ System.register(["./p-5ca4f187.system.js"],(function(o){"use strict";var t,r,s;return{setters:[function(o){t=o.r;r=o.h;s=o.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{gap:1rem;padding-left:1rem;display:grid}ul{margin:0px;padding:0px}";var d=o("mds_list",function(){function o(o){t(this,o)}o.prototype.render=function(){return r(s,null,r("slot",null))};return o}());d.style=a}}}));
@@ -0,0 +1,2 @@
1
+ let e,n,t=!1;const l=e=>"object"==(e=typeof e)||"function"===e;function o(e){var n,t,l;return null!==(l=null===(t=null===(n=e.head)||void 0===n?void 0:n.querySelector('meta[name="csp-nonce"]'))||void 0===t?void 0:t.getAttribute("content"))&&void 0!==l?l:void 0}const s=(e,n,...t)=>{let o=null,s=!1,i=!1;const r=[],a=n=>{for(let t=0;t<n.length;t++)o=n[t],Array.isArray(o)?a(o):null!=o&&"boolean"!=typeof o&&((s="function"!=typeof e&&!l(o))&&(o+=""),s&&i?r[r.length-1].t+=o:r.push(s?c(null,o):o),i=s)};a(t);const u=c(e,null);return u.l=n,r.length>0&&(u.o=r),u},c=(e,n)=>({i:0,u:e,t:n,$:null,o:null}),i={},r=new WeakMap,a=e=>"sc-"+e.m,u=(n,t,l)=>{const o=t.o[l];let s,c,i=0;if(s=o.$=H.createElement(o.u),null!=e&&s["s-si"]!==e&&s.classList.add(s["s-si"]=e),o.o)for(i=0;i<o.o.length;++i)c=u(n,o,i),c&&s.appendChild(c);return s},f=(t,l,o=!1)=>{const r=t.$hostElement$,a=t.p||c(null,null),f=(e=>e&&e.u===i)(l)?l:s(null,null,l);if(n=r.tagName,o&&f.l)for(const e of Object.keys(f.l))r.hasAttribute(e)&&!["key","ref","style","class"].includes(e)&&(f.l[e]=r[e]);f.u=null,f.i|=4,t.p=f,f.$=a.$=r.shadowRoot||r,e=r["s-sc"],((e,t)=>{const l=t.$=e.$,o=t.o;null!==o&&((e,t,l,o,s,c)=>{let i,r=e;for(r.shadowRoot&&r.tagName===n&&(r=r.shadowRoot);s<=c;++s)o[s]&&(i=u(null,l,s),i&&(o[s].$=i,r.insertBefore(i,null)))})(l,0,t,o,0,o.length-1)})(a,f)},d=(e,n)=>{n&&!e.v&&n["s-p"]&&n["s-p"].push(new Promise((n=>e.v=n)))},$=(e,n)=>{if(!(4&e.i))return d(e,e.h),z((()=>y(e,n)));e.i|=512},y=(e,n)=>{const t=e.S;return m(void 0,(()=>v(e,t,n)))},m=(e,n)=>p(e)?e.then(n):n(),p=e=>e instanceof Promise||e&&e.then&&"function"==typeof e.then,v=async(e,n,t)=>{var l;const s=e.$hostElement$,c=s["s-rc"];t&&(e=>{const n=e.k,t=e.$hostElement$,l=n.i,s=((e,n)=>{var t;const l=a(n),s=T.get(l);if(e=11===e.nodeType?e:H,s)if("string"==typeof s){let n,c=r.get(e=e.head||e);if(c||r.set(e,c=new Set),!c.has(l)){{n=H.createElement("style"),n.innerHTML=s;const l=null!==(t=L.M)&&void 0!==t?t:o(H);null!=l&&n.setAttribute("nonce",l),e.insertBefore(n,e.querySelector("link"))}c&&c.add(l)}}else e.adoptedStyleSheets.includes(s)||(e.adoptedStyleSheets=[...e.adoptedStyleSheets,s]);return l})(t.shadowRoot?t.shadowRoot:t.getRootNode(),n);10&l&&(t["s-sc"]=s,t.classList.add(s+"-h"))})(e);h(e,n,s,t),c&&(c.map((e=>e())),s["s-rc"]=void 0);{const n=null!==(l=s["s-p"])&&void 0!==l?l:[],t=()=>w(e);0===n.length?t():(Promise.all(n).then(t),e.i|=4,n.length=0)}},h=(e,n,t,l)=>{try{n=n.render(),e.i|=2,f(e,n,l)}catch(n){x(n,e.$hostElement$)}return null},w=e=>{const n=e.$hostElement$,t=e.h;64&e.i||(e.i|=64,b(n),e.C(n),t||S()),e.v&&(e.v(),e.v=void 0),512&e.i&&_((()=>$(e,!1))),e.i&=-517},S=()=>{b(H.documentElement),_((()=>(e=>{const n=L.ce("appload",{detail:{namespace:"mds-list"}});return e.dispatchEvent(n),n})(A)))},b=e=>e.setAttribute("hydrated",""),g=(e,n={})=>{var t;const l=[],s=n.exclude||[],c=A.customElements,i=H.head,r=i.querySelector("meta[charset]"),u=H.createElement("style"),f=[];let y,m=!0;Object.assign(L,n),L.j=new URL(n.resourcesUrl||"./",H.baseURI).href,e.map((e=>{e[1].map((n=>{const t={i:n[0],m:n[1],P:n[2],O:n[3]},o=t.m,i=class extends HTMLElement{constructor(e){super(e),P(e=this,t),1&t.i&&e.attachShadow({mode:"open"})}connectedCallback(){y&&(clearTimeout(y),y=null),m?f.push(this):L.jmp((()=>(e=>{if(0==(1&L.i)){const n=C(e),t=n.k,l=()=>{};if(1&n.i)(null==n?void 0:n.S)||(null==n?void 0:n.T)&&n.T.then((()=>{}));else{n.i|=1;{let t=e;for(;t=t.parentNode||t.host;)if(t["s-p"]){d(n,n.h=t);break}}(async(e,n,t)=>{let l;if(0==(32&n.i)){n.i|=32;{if(l=O(t),l.then){const e=()=>{};l=await l,e()}const e=()=>{};try{new l(n)}catch(e){x(e)}e()}if(l.style){let e=l.style;const n=a(t);if(!T.has(n)){const l=()=>{};((e,n,t)=>{let l=T.get(e);U&&t?(l=l||new CSSStyleSheet,"string"==typeof l?l=n:l.replaceSync(n)):l=n,T.set(e,l)})(n,e,!!(1&t.i)),l()}}}const o=n.h,s=()=>$(n,!0);o&&o["s-rc"]?o["s-rc"].push(s):s()})(0,n,t)}l()}})(this)))}disconnectedCallback(){L.jmp((()=>(async()=>{if(0==(1&L.i)){const e=C(this);(null==e?void 0:e.S)||(null==e?void 0:e.T)&&e.T.then((()=>{}))}})()))}componentOnReady(){return C(this).T}};t.A=e[0],s.includes(o)||c.get(o)||(l.push(o),c.define(o,i))}))}));{u.innerHTML=l+"{visibility:hidden}[hydrated]{visibility:inherit}",u.setAttribute("data-styles","");const e=null!==(t=L.M)&&void 0!==t?t:o(H);null!=e&&u.setAttribute("nonce",e),i.insertBefore(u,r?r.nextSibling:i.firstChild)}m=!1,f.length?f.map((e=>e.connectedCallback())):L.jmp((()=>y=setTimeout(S,30)))},k=e=>L.M=e,M=new WeakMap,C=e=>M.get(e),j=(e,n)=>M.set(n.S=e,n),P=(e,n)=>{const t={i:0,$hostElement$:e,k:n,H:new Map};return t.T=new Promise((e=>t.C=e)),e["s-p"]=[],e["s-rc"]=[],M.set(e,t)},x=(e,n)=>(0,console.error)(e,n),E=new Map,O=e=>{const n=e.m.replace(/-/g,"_"),t=e.A,l=E.get(t);return l?l[n]:import(`./${t}.entry.js`).then((e=>(E.set(t,e),e[n])),x)
2
+ /*!__STENCIL_STATIC_IMPORT_SWITCH__*/},T=new Map,A="undefined"!=typeof window?window:{},H=A.document||{head:{}},L={i:0,j:"",jmp:e=>e(),raf:e=>requestAnimationFrame(e),ael:(e,n,t,l)=>e.addEventListener(n,t,l),rel:(e,n,t,l)=>e.removeEventListener(n,t,l),ce:(e,n)=>new CustomEvent(e,n)},R=e=>Promise.resolve(e),U=(()=>{try{return new CSSStyleSheet,"function"==typeof(new CSSStyleSheet).replaceSync}catch(e){}return!1})(),W=[],q=[],F=(e,n)=>l=>{e.push(l),t||(t=!0,n&&4&L.i?_(V):L.raf(V))},N=e=>{for(let n=0;n<e.length;n++)try{e[n](performance.now())}catch(e){x(e)}e.length=0},V=()=>{N(W),N(q),(t=W.length>0)&&L.raf(V)},_=e=>R().then(e),z=F(q,!0);export{i as H,g as b,s as h,R as p,j as r,k as s}
@@ -0,0 +1 @@
1
+ System.register(["./p-5ca4f187.system.js"],(function(e,t){"use strict";var n,s;return{setters:[function(t){n=t.p;s=t.b;e("setNonce",t.s)}],execute:function(){var e=function(){var e=t.meta.url;var s={};if(e!==""){s.resourcesUrl=new URL(".",e).href}return n(s)};e().then((function(e){return s([["p-8bf8e6ee.system",[[1,"mds-list"]]]],e)}))}}}));
package/dist/stats.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
- "timestamp": "2023-09-18T09:17:49",
2
+ "timestamp": "2023-10-19T09:55:02",
3
3
  "compiler": {
4
4
  "name": "node",
5
- "version": "18.12.1"
5
+ "version": "18.16.1"
6
6
  },
7
7
  "app": {
8
8
  "namespace": "MdsList",
@@ -56,17 +56,17 @@
56
56
  "name": "dist-lazy",
57
57
  "files": 35,
58
58
  "generatedFiles": [
59
- "./dist/cjs/index-8b891baa.js",
59
+ "./dist/cjs/index-9c256f25.js",
60
60
  "./dist/cjs/index.cjs.js",
61
61
  "./dist/cjs/loader.cjs.js",
62
62
  "./dist/cjs/mds-list.cjs.entry.js",
63
63
  "./dist/cjs/mds-list.cjs.js",
64
- "./dist/esm-es5/index-fc613209.js",
64
+ "./dist/esm-es5/index-91cc404a.js",
65
65
  "./dist/esm-es5/index.js",
66
66
  "./dist/esm-es5/loader.js",
67
67
  "./dist/esm-es5/mds-list.entry.js",
68
68
  "./dist/esm-es5/mds-list.js",
69
- "./dist/esm/index-fc613209.js",
69
+ "./dist/esm/index-91cc404a.js",
70
70
  "./dist/esm/index.js",
71
71
  "./dist/esm/loader.js",
72
72
  "./dist/esm/mds-list.entry.js",
@@ -76,21 +76,21 @@
76
76
  "./dist/mds-list/index.esm.js",
77
77
  "./dist/mds-list/mds-list.esm.js",
78
78
  "./dist/mds-list/mds-list.js",
79
- "./dist/mds-list/p-21fac44b.js",
80
- "./dist/mds-list/p-39e961ff.system.js",
81
79
  "./dist/mds-list/p-50ea2036.system.js",
82
- "./dist/mds-list/p-8f9f276f.system.js",
83
- "./dist/mds-list/p-f2362255.entry.js",
84
- "./dist/mds-list/p-f2f76a70.system.entry.js",
80
+ "./dist/mds-list/p-5ca4f187.system.js",
81
+ "./dist/mds-list/p-6405aac0.entry.js",
82
+ "./dist/mds-list/p-8bf8e6ee.system.entry.js",
83
+ "./dist/mds-list/p-b6cf7a75.js",
84
+ "./dist/mds-list/p-db0281ca.system.js",
85
85
  "./www/build/index.esm.js",
86
86
  "./www/build/mds-list.esm.js",
87
87
  "./www/build/mds-list.js",
88
- "./www/build/p-21fac44b.js",
89
- "./www/build/p-39e961ff.system.js",
90
88
  "./www/build/p-50ea2036.system.js",
91
- "./www/build/p-8f9f276f.system.js",
92
- "./www/build/p-f2362255.entry.js",
93
- "./www/build/p-f2f76a70.system.entry.js"
89
+ "./www/build/p-5ca4f187.system.js",
90
+ "./www/build/p-6405aac0.entry.js",
91
+ "./www/build/p-8bf8e6ee.system.entry.js",
92
+ "./www/build/p-b6cf7a75.js",
93
+ "./www/build/p-db0281ca.system.js"
94
94
  ]
95
95
  },
96
96
  {
@@ -123,10 +123,10 @@
123
123
  "components": [
124
124
  "mds-list"
125
125
  ],
126
- "bundleId": "p-f2362255",
127
- "fileName": "p-f2362255.entry.js",
126
+ "bundleId": "p-6405aac0",
127
+ "fileName": "p-6405aac0.entry.js",
128
128
  "imports": [
129
- "p-21fac44b.js"
129
+ "p-b6cf7a75.js"
130
130
  ],
131
131
  "originalByteSize": 849
132
132
  }
@@ -140,7 +140,7 @@
140
140
  "bundleId": "mds-list",
141
141
  "fileName": "mds-list.entry.js",
142
142
  "imports": [
143
- "index-fc613209.js"
143
+ "index-91cc404a.js"
144
144
  ],
145
145
  "originalByteSize": 853
146
146
  }
@@ -154,7 +154,7 @@
154
154
  "bundleId": "mds-list",
155
155
  "fileName": "mds-list.entry.js",
156
156
  "imports": [
157
- "index-fc613209.js"
157
+ "index-91cc404a.js"
158
158
  ],
159
159
  "originalByteSize": 853
160
160
  }
@@ -165,10 +165,10 @@
165
165
  "components": [
166
166
  "mds-list"
167
167
  ],
168
- "bundleId": "p-f2f76a70.system",
169
- "fileName": "p-f2f76a70.system.entry.js",
168
+ "bundleId": "p-8bf8e6ee.system",
169
+ "fileName": "p-8bf8e6ee.system.entry.js",
170
170
  "imports": [
171
- "p-39e961ff.system.js"
171
+ "p-5ca4f187.system.js"
172
172
  ],
173
173
  "originalByteSize": 1114
174
174
  }
@@ -182,7 +182,7 @@
182
182
  "bundleId": "mds-list.cjs",
183
183
  "fileName": "mds-list.cjs.entry.js",
184
184
  "imports": [
185
- "index-8b891baa.js"
185
+ "index-9c256f25.js"
186
186
  ],
187
187
  "originalByteSize": 923
188
188
  }
@@ -225,6 +225,8 @@
225
225
  {
226
226
  "cmps": [
227
227
  {
228
+ "attachInternalsMemberName": null,
229
+ "formAssociated": false,
228
230
  "tagName": "mds-list",
229
231
  "excludeFromCollection": false,
230
232
  "isCollectionDependency": false,
@@ -333,7 +335,7 @@
333
335
  ],
334
336
  "componentGraph": {
335
337
  "sc-mds-list": [
336
- "p-21fac44b.js"
338
+ "p-b6cf7a75.js"
337
339
  ]
338
340
  },
339
341
  "sourceGraph": {
@@ -1,4 +1,5 @@
1
1
  declare const unslugName: (name: string) => string;
2
2
  declare const setAttributeIfEmpty: (element: HTMLElement, attribute: string, value: string) => string;
3
3
  declare const hashValue: (value: string) => string;
4
- export { unslugName, setAttributeIfEmpty, hashValue, };
4
+ declare const hashRandomValue: (value?: string) => string;
5
+ export { unslugName, setAttributeIfEmpty, hashRandomValue, hashValue, };
@@ -3,6 +3,16 @@ export interface ComponentDecorator {
3
3
  (opts?: ComponentOptions): ClassDecorator;
4
4
  }
5
5
  export interface ComponentOptions {
6
+ /**
7
+ * When set to `true` this component will be form-associated. See
8
+ * https://stenciljs.com/docs/next/form-associated documentation on how to
9
+ * build form-associated Stencil components that integrate into forms like
10
+ * native browser elements such as `<input>` and `<textarea>`.
11
+ *
12
+ * The {@link AttachInternals} decorator allows for access to the
13
+ * `ElementInternals` object to modify the associated form.
14
+ */
15
+ formAssociated?: boolean;
6
16
  /**
7
17
  * Tag name of the web component. Ideally, the tag name must be globally unique,
8
18
  * so it's recommended to choose an unique prefix for all your components within the same collection.
@@ -107,6 +117,9 @@ export interface EventOptions {
107
117
  */
108
118
  composed?: boolean;
109
119
  }
120
+ export interface AttachInternalsDecorator {
121
+ (): PropertyDecorator;
122
+ }
110
123
  export interface ListenDecorator {
111
124
  (eventName: string, opts?: ListenOptions): CustomMethodDecorator<any>;
112
125
  }
@@ -175,6 +188,12 @@ export declare const Element: ElementDecorator;
175
188
  * https://stenciljs.com/docs/events
176
189
  */
177
190
  export declare const Event: EventDecorator;
191
+ /**
192
+ * If the `formAssociated` option is set in options passed to the
193
+ * `@Component()` decorator then this decorator may be used to get access to the
194
+ * `ElementInternals` instance associated with the component.
195
+ */
196
+ export declare const AttachInternals: AttachInternalsDecorator;
178
197
  /**
179
198
  * The `Listen()` decorator is for listening DOM events, including the ones
180
199
  * dispatched from `@Events()`.
@@ -1,17 +1,17 @@
1
1
  {
2
- "timestamp": "2023-09-18T08:43:05",
2
+ "timestamp": "2023-10-19T09:23:19",
3
3
  "compiler": {
4
4
  "name": "@stencil/core",
5
- "version": "4.2.1",
6
- "typescriptVersion": "5.1.6"
5
+ "version": "4.5.0",
6
+ "typescriptVersion": "5.2.2"
7
7
  },
8
8
  "components": [
9
9
  {
10
10
  "filePath": "src/components/mds-list/mds-list.tsx",
11
11
  "encapsulation": "shadow",
12
12
  "tag": "mds-list",
13
- "readme": "# mds-list\n\n\n",
14
- "docs": "",
13
+ "readme": "# mds-list\n\n\n\nThis is a web-component from Maggioli Design System [Magma](https://magma.maggiolicloud.it), built with StencilJS, TypeScript, Storybook. It's based on the web-component standard and it's designed to be agnostic from the JavaScirpt framework you are using.\n",
14
+ "docs": "This is a web-component from Maggioli Design System [Magma](https://magma.maggiolicloud.it), built with StencilJS, TypeScript, Storybook. It's based on the web-component standard and it's designed to be agnostic from the JavaScirpt framework you are using.",
15
15
  "docsTags": [
16
16
  {
17
17
  "name": "slot",
@@ -202,6 +202,11 @@
202
202
  "docstring": "",
203
203
  "path": "src/components/mds-form/meta/types.ts"
204
204
  },
205
+ "src/components/mds-header-bar/meta/types.ts::MenuType": {
206
+ "declaration": "export type MenuType =\n | 'all'\n | 'desktop'\n | 'mobile'\n | 'none'",
207
+ "docstring": "",
208
+ "path": "src/components/mds-header-bar/meta/types.ts"
209
+ },
205
210
  "src/components/mds-header/meta/event-detail.ts::MdsHeaderEventDetail": {
206
211
  "declaration": "export interface MdsHeaderEventDetail {\n bar: HTMLMdsHeaderBarElement\n}",
207
212
  "docstring": "",
@@ -307,6 +312,11 @@
307
312
  "docstring": "",
308
313
  "path": "src/components/mds-paginator/meta/event-detail.ts"
309
314
  },
315
+ "src/components/mds-price-table-features-cell/meta/types.ts::PriceTableFeaturesCellType": {
316
+ "declaration": "export type PriceTableFeaturesCellType =\n | 'custom'\n | 'label'\n | 'supported'\n | 'text'\n | 'unsupported'",
317
+ "docstring": "",
318
+ "path": "src/components/mds-price-table-features-cell/meta/types.ts"
319
+ },
310
320
  "src/components/mds-progress/meta/types.ts::DirectionType": {
311
321
  "declaration": "export type DirectionType =\n | 'horizontal'\n | 'vertical'",
312
322
  "docstring": "",
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@maggioli-design-system/mds-list",
3
- "version": "3.4.0",
4
- "description": "mds-list is a web-component from Maggioli Design System Magma, built with StencilJS, TypeScript, Storybook. It's based on the web-component standard and it's designed to be agnostic from the JavaScirpt framework you are using.",
3
+ "version": "3.4.2",
4
+ "description": "mds-list is a web-component from Magma Design System, built with StencilJS, TypeScript, Storybook. It's based on the web-component standard and it's designed to be agnostic from the JavaScirpt framework you are using.",
5
5
  "main": "dist/index.cjs.js",
6
6
  "module": "dist/index.js",
7
7
  "es2015": "dist/esm/index.mjs",
@@ -23,9 +23,9 @@
23
23
  "prepublishOnly": "npm run build"
24
24
  },
25
25
  "dependencies": {
26
- "@maggioli-design-system/mds-list-item": "^3.5.0",
26
+ "@maggioli-design-system/mds-list-item": "^3.5.2",
27
27
  "@maggioli-design-system/styles": "^11.7.0",
28
- "@stencil/core": "^4.2.1"
28
+ "@stencil/core": "^4.3.0"
29
29
  },
30
30
  "license": "MIT",
31
31
  "author": {
package/readme.md CHANGED
@@ -2,6 +2,8 @@
2
2
 
3
3
 
4
4
 
5
+ This is a web-component from Maggioli Design System [Magma](https://magma.maggiolicloud.it), built with StencilJS, TypeScript, Storybook. It's based on the web-component standard and it's designed to be agnostic from the JavaScirpt framework you are using.
6
+
5
7
  <!-- Auto Generated Below -->
6
8
 
7
9
 
@@ -14,4 +16,4 @@
14
16
 
15
17
  ----------------------------------------------
16
18
 
17
- Built with love @ **Maggioli Informatica / R&D Department**
19
+ Built with love @ [Gruppo Maggioli](https://www.maggioli.com) from [R&D Department](https://www.maggioli.com/it-it/chi-siamo/ricerca-sviluppo)
@@ -6,6 +6,8 @@ const hash = (s: string): string => {
6
6
  return h.toString()
7
7
  }
8
8
 
9
+ const randomInt = (max: number): number => Math.floor(Math.random() * max)
10
+
9
11
  const unslugName = (name: string): string => {
10
12
  return name.split('/')?.slice(-1).pop()?.replace(/-/g, ' ') ?? name
11
13
  }
@@ -20,8 +22,18 @@ const setAttributeIfEmpty = (element: HTMLElement, attribute: string, value: str
20
22
 
21
23
  const hashValue = (value: string): string => `${value}-${hash(value)}`
22
24
 
25
+ const hashRandomValue = (value?: string): string => {
26
+ const randomValue = randomInt(1000000)
27
+ if (value) {
28
+ return `${value}-${hash(randomValue.toString())}`
29
+ }
30
+
31
+ return hash(randomValue.toString())
32
+ }
33
+
23
34
  export {
24
35
  unslugName,
25
36
  setAttributeIfEmpty,
37
+ hashRandomValue,
26
38
  hashValue,
27
39
  }
@@ -32,14 +32,14 @@ export class KeyboardManager {
32
32
 
33
33
  attachEscapeBehavior = (callBack: () => void): void => {
34
34
  this.escapeCallback = callBack
35
- if (typeof window !== undefined) {
35
+ if (window !== undefined) {
36
36
  window.addEventListener('keydown', this.handleEscapeBehaviorDispatchEvent.bind(this))
37
37
  }
38
38
  }
39
39
 
40
40
  detachEscapeBehavior = (): void => {
41
41
  this.escapeCallback = () => {return}
42
- if (typeof window !== undefined) {
42
+ if (window !== undefined) {
43
43
  window.removeEventListener('keydown', this.handleEscapeBehaviorDispatchEvent.bind(this))
44
44
  }
45
45
  }
@@ -1,11 +1,11 @@
1
- @tailwind components;
2
1
  @tailwind utilities;
3
2
 
4
3
  :host {
5
4
  @apply
6
5
  gap-4
7
- grid
8
6
  pl-4;
7
+
8
+ display: grid;
9
9
  }
10
10
 
11
11
  ul {
@@ -14,4 +14,4 @@
14
14
 
15
15
  ----------------------------------------------
16
16
 
17
- Built with love @ **Maggioli Informatica / R&D Department**
17
+ Built with love @ [Gruppo Maggioli](https://www.maggioli.com) from [R&D Department](https://www.maggioli.com/it-it/chi-siamo/ricerca-sviluppo)
@@ -247,6 +247,7 @@
247
247
  "mi/baseline/explore",
248
248
  "mi/baseline/folder-zip",
249
249
  "mi/baseline/groups",
250
+ "mi/baseline/horizontal-rule",
250
251
  "mi/baseline/indeterminate-check-box",
251
252
  "mi/baseline/info",
252
253
  "mi/baseline/insert-drive-file",
@@ -272,6 +273,7 @@
272
273
  "mi/baseline/warning-amber",
273
274
  "mi/baseline/web",
274
275
  "mi/baseline/wysiwyg",
276
+ "mi/outline/help-outline",
275
277
  "mi/round/arrow-circle-down",
276
278
  "mi/round/email",
277
279
  "mi/round/groups",
@@ -1 +1 @@
1
- import{p as t,b as o}from"./p-21fac44b.js";export{s as setNonce}from"./p-21fac44b.js";(()=>{const s=import.meta.url,o={};return""!==s&&(o.resourcesUrl=new URL(".",s).href),t(o)})().then((s=>o([["p-f2362255",[[1,"mds-list"]]]],s)));
1
+ import{p as a,b as t}from"./p-b6cf7a75.js";export{s as setNonce}from"./p-b6cf7a75.js";(()=>{const s=import.meta.url,t={};return""!==s&&(t.resourcesUrl=new URL(".",s).href),a(t)})().then((s=>t([["p-6405aac0",[[1,"mds-list"]]]],s)));
@@ -115,7 +115,7 @@ 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-8f9f276f.system.js', new URL(resourcesUrl, window.location.origin !== 'null' ? window.location.origin : undefined));
118
+ var url = new URL('./p-db0281ca.system.js', new URL(resourcesUrl, window.location.origin !== 'null' ? window.location.origin : undefined));
119
119
  System.import(url.href);
120
120
  };
121
121
 
@@ -0,0 +1,2 @@
1
+ var __extends=this&&this.__extends||function(){var n=function(r,t){n=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(n,r){n.__proto__=r}||function(n,r){for(var t in r)if(Object.prototype.hasOwnProperty.call(r,t))n[t]=r[t]};return n(r,t)};return function(r,t){if(typeof t!=="function"&&t!==null)throw new TypeError("Class extends value "+String(t)+" is not a constructor or null");n(r,t);function e(){this.constructor=r}r.prototype=t===null?Object.create(t):(e.prototype=t.prototype,new e)}}();var __awaiter=this&&this.__awaiter||function(n,r,t,e){function i(n){return n instanceof t?n:new t((function(r){r(n)}))}return new(t||(t=Promise))((function(t,a){function u(n){try{o(e.next(n))}catch(n){a(n)}}function f(n){try{o(e["throw"](n))}catch(n){a(n)}}function o(n){n.done?t(n.value):i(n.value).then(u,f)}o((e=e.apply(n,r||[])).next())}))};var __generator=this&&this.__generator||function(n,r){var t={label:0,sent:function(){if(a[0]&1)throw a[1];return a[1]},trys:[],ops:[]},e,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(e)throw new TypeError("Generator is already executing.");while(u&&(u=0,f[0]&&(t=0)),t)try{if(e=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:t.label++;return{value:f[1],done:false};case 5:t.label++;i=f[1];f=[0];continue;case 7:f=t.ops.pop();t.trys.pop();continue;default:if(!(a=t.trys,a=a.length>0&&a[a.length-1])&&(f[0]===6||f[0]===2)){t=0;continue}if(f[0]===3&&(!a||f[1]>a[0]&&f[1]<a[3])){t.label=f[1];break}if(f[0]===6&&t.label<a[1]){t.label=a[1];a=f;break}if(a&&t.label<a[2]){t.label=a[2];t.ops.push(f);break}if(a[2])t.ops.pop();t.trys.pop();continue}f=r.call(n,t)}catch(n){f=[6,n];i=0}finally{e=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,t){if(t||arguments.length===2)for(var e=0,i=r.length,a;e<i;e++){if(a||!(e in r)){if(!a)a=Array.prototype.slice.call(r,0,e);a[e]=r[e]}}return n.concat(a||Array.prototype.slice.call(r))};System.register([],(function(n,r){"use strict";return{execute:function(){var t=this;var e="mds-list";var i;var a;var u=false;var f=function(n,r){if(r===void 0){r=""}{return function(){return}}};var o=function(n,r){{return function(){return}}};var c="{visibility:hidden}[hydrated]{visibility:inherit}";var v=function(n){return n!=null};var l=function(n){n=typeof n;return n==="object"||n==="function"};function s(n){var r,t,e;return(e=(t=(r=n.head)===null||r===void 0?void 0:r.querySelector('meta[name="csp-nonce"]'))===null||t===void 0?void 0:t.getAttribute("content"))!==null&&e!==void 0?e:undefined}var d=n("h",(function(n,r){var t=[];for(var e=2;e<arguments.length;e++){t[e-2]=arguments[e]}var i=null;var a=false;var u=false;var f=[];var o=function(r){for(var t=0;t<r.length;t++){i=r[t];if(Array.isArray(i)){o(i)}else if(i!=null&&typeof i!=="boolean"){if(a=typeof n!=="function"&&!l(i)){i=String(i)}if(a&&u){f[f.length-1].t+=i}else{f.push(a?h(null,i):i)}u=a}}};o(t);var c=h(n,null);c.i=r;if(f.length>0){c.u=f}return c}));var h=function(n,r){var t={o:0,v:n,t:r,l:null,u:null};return t};var y=n("H",{});var w=function(n){return n&&n.v===y};var p=function(n,r,t){var e=rn.ce(r,t);n.dispatchEvent(e);return e};var _=new WeakMap;var $=function(n,r,t){var e=Y.get(n);if(en&&t){e=e||new CSSStyleSheet;if(typeof e==="string"){e=r}else{e.replaceSync(r)}}else{e=r}Y.set(n,e)};var m=function(n,r,t){var e;var i=S(r);var a=Y.get(i);n=n.nodeType===11?n:nn;if(a){if(typeof a==="string"){n=n.head||n;var u=_.get(n);var f=void 0;if(!u){_.set(n,u=new Set)}if(!u.has(i)){{f=nn.createElement("style");f.innerHTML=a;var o=(e=rn.h)!==null&&e!==void 0?e:s(nn);if(o!=null){f.setAttribute("nonce",o)}n.insertBefore(f,n.querySelector("link"))}if(u){u.add(i)}}}else if(!n.adoptedStyleSheets.includes(a)){n.adoptedStyleSheets=__spreadArray(__spreadArray([],n.adoptedStyleSheets,true),[a],false)}}return i};var b=function(n){var r=n.p;var t=n.$hostElement$;var e=r.o;var i=f("attachStyles",r._);var a=m(t.shadowRoot?t.shadowRoot:t.getRootNode(),r);if(e&10){t["s-sc"]=a;t.classList.add(a+"-h")}i()};var S=function(n,r){return"sc-"+n._};var g=function(n,r,t,e){var a=r.u[t];var u=0;var f;var o;{f=a.l=nn.createElement(a.v);if(v(i)&&f["s-si"]!==i){f.classList.add(f["s-si"]=i)}if(a.u){for(u=0;u<a.u.length;++u){o=g(n,a,u);if(o){f.appendChild(o)}}}}return f};var k=function(n,r,t,e,i,u){var f=n;var o;if(f.shadowRoot&&f.tagName===a){f=f.shadowRoot}for(;i<=u;++i){if(e[i]){o=g(null,t,i);if(o){e[i].l=o;f.insertBefore(o,r)}}}};var j=function(n,r){var t=r.l=n.l;var e=r.u;{if(e!==null){k(t,null,r,e,0,e.length-1)}else;}};var A=function(n,r,t){if(t===void 0){t=false}var e=n.$hostElement$;var u=n.$||h(null,null);var f=w(r)?r:d(null,null,r);a=e.tagName;if(t&&f.i){for(var o=0,c=Object.keys(f.i);o<c.length;o++){var v=c[o];if(e.hasAttribute(v)&&!["key","ref","style","class"].includes(v)){f.i[v]=e[v]}}}f.v=null;f.o|=4;n.$=f;f.l=u.l=e.shadowRoot||e;{i=e["s-sc"]}j(u,f)};var x=function(n,r){if(r&&!n.m&&r["s-p"]){r["s-p"].push(new Promise((function(r){return n.m=r})))}};var M=function(n,r){if(n.o&4){n.o|=512;return}x(n,n.S);var t=function(){return C(n,r)};return ln(t)};var C=function(n,r){var t=f("scheduleUpdate",n.p._);var e=n.k;var i;t();return P(i,(function(){return O(n,e,r)}))};var P=function(n,r){return E(n)?n.then(r):r()};var E=function(n){return n instanceof Promise||n&&n.then&&typeof n.then==="function"};var O=function(n,r,e){return __awaiter(t,void 0,void 0,(function(){var t,i,a,u,o,c,v;return __generator(this,(function(l){i=n.$hostElement$;a=f("update",n.p._);u=i["s-rc"];if(e){b(n)}o=f("render",n.p._);{T(n,r,i,e)}if(u){u.map((function(n){return n()}));i["s-rc"]=undefined}o();a();{c=(t=i["s-p"])!==null&&t!==void 0?t:[];v=function(){return U(n)};if(c.length===0){v()}else{Promise.all(c).then(v);n.o|=4;c.length=0}}return[2]}))}))};var T=function(n,r,t,e){try{r=r.render();{n.o|=2}{{{A(n,r,e)}}}}catch(r){K(r,n.$hostElement$)}return null};var U=function(n){var r=n.p._;var t=n.$hostElement$;var e=f("postUpdate",r);var i=n.S;if(!(n.o&64)){n.o|=64;{L(t)}e();{n.j(t);if(!i){H()}}}else{e()}{if(n.m){n.m();n.m=undefined}if(n.o&512){vn((function(){return M(n,false)}))}n.o&=~(4|512)}};var H=function(n){{L(nn.documentElement)}vn((function(){return p(Z,"appload",{detail:{namespace:e}})}))};var L=function(n){return n.setAttribute("hydrated","")};var W=function(n,r,t){return n};var q=function(n,r,e,i){return __awaiter(t,void 0,void 0,(function(){var n,t,i,a,u,c,v,l;return __generator(this,(function(s){switch(s.label){case 0:if(!((r.o&32)===0))return[3,3];r.o|=32;n=X(e);if(!n.then)return[3,2];t=o();return[4,n];case 1:n=s.sent();t();s.label=2;case 2:i=f("createInstance",e._);try{new n(r)}catch(n){K(n)}i();if(n.style){a=n.style;u=S(e);if(!Y.has(u)){c=f("registerStyles",e._);$(u,a,!!(e.o&1));c()}}s.label=3;case 3:v=r.S;l=function(){return M(r,true)};if(v&&v["s-rc"]){v["s-rc"].push(l)}else{l()}return[2]}}))}))};var F=function(n){};var G=function(n){if((rn.o&1)===0){var r=B(n);var t=r.p;var e=f("connectedCallback",t._);if(!(r.o&1)){r.o|=1;{var i=n;while(i=i.parentNode||i.host){if(i["s-p"]){x(r,r.S=i);break}}}{q(n,r,t)}}else{if(r===null||r===void 0?void 0:r.k);else if(r===null||r===void 0?void 0:r.A){r.A.then((function(){return F()}))}}e()}};var I=function(n){};var N=function(n){return __awaiter(t,void 0,void 0,(function(){var r;return __generator(this,(function(t){if((rn.o&1)===0){r=B(n);if(r===null||r===void 0?void 0:r.k);else if(r===null||r===void 0?void 0:r.A){r.A.then((function(){return I()}))}}return[2]}))}))};var R=n("b",(function(n,r){if(r===void 0){r={}}var t;var e=f();var i=[];var a=r.exclude||[];var u=Z.customElements;var o=nn.head;var v=o.querySelector("meta[charset]");var l=nn.createElement("style");var d=[];var h;var y=true;Object.assign(rn,r);rn.M=new URL(r.resourcesUrl||"./",nn.baseURI).href;n.map((function(n){n[1].map((function(r){var t={o:r[0],_:r[1],C:r[2],P:r[3]};var e=t._;var f=function(n){__extends(r,n);function r(r){var e=n.call(this,r)||this;r=e;J(r,t);if(t.o&1){{{r.attachShadow({mode:"open"})}}}return e}r.prototype.connectedCallback=function(){var n=this;if(h){clearTimeout(h);h=null}if(y){d.push(this)}else{rn.jmp((function(){return G(n)}))}};r.prototype.disconnectedCallback=function(){var n=this;rn.jmp((function(){return N(n)}))};r.prototype.componentOnReady=function(){return B(this).A};return r}(HTMLElement);t.O=n[0];if(!a.includes(e)&&!u.get(e)){i.push(e);u.define(e,W(f))}}))}));{l.innerHTML=i+c;l.setAttribute("data-styles","");var w=(t=rn.h)!==null&&t!==void 0?t:s(nn);if(w!=null){l.setAttribute("nonce",w)}o.insertBefore(l,v?v.nextSibling:o.firstChild)}y=false;if(d.length){d.map((function(n){return n.connectedCallback()}))}else{{rn.jmp((function(){return h=setTimeout(H,30)}))}}e()}));var V=n("s",(function(n){return rn.h=n}));var z=new WeakMap;var B=function(n){return z.get(n)};var D=n("r",(function(n,r){return z.set(r.k=n,r)}));var J=function(n,r){var t={o:0,$hostElement$:n,p:r,T:new Map};{t.A=new Promise((function(n){return t.j=n}));n["s-p"]=[];n["s-rc"]=[]}return z.set(n,t)};var K=function(n,r){return(0,console.error)(n,r)};var Q=new Map;var X=function(n,t,e){var i=n._.replace(/-/g,"_");var a=n.O;var u=Q.get(a);if(u){return u[i]}
2
+ /*!__STENCIL_STATIC_IMPORT_SWITCH__*/return r.import("./".concat(a,".entry.js").concat("")).then((function(n){{Q.set(a,n)}return n[i]}),K)};var Y=new Map;var Z=typeof window!=="undefined"?window:{};var nn=Z.document||{head:{}};var rn={o:0,M:"",jmp:function(n){return n()},raf:function(n){return requestAnimationFrame(n)},ael:function(n,r,t,e){return n.addEventListener(r,t,e)},rel:function(n,r,t,e){return n.removeEventListener(r,t,e)},ce:function(n,r){return new CustomEvent(n,r)}};var tn=n("p",(function(n){return Promise.resolve(n)}));var en=function(){try{new CSSStyleSheet;return typeof(new CSSStyleSheet).replaceSync==="function"}catch(n){}return false}();var an=[];var un=[];var fn=function(n,r){return function(t){n.push(t);if(!u){u=true;if(r&&rn.o&4){vn(cn)}else{rn.raf(cn)}}}};var on=function(n){for(var r=0;r<n.length;r++){try{n[r](performance.now())}catch(n){K(n)}}n.length=0};var cn=function(){on(an);{on(un);if(u=an.length>0){rn.raf(cn)}}};var vn=function(n){return tn().then(n)};var ln=fn(un,true)}}}));
@@ -1 +1 @@
1
- import{r as o,h as r,H as a}from"./p-21fac44b.js";const s=class{constructor(r){o(this,r)}render(){return r(a,null,r("slot",null))}};s.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:grid;gap:1rem;padding-left:1rem}ul{margin:0px;padding:0px}";export{s as mds_list}
1
+ import{r as o,h as r,H as a}from"./p-b6cf7a75.js";const s=class{constructor(r){o(this,r)}render(){return r(a,null,r("slot",null))}};s.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{gap:1rem;padding-left:1rem;display:grid}ul{margin:0px;padding:0px}";export{s as mds_list}
@@ -1 +1 @@
1
- System.register(["./p-39e961ff.system.js"],(function(t){"use strict";var r,o,s;return{setters:[function(t){r=t.r;o=t.h;s=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:grid;gap:1rem;padding-left:1rem}ul{margin:0px;padding:0px}";var e=t("mds_list",function(){function t(t){r(this,t)}t.prototype.render=function(){return o(s,null,o("slot",null))};return t}());e.style=a}}}));
1
+ System.register(["./p-5ca4f187.system.js"],(function(o){"use strict";var t,r,s;return{setters:[function(o){t=o.r;r=o.h;s=o.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{gap:1rem;padding-left:1rem;display:grid}ul{margin:0px;padding:0px}";var d=o("mds_list",function(){function o(o){t(this,o)}o.prototype.render=function(){return r(s,null,r("slot",null))};return o}());d.style=a}}}));
@@ -0,0 +1,2 @@
1
+ let e,n,t=!1;const l=e=>"object"==(e=typeof e)||"function"===e;function o(e){var n,t,l;return null!==(l=null===(t=null===(n=e.head)||void 0===n?void 0:n.querySelector('meta[name="csp-nonce"]'))||void 0===t?void 0:t.getAttribute("content"))&&void 0!==l?l:void 0}const s=(e,n,...t)=>{let o=null,s=!1,i=!1;const r=[],a=n=>{for(let t=0;t<n.length;t++)o=n[t],Array.isArray(o)?a(o):null!=o&&"boolean"!=typeof o&&((s="function"!=typeof e&&!l(o))&&(o+=""),s&&i?r[r.length-1].t+=o:r.push(s?c(null,o):o),i=s)};a(t);const u=c(e,null);return u.l=n,r.length>0&&(u.o=r),u},c=(e,n)=>({i:0,u:e,t:n,$:null,o:null}),i={},r=new WeakMap,a=e=>"sc-"+e.m,u=(n,t,l)=>{const o=t.o[l];let s,c,i=0;if(s=o.$=H.createElement(o.u),null!=e&&s["s-si"]!==e&&s.classList.add(s["s-si"]=e),o.o)for(i=0;i<o.o.length;++i)c=u(n,o,i),c&&s.appendChild(c);return s},f=(t,l,o=!1)=>{const r=t.$hostElement$,a=t.p||c(null,null),f=(e=>e&&e.u===i)(l)?l:s(null,null,l);if(n=r.tagName,o&&f.l)for(const e of Object.keys(f.l))r.hasAttribute(e)&&!["key","ref","style","class"].includes(e)&&(f.l[e]=r[e]);f.u=null,f.i|=4,t.p=f,f.$=a.$=r.shadowRoot||r,e=r["s-sc"],((e,t)=>{const l=t.$=e.$,o=t.o;null!==o&&((e,t,l,o,s,c)=>{let i,r=e;for(r.shadowRoot&&r.tagName===n&&(r=r.shadowRoot);s<=c;++s)o[s]&&(i=u(null,l,s),i&&(o[s].$=i,r.insertBefore(i,null)))})(l,0,t,o,0,o.length-1)})(a,f)},d=(e,n)=>{n&&!e.v&&n["s-p"]&&n["s-p"].push(new Promise((n=>e.v=n)))},$=(e,n)=>{if(!(4&e.i))return d(e,e.h),z((()=>y(e,n)));e.i|=512},y=(e,n)=>{const t=e.S;return m(void 0,(()=>v(e,t,n)))},m=(e,n)=>p(e)?e.then(n):n(),p=e=>e instanceof Promise||e&&e.then&&"function"==typeof e.then,v=async(e,n,t)=>{var l;const s=e.$hostElement$,c=s["s-rc"];t&&(e=>{const n=e.k,t=e.$hostElement$,l=n.i,s=((e,n)=>{var t;const l=a(n),s=T.get(l);if(e=11===e.nodeType?e:H,s)if("string"==typeof s){let n,c=r.get(e=e.head||e);if(c||r.set(e,c=new Set),!c.has(l)){{n=H.createElement("style"),n.innerHTML=s;const l=null!==(t=L.M)&&void 0!==t?t:o(H);null!=l&&n.setAttribute("nonce",l),e.insertBefore(n,e.querySelector("link"))}c&&c.add(l)}}else e.adoptedStyleSheets.includes(s)||(e.adoptedStyleSheets=[...e.adoptedStyleSheets,s]);return l})(t.shadowRoot?t.shadowRoot:t.getRootNode(),n);10&l&&(t["s-sc"]=s,t.classList.add(s+"-h"))})(e);h(e,n,s,t),c&&(c.map((e=>e())),s["s-rc"]=void 0);{const n=null!==(l=s["s-p"])&&void 0!==l?l:[],t=()=>w(e);0===n.length?t():(Promise.all(n).then(t),e.i|=4,n.length=0)}},h=(e,n,t,l)=>{try{n=n.render(),e.i|=2,f(e,n,l)}catch(n){x(n,e.$hostElement$)}return null},w=e=>{const n=e.$hostElement$,t=e.h;64&e.i||(e.i|=64,b(n),e.C(n),t||S()),e.v&&(e.v(),e.v=void 0),512&e.i&&_((()=>$(e,!1))),e.i&=-517},S=()=>{b(H.documentElement),_((()=>(e=>{const n=L.ce("appload",{detail:{namespace:"mds-list"}});return e.dispatchEvent(n),n})(A)))},b=e=>e.setAttribute("hydrated",""),g=(e,n={})=>{var t;const l=[],s=n.exclude||[],c=A.customElements,i=H.head,r=i.querySelector("meta[charset]"),u=H.createElement("style"),f=[];let y,m=!0;Object.assign(L,n),L.j=new URL(n.resourcesUrl||"./",H.baseURI).href,e.map((e=>{e[1].map((n=>{const t={i:n[0],m:n[1],P:n[2],O:n[3]},o=t.m,i=class extends HTMLElement{constructor(e){super(e),P(e=this,t),1&t.i&&e.attachShadow({mode:"open"})}connectedCallback(){y&&(clearTimeout(y),y=null),m?f.push(this):L.jmp((()=>(e=>{if(0==(1&L.i)){const n=C(e),t=n.k,l=()=>{};if(1&n.i)(null==n?void 0:n.S)||(null==n?void 0:n.T)&&n.T.then((()=>{}));else{n.i|=1;{let t=e;for(;t=t.parentNode||t.host;)if(t["s-p"]){d(n,n.h=t);break}}(async(e,n,t)=>{let l;if(0==(32&n.i)){n.i|=32;{if(l=O(t),l.then){const e=()=>{};l=await l,e()}const e=()=>{};try{new l(n)}catch(e){x(e)}e()}if(l.style){let e=l.style;const n=a(t);if(!T.has(n)){const l=()=>{};((e,n,t)=>{let l=T.get(e);U&&t?(l=l||new CSSStyleSheet,"string"==typeof l?l=n:l.replaceSync(n)):l=n,T.set(e,l)})(n,e,!!(1&t.i)),l()}}}const o=n.h,s=()=>$(n,!0);o&&o["s-rc"]?o["s-rc"].push(s):s()})(0,n,t)}l()}})(this)))}disconnectedCallback(){L.jmp((()=>(async()=>{if(0==(1&L.i)){const e=C(this);(null==e?void 0:e.S)||(null==e?void 0:e.T)&&e.T.then((()=>{}))}})()))}componentOnReady(){return C(this).T}};t.A=e[0],s.includes(o)||c.get(o)||(l.push(o),c.define(o,i))}))}));{u.innerHTML=l+"{visibility:hidden}[hydrated]{visibility:inherit}",u.setAttribute("data-styles","");const e=null!==(t=L.M)&&void 0!==t?t:o(H);null!=e&&u.setAttribute("nonce",e),i.insertBefore(u,r?r.nextSibling:i.firstChild)}m=!1,f.length?f.map((e=>e.connectedCallback())):L.jmp((()=>y=setTimeout(S,30)))},k=e=>L.M=e,M=new WeakMap,C=e=>M.get(e),j=(e,n)=>M.set(n.S=e,n),P=(e,n)=>{const t={i:0,$hostElement$:e,k:n,H:new Map};return t.T=new Promise((e=>t.C=e)),e["s-p"]=[],e["s-rc"]=[],M.set(e,t)},x=(e,n)=>(0,console.error)(e,n),E=new Map,O=e=>{const n=e.m.replace(/-/g,"_"),t=e.A,l=E.get(t);return l?l[n]:import(`./${t}.entry.js`).then((e=>(E.set(t,e),e[n])),x)
2
+ /*!__STENCIL_STATIC_IMPORT_SWITCH__*/},T=new Map,A="undefined"!=typeof window?window:{},H=A.document||{head:{}},L={i:0,j:"",jmp:e=>e(),raf:e=>requestAnimationFrame(e),ael:(e,n,t,l)=>e.addEventListener(n,t,l),rel:(e,n,t,l)=>e.removeEventListener(n,t,l),ce:(e,n)=>new CustomEvent(e,n)},R=e=>Promise.resolve(e),U=(()=>{try{return new CSSStyleSheet,"function"==typeof(new CSSStyleSheet).replaceSync}catch(e){}return!1})(),W=[],q=[],F=(e,n)=>l=>{e.push(l),t||(t=!0,n&&4&L.i?_(V):L.raf(V))},N=e=>{for(let n=0;n<e.length;n++)try{e[n](performance.now())}catch(e){x(e)}e.length=0},V=()=>{N(W),N(q),(t=W.length>0)&&L.raf(V)},_=e=>R().then(e),z=F(q,!0);export{i as H,g as b,s as h,R as p,j as r,k as s}
@@ -0,0 +1 @@
1
+ System.register(["./p-5ca4f187.system.js"],(function(e,t){"use strict";var n,s;return{setters:[function(t){n=t.p;s=t.b;e("setNonce",t.s)}],execute:function(){var e=function(){var e=t.meta.url;var s={};if(e!==""){s.resourcesUrl=new URL(".",e).href}return n(s)};e().then((function(e){return s([["p-8bf8e6ee.system",[[1,"mds-list"]]]],e)}))}}}));
@@ -1,2 +0,0 @@
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-list";var scopeId;var hostTagName;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 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 c=newVNode(e,null);c.$attrs$=t;if(s.length>0){c.$children$=s}return c};var newVNode=function(e,t){var n={$flags$:0,$tag$:e,$text$:t,$elm$:null,$children$:null};return n};var Host={};var isHost=function(e){return e&&e.$tag$===Host};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 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$);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 patch=function(e,t){var n=t.$elm$=e.$elm$;var r=t.$children$;{if(r!==null){addVnodes(n,null,t,r,0,r.length-1)}else;}};var renderVdom=function(e,t,n){if(n===void 0){n=false}var r=e.$hostElement$;var a=e.$vnode$||newVNode(null,null);var o=isHost(t)?t:h(null,null,t);hostTagName=r.tagName;if(n&&o.$attrs$){for(var i=0,s=Object.keys(o.$attrs$);i<s.length;i++){var l=s[i];if(r.hasAttribute(l)&&!["key","ref","style","class"].includes(l)){o.$attrs$[l]=r[l]}}}o.$tag$=null;o.$flags$|=4;e.$vnode$=o;o.$elm$=a.$elm$=r.shadowRoot||r;{scopeId=r["s-sc"]}patch(a,o)};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){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;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,c;return __generator(this,(function(u){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:[];c=function(){return postUpdateComponent(e)};if(l.length===0){c()}else{Promise.all(l).then(c);e.$flags$|=4;l.length=0}}return[2]}))}))};var callRender=function(e,t,n,r){try{t=t.render();{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 addHydratedFlag=function(e){return e.setAttribute("hydrated","")};var proxyComponent=function(e,t,n){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,c;return __generator(this,(function(u){switch(u.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=u.sent();e();u.label=2;case 2:r=createTime("createInstance",n.$tagName$);try{new a(t)}catch(e){consoleError(e)}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()}}u.label=3;case 3:l=t.$ancestorComponent$;c=function(){return scheduleUpdate(t,true)};if(l&&l["s-rc"]){l["s-rc"].push(c)}else{c()}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}}}{initializeComponent(e,t,n)}}else{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===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 c=doc.createElement("style");var u=[];var f;var d=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]};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(d){u.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))}}))}));{c.innerHTML=a+HYDRATED_CSS;c.setAttribute("data-styles","");var $=(n=plt.$nonce$)!==null&&n!==void 0?n:queryNonceMetaTagContent(doc);if($!=null){c.setAttribute("nonce",$)}s.insertBefore(c,l?l.nextSibling:s.firstChild)}d=false;if(u.length){u.map((function(e){return e.connectedCallback()}))}else{{plt.jmp((function(){return f=setTimeout(appDidLoad,30)}))}}r()};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"]=[]}return hostRefs.set(e,n)};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,2 +0,0 @@
1
- let e,n,t=!1;const l=e=>"object"==(e=typeof e)||"function"===e;function o(e){var n,t,l;return null!==(l=null===(t=null===(n=e.head)||void 0===n?void 0:n.querySelector('meta[name="csp-nonce"]'))||void 0===t?void 0:t.getAttribute("content"))&&void 0!==l?l:void 0}const s=(e,n,...t)=>{let o=null,s=!1,i=!1;const r=[],a=n=>{for(let t=0;t<n.length;t++)o=n[t],Array.isArray(o)?a(o):null!=o&&"boolean"!=typeof o&&((s="function"!=typeof e&&!l(o))&&(o+=""),s&&i?r[r.length-1].t+=o:r.push(s?c(null,o):o),i=s)};a(t);const u=c(e,null);return u.l=n,r.length>0&&(u.o=r),u},c=(e,n)=>({i:0,u:e,t:n,$:null,o:null}),i={},r=new WeakMap,a=e=>"sc-"+e.m,u=(n,t,l)=>{const o=t.o[l];let s,c,i=0;if(s=o.$=H.createElement(o.u),null!=e&&s["s-si"]!==e&&s.classList.add(s["s-si"]=e),o.o)for(i=0;i<o.o.length;++i)c=u(n,o,i),c&&s.appendChild(c);return s},f=(t,l,o=!1)=>{const r=t.p,a=t.v||c(null,null),f=(e=>e&&e.u===i)(l)?l:s(null,null,l);if(n=r.tagName,o&&f.l)for(const e of Object.keys(f.l))r.hasAttribute(e)&&!["key","ref","style","class"].includes(e)&&(f.l[e]=r[e]);f.u=null,f.i|=4,t.v=f,f.$=a.$=r.shadowRoot||r,e=r["s-sc"],((e,t)=>{const l=t.$=e.$,o=t.o;null!==o&&((e,t,l,o,s,c)=>{let i,r=e;for(r.shadowRoot&&r.tagName===n&&(r=r.shadowRoot);s<=c;++s)o[s]&&(i=u(null,l,s),i&&(o[s].$=i,r.insertBefore(i,null)))})(l,0,t,o,0,o.length-1)})(a,f)},d=(e,n)=>{n&&!e.h&&n["s-p"]&&n["s-p"].push(new Promise((n=>e.h=n)))},$=(e,n)=>{if(!(4&e.i))return d(e,e.S),z((()=>y(e,n)));e.i|=512},y=(e,n)=>{const t=e.g;return m(void 0,(()=>v(e,t,n)))},m=(e,n)=>p(e)?e.then(n):n(),p=e=>e instanceof Promise||e&&e.then&&"function"==typeof e.then,v=async(e,n,t)=>{var l;const s=e.p,c=s["s-rc"];t&&(e=>{const n=e.k,t=e.p,l=n.i,s=((e,n)=>{var t;const l=a(n),s=T.get(l);if(e=11===e.nodeType?e:H,s)if("string"==typeof s){let n,c=r.get(e=e.head||e);if(c||r.set(e,c=new Set),!c.has(l)){{n=H.createElement("style"),n.innerHTML=s;const l=null!==(t=L.M)&&void 0!==t?t:o(H);null!=l&&n.setAttribute("nonce",l),e.insertBefore(n,e.querySelector("link"))}c&&c.add(l)}}else e.adoptedStyleSheets.includes(s)||(e.adoptedStyleSheets=[...e.adoptedStyleSheets,s]);return l})(t.shadowRoot?t.shadowRoot:t.getRootNode(),n);10&l&&(t["s-sc"]=s,t.classList.add(s+"-h"))})(e);h(e,n,s,t),c&&(c.map((e=>e())),s["s-rc"]=void 0);{const n=null!==(l=s["s-p"])&&void 0!==l?l:[],t=()=>w(e);0===n.length?t():(Promise.all(n).then(t),e.i|=4,n.length=0)}},h=(e,n,t,l)=>{try{n=n.render(),e.i|=2,f(e,n,l)}catch(n){x(n,e.p)}return null},w=e=>{const n=e.p,t=e.S;64&e.i||(e.i|=64,b(n),e.C(n),t||S()),e.h&&(e.h(),e.h=void 0),512&e.i&&_((()=>$(e,!1))),e.i&=-517},S=()=>{b(H.documentElement),_((()=>(e=>{const n=L.ce("appload",{detail:{namespace:"mds-list"}});return e.dispatchEvent(n),n})(A)))},b=e=>e.setAttribute("hydrated",""),g=(e,n={})=>{var t;const l=[],s=n.exclude||[],c=A.customElements,i=H.head,r=i.querySelector("meta[charset]"),u=H.createElement("style"),f=[];let y,m=!0;Object.assign(L,n),L.j=new URL(n.resourcesUrl||"./",H.baseURI).href,e.map((e=>{e[1].map((n=>{const t={i:n[0],m:n[1],P:n[2],O:n[3]},o=t.m,i=class extends HTMLElement{constructor(e){super(e),P(e=this,t),1&t.i&&e.attachShadow({mode:"open"})}connectedCallback(){y&&(clearTimeout(y),y=null),m?f.push(this):L.jmp((()=>(e=>{if(0==(1&L.i)){const n=C(e),t=n.k,l=()=>{};if(1&n.i)(null==n?void 0:n.g)||(null==n?void 0:n.T)&&n.T.then((()=>{}));else{n.i|=1;{let t=e;for(;t=t.parentNode||t.host;)if(t["s-p"]){d(n,n.S=t);break}}(async(e,n,t,l,o)=>{if(0==(32&n.i)){n.i|=32;{if((o=O(t)).then){const e=()=>{};o=await o,e()}const e=()=>{};try{new o(n)}catch(e){x(e)}e()}if(o.style){let e=o.style;const n=a(t);if(!T.has(n)){const l=()=>{};((e,n,t)=>{let l=T.get(e);U&&t?(l=l||new CSSStyleSheet,"string"==typeof l?l=n:l.replaceSync(n)):l=n,T.set(e,l)})(n,e,!!(1&t.i)),l()}}}const s=n.S,c=()=>$(n,!0);s&&s["s-rc"]?s["s-rc"].push(c):c()})(0,n,t)}l()}})(this)))}disconnectedCallback(){L.jmp((()=>(async()=>{if(0==(1&L.i)){const e=C(this);(null==e?void 0:e.g)||(null==e?void 0:e.T)&&e.T.then((()=>{}))}})()))}componentOnReady(){return C(this).T}};t.A=e[0],s.includes(o)||c.get(o)||(l.push(o),c.define(o,i))}))}));{u.innerHTML=l+"{visibility:hidden}[hydrated]{visibility:inherit}",u.setAttribute("data-styles","");const e=null!==(t=L.M)&&void 0!==t?t:o(H);null!=e&&u.setAttribute("nonce",e),i.insertBefore(u,r?r.nextSibling:i.firstChild)}m=!1,f.length?f.map((e=>e.connectedCallback())):L.jmp((()=>y=setTimeout(S,30)))},k=e=>L.M=e,M=new WeakMap,C=e=>M.get(e),j=(e,n)=>M.set(n.g=e,n),P=(e,n)=>{const t={i:0,p:e,k:n,H:new Map};return t.T=new Promise((e=>t.C=e)),e["s-p"]=[],e["s-rc"]=[],M.set(e,t)},x=(e,n)=>(0,console.error)(e,n),E=new Map,O=e=>{const n=e.m.replace(/-/g,"_"),t=e.A,l=E.get(t);return l?l[n]:import(`./${t}.entry.js`).then((e=>(E.set(t,e),e[n])),x)
2
- /*!__STENCIL_STATIC_IMPORT_SWITCH__*/},T=new Map,A="undefined"!=typeof window?window:{},H=A.document||{head:{}},L={i:0,j:"",jmp:e=>e(),raf:e=>requestAnimationFrame(e),ael:(e,n,t,l)=>e.addEventListener(n,t,l),rel:(e,n,t,l)=>e.removeEventListener(n,t,l),ce:(e,n)=>new CustomEvent(e,n)},R=e=>Promise.resolve(e),U=(()=>{try{return new CSSStyleSheet,"function"==typeof(new CSSStyleSheet).replaceSync}catch(e){}return!1})(),W=[],q=[],F=(e,n)=>l=>{e.push(l),t||(t=!0,n&&4&L.i?_(V):L.raf(V))},N=e=>{for(let n=0;n<e.length;n++)try{e[n](performance.now())}catch(e){x(e)}e.length=0},V=()=>{N(W),N(q),(t=W.length>0)&&L.raf(V)},_=e=>R().then(e),z=F(q,!0);export{i as H,g as b,s as h,R as p,j as r,k as s}
@@ -1,2 +0,0 @@
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,o){function i(e){try{l(r.next(e))}catch(e){o(e)}}function u(e){try{l(r["throw"](e))}catch(e){o(e)}}function l(e){e.done?t(e.value):a(e.value).then(i,u)}l((r=r.apply(e,n||[])).next())}))};var __generator=this&&this.__generator||function(e,n){var t={label:0,sent:function(){if(o[0]&1)throw o[1];return o[1]},trys:[],ops:[]},r,a,o,i;return i={next:u(0),throw:u(1),return:u(2)},typeof Symbol==="function"&&(i[Symbol.iterator]=function(){return this}),i;function u(e){return function(n){return l([e,n])}}function l(u){if(r)throw new TypeError("Generator is already executing.");while(i&&(i=0,u[0]&&(t=0)),t)try{if(r=1,a&&(o=u[0]&2?a["return"]:u[0]?a["throw"]||((o=a["return"])&&o.call(a),0):a.next)&&!(o=o.call(a,u[1])).done)return o;if(a=0,o)u=[u[0]&2,o.value];switch(u[0]){case 0:case 1:o=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(!(o=t.trys,o=o.length>0&&o[o.length-1])&&(u[0]===6||u[0]===2)){t=0;continue}if(u[0]===3&&(!o||u[1]>o[0]&&u[1]<o[3])){t.label=u[1];break}if(u[0]===6&&t.label<o[1]){t.label=o[1];o=u;break}if(o&&t.label<o[2]){t.label=o[2];t.ops.push(u);break}if(o[2])t.ops.pop();t.trys.pop();continue}u=n.call(e,t)}catch(e){u=[6,e];a=0}finally{r=o=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,o;r<a;r++){if(o||!(r in n)){if(!o)o=Array.prototype.slice.call(n,0,r);o[r]=n[r]}}return e.concat(o||Array.prototype.slice.call(n))};System.register([],(function(e,n){"use strict";return{execute:function(){var t=this;var r="mds-list";var a;var o;var i=false;var u=function(e,n){if(n===void 0){n=""}{return function(){return}}};var l=function(e,n){{return function(){return}}};var s="{visibility:hidden}[hydrated]{visibility:inherit}";var c=function(e){return e!=null};var f=function(e){e=typeof e;return e==="object"||e==="function"};function $(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 v=e("h",(function(e,n){var t=[];for(var r=2;r<arguments.length;r++){t[r-2]=arguments[r]}var a=null;var o=false;var i=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(o=typeof e!=="function"&&!f(a)){a=String(a)}if(o&&i){u[u.length-1].$text$+=a}else{u.push(o?d(null,a):a)}i=o}}};l(t);var s=d(e,null);s.$attrs$=n;if(u.length>0){s.$children$=u}return s}));var d=function(e,n){var t={$flags$:0,$tag$:e,$text$:n,$elm$:null,$children$:null};return t};var h=e("H",{});var p=function(e){return e&&e.$tag$===h};var y=function(e,n,t){var r=ne.ce(n,t);e.dispatchEvent(r);return r};var m=new WeakMap;var g=function(e,n,t){var r=Y.get(e);if(re&&t){r=r||new CSSStyleSheet;if(typeof r==="string"){r=n}else{r.replaceSync(n)}}else{r=n}Y.set(e,r)};var w=function(e,n,t){var r;var a=b(n);var o=Y.get(a);e=e.nodeType===11?e:ee;if(o){if(typeof o==="string"){e=e.head||e;var i=m.get(e);var u=void 0;if(!i){m.set(e,i=new Set)}if(!i.has(a)){{u=ee.createElement("style");u.innerHTML=o;var l=(r=ne.$nonce$)!==null&&r!==void 0?r:$(ee);if(l!=null){u.setAttribute("nonce",l)}e.insertBefore(u,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 _=function(e){var n=e.$cmpMeta$;var t=e.$hostElement$;var r=n.$flags$;var a=u("attachStyles",n.$tagName$);var o=w(t.shadowRoot?t.shadowRoot:t.getRootNode(),n);if(r&10){t["s-sc"]=o;t.classList.add(o+"-h")}a()};var b=function(e,n){return"sc-"+e.$tagName$};var S=function(e,n,t,r){var o=n.$children$[t];var i=0;var u;var l;{u=o.$elm$=ee.createElement(o.$tag$);if(c(a)&&u["s-si"]!==a){u.classList.add(u["s-si"]=a)}if(o.$children$){for(i=0;i<o.$children$.length;++i){l=S(e,o,i);if(l){u.appendChild(l)}}}}return u};var R=function(e,n,t,r,a,i){var u=e;var l;if(u.shadowRoot&&u.tagName===o){u=u.shadowRoot}for(;a<=i;++a){if(r[a]){l=S(null,t,a);if(l){r[a].$elm$=l;u.insertBefore(l,n)}}}};var E=function(e,n){var t=n.$elm$=e.$elm$;var r=n.$children$;{if(r!==null){R(t,null,n,r,0,r.length-1)}else;}};var A=function(e,n,t){if(t===void 0){t=false}var r=e.$hostElement$;var i=e.$vnode$||d(null,null);var u=p(n)?n:v(null,null,n);o=r.tagName;if(t&&u.$attrs$){for(var l=0,s=Object.keys(u.$attrs$);l<s.length;l++){var c=s[l];if(r.hasAttribute(c)&&!["key","ref","style","class"].includes(c)){u.$attrs$[c]=r[c]}}}u.$tag$=null;u.$flags$|=4;e.$vnode$=u;u.$elm$=i.$elm$=r.shadowRoot||r;{a=r["s-sc"]}E(i,u)};var N=function(e,n){if(n&&!e.$onRenderResolve$&&n["s-p"]){n["s-p"].push(new Promise((function(n){return e.$onRenderResolve$=n})))}};var C=function(e,n){if(e.$flags$&4){e.$flags$|=512;return}N(e,e.$ancestorComponent$);var t=function(){return M(e,n)};return ce(t)};var M=function(e,n){var t=u("scheduleUpdate",e.$cmpMeta$.$tagName$);var r=e.$lazyInstance$;var a;t();return k(a,(function(){return P(e,r,n)}))};var k=function(e,n){return x(e)?e.then(n):n()};var x=function(e){return e instanceof Promise||e&&e.then&&typeof e.then==="function"};var P=function(e,n,r){return __awaiter(t,void 0,void 0,(function(){var t,a,o,i,l,s,c;return __generator(this,(function(f){a=e.$hostElement$;o=u("update",e.$cmpMeta$.$tagName$);i=a["s-rc"];if(r){_(e)}l=u("render",e.$cmpMeta$.$tagName$);{j(e,n,a,r)}if(i){i.map((function(e){return e()}));a["s-rc"]=undefined}l();o();{s=(t=a["s-p"])!==null&&t!==void 0?t:[];c=function(){return I(e)};if(s.length===0){c()}else{Promise.all(s).then(c);e.$flags$|=4;s.length=0}}return[2]}))}))};var j=function(e,n,t,r){try{n=n.render();{e.$flags$|=2}{{{A(e,n,r)}}}}catch(n){K(n,e.$hostElement$)}return null};var I=function(e){var n=e.$cmpMeta$.$tagName$;var t=e.$hostElement$;var r=u("postUpdate",n);var a=e.$ancestorComponent$;if(!(e.$flags$&64)){e.$flags$|=64;{O(t)}r();{e.$onReadyResolve$(t);if(!a){L()}}}else{r()}{if(e.$onRenderResolve$){e.$onRenderResolve$();e.$onRenderResolve$=undefined}if(e.$flags$&512){se((function(){return C(e,false)}))}e.$flags$&=~(4|512)}};var L=function(e){{O(ee.documentElement)}se((function(){return y(Z,"appload",{detail:{namespace:r}})}))};var O=function(e){return e.setAttribute("hydrated","")};var T=function(e,n,t){return e};var U=function(e,n,r,a,o){return __awaiter(t,void 0,void 0,(function(){var e,t,a,i,s,c,f;return __generator(this,(function($){switch($.label){case 0:if(!((n.$flags$&32)===0))return[3,3];n.$flags$|=32;o=X(r);if(!o.then)return[3,2];e=l();return[4,o];case 1:o=$.sent();e();$.label=2;case 2:t=u("createInstance",r.$tagName$);try{new o(n)}catch(e){K(e)}t();if(o.style){a=o.style;i=b(r);if(!Y.has(i)){s=u("registerStyles",r.$tagName$);g(i,a,!!(r.$flags$&1));s()}}$.label=3;case 3:c=n.$ancestorComponent$;f=function(){return C(n,true)};if(c&&c["s-rc"]){c["s-rc"].push(f)}else{f()}return[2]}}))}))};var z=function(e){};var B=function(e){if((ne.$flags$&1)===0){var n=V(e);var t=n.$cmpMeta$;var r=u("connectedCallback",t.$tagName$);if(!(n.$flags$&1)){n.$flags$|=1;{var a=e;while(a=a.parentNode||a.host){if(a["s-p"]){N(n,n.$ancestorComponent$=a);break}}}{U(e,n,t)}}else{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 z()}))}}r()}};var q=function(e){};var H=function(e){return __awaiter(t,void 0,void 0,(function(){var n;return __generator(this,(function(t){if((ne.$flags$&1)===0){n=V(e);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()}))}}return[2]}))}))};var W=e("b",(function(e,n){if(n===void 0){n={}}var t;var r=u();var a=[];var o=n.exclude||[];var i=Z.customElements;var l=ee.head;var c=l.querySelector("meta[charset]");var f=ee.createElement("style");var v=[];var d;var h=true;Object.assign(ne,n);ne.$resourcesUrl$=new URL(n.resourcesUrl||"./",ee.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]};var r=t.$tagName$;var u=function(e){__extends(n,e);function n(n){var r=e.call(this,n)||this;n=r;J(n,t);if(t.$flags$&1){{{n.attachShadow({mode:"open"})}}}return r}n.prototype.connectedCallback=function(){var e=this;if(d){clearTimeout(d);d=null}if(h){v.push(this)}else{ne.jmp((function(){return B(e)}))}};n.prototype.disconnectedCallback=function(){var e=this;ne.jmp((function(){return H(e)}))};n.prototype.componentOnReady=function(){return V(this).$onReadyPromise$};return n}(HTMLElement);t.$lazyBundleId$=e[0];if(!o.includes(r)&&!i.get(r)){a.push(r);i.define(r,T(u))}}))}));{f.innerHTML=a+s;f.setAttribute("data-styles","");var p=(t=ne.$nonce$)!==null&&t!==void 0?t:$(ee);if(p!=null){f.setAttribute("nonce",p)}l.insertBefore(f,c?c.nextSibling:l.firstChild)}h=false;if(v.length){v.map((function(e){return e.connectedCallback()}))}else{{ne.jmp((function(){return d=setTimeout(L,30)}))}}r()}));var F=e("s",(function(e){return ne.$nonce$=e}));var G=new WeakMap;var V=function(e){return G.get(e)};var D=e("r",(function(e,n){return G.set(n.$lazyInstance$=e,n)}));var J=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"]=[]}return G.set(e,t)};var K=function(e,n){return(0,console.error)(e,n)};var Q=new Map;var X=function(e,t,r){var a=e.$tagName$.replace(/-/g,"_");var o=e.$lazyBundleId$;var i=Q.get(o);if(i){return i[a]}
2
- /*!__STENCIL_STATIC_IMPORT_SWITCH__*/return n.import("./".concat(o,".entry.js").concat("")).then((function(e){{Q.set(o,e)}return e[a]}),K)};var Y=new Map;var Z=typeof window!=="undefined"?window:{};var ee=Z.document||{head:{}};var ne={$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 te=e("p",(function(e){return Promise.resolve(e)}));var re=function(){try{new CSSStyleSheet;return typeof(new CSSStyleSheet).replaceSync==="function"}catch(e){}return false}();var ae=[];var oe=[];var ie=function(e,n){return function(t){e.push(t);if(!i){i=true;if(n&&ne.$flags$&4){se(le)}else{ne.raf(le)}}}};var ue=function(e){for(var n=0;n<e.length;n++){try{e[n](performance.now())}catch(e){K(e)}}e.length=0};var le=function(){ue(ae);{ue(oe);if(i=ae.length>0){ne.raf(le)}}};var se=function(e){return te().then(e)};var ce=ie(oe,true)}}}));
@@ -1 +0,0 @@
1
- System.register(["./p-39e961ff.system.js"],(function(e,t){"use strict";var r,s;return{setters:[function(t){r=t.p;s=t.b;e("setNonce",t.s)}],execute:function(){var e=function(){var e=t.meta.url;var s={};if(e!==""){s.resourcesUrl=new URL(".",e).href}return r(s)};e().then((function(e){return s([["p-f2f76a70.system",[[1,"mds-list"]]]],e)}))}}}));
@@ -1,2 +0,0 @@
1
- let e,n,t=!1;const l=e=>"object"==(e=typeof e)||"function"===e;function o(e){var n,t,l;return null!==(l=null===(t=null===(n=e.head)||void 0===n?void 0:n.querySelector('meta[name="csp-nonce"]'))||void 0===t?void 0:t.getAttribute("content"))&&void 0!==l?l:void 0}const s=(e,n,...t)=>{let o=null,s=!1,i=!1;const r=[],a=n=>{for(let t=0;t<n.length;t++)o=n[t],Array.isArray(o)?a(o):null!=o&&"boolean"!=typeof o&&((s="function"!=typeof e&&!l(o))&&(o+=""),s&&i?r[r.length-1].t+=o:r.push(s?c(null,o):o),i=s)};a(t);const u=c(e,null);return u.l=n,r.length>0&&(u.o=r),u},c=(e,n)=>({i:0,u:e,t:n,$:null,o:null}),i={},r=new WeakMap,a=e=>"sc-"+e.m,u=(n,t,l)=>{const o=t.o[l];let s,c,i=0;if(s=o.$=H.createElement(o.u),null!=e&&s["s-si"]!==e&&s.classList.add(s["s-si"]=e),o.o)for(i=0;i<o.o.length;++i)c=u(n,o,i),c&&s.appendChild(c);return s},f=(t,l,o=!1)=>{const r=t.p,a=t.v||c(null,null),f=(e=>e&&e.u===i)(l)?l:s(null,null,l);if(n=r.tagName,o&&f.l)for(const e of Object.keys(f.l))r.hasAttribute(e)&&!["key","ref","style","class"].includes(e)&&(f.l[e]=r[e]);f.u=null,f.i|=4,t.v=f,f.$=a.$=r.shadowRoot||r,e=r["s-sc"],((e,t)=>{const l=t.$=e.$,o=t.o;null!==o&&((e,t,l,o,s,c)=>{let i,r=e;for(r.shadowRoot&&r.tagName===n&&(r=r.shadowRoot);s<=c;++s)o[s]&&(i=u(null,l,s),i&&(o[s].$=i,r.insertBefore(i,null)))})(l,0,t,o,0,o.length-1)})(a,f)},d=(e,n)=>{n&&!e.h&&n["s-p"]&&n["s-p"].push(new Promise((n=>e.h=n)))},$=(e,n)=>{if(!(4&e.i))return d(e,e.S),z((()=>y(e,n)));e.i|=512},y=(e,n)=>{const t=e.g;return m(void 0,(()=>v(e,t,n)))},m=(e,n)=>p(e)?e.then(n):n(),p=e=>e instanceof Promise||e&&e.then&&"function"==typeof e.then,v=async(e,n,t)=>{var l;const s=e.p,c=s["s-rc"];t&&(e=>{const n=e.k,t=e.p,l=n.i,s=((e,n)=>{var t;const l=a(n),s=T.get(l);if(e=11===e.nodeType?e:H,s)if("string"==typeof s){let n,c=r.get(e=e.head||e);if(c||r.set(e,c=new Set),!c.has(l)){{n=H.createElement("style"),n.innerHTML=s;const l=null!==(t=L.M)&&void 0!==t?t:o(H);null!=l&&n.setAttribute("nonce",l),e.insertBefore(n,e.querySelector("link"))}c&&c.add(l)}}else e.adoptedStyleSheets.includes(s)||(e.adoptedStyleSheets=[...e.adoptedStyleSheets,s]);return l})(t.shadowRoot?t.shadowRoot:t.getRootNode(),n);10&l&&(t["s-sc"]=s,t.classList.add(s+"-h"))})(e);h(e,n,s,t),c&&(c.map((e=>e())),s["s-rc"]=void 0);{const n=null!==(l=s["s-p"])&&void 0!==l?l:[],t=()=>w(e);0===n.length?t():(Promise.all(n).then(t),e.i|=4,n.length=0)}},h=(e,n,t,l)=>{try{n=n.render(),e.i|=2,f(e,n,l)}catch(n){x(n,e.p)}return null},w=e=>{const n=e.p,t=e.S;64&e.i||(e.i|=64,b(n),e.C(n),t||S()),e.h&&(e.h(),e.h=void 0),512&e.i&&_((()=>$(e,!1))),e.i&=-517},S=()=>{b(H.documentElement),_((()=>(e=>{const n=L.ce("appload",{detail:{namespace:"mds-list"}});return e.dispatchEvent(n),n})(A)))},b=e=>e.setAttribute("hydrated",""),g=(e,n={})=>{var t;const l=[],s=n.exclude||[],c=A.customElements,i=H.head,r=i.querySelector("meta[charset]"),u=H.createElement("style"),f=[];let y,m=!0;Object.assign(L,n),L.j=new URL(n.resourcesUrl||"./",H.baseURI).href,e.map((e=>{e[1].map((n=>{const t={i:n[0],m:n[1],P:n[2],O:n[3]},o=t.m,i=class extends HTMLElement{constructor(e){super(e),P(e=this,t),1&t.i&&e.attachShadow({mode:"open"})}connectedCallback(){y&&(clearTimeout(y),y=null),m?f.push(this):L.jmp((()=>(e=>{if(0==(1&L.i)){const n=C(e),t=n.k,l=()=>{};if(1&n.i)(null==n?void 0:n.g)||(null==n?void 0:n.T)&&n.T.then((()=>{}));else{n.i|=1;{let t=e;for(;t=t.parentNode||t.host;)if(t["s-p"]){d(n,n.S=t);break}}(async(e,n,t,l,o)=>{if(0==(32&n.i)){n.i|=32;{if((o=O(t)).then){const e=()=>{};o=await o,e()}const e=()=>{};try{new o(n)}catch(e){x(e)}e()}if(o.style){let e=o.style;const n=a(t);if(!T.has(n)){const l=()=>{};((e,n,t)=>{let l=T.get(e);U&&t?(l=l||new CSSStyleSheet,"string"==typeof l?l=n:l.replaceSync(n)):l=n,T.set(e,l)})(n,e,!!(1&t.i)),l()}}}const s=n.S,c=()=>$(n,!0);s&&s["s-rc"]?s["s-rc"].push(c):c()})(0,n,t)}l()}})(this)))}disconnectedCallback(){L.jmp((()=>(async()=>{if(0==(1&L.i)){const e=C(this);(null==e?void 0:e.g)||(null==e?void 0:e.T)&&e.T.then((()=>{}))}})()))}componentOnReady(){return C(this).T}};t.A=e[0],s.includes(o)||c.get(o)||(l.push(o),c.define(o,i))}))}));{u.innerHTML=l+"{visibility:hidden}[hydrated]{visibility:inherit}",u.setAttribute("data-styles","");const e=null!==(t=L.M)&&void 0!==t?t:o(H);null!=e&&u.setAttribute("nonce",e),i.insertBefore(u,r?r.nextSibling:i.firstChild)}m=!1,f.length?f.map((e=>e.connectedCallback())):L.jmp((()=>y=setTimeout(S,30)))},k=e=>L.M=e,M=new WeakMap,C=e=>M.get(e),j=(e,n)=>M.set(n.g=e,n),P=(e,n)=>{const t={i:0,p:e,k:n,H:new Map};return t.T=new Promise((e=>t.C=e)),e["s-p"]=[],e["s-rc"]=[],M.set(e,t)},x=(e,n)=>(0,console.error)(e,n),E=new Map,O=e=>{const n=e.m.replace(/-/g,"_"),t=e.A,l=E.get(t);return l?l[n]:import(`./${t}.entry.js`).then((e=>(E.set(t,e),e[n])),x)
2
- /*!__STENCIL_STATIC_IMPORT_SWITCH__*/},T=new Map,A="undefined"!=typeof window?window:{},H=A.document||{head:{}},L={i:0,j:"",jmp:e=>e(),raf:e=>requestAnimationFrame(e),ael:(e,n,t,l)=>e.addEventListener(n,t,l),rel:(e,n,t,l)=>e.removeEventListener(n,t,l),ce:(e,n)=>new CustomEvent(e,n)},R=e=>Promise.resolve(e),U=(()=>{try{return new CSSStyleSheet,"function"==typeof(new CSSStyleSheet).replaceSync}catch(e){}return!1})(),W=[],q=[],F=(e,n)=>l=>{e.push(l),t||(t=!0,n&&4&L.i?_(V):L.raf(V))},N=e=>{for(let n=0;n<e.length;n++)try{e[n](performance.now())}catch(e){x(e)}e.length=0},V=()=>{N(W),N(q),(t=W.length>0)&&L.raf(V)},_=e=>R().then(e),z=F(q,!0);export{i as H,g as b,s as h,R as p,j as r,k as s}
@@ -1,2 +0,0 @@
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,o){function i(e){try{l(r.next(e))}catch(e){o(e)}}function u(e){try{l(r["throw"](e))}catch(e){o(e)}}function l(e){e.done?t(e.value):a(e.value).then(i,u)}l((r=r.apply(e,n||[])).next())}))};var __generator=this&&this.__generator||function(e,n){var t={label:0,sent:function(){if(o[0]&1)throw o[1];return o[1]},trys:[],ops:[]},r,a,o,i;return i={next:u(0),throw:u(1),return:u(2)},typeof Symbol==="function"&&(i[Symbol.iterator]=function(){return this}),i;function u(e){return function(n){return l([e,n])}}function l(u){if(r)throw new TypeError("Generator is already executing.");while(i&&(i=0,u[0]&&(t=0)),t)try{if(r=1,a&&(o=u[0]&2?a["return"]:u[0]?a["throw"]||((o=a["return"])&&o.call(a),0):a.next)&&!(o=o.call(a,u[1])).done)return o;if(a=0,o)u=[u[0]&2,o.value];switch(u[0]){case 0:case 1:o=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(!(o=t.trys,o=o.length>0&&o[o.length-1])&&(u[0]===6||u[0]===2)){t=0;continue}if(u[0]===3&&(!o||u[1]>o[0]&&u[1]<o[3])){t.label=u[1];break}if(u[0]===6&&t.label<o[1]){t.label=o[1];o=u;break}if(o&&t.label<o[2]){t.label=o[2];t.ops.push(u);break}if(o[2])t.ops.pop();t.trys.pop();continue}u=n.call(e,t)}catch(e){u=[6,e];a=0}finally{r=o=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,o;r<a;r++){if(o||!(r in n)){if(!o)o=Array.prototype.slice.call(n,0,r);o[r]=n[r]}}return e.concat(o||Array.prototype.slice.call(n))};System.register([],(function(e,n){"use strict";return{execute:function(){var t=this;var r="mds-list";var a;var o;var i=false;var u=function(e,n){if(n===void 0){n=""}{return function(){return}}};var l=function(e,n){{return function(){return}}};var s="{visibility:hidden}[hydrated]{visibility:inherit}";var c=function(e){return e!=null};var f=function(e){e=typeof e;return e==="object"||e==="function"};function $(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 v=e("h",(function(e,n){var t=[];for(var r=2;r<arguments.length;r++){t[r-2]=arguments[r]}var a=null;var o=false;var i=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(o=typeof e!=="function"&&!f(a)){a=String(a)}if(o&&i){u[u.length-1].$text$+=a}else{u.push(o?d(null,a):a)}i=o}}};l(t);var s=d(e,null);s.$attrs$=n;if(u.length>0){s.$children$=u}return s}));var d=function(e,n){var t={$flags$:0,$tag$:e,$text$:n,$elm$:null,$children$:null};return t};var h=e("H",{});var p=function(e){return e&&e.$tag$===h};var y=function(e,n,t){var r=ne.ce(n,t);e.dispatchEvent(r);return r};var m=new WeakMap;var g=function(e,n,t){var r=Y.get(e);if(re&&t){r=r||new CSSStyleSheet;if(typeof r==="string"){r=n}else{r.replaceSync(n)}}else{r=n}Y.set(e,r)};var w=function(e,n,t){var r;var a=b(n);var o=Y.get(a);e=e.nodeType===11?e:ee;if(o){if(typeof o==="string"){e=e.head||e;var i=m.get(e);var u=void 0;if(!i){m.set(e,i=new Set)}if(!i.has(a)){{u=ee.createElement("style");u.innerHTML=o;var l=(r=ne.$nonce$)!==null&&r!==void 0?r:$(ee);if(l!=null){u.setAttribute("nonce",l)}e.insertBefore(u,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 _=function(e){var n=e.$cmpMeta$;var t=e.$hostElement$;var r=n.$flags$;var a=u("attachStyles",n.$tagName$);var o=w(t.shadowRoot?t.shadowRoot:t.getRootNode(),n);if(r&10){t["s-sc"]=o;t.classList.add(o+"-h")}a()};var b=function(e,n){return"sc-"+e.$tagName$};var S=function(e,n,t,r){var o=n.$children$[t];var i=0;var u;var l;{u=o.$elm$=ee.createElement(o.$tag$);if(c(a)&&u["s-si"]!==a){u.classList.add(u["s-si"]=a)}if(o.$children$){for(i=0;i<o.$children$.length;++i){l=S(e,o,i);if(l){u.appendChild(l)}}}}return u};var R=function(e,n,t,r,a,i){var u=e;var l;if(u.shadowRoot&&u.tagName===o){u=u.shadowRoot}for(;a<=i;++a){if(r[a]){l=S(null,t,a);if(l){r[a].$elm$=l;u.insertBefore(l,n)}}}};var E=function(e,n){var t=n.$elm$=e.$elm$;var r=n.$children$;{if(r!==null){R(t,null,n,r,0,r.length-1)}else;}};var A=function(e,n,t){if(t===void 0){t=false}var r=e.$hostElement$;var i=e.$vnode$||d(null,null);var u=p(n)?n:v(null,null,n);o=r.tagName;if(t&&u.$attrs$){for(var l=0,s=Object.keys(u.$attrs$);l<s.length;l++){var c=s[l];if(r.hasAttribute(c)&&!["key","ref","style","class"].includes(c)){u.$attrs$[c]=r[c]}}}u.$tag$=null;u.$flags$|=4;e.$vnode$=u;u.$elm$=i.$elm$=r.shadowRoot||r;{a=r["s-sc"]}E(i,u)};var N=function(e,n){if(n&&!e.$onRenderResolve$&&n["s-p"]){n["s-p"].push(new Promise((function(n){return e.$onRenderResolve$=n})))}};var C=function(e,n){if(e.$flags$&4){e.$flags$|=512;return}N(e,e.$ancestorComponent$);var t=function(){return M(e,n)};return ce(t)};var M=function(e,n){var t=u("scheduleUpdate",e.$cmpMeta$.$tagName$);var r=e.$lazyInstance$;var a;t();return k(a,(function(){return P(e,r,n)}))};var k=function(e,n){return x(e)?e.then(n):n()};var x=function(e){return e instanceof Promise||e&&e.then&&typeof e.then==="function"};var P=function(e,n,r){return __awaiter(t,void 0,void 0,(function(){var t,a,o,i,l,s,c;return __generator(this,(function(f){a=e.$hostElement$;o=u("update",e.$cmpMeta$.$tagName$);i=a["s-rc"];if(r){_(e)}l=u("render",e.$cmpMeta$.$tagName$);{j(e,n,a,r)}if(i){i.map((function(e){return e()}));a["s-rc"]=undefined}l();o();{s=(t=a["s-p"])!==null&&t!==void 0?t:[];c=function(){return I(e)};if(s.length===0){c()}else{Promise.all(s).then(c);e.$flags$|=4;s.length=0}}return[2]}))}))};var j=function(e,n,t,r){try{n=n.render();{e.$flags$|=2}{{{A(e,n,r)}}}}catch(n){K(n,e.$hostElement$)}return null};var I=function(e){var n=e.$cmpMeta$.$tagName$;var t=e.$hostElement$;var r=u("postUpdate",n);var a=e.$ancestorComponent$;if(!(e.$flags$&64)){e.$flags$|=64;{O(t)}r();{e.$onReadyResolve$(t);if(!a){L()}}}else{r()}{if(e.$onRenderResolve$){e.$onRenderResolve$();e.$onRenderResolve$=undefined}if(e.$flags$&512){se((function(){return C(e,false)}))}e.$flags$&=~(4|512)}};var L=function(e){{O(ee.documentElement)}se((function(){return y(Z,"appload",{detail:{namespace:r}})}))};var O=function(e){return e.setAttribute("hydrated","")};var T=function(e,n,t){return e};var U=function(e,n,r,a,o){return __awaiter(t,void 0,void 0,(function(){var e,t,a,i,s,c,f;return __generator(this,(function($){switch($.label){case 0:if(!((n.$flags$&32)===0))return[3,3];n.$flags$|=32;o=X(r);if(!o.then)return[3,2];e=l();return[4,o];case 1:o=$.sent();e();$.label=2;case 2:t=u("createInstance",r.$tagName$);try{new o(n)}catch(e){K(e)}t();if(o.style){a=o.style;i=b(r);if(!Y.has(i)){s=u("registerStyles",r.$tagName$);g(i,a,!!(r.$flags$&1));s()}}$.label=3;case 3:c=n.$ancestorComponent$;f=function(){return C(n,true)};if(c&&c["s-rc"]){c["s-rc"].push(f)}else{f()}return[2]}}))}))};var z=function(e){};var B=function(e){if((ne.$flags$&1)===0){var n=V(e);var t=n.$cmpMeta$;var r=u("connectedCallback",t.$tagName$);if(!(n.$flags$&1)){n.$flags$|=1;{var a=e;while(a=a.parentNode||a.host){if(a["s-p"]){N(n,n.$ancestorComponent$=a);break}}}{U(e,n,t)}}else{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 z()}))}}r()}};var q=function(e){};var H=function(e){return __awaiter(t,void 0,void 0,(function(){var n;return __generator(this,(function(t){if((ne.$flags$&1)===0){n=V(e);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()}))}}return[2]}))}))};var W=e("b",(function(e,n){if(n===void 0){n={}}var t;var r=u();var a=[];var o=n.exclude||[];var i=Z.customElements;var l=ee.head;var c=l.querySelector("meta[charset]");var f=ee.createElement("style");var v=[];var d;var h=true;Object.assign(ne,n);ne.$resourcesUrl$=new URL(n.resourcesUrl||"./",ee.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]};var r=t.$tagName$;var u=function(e){__extends(n,e);function n(n){var r=e.call(this,n)||this;n=r;J(n,t);if(t.$flags$&1){{{n.attachShadow({mode:"open"})}}}return r}n.prototype.connectedCallback=function(){var e=this;if(d){clearTimeout(d);d=null}if(h){v.push(this)}else{ne.jmp((function(){return B(e)}))}};n.prototype.disconnectedCallback=function(){var e=this;ne.jmp((function(){return H(e)}))};n.prototype.componentOnReady=function(){return V(this).$onReadyPromise$};return n}(HTMLElement);t.$lazyBundleId$=e[0];if(!o.includes(r)&&!i.get(r)){a.push(r);i.define(r,T(u))}}))}));{f.innerHTML=a+s;f.setAttribute("data-styles","");var p=(t=ne.$nonce$)!==null&&t!==void 0?t:$(ee);if(p!=null){f.setAttribute("nonce",p)}l.insertBefore(f,c?c.nextSibling:l.firstChild)}h=false;if(v.length){v.map((function(e){return e.connectedCallback()}))}else{{ne.jmp((function(){return d=setTimeout(L,30)}))}}r()}));var F=e("s",(function(e){return ne.$nonce$=e}));var G=new WeakMap;var V=function(e){return G.get(e)};var D=e("r",(function(e,n){return G.set(n.$lazyInstance$=e,n)}));var J=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"]=[]}return G.set(e,t)};var K=function(e,n){return(0,console.error)(e,n)};var Q=new Map;var X=function(e,t,r){var a=e.$tagName$.replace(/-/g,"_");var o=e.$lazyBundleId$;var i=Q.get(o);if(i){return i[a]}
2
- /*!__STENCIL_STATIC_IMPORT_SWITCH__*/return n.import("./".concat(o,".entry.js").concat("")).then((function(e){{Q.set(o,e)}return e[a]}),K)};var Y=new Map;var Z=typeof window!=="undefined"?window:{};var ee=Z.document||{head:{}};var ne={$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 te=e("p",(function(e){return Promise.resolve(e)}));var re=function(){try{new CSSStyleSheet;return typeof(new CSSStyleSheet).replaceSync==="function"}catch(e){}return false}();var ae=[];var oe=[];var ie=function(e,n){return function(t){e.push(t);if(!i){i=true;if(n&&ne.$flags$&4){se(le)}else{ne.raf(le)}}}};var ue=function(e){for(var n=0;n<e.length;n++){try{e[n](performance.now())}catch(e){K(e)}}e.length=0};var le=function(){ue(ae);{ue(oe);if(i=ae.length>0){ne.raf(le)}}};var se=function(e){return te().then(e)};var ce=ie(oe,true)}}}));
@@ -1 +0,0 @@
1
- System.register(["./p-39e961ff.system.js"],(function(e,t){"use strict";var r,s;return{setters:[function(t){r=t.p;s=t.b;e("setNonce",t.s)}],execute:function(){var e=function(){var e=t.meta.url;var s={};if(e!==""){s.resourcesUrl=new URL(".",e).href}return r(s)};e().then((function(e){return s([["p-f2f76a70.system",[[1,"mds-list"]]]],e)}))}}}));