@ui5/webcomponents-base 1.20.1 → 1.21.0-rc.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/CHANGELOG.md +24 -2
- package/dist/.tsbuildinfo +1 -0
- package/dist/CustomElementsScope.d.ts +2 -2
- package/dist/Keys.js +104 -105
- package/dist/Keys.js.map +1 -1
- package/dist/UI5ElementMetadata.js +1 -0
- package/dist/UI5ElementMetadata.js.map +1 -1
- package/dist/api.json +1 -1
- package/dist/asset-registries/Illustrations.js +8 -9
- package/dist/asset-registries/Illustrations.js.map +1 -1
- package/dist/asset-registries/i18n.js +2 -1
- package/dist/asset-registries/i18n.js.map +1 -1
- package/dist/config/Icons.d.ts +1 -1
- package/dist/config/Icons.js.map +1 -1
- package/dist/delegate/ScrollEnablement.js +2 -2
- package/dist/delegate/ScrollEnablement.js.map +1 -1
- package/dist/features/OpenUI5Enablement.d.ts +1 -1
- package/dist/generated/AssetParameters.d.ts +6 -0
- package/dist/generated/AssetParameters.js +3 -10
- package/dist/generated/AssetParameters.js.map +1 -0
- package/dist/generated/VersionInfo.d.ts +10 -0
- package/dist/generated/VersionInfo.js +9 -8
- package/dist/generated/VersionInfo.js.map +1 -0
- package/dist/generated/templates/elements/WithComplexTemplateTemplate.lit.d.ts +1 -1
- package/dist/renderer/LitRenderer.d.ts +2 -2
- package/dist/types/InvisibleMessageMode.d.ts +5 -4
- package/dist/types/InvisibleMessageMode.js +4 -5
- package/dist/types/InvisibleMessageMode.js.map +1 -1
- package/dist/util/ColorConversion.js +152 -153
- package/dist/util/ColorConversion.js.map +1 -1
- package/dist/util/InvisibleMessage.d.ts +1 -1
- package/dist/util/InvisibleMessage.js.map +1 -1
- package/dist/util/getClassCopy.d.ts +43 -29
- package/lib/generate-asset-parameters/index.js +2 -2
- package/lib/generate-version-info/index.js +2 -2
- package/package-scripts.cjs +6 -7
- package/package.json +7 -4
- package/tsconfig.json +3 -0
- package/dist/assets/Boot-34b7cea0.css +0 -1
- package/dist/assets/Boot-7124a68e.js +0 -9
- package/dist/assets/bundle.esm-5fcb4c90.js +0 -50
- package/dist/assets/test/pages/Boot.html-f70ec297.js +0 -1
- package/dist/assets/test/pages/i18n.html-9f233257.js +0 -1
- package/dist/assets/test/pages/i18n_texts.html-ed7e2089.js +0 -1
- package/dist/test/pages/AllTestElements.html +0 -43
- package/dist/test/pages/Boot.html +0 -17
- package/dist/test/pages/Configuration.html +0 -20
- package/dist/test/pages/ConfigurationScript.html +0 -52
- package/dist/test/pages/WithComplexTemplate.html +0 -23
- package/dist/test/pages/i18n.html +0 -21
- package/dist/test/pages/i18n_texts.html +0 -89
|
@@ -87,11 +87,15 @@ declare const getClassCopy: (klass: typeof UI5Element, constructorCallback: () =
|
|
|
87
87
|
readonly offsetTop: number;
|
|
88
88
|
readonly offsetWidth: number;
|
|
89
89
|
outerText: string;
|
|
90
|
+
popover: string | null;
|
|
90
91
|
spellcheck: boolean;
|
|
91
92
|
title: string;
|
|
92
93
|
translate: boolean;
|
|
93
94
|
attachInternals(): ElementInternals;
|
|
94
95
|
click(): void;
|
|
96
|
+
hidePopover(): void;
|
|
97
|
+
showPopover(): void;
|
|
98
|
+
togglePopover(force?: boolean | undefined): void;
|
|
95
99
|
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions | undefined): void;
|
|
96
100
|
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions | undefined): void;
|
|
97
101
|
removeEventListener<K_1 extends keyof HTMLElementEventMap>(type: K_1, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_1]) => any, options?: boolean | EventListenerOptions | undefined): void;
|
|
@@ -120,9 +124,12 @@ declare const getClassCopy: (klass: typeof UI5Element, constructorCallback: () =
|
|
|
120
124
|
slot: string;
|
|
121
125
|
readonly tagName: string;
|
|
122
126
|
attachShadow(init: ShadowRootInit): ShadowRoot;
|
|
127
|
+
checkVisibility(options?: CheckVisibilityOptions | undefined): boolean;
|
|
123
128
|
closest<K_2 extends keyof HTMLElementTagNameMap>(selector: K_2): HTMLElementTagNameMap[K_2] | null;
|
|
124
129
|
closest<K_3 extends keyof SVGElementTagNameMap>(selector: K_3): SVGElementTagNameMap[K_3] | null;
|
|
130
|
+
closest<K_4 extends keyof MathMLElementTagNameMap>(selector: K_4): MathMLElementTagNameMap[K_4] | null;
|
|
125
131
|
closest<E extends Element = Element>(selectors: string): E | null;
|
|
132
|
+
computedStyleMap(): StylePropertyMapReadOnly;
|
|
126
133
|
getAttribute(qualifiedName: string): string | null;
|
|
127
134
|
getAttributeNS(namespace: string | null, localName: string): string | null;
|
|
128
135
|
getAttributeNames(): string[];
|
|
@@ -131,11 +138,14 @@ declare const getClassCopy: (klass: typeof UI5Element, constructorCallback: () =
|
|
|
131
138
|
getBoundingClientRect(): DOMRect;
|
|
132
139
|
getClientRects(): DOMRectList;
|
|
133
140
|
getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
|
|
134
|
-
getElementsByTagName<
|
|
135
|
-
getElementsByTagName<
|
|
141
|
+
getElementsByTagName<K_5 extends keyof HTMLElementTagNameMap>(qualifiedName: K_5): HTMLCollectionOf<HTMLElementTagNameMap[K_5]>;
|
|
142
|
+
getElementsByTagName<K_6 extends keyof SVGElementTagNameMap>(qualifiedName: K_6): HTMLCollectionOf<SVGElementTagNameMap[K_6]>;
|
|
143
|
+
getElementsByTagName<K_7 extends keyof MathMLElementTagNameMap>(qualifiedName: K_7): HTMLCollectionOf<MathMLElementTagNameMap[K_7]>;
|
|
144
|
+
getElementsByTagName<K_8 extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K_8): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K_8]>;
|
|
136
145
|
getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
|
|
137
146
|
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
|
|
138
147
|
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
|
|
148
|
+
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1998/Math/MathML", localName: string): HTMLCollectionOf<MathMLElement>;
|
|
139
149
|
getElementsByTagNameNS(namespace: string | null, localName: string): HTMLCollectionOf<Element>;
|
|
140
150
|
hasAttribute(qualifiedName: string): boolean;
|
|
141
151
|
hasAttributeNS(namespace: string | null, localName: string): boolean;
|
|
@@ -193,24 +203,24 @@ declare const getClassCopy: (klass: typeof UI5Element, constructorCallback: () =
|
|
|
193
203
|
normalize(): void;
|
|
194
204
|
removeChild<T_5 extends Node>(child: T_5): T_5;
|
|
195
205
|
replaceChild<T_6 extends Node>(node: Node, child: T_6): T_6;
|
|
196
|
-
readonly
|
|
197
|
-
readonly
|
|
198
|
-
readonly
|
|
199
|
-
readonly
|
|
200
|
-
readonly
|
|
201
|
-
readonly
|
|
202
|
-
readonly
|
|
203
|
-
readonly
|
|
204
|
-
readonly
|
|
205
|
-
readonly
|
|
206
|
-
readonly
|
|
207
|
-
readonly
|
|
208
|
-
readonly
|
|
209
|
-
readonly
|
|
210
|
-
readonly
|
|
211
|
-
readonly
|
|
212
|
-
readonly
|
|
213
|
-
readonly
|
|
206
|
+
readonly ELEMENT_NODE: 1;
|
|
207
|
+
readonly ATTRIBUTE_NODE: 2;
|
|
208
|
+
readonly TEXT_NODE: 3;
|
|
209
|
+
readonly CDATA_SECTION_NODE: 4;
|
|
210
|
+
readonly ENTITY_REFERENCE_NODE: 5;
|
|
211
|
+
readonly ENTITY_NODE: 6;
|
|
212
|
+
readonly PROCESSING_INSTRUCTION_NODE: 7;
|
|
213
|
+
readonly COMMENT_NODE: 8;
|
|
214
|
+
readonly DOCUMENT_NODE: 9;
|
|
215
|
+
readonly DOCUMENT_TYPE_NODE: 10;
|
|
216
|
+
readonly DOCUMENT_FRAGMENT_NODE: 11;
|
|
217
|
+
readonly NOTATION_NODE: 12;
|
|
218
|
+
readonly DOCUMENT_POSITION_DISCONNECTED: 1;
|
|
219
|
+
readonly DOCUMENT_POSITION_PRECEDING: 2;
|
|
220
|
+
readonly DOCUMENT_POSITION_FOLLOWING: 4;
|
|
221
|
+
readonly DOCUMENT_POSITION_CONTAINS: 8;
|
|
222
|
+
readonly DOCUMENT_POSITION_CONTAINED_BY: 16;
|
|
223
|
+
readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: 32;
|
|
214
224
|
dispatchEvent(event: Event): boolean;
|
|
215
225
|
ariaAtomic: string | null;
|
|
216
226
|
ariaAutoComplete: string | null;
|
|
@@ -218,7 +228,6 @@ declare const getClassCopy: (klass: typeof UI5Element, constructorCallback: () =
|
|
|
218
228
|
ariaChecked: string | null;
|
|
219
229
|
ariaColCount: string | null;
|
|
220
230
|
ariaColIndex: string | null;
|
|
221
|
-
ariaColIndexText: string | null;
|
|
222
231
|
ariaColSpan: string | null;
|
|
223
232
|
ariaCurrent: string | null;
|
|
224
233
|
ariaDisabled: string | null;
|
|
@@ -242,7 +251,6 @@ declare const getClassCopy: (klass: typeof UI5Element, constructorCallback: () =
|
|
|
242
251
|
ariaRoleDescription: string | null;
|
|
243
252
|
ariaRowCount: string | null;
|
|
244
253
|
ariaRowIndex: string | null;
|
|
245
|
-
ariaRowIndexText: string | null;
|
|
246
254
|
ariaRowSpan: string | null;
|
|
247
255
|
ariaSelected: string | null;
|
|
248
256
|
ariaSetSize: string | null;
|
|
@@ -267,17 +275,19 @@ declare const getClassCopy: (klass: typeof UI5Element, constructorCallback: () =
|
|
|
267
275
|
readonly lastElementChild: Element | null;
|
|
268
276
|
append(...nodes: (string | Node)[]): void;
|
|
269
277
|
prepend(...nodes: (string | Node)[]): void;
|
|
270
|
-
querySelector<
|
|
271
|
-
querySelector<
|
|
278
|
+
querySelector<K_9 extends keyof HTMLElementTagNameMap>(selectors: K_9): HTMLElementTagNameMap[K_9] | null;
|
|
279
|
+
querySelector<K_10 extends keyof SVGElementTagNameMap>(selectors: K_10): SVGElementTagNameMap[K_10] | null;
|
|
280
|
+
querySelector<K_11 extends keyof MathMLElementTagNameMap>(selectors: K_11): MathMLElementTagNameMap[K_11] | null;
|
|
281
|
+
querySelector<K_12 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_12): HTMLElementDeprecatedTagNameMap[K_12] | null;
|
|
272
282
|
querySelector<E_1 extends Element = Element>(selectors: string): E_1 | null;
|
|
273
|
-
querySelectorAll<
|
|
274
|
-
querySelectorAll<
|
|
283
|
+
querySelectorAll<K_13 extends keyof HTMLElementTagNameMap>(selectors: K_13): NodeListOf<HTMLElementTagNameMap[K_13]>;
|
|
284
|
+
querySelectorAll<K_14 extends keyof SVGElementTagNameMap>(selectors: K_14): NodeListOf<SVGElementTagNameMap[K_14]>;
|
|
285
|
+
querySelectorAll<K_15 extends keyof MathMLElementTagNameMap>(selectors: K_15): NodeListOf<MathMLElementTagNameMap[K_15]>;
|
|
286
|
+
querySelectorAll<K_16 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_16): NodeListOf<HTMLElementDeprecatedTagNameMap[K_16]>;
|
|
275
287
|
querySelectorAll<E_2 extends Element = Element>(selectors: string): NodeListOf<E_2>;
|
|
276
288
|
replaceChildren(...nodes: (string | Node)[]): void;
|
|
277
289
|
readonly assignedSlot: HTMLSlotElement | null;
|
|
278
|
-
|
|
279
|
-
oncut: ((this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any) | null;
|
|
280
|
-
onpaste: ((this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any) | null;
|
|
290
|
+
readonly attributeStyleMap: StylePropertyMap;
|
|
281
291
|
readonly style: CSSStyleDeclaration;
|
|
282
292
|
contentEditable: string;
|
|
283
293
|
enterKeyHint: string;
|
|
@@ -298,7 +308,9 @@ declare const getClassCopy: (klass: typeof UI5Element, constructorCallback: () =
|
|
|
298
308
|
onclick: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
|
299
309
|
onclose: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
300
310
|
oncontextmenu: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
|
311
|
+
oncopy: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
|
|
301
312
|
oncuechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
313
|
+
oncut: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
|
|
302
314
|
ondblclick: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
|
303
315
|
ondrag: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
|
|
304
316
|
ondragend: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
|
|
@@ -331,6 +343,7 @@ declare const getClassCopy: (klass: typeof UI5Element, constructorCallback: () =
|
|
|
331
343
|
onmouseout: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
|
332
344
|
onmouseover: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
|
333
345
|
onmouseup: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
|
346
|
+
onpaste: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
|
|
334
347
|
onpause: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
335
348
|
onplay: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
336
349
|
onplaying: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
@@ -347,6 +360,7 @@ declare const getClassCopy: (klass: typeof UI5Element, constructorCallback: () =
|
|
|
347
360
|
onreset: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
348
361
|
onresize: ((this: GlobalEventHandlers, ev: UIEvent) => any) | null;
|
|
349
362
|
onscroll: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
363
|
+
onscrollend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
350
364
|
onsecuritypolicyviolation: ((this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any) | null;
|
|
351
365
|
onseeked: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
352
366
|
onseeking: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
@@ -18,8 +18,8 @@ export {
|
|
|
18
18
|
};`;
|
|
19
19
|
|
|
20
20
|
const generate = async () => {
|
|
21
|
-
await fs.mkdir("
|
|
22
|
-
return fs.writeFile("
|
|
21
|
+
await fs.mkdir("src/generated/", { recursive: true });
|
|
22
|
+
return fs.writeFile("src/generated/AssetParameters.ts", fileContent);
|
|
23
23
|
}
|
|
24
24
|
|
|
25
25
|
generate().then(() => {
|
|
@@ -23,8 +23,8 @@ const generate = async () => {
|
|
|
23
23
|
};
|
|
24
24
|
export default VersionInfo;`;
|
|
25
25
|
|
|
26
|
-
await fs.mkdir("
|
|
27
|
-
await fs.writeFile("
|
|
26
|
+
await fs.mkdir("src/generated/", { recursive: true });
|
|
27
|
+
await fs.writeFile("src/generated/VersionInfo.ts", fileContent);
|
|
28
28
|
}
|
|
29
29
|
|
|
30
30
|
generate().then(() => {
|
package/package-scripts.cjs
CHANGED
|
@@ -15,8 +15,9 @@ const viteConfig = `-c "${require.resolve("@ui5/webcomponents-tools/components-p
|
|
|
15
15
|
const scripts = {
|
|
16
16
|
clean: "rimraf jsdoc-dist && rimraf src/generated && rimraf dist && rimraf .port",
|
|
17
17
|
lint: `eslint .`,
|
|
18
|
-
|
|
19
|
-
|
|
18
|
+
generate: "cross-env UI5_TS=true nps clean integrate copy generateAssetParameters generateVersionInfo generateStyles generateTemplates",
|
|
19
|
+
prepare: "cross-env UI5_TS=true nps clean integrate copy generateAssetParameters generateVersionInfo generateStyles generateTemplates typescript",
|
|
20
|
+
typescript: "tsc -b",
|
|
20
21
|
integrate: {
|
|
21
22
|
default: "nps integrate.copy-used-modules integrate.replace-amd integrate.amd-to-es6 integrate.esm-abs-to-rel integrate.third-party",
|
|
22
23
|
"copy-used-modules": `node "${copyUsedModules}" ./used-modules.txt dist/`,
|
|
@@ -30,7 +31,7 @@ const scripts = {
|
|
|
30
31
|
},
|
|
31
32
|
},
|
|
32
33
|
build: {
|
|
33
|
-
default: `nps prepare
|
|
34
|
+
default: `nps prepare`,
|
|
34
35
|
bundle: `vite build ${viteConfig}`,
|
|
35
36
|
},
|
|
36
37
|
copy: {
|
|
@@ -49,14 +50,12 @@ const scripts = {
|
|
|
49
50
|
cleanup: "rimraf jsdoc-dist/"
|
|
50
51
|
},
|
|
51
52
|
watch: {
|
|
52
|
-
default: 'concurrently "nps watch.src" "nps watch.styles"
|
|
53
|
-
withBundle: 'concurrently "nps watch.src" "nps watch.bundle" "nps watch.styles"
|
|
53
|
+
default: 'concurrently "nps watch.src" "nps watch.styles"',
|
|
54
|
+
withBundle: 'concurrently "nps watch.src" "nps watch.bundle" "nps watch.styles"',
|
|
54
55
|
src: 'nps "copy.src --watch --skip-initial-copy"',
|
|
55
|
-
typescript: 'tsc --watch',
|
|
56
56
|
bundle: `node ${LIB}/dev-server/dev-server.js ${viteConfig}`,
|
|
57
57
|
styles: 'chokidar "src/css/*.css" -c "nps generateStyles"'
|
|
58
58
|
},
|
|
59
|
-
start: "nps prepare watch.withBundle",
|
|
60
59
|
test: {
|
|
61
60
|
default: 'concurrently "nps test.wdio" "nps test.ssr" "nps test.ssr2"',
|
|
62
61
|
ssr: `mocha test/ssr`,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ui5/webcomponents-base",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.21.0-rc.2",
|
|
4
4
|
"description": "UI5 Web Components: webcomponents.base",
|
|
5
5
|
"author": "SAP SE (https://www.sap.com)",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -28,8 +28,11 @@
|
|
|
28
28
|
"lint": "nps lint",
|
|
29
29
|
"start": "nps start",
|
|
30
30
|
"build": "nps build",
|
|
31
|
+
"generate": "nps generate",
|
|
32
|
+
"generateAPI": "nps generateAPI",
|
|
33
|
+
"bundle": "nps build.bundle",
|
|
31
34
|
"test": "nps test",
|
|
32
|
-
"prepublishOnly": "
|
|
35
|
+
"prepublishOnly": "tsc"
|
|
33
36
|
},
|
|
34
37
|
"dependencies": {
|
|
35
38
|
"lit-html": "^2.0.1"
|
|
@@ -37,7 +40,7 @@
|
|
|
37
40
|
"devDependencies": {
|
|
38
41
|
"@buxlabs/amd-to-es6": "0.16.1",
|
|
39
42
|
"@openui5/sap.ui.core": "1.116.0",
|
|
40
|
-
"@ui5/webcomponents-tools": "1.
|
|
43
|
+
"@ui5/webcomponents-tools": "1.21.0-rc.2",
|
|
41
44
|
"chromedriver": "119.0.1",
|
|
42
45
|
"clean-css": "^5.2.2",
|
|
43
46
|
"copy-and-watch": "^0.1.5",
|
|
@@ -47,5 +50,5 @@
|
|
|
47
50
|
"replace-in-file": "^6.3.5",
|
|
48
51
|
"resolve": "^1.20.0"
|
|
49
52
|
},
|
|
50
|
-
"gitHead": "
|
|
53
|
+
"gitHead": "7e8d80b02124f3958b7274bc994f3939e4def8a5"
|
|
51
54
|
}
|
package/tsconfig.json
CHANGED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
.content{color:var(--customCol);background-color:var(--customBg)}
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
(function(){const t=document.createElement("link").relList;if(t&&t.supports&&t.supports("modulepreload"))return;for(const r of document.querySelectorAll('link[rel="modulepreload"]'))s(r);new MutationObserver(r=>{for(const o of r)if(o.type==="childList")for(const a of o.addedNodes)a.tagName==="LINK"&&a.rel==="modulepreload"&&s(a)}).observe(document,{childList:!0,subtree:!0});function n(r){const o={};return r.integrity&&(o.integrity=r.integrity),r.referrerPolicy&&(o.referrerPolicy=r.referrerPolicy),r.crossOrigin==="use-credentials"?o.credentials="include":r.crossOrigin==="anonymous"?o.credentials="omit":o.credentials="same-origin",o}function s(r){if(r.ep)return;r.ep=!0;const o=n(r);fetch(r.href,o)}})();const P={themes:{default:"sap_horizon",all:["sap_fiori_3","sap_fiori_3_dark","sap_belize","sap_belize_hcb","sap_belize_hcw","sap_fiori_3_hcb","sap_fiori_3_hcw","sap_horizon","sap_horizon_dark","sap_horizon_hcb","sap_horizon_hcw","sap_horizon_exp","sap_horizon_dark_exp","sap_horizon_hcb_exp","sap_horizon_hcw_exp"]},languages:{default:"en",all:["ar","bg","ca","cnr","cs","cy","da","de","el","en","en_GB","en_US_sappsd","en_US_saprigi","en_US_saptrc","es","es_MX","et","fi","fr","fr_CA","hi","hr","hu","in","it","iw","ja","kk","ko","lt","lv","mk","ms","nl","no","pl","pt_PT","pt","ro","ru","sh","sk","sl","sr","sv","th","tr","uk","vi","zh_CN","zh_TW"]},locales:{default:"en",all:["ar","ar_EG","ar_SA","bg","ca","cs","da","de","de_AT","de_CH","el","el_CY","en","en_AU","en_GB","en_HK","en_IE","en_IN","en_NZ","en_PG","en_SG","en_ZA","es","es_AR","es_BO","es_CL","es_CO","es_MX","es_PE","es_UY","es_VE","et","fa","fi","fr","fr_BE","fr_CA","fr_CH","fr_LU","he","hi","hr","hu","id","it","it_CH","ja","kk","ko","lt","lv","ms","nb","nl","nl_BE","pl","pt","pt_PT","ro","ru","ru_UA","sk","sl","sr","sr_Latn","sv","th","tr","uk","vi","zh_CN","zh_HK","zh_SG","zh_TW"]}},k=P.themes.default,gt=P.themes.all,j=P.languages.default,h=P.locales.default,ge=P.locales.all,mt=()=>{const e=navigator.languages,t=()=>navigator.language;return e&&e[0]||t()||j};var xe={},Fe=xe.hasOwnProperty,Ut=xe.toString,Be=Fe.toString,yt=Be.call(Object),me=function(e){var t,n;return!e||Ut.call(e)!=="[object Object]"?!1:(t=Object.getPrototypeOf(e),t?(n=Fe.call(t,"constructor")&&t.constructor,typeof n=="function"&&Be.call(n)===yt):!0)},wt=Object.create(null),ze=function(e,t,n,s){var r,o,a,i,f,y,g=arguments[2]||{},q=3,ht=arguments.length,pe=arguments[0]||!1,pt=arguments[1]?void 0:wt;for(typeof g!="object"&&typeof g!="function"&&(g={});q<ht;q++)if((f=arguments[q])!=null)for(i in f)r=g[i],a=f[i],!(i==="__proto__"||g===a)&&(pe&&a&&(me(a)||(o=Array.isArray(a)))?(o?(o=!1,y=r&&Array.isArray(r)?r:[]):y=r&&me(r)?r:{},g[i]=ze(pe,arguments[1],y,a)):a!==pt&&(g[i]=a));return g};const je=function(e,t){return ze(!0,!1,...arguments)},Ve=new Map,ns=(e,t)=>{Ve.set(e,t)},A=e=>Ve.get(e),St=e=>{const t=document.querySelector(`META[name="${e}"]`);return t&&t.getAttribute("content")},_t=e=>{const t=St("sap-allowedThemeOrigins");return t&&t.split(",").some(n=>n==="*"||e===n.trim())},At=(e,t)=>{const n=new URL(e).pathname;return new URL(n,t).toString()},Ne=e=>{let t;try{if(e.startsWith(".")||e.startsWith("/"))t=new URL(e,window.location.href).toString();else{const n=new URL(e),s=n.origin;s&&_t(s)?t=n.toString():t=At(n.toString(),window.location.href)}return t.endsWith("/")||(t=`${t}/`),`${t}UI5/`}catch{}};var se;(function(e){e.Full="full",e.Basic="basic",e.Minimal="minimal",e.None="none"})(se||(se={}));const Et=se;let Ue=!1,u={animationMode:Et.Full,theme:k,themeRoot:void 0,rtl:void 0,language:void 0,timezone:void 0,calendarType:void 0,secondaryCalendarType:void 0,noConflict:!1,formatSettings:{},fetchDefaultLanguage:!1};const ss=()=>(p(),u.animationMode),bt=()=>(p(),u.theme),Tt=()=>(p(),u.themeRoot),rs=()=>(p(),u.rtl),Ct=()=>(p(),u.language),vt=()=>(p(),u.fetchDefaultLanguage),os=()=>(p(),u.noConflict),as=()=>(p(),u.calendarType),is=()=>(p(),u.formatSettings),x=new Map;x.set("true",!0);x.set("false",!1);const Lt=()=>{const e=document.querySelector("[data-ui5-config]")||document.querySelector("[data-id='sap-ui-config']");let t;if(e){try{t=JSON.parse(e.innerHTML)}catch{console.warn("Incorrect data-sap-ui-config format. Please use JSON")}t&&(u=je(u,t))}},Pt=()=>{const e=new URLSearchParams(window.location.search);e.forEach((t,n)=>{const s=n.split("sap-").length;s===0||s===n.split("sap-ui-").length||ye(n,t,"sap")}),e.forEach((t,n)=>{n.startsWith("sap-ui")&&ye(n,t,"sap-ui")})},Rt=e=>{const t=e.split("@")[1];return Ne(t)},$t=(e,t)=>e==="theme"&&t.includes("@")?t.split("@")[0]:t,ye=(e,t,n)=>{const s=t.toLowerCase(),r=e.split(`${n}-`)[1];x.has(t)&&(t=x.get(s)),r==="theme"?(u.theme=$t(r,t),t&&t.includes("@")&&(u.themeRoot=Rt(t))):u[r]=t},It=()=>{const e=A("OpenUI5Support");if(!e||!e.isOpenUI5Detected())return;const t=e.getConfigurationSettingsObject();u=je(u,t)},p=()=>{typeof document>"u"||Ue||(Lt(),Pt(),It(),Ue=!0)};class R{constructor(){this._eventRegistry=new Map}attachEvent(t,n){const s=this._eventRegistry,r=s.get(t);if(!Array.isArray(r)){s.set(t,[n]);return}r.includes(n)||r.push(n)}detachEvent(t,n){const s=this._eventRegistry,r=s.get(t);if(!r)return;const o=r.indexOf(n);o!==-1&&r.splice(o,1),r.length===0&&s.delete(t)}fireEvent(t,n){const r=this._eventRegistry.get(t);return r?r.map(o=>o.call(this,n)):[]}fireEventAsync(t,n){return Promise.all(this.fireEvent(t,n))}isHandlerAttached(t,n){const r=this._eventRegistry.get(t);return r?r.includes(n):!1}hasListeners(t){return!!this._eventRegistry.get(t)}}const We=new R,Ze="languageChange",He=e=>{We.attachEvent(Ze,e)},Ot=e=>We.fireEventAsync(Ze,e),we=10;class Dt{constructor(){this.list=[],this.lookup=new Set}add(t){this.lookup.has(t)||(this.list.push(t),this.lookup.add(t))}remove(t){this.lookup.has(t)&&(this.list=this.list.filter(n=>n!==t),this.lookup.delete(t))}shift(){const t=this.list.shift();if(t)return this.lookup.delete(t),t}isEmpty(){return this.list.length===0}isAdded(t){return this.lookup.has(t)}process(t){let n;const s=new Map;for(n=this.shift();n;){const r=s.get(n)||0;if(r>we)throw new Error(`Web component processed too many times this task, max allowed is: ${we}`);t(n),s.set(n,r+1),n=this.shift()}}}const Mt=(e,t=document.body,n)=>{let s=document.querySelector(e);return s||(s=n?n():document.createElement(e),t.insertBefore(s,t.firstChild))},kt=()=>{const e=document.createElement("meta");return e.setAttribute("name","ui5-shared-resources"),e.setAttribute("content",""),e},xt=()=>typeof document>"u"?null:Mt('meta[name="ui5-shared-resources"]',document.head,kt),V=(e,t)=>{const n=e.split(".");let s=xt();if(!s)return t;for(let r=0;r<n.length;r++){const o=n[r],a=r===n.length-1;Object.prototype.hasOwnProperty.call(s,o)||(s[o]=a?t:{}),s=s[o]}return s},Ft={version:"1.20.1",major:1,minor:20,patch:1,suffix:"",isNext:!1,buildTime:1702061780};let D,Bt="";const G=new Map,v=V("Runtimes",[]),zt=()=>{if(D===void 0){D=v.length;const e=Ft;v.push({...e,alias:Bt,description:`Runtime ${D} - ver ${e.version}`})}},b=()=>D,qe=(e,t)=>{const n=`${e},${t}`;if(G.has(n))return G.get(n);const s=v[e],r=v[t];if(!s||!r)throw new Error("Invalid runtime index supplied");if(s.isNext||r.isNext)return s.buildTime-r.buildTime;const o=s.major-r.major;if(o)return o;const a=s.minor-r.minor;if(a)return a;const i=s.patch-r.patch;if(i)return i;const y=new Intl.Collator(void 0,{numeric:!0,sensitivity:"base"}).compare(s.suffix,r.suffix);return G.set(n,y),y},jt=()=>v,Ge=V("Tags",new Map),ie=new Set;let U=new Map,K;const Ke=-1,cs=e=>{ie.add(e),Ge.set(e,b())},us=e=>ie.has(e),Vt=()=>[...ie.values()],ls=e=>{let t=Ge.get(e);t===void 0&&(t=Ke),U.has(t)||U.set(t,new Set),U.get(t).add(e),K||(K=setTimeout(()=>{Nt(),U=new Map,K=void 0},1e3))},Nt=()=>{const e=jt(),t=b(),n=e[t];let s="Multiple UI5 Web Components instances detected.";e.length>1&&(s=`${s}
|
|
2
|
-
Loading order (versions before 1.1.0 not listed): ${e.map(r=>`
|
|
3
|
-
${r.description}`).join("")}`),[...U.keys()].forEach(r=>{let o,a;r===Ke?(o=1,a={description:"Older unknown runtime"}):(o=qe(t,r),a=e[r]);let i;o>0?i="an older":o<0?i="a newer":i="the same",s=`${s}
|
|
4
|
-
|
|
5
|
-
"${n.description}" failed to define ${U.get(r).size} tag(s) as they were defined by a runtime of ${i} version "${a.description}": ${[...U.get(r)].sort().join(", ")}.`,o>0?s=`${s}
|
|
6
|
-
WARNING! If your code uses features of the above web components, unavailable in ${a.description}, it might not work as expected!`:s=`${s}
|
|
7
|
-
Since the above web components were defined by the same or newer version runtime, they should be compatible with your code.`}),s=`${s}
|
|
8
|
-
|
|
9
|
-
To prevent other runtimes from defining tags that you use, consider using scoping or have third-party libraries use scoping: https://github.com/SAP/ui5-webcomponents/blob/main/docs/2-advanced/03-scoping.md.`,console.warn(s)},Je=new Set,fs=e=>{Je.add(e)},Wt=e=>Je.has(e),ce=new Set,Zt=new R,E=new Dt;let w,M,J,I;const Ht=async e=>{E.add(e),await Gt()},qt=e=>{Zt.fireEvent("beforeComponentRender",e),ce.add(e),e._render()},ds=e=>{E.remove(e),ce.delete(e)},Gt=async()=>{I||(I=new Promise(e=>{window.requestAnimationFrame(()=>{E.process(qt),I=null,e(),J||(J=setTimeout(()=>{J=void 0,E.isEmpty()&&Yt()},200))})})),await I},Kt=()=>w||(w=new Promise(e=>{M=e,window.requestAnimationFrame(()=>{E.isEmpty()&&(w=void 0,e())})}),w),Jt=()=>{const e=Vt().map(t=>customElements.whenDefined(t));return Promise.all(e)},Xt=async()=>{await Jt(),await Kt()},Yt=()=>{E.isEmpty()&&M&&(M(),M=void 0,w=void 0)},Xe=async e=>{ce.forEach(t=>{const n=t.constructor,s=n.getMetadata().getTag(),r=Wt(n),o=n.getMetadata().isLanguageAware(),a=n.getMetadata().isThemeAware();(!e||e.tag===s||e.rtlAware&&r||e.languageAware&&o||e.themeAware&&a)&&Ht(t)}),await Xt()};let T,re;const Qt=()=>(T===void 0&&(T=Ct()),T),hs=async e=>{T!==e&&(T=e,await Ot(e),await Xe({languageAware:!0}))},en=e=>{re=e},tn=()=>(re===void 0&&en(vt()),re),nn=/^((?:[A-Z]{2,3}(?:-[A-Z]{3}){0,3})|[A-Z]{4}|[A-Z]{5,8})(?:-([A-Z]{4}))?(?:-([A-Z]{2}|[0-9]{3}))?((?:-[0-9A-Z]{5,8}|-[0-9][0-9A-Z]{3})*)((?:-[0-9A-WYZ](?:-[0-9A-Z]{2,8})+)*)(?:-(X(?:-[0-9A-Z]{1,8})+))?$/i;class Ye{constructor(t){const n=nn.exec(t.replace(/_/g,"-"));if(n===null)throw new Error(`The given language ${t} does not adhere to BCP-47.`);this.sLocaleId=t,this.sLanguage=n[1]||j,this.sScript=n[2]||"",this.sRegion=n[3]||"",this.sVariant=n[4]&&n[4].slice(1)||null,this.sExtension=n[5]&&n[5].slice(1)||null,this.sPrivateUse=n[6]||null,this.sLanguage&&(this.sLanguage=this.sLanguage.toLowerCase()),this.sScript&&(this.sScript=this.sScript.toLowerCase().replace(/^[a-z]/,s=>s.toUpperCase())),this.sRegion&&(this.sRegion=this.sRegion.toUpperCase())}getLanguage(){return this.sLanguage}getScript(){return this.sScript}getRegion(){return this.sRegion}getVariant(){return this.sVariant}getVariantSubtags(){return this.sVariant?this.sVariant.split("-"):[]}getExtension(){return this.sExtension}getExtensionSubtags(){return this.sExtension?this.sExtension.slice(2).split("-"):[]}getPrivateUse(){return this.sPrivateUse}getPrivateUseSubtags(){return this.sPrivateUse?this.sPrivateUse.slice(2).split("-"):[]}hasPrivateUseSubtag(t){return this.getPrivateUseSubtags().indexOf(t)>=0}toString(){const t=[this.sLanguage];return this.sScript&&t.push(this.sScript),this.sRegion&&t.push(this.sRegion),this.sVariant&&t.push(this.sVariant),this.sExtension&&t.push(this.sExtension),this.sPrivateUse&&t.push(this.sPrivateUse),t.join("-")}}const X=new Map,Qe=e=>(X.has(e)||X.set(e,new Ye(e)),X.get(e)),Se=e=>{try{if(e&&typeof e=="string")return Qe(e)}catch{}return new Ye(h)},oe=e=>{if(e)return Se(e);const t=Qt();return t?Qe(t):Se(mt())},sn=/^((?:[A-Z]{2,3}(?:-[A-Z]{3}){0,3})|[A-Z]{4}|[A-Z]{5,8})(?:-([A-Z]{4}))?(?:-([A-Z]{2}|[0-9]{3}))?((?:-[0-9A-Z]{5,8}|-[0-9][0-9A-Z]{3})*)((?:-[0-9A-WYZ](?:-[0-9A-Z]{2,8})+)*)(?:-(X(?:-[0-9A-Z]{1,8})+))?$/i,_e=/(?:^|-)(saptrc|sappsd)(?:-|$)/i,rn={he:"iw",yi:"ji",nb:"no",sr:"sh"},on=e=>{let t;if(!e)return h;if(typeof e=="string"&&(t=sn.exec(e.replace(/_/g,"-")))){let n=t[1].toLowerCase(),s=t[3]?t[3].toUpperCase():void 0;const r=t[2]?t[2].toLowerCase():void 0,o=t[4]?t[4].slice(1):void 0,a=t[6];return n=rn[n]||n,a&&(t=_e.exec(a))||o&&(t=_e.exec(o))?`en_US_${t[1].toLowerCase()}`:(n==="zh"&&!s&&(r==="hans"?s="CN":r==="hant"&&(s="TW")),n+(s?"_"+s+(o?"_"+o.replace("-","_"):""):""))}return h},an=e=>{if(!e)return h;if(e==="zh_HK")return"zh_TW";const t=e.lastIndexOf("_");return t>=0?e.slice(0,t):e!==h?h:""},Ae=new Set,Ee=new Set,ue=new Map,Y=new Map,le=new Map,ps=(e,t,n)=>{const s=`${e}/${t}`;le.set(s,n)},be=(e,t)=>{ue.set(e,t)},gs=e=>ue.get(e),et=(e,t)=>{const n=`${e}/${t}`;return le.has(n)},cn=(e,t)=>{const n=`${e}/${t}`,s=le.get(n);return s&&!Y.get(n)&&Y.set(n,s(t)),Y.get(n)},un=e=>{Ae.has(e)||(console.warn(`[${e}]: Message bundle assets are not configured. Falling back to English texts.`,` Add \`import "${e}/dist/Assets.js"\` in your bundle and make sure your build tool supports dynamic imports and JSON imports. See section "Assets" in the documentation for more information.`),Ae.add(e))},Te=(e,t)=>t!==j&&!et(e,t),ln=async e=>{const t=oe().getLanguage(),n=oe().getRegion();let s=t+(n?`-${n}`:"");if(Te(e,s))for(s=on(s);Te(e,s);)s=an(s);const r=tn();if(s===j&&!r){be(e,null);return}if(!et(e,s)){un(e);return}try{const o=await cn(e,s);be(e,o)}catch(o){const a=o;Ee.has(a.message)||(Ee.add(a.message),console.error(a.message))}};He(e=>{const t=[...ue.keys()];return Promise.all(t.map(ln))});const fn=new Map,F=new Map,Q=new Map,Ce=new Set;let ve=!1;const dn={iw:"he",ji:"yi",in:"id"},Le=e=>{ve||(console.warn(`[LocaleData] Supported locale "${e}" not configured, import the "Assets.js" module from the webcomponents package you are using.`),ve=!0)},hn=(e,t,n)=>{e=e&&dn[e]||e,e==="no"&&(e="nb"),e==="zh"&&!t&&(n==="Hans"?t="CN":n==="Hant"&&(t="TW")),(e==="sh"||e==="sr"&&n==="Latn")&&(e="sr",t="Latn");let s=`${e}_${t}`;return ge.includes(s)||(s=e,ge.includes(s))?F.has(s)?s:(Le(s),h):h},Pe=(e,t)=>{fn.set(e,t)},pn=e=>{if(!Q.get(e)){const t=F.get(e);if(!t)throw new Error(`CLDR data for locale ${e} is not loaded!`);Q.set(e,t(e))}return Q.get(e)},gn=async(e,t,n)=>{const s=hn(e,t,n),r=A("OpenUI5Support");if(r){const o=r.getLocaleDataObject();if(o){Pe(s,o);return}}try{const o=await pn(s);Pe(s,o)}catch(o){const a=o;Ce.has(a.message)||(Ce.add(a.message),console.error(a.message))}},mn=(e,t)=>{F.set(e,t)};mn("en",async()=>(await fetch("https://sdk.openui5.org/1.103.0/resources/sap/ui/core/cldr/en.json")).json());He(()=>{const e=oe();return gn(e.getLanguage(),e.getRegion(),e.getScript())});const Un=(e,t)=>{const n=document.createElement("style");return n.type="text/css",t&&Object.entries(t).forEach(s=>n.setAttribute(...s)),n.textContent=e,document.head.appendChild(n),n},yn=(e,t)=>{const n=document.createElement("link");return n.type="text/css",n.rel="stylesheet",t&&Object.entries(t).forEach(s=>n.setAttribute(...s)),n.href=e,document.head.appendChild(n),new Promise(s=>{n.addEventListener("load",s),n.addEventListener("error",s)})},l=typeof document>"u",c={get userAgent(){return l?"":navigator.userAgent},get touch(){return l?!1:"ontouchstart"in window||navigator.maxTouchPoints>0},get ie(){return l?!1:/(msie|trident)/i.test(c.userAgent)},get chrome(){return l?!1:!c.ie&&/(Chrome|CriOS)/.test(c.userAgent)},get firefox(){return l?!1:/Firefox/.test(c.userAgent)},get safari(){return l?!1:!c.ie&&!c.chrome&&/(Version|PhantomJS)\/(\d+\.\d+).*Safari/.test(c.userAgent)},get webkit(){return l?!1:!c.ie&&/webkit/.test(c.userAgent)},get windows(){return l?!1:navigator.platform.indexOf("Win")!==-1},get macOS(){return l?!1:!!navigator.userAgent.match(/Macintosh|Mac OS X/i)},get iOS(){return l?!1:!!navigator.platform.match(/iPhone|iPad|iPod/)||!!(c.userAgent.match(/Mac/)&&"ontouchend"in document)},get android(){return l?!1:!c.windows&&/Android/.test(c.userAgent)},get androidPhone(){return l?!1:c.android&&/(?=android)(?=.*mobile)/i.test(c.userAgent)},get ipad(){return l?!1:/ipad/i.test(c.userAgent)||/Macintosh/i.test(c.userAgent)&&"ontouchend"in document}},N=()=>c.safari,W=(e,t)=>t?`${e}|${t}`:e,Re=e=>e===void 0?!0:qe(b(),parseInt(e))===1,Z=(e,t,n="",s)=>{const r=typeof e=="string"?e:e.content,o=b();if(document.adoptedStyleSheets&&!N()){const a=new CSSStyleSheet;a.replaceSync(r),a._ui5StyleId=W(t,n),s&&(a._ui5RuntimeIndex=o,a._ui5Theme=s),document.adoptedStyleSheets=[...document.adoptedStyleSheets,a]}else{const a={};a[t]=n,s&&(a["data-ui5-runtime-index"]=o,a["data-ui5-theme"]=s),Un(r,a)}},wn=(e,t,n="",s)=>{const r=typeof e=="string"?e:e.content,o=b();if(document.adoptedStyleSheets&&!N()){const a=document.adoptedStyleSheets.find(i=>i._ui5StyleId===W(t,n));if(!a)return;if(!s)a.replaceSync(r||"");else{const i=a._ui5RuntimeIndex;(a._ui5Theme!==s||Re(i))&&(a.replaceSync(r||""),a._ui5RuntimeIndex=String(o),a._ui5Theme=s)}}else{const a=document.querySelector(`head>style[${t}="${n}"]`);if(!a)return;if(!s)a.textContent=r||"";else{const i=a.getAttribute("data-ui5-runtime-index")||void 0;(a.getAttribute("data-ui5-theme")!==s||Re(i))&&(a.textContent=r||"",a.setAttribute("data-ui5-runtime-index",String(o)),a.setAttribute("data-ui5-theme",s))}}},H=(e,t="")=>{const n=document.querySelector(`head>style[${e}="${t}"]`);return document.adoptedStyleSheets&&!N()?!!n||!!document.adoptedStyleSheets.find(s=>s._ui5StyleId===W(e,t)):!!n},Sn=(e,t="")=>{var n;if(document.adoptedStyleSheets&&!N())document.adoptedStyleSheets=document.adoptedStyleSheets.filter(s=>s._ui5StyleId!==W(e,t));else{const s=document.querySelector(`head > style[${e}="${t}"]`);(n=s==null?void 0:s.parentElement)==null||n.removeChild(s)}},tt=(e,t,n="",s)=>{H(t,n)?wn(e,t,n,s):Z(e,t,n,s)},_n=(e,t)=>{if(e===void 0)return t;if(t===void 0)return e;const n=typeof t=="string"?t:t.content;return typeof e=="string"?`${e} ${n}`:{content:`${e.content} ${n}`,packageName:e.packageName,fileName:e.fileName}},nt=new R,st="themeRegistered",An=e=>{nt.attachEvent(st,e)},En=e=>nt.fireEvent(st,e),$e=new Map,rt=new Map,bn=new Map,ot=new Set,B=new Set,ms=(e,t,n)=>{rt.set(`${e}/${t}`,n),ot.add(e),B.add(t),En(t)},at=async(e,t,n)=>{const s=`${e}_${t}_${n||""}`,r=$e.get(s);if(r!==void 0)return r;if(!B.has(t)){const f=[...B.values()].join(", ");return console.warn(`You have requested a non-registered theme ${t} - falling back to ${k}. Registered themes are: ${f}`),ee(e,k)}const[o,a]=await Promise.all([ee(e,t),n?ee(e,n,!0):void 0]),i=_n(o,a);return i&&$e.set(s,i),i},ee=async(e,t,n=!1)=>{const r=(n?bn:rt).get(`${e}/${t}`);if(!r){n||console.error(`Theme [${t}] not registered for package [${e}]`);return}let o;try{o=await r(t)}catch(i){console.error(e,i.message);return}return o._||o},it=()=>ot,Tn=e=>B.has(e);var z;(function(e){e["SAP-icons"]="SAP-icons-v4",e.horizon="SAP-icons-v5",e["SAP-icons-TNT"]="tnt",e.BusinessSuiteInAppSymbols="business-suite"})(z||(z={}));const ct=e=>z[e]?z[e]:e,S=new Set,Cn=()=>{let e=document.querySelector(".sapThemeMetaData-Base-baseLib")||document.querySelector(".sapThemeMetaData-UI5-sap-ui-core");if(e)return getComputedStyle(e).backgroundImage;e=document.createElement("span"),e.style.display="none",e.classList.add("sapThemeMetaData-Base-baseLib"),document.body.appendChild(e);let t=getComputedStyle(e).backgroundImage;return t==="none"&&(e.classList.add("sapThemeMetaData-UI5-sap-ui-core"),t=getComputedStyle(e).backgroundImage),document.body.removeChild(e),t},vn=e=>{const t=/\(["']?data:text\/plain;utf-8,(.*?)['"]?\)$/i.exec(e);if(t&&t.length>=2){let n=t[1];if(n=n.replace(/\\"/g,'"'),n.charAt(0)!=="{"&&n.charAt(n.length-1)!=="}")try{n=decodeURIComponent(n)}catch{S.has("decode")||(console.warn("Malformed theme metadata string, unable to decodeURIComponent"),S.add("decode"));return}try{return JSON.parse(n)}catch{S.has("parse")||(console.warn("Malformed theme metadata string, unable to parse JSON"),S.add("parse"))}}},Ln=e=>{let t,n;try{t=e.Path.match(/\.([^.]+)\.css_variables$/)[1],n=e.Extends[0]}catch{S.has("object")||(console.warn("Malformed theme metadata Object",e),S.add("object"));return}return{themeName:t,baseThemeName:n}},ae=()=>{const e=Cn();if(!e||e==="none")return;const t=vn(e);if(t)return Ln(t)},Pn=new R,Rn="themeLoaded",$n=e=>Pn.fireEvent(Rn,e);let C;const ut=()=>(C===void 0&&(C=Tt()),C),Us=e=>{if(C!==e){if(C=e,!Ne(e)){console.warn(`The ${e} is not valid. Check the allowed origins as suggested in the "setThemeRoot" description.`);return}return lt($())}},In=e=>`${ut()}Base/baseLib/${e}/css_variables.css`,lt=async e=>{const t=document.querySelector(`[sap-ui-webcomponents-theme="${e}"]`);t&&document.head.removeChild(t),await yn(In(e),{"sap-ui-webcomponents-theme":e})},L="@ui5/webcomponents-theming",On=()=>it().has(L),Dn=async e=>{if(!On())return;const t=await at(L,e);t&&tt(t,"data-ui5-theme-properties",L,e)},Mn=()=>{Sn("data-ui5-theme-properties",L)},kn=async(e,t)=>{const s=[...it()].map(async r=>{if(r===L)return;const o=await at(r,e,t);o&&tt(o,`data-ui5-component-properties-${b()}`,r)});return Promise.all(s)},xn=async e=>{var s;const t=ae();if(t)return t;const n=A("OpenUI5Support");if(n&&n.isOpenUI5Detected()){if(n.cssVariablesLoaded())return{themeName:(s=n.getConfigurationSettingsObject())==null?void 0:s.theme,baseThemeName:""}}else if(ut())return await lt(e),ae()},fe=async e=>{const t=await xn(e);!t||e!==t.themeName?await Dn(e):Mn();const n=Tn(e)?e:t&&t.baseThemeName;await kn(n||k,t&&t.themeName===e?e:void 0),$n(e)};let _;const $=()=>(_===void 0&&(_=bt()),_),ys=async e=>{_!==e&&(_=e,await fe(_),await Xe({themeAware:!0}))},Fn=()=>{var t,n;const e=$();return Bn(e)?!e.startsWith("sap_horizon"):!((n=(t=ae())==null?void 0:t.baseThemeName)!=null&&n.startsWith("sap_horizon"))},Bn=e=>gt.includes(e);var m;(function(e){e.SAPIconsV4="SAP-icons-v4",e.SAPIconsV5="SAP-icons-v5",e.SAPIconsTNTV2="tnt-v2",e.SAPIconsTNTV3="tnt-v3",e.SAPBSIconsV1="business-suite-v1",e.SAPBSIconsV2="business-suite-v2"})(m||(m={}));const d=new Map;d.set("SAP-icons",{legacy:m.SAPIconsV4,sap_horizon:m.SAPIconsV5});d.set("tnt",{legacy:m.SAPIconsTNTV2,sap_horizon:m.SAPIconsTNTV3});d.set("business-suite",{legacy:m.SAPBSIconsV1,sap_horizon:m.SAPBSIconsV2});const zn=(e,t)=>{if(d.has(e)){d.set(e,{...t,...d.get(e)});return}d.set(e,t)},Ie=e=>{const t=Fn()?"legacy":"sap_horizon";return d.has(e)?d.get(e)[t]:e},jn=new Map,Vn=e=>jn.get(e),ft=e=>{const t=Vn($());return!e&&t?ct(t):Ie(e||"SAP-icons")},Nn="legacy",Oe=new Map,de=V("SVGIcons.registry",new Map),te=V("SVGIcons.promises",new Map),De="ICON_NOT_FOUND",Wn=async e=>{if(!te.has(e)){if(!Oe.has(e))throw new Error(`No loader registered for the ${e} icons collection. Probably you forgot to import the "AllIcons.js" module for the respective package.`);const t=Oe.get(e);te.set(e,t(e))}return te.get(e)},Me=e=>{Object.keys(e.data).forEach(t=>{const n=e.data[t];Zn(t,{pathData:n.path||n.paths,ltr:n.ltr,accData:n.acc,collection:e.collection,packageName:e.packageName})})},Zn=(e,t)=>{const n=`${t.collection}/${e}`;de.set(n,{pathData:t.pathData,ltr:t.ltr,accData:t.accData,packageName:t.packageName,customTemplate:t.customTemplate,viewBox:t.viewBox,collection:t.collection})},Hn=e=>{e.startsWith("sap-icon://")&&(e=e.replace("sap-icon://",""));let t;return[e,t]=e.split("/").reverse(),e=e.replace("icon-",""),t&&(t=ct(t)),{name:e,collection:t}},ne=async e=>{const{name:t,collection:n}=Hn(e);let s=De;try{s=await Wn(ft(n))}catch(o){console.error(o.message)}if(s===De)return s;const r=ke(n,t);return r||(Array.isArray(s)?s.forEach(o=>{Me(o),zn(n,{[o.themeFamily||Nn]:o.collection})}):Me(s),ke(n,t))},ke=(e,t)=>{const n=`${ft(e)}/${t}`;return de.get(n)},ws=async()=>(await ne("edit"),await ne("tnt/arrow"),await ne("business-suite/3d"),Array.from(de.keys())),qn=()=>new Promise(e=>{document.body?e():document.addEventListener("DOMContentLoaded",()=>{e()})}),Gn={packageName:"@ui5/webcomponents-base",fileName:"FontFace.css",content:`@font-face{font-family:"72";font-style:normal;font-weight:400;src:url(https://sdk.openui5.org/resources/sap/ui/core/themes/sap_horizon/fonts/72-Regular.woff2?ui5-webcomponents) format("woff2"),local("72");unicode-range:U+00,U+0D,U+20-7E,U+A0-FF,U+131,U+152-153,U+161,U+178,U+17D-17E,U+192,U+237,U+2C6,U+2DC,U+3BC,U+1E9E,U+2013-2014,U+2018-201A,U+201C-201E,U+2020-2022,U+2026,U+2030,U+2039-203A,U+2044,U+20AC,U+2122}@font-face{font-family:"72full";font-style:normal;font-weight:400;src:url(https://sdk.openui5.org/resources/sap/ui/core/themes/sap_horizon/fonts/72-Regular-full.woff2?ui5-webcomponents) format("woff2"),local('72-full')}@font-face{font-family:"72";font-style:normal;font-weight:700;src:url(https://sdk.openui5.org/resources/sap/ui/core/themes/sap_horizon/fonts/72-Bold.woff2?ui5-webcomponents) format("woff2"),local('72-Bold');unicode-range:U+00,U+0D,U+20-7E,U+A0-FF,U+131,U+152-153,U+161,U+178,U+17D-17E,U+192,U+237,U+2C6,U+2DC,U+3BC,U+1E9E,U+2013-2014,U+2018-201A,U+201C-201E,U+2020-2022,U+2026,U+2030,U+2039-203A,U+2044,U+20AC,U+2122}@font-face{font-family:"72full";font-style:normal;font-weight:700;src:url(https://sdk.openui5.org/resources/sap/ui/core/themes/sap_horizon/fonts/72-Bold-full.woff2?ui5-webcomponents) format("woff2")}@font-face{font-family:'72-Bold';font-style:normal;src:url(https://sdk.openui5.org/resources/sap/ui/core/themes/sap_horizon/fonts/72-Bold.woff2?ui5-webcomponents) format("woff2"),local('72-Bold');unicode-range:U+00,U+0D,U+20-7E,U+A0-FF,U+131,U+152-153,U+161,U+178,U+17D-17E,U+192,U+237,U+2C6,U+2DC,U+3BC,U+1E9E,U+2013-2014,U+2018-201A,U+201C-201E,U+2020-2022,U+2026,U+2030,U+2039-203A,U+2044,U+20AC,U+2122}@font-face{font-family:'72-Boldfull';font-style:normal;src:url(https://sdk.openui5.org/resources/sap/ui/core/themes/sap_horizon/fonts/72-Bold-full.woff2?ui5-webcomponents) format("woff2")}@font-face{font-family:'72-Light';font-style:normal;src:url(https://sdk.openui5.org/resources/sap/ui/core/themes/sap_horizon/fonts/72-Light.woff2?ui5-webcomponents) format("woff2"),local('72-Light');unicode-range:U+00,U+0D,U+20-7E,U+A0-FF,U+131,U+152-153,U+161,U+178,U+17D-17E,U+192,U+237,U+2C6,U+2DC,U+3BC,U+1E9E,U+2013-2014,U+2018-201A,U+201C-201E,U+2020-2022,U+2026,U+2030,U+2039-203A,U+2044,U+20AC,U+2122}@font-face{font-family:'72-Lightfull';font-style:normal;src:url(https://sdk.openui5.org/resources/sap/ui/core/themes/sap_horizon/fonts/72-Light-full.woff2?ui5-webcomponents) format("woff2")}@font-face{font-family:'72Mono';src:url(https://sdk.openui5.org/resources/sap/ui/core/themes/sap_horizon/fonts/72Mono-Regular.woff2?ui5-webcomponents) format('woff2'),local('72Mono');unicode-range:U+00,U+0D,U+20-7E,U+A0-FF,U+131,U+152-153,U+161,U+178,U+17D-17E,U+192,U+237,U+2C6,U+2DC,U+3BC,U+1E9E,U+2013-2014,U+2018-201A,U+201C-201E,U+2020-2022,U+2026,U+2030,U+2039-203A,U+2044,U+20AC,U+2122}@font-face{font-family:'72Monofull';src:url(https://sdk.openui5.org/resources/sap/ui/core/themes/sap_horizon/fonts/72Mono-Regular-full.woff2?ui5-webcomponents) format('woff2')}@font-face{font-family:'72Mono-Bold';src:url(https://sdk.openui5.org/resources/sap/ui/core/themes/sap_horizon/fonts/72Mono-Bold.woff2?ui5-webcomponents) format('woff2'),local('72Mono-Bold');unicode-range:U+00,U+0D,U+20-7E,U+A0-FF,U+131,U+152-153,U+161,U+178,U+17D-17E,U+192,U+237,U+2C6,U+2DC,U+3BC,U+1E9E,U+2013-2014,U+2018-201A,U+201C-201E,U+2020-2022,U+2026,U+2030,U+2039-203A,U+2044,U+20AC,U+2122}@font-face{font-family:'72Mono-Boldfull';src:url(https://sdk.openui5.org/resources/sap/ui/core/themes/sap_horizon/fonts/72Mono-Bold-full.woff2?ui5-webcomponents) format('woff2')}@font-face{font-family:"72Black";font-style:bold;font-weight:900;src:url(https://sdk.openui5.org/resources/sap/ui/core/themes/sap_horizon/fonts/72-Black.woff2?ui5-webcomponents) format("woff2"),local('72Black');unicode-range:U+00,U+0D,U+20-7E,U+A0-FF,U+131,U+152-153,U+161,U+178,U+17D-17E,U+192,U+237,U+2C6,U+2DC,U+3BC,U+1E9E,U+2013-2014,U+2018-201A,U+201C-201E,U+2020-2022,U+2026,U+2030,U+2039-203A,U+2044,U+20AC,U+2122}@font-face{font-family:'72Blackfull';src:url(https://sdk.openui5.org/resources/sap/ui/core/themes/sap_horizon/fonts/72-Black-full.woff2?ui5-webcomponents) format('woff2')}@font-face{font-family:"72-SemiboldDuplex";src:url(https://sdk.openui5.org/resources/sap/ui/core/themes/sap_horizon/fonts/72-SemiboldDuplex.woff2?ui5-webcomponents) format("woff2"),local('72-SemiboldDuplex');unicode-range:U+00,U+0D,U+20-7E,U+A0-FF,U+131,U+152-153,U+161,U+178,U+17D-17E,U+192,U+237,U+2C6,U+2DC,U+3BC,U+1E9E,U+2013-2014,U+2018-201A,U+201C-201E,U+2020-2022,U+2026,U+2030,U+2039-203A,U+2044,U+20AC,U+2122}`},Kn={packageName:"@ui5/webcomponents-base",fileName:"OverrideFontFace.css",content:"@font-face{font-family:'72override';unicode-range:U+0102-0103,U+01A0-01A1,U+01AF-01B0,U+1EA0-1EB7,U+1EB8-1EC7,U+1EC8-1ECB,U+1ECC-1EE3,U+1EE4-1EF1,U+1EF4-1EF7;src:local('Arial'),local('Helvetica'),local('sans-serif')}"},Jn=()=>{const e=A("OpenUI5Support");(!e||!e.isOpenUI5Detected())&&Xn(),Yn()},Xn=()=>{H("data-ui5-font-face")||Z(Gn,"data-ui5-font-face")},Yn=()=>{H("data-ui5-font-face-override")||Z(Kn,"data-ui5-font-face-override")},Qn={packageName:"@ui5/webcomponents-base",fileName:"SystemCSSVars.css",content:":root{--_ui5_content_density:cozy}.sapUiSizeCompact,.ui5-content-density-compact,[data-ui5-compact-size]{--_ui5_content_density:compact}[dir=rtl]{--_ui5_dir:rtl}[dir=ltr]{--_ui5_dir:ltr}"},es=()=>{H("data-ui5-system-css-vars")||Z(Qn,"data-ui5-system-css-vars")};let he=!1,O;const dt=new R,Ss=e=>{if(!he){dt.attachEvent("boot",e);return}e()},_s=async()=>{if(O!==void 0)return O;const e=async t=>{if(typeof document>"u"){t();return}An(ts),zt();const n=A("OpenUI5Support"),s=n?n.isOpenUI5Detected():!1,r=A("F6Navigation");n&&await n.init(),r&&!s&&r.init(),await qn(),await fe($()),n&&n.attachListeners(),Jn(),es(),t(),he=!0,await dt.fireEventAsync("boot")};return O=new Promise(e),O},ts=e=>{const t=$();he&&e===t&&fe(t)};export{as as A,is as B,hs as C,$ as D,R as E,ut as F,Us as G,b as H,ps as I,ws as _,Ss as a,_s as b,V as c,ns as d,Xe as e,ln as f,gs as g,A as h,N as i,rs as j,Qt as k,mt as l,Xt as m,os as n,qt as o,ds as p,fs as q,ms as r,ys as s,Mt as t,us as u,ls as v,cs as w,je as x,Ht as y,ss as z};
|
|
@@ -1,50 +0,0 @@
|
|
|
1
|
-
import{f as ge,g as me,c as mt,d as Bt,s as ut,e as Ft,E as k,h as X,i as ye,j as ve,k as zt,l as _e,m as Ut,n as Ae,o as we,p as $e,q as Ce,t as be,b as Se,u as Ee,v as Te,w as Me,x as xe,y as De,r as $,z as Le,A as Ie,B as jt,C as Pe,D as Ne,F as Re,G as Oe,H as ke,_ as He,I as Ve}from"./Boot-7124a68e.js";const Be=/('')|'([^']+(?:''[^']*)*)(?:'|$)|\{([0-9]+(?:\s*,[^{}]*)?)\}|[{}]/g,Fe=(s,t)=>(t=t||[],s.replace(Be,(e,i,n,r,o)=>{if(i)return"'";if(n)return n.replace(/''/g,"'");if(r){const c=typeof r=="string"?parseInt(r):r;return String(t[c])}throw new Error(`[i18n]: pattern syntax error at pos ${o}`)})),Q=new Map;class ze{constructor(t){this.packageName=t}getText(t,...e){if(typeof t=="string"&&(t={key:t,defaultText:t}),!t||!t.key)return"";const i=me(this.packageName);i&&!i[t.key]&&console.warn(`Key ${t.key} not found in the i18n bundle, the default text will be used`);const n=i&&i[t.key]?i[t.key]:t.defaultText||t.key;return Fe(n,e)}}const Ue=s=>{if(Q.has(s))return Q.get(s);const t=new ze(s);return Q.set(s,t),t},je=async s=>(await ge(s),Ue(s)),We=mt("PopupUtilsData",{currentZIndex:100}),At=()=>We.currentZIndex;class v{static isAtLeastVersion116(){const e=window.sap.ui.version.split(".");return!e||e.length<2?!1:parseInt(e[0])>1||parseInt(e[1])>=116}static isOpenUI5Detected(){var t,e;return typeof((e=(t=window.sap)==null?void 0:t.ui)==null?void 0:e.require)=="function"}static init(){return v.isOpenUI5Detected()?new Promise(t=>{window.sap.ui.require(["sap/ui/core/Core"],async e=>{const i=()=>{let n=["sap/ui/core/Popup","sap/ui/core/LocaleData"];v.isAtLeastVersion116()&&(n=[...n,"sap/base/i18n/Formatting","sap/base/i18n/Localization","sap/ui/core/ControlBehavior","sap/ui/core/Theming","sap/ui/core/date/CalendarUtils"]),window.sap.ui.require(n,r=>{r.setInitialZIndex(At()),t()})};v.isAtLeastVersion116()?(await e.ready(),i()):e.attachInit(i)})}):Promise.resolve()}static getConfigurationSettingsObject(){var n,r;if(!v.isOpenUI5Detected())return{};if(v.isAtLeastVersion116()){const o=window.sap.ui.require("sap/ui/core/ControlBehavior"),c=window.sap.ui.require("sap/base/i18n/Localization"),a=window.sap.ui.require("sap/ui/core/Theming"),l=window.sap.ui.require("sap/base/i18n/Formatting"),h=window.sap.ui.require("sap/ui/core/date/CalendarUtils");return{animationMode:o.getAnimationMode(),language:c.getLanguage(),theme:a.getTheme(),themeRoot:a.getThemeRoot(),rtl:c.getRTL(),timezone:c.getTimezone(),calendarType:l.getCalendarType(),formatSettings:{firstDayOfWeek:h.getWeekConfigurationValues().firstDayOfWeek,legacyDateCalendarCustomizing:((n=l.getCustomIslamicCalendarData)==null?void 0:n.call(l))??((r=l.getLegacyDateCalendarCustomizing)==null?void 0:r.call(l))}}}const e=window.sap.ui.require("sap/ui/core/Core").getConfiguration(),i=window.sap.ui.require("sap/ui/core/LocaleData");return{animationMode:e.getAnimationMode(),language:e.getLanguage(),theme:e.getTheme(),themeRoot:e.getThemeRoot(),rtl:e.getRTL(),timezone:e.getTimezone(),calendarType:e.getCalendarType(),formatSettings:{firstDayOfWeek:i?i.getInstance(e.getLocale()).getFirstDayOfWeek():void 0,legacyDateCalendarCustomizing:e.getFormatSettings().getLegacyDateCalendarCustomizing()}}}static getLocaleDataObject(){if(!v.isOpenUI5Detected())return;const t=window.sap.ui.require("sap/ui/core/LocaleData");if(v.isAtLeastVersion116()){const n=window.sap.ui.require("sap/base/i18n/Localization");return t.getInstance(n.getLanguageTag())._get()}const i=window.sap.ui.require("sap/ui/core/Core").getConfiguration();return t.getInstance(i.getLocale())._get()}static _listenForThemeChange(){if(v.isAtLeastVersion116()){const t=window.sap.ui.require("sap/ui/core/Theming");t.attachApplied(()=>{ut(t.getTheme())})}else{const t=window.sap.ui.require("sap/ui/core/Core"),e=t.getConfiguration();t.attachThemeChanged(()=>{ut(e.getTheme())})}}static attachListeners(){v.isOpenUI5Detected()&&v._listenForThemeChange()}static cssVariablesLoaded(){if(!v.isOpenUI5Detected())return;const t=[...document.head.children].find(e=>e.id==="sap-ui-theme-sap.ui.core");return t?!!t.href.match(/\/css(-|_)variables\.css/):!1}static getNextZIndex(){if(!v.isOpenUI5Detected())return;const t=window.sap.ui.require("sap/ui/core/Popup");return t||console.warn(`The OpenUI5Support feature hasn't been initialized properly. Make sure you import the "@ui5/webcomponents-base/dist/features/OpenUI5Support.js" module before all components' modules.`),t.getNextZIndex()}static setInitialZIndex(){if(!v.isOpenUI5Detected())return;window.sap.ui.require("sap/ui/core/Popup").setInitialZIndex(At())}}Bt("OpenUI5Support",v);const tt=new Map,et=new Map,wt=s=>{if(!tt.has(s)){const t=qe(s.split("-"));tt.set(s,t)}return tt.get(s)},Wt=s=>{if(!et.has(s)){const t=s.replace(/([a-z])([A-Z])/g,"$1-$2").toLowerCase();et.set(s,t)}return et.get(s)},qe=s=>s.map((t,e)=>e===0?t.toLowerCase():t.charAt(0).toUpperCase()+t.slice(1).toLowerCase()).join(""),Ze=s=>{if(!(s instanceof HTMLElement))return"default";const t=s.getAttribute("slot");if(t){const e=t.match(/^(.+?)-\d+$/);return e?e[1]:t}return"default"},qt=s=>s instanceof HTMLSlotElement?s.assignedNodes({flatten:!0}).filter(t=>t instanceof HTMLElement):[s],Ge=s=>s.reduce((t,e)=>t.concat(qt(e)),[]);let Ke,$t={include:[/^ui5-/],exclude:[]};const st=new Map,Zt=()=>Ke,ht=s=>{if(!st.has(s)){const t=$t.include.some(e=>s.match(e))&&!$t.exclude.some(e=>s.match(e));st.set(s,t)}return st.get(s)},Gt=s=>{if(ht(s))return Zt()};class Je{constructor(t){this.metadata=t}getInitialState(){if(Object.prototype.hasOwnProperty.call(this,"_initialState"))return this._initialState;const t={},e=this.slotsAreManaged(),i=this.getProperties();for(const n in i){const r=i[n].type,o=i[n].defaultValue;r===Boolean?(t[n]=!1,o!==void 0&&console.warn("The 'defaultValue' metadata key is ignored for all booleans properties, they would be initialized with 'false' by default")):i[n].multiple?t[n]=[]:r===Object?t[n]="defaultValue"in i[n]?i[n].defaultValue:{}:r===String?t[n]="defaultValue"in i[n]?i[n].defaultValue:"":t[n]=o}if(e){const n=this.getSlots();for(const[r,o]of Object.entries(n)){const c=o.propertyName||r;t[c]=[]}}return this._initialState=t,t}static validatePropertyValue(t,e){return e.multiple&&t?t.map(n=>Ct(n,e)):Ct(t,e)}static validateSlotValue(t,e){return Xe(t,e)}getPureTag(){return this.metadata.tag||""}getTag(){const t=this.metadata.tag;if(!t)return"";const e=Gt(t);return e?`${t}-${e}`:t}hasAttribute(t){const e=this.getProperties()[t];return e.type!==Object&&!e.noAttribute&&!e.multiple}getPropertiesList(){return Object.keys(this.getProperties())}getAttributesList(){return this.getPropertiesList().filter(this.hasAttribute.bind(this)).map(Wt)}canSlotText(){var t;return((t=this.getSlots().default)==null?void 0:t.type)===Node}hasSlots(){return!!Object.entries(this.getSlots()).length}hasIndividualSlots(){return this.slotsAreManaged()&&Object.values(this.getSlots()).some(t=>t.individualSlots)}slotsAreManaged(){return!!this.metadata.managedSlots}supportsF6FastNavigation(){return!!this.metadata.fastNavigation}getProperties(){return this.metadata.properties||(this.metadata.properties={}),this.metadata.properties}getEvents(){return this.metadata.events||(this.metadata.events={}),this.metadata.events}getSlots(){return this.metadata.slots||(this.metadata.slots={}),this.metadata.slots}isLanguageAware(){return!!this.metadata.languageAware}isThemeAware(){return!!this.metadata.themeAware}shouldInvalidateOnChildChange(t,e,i){const n=this.getSlots()[t].invalidateOnChildChange;if(n===void 0)return!1;if(typeof n=="boolean")return n;if(typeof n=="object"){if(e==="property"){if(n.properties===void 0)return!1;if(typeof n.properties=="boolean")return n.properties;if(Array.isArray(n.properties))return n.properties.includes(i);throw new Error("Wrong format for invalidateOnChildChange.properties: boolean or array is expected")}if(e==="slot"){if(n.slots===void 0)return!1;if(typeof n.slots=="boolean")return n.slots;if(Array.isArray(n.slots))return n.slots.includes(i);throw new Error("Wrong format for invalidateOnChildChange.slots: boolean or array is expected")}}throw new Error("Wrong format for invalidateOnChildChange: boolean or object is expected")}}const Ct=(s,t)=>{const e=t.type;let i=t.validator;return e&&e.isDataTypeClass&&(i=e),i?i.isValid(s)?s:t.defaultValue:!e||e===String?typeof s=="string"||typeof s>"u"||s===null?s:s.toString():e===Boolean?typeof s=="boolean"?s:!1:e===Object?typeof s=="object"?s:t.defaultValue:s in e?s:t.defaultValue},Xe=(s,t)=>(s&&qt(s).forEach(e=>{if(!(e instanceof t.type))throw new Error(`The element is not of type ${t.type.toString()}`)}),s);class Ye extends HTMLElement{}customElements.get("ui5-static-area")||customElements.define("ui5-static-area",Ye);const Qe=()=>mt("CustomStyle.eventProvider",new k),ts="CustomCSSChange",yt=s=>{Qe().attachEvent(ts,s)},es=()=>mt("CustomStyle.customCSSFor",{});yt(s=>{Ft({tag:s})});const ss=s=>{const t=es();return t[s]?t[s].join(""):""},ns=10,nt=s=>Array.isArray(s)?s.filter(t=>!!t).flat(ns).map(t=>typeof t=="string"?t:t.content).join(" "):typeof s=="string"?s:s.content,q=new Map;yt(s=>{q.delete(`${s}_normal`)});const Kt=(s,t=!1)=>{const e=s.getMetadata().getTag(),i=`${e}_${t?"static":"normal"}`,n=X("OpenUI5Enablement");if(!q.has(i)){let r,o="";if(n&&(o=nt(n.getBusyIndicatorStyles())),t)r=nt(s.staticAreaStyles);else{const c=ss(e)||"";r=`${nt(s.styles)} ${c}`}r=`${r} ${o}`,q.set(i,r)}return q.get(i)},Z=new Map;yt(s=>{Z.delete(`${s}_normal`)});const is=(s,t=!1)=>{const i=`${s.getMetadata().getTag()}_${t?"static":"normal"}`;if(!Z.has(i)){const n=Kt(s,t),r=new CSSStyleSheet;r.replaceSync(n),Z.set(i,[r])}return Z.get(i)},pt=(s,t=!1)=>{let e;const i=s.constructor,n=t?s.staticAreaItem.shadowRoot:s.shadowRoot;let r;if(t?r=s.renderStatic():r=s.render(),!n){console.warn("There is no shadow root to update");return}if(document.adoptedStyleSheets&&!ye()?n.adoptedStyleSheets=is(i,t):e=Kt(i,t),i.renderer){i.renderer(r,n,e,t,{host:s});return}i.render(r,n,e,t,{host:s})},rs="--_ui5_content_density",os=s=>getComputedStyle(s).getPropertyValue(rs),as=s=>{const t=/\$([-a-z0-9A-Z._]+)(?::([^$]*))?\$/.exec(s);return t&&t[2]?t[2].split(/,/):null},ls={iw:"he",ji:"yi",in:"id",sh:"sr"},cs=as("$cldr-rtl-locales:ar,fa,he$")||[],ds=s=>(s=s&&ls[s]||s,cs.indexOf(s)>=0),Jt=()=>{if(typeof document>"u")return!1;const s=ve();return s!==void 0?!!s:ds(zt()||_e())},us="--_ui5_dir",Xt=s=>{const t=window.document,e=["ltr","rtl"],i=getComputedStyle(s).getPropertyValue(us);return e.includes(i)?i:e.includes(s.dir)?s.dir:e.includes(t.documentElement.dir)?t.documentElement.dir:e.includes(t.body.dir)?t.body.dir:Jt()?"rtl":void 0},W="ui5-static-area-item",hs="data-sap-ui-integration-popup-content";class O extends HTMLElement{constructor(){super(),this._rendered=!1,this.attachShadow({mode:"open"})}setOwnerElement(t){this.ownerElement=t,this.classList.add(this.ownerElement._id),this.ownerElement.hasAttribute("data-ui5-static-stable")&&this.setAttribute("data-ui5-stable",this.ownerElement.getAttribute("data-ui5-static-stable"))}update(){this._rendered&&(this.updateAdditionalProperties(),pt(this.ownerElement,!0))}updateAdditionalProperties(){this._updateAdditionalAttrs(),this._updateContentDensity(),this._updateDirection()}_updateContentDensity(){os(this.ownerElement)==="compact"?(this.classList.add("sapUiSizeCompact"),this.classList.add("ui5-content-density-compact")):(this.classList.remove("sapUiSizeCompact"),this.classList.remove("ui5-content-density-compact"))}_updateDirection(){if(this.ownerElement){const t=Xt(this.ownerElement);t?this.setAttribute("dir",t):this.removeAttribute("dir")}}_updateAdditionalAttrs(){this.setAttribute(W,""),this.setAttribute(hs,"")}async getDomRef(){return this.updateAdditionalProperties(),this._rendered||(this._rendered=!0,pt(this.ownerElement,!0)),await Ut(),this.shadowRoot}static getTag(){const t=Gt(W);return t?`${W}-${t}`:W}static createInstance(){return customElements.get(O.getTag())||customElements.define(O.getTag(),O),document.createElement(this.getTag())}}const ps=[],fs=s=>ps.some(t=>s.startsWith(t)),ft=new WeakMap,gs=(s,t,e)=>{const i=new MutationObserver(t);ft.set(s,i),i.observe(s,e)},ms=s=>{const t=ft.get(s);t&&(t.disconnect(),ft.delete(s))},ys=["value-changed","click"];let G;const vs=s=>ys.includes(s),_s=s=>{const t=vt();return!(typeof t!="boolean"&&t.events&&t.events.includes&&t.events.includes(s))},vt=()=>(G===void 0&&(G=Ae()),G),As=s=>{G=s},ws=s=>{const t=vt();return vs(s)?!1:t===!0?!0:!_s(s)},$s=["disabled","title","hidden","role","draggable"],bt=s=>$s.includes(s)||s.startsWith("aria")?!0:![HTMLElement,Element,Node].some(e=>e.prototype.hasOwnProperty(s)),St=(s,t)=>{if(s.length!==t.length)return!1;for(let e=0;e<s.length;e++)if(s[e]!==t[e])return!1;return!0},Et=(s,t)=>{const e=Cs(t),i=Zt();return s.call(t,t,e,i)},Cs=s=>{const t=s.constructor,e=t.getMetadata().getPureTag(),i=t.getUniqueDependencies().map(n=>n.getMetadata().getPureTag()).filter(ht);return ht(e)&&i.push(e),i};let bs=0;const Tt=new Map,it=new Map;function I(s){this._suppressInvalidation||(this.onInvalidation(s),this._changedState.push(s),De(this),this._invalidationEventProvider.fireEvent("invalidate",{...s,target:this}))}class C extends HTMLElement{constructor(){super();const t=this.constructor;this._changedState=[],this._suppressInvalidation=!0,this._inDOM=!1,this._fullyConnected=!1,this._childChangeListeners=new Map,this._slotChangeListeners=new Map,this._invalidationEventProvider=new k,this._componentStateFinalizedEventProvider=new k;let e;this._domRefReadyPromise=new Promise(i=>{e=i}),this._domRefReadyPromise._deferredResolve=e,this._doNotSyncAttributes=new Set,this._state={...t.getMetadata().getInitialState()},this._upgradeAllProperties(),t._needsShadowDOM()&&this.attachShadow({mode:"open"})}get _id(){return this.__id||(this.__id=`ui5wc_${++bs}`),this.__id}render(){const t=this.constructor.template;return Et(t,this)}renderStatic(){const t=this.constructor.staticAreaTemplate;return Et(t,this)}async connectedCallback(){const t=this.constructor;this.setAttribute(t.getMetadata().getPureTag(),""),t.getMetadata().supportsF6FastNavigation()&&this.setAttribute("data-sap-ui-fastnavgroup","true");const e=t.getMetadata().slotsAreManaged();this._inDOM=!0,e&&(this._startObservingDOMChildren(),await this._processChildren()),this._inDOM&&(we(this),this._domRefReadyPromise._deferredResolve(),this._fullyConnected=!0,this.onEnterDOM())}disconnectedCallback(){const e=this.constructor.getMetadata().slotsAreManaged();this._inDOM=!1,e&&this._stopObservingDOMChildren(),this._fullyConnected&&(this.onExitDOM(),this._fullyConnected=!1),this.staticAreaItem&&this.staticAreaItem.parentElement&&this.staticAreaItem.parentElement.removeChild(this.staticAreaItem),$e(this)}onBeforeRendering(){}onAfterRendering(){}onEnterDOM(){}onExitDOM(){}_startObservingDOMChildren(){const e=this.constructor.getMetadata();if(!e.hasSlots())return;const n=e.canSlotText(),r=Object.keys(e.getSlots()).some(c=>e.getSlots()[c].cloned),o={childList:!0,subtree:n||r,characterData:n};gs(this,this._processChildren.bind(this),o)}_stopObservingDOMChildren(){ms(this)}async _processChildren(){this.constructor.getMetadata().hasSlots()&&await this._updateSlots()}async _updateSlots(){const t=this.constructor,e=t.getMetadata().getSlots(),i=t.getMetadata().canSlotText(),n=Array.from(i?this.childNodes:this.children),r=new Map,o=new Map;for(const[d,u]of Object.entries(e)){const p=u.propertyName||d;o.set(p,d),r.set(p,[...this._state[p]]),this._clearSlot(d,u)}const c=new Map,a=new Map,l=n.map(async(d,u)=>{const p=Ze(d),f=e[p];if(f===void 0){if(p!=="default"){const g=Object.keys(e).join(", ");console.warn(`Unknown slotName: ${p}, ignoring`,d,`Valid values are: ${g}`)}return}if(f.individualSlots){const g=(c.get(p)||0)+1;c.set(p,g),d._individualSlot=`${p}-${g}`}if(d instanceof HTMLElement){const g=d.localName;if(g.includes("-")&&!fs(g)){if(!window.customElements.get(g)){const pe=window.customElements.whenDefined(g);let j=Tt.get(g);j||(j=new Promise(fe=>setTimeout(fe,1e3)),Tt.set(g,j)),await Promise.race([pe,j])}window.customElements.upgrade(d)}}if(d=t.getMetadata().constructor.validateSlotValue(d,f),Mt(d)&&f.invalidateOnChildChange){const g=this._getChildChangeListener(p);g&&d.attachInvalidate.call(d,g)}d instanceof HTMLSlotElement&&this._attachSlotChange(d,p);const m=f.propertyName||p;a.has(m)?a.get(m).push({child:d,idx:u}):a.set(m,[{child:d,idx:u}])});await Promise.all(l),a.forEach((d,u)=>{this._state[u]=d.sort((p,f)=>p.idx-f.idx).map(p=>p.child)});let h=!1;for(const[d,u]of Object.entries(e)){const p=u.propertyName||d;St(r.get(p),this._state[p])||(I.call(this,{type:"slot",name:o.get(p),reason:"children"}),h=!0)}h||I.call(this,{type:"slot",name:"default",reason:"textcontent"})}_clearSlot(t,e){const i=e.propertyName||t;this._state[i].forEach(r=>{if(Mt(r)){const o=this._getChildChangeListener(t);o&&r.detachInvalidate.call(r,o)}r instanceof HTMLSlotElement&&this._detachSlotChange(r,t)}),this._state[i]=[]}attachInvalidate(t){this._invalidationEventProvider.attachEvent("invalidate",t)}detachInvalidate(t){this._invalidationEventProvider.detachEvent("invalidate",t)}_onChildChange(t,e){this.constructor.getMetadata().shouldInvalidateOnChildChange(t,e.type,e.name)&&I.call(this,{type:"slot",name:t,reason:"childchange",child:e.target})}attributeChangedCallback(t,e,i){let n;if(this._doNotSyncAttributes.has(t))return;const r=this.constructor.getMetadata().getProperties(),o=t.replace(/^ui5-/,""),c=wt(o);if(r.hasOwnProperty(c)){const a=r[c],l=a.type;let h=a.validator;l&&l.isDataTypeClass&&(h=l),h?n=h.attributeToProperty(i):l===Boolean?n=i!==null:n=i,this[c]=n}}_updateAttribute(t,e){const i=this.constructor;if(!i.getMetadata().hasAttribute(t))return;const r=i.getMetadata().getProperties()[t],o=r.type;let c=r.validator;const a=Wt(t),l=this.getAttribute(a);if(o&&o.isDataTypeClass&&(c=o),c){const h=c.propertyToAttribute(e);h===null?(this._doNotSyncAttributes.add(a),this.removeAttribute(a),this._doNotSyncAttributes.delete(a)):this.setAttribute(a,h)}else o===Boolean?e===!0&&l===null?this.setAttribute(a,""):e===!1&&l!==null&&this.removeAttribute(a):typeof e!="object"&&l!==e&&this.setAttribute(a,e)}_upgradeProperty(t){if(this.hasOwnProperty(t)){const e=this[t];delete this[t],this[t]=e}}_upgradeAllProperties(){this.constructor.getMetadata().getPropertiesList().forEach(this._upgradeProperty.bind(this))}_getChildChangeListener(t){return this._childChangeListeners.has(t)||this._childChangeListeners.set(t,this._onChildChange.bind(this,t)),this._childChangeListeners.get(t)}_getSlotChangeListener(t){return this._slotChangeListeners.has(t)||this._slotChangeListeners.set(t,this._onSlotChange.bind(this,t)),this._slotChangeListeners.get(t)}_attachSlotChange(t,e){const i=this._getSlotChangeListener(e);i&&t.addEventListener("slotchange",i)}_detachSlotChange(t,e){t.removeEventListener("slotchange",this._getSlotChangeListener(e))}_onSlotChange(t){I.call(this,{type:"slot",name:t,reason:"slotchange"})}onInvalidation(t){}_render(){const t=this.constructor,e=t.getMetadata().hasIndividualSlots();this._suppressInvalidation=!0,this.onBeforeRendering(),this._componentStateFinalizedEventProvider.fireEvent("componentStateFinalized"),this._suppressInvalidation=!1,this._changedState=[],t._needsShadowDOM()&&pt(this),this.staticAreaItem&&this.staticAreaItem.update(),e&&this._assignIndividualSlotsToChildren(),this.onAfterRendering()}_assignIndividualSlotsToChildren(){Array.from(this.children).forEach(e=>{e._individualSlot&&e.setAttribute("slot",e._individualSlot)})}_waitForDomRef(){return this._domRefReadyPromise}getDomRef(){if(typeof this._getRealDomRef=="function")return this._getRealDomRef();if(!this.shadowRoot||this.shadowRoot.children.length===0)return;const t=[...this.shadowRoot.children].filter(e=>!["link","style"].includes(e.localName));return t.length!==1&&console.warn(`The shadow DOM for ${this.constructor.getMetadata().getTag()} does not have a top level element, the getDomRef() method might not work as expected`),t[0]}getFocusDomRef(){const t=this.getDomRef();if(t)return t.querySelector("[data-sap-focus-ref]")||t}async getFocusDomRefAsync(){return await this._waitForDomRef(),this.getFocusDomRef()}async focus(t){await this._waitForDomRef();const e=this.getFocusDomRef();e&&typeof e.focus=="function"&&e.focus(t)}fireEvent(t,e,i=!1,n=!0){const r=this._fireEvent(t,e,i,n),o=wt(t);return o!==t?r&&this._fireEvent(o,e,i,n):r}_fireEvent(t,e,i=!1,n=!0){const r=new CustomEvent(`ui5-${t}`,{detail:e,composed:!1,bubbles:n,cancelable:i}),o=this.dispatchEvent(r);if(ws(t))return o;const c=new CustomEvent(t,{detail:e,composed:!1,bubbles:n,cancelable:i});return this.dispatchEvent(c)&&o}getSlottedNodes(t){return Ge(this[t])}attachComponentStateFinalized(t){this._componentStateFinalizedEventProvider.attachEvent("componentStateFinalized",t)}detachComponentStateFinalized(t){this._componentStateFinalizedEventProvider.detachEvent("componentStateFinalized",t)}get effectiveDir(){return Ce(this.constructor),Xt(this)}get isUI5Element(){return!0}get classes(){return{}}static get observedAttributes(){return this.getMetadata().getAttributesList()}static _needsShadowDOM(){return!!this.template||Object.prototype.hasOwnProperty.call(this.prototype,"render")}static _needsStaticArea(){return!!this.staticAreaTemplate||Object.prototype.hasOwnProperty.call(this.prototype,"renderStatic")}getStaticAreaItemDomRef(){if(!this.constructor._needsStaticArea())throw new Error("This component does not use the static area");return this.staticAreaItem||(this.staticAreaItem=O.createInstance(),this.staticAreaItem.setOwnerElement(this)),this.staticAreaItem.parentElement||be("ui5-static-area").appendChild(this.staticAreaItem),this.staticAreaItem.getDomRef()}static _generateAccessors(){const t=this.prototype,e=this.getMetadata().slotsAreManaged(),i=this.getMetadata().getProperties();for(const[n,r]of Object.entries(i)){if(bt(n)||console.warn(`"${n}" is not a valid property name. Use a name that does not collide with DOM APIs`),r.type===Boolean&&r.defaultValue)throw new Error(`Cannot set a default value for property "${n}". All booleans are false by default.`);if(r.type===Array)throw new Error(`Wrong type for property "${n}". Properties cannot be of type Array - use "multiple: true" and set "type" to the single value type, such as "String", "Object", etc...`);if(r.type===Object&&r.defaultValue)throw new Error(`Cannot set a default value for property "${n}". All properties of type "Object" are empty objects by default.`);if(r.multiple&&r.defaultValue)throw new Error(`Cannot set a default value for property "${n}". All multiple properties are empty arrays by default.`);Object.defineProperty(t,n,{get(){if(this._state[n]!==void 0)return this._state[n];const o=r.defaultValue;return r.type===Boolean?!1:r.type===String?o:r.multiple?[]:o},set(o){let c;o=this.constructor.getMetadata().constructor.validatePropertyValue(o,r);const h=r.type;let d=r.validator;const u=this._state[n];h&&h.isDataTypeClass&&(d=h),d?c=!d.valuesAreEqual(u,o):Array.isArray(u)&&Array.isArray(o)&&r.multiple&&r.compareValues?c=!St(u,o):c=u!==o,c&&(this._state[n]=o,I.call(this,{type:"property",name:n,newValue:o,oldValue:u}),this._updateAttribute(n,o))}})}if(e){const n=this.getMetadata().getSlots();for(const[r,o]of Object.entries(n)){bt(r)||console.warn(`"${r}" is not a valid property name. Use a name that does not collide with DOM APIs`);const c=o.propertyName||r;Object.defineProperty(t,c,{get(){return this._state[c]!==void 0?this._state[c]:[]},set(){throw new Error("Cannot set slot content directly, use the DOM APIs (appendChild, removeChild, etc...)")}})}}}static get styles(){return""}static get staticAreaStyles(){return""}static get dependencies(){return[]}static getUniqueDependencies(){if(!it.has(this)){const t=this.dependencies.filter((e,i,n)=>n.indexOf(e)===i);it.set(this,t)}return it.get(this)||[]}static whenDependenciesDefined(){return Promise.all(this.getUniqueDependencies().map(t=>t.define()))}static async onDefine(){return Promise.resolve()}static async define(){await Se(),await Promise.all([this.whenDependenciesDefined(),this.onDefine()]);const t=this.getMetadata().getTag(),e=Ee(t),i=window.customElements.get(t);return i&&!e?Te(t):i||(this._generateAccessors(),Me(t),window.customElements.define(t,this)),this}static getMetadata(){if(this.hasOwnProperty("_metadata"))return this._metadata;const t=[this.metadata];let e=this;for(;e!==C;)e=Object.getPrototypeOf(e),t.unshift(e.metadata);const i=xe({},...t);return this._metadata=new Je(i),this._metadata}}C.metadata={};const Mt=s=>"isUI5Element"in s;/**
|
|
2
|
-
* @license
|
|
3
|
-
* Copyright 2017 Google LLC
|
|
4
|
-
* SPDX-License-Identifier: BSD-3-Clause
|
|
5
|
-
*/var rt;const K=window,D=K.trustedTypes,xt=D?D.createPolicy("lit-html",{createHTML:s=>s}):void 0,J="$lit$",w=`lit$${(Math.random()+"").slice(9)}$`,_t="?"+w,Ss=`<${_t}>`,T=document,H=()=>T.createComment(""),V=s=>s===null||typeof s!="object"&&typeof s!="function",Yt=Array.isArray,Qt=s=>Yt(s)||typeof(s==null?void 0:s[Symbol.iterator])=="function",ot=`[
|
|
6
|
-
\f\r]`,P=/<(?:(!--|\/[^a-zA-Z])|(\/?[a-zA-Z][^>\s]*)|(\/?$))/g,Dt=/-->/g,Lt=/>/g,b=RegExp(`>|${ot}(?:([^\\s"'>=/]+)(${ot}*=${ot}*(?:[^
|
|
7
|
-
\f\r"'\`<>=]|("|')|))|$)`,"g"),It=/'/g,Pt=/"/g,te=/^(?:script|style|textarea|title)$/i,Es=s=>(t,...e)=>({_$litType$:s,strings:t,values:e}),Ts=Es(1),M=Symbol.for("lit-noChange"),y=Symbol.for("lit-nothing"),Nt=new WeakMap,E=T.createTreeWalker(T,129,null,!1);function ee(s,t){if(!Array.isArray(s)||!s.hasOwnProperty("raw"))throw Error("invalid template strings array");return xt!==void 0?xt.createHTML(t):t}const se=(s,t)=>{const e=s.length-1,i=[];let n,r=t===2?"<svg>":"",o=P;for(let c=0;c<e;c++){const a=s[c];let l,h,d=-1,u=0;for(;u<a.length&&(o.lastIndex=u,h=o.exec(a),h!==null);)u=o.lastIndex,o===P?h[1]==="!--"?o=Dt:h[1]!==void 0?o=Lt:h[2]!==void 0?(te.test(h[2])&&(n=RegExp("</"+h[2],"g")),o=b):h[3]!==void 0&&(o=b):o===b?h[0]===">"?(o=n??P,d=-1):h[1]===void 0?d=-2:(d=o.lastIndex-h[2].length,l=h[1],o=h[3]===void 0?b:h[3]==='"'?Pt:It):o===Pt||o===It?o=b:o===Dt||o===Lt?o=P:(o=b,n=void 0);const p=o===b&&s[c+1].startsWith("/>")?" ":"";r+=o===P?a+Ss:d>=0?(i.push(l),a.slice(0,d)+J+a.slice(d)+w+p):a+w+(d===-2?(i.push(void 0),c):p)}return[ee(s,r+(s[e]||"<?>")+(t===2?"</svg>":"")),i]};class B{constructor({strings:t,_$litType$:e},i){let n;this.parts=[];let r=0,o=0;const c=t.length-1,a=this.parts,[l,h]=se(t,e);if(this.el=B.createElement(l,i),E.currentNode=this.el.content,e===2){const d=this.el.content,u=d.firstChild;u.remove(),d.append(...u.childNodes)}for(;(n=E.nextNode())!==null&&a.length<c;){if(n.nodeType===1){if(n.hasAttributes()){const d=[];for(const u of n.getAttributeNames())if(u.endsWith(J)||u.startsWith(w)){const p=h[o++];if(d.push(u),p!==void 0){const f=n.getAttribute(p.toLowerCase()+J).split(w),m=/([.?@])?(.*)/.exec(p);a.push({type:1,index:r,name:m[2],strings:f,ctor:m[1]==="."?ie:m[1]==="?"?re:m[1]==="@"?oe:F})}else a.push({type:6,index:r})}for(const u of d)n.removeAttribute(u)}if(te.test(n.tagName)){const d=n.textContent.split(w),u=d.length-1;if(u>0){n.textContent=D?D.emptyScript:"";for(let p=0;p<u;p++)n.append(d[p],H()),E.nextNode(),a.push({type:2,index:++r});n.append(d[u],H())}}}else if(n.nodeType===8)if(n.data===_t)a.push({type:2,index:r});else{let d=-1;for(;(d=n.data.indexOf(w,d+1))!==-1;)a.push({type:7,index:r}),d+=w.length-1}r++}}static createElement(t,e){const i=T.createElement("template");return i.innerHTML=t,i}}function x(s,t,e=s,i){var n,r,o,c;if(t===M)return t;let a=i!==void 0?(n=e._$Co)===null||n===void 0?void 0:n[i]:e._$Cl;const l=V(t)?void 0:t._$litDirective$;return(a==null?void 0:a.constructor)!==l&&((r=a==null?void 0:a._$AO)===null||r===void 0||r.call(a,!1),l===void 0?a=void 0:(a=new l(s),a._$AT(s,e,i)),i!==void 0?((o=(c=e)._$Co)!==null&&o!==void 0?o:c._$Co=[])[i]=a:e._$Cl=a),a!==void 0&&(t=x(s,a._$AS(s,t.values),a,i)),t}class ne{constructor(t,e){this._$AV=[],this._$AN=void 0,this._$AD=t,this._$AM=e}get parentNode(){return this._$AM.parentNode}get _$AU(){return this._$AM._$AU}u(t){var e;const{el:{content:i},parts:n}=this._$AD,r=((e=t==null?void 0:t.creationScope)!==null&&e!==void 0?e:T).importNode(i,!0);E.currentNode=r;let o=E.nextNode(),c=0,a=0,l=n[0];for(;l!==void 0;){if(c===l.index){let h;l.type===2?h=new L(o,o.nextSibling,this,t):l.type===1?h=new l.ctor(o,l.name,l.strings,this,t):l.type===6&&(h=new ae(o,this,t)),this._$AV.push(h),l=n[++a]}c!==(l==null?void 0:l.index)&&(o=E.nextNode(),c++)}return E.currentNode=T,r}v(t){let e=0;for(const i of this._$AV)i!==void 0&&(i.strings!==void 0?(i._$AI(t,i,e),e+=i.strings.length-2):i._$AI(t[e])),e++}}class L{constructor(t,e,i,n){var r;this.type=2,this._$AH=y,this._$AN=void 0,this._$AA=t,this._$AB=e,this._$AM=i,this.options=n,this._$Cp=(r=n==null?void 0:n.isConnected)===null||r===void 0||r}get _$AU(){var t,e;return(e=(t=this._$AM)===null||t===void 0?void 0:t._$AU)!==null&&e!==void 0?e:this._$Cp}get parentNode(){let t=this._$AA.parentNode;const e=this._$AM;return e!==void 0&&(t==null?void 0:t.nodeType)===11&&(t=e.parentNode),t}get startNode(){return this._$AA}get endNode(){return this._$AB}_$AI(t,e=this){t=x(this,t,e),V(t)?t===y||t==null||t===""?(this._$AH!==y&&this._$AR(),this._$AH=y):t!==this._$AH&&t!==M&&this._(t):t._$litType$!==void 0?this.g(t):t.nodeType!==void 0?this.$(t):Qt(t)?this.T(t):this._(t)}k(t){return this._$AA.parentNode.insertBefore(t,this._$AB)}$(t){this._$AH!==t&&(this._$AR(),this._$AH=this.k(t))}_(t){this._$AH!==y&&V(this._$AH)?this._$AA.nextSibling.data=t:this.$(T.createTextNode(t)),this._$AH=t}g(t){var e;const{values:i,_$litType$:n}=t,r=typeof n=="number"?this._$AC(t):(n.el===void 0&&(n.el=B.createElement(ee(n.h,n.h[0]),this.options)),n);if(((e=this._$AH)===null||e===void 0?void 0:e._$AD)===r)this._$AH.v(i);else{const o=new ne(r,this),c=o.u(this.options);o.v(i),this.$(c),this._$AH=o}}_$AC(t){let e=Nt.get(t.strings);return e===void 0&&Nt.set(t.strings,e=new B(t)),e}T(t){Yt(this._$AH)||(this._$AH=[],this._$AR());const e=this._$AH;let i,n=0;for(const r of t)n===e.length?e.push(i=new L(this.k(H()),this.k(H()),this,this.options)):i=e[n],i._$AI(r),n++;n<e.length&&(this._$AR(i&&i._$AB.nextSibling,n),e.length=n)}_$AR(t=this._$AA.nextSibling,e){var i;for((i=this._$AP)===null||i===void 0||i.call(this,!1,!0,e);t&&t!==this._$AB;){const n=t.nextSibling;t.remove(),t=n}}setConnected(t){var e;this._$AM===void 0&&(this._$Cp=t,(e=this._$AP)===null||e===void 0||e.call(this,t))}}class F{constructor(t,e,i,n,r){this.type=1,this._$AH=y,this._$AN=void 0,this.element=t,this.name=e,this._$AM=n,this.options=r,i.length>2||i[0]!==""||i[1]!==""?(this._$AH=Array(i.length-1).fill(new String),this.strings=i):this._$AH=y}get tagName(){return this.element.tagName}get _$AU(){return this._$AM._$AU}_$AI(t,e=this,i,n){const r=this.strings;let o=!1;if(r===void 0)t=x(this,t,e,0),o=!V(t)||t!==this._$AH&&t!==M,o&&(this._$AH=t);else{const c=t;let a,l;for(t=r[0],a=0;a<r.length-1;a++)l=x(this,c[i+a],e,a),l===M&&(l=this._$AH[a]),o||(o=!V(l)||l!==this._$AH[a]),l===y?t=y:t!==y&&(t+=(l??"")+r[a+1]),this._$AH[a]=l}o&&!n&&this.j(t)}j(t){t===y?this.element.removeAttribute(this.name):this.element.setAttribute(this.name,t??"")}}class ie extends F{constructor(){super(...arguments),this.type=3}j(t){this.element[this.name]=t===y?void 0:t}}const Ms=D?D.emptyScript:"";class re extends F{constructor(){super(...arguments),this.type=4}j(t){t&&t!==y?this.element.setAttribute(this.name,Ms):this.element.removeAttribute(this.name)}}class oe extends F{constructor(t,e,i,n,r){super(t,e,i,n,r),this.type=5}_$AI(t,e=this){var i;if((t=(i=x(this,t,e,0))!==null&&i!==void 0?i:y)===M)return;const n=this._$AH,r=t===y&&n!==y||t.capture!==n.capture||t.once!==n.once||t.passive!==n.passive,o=t!==y&&(n===y||r);r&&this.element.removeEventListener(this.name,this,n),o&&this.element.addEventListener(this.name,this,t),this._$AH=t}handleEvent(t){var e,i;typeof this._$AH=="function"?this._$AH.call((i=(e=this.options)===null||e===void 0?void 0:e.host)!==null&&i!==void 0?i:this.element,t):this._$AH.handleEvent(t)}}class ae{constructor(t,e,i){this.element=t,this.type=6,this._$AN=void 0,this._$AM=e,this.options=i}get _$AU(){return this._$AM._$AU}_$AI(t){x(this,t)}}const xs={O:J,P:w,A:_t,C:1,M:se,L:ne,D:Qt,R:x,I:L,V:F,H:re,N:oe,U:ie,F:ae},Rt=K.litHtmlPolyfillSupport;Rt==null||Rt(B,L),((rt=K.litHtmlVersions)!==null&&rt!==void 0?rt:K.litHtmlVersions=[]).push("2.7.5");const Ds=(s,t,e)=>{var i,n;const r=(i=e==null?void 0:e.renderBefore)!==null&&i!==void 0?i:t;let o=r._$litPart$;if(o===void 0){const c=(n=e==null?void 0:e.renderBefore)!==null&&n!==void 0?n:null;r._$litPart$=o=new L(t.insertBefore(H(),c),c,void 0,e??{})}return o._$AI(s),o};/**
|
|
8
|
-
* @license
|
|
9
|
-
* Copyright 2017 Google LLC
|
|
10
|
-
* SPDX-License-Identifier: BSD-3-Clause
|
|
11
|
-
*/const le={ATTRIBUTE:1,CHILD:2,PROPERTY:3,BOOLEAN_ATTRIBUTE:4,EVENT:5,ELEMENT:6},Ls=s=>(...t)=>({_$litDirective$:s,values:t});class ce{constructor(t){}get _$AU(){return this._$AM._$AU}_$AT(t,e,i){this._$Ct=t,this._$AM=e,this._$Ci=i}_$AS(t,e){return this.update(t,e)}update(t,e){return this.render(...e)}}/**
|
|
12
|
-
* @license
|
|
13
|
-
* Copyright 2020 Google LLC
|
|
14
|
-
* SPDX-License-Identifier: BSD-3-Clause
|
|
15
|
-
*/const{I:Is}=xs,Ot=()=>document.createComment(""),N=(s,t,e)=>{var i;const n=s._$AA.parentNode,r=t===void 0?s._$AB:t._$AA;if(e===void 0){const o=n.insertBefore(Ot(),r),c=n.insertBefore(Ot(),r);e=new Is(o,c,s,s.options)}else{const o=e._$AB.nextSibling,c=e._$AM,a=c!==s;if(a){let l;(i=e._$AQ)===null||i===void 0||i.call(e,s),e._$AM=s,e._$AP!==void 0&&(l=s._$AU)!==c._$AU&&e._$AP(l)}if(o!==r||a){let l=e._$AA;for(;l!==o;){const h=l.nextSibling;n.insertBefore(l,r),l=h}}}return e},S=(s,t,e=s)=>(s._$AI(t,e),s),Ps={},Ns=(s,t=Ps)=>s._$AH=t,Rs=s=>s._$AH,at=s=>{var t;(t=s._$AP)===null||t===void 0||t.call(s,!1,!0);let e=s._$AA;const i=s._$AB.nextSibling;for(;e!==i;){const n=e.nextSibling;e.remove(),e=n}};/**
|
|
16
|
-
* @license
|
|
17
|
-
* Copyright 2017 Google LLC
|
|
18
|
-
* SPDX-License-Identifier: BSD-3-Clause
|
|
19
|
-
*/const kt=(s,t,e)=>{const i=new Map;for(let n=t;n<=e;n++)i.set(s[n],n);return i},de=Ls(class extends ce{constructor(s){if(super(s),s.type!==le.CHILD)throw Error("repeat() can only be used in text expressions")}dt(s,t,e){let i;e===void 0?e=t:t!==void 0&&(i=t);const n=[],r=[];let o=0;for(const c of s)n[o]=i?i(c,o):o,r[o]=e(c,o),o++;return{values:r,keys:n}}render(s,t,e){return this.dt(s,t,e).values}update(s,[t,e,i]){var n;const r=Rs(s),{values:o,keys:c}=this.dt(t,e,i);if(!Array.isArray(r))return this.ht=c,o;const a=(n=this.ht)!==null&&n!==void 0?n:this.ht=[],l=[];let h,d,u=0,p=r.length-1,f=0,m=o.length-1;for(;u<=p&&f<=m;)if(r[u]===null)u++;else if(r[p]===null)p--;else if(a[u]===c[f])l[f]=S(r[u],o[f]),u++,f++;else if(a[p]===c[m])l[m]=S(r[p],o[m]),p--,m--;else if(a[u]===c[m])l[m]=S(r[u],o[m]),N(s,l[m+1],r[u]),u++,m--;else if(a[p]===c[f])l[f]=S(r[p],o[f]),N(s,r[u],r[p]),p--,f++;else if(h===void 0&&(h=kt(c,f,m),d=kt(a,u,p)),h.has(a[u]))if(h.has(a[p])){const g=d.get(c[f]),U=g!==void 0?r[g]:null;if(U===null){const Y=N(s,r[u]);S(Y,o[f]),l[f]=Y}else l[f]=S(U,o[f]),N(s,r[u],U),r[g]=null;f++}else at(r[p]),p--;else at(r[u]),u++;for(;f<=m;){const g=N(s,l[m+1]);S(g,o[f]),l[f++]=g}for(;u<=p;){const g=r[u++];g!==null&&at(g)}return this.ht=c,Ns(s,l),M}});/**
|
|
20
|
-
* @license
|
|
21
|
-
* Copyright 2018 Google LLC
|
|
22
|
-
* SPDX-License-Identifier: BSD-3-Clause
|
|
23
|
-
*/const A=s=>s??y;/**
|
|
24
|
-
* @license
|
|
25
|
-
* Copyright 2017 Google LLC
|
|
26
|
-
* SPDX-License-Identifier: BSD-3-Clause
|
|
27
|
-
*/class Ht extends ce{constructor(t){if(super(t),this.et=y,t.type!==le.CHILD)throw Error(this.constructor.directiveName+"() can only be used in child bindings")}render(t){if(t===y||t==null)return this.ft=void 0,this.et=t;if(t===M)return t;if(typeof t!="string")throw Error(this.constructor.directiveName+"() called with a non-string value");if(t===this.et)return this.ft;this.et=t;const e=[t];return e.raw=e,this.ft={_$litType$:this.constructor.resultType,strings:e,values:[]}}}Ht.directiveName="unsafeHTML",Ht.resultType=1;const _=(s,...t)=>{const e=X("LitStatic");return(e?e.html:Ts)(s,...t)},z=(s,t,e,i,n)=>{const r=X("OpenUI5Enablement");r&&!i&&(s=r.wrapTemplateResultInBusyMarkup(_,n.host,s)),typeof e=="string"?s=_`<style>${e}</style>${s}`:Array.isArray(e)&&e.length&&(s=_`${e.map(o=>_`<link type="text/css" rel="stylesheet" href="${o}">`)}${s}`),Ds(s,t,n)},Os={tag:"ui5-test-generic",properties:{strProp:{type:String},boolProp:{type:Boolean},objectProp:{type:Object},noAttributeProp:{type:String,noAttribute:!0},multiProp:{type:String,multiple:!0},defaultValueProp:{type:String,defaultValue:"Hello"}},managedSlots:!0,slots:{default:{type:Node},other:{type:HTMLElement},individual:{type:HTMLElement,individualSlots:!0},named:{type:HTMLElement,propertyName:"items"}}};class ue extends C{static get metadata(){return Os}static get render(){return z}static get template(){return t=>_`<div><p>
|
|
28
|
-
<slot></slot>
|
|
29
|
-
<slot name="other"></slot>
|
|
30
|
-
<slot name="individual-1"></slot>
|
|
31
|
-
<slot name="individual-2"></slot>
|
|
32
|
-
</p></div>`}static get styles(){return`:host {
|
|
33
|
-
display: inline-block;
|
|
34
|
-
border: 1px solid black;
|
|
35
|
-
color: var(--var1);
|
|
36
|
-
}`}onBeforeRendering(){}onAfterRendering(){}onEnterDOM(){}onExitDOM(){}}ue.define();const ks={tag:"ui5-test-no-shadow"};class Hs extends C{static get metadata(){return ks}}Hs.define();const Vs={tag:"ui5-test-parent",managedSlots:!0,slots:{default:{type:Node,invalidateOnChildChange:{properties:["prop1"]}},items:{type:HTMLElement,invalidateOnChildChange:{properties:!0}}}};class Bs extends C{static get metadata(){return Vs}static get render(){return z}static get template(){return t=>_`<div>
|
|
37
|
-
<slot></slot>
|
|
38
|
-
</div>`}}Bs.define();const Fs={tag:"ui5-test-child",properties:{prop1:{type:String},prop2:{type:String},prop3:{type:String}}};class zs extends C{static get metadata(){return Fs}static get render(){return z}static get template(){return t=>_`<div></div>`}}zs.define();const Us={tag:"ui5-with-static-area",properties:{staticContent:{type:Boolean}},slots:{}};class js extends C{static get metadata(){return Us}static get render(){return z}static get template(){return t=>_`
|
|
39
|
-
<div dir=${t.effectiveDir}>
|
|
40
|
-
WithStaticArea works!
|
|
41
|
-
</div>`}static get staticAreaTemplate(){return t=>_`
|
|
42
|
-
<div class="ui5-with-static-area-content">
|
|
43
|
-
Static area content.
|
|
44
|
-
</div>`}static get styles(){return`
|
|
45
|
-
:host {
|
|
46
|
-
display: inline-block;
|
|
47
|
-
border: 1px solid black;
|
|
48
|
-
color: red;
|
|
49
|
-
}`}async addStaticArea(){if(!this.staticContent)return;const t=await this.getStaticAreaItemDomRef();return this.responsivePopover=t.querySelector(".ui5-with-static-area-content"),this.responsivePopover}onBeforeRendering(){this.addStaticArea()}onAfterRendering(){}onEnterDOM(){}onExitDOM(){}}js.define();function Ws(s,t,e){return _`<div>Root text: ${A(this.text)}${de(this.items,(i,n)=>i._id||n,(i,n)=>qs.call(this,s,t,e,i,n))} Root text: ${A(this.text)}</div>`}function qs(s,t,e,i,n){return _`<h3>Item-${n}</h3>${i.text?Zs.call(this,s,t,e,i,n):void 0}<ul>${de(i.words,(r,o)=>r._id||o,(r,o)=>Gs.call(this,s,t,e,r,o))}</ul>${i.text?Ks.call(this,s,t,e,i,n):void 0}`}function Zs(s,t,e,i,n){return _`<div class="before-each-content--start--${n}">Root text: ${A(this.text)}, Item text: ${A(i.text)}</div>`}function Gs(s,t,e,i,n){return _`<li><h3>Word-${n}</h3><div class="nested-each-content--${n}--0">Root Text: ${A(this.text)}, Word text: ${A(i.text)}</div><div class="nested-each-content--${n}--1">Root Text: ${A(this.text)}, Word text: ${A(i.text)}</div></li>`}function Ks(s,t,e,i,n){return _`<div class="after-each-content--end--${n}">Root text: ${A(this.text)}, Item text: ${A(i.text)}</div>`}class Js extends C{static get metadata(){return{tag:"ui5-test-complex-template"}}static get render(){return z}static get template(){return Ws}get text(){return"root"}get items(){return[{text:"positives",words:[{text:"word1_good"},{text:"word2_nice"},{text:"word3_kind"}]},{text:"negatives",words:[{text:"word4_bad"},{text:"word5_rude"},{text:"word6_unpolite"}]}]}}Js.define();const Xs={tag:"ui5-test-generic-ext",properties:{extProp:{type:String},strProp:{defaultValue:"Ext"}},slots:{extSlot:{type:HTMLElement}}};class Ys extends ue{static get metadata(){return Xs}}Ys.define();const Qs={content:":root{ --var1: grey; }",packageName:"",fileName:""},tn={content:":root{ --var1: red; }",packageName:"",fileName:""},en={content:":root{ --var1: green; }",packageName:"",fileName:""},sn={content:":root{ --var1: blue; }",packageName:"",fileName:""},nn={content:":root{ --var1: orange; }",packageName:"",fileName:""},rn={content:":root{ --var1: orange; }",packageName:"",fileName:""},on={content:":root{ --var1: yellow; }",packageName:"",fileName:""},an={content:":root{ --var1: yellow; }",packageName:"",fileName:""};$("@ui5/webcomponents-base-test","sap_horizon",()=>Qs);$("@ui5/webcomponents-base-test","sap_fiori_3",()=>tn);$("@ui5/webcomponents-base-test","sap_fiori_3_dark",()=>en);$("@ui5/webcomponents-base-test","sap_belize",()=>sn);$("@ui5/webcomponents-base-test","sap_belize_hcb",()=>nn);$("@ui5/webcomponents-base-test","sap_belize_hcw",()=>rn);$("@ui5/webcomponents-base-test","sap_fiori_3_hcb",()=>on);$("@ui5/webcomponents-base-test","sap_fiori_3_hcw",()=>an);const ln=typeof window.chrome=="object"||typeof window.v8=="object"?(s,t)=>(t>2&&40*t>s.length,s):s=>s,cn=/(?:\r\n|\r|\n|^)[ \t\f]*/,dn=/(\\u[0-9a-fA-F]{0,4})|(\\.)|(\\$)|([ \t\f]*[ \t\f:=][ \t\f]*)/g,un=/(\\u[0-9a-fA-F]{0,4})|(\\.)|(\\$)/g,hn={"\\f":"\f","\\n":`
|
|
50
|
-
`,"\\r":"\r","\\t":" "},pn=s=>{const t={},e=s.split(cn);let i,n,r,o,c,a,l,h;const d=u=>{o?(o=`${o}${u}`,h++):(o=u,h=0)};for(c=0;c<e.length;c++)if(i=e[c],!(i===""||i.charAt(0)==="#"||i.charAt(0)==="!")){for(n=dn,l=0,n.lastIndex=l,r=null,o="",a=n.exec(i);a!==null;){if(l<a.index&&d(i.slice(l,a.index)),l=n.lastIndex,a[1]){if(a[1].length!==6)throw new Error(`Incomplete Unicode Escape '${a[1]}'`);d(String.fromCharCode(parseInt(a[1].slice(2),16)))}else a[2]?d(hn[a[2]]||a[2].slice(1)):a[3]?(i=e[++c],l=0,n.lastIndex=l):a[4]&&(r=o,o="",n=un,n.lastIndex=l);a=n.exec(i)}l<i.length&&d(i.slice(l)),r==null&&(r=o,o=""),t[r]=ln(o,o?h:0)}return t};let lt;const fn=()=>(lt===void 0&&(lt=Le()),lt);var gt;(function(s){s.Gregorian="Gregorian",s.Islamic="Islamic",s.Japanese="Japanese",s.Buddhist="Buddhist",s.Persian="Persian"})(gt||(gt={}));const Vt=gt;let R;const gn=()=>(R===void 0&&(R=Ie()),R&&R in Vt?R:Vt.Gregorian);let ct;class he{static getLegacyDateCalendarCustomizing(){return ct===void 0&&(ct=jt()),ct.legacyDateCalendarCustomizing||[]}}Bt("LegacyDateFormats",he);let dt;const mn=()=>(dt===void 0&&(dt=jt()),dt.firstDayOfWeek),yn=X("LegacyDateFormats"),vn=yn?he.getLegacyDateCalendarCustomizing:()=>[],_n=new k,An="directionChange",wn=()=>_n.fireEvent(An,void 0),$n=async()=>{const s=wn();await Promise.all(s),await Ft({rtlAware:!0})};window.registerThemePropertiesLoader=$;window["sap-ui-webcomponents-bundle"]={configuration:{getAnimationMode:fn,getLanguage:zt,setLanguage:Pe,getTheme:Ne,getThemeRoot:Re,setThemeRoot:Oe,setTheme:ut,getNoConflict:vt,setNoConflict:As,getCalendarType:gn,getRTL:Jt,getFirstDayOfWeek:mn,getLegacyDateCalendarCustomizing:vn},getCurrentRuntimeIndex:ke,getIconNames:He,parseProperties:pn,registerI18nLoader:Ve,getI18nBundle:je,renderFinished:Ut,applyDirection:$n,EventProvider:k};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
import{a as o,b as e,r as t}from"../../Boot-7124a68e.js";o(()=>{console.log("Listener1: after framework booted!")});e();const s={registerThemeProps:async()=>{t("@ui5/webcomponents-theming","sap_horizon",()=>({content:":root{ --customCol: #fff; --customBg: #000; }",packageName:"",fileName:""}))}};window["sap-ui-webcomponents-bundle"]=s;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
import"../../Boot-7124a68e.js";import"../../bundle.esm-5fcb4c90.js";const s=async()=>{["de","es","fr","en"].forEach(e=>window["sap-ui-webcomponents-bundle"].registerI18nLoader("myApp",e,()=>`./assets/messagebundle_${e}.properties`));const n=(await window["sap-ui-webcomponents-bundle"].getI18nBundle("myApp")).getText("PLEASE_WAIT");console.log("Please wait in the current language is: ",n)};s();
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
import"../../Boot-7124a68e.js";import"../../bundle.esm-5fcb4c90.js";const a=async()=>{window["sap-ui-webcomponents-bundle"].configuration.setLanguage("fr");const s=["test_1","test_2","test_3","test_4","test_5","test_6","test_7","test_8","test_9"];window["sap-ui-webcomponents-bundle"].registerI18nLoader("myApp","fr",async e=>{const t=await(await fetch(`./assets/messagebundle_${e}.properties`)).text();return window["sap-ui-webcomponents-bundle"].parseProperties(t)});const r=await window["sap-ui-webcomponents-bundle"].getI18nBundle("myApp");s.forEach(e=>{const t=r.getText(e.toUpperCase(),"test"),n=document.getElementById(`${e}_text`);n.innerText=t}),s.forEach(e=>{const t=document.getElementById(`${e}_text`),n=document.getElementById(`${e}_result`);if(t.innerText!==n.innerText){const o=n.parentElement;o.style.textDecoration="underline",o.style.color="red"}})};a();
|
|
@@ -1,43 +0,0 @@
|
|
|
1
|
-
<!DOCTYPE html>
|
|
2
|
-
<html>
|
|
3
|
-
<head>
|
|
4
|
-
<meta charset="utf-8">
|
|
5
|
-
|
|
6
|
-
<title>Base package default test page</title>
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
<script type="module" crossorigin src="/assets/Boot-7124a68e.js"></script>
|
|
10
|
-
<script type="module" crossorigin src="/assets/bundle.esm-5fcb4c90.js"></script>
|
|
11
|
-
</head>
|
|
12
|
-
|
|
13
|
-
<body>
|
|
14
|
-
|
|
15
|
-
<ui5-test-generic id="gen"></ui5-test-generic>
|
|
16
|
-
|
|
17
|
-
<ui5-test-generic id="withContent">
|
|
18
|
-
Default slot text
|
|
19
|
-
<span>Default slot content</span>
|
|
20
|
-
<span slot="other">Other slot content 1</span>
|
|
21
|
-
<span slot="other">Other slot content 2</span>
|
|
22
|
-
<span slot="individual">Individual slot content 1</span>
|
|
23
|
-
<span slot="individual">Individual slot content 2</span>
|
|
24
|
-
<span slot="named">Item in slot with propertyName</span>
|
|
25
|
-
<span slot="named">Item in slot with propertyName</span>
|
|
26
|
-
</ui5-test-generic>
|
|
27
|
-
|
|
28
|
-
<ui5-test-no-shadow id="noShadow"></ui5-test-no-shadow>
|
|
29
|
-
|
|
30
|
-
<ui5-test-parent id="parent">
|
|
31
|
-
<ui5-test-child id="child1" prop1="old" prop2="old" prop3="old"></ui5-test-child>
|
|
32
|
-
<ui5-test-child id="child2" slot="items" prop1="old" prop2="old" prop3="old"></ui5-test-child>
|
|
33
|
-
</ui5-test-parent>
|
|
34
|
-
|
|
35
|
-
<ui5-test-generic-ext id="genExt"></ui5-test-generic-ext>
|
|
36
|
-
|
|
37
|
-
<ui5-with-static-area id="no-static-area"></ui5-with-static-area>
|
|
38
|
-
<ui5-with-static-area id="with-static-area" static-content></ui5-with-static-area>
|
|
39
|
-
<div id="with-static-area-rtl-container" dir="rtl">
|
|
40
|
-
<ui5-with-static-area id="with-static-area-rtl" static-content></ui5-with-static-area>
|
|
41
|
-
</div>
|
|
42
|
-
</body>
|
|
43
|
-
</html>
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
<!DOCTYPE html>
|
|
2
|
-
<html>
|
|
3
|
-
<head>
|
|
4
|
-
<meta charset="utf-8">
|
|
5
|
-
<title>Test theme loading and attachBoot</title>
|
|
6
|
-
<script>delete Document.prototype.adoptedStyleSheets</script>
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
<script type="module" crossorigin src="/assets/test/pages/Boot.html-f70ec297.js"></script>
|
|
10
|
-
<link rel="modulepreload" crossorigin href="/assets/Boot-7124a68e.js">
|
|
11
|
-
<link rel="stylesheet" href="/assets/Boot-34b7cea0.css">
|
|
12
|
-
</head>
|
|
13
|
-
<body>
|
|
14
|
-
|
|
15
|
-
<div class="content">Register theme properties to style this text - window['sap-ui-webcomponents-bundle'].registerThemeProps()</div>
|
|
16
|
-
</body>
|
|
17
|
-
</html>
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
<!DOCTYPE html>
|
|
2
|
-
<html>
|
|
3
|
-
<head>
|
|
4
|
-
<meta charset="utf-8">
|
|
5
|
-
<meta name="sap-allowedThemeOrigins" content="https://example.com">
|
|
6
|
-
|
|
7
|
-
<title>Base package default test page</title>
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
<script type="module" crossorigin src="/assets/Boot-7124a68e.js"></script>
|
|
12
|
-
<script type="module" crossorigin src="/assets/bundle.esm-5fcb4c90.js"></script>
|
|
13
|
-
</head>
|
|
14
|
-
|
|
15
|
-
<body>
|
|
16
|
-
|
|
17
|
-
<h1>Base package</h1>
|
|
18
|
-
|
|
19
|
-
</body>
|
|
20
|
-
</html>
|