@maggioli-design-system/mds-list 3.6.3 → 3.6.4
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-eed6e3cd.js → index-620cc7b3.js} +9 -3
- package/dist/cjs/loader.cjs.js +1 -1
- package/dist/cjs/mds-list.cjs.entry.js +2 -2
- package/dist/cjs/mds-list.cjs.js +2 -2
- package/dist/collection/collection-manifest.json +1 -1
- package/dist/collection/components/mds-list/mds-list.css +0 -5
- package/dist/components/mds-list.js +1 -1
- package/dist/documentation.d.ts +1 -21
- package/dist/documentation.json +2 -2
- package/dist/esm/{index-f9ba0199.js → index-1374db80.js} +9 -3
- package/dist/esm/loader.js +2 -2
- package/dist/esm/mds-list.entry.js +2 -2
- package/dist/esm/mds-list.js +3 -3
- package/dist/esm-es5/index-1374db80.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-06ac6606.entry.js +1 -0
- package/dist/mds-list/p-b01dccae.system.js +2 -0
- package/dist/mds-list/{p-df1ca8ef.system.js → p-dc1ebdf0.system.js} +1 -1
- package/dist/mds-list/p-e925e8a0.js +2 -0
- package/dist/mds-list/p-f945eda8.system.entry.js +1 -0
- package/dist/stats.json +36 -33
- 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-06ac6606.entry.js +1 -0
- package/www/build/p-b01dccae.system.js +2 -0
- package/www/build/{p-df1ca8ef.system.js → p-dc1ebdf0.system.js} +1 -1
- package/www/build/p-e925e8a0.js +2 -0
- package/www/build/p-f945eda8.system.entry.js +1 -0
- package/dist/esm-es5/index-f9ba0199.js +0 -1
- package/dist/mds-list/p-52d919ce.system.entry.js +0 -1
- package/dist/mds-list/p-b1d4af82.js +0 -2
- package/dist/mds-list/p-fb5df3d9.entry.js +0 -1
- package/dist/mds-list/p-ffc044a5.system.js +0 -2
- package/www/build/p-52d919ce.system.entry.js +0 -1
- package/www/build/p-b1d4af82.js +0 -2
- package/www/build/p-fb5df3d9.entry.js +0 -1
- package/www/build/p-ffc044a5.system.js +0 -2
|
@@ -277,6 +277,9 @@ const createElm = (oldParentVNode, newParentVNode, childIndex, parentElm) => {
|
|
|
277
277
|
}
|
|
278
278
|
}
|
|
279
279
|
}
|
|
280
|
+
// This needs to always happen so we can hide nodes that are projected
|
|
281
|
+
// to another component but don't end up in a slot
|
|
282
|
+
elm['s-hn'] = hostTagName;
|
|
280
283
|
return elm;
|
|
281
284
|
};
|
|
282
285
|
/**
|
|
@@ -317,8 +320,9 @@ const addVnodes = (parentElm, before, parentVNode, vnodes, startIdx, endIdx) =>
|
|
|
317
320
|
*
|
|
318
321
|
* @param oldVNode an old VNode whose DOM element and children we want to update
|
|
319
322
|
* @param newVNode a new VNode representing an updated version of the old one
|
|
323
|
+
* @param isInitialRender whether or not this is the first render of the vdom
|
|
320
324
|
*/
|
|
321
|
-
const patch = (oldVNode, newVNode) => {
|
|
325
|
+
const patch = (oldVNode, newVNode, isInitialRender = false) => {
|
|
322
326
|
const elm = (newVNode.$elm$ = oldVNode.$elm$);
|
|
323
327
|
const newChildren = newVNode.$children$;
|
|
324
328
|
{
|
|
@@ -381,7 +385,7 @@ const renderVdom = (hostRef, renderFnResults, isInitialLoad = false) => {
|
|
|
381
385
|
scopeId = hostElm['s-sc'];
|
|
382
386
|
}
|
|
383
387
|
// synchronous patch
|
|
384
|
-
patch(oldVNode, rootVnode);
|
|
388
|
+
patch(oldVNode, rootVnode, isInitialLoad);
|
|
385
389
|
};
|
|
386
390
|
const attachToAncestor = (hostRef, ancestorComponent) => {
|
|
387
391
|
if (ancestorComponent && !hostRef.$onRenderResolve$ && ancestorComponent['s-p']) {
|
|
@@ -805,12 +809,14 @@ const bootstrapLazy = (lazyBundles, options = {}) => {
|
|
|
805
809
|
// If we have styles, add them to the DOM
|
|
806
810
|
if (dataStyles.innerHTML.length) {
|
|
807
811
|
dataStyles.setAttribute('data-styles', '');
|
|
808
|
-
head.insertBefore(dataStyles, metaCharset ? metaCharset.nextSibling : head.firstChild);
|
|
809
812
|
// Apply CSP nonce to the style tag if it exists
|
|
810
813
|
const nonce = (_a = plt.$nonce$) !== null && _a !== void 0 ? _a : queryNonceMetaTagContent(doc);
|
|
811
814
|
if (nonce != null) {
|
|
812
815
|
dataStyles.setAttribute('nonce', nonce);
|
|
813
816
|
}
|
|
817
|
+
// Insert the styles into the document head
|
|
818
|
+
// NOTE: this _needs_ to happen last so we can ensure the nonce (and other attributes) are applied
|
|
819
|
+
head.insertBefore(dataStyles, metaCharset ? metaCharset.nextSibling : head.firstChild);
|
|
814
820
|
}
|
|
815
821
|
// Process deferred connectedCallbacks now all components have been registered
|
|
816
822
|
isBootstrapping = false;
|
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-620cc7b3.js');
|
|
6
6
|
|
|
7
7
|
const defineCustomElements = (win, options) => {
|
|
8
8
|
if (typeof window === 'undefined') return undefined;
|
|
@@ -2,9 +2,9 @@
|
|
|
2
2
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
|
-
const index = require('./index-
|
|
5
|
+
const index = require('./index-620cc7b3.js');
|
|
6
6
|
|
|
7
|
-
const mdsListCss = ".fixed{position:fixed}.absolute{position:absolute}.border{border-width:1px}.
|
|
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:0rem;padding:0rem}";
|
|
8
8
|
|
|
9
9
|
const MdsList = class {
|
|
10
10
|
constructor(hostRef) {
|
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-620cc7b3.js');
|
|
6
6
|
|
|
7
7
|
/*
|
|
8
|
-
Stencil Client Patch Browser v4.
|
|
8
|
+
Stencil Client Patch Browser v4.9.1 | 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));
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { proxyCustomElement, HTMLElement, h, Host } from '@stencil/core/internal/client';
|
|
2
2
|
|
|
3
|
-
const mdsListCss = ".fixed{position:fixed}.absolute{position:absolute}.border{border-width:1px}.
|
|
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:0rem;padding:0rem}";
|
|
4
4
|
|
|
5
5
|
const MdsList$1 = /*@__PURE__*/ proxyCustomElement(class MdsList extends HTMLElement {
|
|
6
6
|
constructor() {
|
package/dist/documentation.d.ts
CHANGED
|
@@ -60,30 +60,10 @@ interface ComponentCompilerEventComplexType {
|
|
|
60
60
|
}
|
|
61
61
|
interface ComponentCompilerMethodComplexType {
|
|
62
62
|
signature: string;
|
|
63
|
-
parameters:
|
|
63
|
+
parameters: JsonDocMethodParameter[];
|
|
64
64
|
references: ComponentCompilerTypeReferences;
|
|
65
65
|
return: string;
|
|
66
66
|
}
|
|
67
|
-
interface CompilerJsDoc {
|
|
68
|
-
/**
|
|
69
|
-
* The text associated with the JSDoc
|
|
70
|
-
*/
|
|
71
|
-
text: string;
|
|
72
|
-
/**
|
|
73
|
-
* Tags included in the JSDoc
|
|
74
|
-
*/
|
|
75
|
-
tags: CompilerJsDocTagInfo[];
|
|
76
|
-
}
|
|
77
|
-
interface CompilerJsDocTagInfo {
|
|
78
|
-
/**
|
|
79
|
-
* The name of the tag - e.g. `@deprecated`
|
|
80
|
-
*/
|
|
81
|
-
name: string;
|
|
82
|
-
/**
|
|
83
|
-
* Additional text that is associated with the tag - e.g. `@deprecated use v2 of this API`
|
|
84
|
-
*/
|
|
85
|
-
text?: string;
|
|
86
|
-
}
|
|
87
67
|
/**
|
|
88
68
|
* The Type Library holds information about the types which are used in a
|
|
89
69
|
* Stencil project. During compilation, Stencil gathers information about the
|
package/dist/documentation.json
CHANGED
|
@@ -255,6 +255,9 @@ const createElm = (oldParentVNode, newParentVNode, childIndex, parentElm) => {
|
|
|
255
255
|
}
|
|
256
256
|
}
|
|
257
257
|
}
|
|
258
|
+
// This needs to always happen so we can hide nodes that are projected
|
|
259
|
+
// to another component but don't end up in a slot
|
|
260
|
+
elm['s-hn'] = hostTagName;
|
|
258
261
|
return elm;
|
|
259
262
|
};
|
|
260
263
|
/**
|
|
@@ -295,8 +298,9 @@ const addVnodes = (parentElm, before, parentVNode, vnodes, startIdx, endIdx) =>
|
|
|
295
298
|
*
|
|
296
299
|
* @param oldVNode an old VNode whose DOM element and children we want to update
|
|
297
300
|
* @param newVNode a new VNode representing an updated version of the old one
|
|
301
|
+
* @param isInitialRender whether or not this is the first render of the vdom
|
|
298
302
|
*/
|
|
299
|
-
const patch = (oldVNode, newVNode) => {
|
|
303
|
+
const patch = (oldVNode, newVNode, isInitialRender = false) => {
|
|
300
304
|
const elm = (newVNode.$elm$ = oldVNode.$elm$);
|
|
301
305
|
const newChildren = newVNode.$children$;
|
|
302
306
|
{
|
|
@@ -359,7 +363,7 @@ const renderVdom = (hostRef, renderFnResults, isInitialLoad = false) => {
|
|
|
359
363
|
scopeId = hostElm['s-sc'];
|
|
360
364
|
}
|
|
361
365
|
// synchronous patch
|
|
362
|
-
patch(oldVNode, rootVnode);
|
|
366
|
+
patch(oldVNode, rootVnode, isInitialLoad);
|
|
363
367
|
};
|
|
364
368
|
const attachToAncestor = (hostRef, ancestorComponent) => {
|
|
365
369
|
if (ancestorComponent && !hostRef.$onRenderResolve$ && ancestorComponent['s-p']) {
|
|
@@ -783,12 +787,14 @@ const bootstrapLazy = (lazyBundles, options = {}) => {
|
|
|
783
787
|
// If we have styles, add them to the DOM
|
|
784
788
|
if (dataStyles.innerHTML.length) {
|
|
785
789
|
dataStyles.setAttribute('data-styles', '');
|
|
786
|
-
head.insertBefore(dataStyles, metaCharset ? metaCharset.nextSibling : head.firstChild);
|
|
787
790
|
// Apply CSP nonce to the style tag if it exists
|
|
788
791
|
const nonce = (_a = plt.$nonce$) !== null && _a !== void 0 ? _a : queryNonceMetaTagContent(doc);
|
|
789
792
|
if (nonce != null) {
|
|
790
793
|
dataStyles.setAttribute('nonce', nonce);
|
|
791
794
|
}
|
|
795
|
+
// Insert the styles into the document head
|
|
796
|
+
// NOTE: this _needs_ to happen last so we can ensure the nonce (and other attributes) are applied
|
|
797
|
+
head.insertBefore(dataStyles, metaCharset ? metaCharset.nextSibling : head.firstChild);
|
|
792
798
|
}
|
|
793
799
|
// Process deferred connectedCallbacks now all components have been registered
|
|
794
800
|
isBootstrapping = false;
|
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-1374db80.js';
|
|
2
|
+
export { s as setNonce } from './index-1374db80.js';
|
|
3
3
|
|
|
4
4
|
const defineCustomElements = (win, options) => {
|
|
5
5
|
if (typeof window === 'undefined') return undefined;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { r as registerInstance, h, H as Host } from './index-
|
|
1
|
+
import { r as registerInstance, h, H as Host } from './index-1374db80.js';
|
|
2
2
|
|
|
3
|
-
const mdsListCss = ".fixed{position:fixed}.absolute{position:absolute}.border{border-width:1px}.
|
|
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:0rem;padding:0rem}";
|
|
4
4
|
|
|
5
5
|
const MdsList = class {
|
|
6
6
|
constructor(hostRef) {
|
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-1374db80.js';
|
|
2
|
+
export { s as setNonce } from './index-1374db80.js';
|
|
3
3
|
|
|
4
4
|
/*
|
|
5
|
-
Stencil Client Patch Browser v4.
|
|
5
|
+
Stencil Client Patch Browser v4.9.1 | MIT Licensed | https://stenciljs.com
|
|
6
6
|
*/
|
|
7
7
|
const patchBrowser = () => {
|
|
8
8
|
const importMeta = import.meta.url;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
var __extends=this&&this.__extends||function(){var e=function(n,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)}}}}a["s-hn"]=hostTagName;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,t){if(t===void 0){t=false}var r=n.v=e.v;var i=n.o;{if(i!==null){addVnodes(r,null,n,i,0,i.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,t)};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","");var p=(t=plt.p)!==null&&t!==void 0?t:queryNonceMetaTagContent(doc);if(p!=null){s.setAttribute("nonce",p)}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.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-1374db80.js";export{s as setNonce}from"./index-1374db80.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-1374db80.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:0rem;padding:0rem}";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-1374db80.js";export{s as setNonce}from"./index-1374db80.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 e,b as t}from"./p-e925e8a0.js";export{s as setNonce}from"./p-e925e8a0.js";(()=>{const s=import.meta.url,t={};return""!==s&&(t.resourcesUrl=new URL(".",s).href),e(t)})().then((e=>t([["p-06ac6606",[[1,"mds-list"]]]],e)));
|
|
@@ -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-dc1ebdf0.system.js', new URL(resourcesUrl, window.location.origin !== 'null' ? window.location.origin : undefined));
|
|
119
119
|
System.import(url.href);
|
|
120
120
|
};
|
|
121
121
|
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import{r as o,h as r,H as a}from"./p-e925e8a0.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:0rem;padding:0rem}";export{s as mds_list}
|
|
@@ -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 v="{visibility:hidden}[hydrated]{visibility:inherit}";var c="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 v=y(n,null);v.i=r;if(f.length>0){v.u=f}return v}));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+=c}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 u=r.u[t];var f=0;var o;var v;{o=u.l=rn.createElement(u.v);if(l(i)&&o["s-si"]!==i){o.classList.add(o["s-si"]=i)}if(u.u){for(f=0;f<u.u.length;++f){v=k(n,u,f);if(v){o.appendChild(v)}}}}o["s-hn"]=a;return o};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,t){if(t===void 0){t=false}var e=r.l=n.l;var i=r.u;{if(i!==null){j(e,null,r,i,0,i.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,v=Object.keys(f.i);o<v.length;o++){var c=v[o];if(e.hasAttribute(c)&&!["key","ref","style","class"].includes(c)){f.i[c]=e[c]}}}f.v=null;f.o|=4;n.$=f;f.l=u.l=e.shadowRoot||e;{i=e["s-sc"]}A(u,f,t)};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,v,c;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();{v=(t=i["s-p"])!==null&&t!==void 0?t:[];c=function(){return H(n)};if(v.length===0){c()}else{Promise.all(v).then(c);n.o|=4;v.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,v,c,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)){v=f("registerStyles",e._);m(u,a,!!(e.o&1));v()}}s.label=3;case 3:c=r.S;l=function(){return C(r,true)};if(c&&c["s-rc"]){c["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+=c}{s.innerHTML+=i+v}if(s.innerHTML.length){s.setAttribute("data-styles","");var _=(t=tn.h)!==null&&t!==void 0?t:d(rn);if(_!=null){s.setAttribute("nonce",_)}o.insertBefore(s,l?l.nextSibling:o.firstChild)}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(cn)}else{tn.raf(cn)}}}};var vn=function(n){for(var r=0;r<n.length;r++){try{n[r](performance.now())}catch(n){Q(n)}}n.length=0};var cn=function(){vn(un);{vn(fn);if(u=un.length>0){tn.raf(cn)}}};var ln=function(n){return en().then(n)};var sn=on(fn,true)}}}));
|
|
@@ -1 +1 @@
|
|
|
1
|
-
System.register(["./p-
|
|
1
|
+
System.register(["./p-b01dccae.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-f945eda8.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=(t,l,o)=>{const s=l.o[o];let i,c,r=0;if(i=s.$=L.createElement(s.u),null!=n&&i["s-si"]!==n&&i.classList.add(i["s-si"]=n),s.o)for(r=0;r<s.o.length;++r)c=f(t,s,r),c&&i.appendChild(c);return i["s-hn"]=e,i},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","");const n=null!==(t=R.M)&&void 0!==t?t:s(L);null!=n&&f.setAttribute("nonce",n),r.insertBefore(f,a?a.nextSibling:r.firstChild)}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 @@
|
|
|
1
|
+
System.register(["./p-b01dccae.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:0rem;padding:0rem}";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}}}));
|
package/dist/stats.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"timestamp": "2024-01-
|
|
2
|
+
"timestamp": "2024-01-10T08:24:52",
|
|
3
3
|
"compiler": {
|
|
4
4
|
"name": "node",
|
|
5
5
|
"version": "20.10.0"
|
|
@@ -55,17 +55,17 @@
|
|
|
55
55
|
"name": "dist-lazy",
|
|
56
56
|
"files": 35,
|
|
57
57
|
"generatedFiles": [
|
|
58
|
-
"./dist/cjs/index-
|
|
58
|
+
"./dist/cjs/index-620cc7b3.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-1374db80.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-1374db80.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-06ac6606.entry.js",
|
|
78
79
|
"./dist/mds-list/p-50ea2036.system.js",
|
|
79
|
-
"./dist/mds-list/p-
|
|
80
|
-
"./dist/mds-list/p-
|
|
81
|
-
"./dist/mds-list/p-
|
|
82
|
-
"./dist/mds-list/p-
|
|
83
|
-
"./dist/mds-list/p-ffc044a5.system.js",
|
|
80
|
+
"./dist/mds-list/p-b01dccae.system.js",
|
|
81
|
+
"./dist/mds-list/p-dc1ebdf0.system.js",
|
|
82
|
+
"./dist/mds-list/p-e925e8a0.js",
|
|
83
|
+
"./dist/mds-list/p-f945eda8.system.entry.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-06ac6606.entry.js",
|
|
87
88
|
"./www/build/p-50ea2036.system.js",
|
|
88
|
-
"./www/build/p-
|
|
89
|
-
"./www/build/p-
|
|
90
|
-
"./www/build/p-
|
|
91
|
-
"./www/build/p-
|
|
92
|
-
"./www/build/p-ffc044a5.system.js"
|
|
89
|
+
"./www/build/p-b01dccae.system.js",
|
|
90
|
+
"./www/build/p-dc1ebdf0.system.js",
|
|
91
|
+
"./www/build/p-e925e8a0.js",
|
|
92
|
+
"./www/build/p-f945eda8.system.entry.js"
|
|
93
93
|
]
|
|
94
94
|
},
|
|
95
95
|
{
|
|
@@ -122,12 +122,12 @@
|
|
|
122
122
|
"components": [
|
|
123
123
|
"mds-list"
|
|
124
124
|
],
|
|
125
|
-
"bundleId": "p-
|
|
126
|
-
"fileName": "p-
|
|
125
|
+
"bundleId": "p-06ac6606",
|
|
126
|
+
"fileName": "p-06ac6606.entry.js",
|
|
127
127
|
"imports": [
|
|
128
|
-
"p-
|
|
128
|
+
"p-e925e8a0.js"
|
|
129
129
|
],
|
|
130
|
-
"originalByteSize":
|
|
130
|
+
"originalByteSize": 867
|
|
131
131
|
}
|
|
132
132
|
],
|
|
133
133
|
"esm": [
|
|
@@ -139,9 +139,9 @@
|
|
|
139
139
|
"bundleId": "mds-list",
|
|
140
140
|
"fileName": "mds-list.entry.js",
|
|
141
141
|
"imports": [
|
|
142
|
-
"index-
|
|
142
|
+
"index-1374db80.js"
|
|
143
143
|
],
|
|
144
|
-
"originalByteSize":
|
|
144
|
+
"originalByteSize": 871
|
|
145
145
|
}
|
|
146
146
|
],
|
|
147
147
|
"es5": [
|
|
@@ -153,9 +153,9 @@
|
|
|
153
153
|
"bundleId": "mds-list",
|
|
154
154
|
"fileName": "mds-list.entry.js",
|
|
155
155
|
"imports": [
|
|
156
|
-
"index-
|
|
156
|
+
"index-1374db80.js"
|
|
157
157
|
],
|
|
158
|
-
"originalByteSize":
|
|
158
|
+
"originalByteSize": 871
|
|
159
159
|
}
|
|
160
160
|
],
|
|
161
161
|
"system": [
|
|
@@ -164,12 +164,12 @@
|
|
|
164
164
|
"components": [
|
|
165
165
|
"mds-list"
|
|
166
166
|
],
|
|
167
|
-
"bundleId": "p-
|
|
168
|
-
"fileName": "p-
|
|
167
|
+
"bundleId": "p-f945eda8.system",
|
|
168
|
+
"fileName": "p-f945eda8.system.entry.js",
|
|
169
169
|
"imports": [
|
|
170
|
-
"p-
|
|
170
|
+
"p-b01dccae.system.js"
|
|
171
171
|
],
|
|
172
|
-
"originalByteSize":
|
|
172
|
+
"originalByteSize": 1132
|
|
173
173
|
}
|
|
174
174
|
],
|
|
175
175
|
"commonjs": [
|
|
@@ -181,9 +181,9 @@
|
|
|
181
181
|
"bundleId": "mds-list.cjs",
|
|
182
182
|
"fileName": "mds-list.cjs.entry.js",
|
|
183
183
|
"imports": [
|
|
184
|
-
"index-
|
|
184
|
+
"index-620cc7b3.js"
|
|
185
185
|
],
|
|
186
|
-
"originalByteSize":
|
|
186
|
+
"originalByteSize": 941
|
|
187
187
|
}
|
|
188
188
|
]
|
|
189
189
|
},
|
|
@@ -245,7 +245,7 @@
|
|
|
245
245
|
"modeName": "$",
|
|
246
246
|
"styleId": "MDS-LIST",
|
|
247
247
|
"styleStr": null,
|
|
248
|
-
"styleIdentifier": "
|
|
248
|
+
"styleIdentifier": "MdsListStyle",
|
|
249
249
|
"externalStyles": [
|
|
250
250
|
{
|
|
251
251
|
"absolutePath": "/builds/maggiolispa/ricerca-sviluppo-new-media/magma/design-system/projects/stencil/.build/mds-list/src/components/mds-list/mds-list.css",
|
|
@@ -323,10 +323,10 @@
|
|
|
323
323
|
"htmlParts": [],
|
|
324
324
|
"isUpdateable": false,
|
|
325
325
|
"potentialCmpRefs": [],
|
|
326
|
-
"directDependencies": [],
|
|
327
|
-
"dependencies": [],
|
|
328
326
|
"dependents": [],
|
|
329
|
-
"
|
|
327
|
+
"dependencies": [],
|
|
328
|
+
"directDependents": [],
|
|
329
|
+
"directDependencies": []
|
|
330
330
|
}
|
|
331
331
|
],
|
|
332
332
|
"entryKey": "mds-list.entry"
|
|
@@ -334,7 +334,7 @@
|
|
|
334
334
|
],
|
|
335
335
|
"componentGraph": {
|
|
336
336
|
"sc-mds-list": [
|
|
337
|
-
"p-
|
|
337
|
+
"p-e925e8a0.js"
|
|
338
338
|
]
|
|
339
339
|
},
|
|
340
340
|
"sourceGraph": {
|
|
@@ -366,5 +366,8 @@
|
|
|
366
366
|
"./src/type/typography.ts": [],
|
|
367
367
|
"./src/type/variant.ts": []
|
|
368
368
|
},
|
|
369
|
+
"rollupResults": {
|
|
370
|
+
"modules": []
|
|
371
|
+
},
|
|
369
372
|
"collections": []
|
|
370
373
|
}
|
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.6.
|
|
3
|
+
"version": "3.6.4",
|
|
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.7.
|
|
27
|
-
"@maggioli-design-system/styles": "14.
|
|
28
|
-
"@stencil/core": "4.
|
|
26
|
+
"@maggioli-design-system/mds-list-item": "3.7.4",
|
|
27
|
+
"@maggioli-design-system/styles": "14.1.0",
|
|
28
|
+
"@stencil/core": "4.9.1"
|
|
29
29
|
},
|
|
30
30
|
"license": "MIT",
|
|
31
31
|
"author": {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{p as
|
|
1
|
+
import{p as e,b as t}from"./p-e925e8a0.js";export{s as setNonce}from"./p-e925e8a0.js";(()=>{const s=import.meta.url,t={};return""!==s&&(t.resourcesUrl=new URL(".",s).href),e(t)})().then((e=>t([["p-06ac6606",[[1,"mds-list"]]]],e)));
|
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-dc1ebdf0.system.js', new URL(resourcesUrl, window.location.origin !== 'null' ? window.location.origin : undefined));
|
|
119
119
|
System.import(url.href);
|
|
120
120
|
};
|
|
121
121
|
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import{r as o,h as r,H as a}from"./p-e925e8a0.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:0rem;padding:0rem}";export{s as mds_list}
|
|
@@ -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 v="{visibility:hidden}[hydrated]{visibility:inherit}";var c="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 v=y(n,null);v.i=r;if(f.length>0){v.u=f}return v}));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+=c}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 u=r.u[t];var f=0;var o;var v;{o=u.l=rn.createElement(u.v);if(l(i)&&o["s-si"]!==i){o.classList.add(o["s-si"]=i)}if(u.u){for(f=0;f<u.u.length;++f){v=k(n,u,f);if(v){o.appendChild(v)}}}}o["s-hn"]=a;return o};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,t){if(t===void 0){t=false}var e=r.l=n.l;var i=r.u;{if(i!==null){j(e,null,r,i,0,i.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,v=Object.keys(f.i);o<v.length;o++){var c=v[o];if(e.hasAttribute(c)&&!["key","ref","style","class"].includes(c)){f.i[c]=e[c]}}}f.v=null;f.o|=4;n.$=f;f.l=u.l=e.shadowRoot||e;{i=e["s-sc"]}A(u,f,t)};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,v,c;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();{v=(t=i["s-p"])!==null&&t!==void 0?t:[];c=function(){return H(n)};if(v.length===0){c()}else{Promise.all(v).then(c);n.o|=4;v.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,v,c,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)){v=f("registerStyles",e._);m(u,a,!!(e.o&1));v()}}s.label=3;case 3:c=r.S;l=function(){return C(r,true)};if(c&&c["s-rc"]){c["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+=c}{s.innerHTML+=i+v}if(s.innerHTML.length){s.setAttribute("data-styles","");var _=(t=tn.h)!==null&&t!==void 0?t:d(rn);if(_!=null){s.setAttribute("nonce",_)}o.insertBefore(s,l?l.nextSibling:o.firstChild)}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(cn)}else{tn.raf(cn)}}}};var vn=function(n){for(var r=0;r<n.length;r++){try{n[r](performance.now())}catch(n){Q(n)}}n.length=0};var cn=function(){vn(un);{vn(fn);if(u=un.length>0){tn.raf(cn)}}};var ln=function(n){return en().then(n)};var sn=on(fn,true)}}}));
|
|
@@ -1 +1 @@
|
|
|
1
|
-
System.register(["./p-
|
|
1
|
+
System.register(["./p-b01dccae.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-f945eda8.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=(t,l,o)=>{const s=l.o[o];let i,c,r=0;if(i=s.$=L.createElement(s.u),null!=n&&i["s-si"]!==n&&i.classList.add(i["s-si"]=n),s.o)for(r=0;r<s.o.length;++r)c=f(t,s,r),c&&i.appendChild(c);return i["s-hn"]=e,i},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","");const n=null!==(t=R.M)&&void 0!==t?t:s(L);null!=n&&f.setAttribute("nonce",n),r.insertBefore(f,a?a.nextSibling:r.firstChild)}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 @@
|
|
|
1
|
+
System.register(["./p-b01dccae.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:0rem;padding:0rem}";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 +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 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};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
System.register(["./p-ffc044a5.system.js"],(function(t){"use strict";var o,r,s;return{setters:[function(t){o=t.r;r=t.h;s=t.H}],execute:function(){var a=".fixed{position:fixed}.absolute{position:absolute}.border{border-width:1px}.text{font-size:1rem}.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:0rem;padding:0rem}";var e=t("mds_list",function(){function t(t){o(this,t)}t.prototype.render=function(){return r(s,null,r("slot",null))};return t}());e.style=a}}}));
|
|
@@ -1,2 +0,0 @@
|
|
|
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}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
import{r as o,h as r,H as s}from"./p-b1d4af82.js";const a=class{constructor(r){o(this,r)}render(){return r(s,null,r("slot",null))}};a.style=".fixed{position:fixed}.absolute{position:absolute}.border{border-width:1px}.text{font-size:1rem}.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:0rem;padding:0rem}";export{a as mds_list}
|
|
@@ -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="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
|
-
System.register(["./p-ffc044a5.system.js"],(function(t){"use strict";var o,r,s;return{setters:[function(t){o=t.r;r=t.h;s=t.H}],execute:function(){var a=".fixed{position:fixed}.absolute{position:absolute}.border{border-width:1px}.text{font-size:1rem}.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:0rem;padding:0rem}";var e=t("mds_list",function(){function t(t){o(this,t)}t.prototype.render=function(){return r(s,null,r("slot",null))};return t}());e.style=a}}}));
|
package/www/build/p-b1d4af82.js
DELETED
|
@@ -1,2 +0,0 @@
|
|
|
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}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
import{r as o,h as r,H as s}from"./p-b1d4af82.js";const a=class{constructor(r){o(this,r)}render(){return r(s,null,r("slot",null))}};a.style=".fixed{position:fixed}.absolute{position:absolute}.border{border-width:1px}.text{font-size:1rem}.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:0rem;padding:0rem}";export{a as mds_list}
|
|
@@ -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="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)}}}));
|