@ui5/webcomponents-base 1.11.0-rc.2 → 1.11.0-rc.3
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 +12 -0
- package/bundle.esm.js +3 -1
- package/dist/UI5Element.d.ts +2 -2
- package/dist/asset-registries/Illustrations.d.ts +1 -1
- package/dist/asset-registries/Themes.d.ts +1 -0
- package/dist/assets/bundle.esm.76492ab6.js +60 -0
- package/dist/assets/test/pages/{i18n.html.cd6e3cfc.js → i18n.html.2fe80529.js} +1 -1
- package/dist/assets/test/pages/{i18n_texts.html.7beb72ee.js → i18n_texts.html.fef7ef14.js} +1 -1
- package/dist/config/FormatSettings.d.ts +5 -1
- package/dist/config/FormatSettings.js +5 -1
- package/dist/config/FormatSettings.js.map +1 -1
- package/dist/config/Icons.d.ts +3 -2
- package/dist/config/Icons.js +9 -3
- package/dist/config/Icons.js.map +1 -1
- package/dist/features/LegacyDateFormats.d.ts +18 -0
- package/dist/features/LegacyDateFormats.js +20 -0
- package/dist/features/LegacyDateFormats.js.map +1 -0
- package/dist/features/OpenUI5Support.d.ts +2 -0
- package/dist/features/OpenUI5Support.js +1 -0
- package/dist/features/OpenUI5Support.js.map +1 -1
- package/dist/generated/VersionInfo.js +3 -3
- package/dist/test/pages/AllTestElements.html +1 -1
- package/dist/test/pages/Configuration.html +1 -1
- package/dist/test/pages/ConfigurationScript.html +19 -2
- package/dist/test/pages/WithComplexTemplate.html +1 -1
- package/dist/test/pages/i18n.html +2 -2
- package/dist/test/pages/i18n_texts.html +2 -2
- package/dist/theming/getStylesString.d.ts +1 -1
- package/package.json +3 -3
- package/src/UI5Element.ts +2 -2
- package/src/asset-registries/Illustrations.ts +1 -1
- package/src/asset-registries/Themes.ts +5 -0
- package/src/config/FormatSettings.ts +16 -2
- package/src/config/Icons.ts +12 -5
- package/src/features/LegacyDateFormats.ts +40 -0
- package/src/features/OpenUI5Support.ts +5 -0
- package/src/theming/getEffectiveLinksHrefs.ts +1 -1
- package/src/theming/getStylesString.ts +1 -1
- package/dist/assets/bundle.esm.2d0cb31f.js +0 -56
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,18 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [1.11.0-rc.3](https://github.com/SAP/ui5-webcomponents/compare/v1.11.0-rc.2...v1.11.0-rc.3) (2023-02-23)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* **framework:** support legacy date calendar customizing ([#6462](https://github.com/SAP/ui5-webcomponents/issues/6462)) ([27df89b](https://github.com/SAP/ui5-webcomponents/commit/27df89bc62aaccbfbec5f4d36c520dbd762dab34))
|
|
12
|
+
* support SAPBusinessSuite icons v1 and v2 font ( Horizon ) ([#6535](https://github.com/SAP/ui5-webcomponents/issues/6535)) ([38233b9](https://github.com/SAP/ui5-webcomponents/commit/38233b94543a94c9915cf1d8c8937a834cd6c87d))
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
|
|
6
18
|
# [1.11.0-rc.2](https://github.com/SAP/ui5-webcomponents/compare/v1.11.0-rc.1...v1.11.0-rc.2) (2023-02-16)
|
|
7
19
|
|
|
8
20
|
|
package/bundle.esm.js
CHANGED
|
@@ -33,9 +33,10 @@ import { getCalendarType } from "./dist/config/CalendarType.js";
|
|
|
33
33
|
import { getTheme, setTheme } from "./dist/config/Theme.js";
|
|
34
34
|
import { getNoConflict, setNoConflict } from "./dist/config/NoConflict.js";
|
|
35
35
|
import { getRTL } from "./dist/config/RTL.js";
|
|
36
|
-
import { getFirstDayOfWeek } from "./dist/config/FormatSettings.js";
|
|
36
|
+
import { getFirstDayOfWeek, getLegacyDateCalendarCustomizing } from "./dist/config/FormatSettings.js";
|
|
37
37
|
import { _getRegisteredNames as getIconNames } from "./dist/asset-registries/Icons.js"
|
|
38
38
|
import applyDirection from "./dist/locale/applyDirection.js";
|
|
39
|
+
import LegacyDateFormats from "./dist/features/LegacyDateFormats.js";
|
|
39
40
|
|
|
40
41
|
window["sap-ui-webcomponents-bundle"] = {
|
|
41
42
|
configuration : {
|
|
@@ -49,6 +50,7 @@ window["sap-ui-webcomponents-bundle"] = {
|
|
|
49
50
|
getCalendarType,
|
|
50
51
|
getRTL,
|
|
51
52
|
getFirstDayOfWeek,
|
|
53
|
+
getLegacyDateCalendarCustomizing,
|
|
52
54
|
},
|
|
53
55
|
getIconNames,
|
|
54
56
|
parseProperties,
|
package/dist/UI5Element.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import UI5ElementMetadata, { Slot, SlotValue, State, PropertyValue, Metadata } from "./UI5ElementMetadata.js";
|
|
2
2
|
import EventProvider from "./EventProvider.js";
|
|
3
3
|
import StaticAreaItem from "./StaticAreaItem.js";
|
|
4
|
-
import { TemplateFunction, TemplateFunctionResult } from "./renderer/executeTemplate.js";
|
|
5
|
-
import { PromiseResolve, ComponentStylesData, ClassMap } from "./types.js";
|
|
4
|
+
import type { TemplateFunction, TemplateFunctionResult } from "./renderer/executeTemplate.js";
|
|
5
|
+
import type { PromiseResolve, ComponentStylesData, ClassMap } from "./types.js";
|
|
6
6
|
type ChangeInfo = {
|
|
7
7
|
type: "property" | "slot";
|
|
8
8
|
name: string;
|
|
@@ -8,3 +8,4 @@ declare const getThemeProperties: (packageName: string, themeName: string) => Pr
|
|
|
8
8
|
declare const getRegisteredPackages: () => Set<string>;
|
|
9
9
|
declare const isThemeRegistered: (theme: string) => boolean;
|
|
10
10
|
export { registerThemePropertiesLoader, getThemeProperties, getRegisteredPackages, isThemeRegistered, };
|
|
11
|
+
export type { ThemeData, ThemeLoader, };
|
|
@@ -0,0 +1,60 @@
|
|
|
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"]'))n(r);new MutationObserver(r=>{for(const o of r)if(o.type==="childList")for(const i of o.addedNodes)i.tagName==="LINK"&&i.rel==="modulepreload"&&n(i)}).observe(document,{childList:!0,subtree:!0});function s(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 n(r){if(r.ep)return;r.ep=!0;const o=s(r);fetch(r.href,o)}})();const At={themes:{default:"sap_fiori_3",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"]},languages:{default:"en",all:["ar","bg","ca","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","ms","nl","no","pl","pt_PT","pt","ro","ru","sh","sk","sl","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"]}},ft=At.themes.default,pt=At.languages.default,b=At.locales.default,he=At.locales.all,Xe=()=>{const e=navigator.languages,t=()=>navigator.language;return e&&e[0]||t()||pt};var Ye={},Qe=Ye.hasOwnProperty,Xs=Ye.toString,ts=Qe.toString,Ys=ts.call(Object),fe=function(e){var t,s;return!e||Xs.call(e)!=="[object Object]"?!1:(t=Object.getPrototypeOf(e),t?(s=Qe.call(t,"constructor")&&t.constructor,typeof s=="function"&&ts.call(s)===Ys):!0)},Qs=Object.create(null),es=function(e,t,s,n){var r,o,i,c,a,l,f=arguments[2]||{},u=3,d=arguments.length,h=arguments[0]||!1,p=arguments[1]?void 0:Qs;for(typeof f!="object"&&typeof f!="function"&&(f={});u<d;u++)if((a=arguments[u])!=null)for(c in a)r=f[c],i=a[c],!(c==="__proto__"||f===i)&&(h&&i&&(fe(i)||(o=Array.isArray(i)))?(o?(o=!1,l=r&&Array.isArray(r)?r:[]):l=r&&fe(r)?r:{},f[c]=es(h,arguments[1],l,i)):i!==p&&(f[c]=i));return f};const ee=function(e,t){return es(!0,!1,...arguments)},ss=new Map,ns=(e,t)=>{ss.set(e,t)},A=e=>ss.get(e),tn=e=>{const t=document.querySelector(`META[name="${e}"]`);return t&&t.getAttribute("content")},en=e=>{const t=tn("sap-allowedThemeOrigins");return t&&t.split(",").some(s=>s==="*"||e===s.trim())},sn=(e,t)=>{const s=new URL(e).pathname;return new URL(s,t).toString()},nn=e=>{let t,s;try{t=new URL(e);const n=t.origin;return t=t.toString(),t.startsWith(".")||t.startsWith("/")?s=new URL(t,window.location.href).toString():n&&en(n)?s=t.toString():s=sn(t,window.location.href),s.endsWith("/")||(s=`${s}/`),`${s}UI5/`}catch{}};var Gt;(function(e){e.Full="full",e.Basic="basic",e.Minimal="minimal",e.None="none"})(Gt||(Gt={}));const rn=Gt;let pe=!1,_={animationMode:rn.Full,theme:ft,themeRoot:void 0,rtl:void 0,language:void 0,calendarType:void 0,noConflict:!1,formatSettings:{},fetchDefaultLanguage:!1};const on=()=>(C(),_.animationMode),an=()=>(C(),_.theme),cn=()=>(C(),_.themeRoot),ln=()=>(C(),_.rtl),un=()=>(C(),_.language),dn=()=>(C(),_.fetchDefaultLanguage),hn=()=>(C(),_.noConflict),fn=()=>(C(),_.calendarType),rs=()=>(C(),_.formatSettings),gt=new Map;gt.set("true",!0);gt.set("false",!1);const pn=()=>{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&&(_=ee(_,t))}},gn=()=>{const e=new URLSearchParams(window.location.search);e.forEach((t,s)=>{const n=s.split("sap-").length;n===0||n===s.split("sap-ui-").length||ge(s,t,"sap")}),e.forEach((t,s)=>{!s.startsWith("sap-ui")||ge(s,t,"sap-ui")})},mn=e=>{const t=e.split("@")[1];return nn(t)},yn=(e,t)=>e==="theme"&&t.includes("@")?t.split("@")[0]:t,ge=(e,t,s)=>{const n=t.toLowerCase(),r=e.split(`${s}-`)[1];gt.has(t)&&(t=gt.get(n)),r==="theme"?(_.theme=yn(r,t),t&&t.includes("@")&&(_.themeRoot=mn(t))):_[r]=t},_n=()=>{const e=A("OpenUI5Support");if(!e||!e.isLoaded())return;const t=e.getConfigurationSettingsObject();_=ee(_,t)},C=()=>{typeof document>"u"||pe||(pn(),gn(),_n(),pe=!0)};class D{constructor(){this._eventRegistry=new Map}attachEvent(t,s){const n=this._eventRegistry,r=n.get(t);if(!Array.isArray(r)){n.set(t,[s]);return}r.includes(s)||r.push(s)}detachEvent(t,s){const n=this._eventRegistry,r=n.get(t);if(!r)return;const o=r.indexOf(s);o!==-1&&r.splice(o,1),r.length===0&&n.delete(t)}fireEvent(t,s){const r=this._eventRegistry.get(t);return r?r.map(o=>o.call(this,s)):[]}fireEventAsync(t,s){return Promise.all(this.fireEvent(t,s))}isHandlerAttached(t,s){const r=this._eventRegistry.get(t);return r?r.includes(s):!1}hasListeners(t){return!!this._eventRegistry.get(t)}}const os=new D,is="languageChange",as=e=>{os.attachEvent(is,e)},wn=e=>os.fireEventAsync(is,e),me=10;class vn{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(s=>s!==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 s;const n=new Map;for(s=this.shift();s;){const r=n.get(s)||0;if(r>me)throw new Error(`Web component processed too many times this task, max allowed is: ${me}`);t(s),n.set(s,r+1),s=this.shift()}}}const cs=(e,t=document.body)=>{let s=document.querySelector(e);return s||(s=document.createElement(e),t.insertBefore(s,t.firstChild))},An=()=>typeof document>"u"?null:cs("ui5-shared-resources",document.head),R=(e,t)=>{const s=e.split(".");let n=An();if(!n)return t;for(let r=0;r<s.length;r++){const o=s[r],i=r===s.length-1;Object.prototype.hasOwnProperty.call(n,o)||(n[o]=i?t:{}),n=n[o]}return n},Sn={version:"1.11.0-rc.3",major:1,minor:11,patch:0,suffix:"-rc.3",isNext:!1,buildTime:1677139950};let ct,$n="";const Lt=new Map,J=R("Runtimes",[]),bn=()=>{if(ct===void 0){ct=J.length;const e=Sn;J.push({...e,alias:$n,description:`Runtime ${ct} - ver ${e.version}`})}},ls=()=>ct,Cn=(e,t)=>{const s=`${e},${t}`;if(Lt.has(s))return Lt.get(s);const n=J[e],r=J[t];if(!n||!r)throw new Error("Invalid runtime index supplied");if(n.isNext||r.isNext)return n.buildTime-r.buildTime;const o=n.major-r.major;if(o)return o;const i=n.minor-r.minor;if(i)return i;const c=n.patch-r.patch;if(c)return c;const l=new Intl.Collator(void 0,{numeric:!0,sensitivity:"base"}).compare(n.suffix,r.suffix);return Lt.set(s,l),l},Tn=()=>J,us=R("Tags",new Map),se=new Set;let I=new Map,Mt;const ds=-1,En=e=>{se.add(e),us.set(e,ls())},Ln=e=>se.has(e),Mn=()=>[...se.values()],Pn=e=>{let t=us.get(e);t===void 0&&(t=ds),I.has(t)||I.set(t,new Set),I.get(t).add(e),Mt||(Mt=setTimeout(()=>{In(),I=new Map,Mt=void 0},1e3))},In=()=>{const e=Tn(),t=ls(),s=e[t];let n="Multiple UI5 Web Components instances detected.";e.length>1&&(n=`${n}
|
|
2
|
+
Loading order (versions before 1.1.0 not listed): ${e.map(r=>`
|
|
3
|
+
${r.description}`).join("")}`),[...I.keys()].forEach(r=>{let o,i;r===ds?(o=1,i={description:"Older unknown runtime"}):(o=Cn(t,r),i=e[r]);let c;o>0?c="an older":o<0?c="a newer":c="the same",n=`${n}
|
|
4
|
+
|
|
5
|
+
"${s.description}" failed to define ${I.get(r).size} tag(s) as they were defined by a runtime of ${c} version "${i.description}": ${[...I.get(r)].sort().join(", ")}.`,o>0?n=`${n}
|
|
6
|
+
WARNING! If your code uses features of the above web components, unavailable in ${i.description}, it might not work as expected!`:n=`${n}
|
|
7
|
+
Since the above web components were defined by the same or newer version runtime, they should be compatible with your code.`}),n=`${n}
|
|
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(n)},hs=new Set,xn=e=>{hs.add(e)},On=e=>hs.has(e),ne=new Set,Dn=new D,H=new vn;let N,lt,Pt,ot;const fs=async e=>{H.add(e),await Nn()},ps=e=>{Dn.fireEvent("beforeComponentRender",e),ne.add(e),e._render()},Rn=e=>{H.remove(e),ne.delete(e)},Nn=async()=>{ot||(ot=new Promise(e=>{window.requestAnimationFrame(()=>{H.process(ps),ot=null,e(),Pt||(Pt=setTimeout(()=>{Pt=void 0,H.isEmpty()&&Bn()},200))})})),await ot},kn=()=>N||(N=new Promise(e=>{lt=e,window.requestAnimationFrame(()=>{H.isEmpty()&&(N=void 0,e())})}),N),Un=()=>{const e=Mn().map(t=>customElements.whenDefined(t));return Promise.all(e)},re=async()=>{await Un(),await kn()},Bn=()=>{!H.isEmpty()||lt&&(lt(),lt=void 0,N=void 0)},St=async e=>{ne.forEach(t=>{const s=t.constructor,n=s.getMetadata().getTag(),r=On(s),o=s.getMetadata().isLanguageAware(),i=s.getMetadata().isThemeAware();(!e||e.tag===n||e.rtlAware&&r||e.languageAware&&o||e.themeAware&&i)&&fs(t)}),await re()};let G,Kt;const oe=()=>(G===void 0&&(G=un()),G),Hn=async e=>{G!==e&&(G=e,await wn(e),await St({languageAware:!0}))},Vn=e=>{Kt=e},Fn=()=>(Kt===void 0&&Vn(dn()),Kt),jn=/^((?:[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 gs{constructor(t){const s=jn.exec(t.replace(/_/g,"-"));if(s===null)throw new Error(`The given language ${t} does not adhere to BCP-47.`);this.sLocaleId=t,this.sLanguage=s[1]||pt,this.sScript=s[2]||"",this.sRegion=s[3]||"",this.sVariant=s[4]&&s[4].slice(1)||null,this.sExtension=s[5]&&s[5].slice(1)||null,this.sPrivateUse=s[6]||null,this.sLanguage&&(this.sLanguage=this.sLanguage.toLowerCase()),this.sScript&&(this.sScript=this.sScript.toLowerCase().replace(/^[a-z]/,n=>n.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 It=new Map,ms=e=>(It.has(e)||It.set(e,new gs(e)),It.get(e)),ye=e=>{try{if(e&&typeof e=="string")return ms(e)}catch{}return new gs(b)},Jt=e=>{if(e)return ye(e);const t=oe();return t?ms(t):ye(Xe())},zn=/^((?:[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,Wn={he:"iw",yi:"ji",nb:"no",sr:"sh"},Zn=e=>{let t;if(!e)return b;if(typeof e=="string"&&(t=zn.exec(e.replace(/_/g,"-")))){let s=t[1].toLowerCase(),n=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,i=t[6];return s=Wn[s]||s,i&&(t=_e.exec(i))||o&&(t=_e.exec(o))?`en_US_${t[1].toLowerCase()}`:(s==="zh"&&!n&&(r==="hans"?n="CN":r==="hant"&&(n="TW")),s+(n?"_"+n+(o?"_"+o.replace("-","_"):""):""))}return b},qn=e=>{if(!e)return b;if(e==="zh_HK")return"zh_TW";const t=e.lastIndexOf("_");return t>=0?e.slice(0,t):e!==b?b:""},we=new Set,ve=new Set,ie=new Map,xt=new Map,ae=new Map,Gn=(e,t,s)=>{const n=`${e}/${t}`;ae.set(n,s)},Ae=(e,t)=>{ie.set(e,t)},Kn=e=>ie.get(e),Se=(e,t)=>{const s=`${e}/${t}`;return ae.has(s)},Jn=(e,t)=>{const s=`${e}/${t}`,n=ae.get(s);return n&&!xt.get(s)&&xt.set(s,n(t)),xt.get(s)},Xn=e=>{we.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.`),we.add(e))},ys=async e=>{const t=Jt().getLanguage(),s=Jt().getRegion();let n=Zn(t+(s?`-${s}`:""));for(;n!==pt&&!Se(e,n);)n=qn(n);const r=Fn();if(n===pt&&!r){Ae(e,null);return}if(!Se(e,n)){Xn(e);return}try{const o=await Jn(e,n);Ae(e,o)}catch(o){const i=o;ve.has(i.message)||(ve.add(i.message),console.error(i.message))}};as(e=>{const t=[...ie.keys()];return Promise.all(t.map(ys))});const Yn=new Map,mt=new Map,Ot=new Map,$e=new Set;let be=!1;const Qn={iw:"he",ji:"yi",in:"id"},Ce=e=>{be||(console.warn(`[LocaleData] Supported locale "${e}" not configured, import the "Assets.js" module from the webcomponents package you are using.`),be=!0)},tr=(e,t,s)=>{e=e&&Qn[e]||e,e==="no"&&(e="nb"),e==="zh"&&!t&&(s==="Hans"?t="CN":s==="Hant"&&(t="TW")),(e==="sh"||e==="sr"&&s==="Latn")&&(e="sr",t="Latn");let n=`${e}_${t}`;return he.includes(n)||(n=e,he.includes(n))?mt.has(n)?n:(Ce(n),b):b},Te=(e,t)=>{Yn.set(e,t)},er=e=>{if(!Ot.get(e)){const t=mt.get(e);if(!t)throw new Error(`CLDR data for locale ${e} is not loaded!`);Ot.set(e,t(e))}return Ot.get(e)},sr=async(e,t,s)=>{const n=tr(e,t,s),r=A("OpenUI5Support");if(r){const o=r.getLocaleDataObject();if(o){Te(n,o);return}}try{const o=await er(n);Te(n,o)}catch(o){const i=o;$e.has(i.message)||($e.add(i.message),console.error(i.message))}},nr=(e,t)=>{mt.set(e,t)};nr("en",async()=>(await fetch("https://sdk.openui5.org/1.103.0/resources/sap/ui/core/cldr/en.json")).json());as(()=>{const e=Jt();return sr(e.getLanguage(),e.getRegion(),e.getScript())});const _s=new Map,ws=new Map,vs=new Set,yt=new Set,L=(e,t,s)=>{ws.set(`${e}/${t}`,s),vs.add(e),yt.add(t)},As=async(e,t)=>{const s=_s.get(`${e}_${t}`);if(s!==void 0)return s;if(!yt.has(t)){const n=[...yt.values()].join(", ");return console.warn(`You have requested a non-registered theme ${t} - falling back to ${ft}. Registered themes are: ${n}`),Ee(e,ft)}return Ee(e,t)},Ee=async(e,t)=>{const s=ws.get(`${e}/${t}`);if(!s){console.error(`Theme [${t}] not registered for package [${e}]`);return}let n;try{n=await s(t)}catch(o){console.error(e,o.message);return}const r=n._||n;return _s.set(`${e}_${t}`,r),r},Ss=()=>vs,rr=e=>yt.has(e);var _t;(function(e){e["SAP-icons"]="SAP-icons-v4",e.horizon="SAP-icons-v5",e["SAP-icons-TNT"]="tnt",e.BusinessSuiteInAppSymbols="business-suite"})(_t||(_t={}));const $s=e=>_t[e]?_t[e]:e,or=(e,t)=>{const s=document.createElement("style");return s.type="text/css",t&&Object.entries(t).forEach(n=>s.setAttribute(...n)),s.textContent=e,document.head.appendChild(s),s},ir=(e,t)=>{const s=document.createElement("link");return s.type="text/css",s.rel="stylesheet",t&&Object.entries(t).forEach(n=>s.setAttribute(...n)),s.href=e,document.head.appendChild(s),new Promise(n=>{s.addEventListener("load",n),s.addEventListener("error",n)})},$t=(e,t)=>t?`${e}|${t}`:e,bt=(e,t,s="")=>{const n=typeof e=="string"?e:e.content;if(document.adoptedStyleSheets){const r=new CSSStyleSheet;r.replaceSync(n),r._ui5StyleId=$t(t,s),document.adoptedStyleSheets=[...document.adoptedStyleSheets,r]}else{const r={};r[t]=s,or(n,r)}},ar=(e,t,s="")=>{const n=typeof e=="string"?e:e.content;if(document.adoptedStyleSheets){const r=document.adoptedStyleSheets.find(o=>o._ui5StyleId===$t(t,s));r&&r.replaceSync(n||"")}else{const r=document.querySelector(`head>style[${t}="${s}"]`);r&&(r.textContent=n||"")}},Ct=(e,t="")=>document.adoptedStyleSheets?!!document.adoptedStyleSheets.find(s=>s._ui5StyleId===$t(e,t)):!!document.querySelector(`head>style[${e}="${t}"]`),cr=(e,t="")=>{var s;if(document.adoptedStyleSheets)document.adoptedStyleSheets=document.adoptedStyleSheets.filter(n=>n._ui5StyleId!==$t(e,t));else{const n=document.querySelector(`head > style[${e}="${t}"]`);(s=n==null?void 0:n.parentElement)==null||s.removeChild(n)}},bs=(e,t,s="")=>{Ct(t,s)?ar(e,t,s):bt(e,t,s)},k=new Set,lr=()=>{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},ur=e=>{const t=/\(["']?data:text\/plain;utf-8,(.*?)['"]?\)$/i.exec(e);if(t&&t.length>=2){let s=t[1];if(s=s.replace(/\\"/g,'"'),s.charAt(0)!=="{"&&s.charAt(s.length-1)!=="}")try{s=decodeURIComponent(s)}catch{k.has("decode")||(console.warn("Malformed theme metadata string, unable to decodeURIComponent"),k.add("decode"));return}try{return JSON.parse(s)}catch{k.has("parse")||(console.warn("Malformed theme metadata string, unable to parse JSON"),k.add("parse"))}}},dr=e=>{let t,s;try{t=e.Path.match(/\.([^.]+)\.css_variables$/)[1],s=e.Extends[0]}catch{k.has("object")||(console.warn("Malformed theme metadata Object",e),k.add("object"));return}return{themeName:t,baseThemeName:s}},Le=()=>{const e=lr();if(!e||e==="none")return;const t=ur(e);if(t)return dr(t)},hr=new D,fr="themeLoaded",pr=e=>hr.fireEvent(fr,e);let Dt;const Cs=()=>(Dt===void 0&&(Dt=cn()),Dt),gr=e=>`${Cs()}Base/baseLib/${e}/css_variables.css`,mr=async e=>{const t=document.querySelector(`[sap-ui-webcomponents-theme="${e}"]`);t&&document.head.removeChild(t),await ir(gr(e),{"sap-ui-webcomponents-theme":e})},X="@ui5/webcomponents-theming",yr=()=>Ss().has(X),_r=async e=>{if(!yr())return;const t=await As(X,e);t&&bs(t,"data-ui5-theme-properties",X)},wr=()=>{cr("data-ui5-theme-properties",X)},vr=async e=>{const s=[...Ss()].map(async n=>{if(n===X)return;const r=await As(n,e);r&&bs(r,"data-ui5-theme-properties",n)});return Promise.all(s)},Ar=async e=>{var n;const t=Le();if(t)return t;const s=A("OpenUI5Support");if(s){if(s.cssVariablesLoaded())return{themeName:(n=s.getConfigurationSettingsObject())==null?void 0:n.theme,baseThemeName:""}}else if(Cs())return await mr(e),Le()},Ts=async e=>{const t=await Ar(e);!t||e!==t.themeName?await _r(e):wr();const s=rr(e)?e:t&&t.baseThemeName;await vr(s||ft),pr(e)};let U;const Tt=()=>(U===void 0&&(U=an()),U),Es=async e=>{U!==e&&(U=e,await Ts(U),await St({themeAware:!0}))},Sr=e=>Tt().startsWith(e),$r=new Map;var E;(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"})(E||(E={}));const br=e=>{const t=Tt(),s=$r.get(t);return!e&&s?$s(s):Cr(e)},Cr=e=>{const t=Sr("sap_horizon");return e?e==="tnt"?t?E.SAPIconsTNTV3:E.SAPIconsTNTV2:e==="business-suite"?t?E.SAPBSIconsV2:E.SAPBSIconsV1:e:t?E.SAPIconsV5:E.SAPIconsV4},Me=new Map,wt=R("SVGIcons.registry",new Map),Rt=R("SVGIcons.promises",new Map),Pe="ICON_NOT_FOUND",Tr=async e=>{if(!Rt.has(e)){if(!Me.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=Me.get(e);Rt.set(e,t(e))}return Rt.get(e)},Er=e=>{Object.keys(e.data).forEach(t=>{const s=e.data[t];Lr(t,{pathData:s.path||s.paths,ltr:s.ltr,accData:s.acc,collection:e.collection,packageName:e.packageName})})},Lr=(e,t)=>{const s=`${t.collection}/${e}`;wt.set(s,{pathData:t.pathData,ltr:t.ltr,accData:t.accData,packageName:t.packageName,customTemplate:t.customTemplate,viewBox:t.viewBox,collection:t.collection})},Mr=e=>{e.startsWith("sap-icon://")&&(e=e.replace("sap-icon://",""));let t;[e,t]=e.split("/").reverse(),e=e.replace("icon-",""),t&&(t=$s(t)),t=br(t);const s=`${t}/${e}`;return{name:e,collection:t,registryKey:s}},Nt=async e=>{const{collection:t,registryKey:s}=Mr(e);let n=Pe;try{n=await Tr(t)}catch(r){console.error(r.message)}return n===Pe?n:(wt.has(s)||Er(n),wt.get(s))},Pr=async()=>(await Nt("edit"),await Nt("tnt/arrow"),await Nt("business-suite/3d"),Array.from(wt.keys())),Ir=R("PopupUtilsData",{currentZIndex:100}),Ie=()=>Ir.currentZIndex,S=()=>{var e,t,s;return(s=(t=(e=window.sap)==null?void 0:e.ui)==null?void 0:t.getCore)==null?void 0:s.call(t)};class ce{static isLoaded(){return!!S()}static init(){const t=S();return t?new Promise(s=>{t.attachInit(()=>{window.sap.ui.require(["sap/ui/core/LocaleData","sap/ui/core/Popup"],(n,r)=>{r.setInitialZIndex(Ie()),s()})})}):Promise.resolve()}static getConfigurationSettingsObject(){const t=S();if(!t)return;const s=t.getConfiguration(),n=window.sap.ui.require("sap/ui/core/LocaleData");return{animationMode:s.getAnimationMode(),language:s.getLanguage(),theme:s.getTheme(),themeRoot:s.getThemeRoot(),rtl:s.getRTL(),calendarType:s.getCalendarType(),formatSettings:{firstDayOfWeek:n?n.getInstance(s.getLocale()).getFirstDayOfWeek():void 0,legacyDateCalendarCustomizing:s.getFormatSettings().getLegacyDateCalendarCustomizing()}}}static getLocaleDataObject(){const t=S();if(!t)return;const s=t.getConfiguration();return window.sap.ui.require("sap/ui/core/LocaleData").getInstance(s.getLocale())._get()}static _listenForThemeChange(){const t=S(),s=t.getConfiguration();t.attachThemeChanged(async()=>{await Es(s.getTheme())})}static attachListeners(){!S()||ce._listenForThemeChange()}static cssVariablesLoaded(){if(!S())return;const s=[...document.head.children].find(n=>n.id==="sap-ui-theme-sap.ui.core");if(!!s)return!!s.href.match(/\/css(-|_)variables\.css/)}static getNextZIndex(){return S()?window.sap.ui.require("sap/ui/core/Popup").getNextZIndex():void 0}static setInitialZIndex(){if(!S())return;window.sap.ui.require("sap/ui/core/Popup").setInitialZIndex(Ie())}}ns("OpenUI5Support",ce);const xr=()=>new Promise(e=>{document.body?e():document.addEventListener("DOMContentLoaded",()=>{e()})}),Or={packageName:"@ui5/webcomponents-base",fileName:"FontFace.css",content:`@font-face{font-family:"72";font-style:normal;font-weight:400;src:local("72"),url(https://sdk.openui5.org/resources/sap/ui/core/themes/sap_fiori_3/fonts/72-Regular.woff2?ui5-webcomponents) format("woff2")}@font-face{font-family:"72full";font-style:normal;font-weight:400;src:local('72-full'),url(https://sdk.openui5.org/resources/sap/ui/core/themes/sap_fiori_3/fonts/72-Regular-full.woff2?ui5-webcomponents) format("woff2")}@font-face{font-family:"72";font-style:normal;font-weight:700;src:local('72-Bold'),url(https://sdk.openui5.org/resources/sap/ui/core/themes/sap_fiori_3/fonts/72-Bold.woff2?ui5-webcomponents) format("woff2")}@font-face{font-family:"72full";font-style:normal;font-weight:700;src:local('72-Bold-full'),url(https://sdk.openui5.org/resources/sap/ui/core/themes/sap_fiori_3/fonts/72-Bold-full.woff2?ui5-webcomponents) format("woff2")}@font-face{font-family:'72-Bold';font-style:normal;src:local('72-Bold'),url(https://sdk.openui5.org/resources/sap/ui/core/themes/sap_fiori_3/fonts/72-Bold.woff2?ui5-webcomponents) format("woff2")}@font-face{font-family:'72-Boldfull';font-style:normal;src:url(https://sdk.openui5.org/resources/sap/ui/core/themes/sap_fiori_3/fonts/72-Bold-full.woff2?ui5-webcomponents) format("woff2")}@font-face{font-family:'72-Light';font-style:normal;src:local('72-Light'),url(https://sdk.openui5.org/resources/sap/ui/core/themes/sap_fiori_3/fonts/72-Light.woff2?ui5-webcomponents) format("woff2")}@font-face{font-family:'72-Lightfull';font-style:normal;src:url(https://sdk.openui5.org/resources/sap/ui/core/themes/sap_fiori_3/fonts/72-Light-full.woff2?ui5-webcomponents) format("woff2")}@font-face{font-family:"72Black";font-style:bold;font-weight:900;src:local('72Black'),url(https://sdk.openui5.org/resources/sap/ui/core/themes/sap_horizon/fonts/72-Black.woff2?ui5-webcomponents) format("woff2")}`},Dr={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')}"},Rr=()=>{const e=A("OpenUI5Support");(!e||!e.isLoaded())&&Nr(),kr()},Nr=()=>{Ct("data-ui5-font-face")||bt(Or,"data-ui5-font-face")},kr=()=>{Ct("data-ui5-font-face-override")||bt(Dr,"data-ui5-font-face-override")},Ur={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}"},Br=()=>{Ct("data-ui5-system-css-vars")||bt(Ur,"data-ui5-system-css-vars")};let it;const Hr=async()=>{if(it!==void 0)return it;const e=async t=>{if(typeof document>"u"){t();return}bn();const s=A("OpenUI5Support"),n=s?s.isLoaded():!1,r=A("F6Navigation");s&&await s.init(),r&&!n&&r.init(),await xr(),await Ts(Tt()),s&&s.attachListeners(),Rr(),Br(),t()};return it=new Promise(e),it},kt=new Map,Ut=new Map,xe=e=>{if(!kt.has(e)){const t=Vr(e.split("-"));kt.set(e,t)}return kt.get(e)},Ls=e=>{if(!Ut.has(e)){const t=e.replace(/([a-z])([A-Z])/g,"$1-$2").toLowerCase();Ut.set(e,t)}return Ut.get(e)},Vr=e=>e.map((t,s)=>s===0?t.toLowerCase():t.charAt(0).toUpperCase()+t.slice(1).toLowerCase()).join(""),Fr=e=>{if(!(e instanceof HTMLElement))return"default";const t=e.getAttribute("slot");if(t){const s=t.match(/^(.+?)-\d+$/);return s?s[1]:t}return"default"},Ms=e=>e instanceof HTMLSlotElement?e.assignedNodes({flatten:!0}).filter(t=>t instanceof HTMLElement):[e],jr=e=>e.reduce((t,s)=>t.concat(Ms(s)),[]);let zr,Oe={include:[/^ui5-/],exclude:[]};const Bt=new Map,Ps=()=>zr,Xt=e=>{if(!Bt.has(e)){const t=Oe.include.some(s=>e.match(s))&&!Oe.exclude.some(s=>e.match(s));Bt.set(e,t)}return Bt.get(e)},Is=e=>{if(Xt(e))return Ps()};class Wr{constructor(t){this.metadata=t}getInitialState(){if(Object.prototype.hasOwnProperty.call(this,"_initialState"))return this._initialState;const t={},s=this.slotsAreManaged(),n=this.getProperties();for(const r in n){const o=n[r].type,i=n[r].defaultValue;o===Boolean?(t[r]=!1,i!==void 0&&console.warn("The 'defaultValue' metadata key is ignored for all booleans properties, they would be initialized with 'false' by default")):n[r].multiple?t[r]=[]:o===Object?t[r]="defaultValue"in n[r]?n[r].defaultValue:{}:o===String?t[r]="defaultValue"in n[r]?n[r].defaultValue:"":t[r]=i}if(s){const r=this.getSlots();for(const[o,i]of Object.entries(r)){const c=i.propertyName||o;t[c]=[]}}return this._initialState=t,t}static validatePropertyValue(t,s){return s.multiple&&t?t.map(r=>De(r,s)):De(t,s)}static validateSlotValue(t,s){return Zr(t,s)}getPureTag(){return this.metadata.tag||""}getTag(){const t=this.metadata.tag;if(!t)return"";const s=Is(t);return s?`${t}-${s}`:t}hasAttribute(t){const s=this.getProperties()[t];return s.type!==Object&&!s.noAttribute&&!s.multiple}getPropertiesList(){return Object.keys(this.getProperties())}getAttributesList(){return this.getPropertiesList().filter(this.hasAttribute.bind(this)).map(Ls)}canSlotText(){const t=this.getSlots().default;return t&&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,s,n){const r=this.getSlots()[t].invalidateOnChildChange;if(r===void 0)return!1;if(typeof r=="boolean")return r;if(typeof r=="object"){if(s==="property"){if(r.properties===void 0)return!1;if(typeof r.properties=="boolean")return r.properties;if(Array.isArray(r.properties))return r.properties.includes(n);throw new Error("Wrong format for invalidateOnChildChange.properties: boolean or array is expected")}if(s==="slot"){if(r.slots===void 0)return!1;if(typeof r.slots=="boolean")return r.slots;if(Array.isArray(r.slots))return r.slots.includes(n);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 De=(e,t)=>{const s=t.type;let n=t.validator;return s&&s.isDataTypeClass&&(n=s),n?n.isValid(e)?e:t.defaultValue:!s||s===String?typeof e=="string"||typeof e>"u"||e===null?e:e.toString():s===Boolean?typeof e=="boolean"?e:!1:s===Object?typeof e=="object"?e:t.defaultValue:e in s?e:t.defaultValue},Zr=(e,t)=>(e&&Ms(e).forEach(s=>{if(!(s instanceof t.type))throw new Error(`The element is not of type ${t.type.toString()}`)}),e);customElements.get("ui5-static-area")||customElements.define("ui5-static-area",class extends HTMLElement{});const qr=(e,t)=>{const s=Gr(t),n=Ps();return e(t,s,n)},Gr=e=>{const t=e.constructor,s=t.getMetadata().getPureTag(),n=t.getUniqueDependencies().map(r=>r.getMetadata().getPureTag()).filter(Xt);return Xt(s)&&n.push(s),n},Kr=()=>R("CustomStyle.eventProvider",new D),Jr="CustomCSSChange",le=e=>{Kr().attachEvent(Jr,e)},Xr=()=>R("CustomStyle.customCSSFor",{});le(e=>{St({tag:e})});const Yr=e=>{const t=Xr();return t[e]?t[e].join(""):""},Qr=10,Ht=e=>Array.isArray(e)?e.filter(t=>!!t).flat(Qr).map(t=>typeof t=="string"?t:t.content).join(" "):typeof e=="string"?e:e.content,ut=new Map;le(e=>{ut.delete(`${e}_normal`)});const xs=(e,t=!1)=>{const s=e.getMetadata().getTag(),n=`${s}_${t?"static":"normal"}`,r=A("OpenUI5Enablement");if(!ut.has(n)){let o,i="";if(r&&(i=Ht(r.getBusyIndicatorStyles())),t)o=Ht(e.staticAreaStyles);else{const c=Yr(s)||"";o=`${Ht(e.styles)} ${c}`}o=`${o} ${i}`,ut.set(n,o)}return ut.get(n)},dt=new Map;le(e=>{dt.delete(`${e}_normal`)});const to=(e,t=!1)=>{const n=`${e.getMetadata().getTag()}_${t?"static":"normal"}`;if(!dt.has(n)){const r=xs(e,t),o=new CSSStyleSheet;o.replaceSync(r),dt.set(n,[o])}return dt.get(n)},Yt=(e,t=!1)=>{let s;const n=e.constructor,o=n[t?"staticAreaTemplate":"template"],i=t?e.staticAreaItem.shadowRoot:e.shadowRoot,c=qr(o,e);if(!i){console.warn("There is no shadow root to update");return}document.adoptedStyleSheets?i.adoptedStyleSheets=to(n,t):s=xs(n,t),n.render(c,i,s,t,{host:e})},eo="--_ui5_content_density",so=e=>getComputedStyle(e).getPropertyValue(eo),no=e=>{const t=/\$([-a-z0-9A-Z._]+)(?::([^$]*))?\$/.exec(e);return t&&t[2]?t[2].split(/,/):null},ro={iw:"he",ji:"yi",in:"id",sh:"sr"},oo=no("$cldr-rtl-locales:ar,fa,he$")||[],io=e=>(e=e&&ro[e]||e,oo.indexOf(e)>=0),Os=()=>{if(typeof document>"u")return!1;const e=ln();return e!==void 0?!!e:io(oe()||Xe())},ao="--_ui5_dir",Ds=e=>{const t=window.document,s=["ltr","rtl"],n=getComputedStyle(e).getPropertyValue(ao);return s.includes(n)?n:s.includes(e.dir)?e.dir:s.includes(t.documentElement.dir)?t.documentElement.dir:s.includes(t.body.dir)?t.body.dir:Os()?"rtl":void 0},at="ui5-static-area-item",co="data-sap-ui-integration-popup-content";class K 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._updateAdditionalAttrs(),this._updateContentDensity(),this._updateDirection(),Yt(this.ownerElement,!0))}_updateContentDensity(){so(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=Ds(this.ownerElement);t?this.setAttribute("dir",t):this.removeAttribute("dir")}}_updateAdditionalAttrs(){this.setAttribute(at,""),this.setAttribute(co,"")}async getDomRef(){return this._updateContentDensity(),this._rendered||(this._rendered=!0,Yt(this.ownerElement,!0)),await re(),this.shadowRoot}static getTag(){const t=Is(at);return t?`${at}-${t}`:at}static createInstance(){return customElements.get(K.getTag())||customElements.define(K.getTag(),K),document.createElement(this.getTag())}}const Qt=new WeakMap,lo=(e,t,s)=>{const n=new MutationObserver(t);Qt.set(e,n),n.observe(e,s)},uo=e=>{const t=Qt.get(e);t&&(t.disconnect(),Qt.delete(e))},ho=["value-changed"];let ht;const fo=e=>ho.includes(e),po=e=>{const t=ue();return!(typeof t!="boolean"&&t.events&&t.events.includes&&t.events.includes(e))},ue=()=>(ht===void 0&&(ht=hn()),ht),go=e=>{ht=e},mo=e=>{const t=ue();return fo(e)?!1:t===!0?!0:!po(e)},yo=["disabled","title","hidden","role","draggable"],Re=e=>yo.includes(e)||e.startsWith("aria")?!0:![HTMLElement,Element,Node].some(s=>s.prototype.hasOwnProperty(e)),Ne=(e,t)=>{if(e.length!==t.length)return!1;for(let s=0;s<e.length;s++)if(e[s]!==t[s])return!1;return!0};let _o=0;const ke=new Map,Vt=new Map;function z(e){this._suppressInvalidation||(this.onInvalidation(e),this._changedState.push(e),fs(this),this._eventProvider.fireEvent("invalidate",{...e,target:this}))}let Ue={};class T 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._eventProvider=new D;let s;this._domRefReadyPromise=new Promise(n=>{s=n}),this._domRefReadyPromise._deferredResolve=s,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_${++_o}`),this.__id}async connectedCallback(){const t=this.constructor;this.setAttribute(t.getMetadata().getPureTag(),""),t.getMetadata().supportsF6FastNavigation()&&this.setAttribute("data-sap-ui-fastnavgroup","true");const s=t.getMetadata().slotsAreManaged();this._inDOM=!0,s&&(this._startObservingDOMChildren(),await this._processChildren()),this._inDOM&&(ps(this),this._domRefReadyPromise._deferredResolve(),this._fullyConnected=!0,this.onEnterDOM())}disconnectedCallback(){const s=this.constructor.getMetadata().slotsAreManaged();this._inDOM=!1,s&&this._stopObservingDOMChildren(),this._fullyConnected&&(this.onExitDOM(),this._fullyConnected=!1),this.staticAreaItem&&this.staticAreaItem.parentElement&&this.staticAreaItem.parentElement.removeChild(this.staticAreaItem),Rn(this)}onBeforeRendering(){}onAfterRendering(){}onEnterDOM(){}onExitDOM(){}_startObservingDOMChildren(){const t=this.constructor;if(!t.getMetadata().hasSlots())return;const n=t.getMetadata().canSlotText(),r={childList:!0,subtree:n,characterData:n};lo(this,this._processChildren.bind(this),r)}_stopObservingDOMChildren(){uo(this)}async _processChildren(){this.constructor.getMetadata().hasSlots()&&await this._updateSlots()}async _updateSlots(){const t=this.constructor,s=t.getMetadata().getSlots(),n=t.getMetadata().canSlotText(),r=Array.from(n?this.childNodes:this.children),o=new Map,i=new Map;for(const[u,d]of Object.entries(s)){const h=d.propertyName||u;i.set(h,u),o.set(h,[...this._state[h]]),this._clearSlot(u,d)}const c=new Map,a=new Map,l=r.map(async(u,d)=>{const h=Fr(u),p=s[h];if(p===void 0){if(h!=="default"){const g=Object.keys(s).join(", ");console.warn(`Unknown slotName: ${h}, ignoring`,u,`Valid values are: ${g}`)}return}if(p.individualSlots){const g=(c.get(h)||0)+1;c.set(h,g),u._individualSlot=`${h}-${g}`}if(u instanceof HTMLElement){const g=u.localName;if(g.includes("-")){if(!window.customElements.get(g)){const Ks=window.customElements.whenDefined(g);let rt=ke.get(g);rt||(rt=new Promise(Js=>setTimeout(Js,1e3)),ke.set(g,rt)),await Promise.race([Ks,rt])}window.customElements.upgrade(u)}}if(u=t.getMetadata().constructor.validateSlotValue(u,p),Be(u)&&p.invalidateOnChildChange){const g=this._getChildChangeListener(h);g&&u.attachInvalidate.call(u,g)}u instanceof HTMLSlotElement&&this._attachSlotChange(u,h);const m=p.propertyName||h;a.has(m)?a.get(m).push({child:u,idx:d}):a.set(m,[{child:u,idx:d}])});await Promise.all(l),a.forEach((u,d)=>{this._state[d]=u.sort((h,p)=>h.idx-p.idx).map(h=>h.child)});let f=!1;for(const[u,d]of Object.entries(s)){const h=d.propertyName||u;Ne(o.get(h),this._state[h])||(z.call(this,{type:"slot",name:i.get(h),reason:"children"}),f=!0)}f||z.call(this,{type:"slot",name:"default",reason:"textcontent"})}_clearSlot(t,s){const n=s.propertyName||t;this._state[n].forEach(o=>{if(Be(o)){const i=this._getChildChangeListener(t);i&&o.detachInvalidate.call(o,i)}o instanceof HTMLSlotElement&&this._detachSlotChange(o,t)}),this._state[n]=[]}attachInvalidate(t){this._eventProvider.attachEvent("invalidate",t)}detachInvalidate(t){this._eventProvider.detachEvent("invalidate",t)}_onChildChange(t,s){!this.constructor.getMetadata().shouldInvalidateOnChildChange(t,s.type,s.name)||z.call(this,{type:"slot",name:t,reason:"childchange",child:s.target})}attributeChangedCallback(t,s,n){let r;if(this._doNotSyncAttributes.has(t))return;const o=this.constructor.getMetadata().getProperties(),i=t.replace(/^ui5-/,""),c=xe(i);if(o.hasOwnProperty(c)){const a=o[c],l=a.type;let f=a.validator;l&&l.isDataTypeClass&&(f=l),f?r=f.attributeToProperty(n):l===Boolean?r=n!==null:r=n,this[c]=r}}_updateAttribute(t,s){const n=this.constructor;if(!n.getMetadata().hasAttribute(t))return;const o=n.getMetadata().getProperties()[t],i=o.type;let c=o.validator;const a=Ls(t),l=this.getAttribute(a);if(i&&i.isDataTypeClass&&(c=i),c){const f=c.propertyToAttribute(s);f===null?(this._doNotSyncAttributes.add(a),this.removeAttribute(a),this._doNotSyncAttributes.delete(a)):this.setAttribute(a,f)}else i===Boolean?s===!0&&l===null?this.setAttribute(a,""):s===!1&&l!==null&&this.removeAttribute(a):typeof s!="object"&&l!==s&&this.setAttribute(a,s)}_upgradeProperty(t){if(this.hasOwnProperty(t)){const s=this[t];delete this[t],this[t]=s}}_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,s){const n=this._getSlotChangeListener(s);n&&t.addEventListener("slotchange",n)}_detachSlotChange(t,s){t.removeEventListener("slotchange",this._getSlotChangeListener(s))}_onSlotChange(t){z.call(this,{type:"slot",name:t,reason:"slotchange"})}onInvalidation(t){}_render(){const t=this.constructor,s=t.getMetadata().hasIndividualSlots();this._suppressInvalidation=!0,this.onBeforeRendering(),this._onComponentStateFinalized&&this._onComponentStateFinalized(),this._suppressInvalidation=!1,this._changedState=[],t._needsShadowDOM()&&Yt(this),this.staticAreaItem&&this.staticAreaItem.update(),s&&this._assignIndividualSlotsToChildren(),this.onAfterRendering()}_assignIndividualSlotsToChildren(){Array.from(this.children).forEach(s=>{s._individualSlot&&s.setAttribute("slot",s._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(s=>!["link","style"].includes(s.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 s=this.getFocusDomRef();s&&typeof s.focus=="function"&&s.focus(t)}fireEvent(t,s,n=!1,r=!0){const o=this._fireEvent(t,s,n,r),i=xe(t);return i!==t?o&&this._fireEvent(i,s,n):o}_fireEvent(t,s,n=!1,r=!0){const o=new CustomEvent(`ui5-${t}`,{detail:s,composed:!1,bubbles:r,cancelable:n}),i=this.dispatchEvent(o);if(mo(t))return i;const c=new CustomEvent(t,{detail:s,composed:!1,bubbles:r,cancelable:n});return this.dispatchEvent(c)&&i}getSlottedNodes(t){return jr(this[t])}get effectiveDir(){return xn(this.constructor),Ds(this)}get isUI5Element(){return!0}get classes(){return{}}static get observedAttributes(){return this.getMetadata().getAttributesList()}static _needsShadowDOM(){return!!this.template}static _needsStaticArea(){return!!this.staticAreaTemplate}getStaticAreaItemDomRef(){if(!this.constructor._needsStaticArea())throw new Error("This component does not use the static area");return this.staticAreaItem||(this.staticAreaItem=K.createInstance(),this.staticAreaItem.setOwnerElement(this)),this.staticAreaItem.parentElement||cs("ui5-static-area").appendChild(this.staticAreaItem),this.staticAreaItem.getDomRef()}static _generateAccessors(){const t=this.prototype,s=this.getMetadata().slotsAreManaged(),n=this.getMetadata().getProperties();for(const[r,o]of Object.entries(n)){if(Re(r)||console.warn(`"${r}" is not a valid property name. Use a name that does not collide with DOM APIs`),o.type===Boolean&&o.defaultValue)throw new Error(`Cannot set a default value for property "${r}". All booleans are false by default.`);if(o.type===Array)throw new Error(`Wrong type for property "${r}". Properties cannot be of type Array - use "multiple: true" and set "type" to the single value type, such as "String", "Object", etc...`);if(o.type===Object&&o.defaultValue)throw new Error(`Cannot set a default value for property "${r}". All properties of type "Object" are empty objects by default.`);if(o.multiple&&o.defaultValue)throw new Error(`Cannot set a default value for property "${r}". All multiple properties are empty arrays by default.`);Object.defineProperty(t,r,{get(){if(this._state[r]!==void 0)return this._state[r];const i=o.defaultValue;return o.type===Boolean?!1:o.type===String?i:o.multiple?[]:i},set(i){let c;i=this.constructor.getMetadata().constructor.validatePropertyValue(i,o);const f=o.type;let u=o.validator;const d=this._state[r];f&&f.isDataTypeClass&&(u=f),u?c=!u.valuesAreEqual(d,i):Array.isArray(d)&&Array.isArray(i)&&o.multiple&&o.compareValues?c=!Ne(d,i):c=d!==i,c&&(this._state[r]=i,z.call(this,{type:"property",name:r,newValue:i,oldValue:d}),this._updateAttribute(r,i))}})}if(s){const r=this.getMetadata().getSlots();for(const[o,i]of Object.entries(r)){Re(o)||console.warn(`"${o}" is not a valid property name. Use a name that does not collide with DOM APIs`);const c=i.propertyName||o;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 metadata(){return Ue}static set metadata(t){Ue=t}static get styles(){return""}static get staticAreaStyles(){return""}static get dependencies(){return[]}static getUniqueDependencies(){if(!Vt.has(this)){const t=this.dependencies.filter((s,n,r)=>r.indexOf(s)===n);Vt.set(this,t)}return Vt.get(this)||[]}static whenDependenciesDefined(){return Promise.all(this.getUniqueDependencies().map(t=>t.define()))}static async onDefine(){return Promise.resolve()}static async define(){await Hr(),await Promise.all([this.whenDependenciesDefined(),this.onDefine()]);const t=this.getMetadata().getTag(),s=Ln(t),n=customElements.get(t);return n&&!s?Pn(t):n||(this._generateAccessors(),En(t),window.customElements.define(t,this)),this}static getMetadata(){if(this.hasOwnProperty("_metadata"))return this._metadata;const s=[Object.keys(this.metadata).length?this.metadata:this.decoratorMetadata];let n=this;for(;n!==T;){n=Object.getPrototypeOf(n);const o=Object.keys(n.metadata).length?n.metadata:n.decoratorMetadata;s.unshift(o)}const r=ee({},...s);return this._metadata=new Wr(r),this._metadata}}T.decoratorMetadata={};const Be=e=>"isUI5Element"in e;/**
|
|
10
|
+
* @license
|
|
11
|
+
* Copyright 2017 Google LLC
|
|
12
|
+
* SPDX-License-Identifier: BSD-3-Clause
|
|
13
|
+
*/var Ft;const vt=window,V=vt.trustedTypes,He=V?V.createPolicy("lit-html",{createHTML:e=>e}):void 0,$=`lit$${(Math.random()+"").slice(9)}$`,de="?"+$,wo=`<${de}>`,F=document,Y=(e="")=>F.createComment(e),Q=e=>e===null||typeof e!="object"&&typeof e!="function",Rs=Array.isArray,Ns=e=>Rs(e)||typeof(e==null?void 0:e[Symbol.iterator])=="function",W=/<(?:(!--|\/[^a-zA-Z])|(\/?[a-zA-Z][^>\s]*)|(\/?$))/g,Ve=/-->/g,Fe=/>/g,M=RegExp(`>|[
|
|
14
|
+
\f\r](?:([^\\s"'>=/]+)([
|
|
15
|
+
\f\r]*=[
|
|
16
|
+
\f\r]*(?:[^
|
|
17
|
+
\f\r"'\`<>=]|("|')|))|$)`,"g"),je=/'/g,ze=/"/g,ks=/^(?:script|style|textarea|title)$/i,vo=e=>(t,...s)=>({_$litType$:e,strings:t,values:s}),Ao=vo(1),x=Symbol.for("lit-noChange"),y=Symbol.for("lit-nothing"),We=new WeakMap,B=F.createTreeWalker(F,129,null,!1),Us=(e,t)=>{const s=e.length-1,n=[];let r,o=t===2?"<svg>":"",i=W;for(let a=0;a<s;a++){const l=e[a];let f,u,d=-1,h=0;for(;h<l.length&&(i.lastIndex=h,u=i.exec(l),u!==null);)h=i.lastIndex,i===W?u[1]==="!--"?i=Ve:u[1]!==void 0?i=Fe:u[2]!==void 0?(ks.test(u[2])&&(r=RegExp("</"+u[2],"g")),i=M):u[3]!==void 0&&(i=M):i===M?u[0]===">"?(i=r!=null?r:W,d=-1):u[1]===void 0?d=-2:(d=i.lastIndex-u[2].length,f=u[1],i=u[3]===void 0?M:u[3]==='"'?ze:je):i===ze||i===je?i=M:i===Ve||i===Fe?i=W:(i=M,r=void 0);const p=i===M&&e[a+1].startsWith("/>")?" ":"";o+=i===W?l+wo:d>=0?(n.push(f),l.slice(0,d)+"$lit$"+l.slice(d)+$+p):l+$+(d===-2?(n.push(void 0),a):p)}const c=o+(e[s]||"<?>")+(t===2?"</svg>":"");if(!Array.isArray(e)||!e.hasOwnProperty("raw"))throw Error("invalid template strings array");return[He!==void 0?He.createHTML(c):c,n]};class tt{constructor({strings:t,_$litType$:s},n){let r;this.parts=[];let o=0,i=0;const c=t.length-1,a=this.parts,[l,f]=Us(t,s);if(this.el=tt.createElement(l,n),B.currentNode=this.el.content,s===2){const u=this.el.content,d=u.firstChild;d.remove(),u.append(...d.childNodes)}for(;(r=B.nextNode())!==null&&a.length<c;){if(r.nodeType===1){if(r.hasAttributes()){const u=[];for(const d of r.getAttributeNames())if(d.endsWith("$lit$")||d.startsWith($)){const h=f[i++];if(u.push(d),h!==void 0){const p=r.getAttribute(h.toLowerCase()+"$lit$").split($),m=/([.?@])?(.*)/.exec(h);a.push({type:1,index:o,name:m[2],strings:p,ctor:m[1]==="."?Hs:m[1]==="?"?Vs:m[1]==="@"?Fs:et})}else a.push({type:6,index:o})}for(const d of u)r.removeAttribute(d)}if(ks.test(r.tagName)){const u=r.textContent.split($),d=u.length-1;if(d>0){r.textContent=V?V.emptyScript:"";for(let h=0;h<d;h++)r.append(u[h],Y()),B.nextNode(),a.push({type:2,index:++o});r.append(u[d],Y())}}}else if(r.nodeType===8)if(r.data===de)a.push({type:2,index:o});else{let u=-1;for(;(u=r.data.indexOf($,u+1))!==-1;)a.push({type:7,index:o}),u+=$.length-1}o++}}static createElement(t,s){const n=F.createElement("template");return n.innerHTML=t,n}}function O(e,t,s=e,n){var r,o,i,c;if(t===x)return t;let a=n!==void 0?(r=s._$Co)===null||r===void 0?void 0:r[n]:s._$Cl;const l=Q(t)?void 0:t._$litDirective$;return(a==null?void 0:a.constructor)!==l&&((o=a==null?void 0:a._$AO)===null||o===void 0||o.call(a,!1),l===void 0?a=void 0:(a=new l(e),a._$AT(e,s,n)),n!==void 0?((i=(c=s)._$Co)!==null&&i!==void 0?i:c._$Co=[])[n]=a:s._$Cl=a),a!==void 0&&(t=O(e,a._$AS(e,t.values),a,n)),t}class Bs{constructor(t,s){this.u=[],this._$AN=void 0,this._$AD=t,this._$AM=s}get parentNode(){return this._$AM.parentNode}get _$AU(){return this._$AM._$AU}v(t){var s;const{el:{content:n},parts:r}=this._$AD,o=((s=t==null?void 0:t.creationScope)!==null&&s!==void 0?s:F).importNode(n,!0);B.currentNode=o;let i=B.nextNode(),c=0,a=0,l=r[0];for(;l!==void 0;){if(c===l.index){let f;l.type===2?f=new j(i,i.nextSibling,this,t):l.type===1?f=new l.ctor(i,l.name,l.strings,this,t):l.type===6&&(f=new js(i,this,t)),this.u.push(f),l=r[++a]}c!==(l==null?void 0:l.index)&&(i=B.nextNode(),c++)}return o}p(t){let s=0;for(const n of this.u)n!==void 0&&(n.strings!==void 0?(n._$AI(t,n,s),s+=n.strings.length-2):n._$AI(t[s])),s++}}class j{constructor(t,s,n,r){var o;this.type=2,this._$AH=y,this._$AN=void 0,this._$AA=t,this._$AB=s,this._$AM=n,this.options=r,this._$Cm=(o=r==null?void 0:r.isConnected)===null||o===void 0||o}get _$AU(){var t,s;return(s=(t=this._$AM)===null||t===void 0?void 0:t._$AU)!==null&&s!==void 0?s:this._$Cm}get parentNode(){let t=this._$AA.parentNode;const s=this._$AM;return s!==void 0&&t.nodeType===11&&(t=s.parentNode),t}get startNode(){return this._$AA}get endNode(){return this._$AB}_$AI(t,s=this){t=O(this,t,s),Q(t)?t===y||t==null||t===""?(this._$AH!==y&&this._$AR(),this._$AH=y):t!==this._$AH&&t!==x&&this.g(t):t._$litType$!==void 0?this.$(t):t.nodeType!==void 0?this.T(t):Ns(t)?this.k(t):this.g(t)}O(t,s=this._$AB){return this._$AA.parentNode.insertBefore(t,s)}T(t){this._$AH!==t&&(this._$AR(),this._$AH=this.O(t))}g(t){this._$AH!==y&&Q(this._$AH)?this._$AA.nextSibling.data=t:this.T(F.createTextNode(t)),this._$AH=t}$(t){var s;const{values:n,_$litType$:r}=t,o=typeof r=="number"?this._$AC(t):(r.el===void 0&&(r.el=tt.createElement(r.h,this.options)),r);if(((s=this._$AH)===null||s===void 0?void 0:s._$AD)===o)this._$AH.p(n);else{const i=new Bs(o,this),c=i.v(this.options);i.p(n),this.T(c),this._$AH=i}}_$AC(t){let s=We.get(t.strings);return s===void 0&&We.set(t.strings,s=new tt(t)),s}k(t){Rs(this._$AH)||(this._$AH=[],this._$AR());const s=this._$AH;let n,r=0;for(const o of t)r===s.length?s.push(n=new j(this.O(Y()),this.O(Y()),this,this.options)):n=s[r],n._$AI(o),r++;r<s.length&&(this._$AR(n&&n._$AB.nextSibling,r),s.length=r)}_$AR(t=this._$AA.nextSibling,s){var n;for((n=this._$AP)===null||n===void 0||n.call(this,!1,!0,s);t&&t!==this._$AB;){const r=t.nextSibling;t.remove(),t=r}}setConnected(t){var s;this._$AM===void 0&&(this._$Cm=t,(s=this._$AP)===null||s===void 0||s.call(this,t))}}class et{constructor(t,s,n,r,o){this.type=1,this._$AH=y,this._$AN=void 0,this.element=t,this.name=s,this._$AM=r,this.options=o,n.length>2||n[0]!==""||n[1]!==""?(this._$AH=Array(n.length-1).fill(new String),this.strings=n):this._$AH=y}get tagName(){return this.element.tagName}get _$AU(){return this._$AM._$AU}_$AI(t,s=this,n,r){const o=this.strings;let i=!1;if(o===void 0)t=O(this,t,s,0),i=!Q(t)||t!==this._$AH&&t!==x,i&&(this._$AH=t);else{const c=t;let a,l;for(t=o[0],a=0;a<o.length-1;a++)l=O(this,c[n+a],s,a),l===x&&(l=this._$AH[a]),i||(i=!Q(l)||l!==this._$AH[a]),l===y?t=y:t!==y&&(t+=(l!=null?l:"")+o[a+1]),this._$AH[a]=l}i&&!r&&this.j(t)}j(t){t===y?this.element.removeAttribute(this.name):this.element.setAttribute(this.name,t!=null?t:"")}}class Hs extends et{constructor(){super(...arguments),this.type=3}j(t){this.element[this.name]=t===y?void 0:t}}const So=V?V.emptyScript:"";class Vs extends et{constructor(){super(...arguments),this.type=4}j(t){t&&t!==y?this.element.setAttribute(this.name,So):this.element.removeAttribute(this.name)}}class Fs extends et{constructor(t,s,n,r,o){super(t,s,n,r,o),this.type=5}_$AI(t,s=this){var n;if((t=(n=O(this,t,s,0))!==null&&n!==void 0?n:y)===x)return;const r=this._$AH,o=t===y&&r!==y||t.capture!==r.capture||t.once!==r.once||t.passive!==r.passive,i=t!==y&&(r===y||o);o&&this.element.removeEventListener(this.name,this,r),i&&this.element.addEventListener(this.name,this,t),this._$AH=t}handleEvent(t){var s,n;typeof this._$AH=="function"?this._$AH.call((n=(s=this.options)===null||s===void 0?void 0:s.host)!==null&&n!==void 0?n:this.element,t):this._$AH.handleEvent(t)}}class js{constructor(t,s,n){this.element=t,this.type=6,this._$AN=void 0,this._$AM=s,this.options=n}get _$AU(){return this._$AM._$AU}_$AI(t){O(this,t)}}const $o={P:"$lit$",A:$,M:de,C:1,L:Us,R:Bs,D:Ns,V:O,I:j,H:et,N:Vs,U:Fs,B:Hs,F:js},Ze=vt.litHtmlPolyfillSupport;Ze==null||Ze(tt,j),((Ft=vt.litHtmlVersions)!==null&&Ft!==void 0?Ft:vt.litHtmlVersions=[]).push("2.6.0");const bo=(e,t,s)=>{var n,r;const o=(n=s==null?void 0:s.renderBefore)!==null&&n!==void 0?n:t;let i=o._$litPart$;if(i===void 0){const c=(r=s==null?void 0:s.renderBefore)!==null&&r!==void 0?r:null;o._$litPart$=i=new j(t.insertBefore(Y(),c),c,void 0,s!=null?s:{})}return i._$AI(e),i};/**
|
|
18
|
+
* @license
|
|
19
|
+
* Copyright 2017 Google LLC
|
|
20
|
+
* SPDX-License-Identifier: BSD-3-Clause
|
|
21
|
+
*/const zs={ATTRIBUTE:1,CHILD:2,PROPERTY:3,BOOLEAN_ATTRIBUTE:4,EVENT:5,ELEMENT:6},Co=e=>(...t)=>({_$litDirective$:e,values:t});class Ws{constructor(t){}get _$AU(){return this._$AM._$AU}_$AT(t,s,n){this._$Ct=t,this._$AM=s,this._$Ci=n}_$AS(t,s){return this.update(t,s)}update(t,s){return this.render(...s)}}/**
|
|
22
|
+
* @license
|
|
23
|
+
* Copyright 2020 Google LLC
|
|
24
|
+
* SPDX-License-Identifier: BSD-3-Clause
|
|
25
|
+
*/const{I:To}=$o,qe=()=>document.createComment(""),Z=(e,t,s)=>{var n;const r=e._$AA.parentNode,o=t===void 0?e._$AB:t._$AA;if(s===void 0){const i=r.insertBefore(qe(),o),c=r.insertBefore(qe(),o);s=new To(i,c,e,e.options)}else{const i=s._$AB.nextSibling,c=s._$AM,a=c!==e;if(a){let l;(n=s._$AQ)===null||n===void 0||n.call(s,e),s._$AM=e,s._$AP!==void 0&&(l=e._$AU)!==c._$AU&&s._$AP(l)}if(i!==o||a){let l=s._$AA;for(;l!==i;){const f=l.nextSibling;r.insertBefore(l,o),l=f}}}return s},P=(e,t,s=e)=>(e._$AI(t,s),e),Eo={},Lo=(e,t=Eo)=>e._$AH=t,Mo=e=>e._$AH,jt=e=>{var t;(t=e._$AP)===null||t===void 0||t.call(e,!1,!0);let s=e._$AA;const n=e._$AB.nextSibling;for(;s!==n;){const r=s.nextSibling;s.remove(),s=r}};/**
|
|
26
|
+
* @license
|
|
27
|
+
* Copyright 2017 Google LLC
|
|
28
|
+
* SPDX-License-Identifier: BSD-3-Clause
|
|
29
|
+
*/const Ge=(e,t,s)=>{const n=new Map;for(let r=t;r<=s;r++)n.set(e[r],r);return n},Zs=Co(class extends Ws{constructor(e){if(super(e),e.type!==zs.CHILD)throw Error("repeat() can only be used in text expressions")}ht(e,t,s){let n;s===void 0?s=t:t!==void 0&&(n=t);const r=[],o=[];let i=0;for(const c of e)r[i]=n?n(c,i):i,o[i]=s(c,i),i++;return{values:o,keys:r}}render(e,t,s){return this.ht(e,t,s).values}update(e,[t,s,n]){var r;const o=Mo(e),{values:i,keys:c}=this.ht(t,s,n);if(!Array.isArray(o))return this.ut=c,i;const a=(r=this.ut)!==null&&r!==void 0?r:this.ut=[],l=[];let f,u,d=0,h=o.length-1,p=0,m=i.length-1;for(;d<=h&&p<=m;)if(o[d]===null)d++;else if(o[h]===null)h--;else if(a[d]===c[p])l[p]=P(o[d],i[p]),d++,p++;else if(a[h]===c[m])l[m]=P(o[h],i[m]),h--,m--;else if(a[d]===c[m])l[m]=P(o[d],i[m]),Z(e,l[m+1],o[d]),d++,m--;else if(a[h]===c[p])l[p]=P(o[h],i[p]),Z(e,o[d],o[h]),h--,p++;else if(f===void 0&&(f=Ge(c,p,m),u=Ge(a,d,h)),f.has(a[d]))if(f.has(a[h])){const g=u.get(c[p]),nt=g!==void 0?o[g]:null;if(nt===null){const Et=Z(e,o[d]);P(Et,i[p]),l[p]=Et}else l[p]=P(nt,i[p]),Z(e,o[d],nt),o[g]=null;p++}else jt(o[h]),h--;else jt(o[d]),d++;for(;p<=m;){const g=Z(e,l[m+1]);P(g,i[p]),l[p++]=g}for(;d<=h;){const g=o[d++];g!==null&&jt(g)}return this.ut=c,Lo(e,l),x}});/**
|
|
30
|
+
* @license
|
|
31
|
+
* Copyright 2018 Google LLC
|
|
32
|
+
* SPDX-License-Identifier: BSD-3-Clause
|
|
33
|
+
*/const v=e=>e!=null?e:y;/**
|
|
34
|
+
* @license
|
|
35
|
+
* Copyright 2017 Google LLC
|
|
36
|
+
* SPDX-License-Identifier: BSD-3-Clause
|
|
37
|
+
*/class Ke extends Ws{constructor(t){if(super(t),this.it=y,t.type!==zs.CHILD)throw Error(this.constructor.directiveName+"() can only be used in child bindings")}render(t){if(t===y||t==null)return this._t=void 0,this.it=t;if(t===x)return t;if(typeof t!="string")throw Error(this.constructor.directiveName+"() called with a non-string value");if(t===this.it)return this._t;this.it=t;const s=[t];return s.raw=s,this._t={_$litType$:this.constructor.resultType,strings:s,values:[]}}}Ke.directiveName="unsafeHTML",Ke.resultType=1;const w=(e,...t)=>{const s=A("LitStatic");return(s?s.html:Ao)(e,...t)},st=(e,t,s,n,r)=>{const o=A("OpenUI5Enablement");o&&!n&&(e=o.wrapTemplateResultInBusyMarkup(w,r.host,e)),typeof s=="string"?e=w`<style>${s}</style>${e}`:Array.isArray(s)&&s.length&&(e=w`${s.map(i=>w`<link type="text/css" rel="stylesheet" href="${i}">`)}${e}`),bo(e,t,r)},Po={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 qs extends T{static get metadata(){return Po}static get render(){return st}static get template(){return t=>w`<div><p>
|
|
38
|
+
<slot></slot>
|
|
39
|
+
<slot name="other"></slot>
|
|
40
|
+
<slot name="individual-1"></slot>
|
|
41
|
+
<slot name="individual-2"></slot>
|
|
42
|
+
</p></div>`}static get styles(){return`:host {
|
|
43
|
+
display: inline-block;
|
|
44
|
+
border: 1px solid black;
|
|
45
|
+
color: var(--var1);
|
|
46
|
+
}`}onBeforeRendering(){}onAfterRendering(){}onEnterDOM(){}onExitDOM(){}}qs.define();const Io={tag:"ui5-test-no-shadow"};class xo extends T{static get metadata(){return Io}}xo.define();const Oo={tag:"ui5-test-parent",managedSlots:!0,slots:{default:{type:Node,invalidateOnChildChange:{properties:["prop1"]}},items:{type:HTMLElement,invalidateOnChildChange:{properties:!0}}}};class Do extends T{static get metadata(){return Oo}static get render(){return st}static get template(){return t=>w`<div>
|
|
47
|
+
<slot></slot>
|
|
48
|
+
</div>`}}Do.define();const Ro={tag:"ui5-test-child",properties:{prop1:{type:String},prop2:{type:String},prop3:{type:String}}};class No extends T{static get metadata(){return Ro}static get render(){return st}static get template(){return t=>w`<div></div>`}}No.define();const ko={tag:"ui5-with-static-area",properties:{staticContent:{type:Boolean}},slots:{}};class Uo extends T{static get metadata(){return ko}static get render(){return st}static get template(){return t=>w`
|
|
49
|
+
<div dir=${t.effectiveDir}>
|
|
50
|
+
WithStaticArea works!
|
|
51
|
+
</div>`}static get staticAreaTemplate(){return t=>w`
|
|
52
|
+
<div class="ui5-with-static-area-content">
|
|
53
|
+
Static area content.
|
|
54
|
+
</div>`}static get styles(){return`
|
|
55
|
+
:host {
|
|
56
|
+
display: inline-block;
|
|
57
|
+
border: 1px solid black;
|
|
58
|
+
color: red;
|
|
59
|
+
}`}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(){}}Uo.define();const Bo=(e,t,s)=>w`<div>Root text: ${v(e.text)}${Zs(e.items,(n,r)=>n._id||r,(n,r)=>Ho(n,r,e))} Root text: ${v(e.text)}</div>`,Ho=(e,t,s,n,r)=>w`<h3>Item-${t}</h3>${e.text?Vo(e,t,s):void 0}<ul>${Zs(e.words,(o,i)=>o._id||i,(o,i)=>Fo(o,i,s))}</ul>${e.text?jo(e,t,s):void 0}`,Vo=(e,t,s,n,r)=>w`<div class="before-each-content--start--${t}">Root text: ${v(s.text)}, Item text: ${v(e.text)}</div>`,Fo=(e,t,s,n,r)=>w`<li><h3>Word-${t}</h3><div class="nested-each-content--${t}--0">Root Text: ${v(s.text)}, Word text: ${v(e.text)}</div><div class="nested-each-content--${t}--1">Root Text: ${v(s.text)}, Word text: ${v(e.text)}</div></li>`,jo=(e,t,s,n,r)=>w`<div class="after-each-content--end--${t}">Root text: ${v(s.text)}, Item text: ${v(e.text)}</div>`;class zo extends T{static get metadata(){return{tag:"ui5-test-complex-template"}}static get render(){return st}static get template(){return Bo}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"}]}]}}zo.define();const Wo={tag:"ui5-test-generic-ext",properties:{extProp:{type:String},strProp:{defaultValue:"Ext"}},slots:{extSlot:{type:HTMLElement}}};class Zo extends qs{static get metadata(){return Wo}}Zo.define();const qo={content:":root{ --var1: red; }",packageName:"",fileName:""},Go={content:":root{ --var1: green; }",packageName:"",fileName:""},Ko={content:":root{ --var1: blue; }",packageName:"",fileName:""},Jo={content:":root{ --var1: orange; }",packageName:"",fileName:""},Xo={content:":root{ --var1: orange; }",packageName:"",fileName:""},Yo={content:":root{ --var1: yellow; }",packageName:"",fileName:""},Qo={content:":root{ --var1: yellow; }",packageName:"",fileName:""};L("@ui5/webcomponents-base-test","sap_fiori_3",()=>qo);L("@ui5/webcomponents-base-test","sap_fiori_3_dark",()=>Go);L("@ui5/webcomponents-base-test","sap_belize",()=>Ko);L("@ui5/webcomponents-base-test","sap_belize_hcb",()=>Jo);L("@ui5/webcomponents-base-test","sap_belize_hcw",()=>Xo);L("@ui5/webcomponents-base-test","sap_fiori_3_hcb",()=>Yo);L("@ui5/webcomponents-base-test","sap_fiori_3_hcw",()=>Qo);const ti=/('')|'([^']+(?:''[^']*)*)(?:'|$)|\{([0-9]+(?:\s*,[^{}]*)?)\}|[{}]/g,ei=(e,t)=>(t=t||[],e.replace(ti,(s,n,r,o,i)=>{if(n)return"'";if(r)return r.replace(/''/g,"'");if(o){const c=typeof o=="string"?parseInt(o):o;return String(t[c])}throw new Error(`[i18n]: pattern syntax error at pos ${i}`)})),zt=new Map;class si{constructor(t){this.packageName=t}getText(t,...s){if(typeof t=="string"&&(t={key:t,defaultText:t}),!t||!t.key)return"";const n=Kn(this.packageName);n&&!n[t.key]&&console.warn(`Key ${t.key} not found in the i18n bundle, the default text will be used`);const r=n&&n[t.key]?n[t.key]:t.defaultText||t.key;return ei(r,s)}}const ni=e=>{if(zt.has(e))return zt.get(e);const t=new si(e);return zt.set(e,t),t},ri=async e=>(await ys(e),ni(e)),oi=typeof window.chrome=="object"||typeof window.v8=="object"?(e,t)=>(t>2&&40*t>e.length,e):e=>e,ii=/(?:\r\n|\r|\n|^)[ \t\f]*/,ai=/(\\u[0-9a-fA-F]{0,4})|(\\.)|(\\$)|([ \t\f]*[ \t\f:=][ \t\f]*)/g,ci=/(\\u[0-9a-fA-F]{0,4})|(\\.)|(\\$)/g,li={"\\f":"\f","\\n":`
|
|
60
|
+
`,"\\r":"\r","\\t":" "},ui=e=>{const t={},s=e.split(ii);let n,r,o,i,c,a,l,f;const u=d=>{i?(i=`${i}${d}`,f++):(i=d,f=0)};for(c=0;c<s.length;c++)if(n=s[c],!(n===""||n.charAt(0)==="#"||n.charAt(0)==="!")){for(r=ai,l=0,r.lastIndex=l,o=null,i="",a=r.exec(n);a!==null;){if(l<a.index&&u(n.slice(l,a.index)),l=r.lastIndex,a[1]){if(a[1].length!==6)throw new Error(`Incomplete Unicode Escape '${a[1]}'`);u(String.fromCharCode(parseInt(a[1].slice(2),16)))}else a[2]?u(li[a[2]]||a[2].slice(1)):a[3]?(n=s[++c],l=0,r.lastIndex=l):a[4]&&(o=i,i="",r=ci,r.lastIndex=l);a=r.exec(n)}l<n.length&&u(n.slice(l)),o==null&&(o=i,i=""),t[o]=oi(i,i?f:0)}return t};let Wt;const di=()=>(Wt===void 0&&(Wt=on()),Wt);var te;(function(e){e.Gregorian="Gregorian",e.Islamic="Islamic",e.Japanese="Japanese",e.Buddhist="Buddhist",e.Persian="Persian"})(te||(te={}));const Je=te;let q;const hi=()=>(q===void 0&&(q=fn()),q&&q in Je?q:Je.Gregorian);let Zt;class Gs{static getLegacyDateCalendarCustomizing(){return Zt===void 0&&(Zt=rs()),Zt.legacyDateCalendarCustomizing||[]}}ns("LegacyDateFormats",Gs);let qt;const fi=()=>(qt===void 0&&(qt=rs()),qt.firstDayOfWeek),pi=A("LegacyDateFormats"),gi=pi?Gs.getLegacyDateCalendarCustomizing:()=>[],mi=new D,yi="directionChange",_i=()=>mi.fireEvent(yi,void 0),wi=async()=>{const e=_i();await Promise.all(e),await St({rtlAware:!0})};window.registerThemePropertiesLoader=L;window["sap-ui-webcomponents-bundle"]={configuration:{getAnimationMode:di,getLanguage:oe,setLanguage:Hn,getTheme:Tt,setTheme:Es,getNoConflict:ue,setNoConflict:go,getCalendarType:hi,getRTL:Os,getFirstDayOfWeek:fi,getLegacyDateCalendarCustomizing:gi},getIconNames:Pr,parseProperties:ui,registerI18nLoader:Gn,getI18nBundle:ri,renderFinished:re,applyDirection:wi,EventProvider:D};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import"../../bundle.esm.
|
|
1
|
+
import"../../bundle.esm.76492ab6.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 +1 @@
|
|
|
1
|
-
import"../../bundle.esm.
|
|
1
|
+
import"../../bundle.esm.76492ab6.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,5 +1,8 @@
|
|
|
1
|
+
import LegacyDateFormats from "../features/LegacyDateFormats.js";
|
|
2
|
+
import type { LegacyDateCalendarCustomizing } from "../features/LegacyDateFormats.js";
|
|
1
3
|
type FormatSettings = {
|
|
2
4
|
firstDayOfWeek?: number;
|
|
5
|
+
legacyDateCalendarCustomizing?: LegacyDateCalendarCustomizing;
|
|
3
6
|
};
|
|
4
7
|
/**
|
|
5
8
|
* Returns the first day of the week from the configured format settings or based on the current locale.
|
|
@@ -7,5 +10,6 @@ type FormatSettings = {
|
|
|
7
10
|
* @returns {Number} 0 (Sunday) through 6 (Saturday)
|
|
8
11
|
*/
|
|
9
12
|
declare const getFirstDayOfWeek: () => number | undefined;
|
|
10
|
-
|
|
13
|
+
declare const getLegacyDateCalendarCustomizing: typeof LegacyDateFormats.getLegacyDateCalendarCustomizing;
|
|
14
|
+
export { getFirstDayOfWeek, getLegacyDateCalendarCustomizing, };
|
|
11
15
|
export type { FormatSettings };
|
|
@@ -1,4 +1,6 @@
|
|
|
1
|
+
import LegacyDateFormats from "../features/LegacyDateFormats.js";
|
|
1
2
|
import { getFormatSettings } from "../InitialConfiguration.js";
|
|
3
|
+
import { getFeature } from "../FeaturesRegistry.js";
|
|
2
4
|
let formatSettings;
|
|
3
5
|
/**
|
|
4
6
|
* Returns the first day of the week from the configured format settings or based on the current locale.
|
|
@@ -11,5 +13,7 @@ const getFirstDayOfWeek = () => {
|
|
|
11
13
|
}
|
|
12
14
|
return formatSettings.firstDayOfWeek;
|
|
13
15
|
};
|
|
14
|
-
|
|
16
|
+
const legacyDateFormats = getFeature("LegacyDateFormats");
|
|
17
|
+
const getLegacyDateCalendarCustomizing = legacyDateFormats ? LegacyDateFormats.getLegacyDateCalendarCustomizing : () => { return []; };
|
|
18
|
+
export { getFirstDayOfWeek, getLegacyDateCalendarCustomizing, };
|
|
15
19
|
//# sourceMappingURL=FormatSettings.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"FormatSettings.js","sourceRoot":"","sources":["../../src/config/FormatSettings.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,iBAAiB,EAAE,MAAM,4BAA4B,CAAC;
|
|
1
|
+
{"version":3,"file":"FormatSettings.js","sourceRoot":"","sources":["../../src/config/FormatSettings.ts"],"names":[],"mappings":"AAAA,OAAO,iBAAiB,MAAM,kCAAkC,CAAC;AAEjE,OAAO,EAAE,iBAAiB,EAAE,MAAM,4BAA4B,CAAC;AAC/D,OAAO,EAAE,UAAU,EAAE,MAAM,wBAAwB,CAAC;AAOpD,IAAI,cAA8B,CAAC;AAEnC;;;;GAIG;AACH,MAAM,iBAAiB,GAAG,GAAuB,EAAE;IAClD,IAAI,cAAc,KAAK,SAAS,EAAE;QACjC,cAAc,GAAG,iBAAiB,EAAE,CAAC;KACrC;IAED,OAAO,cAAc,CAAC,cAAc,CAAC;AACtC,CAAC,CAAC;AAEF,MAAM,iBAAiB,GAAG,UAAU,CAA2B,mBAAmB,CAAC,CAAC;AAEpF,MAAM,gCAAgC,GAAG,iBAAiB,CAAC,CAAC,CAAC,iBAAiB,CAAC,gCAAgC,CAAC,CAAC,CAAC,GAAG,EAAE,GAAG,OAAO,EAAE,CAAC,CAAC,CAAC,CAAC;AAEvI,OAAO,EACN,iBAAiB,EACjB,gCAAgC,GAChC,CAAC"}
|
package/dist/config/Icons.d.ts
CHANGED
|
@@ -1,10 +1,11 @@
|
|
|
1
|
-
type IconCollection = "SAP-icons" | "SAP-icons-v4" | "SAP-icons-v5" | "horizon" | "tnt" | "tnt-v2" | "tnt-v3" | "business-suite" | string;
|
|
1
|
+
type IconCollection = "SAP-icons" | "SAP-icons-v4" | "SAP-icons-v5" | "horizon" | "tnt" | "tnt-v2" | "tnt-v3" | "business-suite" | "business-suite-v1" | "business-suite-v2" | string;
|
|
2
2
|
declare enum RegisteredIconCollection {
|
|
3
3
|
SAPIconsV4 = "SAP-icons-v4",
|
|
4
4
|
SAPIconsV5 = "SAP-icons-v5",
|
|
5
5
|
SAPIconsTNTV2 = "tnt-v2",
|
|
6
6
|
SAPIconsTNTV3 = "tnt-v3",
|
|
7
|
-
|
|
7
|
+
SAPBSIconsV1 = "business-suite-v1",
|
|
8
|
+
SAPBSIconsV2 = "business-suite-v2"
|
|
8
9
|
}
|
|
9
10
|
/**
|
|
10
11
|
* Sets the default icon collection for a given theme.
|
package/dist/config/Icons.js
CHANGED
|
@@ -8,7 +8,8 @@ var RegisteredIconCollection;
|
|
|
8
8
|
RegisteredIconCollection["SAPIconsV5"] = "SAP-icons-v5";
|
|
9
9
|
RegisteredIconCollection["SAPIconsTNTV2"] = "tnt-v2";
|
|
10
10
|
RegisteredIconCollection["SAPIconsTNTV3"] = "tnt-v3";
|
|
11
|
-
RegisteredIconCollection["
|
|
11
|
+
RegisteredIconCollection["SAPBSIconsV1"] = "business-suite-v1";
|
|
12
|
+
RegisteredIconCollection["SAPBSIconsV2"] = "business-suite-v2";
|
|
12
13
|
})(RegisteredIconCollection || (RegisteredIconCollection = {}));
|
|
13
14
|
/**
|
|
14
15
|
* Sets the default icon collection for a given theme.
|
|
@@ -77,9 +78,11 @@ const getEffectiveIconCollection = (collectionName) => {
|
|
|
77
78
|
* - "tnt" (and its alias "SAP-icons-TNT") resolves to "tnt-v2" in "Quartz", "Belize", and resolves to "tnt-v3" in "Horizon"
|
|
78
79
|
* - "tnt-v2" forces "TNT icons v2" in any theme and resolves to itself "tnt-v2"
|
|
79
80
|
* - "tnt-v3" forces "TNT icons v3" in any theme and resolves to itself "tnt-v3"
|
|
80
|
-
* - "business-suite" (and its alias "BusinessSuiteInAppSymbols")
|
|
81
|
+
* - "business-suite" (and its alias "BusinessSuiteInAppSymbols") resolves to "business-suite-v1" in "Quartz", "Belize", and resolves to "business-suite-v2" in "Horizon"
|
|
82
|
+
* - "business-suite-v1" forces "Business Suite icons v1" in any theme and resolves to itself "business-suite-v1"
|
|
83
|
+
* - "business-suite-v2" forces "Business Suite icons v2" in any theme and resolves to itself "business-suite-v2"
|
|
81
84
|
*
|
|
82
|
-
* <b>Note:</b> "SAP-icons-v4", "SAP-icons-v5", "tnt-v2", "tnt-v3" and "business-suite" are just returned
|
|
85
|
+
* <b>Note:</b> "SAP-icons-v4", "SAP-icons-v5", "tnt-v2", "tnt-v3", "business-suite-v1" and "business-suite-v2" are just returned
|
|
83
86
|
* @param { IconCollection } collectionName
|
|
84
87
|
* @returns { RegisteredIconCollection } the registered collection name
|
|
85
88
|
*/
|
|
@@ -91,6 +94,9 @@ const getIconCollectionByTheme = (collectionName) => {
|
|
|
91
94
|
if (collectionName === "tnt") {
|
|
92
95
|
return horizonThemeFamily ? RegisteredIconCollection.SAPIconsTNTV3 : RegisteredIconCollection.SAPIconsTNTV2;
|
|
93
96
|
}
|
|
97
|
+
if (collectionName === "business-suite") {
|
|
98
|
+
return horizonThemeFamily ? RegisteredIconCollection.SAPBSIconsV2 : RegisteredIconCollection.SAPBSIconsV1;
|
|
99
|
+
}
|
|
94
100
|
return collectionName;
|
|
95
101
|
};
|
|
96
102
|
export { setDefaultIconCollection, getDefaultIconCollection, getEffectiveIconCollection, RegisteredIconCollection, };
|
package/dist/config/Icons.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Icons.js","sourceRoot":"","sources":["../../src/config/Icons.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,aAAa,EAAE,MAAM,YAAY,CAAC;AACrD,OAAO,EAAE,wBAAwB,EAAE,MAAM,wCAAwC,CAAC;AAElF,MAAM,2BAA2B,GAAG,IAAI,GAAG,EAAkB,CAAC;AAK9D,8FAA8F;AAC9F,IAAK,
|
|
1
|
+
{"version":3,"file":"Icons.js","sourceRoot":"","sources":["../../src/config/Icons.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,aAAa,EAAE,MAAM,YAAY,CAAC;AACrD,OAAO,EAAE,wBAAwB,EAAE,MAAM,wCAAwC,CAAC;AAElF,MAAM,2BAA2B,GAAG,IAAI,GAAG,EAAkB,CAAC;AAK9D,8FAA8F;AAC9F,IAAK,wBAOJ;AAPD,WAAK,wBAAwB;IAC5B,uDAA2B,CAAA;IAC3B,uDAA2B,CAAA;IAC3B,oDAAwB,CAAA;IACxB,oDAAwB,CAAA;IACxB,8DAAkC,CAAA;IAClC,8DAAkC,CAAA;AACnC,CAAC,EAPI,wBAAwB,KAAxB,wBAAwB,QAO5B;AAED;;;;;;;;;;;;;;;;;;;;;;;;;;;GA2BG;AACH,MAAM,wBAAwB,GAAG,CAAC,KAAa,EAAE,cAA8B,EAAE,EAAE;IAClF,2BAA2B,CAAC,GAAG,CAAC,KAAK,EAAE,cAAc,CAAC,CAAC;AACxD,CAAC,CAAC;AAEF;;;;;;GAMG;AACH,MAAM,wBAAwB,GAAG,CAAC,KAAa,EAAsB,EAAE;IACtE,OAAO,2BAA2B,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC;AAC/C,CAAC,CAAC;AAEF;;;;;GAKG;AACH,MAAM,0BAA0B,GAAG,CAAC,cAA+B,EAAkB,EAAE;IACtF,MAAM,YAAY,GAAG,QAAQ,EAAE,CAAC;IAChC,MAAM,yBAAyB,GAAG,2BAA2B,CAAC,GAAG,CAAC,YAAY,CAAC,CAAC;IAEhF,yGAAyG;IACzG,IAAI,CAAC,cAAc,IAAI,yBAAyB,EAAE;QACjD,OAAO,wBAAwB,CAAC,yBAAyB,CAAC,CAAC;KAC3D;IAED,sEAAsE;IACtE,yHAAyH;IACzH,OAAO,wBAAwB,CAAC,cAAc,CAAC,CAAC;AACjD,CAAC,CAAC;AAEF;;;;;;;;;;;;;;;;GAgBG;AACH,MAAM,wBAAwB,GAAG,CAAC,cAA+B,EAA4B,EAAE;IAC9F,MAAM,kBAAkB,GAAG,aAAa,CAAC,aAAa,CAAC,CAAC;IAExD,IAAI,CAAC,cAAc,EAAE;QACpB,OAAO,kBAAkB,CAAC,CAAC,CAAC,wBAAwB,CAAC,UAAU,CAAC,CAAC,CAAC,wBAAwB,CAAC,UAAU,CAAC;KACtG;IAED,IAAI,cAAc,KAAK,KAAK,EAAE;QAC7B,OAAO,kBAAkB,CAAC,CAAC,CAAC,wBAAwB,CAAC,aAAa,CAAC,CAAC,CAAC,wBAAwB,CAAC,aAAa,CAAC;KAC5G;IAED,IAAI,cAAc,KAAK,gBAAgB,EAAE;QACxC,OAAO,kBAAkB,CAAC,CAAC,CAAC,wBAAwB,CAAC,YAAY,CAAC,CAAC,CAAC,wBAAwB,CAAC,YAAY,CAAC;KAC1G;IAED,OAAO,cAA0C,CAAC;AACnD,CAAC,CAAC;AAEF,OAAO,EACN,wBAAwB,EACxB,wBAAwB,EACxB,0BAA0B,EAC1B,wBAAwB,GACxB,CAAC"}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import type { FormatSettings } from "../config/FormatSettings.js";
|
|
2
|
+
type IslamicToGregorianMapping = {
|
|
3
|
+
dateFormat: string;
|
|
4
|
+
islamicMonthStart: string;
|
|
5
|
+
gregDate: string;
|
|
6
|
+
};
|
|
7
|
+
type LegacyDateCalendarCustomizing = Array<IslamicToGregorianMapping>;
|
|
8
|
+
declare class LegacyDateFormats {
|
|
9
|
+
/**
|
|
10
|
+
* Returns the currently set customizing data for Islamic calendar support
|
|
11
|
+
*
|
|
12
|
+
* @return {object[]} Returns an array that contains the customizing data.
|
|
13
|
+
* @public
|
|
14
|
+
*/
|
|
15
|
+
static getLegacyDateCalendarCustomizing(this: void): LegacyDateCalendarCustomizing;
|
|
16
|
+
}
|
|
17
|
+
export default LegacyDateFormats;
|
|
18
|
+
export type { FormatSettings, LegacyDateCalendarCustomizing, };
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { getFormatSettings } from "../InitialConfiguration.js";
|
|
2
|
+
import { registerFeature } from "../FeaturesRegistry.js";
|
|
3
|
+
let formatSettings;
|
|
4
|
+
class LegacyDateFormats {
|
|
5
|
+
/**
|
|
6
|
+
* Returns the currently set customizing data for Islamic calendar support
|
|
7
|
+
*
|
|
8
|
+
* @return {object[]} Returns an array that contains the customizing data.
|
|
9
|
+
* @public
|
|
10
|
+
*/
|
|
11
|
+
static getLegacyDateCalendarCustomizing() {
|
|
12
|
+
if (formatSettings === undefined) {
|
|
13
|
+
formatSettings = getFormatSettings();
|
|
14
|
+
}
|
|
15
|
+
return formatSettings.legacyDateCalendarCustomizing || [];
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
registerFeature("LegacyDateFormats", LegacyDateFormats);
|
|
19
|
+
export default LegacyDateFormats;
|
|
20
|
+
//# sourceMappingURL=LegacyDateFormats.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"LegacyDateFormats.js","sourceRoot":"","sources":["../../src/features/LegacyDateFormats.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,iBAAiB,EAAE,MAAM,4BAA4B,CAAC;AAE/D,OAAO,EAAE,eAAe,EAAE,MAAM,wBAAwB,CAAC;AAazD,IAAI,cAA8B,CAAC;AAEnC,MAAM,iBAAiB;IACtB;;;;;OAKG;IACH,MAAM,CAAC,gCAAgC;QACtC,IAAI,cAAc,KAAK,SAAS,EAAE;YACjC,cAAc,GAAG,iBAAiB,EAAE,CAAC;SACrC;QAED,OAAO,cAAc,CAAC,6BAA6B,IAAI,EAAE,CAAC;IAC3D,CAAC;CACD;AAED,eAAe,CAAC,mBAAmB,EAAE,iBAAiB,CAAC,CAAC;AAExD,eAAe,iBAAiB,CAAC"}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { CLDRData } from "../asset-registries/LocaleData.js";
|
|
2
|
+
import type { LegacyDateCalendarCustomizing } from "../features/LegacyDateFormats.js";
|
|
2
3
|
declare class OpenUI5Support {
|
|
3
4
|
static isLoaded(): boolean;
|
|
4
5
|
static init(): Promise<void>;
|
|
@@ -11,6 +12,7 @@ declare class OpenUI5Support {
|
|
|
11
12
|
calendarType: string;
|
|
12
13
|
formatSettings: {
|
|
13
14
|
firstDayOfWeek: any;
|
|
15
|
+
legacyDateCalendarCustomizing: LegacyDateCalendarCustomizing;
|
|
14
16
|
};
|
|
15
17
|
} | undefined;
|
|
16
18
|
static getLocaleDataObject(): CLDRData | undefined;
|
|
@@ -38,6 +38,7 @@ class OpenUI5Support {
|
|
|
38
38
|
calendarType: config.getCalendarType(),
|
|
39
39
|
formatSettings: {
|
|
40
40
|
firstDayOfWeek: LocaleData ? LocaleData.getInstance(config.getLocale()).getFirstDayOfWeek() : undefined,
|
|
41
|
+
legacyDateCalendarCustomizing: config.getFormatSettings().getLegacyDateCalendarCustomizing(),
|
|
41
42
|
},
|
|
42
43
|
};
|
|
43
44
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"OpenUI5Support.js","sourceRoot":"","sources":["../../src/features/OpenUI5Support.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,eAAe,EAAE,MAAM,wBAAwB,CAAC;AACzD,OAAO,EAAE,QAAQ,EAAE,MAAM,oBAAoB,CAAC;AAC9C,OAAO,EAAE,gBAAgB,EAAE,MAAM,uBAAuB,CAAC;
|
|
1
|
+
{"version":3,"file":"OpenUI5Support.js","sourceRoot":"","sources":["../../src/features/OpenUI5Support.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,eAAe,EAAE,MAAM,wBAAwB,CAAC;AACzD,OAAO,EAAE,QAAQ,EAAE,MAAM,oBAAoB,CAAC;AAC9C,OAAO,EAAE,gBAAgB,EAAE,MAAM,uBAAuB,CAAC;AAqCzD,MAAM,OAAO,GAAG,GAAG,EAAE;IACpB,OAAO,MAAM,CAAC,GAAG,EAAE,EAAE,EAAE,OAAO,EAAE,EAAiB,CAAC;AACnD,CAAC,CAAC;AAEF,MAAM,cAAc;IACnB,MAAM,CAAC,QAAQ;QACd,OAAO,CAAC,CAAC,OAAO,EAAE,CAAC;IACpB,CAAC;IAED,MAAM,CAAC,IAAI;QACV,MAAM,IAAI,GAAG,OAAO,EAAE,CAAC;QACvB,IAAI,CAAC,IAAI,EAAE;YACV,OAAO,OAAO,CAAC,OAAO,EAAE,CAAC;SACzB;QAED,OAAO,IAAI,OAAO,CAAO,OAAO,CAAC,EAAE;YAClC,IAAI,CAAC,UAAU,CAAC,GAAG,EAAE;gBACpB,MAAM,CAAC,GAAG,CAAC,EAAE,CAAC,OAAO,CAAC,CAAC,wBAAwB,EAAE,mBAAmB,CAAC,EAAE,CAAC,UAAsB,EAAE,KAAmB,EAAE,EAAE;oBACtH,KAAK,CAAC,gBAAgB,CAAC,gBAAgB,EAAE,CAAC,CAAC;oBAC3C,OAAO,EAAE,CAAC;gBACX,CAAC,CAAC,CAAC;YACJ,CAAC,CAAC,CAAC;QACJ,CAAC,CAAC,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,8BAA8B;QACpC,MAAM,IAAI,GAAG,OAAO,EAAE,CAAC;QACvB,IAAI,CAAC,IAAI,EAAE;YACV,OAAO;SACP;QAED,MAAM,MAAM,GAAG,IAAI,CAAC,gBAAgB,EAAE,CAAC;QACvC,MAAM,UAAU,GAAG,MAAM,CAAC,GAAG,CAAC,EAAE,CAAC,OAAO,CAAC,wBAAwB,CAAC,CAAC;QAEnE,OAAO;YACN,aAAa,EAAE,MAAM,CAAC,gBAAgB,EAAE;YACxC,QAAQ,EAAE,MAAM,CAAC,WAAW,EAAE;YAC9B,KAAK,EAAE,MAAM,CAAC,QAAQ,EAAE;YACxB,SAAS,EAAE,MAAM,CAAC,YAAY,EAAE;YAChC,GAAG,EAAE,MAAM,CAAC,MAAM,EAAE;YACpB,YAAY,EAAE,MAAM,CAAC,eAAe,EAAE;YACtC,cAAc,EAAE;gBACf,cAAc,EAAE,UAAU,CAAC,CAAC,CAAC,UAAU,CAAC,WAAW,CAAC,MAAM,CAAC,SAAS,EAAE,CAAC,CAAC,iBAAiB,EAAE,CAAC,CAAC,CAAC,SAAS;gBACvG,6BAA6B,EAAE,MAAM,CAAC,iBAAiB,EAAE,CAAC,gCAAgC,EAAE;aAC5F;SACD,CAAC;IACH,CAAC;IAED,MAAM,CAAC,mBAAmB;QACzB,MAAM,IAAI,GAAG,OAAO,EAAE,CAAC;QACvB,IAAI,CAAC,IAAI,EAAE;YACV,OAAO;SACP;QAED,MAAM,MAAM,GAAG,IAAI,CAAC,gBAAgB,EAAE,CAAC;QACvC,MAAM,UAAU,GAAG,MAAM,CAAC,GAAG,CAAC,EAAE,CAAC,OAAO,CAAC,wBAAwB,CAAe,CAAC;QACjF,OAAO,UAAU,CAAC,WAAW,CAAC,MAAM,CAAC,SAAS,EAAE,CAAC,CAAC,IAAI,EAAE,CAAC;IAC1D,CAAC;IAED,MAAM,CAAC,qBAAqB;QAC3B,MAAM,IAAI,GAAG,OAAO,EAAE,CAAC;QACvB,MAAM,MAAM,GAAG,IAAI,CAAC,gBAAgB,EAAE,CAAC;QACvC,IAAI,CAAC,kBAAkB,CAAC,KAAK,IAAI,EAAE;YAClC,MAAM,QAAQ,CAAC,MAAM,CAAC,QAAQ,EAAE,CAAC,CAAC;QACnC,CAAC,CAAC,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,eAAe;QACrB,MAAM,IAAI,GAAG,OAAO,EAAE,CAAC;QACvB,IAAI,CAAC,IAAI,EAAE;YACV,OAAO;SACP;QAED,cAAc,CAAC,qBAAqB,EAAE,CAAC;IACxC,CAAC;IAED,MAAM,CAAC,kBAAkB;QACxB,MAAM,IAAI,GAAG,OAAO,EAAE,CAAC;QACvB,IAAI,CAAC,IAAI,EAAE;YACV,OAAO;SACP;QAED,MAAM,IAAI,GAAG,CAAC,GAAG,QAAQ,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,IAAI,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,KAAK,0BAA0B,CAAoB,CAAC,CAAC,yCAAyC;QACvJ,IAAI,CAAC,IAAI,EAAE;YACV,OAAO;SACP;QAED,OAAO,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,KAAK,CAAC,0BAA0B,CAAC,CAAC;IACtD,CAAC;IAED,MAAM,CAAC,aAAa;QACnB,MAAM,IAAI,GAAG,OAAO,EAAE,CAAC;QACvB,IAAI,CAAC,IAAI,EAAE;YACV,OAAO;SACP;QAED,MAAM,KAAK,GAAG,MAAM,CAAC,GAAG,CAAC,EAAE,CAAC,OAAO,CAAC,mBAAmB,CAAiB,CAAC;QACzE,OAAO,KAAK,CAAC,aAAa,EAAE,CAAC;IAC9B,CAAC;IAED,MAAM,CAAC,gBAAgB;QACtB,MAAM,IAAI,GAAG,OAAO,EAAE,CAAC;QACvB,IAAI,CAAC,IAAI,EAAE;YACV,OAAO;SACP;QAED,MAAM,KAAK,GAAG,MAAM,CAAC,GAAG,CAAC,EAAE,CAAC,OAAO,CAAC,mBAAmB,CAAiB,CAAC;QACzE,KAAK,CAAC,gBAAgB,CAAC,gBAAgB,EAAE,CAAC,CAAC;IAC5C,CAAC;CACD;AAED,eAAe,CAAC,gBAAgB,EAAE,cAAc,CAAC,CAAC;AAElD,eAAe,cAAc,CAAC"}
|
|
@@ -12,7 +12,24 @@
|
|
|
12
12
|
"language": "ja",
|
|
13
13
|
"calendarType": "Japanese",
|
|
14
14
|
"formatSettings": {
|
|
15
|
-
"firstDayOfWeek": 0
|
|
15
|
+
"firstDayOfWeek": 0,
|
|
16
|
+
"legacyDateCalendarCustomizing": [
|
|
17
|
+
{
|
|
18
|
+
"dateFormat": "A",
|
|
19
|
+
"islamicMonthStart": "14351201",
|
|
20
|
+
"gregDate": "20140925"
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
"dateFormat": "A",
|
|
24
|
+
"islamicMonthStart": "14360101",
|
|
25
|
+
"gregDate": "20141024"
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
"dateFormat": "A",
|
|
29
|
+
"islamicMonthStart": "14360201",
|
|
30
|
+
"gregDate": "20141123"
|
|
31
|
+
}
|
|
32
|
+
]
|
|
16
33
|
},
|
|
17
34
|
"theme": "sap_belize_hcb",
|
|
18
35
|
"noConflict": {
|
|
@@ -23,7 +40,7 @@
|
|
|
23
40
|
|
|
24
41
|
|
|
25
42
|
|
|
26
|
-
<script type="module" crossorigin src="/assets/bundle.esm.
|
|
43
|
+
<script type="module" crossorigin src="/assets/bundle.esm.76492ab6.js"></script>
|
|
27
44
|
</head>
|
|
28
45
|
|
|
29
46
|
<body>
|
|
@@ -7,8 +7,8 @@
|
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
|
|
10
|
-
<script type="module" crossorigin src="/assets/test/pages/i18n.html.
|
|
11
|
-
<link rel="modulepreload" href="/assets/bundle.esm.
|
|
10
|
+
<script type="module" crossorigin src="/assets/test/pages/i18n.html.2fe80529.js"></script>
|
|
11
|
+
<link rel="modulepreload" crossorigin href="/assets/bundle.esm.76492ab6.js">
|
|
12
12
|
</head>
|
|
13
13
|
|
|
14
14
|
<body>
|
|
@@ -8,8 +8,8 @@
|
|
|
8
8
|
|
|
9
9
|
|
|
10
10
|
|
|
11
|
-
<script type="module" crossorigin src="/assets/test/pages/i18n_texts.html.
|
|
12
|
-
<link rel="modulepreload" href="/assets/bundle.esm.
|
|
11
|
+
<script type="module" crossorigin src="/assets/test/pages/i18n_texts.html.fef7ef14.js"></script>
|
|
12
|
+
<link rel="modulepreload" crossorigin href="/assets/bundle.esm.76492ab6.js">
|
|
13
13
|
</head>
|
|
14
14
|
|
|
15
15
|
<body>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ui5/webcomponents-base",
|
|
3
|
-
"version": "1.11.0-rc.
|
|
3
|
+
"version": "1.11.0-rc.3",
|
|
4
4
|
"description": "UI5 Web Components: webcomponents.base",
|
|
5
5
|
"author": "SAP SE (https://www.sap.com)",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
"devDependencies": {
|
|
37
37
|
"@buxlabs/amd-to-es6": "0.16.1",
|
|
38
38
|
"@openui5/sap.ui.core": "1.109.0",
|
|
39
|
-
"@ui5/webcomponents-tools": "1.11.0-rc.
|
|
39
|
+
"@ui5/webcomponents-tools": "1.11.0-rc.3",
|
|
40
40
|
"chromedriver": "109.0.0",
|
|
41
41
|
"clean-css": "^5.2.2",
|
|
42
42
|
"copy-and-watch": "^0.1.5",
|
|
@@ -46,5 +46,5 @@
|
|
|
46
46
|
"replace-in-file": "^6.3.5",
|
|
47
47
|
"resolve": "^1.20.0"
|
|
48
48
|
},
|
|
49
|
-
"gitHead": "
|
|
49
|
+
"gitHead": "228475d7914731c7dd1a59e570eb406add604047"
|
|
50
50
|
}
|
package/src/UI5Element.ts
CHANGED
|
@@ -23,8 +23,8 @@ import { getSlotName, getSlottedNodesList } from "./util/SlotsHelper.js";
|
|
|
23
23
|
import arraysAreEqual from "./util/arraysAreEqual.js";
|
|
24
24
|
import { markAsRtlAware } from "./locale/RTLAwareRegistry.js";
|
|
25
25
|
import preloadLinks from "./theming/preloadLinks.js";
|
|
26
|
-
import { TemplateFunction, TemplateFunctionResult } from "./renderer/executeTemplate.js";
|
|
27
|
-
import { PromiseResolve, ComponentStylesData, ClassMap } from "./types.js";
|
|
26
|
+
import type { TemplateFunction, TemplateFunctionResult } from "./renderer/executeTemplate.js";
|
|
27
|
+
import type { PromiseResolve, ComponentStylesData, ClassMap } from "./types.js";
|
|
28
28
|
|
|
29
29
|
let autoId = 0;
|
|
30
30
|
|
|
@@ -1,6 +1,12 @@
|
|
|
1
|
+
import LegacyDateFormats from "../features/LegacyDateFormats.js";
|
|
2
|
+
import type { LegacyDateCalendarCustomizing } from "../features/LegacyDateFormats.js";
|
|
1
3
|
import { getFormatSettings } from "../InitialConfiguration.js";
|
|
4
|
+
import { getFeature } from "../FeaturesRegistry.js";
|
|
2
5
|
|
|
3
|
-
type FormatSettings = {
|
|
6
|
+
type FormatSettings = {
|
|
7
|
+
firstDayOfWeek?: number,
|
|
8
|
+
legacyDateCalendarCustomizing?: LegacyDateCalendarCustomizing,
|
|
9
|
+
};
|
|
4
10
|
|
|
5
11
|
let formatSettings: FormatSettings;
|
|
6
12
|
|
|
@@ -17,5 +23,13 @@ const getFirstDayOfWeek = (): number | undefined => {
|
|
|
17
23
|
return formatSettings.firstDayOfWeek;
|
|
18
24
|
};
|
|
19
25
|
|
|
20
|
-
|
|
26
|
+
const legacyDateFormats = getFeature<typeof LegacyDateFormats>("LegacyDateFormats");
|
|
27
|
+
|
|
28
|
+
const getLegacyDateCalendarCustomizing = legacyDateFormats ? LegacyDateFormats.getLegacyDateCalendarCustomizing : () => { return []; };
|
|
29
|
+
|
|
30
|
+
export {
|
|
31
|
+
getFirstDayOfWeek,
|
|
32
|
+
getLegacyDateCalendarCustomizing,
|
|
33
|
+
};
|
|
34
|
+
|
|
21
35
|
export type { FormatSettings };
|
package/src/config/Icons.ts
CHANGED
|
@@ -3,8 +3,8 @@ import { getIconCollectionByAlias } from "../assets-meta/IconCollectionsAlias.js
|
|
|
3
3
|
|
|
4
4
|
const IconCollectionConfiguration = new Map<string, string>();
|
|
5
5
|
|
|
6
|
-
// All supported icon collections +
|
|
7
|
-
type IconCollection = "SAP-icons" | "SAP-icons-v4" | "SAP-icons-v5" | "horizon" | "tnt" | "tnt-v2" | "tnt-v3" | "business-suite" | string;
|
|
6
|
+
// All supported icon collections + unknown custom ones
|
|
7
|
+
type IconCollection = "SAP-icons" | "SAP-icons-v4" | "SAP-icons-v5" | "horizon" | "tnt" | "tnt-v2" | "tnt-v3" | "business-suite" | "business-suite-v1" | "business-suite-v2" | string;
|
|
8
8
|
|
|
9
9
|
// All registered icon collections - all icon collections resolves to these options at the end
|
|
10
10
|
enum RegisteredIconCollection {
|
|
@@ -12,7 +12,8 @@ enum RegisteredIconCollection {
|
|
|
12
12
|
SAPIconsV5 = "SAP-icons-v5",
|
|
13
13
|
SAPIconsTNTV2 = "tnt-v2",
|
|
14
14
|
SAPIconsTNTV3 = "tnt-v3",
|
|
15
|
-
|
|
15
|
+
SAPBSIconsV1 = "business-suite-v1",
|
|
16
|
+
SAPBSIconsV2 = "business-suite-v2",
|
|
16
17
|
}
|
|
17
18
|
|
|
18
19
|
/**
|
|
@@ -87,9 +88,11 @@ const getEffectiveIconCollection = (collectionName?: IconCollection): IconCollec
|
|
|
87
88
|
* - "tnt" (and its alias "SAP-icons-TNT") resolves to "tnt-v2" in "Quartz", "Belize", and resolves to "tnt-v3" in "Horizon"
|
|
88
89
|
* - "tnt-v2" forces "TNT icons v2" in any theme and resolves to itself "tnt-v2"
|
|
89
90
|
* - "tnt-v3" forces "TNT icons v3" in any theme and resolves to itself "tnt-v3"
|
|
90
|
-
* - "business-suite" (and its alias "BusinessSuiteInAppSymbols")
|
|
91
|
+
* - "business-suite" (and its alias "BusinessSuiteInAppSymbols") resolves to "business-suite-v1" in "Quartz", "Belize", and resolves to "business-suite-v2" in "Horizon"
|
|
92
|
+
* - "business-suite-v1" forces "Business Suite icons v1" in any theme and resolves to itself "business-suite-v1"
|
|
93
|
+
* - "business-suite-v2" forces "Business Suite icons v2" in any theme and resolves to itself "business-suite-v2"
|
|
91
94
|
*
|
|
92
|
-
* <b>Note:</b> "SAP-icons-v4", "SAP-icons-v5", "tnt-v2", "tnt-v3" and "business-suite" are just returned
|
|
95
|
+
* <b>Note:</b> "SAP-icons-v4", "SAP-icons-v5", "tnt-v2", "tnt-v3", "business-suite-v1" and "business-suite-v2" are just returned
|
|
93
96
|
* @param { IconCollection } collectionName
|
|
94
97
|
* @returns { RegisteredIconCollection } the registered collection name
|
|
95
98
|
*/
|
|
@@ -104,6 +107,10 @@ const getIconCollectionByTheme = (collectionName?: IconCollection): RegisteredIc
|
|
|
104
107
|
return horizonThemeFamily ? RegisteredIconCollection.SAPIconsTNTV3 : RegisteredIconCollection.SAPIconsTNTV2;
|
|
105
108
|
}
|
|
106
109
|
|
|
110
|
+
if (collectionName === "business-suite") {
|
|
111
|
+
return horizonThemeFamily ? RegisteredIconCollection.SAPBSIconsV2 : RegisteredIconCollection.SAPBSIconsV1;
|
|
112
|
+
}
|
|
113
|
+
|
|
107
114
|
return collectionName as RegisteredIconCollection;
|
|
108
115
|
};
|
|
109
116
|
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import { getFormatSettings } from "../InitialConfiguration.js";
|
|
2
|
+
import type { FormatSettings } from "../config/FormatSettings.js";
|
|
3
|
+
import { registerFeature } from "../FeaturesRegistry.js";
|
|
4
|
+
|
|
5
|
+
// Allows specifying the customizing data for Islamic calendar support
|
|
6
|
+
// dateFormat - The date format
|
|
7
|
+
// islamicMonthStart - The Islamic date in string format // 14360101
|
|
8
|
+
// gregDate - Corresponding Gregorian date to the Islamic one in string format // 20141024
|
|
9
|
+
type IslamicToGregorianMapping = {
|
|
10
|
+
dateFormat: string,
|
|
11
|
+
islamicMonthStart: string,
|
|
12
|
+
gregDate: string,
|
|
13
|
+
};
|
|
14
|
+
type LegacyDateCalendarCustomizing = Array<IslamicToGregorianMapping>;
|
|
15
|
+
|
|
16
|
+
let formatSettings: FormatSettings;
|
|
17
|
+
|
|
18
|
+
class LegacyDateFormats {
|
|
19
|
+
/**
|
|
20
|
+
* Returns the currently set customizing data for Islamic calendar support
|
|
21
|
+
*
|
|
22
|
+
* @return {object[]} Returns an array that contains the customizing data.
|
|
23
|
+
* @public
|
|
24
|
+
*/
|
|
25
|
+
static getLegacyDateCalendarCustomizing(this: void): LegacyDateCalendarCustomizing {
|
|
26
|
+
if (formatSettings === undefined) {
|
|
27
|
+
formatSettings = getFormatSettings();
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
return formatSettings.legacyDateCalendarCustomizing || [];
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
registerFeature("LegacyDateFormats", LegacyDateFormats);
|
|
35
|
+
|
|
36
|
+
export default LegacyDateFormats;
|
|
37
|
+
export type {
|
|
38
|
+
FormatSettings,
|
|
39
|
+
LegacyDateCalendarCustomizing,
|
|
40
|
+
};
|
|
@@ -2,6 +2,7 @@ import { registerFeature } from "../FeaturesRegistry.js";
|
|
|
2
2
|
import { setTheme } from "../config/Theme.js";
|
|
3
3
|
import { getCurrentZIndex } from "../util/PopupUtils.js";
|
|
4
4
|
import { CLDRData } from "../asset-registries/LocaleData.js";
|
|
5
|
+
import type { LegacyDateCalendarCustomizing } from "../features/LegacyDateFormats.js";
|
|
5
6
|
|
|
6
7
|
type OpenUI5Popup = {
|
|
7
8
|
setInitialZIndex: (zIndex: number) => void,
|
|
@@ -22,6 +23,9 @@ type OpenUI5CoreConfiguration = {
|
|
|
22
23
|
getRTL: () => string,
|
|
23
24
|
getCalendarType: () => string,
|
|
24
25
|
getLocale: () => string,
|
|
26
|
+
getFormatSettings: () => {
|
|
27
|
+
getLegacyDateCalendarCustomizing: () => LegacyDateCalendarCustomizing;
|
|
28
|
+
}
|
|
25
29
|
};
|
|
26
30
|
|
|
27
31
|
type LocaleData = {
|
|
@@ -76,6 +80,7 @@ class OpenUI5Support {
|
|
|
76
80
|
calendarType: config.getCalendarType(),
|
|
77
81
|
formatSettings: {
|
|
78
82
|
firstDayOfWeek: LocaleData ? LocaleData.getInstance(config.getLocale()).getFirstDayOfWeek() : undefined,
|
|
83
|
+
legacyDateCalendarCustomizing: config.getFormatSettings().getLegacyDateCalendarCustomizing(),
|
|
79
84
|
},
|
|
80
85
|
};
|
|
81
86
|
}
|
|
@@ -2,7 +2,7 @@ import { getUrl } from "../CSP.js";
|
|
|
2
2
|
import { getFeature } from "../FeaturesRegistry.js";
|
|
3
3
|
import type UI5Element from "../UI5Element.js";
|
|
4
4
|
import type OpenUI5Enablement from "../features/OpenUI5Enablement.js";
|
|
5
|
-
import { ComponentStylesData, StyleDataCSP } from "../types.js";
|
|
5
|
+
import type { ComponentStylesData, StyleDataCSP } from "../types.js";
|
|
6
6
|
|
|
7
7
|
const MAX_DEPTH_INHERITED_CLASSES = 10; // TypeScript complains about Infinity and big numbers
|
|
8
8
|
|
|
@@ -1,56 +0,0 @@
|
|
|
1
|
-
const Zs=function(){const t=document.createElement("link").relList;if(t&&t.supports&&t.supports("modulepreload"))return;for(const r of document.querySelectorAll('link[rel="modulepreload"]'))n(r);new MutationObserver(r=>{for(const o of r)if(o.type==="childList")for(const i of o.addedNodes)i.tagName==="LINK"&&i.rel==="modulepreload"&&n(i)}).observe(document,{childList:!0,subtree:!0});function s(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 n(r){if(r.ep)return;r.ep=!0;const o=s(r);fetch(r.href,o)}};Zs();const vt={themes:{default:"sap_fiori_3",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"]},languages:{default:"en",all:["ar","bg","ca","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","ms","nl","no","pl","pt_PT","pt","ro","ru","sh","sk","sl","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"]}},ft=vt.themes.default,pt=vt.languages.default,$=vt.locales.default,ue=vt.locales.all;var Ke=()=>{const e=navigator.languages,t=()=>navigator.language;return e&&e[0]||t()||pt},Je={},Xe=Je.hasOwnProperty,qs=Je.toString,Ye=Xe.toString,Gs=Ye.call(Object),de=function(e){var t,s;return!e||qs.call(e)!=="[object Object]"?!1:(t=Object.getPrototypeOf(e),t?(s=Xe.call(t,"constructor")&&t.constructor,typeof s=="function"&&Ye.call(s)===Gs):!0)},Ks=Object.create(null),Qe=function(e,t,s,n){var r,o,i,c,a,l,f=arguments[2]||{},u=3,d=arguments.length,h=arguments[0]||!1,p=arguments[1]?void 0:Ks;for(typeof f!="object"&&typeof f!="function"&&(f={});u<d;u++)if((a=arguments[u])!=null)for(c in a)r=f[c],i=a[c],!(c==="__proto__"||f===i)&&(h&&i&&(de(i)||(o=Array.isArray(i)))?(o?(o=!1,l=r&&Array.isArray(r)?r:[]):l=r&&de(r)?r:{},f[c]=Qe(h,arguments[1],l,i)):i!==p&&(f[c]=i));return f};const Qt=function(e,t){return Qe(!0,!1,...arguments)},ts=new Map,Js=(e,t)=>{ts.set(e,t)},b=e=>ts.get(e),Xs=e=>{const t=document.querySelector(`META[name="${e}"]`);return t&&t.getAttribute("content")},Ys=e=>{const t=Xs("sap-allowedThemeOrigins");return t&&t.split(",").some(s=>s==="*"||e===s.trim())},Qs=(e,t)=>{const s=new URL(e).pathname;return new URL(s,t).toString()},tn=e=>{let t,s;try{t=new URL(e);const n=t.origin;return t=t.toString(),t.startsWith(".")||t.startsWith("/")?s=new URL(t,window.location.href).toString():n&&Ys(n)?s=t.toString():s=Qs(t,window.location.href),s.endsWith("/")||(s=`${s}/`),`${s}UI5/`}catch{}};var Zt;(function(e){e.Full="full",e.Basic="basic",e.Minimal="minimal",e.None="none"})(Zt||(Zt={}));var en=Zt;let he=!1,_={animationMode:en.Full,theme:ft,themeRoot:void 0,rtl:void 0,language:void 0,calendarType:void 0,noConflict:!1,formatSettings:{},fetchDefaultLanguage:!1};const sn=()=>(C(),_.animationMode),nn=()=>(C(),_.theme),rn=()=>(C(),_.themeRoot),on=()=>(C(),_.rtl),an=()=>(C(),_.language),cn=()=>(C(),_.fetchDefaultLanguage),ln=()=>(C(),_.noConflict),un=()=>(C(),_.calendarType),dn=()=>(C(),_.formatSettings),gt=new Map;gt.set("true",!0);gt.set("false",!1);const hn=()=>{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&&(_=Qt(_,t))}},fn=()=>{const e=new URLSearchParams(window.location.search);e.forEach((t,s)=>{const n=s.split("sap-").length;n===0||n===s.split("sap-ui-").length||fe(s,t,"sap")}),e.forEach((t,s)=>{!s.startsWith("sap-ui")||fe(s,t,"sap-ui")})},pn=e=>{const t=e.split("@")[1];return tn(t)},gn=(e,t)=>e==="theme"&&t.includes("@")?t.split("@")[0]:t,fe=(e,t,s)=>{const n=t.toLowerCase(),r=e.split(`${s}-`)[1];gt.has(t)&&(t=gt.get(n)),r==="theme"?(_.theme=gn(r,t),t&&t.includes("@")&&(_.themeRoot=pn(t))):_[r]=t},mn=()=>{const e=b("OpenUI5Support");if(!e||!e.isLoaded())return;const t=e.getConfigurationSettingsObject();_=Qt(_,t)},C=()=>{typeof document=="undefined"||he||(hn(),fn(),mn(),he=!0)};class O{constructor(){this._eventRegistry=new Map}attachEvent(t,s){const n=this._eventRegistry,r=n.get(t);if(!Array.isArray(r)){n.set(t,[s]);return}r.includes(s)||r.push(s)}detachEvent(t,s){const n=this._eventRegistry,r=n.get(t);if(!r)return;const o=r.indexOf(s);o!==-1&&r.splice(o,1),r.length===0&&n.delete(t)}fireEvent(t,s){const r=this._eventRegistry.get(t);return r?r.map(o=>o.call(this,s)):[]}fireEventAsync(t,s){return Promise.all(this.fireEvent(t,s))}isHandlerAttached(t,s){const r=this._eventRegistry.get(t);return r?r.includes(s):!1}hasListeners(t){return!!this._eventRegistry.get(t)}}const es=new O,ss="languageChange",ns=e=>{es.attachEvent(ss,e)},yn=e=>es.fireEventAsync(ss,e),pe=10;class _n{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(s=>s!==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 s;const n=new Map;for(s=this.shift();s;){const r=n.get(s)||0;if(r>pe)throw new Error(`Web component processed too many times this task, max allowed is: ${pe}`);t(s),n.set(s,r+1),s=this.shift()}}}const rs=(e,t=document.body)=>{let s=document.querySelector(e);return s||(s=document.createElement(e),t.insertBefore(s,t.firstChild))},wn=()=>typeof document=="undefined"?null:rs("ui5-shared-resources",document.head),R=(e,t)=>{const s=e.split(".");let n=wn();if(!n)return t;for(let r=0;r<s.length;r++){const o=s[r],i=r===s.length-1;Object.prototype.hasOwnProperty.call(n,o)||(n[o]=i?t:{}),n=n[o]}return n},vn={version:"1.11.0-rc.2",major:1,minor:11,patch:0,suffix:"-rc.2",isNext:!1,buildTime:1676535002};let ct,An="";const Et=new Map,J=R("Runtimes",[]),Sn=()=>{if(ct===void 0){ct=J.length;const e=vn;J.push({...e,alias:An,description:`Runtime ${ct} - ver ${e.version}`})}},os=()=>ct,$n=(e,t)=>{const s=`${e},${t}`;if(Et.has(s))return Et.get(s);const n=J[e],r=J[t];if(!n||!r)throw new Error("Invalid runtime index supplied");if(n.isNext||r.isNext)return n.buildTime-r.buildTime;const o=n.major-r.major;if(o)return o;const i=n.minor-r.minor;if(i)return i;const c=n.patch-r.patch;if(c)return c;const l=new Intl.Collator(void 0,{numeric:!0,sensitivity:"base"}).compare(n.suffix,r.suffix);return Et.set(s,l),l},bn=()=>J,is=R("Tags",new Map),te=new Set;let P=new Map,Lt;const as=-1,Cn=e=>{te.add(e),is.set(e,os())},Tn=e=>te.has(e),En=()=>[...te.values()],Ln=e=>{let t=is.get(e);t===void 0&&(t=as),P.has(t)||P.set(t,new Set),P.get(t).add(e),Lt||(Lt=setTimeout(()=>{Mn(),P=new Map,Lt=void 0},1e3))},Mn=()=>{const e=bn(),t=os(),s=e[t];let n="Multiple UI5 Web Components instances detected.";e.length>1&&(n=`${n}
|
|
2
|
-
Loading order (versions before 1.1.0 not listed): ${e.map(r=>`
|
|
3
|
-
${r.description}`).join("")}`),[...P.keys()].forEach(r=>{let o,i;r===as?(o=1,i={description:"Older unknown runtime"}):(o=$n(t,r),i=e[r]);let c;o>0?c="an older":o<0?c="a newer":c="the same",n=`${n}
|
|
4
|
-
|
|
5
|
-
"${s.description}" failed to define ${P.get(r).size} tag(s) as they were defined by a runtime of ${c} version "${i.description}": ${[...P.get(r)].sort().join(", ")}.`,o>0?n=`${n}
|
|
6
|
-
WARNING! If your code uses features of the above web components, unavailable in ${i.description}, it might not work as expected!`:n=`${n}
|
|
7
|
-
Since the above web components were defined by the same or newer version runtime, they should be compatible with your code.`}),n=`${n}
|
|
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(n)},cs=new Set,Pn=e=>{cs.add(e)},In=e=>cs.has(e),ee=new Set,xn=new O,H=new _n;let D,lt,Mt,ot;const ls=async e=>{H.add(e),await Rn()},us=e=>{xn.fireEvent("beforeComponentRender",e),ee.add(e),e._render()},On=e=>{H.remove(e),ee.delete(e)},Rn=async()=>{ot||(ot=new Promise(e=>{window.requestAnimationFrame(()=>{H.process(us),ot=null,e(),Mt||(Mt=setTimeout(()=>{Mt=void 0,H.isEmpty()&&kn()},200))})})),await ot},Dn=()=>D||(D=new Promise(e=>{lt=e,window.requestAnimationFrame(()=>{H.isEmpty()&&(D=void 0,e())})}),D),Nn=()=>{const e=En().map(t=>customElements.whenDefined(t));return Promise.all(e)},se=async()=>{await Nn(),await Dn()},kn=()=>{!H.isEmpty()||lt&&(lt(),lt=void 0,D=void 0)},At=async e=>{ee.forEach(t=>{const s=t.constructor,n=s.getMetadata().getTag(),r=In(s),o=s.getMetadata().isLanguageAware(),i=s.getMetadata().isThemeAware();(!e||e.tag===n||e.rtlAware&&r||e.languageAware&&o||e.themeAware&&i)&&ls(t)}),await se()};let G,qt;const ne=()=>(G===void 0&&(G=an()),G),Un=async e=>{G!==e&&(G=e,await yn(e),await At({languageAware:!0}))},Bn=e=>{qt=e},Hn=()=>(qt===void 0&&Bn(cn()),qt),Vn=/^((?:[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 ds{constructor(t){const s=Vn.exec(t.replace(/_/g,"-"));if(s===null)throw new Error(`The given language ${t} does not adhere to BCP-47.`);this.sLocaleId=t,this.sLanguage=s[1]||pt,this.sScript=s[2]||"",this.sRegion=s[3]||"",this.sVariant=s[4]&&s[4].slice(1)||null,this.sExtension=s[5]&&s[5].slice(1)||null,this.sPrivateUse=s[6]||null,this.sLanguage&&(this.sLanguage=this.sLanguage.toLowerCase()),this.sScript&&(this.sScript=this.sScript.toLowerCase().replace(/^[a-z]/,n=>n.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 Pt=new Map,hs=e=>(Pt.has(e)||Pt.set(e,new ds(e)),Pt.get(e)),ge=e=>{try{if(e&&typeof e=="string")return hs(e)}catch{}return new ds($)},Gt=e=>{if(e)return ge(e);const t=ne();return t?hs(t):ge(Ke())},Fn=/^((?:[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,me=/(?:^|-)(saptrc|sappsd)(?:-|$)/i,jn={he:"iw",yi:"ji",nb:"no",sr:"sh"},zn=e=>{let t;if(!e)return $;if(typeof e=="string"&&(t=Fn.exec(e.replace(/_/g,"-")))){let s=t[1].toLowerCase(),n=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,i=t[6];return s=jn[s]||s,i&&(t=me.exec(i))||o&&(t=me.exec(o))?`en_US_${t[1].toLowerCase()}`:(s==="zh"&&!n&&(r==="hans"?n="CN":r==="hant"&&(n="TW")),s+(n?"_"+n+(o?"_"+o.replace("-","_"):""):""))}return $},Wn=e=>{if(!e)return $;if(e==="zh_HK")return"zh_TW";const t=e.lastIndexOf("_");return t>=0?e.slice(0,t):e!==$?$:""},ye=new Set,_e=new Set,re=new Map,It=new Map,oe=new Map,Zn=(e,t,s)=>{const n=`${e}/${t}`;oe.set(n,s)},we=(e,t)=>{re.set(e,t)},qn=e=>re.get(e),ve=(e,t)=>{const s=`${e}/${t}`;return oe.has(s)},Gn=(e,t)=>{const s=`${e}/${t}`,n=oe.get(s);return n&&!It.get(s)&&It.set(s,n(t)),It.get(s)},Kn=e=>{ye.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.`),ye.add(e))},fs=async e=>{const t=Gt().getLanguage(),s=Gt().getRegion();let n=zn(t+(s?`-${s}`:""));for(;n!==pt&&!ve(e,n);)n=Wn(n);const r=Hn();if(n===pt&&!r){we(e,null);return}if(!ve(e,n)){Kn(e);return}try{const o=await Gn(e,n);we(e,o)}catch(o){const i=o;_e.has(i.message)||(_e.add(i.message),console.error(i.message))}};ns(e=>{const t=[...re.keys()];return Promise.all(t.map(fs))});const Jn=new Map,mt=new Map,xt=new Map,Ae=new Set;let Se=!1;const Xn={iw:"he",ji:"yi",in:"id"},$e=e=>{Se||(console.warn(`[LocaleData] Supported locale "${e}" not configured, import the "Assets.js" module from the webcomponents package you are using.`),Se=!0)},Yn=(e,t,s)=>{e=e&&Xn[e]||e,e==="no"&&(e="nb"),e==="zh"&&!t&&(s==="Hans"?t="CN":s==="Hant"&&(t="TW")),(e==="sh"||e==="sr"&&s==="Latn")&&(e="sr",t="Latn");let n=`${e}_${t}`;return ue.includes(n)||(n=e,ue.includes(n))?mt.has(n)?n:($e(n),$):$},be=(e,t)=>{Jn.set(e,t)},Qn=e=>{if(!xt.get(e)){const t=mt.get(e);if(!t)throw new Error(`CLDR data for locale ${e} is not loaded!`);xt.set(e,t(e))}return xt.get(e)},tr=async(e,t,s)=>{const n=Yn(e,t,s),r=b("OpenUI5Support");if(r){const o=r.getLocaleDataObject();if(o){be(n,o);return}}try{const o=await Qn(n);be(n,o)}catch(o){const i=o;Ae.has(i.message)||(Ae.add(i.message),console.error(i.message))}},er=(e,t)=>{mt.set(e,t)};er("en",async()=>(await fetch("https://sdk.openui5.org/1.103.0/resources/sap/ui/core/cldr/en.json")).json());ns(()=>{const e=Gt();return tr(e.getLanguage(),e.getRegion(),e.getScript())});const ps=new Map,gs=new Map,ms=new Set,yt=new Set,E=(e,t,s)=>{gs.set(`${e}/${t}`,s),ms.add(e),yt.add(t)},ys=async(e,t)=>{const s=ps.get(`${e}_${t}`);if(s!==void 0)return s;if(!yt.has(t)){const n=[...yt.values()].join(", ");return console.warn(`You have requested a non-registered theme ${t} - falling back to ${ft}. Registered themes are: ${n}`),Ce(e,ft)}return Ce(e,t)},Ce=async(e,t)=>{const s=gs.get(`${e}/${t}`);if(!s){console.error(`Theme [${t}] not registered for package [${e}]`);return}let n;try{n=await s(t)}catch(o){console.error(e,o.message);return}const r=n._||n;return ps.set(`${e}_${t}`,r),r},_s=()=>ms,sr=e=>yt.has(e);var _t;(function(e){e["SAP-icons"]="SAP-icons-v4",e.horizon="SAP-icons-v5",e["SAP-icons-TNT"]="tnt",e.BusinessSuiteInAppSymbols="business-suite"})(_t||(_t={}));const ws=e=>_t[e]?_t[e]:e,nr=(e,t)=>{const s=document.createElement("style");return s.type="text/css",t&&Object.entries(t).forEach(n=>s.setAttribute(...n)),s.textContent=e,document.head.appendChild(s),s},rr=(e,t)=>{const s=document.createElement("link");return s.type="text/css",s.rel="stylesheet",t&&Object.entries(t).forEach(n=>s.setAttribute(...n)),s.href=e,document.head.appendChild(s),new Promise(n=>{s.addEventListener("load",n),s.addEventListener("error",n)})},St=(e,t)=>t?`${e}|${t}`:e,$t=(e,t,s="")=>{const n=typeof e=="string"?e:e.content;if(document.adoptedStyleSheets){const r=new CSSStyleSheet;r.replaceSync(n),r._ui5StyleId=St(t,s),document.adoptedStyleSheets=[...document.adoptedStyleSheets,r]}else{const r={};r[t]=s,nr(n,r)}},or=(e,t,s="")=>{const n=typeof e=="string"?e:e.content;if(document.adoptedStyleSheets){const r=document.adoptedStyleSheets.find(o=>o._ui5StyleId===St(t,s));r&&r.replaceSync(n||"")}else{const r=document.querySelector(`head>style[${t}="${s}"]`);r&&(r.textContent=n||"")}},bt=(e,t="")=>document.adoptedStyleSheets?!!document.adoptedStyleSheets.find(s=>s._ui5StyleId===St(e,t)):!!document.querySelector(`head>style[${e}="${t}"]`),ir=(e,t="")=>{var s;if(document.adoptedStyleSheets)document.adoptedStyleSheets=document.adoptedStyleSheets.filter(n=>n._ui5StyleId!==St(e,t));else{const n=document.querySelector(`head > style[${e}="${t}"]`);(s=n==null?void 0:n.parentElement)==null||s.removeChild(n)}},vs=(e,t,s="")=>{bt(t,s)?or(e,t,s):$t(e,t,s)},N=new Set,ar=()=>{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},cr=e=>{const t=/\(["']?data:text\/plain;utf-8,(.*?)['"]?\)$/i.exec(e);if(t&&t.length>=2){let s=t[1];if(s=s.replace(/\\"/g,'"'),s.charAt(0)!=="{"&&s.charAt(s.length-1)!=="}")try{s=decodeURIComponent(s)}catch{N.has("decode")||(console.warn("Malformed theme metadata string, unable to decodeURIComponent"),N.add("decode"));return}try{return JSON.parse(s)}catch{N.has("parse")||(console.warn("Malformed theme metadata string, unable to parse JSON"),N.add("parse"))}}},lr=e=>{let t,s;try{t=e.Path.match(/\.([^.]+)\.css_variables$/)[1],s=e.Extends[0]}catch{N.has("object")||(console.warn("Malformed theme metadata Object",e),N.add("object"));return}return{themeName:t,baseThemeName:s}},Te=()=>{const e=ar();if(!e||e==="none")return;const t=cr(e);if(t)return lr(t)},ur=new O,dr="themeLoaded",hr=e=>ur.fireEvent(dr,e);let Ot;const As=()=>(Ot===void 0&&(Ot=rn()),Ot),fr=e=>`${As()}Base/baseLib/${e}/css_variables.css`,pr=async e=>{const t=document.querySelector(`[sap-ui-webcomponents-theme="${e}"]`);t&&document.head.removeChild(t),await rr(fr(e),{"sap-ui-webcomponents-theme":e})},X="@ui5/webcomponents-theming",gr=()=>_s().has(X),mr=async e=>{if(!gr())return;const t=await ys(X,e);t&&vs(t,"data-ui5-theme-properties",X)},yr=()=>{ir("data-ui5-theme-properties",X)},_r=async e=>{const s=[..._s()].map(async n=>{if(n===X)return;const r=await ys(n,e);r&&vs(r,"data-ui5-theme-properties",n)});return Promise.all(s)},wr=async e=>{var n;const t=Te();if(t)return t;const s=b("OpenUI5Support");if(s){if(s.cssVariablesLoaded())return{themeName:(n=s.getConfigurationSettingsObject())==null?void 0:n.theme,baseThemeName:""}}else if(As())return await pr(e),Te()},Ss=async e=>{const t=await wr(e);!t||e!==t.themeName?await mr(e):yr();const s=sr(e)?e:t&&t.baseThemeName;await _r(s||ft),hr(e)};let U;const Ct=()=>(U===void 0&&(U=nn()),U),$s=async e=>{U!==e&&(U=e,await Ss(U),await At({themeAware:!0}))},vr=e=>Ct().startsWith(e),Ar=new Map;var k;(function(e){e.SAPIconsV4="SAP-icons-v4",e.SAPIconsV5="SAP-icons-v5",e.SAPIconsTNTV2="tnt-v2",e.SAPIconsTNTV3="tnt-v3",e.SAPBSIcons="business-suite"})(k||(k={}));const Sr=e=>{const t=Ct(),s=Ar.get(t);return!e&&s?ws(s):$r(e)},$r=e=>{const t=vr("sap_horizon");return e?e==="tnt"?t?k.SAPIconsTNTV3:k.SAPIconsTNTV2:e:t?k.SAPIconsV5:k.SAPIconsV4},Ee=new Map,wt=R("SVGIcons.registry",new Map),Rt=R("SVGIcons.promises",new Map),Le="ICON_NOT_FOUND",br=async e=>{if(!Rt.has(e)){if(!Ee.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=Ee.get(e);Rt.set(e,t(e))}return Rt.get(e)},Cr=e=>{Object.keys(e.data).forEach(t=>{const s=e.data[t];Tr(t,{pathData:s.path||s.paths,ltr:s.ltr,accData:s.acc,collection:e.collection,packageName:e.packageName})})},Tr=(e,t)=>{const s=`${t.collection}/${e}`;wt.set(s,{pathData:t.pathData,ltr:t.ltr,accData:t.accData,packageName:t.packageName,customTemplate:t.customTemplate,viewBox:t.viewBox,collection:t.collection})},Er=e=>{e.startsWith("sap-icon://")&&(e=e.replace("sap-icon://",""));let t;[e,t]=e.split("/").reverse(),e=e.replace("icon-",""),t&&(t=ws(t)),t=Sr(t);const s=`${t}/${e}`;return{name:e,collection:t,registryKey:s}},Dt=async e=>{const{collection:t,registryKey:s}=Er(e);let n=Le;try{n=await br(t)}catch(r){console.error(r.message)}return n===Le?n:(wt.has(s)||Cr(n),wt.get(s))},Lr=async()=>(await Dt("edit"),await Dt("tnt/arrow"),await Dt("business-suite/3d"),Array.from(wt.keys())),Mr=R("PopupUtilsData",{currentZIndex:100}),Me=()=>Mr.currentZIndex,A=()=>{var e,t,s;return(s=(t=(e=window.sap)==null?void 0:e.ui)==null?void 0:t.getCore)==null?void 0:s.call(t)};class ie{static isLoaded(){return!!A()}static init(){const t=A();return t?new Promise(s=>{t.attachInit(()=>{window.sap.ui.require(["sap/ui/core/LocaleData","sap/ui/core/Popup"],(n,r)=>{r.setInitialZIndex(Me()),s()})})}):Promise.resolve()}static getConfigurationSettingsObject(){const t=A();if(!t)return;const s=t.getConfiguration(),n=window.sap.ui.require("sap/ui/core/LocaleData");return{animationMode:s.getAnimationMode(),language:s.getLanguage(),theme:s.getTheme(),themeRoot:s.getThemeRoot(),rtl:s.getRTL(),calendarType:s.getCalendarType(),formatSettings:{firstDayOfWeek:n?n.getInstance(s.getLocale()).getFirstDayOfWeek():void 0}}}static getLocaleDataObject(){const t=A();if(!t)return;const s=t.getConfiguration();return window.sap.ui.require("sap/ui/core/LocaleData").getInstance(s.getLocale())._get()}static _listenForThemeChange(){const t=A(),s=t.getConfiguration();t.attachThemeChanged(async()=>{await $s(s.getTheme())})}static attachListeners(){!A()||ie._listenForThemeChange()}static cssVariablesLoaded(){if(!A())return;const s=[...document.head.children].find(n=>n.id==="sap-ui-theme-sap.ui.core");if(!!s)return!!s.href.match(/\/css(-|_)variables\.css/)}static getNextZIndex(){return A()?window.sap.ui.require("sap/ui/core/Popup").getNextZIndex():void 0}static setInitialZIndex(){if(!A())return;window.sap.ui.require("sap/ui/core/Popup").setInitialZIndex(Me())}}Js("OpenUI5Support",ie);const Pr=()=>new Promise(e=>{document.body?e():document.addEventListener("DOMContentLoaded",()=>{e()})}),Ir={packageName:"@ui5/webcomponents-base",fileName:"FontFace.css",content:`@font-face{font-family:"72";font-style:normal;font-weight:400;src:local("72"),url(https://sdk.openui5.org/resources/sap/ui/core/themes/sap_fiori_3/fonts/72-Regular.woff2?ui5-webcomponents) format("woff2")}@font-face{font-family:"72full";font-style:normal;font-weight:400;src:local('72-full'),url(https://sdk.openui5.org/resources/sap/ui/core/themes/sap_fiori_3/fonts/72-Regular-full.woff2?ui5-webcomponents) format("woff2")}@font-face{font-family:"72";font-style:normal;font-weight:700;src:local('72-Bold'),url(https://sdk.openui5.org/resources/sap/ui/core/themes/sap_fiori_3/fonts/72-Bold.woff2?ui5-webcomponents) format("woff2")}@font-face{font-family:"72full";font-style:normal;font-weight:700;src:local('72-Bold-full'),url(https://sdk.openui5.org/resources/sap/ui/core/themes/sap_fiori_3/fonts/72-Bold-full.woff2?ui5-webcomponents) format("woff2")}@font-face{font-family:'72-Bold';font-style:normal;src:local('72-Bold'),url(https://sdk.openui5.org/resources/sap/ui/core/themes/sap_fiori_3/fonts/72-Bold.woff2?ui5-webcomponents) format("woff2")}@font-face{font-family:'72-Boldfull';font-style:normal;src:url(https://sdk.openui5.org/resources/sap/ui/core/themes/sap_fiori_3/fonts/72-Bold-full.woff2?ui5-webcomponents) format("woff2")}@font-face{font-family:'72-Light';font-style:normal;src:local('72-Light'),url(https://sdk.openui5.org/resources/sap/ui/core/themes/sap_fiori_3/fonts/72-Light.woff2?ui5-webcomponents) format("woff2")}@font-face{font-family:'72-Lightfull';font-style:normal;src:url(https://sdk.openui5.org/resources/sap/ui/core/themes/sap_fiori_3/fonts/72-Light-full.woff2?ui5-webcomponents) format("woff2")}@font-face{font-family:"72Black";font-style:bold;font-weight:900;src:local('72Black'),url(https://sdk.openui5.org/resources/sap/ui/core/themes/sap_horizon/fonts/72-Black.woff2?ui5-webcomponents) format("woff2")}`},xr={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')}"},Or=()=>{const e=b("OpenUI5Support");(!e||!e.isLoaded())&&Rr(),Dr()},Rr=()=>{bt("data-ui5-font-face")||$t(Ir,"data-ui5-font-face")},Dr=()=>{bt("data-ui5-font-face-override")||$t(xr,"data-ui5-font-face-override")},Nr={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}"},kr=()=>{bt("data-ui5-system-css-vars")||$t(Nr,"data-ui5-system-css-vars")};let it;const Ur=async()=>{if(it!==void 0)return it;const e=async t=>{if(typeof document=="undefined"){t();return}Sn();const s=b("OpenUI5Support"),n=s?s.isLoaded():!1,r=b("F6Navigation");s&&await s.init(),r&&!n&&r.init(),await Pr(),await Ss(Ct()),s&&s.attachListeners(),Or(),kr(),t()};return it=new Promise(e),it},Nt=new Map,kt=new Map,Pe=e=>{if(!Nt.has(e)){const t=Br(e.split("-"));Nt.set(e,t)}return Nt.get(e)},bs=e=>{if(!kt.has(e)){const t=e.replace(/([a-z])([A-Z])/g,"$1-$2").toLowerCase();kt.set(e,t)}return kt.get(e)},Br=e=>e.map((t,s)=>s===0?t.toLowerCase():t.charAt(0).toUpperCase()+t.slice(1).toLowerCase()).join(""),Hr=e=>{if(!(e instanceof HTMLElement))return"default";const t=e.getAttribute("slot");if(t){const s=t.match(/^(.+?)-\d+$/);return s?s[1]:t}return"default"},Cs=e=>e instanceof HTMLSlotElement?e.assignedNodes({flatten:!0}).filter(t=>t instanceof HTMLElement):[e],Vr=e=>e.reduce((t,s)=>t.concat(Cs(s)),[]);let Fr,Ie={include:[/^ui5-/],exclude:[]};const Ut=new Map,Ts=()=>Fr,Kt=e=>{if(!Ut.has(e)){const t=Ie.include.some(s=>e.match(s))&&!Ie.exclude.some(s=>e.match(s));Ut.set(e,t)}return Ut.get(e)},Es=e=>{if(Kt(e))return Ts()};class jr{constructor(t){this.metadata=t}getInitialState(){if(Object.prototype.hasOwnProperty.call(this,"_initialState"))return this._initialState;const t={},s=this.slotsAreManaged(),n=this.getProperties();for(const r in n){const o=n[r].type,i=n[r].defaultValue;o===Boolean?(t[r]=!1,i!==void 0&&console.warn("The 'defaultValue' metadata key is ignored for all booleans properties, they would be initialized with 'false' by default")):n[r].multiple?t[r]=[]:o===Object?t[r]="defaultValue"in n[r]?n[r].defaultValue:{}:o===String?t[r]="defaultValue"in n[r]?n[r].defaultValue:"":t[r]=i}if(s){const r=this.getSlots();for(const[o,i]of Object.entries(r)){const c=i.propertyName||o;t[c]=[]}}return this._initialState=t,t}static validatePropertyValue(t,s){return s.multiple&&t?t.map(r=>xe(r,s)):xe(t,s)}static validateSlotValue(t,s){return zr(t,s)}getPureTag(){return this.metadata.tag||""}getTag(){const t=this.metadata.tag;if(!t)return"";const s=Es(t);return s?`${t}-${s}`:t}hasAttribute(t){const s=this.getProperties()[t];return s.type!==Object&&!s.noAttribute&&!s.multiple}getPropertiesList(){return Object.keys(this.getProperties())}getAttributesList(){return this.getPropertiesList().filter(this.hasAttribute.bind(this)).map(bs)}canSlotText(){const t=this.getSlots().default;return t&&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,s,n){const r=this.getSlots()[t].invalidateOnChildChange;if(r===void 0)return!1;if(typeof r=="boolean")return r;if(typeof r=="object"){if(s==="property"){if(r.properties===void 0)return!1;if(typeof r.properties=="boolean")return r.properties;if(Array.isArray(r.properties))return r.properties.includes(n);throw new Error("Wrong format for invalidateOnChildChange.properties: boolean or array is expected")}if(s==="slot"){if(r.slots===void 0)return!1;if(typeof r.slots=="boolean")return r.slots;if(Array.isArray(r.slots))return r.slots.includes(n);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 xe=(e,t)=>{const s=t.type;let n=t.validator;return s&&s.isDataTypeClass&&(n=s),n?n.isValid(e)?e:t.defaultValue:!s||s===String?typeof e=="string"||typeof e=="undefined"||e===null?e:e.toString():s===Boolean?typeof e=="boolean"?e:!1:s===Object?typeof e=="object"?e:t.defaultValue:e in s?e:t.defaultValue},zr=(e,t)=>(e&&Cs(e).forEach(s=>{if(!(s instanceof t.type))throw new Error(`The element is not of type ${t.type.toString()}`)}),e);customElements.get("ui5-static-area")||customElements.define("ui5-static-area",class extends HTMLElement{});const Wr=(e,t)=>{const s=Zr(t),n=Ts();return e(t,s,n)},Zr=e=>{const t=e.constructor,s=t.getMetadata().getPureTag(),n=t.getUniqueDependencies().map(r=>r.getMetadata().getPureTag()).filter(Kt);return Kt(s)&&n.push(s),n},qr=()=>R("CustomStyle.eventProvider",new O),Gr="CustomCSSChange",ae=e=>{qr().attachEvent(Gr,e)},Kr=()=>R("CustomStyle.customCSSFor",{});ae(e=>{At({tag:e})});const Jr=e=>{const t=Kr();return t[e]?t[e].join(""):""},Xr=10,Bt=e=>Array.isArray(e)?e.filter(t=>!!t).flat(Xr).map(t=>typeof t=="string"?t:t.content).join(" "):typeof e=="string"?e:e.content,ut=new Map;ae(e=>{ut.delete(`${e}_normal`)});const Ls=(e,t=!1)=>{const s=e.getMetadata().getTag(),n=`${s}_${t?"static":"normal"}`,r=b("OpenUI5Enablement");if(!ut.has(n)){let o,i="";if(r&&(i=Bt(r.getBusyIndicatorStyles())),t)o=Bt(e.staticAreaStyles);else{const c=Jr(s)||"";o=`${Bt(e.styles)} ${c}`}o=`${o} ${i}`,ut.set(n,o)}return ut.get(n)},dt=new Map;ae(e=>{dt.delete(`${e}_normal`)});const Yr=(e,t=!1)=>{const n=`${e.getMetadata().getTag()}_${t?"static":"normal"}`;if(!dt.has(n)){const r=Ls(e,t),o=new CSSStyleSheet;o.replaceSync(r),dt.set(n,[o])}return dt.get(n)},Jt=(e,t=!1)=>{let s;const n=e.constructor,o=n[t?"staticAreaTemplate":"template"],i=t?e.staticAreaItem.shadowRoot:e.shadowRoot,c=Wr(o,e);if(!i){console.warn("There is no shadow root to update");return}document.adoptedStyleSheets?i.adoptedStyleSheets=Yr(n,t):s=Ls(n,t),n.render(c,i,s,t,{host:e})},Qr="--_ui5_content_density",to=e=>getComputedStyle(e).getPropertyValue(Qr);var eo=e=>{const t=/\$([-a-z0-9A-Z._]+)(?::([^$]*))?\$/.exec(e);return t&&t[2]?t[2].split(/,/):null};const so={iw:"he",ji:"yi",in:"id",sh:"sr"},no=eo("$cldr-rtl-locales:ar,fa,he$")||[],ro=e=>(e=e&&so[e]||e,no.indexOf(e)>=0),Ms=()=>{if(typeof document=="undefined")return!1;const e=on();return e!==void 0?!!e:ro(ne()||Ke())},oo="--_ui5_dir",Ps=e=>{const t=window.document,s=["ltr","rtl"],n=getComputedStyle(e).getPropertyValue(oo);return s.includes(n)?n:s.includes(e.dir)?e.dir:s.includes(t.documentElement.dir)?t.documentElement.dir:s.includes(t.body.dir)?t.body.dir:Ms()?"rtl":void 0},at="ui5-static-area-item",io="data-sap-ui-integration-popup-content";class K 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._updateAdditionalAttrs(),this._updateContentDensity(),this._updateDirection(),Jt(this.ownerElement,!0))}_updateContentDensity(){to(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=Ps(this.ownerElement);t?this.setAttribute("dir",t):this.removeAttribute("dir")}}_updateAdditionalAttrs(){this.setAttribute(at,""),this.setAttribute(io,"")}async getDomRef(){return this._updateContentDensity(),this._rendered||(this._rendered=!0,Jt(this.ownerElement,!0)),await se(),this.shadowRoot}static getTag(){const t=Es(at);return t?`${at}-${t}`:at}static createInstance(){return customElements.get(K.getTag())||customElements.define(K.getTag(),K),document.createElement(this.getTag())}}const Xt=new WeakMap,ao=(e,t,s)=>{const n=new MutationObserver(t);Xt.set(e,n),n.observe(e,s)},co=e=>{const t=Xt.get(e);t&&(t.disconnect(),Xt.delete(e))},lo=["value-changed"];let ht;const uo=e=>lo.includes(e),ho=e=>{const t=ce();return!(typeof t!="boolean"&&t.events&&t.events.includes&&t.events.includes(e))},ce=()=>(ht===void 0&&(ht=ln()),ht),fo=e=>{ht=e},po=e=>{const t=ce();return uo(e)?!1:t===!0?!0:!ho(e)},go=["disabled","title","hidden","role","draggable"],Oe=e=>go.includes(e)||e.startsWith("aria")?!0:![HTMLElement,Element,Node].some(s=>s.prototype.hasOwnProperty(e)),Re=(e,t)=>{if(e.length!==t.length)return!1;for(let s=0;s<e.length;s++)if(e[s]!==t[s])return!1;return!0};let mo=0;const De=new Map,Ht=new Map;function z(e){this._suppressInvalidation||(this.onInvalidation(e),this._changedState.push(e),ls(this),this._eventProvider.fireEvent("invalidate",{...e,target:this}))}let Ne={};class T 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._eventProvider=new O;let s;this._domRefReadyPromise=new Promise(n=>{s=n}),this._domRefReadyPromise._deferredResolve=s,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_${++mo}`),this.__id}async connectedCallback(){const t=this.constructor;this.setAttribute(t.getMetadata().getPureTag(),""),t.getMetadata().supportsF6FastNavigation()&&this.setAttribute("data-sap-ui-fastnavgroup","true");const s=t.getMetadata().slotsAreManaged();this._inDOM=!0,s&&(this._startObservingDOMChildren(),await this._processChildren()),this._inDOM&&(us(this),this._domRefReadyPromise._deferredResolve(),this._fullyConnected=!0,this.onEnterDOM())}disconnectedCallback(){const s=this.constructor.getMetadata().slotsAreManaged();this._inDOM=!1,s&&this._stopObservingDOMChildren(),this._fullyConnected&&(this.onExitDOM(),this._fullyConnected=!1),this.staticAreaItem&&this.staticAreaItem.parentElement&&this.staticAreaItem.parentElement.removeChild(this.staticAreaItem),On(this)}onBeforeRendering(){}onAfterRendering(){}onEnterDOM(){}onExitDOM(){}_startObservingDOMChildren(){const t=this.constructor;if(!t.getMetadata().hasSlots())return;const n=t.getMetadata().canSlotText(),r={childList:!0,subtree:n,characterData:n};ao(this,this._processChildren.bind(this),r)}_stopObservingDOMChildren(){co(this)}async _processChildren(){this.constructor.getMetadata().hasSlots()&&await this._updateSlots()}async _updateSlots(){const t=this.constructor,s=t.getMetadata().getSlots(),n=t.getMetadata().canSlotText(),r=Array.from(n?this.childNodes:this.children),o=new Map,i=new Map;for(const[u,d]of Object.entries(s)){const h=d.propertyName||u;i.set(h,u),o.set(h,[...this._state[h]]),this._clearSlot(u,d)}const c=new Map,a=new Map,l=r.map(async(u,d)=>{const h=Hr(u),p=s[h];if(p===void 0){if(h!=="default"){const g=Object.keys(s).join(", ");console.warn(`Unknown slotName: ${h}, ignoring`,u,`Valid values are: ${g}`)}return}if(p.individualSlots){const g=(c.get(h)||0)+1;c.set(h,g),u._individualSlot=`${h}-${g}`}if(u instanceof HTMLElement){const g=u.localName;if(g.includes("-")){if(!window.customElements.get(g)){const zs=window.customElements.whenDefined(g);let rt=De.get(g);rt||(rt=new Promise(Ws=>setTimeout(Ws,1e3)),De.set(g,rt)),await Promise.race([zs,rt])}window.customElements.upgrade(u)}}if(u=t.getMetadata().constructor.validateSlotValue(u,p),ke(u)&&p.invalidateOnChildChange){const g=this._getChildChangeListener(h);g&&u.attachInvalidate.call(u,g)}u instanceof HTMLSlotElement&&this._attachSlotChange(u,h);const m=p.propertyName||h;a.has(m)?a.get(m).push({child:u,idx:d}):a.set(m,[{child:u,idx:d}])});await Promise.all(l),a.forEach((u,d)=>{this._state[d]=u.sort((h,p)=>h.idx-p.idx).map(h=>h.child)});let f=!1;for(const[u,d]of Object.entries(s)){const h=d.propertyName||u;Re(o.get(h),this._state[h])||(z.call(this,{type:"slot",name:i.get(h),reason:"children"}),f=!0)}f||z.call(this,{type:"slot",name:"default",reason:"textcontent"})}_clearSlot(t,s){const n=s.propertyName||t;this._state[n].forEach(o=>{if(ke(o)){const i=this._getChildChangeListener(t);i&&o.detachInvalidate.call(o,i)}o instanceof HTMLSlotElement&&this._detachSlotChange(o,t)}),this._state[n]=[]}attachInvalidate(t){this._eventProvider.attachEvent("invalidate",t)}detachInvalidate(t){this._eventProvider.detachEvent("invalidate",t)}_onChildChange(t,s){!this.constructor.getMetadata().shouldInvalidateOnChildChange(t,s.type,s.name)||z.call(this,{type:"slot",name:t,reason:"childchange",child:s.target})}attributeChangedCallback(t,s,n){let r;if(this._doNotSyncAttributes.has(t))return;const o=this.constructor.getMetadata().getProperties(),i=t.replace(/^ui5-/,""),c=Pe(i);if(o.hasOwnProperty(c)){const a=o[c],l=a.type;let f=a.validator;l&&l.isDataTypeClass&&(f=l),f?r=f.attributeToProperty(n):l===Boolean?r=n!==null:r=n,this[c]=r}}_updateAttribute(t,s){const n=this.constructor;if(!n.getMetadata().hasAttribute(t))return;const o=n.getMetadata().getProperties()[t],i=o.type;let c=o.validator;const a=bs(t),l=this.getAttribute(a);if(i&&i.isDataTypeClass&&(c=i),c){const f=c.propertyToAttribute(s);f===null?(this._doNotSyncAttributes.add(a),this.removeAttribute(a),this._doNotSyncAttributes.delete(a)):this.setAttribute(a,f)}else i===Boolean?s===!0&&l===null?this.setAttribute(a,""):s===!1&&l!==null&&this.removeAttribute(a):typeof s!="object"&&l!==s&&this.setAttribute(a,s)}_upgradeProperty(t){if(this.hasOwnProperty(t)){const s=this[t];delete this[t],this[t]=s}}_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,s){const n=this._getSlotChangeListener(s);n&&t.addEventListener("slotchange",n)}_detachSlotChange(t,s){t.removeEventListener("slotchange",this._getSlotChangeListener(s))}_onSlotChange(t){z.call(this,{type:"slot",name:t,reason:"slotchange"})}onInvalidation(t){}_render(){const t=this.constructor,s=t.getMetadata().hasIndividualSlots();this._suppressInvalidation=!0,this.onBeforeRendering(),this._onComponentStateFinalized&&this._onComponentStateFinalized(),this._suppressInvalidation=!1,this._changedState=[],t._needsShadowDOM()&&Jt(this),this.staticAreaItem&&this.staticAreaItem.update(),s&&this._assignIndividualSlotsToChildren(),this.onAfterRendering()}_assignIndividualSlotsToChildren(){Array.from(this.children).forEach(s=>{s._individualSlot&&s.setAttribute("slot",s._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(s=>!["link","style"].includes(s.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 s=this.getFocusDomRef();s&&typeof s.focus=="function"&&s.focus(t)}fireEvent(t,s,n=!1,r=!0){const o=this._fireEvent(t,s,n,r),i=Pe(t);return i!==t?o&&this._fireEvent(i,s,n):o}_fireEvent(t,s,n=!1,r=!0){const o=new CustomEvent(`ui5-${t}`,{detail:s,composed:!1,bubbles:r,cancelable:n}),i=this.dispatchEvent(o);if(po(t))return i;const c=new CustomEvent(t,{detail:s,composed:!1,bubbles:r,cancelable:n});return this.dispatchEvent(c)&&i}getSlottedNodes(t){return Vr(this[t])}get effectiveDir(){return Pn(this.constructor),Ps(this)}get isUI5Element(){return!0}get classes(){return{}}static get observedAttributes(){return this.getMetadata().getAttributesList()}static _needsShadowDOM(){return!!this.template}static _needsStaticArea(){return!!this.staticAreaTemplate}getStaticAreaItemDomRef(){if(!this.constructor._needsStaticArea())throw new Error("This component does not use the static area");return this.staticAreaItem||(this.staticAreaItem=K.createInstance(),this.staticAreaItem.setOwnerElement(this)),this.staticAreaItem.parentElement||rs("ui5-static-area").appendChild(this.staticAreaItem),this.staticAreaItem.getDomRef()}static _generateAccessors(){const t=this.prototype,s=this.getMetadata().slotsAreManaged(),n=this.getMetadata().getProperties();for(const[r,o]of Object.entries(n)){if(Oe(r)||console.warn(`"${r}" is not a valid property name. Use a name that does not collide with DOM APIs`),o.type===Boolean&&o.defaultValue)throw new Error(`Cannot set a default value for property "${r}". All booleans are false by default.`);if(o.type===Array)throw new Error(`Wrong type for property "${r}". Properties cannot be of type Array - use "multiple: true" and set "type" to the single value type, such as "String", "Object", etc...`);if(o.type===Object&&o.defaultValue)throw new Error(`Cannot set a default value for property "${r}". All properties of type "Object" are empty objects by default.`);if(o.multiple&&o.defaultValue)throw new Error(`Cannot set a default value for property "${r}". All multiple properties are empty arrays by default.`);Object.defineProperty(t,r,{get(){if(this._state[r]!==void 0)return this._state[r];const i=o.defaultValue;return o.type===Boolean?!1:o.type===String?i:o.multiple?[]:i},set(i){let c;i=this.constructor.getMetadata().constructor.validatePropertyValue(i,o);const f=o.type;let u=o.validator;const d=this._state[r];f&&f.isDataTypeClass&&(u=f),u?c=!u.valuesAreEqual(d,i):Array.isArray(d)&&Array.isArray(i)&&o.multiple&&o.compareValues?c=!Re(d,i):c=d!==i,c&&(this._state[r]=i,z.call(this,{type:"property",name:r,newValue:i,oldValue:d}),this._updateAttribute(r,i))}})}if(s){const r=this.getMetadata().getSlots();for(const[o,i]of Object.entries(r)){Oe(o)||console.warn(`"${o}" is not a valid property name. Use a name that does not collide with DOM APIs`);const c=i.propertyName||o;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 metadata(){return Ne}static set metadata(t){Ne=t}static get styles(){return""}static get staticAreaStyles(){return""}static get dependencies(){return[]}static getUniqueDependencies(){if(!Ht.has(this)){const t=this.dependencies.filter((s,n,r)=>r.indexOf(s)===n);Ht.set(this,t)}return Ht.get(this)||[]}static whenDependenciesDefined(){return Promise.all(this.getUniqueDependencies().map(t=>t.define()))}static async onDefine(){return Promise.resolve()}static async define(){await Ur(),await Promise.all([this.whenDependenciesDefined(),this.onDefine()]);const t=this.getMetadata().getTag(),s=Tn(t),n=customElements.get(t);return n&&!s?Ln(t):n||(this._generateAccessors(),Cn(t),window.customElements.define(t,this)),this}static getMetadata(){if(this.hasOwnProperty("_metadata"))return this._metadata;const s=[Object.keys(this.metadata).length?this.metadata:this.decoratorMetadata];let n=this;for(;n!==T;){n=Object.getPrototypeOf(n);const o=Object.keys(n.metadata).length?n.metadata:n.decoratorMetadata;s.unshift(o)}const r=Qt({},...s);return this._metadata=new jr(r),this._metadata}}T.decoratorMetadata={};const ke=e=>"isUI5Element"in e;/**
|
|
10
|
-
* @license
|
|
11
|
-
* Copyright 2017 Google LLC
|
|
12
|
-
* SPDX-License-Identifier: BSD-3-Clause
|
|
13
|
-
*/var Vt;const V=globalThis.trustedTypes,Ue=V?V.createPolicy("lit-html",{createHTML:e=>e}):void 0,S=`lit$${(Math.random()+"").slice(9)}$`,le="?"+S,yo=`<${le}>`,F=document,Y=(e="")=>F.createComment(e),Q=e=>e===null||typeof e!="object"&&typeof e!="function",Is=Array.isArray,xs=e=>{var t;return Is(e)||typeof((t=e)===null||t===void 0?void 0:t[Symbol.iterator])=="function"},W=/<(?:(!--|\/[^a-zA-Z])|(\/?[a-zA-Z][^>\s]*)|(\/?$))/g,Be=/-->/g,He=/>/g,L=/>|[ \n\r](?:([^\s"'>=/]+)([ \n\r]*=[ \n\r]*(?:[^ \n\r"'`<>=]|("|')|))|$)/g,Ve=/'/g,Fe=/"/g,Os=/^(?:script|style|textarea|title)$/i,_o=e=>(t,...s)=>({_$litType$:e,strings:t,values:s}),wo=_o(1),I=Symbol.for("lit-noChange"),y=Symbol.for("lit-nothing"),je=new WeakMap,vo=(e,t,s)=>{var n,r;const o=(n=s==null?void 0:s.renderBefore)!==null&&n!==void 0?n:t;let i=o._$litPart$;if(i===void 0){const c=(r=s==null?void 0:s.renderBefore)!==null&&r!==void 0?r:null;o._$litPart$=i=new j(t.insertBefore(Y(),c),c,void 0,s!=null?s:{})}return i._$AI(e),i},B=F.createTreeWalker(F,129,null,!1),Rs=(e,t)=>{const s=e.length-1,n=[];let r,o=t===2?"<svg>":"",i=W;for(let a=0;a<s;a++){const l=e[a];let f,u,d=-1,h=0;for(;h<l.length&&(i.lastIndex=h,u=i.exec(l),u!==null);)h=i.lastIndex,i===W?u[1]==="!--"?i=Be:u[1]!==void 0?i=He:u[2]!==void 0?(Os.test(u[2])&&(r=RegExp("</"+u[2],"g")),i=L):u[3]!==void 0&&(i=L):i===L?u[0]===">"?(i=r!=null?r:W,d=-1):u[1]===void 0?d=-2:(d=i.lastIndex-u[2].length,f=u[1],i=u[3]===void 0?L:u[3]==='"'?Fe:Ve):i===Fe||i===Ve?i=L:i===Be||i===He?i=W:(i=L,r=void 0);const p=i===L&&e[a+1].startsWith("/>")?" ":"";o+=i===W?l+yo:d>=0?(n.push(f),l.slice(0,d)+"$lit$"+l.slice(d)+S+p):l+S+(d===-2?(n.push(void 0),a):p)}const c=o+(e[s]||"<?>")+(t===2?"</svg>":"");if(!Array.isArray(e)||!e.hasOwnProperty("raw"))throw Error("invalid template strings array");return[Ue!==void 0?Ue.createHTML(c):c,n]};class tt{constructor({strings:t,_$litType$:s},n){let r;this.parts=[];let o=0,i=0;const c=t.length-1,a=this.parts,[l,f]=Rs(t,s);if(this.el=tt.createElement(l,n),B.currentNode=this.el.content,s===2){const u=this.el.content,d=u.firstChild;d.remove(),u.append(...d.childNodes)}for(;(r=B.nextNode())!==null&&a.length<c;){if(r.nodeType===1){if(r.hasAttributes()){const u=[];for(const d of r.getAttributeNames())if(d.endsWith("$lit$")||d.startsWith(S)){const h=f[i++];if(u.push(d),h!==void 0){const p=r.getAttribute(h.toLowerCase()+"$lit$").split(S),m=/([.?@])?(.*)/.exec(h);a.push({type:1,index:o,name:m[2],strings:p,ctor:m[1]==="."?Ns:m[1]==="?"?ks:m[1]==="@"?Us:et})}else a.push({type:6,index:o})}for(const d of u)r.removeAttribute(d)}if(Os.test(r.tagName)){const u=r.textContent.split(S),d=u.length-1;if(d>0){r.textContent=V?V.emptyScript:"";for(let h=0;h<d;h++)r.append(u[h],Y()),B.nextNode(),a.push({type:2,index:++o});r.append(u[d],Y())}}}else if(r.nodeType===8)if(r.data===le)a.push({type:2,index:o});else{let u=-1;for(;(u=r.data.indexOf(S,u+1))!==-1;)a.push({type:7,index:o}),u+=S.length-1}o++}}static createElement(t,s){const n=F.createElement("template");return n.innerHTML=t,n}}function x(e,t,s=e,n){var r,o,i,c;if(t===I)return t;let a=n!==void 0?(r=s._$Cl)===null||r===void 0?void 0:r[n]:s._$Cu;const l=Q(t)?void 0:t._$litDirective$;return(a==null?void 0:a.constructor)!==l&&((o=a==null?void 0:a._$AO)===null||o===void 0||o.call(a,!1),l===void 0?a=void 0:(a=new l(e),a._$AT(e,s,n)),n!==void 0?((i=(c=s)._$Cl)!==null&&i!==void 0?i:c._$Cl=[])[n]=a:s._$Cu=a),a!==void 0&&(t=x(e,a._$AS(e,t.values),a,n)),t}class Ds{constructor(t,s){this.v=[],this._$AN=void 0,this._$AD=t,this._$AM=s}get parentNode(){return this._$AM.parentNode}get _$AU(){return this._$AM._$AU}p(t){var s;const{el:{content:n},parts:r}=this._$AD,o=((s=t==null?void 0:t.creationScope)!==null&&s!==void 0?s:F).importNode(n,!0);B.currentNode=o;let i=B.nextNode(),c=0,a=0,l=r[0];for(;l!==void 0;){if(c===l.index){let f;l.type===2?f=new j(i,i.nextSibling,this,t):l.type===1?f=new l.ctor(i,l.name,l.strings,this,t):l.type===6&&(f=new Bs(i,this,t)),this.v.push(f),l=r[++a]}c!==(l==null?void 0:l.index)&&(i=B.nextNode(),c++)}return o}m(t){let s=0;for(const n of this.v)n!==void 0&&(n.strings!==void 0?(n._$AI(t,n,s),s+=n.strings.length-2):n._$AI(t[s])),s++}}class j{constructor(t,s,n,r){var o;this.type=2,this._$AH=y,this._$AN=void 0,this._$AA=t,this._$AB=s,this._$AM=n,this.options=r,this._$Cg=(o=r==null?void 0:r.isConnected)===null||o===void 0||o}get _$AU(){var t,s;return(s=(t=this._$AM)===null||t===void 0?void 0:t._$AU)!==null&&s!==void 0?s:this._$Cg}get parentNode(){let t=this._$AA.parentNode;const s=this._$AM;return s!==void 0&&t.nodeType===11&&(t=s.parentNode),t}get startNode(){return this._$AA}get endNode(){return this._$AB}_$AI(t,s=this){t=x(this,t,s),Q(t)?t===y||t==null||t===""?(this._$AH!==y&&this._$AR(),this._$AH=y):t!==this._$AH&&t!==I&&this.$(t):t._$litType$!==void 0?this.T(t):t.nodeType!==void 0?this.k(t):xs(t)?this.S(t):this.$(t)}M(t,s=this._$AB){return this._$AA.parentNode.insertBefore(t,s)}k(t){this._$AH!==t&&(this._$AR(),this._$AH=this.M(t))}$(t){this._$AH!==y&&Q(this._$AH)?this._$AA.nextSibling.data=t:this.k(F.createTextNode(t)),this._$AH=t}T(t){var s;const{values:n,_$litType$:r}=t,o=typeof r=="number"?this._$AC(t):(r.el===void 0&&(r.el=tt.createElement(r.h,this.options)),r);if(((s=this._$AH)===null||s===void 0?void 0:s._$AD)===o)this._$AH.m(n);else{const i=new Ds(o,this),c=i.p(this.options);i.m(n),this.k(c),this._$AH=i}}_$AC(t){let s=je.get(t.strings);return s===void 0&&je.set(t.strings,s=new tt(t)),s}S(t){Is(this._$AH)||(this._$AH=[],this._$AR());const s=this._$AH;let n,r=0;for(const o of t)r===s.length?s.push(n=new j(this.M(Y()),this.M(Y()),this,this.options)):n=s[r],n._$AI(o),r++;r<s.length&&(this._$AR(n&&n._$AB.nextSibling,r),s.length=r)}_$AR(t=this._$AA.nextSibling,s){var n;for((n=this._$AP)===null||n===void 0||n.call(this,!1,!0,s);t&&t!==this._$AB;){const r=t.nextSibling;t.remove(),t=r}}setConnected(t){var s;this._$AM===void 0&&(this._$Cg=t,(s=this._$AP)===null||s===void 0||s.call(this,t))}}class et{constructor(t,s,n,r,o){this.type=1,this._$AH=y,this._$AN=void 0,this.element=t,this.name=s,this._$AM=r,this.options=o,n.length>2||n[0]!==""||n[1]!==""?(this._$AH=Array(n.length-1).fill(new String),this.strings=n):this._$AH=y}get tagName(){return this.element.tagName}get _$AU(){return this._$AM._$AU}_$AI(t,s=this,n,r){const o=this.strings;let i=!1;if(o===void 0)t=x(this,t,s,0),i=!Q(t)||t!==this._$AH&&t!==I,i&&(this._$AH=t);else{const c=t;let a,l;for(t=o[0],a=0;a<o.length-1;a++)l=x(this,c[n+a],s,a),l===I&&(l=this._$AH[a]),i||(i=!Q(l)||l!==this._$AH[a]),l===y?t=y:t!==y&&(t+=(l!=null?l:"")+o[a+1]),this._$AH[a]=l}i&&!r&&this.C(t)}C(t){t===y?this.element.removeAttribute(this.name):this.element.setAttribute(this.name,t!=null?t:"")}}class Ns extends et{constructor(){super(...arguments),this.type=3}C(t){this.element[this.name]=t===y?void 0:t}}const Ao=V?V.emptyScript:"";class ks extends et{constructor(){super(...arguments),this.type=4}C(t){t&&t!==y?this.element.setAttribute(this.name,Ao):this.element.removeAttribute(this.name)}}class Us extends et{constructor(t,s,n,r,o){super(t,s,n,r,o),this.type=5}_$AI(t,s=this){var n;if((t=(n=x(this,t,s,0))!==null&&n!==void 0?n:y)===I)return;const r=this._$AH,o=t===y&&r!==y||t.capture!==r.capture||t.once!==r.once||t.passive!==r.passive,i=t!==y&&(r===y||o);o&&this.element.removeEventListener(this.name,this,r),i&&this.element.addEventListener(this.name,this,t),this._$AH=t}handleEvent(t){var s,n;typeof this._$AH=="function"?this._$AH.call((n=(s=this.options)===null||s===void 0?void 0:s.host)!==null&&n!==void 0?n:this.element,t):this._$AH.handleEvent(t)}}class Bs{constructor(t,s,n){this.element=t,this.type=6,this._$AN=void 0,this._$AM=s,this.options=n}get _$AU(){return this._$AM._$AU}_$AI(t){x(this,t)}}const So={L:"$lit$",P:S,V:le,I:1,N:Rs,R:Ds,j:xs,D:x,H:j,F:et,O:ks,W:Us,B:Ns,Z:Bs},ze=window.litHtmlPolyfillSupport;ze==null||ze(tt,j),((Vt=globalThis.litHtmlVersions)!==null&&Vt!==void 0?Vt:globalThis.litHtmlVersions=[]).push("2.2.2");/**
|
|
14
|
-
* @license
|
|
15
|
-
* Copyright 2017 Google LLC
|
|
16
|
-
* SPDX-License-Identifier: BSD-3-Clause
|
|
17
|
-
*/const Hs={ATTRIBUTE:1,CHILD:2,PROPERTY:3,BOOLEAN_ATTRIBUTE:4,EVENT:5,ELEMENT:6},$o=e=>(...t)=>({_$litDirective$:e,values:t});class Vs{constructor(t){}get _$AU(){return this._$AM._$AU}_$AT(t,s,n){this._$Ct=t,this._$AM=s,this._$Ci=n}_$AS(t,s){return this.update(t,s)}update(t,s){return this.render(...s)}}/**
|
|
18
|
-
* @license
|
|
19
|
-
* Copyright 2020 Google LLC
|
|
20
|
-
* SPDX-License-Identifier: BSD-3-Clause
|
|
21
|
-
*/const{H:bo}=So,We=()=>document.createComment(""),Z=(e,t,s)=>{var n;const r=e._$AA.parentNode,o=t===void 0?e._$AB:t._$AA;if(s===void 0){const i=r.insertBefore(We(),o),c=r.insertBefore(We(),o);s=new bo(i,c,e,e.options)}else{const i=s._$AB.nextSibling,c=s._$AM,a=c!==e;if(a){let l;(n=s._$AQ)===null||n===void 0||n.call(s,e),s._$AM=e,s._$AP!==void 0&&(l=e._$AU)!==c._$AU&&s._$AP(l)}if(i!==o||a){let l=s._$AA;for(;l!==i;){const f=l.nextSibling;r.insertBefore(l,o),l=f}}}return s},M=(e,t,s=e)=>(e._$AI(t,s),e),Co={},To=(e,t=Co)=>e._$AH=t,Eo=e=>e._$AH,Ft=e=>{var t;(t=e._$AP)===null||t===void 0||t.call(e,!1,!0);let s=e._$AA;const n=e._$AB.nextSibling;for(;s!==n;){const r=s.nextSibling;s.remove(),s=r}};/**
|
|
22
|
-
* @license
|
|
23
|
-
* Copyright 2017 Google LLC
|
|
24
|
-
* SPDX-License-Identifier: BSD-3-Clause
|
|
25
|
-
*/const Ze=(e,t,s)=>{const n=new Map;for(let r=t;r<=s;r++)n.set(e[r],r);return n},Fs=$o(class extends Vs{constructor(e){if(super(e),e.type!==Hs.CHILD)throw Error("repeat() can only be used in text expressions")}dt(e,t,s){let n;s===void 0?s=t:t!==void 0&&(n=t);const r=[],o=[];let i=0;for(const c of e)r[i]=n?n(c,i):i,o[i]=s(c,i),i++;return{values:o,keys:r}}render(e,t,s){return this.dt(e,t,s).values}update(e,[t,s,n]){var r;const o=Eo(e),{values:i,keys:c}=this.dt(t,s,n);if(!Array.isArray(o))return this.ut=c,i;const a=(r=this.ut)!==null&&r!==void 0?r:this.ut=[],l=[];let f,u,d=0,h=o.length-1,p=0,m=i.length-1;for(;d<=h&&p<=m;)if(o[d]===null)d++;else if(o[h]===null)h--;else if(a[d]===c[p])l[p]=M(o[d],i[p]),d++,p++;else if(a[h]===c[m])l[m]=M(o[h],i[m]),h--,m--;else if(a[d]===c[m])l[m]=M(o[d],i[m]),Z(e,l[m+1],o[d]),d++,m--;else if(a[h]===c[p])l[p]=M(o[h],i[p]),Z(e,o[d],o[h]),h--,p++;else if(f===void 0&&(f=Ze(c,p,m),u=Ze(a,d,h)),f.has(a[d]))if(f.has(a[h])){const g=u.get(c[p]),nt=g!==void 0?o[g]:null;if(nt===null){const Tt=Z(e,o[d]);M(Tt,i[p]),l[p]=Tt}else l[p]=M(nt,i[p]),Z(e,o[d],nt),o[g]=null;p++}else Ft(o[h]),h--;else Ft(o[d]),d++;for(;p<=m;){const g=Z(e,l[m+1]);M(g,i[p]),l[p++]=g}for(;d<=h;){const g=o[d++];g!==null&&Ft(g)}return this.ut=c,To(e,l),I}});/**
|
|
26
|
-
* @license
|
|
27
|
-
* Copyright 2018 Google LLC
|
|
28
|
-
* SPDX-License-Identifier: BSD-3-Clause
|
|
29
|
-
*/const v=e=>e!=null?e:y;/**
|
|
30
|
-
* @license
|
|
31
|
-
* Copyright 2017 Google LLC
|
|
32
|
-
* SPDX-License-Identifier: BSD-3-Clause
|
|
33
|
-
*/class qe extends Vs{constructor(t){if(super(t),this.it=y,t.type!==Hs.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.it=t;if(t===I)return t;if(typeof t!="string")throw Error(this.constructor.directiveName+"() called with a non-string value");if(t===this.it)return this.ft;this.it=t;const s=[t];return s.raw=s,this.ft={_$litType$:this.constructor.resultType,strings:s,values:[]}}}qe.directiveName="unsafeHTML",qe.resultType=1;const w=(e,...t)=>{const s=b("LitStatic");return(s?s.html:wo)(e,...t)},st=(e,t,s,n,r)=>{const o=b("OpenUI5Enablement");o&&!n&&(e=o.wrapTemplateResultInBusyMarkup(w,r.host,e)),typeof s=="string"?e=w`<style>${s}</style>${e}`:Array.isArray(s)&&s.length&&(e=w`${s.map(i=>w`<link type="text/css" rel="stylesheet" href="${i}">`)}${e}`),vo(e,t,r)},Lo={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 js extends T{static get metadata(){return Lo}static get render(){return st}static get template(){return t=>w`<div><p>
|
|
34
|
-
<slot></slot>
|
|
35
|
-
<slot name="other"></slot>
|
|
36
|
-
<slot name="individual-1"></slot>
|
|
37
|
-
<slot name="individual-2"></slot>
|
|
38
|
-
</p></div>`}static get styles(){return`:host {
|
|
39
|
-
display: inline-block;
|
|
40
|
-
border: 1px solid black;
|
|
41
|
-
color: var(--var1);
|
|
42
|
-
}`}onBeforeRendering(){}onAfterRendering(){}onEnterDOM(){}onExitDOM(){}}js.define();const Mo={tag:"ui5-test-no-shadow"};class Po extends T{static get metadata(){return Mo}}Po.define();const Io={tag:"ui5-test-parent",managedSlots:!0,slots:{default:{type:Node,invalidateOnChildChange:{properties:["prop1"]}},items:{type:HTMLElement,invalidateOnChildChange:{properties:!0}}}};class xo extends T{static get metadata(){return Io}static get render(){return st}static get template(){return t=>w`<div>
|
|
43
|
-
<slot></slot>
|
|
44
|
-
</div>`}}xo.define();const Oo={tag:"ui5-test-child",properties:{prop1:{type:String},prop2:{type:String},prop3:{type:String}}};class Ro extends T{static get metadata(){return Oo}static get render(){return st}static get template(){return t=>w`<div></div>`}}Ro.define();const Do={tag:"ui5-with-static-area",properties:{staticContent:{type:Boolean}},slots:{}};class No extends T{static get metadata(){return Do}static get render(){return st}static get template(){return t=>w`
|
|
45
|
-
<div dir=${t.effectiveDir}>
|
|
46
|
-
WithStaticArea works!
|
|
47
|
-
</div>`}static get staticAreaTemplate(){return t=>w`
|
|
48
|
-
<div class="ui5-with-static-area-content">
|
|
49
|
-
Static area content.
|
|
50
|
-
</div>`}static get styles(){return`
|
|
51
|
-
:host {
|
|
52
|
-
display: inline-block;
|
|
53
|
-
border: 1px solid black;
|
|
54
|
-
color: red;
|
|
55
|
-
}`}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(){}}No.define();const ko=(e,t,s)=>w`<div>Root text: ${v(e.text)}${Fs(e.items,(n,r)=>n._id||r,(n,r)=>Uo(n,r,e))} Root text: ${v(e.text)}</div>`,Uo=(e,t,s,n,r)=>w`<h3>Item-${t}</h3>${e.text?Bo(e,t,s):void 0}<ul>${Fs(e.words,(o,i)=>o._id||i,(o,i)=>Ho(o,i,s))}</ul>${e.text?Vo(e,t,s):void 0}`,Bo=(e,t,s,n,r)=>w`<div class="before-each-content--start--${t}">Root text: ${v(s.text)}, Item text: ${v(e.text)}</div>`,Ho=(e,t,s,n,r)=>w`<li><h3>Word-${t}</h3><div class="nested-each-content--${t}--0">Root Text: ${v(s.text)}, Word text: ${v(e.text)}</div><div class="nested-each-content--${t}--1">Root Text: ${v(s.text)}, Word text: ${v(e.text)}</div></li>`,Vo=(e,t,s,n,r)=>w`<div class="after-each-content--end--${t}">Root text: ${v(s.text)}, Item text: ${v(e.text)}</div>`;class Fo extends T{static get metadata(){return{tag:"ui5-test-complex-template"}}static get render(){return st}static get template(){return ko}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"}]}]}}Fo.define();const jo={tag:"ui5-test-generic-ext",properties:{extProp:{type:String},strProp:{defaultValue:"Ext"}},slots:{extSlot:{type:HTMLElement}}};class zo extends js{static get metadata(){return jo}}zo.define();const Wo={content:":root{ --var1: red; }",packageName:"",fileName:""},Zo={content:":root{ --var1: green; }",packageName:"",fileName:""},qo={content:":root{ --var1: blue; }",packageName:"",fileName:""},Go={content:":root{ --var1: orange; }",packageName:"",fileName:""},Ko={content:":root{ --var1: orange; }",packageName:"",fileName:""},Jo={content:":root{ --var1: yellow; }",packageName:"",fileName:""},Xo={content:":root{ --var1: yellow; }",packageName:"",fileName:""};E("@ui5/webcomponents-base-test","sap_fiori_3",()=>Wo);E("@ui5/webcomponents-base-test","sap_fiori_3_dark",()=>Zo);E("@ui5/webcomponents-base-test","sap_belize",()=>qo);E("@ui5/webcomponents-base-test","sap_belize_hcb",()=>Go);E("@ui5/webcomponents-base-test","sap_belize_hcw",()=>Ko);E("@ui5/webcomponents-base-test","sap_fiori_3_hcb",()=>Jo);E("@ui5/webcomponents-base-test","sap_fiori_3_hcw",()=>Xo);const Yo=/('')|'([^']+(?:''[^']*)*)(?:'|$)|\{([0-9]+(?:\s*,[^{}]*)?)\}|[{}]/g,Qo=(e,t)=>(t=t||[],e.replace(Yo,(s,n,r,o,i)=>{if(n)return"'";if(r)return r.replace(/''/g,"'");if(o){const c=typeof o=="string"?parseInt(o):o;return String(t[c])}throw new Error(`[i18n]: pattern syntax error at pos ${i}`)})),jt=new Map;class ti{constructor(t){this.packageName=t}getText(t,...s){if(typeof t=="string"&&(t={key:t,defaultText:t}),!t||!t.key)return"";const n=qn(this.packageName);n&&!n[t.key]&&console.warn(`Key ${t.key} not found in the i18n bundle, the default text will be used`);const r=n&&n[t.key]?n[t.key]:t.defaultText||t.key;return Qo(r,s)}}const ei=e=>{if(jt.has(e))return jt.get(e);const t=new ti(e);return jt.set(e,t),t},si=async e=>(await fs(e),ei(e)),ni=typeof window.chrome=="object"||typeof window.v8=="object"?(e,t)=>(t>2&&40*t>e.length,e):e=>e,ri=/(?:\r\n|\r|\n|^)[ \t\f]*/,oi=/(\\u[0-9a-fA-F]{0,4})|(\\.)|(\\$)|([ \t\f]*[ \t\f:=][ \t\f]*)/g,ii=/(\\u[0-9a-fA-F]{0,4})|(\\.)|(\\$)/g,ai={"\\f":"\f","\\n":`
|
|
56
|
-
`,"\\r":"\r","\\t":" "},ci=e=>{const t={},s=e.split(ri);let n,r,o,i,c,a,l,f;const u=d=>{i?(i=`${i}${d}`,f++):(i=d,f=0)};for(c=0;c<s.length;c++)if(n=s[c],!(n===""||n.charAt(0)==="#"||n.charAt(0)==="!")){for(r=oi,l=0,r.lastIndex=l,o=null,i="",a=r.exec(n);a!==null;){if(l<a.index&&u(n.slice(l,a.index)),l=r.lastIndex,a[1]){if(a[1].length!==6)throw new Error(`Incomplete Unicode Escape '${a[1]}'`);u(String.fromCharCode(parseInt(a[1].slice(2),16)))}else a[2]?u(ai[a[2]]||a[2].slice(1)):a[3]?(n=s[++c],l=0,r.lastIndex=l):a[4]&&(o=i,i="",r=ii,r.lastIndex=l);a=r.exec(n)}l<n.length&&u(n.slice(l)),o==null&&(o=i,i=""),t[o]=ni(i,i?f:0)}return t};let zt;const li=()=>(zt===void 0&&(zt=sn()),zt);var Yt;(function(e){e.Gregorian="Gregorian",e.Islamic="Islamic",e.Japanese="Japanese",e.Buddhist="Buddhist",e.Persian="Persian"})(Yt||(Yt={}));var Ge=Yt;let q;const ui=()=>(q===void 0&&(q=un()),q&&q in Ge?q:Ge.Gregorian);let Wt;const di=()=>(Wt===void 0&&(Wt=dn()),Wt.firstDayOfWeek),hi=new O,fi="directionChange",pi=()=>hi.fireEvent(fi,void 0),gi=async()=>{const e=pi();await Promise.all(e),await At({rtlAware:!0})};window.registerThemePropertiesLoader=E;window["sap-ui-webcomponents-bundle"]={configuration:{getAnimationMode:li,getLanguage:ne,setLanguage:Un,getTheme:Ct,setTheme:$s,getNoConflict:ce,setNoConflict:fo,getCalendarType:ui,getRTL:Ms,getFirstDayOfWeek:di},getIconNames:Lr,parseProperties:ci,registerI18nLoader:Zn,getI18nBundle:si,renderFinished:se,applyDirection:gi,EventProvider:O};
|