@maggioli-design-system/mds-list 3.5.0 → 3.6.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/{index-9c256f25.js → index-eed6e3cd.js} +31 -6
- package/dist/cjs/loader.cjs.js +1 -1
- package/dist/cjs/mds-list.cjs.entry.js +1 -1
- package/dist/cjs/mds-list.cjs.js +2 -2
- package/dist/collection/collection-manifest.json +1 -1
- package/dist/documentation.json +2 -2
- package/dist/esm/{index-91cc404a.js → index-f9ba0199.js} +31 -6
- package/dist/esm/loader.js +2 -2
- package/dist/esm/mds-list.entry.js +1 -1
- package/dist/esm/mds-list.js +3 -3
- package/dist/esm-es5/index-f9ba0199.js +1 -0
- package/dist/esm-es5/loader.js +1 -1
- package/dist/esm-es5/mds-list.entry.js +1 -1
- package/dist/esm-es5/mds-list.js +1 -1
- package/dist/mds-list/mds-list.esm.js +1 -1
- package/dist/mds-list/mds-list.js +1 -1
- package/dist/mds-list/{p-8bf8e6ee.system.entry.js → p-0498e110.system.entry.js} +1 -1
- package/dist/mds-list/{p-6405aac0.entry.js → p-11d0c9eb.entry.js} +1 -1
- package/dist/mds-list/p-4d396277.system.js +1 -0
- package/dist/mds-list/p-b1d4af82.js +2 -0
- package/dist/mds-list/p-ffc044a5.system.js +2 -0
- package/dist/stats.json +24 -24
- package/documentation.json +2 -2
- package/package.json +4 -4
- package/www/build/mds-list.esm.js +1 -1
- package/www/build/mds-list.js +1 -1
- package/www/build/{p-8bf8e6ee.system.entry.js → p-0498e110.system.entry.js} +1 -1
- package/www/build/{p-6405aac0.entry.js → p-11d0c9eb.entry.js} +1 -1
- package/www/build/p-4d396277.system.js +1 -0
- package/www/build/p-b1d4af82.js +2 -0
- package/www/build/p-ffc044a5.system.js +2 -0
- package/dist/esm-es5/index-91cc404a.js +0 -1
- package/dist/mds-list/p-5ca4f187.system.js +0 -2
- package/dist/mds-list/p-b6cf7a75.js +0 -2
- package/dist/mds-list/p-f85753c1.system.js +0 -1
- package/www/build/p-5ca4f187.system.js +0 -2
- package/www/build/p-b6cf7a75.js +0 -2
- package/www/build/p-f85753c1.system.js +0 -1
|
@@ -48,6 +48,13 @@ const uniqueTime = (key, measureText) => {
|
|
|
48
48
|
}
|
|
49
49
|
};
|
|
50
50
|
const HYDRATED_CSS = '{visibility:hidden}[hydrated]{visibility:inherit}';
|
|
51
|
+
/**
|
|
52
|
+
* Constant for styles to be globally applied to `slot-fb` elements for pseudo-slot behavior.
|
|
53
|
+
*
|
|
54
|
+
* Two cascading rules must be used instead of a `:not()` selector due to Stencil browser
|
|
55
|
+
* support as of Stencil v4.
|
|
56
|
+
*/
|
|
57
|
+
const SLOT_FB_CSS = 'slot-fb{display:contents}slot-fb[hidden]{display:none}';
|
|
51
58
|
const isDef = (v) => v != null;
|
|
52
59
|
/**
|
|
53
60
|
* Check whether a value is a 'complex type', defined here as an object or a
|
|
@@ -199,6 +206,10 @@ const addStyle = (styleContainerNode, cmpMeta, mode) => {
|
|
|
199
206
|
}
|
|
200
207
|
styleContainerNode.insertBefore(styleElm, styleContainerNode.querySelector('link'));
|
|
201
208
|
}
|
|
209
|
+
// Add styles for `slot-fb` elements if we're using slots outside the Shadow DOM
|
|
210
|
+
if (cmpMeta.$flags$ & 4 /* CMP_FLAGS.hasSlotRelocation */) {
|
|
211
|
+
styleElm.innerHTML += SLOT_FB_CSS;
|
|
212
|
+
}
|
|
202
213
|
if (appliedStyles) {
|
|
203
214
|
appliedStyles.add(scopeId);
|
|
204
215
|
}
|
|
@@ -716,12 +727,13 @@ const bootstrapLazy = (lazyBundles, options = {}) => {
|
|
|
716
727
|
const customElements = win.customElements;
|
|
717
728
|
const head = doc.head;
|
|
718
729
|
const metaCharset = /*@__PURE__*/ head.querySelector('meta[charset]');
|
|
719
|
-
const
|
|
730
|
+
const dataStyles = /*@__PURE__*/ doc.createElement('style');
|
|
720
731
|
const deferredConnectedCallbacks = [];
|
|
721
732
|
let appLoadFallback;
|
|
722
733
|
let isBootstrapping = true;
|
|
723
734
|
Object.assign(plt, options);
|
|
724
735
|
plt.$resourcesUrl$ = new URL(options.resourcesUrl || './', doc.baseURI).href;
|
|
736
|
+
let hasSlotRelocation = false;
|
|
725
737
|
lazyBundles.map((lazyBundle) => {
|
|
726
738
|
lazyBundle[1].map((compactMeta) => {
|
|
727
739
|
const cmpMeta = {
|
|
@@ -730,6 +742,11 @@ const bootstrapLazy = (lazyBundles, options = {}) => {
|
|
|
730
742
|
$members$: compactMeta[2],
|
|
731
743
|
$listeners$: compactMeta[3],
|
|
732
744
|
};
|
|
745
|
+
// Check if we are using slots outside the shadow DOM in this component.
|
|
746
|
+
// We'll use this information later to add styles for `slot-fb` elements
|
|
747
|
+
if (cmpMeta.$flags$ & 4 /* CMP_FLAGS.hasSlotRelocation */) {
|
|
748
|
+
hasSlotRelocation = true;
|
|
749
|
+
}
|
|
733
750
|
const tagName = cmpMeta.$tagName$;
|
|
734
751
|
const HostElement = class extends HTMLElement {
|
|
735
752
|
// StencilLazyHost
|
|
@@ -777,15 +794,23 @@ const bootstrapLazy = (lazyBundles, options = {}) => {
|
|
|
777
794
|
}
|
|
778
795
|
});
|
|
779
796
|
});
|
|
797
|
+
// Add styles for `slot-fb` elements if any of our components are using slots outside the Shadow DOM
|
|
798
|
+
if (hasSlotRelocation) {
|
|
799
|
+
dataStyles.innerHTML += SLOT_FB_CSS;
|
|
800
|
+
}
|
|
801
|
+
// Add hydration styles
|
|
780
802
|
{
|
|
781
|
-
|
|
782
|
-
|
|
803
|
+
dataStyles.innerHTML += cmpTags + HYDRATED_CSS;
|
|
804
|
+
}
|
|
805
|
+
// If we have styles, add them to the DOM
|
|
806
|
+
if (dataStyles.innerHTML.length) {
|
|
807
|
+
dataStyles.setAttribute('data-styles', '');
|
|
808
|
+
head.insertBefore(dataStyles, metaCharset ? metaCharset.nextSibling : head.firstChild);
|
|
783
809
|
// Apply CSP nonce to the style tag if it exists
|
|
784
810
|
const nonce = (_a = plt.$nonce$) !== null && _a !== void 0 ? _a : queryNonceMetaTagContent(doc);
|
|
785
811
|
if (nonce != null) {
|
|
786
|
-
|
|
812
|
+
dataStyles.setAttribute('nonce', nonce);
|
|
787
813
|
}
|
|
788
|
-
head.insertBefore(visibilityStyle, metaCharset ? metaCharset.nextSibling : head.firstChild);
|
|
789
814
|
}
|
|
790
815
|
// Process deferred connectedCallbacks now all components have been registered
|
|
791
816
|
isBootstrapping = false;
|
|
@@ -949,7 +974,7 @@ const flush = () => {
|
|
|
949
974
|
}
|
|
950
975
|
}
|
|
951
976
|
};
|
|
952
|
-
const nextTick =
|
|
977
|
+
const nextTick = (cb) => promiseResolve().then(cb);
|
|
953
978
|
const writeTask = /*@__PURE__*/ queueTask(queueDomWrites, true);
|
|
954
979
|
|
|
955
980
|
exports.Host = Host;
|
package/dist/cjs/loader.cjs.js
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
|
-
const index = require('./index-
|
|
5
|
+
const index = require('./index-eed6e3cd.js');
|
|
6
6
|
|
|
7
7
|
const defineCustomElements = (win, options) => {
|
|
8
8
|
if (typeof window === 'undefined') return undefined;
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
|
-
const index = require('./index-
|
|
5
|
+
const index = require('./index-eed6e3cd.js');
|
|
6
6
|
|
|
7
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
|
|
package/dist/cjs/mds-list.cjs.js
CHANGED
|
@@ -2,10 +2,10 @@
|
|
|
2
2
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
|
-
const index = require('./index-
|
|
5
|
+
const index = require('./index-eed6e3cd.js');
|
|
6
6
|
|
|
7
7
|
/*
|
|
8
|
-
Stencil Client Patch Browser v4.7.
|
|
8
|
+
Stencil Client Patch Browser v4.7.2 | 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));
|
package/dist/documentation.json
CHANGED
|
@@ -26,6 +26,13 @@ const uniqueTime = (key, measureText) => {
|
|
|
26
26
|
}
|
|
27
27
|
};
|
|
28
28
|
const HYDRATED_CSS = '{visibility:hidden}[hydrated]{visibility:inherit}';
|
|
29
|
+
/**
|
|
30
|
+
* Constant for styles to be globally applied to `slot-fb` elements for pseudo-slot behavior.
|
|
31
|
+
*
|
|
32
|
+
* Two cascading rules must be used instead of a `:not()` selector due to Stencil browser
|
|
33
|
+
* support as of Stencil v4.
|
|
34
|
+
*/
|
|
35
|
+
const SLOT_FB_CSS = 'slot-fb{display:contents}slot-fb[hidden]{display:none}';
|
|
29
36
|
const isDef = (v) => v != null;
|
|
30
37
|
/**
|
|
31
38
|
* Check whether a value is a 'complex type', defined here as an object or a
|
|
@@ -177,6 +184,10 @@ const addStyle = (styleContainerNode, cmpMeta, mode) => {
|
|
|
177
184
|
}
|
|
178
185
|
styleContainerNode.insertBefore(styleElm, styleContainerNode.querySelector('link'));
|
|
179
186
|
}
|
|
187
|
+
// Add styles for `slot-fb` elements if we're using slots outside the Shadow DOM
|
|
188
|
+
if (cmpMeta.$flags$ & 4 /* CMP_FLAGS.hasSlotRelocation */) {
|
|
189
|
+
styleElm.innerHTML += SLOT_FB_CSS;
|
|
190
|
+
}
|
|
180
191
|
if (appliedStyles) {
|
|
181
192
|
appliedStyles.add(scopeId);
|
|
182
193
|
}
|
|
@@ -694,12 +705,13 @@ const bootstrapLazy = (lazyBundles, options = {}) => {
|
|
|
694
705
|
const customElements = win.customElements;
|
|
695
706
|
const head = doc.head;
|
|
696
707
|
const metaCharset = /*@__PURE__*/ head.querySelector('meta[charset]');
|
|
697
|
-
const
|
|
708
|
+
const dataStyles = /*@__PURE__*/ doc.createElement('style');
|
|
698
709
|
const deferredConnectedCallbacks = [];
|
|
699
710
|
let appLoadFallback;
|
|
700
711
|
let isBootstrapping = true;
|
|
701
712
|
Object.assign(plt, options);
|
|
702
713
|
plt.$resourcesUrl$ = new URL(options.resourcesUrl || './', doc.baseURI).href;
|
|
714
|
+
let hasSlotRelocation = false;
|
|
703
715
|
lazyBundles.map((lazyBundle) => {
|
|
704
716
|
lazyBundle[1].map((compactMeta) => {
|
|
705
717
|
const cmpMeta = {
|
|
@@ -708,6 +720,11 @@ const bootstrapLazy = (lazyBundles, options = {}) => {
|
|
|
708
720
|
$members$: compactMeta[2],
|
|
709
721
|
$listeners$: compactMeta[3],
|
|
710
722
|
};
|
|
723
|
+
// Check if we are using slots outside the shadow DOM in this component.
|
|
724
|
+
// We'll use this information later to add styles for `slot-fb` elements
|
|
725
|
+
if (cmpMeta.$flags$ & 4 /* CMP_FLAGS.hasSlotRelocation */) {
|
|
726
|
+
hasSlotRelocation = true;
|
|
727
|
+
}
|
|
711
728
|
const tagName = cmpMeta.$tagName$;
|
|
712
729
|
const HostElement = class extends HTMLElement {
|
|
713
730
|
// StencilLazyHost
|
|
@@ -755,15 +772,23 @@ const bootstrapLazy = (lazyBundles, options = {}) => {
|
|
|
755
772
|
}
|
|
756
773
|
});
|
|
757
774
|
});
|
|
775
|
+
// Add styles for `slot-fb` elements if any of our components are using slots outside the Shadow DOM
|
|
776
|
+
if (hasSlotRelocation) {
|
|
777
|
+
dataStyles.innerHTML += SLOT_FB_CSS;
|
|
778
|
+
}
|
|
779
|
+
// Add hydration styles
|
|
758
780
|
{
|
|
759
|
-
|
|
760
|
-
|
|
781
|
+
dataStyles.innerHTML += cmpTags + HYDRATED_CSS;
|
|
782
|
+
}
|
|
783
|
+
// If we have styles, add them to the DOM
|
|
784
|
+
if (dataStyles.innerHTML.length) {
|
|
785
|
+
dataStyles.setAttribute('data-styles', '');
|
|
786
|
+
head.insertBefore(dataStyles, metaCharset ? metaCharset.nextSibling : head.firstChild);
|
|
761
787
|
// Apply CSP nonce to the style tag if it exists
|
|
762
788
|
const nonce = (_a = plt.$nonce$) !== null && _a !== void 0 ? _a : queryNonceMetaTagContent(doc);
|
|
763
789
|
if (nonce != null) {
|
|
764
|
-
|
|
790
|
+
dataStyles.setAttribute('nonce', nonce);
|
|
765
791
|
}
|
|
766
|
-
head.insertBefore(visibilityStyle, metaCharset ? metaCharset.nextSibling : head.firstChild);
|
|
767
792
|
}
|
|
768
793
|
// Process deferred connectedCallbacks now all components have been registered
|
|
769
794
|
isBootstrapping = false;
|
|
@@ -927,7 +952,7 @@ const flush = () => {
|
|
|
927
952
|
}
|
|
928
953
|
}
|
|
929
954
|
};
|
|
930
|
-
const nextTick =
|
|
955
|
+
const nextTick = (cb) => promiseResolve().then(cb);
|
|
931
956
|
const writeTask = /*@__PURE__*/ queueTask(queueDomWrites, true);
|
|
932
957
|
|
|
933
958
|
export { Host as H, bootstrapLazy as b, h, promiseResolve as p, registerInstance as r, setNonce as s };
|
package/dist/esm/loader.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { b as bootstrapLazy } from './index-
|
|
2
|
-
export { s as setNonce } from './index-
|
|
1
|
+
import { b as bootstrapLazy } from './index-f9ba0199.js';
|
|
2
|
+
export { s as setNonce } from './index-f9ba0199.js';
|
|
3
3
|
|
|
4
4
|
const defineCustomElements = (win, options) => {
|
|
5
5
|
if (typeof window === 'undefined') return undefined;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { r as registerInstance, h, H as Host } from './index-
|
|
1
|
+
import { r as registerInstance, h, H as Host } from './index-f9ba0199.js';
|
|
2
2
|
|
|
3
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
|
|
package/dist/esm/mds-list.js
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { p as promiseResolve, b as bootstrapLazy } from './index-
|
|
2
|
-
export { s as setNonce } from './index-
|
|
1
|
+
import { p as promiseResolve, b as bootstrapLazy } from './index-f9ba0199.js';
|
|
2
|
+
export { s as setNonce } from './index-f9ba0199.js';
|
|
3
3
|
|
|
4
4
|
/*
|
|
5
|
-
Stencil Client Patch Browser v4.7.
|
|
5
|
+
Stencil Client Patch Browser v4.7.2 | 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 SLOT_FB_CSS="slot-fb{display:contents}slot-fb[hidden]{display:none}";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(n.u&4){u.innerHTML+=SLOT_FB_CSS}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._);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.C;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._;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._;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._=i);break}}}{initializeComponent(e,n,t)}}else{if(n===null||n===void 0?void 0:n.C);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.C);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;var d=false;e.map((function(e){e[1].map((function(n){var t={u:n[0],h:n[1],A:n[2],H:n[3]};if(t.u&4){d=true}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))}}))}));if(d){s.innerHTML+=SLOT_FB_CSS}{s.innerHTML+=i+HYDRATED_CSS}if(s.innerHTML.length){s.setAttribute("data-styles","");u.insertBefore(s,c?c.nextSibling:u.firstChild);var p=(t=plt.p)!==null&&t!==void 0?t:queryNonceMetaTagContent(doc);if(p!=null){s.setAttribute("nonce",p)}}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.C=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};
|
package/dist/esm-es5/loader.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
import{b as bootstrapLazy}from"./index-
|
|
1
|
+
import{b as bootstrapLazy}from"./index-f9ba0199.js";export{s as setNonce}from"./index-f9ba0199.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-
|
|
1
|
+
import{r as registerInstance,h,H as Host}from"./index-f9ba0199.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};
|
package/dist/esm-es5/mds-list.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
import{p as promiseResolve,b as bootstrapLazy}from"./index-
|
|
1
|
+
import{p as promiseResolve,b as bootstrapLazy}from"./index-f9ba0199.js";export{s as setNonce}from"./index-f9ba0199.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
|
|
1
|
+
import{p as t,b as e}from"./p-b1d4af82.js";export{s as setNonce}from"./p-b1d4af82.js";(()=>{const s=import.meta.url,e={};return""!==s&&(e.resourcesUrl=new URL(".",s).href),t(e)})().then((s=>e([["p-11d0c9eb",[[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-
|
|
118
|
+
var url = new URL('./p-4d396277.system.js', new URL(resourcesUrl, window.location.origin !== 'null' ? window.location.origin : undefined));
|
|
119
119
|
System.import(url.href);
|
|
120
120
|
};
|
|
121
121
|
|
|
@@ -1 +1 @@
|
|
|
1
|
-
System.register(["./p-
|
|
1
|
+
System.register(["./p-ffc044a5.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}}}));
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{r as o,h as r,H as a}from"./p-
|
|
1
|
+
import{r as o,h as r,H as a}from"./p-b1d4af82.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}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
System.register(["./p-ffc044a5.system.js"],(function(t,e){"use strict";var n,s;return{setters:[function(e){n=e.p;s=e.b;t("setNonce",e.s)}],execute:function(){var t=function(){var t=e.meta.url;var s={};if(t!==""){s.resourcesUrl=new URL(".",t).href}return n(s)};t().then((function(t){return s([["p-0498e110.system",[[1,"mds-list"]]]],t)}))}}}));
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
let n,e,t=!1;const l="slot-fb{display:contents}slot-fb[hidden]{display:none}",o=n=>"object"==(n=typeof n)||"function"===n;function s(n){var e,t,l;return null!==(l=null===(t=null===(e=n.head)||void 0===e?void 0:e.querySelector('meta[name="csp-nonce"]'))||void 0===t?void 0:t.getAttribute("content"))&&void 0!==l?l:void 0}const i=(n,e,...t)=>{let l=null,s=!1,i=!1;const r=[],a=e=>{for(let t=0;t<e.length;t++)l=e[t],Array.isArray(l)?a(l):null!=l&&"boolean"!=typeof l&&((s="function"!=typeof n&&!o(l))&&(l+=""),s&&i?r[r.length-1].t+=l:r.push(s?c(null,l):l),i=s)};a(t);const u=c(n,null);return u.l=e,r.length>0&&(u.o=r),u},c=(n,e)=>({i:0,u:n,t:e,$:null,o:null}),r={},a=new WeakMap,u=n=>"sc-"+n.p,f=(e,t,l)=>{const o=t.o[l];let s,i,c=0;if(s=o.$=L.createElement(o.u),null!=n&&s["s-si"]!==n&&s.classList.add(s["s-si"]=n),o.o)for(c=0;c<o.o.length;++c)i=f(e,o,c),i&&s.appendChild(i);return s},d=(t,l,o=!1)=>{const s=t.$hostElement$,a=t.m||c(null,null),u=(n=>n&&n.u===r)(l)?l:i(null,null,l);if(e=s.tagName,o&&u.l)for(const n of Object.keys(u.l))s.hasAttribute(n)&&!["key","ref","style","class"].includes(n)&&(u.l[n]=s[n]);u.u=null,u.i|=4,t.m=u,u.$=a.$=s.shadowRoot||s,n=s["s-sc"],((n,t)=>{const l=t.$=n.$,o=t.o;null!==o&&((n,t,l,o,s,i)=>{let c,r=n;for(r.shadowRoot&&r.tagName===e&&(r=r.shadowRoot);s<=i;++s)o[s]&&(c=f(null,l,s),c&&(o[s].$=c,r.insertBefore(c,null)))})(l,0,t,o,0,o.length-1)})(a,u)},y=(n,e)=>{e&&!n.v&&e["s-p"]&&e["s-p"].push(new Promise((e=>n.v=e)))},$=(n,e)=>{if(!(4&n.i))return y(n,n.h),B((()=>p(n,e)));n.i|=512},p=(n,e)=>{const t=n.S;return m(void 0,(()=>h(n,t,e)))},m=(n,e)=>v(n)?n.then(e):e(),v=n=>n instanceof Promise||n&&n.then&&"function"==typeof n.then,h=async(n,e,t)=>{var o;const i=n.$hostElement$,c=i["s-rc"];t&&(n=>{const e=n.k,t=n.$hostElement$,o=e.i,i=((n,e)=>{var t;const o=u(e),i=A.get(o);if(n=11===n.nodeType?n:L,i)if("string"==typeof i){let c,r=a.get(n=n.head||n);if(r||a.set(n,r=new Set),!r.has(o)){{c=L.createElement("style"),c.innerHTML=i;const e=null!==(t=R.M)&&void 0!==t?t:s(L);null!=e&&c.setAttribute("nonce",e),n.insertBefore(c,n.querySelector("link"))}4&e.i&&(c.innerHTML+=l),r&&r.add(o)}}else n.adoptedStyleSheets.includes(i)||(n.adoptedStyleSheets=[...n.adoptedStyleSheets,i]);return o})(t.shadowRoot?t.shadowRoot:t.getRootNode(),e);10&o&&(t["s-sc"]=i,t.classList.add(i+"-h"))})(n);w(n,e,i,t),c&&(c.map((n=>n())),i["s-rc"]=void 0);{const e=null!==(o=i["s-p"])&&void 0!==o?o:[],t=()=>b(n);0===e.length?t():(Promise.all(e).then(t),n.i|=4,e.length=0)}},w=(n,e,t,l)=>{try{e=e.render(),n.i|=2,d(n,e,l)}catch(e){E(e,n.$hostElement$)}return null},b=n=>{const e=n.$hostElement$,t=n.h;64&n.i||(n.i|=64,g(e),n.C(e),t||S()),n.v&&(n.v(),n.v=void 0),512&n.i&&z((()=>$(n,!1))),n.i&=-517},S=()=>{g(L.documentElement),z((()=>(n=>{const e=R.ce("appload",{detail:{namespace:"mds-list"}});return n.dispatchEvent(e),e})(H)))},g=n=>n.setAttribute("hydrated",""),k=(n,e={})=>{var t;const o=[],i=e.exclude||[],c=H.customElements,r=L.head,a=r.querySelector("meta[charset]"),f=L.createElement("style"),d=[];let p,m=!0;Object.assign(R,e),R.j=new URL(e.resourcesUrl||"./",L.baseURI).href;let v=!1;if(n.map((n=>{n[1].map((e=>{const t={i:e[0],p:e[1],P:e[2],O:e[3]};4&t.i&&(v=!0);const l=t.p,s=class extends HTMLElement{constructor(n){super(n),x(n=this,t),1&t.i&&n.attachShadow({mode:"open"})}connectedCallback(){p&&(clearTimeout(p),p=null),m?d.push(this):R.jmp((()=>(n=>{if(0==(1&R.i)){const e=j(n),t=e.k,l=()=>{};if(1&e.i)(null==e?void 0:e.S)||(null==e?void 0:e.T)&&e.T.then((()=>{}));else{e.i|=1;{let t=n;for(;t=t.parentNode||t.host;)if(t["s-p"]){y(e,e.h=t);break}}(async(n,e,t)=>{let l;if(0==(32&e.i)){e.i|=32;{if(l=T(t),l.then){const n=()=>{};l=await l,n()}const n=()=>{};try{new l(e)}catch(n){E(n)}n()}if(l.style){let n=l.style;const e=u(t);if(!A.has(e)){const l=()=>{};((n,e,t)=>{let l=A.get(n);W&&t?(l=l||new CSSStyleSheet,"string"==typeof l?l=e:l.replaceSync(e)):l=e,A.set(n,l)})(e,n,!!(1&t.i)),l()}}}const o=e.h,s=()=>$(e,!0);o&&o["s-rc"]?o["s-rc"].push(s):s()})(0,e,t)}l()}})(this)))}disconnectedCallback(){R.jmp((()=>(async()=>{if(0==(1&R.i)){const n=j(this);(null==n?void 0:n.S)||(null==n?void 0:n.T)&&n.T.then((()=>{}))}})()))}componentOnReady(){return j(this).T}};t.A=n[0],i.includes(l)||c.get(l)||(o.push(l),c.define(l,s))}))})),v&&(f.innerHTML+=l),f.innerHTML+=o+"{visibility:hidden}[hydrated]{visibility:inherit}",f.innerHTML.length){f.setAttribute("data-styles",""),r.insertBefore(f,a?a.nextSibling:r.firstChild);const n=null!==(t=R.M)&&void 0!==t?t:s(L);null!=n&&f.setAttribute("nonce",n)}m=!1,d.length?d.map((n=>n.connectedCallback())):R.jmp((()=>p=setTimeout(S,30)))},M=n=>R.M=n,C=new WeakMap,j=n=>C.get(n),P=(n,e)=>C.set(e.S=n,e),x=(n,e)=>{const t={i:0,$hostElement$:n,k:e,H:new Map};return t.T=new Promise((n=>t.C=n)),n["s-p"]=[],n["s-rc"]=[],C.set(n,t)},E=(n,e)=>(0,console.error)(n,e),O=new Map,T=n=>{const e=n.p.replace(/-/g,"_"),t=n.A,l=O.get(t);return l?l[e]:import(`./${t}.entry.js`).then((n=>(O.set(t,n),n[e])),E)
|
|
2
|
+
/*!__STENCIL_STATIC_IMPORT_SWITCH__*/},A=new Map,H="undefined"!=typeof window?window:{},L=H.document||{head:{}},R={i:0,j:"",jmp:n=>n(),raf:n=>requestAnimationFrame(n),ael:(n,e,t,l)=>n.addEventListener(e,t,l),rel:(n,e,t,l)=>n.removeEventListener(e,t,l),ce:(n,e)=>new CustomEvent(n,e)},U=n=>Promise.resolve(n),W=(()=>{try{return new CSSStyleSheet,"function"==typeof(new CSSStyleSheet).replaceSync}catch(n){}return!1})(),q=[],F=[],N=(n,e)=>l=>{n.push(l),t||(t=!0,e&&4&R.i?z(_):R.raf(_))},V=n=>{for(let e=0;e<n.length;e++)try{n[e](performance.now())}catch(n){E(n)}n.length=0},_=()=>{V(q),V(F),(t=q.length>0)&&R.raf(_)},z=n=>U().then(n),B=N(F,!0);export{r as H,k as b,i as h,U as p,P as r,M as s}
|
|
@@ -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="slot-fb{display:contents}slot-fb[hidden]{display:none}";var l=function(n){return n!=null};var s=function(n){n=typeof n;return n==="object"||n==="function"};function d(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 h=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"&&!s(i)){i=String(i)}if(a&&u){f[f.length-1].t+=i}else{f.push(a?y(null,i):i)}u=a}}};o(t);var c=y(n,null);c.i=r;if(f.length>0){c.u=f}return c}));var y=function(n,r){var t={o:0,v:n,t:r,l:null,u:null};return t};var p=n("H",{});var w=function(n){return n&&n.v===p};var _=function(n,r,t){var e=tn.ce(r,t);n.dispatchEvent(e);return e};var $=new WeakMap;var m=function(n,r,t){var e=Z.get(n);if(an&&t){e=e||new CSSStyleSheet;if(typeof e==="string"){e=r}else{e.replaceSync(r)}}else{e=r}Z.set(n,e)};var b=function(n,r,t){var e;var i=g(r);var a=Z.get(i);n=n.nodeType===11?n:rn;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=rn.createElement("style");f.innerHTML=a;var o=(e=tn.h)!==null&&e!==void 0?e:d(rn);if(o!=null){f.setAttribute("nonce",o)}n.insertBefore(f,n.querySelector("link"))}if(r.o&4){f.innerHTML+=v}if(u){u.add(i)}}}else if(!n.adoptedStyleSheets.includes(a)){n.adoptedStyleSheets=__spreadArray(__spreadArray([],n.adoptedStyleSheets,true),[a],false)}}return i};var S=function(n){var r=n.p;var t=n.$hostElement$;var e=r.o;var i=f("attachStyles",r._);var a=b(t.shadowRoot?t.shadowRoot:t.getRootNode(),r);if(e&10){t["s-sc"]=a;t.classList.add(a+"-h")}i()};var g=function(n,r){return"sc-"+n._};var k=function(n,r,t,e){var a=r.u[t];var u=0;var f;var o;{f=a.l=rn.createElement(a.v);if(l(i)&&f["s-si"]!==i){f.classList.add(f["s-si"]=i)}if(a.u){for(u=0;u<a.u.length;++u){o=k(n,a,u);if(o){f.appendChild(o)}}}}return f};var j=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=k(null,t,i);if(o){e[i].l=o;f.insertBefore(o,r)}}}};var A=function(n,r){var t=r.l=n.l;var e=r.u;{if(e!==null){j(t,null,r,e,0,e.length-1)}else;}};var x=function(n,r,t){if(t===void 0){t=false}var e=n.$hostElement$;var u=n.$||y(null,null);var f=w(r)?r:h(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"]}A(u,f)};var M=function(n,r){if(r&&!n.m&&r["s-p"]){r["s-p"].push(new Promise((function(r){return n.m=r})))}};var C=function(n,r){if(n.o&4){n.o|=512;return}M(n,n.S);var t=function(){return P(n,r)};return sn(t)};var P=function(n,r){var t=f("scheduleUpdate",n.p._);var e=n.k;var i;t();return E(i,(function(){return T(n,e,r)}))};var E=function(n,r){return O(n)?n.then(r):r()};var O=function(n){return n instanceof Promise||n&&n.then&&typeof n.then==="function"};var T=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){S(n)}o=f("render",n.p._);{U(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 H(n)};if(c.length===0){v()}else{Promise.all(c).then(v);n.o|=4;c.length=0}}return[2]}))}))};var U=function(n,r,t,e){try{r=r.render();{n.o|=2}{{{x(n,r,e)}}}}catch(r){Q(r,n.$hostElement$)}return null};var H=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;{W(t)}e();{n.j(t);if(!i){L()}}}else{e()}{if(n.m){n.m();n.m=undefined}if(n.o&512){ln((function(){return C(n,false)}))}n.o&=~(4|512)}};var L=function(n){{W(rn.documentElement)}ln((function(){return _(nn,"appload",{detail:{namespace:e}})}))};var W=function(n){return n.setAttribute("hydrated","")};var q=function(n,r,t){return n};var F=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=Y(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){Q(n)}i();if(n.style){a=n.style;u=g(e);if(!Z.has(u)){c=f("registerStyles",e._);m(u,a,!!(e.o&1));c()}}s.label=3;case 3:v=r.S;l=function(){return C(r,true)};if(v&&v["s-rc"]){v["s-rc"].push(l)}else{l()}return[2]}}))}))};var G=function(n){};var I=function(n){if((tn.o&1)===0){var r=D(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"]){M(r,r.S=i);break}}}{F(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 G()}))}}e()}};var N=function(n){};var R=function(n){return __awaiter(t,void 0,void 0,(function(){var r;return __generator(this,(function(t){if((tn.o&1)===0){r=D(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 N()}))}}return[2]}))}))};var V=n("b",(function(n,r){if(r===void 0){r={}}var t;var e=f();var i=[];var a=r.exclude||[];var u=nn.customElements;var o=rn.head;var l=o.querySelector("meta[charset]");var s=rn.createElement("style");var h=[];var y;var p=true;Object.assign(tn,r);tn.M=new URL(r.resourcesUrl||"./",rn.baseURI).href;var w=false;n.map((function(n){n[1].map((function(r){var t={o:r[0],_:r[1],C:r[2],P:r[3]};if(t.o&4){w=true}var e=t._;var f=function(n){__extends(r,n);function r(r){var e=n.call(this,r)||this;r=e;K(r,t);if(t.o&1){{{r.attachShadow({mode:"open"})}}}return e}r.prototype.connectedCallback=function(){var n=this;if(y){clearTimeout(y);y=null}if(p){h.push(this)}else{tn.jmp((function(){return I(n)}))}};r.prototype.disconnectedCallback=function(){var n=this;tn.jmp((function(){return R(n)}))};r.prototype.componentOnReady=function(){return D(this).A};return r}(HTMLElement);t.O=n[0];if(!a.includes(e)&&!u.get(e)){i.push(e);u.define(e,q(f))}}))}));if(w){s.innerHTML+=v}{s.innerHTML+=i+c}if(s.innerHTML.length){s.setAttribute("data-styles","");o.insertBefore(s,l?l.nextSibling:o.firstChild);var _=(t=tn.h)!==null&&t!==void 0?t:d(rn);if(_!=null){s.setAttribute("nonce",_)}}p=false;if(h.length){h.map((function(n){return n.connectedCallback()}))}else{{tn.jmp((function(){return y=setTimeout(L,30)}))}}e()}));var z=n("s",(function(n){return tn.h=n}));var B=new WeakMap;var D=function(n){return B.get(n)};var J=n("r",(function(n,r){return B.set(r.k=n,r)}));var K=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 B.set(n,t)};var Q=function(n,r){return(0,console.error)(n,r)};var X=new Map;var Y=function(n,t,e){var i=n._.replace(/-/g,"_");var a=n.O;var u=X.get(a);if(u){return u[i]}
|
|
2
|
+
/*!__STENCIL_STATIC_IMPORT_SWITCH__*/return r.import("./".concat(a,".entry.js").concat("")).then((function(n){{X.set(a,n)}return n[i]}),Q)};var Z=new Map;var nn=typeof window!=="undefined"?window:{};var rn=nn.document||{head:{}};var tn={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 en=n("p",(function(n){return Promise.resolve(n)}));var an=function(){try{new CSSStyleSheet;return typeof(new CSSStyleSheet).replaceSync==="function"}catch(n){}return false}();var un=[];var fn=[];var on=function(n,r){return function(t){n.push(t);if(!u){u=true;if(r&&tn.o&4){ln(vn)}else{tn.raf(vn)}}}};var cn=function(n){for(var r=0;r<n.length;r++){try{n[r](performance.now())}catch(n){Q(n)}}n.length=0};var vn=function(){cn(un);{cn(fn);if(u=un.length>0){tn.raf(vn)}}};var ln=function(n){return en().then(n)};var sn=on(fn,true)}}}));
|
package/dist/stats.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"timestamp": "2023-11-
|
|
2
|
+
"timestamp": "2023-11-13T20:05:12",
|
|
3
3
|
"compiler": {
|
|
4
4
|
"name": "node",
|
|
5
5
|
"version": "18.16.1"
|
|
@@ -55,17 +55,17 @@
|
|
|
55
55
|
"name": "dist-lazy",
|
|
56
56
|
"files": 35,
|
|
57
57
|
"generatedFiles": [
|
|
58
|
-
"./dist/cjs/index-
|
|
58
|
+
"./dist/cjs/index-eed6e3cd.js",
|
|
59
59
|
"./dist/cjs/index.cjs.js",
|
|
60
60
|
"./dist/cjs/loader.cjs.js",
|
|
61
61
|
"./dist/cjs/mds-list.cjs.entry.js",
|
|
62
62
|
"./dist/cjs/mds-list.cjs.js",
|
|
63
|
-
"./dist/esm-es5/index-
|
|
63
|
+
"./dist/esm-es5/index-f9ba0199.js",
|
|
64
64
|
"./dist/esm-es5/index.js",
|
|
65
65
|
"./dist/esm-es5/loader.js",
|
|
66
66
|
"./dist/esm-es5/mds-list.entry.js",
|
|
67
67
|
"./dist/esm-es5/mds-list.js",
|
|
68
|
-
"./dist/esm/index-
|
|
68
|
+
"./dist/esm/index-f9ba0199.js",
|
|
69
69
|
"./dist/esm/index.js",
|
|
70
70
|
"./dist/esm/loader.js",
|
|
71
71
|
"./dist/esm/mds-list.entry.js",
|
|
@@ -75,21 +75,21 @@
|
|
|
75
75
|
"./dist/mds-list/index.esm.js",
|
|
76
76
|
"./dist/mds-list/mds-list.esm.js",
|
|
77
77
|
"./dist/mds-list/mds-list.js",
|
|
78
|
+
"./dist/mds-list/p-0498e110.system.entry.js",
|
|
79
|
+
"./dist/mds-list/p-11d0c9eb.entry.js",
|
|
80
|
+
"./dist/mds-list/p-4d396277.system.js",
|
|
78
81
|
"./dist/mds-list/p-50ea2036.system.js",
|
|
79
|
-
"./dist/mds-list/p-
|
|
80
|
-
"./dist/mds-list/p-
|
|
81
|
-
"./dist/mds-list/p-8bf8e6ee.system.entry.js",
|
|
82
|
-
"./dist/mds-list/p-b6cf7a75.js",
|
|
83
|
-
"./dist/mds-list/p-f85753c1.system.js",
|
|
82
|
+
"./dist/mds-list/p-b1d4af82.js",
|
|
83
|
+
"./dist/mds-list/p-ffc044a5.system.js",
|
|
84
84
|
"./www/build/index.esm.js",
|
|
85
85
|
"./www/build/mds-list.esm.js",
|
|
86
86
|
"./www/build/mds-list.js",
|
|
87
|
+
"./www/build/p-0498e110.system.entry.js",
|
|
88
|
+
"./www/build/p-11d0c9eb.entry.js",
|
|
89
|
+
"./www/build/p-4d396277.system.js",
|
|
87
90
|
"./www/build/p-50ea2036.system.js",
|
|
88
|
-
"./www/build/p-
|
|
89
|
-
"./www/build/p-
|
|
90
|
-
"./www/build/p-8bf8e6ee.system.entry.js",
|
|
91
|
-
"./www/build/p-b6cf7a75.js",
|
|
92
|
-
"./www/build/p-f85753c1.system.js"
|
|
91
|
+
"./www/build/p-b1d4af82.js",
|
|
92
|
+
"./www/build/p-ffc044a5.system.js"
|
|
93
93
|
]
|
|
94
94
|
},
|
|
95
95
|
{
|
|
@@ -122,10 +122,10 @@
|
|
|
122
122
|
"components": [
|
|
123
123
|
"mds-list"
|
|
124
124
|
],
|
|
125
|
-
"bundleId": "p-
|
|
126
|
-
"fileName": "p-
|
|
125
|
+
"bundleId": "p-11d0c9eb",
|
|
126
|
+
"fileName": "p-11d0c9eb.entry.js",
|
|
127
127
|
"imports": [
|
|
128
|
-
"p-
|
|
128
|
+
"p-b1d4af82.js"
|
|
129
129
|
],
|
|
130
130
|
"originalByteSize": 849
|
|
131
131
|
}
|
|
@@ -139,7 +139,7 @@
|
|
|
139
139
|
"bundleId": "mds-list",
|
|
140
140
|
"fileName": "mds-list.entry.js",
|
|
141
141
|
"imports": [
|
|
142
|
-
"index-
|
|
142
|
+
"index-f9ba0199.js"
|
|
143
143
|
],
|
|
144
144
|
"originalByteSize": 853
|
|
145
145
|
}
|
|
@@ -153,7 +153,7 @@
|
|
|
153
153
|
"bundleId": "mds-list",
|
|
154
154
|
"fileName": "mds-list.entry.js",
|
|
155
155
|
"imports": [
|
|
156
|
-
"index-
|
|
156
|
+
"index-f9ba0199.js"
|
|
157
157
|
],
|
|
158
158
|
"originalByteSize": 853
|
|
159
159
|
}
|
|
@@ -164,10 +164,10 @@
|
|
|
164
164
|
"components": [
|
|
165
165
|
"mds-list"
|
|
166
166
|
],
|
|
167
|
-
"bundleId": "p-
|
|
168
|
-
"fileName": "p-
|
|
167
|
+
"bundleId": "p-0498e110.system",
|
|
168
|
+
"fileName": "p-0498e110.system.entry.js",
|
|
169
169
|
"imports": [
|
|
170
|
-
"p-
|
|
170
|
+
"p-ffc044a5.system.js"
|
|
171
171
|
],
|
|
172
172
|
"originalByteSize": 1114
|
|
173
173
|
}
|
|
@@ -181,7 +181,7 @@
|
|
|
181
181
|
"bundleId": "mds-list.cjs",
|
|
182
182
|
"fileName": "mds-list.cjs.entry.js",
|
|
183
183
|
"imports": [
|
|
184
|
-
"index-
|
|
184
|
+
"index-eed6e3cd.js"
|
|
185
185
|
],
|
|
186
186
|
"originalByteSize": 923
|
|
187
187
|
}
|
|
@@ -334,7 +334,7 @@
|
|
|
334
334
|
],
|
|
335
335
|
"componentGraph": {
|
|
336
336
|
"sc-mds-list": [
|
|
337
|
-
"p-
|
|
337
|
+
"p-b1d4af82.js"
|
|
338
338
|
]
|
|
339
339
|
},
|
|
340
340
|
"sourceGraph": {
|
package/documentation.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@maggioli-design-system/mds-list",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.6.1",
|
|
4
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",
|
|
@@ -23,9 +23,9 @@
|
|
|
23
23
|
"prepublishOnly": "npm run build"
|
|
24
24
|
},
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"@maggioli-design-system/mds-list-item": "3.
|
|
27
|
-
"@maggioli-design-system/styles": "13.0.
|
|
28
|
-
"@stencil/core": "4.7.
|
|
26
|
+
"@maggioli-design-system/mds-list-item": "3.7.1",
|
|
27
|
+
"@maggioli-design-system/styles": "13.0.1",
|
|
28
|
+
"@stencil/core": "4.7.2"
|
|
29
29
|
},
|
|
30
30
|
"license": "MIT",
|
|
31
31
|
"author": {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{p as
|
|
1
|
+
import{p as t,b as e}from"./p-b1d4af82.js";export{s as setNonce}from"./p-b1d4af82.js";(()=>{const s=import.meta.url,e={};return""!==s&&(e.resourcesUrl=new URL(".",s).href),t(e)})().then((s=>e([["p-11d0c9eb",[[1,"mds-list"]]]],s)));
|
package/www/build/mds-list.js
CHANGED
|
@@ -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-
|
|
118
|
+
var url = new URL('./p-4d396277.system.js', new URL(resourcesUrl, window.location.origin !== 'null' ? window.location.origin : undefined));
|
|
119
119
|
System.import(url.href);
|
|
120
120
|
};
|
|
121
121
|
|
|
@@ -1 +1 @@
|
|
|
1
|
-
System.register(["./p-
|
|
1
|
+
System.register(["./p-ffc044a5.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}}}));
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{r as o,h as r,H as a}from"./p-
|
|
1
|
+
import{r as o,h as r,H as a}from"./p-b1d4af82.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}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
System.register(["./p-ffc044a5.system.js"],(function(t,e){"use strict";var n,s;return{setters:[function(e){n=e.p;s=e.b;t("setNonce",e.s)}],execute:function(){var t=function(){var t=e.meta.url;var s={};if(t!==""){s.resourcesUrl=new URL(".",t).href}return n(s)};t().then((function(t){return s([["p-0498e110.system",[[1,"mds-list"]]]],t)}))}}}));
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
let n,e,t=!1;const l="slot-fb{display:contents}slot-fb[hidden]{display:none}",o=n=>"object"==(n=typeof n)||"function"===n;function s(n){var e,t,l;return null!==(l=null===(t=null===(e=n.head)||void 0===e?void 0:e.querySelector('meta[name="csp-nonce"]'))||void 0===t?void 0:t.getAttribute("content"))&&void 0!==l?l:void 0}const i=(n,e,...t)=>{let l=null,s=!1,i=!1;const r=[],a=e=>{for(let t=0;t<e.length;t++)l=e[t],Array.isArray(l)?a(l):null!=l&&"boolean"!=typeof l&&((s="function"!=typeof n&&!o(l))&&(l+=""),s&&i?r[r.length-1].t+=l:r.push(s?c(null,l):l),i=s)};a(t);const u=c(n,null);return u.l=e,r.length>0&&(u.o=r),u},c=(n,e)=>({i:0,u:n,t:e,$:null,o:null}),r={},a=new WeakMap,u=n=>"sc-"+n.p,f=(e,t,l)=>{const o=t.o[l];let s,i,c=0;if(s=o.$=L.createElement(o.u),null!=n&&s["s-si"]!==n&&s.classList.add(s["s-si"]=n),o.o)for(c=0;c<o.o.length;++c)i=f(e,o,c),i&&s.appendChild(i);return s},d=(t,l,o=!1)=>{const s=t.$hostElement$,a=t.m||c(null,null),u=(n=>n&&n.u===r)(l)?l:i(null,null,l);if(e=s.tagName,o&&u.l)for(const n of Object.keys(u.l))s.hasAttribute(n)&&!["key","ref","style","class"].includes(n)&&(u.l[n]=s[n]);u.u=null,u.i|=4,t.m=u,u.$=a.$=s.shadowRoot||s,n=s["s-sc"],((n,t)=>{const l=t.$=n.$,o=t.o;null!==o&&((n,t,l,o,s,i)=>{let c,r=n;for(r.shadowRoot&&r.tagName===e&&(r=r.shadowRoot);s<=i;++s)o[s]&&(c=f(null,l,s),c&&(o[s].$=c,r.insertBefore(c,null)))})(l,0,t,o,0,o.length-1)})(a,u)},y=(n,e)=>{e&&!n.v&&e["s-p"]&&e["s-p"].push(new Promise((e=>n.v=e)))},$=(n,e)=>{if(!(4&n.i))return y(n,n.h),B((()=>p(n,e)));n.i|=512},p=(n,e)=>{const t=n.S;return m(void 0,(()=>h(n,t,e)))},m=(n,e)=>v(n)?n.then(e):e(),v=n=>n instanceof Promise||n&&n.then&&"function"==typeof n.then,h=async(n,e,t)=>{var o;const i=n.$hostElement$,c=i["s-rc"];t&&(n=>{const e=n.k,t=n.$hostElement$,o=e.i,i=((n,e)=>{var t;const o=u(e),i=A.get(o);if(n=11===n.nodeType?n:L,i)if("string"==typeof i){let c,r=a.get(n=n.head||n);if(r||a.set(n,r=new Set),!r.has(o)){{c=L.createElement("style"),c.innerHTML=i;const e=null!==(t=R.M)&&void 0!==t?t:s(L);null!=e&&c.setAttribute("nonce",e),n.insertBefore(c,n.querySelector("link"))}4&e.i&&(c.innerHTML+=l),r&&r.add(o)}}else n.adoptedStyleSheets.includes(i)||(n.adoptedStyleSheets=[...n.adoptedStyleSheets,i]);return o})(t.shadowRoot?t.shadowRoot:t.getRootNode(),e);10&o&&(t["s-sc"]=i,t.classList.add(i+"-h"))})(n);w(n,e,i,t),c&&(c.map((n=>n())),i["s-rc"]=void 0);{const e=null!==(o=i["s-p"])&&void 0!==o?o:[],t=()=>b(n);0===e.length?t():(Promise.all(e).then(t),n.i|=4,e.length=0)}},w=(n,e,t,l)=>{try{e=e.render(),n.i|=2,d(n,e,l)}catch(e){E(e,n.$hostElement$)}return null},b=n=>{const e=n.$hostElement$,t=n.h;64&n.i||(n.i|=64,g(e),n.C(e),t||S()),n.v&&(n.v(),n.v=void 0),512&n.i&&z((()=>$(n,!1))),n.i&=-517},S=()=>{g(L.documentElement),z((()=>(n=>{const e=R.ce("appload",{detail:{namespace:"mds-list"}});return n.dispatchEvent(e),e})(H)))},g=n=>n.setAttribute("hydrated",""),k=(n,e={})=>{var t;const o=[],i=e.exclude||[],c=H.customElements,r=L.head,a=r.querySelector("meta[charset]"),f=L.createElement("style"),d=[];let p,m=!0;Object.assign(R,e),R.j=new URL(e.resourcesUrl||"./",L.baseURI).href;let v=!1;if(n.map((n=>{n[1].map((e=>{const t={i:e[0],p:e[1],P:e[2],O:e[3]};4&t.i&&(v=!0);const l=t.p,s=class extends HTMLElement{constructor(n){super(n),x(n=this,t),1&t.i&&n.attachShadow({mode:"open"})}connectedCallback(){p&&(clearTimeout(p),p=null),m?d.push(this):R.jmp((()=>(n=>{if(0==(1&R.i)){const e=j(n),t=e.k,l=()=>{};if(1&e.i)(null==e?void 0:e.S)||(null==e?void 0:e.T)&&e.T.then((()=>{}));else{e.i|=1;{let t=n;for(;t=t.parentNode||t.host;)if(t["s-p"]){y(e,e.h=t);break}}(async(n,e,t)=>{let l;if(0==(32&e.i)){e.i|=32;{if(l=T(t),l.then){const n=()=>{};l=await l,n()}const n=()=>{};try{new l(e)}catch(n){E(n)}n()}if(l.style){let n=l.style;const e=u(t);if(!A.has(e)){const l=()=>{};((n,e,t)=>{let l=A.get(n);W&&t?(l=l||new CSSStyleSheet,"string"==typeof l?l=e:l.replaceSync(e)):l=e,A.set(n,l)})(e,n,!!(1&t.i)),l()}}}const o=e.h,s=()=>$(e,!0);o&&o["s-rc"]?o["s-rc"].push(s):s()})(0,e,t)}l()}})(this)))}disconnectedCallback(){R.jmp((()=>(async()=>{if(0==(1&R.i)){const n=j(this);(null==n?void 0:n.S)||(null==n?void 0:n.T)&&n.T.then((()=>{}))}})()))}componentOnReady(){return j(this).T}};t.A=n[0],i.includes(l)||c.get(l)||(o.push(l),c.define(l,s))}))})),v&&(f.innerHTML+=l),f.innerHTML+=o+"{visibility:hidden}[hydrated]{visibility:inherit}",f.innerHTML.length){f.setAttribute("data-styles",""),r.insertBefore(f,a?a.nextSibling:r.firstChild);const n=null!==(t=R.M)&&void 0!==t?t:s(L);null!=n&&f.setAttribute("nonce",n)}m=!1,d.length?d.map((n=>n.connectedCallback())):R.jmp((()=>p=setTimeout(S,30)))},M=n=>R.M=n,C=new WeakMap,j=n=>C.get(n),P=(n,e)=>C.set(e.S=n,e),x=(n,e)=>{const t={i:0,$hostElement$:n,k:e,H:new Map};return t.T=new Promise((n=>t.C=n)),n["s-p"]=[],n["s-rc"]=[],C.set(n,t)},E=(n,e)=>(0,console.error)(n,e),O=new Map,T=n=>{const e=n.p.replace(/-/g,"_"),t=n.A,l=O.get(t);return l?l[e]:import(`./${t}.entry.js`).then((n=>(O.set(t,n),n[e])),E)
|
|
2
|
+
/*!__STENCIL_STATIC_IMPORT_SWITCH__*/},A=new Map,H="undefined"!=typeof window?window:{},L=H.document||{head:{}},R={i:0,j:"",jmp:n=>n(),raf:n=>requestAnimationFrame(n),ael:(n,e,t,l)=>n.addEventListener(e,t,l),rel:(n,e,t,l)=>n.removeEventListener(e,t,l),ce:(n,e)=>new CustomEvent(n,e)},U=n=>Promise.resolve(n),W=(()=>{try{return new CSSStyleSheet,"function"==typeof(new CSSStyleSheet).replaceSync}catch(n){}return!1})(),q=[],F=[],N=(n,e)=>l=>{n.push(l),t||(t=!0,e&&4&R.i?z(_):R.raf(_))},V=n=>{for(let e=0;e<n.length;e++)try{n[e](performance.now())}catch(n){E(n)}n.length=0},_=()=>{V(q),V(F),(t=q.length>0)&&R.raf(_)},z=n=>U().then(n),B=N(F,!0);export{r as H,k as b,i as h,U as p,P as r,M as s}
|
|
@@ -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="slot-fb{display:contents}slot-fb[hidden]{display:none}";var l=function(n){return n!=null};var s=function(n){n=typeof n;return n==="object"||n==="function"};function d(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 h=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"&&!s(i)){i=String(i)}if(a&&u){f[f.length-1].t+=i}else{f.push(a?y(null,i):i)}u=a}}};o(t);var c=y(n,null);c.i=r;if(f.length>0){c.u=f}return c}));var y=function(n,r){var t={o:0,v:n,t:r,l:null,u:null};return t};var p=n("H",{});var w=function(n){return n&&n.v===p};var _=function(n,r,t){var e=tn.ce(r,t);n.dispatchEvent(e);return e};var $=new WeakMap;var m=function(n,r,t){var e=Z.get(n);if(an&&t){e=e||new CSSStyleSheet;if(typeof e==="string"){e=r}else{e.replaceSync(r)}}else{e=r}Z.set(n,e)};var b=function(n,r,t){var e;var i=g(r);var a=Z.get(i);n=n.nodeType===11?n:rn;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=rn.createElement("style");f.innerHTML=a;var o=(e=tn.h)!==null&&e!==void 0?e:d(rn);if(o!=null){f.setAttribute("nonce",o)}n.insertBefore(f,n.querySelector("link"))}if(r.o&4){f.innerHTML+=v}if(u){u.add(i)}}}else if(!n.adoptedStyleSheets.includes(a)){n.adoptedStyleSheets=__spreadArray(__spreadArray([],n.adoptedStyleSheets,true),[a],false)}}return i};var S=function(n){var r=n.p;var t=n.$hostElement$;var e=r.o;var i=f("attachStyles",r._);var a=b(t.shadowRoot?t.shadowRoot:t.getRootNode(),r);if(e&10){t["s-sc"]=a;t.classList.add(a+"-h")}i()};var g=function(n,r){return"sc-"+n._};var k=function(n,r,t,e){var a=r.u[t];var u=0;var f;var o;{f=a.l=rn.createElement(a.v);if(l(i)&&f["s-si"]!==i){f.classList.add(f["s-si"]=i)}if(a.u){for(u=0;u<a.u.length;++u){o=k(n,a,u);if(o){f.appendChild(o)}}}}return f};var j=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=k(null,t,i);if(o){e[i].l=o;f.insertBefore(o,r)}}}};var A=function(n,r){var t=r.l=n.l;var e=r.u;{if(e!==null){j(t,null,r,e,0,e.length-1)}else;}};var x=function(n,r,t){if(t===void 0){t=false}var e=n.$hostElement$;var u=n.$||y(null,null);var f=w(r)?r:h(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"]}A(u,f)};var M=function(n,r){if(r&&!n.m&&r["s-p"]){r["s-p"].push(new Promise((function(r){return n.m=r})))}};var C=function(n,r){if(n.o&4){n.o|=512;return}M(n,n.S);var t=function(){return P(n,r)};return sn(t)};var P=function(n,r){var t=f("scheduleUpdate",n.p._);var e=n.k;var i;t();return E(i,(function(){return T(n,e,r)}))};var E=function(n,r){return O(n)?n.then(r):r()};var O=function(n){return n instanceof Promise||n&&n.then&&typeof n.then==="function"};var T=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){S(n)}o=f("render",n.p._);{U(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 H(n)};if(c.length===0){v()}else{Promise.all(c).then(v);n.o|=4;c.length=0}}return[2]}))}))};var U=function(n,r,t,e){try{r=r.render();{n.o|=2}{{{x(n,r,e)}}}}catch(r){Q(r,n.$hostElement$)}return null};var H=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;{W(t)}e();{n.j(t);if(!i){L()}}}else{e()}{if(n.m){n.m();n.m=undefined}if(n.o&512){ln((function(){return C(n,false)}))}n.o&=~(4|512)}};var L=function(n){{W(rn.documentElement)}ln((function(){return _(nn,"appload",{detail:{namespace:e}})}))};var W=function(n){return n.setAttribute("hydrated","")};var q=function(n,r,t){return n};var F=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=Y(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){Q(n)}i();if(n.style){a=n.style;u=g(e);if(!Z.has(u)){c=f("registerStyles",e._);m(u,a,!!(e.o&1));c()}}s.label=3;case 3:v=r.S;l=function(){return C(r,true)};if(v&&v["s-rc"]){v["s-rc"].push(l)}else{l()}return[2]}}))}))};var G=function(n){};var I=function(n){if((tn.o&1)===0){var r=D(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"]){M(r,r.S=i);break}}}{F(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 G()}))}}e()}};var N=function(n){};var R=function(n){return __awaiter(t,void 0,void 0,(function(){var r;return __generator(this,(function(t){if((tn.o&1)===0){r=D(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 N()}))}}return[2]}))}))};var V=n("b",(function(n,r){if(r===void 0){r={}}var t;var e=f();var i=[];var a=r.exclude||[];var u=nn.customElements;var o=rn.head;var l=o.querySelector("meta[charset]");var s=rn.createElement("style");var h=[];var y;var p=true;Object.assign(tn,r);tn.M=new URL(r.resourcesUrl||"./",rn.baseURI).href;var w=false;n.map((function(n){n[1].map((function(r){var t={o:r[0],_:r[1],C:r[2],P:r[3]};if(t.o&4){w=true}var e=t._;var f=function(n){__extends(r,n);function r(r){var e=n.call(this,r)||this;r=e;K(r,t);if(t.o&1){{{r.attachShadow({mode:"open"})}}}return e}r.prototype.connectedCallback=function(){var n=this;if(y){clearTimeout(y);y=null}if(p){h.push(this)}else{tn.jmp((function(){return I(n)}))}};r.prototype.disconnectedCallback=function(){var n=this;tn.jmp((function(){return R(n)}))};r.prototype.componentOnReady=function(){return D(this).A};return r}(HTMLElement);t.O=n[0];if(!a.includes(e)&&!u.get(e)){i.push(e);u.define(e,q(f))}}))}));if(w){s.innerHTML+=v}{s.innerHTML+=i+c}if(s.innerHTML.length){s.setAttribute("data-styles","");o.insertBefore(s,l?l.nextSibling:o.firstChild);var _=(t=tn.h)!==null&&t!==void 0?t:d(rn);if(_!=null){s.setAttribute("nonce",_)}}p=false;if(h.length){h.map((function(n){return n.connectedCallback()}))}else{{tn.jmp((function(){return y=setTimeout(L,30)}))}}e()}));var z=n("s",(function(n){return tn.h=n}));var B=new WeakMap;var D=function(n){return B.get(n)};var J=n("r",(function(n,r){return B.set(r.k=n,r)}));var K=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 B.set(n,t)};var Q=function(n,r){return(0,console.error)(n,r)};var X=new Map;var Y=function(n,t,e){var i=n._.replace(/-/g,"_");var a=n.O;var u=X.get(a);if(u){return u[i]}
|
|
2
|
+
/*!__STENCIL_STATIC_IMPORT_SWITCH__*/return r.import("./".concat(a,".entry.js").concat("")).then((function(n){{X.set(a,n)}return n[i]}),Q)};var Z=new Map;var nn=typeof window!=="undefined"?window:{};var rn=nn.document||{head:{}};var tn={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 en=n("p",(function(n){return Promise.resolve(n)}));var an=function(){try{new CSSStyleSheet;return typeof(new CSSStyleSheet).replaceSync==="function"}catch(n){}return false}();var un=[];var fn=[];var on=function(n,r){return function(t){n.push(t);if(!u){u=true;if(r&&tn.o&4){ln(vn)}else{tn.raf(vn)}}}};var cn=function(n){for(var r=0;r<n.length;r++){try{n[r](performance.now())}catch(n){Q(n)}}n.length=0};var vn=function(){cn(un);{cn(fn);if(u=un.length>0){tn.raf(vn)}}};var ln=function(n){return en().then(n)};var sn=on(fn,true)}}}));
|
|
@@ -1 +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 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,2 +0,0 @@
|
|
|
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,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.$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}
|
|
@@ -1 +0,0 @@
|
|
|
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 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)}}}));
|
package/www/build/p-b6cf7a75.js
DELETED
|
@@ -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.$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}
|
|
@@ -1 +0,0 @@
|
|
|
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)}))}}}));
|