@maggioli-design-system/mds-table-row 4.4.1 → 4.4.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/{index-6d791eac.js → index-74074cfd.js} +24 -17
- package/dist/cjs/loader.cjs.js +1 -1
- package/dist/cjs/mds-table-row.cjs.entry.js +12 -12
- package/dist/cjs/mds-table-row.cjs.js +2 -2
- package/dist/collection/collection-manifest.json +1 -1
- package/dist/collection/common/aria.js +18 -18
- package/dist/collection/common/keyboard-manager.js +38 -38
- package/dist/collection/common/unit.js +7 -7
- package/dist/collection/components/mds-table-row/mds-table-row.css +4 -0
- package/dist/collection/components/mds-table-row/mds-table-row.js +51 -51
- package/dist/collection/dictionary/autocomplete.js +56 -56
- package/dist/collection/dictionary/button.js +19 -19
- package/dist/collection/dictionary/color.js +14 -14
- package/dist/collection/dictionary/floating-ui.js +14 -14
- package/dist/collection/dictionary/input.js +31 -15
- package/dist/collection/dictionary/loading.js +2 -2
- package/dist/collection/dictionary/typography.js +46 -46
- package/dist/collection/dictionary/variant.js +54 -54
- package/dist/collection/fixtures/cities.js +107 -107
- package/dist/components/mds-table-row.d.ts +2 -2
- package/dist/components/mds-table-row.js +27 -27
- package/dist/documentation.json +2 -2
- package/dist/esm/{index-04035e77.js → index-152f5146.js} +24 -17
- package/dist/esm/loader.js +2 -2
- package/dist/esm/mds-table-row.entry.js +12 -12
- package/dist/esm/mds-table-row.js +3 -3
- package/dist/esm-es5/{index-04035e77.js → index-152f5146.js} +1 -1
- package/dist/esm-es5/loader.js +1 -1
- package/dist/esm-es5/mds-table-row.entry.js +1 -1
- package/dist/esm-es5/mds-table-row.js +1 -1
- package/dist/mds-table-row/mds-table-row.esm.js +1 -1
- package/dist/mds-table-row/mds-table-row.js +15 -15
- package/dist/mds-table-row/p-0461a91a.system.entry.js +1 -0
- package/{www/build/p-35ae09e1.system.js → dist/mds-table-row/p-1bbb8bb6.system.js} +1 -1
- package/dist/mds-table-row/{p-8f394fbb.system.js → p-6d1e82c7.system.js} +1 -1
- package/dist/mds-table-row/p-8b036a2e.entry.js +1 -0
- package/dist/mds-table-row/p-ccb2cba7.js +2 -0
- package/dist/stats.json +30 -30
- package/dist/types/common/keyboard-manager.d.ts +9 -9
- package/dist/types/components/mds-table-row/mds-table-row.d.ts +3 -3
- package/dist/types/dictionary/input.d.ts +2 -1
- package/dist/types/interface/input-value.d.ts +1 -1
- package/dist/types/stencil-public-runtime.d.ts +8 -0
- package/documentation.json +14 -4
- package/package.json +4 -4
- package/src/dictionary/input.ts +18 -0
- package/src/fixtures/icons.json +3 -0
- package/src/fixtures/iconsauce.json +3 -0
- package/www/build/mds-table-row.esm.js +1 -1
- package/www/build/mds-table-row.js +15 -15
- package/www/build/p-0461a91a.system.entry.js +1 -0
- package/{dist/mds-table-row/p-35ae09e1.system.js → www/build/p-1bbb8bb6.system.js} +1 -1
- package/www/build/{p-8f394fbb.system.js → p-6d1e82c7.system.js} +1 -1
- package/www/build/p-8b036a2e.entry.js +1 -0
- package/www/build/p-ccb2cba7.js +2 -0
- package/dist/mds-table-row/p-43afa545.system.entry.js +0 -1
- package/dist/mds-table-row/p-88b806ec.js +0 -2
- package/dist/mds-table-row/p-abb0ef2f.entry.js +0 -1
- package/www/build/p-43afa545.system.entry.js +0 -1
- package/www/build/p-88b806ec.js +0 -2
- package/www/build/p-abb0ef2f.entry.js +0 -1
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
declare const inputTextTypeDictionary: string[];
|
|
2
|
+
declare const inputFieldTypeDictionary: string[];
|
|
2
3
|
declare const inputControlsLayoutDictionary: string[];
|
|
3
4
|
declare const inputControlsIconDictionary: string[];
|
|
4
|
-
export { inputControlsIconDictionary, inputControlsLayoutDictionary, inputTextTypeDictionary, };
|
|
5
|
+
export { inputControlsIconDictionary, inputControlsLayoutDictionary, inputTextTypeDictionary, inputFieldTypeDictionary, };
|
|
@@ -810,6 +810,9 @@ export declare namespace JSXBase {
|
|
|
810
810
|
name?: string;
|
|
811
811
|
type?: string;
|
|
812
812
|
value?: string | string[] | number;
|
|
813
|
+
popoverTargetAction?: string;
|
|
814
|
+
popoverTargetElement?: Element | null;
|
|
815
|
+
popoverTarget?: string;
|
|
813
816
|
}
|
|
814
817
|
interface CanvasHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
815
818
|
height?: number | string;
|
|
@@ -971,6 +974,9 @@ export declare namespace JSXBase {
|
|
|
971
974
|
webkitdirectory?: boolean;
|
|
972
975
|
webkitEntries?: any;
|
|
973
976
|
width?: number | string;
|
|
977
|
+
popoverTargetAction?: string;
|
|
978
|
+
popoverTargetElement?: Element | null;
|
|
979
|
+
popoverTarget?: string;
|
|
974
980
|
}
|
|
975
981
|
interface KeygenHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
976
982
|
autoFocus?: boolean;
|
|
@@ -1223,6 +1229,7 @@ export declare namespace JSXBase {
|
|
|
1223
1229
|
draggable?: boolean;
|
|
1224
1230
|
hidden?: boolean;
|
|
1225
1231
|
id?: string;
|
|
1232
|
+
inert?: boolean;
|
|
1226
1233
|
lang?: string;
|
|
1227
1234
|
spellcheck?: 'true' | 'false' | any;
|
|
1228
1235
|
style?: {
|
|
@@ -1231,6 +1238,7 @@ export declare namespace JSXBase {
|
|
|
1231
1238
|
tabIndex?: number;
|
|
1232
1239
|
tabindex?: number | string;
|
|
1233
1240
|
title?: string;
|
|
1241
|
+
popover?: string | null;
|
|
1234
1242
|
inputMode?: string;
|
|
1235
1243
|
inputmode?: string;
|
|
1236
1244
|
enterKeyHint?: string;
|
package/documentation.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
|
-
"timestamp": "2023-
|
|
2
|
+
"timestamp": "2023-12-20T08:21:18",
|
|
3
3
|
"compiler": {
|
|
4
4
|
"name": "@stencil/core",
|
|
5
|
-
"version": "4.
|
|
5
|
+
"version": "4.8.0",
|
|
6
6
|
"typescriptVersion": "5.2.2"
|
|
7
7
|
},
|
|
8
8
|
"components": [
|
|
@@ -301,11 +301,21 @@
|
|
|
301
301
|
"docstring": "",
|
|
302
302
|
"path": "src/components/mds-input/meta/event-detail.ts"
|
|
303
303
|
},
|
|
304
|
-
"src/components/mds-input-field/meta/types.ts::
|
|
305
|
-
"declaration": "export type
|
|
304
|
+
"src/components/mds-input-field/meta/types.ts::InputFieldType": {
|
|
305
|
+
"declaration": "export type InputFieldType =\n | 'date'\n | 'email'\n | 'number'\n | 'password'\n | 'search'\n | 'tel'\n | 'text'\n | 'textarea'\n | 'time'\n | 'url'\n | 'cc'\n | 'cf'\n | 'isbn'\n | 'piva'",
|
|
306
306
|
"docstring": "",
|
|
307
307
|
"path": "src/components/mds-input-field/meta/types.ts"
|
|
308
308
|
},
|
|
309
|
+
"src/components/mds-input-field/meta/validators.ts::MdsValidatorFn": {
|
|
310
|
+
"declaration": "(input: string) => null | MdsValidationErrors",
|
|
311
|
+
"docstring": "",
|
|
312
|
+
"path": "src/components/mds-input-field/meta/validators.ts"
|
|
313
|
+
},
|
|
314
|
+
"src/components/mds-input-field/meta/validators.ts::MdsValidationErrors": {
|
|
315
|
+
"declaration": "export interface MdsValidationErrors {\n [key: string]: string\n}",
|
|
316
|
+
"docstring": "",
|
|
317
|
+
"path": "src/components/mds-input-field/meta/validators.ts"
|
|
318
|
+
},
|
|
309
319
|
"src/interface/input-value.ts::InputValue": {
|
|
310
320
|
"declaration": "export interface InputValue {\n value: InputValueType\n}",
|
|
311
321
|
"docstring": "",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@maggioli-design-system/mds-table-row",
|
|
3
|
-
"version": "4.4.
|
|
3
|
+
"version": "4.4.2",
|
|
4
4
|
"description": "mds-table-row 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-table-cell": "4.4.
|
|
27
|
-
"@maggioli-design-system/styles": "
|
|
28
|
-
"@stencil/core": "4.
|
|
26
|
+
"@maggioli-design-system/mds-table-cell": "4.4.2",
|
|
27
|
+
"@maggioli-design-system/styles": "14.0.0",
|
|
28
|
+
"@stencil/core": "4.8.0"
|
|
29
29
|
},
|
|
30
30
|
"license": "MIT",
|
|
31
31
|
"author": {
|
package/src/dictionary/input.ts
CHANGED
|
@@ -11,6 +11,23 @@ const inputTextTypeDictionary = [
|
|
|
11
11
|
'url',
|
|
12
12
|
]
|
|
13
13
|
|
|
14
|
+
const inputFieldTypeDictionary = [
|
|
15
|
+
'date',
|
|
16
|
+
'email',
|
|
17
|
+
'number',
|
|
18
|
+
'password',
|
|
19
|
+
'search',
|
|
20
|
+
'tel',
|
|
21
|
+
'text',
|
|
22
|
+
'textarea',
|
|
23
|
+
'time',
|
|
24
|
+
'url',
|
|
25
|
+
'cc',
|
|
26
|
+
'cf',
|
|
27
|
+
'isbn',
|
|
28
|
+
'piva',
|
|
29
|
+
]
|
|
30
|
+
|
|
14
31
|
|
|
15
32
|
const inputControlsLayoutDictionary = [
|
|
16
33
|
'horizontal',
|
|
@@ -26,5 +43,6 @@ export {
|
|
|
26
43
|
inputControlsIconDictionary,
|
|
27
44
|
inputControlsLayoutDictionary,
|
|
28
45
|
inputTextTypeDictionary,
|
|
46
|
+
inputFieldTypeDictionary,
|
|
29
47
|
}
|
|
30
48
|
|
package/src/fixtures/icons.json
CHANGED
|
@@ -27,6 +27,7 @@
|
|
|
27
27
|
"mgg/address-book-off",
|
|
28
28
|
"mgg/address-book-on",
|
|
29
29
|
"mgg/adv-denied",
|
|
30
|
+
"mgg/alerts-pagopa",
|
|
30
31
|
"mgg/area-edificabile",
|
|
31
32
|
"mgg/area-weather",
|
|
32
33
|
"mgg/assignments-accept-rejection",
|
|
@@ -94,6 +95,7 @@
|
|
|
94
95
|
"mgg/file-type-pdf",
|
|
95
96
|
"mgg/file-type-success",
|
|
96
97
|
"mgg/file-type-warning",
|
|
98
|
+
"mgg/file-xml",
|
|
97
99
|
"mgg/finance-euro-cashback",
|
|
98
100
|
"mgg/fit-horizontal",
|
|
99
101
|
"mgg/fit-vertical",
|
|
@@ -224,6 +226,7 @@
|
|
|
224
226
|
"mgg/todo-pause",
|
|
225
227
|
"mgg/todo-running-completed",
|
|
226
228
|
"mgg/todo-suspended",
|
|
229
|
+
"mgg/touchpoint-laptop-info",
|
|
227
230
|
"mgg/traffic-cone",
|
|
228
231
|
"mgg/trending-down",
|
|
229
232
|
"mgg/tribute",
|
|
@@ -16,6 +16,7 @@
|
|
|
16
16
|
"mgg/address-book-off",
|
|
17
17
|
"mgg/address-book-on",
|
|
18
18
|
"mgg/adv-denied",
|
|
19
|
+
"mgg/alerts-pagopa",
|
|
19
20
|
"mgg/area-edificabile",
|
|
20
21
|
"mgg/area-weather",
|
|
21
22
|
"mgg/assignments-accept-rejection",
|
|
@@ -83,6 +84,7 @@
|
|
|
83
84
|
"mgg/file-type-pdf",
|
|
84
85
|
"mgg/file-type-success",
|
|
85
86
|
"mgg/file-type-warning",
|
|
87
|
+
"mgg/file-xml",
|
|
86
88
|
"mgg/finance-euro-cashback",
|
|
87
89
|
"mgg/fit-horizontal",
|
|
88
90
|
"mgg/fit-vertical",
|
|
@@ -213,6 +215,7 @@
|
|
|
213
215
|
"mgg/todo-running-completed",
|
|
214
216
|
"mgg/todo-suspended",
|
|
215
217
|
"mgg/todo",
|
|
218
|
+
"mgg/touchpoint-laptop-info",
|
|
216
219
|
"mgg/traffic-cone",
|
|
217
220
|
"mgg/trending-down",
|
|
218
221
|
"mgg/tribute",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{p as e,b as
|
|
1
|
+
import{p as e,b as a}from"./p-ccb2cba7.js";export{s as setNonce}from"./p-ccb2cba7.js";(()=>{const a=import.meta.url,t={};return""!==a&&(t.resourcesUrl=new URL(".",a).href),e(t)})().then((e=>a([["p-8b036a2e",[[1,"mds-table-row",{interactive:[1540]},[[4,"mdsTableInteractiveChange","tableInteractiveHandler"]]]]]],e)));
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
// Safari 10 support type="module" but still download and executes the nomodule script
|
|
7
7
|
if (!currentScript || !currentScript.hasAttribute('nomodule') || !('onbeforeload' in currentScript)) {
|
|
8
8
|
|
|
9
|
-
|
|
9
|
+
/**
|
|
10
10
|
* core-js 3.6.5
|
|
11
11
|
* https://github.com/zloirock/core-js
|
|
12
12
|
* License: http://rock.mit-license.org
|
|
@@ -106,22 +106,22 @@ DOMTokenList
|
|
|
106
106
|
*/
|
|
107
107
|
!function(){var e="undefined"!=typeof self,n=e?self:global;var t;if("undefined"!=typeof document){var e=document.querySelector("base[href]");e&&(t=e.href)}if(!t&&"undefined"!=typeof location){var e=(t=location.href.split("#")[0].split("?")[0]).lastIndexOf("/");-1!==e&&(t=t.slice(0,e+1))}var r=/\\/g,o="undefined"!=typeof Symbol,i=o&&Symbol.toStringTag,c=o?Symbol():"@";function u(){this[c]={}}var s=u.prototype;var l;s.import=function(e,n){var t=this;return Promise.resolve(t.resolve(e,n)).then(function(e){var n=function e(n,t,r){var o=n[c][t];if(o)return o;var u=[],s=Object.create(null);i&&Object.defineProperty(s,i,{value:"Module"});var l=Promise.resolve().then(function(){return n.instantiate(t,r)}).then(function(e){if(!e)throw Error("Module "+t+" did not instantiate");var r=e[1](function(e,n){o.h=!0;var t=!1;if("object"!=typeof e)e in s&&s[e]===n||(s[e]=n,t=!0);else for(var n in e){var r=e[n];n in s&&s[n]===r||(s[n]=r,t=!0)}if(t)for(var e=0;e<u.length;e++)u[e](s);return n},2===e[1].length?{import:function(e){return n.import(e,t)},meta:n.createContext(t)}:void 0);return o.e=r.execute||function(){},[e[0],r.setters||[]]});var f=l.then(function(r){return Promise.all(r[0].map(function(o,i){var c=r[1][i];return Promise.resolve(n.resolve(o,t)).then(function(r){var o=e(n,r,t);return Promise.resolve(o.I).then(function(){return c&&(o.i.push(c),!o.h&&o.I||c(o.n)),o})})})).then(function(e){o.d=e})});return f.catch(function(e){o.e=null,o.er=e}),o=n[c][t]={id:t,i:u,n:s,I:l,L:f,h:!1,d:void 0,e:void 0,er:void 0,E:void 0,C:void 0}}(t,e);return n.C||function(e,n){return n.C=function e(n,t,r){if(!r[t.id])return r[t.id]=!0,Promise.resolve(t.L).then(function(){return Promise.all(t.d.map(function(t){return e(n,t,r)}))})}(e,n,{}).then(function(){return function e(n,t,r){if(r[t.id])return;if(r[t.id]=!0,!t.e){if(t.er)throw t.er;return t.E?t.E:void 0}var o;return t.d.forEach(function(t){{var i=e(n,t,r);i&&(o=o||[]).push(i)}}),o?Promise.all(o).then(i):i();function i(){try{var e=t.e.call(f);if(e)return e=e.then(function(){t.C=t.n,t.E=null}),t.E=t.E||e;t.C=t.n}catch(e){throw t.er=e,e}finally{t.L=t.I=void 0,t.e=null}}}(e,n,{})}).then(function(){return n.n})}(t,n)})},s.createContext=function(e){return{url:e}},s.register=function(e,n){l=[e,n]},s.getRegister=function(){var e=l;return l=void 0,e};var f=Object.freeze(Object.create(null));n.System=n.System||new u;var d=s.register;s.register=function(e,n){d.call(this,e,n)},s.instantiate=function(e,n){var t=this;return".json"===e.substr(-5)?fetch(e).then(function(e){return e.text()}).then(function(e){return[[],function(n){return{execute:function(){n("default",JSON.parse(e))}}}]}):new Promise(function(r,o){var i;function c(n){n.filename===e&&(i=n.error)}window.addEventListener("error",c);var u=document.createElement("script");u.charset="utf-8",u.async=!0,u.addEventListener("error",function(){window.removeEventListener("error",c),o(Error("Error loading "+e+(n?" from "+n:"")))}),u.addEventListener("load",function(){window.removeEventListener("error",c),document.head.removeChild(u),i?o(i):r(t.getRegister())}),u.src=e,document.head.appendChild(u)})},e&&"function"==typeof importScripts&&(s.instantiate=function(e){var n=this;return new Promise(function(t,r){try{importScripts(e)}catch(e){r(e)}t(n.getRegister())})}),s.resolve=function(e,n){var o=function(e,n){if(-1!==e.indexOf("\\")&&(e=e.replace(r,"/")),"/"===e[0]&&"/"===e[1])return n.slice(0,n.indexOf(":")+1)+e;if("."===e[0]&&("/"===e[1]||"."===e[1]&&("/"===e[2]||2===e.length&&(e+="/"))||1===e.length&&(e+="/"))||"/"===e[0]){var t=n.slice(0,n.indexOf(":")+1);var r;if(r="/"===n[t.length+1]?"file:"!==t?(r=n.slice(t.length+2)).slice(r.indexOf("/")+1):n.slice(8):n.slice(t.length+("/"===n[t.length])),"/"===e[0])return n.slice(0,n.length-r.length-1)+e;var o=r.slice(0,r.lastIndexOf("/")+1)+e,i=[];var c=-1;for(var e=0;e<o.length;e++)-1!==c?"/"===o[e]&&(i.push(o.slice(c,e+1)),c=-1):"."===o[e]?"."!==o[e+1]||"/"!==o[e+2]&&e+2!==o.length?"/"===o[e+1]||e+1===o.length?e+=1:c=e:(i.pop(),e+=2):c=e;return-1!==c&&i.push(o.slice(c)),n.slice(0,n.length-r.length)+i.join("")}}(e,n||t);if(!o){if(-1!==e.indexOf(":"))return Promise.resolve(e);throw Error('Cannot resolve "'+e+(n?'" from '+n:'"'))}return Promise.resolve(o)}}();
|
|
108
108
|
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
109
|
+
// Figure out currentScript (for IE11, since it does not support currentScript)
|
|
110
|
+
var regex = /\/mds-table-row(\.esm)?\.js($|\?|#)/;
|
|
111
|
+
var scriptElm = currentScript || Array.from(document.querySelectorAll('script')).find(function(s) {
|
|
112
|
+
return regex.test(s.src) || s.getAttribute('data-stencil-namespace') === "mds-table-row";
|
|
113
|
+
});
|
|
114
114
|
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
115
|
+
var resourcesUrl = scriptElm ? scriptElm.getAttribute('data-resources-url') || scriptElm.src : '';
|
|
116
|
+
var start = function() {
|
|
117
|
+
// if src is not present then origin is "null", and new URL() throws TypeError: Failed to construct 'URL': Invalid base URL
|
|
118
|
+
var url = new URL('./p-1bbb8bb6.system.js', new URL(resourcesUrl, window.location.origin !== 'null' ? window.location.origin : undefined));
|
|
119
|
+
System.import(url.href);
|
|
120
|
+
};
|
|
121
121
|
|
|
122
|
-
|
|
122
|
+
start();
|
|
123
123
|
|
|
124
|
-
|
|
125
|
-
|
|
124
|
+
// Note: using .call(window) here because the self-executing function needs
|
|
125
|
+
// to be scoped to the window object for the ES6Promise polyfill to work
|
|
126
126
|
}
|
|
127
127
|
}).call(window);
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
System.register(["./p-6d1e82c7.system.js"],(function(t){"use strict";var o,r,e;return{setters:[function(t){o=t.r;r=t.h;e=t.H}],execute:function(){var s=".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{display:table-row}:host([interactive]:hover){--mds-table-cell-background:var(--mds-table-cell-background-hover, rgb(var(--tone-neutral)))}";var a=t("mds_table_row",function(){function t(t){o(this,t);this.interactive=undefined}t.prototype.tableInteractiveHandler=function(t){this.interactive=t.detail};t.prototype.render=function(){return r(e,{role:"row"},r("slot",null))};return t}());a.style=s}}}));
|
|
@@ -1 +1 @@
|
|
|
1
|
-
System.register(["./p-
|
|
1
|
+
System.register(["./p-6d1e82c7.system.js"],(function(e,t){"use strict";var n,r;return{setters:[function(t){n=t.p;r=t.b;e("setNonce",t.s)}],execute:function(){var e=function(){var e=t.meta.url;var r={};if(e!==""){r.resourcesUrl=new URL(".",e).href}return n(r)};e().then((function(e){return r([["p-0461a91a.system",[[1,"mds-table-row",{interactive:[1540]},[[4,"mdsTableInteractiveChange","tableInteractiveHandler"]]]]]],e)}))}}}));
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
var __extends=this&&this.__extends||function(){var n=function(r,e){n=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(n,r){n.__proto__=r}||function(n,r){for(var e in r)if(Object.prototype.hasOwnProperty.call(r,e))n[e]=r[e]};return n(r,e)};return function(r,e){if(typeof e!=="function"&&e!==null)throw new TypeError("Class extends value "+String(e)+" is not a constructor or null");n(r,e);function t(){this.constructor=r}r.prototype=e===null?Object.create(e):(t.prototype=e.prototype,new t)}}();var __awaiter=this&&this.__awaiter||function(n,r,e,t){function i(n){return n instanceof e?n:new e((function(r){r(n)}))}return new(e||(e=Promise))((function(e,a){function u(n){try{o(t.next(n))}catch(n){a(n)}}function f(n){try{o(t["throw"](n))}catch(n){a(n)}}function o(n){n.done?e(n.value):i(n.value).then(u,f)}o((t=t.apply(n,r||[])).next())}))};var __generator=this&&this.__generator||function(n,r){var e={label:0,sent:function(){if(a[0]&1)throw a[1];return a[1]},trys:[],ops:[]},t,i,a,u;return u={next:f(0),throw:f(1),return:f(2)},typeof Symbol==="function"&&(u[Symbol.iterator]=function(){return this}),u;function f(n){return function(r){return o([n,r])}}function o(f){if(t)throw new TypeError("Generator is already executing.");while(u&&(u=0,f[0]&&(e=0)),e)try{if(t=1,i&&(a=f[0]&2?i["return"]:f[0]?i["throw"]||((a=i["return"])&&a.call(i),0):i.next)&&!(a=a.call(i,f[1])).done)return a;if(i=0,a)f=[f[0]&2,a.value];switch(f[0]){case 0:case 1:a=f;break;case 4:e.label++;return{value:f[1],done:false};case 5:e.label++;i=f[1];f=[0];continue;case 7:f=e.ops.pop();e.trys.pop();continue;default:if(!(a=e.trys,a=a.length>0&&a[a.length-1])&&(f[0]===6||f[0]===2)){e=0;continue}if(f[0]===3&&(!a||f[1]>a[0]&&f[1]<a[3])){e.label=f[1];break}if(f[0]===6&&e.label<a[1]){e.label=a[1];a=f;break}if(a&&e.label<a[2]){e.label=a[2];e.ops.push(f);break}if(a[2])e.ops.pop();e.trys.pop();continue}f=r.call(n,e)}catch(n){f=[6,n];i=0}finally{t=a=0}if(f[0]&5)throw f[1];return{value:f[0]?f[1]:void 0,done:true}}};var __spreadArray=this&&this.__spreadArray||function(n,r,e){if(e||arguments.length===2)for(var t=0,i=r.length,a;t<i;t++){if(a||!(t in r)){if(!a)a=Array.prototype.slice.call(r,0,t);a[t]=r[t]}}return n.concat(a||Array.prototype.slice.call(r))};System.register([],(function(n,r){"use strict";return{execute:function(){var e=this;var t="mds-table-row";var i;var a;var u=false;var f=false;var o=function(n,r){if(r===void 0){r=""}{return function(){return}}};var v=function(n,r){{return function(){return}}};var c="{visibility:hidden}[hydrated]{visibility:inherit}";var l="slot-fb{display:contents}slot-fb[hidden]{display:none}";var s={};var d=function(n){return n!=null};var h=function(n){n=typeof n;return n==="object"||n==="function"};function y(n){var r,e,t;return(t=(e=(r=n.head)===null||r===void 0?void 0:r.querySelector('meta[name="csp-nonce"]'))===null||e===void 0?void 0:e.getAttribute("content"))!==null&&t!==void 0?t:undefined}var p=n("h",(function(n,r){var e=[];for(var t=2;t<arguments.length;t++){e[t-2]=arguments[t]}var i=null;var a=false;var u=false;var f=[];var o=function(r){for(var e=0;e<r.length;e++){i=r[e];if(Array.isArray(i)){o(i)}else if(i!=null&&typeof i!=="boolean"){if(a=typeof n!=="function"&&!h(i)){i=String(i)}if(a&&u){f[f.length-1].t+=i}else{f.push(a?w(null,i):i)}u=a}}};o(e);var v=w(n,null);v.i=r;if(f.length>0){v.u=f}return v}));var w=function(n,r){var e={o:0,v:n,t:r,l:null,u:null};{e.i=null}return e};var _=n("H",{});var b=function(n){return n&&n.v===_};var m=function(n,r){if(n!=null&&!h(n)){if(r&4){return n==="false"?false:n===""||!!n}return n}return n};var $=function(n,r,e){var t=bn.ce(r,e);n.dispatchEvent(t);return t};var S=new WeakMap;var g=function(n,r,e){var t=pn.get(n);if($n&&e){t=t||new CSSStyleSheet;if(typeof t==="string"){t=r}else{t.replaceSync(r)}}else{t=r}pn.set(n,t)};var j=function(n,r,e){var t;var i=k(r);var a=pn.get(i);n=n.nodeType===11?n:_n;if(a){if(typeof a==="string"){n=n.head||n;var u=S.get(n);var f=void 0;if(!u){S.set(n,u=new Set)}if(!u.has(i)){{f=_n.createElement("style");f.innerHTML=a;var o=(t=bn.h)!==null&&t!==void 0?t:y(_n);if(o!=null){f.setAttribute("nonce",o)}n.insertBefore(f,n.querySelector("link"))}if(r.o&4){f.innerHTML+=l}if(u){u.add(i)}}}else if(!n.adoptedStyleSheets.includes(a)){n.adoptedStyleSheets=__spreadArray(__spreadArray([],n.adoptedStyleSheets,true),[a],false)}}return i};var A=function(n){var r=n.p;var e=n.$hostElement$;var t=r.o;var i=o("attachStyles",r._);var a=j(e.shadowRoot?e.shadowRoot:e.getRootNode(),r);if(t&10){e["s-sc"]=a;e.classList.add(a+"-h")}i()};var k=function(n,r){return"sc-"+n._};var O=function(n,r,e,t,i,a){if(e!==t){var u=sn(n,r);r.toLowerCase();{var f=h(t);if((u||f&&t!==null)&&!i){try{if(!n.tagName.includes("-")){var o=t==null?"":t;if(r==="list"){u=false}else if(e==null||n[r]!=o){n[r]=o}}else{n[r]=t}}catch(n){}}if(t==null||t===false){if(t!==false||n.getAttribute(r)===""){{n.removeAttribute(r)}}}else if((!u||a&4||i)&&!f){t=t===true?"":t;{n.setAttribute(r,t)}}}}};var M=function(n,r,e,t){var i=r.l.nodeType===11&&r.l.host?r.l.host:r.l;var a=n&&n.i||s;var u=r.i||s;{for(t in a){if(!(t in u)){O(i,t,a[t],undefined,e,r.o)}}}for(t in u){O(i,t,a[t],u[t],e,r.o)}};var x=function(n,r,e,t){var a=r.u[e];var f=0;var o;var v;{o=a.l=_n.createElement(a.v);{M(null,a,u)}if(d(i)&&o["s-si"]!==i){o.classList.add(o["s-si"]=i)}if(a.u){for(f=0;f<a.u.length;++f){v=x(n,a,f);if(v){o.appendChild(v)}}}}return o};var C=function(n,r,e,t,i,u){var f=n;var o;if(f.shadowRoot&&f.tagName===a){f=f.shadowRoot}for(;i<=u;++i){if(t[i]){o=x(null,e,i);if(o){t[i].l=o;f.insertBefore(o,r)}}}};var P=function(n,r,e){for(var t=r;t<=e;++t){var i=n[t];if(i){var a=i.l;if(a){a.remove()}}}};var E=function(n,r,e,t){var i=0;var a=0;var u=r.length-1;var f=r[0];var o=r[u];var v=t.length-1;var c=t[0];var l=t[v];var s;while(i<=u&&a<=v){if(f==null){f=r[++i]}else if(o==null){o=r[--u]}else if(c==null){c=t[++a]}else if(l==null){l=t[--v]}else if(T(f,c)){U(f,c);f=r[++i];c=t[++a]}else if(T(o,l)){U(o,l);o=r[--u];l=t[--v]}else if(T(f,l)){U(f,l);n.insertBefore(f.l,o.l.nextSibling);f=r[++i];l=t[--v]}else if(T(o,c)){U(o,c);n.insertBefore(o.l,f.l);o=r[--u];c=t[++a]}else{{s=x(r&&r[a],e,a);c=t[++a]}if(s){{f.l.parentNode.insertBefore(s,f.l)}}}}if(i>u){C(n,t[v+1]==null?null:t[v+1].l,e,t,a,v)}else if(a>v){P(r,i,u)}};var T=function(n,r){if(n.v===r.v){return true}return false};var U=function(n,r){var e=r.l=n.l;var t=n.u;var i=r.u;var a=r.v;{{if(a==="slot");else{M(n,r,u)}}if(t!==null&&i!==null){E(e,t,r,i)}else if(i!==null){C(e,null,r,i,0,i.length-1)}else if(t!==null){P(t,0,t.length-1)}}};var N=function(n,r,e){if(e===void 0){e=false}var t=n.$hostElement$;var u=n.p;var f=n.m||w(null,null);var o=b(r)?r:p(null,null,r);a=t.tagName;if(u.$){o.i=o.i||{};u.$.map((function(n){var r=n[0],e=n[1];return o.i[e]=t[r]}))}if(e&&o.i){for(var v=0,c=Object.keys(o.i);v<c.length;v++){var l=c[v];if(t.hasAttribute(l)&&!["key","ref","style","class"].includes(l)){o.i[l]=t[l]}}}o.v=null;o.o|=4;n.m=o;o.l=f.l=t.shadowRoot||t;{i=t["s-sc"]}U(f,o)};var H=function(n,r){if(r&&!n.S&&r["s-p"]){r["s-p"].push(new Promise((function(r){return n.S=r})))}};var L=function(n,r){{n.o|=16}if(n.o&4){n.o|=512;return}H(n,n.j);var e=function(){return W(n,r)};return Mn(e)};var W=function(n,r){var e=o("scheduleUpdate",n.p._);var t=n.A;var i;if(r){{n.o|=256;if(n.k){n.k.map((function(n){var r=n[0],e=n[1];return z(t,r,e)}));n.k=undefined}}}e();return q(i,(function(){return G(n,t,r)}))};var q=function(n,r){return F(n)?n.then(r):r()};var F=function(n){return n instanceof Promise||n&&n.then&&typeof n.then==="function"};var G=function(n,r,t){return __awaiter(e,void 0,void 0,(function(){var e,i,a,u,f,v,c;return __generator(this,(function(l){i=n.$hostElement$;a=o("update",n.p._);u=i["s-rc"];if(t){A(n)}f=o("render",n.p._);{I(n,r,i,t)}if(u){u.map((function(n){return n()}));i["s-rc"]=undefined}f();a();{v=(e=i["s-p"])!==null&&e!==void 0?e:[];c=function(){return R(n)};if(v.length===0){c()}else{Promise.all(v).then(c);n.o|=4;v.length=0}}return[2]}))}))};var I=function(n,r,e,t){try{r=r.render();{n.o&=~16}{n.o|=2}{{{N(n,r,t)}}}}catch(r){dn(r,n.$hostElement$)}return null};var R=function(n){var r=n.p._;var e=n.$hostElement$;var t=o("postUpdate",r);var i=n.j;if(!(n.o&64)){n.o|=64;{B(e)}t();{n.O(e);if(!i){V()}}}else{t()}{if(n.S){n.S();n.S=undefined}if(n.o&512){On((function(){return L(n,false)}))}n.o&=~(4|512)}};var V=function(n){{B(_n.documentElement)}On((function(){return $(wn,"appload",{detail:{namespace:t}})}))};var z=function(n,r,e){if(n&&n[r]){try{return n[r](e)}catch(n){dn(n)}}return undefined};var B=function(n){return n.setAttribute("hydrated","")};var D=function(n,r){return vn(n).M.get(r)};var J=function(n,r,e,t){var i=vn(n);var a=i.M.get(r);var u=i.o;var f=i.A;e=m(e,t.C[r][0]);var o=Number.isNaN(a)&&Number.isNaN(e);var v=e!==a&&!o;if((!(u&8)||a===undefined)&&v){i.M.set(r,e);if(f){if((u&(2|16))===2){L(i,false)}}}};var K=function(n,r,e){var t;if(r.C){var i=Object.entries(r.C);var a=n.prototype;i.map((function(n){var t=n[0],i=n[1][0];if(i&31||e&2&&i&32){Object.defineProperty(a,t,{get:function(){return D(this,t)},set:function(n){J(this,t,n,r)},configurable:true,enumerable:true})}}));if(e&1){var u=new Map;a.attributeChangedCallback=function(n,e,t){var i=this;bn.jmp((function(){var f=u.get(n);if(i.hasOwnProperty(f)){t=i[f];delete i[f]}else if(a.hasOwnProperty(f)&&typeof i[f]==="number"&&i[f]==t){return}else if(f==null){var o=vn(i);var v=o===null||o===void 0?void 0:o.o;if(!(v&8)&&v&128&&t!==e){var c=o.A;var l=r.P[n];l===null||l===void 0?void 0:l.forEach((function(r){if(c[r]!=null){c[r].call(c,t,e,n)}}))}return}i[f]=t===null&&typeof i[f]==="boolean"?false:t}))};n.observedAttributes=Array.from(new Set(__spreadArray(__spreadArray([],Object.keys((t=r.P)!==null&&t!==void 0?t:{}),true),i.filter((function(n){var r=n[0],e=n[1];return e[0]&15})).map((function(n){var e=n[0],t=n[1];var i=t[1]||e;u.set(i,e);if(t[0]&512){r.$.push([e,i])}return i})),true)))}}return n};var Q=function(n,r,t,i){return __awaiter(e,void 0,void 0,(function(){var n,e,i,a,u,f,c,l;return __generator(this,(function(s){switch(s.label){case 0:if(!((r.o&32)===0))return[3,3];r.o|=32;n=yn(t);if(!n.then)return[3,2];e=v();return[4,n];case 1:n=s.sent();e();s.label=2;case 2:if(!n.isProxied){K(n,t,2);n.isProxied=true}i=o("createInstance",t._);{r.o|=8}try{new n(r)}catch(n){dn(n)}{r.o&=~8}i();if(n.style){a=n.style;u=k(t);if(!pn.has(u)){f=o("registerStyles",t._);g(u,a,!!(t.o&1));f()}}s.label=3;case 3:c=r.j;l=function(){return L(r,true)};if(c&&c["s-rc"]){c["s-rc"].push(l)}else{l()}return[2]}}))}))};var X=function(n){};var Y=function(n){if((bn.o&1)===0){var r=vn(n);var e=r.p;var t=o("connectedCallback",e._);if(!(r.o&1)){r.o|=1;{var i=n;while(i=i.parentNode||i.host){if(i["s-p"]){H(r,r.j=i);break}}}if(e.C){Object.entries(e.C).map((function(r){var e=r[0],t=r[1][0];if(t&31&&n.hasOwnProperty(e)){var i=n[e];delete n[e];n[e]=i}}))}{Q(n,r,e)}}else{en(n,r,e.T);if(r===null||r===void 0?void 0:r.A);else if(r===null||r===void 0?void 0:r.U){r.U.then((function(){return X()}))}}t()}};var Z=function(n){};var nn=function(n){return __awaiter(e,void 0,void 0,(function(){var r;return __generator(this,(function(e){if((bn.o&1)===0){r=vn(n);{if(r.N){r.N.map((function(n){return n()}));r.N=undefined}}if(r===null||r===void 0?void 0:r.A);else if(r===null||r===void 0?void 0:r.U){r.U.then((function(){return Z()}))}}return[2]}))}))};var rn=n("b",(function(n,r){if(r===void 0){r={}}var e;var t=o();var i=[];var a=r.exclude||[];var u=wn.customElements;var f=_n.head;var v=f.querySelector("meta[charset]");var s=_n.createElement("style");var d=[];var h;var p=true;Object.assign(bn,r);bn.H=new URL(r.resourcesUrl||"./",_n.baseURI).href;var w=false;n.map((function(n){n[1].map((function(r){var e={o:r[0],_:r[1],C:r[2],T:r[3]};if(e.o&4){w=true}{e.C=r[2]}{e.T=r[3]}{e.$=[]}var t=e._;var f=function(n){__extends(r,n);function r(r){var t=n.call(this,r)||this;r=t;ln(r,e);if(e.o&1){{{r.attachShadow({mode:"open"})}}}return t}r.prototype.connectedCallback=function(){var n=this;if(h){clearTimeout(h);h=null}if(p){d.push(this)}else{bn.jmp((function(){return Y(n)}))}};r.prototype.disconnectedCallback=function(){var n=this;bn.jmp((function(){return nn(n)}))};r.prototype.componentOnReady=function(){return vn(this).U};return r}(HTMLElement);e.L=n[0];if(!a.includes(t)&&!u.get(t)){i.push(t);u.define(t,K(f,e,1))}}))}));if(w){s.innerHTML+=l}{s.innerHTML+=i+c}if(s.innerHTML.length){s.setAttribute("data-styles","");f.insertBefore(s,v?v.nextSibling:f.firstChild);var _=(e=bn.h)!==null&&e!==void 0?e:y(_n);if(_!=null){s.setAttribute("nonce",_)}}p=false;if(d.length){d.map((function(n){return n.connectedCallback()}))}else{{bn.jmp((function(){return h=setTimeout(V,30)}))}}t()}));var en=function(n,r,e,t){if(e){e.map((function(e){var t=e[0],i=e[1],a=e[2];var u=an(n,t);var f=tn(r,a);var o=un(t);bn.ael(u,i,f,o);(r.N=r.N||[]).push((function(){return bn.rel(u,i,f,o)}))}))}};var tn=function(n,r){return function(e){try{{if(n.o&256){n.A[r](e)}else{(n.k=n.k||[]).push([r,e])}}}catch(n){dn(n)}}};var an=function(n,r){if(r&4)return _n;return n};var un=function(n){return(n&2)!==0};var fn=n("s",(function(n){return bn.h=n}));var on=new WeakMap;var vn=function(n){return on.get(n)};var cn=n("r",(function(n,r){return on.set(r.A=n,r)}));var ln=function(n,r){var e={o:0,$hostElement$:n,p:r,M:new Map};{e.U=new Promise((function(n){return e.O=n}));n["s-p"]=[];n["s-rc"]=[]}en(n,e,r.T);return on.set(n,e)};var sn=function(n,r){return r in n};var dn=function(n,r){return(0,console.error)(n,r)};var hn=new Map;var yn=function(n,e,t){var i=n._.replace(/-/g,"_");var a=n.L;var u=hn.get(a);if(u){return u[i]}
|
|
1
|
+
var __extends=this&&this.__extends||function(){var n=function(r,e){n=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(n,r){n.__proto__=r}||function(n,r){for(var e in r)if(Object.prototype.hasOwnProperty.call(r,e))n[e]=r[e]};return n(r,e)};return function(r,e){if(typeof e!=="function"&&e!==null)throw new TypeError("Class extends value "+String(e)+" is not a constructor or null");n(r,e);function t(){this.constructor=r}r.prototype=e===null?Object.create(e):(t.prototype=e.prototype,new t)}}();var __awaiter=this&&this.__awaiter||function(n,r,e,t){function i(n){return n instanceof e?n:new e((function(r){r(n)}))}return new(e||(e=Promise))((function(e,a){function u(n){try{o(t.next(n))}catch(n){a(n)}}function f(n){try{o(t["throw"](n))}catch(n){a(n)}}function o(n){n.done?e(n.value):i(n.value).then(u,f)}o((t=t.apply(n,r||[])).next())}))};var __generator=this&&this.__generator||function(n,r){var e={label:0,sent:function(){if(a[0]&1)throw a[1];return a[1]},trys:[],ops:[]},t,i,a,u;return u={next:f(0),throw:f(1),return:f(2)},typeof Symbol==="function"&&(u[Symbol.iterator]=function(){return this}),u;function f(n){return function(r){return o([n,r])}}function o(f){if(t)throw new TypeError("Generator is already executing.");while(u&&(u=0,f[0]&&(e=0)),e)try{if(t=1,i&&(a=f[0]&2?i["return"]:f[0]?i["throw"]||((a=i["return"])&&a.call(i),0):i.next)&&!(a=a.call(i,f[1])).done)return a;if(i=0,a)f=[f[0]&2,a.value];switch(f[0]){case 0:case 1:a=f;break;case 4:e.label++;return{value:f[1],done:false};case 5:e.label++;i=f[1];f=[0];continue;case 7:f=e.ops.pop();e.trys.pop();continue;default:if(!(a=e.trys,a=a.length>0&&a[a.length-1])&&(f[0]===6||f[0]===2)){e=0;continue}if(f[0]===3&&(!a||f[1]>a[0]&&f[1]<a[3])){e.label=f[1];break}if(f[0]===6&&e.label<a[1]){e.label=a[1];a=f;break}if(a&&e.label<a[2]){e.label=a[2];e.ops.push(f);break}if(a[2])e.ops.pop();e.trys.pop();continue}f=r.call(n,e)}catch(n){f=[6,n];i=0}finally{t=a=0}if(f[0]&5)throw f[1];return{value:f[0]?f[1]:void 0,done:true}}};var __spreadArray=this&&this.__spreadArray||function(n,r,e){if(e||arguments.length===2)for(var t=0,i=r.length,a;t<i;t++){if(a||!(t in r)){if(!a)a=Array.prototype.slice.call(r,0,t);a[t]=r[t]}}return n.concat(a||Array.prototype.slice.call(r))};System.register([],(function(n,r){"use strict";return{execute:function(){var e=this;var t="mds-table-row";var i;var a;var u=false;var f=false;var o=function(n,r){if(r===void 0){r=""}{return function(){return}}};var v=function(n,r){{return function(){return}}};var l="{visibility:hidden}[hydrated]{visibility:inherit}";var c="slot-fb{display:contents}slot-fb[hidden]{display:none}";var s={};var d=function(n){return n!=null};var h=function(n){n=typeof n;return n==="object"||n==="function"};function y(n){var r,e,t;return(t=(e=(r=n.head)===null||r===void 0?void 0:r.querySelector('meta[name="csp-nonce"]'))===null||e===void 0?void 0:e.getAttribute("content"))!==null&&t!==void 0?t:undefined}var p=n("h",(function(n,r){var e=[];for(var t=2;t<arguments.length;t++){e[t-2]=arguments[t]}var i=null;var a=false;var u=false;var f=[];var o=function(r){for(var e=0;e<r.length;e++){i=r[e];if(Array.isArray(i)){o(i)}else if(i!=null&&typeof i!=="boolean"){if(a=typeof n!=="function"&&!h(i)){i=String(i)}if(a&&u){f[f.length-1].t+=i}else{f.push(a?w(null,i):i)}u=a}}};o(e);var v=w(n,null);v.i=r;if(f.length>0){v.u=f}return v}));var w=function(n,r){var e={o:0,v:n,t:r,l:null,u:null};{e.i=null}return e};var _=n("H",{});var b=function(n){return n&&n.v===_};var m=function(n,r){if(n!=null&&!h(n)){if(r&4){return n==="false"?false:n===""||!!n}return n}return n};var $=function(n,r,e){var t=bn.ce(r,e);n.dispatchEvent(t);return t};var S=new WeakMap;var g=function(n,r,e){var t=pn.get(n);if($n&&e){t=t||new CSSStyleSheet;if(typeof t==="string"){t=r}else{t.replaceSync(r)}}else{t=r}pn.set(n,t)};var j=function(n,r,e){var t;var i=k(r);var a=pn.get(i);n=n.nodeType===11?n:_n;if(a){if(typeof a==="string"){n=n.head||n;var u=S.get(n);var f=void 0;if(!u){S.set(n,u=new Set)}if(!u.has(i)){{f=_n.createElement("style");f.innerHTML=a;var o=(t=bn.h)!==null&&t!==void 0?t:y(_n);if(o!=null){f.setAttribute("nonce",o)}n.insertBefore(f,n.querySelector("link"))}if(r.o&4){f.innerHTML+=c}if(u){u.add(i)}}}else if(!n.adoptedStyleSheets.includes(a)){n.adoptedStyleSheets=__spreadArray(__spreadArray([],n.adoptedStyleSheets,true),[a],false)}}return i};var A=function(n){var r=n.p;var e=n.$hostElement$;var t=r.o;var i=o("attachStyles",r._);var a=j(e.shadowRoot?e.shadowRoot:e.getRootNode(),r);if(t&10){e["s-sc"]=a;e.classList.add(a+"-h")}i()};var k=function(n,r){return"sc-"+n._};var O=function(n,r,e,t,i,a){if(e!==t){var u=sn(n,r);r.toLowerCase();{var f=h(t);if((u||f&&t!==null)&&!i){try{if(!n.tagName.includes("-")){var o=t==null?"":t;if(r==="list"){u=false}else if(e==null||n[r]!=o){n[r]=o}}else{n[r]=t}}catch(n){}}if(t==null||t===false){if(t!==false||n.getAttribute(r)===""){{n.removeAttribute(r)}}}else if((!u||a&4||i)&&!f){t=t===true?"":t;{n.setAttribute(r,t)}}}}};var M=function(n,r,e,t){var i=r.l.nodeType===11&&r.l.host?r.l.host:r.l;var a=n&&n.i||s;var u=r.i||s;{for(t in a){if(!(t in u)){O(i,t,a[t],undefined,e,r.o)}}}for(t in u){O(i,t,a[t],u[t],e,r.o)}};var x=function(n,r,e,t){var a=r.u[e];var f=0;var o;var v;{o=a.l=_n.createElement(a.v);{M(null,a,u)}if(d(i)&&o["s-si"]!==i){o.classList.add(o["s-si"]=i)}if(a.u){for(f=0;f<a.u.length;++f){v=x(n,a,f);if(v){o.appendChild(v)}}}}return o};var C=function(n,r,e,t,i,u){var f=n;var o;if(f.shadowRoot&&f.tagName===a){f=f.shadowRoot}for(;i<=u;++i){if(t[i]){o=x(null,e,i);if(o){t[i].l=o;f.insertBefore(o,r)}}}};var P=function(n,r,e){for(var t=r;t<=e;++t){var i=n[t];if(i){var a=i.l;if(a){a.remove()}}}};var E=function(n,r,e,t){var i=0;var a=0;var u=r.length-1;var f=r[0];var o=r[u];var v=t.length-1;var l=t[0];var c=t[v];var s;while(i<=u&&a<=v){if(f==null){f=r[++i]}else if(o==null){o=r[--u]}else if(l==null){l=t[++a]}else if(c==null){c=t[--v]}else if(T(f,l)){U(f,l);f=r[++i];l=t[++a]}else if(T(o,c)){U(o,c);o=r[--u];c=t[--v]}else if(T(f,c)){U(f,c);n.insertBefore(f.l,o.l.nextSibling);f=r[++i];c=t[--v]}else if(T(o,l)){U(o,l);n.insertBefore(o.l,f.l);o=r[--u];l=t[++a]}else{{s=x(r&&r[a],e,a);l=t[++a]}if(s){{f.l.parentNode.insertBefore(s,f.l)}}}}if(i>u){C(n,t[v+1]==null?null:t[v+1].l,e,t,a,v)}else if(a>v){P(r,i,u)}};var T=function(n,r){if(n.v===r.v){return true}return false};var U=function(n,r){var e=r.l=n.l;var t=n.u;var i=r.u;var a=r.v;{{if(a==="slot");else{M(n,r,u)}}if(t!==null&&i!==null){E(e,t,r,i)}else if(i!==null){C(e,null,r,i,0,i.length-1)}else if(t!==null){P(t,0,t.length-1)}}};var N=function(n,r,e){if(e===void 0){e=false}var t=n.$hostElement$;var u=n.p;var f=n.m||w(null,null);var o=b(r)?r:p(null,null,r);a=t.tagName;if(u.$){o.i=o.i||{};u.$.map((function(n){var r=n[0],e=n[1];return o.i[e]=t[r]}))}if(e&&o.i){for(var v=0,l=Object.keys(o.i);v<l.length;v++){var c=l[v];if(t.hasAttribute(c)&&!["key","ref","style","class"].includes(c)){o.i[c]=t[c]}}}o.v=null;o.o|=4;n.m=o;o.l=f.l=t.shadowRoot||t;{i=t["s-sc"]}U(f,o)};var H=function(n,r){if(r&&!n.S&&r["s-p"]){r["s-p"].push(new Promise((function(r){return n.S=r})))}};var L=function(n,r){{n.o|=16}if(n.o&4){n.o|=512;return}H(n,n.j);var e=function(){return W(n,r)};return Mn(e)};var W=function(n,r){var e=o("scheduleUpdate",n.p._);var t=n.A;var i;if(r){{n.o|=256;if(n.k){n.k.map((function(n){var r=n[0],e=n[1];return z(t,r,e)}));n.k=undefined}}}e();return q(i,(function(){return G(n,t,r)}))};var q=function(n,r){return F(n)?n.then(r):r()};var F=function(n){return n instanceof Promise||n&&n.then&&typeof n.then==="function"};var G=function(n,r,t){return __awaiter(e,void 0,void 0,(function(){var e,i,a,u,f,v,l;return __generator(this,(function(c){i=n.$hostElement$;a=o("update",n.p._);u=i["s-rc"];if(t){A(n)}f=o("render",n.p._);{I(n,r,i,t)}if(u){u.map((function(n){return n()}));i["s-rc"]=undefined}f();a();{v=(e=i["s-p"])!==null&&e!==void 0?e:[];l=function(){return R(n)};if(v.length===0){l()}else{Promise.all(v).then(l);n.o|=4;v.length=0}}return[2]}))}))};var I=function(n,r,e,t){try{r=r.render();{n.o&=~16}{n.o|=2}{{{N(n,r,t)}}}}catch(r){dn(r,n.$hostElement$)}return null};var R=function(n){var r=n.p._;var e=n.$hostElement$;var t=o("postUpdate",r);var i=n.j;if(!(n.o&64)){n.o|=64;{B(e)}t();{n.O(e);if(!i){V()}}}else{t()}{if(n.S){n.S();n.S=undefined}if(n.o&512){On((function(){return L(n,false)}))}n.o&=~(4|512)}};var V=function(n){{B(_n.documentElement)}On((function(){return $(wn,"appload",{detail:{namespace:t}})}))};var z=function(n,r,e){if(n&&n[r]){try{return n[r](e)}catch(n){dn(n)}}return undefined};var B=function(n){return n.setAttribute("hydrated","")};var D=function(n,r){return vn(n).M.get(r)};var J=function(n,r,e,t){var i=vn(n);var a=i.M.get(r);var u=i.o;var f=i.A;e=m(e,t.C[r][0]);var o=Number.isNaN(a)&&Number.isNaN(e);var v=e!==a&&!o;if((!(u&8)||a===undefined)&&v){i.M.set(r,e);if(f){if((u&(2|16))===2){L(i,false)}}}};var K=function(n,r,e){var t;var i=n.prototype;if(r.C){var a=Object.entries(r.C);a.map((function(n){var t=n[0],a=n[1][0];if(a&31||e&2&&a&32){Object.defineProperty(i,t,{get:function(){return D(this,t)},set:function(n){J(this,t,n,r)},configurable:true,enumerable:true})}}));if(e&1){var u=new Map;i.attributeChangedCallback=function(n,e,t){var a=this;bn.jmp((function(){var f;var o=u.get(n);if(a.hasOwnProperty(o)){t=a[o];delete a[o]}else if(i.hasOwnProperty(o)&&typeof a[o]==="number"&&a[o]==t){return}else if(o==null){var v=vn(a);var l=v===null||v===void 0?void 0:v.o;if(l&&!(l&8)&&l&128&&t!==e){var c=v.A;var s=(f=r.P)===null||f===void 0?void 0:f[n];s===null||s===void 0?void 0:s.forEach((function(r){if(c[r]!=null){c[r].call(c,t,e,n)}}))}return}a[o]=t===null&&typeof a[o]==="boolean"?false:t}))};n.observedAttributes=Array.from(new Set(__spreadArray(__spreadArray([],Object.keys((t=r.P)!==null&&t!==void 0?t:{}),true),a.filter((function(n){var r=n[0],e=n[1];return e[0]&15})).map((function(n){var e=n[0],t=n[1];var i;var a=t[1]||e;u.set(a,e);if(t[0]&512){(i=r.$)===null||i===void 0?void 0:i.push([e,a])}return a})),true)))}}return n};var Q=function(n,r,t,i){return __awaiter(e,void 0,void 0,(function(){var n,e,i,a,u,f,l,c;return __generator(this,(function(s){switch(s.label){case 0:if(!((r.o&32)===0))return[3,3];r.o|=32;n=yn(t);if(!n.then)return[3,2];e=v();return[4,n];case 1:n=s.sent();e();s.label=2;case 2:if(!n.isProxied){K(n,t,2);n.isProxied=true}i=o("createInstance",t._);{r.o|=8}try{new n(r)}catch(n){dn(n)}{r.o&=~8}i();if(n.style){a=n.style;u=k(t);if(!pn.has(u)){f=o("registerStyles",t._);g(u,a,!!(t.o&1));f()}}s.label=3;case 3:l=r.j;c=function(){return L(r,true)};if(l&&l["s-rc"]){l["s-rc"].push(c)}else{c()}return[2]}}))}))};var X=function(n){};var Y=function(n){if((bn.o&1)===0){var r=vn(n);var e=r.p;var t=o("connectedCallback",e._);if(!(r.o&1)){r.o|=1;{var i=n;while(i=i.parentNode||i.host){if(i["s-p"]){H(r,r.j=i);break}}}if(e.C){Object.entries(e.C).map((function(r){var e=r[0],t=r[1][0];if(t&31&&n.hasOwnProperty(e)){var i=n[e];delete n[e];n[e]=i}}))}{Q(n,r,e)}}else{en(n,r,e.T);if(r===null||r===void 0?void 0:r.A);else if(r===null||r===void 0?void 0:r.U){r.U.then((function(){return X()}))}}t()}};var Z=function(n){};var nn=function(n){return __awaiter(e,void 0,void 0,(function(){var r;return __generator(this,(function(e){if((bn.o&1)===0){r=vn(n);{if(r.N){r.N.map((function(n){return n()}));r.N=undefined}}if(r===null||r===void 0?void 0:r.A);else if(r===null||r===void 0?void 0:r.U){r.U.then((function(){return Z()}))}}return[2]}))}))};var rn=n("b",(function(n,r){if(r===void 0){r={}}var e;var t=o();var i=[];var a=r.exclude||[];var u=wn.customElements;var f=_n.head;var v=f.querySelector("meta[charset]");var s=_n.createElement("style");var d=[];var h;var p=true;Object.assign(bn,r);bn.H=new URL(r.resourcesUrl||"./",_n.baseURI).href;var w=false;n.map((function(n){n[1].map((function(r){var e={o:r[0],_:r[1],C:r[2],T:r[3]};if(e.o&4){w=true}{e.C=r[2]}{e.T=r[3]}{e.$=[]}var t=e._;var f=function(n){__extends(r,n);function r(r){var t=n.call(this,r)||this;r=t;cn(r,e);if(e.o&1){{{r.attachShadow({mode:"open"})}}}return t}r.prototype.connectedCallback=function(){var n=this;if(h){clearTimeout(h);h=null}if(p){d.push(this)}else{bn.jmp((function(){return Y(n)}))}};r.prototype.disconnectedCallback=function(){var n=this;bn.jmp((function(){return nn(n)}))};r.prototype.componentOnReady=function(){return vn(this).U};return r}(HTMLElement);e.L=n[0];if(!a.includes(t)&&!u.get(t)){i.push(t);u.define(t,K(f,e,1))}}))}));if(w){s.innerHTML+=c}{s.innerHTML+=i+l}if(s.innerHTML.length){s.setAttribute("data-styles","");f.insertBefore(s,v?v.nextSibling:f.firstChild);var _=(e=bn.h)!==null&&e!==void 0?e:y(_n);if(_!=null){s.setAttribute("nonce",_)}}p=false;if(d.length){d.map((function(n){return n.connectedCallback()}))}else{{bn.jmp((function(){return h=setTimeout(V,30)}))}}t()}));var en=function(n,r,e,t){if(e){e.map((function(e){var t=e[0],i=e[1],a=e[2];var u=an(n,t);var f=tn(r,a);var o=un(t);bn.ael(u,i,f,o);(r.N=r.N||[]).push((function(){return bn.rel(u,i,f,o)}))}))}};var tn=function(n,r){return function(e){try{{if(n.o&256){n.A[r](e)}else{(n.k=n.k||[]).push([r,e])}}}catch(n){dn(n)}}};var an=function(n,r){if(r&4)return _n;return n};var un=function(n){return(n&2)!==0};var fn=n("s",(function(n){return bn.h=n}));var on=new WeakMap;var vn=function(n){return on.get(n)};var ln=n("r",(function(n,r){return on.set(r.A=n,r)}));var cn=function(n,r){var e={o:0,$hostElement$:n,p:r,M:new Map};{e.U=new Promise((function(n){return e.O=n}));n["s-p"]=[];n["s-rc"]=[]}en(n,e,r.T);return on.set(n,e)};var sn=function(n,r){return r in n};var dn=function(n,r){return(0,console.error)(n,r)};var hn=new Map;var yn=function(n,e,t){var i=n._.replace(/-/g,"_");var a=n.L;var u=hn.get(a);if(u){return u[i]}
|
|
2
2
|
/*!__STENCIL_STATIC_IMPORT_SWITCH__*/return r.import("./".concat(a,".entry.js").concat("")).then((function(n){{hn.set(a,n)}return n[i]}),dn)};var pn=new Map;var wn=typeof window!=="undefined"?window:{};var _n=wn.document||{head:{}};var bn={o:0,H:"",jmp:function(n){return n()},raf:function(n){return requestAnimationFrame(n)},ael:function(n,r,e,t){return n.addEventListener(r,e,t)},rel:function(n,r,e,t){return n.removeEventListener(r,e,t)},ce:function(n,r){return new CustomEvent(n,r)}};var mn=n("p",(function(n){return Promise.resolve(n)}));var $n=function(){try{new CSSStyleSheet;return typeof(new CSSStyleSheet).replaceSync==="function"}catch(n){}return false}();var Sn=[];var gn=[];var jn=function(n,r){return function(e){n.push(e);if(!f){f=true;if(r&&bn.o&4){On(kn)}else{bn.raf(kn)}}}};var An=function(n){for(var r=0;r<n.length;r++){try{n[r](performance.now())}catch(n){dn(n)}}n.length=0};var kn=function(){An(Sn);{An(gn);if(f=Sn.length>0){bn.raf(kn)}}};var On=function(n){return mn().then(n)};var Mn=jn(gn,true)}}}));
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import{r as o,h as r,H as t}from"./p-ccb2cba7.js";const a=class{constructor(r){o(this,r),this.interactive=void 0}tableInteractiveHandler(o){this.interactive=o.detail}render(){return r(t,{role:"row"},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{display:table-row}:host([interactive]:hover){--mds-table-cell-background:var(--mds-table-cell-background-hover, rgb(var(--tone-neutral)))}";export{a as mds_table_row}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
let n,t,e=!1;const l="slot-fb{display:contents}slot-fb[hidden]{display:none}",o={},s=n=>"object"==(n=typeof n)||"function"===n;function i(n){var t,e,l;return null!==(l=null===(e=null===(t=n.head)||void 0===t?void 0:t.querySelector('meta[name="csp-nonce"]'))||void 0===e?void 0:e.getAttribute("content"))&&void 0!==l?l:void 0}const r=(n,t,...e)=>{let l=null,o=!1,i=!1;const r=[],u=t=>{for(let e=0;e<t.length;e++)l=t[e],Array.isArray(l)?u(l):null!=l&&"boolean"!=typeof l&&((o="function"!=typeof n&&!s(l))&&(l+=""),o&&i?r[r.length-1].t+=l:r.push(o?c(null,l):l),i=o)};u(e);const a=c(n,null);return a.l=t,r.length>0&&(a.o=r),a},c=(n,t)=>({i:0,u:n,t,h:null,o:null,l:null}),u={},a=new WeakMap,f=n=>"sc-"+n.v,d=(n,t,e,l,o,i)=>{if(e!==l){let r=V(n,t);t.toLowerCase();{const c=s(l);if((r||c&&null!==l)&&!o)try{if(n.tagName.includes("-"))n[t]=l;else{const o=null==l?"":l;"list"===t?r=!1:null!=e&&n[t]==o||(n[t]=o)}}catch(n){}null==l||!1===l?!1===l&&""!==n.getAttribute(t)||n.removeAttribute(t):(!r||4&i||o)&&!c&&n.setAttribute(t,l=!0===l?"":l)}}},y=(n,t,e,l)=>{const s=11===t.h.nodeType&&t.h.host?t.h.host:t.h,i=n&&n.l||o,r=t.l||o;for(l in i)l in r||d(s,l,i[l],void 0,e,t.i);for(l in r)d(s,l,i[l],r[l],e,t.i)},h=(t,e,l)=>{const o=e.o[l];let s,i,r=0;if(s=o.h=I.createElement(o.u),y(null,o,!1),null!=n&&s["s-si"]!==n&&s.classList.add(s["s-si"]=n),o.o)for(r=0;r<o.o.length;++r)i=h(t,o,r),i&&s.appendChild(i);return s},v=(n,e,l,o,s,i)=>{let r,c=n;for(c.shadowRoot&&c.tagName===t&&(c=c.shadowRoot);s<=i;++s)o[s]&&(r=h(null,l,s),r&&(o[s].h=r,c.insertBefore(r,e)))},$=(n,t,e)=>{for(let l=t;l<=e;++l){const t=n[l];if(t){const n=t.h;n&&n.remove()}}},m=(n,t)=>n.u===t.u,p=(n,t)=>{const e=t.h=n.h,l=n.o,o=t.o;"slot"===t.u||y(n,t,!1),null!==l&&null!==o?((n,t,e,l)=>{let o,s=0,i=0,r=t.length-1,c=t[0],u=t[r],a=l.length-1,f=l[0],d=l[a];for(;s<=r&&i<=a;)null==c?c=t[++s]:null==u?u=t[--r]:null==f?f=l[++i]:null==d?d=l[--a]:m(c,f)?(p(c,f),c=t[++s],f=l[++i]):m(u,d)?(p(u,d),u=t[--r],d=l[--a]):m(c,d)?(p(c,d),n.insertBefore(c.h,u.h.nextSibling),c=t[++s],d=l[--a]):m(u,f)?(p(u,f),n.insertBefore(u.h,c.h),u=t[--r],f=l[++i]):(o=h(t&&t[i],e,i),f=l[++i],o&&c.h.parentNode.insertBefore(o,c.h));s>r?v(n,null==l[a+1]?null:l[a+1].h,e,l,i,a):i>a&&$(t,s,r)})(e,l,t,o):null!==o?v(e,null,t,o,0,o.length-1):null!==l&&$(l,0,l.length-1)},b=(n,t)=>{t&&!n.$&&t["s-p"]&&t["s-p"].push(new Promise((t=>n.$=t)))},w=(n,t)=>{if(n.i|=16,!(4&n.i))return b(n,n.m),ln((()=>S(n,t)));n.i|=512},S=(n,t)=>{const e=n.p;return t&&(n.i|=256,n.S&&(n.S.map((([n,t])=>P(e,n,t))),n.S=void 0)),g(void 0,(()=>M(n,e,t)))},g=(n,t)=>j(n)?n.then(t):t(),j=n=>n instanceof Promise||n&&n.then&&"function"==typeof n.then,M=async(n,t,e)=>{var o;const s=n.$hostElement$,r=s["s-rc"];e&&(n=>{const t=n.j,e=n.$hostElement$,o=t.i,s=((n,t)=>{var e;const o=f(t),s=D.get(o);if(n=11===n.nodeType?n:I,s)if("string"==typeof s){let r,c=a.get(n=n.head||n);if(c||a.set(n,c=new Set),!c.has(o)){{r=I.createElement("style"),r.innerHTML=s;const t=null!==(e=J.M)&&void 0!==e?e:i(I);null!=t&&r.setAttribute("nonce",t),n.insertBefore(r,n.querySelector("link"))}4&t.i&&(r.innerHTML+=l),c&&c.add(o)}}else n.adoptedStyleSheets.includes(s)||(n.adoptedStyleSheets=[...n.adoptedStyleSheets,s]);return o})(e.shadowRoot?e.shadowRoot:e.getRootNode(),t);10&o&&(e["s-sc"]=s,e.classList.add(s+"-h"))})(n);k(n,t,s,e),r&&(r.map((n=>n())),s["s-rc"]=void 0);{const t=null!==(o=s["s-p"])&&void 0!==o?o:[],e=()=>O(n);0===t.length?e():(Promise.all(t).then(e),n.i|=4,t.length=0)}},k=(e,l,o,s)=>{try{l=l.render(),e.i&=-17,e.i|=2,((e,l,o=!1)=>{const s=e.$hostElement$,i=e.j,a=e.k||c(null,null),f=(n=>n&&n.u===u)(l)?l:r(null,null,l);if(t=s.tagName,i.O&&(f.l=f.l||{},i.O.map((([n,t])=>f.l[t]=s[n]))),o&&f.l)for(const n of Object.keys(f.l))s.hasAttribute(n)&&!["key","ref","style","class"].includes(n)&&(f.l[n]=s[n]);f.u=null,f.i|=4,e.k=f,f.h=a.h=s.shadowRoot||s,n=s["s-sc"],p(a,f)})(e,l,s)}catch(n){_(n,e.$hostElement$)}return null},O=n=>{const t=n.$hostElement$,e=n.m;64&n.i||(n.i|=64,x(t),n.C(t),e||C()),n.$&&(n.$(),n.$=void 0),512&n.i&&en((()=>w(n,!1))),n.i&=-517},C=()=>{x(I.documentElement),en((()=>(n=>{const t=J.ce("appload",{detail:{namespace:"mds-table-row"}});return n.dispatchEvent(t),t})(G)))},P=(n,t,e)=>{if(n&&n[t])try{return n[t](e)}catch(n){_(n)}},x=n=>n.setAttribute("hydrated",""),A=(n,t,e)=>{var l;const o=n.prototype;if(t.P){const i=Object.entries(t.P);if(i.map((([n,[l]])=>{(31&l||2&e&&32&l)&&Object.defineProperty(o,n,{get(){return((n,t)=>W(this).A.get(t))(0,n)},set(e){((n,t,e,l)=>{const o=W(n),i=o.A.get(t),r=o.i,c=o.p;e=((n,t)=>null==n||s(n)?n:4&t?"false"!==n&&(""===n||!!n):n)(e,l.P[t][0]),8&r&&void 0!==i||e===i||Number.isNaN(i)&&Number.isNaN(e)||(o.A.set(t,e),c&&2==(18&r)&&w(o,!1))})(this,n,e,t)},configurable:!0,enumerable:!0})})),1&e){const e=new Map;o.attributeChangedCallback=function(n,l,s){J.jmp((()=>{var i;const r=e.get(n);if(this.hasOwnProperty(r))s=this[r],delete this[r];else{if(o.hasOwnProperty(r)&&"number"==typeof this[r]&&this[r]==s)return;if(null==r){const e=W(this),o=null==e?void 0:e.i;if(o&&!(8&o)&&128&o&&s!==l){const o=e.p,r=null===(i=t.N)||void 0===i?void 0:i[n];null==r||r.forEach((t=>{null!=o[t]&&o[t].call(o,s,l,n)}))}return}}this[r]=(null!==s||"boolean"!=typeof this[r])&&s}))},n.observedAttributes=Array.from(new Set([...Object.keys(null!==(l=t.N)&&void 0!==l?l:{}),...i.filter((([n,t])=>15&t[0])).map((([n,l])=>{var o;const s=l[1]||n;return e.set(s,n),512&l[0]&&(null===(o=t.O)||void 0===o||o.push([n,s])),s}))]))}}return n},E=(n,t={})=>{var e;const o=[],s=t.exclude||[],r=G.customElements,c=I.head,u=c.querySelector("meta[charset]"),a=I.createElement("style"),d=[];let y,h=!0;Object.assign(J,t),J.T=new URL(t.resourcesUrl||"./",I.baseURI).href;let v=!1;if(n.map((n=>{n[1].map((t=>{const e={i:t[0],v:t[1],P:t[2],H:t[3]};4&e.i&&(v=!0),e.P=t[2],e.H=t[3],e.O=[];const l=e.v,i=class extends HTMLElement{constructor(n){super(n),F(n=this,e),1&e.i&&n.attachShadow({mode:"open"})}connectedCallback(){y&&(clearTimeout(y),y=null),h?d.push(this):J.jmp((()=>(n=>{if(0==(1&J.i)){const t=W(n),e=t.j,l=()=>{};if(1&t.i)N(n,t,e.H),(null==t?void 0:t.p)||(null==t?void 0:t.L)&&t.L.then((()=>{}));else{t.i|=1;{let e=n;for(;e=e.parentNode||e.host;)if(e["s-p"]){b(t,t.m=e);break}}e.P&&Object.entries(e.P).map((([t,[e]])=>{if(31&e&&n.hasOwnProperty(t)){const e=n[t];delete n[t],n[t]=e}})),(async(n,t,e)=>{let l;if(0==(32&t.i)){t.i|=32;{if(l=B(e),l.then){const n=()=>{};l=await l,n()}l.isProxied||(A(l,e,2),l.isProxied=!0);const n=()=>{};t.i|=8;try{new l(t)}catch(n){_(n)}t.i&=-9,n()}if(l.style){let n=l.style;const t=f(e);if(!D.has(t)){const l=()=>{};((n,t,e)=>{let l=D.get(n);Q&&e?(l=l||new CSSStyleSheet,"string"==typeof l?l=t:l.replaceSync(t)):l=t,D.set(n,l)})(t,n,!!(1&e.i)),l()}}}const o=t.m,s=()=>w(t,!0);o&&o["s-rc"]?o["s-rc"].push(s):s()})(0,t,e)}l()}})(this)))}disconnectedCallback(){J.jmp((()=>(async()=>{if(0==(1&J.i)){const n=W(this);n.R&&(n.R.map((n=>n())),n.R=void 0),(null==n?void 0:n.p)||(null==n?void 0:n.L)&&n.L.then((()=>{}))}})()))}componentOnReady(){return W(this).L}};e.U=n[0],s.includes(l)||r.get(l)||(o.push(l),r.define(l,A(i,e,1)))}))})),v&&(a.innerHTML+=l),a.innerHTML+=o+"{visibility:hidden}[hydrated]{visibility:inherit}",a.innerHTML.length){a.setAttribute("data-styles",""),c.insertBefore(a,u?u.nextSibling:c.firstChild);const n=null!==(e=J.M)&&void 0!==e?e:i(I);null!=n&&a.setAttribute("nonce",n)}h=!1,d.length?d.map((n=>n.connectedCallback())):J.jmp((()=>y=setTimeout(C,30)))},N=(n,t,e)=>{e&&e.map((([e,l,o])=>{const s=H(n,e),i=T(t,o),r=L(e);J.ael(s,l,i,r),(t.R=t.R||[]).push((()=>J.rel(s,l,i,r)))}))},T=(n,t)=>e=>{try{256&n.i?n.p[t](e):(n.S=n.S||[]).push([t,e])}catch(n){_(n)}},H=(n,t)=>4&t?I:n,L=n=>0!=(2&n),R=n=>J.M=n,U=new WeakMap,W=n=>U.get(n),q=(n,t)=>U.set(t.p=n,t),F=(n,t)=>{const e={i:0,$hostElement$:n,j:t,A:new Map};return e.L=new Promise((n=>e.C=n)),n["s-p"]=[],n["s-rc"]=[],N(n,e,t.H),U.set(n,e)},V=(n,t)=>t in n,_=(n,t)=>(0,console.error)(n,t),z=new Map,B=n=>{const t=n.v.replace(/-/g,"_"),e=n.U,l=z.get(e);return l?l[t]:import(`./${e}.entry.js`).then((n=>(z.set(e,n),n[t])),_)
|
|
2
|
+
/*!__STENCIL_STATIC_IMPORT_SWITCH__*/},D=new Map,G="undefined"!=typeof window?window:{},I=G.document||{head:{}},J={i:0,T:"",jmp:n=>n(),raf:n=>requestAnimationFrame(n),ael:(n,t,e,l)=>n.addEventListener(t,e,l),rel:(n,t,e,l)=>n.removeEventListener(t,e,l),ce:(n,t)=>new CustomEvent(n,t)},K=n=>Promise.resolve(n),Q=(()=>{try{return new CSSStyleSheet,"function"==typeof(new CSSStyleSheet).replaceSync}catch(n){}return!1})(),X=[],Y=[],Z=(n,t)=>l=>{n.push(l),e||(e=!0,t&&4&J.i?en(tn):J.raf(tn))},nn=n=>{for(let t=0;t<n.length;t++)try{n[t](performance.now())}catch(n){_(n)}n.length=0},tn=()=>{nn(X),nn(Y),(e=X.length>0)&&J.raf(tn)},en=n=>K().then(n),ln=Z(Y,!0);export{u as H,E as b,r as h,K as p,q as r,R as s}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
System.register(["./p-8f394fbb.system.js"],(function(o){"use strict";var t,r,a;return{setters:[function(o){t=o.r;r=o.h;a=o.H}],execute:function(){var s=".fixed{position:fixed}.absolute{position:absolute}.border{border-width:1px}.shadow{--tw-shadow:0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);--tw-shadow-colored:0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);-webkit-box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)}:host{display:table-row}:host([interactive]:hover){--mds-table-cell-background:var(--mds-table-cell-background-hover, rgb(var(--tone-neutral)))}";var e=o("mds_table_row",function(){function o(o){t(this,o);this.interactive=undefined}o.prototype.tableInteractiveHandler=function(o){this.interactive=o.detail};o.prototype.render=function(){return r(a,{role:"row"},r("slot",null))};return o}());e.style=s}}}));
|
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
let n,t,e=!1;const l="slot-fb{display:contents}slot-fb[hidden]{display:none}",o={},s=n=>"object"==(n=typeof n)||"function"===n;function i(n){var t,e,l;return null!==(l=null===(e=null===(t=n.head)||void 0===t?void 0:t.querySelector('meta[name="csp-nonce"]'))||void 0===e?void 0:e.getAttribute("content"))&&void 0!==l?l:void 0}const r=(n,t,...e)=>{let l=null,o=!1,i=!1;const r=[],u=t=>{for(let e=0;e<t.length;e++)l=t[e],Array.isArray(l)?u(l):null!=l&&"boolean"!=typeof l&&((o="function"!=typeof n&&!s(l))&&(l+=""),o&&i?r[r.length-1].t+=l:r.push(o?c(null,l):l),i=o)};u(e);const a=c(n,null);return a.l=t,r.length>0&&(a.o=r),a},c=(n,t)=>({i:0,u:n,t,h:null,o:null,l:null}),u={},a=new WeakMap,f=n=>"sc-"+n.$,d=(n,t,e,l,o,i)=>{if(e!==l){let r=V(n,t);t.toLowerCase();{const c=s(l);if((r||c&&null!==l)&&!o)try{if(n.tagName.includes("-"))n[t]=l;else{const o=null==l?"":l;"list"===t?r=!1:null!=e&&n[t]==o||(n[t]=o)}}catch(n){}null==l||!1===l?!1===l&&""!==n.getAttribute(t)||n.removeAttribute(t):(!r||4&i||o)&&!c&&n.setAttribute(t,l=!0===l?"":l)}}},y=(n,t,e,l)=>{const s=11===t.h.nodeType&&t.h.host?t.h.host:t.h,i=n&&n.l||o,r=t.l||o;for(l in i)l in r||d(s,l,i[l],void 0,e,t.i);for(l in r)d(s,l,i[l],r[l],e,t.i)},h=(t,e,l)=>{const o=e.o[l];let s,i,r=0;if(s=o.h=I.createElement(o.u),y(null,o,!1),null!=n&&s["s-si"]!==n&&s.classList.add(s["s-si"]=n),o.o)for(r=0;r<o.o.length;++r)i=h(t,o,r),i&&s.appendChild(i);return s},$=(n,e,l,o,s,i)=>{let r,c=n;for(c.shadowRoot&&c.tagName===t&&(c=c.shadowRoot);s<=i;++s)o[s]&&(r=h(null,l,s),r&&(o[s].h=r,c.insertBefore(r,e)))},m=(n,t,e)=>{for(let l=t;l<=e;++l){const t=n[l];if(t){const n=t.h;n&&n.remove()}}},p=(n,t)=>n.u===t.u,v=(n,t)=>{const e=t.h=n.h,l=n.o,o=t.o;"slot"===t.u||y(n,t,!1),null!==l&&null!==o?((n,t,e,l)=>{let o,s=0,i=0,r=t.length-1,c=t[0],u=t[r],a=l.length-1,f=l[0],d=l[a];for(;s<=r&&i<=a;)null==c?c=t[++s]:null==u?u=t[--r]:null==f?f=l[++i]:null==d?d=l[--a]:p(c,f)?(v(c,f),c=t[++s],f=l[++i]):p(u,d)?(v(u,d),u=t[--r],d=l[--a]):p(c,d)?(v(c,d),n.insertBefore(c.h,u.h.nextSibling),c=t[++s],d=l[--a]):p(u,f)?(v(u,f),n.insertBefore(u.h,c.h),u=t[--r],f=l[++i]):(o=h(t&&t[i],e,i),f=l[++i],o&&c.h.parentNode.insertBefore(o,c.h));s>r?$(n,null==l[a+1]?null:l[a+1].h,e,l,i,a):i>a&&m(t,s,r)})(e,l,t,o):null!==o?$(e,null,t,o,0,o.length-1):null!==l&&m(l,0,l.length-1)},b=(n,t)=>{t&&!n.m&&t["s-p"]&&t["s-p"].push(new Promise((t=>n.m=t)))},w=(n,t)=>{if(n.i|=16,!(4&n.i))return b(n,n.p),ln((()=>S(n,t)));n.i|=512},S=(n,t)=>{const e=n.v;return t&&(n.i|=256,n.S&&(n.S.map((([n,t])=>P(e,n,t))),n.S=void 0)),g(void 0,(()=>M(n,e,t)))},g=(n,t)=>j(n)?n.then(t):t(),j=n=>n instanceof Promise||n&&n.then&&"function"==typeof n.then,M=async(n,t,e)=>{var o;const s=n.$hostElement$,r=s["s-rc"];e&&(n=>{const t=n.j,e=n.$hostElement$,o=t.i,s=((n,t)=>{var e;const o=f(t),s=D.get(o);if(n=11===n.nodeType?n:I,s)if("string"==typeof s){let r,c=a.get(n=n.head||n);if(c||a.set(n,c=new Set),!c.has(o)){{r=I.createElement("style"),r.innerHTML=s;const t=null!==(e=J.M)&&void 0!==e?e:i(I);null!=t&&r.setAttribute("nonce",t),n.insertBefore(r,n.querySelector("link"))}4&t.i&&(r.innerHTML+=l),c&&c.add(o)}}else n.adoptedStyleSheets.includes(s)||(n.adoptedStyleSheets=[...n.adoptedStyleSheets,s]);return o})(e.shadowRoot?e.shadowRoot:e.getRootNode(),t);10&o&&(e["s-sc"]=s,e.classList.add(s+"-h"))})(n);k(n,t,s,e),r&&(r.map((n=>n())),s["s-rc"]=void 0);{const t=null!==(o=s["s-p"])&&void 0!==o?o:[],e=()=>O(n);0===t.length?e():(Promise.all(t).then(e),n.i|=4,t.length=0)}},k=(e,l,o,s)=>{try{l=l.render(),e.i&=-17,e.i|=2,((e,l,o=!1)=>{const s=e.$hostElement$,i=e.j,a=e.k||c(null,null),f=(n=>n&&n.u===u)(l)?l:r(null,null,l);if(t=s.tagName,i.O&&(f.l=f.l||{},i.O.map((([n,t])=>f.l[t]=s[n]))),o&&f.l)for(const n of Object.keys(f.l))s.hasAttribute(n)&&!["key","ref","style","class"].includes(n)&&(f.l[n]=s[n]);f.u=null,f.i|=4,e.k=f,f.h=a.h=s.shadowRoot||s,n=s["s-sc"],v(a,f)})(e,l,s)}catch(n){_(n,e.$hostElement$)}return null},O=n=>{const t=n.$hostElement$,e=n.p;64&n.i||(n.i|=64,x(t),n.C(t),e||C()),n.m&&(n.m(),n.m=void 0),512&n.i&&en((()=>w(n,!1))),n.i&=-517},C=()=>{x(I.documentElement),en((()=>(n=>{const t=J.ce("appload",{detail:{namespace:"mds-table-row"}});return n.dispatchEvent(t),t})(G)))},P=(n,t,e)=>{if(n&&n[t])try{return n[t](e)}catch(n){_(n)}},x=n=>n.setAttribute("hydrated",""),A=(n,t,e)=>{var l;if(t.P){const o=Object.entries(t.P),i=n.prototype;if(o.map((([n,[l]])=>{(31&l||2&e&&32&l)&&Object.defineProperty(i,n,{get(){return((n,t)=>W(this).A.get(t))(0,n)},set(e){((n,t,e,l)=>{const o=W(n),i=o.A.get(t),r=o.i,c=o.v;e=((n,t)=>null==n||s(n)?n:4&t?"false"!==n&&(""===n||!!n):n)(e,l.P[t][0]),8&r&&void 0!==i||e===i||Number.isNaN(i)&&Number.isNaN(e)||(o.A.set(t,e),c&&2==(18&r)&&w(o,!1))})(this,n,e,t)},configurable:!0,enumerable:!0})})),1&e){const e=new Map;i.attributeChangedCallback=function(n,l,o){J.jmp((()=>{const s=e.get(n);if(this.hasOwnProperty(s))o=this[s],delete this[s];else{if(i.hasOwnProperty(s)&&"number"==typeof this[s]&&this[s]==o)return;if(null==s){const e=W(this),s=null==e?void 0:e.i;if(!(8&s)&&128&s&&o!==l){const s=e.v,i=t.N[n];null==i||i.forEach((t=>{null!=s[t]&&s[t].call(s,o,l,n)}))}return}}this[s]=(null!==o||"boolean"!=typeof this[s])&&o}))},n.observedAttributes=Array.from(new Set([...Object.keys(null!==(l=t.N)&&void 0!==l?l:{}),...o.filter((([n,t])=>15&t[0])).map((([n,l])=>{const o=l[1]||n;return e.set(o,n),512&l[0]&&t.O.push([n,o]),o}))]))}}return n},E=(n,t={})=>{var e;const o=[],s=t.exclude||[],r=G.customElements,c=I.head,u=c.querySelector("meta[charset]"),a=I.createElement("style"),d=[];let y,h=!0;Object.assign(J,t),J.T=new URL(t.resourcesUrl||"./",I.baseURI).href;let $=!1;if(n.map((n=>{n[1].map((t=>{const e={i:t[0],$:t[1],P:t[2],H:t[3]};4&e.i&&($=!0),e.P=t[2],e.H=t[3],e.O=[];const l=e.$,i=class extends HTMLElement{constructor(n){super(n),F(n=this,e),1&e.i&&n.attachShadow({mode:"open"})}connectedCallback(){y&&(clearTimeout(y),y=null),h?d.push(this):J.jmp((()=>(n=>{if(0==(1&J.i)){const t=W(n),e=t.j,l=()=>{};if(1&t.i)N(n,t,e.H),(null==t?void 0:t.v)||(null==t?void 0:t.L)&&t.L.then((()=>{}));else{t.i|=1;{let e=n;for(;e=e.parentNode||e.host;)if(e["s-p"]){b(t,t.p=e);break}}e.P&&Object.entries(e.P).map((([t,[e]])=>{if(31&e&&n.hasOwnProperty(t)){const e=n[t];delete n[t],n[t]=e}})),(async(n,t,e)=>{let l;if(0==(32&t.i)){t.i|=32;{if(l=B(e),l.then){const n=()=>{};l=await l,n()}l.isProxied||(A(l,e,2),l.isProxied=!0);const n=()=>{};t.i|=8;try{new l(t)}catch(n){_(n)}t.i&=-9,n()}if(l.style){let n=l.style;const t=f(e);if(!D.has(t)){const l=()=>{};((n,t,e)=>{let l=D.get(n);Q&&e?(l=l||new CSSStyleSheet,"string"==typeof l?l=t:l.replaceSync(t)):l=t,D.set(n,l)})(t,n,!!(1&e.i)),l()}}}const o=t.p,s=()=>w(t,!0);o&&o["s-rc"]?o["s-rc"].push(s):s()})(0,t,e)}l()}})(this)))}disconnectedCallback(){J.jmp((()=>(async()=>{if(0==(1&J.i)){const n=W(this);n.R&&(n.R.map((n=>n())),n.R=void 0),(null==n?void 0:n.v)||(null==n?void 0:n.L)&&n.L.then((()=>{}))}})()))}componentOnReady(){return W(this).L}};e.U=n[0],s.includes(l)||r.get(l)||(o.push(l),r.define(l,A(i,e,1)))}))})),$&&(a.innerHTML+=l),a.innerHTML+=o+"{visibility:hidden}[hydrated]{visibility:inherit}",a.innerHTML.length){a.setAttribute("data-styles",""),c.insertBefore(a,u?u.nextSibling:c.firstChild);const n=null!==(e=J.M)&&void 0!==e?e:i(I);null!=n&&a.setAttribute("nonce",n)}h=!1,d.length?d.map((n=>n.connectedCallback())):J.jmp((()=>y=setTimeout(C,30)))},N=(n,t,e)=>{e&&e.map((([e,l,o])=>{const s=H(n,e),i=T(t,o),r=L(e);J.ael(s,l,i,r),(t.R=t.R||[]).push((()=>J.rel(s,l,i,r)))}))},T=(n,t)=>e=>{try{256&n.i?n.v[t](e):(n.S=n.S||[]).push([t,e])}catch(n){_(n)}},H=(n,t)=>4&t?I:n,L=n=>0!=(2&n),R=n=>J.M=n,U=new WeakMap,W=n=>U.get(n),q=(n,t)=>U.set(t.v=n,t),F=(n,t)=>{const e={i:0,$hostElement$:n,j:t,A:new Map};return e.L=new Promise((n=>e.C=n)),n["s-p"]=[],n["s-rc"]=[],N(n,e,t.H),U.set(n,e)},V=(n,t)=>t in n,_=(n,t)=>(0,console.error)(n,t),z=new Map,B=n=>{const t=n.$.replace(/-/g,"_"),e=n.U,l=z.get(e);return l?l[t]:import(`./${e}.entry.js`).then((n=>(z.set(e,n),n[t])),_)
|
|
2
|
-
/*!__STENCIL_STATIC_IMPORT_SWITCH__*/},D=new Map,G="undefined"!=typeof window?window:{},I=G.document||{head:{}},J={i:0,T:"",jmp:n=>n(),raf:n=>requestAnimationFrame(n),ael:(n,t,e,l)=>n.addEventListener(t,e,l),rel:(n,t,e,l)=>n.removeEventListener(t,e,l),ce:(n,t)=>new CustomEvent(n,t)},K=n=>Promise.resolve(n),Q=(()=>{try{return new CSSStyleSheet,"function"==typeof(new CSSStyleSheet).replaceSync}catch(n){}return!1})(),X=[],Y=[],Z=(n,t)=>l=>{n.push(l),e||(e=!0,t&&4&J.i?en(tn):J.raf(tn))},nn=n=>{for(let t=0;t<n.length;t++)try{n[t](performance.now())}catch(n){_(n)}n.length=0},tn=()=>{nn(X),nn(Y),(e=X.length>0)&&J.raf(tn)},en=n=>K().then(n),ln=Z(Y,!0);export{u as H,E as b,r as h,K as p,q as r,R as s}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
import{r as o,h as r,H as a}from"./p-88b806ec.js";const t=class{constructor(r){o(this,r),this.interactive=void 0}tableInteractiveHandler(o){this.interactive=o.detail}render(){return r(a,{role:"row"},r("slot",null))}};t.style=".fixed{position:fixed}.absolute{position:absolute}.border{border-width:1px}.shadow{--tw-shadow:0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);--tw-shadow-colored:0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);-webkit-box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)}:host{display:table-row}:host([interactive]:hover){--mds-table-cell-background:var(--mds-table-cell-background-hover, rgb(var(--tone-neutral)))}";export{t as mds_table_row}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
System.register(["./p-8f394fbb.system.js"],(function(o){"use strict";var t,r,a;return{setters:[function(o){t=o.r;r=o.h;a=o.H}],execute:function(){var s=".fixed{position:fixed}.absolute{position:absolute}.border{border-width:1px}.shadow{--tw-shadow:0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);--tw-shadow-colored:0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);-webkit-box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)}:host{display:table-row}:host([interactive]:hover){--mds-table-cell-background:var(--mds-table-cell-background-hover, rgb(var(--tone-neutral)))}";var e=o("mds_table_row",function(){function o(o){t(this,o);this.interactive=undefined}o.prototype.tableInteractiveHandler=function(o){this.interactive=o.detail};o.prototype.render=function(){return r(a,{role:"row"},r("slot",null))};return o}());e.style=s}}}));
|
package/www/build/p-88b806ec.js
DELETED
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
let n,t,e=!1;const l="slot-fb{display:contents}slot-fb[hidden]{display:none}",o={},s=n=>"object"==(n=typeof n)||"function"===n;function i(n){var t,e,l;return null!==(l=null===(e=null===(t=n.head)||void 0===t?void 0:t.querySelector('meta[name="csp-nonce"]'))||void 0===e?void 0:e.getAttribute("content"))&&void 0!==l?l:void 0}const r=(n,t,...e)=>{let l=null,o=!1,i=!1;const r=[],u=t=>{for(let e=0;e<t.length;e++)l=t[e],Array.isArray(l)?u(l):null!=l&&"boolean"!=typeof l&&((o="function"!=typeof n&&!s(l))&&(l+=""),o&&i?r[r.length-1].t+=l:r.push(o?c(null,l):l),i=o)};u(e);const a=c(n,null);return a.l=t,r.length>0&&(a.o=r),a},c=(n,t)=>({i:0,u:n,t,h:null,o:null,l:null}),u={},a=new WeakMap,f=n=>"sc-"+n.$,d=(n,t,e,l,o,i)=>{if(e!==l){let r=V(n,t);t.toLowerCase();{const c=s(l);if((r||c&&null!==l)&&!o)try{if(n.tagName.includes("-"))n[t]=l;else{const o=null==l?"":l;"list"===t?r=!1:null!=e&&n[t]==o||(n[t]=o)}}catch(n){}null==l||!1===l?!1===l&&""!==n.getAttribute(t)||n.removeAttribute(t):(!r||4&i||o)&&!c&&n.setAttribute(t,l=!0===l?"":l)}}},y=(n,t,e,l)=>{const s=11===t.h.nodeType&&t.h.host?t.h.host:t.h,i=n&&n.l||o,r=t.l||o;for(l in i)l in r||d(s,l,i[l],void 0,e,t.i);for(l in r)d(s,l,i[l],r[l],e,t.i)},h=(t,e,l)=>{const o=e.o[l];let s,i,r=0;if(s=o.h=I.createElement(o.u),y(null,o,!1),null!=n&&s["s-si"]!==n&&s.classList.add(s["s-si"]=n),o.o)for(r=0;r<o.o.length;++r)i=h(t,o,r),i&&s.appendChild(i);return s},$=(n,e,l,o,s,i)=>{let r,c=n;for(c.shadowRoot&&c.tagName===t&&(c=c.shadowRoot);s<=i;++s)o[s]&&(r=h(null,l,s),r&&(o[s].h=r,c.insertBefore(r,e)))},m=(n,t,e)=>{for(let l=t;l<=e;++l){const t=n[l];if(t){const n=t.h;n&&n.remove()}}},p=(n,t)=>n.u===t.u,v=(n,t)=>{const e=t.h=n.h,l=n.o,o=t.o;"slot"===t.u||y(n,t,!1),null!==l&&null!==o?((n,t,e,l)=>{let o,s=0,i=0,r=t.length-1,c=t[0],u=t[r],a=l.length-1,f=l[0],d=l[a];for(;s<=r&&i<=a;)null==c?c=t[++s]:null==u?u=t[--r]:null==f?f=l[++i]:null==d?d=l[--a]:p(c,f)?(v(c,f),c=t[++s],f=l[++i]):p(u,d)?(v(u,d),u=t[--r],d=l[--a]):p(c,d)?(v(c,d),n.insertBefore(c.h,u.h.nextSibling),c=t[++s],d=l[--a]):p(u,f)?(v(u,f),n.insertBefore(u.h,c.h),u=t[--r],f=l[++i]):(o=h(t&&t[i],e,i),f=l[++i],o&&c.h.parentNode.insertBefore(o,c.h));s>r?$(n,null==l[a+1]?null:l[a+1].h,e,l,i,a):i>a&&m(t,s,r)})(e,l,t,o):null!==o?$(e,null,t,o,0,o.length-1):null!==l&&m(l,0,l.length-1)},b=(n,t)=>{t&&!n.m&&t["s-p"]&&t["s-p"].push(new Promise((t=>n.m=t)))},w=(n,t)=>{if(n.i|=16,!(4&n.i))return b(n,n.p),ln((()=>S(n,t)));n.i|=512},S=(n,t)=>{const e=n.v;return t&&(n.i|=256,n.S&&(n.S.map((([n,t])=>P(e,n,t))),n.S=void 0)),g(void 0,(()=>M(n,e,t)))},g=(n,t)=>j(n)?n.then(t):t(),j=n=>n instanceof Promise||n&&n.then&&"function"==typeof n.then,M=async(n,t,e)=>{var o;const s=n.$hostElement$,r=s["s-rc"];e&&(n=>{const t=n.j,e=n.$hostElement$,o=t.i,s=((n,t)=>{var e;const o=f(t),s=D.get(o);if(n=11===n.nodeType?n:I,s)if("string"==typeof s){let r,c=a.get(n=n.head||n);if(c||a.set(n,c=new Set),!c.has(o)){{r=I.createElement("style"),r.innerHTML=s;const t=null!==(e=J.M)&&void 0!==e?e:i(I);null!=t&&r.setAttribute("nonce",t),n.insertBefore(r,n.querySelector("link"))}4&t.i&&(r.innerHTML+=l),c&&c.add(o)}}else n.adoptedStyleSheets.includes(s)||(n.adoptedStyleSheets=[...n.adoptedStyleSheets,s]);return o})(e.shadowRoot?e.shadowRoot:e.getRootNode(),t);10&o&&(e["s-sc"]=s,e.classList.add(s+"-h"))})(n);k(n,t,s,e),r&&(r.map((n=>n())),s["s-rc"]=void 0);{const t=null!==(o=s["s-p"])&&void 0!==o?o:[],e=()=>O(n);0===t.length?e():(Promise.all(t).then(e),n.i|=4,t.length=0)}},k=(e,l,o,s)=>{try{l=l.render(),e.i&=-17,e.i|=2,((e,l,o=!1)=>{const s=e.$hostElement$,i=e.j,a=e.k||c(null,null),f=(n=>n&&n.u===u)(l)?l:r(null,null,l);if(t=s.tagName,i.O&&(f.l=f.l||{},i.O.map((([n,t])=>f.l[t]=s[n]))),o&&f.l)for(const n of Object.keys(f.l))s.hasAttribute(n)&&!["key","ref","style","class"].includes(n)&&(f.l[n]=s[n]);f.u=null,f.i|=4,e.k=f,f.h=a.h=s.shadowRoot||s,n=s["s-sc"],v(a,f)})(e,l,s)}catch(n){_(n,e.$hostElement$)}return null},O=n=>{const t=n.$hostElement$,e=n.p;64&n.i||(n.i|=64,x(t),n.C(t),e||C()),n.m&&(n.m(),n.m=void 0),512&n.i&&en((()=>w(n,!1))),n.i&=-517},C=()=>{x(I.documentElement),en((()=>(n=>{const t=J.ce("appload",{detail:{namespace:"mds-table-row"}});return n.dispatchEvent(t),t})(G)))},P=(n,t,e)=>{if(n&&n[t])try{return n[t](e)}catch(n){_(n)}},x=n=>n.setAttribute("hydrated",""),A=(n,t,e)=>{var l;if(t.P){const o=Object.entries(t.P),i=n.prototype;if(o.map((([n,[l]])=>{(31&l||2&e&&32&l)&&Object.defineProperty(i,n,{get(){return((n,t)=>W(this).A.get(t))(0,n)},set(e){((n,t,e,l)=>{const o=W(n),i=o.A.get(t),r=o.i,c=o.v;e=((n,t)=>null==n||s(n)?n:4&t?"false"!==n&&(""===n||!!n):n)(e,l.P[t][0]),8&r&&void 0!==i||e===i||Number.isNaN(i)&&Number.isNaN(e)||(o.A.set(t,e),c&&2==(18&r)&&w(o,!1))})(this,n,e,t)},configurable:!0,enumerable:!0})})),1&e){const e=new Map;i.attributeChangedCallback=function(n,l,o){J.jmp((()=>{const s=e.get(n);if(this.hasOwnProperty(s))o=this[s],delete this[s];else{if(i.hasOwnProperty(s)&&"number"==typeof this[s]&&this[s]==o)return;if(null==s){const e=W(this),s=null==e?void 0:e.i;if(!(8&s)&&128&s&&o!==l){const s=e.v,i=t.N[n];null==i||i.forEach((t=>{null!=s[t]&&s[t].call(s,o,l,n)}))}return}}this[s]=(null!==o||"boolean"!=typeof this[s])&&o}))},n.observedAttributes=Array.from(new Set([...Object.keys(null!==(l=t.N)&&void 0!==l?l:{}),...o.filter((([n,t])=>15&t[0])).map((([n,l])=>{const o=l[1]||n;return e.set(o,n),512&l[0]&&t.O.push([n,o]),o}))]))}}return n},E=(n,t={})=>{var e;const o=[],s=t.exclude||[],r=G.customElements,c=I.head,u=c.querySelector("meta[charset]"),a=I.createElement("style"),d=[];let y,h=!0;Object.assign(J,t),J.T=new URL(t.resourcesUrl||"./",I.baseURI).href;let $=!1;if(n.map((n=>{n[1].map((t=>{const e={i:t[0],$:t[1],P:t[2],H:t[3]};4&e.i&&($=!0),e.P=t[2],e.H=t[3],e.O=[];const l=e.$,i=class extends HTMLElement{constructor(n){super(n),F(n=this,e),1&e.i&&n.attachShadow({mode:"open"})}connectedCallback(){y&&(clearTimeout(y),y=null),h?d.push(this):J.jmp((()=>(n=>{if(0==(1&J.i)){const t=W(n),e=t.j,l=()=>{};if(1&t.i)N(n,t,e.H),(null==t?void 0:t.v)||(null==t?void 0:t.L)&&t.L.then((()=>{}));else{t.i|=1;{let e=n;for(;e=e.parentNode||e.host;)if(e["s-p"]){b(t,t.p=e);break}}e.P&&Object.entries(e.P).map((([t,[e]])=>{if(31&e&&n.hasOwnProperty(t)){const e=n[t];delete n[t],n[t]=e}})),(async(n,t,e)=>{let l;if(0==(32&t.i)){t.i|=32;{if(l=B(e),l.then){const n=()=>{};l=await l,n()}l.isProxied||(A(l,e,2),l.isProxied=!0);const n=()=>{};t.i|=8;try{new l(t)}catch(n){_(n)}t.i&=-9,n()}if(l.style){let n=l.style;const t=f(e);if(!D.has(t)){const l=()=>{};((n,t,e)=>{let l=D.get(n);Q&&e?(l=l||new CSSStyleSheet,"string"==typeof l?l=t:l.replaceSync(t)):l=t,D.set(n,l)})(t,n,!!(1&e.i)),l()}}}const o=t.p,s=()=>w(t,!0);o&&o["s-rc"]?o["s-rc"].push(s):s()})(0,t,e)}l()}})(this)))}disconnectedCallback(){J.jmp((()=>(async()=>{if(0==(1&J.i)){const n=W(this);n.R&&(n.R.map((n=>n())),n.R=void 0),(null==n?void 0:n.v)||(null==n?void 0:n.L)&&n.L.then((()=>{}))}})()))}componentOnReady(){return W(this).L}};e.U=n[0],s.includes(l)||r.get(l)||(o.push(l),r.define(l,A(i,e,1)))}))})),$&&(a.innerHTML+=l),a.innerHTML+=o+"{visibility:hidden}[hydrated]{visibility:inherit}",a.innerHTML.length){a.setAttribute("data-styles",""),c.insertBefore(a,u?u.nextSibling:c.firstChild);const n=null!==(e=J.M)&&void 0!==e?e:i(I);null!=n&&a.setAttribute("nonce",n)}h=!1,d.length?d.map((n=>n.connectedCallback())):J.jmp((()=>y=setTimeout(C,30)))},N=(n,t,e)=>{e&&e.map((([e,l,o])=>{const s=H(n,e),i=T(t,o),r=L(e);J.ael(s,l,i,r),(t.R=t.R||[]).push((()=>J.rel(s,l,i,r)))}))},T=(n,t)=>e=>{try{256&n.i?n.v[t](e):(n.S=n.S||[]).push([t,e])}catch(n){_(n)}},H=(n,t)=>4&t?I:n,L=n=>0!=(2&n),R=n=>J.M=n,U=new WeakMap,W=n=>U.get(n),q=(n,t)=>U.set(t.v=n,t),F=(n,t)=>{const e={i:0,$hostElement$:n,j:t,A:new Map};return e.L=new Promise((n=>e.C=n)),n["s-p"]=[],n["s-rc"]=[],N(n,e,t.H),U.set(n,e)},V=(n,t)=>t in n,_=(n,t)=>(0,console.error)(n,t),z=new Map,B=n=>{const t=n.$.replace(/-/g,"_"),e=n.U,l=z.get(e);return l?l[t]:import(`./${e}.entry.js`).then((n=>(z.set(e,n),n[t])),_)
|
|
2
|
-
/*!__STENCIL_STATIC_IMPORT_SWITCH__*/},D=new Map,G="undefined"!=typeof window?window:{},I=G.document||{head:{}},J={i:0,T:"",jmp:n=>n(),raf:n=>requestAnimationFrame(n),ael:(n,t,e,l)=>n.addEventListener(t,e,l),rel:(n,t,e,l)=>n.removeEventListener(t,e,l),ce:(n,t)=>new CustomEvent(n,t)},K=n=>Promise.resolve(n),Q=(()=>{try{return new CSSStyleSheet,"function"==typeof(new CSSStyleSheet).replaceSync}catch(n){}return!1})(),X=[],Y=[],Z=(n,t)=>l=>{n.push(l),e||(e=!0,t&&4&J.i?en(tn):J.raf(tn))},nn=n=>{for(let t=0;t<n.length;t++)try{n[t](performance.now())}catch(n){_(n)}n.length=0},tn=()=>{nn(X),nn(Y),(e=X.length>0)&&J.raf(tn)},en=n=>K().then(n),ln=Z(Y,!0);export{u as H,E as b,r as h,K as p,q as r,R as s}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
import{r as o,h as r,H as a}from"./p-88b806ec.js";const t=class{constructor(r){o(this,r),this.interactive=void 0}tableInteractiveHandler(o){this.interactive=o.detail}render(){return r(a,{role:"row"},r("slot",null))}};t.style=".fixed{position:fixed}.absolute{position:absolute}.border{border-width:1px}.shadow{--tw-shadow:0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);--tw-shadow-colored:0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);-webkit-box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)}:host{display:table-row}:host([interactive]:hover){--mds-table-cell-background:var(--mds-table-cell-background-hover, rgb(var(--tone-neutral)))}";export{t as mds_table_row}
|