ui5-test-runner 5.13.1 → 6.0.0-beta.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -2
- package/dist/Npm.js +80 -0
- package/dist/browsers/IBrowser.js +1 -0
- package/dist/browsers/factory.js +9 -0
- package/dist/browsers/puppeteer.js +158 -0
- package/dist/cli.js +17 -0
- package/dist/configuration/CommandLine.js +112 -0
- package/dist/configuration/Configuration.js +1 -0
- package/dist/configuration/ConfigurationValidator.js +79 -0
- package/dist/configuration/Option.js +1 -0
- package/dist/configuration/OptionValidationError.js +15 -0
- package/dist/configuration/indexedOptions.js +13 -0
- package/dist/configuration/options.js +191 -0
- package/dist/configuration/validators/OptionValidator.js +1 -0
- package/dist/configuration/validators/boolean.js +15 -0
- package/dist/configuration/validators/browser.js +11 -0
- package/dist/configuration/validators/fsEntry.js +70 -0
- package/dist/configuration/validators/index.js +20 -0
- package/dist/configuration/validators/integer.js +10 -0
- package/dist/configuration/validators/percent.js +17 -0
- package/dist/configuration/validators/regexp.js +20 -0
- package/dist/configuration/validators/string.js +7 -0
- package/dist/configuration/validators/timeout.js +24 -0
- package/dist/configuration/validators/url.js +8 -0
- package/dist/modes/ModeFunction.js +1 -0
- package/dist/modes/Modes.js +9 -0
- package/dist/modes/execute.js +27 -0
- package/dist/modes/help.js +3 -0
- package/dist/modes/log/ILogStorage.js +1 -0
- package/dist/modes/log/LogMetrics.js +9 -0
- package/dist/modes/log/LogReader.js +37 -0
- package/dist/modes/log/LogStorage.js +68 -0
- package/dist/modes/log/REserve.js +101 -0
- package/dist/modes/log/index.js +58 -0
- package/dist/modes/test/REserve.js +31 -0
- package/dist/modes/test/agent.js +8 -0
- package/dist/modes/test/browser.js +37 -0
- package/dist/modes/test/index.js +66 -0
- package/dist/modes/test/pageTask.js +145 -0
- package/dist/modes/test/report.js +3 -0
- package/dist/modes/test/server.js +109 -0
- package/dist/modes/version.js +11 -0
- package/dist/platform/Exit.js +139 -0
- package/dist/platform/FileSystem.js +13 -0
- package/dist/platform/Host.js +10 -0
- package/dist/platform/Http.js +38 -0
- package/dist/platform/Path.js +5 -0
- package/dist/platform/Process.js +133 -0
- package/dist/platform/Terminal.js +47 -0
- package/dist/platform/Thread.js +43 -0
- package/dist/platform/ZLib.js +7 -0
- package/dist/platform/assert.js +17 -0
- package/dist/platform/constants.js +5 -0
- package/dist/platform/environment.js +28 -0
- package/dist/platform/index.js +13 -0
- package/dist/platform/logger/ILogger.js +1 -0
- package/dist/platform/logger/allCompressed.js +54 -0
- package/dist/platform/logger/compress.js +277 -0
- package/dist/platform/logger/output/BaseLoggerOutput.js +158 -0
- package/dist/platform/logger/output/InteractiveLoggerOutput.js +102 -0
- package/dist/platform/logger/output/StaticLoggerOutput.js +32 -0
- package/dist/platform/logger/output/factory.js +10 -0
- package/dist/platform/logger/output.js +58 -0
- package/dist/platform/logger/proxy.js +6 -0
- package/dist/platform/logger/toInternalLogAttributes.js +22 -0
- package/dist/platform/logger/types.js +7 -0
- package/dist/platform/logger.js +138 -0
- package/dist/platform/mock.js +104 -0
- package/dist/platform/version.js +8 -0
- package/dist/platform/workerBootstrap.js +21 -0
- package/dist/reports/html.js +46 -0
- package/dist/types/AgentState.js +1 -0
- package/dist/types/CommonTestReportFormat.js +50 -0
- package/dist/types/IError.js +1 -0
- package/dist/types/IUserInterfaceController.js +1 -0
- package/dist/types/typeUtilities.js +1 -0
- package/dist/ui/agent.js +3 -0
- package/dist/ui/html-report.js +2 -0
- package/dist/ui/lib.js +1 -0
- package/dist/ui/log-viewer.js +2 -0
- package/dist/utils/node/Folder.js +28 -0
- package/dist/utils/node/FramedStreamReader.js +86 -0
- package/dist/utils/node/FramedStreamWriter.js +27 -0
- package/dist/utils/shared/ProgressBar.js +43 -0
- package/dist/utils/shared/TestReportBuilder.js +48 -0
- package/dist/utils/shared/memoize.js +19 -0
- package/dist/utils/shared/object.js +8 -0
- package/dist/utils/shared/parallelize.js +59 -0
- package/dist/utils/shared/string.js +23 -0
- package/dist/utils/shared/toIError.js +17 -0
- package/package.json +73 -50
- package/.releaserc +0 -5
- package/index.js +0 -175
- package/jest.config.json +0 -31
- package/src/add-test-pages.js +0 -67
- package/src/batch.js +0 -214
- package/src/browsers.js +0 -319
- package/src/capabilities/index.js +0 -204
- package/src/capabilities/tests/basic/iframe.html +0 -8
- package/src/capabilities/tests/basic/index.html +0 -12
- package/src/capabilities/tests/basic/index.js +0 -20
- package/src/capabilities/tests/basic/ui5.html +0 -24
- package/src/capabilities/tests/dynamic-include/index.js +0 -21
- package/src/capabilities/tests/dynamic-include/mix.html +0 -11
- package/src/capabilities/tests/dynamic-include/one.html +0 -11
- package/src/capabilities/tests/dynamic-include/post.js +0 -3
- package/src/capabilities/tests/dynamic-include/test.js +0 -1
- package/src/capabilities/tests/dynamic-include/two.html +0 -11
- package/src/capabilities/tests/index.js +0 -16
- package/src/capabilities/tests/local-storage/index.html +0 -16
- package/src/capabilities/tests/local-storage/index.js +0 -21
- package/src/capabilities/tests/screenshot/index.html +0 -23
- package/src/capabilities/tests/screenshot/index.js +0 -24
- package/src/capabilities/tests/scripts/coverage.html +0 -32
- package/src/capabilities/tests/scripts/iframe.html +0 -18
- package/src/capabilities/tests/scripts/index.js +0 -59
- package/src/capabilities/tests/scripts/qunit.html +0 -22
- package/src/capabilities/tests/scripts/testsuite.html +0 -10
- package/src/capabilities/tests/scripts/testsuite.js +0 -8
- package/src/capabilities/tests/timeout/index.html +0 -21
- package/src/capabilities/tests/timeout/index.js +0 -19
- package/src/capabilities/tests/traces/index.html +0 -18
- package/src/capabilities/tests/traces/index.js +0 -81
- package/src/capabilities/tests/ui5/focus.html +0 -89
- package/src/capabilities/tests/ui5/index.js +0 -39
- package/src/capabilities/tests/ui5/language.html +0 -50
- package/src/capabilities/tests/ui5/timezone.html +0 -27
- package/src/clean.js +0 -22
- package/src/cors.js +0 -21
- package/src/coverage.js +0 -384
- package/src/csv-reader.js +0 -36
- package/src/csv-writer.js +0 -55
- package/src/defaults/.nycrc.json +0 -4
- package/src/defaults/browser.js +0 -217
- package/src/defaults/happy-dom.js +0 -123
- package/src/defaults/jsdom/compatibility.js +0 -163
- package/src/defaults/jsdom/debug.js +0 -23
- package/src/defaults/jsdom/resource-loader.js +0 -44
- package/src/defaults/jsdom/sap.ui.test.matchers.visible.js +0 -39
- package/src/defaults/jsdom.js +0 -95
- package/src/defaults/json-report.js +0 -36
- package/src/defaults/junit-xml-report.js +0 -90
- package/src/defaults/playwright.js +0 -142
- package/src/defaults/puppeteer.js +0 -124
- package/src/defaults/report/common.js +0 -38
- package/src/defaults/report/decompress.js +0 -19
- package/src/defaults/report/default.html +0 -99
- package/src/defaults/report/main.js +0 -69
- package/src/defaults/report/progress.js +0 -60
- package/src/defaults/report/styles.css +0 -66
- package/src/defaults/report.js +0 -91
- package/src/defaults/scan-ui5.js +0 -26
- package/src/defaults/selenium-webdriver/chrome.js +0 -39
- package/src/defaults/selenium-webdriver/edge.js +0 -24
- package/src/defaults/selenium-webdriver/firefox.js +0 -30
- package/src/defaults/selenium-webdriver.js +0 -129
- package/src/defaults/text-report.js +0 -108
- package/src/defaults/webdriverio.js +0 -80
- package/src/end.js +0 -62
- package/src/endpoints.js +0 -219
- package/src/error.js +0 -54
- package/src/get-job-progress.js +0 -78
- package/src/handle.js +0 -43
- package/src/if.js +0 -10
- package/src/inject/jest2qunit.js +0 -289
- package/src/inject/opa-iframe-coverage.js +0 -22
- package/src/inject/post.js +0 -141
- package/src/inject/qunit-hooks.js +0 -107
- package/src/inject/qunit-redirect.js +0 -65
- package/src/inject/ui5-coverage.js +0 -33
- package/src/job-mode.js +0 -65
- package/src/job.js +0 -493
- package/src/npm.js +0 -136
- package/src/options.js +0 -95
- package/src/output.js +0 -739
- package/src/parallelize.js +0 -63
- package/src/qunit-hooks.js +0 -219
- package/src/report.js +0 -89
- package/src/reserve.js +0 -25
- package/src/start.js +0 -133
- package/src/symbols.js +0 -8
- package/src/tests.js +0 -183
- package/src/timeout.js +0 -53
- package/src/tools.js +0 -179
- package/src/ui5.js +0 -199
- package/src/unhandled.js +0 -32
package/dist/ui/lib.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
var ui5TestRunnerLib=function(e){Object.defineProperty(e,Symbol.toStringTag,{value:"Module"});var t,o,i,r,a,n,s,l,c,_,d,u,h,p,g,m,v,f,b,y,C,w,k,x,S,T,B,I,D,A,P,M,E,z,F,R,O,L,N,H,U,V,W,q,j,Y,$,G,K,Z,X,J,Q,ee,te,oe,ie,re,ae,ne,se,le,ce,_e,de,ue,he,pe,ge,me,ve,fe,be,ye,Ce,we,ke,xe,Se,Te,Be,Ie,De,Ae,Pe,Me,Ee,ze,Fe,Re,Oe,Le,Ne,He,Ue,Ve,We,qe,je,Ye,$e,Ge,Ke,Ze,Xe,Je,Qe,et,tt,ot,it,rt,at,nt,st,lt,ct,_t,dt,ut,ht,pt,gt,mt,vt,ft,bt,yt,Ct,wt,kt,xt,St,Tt,Bt,It,Dt,At,Pt,Mt,Et,zt,Ft,Rt,Ot,Lt,Nt,Ht,Ut,Vt,Wt,qt,jt,Yt,$t,Gt,Kt,Zt,Xt,Jt,Qt,eo,to,oo,io,ro,ao,no,so,lo,co,_o,uo,ho,po,go,mo,vo,fo,bo,yo,Co,wo,ko,xo,So,To,Bo,Io,Do,Ao,Po,Mo,Eo,zo,Fo,Ro,Oo,Lo,No,Ho,Uo,Vo,Wo,qo,jo,Yo,$o,Go,Ko,Zo,Xo,Jo,Qo,ei,ti,oi,ii,ri,ai,ni,si,li,ci,_i,di,ui,hi,pi,gi,mi,vi,fi,bi,yi,Ci,wi,ki,xi,Si,Ti,Bi,Ii,Di,Ai,Pi,Mi,Ei,zi,Fi,Ri,Oi,Li,Ni,Hi,Ui,Vi,Wi,qi,ji,Yi,$i,Gi,Ki,Zi,Xi,Ji,Qi,er,tr,or,ir,rr,ar,nr,sr,lr,cr,_r,dr,ur,hr,pr,gr,mr,vr,fr,br,yr,Cr,wr,kr,xr,Sr,Tr,Br,Ir,Dr,Ar,Pr,Mr,Er,zr,Fr,Rr,Or,Lr,Nr,Hr,Ur,Vr,Wr=Object.defineProperty,qr=(e,t)=>()=>(e&&(t=e(e=0)),t),jr=(e,t)=>{let o={};for(var i in e)Wr(o,i,{get:e[i],enumerable:!0});return t||Wr(o,Symbol.toStringTag,{value:"Module"}),o},Yr=qr(()=>{i=(t={}).toString,r=(o=t.hasOwnProperty).toString,a=r.call(Object),n=function(e){var t,n;return!(!e||"[object Object]"!==i.call(e))&&(!(t=Object.getPrototypeOf(e))||"function"==typeof(n=o.call(t,"constructor")&&t.constructor)&&r.call(n)===a)}}),$r=qr(()=>{Yr(),s=Object.create(null),l=function(e,t,o,i){var r,a,c,_,d,u,h=arguments[2]||{},p=3,g=arguments.length,m=arguments[0]||!1,v=arguments[1]?void 0:s;for("object"!=typeof h&&"function"!=typeof h&&(h={});p<g;p++)if(null!=(d=arguments[p]))for(_ in d)r=h[_],c=d[_],"__proto__"!==_&&h!==c&&(m&&c&&(n(c)||(a=Array.isArray(c)))?(a?(a=!1,u=r&&Array.isArray(r)?r:[]):u=r&&n(r)?r:{},h[_]=l(m,arguments[1],u,c)):c!==v&&(h[_]=c));return h}}),Gr=qr(()=>{$r(),c=function(e,t){return l(!0,!1,...arguments)}}),Kr=qr(()=>{_=()=>new Promise(e=>{document.body?e():document.addEventListener("DOMContentLoaded",()=>{e()})})}),Zr=qr(()=>{d=class{constructor(){this._eventRegistry=new Map}attachEvent(e,t){const o=this._eventRegistry,i=o.get(e);Array.isArray(i)?i.includes(t)||i.push(t):o.set(e,[t])}detachEvent(e,t){const o=this._eventRegistry,i=o.get(e);if(!i)return;const r=i.indexOf(t);-1!==r&&i.splice(r,1),0===i.length&&o.delete(e)}fireEvent(e,t){const o=this._eventRegistry.get(e);return o?o.map(e=>e.call(this,t)):[]}fireEventAsync(e,t){return Promise.all(this.fireEvent(e,t))}isHandlerAttached(e,t){const o=this._eventRegistry.get(e);return!!o&&o.includes(t)}hasListeners(e){return!!this._eventRegistry.get(e)}}}),Xr=qr(()=>{u=(e,t=document.body,o)=>{let i=document.querySelector(e);return i||(i=o?o():document.createElement(e),t.insertBefore(i,t.firstChild))}}),Jr=qr(()=>{Xr(),h=()=>{const e=document.createElement("meta");return e.setAttribute("name","ui5-shared-resources"),e.setAttribute("content",""),e},p=()=>typeof document>"u"?null:u('meta[name="ui5-shared-resources"]',document.head,h),g=(e,t)=>{const o=e.split(".");let i=p();if(!i)return t;for(let r=0;r<o.length;r++){const e=o[r],a=r===o.length-1;Object.prototype.hasOwnProperty.call(i,e)||(i[e]=a?t:{}),i=i[e]}return i}}),Qr=qr(()=>{Jr(),oa(),m=g("Tags",new Map),v=new Set,f=new Map,y=e=>{v.add(e),m.set(e,N())},C=e=>v.has(e),w=()=>v.size>0,k=()=>[...v.values()],x=e=>{let t=m.get(e);void 0===t&&(t=-1),f.has(t)||f.set(t,new Set),f.get(t).add(e),b||(b=setTimeout(()=>{S(),f=new Map,b=void 0},1e3))},S=()=>{const e=U(),t=N(),o=e[t];let i="Multiple UI5 Web Components instances detected.";e.length>1&&(i=`${i}\nLoading order (versions before 1.1.0 not listed): ${e.map(e=>`\n${e.description}`).join("")}`),[...f.keys()].forEach(r=>{let a,n,s;-1===r?(a=1,n={description:"Older unknown runtime"}):(a=H(t,r),n=e[r]),s=a>0?"an older":a<0?"a newer":"the same",i=`${i}\n\n"${o.description}" failed to define ${f.get(r).size} tag(s) as they were defined by a runtime of ${s} version "${n.description}": ${[...f.get(r)].sort().join(", ")}.`,i=a>0?`${i}\nWARNING! If your code uses features of the above web components, unavailable in ${n.description}, it might not work as expected!`:`${i}\nSince the above web components were defined by the same or newer version runtime, they should be compatible with your code.`}),i=`${i}\n\nTo prevent other runtimes from defining tags that you use, consider using scoping or have third-party libraries use scoping: https://github.com/UI5/webcomponents/blob/main/docs/2-advanced/06-scoping.md.`,console.warn(i)}}),ea=qr(()=>{T={version:"2.22.0",major:2,minor:22,patch:0,suffix:"",isNext:!1,buildTime:1778494735}}),ta=qr(()=>{Qr(),ea(),I={include:[/./],exclude:[]},D=new Map,A=()=>B,P=()=>I,M=e=>{if(!D.has(e)){const t=I.include.some(t=>e.match(t))&&!I.exclude.some(t=>e.match(t));D.set(e,t)}return D.get(e)},E=e=>{if(M(e))return A()}}),oa=qr(()=>{Qr(),ta(),ea(),Jr(),F="",R=new Map,O=g("Runtimes",[]),L=()=>{if(void 0===z){z=O.length;const e=T;O.push({...e,get scopingSuffix(){return A()},get registeredTags(){return k()},get scopingRules(){return P()},alias:F,description:`Runtime ${z} - ver ${e.version}${F?` (${F})`:""}`,importMetaUrl:{}.url})}},N=()=>z,H=(e,t)=>{const o=`${e},${t}`;if(R.has(o))return R.get(o);const i=O[e],r=O[t];if(!i||!r)throw new Error("Invalid runtime index supplied");if(i.isNext||r.isNext)return i.buildTime-r.buildTime;const a=i.major-r.major;if(a)return a;const n=i.minor-r.minor;if(n)return n;const s=i.patch-r.patch;if(s)return s;const l=new Intl.Collator(void 0,{numeric:!0,sensitivity:"base"}).compare(i.suffix,r.suffix);return R.set(o,l),l},U=()=>O}),ia=qr(()=>{oa(),V=typeof document>"u",W=(e,t)=>t?`${e}|${t}`:e,q=e=>void 0===e||H(N(),parseInt(e))>=1,j=(e,t,o="",i)=>{const r=N(),a=new CSSStyleSheet;a.replaceSync(e),a._ui5StyleId=W(t,o),i&&(a._ui5RuntimeIndex=r,a._ui5Theme=i),document.adoptedStyleSheets=[...document.adoptedStyleSheets,a]},Y=(e,t,o="",i)=>{const r=N(),a=document.adoptedStyleSheets.find(e=>e._ui5StyleId===W(t,o));if(a)if(i){const t=a._ui5RuntimeIndex;(a._ui5Theme!==i||q(t))&&(a.replaceSync(e||""),a._ui5RuntimeIndex=String(r),a._ui5Theme=i)}else a.replaceSync(e||"")},$=(e,t="")=>!!V||!!document.adoptedStyleSheets.find(o=>o._ui5StyleId===W(e,t)),G=(e,t="")=>{document.adoptedStyleSheets=document.adoptedStyleSheets.filter(o=>o._ui5StyleId!==W(e,t))},K=(e,t,o="",i)=>{$(t,o)?Y(e,t,o,i):j(e,t,o,i)},Z=(e,t)=>void 0===e?t:void 0===t?e:`${e} ${t}`}),ra=qr(()=>{X=new Map,J=(e,t)=>{X.set(e,t)},Q=e=>X.get(e)}),aa=qr(()=>{ee='@font-face{font-family:"72";font-style:normal;font-weight:400;src:url(https://cdn.jsdelivr.net/npm/@sap-theming/theming-base-content@11.35.0/content/Base/baseLib/baseTheme/fonts/72-Regular.woff2) format("woff2"),local("72");unicode-range:U+00,U+0D,U+20-7E,U+A0-FF,U+131,U+152-153,U+161,U+178,U+17D-17E,U+192,U+237,U+2C6,U+2DC,U+3BC,U+1E9E,U+2013-2014,U+2018-201A,U+201C-201E,U+2020-2022,U+2026,U+2030,U+2039-203A,U+2044,U+20AC,U+2122}\n@font-face{font-family:"72full";font-style:normal;font-weight:400;src:url(https://cdn.jsdelivr.net/npm/@sap-theming/theming-base-content@11.35.0/content/Base/baseLib/baseTheme/fonts/72-Regular-full.woff2) format("woff2")}\n@font-face{font-family:"72-Bold";src:url(https://cdn.jsdelivr.net/npm/@sap-theming/theming-base-content@11.35.0/content/Base/baseLib/baseTheme/fonts/72-Bold.woff2) format("woff2"),local("72-Bold");unicode-range:U+00,U+0D,U+20-7E,U+A0-FF,U+131,U+152-153,U+161,U+178,U+17D-17E,U+192,U+237,U+2C6,U+2DC,U+3BC,U+1E9E,U+2013-2014,U+2018-201A,U+201C-201E,U+2020-2022,U+2026,U+2030,U+2039-203A,U+2044,U+20AC,U+2122}\n@font-face{font-family:"72";font-style:normal;font-weight:700;src:url(https://cdn.jsdelivr.net/npm/@sap-theming/theming-base-content@11.35.0/content/Base/baseLib/baseTheme/fonts/72-Bold.woff2) format("woff2"),local("72-Bold");unicode-range:U+00,U+0D,U+20-7E,U+A0-FF,U+131,U+152-153,U+161,U+178,U+17D-17E,U+192,U+237,U+2C6,U+2DC,U+3BC,U+1E9E,U+2013-2014,U+2018-201A,U+201C-201E,U+2020-2022,U+2026,U+2030,U+2039-203A,U+2044,U+20AC,U+2122}\n@font-face{font-family:"72-Boldfull";src:url(https://cdn.jsdelivr.net/npm/@sap-theming/theming-base-content@11.35.0/content/Base/baseLib/baseTheme/fonts/72-Bold-full.woff2) format("woff2")}\n@font-face{font-family:"72full";font-style:normal;font-weight:700;src:url(https://cdn.jsdelivr.net/npm/@sap-theming/theming-base-content@11.35.0/content/Base/baseLib/baseTheme/fonts/72-Bold-full.woff2) format("woff2")}\n@font-face{font-family:"72-Semibold";src:url(https://cdn.jsdelivr.net/npm/@sap-theming/theming-base-content@11.35.0/content/Base/baseLib/baseTheme/fonts/72-Semibold.woff2) format("woff2"),local("72-Semibold");unicode-range:U+00,U+0D,U+20-7E,U+A0-FF,U+131,U+152-153,U+161,U+178,U+17D-17E,U+192,U+237,U+2C6,U+2DC,U+3BC,U+1E9E,U+2013-2014,U+2018-201A,U+201C-201E,U+2020-2022,U+2026,U+2030,U+2039-203A,U+2044,U+20AC,U+2122}\n@font-face{font-family:"72";font-style:normal;font-weight:600;src:url(https://cdn.jsdelivr.net/npm/@sap-theming/theming-base-content@11.35.0/content/Base/baseLib/baseTheme/fonts/72-Semibold.woff2) format("woff2"),local("72-Semibold");unicode-range:U+00,U+0D,U+20-7E,U+A0-FF,U+131,U+152-153,U+161,U+178,U+17D-17E,U+192,U+237,U+2C6,U+2DC,U+3BC,U+1E9E,U+2013-2014,U+2018-201A,U+201C-201E,U+2020-2022,U+2026,U+2030,U+2039-203A,U+2044,U+20AC,U+2122}\n@font-face{font-family:"72-Semiboldfull";src:url(https://cdn.jsdelivr.net/npm/@sap-theming/theming-base-content@11.35.0/content/Base/baseLib/baseTheme/fonts/72-Semibold-full.woff2) format("woff2")}\n@font-face{font-family:"72full";font-style:normal;font-weight:600;src:url(https://cdn.jsdelivr.net/npm/@sap-theming/theming-base-content@11.35.0/content/Base/baseLib/baseTheme/fonts/72-Semibold-full.woff2) format("woff2")}\n@font-face{font-family:"72-SemiboldDuplex";src:url(https://cdn.jsdelivr.net/npm/@sap-theming/theming-base-content@11.35.0/content/Base/baseLib/baseTheme/fonts/72-SemiboldDuplex.woff2) format("woff2"),local("72-SemiboldDuplex");unicode-range:U+00,U+0D,U+20-7E,U+A0-FF,U+131,U+152-153,U+161,U+178,U+17D-17E,U+192,U+237,U+2C6,U+2DC,U+3BC,U+1E9E,U+2013-2014,U+2018-201A,U+201C-201E,U+2020-2022,U+2026,U+2030,U+2039-203A,U+2044,U+20AC,U+2122}\n@font-face{font-family:"72-SemiboldDuplexfull";src:url(https://cdn.jsdelivr.net/npm/@sap-theming/theming-base-content@11.35.0/content/Base/baseLib/baseTheme/fonts/72-SemiboldDuplex-full.woff2) format("woff2")}\n@font-face{font-family:"72-Light";src:url(https://cdn.jsdelivr.net/npm/@sap-theming/theming-base-content@11.35.0/content/Base/baseLib/baseTheme/fonts/72-Light.woff2) format("woff2"),local("72-Light");unicode-range:U+00,U+0D,U+20-7E,U+A0-FF,U+131,U+152-153,U+161,U+178,U+17D-17E,U+192,U+237,U+2C6,U+2DC,U+3BC,U+1E9E,U+2013-2014,U+2018-201A,U+201C-201E,U+2020-2022,U+2026,U+2030,U+2039-203A,U+2044,U+20AC,U+2122}\n@font-face{font-family:"72";font-style:normal;font-weight:300;src:url(https://cdn.jsdelivr.net/npm/@sap-theming/theming-base-content@11.35.0/content/Base/baseLib/baseTheme/fonts/72-Light.woff2) format("woff2"),local("72-Light");unicode-range:U+00,U+0D,U+20-7E,U+A0-FF,U+131,U+152-153,U+161,U+178,U+17D-17E,U+192,U+237,U+2C6,U+2DC,U+3BC,U+1E9E,U+2013-2014,U+2018-201A,U+201C-201E,U+2020-2022,U+2026,U+2030,U+2039-203A,U+2044,U+20AC,U+2122}\n@font-face{font-family:"72-Lightfull";src:url(https://cdn.jsdelivr.net/npm/@sap-theming/theming-base-content@11.35.0/content/Base/baseLib/baseTheme/fonts/72-Light-full.woff2) format("woff2")}\n@font-face{font-family:"72full";font-style:normal;font-weight:300;src:url(https://cdn.jsdelivr.net/npm/@sap-theming/theming-base-content@11.35.0/content/Base/baseLib/baseTheme/fonts/72-Light-full.woff2) format("woff2")}\n@font-face{font-family:"72Black";src:url(https://cdn.jsdelivr.net/npm/@sap-theming/theming-base-content@11.35.0/content/Base/baseLib/baseTheme/fonts/72-Black.woff2) format("woff2"),local("72Black");unicode-range:U+00,U+0D,U+20-7E,U+A0-FF,U+131,U+152-153,U+160-161,U+178,U+17D-17E,U+192,U+237,U+2C6-2C7,U+2DC,U+3BC,U+1E0E,U+2013-2014,U+2018-2019,U+201A,U+201C-201E,U+2020-2022,U+2026,U+2030,U+2039-203A,U+2044,U+20AC,U+2122}\n@font-face{font-family:"72";font-style:normal;font-weight:900;src:url(https://cdn.jsdelivr.net/npm/@sap-theming/theming-base-content@11.35.0/content/Base/baseLib/baseTheme/fonts/72-Black.woff2) format("woff2"),local("72Black");unicode-range:U+00,U+0D,U+20-7E,U+A0-FF,U+131,U+152-153,U+160-161,U+178,U+17D-17E,U+192,U+237,U+2C6-2C7,U+2DC,U+3BC,U+1E0E,U+2013-2014,U+2018-2019,U+201A,U+201C-201E,U+2020-2022,U+2026,U+2030,U+2039-203A,U+2044,U+20AC,U+2122}\n@font-face{font-family:"72Blackfull";src:url(https://cdn.jsdelivr.net/npm/@sap-theming/theming-base-content@11.35.0/content/Base/baseLib/baseTheme/fonts/72-Black-full.woff2) format("woff2")}\n@font-face{font-family:"72full";font-style:normal;font-weight:900;src:url(https://cdn.jsdelivr.net/npm/@sap-theming/theming-base-content@11.35.0/content/Base/baseLib/baseTheme/fonts/72-Black-full.woff2) format("woff2")}\n@font-face{font-family:"72-BoldItalic";src:url(https://cdn.jsdelivr.net/npm/@sap-theming/theming-base-content@11.35.0/content/Base/baseLib/baseTheme/fonts/72-BoldItalic.woff2) format("woff2"),local("72-BoldItalic");unicode-range:U+00,U+0D,U+20-7E,U+A0-FF,U+131,U+152-153,U+161,U+178,U+17D-17E,U+192,U+237,U+2C6,U+2DC,U+3BC,U+1E9E,U+2013-2014,U+2018-201A,U+201C-201E,U+2020-2022,U+2026,U+2030,U+2039-203A,U+2044,U+20AC,U+2122}\n@font-face{font-family:"72";font-style:italic;font-weight:700;src:url(https://cdn.jsdelivr.net/npm/@sap-theming/theming-base-content@11.35.0/content/Base/baseLib/baseTheme/fonts/72-BoldItalic.woff2) format("woff2"),local("72-BoldItalic");unicode-range:U+00,U+0D,U+20-7E,U+A0-FF,U+131,U+152-153,U+161,U+178,U+17D-17E,U+192,U+237,U+2C6,U+2DC,U+3BC,U+1E9E,U+2013-2014,U+2018-201A,U+201C-201E,U+2020-2022,U+2026,U+2030,U+2039-203A,U+2044,U+20AC,U+2122}\n@font-face{font-family:"72full";font-style:italic;font-weight:700;src:url(https://cdn.jsdelivr.net/npm/@sap-theming/theming-base-content@11.35.0/content/Base/baseLib/baseTheme/fonts/72-BoldItalic-full.woff2) format("woff2")}\n@font-face{font-family:"72-Condensed";src:url(https://cdn.jsdelivr.net/npm/@sap-theming/theming-base-content@11.35.0/content/Base/baseLib/baseTheme/fonts/72-Condensed.woff2) format("woff2"),local("72-Condensed");unicode-range:U+00,U+0D,U+20-7E,U+A0-FF,U+131,U+152-153,U+161,U+178,U+17D-17E,U+192,U+237,U+2C6,U+2DC,U+3BC,U+1E9E,U+2013-2014,U+2018-201A,U+201C-201E,U+2020-2022,U+2026,U+2030,U+2039-203A,U+2044,U+20AC,U+2122}\n@font-face{font-family:"72";font-style:normal;font-weight:400;font-stretch:condensed;src:url(https://cdn.jsdelivr.net/npm/@sap-theming/theming-base-content@11.35.0/content/Base/baseLib/baseTheme/fonts/72-Condensed.woff2) format("woff2"),local("72-Condensed");unicode-range:U+00,U+0D,U+20-7E,U+A0-FF,U+131,U+152-153,U+161,U+178,U+17D-17E,U+192,U+237,U+2C6,U+2DC,U+3BC,U+1E9E,U+2013-2014,U+2018-201A,U+201C-201E,U+2020-2022,U+2026,U+2030,U+2039-203A,U+2044,U+20AC,U+2122}\n@font-face{font-family:"72";font-style:normal;font-weight:400;font-stretch:condensed;src:url(https://cdn.jsdelivr.net/npm/@sap-theming/theming-base-content@11.35.0/content/Base/baseLib/baseTheme/fonts/72-Condensed-full.woff2) format("woff2");unicode-range:U+00,U+0D,U+20-7E,U+A0-FF,U+131,U+152-153,U+161,U+178,U+17D-17E,U+192,U+237,U+2C6,U+2DC,U+3BC,U+1E9E,U+2013-2014,U+2018-201A,U+201C-201E,U+2020-2022,U+2026,U+2030,U+2039-203A,U+2044,U+20AC,U+2122}\n@font-face{font-family:"72-CondensedBold";src:url(https://cdn.jsdelivr.net/npm/@sap-theming/theming-base-content@11.35.0/content/Base/baseLib/baseTheme/fonts/72-CondensedBold.woff2) format("woff2"),local("72-CondensedBold");unicode-range:U+00,U+0D,U+20-7E,U+A0-FF,U+131,U+152-153,U+161,U+178,U+17D-17E,U+192,U+237,U+2C6,U+2DC,U+3BC,U+1E9E,U+2013-2014,U+2018-201A,U+201C-201E,U+2020-2022,U+2026,U+2030,U+2039-203A,U+2044,U+20AC,U+2122}\n@font-face{font-family:"72";font-style:normal;font-weight:700;font-stretch:condensed;src:url(https://cdn.jsdelivr.net/npm/@sap-theming/theming-base-content@11.35.0/content/Base/baseLib/baseTheme/fonts/72-CondensedBold.woff2) format("woff2"),local("72-CondensedBold");unicode-range:U+00,U+0D,U+20-7E,U+A0-FF,U+131,U+152-153,U+161,U+178,U+17D-17E,U+192,U+237,U+2C6,U+2DC,U+3BC,U+1E9E,U+2013-2014,U+2018-201A,U+201C-201E,U+2020-2022,U+2026,U+2030,U+2039-203A,U+2044,U+20AC,U+2122}\n@font-face{font-family:"72full";font-style:normal;font-weight:700;font-stretch:condensed;src:url(https://cdn.jsdelivr.net/npm/@sap-theming/theming-base-content@11.35.0/content/Base/baseLib/baseTheme/fonts/72-CondensedBold-full.woff2) format("woff2")}\n@font-face{font-family:"72-Italic";src:url(https://cdn.jsdelivr.net/npm/@sap-theming/theming-base-content@11.35.0/content/Base/baseLib/baseTheme/fonts/72-Italic.woff2) format("woff2"),local("72-Italic");unicode-range:U+00,U+0D,U+20-7E,U+A0-FF,U+131,U+152-153,U+161,U+178,U+17D-17E,U+192,U+237,U+2C6,U+2DC,U+3BC,U+1E9E,U+2013-2014,U+2018-201A,U+201C-201E,U+2020-2022,U+2026,U+2030,U+2039-203A,U+2044,U+20AC,U+2122}\n@font-face{font-family:"72";font-style:italic;font-weight:400;src:url(https://cdn.jsdelivr.net/npm/@sap-theming/theming-base-content@11.35.0/content/Base/baseLib/baseTheme/fonts/72-Italic.woff2) format("woff2"),local("72-Italic");unicode-range:U+00,U+0D,U+20-7E,U+A0-FF,U+131,U+152-153,U+161,U+178,U+17D-17E,U+192,U+237,U+2C6,U+2DC,U+3BC,U+1E9E,U+2013-2014,U+2018-201A,U+201C-201E,U+2020-2022,U+2026,U+2030,U+2039-203A,U+2044,U+20AC,U+2122}\n@font-face{font-family:"72full";font-style:italic;font-weight:400;src:url(https://cdn.jsdelivr.net/npm/@sap-theming/theming-base-content@11.35.0/content/Base/baseLib/baseTheme/fonts/72-Italic-full.woff2) format("woff2")}\n@font-face{font-family:"72Mono";src:url(https://cdn.jsdelivr.net/npm/@sap-theming/theming-base-content@11.35.0/content/Base/baseLib/baseTheme/fonts/72Mono-Regular.woff2) format("woff2"),local("72Mono");unicode-range:U+00,U+0D,U+20-7E,U+A0-FF,U+131,U+152-153,U+161,U+178,U+17D-17E,U+192,U+237,U+2C6,U+2DC,U+3BC,U+1E9E,U+2013-2014,U+2018-201A,U+201C-201E,U+2020-2022,U+2026,U+2030,U+2039-203A,U+2044,U+20AC,U+2122}\n@font-face{font-family:"72Monofull";src:url(https://cdn.jsdelivr.net/npm/@sap-theming/theming-base-content@11.35.0/content/Base/baseLib/baseTheme/fonts/72Mono-Regular-full.woff2) format("woff2")}\n@font-face{font-family:"72Mono-Bold";src:url(https://cdn.jsdelivr.net/npm/@sap-theming/theming-base-content@11.35.0/content/Base/baseLib/baseTheme/fonts/72Mono-Bold.woff2) format("woff2"),local("72Mono-Bold");unicode-range:U+00,U+0D,U+20-7E,U+A0-FF,U+131,U+152-153,U+161,U+178,U+17D-17E,U+192,U+237,U+2C6,U+2DC,U+3BC,U+1E9E,U+2013-2014,U+2018-201A,U+201C-201E,U+2020-2022,U+2026,U+2030,U+2039-203A,U+2044,U+20AC,U+2122}\n@font-face{font-family:"72Mono-Boldfull";src:url(https://cdn.jsdelivr.net/npm/@sap-theming/theming-base-content@11.35.0/content/Base/baseLib/baseTheme/fonts/72Mono-Bold-full.woff2) format("woff2")}'}),na=qr(()=>{oe=(te={themes:{default:"sap_horizon",all:["sap_fiori_3","sap_fiori_3_dark","sap_fiori_3_hcb","sap_fiori_3_hcw","sap_horizon","sap_horizon_auto","sap_horizon_dark","sap_horizon_hc_auto","sap_horizon_hcb","sap_horizon_hcw"]},languages:{default:"en",all:["ar","bg","ca","cnr","cs","cy","da","de","el","en","en_GB","en_US_sappsd","en_US_saprigi","en_US_saptrc","es","es_MX","et","fi","fr","fr_CA","hi","hr","hu","id","it","iw","ja","kk","ko","lt","lv","mk","ms","nl","no","pl","pt_PT","pt","ro","ru","sh","sk","sl","sr","sv","th","tr","uk","vi","zh_CN","zh_TW"]},locales:{default:"en",all:["ar","ar_EG","ar_SA","bg","ca","cnr","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","mk","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"]}}).themes.default,ie=te.themes.all,re=te.languages.default,ae=te.locales.default,ne=te.locales.all}),sa=qr(()=>{se=(e=>(e.Full="full",e.Basic="basic",e.Minimal="minimal",e.None="none",e))(se||{})}),la=qr(()=>{Zr(),le=new d,ce="configurationReset",_e=e=>{le.attachEvent(ce,e)},de=()=>{le.fireEvent(ce,void 0)}}),ca=qr(()=>{ue=typeof document>"u",he={search:()=>ue?"":window.location.search},pe=()=>ue?"":window.location.hostname,ge=()=>ue?"":window.location.port,me=()=>ue?"":window.location.protocol,ve=()=>ue?"":window.location.href,fe=()=>he.search(),be=(e,t,o)=>{ue||window.open(e,t,o)}}),_a=qr(()=>{Gr(),ra(),na(),sa(),la(),ca(),ye=!1,Ce={animationMode:se.Full,theme:oe,themeRoot:void 0,rtl:void 0,language:void 0,timezone:void 0,calendarType:void 0,secondaryCalendarType:void 0,noConflict:!1,formatSettings:{},fetchDefaultLanguage:!1,defaultFontLoading:!0,enableDefaultTooltips:!0},we=()=>(Ue(),Ce.animationMode),ke=()=>(Ue(),Ce.theme),xe=()=>(Ue(),Ce.themeRoot),Se=()=>(Ue(),Ce.language),Te=()=>(Ue(),Ce.fetchDefaultLanguage),Be=()=>(Ue(),Ce.noConflict),Ie=()=>(Ue(),Ce.defaultFontLoading),De=()=>(Ue(),Ce.enableDefaultTooltips),Ae=()=>(Ue(),Ce.calendarType),Pe=()=>(Ue(),Ce.secondaryCalendarType),Me=()=>(Ue(),Ce.timezone),Ee=()=>(Ue(),Ce.formatSettings),(ze=new Map).set("true",!0),ze.set("false",!1),Fe=()=>{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&&(Ce=c(Ce,t))}},Re=()=>{const e=new URLSearchParams(fe());e.forEach((e,t)=>{const o=t.split("sap-").length;0===o||o===t.split("sap-ui-").length||Ne(t,e,"sap")}),e.forEach((e,t)=>{t.startsWith("sap-ui")&&Ne(t,e,"sap-ui")})},Oe=e=>e.split("@")[1],Le=(e,t)=>"theme"===e&&t.includes("@")?t.split("@")[0]:t,Ne=(e,t,o)=>{const i=t.toLowerCase(),r=e.split(`${o}-`)[1];ze.has(t)&&(t=ze.get(i)),"theme"===r?(Ce.theme=Le(r,t),t&&t.includes("@")&&(Ce.themeRoot=Oe(t))):Ce[r]=t},He=()=>{const e=Q("OpenUI5Support");if(!e||!e.isOpenUI5Detected())return;const t=e.getConfigurationSettingsObject();Ce=c(Ce,t)},Ue=()=>{typeof document>"u"||ye||(Ve(),ye=!0)},Ve=e=>{e&&de(),Fe(),Re(),He()}}),da=qr(()=>{_a(),la(),_e(()=>{We=void 0}),qe=()=>(void 0===We&&(We=Ie()),We)}),ua=qr(()=>{ia(),ra(),aa(),da(),je=()=>{const e=Q("OpenUI5Support");(!e||!e.isOpenUI5Detected())&&Ye()},Ye=()=>{const e=document.querySelector("head>style[data-ui5-font-face]");!qe()||e||$("data-ui5-font-face")||j(ee,"data-ui5-font-face")}}),ha=qr(()=>{$e=":root{--_ui5-cozy-size:var(--_ui5-f2d95f8);--_ui5-compact-size: ;--_ui5_content_density:cozy}.sapUiSizeCompact,.ui5-content-density-compact,[data-ui5-compact-size]{--_ui5-cozy-size: ;--_ui5-compact-size:var(--_ui5-f2d95f8);--_ui5_content_density:compact}"}),pa=qr(()=>{ia(),ha(),Ge=()=>{K($e,"data-ui5-system-css-vars")}}),ga=qr(()=>{0}),ma=qr(()=>{ia(),ga(),Ke=()=>{$("data-ui5-scrollbar-styles")||j("html:not(.ui5-content-native-scrollbars){scrollbar-color:var(--sapScrollBar_FaceColor) var(--sapScrollBar_TrackColor)}","data-ui5-scrollbar-styles")}}),va=qr(()=>{Ze=class{constructor(){this.list=[],this.lookup=new Set}add(e){this.lookup.has(e)||(this.list.push(e),this.lookup.add(e))}remove(e){this.lookup.has(e)&&(this.list=this.list.filter(t=>t!==e),this.lookup.delete(e))}shift(){const e=this.list.shift();if(e)return this.lookup.delete(e),e}isEmpty(){return 0===this.list.length}isAdded(e){return this.lookup.has(e)}process(e){let t;const o=new Map;for(t=this.shift();t;){const i=o.get(t)||0;if(i>10)throw new Error("Web component processed too many times this task, max allowed is: 10");e(t),o.set(t,i+1),t=this.shift()}}}}),fa=qr(()=>{Xe=new Set,Je=e=>{Xe.add(e)},Qe=e=>Xe.has(e)}),ba=qr(()=>{Zr(),va(),Qr(),fa(),et=new Set,tt=new d,ot=new Ze,st=async e=>{ot.add(e),await _t()},lt=e=>{tt.fireEvent("beforeComponentRender",e),et.add(e),e._render()},ct=e=>{ot.remove(e),et.delete(e)},_t=async()=>{nt||(nt=new Promise(e=>{window.requestAnimationFrame(()=>{ot.process(lt),nt=null,e(),at||(at=setTimeout(()=>{at=void 0,ot.isEmpty()&&pt()},200))})})),await nt},dt=()=>it||(it=new Promise(e=>{rt=e,window.requestAnimationFrame(()=>{ot.isEmpty()&&(it=void 0,e())})}),it),ut=()=>{const e=k().map(e=>customElements.whenDefined(e));return Promise.all(e)},ht=async()=>{await ut(),await dt()},pt=()=>{ot.isEmpty()&&rt&&(rt(),rt=void 0,it=void 0)},gt=async e=>{et.forEach(t=>{const o=t.constructor,i=o.getMetadata().getTag(),r=Qe(o),a=o.getMetadata().isLanguageAware(),n=o.getMetadata().isThemeAware();(!e||e.tag===i||e.rtlAware&&r||e.languageAware&&a||e.themeAware&&n)&&st(t)}),await ht()}}),ya=qr(()=>{Zr(),mt=new d,vt="themeRegistered",ft=e=>{mt.attachEvent(vt,e)},bt=e=>mt.fireEvent(vt,e)}),Ca=qr(()=>{na(),ia(),ya(),yt=new Map,Ct=new Map,wt=new Map,kt=new Map,xt=new Set,St=(e,t,o,i="root")=>{Ct.set(`${e}/${t}`,o),kt.set(e,{cssVariablesTarget:i}),xt.add(t),bt(t)},Tt=async(e,t,o)=>{const i=`${e}_${t}_${o||""}`,r=yt.get(i);if(void 0!==r)return r;if(!xt.has(t)){const o=[...xt.values()].join(", ");return console.warn(`You have requested a non-registered theme ${t} - falling back to ${oe}. Registered themes are: ${o}`),Bt(e,oe)}const[a,n]=await Promise.all([Bt(e,t),o?Bt(e,o,!0):void 0]),s=Z(a,n);return s&&yt.set(i,s),s},Bt=async(e,t,o=!1)=>{const i=(o?wt:Ct).get(`${e}/${t}`);if(!i)return void(o||console.error(`Theme [${t}] not registered for package [${e}]`));let r;try{r=await i(t)}catch(Ap){return void console.error(e,Ap.message)}return r},It=()=>kt,Dt=e=>xt.has(e)}),wa=qr(()=>{At=new Set,Pt=()=>{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"none"===t&&(e.classList.add("sapThemeMetaData-UI5-sap-ui-core"),t=getComputedStyle(e).backgroundImage),document.body.removeChild(e),t},Mt=e=>{const t=/\(["']?data:text\/plain;utf-8,(.*?)['"]?\)$/i.exec(e);if(t&&t.length>=2){let e=t[1];if(e=e.replace(/\\"/g,'"'),"{"!==e.charAt(0)&&"}"!==e.charAt(e.length-1))try{e=decodeURIComponent(e)}catch{return void(At.has("decode")||(console.warn("Malformed theme metadata string, unable to decodeURIComponent"),At.add("decode")))}try{return JSON.parse(e)}catch{At.has("parse")||(console.warn("Malformed theme metadata string, unable to parse JSON"),At.add("parse"))}}},Et=e=>{let t,o;try{const i=e.Path.split(".");t=4===i.length?i[2]:getComputedStyle(document.body).getPropertyValue("--sapSapThemeId"),o=e.Extends[0]}catch{return void(At.has("object")||(console.warn("Malformed theme metadata Object",e),At.add("object")))}return{themeName:t,baseThemeName:o}},zt=()=>{const e=Pt();if(!e||"none"===e)return;const t=Mt(e);return t?Et(t):void 0}}),ka=qr(()=>{Zr(),Ft=new d,Rt="themeLoaded",Ot=e=>Ft.fireEvent(Rt,e)}),xa=qr(()=>{Lt=(e,t)=>{const o=document.createElement("link");return o.type="text/css",o.rel="stylesheet",t&&Object.entries(t).forEach(e=>o.setAttribute(...e)),o.href=e,document.head.appendChild(o),new Promise(e=>{o.addEventListener("load",e),o.addEventListener("error",e)})}}),Sa=qr(()=>{ca(),Nt=e=>{const t=document.querySelector(`META[name="${e}"]`);return t&&t.getAttribute("content")},Ht=(e,t=!1)=>{const o=Nt("sap-allowed-theme-origins")??Nt("sap-allowedThemeOrigins");return!!o&&(!!t||o.split(",").some(t=>"*"===t||e===t.trim()))},Ut=e=>{let t,o=!1;try{if(e.startsWith(".")||e.startsWith("/")&&!e.startsWith("//"))t=new URL(e,ve()).toString(),o=!0;else{const i=e.startsWith("//")?new URL(e,ve()):new URL(e),r=i.origin;if(o=r===new URL(ve()).origin,!r||!Ht(r,o))return;t=i.toString()}return t.endsWith("/")||(t=`${t}/`),`${t}UI5/`}catch{return}}}),Ta=qr(()=>{xa(),Sa(),_a(),Aa(),la(),_e(()=>{Vt=void 0}),Wt=()=>(void 0===Vt&&(Vt=xe()),Vt),qt=(e,t)=>`${t}Base/baseLib/${e}/css_variables.css`,jt=async e=>{const t=document.querySelector(`[sap-ui-webcomponents-theme="${e}"]`);t&&document.head.removeChild(t);const o=Wt();if(!o)return;const i=Ut(o);i?await Lt(qt(e,i),{"sap-ui-webcomponents-theme":e}):console.warn(`The ${o} is not valid. Check the allowed origins as suggested in the "setThemeRoot" description.`)}}),Ba=qr(()=>{Yt=new Map,Gt=()=>($t||($t=new CSSStyleSheet),$t),Kt=(e,t)=>{Yt.set(e,t);const o=Array.from(Yt.values()).join("\n");Gt().replaceSync(o)}}),Ia=qr(()=>{Ca(),ia(),wa(),ka(),ra(),Ta(),Aa(),na(),oa(),Ba(),Zt="@ui5/webcomponents-theming",Xt=()=>It().has(Zt),Jt=async e=>{if(!Xt())return;const t=await Tt(Zt,e);t&&K(t,"data-ui5-theme-properties",Zt,e)},Qt=()=>{G("data-ui5-theme-properties",Zt)},eo=async(e,t)=>{const o=[...It().entries()].map(async([o,{cssVariablesTarget:i}])=>{if(o===Zt)return;const r=await Tt(o,e,t);r&&("root"===i?K(r,`data-ui5-component-properties-${N()}`,o):"host"===i&&Kt(o,r))});return Promise.all(o)},to=async e=>{const t=zt();if(t)return t;const o=Q("OpenUI5Support");if(o&&o.isOpenUI5Detected()){if(o.cssVariablesLoaded())return{themeName:o.getConfigurationSettingsObject()?.theme,baseThemeName:""}}else if(Wt())return await jt(e),zt()},oo=async e=>{const t=await to(e);t&&e===t.themeName?Qt():await Jt(e);const o=t&&t.themeName===e?e:void 0,i=t&&t.baseThemeName;await eo(Dt(e)?e:i||oe,o),vo(i),Ot(e)}}),Da=qr(()=>{Jr(),Zr(),io=()=>g("ConfigChange.eventProvider",new d),ro=()=>g("ConfigChange.values",{}),ao="configChange",no=new Set,so=(e,t)=>{ro()[e]=t,no.add(e);try{io().fireEvent(ao,{name:e,value:t})}finally{no.delete(e)}},lo=(e,t)=>{io().attachEvent(ao,o=>{o.name===e&&!no.has(e)&&t(o.value)})},co=e=>ro()[e]}),Aa=qr(()=>{_a(),ba(),Ia(),wa(),na(),Ea(),la(),Da(),_e(()=>{_o=void 0}),lo("theme",e=>{_o=e,Uo()&&oo(_o).then(()=>gt({themeAware:!0}))}),ho=()=>(void 0===_o&&(_o=co("theme")??ke()),_o),po=()=>{const e=ho();return go(e)?!e.startsWith("sap_horizon"):!zt()?.baseThemeName?.startsWith("sap_horizon")},go=e=>ie.includes(e),mo=()=>uo,vo=e=>{uo=e}}),Pa=qr(()=>{fo=typeof document>"u",bo={get userAgent(){return fo?"":navigator.userAgent},get touch(){return!fo&&("ontouchstart"in window||navigator.maxTouchPoints>0)},get chrome(){return!fo&&/(Chrome|CriOS)/.test(bo.userAgent)},get firefox(){return!fo&&/Firefox/.test(bo.userAgent)},get safari(){return!fo&&(!bo.chrome&&/(Version|PhantomJS)\/(\d+\.\d+).*Safari/.test(bo.userAgent))},get webkit(){return!fo&&/webkit/.test(bo.userAgent)},get windows(){return!fo&&-1!==navigator.platform.indexOf("Win")},get macOS(){return!fo&&!!navigator.userAgent.match(/Macintosh|Mac OS X/i)},get iOS(){return!fo&&(!!navigator.platform.match(/iPhone|iPad|iPod/)||!(!bo.userAgent.match(/Mac/)||!("ontouchend"in document)))},get android(){return!fo&&(!bo.windows&&/Android/.test(bo.userAgent))},get androidPhone(){return!fo&&(bo.android&&/(?=android)(?=.*mobile)/i.test(bo.userAgent))},get ipad(){return!fo&&(/ipad/i.test(bo.userAgent)||/Macintosh/i.test(bo.userAgent)&&"ontouchend"in document)},_isPhone:()=>(So(),bo.touch&&!wo)},ko=()=>{if(fo||!bo.windows)return!1;if(void 0===yo){const e=bo.userAgent.match(/Windows NT (\d+).(\d)/);yo=e?parseFloat(e[1]):0}return yo>=8},xo=()=>{if(fo||!bo.webkit)return!1;if(void 0===Co){const e=bo.userAgent.match(/(webkit)[ /]([\w.]+)/);Co=e?parseFloat(e[1]):0}return Co>=537.1},So=()=>{if(fo)return!1;if(void 0===wo){if(bo.ipad)return void(wo=!0);if(bo.touch){if(ko())return void(wo=!0);if(bo.chrome&&bo.android)return void(wo=!/Mobile Safari\/[.0-9]+/.test(bo.userAgent));let e=window.devicePixelRatio?window.devicePixelRatio:1;return bo.android&&xo()&&(e=1),void(wo=Math.min(window.screen.width/e,window.screen.height/e)>=600)}wo=-1!==bo.userAgent.indexOf("Touch")||bo.android&&!bo.androidPhone}},To=()=>bo.touch,Bo=()=>bo.safari,Io=()=>bo.chrome,Do=()=>(So(),(bo.touch||ko())&&wo),Ao=()=>bo._isPhone(),Po=()=>!fo&&(!Do()&&!Ao()||ko()),Mo=()=>bo.iOS,Eo=()=>bo.macOS,zo=()=>bo.android||bo.androidPhone}),Ma=qr(()=>{Pa(),Fo=!1,Ro=()=>{Bo()&&Mo()&&!Fo&&(document.body.addEventListener("touchstart",()=>{}),Fo=!0)}}),Ea=qr(()=>{Kr(),Zr(),ua(),pa(),ma(),Aa(),Ia(),oa(),ra(),ya(),Ma(),Oo=!1,No=!1,Ho=new d,Uo=()=>Oo,Vo=e=>{Oo?e():Ho.attachEvent("boot",e)},Wo=async()=>{const e=Q("OpenUI5Support"),t=!!e&&e.isOpenUI5Detected(),o=Q("F6Navigation");e&&(o&&o.destroy(),await e.init()),o&&!t&&o.init()},qo=()=>{if(No)return;const e=Q("OpenUI5Support");e&&(No=e.attachListeners())},jo=async()=>{if(void 0!==Lo)return Lo;return Lo=new Promise(async e=>{L(),typeof document>"u"?e():(ft(Yo),await Wo(),await _(),await oo(ho()),qo(),je(),Ge(),Ke(),Ro(),e(),Oo=!0,Ho.fireEvent("boot"))}),Lo},Yo=e=>{if(!Oo)return;const t=ho(),o=mo();(e===t||e===o)&&oo(t)}}),za=qr(()=>{$o=new Map,Go=new Map,Ko=new Map,Zo=e=>{if(!$o.has(e)){const t=Jo(e.split("-"));$o.set(e,t)}return $o.get(e)},Xo=e=>{if(!Go.has(e)){const t=e.replace(/([a-z])([A-Z])/g,"$1-$2").toLowerCase();Go.set(e,t)}return Go.get(e)},Jo=e=>e.map((e,t)=>0===t?e.toLowerCase():e.charAt(0).toUpperCase()+e.slice(1).toLowerCase()).join(""),Qo=e=>{const t=Ko.get(e);if(t)return t;const o=Zo(e),i=o.charAt(0).toUpperCase()+o.slice(1);return Ko.set(e,i),i}}),Fa=qr(()=>{ei=e=>{if(!(e instanceof HTMLElement))return"default";const t=e.getAttribute("slot");if(t){const e=t.match(/^(.+?)-\d+$/);return e?e[1]:t}return"default"},ti=e=>e instanceof HTMLSlotElement?e.assignedNodes({flatten:!0}).filter(e=>e instanceof HTMLElement):[e],oi=e=>e.reduce((e,t)=>e.concat(ti(t)),[])}),Ra=qr(()=>{za(),Fa(),ta(),ii=class{constructor(e){this.metadata=e}getInitialState(){if(Object.prototype.hasOwnProperty.call(this,"_initialState"))return this._initialState;const e={};if(this.slotsAreManaged()){const t=this.getSlots();for(const[o,i]of Object.entries(t)){const t=i.propertyName||o;e[t]=[],e[Zo(t)]=e[t]}}return this._initialState=e,e}static validateSlotValue(e,t){return ri(e,t)}getPureTag(){return this.metadata.tag||""}getTag(){const e=this.metadata.tag;if(!e)return"";const t=E(e);return t?`${e}-${t}`:e}hasAttribute(e){const t=this.getProperties()[e];return t.type!==Object&&!t.noAttribute}getPropertiesList(){return Object.keys(this.getProperties())}getAttributesList(){return this.getPropertiesList().filter(this.hasAttribute.bind(this)).map(Xo)}canSlotText(){return this.getSlots().default?.type===Node}hasSlots(){return!!Object.entries(this.getSlots()).length}hasIndividualSlots(){return this.slotsAreManaged()&&Object.values(this.getSlots()).some(e=>e.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}needsCLDR(){return!!this.metadata.cldr}getShadowRootOptions(){return this.metadata.shadowRootOptions||{}}isFormAssociated(){return!!this.metadata.formAssociated}shouldInvalidateOnChildChange(e,t,o){const i=this.getSlots()[e].invalidateOnChildChange;if(void 0===i)return!1;if("boolean"==typeof i)return i;if("object"==typeof i){if("property"===t){if(void 0===i.properties)return!1;if("boolean"==typeof i.properties)return i.properties;if(Array.isArray(i.properties))return i.properties.includes(o);throw new Error("Wrong format for invalidateOnChildChange.properties: boolean or array is expected")}if("slot"===t){if(void 0===i.slots)return!1;if("boolean"==typeof i.slots)return i.slots;if(Array.isArray(i.slots))return i.slots.includes(o);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")}getI18n(){return this.metadata.i18n||(this.metadata.i18n={}),this.metadata.i18n}},ri=(e,t)=>(e&&ti(e).forEach(e=>{if(!(e instanceof t.type))throw new Error(`The element is not of type ${t.type.toString()}`)}),e)}),Oa=qr(()=>{ba(),Jr(),Zr(),ai=()=>g("CustomStyle.eventProvider",new d),ni="CustomCSSChange",si=e=>{ai().attachEvent(ni,e)},li=e=>ai().fireEvent(ni,e),ci=()=>g("CustomStyle.customCSSFor",{}),si(e=>{_i||gt({tag:e})}),di=e=>{const t=ci();return t[e]?t[e].join(""):""}}),La=qr(()=>{ui=e=>Array.isArray(e)?e.filter(e=>!!e).flat(10).join(" "):e}),Na=qr(()=>{Oa(),La(),ra(),hi=new Map,si(e=>{hi.delete(`${e}_normal`)}),pi=e=>{const t=e.getMetadata().getTag(),o=`${t}_normal`,i=Q("OpenUI5Enablement");if(!hi.has(o)){let r="";i&&(r=ui(i.getBusyIndicatorStyles()));const a=di(t)||"",n=`${ui(e.styles)} ${a} ${r}`;hi.set(o,n)}return hi.get(o)}}),Ha=qr(()=>{Na(),Oa(),gi=new Map,si(e=>{gi.delete(`${e}_normal`)}),mi=e=>{const t=`${e.getMetadata().getTag()}_normal`;if(!gi.has(t)){const o=pi(e),i=new CSSStyleSheet;i.replaceSync(o),gi.set(t,[i])}return gi.get(t)}}),Ua=qr(()=>{Ha(),Ba(),vi=e=>{const t=e.constructor,o=e.shadowRoot;o?(o.adoptedStyleSheets=[Gt(),...mi(t)],t.renderer(e,o)):console.warn("There is no shadow root to update")}}),Va=qr(()=>{fi=[],bi=e=>fi.some(t=>e.startsWith(t))}),Wa=qr(()=>{yi=new WeakMap,Ci=(e,t,o)=>{const i=new MutationObserver(t);yi.set(e,i),i.observe(e,o)},wi=e=>{const t=yi.get(e);t&&(t.disconnect(),yi.delete(e))}}),qa=qr(()=>{_a(),la(),ki=["value-changed","click"],_e(()=>{xi=void 0}),Si=e=>ki.includes(e),Ti=e=>{const t=Bi();return!("boolean"!=typeof t&&t.events&&t.events.includes&&t.events.includes(e))},Bi=()=>(void 0===xi&&(xi=Be()),xi),Ii=e=>{const t=Bi();return!Si(e)&&(!0===t||!Ti(e))}}),ja=qr(()=>{Di=e=>e.matches(":dir(rtl)")?"rtl":"ltr"}),Ya=qr(()=>{Ai=["disabled","title","hidden","role","draggable"],Pi=e=>!(!Ai.includes(e)&&!e.startsWith("aria"))||![HTMLElement,Element,Node].some(t=>t.prototype.hasOwnProperty(e))}),$a=qr(()=>{Mi=(e,t)=>{if(e.length!==t.length)return!1;for(let o=0;o<e.length;o++)if(e[o]!==t[o])return!1;return!0}}),Ga=qr(()=>{Ei=(e,t)=>e.call(t)}),Ka=qr(()=>{zi=e=>{const t=e.getAttribute("form");if(t){const e=document.getElementById(t);return e instanceof HTMLFormElement?e:null}return e._internals?.form??null},Fi=e=>{Hi(e)&&Ri(e)},Ri=e=>{if(e._internals?.form){if(Oi(e),!e.name)return void e._internals?.setFormValue(null);e._internals.setFormValue(e.formFormattedValue)}},Oi=async e=>{if(e.isUI5Element&&e._internals?.form)if(e._internals.setValidity({customError:!0}," "),await e.definePromise,e.formValidity&&Object.keys(e.formValidity).some(e=>e)){const t=await(e.formElementAnchor?.());e._internals.setValidity(e.formValidity,e.formValidityMessage,t)}else e._internals.setValidity({})},Li=async e=>{const t=zi(e);if(!t)return;const o=[...t.elements];await Promise.all(o.map(e=>Hi(e)?Oi(e):Promise.resolve())),t.requestSubmit()},Ni=e=>{zi(e)?.reset()},Hi=e=>"formFormattedValue"in e&&"name"in e}),Za=qr(()=>{na(),Ui=typeof document>"u",Vi=()=>{if(Ui)return re;const e=navigator.languages;return e&&e[0]||navigator.language||re}}),Xa=qr(()=>{Zr(),Wi=new d,qi="languageChange",ji=e=>{Wi.attachEvent(qi,e)},Yi=e=>Wi.fireEventAsync(qi,e)}),Ja=qr(()=>{_a(),Xa(),ba(),na(),Ea(),la(),Da(),_e(()=>{$i=void 0,Gi=void 0}),Ki=!1,lo("language",e=>{$i=e,Ki=!0,Yi(e).then(()=>{Ki=!1,Uo()&>({languageAware:!0})})}),Zi=()=>Ki,Xi=()=>(void 0===$i&&($i=co("language")??Se()),$i),Ji=()=>(void 0===Gi&&(Gi=Te()),Gi)}),Qa=qr(()=>{na(),Qi=/^((?:[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,er=class{constructor(e){const t=Qi.exec(e.replace(/_/g,"-"));if(null===t)throw new Error(`The given language ${e} does not adhere to BCP-47.`);this.sLocaleId=e,this.sLanguage=t[1]||re,this.sScript=t[2]||"",this.sRegion=t[3]||"",this.sVariant=t[4]&&t[4].slice(1)||null,this.sExtension=t[5]&&t[5].slice(1)||null,this.sPrivateUse=t[6]||null,this.sLanguage&&(this.sLanguage=this.sLanguage.toLowerCase()),this.sScript&&(this.sScript=this.sScript.toLowerCase().replace(/^[a-z]/,e=>e.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(e){return this.getPrivateUseSubtags().indexOf(e)>=0}toString(){const e=[this.sLanguage];return this.sScript&&e.push(this.sScript),this.sRegion&&e.push(this.sRegion),this.sVariant&&e.push(this.sVariant),this.sExtension&&e.push(this.sExtension),this.sPrivateUse&&e.push(this.sPrivateUse),e.join("-")}}}),en=qr(()=>{Za(),Ja(),Qa(),na(),tr=new Map,or=e=>(tr.has(e)||tr.set(e,new er(e)),tr.get(e)),ir=e=>{try{if(e&&"string"==typeof e)return or(e)}catch{}return new er(ae)},rr=e=>{if(e)return ir(e);const t=Xi();return t?or(t):ir(Vi())}}),tn=qr(()=>{na(),ar=/^((?:[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,nr=/(?:^|-)(saptrc|sappsd)(?:-|$)/i,sr={he:"iw",yi:"ji",nb:"no",sr:"sh"},lr=e=>{let t;if(!e)return ae;if("string"==typeof e&&(t=ar.exec(e.replace(/_/g,"-")))){let e=t[1].toLowerCase(),o=t[3]?t[3].toUpperCase():void 0;const i=t[2]?t[2].toLowerCase():void 0,r=t[4]?t[4].slice(1):void 0,a=t[6];return e=sr[e]||e,a&&(t=nr.exec(a))||r&&(t=nr.exec(r))?`en_US_${t[1].toLowerCase()}`:("zh"===e&&!o&&("hans"===i?o="CN":"hant"===i&&(o="TW")),e+(o?"_"+o+(r?"_"+r.replace("-","_"):""):""))}return ae}}),on=qr(()=>{na(),cr={zh_HK:"zh_TW",in:"id"},_r=e=>{if(!e)return ae;if(cr[e])return cr[e];const t=e.lastIndexOf("_");return t>=0?e.slice(0,t):e!==ae?ae:""}}),rn=qr(()=>{en(),Xa(),tn(),on(),na(),Ja(),dr=new Set,ur=new Set,hr=new Map,pr=new Map,gr=new Map,mr=(e,t)=>{hr.set(e,t)},vr=e=>hr.get(e),fr=(e,t)=>{const o=`${e}/${t}`;return gr.has(o)},br=(e,t)=>{const o=`${e}/${t}`,i=gr.get(o);return i&&!pr.get(o)&&pr.set(o,i(t)),pr.get(o)},yr=e=>{dr.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.`),dr.add(e))},Cr=(e,t)=>t!==re&&!fr(e,t),wr=async e=>{const t=rr().getLanguage(),o=rr().getRegion(),i=rr().getVariant();let r=t+(o?`-${o}`:"")+(i?`-${i}`:"");if(Cr(e,r))for(r=lr(r);Cr(e,r);)r=_r(r);const a=Ji();if(r!==re||a)if(fr(e,r))try{mr(e,await br(e,r))}catch(Ok){const t=Ok;ur.has(t.message)||(ur.add(t.message),console.error(t.message))}else yr(e);else mr(e,null)},ji(e=>{const t=[...hr.keys()];return Promise.all(t.map(wr))})}),an=qr(()=>{kr=/('')|'([^']+(?:''[^']*)*)(?:'|$)|\{([0-9]+(?:\s*,[^{}]*)?)\}|[{}]/g,xr=(e,t)=>(t=t||[],e.replace(kr,(e,o,i,r,a)=>{if(o)return"'";if(i)return i.replace(/''/g,"'");if(r)return String(t["string"==typeof r?parseInt(r):r]);throw new Error(`[i18n]: pattern syntax error at pos ${a}`)}))}),nn=qr(()=>{rn(),an(),Sr=new Map,Br=class{constructor(e){this.packageName=e}getText(e,...t){if("string"==typeof e&&(e={key:e,defaultText:e}),!e||!e.key)return"";const o=vr(this.packageName);return o&&!o[e.key]&&console.warn(`Key ${e.key} not found in the i18n bundle, the default text will be used`),xr(o&&o[e.key]?o[e.key]:e.defaultText||e.key,t)}},Ir=e=>{if(Sr.has(e))return Sr.get(e);const t=new Br(e);return Sr.set(e,t),t},Dr=async e=>Tr?Tr(e):(await wr(e),Ir(e))}),sn=qr(()=>{Xa(),en(),na(),ra(),Ar=new Map,Pr=new Map,Mr=new Map,Er=new Set,zr=!1,Fr={iw:"he",ji:"yi",in:"id"},Rr=e=>{zr||(console.warn(`[LocaleData] Supported locale "${e}" not configured, import the "Assets.js" module from the webcomponents package you are using.`),zr=!0)},Or=(e,t,o)=>{"no"===(e=e&&Fr[e]||e)&&(e="nb"),"zh"===e&&!t&&("Hans"===o?t="CN":"Hant"===o&&(t="TW")),("sh"===e||"sr"===e&&"Latn"===o)&&(e="sr",t="Latn");let i=`${e}_${t}`;return ne.includes(i)?Pr.has(i)?i:(Rr(i),ae):(i=e,ne.includes(i)?Pr.has(i)?i:(Rr(i),ae):ae)},Lr=(e,t)=>{Ar.set(e,t)},Nr=e=>{Pr.has(e)||(e=ae);const t=Ar.get(e);if(!t)throw new Error(`CLDR data for locale ${e} is not loaded!`);return t},Hr=e=>{if(!Mr.get(e)){const t=Pr.get(e);if(!t)throw new Error(`CLDR data for locale ${e} is not loaded!`);Mr.set(e,t(e))}return Mr.get(e)},Ur=async(e,t,o)=>{const i=Or(e,t,o),r=Q("OpenUI5Support");if(r){const e=r.getLocaleDataObject();if(e)return void Lr(i,e)}try{Lr(i,await Hr(i))}catch(cx){const t=cx;Er.has(t.message)||(Er.add(t.message),console.error(t.message))}},Vr=(e,t)=>{Pr.set(e,t)},Vr("en",async()=>(console.warn('[LocaleData] Falling back to loading "en" locale data from CDN.','For production usage, please configure locale data loading via the "Assets.js" module of the webcomponents package you are using.'),(await fetch("https://cdn.jsdelivr.net/npm/@openui5/sap.ui.core@1.120.17/src/sap/ui/core/cldr/en.json")).json())),ji(()=>{const e=rr();return Ur(e.getLanguage(),e.getRegion(),e.getScript())})});function ln(e){return t=>void 0!==t&&e in t&&!0===t[e]}var cn,_n,dn,un,hn,pn,gn=qr(()=>{});function mn(e){this._suppressInvalidation||this.constructor.getMetadata().isLanguageAware()&&Zi()||(this.onInvalidation(e),this._changedState.push(e),st(this),this._invalidationEventProvider.fireEvent("invalidate",{...e,target:this}))}function vn(e,t){do{const o=Object.getOwnPropertyDescriptor(e,t);if(o)return o;e=Object.getPrototypeOf(e)}while(e&&e!==HTMLElement.prototype)}var fn,bn,yn,Cn=qr(()=>{Gr(),Ea(),Ra(),Zr(),Ua(),Va(),ba(),Qr(),Wa(),qa(),ja(),za(),Ya(),Fa(),$a(),fa(),Ga(),ta(),Ka(),nn(),sn(),en(),Ja(),gn(),cn=0,_n=new Map,dn=new Map,un={fromAttribute(e,t){if(t===Boolean)return null!==e;if(t===Number)return null===e?void 0:parseFloat(e);if(t===Object||t===Array)try{return JSON.parse(e)}catch{return e}return e},toAttribute:(e,t)=>t===Boolean?e?"":null:t===Object||t===Array?JSON.stringify(e):null==e?null:String(e)},hn=class e extends HTMLElement{constructor(){super(),this.__shouldHydrate=!1,this._rendered=!1;const e=this.constructor;let t;this._changedState=[],this._suppressInvalidation=!0,this._inDOM=!1,this._fullyConnected=!1,this._childChangeListeners=new Map,this._slotChangeListeners=new Map,this._invalidationEventProvider=new d,this._componentStateFinalizedEventProvider=new d,this._domRefReadyPromise=new Promise(e=>{t=e}),this._domRefReadyPromise._deferredResolve=t,this._doNotSyncAttributes=new Set,this._slotsAssignedNodes=new WeakMap,this._state={...e.getMetadata().getInitialState()},this.initializedProperties=new Map,this.constructor.getMetadata().getPropertiesList().forEach(e=>{if(this.hasOwnProperty(e)){const t=this[e];this.initializedProperties.set(e,t)}}),this._internals=this.attachInternals(),this._initShadowRoot()}_initShadowRoot(){const e=this.constructor;e._needsShadowDOM()&&(this.shadowRoot?this.__shouldHydrate=!0:this.attachShadow({mode:"open",...e.getMetadata().getShadowRootOptions()}),e.getMetadata().slotsAreManaged()&&this.shadowRoot.addEventListener("slotchange",this._onShadowRootSlotChange.bind(this)))}_onShadowRootSlotChange(e){e.target?.getRootNode()===this.shadowRoot&&this._processChildren()}get _id(){return this.__id||(this.__id="ui5wc_"+ ++cn),this.__id}render(){const e=this.constructor.template;return Ei(e,this)}async connectedCallback(){const e=this.constructor;this.setAttribute(e.getMetadata().getPureTag(),""),e.getMetadata().supportsF6FastNavigation()&&!this.hasAttribute("data-sap-ui-fastnavgroup")&&this.setAttribute("data-sap-ui-fastnavgroup","true");const t=e.getMetadata().slotsAreManaged();this._inDOM=!0,t&&(this._startObservingDOMChildren(),await this._processChildren()),e.asyncFinished||await e._definePromise,this._inDOM&&(lt(this),this._domRefReadyPromise._deferredResolve(),this._fullyConnected=!0,this.onEnterDOM())}get definePromise(){const e=this.constructor;return!e.asyncFinished&&e._definePromise?e._definePromise:Promise.resolve()}disconnectedCallback(){const e=this.constructor.getMetadata().slotsAreManaged();this._inDOM=!1,e&&this._stopObservingDOMChildren(),this._fullyConnected&&(this.onExitDOM(),this._fullyConnected=!1),this._domRefReadyPromise._deferredResolve(),ct(this)}onBeforeRendering(){}onAfterRendering(){}onEnterDOM(){}onExitDOM(){}_startObservingDOMChildren(){const e=this.constructor.getMetadata();if(!e.hasSlots())return;const t=e.canSlotText(),o={childList:!0,subtree:t,characterData:t};Ci(this,this._processChildren.bind(this),o)}_stopObservingDOMChildren(){wi(this)}async _processChildren(){this.constructor.getMetadata().hasSlots()&&await this._updateSlots()}async _updateSlots(){const e=this.constructor,t=e.getMetadata().getSlots(),o=e.getMetadata().canSlotText(),i=Array.from(o?this.childNodes:this.children),r=new Map,a=new Map;for(const[_,d]of Object.entries(t)){const e=d.propertyName||_;a.set(e,_),r.set(e,[...this._state[e]]),this._clearSlot(_,d)}const n=new Map,s=new Map;i.forEach((e,o)=>{const i=ei(e),r=t[i];if(void 0===r){if("default"!==i){const o=Object.keys(t).join(", ");console.warn(`Unknown slotName: ${i}, ignoring`,e,`Valid values are: ${o}`)}return}const a=r.propertyName||i;s.has(a)?s.get(a).push({child:e,idx:o}):s.set(a,[{child:e,idx:o}])}),s.forEach((e,t)=>{this._state[t]=e.sort((e,t)=>e.idx-t.idx).map(e=>e.child),this._state[Zo(t)]=this._state[t]});const l=i.map(async o=>{const i=ei(o),r=t[i];if(void 0!==r){if(r.individualSlots){const e=(n.get(i)||0)+1;n.set(i,e),o._individualSlot=`${i}-${e}`}if(o instanceof HTMLElement){const e=o.localName;if(e.includes("-")&&!bi(e)){if(!customElements.get(e)){const t=customElements.whenDefined(e);let o=_n.get(e);o||(o=new Promise(e=>setTimeout(e,1e3)),_n.set(e,o)),await Promise.race([t,o])}customElements.upgrade(o)}}if(o=e.getMetadata().constructor.validateSlotValue(o,r),pn(o)&&r.invalidateOnChildChange){const e=this._getChildChangeListener(i);o.attachInvalidate.call(o,e)}o instanceof HTMLSlotElement&&this._attachSlotChange(o,i,!!r.invalidateOnChildChange)}});await Promise.all(l);let c=!1;for(const[_,d]of Object.entries(t)){const t=d.propertyName||_;Mi(r.get(t),this._state[t])||(mn.call(this,{type:"slot",name:a.get(t),reason:"children"}),c=!0,e.getMetadata().isFormAssociated()&&Ri(this))}c||mn.call(this,{type:"slot",name:"default",reason:"textcontent"})}_clearSlot(e,t){const o=t.propertyName||e;this._state[o].forEach(t=>{if(pn(t)){const o=this._getChildChangeListener(e);t.detachInvalidate.call(t,o)}t instanceof HTMLSlotElement&&this._detachSlotChange(t,e)}),this._state[o]=[],this._state[Zo(o)]=this._state[o]}attachInvalidate(e){this._invalidationEventProvider.attachEvent("invalidate",e)}detachInvalidate(e){this._invalidationEventProvider.detachEvent("invalidate",e)}_onChildChange(e,t){this.constructor.getMetadata().shouldInvalidateOnChildChange(e,t.type,t.name)&&mn.call(this,{type:"slot",name:e,reason:"childchange",child:t.target})}attributeChangedCallback(e,t,o){let i;if(this._doNotSyncAttributes.has(e))return;const r=this.constructor.getMetadata().getProperties(),a=Zo(e.replace(/^ui5-/,""));if(r.hasOwnProperty(a)){const e=r[a];i=(e.converter??un).fromAttribute(o,e.type),this[a]=i}}formAssociatedCallback(){this.constructor.getMetadata().isFormAssociated()&&Fi(this)}static get formAssociated(){return this.getMetadata().isFormAssociated()}_updateAttribute(e,t){const o=this.constructor;if(!o.getMetadata().hasAttribute(e))return;const i=o.getMetadata().getProperties()[e],r=Xo(e),a=(i.converter||un).toAttribute(t,i.type);this._doNotSyncAttributes.add(r),null==a?this.removeAttribute(r):this.setAttribute(r,a),this._doNotSyncAttributes.delete(r)}_getChildChangeListener(e){return this._childChangeListeners.has(e)||this._childChangeListeners.set(e,this._onChildChange.bind(this,e)),this._childChangeListeners.get(e)}_getSlotChangeListener(e){return this._slotChangeListeners.has(e)||this._slotChangeListeners.set(e,this._onSlotChange.bind(this,e)),this._slotChangeListeners.get(e)}_attachSlotChange(e,t,o){const i=this._getSlotChangeListener(t);e.addEventListener("slotchange",r=>{if(i.call(e,r),o){const o=this._slotsAssignedNodes.get(e);o&&o.forEach(e=>{if(pn(e)){const o=this._getChildChangeListener(t);e.detachInvalidate.call(e,o)}});const i=oi([e]);this._slotsAssignedNodes.set(e,i),i.forEach(e=>{if(pn(e)){const o=this._getChildChangeListener(t);e.attachInvalidate.call(e,o)}})}})}_detachSlotChange(e,t){e.removeEventListener("slotchange",this._getSlotChangeListener(t))}_onSlotChange(e){mn.call(this,{type:"slot",name:e,reason:"slotchange"})}onInvalidation(e){}updateAttributes(){const e=this.constructor.getMetadata().getProperties();for(const[t,o]of Object.entries(e))this._updateAttribute(t,this[t])}_render(){const e=this.constructor,t=e.getMetadata().hasIndividualSlots();this.initializedProperties.size>0&&(Array.from(this.initializedProperties.entries()).forEach(([e,t])=>{delete this[e],this[e]=t}),this.initializedProperties.clear()),this._suppressInvalidation=!0;try{this.onBeforeRendering(),this._rendered||this.updateAttributes(),this._componentStateFinalizedEventProvider.fireEvent("componentStateFinalized")}finally{this._suppressInvalidation=!1}this._changedState=[],e._needsShadowDOM()&&vi(this),this._rendered=!0,t&&this._assignIndividualSlotsToChildren(),this.onAfterRendering()}_assignIndividualSlotsToChildren(){Array.from(this.children).forEach(e=>{e._individualSlot&&e.setAttribute("slot",e._individualSlot)})}_waitForDomRef(){return this._domRefReadyPromise}getDomRef(){return"function"==typeof this._getRealDomRef?this._getRealDomRef():this.shadowRoot&&0!==this.shadowRoot.children.length?this.shadowRoot.children[0]:void 0}getFocusDomRef(){const e=this.getDomRef();if(e)return e.querySelector("[data-sap-focus-ref]")||e}async getFocusDomRefAsync(){return await this._waitForDomRef(),this.getFocusDomRef()}async focus(e){await this._waitForDomRef();const t=this.getFocusDomRef();t!==this&&this.isConnected?t&&"function"==typeof t.focus&&t.focus(e):HTMLElement.prototype.focus.call(this,e)}fireEvent(e,t,o=!1,i=!0){const r=this._fireEvent(e,t,o,i),a=Qo(e);return a!==e?r&&this._fireEvent(a,t,o,i):r}fireDecoratorEvent(e,t){const o=this.getEventData(e),i=!!o&&o.cancelable,r=!!o&&o.bubbles,a=this._fireEvent(e,t,i,r),n=Qo(e);return n!==e?a&&this._fireEvent(n,t,i,r):a}_fireEvent(e,t,o=!1,i=!0){const r=new CustomEvent(`ui5-${e}`,{detail:t,composed:!1,bubbles:i,cancelable:o}),a=this.dispatchEvent(r);if(Ii(e))return a;const n=new CustomEvent(e,{detail:t,composed:!1,bubbles:i,cancelable:o});return this.dispatchEvent(n)&&a}getEventData(e){return this.constructor.getMetadata().getEvents()[e]}getSlottedNodes(e){return oi(this[e])}attachComponentStateFinalized(e){this._componentStateFinalizedEventProvider.attachEvent("componentStateFinalized",e)}detachComponentStateFinalized(e){this._componentStateFinalizedEventProvider.detachEvent("componentStateFinalized",e)}get effectiveDir(){return Je(this.constructor),Di(this)}get isUI5Element(){return!0}get isUI5AbstractElement(){return!this.constructor._needsShadowDOM()}get classes(){return{}}get accessibilityInfo(){}static get observedAttributes(){return this.getMetadata().getAttributesList()}static get tagsToScope(){const e=this.getMetadata().getPureTag(),t=this.getUniqueDependencies().map(e=>e.getMetadata().getPureTag()).filter(M);return M(e)&&t.push(e),t}static _needsShadowDOM(){return!!this.template||Object.prototype.hasOwnProperty.call(this.prototype,"render")}static _generateAccessors(){const e=this.prototype,t=this.getMetadata().slotsAreManaged(),o=this.getMetadata().getProperties();for(const[i,r]of Object.entries(o)){Pi(i)||console.warn(`"${i}" is not a valid property name. Use a name that does not collide with DOM APIs`);const t=vn(e,i);let o,r;t?.set&&(o=t.set),t?.get&&(r=t.get),Object.defineProperty(e,i,{get(){return r?r.call(this):this._state[i]},set(e){const t=this.constructor,a=r?r.call(this):this._state[i];if(a!==e){if(o?o.call(this,e):this._state[i]=e,mn.call(this,{type:"property",name:i,newValue:e,oldValue:a}),this._rendered){const e=r?r.call(this):this._state[i];this._updateAttribute(i,e)}t.getMetadata().isFormAssociated()&&Ri(this)}}})}if(t){const t=this.getMetadata().getSlots();for(const[o,i]of Object.entries(t)){Pi(o)||console.warn(`"${o}" is not a valid property name. Use a name that does not collide with DOM APIs`);const t=i.propertyName||o,r={get(){return void 0!==this._state[t]?this._state[t]:[]},set(){throw new Error("Cannot set slot content directly, use the DOM APIs (appendChild, removeChild, etc...)")}};Object.defineProperty(e,t,r),t!==Zo(t)&&Object.defineProperty(e,Zo(t),r)}}}static{this.metadata={}}static{this.styles=""}static get dependencies(){return[]}static cacheUniqueDependencies(){const e=this.dependencies.filter((e,t,o)=>o.indexOf(e)===t);dn.set(this,e)}static getUniqueDependencies(){return dn.has(this)||this.cacheUniqueDependencies(),dn.get(this)||[]}static async onDefine(){return Promise.resolve()}static fetchI18nBundles(){return Promise.all(Object.entries(this.getMetadata().getI18n()).map(e=>{const{bundleName:t}=e[1];return Dr(t)}))}static fetchCLDR(){return this.getMetadata().needsCLDR()?Ur(rr().getLanguage(),rr().getRegion(),rr().getScript()):Promise.resolve()}static{this.i18nBundleStorage={}}static get i18nBundles(){return this.i18nBundleStorage}static define(){this._definePromise=(async()=>{await jo();const[e]=await Promise.all([this.fetchI18nBundles(),this.fetchCLDR(),this.onDefine()]);Object.entries(this.getMetadata().getI18n()).forEach((t,o)=>{const i=t[1].bundleName;this.i18nBundleStorage[i]=e[o]}),this.asyncFinished=!0})();const e=this.getMetadata().getTag(),t=C(e),o=customElements.get(e);return o&&!t?x(e):o||(this._generateAccessors(),y(e),customElements.define(e,this)),this}static getMetadata(){if(this.hasOwnProperty("_metadata"))return this._metadata;const t=[this.metadata];let o=this;for(;o!==e;)o=Object.getPrototypeOf(o),t.unshift(o.metadata);const i=c({},...t);return this._metadata=new ii(i),this._metadata}get validity(){return this._internals.validity}get validationMessage(){return this._internals.validationMessage}checkValidity(){return this._internals.checkValidity()}reportValidity(){return this._internals.reportValidity()}},pn=ln("isUI5Element")}),wn=qr(()=>{fn=(e={})=>t=>{if(Object.prototype.hasOwnProperty.call(t,"metadata")||(t.metadata={}),"string"==typeof e)return void(t.metadata.tag=e);const{tag:o,languageAware:i,themeAware:r,cldr:a,fastNavigation:n,formAssociated:s,shadowRootOptions:l}=e;t.metadata.tag=o,i&&(t.metadata.languageAware=i),a&&(t.metadata.cldr=a),r&&(t.metadata.themeAware=r),n&&(t.metadata.fastNavigation=n),s&&(t.metadata.formAssociated=s),l&&(t.metadata.shadowRootOptions=l),["renderer","template","styles","dependencies"].forEach(o=>{e[o]&&Object.defineProperty(t,o,{get:()=>e[o]})})}}),kn=qr(()=>{bn=e=>(t,o)=>{const i=t.constructor;Object.prototype.hasOwnProperty.call(i,"metadata")||(i.metadata={});const r=i.metadata;r.properties||(r.properties={});const a=r.properties;a[o]||(a[o]=e??{})}}),xn=qr(()=>{yn=(e,t={})=>o=>{Object.prototype.hasOwnProperty.call(o,"metadata")||(o.metadata={});const i=o.metadata;i.events||(i.events={});const r=i.events;r[e]||(t.bubbles=!!t.bubbles,t.cancelable=!!t.cancelable,r[e]=t)}});function Sn(e){return(t,o)=>{const i=t.constructor;Object.prototype.hasOwnProperty.call(i,"metadata")||(i.metadata={});const r=i.metadata;r.slots||(r.slots={});const a=r.slots;if(e&&e.default&&a.default)throw new Error("Only one slot can be the default slot.");const n=e&&e.default?"default":o;(e=e||{type:HTMLElement}).type||(e.type=HTMLElement),a[n]||(a[n]=e),e.default&&(delete a.default.default,a.default.propertyName=o),i.metadata.managedSlots=!0}}var Tn,Bn,In,Dn,An,Pn,Mn,En,zn,Fn,Rn,On,Ln,Nn,Hn,Un,Vn,Wn=qr(()=>{}),qn=qr(()=>{Tn=e=>(t,o)=>{t.metadata.i18n||(t.metadata.i18n={}),Object.defineProperty(t,o,{get:()=>t.i18nBundles[e],set(){}}),t.metadata.i18n[o]={bundleName:e,target:t}}});function jn(e,t){for(var o in t)e[o]=t[o];return e}function Yn(e){e&&e.parentNode&&e.parentNode.removeChild(e)}function $n(e,t,o,i,r){var a={type:e,props:t,key:o,ref:i,__k:null,__:null,__b:0,__e:null,__c:null,constructor:void 0,__v:null==r?++Dn:r,__i:-1,__u:0};return null==r&&null!=In.vnode&&In.vnode(a),a}function Gn(e){return e.children}function Kn(e,t){this.props=e,this.context=t}function Zn(e,t){if(null==t)return e.__?Zn(e.__,e.__i+1):null;for(var o;t<e.__k.length;t++)if(null!=(o=e.__k[t])&&null!=o.__e)return o.__e;return"function"==typeof e.type?Zn(e):null}function Xn(e){var t,o;if(null!=(e=e.__)&&null!=e.__c){for(e.__e=e.__c.base=null,t=0;t<e.__k.length;t++)if(null!=(o=e.__k[t])&&null!=o.__e){e.__e=e.__c.base=o.__e;break}return Xn(e)}}function Jn(e){(!e.__d&&(e.__d=!0)&&An.push(e)&&!Qn.__r++||Pn!==In.debounceRendering)&&((Pn=In.debounceRendering)||Mn)(Qn)}function Qn(){var e,t,o,i,r,a,n,s;for(An.sort(En);e=An.shift();)e.__d&&(t=An.length,i=void 0,a=(r=(o=e).__v).__e,n=[],s=[],o.__P&&((i=jn({},r)).__v=r.__v+1,In.vnode&&In.vnode(i),ns(o.__P,i,r,o.__n,o.__P.namespaceURI,32&r.__u?[a]:null,n,null==a?Zn(r):a,!!(32&r.__u),s),i.__v=r.__v,i.__.__k[i.__i]=i,ss(n,i,s),i.__e!=a&&Xn(i)),An.length>t&&An.sort(En));Qn.__r=0}function es(e,t,o,i,r,a,n,s,l,c,_){var d,u,h,p,g,m,v=i&&i.__k||Hn,f=t.length;for(l=function(e,t,o,i){var r,a,n,s,l,c=t.length,_=o.length,d=_,u=0;for(e.__k=[],r=0;r<c;r++)null!=(a=t[r])&&"boolean"!=typeof a&&"function"!=typeof a?(s=r+u,(a=e.__k[r]="string"==typeof a||"number"==typeof a||"bigint"==typeof a||a.constructor==String?$n(null,a,null,null,null):Vn(a)?$n(Gn,{children:a},null,null,null):void 0===a.constructor&&a.__b>0?$n(a.type,a.props,a.key,a.ref?a.ref:null,a.__v):a).__=e,a.__b=e.__b+1,n=null,-1!==(l=a.__i=os(a,o,s,d))&&(d--,(n=o[l])&&(n.__u|=2)),null==n||null===n.__v?(-1==l&&u--,"function"!=typeof a.type&&(a.__u|=4)):l!==s&&(l==s-1?u--:l==s+1?u++:(l>s?u--:u++,a.__u|=4))):a=e.__k[r]=null;if(d)for(r=0;r<_;r++)null!=(n=o[r])&&!(2&n.__u)&&(n.__e==i&&(i=Zn(n)),cs(n,n));return i}(o,t,v,l),d=0;d<f;d++)null!=(h=o.__k[d])&&(u=-1===h.__i?Nn:v[h.__i]||Nn,h.__i=d,m=ns(e,h,u,r,a,n,s,l,c,_),p=h.__e,h.ref&&u.ref!=h.ref&&(u.ref&&ls(u.ref,null,h),_.push(h.ref,h.__c||p,h)),null==g&&null!=p&&(g=p),4&h.__u||u.__k===h.__k?l=ts(h,l,e):"function"==typeof h.type&&void 0!==m?l=m:p&&(l=p.nextSibling),h.__u&=-7);return o.__e=g,l}function ts(e,t,o){var i,r;if("function"==typeof e.type){for(i=e.__k,r=0;i&&r<i.length;r++)i[r]&&(i[r].__=e,t=ts(i[r],t,o));return t}e.__e!=t&&(t&&e.type&&!o.contains(t)&&(t=Zn(e)),o.insertBefore(e.__e,t||null),t=e.__e);do{t=t&&t.nextSibling}while(null!=t&&8===t.nodeType);return t}function os(e,t,o,i){var r=e.key,a=e.type,n=o-1,s=o+1,l=t[o];if(null===l||l&&r==l.key&&a===l.type&&!(2&l.__u))return o;if(("function"!=typeof a||a===Gn||r)&&i>(null==l||2&l.__u?0:1))for(;n>=0||s<t.length;){if(n>=0){if((l=t[n])&&!(2&l.__u)&&r==l.key&&a===l.type)return n;n--}if(s<t.length){if((l=t[s])&&!(2&l.__u)&&r==l.key&&a===l.type)return s;s++}}return-1}function is(e,t,o){"-"===t[0]?e.setProperty(t,null==o?"":o):e[t]=null==o?"":"number"!=typeof o||Un.test(t)?o:o+"px"}function rs(e,t,o,i,r){var a,n;e:if("style"===t)if("string"==typeof o)e.style.cssText=o;else{if("string"==typeof i&&(e.style.cssText=i=""),i)for(t in i)o&&t in o||is(e.style,t,"");if(o)for(t in o)i&&o[t]===i[t]||is(e.style,t,o[t])}else if("o"===t[0]&&"n"===t[1])a=t!==(t=t.replace(zn,"$1")),t=t.toLowerCase()in e||"onFocusOut"===t||"onFocusIn"===t?t.toLowerCase().slice(2):t.slice(2),e.l||(e.l={}),e.l[t+a]=o,o?i?o.t=i.t:(o.t=Fn,e.addEventListener(t,a?On:Rn,a)):e.removeEventListener(t,a?On:Rn,a);else{if("http://www.w3.org/2000/svg"==r)t=t.replace(/xlink(H|:h)/,"h").replace(/sName$/,"s");else if("width"!=t&&"height"!=t&&"href"!=t&&"list"!=t&&"form"!=t&&"tabIndex"!=t&&"download"!=t&&"rowSpan"!=t&&"colSpan"!=t&&"role"!=t&&"popover"!=t&&t in e)try{n=e.tagName&&e.tagName.includes("-"),e[t]=null!=o||n?o:"";break e}catch(e){}"function"==typeof o||(null==o||!1===o&&"-"!==t[4]?e.removeAttribute(t):e.setAttribute(t,"popover"==t&&1==o?"":o))}}function as(e){return function(t){if(this.l){var o=this.l[t.type+e];if(null==t.u)t.u=Fn++;else if(t.u<o.t)return;return o(In.event?In.event(t):t)}}}function ns(e,t,o,i,r,a,n,s,l,c){var _,d,u,h,p,g,m,v,f,b,y,C,w,k,x,S,T,B=t.type;if(void 0!==t.constructor)return null;128&o.__u&&(l=!!(32&o.__u),a=[s=t.__e=o.__e]),(_=In.__b)&&_(t);e:if("function"==typeof B)try{if(v=t.props,f="prototype"in B&&B.prototype.render,b=(_=B.contextType)&&i[_.__c],y=_?b?b.props.value:_.__:i,o.__c?m=(d=t.__c=o.__c).__=d.__E:(f?t.__c=d=new B(v,y):(t.__c=d=new Kn(v,y),d.constructor=B,d.render=_s),b&&b.sub(d),d.props=v,d.state||(d.state={}),d.context=y,d.__n=i,u=d.__d=!0,d.__h=[],d._sb=[]),f&&null==d.__s&&(d.__s=d.state),f&&null!=B.getDerivedStateFromProps&&(d.__s==d.state&&(d.__s=jn({},d.__s)),jn(d.__s,B.getDerivedStateFromProps(v,d.__s))),h=d.props,p=d.state,d.__v=t,u)f&&null==B.getDerivedStateFromProps&&null!=d.componentWillMount&&d.componentWillMount(),f&&null!=d.componentDidMount&&d.__h.push(d.componentDidMount);else{if(f&&null==B.getDerivedStateFromProps&&v!==h&&null!=d.componentWillReceiveProps&&d.componentWillReceiveProps(v,y),!d.__e&&(null!=d.shouldComponentUpdate&&!1===d.shouldComponentUpdate(v,d.__s,y)||t.__v===o.__v)){for(t.__v!==o.__v&&(d.props=v,d.state=d.__s,d.__d=!1),t.__e=o.__e,t.__k=o.__k,t.__k.some(function(e){e&&(e.__=t)}),C=0;C<d._sb.length;C++)d.__h.push(d._sb[C]);d._sb=[],d.__h.length&&n.push(d);break e}null!=d.componentWillUpdate&&d.componentWillUpdate(v,d.__s,y),f&&null!=d.componentDidUpdate&&d.__h.push(function(){d.componentDidUpdate(h,p,g)})}if(d.context=y,d.props=v,d.__P=e,d.__e=!1,w=In.__r,k=0,f){for(d.state=d.__s,d.__d=!1,w&&w(t),_=d.render(d.props,d.state,d.context),x=0;x<d._sb.length;x++)d.__h.push(d._sb[x]);d._sb=[]}else do{d.__d=!1,w&&w(t),_=d.render(d.props,d.state,d.context),d.state=d.__s}while(d.__d&&++k<25);d.state=d.__s,null!=d.getChildContext&&(i=jn(jn({},i),d.getChildContext())),f&&!u&&null!=d.getSnapshotBeforeUpdate&&(g=d.getSnapshotBeforeUpdate(h,p)),s=es(e,Vn(S=null!=_&&_.type===Gn&&null==_.key?_.props.children:_)?S:[S],t,o,i,r,a,n,s,l,c),d.base=t.__e,t.__u&=-161,d.__h.length&&n.push(d),m&&(d.__E=d.__=null)}catch(e){if(t.__v=null,l||null!=a)if(e.then){for(t.__u|=l?160:128;s&&8===s.nodeType&&s.nextSibling;)s=s.nextSibling;a[a.indexOf(s)]=null,t.__e=s}else for(T=a.length;T--;)Yn(a[T]);else t.__e=o.__e,t.__k=o.__k;In.__e(e,t,o)}else null==a&&t.__v===o.__v?(t.__k=o.__k,t.__e=o.__e):s=t.__e=function(e,t,o,i,r,a,n,s,l){var c,_,d,u,h,p,g,m,v=o.props,f=t.props,b=t.type;if("svg"===b?r="http://www.w3.org/2000/svg":"math"===b?r="http://www.w3.org/1998/Math/MathML":r||(r="http://www.w3.org/1999/xhtml"),null!=a)for(c=0;c<a.length;c++)if((h=a[c])&&"setAttribute"in h==!!b&&(b?h.localName===b:3===h.nodeType)){e=h,a[c]=null;break}if(null==e){if(null===b)return document.createTextNode(f);e=document.createElementNS(r,b,f.is&&f),s&&(In.__m&&In.__m(t,a),s=!1),a=null}if(null===b)v===f||s&&e.data===f||(e.data=f);else{if(a=a&&Bn.call(e.childNodes),v=o.props||Nn,!s&&null!=a)for(v={},c=0;c<e.attributes.length;c++)v[(h=e.attributes[c]).name]=h.value;for(c in v)if(h=v[c],"children"==c);else if("dangerouslySetInnerHTML"==c)d=h;else if(!(c in f)){if("value"==c&&"defaultValue"in f||"checked"==c&&"defaultChecked"in f)continue;rs(e,c,null,h,r)}for(c in f)h=f[c],"children"==c?u=h:"dangerouslySetInnerHTML"==c?_=h:"value"==c?p=h:"checked"==c?g=h:s&&"function"!=typeof h||v[c]===h||((c.startsWith("on")||"ref"===c&&"function"==typeof h)&&(m=i[Object.keys(i)[0]])&&(h=h.bind(m.props.value)),rs(e,c,h,v[c],r));if(_)s||d&&(_.__html===d.__html||_.__html===e.innerHTML)||(e.innerHTML=_.__html),t.__k=[];else if(d&&(e.innerHTML=""),es(e,Vn(u)?u:[u],t,o,i,"foreignObject"===b?"http://www.w3.org/1999/xhtml":r,a,n,a?a[0]:o.__k&&Zn(o,0),s,l),null!=a)for(c=a.length;c--;)Yn(a[c]);s||(c="value","progress"===b&&null==p?e.removeAttribute("value"):void 0!==p&&(p!==e[c]||"progress"===b&&!p||"option"===b&&p!==v[c])&&rs(e,c,p,v[c],r),c="checked",void 0!==g&&g!==e[c]&&rs(e,c,g,v[c],r))}return e}(o.__e,t,o,i,r,a,n,l,c);return(_=In.diffed)&&_(t),128&t.__u?void 0:s}function ss(e,t,o){for(var i=0;i<o.length;i++)ls(o[i],o[++i],o[++i]);In.__c&&In.__c(t,e),e.some(function(t){try{e=t.__h,t.__h=[],e.some(function(e){e.call(t)})}catch(e){In.__e(e,t.__v)}})}function ls(e,t,o){try{if("function"==typeof e){var i="function"==typeof e.__u;i&&e.__u(),i&&null==t||(e.__u=e(t))}else e.current=t}catch(e){In.__e(e,o)}}function cs(e,t,o){var i,r;if(In.unmount&&In.unmount(e),(i=e.ref)&&(i.current&&i.current!==e.__e||ls(i,null,t)),null!=(i=e.__c)){if(i.componentWillUnmount)try{i.componentWillUnmount()}catch(e){In.__e(e,t)}i.base=i.__P=null}if(i=e.__k)for(r=0;r<i.length;r++)i[r]&&cs(i[r],t,o||"function"!=typeof e.type);o||Yn(e.__e),e.__c=e.__=e.__e=void 0}function _s(e,t,o){return this.constructor(e,o)}function ds(e,t,o){var i,r,a,n;t===document&&(t=document.documentElement),In.__&&In.__(e,t),r=(i="function"==typeof o)?null:o&&o.__k||t.__k,a=[],n=[],ns(t,e=(!i&&o||t).__k=function(e,t,o){var i,r,a,n={};for(a in t)"key"==a?i=t[a]:"ref"==a?r=t[a]:n[a]=t[a];if(arguments.length>2&&(n.children=arguments.length>3?Bn.call(arguments,2):o),"function"==typeof e&&null!=e.defaultProps)for(a in e.defaultProps)void 0===n[a]&&(n[a]=e.defaultProps[a]);return $n(e,n,i,r,null)}(Gn,null,[e]),r||Nn,Nn,t.namespaceURI,!i&&o?[o]:r?null:t.firstChild?Bn.call(t.childNodes):null,a,!i&&o?o:r?r.__e:t.firstChild,i,n),ss(a,e,n)}function us(e,t){ds(e,t,us)}var hs,ps=qr(()=>{Nn={},Hn=[],Un=/acit|ex(?:s|g|n|p|$)|rph|grid|ows|mnc|ntw|ine[ch]|zoo|^ord|itera/i,Vn=Array.isArray,Bn=Hn.slice,In={__e:function(e,t,o,i){for(var r,a,n;t=t.__;)if((r=t.__c)&&!r.__)try{if((a=r.constructor)&&null!=a.getDerivedStateFromError&&(r.setState(a.getDerivedStateFromError(e)),n=r.__d),null!=r.componentDidCatch&&(r.componentDidCatch(e,i||{}),n=r.__d),n)return r.__E=r}catch(t){e=t}throw e}},Dn=0,Kn.prototype.setState=function(e,t){var o=null!=this.__s&&this.__s!==this.state?this.__s:this.__s=jn({},this.state);"function"==typeof e&&(e=e(jn({},o),this.props)),e&&jn(o,e),null!=e&&this.__v&&(t&&this._sb.push(t),Jn(this))},Kn.prototype.forceUpdate=function(e){this.__v&&(this.__e=!0,e&&this.__h.push(e),Jn(this))},Kn.prototype.render=Gn,An=[],Mn="function"==typeof Promise?Promise.prototype.then.bind(Promise.resolve()):setTimeout,En=function(e,t){return e.__v.__b-t.__v.__b},Qn.__r=0,zn=/(PointerCapture)$|Capture$/i,Fn=0,Rn=as(!1),On=as(!0),Ln=0});var gs,ms,vs,fs,bs,ys,Cs,ws,ks,xs,Ss,Ts,Bs,Is,Ds,As,Ps,Ms,Es,zs,Fs,Rs,Os,Ls,Ns,Hs,Us,Vs,Ws,qs,js,Ys,$s,Gs,Ks,Zs,Xs,Js,Qs,el,tl,ol,il,rl,al,nl,sl,ll,cl,_l,dl,ul,hl,pl,gl,ml,vl,fl,bl,yl,Cl,wl,kl,xl,Sl,Tl,Bl,Il,Dl,Al,Pl,Ml,El,zl,Fl,Rl,Ol,Ll,Nl,Hl,Ul,Vl,Wl,ql,jl,Yl,$l,Gl,Kl,Zl,Xl,Jl,Ql=qr(()=>{ps(),hs=0,Array.isArray}),ec=qr(()=>{ps(),Ql(),gs=new WeakMap,ms=(e,t)=>{let o=gs.get(e);o||(o=function(e,t){var o={__c:t="__cC"+Ln++,__:e,Consumer:function(e,t){return e.children(t)},Provider:function(e){var o,i;return this.getChildContext||(o=new Set,(i={})[t]=this,this.getChildContext=function(){return i},this.componentWillUnmount=function(){o=null},this.shouldComponentUpdate=function(e){this.props.value!==e.value&&o.forEach(function(e){e.__e=!0,Jn(e)})},this.sub=function(e){o.add(e);var t=e.componentWillUnmount;e.componentWillUnmount=function(){o&&o.delete(e),t&&t.call(e)}}),e.children}};return o.Provider.__=o.Consumer.contextType=o}(e),gs.set(e,o));const i=e.render(),r=function(e,t,o,i,r,a){t||(t={});var n,s,l=t;"ref"in t&&(n=t.ref,delete t.ref);var c={type:e,props:l,key:o,ref:n,__k:null,__:null,__b:0,__e:null,__c:null,constructor:void 0,__v:--hs,__i:-1,__u:0,__source:r,__self:a};if("function"==typeof e&&(n=e.defaultProps))for(s in n)void 0===l[s]&&(l[s]=n[s]);return In.vnode&&In.vnode(c),c}(o.Provider,{value:e,children:i});e.__shouldHydrate?(e.shadowRoot?.querySelectorAll("style").forEach(e=>e.remove()),us(r,t),e.__shouldHydrate=!1):ds(r,t)}}),tc=qr(()=>{vs={BACKSPACE:8,TAB:9,ENTER:13,SHIFT:16,CONTROL:17,ALT:18,BREAK:19,CAPS_LOCK:20,ESCAPE:27,SPACE:32,PAGE_UP:33,PAGE_DOWN:34,END:35,HOME:36,ARROW_LEFT:37,ARROW_UP:38,ARROW_RIGHT:39,ARROW_DOWN:40,PRINT:44,INSERT:45,DELETE:46,DIGIT_0:48,DIGIT_1:49,DIGIT_2:50,DIGIT_3:51,DIGIT_4:52,DIGIT_5:53,DIGIT_6:54,DIGIT_7:55,DIGIT_8:56,DIGIT_9:57,A:65,B:66,C:67,D:68,E:69,F:70,G:71,H:72,I:73,J:74,K:75,L:76,M:77,N:78,O:79,P:80,Q:81,R:82,S:83,T:84,U:85,V:86,W:87,X:88,Y:89,Z:90,WINDOWS:91,CONTEXT_MENU:93,TURN_OFF:94,SLEEP:95,NUMPAD_0:96,NUMPAD_1:97,NUMPAD_2:98,NUMPAD_3:99,NUMPAD_4:100,NUMPAD_5:101,NUMPAD_6:102,NUMPAD_7:103,NUMPAD_8:104,NUMPAD_9:105,NUMPAD_ASTERISK:106,NUMPAD_PLUS:107,NUMPAD_MINUS:109,NUMPAD_COMMA:110,NUMPAD_SLASH:111,F1:112,F2:113,F3:114,F4:115,F5:116,F6:117,F7:118,F8:119,F9:120,F10:121,F11:122,F12:123,NUM_LOCK:144,SCROLL_LOCK:145,COLON:186,PLUS:187,COMMA:188,SLASH:189,DOT:190,PIPE:191,SEMICOLON:192,MINUS:219,GREAT_ACCENT:220,EQUALS:221,SINGLE_QUOTE:222,BACKSLASH:226},fs=e=>(e.key?"Enter"===e.key:e.keyCode===vs.ENTER)&&!ll(e),bs=e=>(e.key?"Enter"===e.key:e.keyCode===vs.ENTER)&&_l(e,!1,!1,!0),ys=e=>_l(e,!0,!1,!1),Cs=e=>(e.key?"Spacebar"===e.key||" "===e.key:e.keyCode===vs.SPACE)&&!ll(e),ws=e=>(e.key?"Spacebar"===e.key||" "===e.key:e.keyCode===vs.SPACE)&&_l(e,!1,!1,!0),ks=e=>(e.key?"ArrowLeft"===e.key||"Left"===e.key:e.keyCode===vs.ARROW_LEFT)&&!ll(e),xs=e=>(e.key?"ArrowRight"===e.key||"Right"===e.key:e.keyCode===vs.ARROW_RIGHT)&&!ll(e),Ss=e=>(e.key?"ArrowUp"===e.key||"Up"===e.key:e.keyCode===vs.ARROW_UP)&&!ll(e),Ts=e=>(e.key?"ArrowDown"===e.key||"Down"===e.key:e.keyCode===vs.ARROW_DOWN)&&!ll(e),Bs=e=>(e.key?"ArrowUp"===e.key||"Up"===e.key:e.keyCode===vs.ARROW_UP)&&_l(e,!1,!1,!0),Is=e=>(e.key?"ArrowDown"===e.key||"Down"===e.key:e.keyCode===vs.ARROW_DOWN)&&_l(e,!1,!1,!0),Ds=e=>(e.key?"ArrowUp"===e.key||"Up"===e.key:e.keyCode===vs.ARROW_UP)&&_l(e,!1,!0,!1),As=e=>(e.key?"ArrowDown"===e.key||"Down"===e.key:e.keyCode===vs.ARROW_DOWN)&&_l(e,!1,!0,!1),Ps=e=>(e.key?"ArrowLeft"===e.key||"Left"===e.key:e.keyCode===vs.ARROW_LEFT)&&_l(e,!1,!1,!0),Ms=e=>(e.key?"ArrowRight"===e.key||"Right"===e.key:e.keyCode===vs.ARROW_RIGHT)&&_l(e,!1,!1,!0),Es=e=>(e.key?"Home"===e.key:e.keyCode===vs.HOME)&&!ll(e),zs=e=>(e.key?"End"===e.key:e.keyCode===vs.END)&&!ll(e),Fs=e=>(e.key?"Home"===e.key:e.keyCode===vs.HOME)&&_l(e,!0,!1,!1),Rs=e=>(e.key?"End"===e.key:e.keyCode===vs.END)&&_l(e,!0,!1,!1),Os=e=>(e.key?"Escape"===e.key||"Esc"===e.key:e.keyCode===vs.ESCAPE)&&!ll(e),Ls=e=>(e.key?"Tab"===e.key:e.keyCode===vs.TAB)&&!ll(e),Ns=e=>(e.key?"Tab"===e.key:e.keyCode===vs.TAB)&&_l(e,!1,!1,!0),Hs=e=>(e.key?"Backspace"===e.key:e.keyCode===vs.BACKSPACE)&&!ll(e),Us=e=>(e.key?"Delete"===e.key:e.keyCode===vs.DELETE)&&!ll(e),Vs=e=>(e.key?"PageUp"===e.key:e.keyCode===vs.PAGE_UP)&&!ll(e),Ws=e=>(e.key?"PageDown"===e.key:e.keyCode===vs.PAGE_DOWN)&&!ll(e),qs=e=>(e.key?"PageUp"===e.key:e.keyCode===vs.PAGE_UP)&&_l(e,!1,!1,!0),js=e=>(e.key?"PageUp"===e.key:e.keyCode===vs.PAGE_UP)&&_l(e,!1,!0,!1),Ys=e=>(e.key?"PageDown"===e.key:e.keyCode===vs.PAGE_DOWN)&&_l(e,!1,!1,!0),$s=e=>(e.key?"PageDown"===e.key:e.keyCode===vs.PAGE_DOWN)&&_l(e,!1,!0,!1),Gs=e=>(e.key?"PageUp"===e.key:e.keyCode===vs.PAGE_UP)&&_l(e,!0,!1,!0),Ks=e=>(e.key?"PageDown"===e.key:e.keyCode===vs.PAGE_DOWN)&&_l(e,!0,!1,!0),Zs=e=>e.key?Js(e)||rl(e):e.keyCode===vs.F4&&!ll(e)||e.keyCode===vs.ARROW_DOWN&&_l(e,!1,!0,!1),Xs=e=>"F2"===e.key&&!ll(e),Js=e=>"F4"===e.key&&!ll(e),Qs=e=>(e.key?"F4"===e.key:e.keyCode===vs.F4)&&_l(e,!1,!1,!0),el=e=>(e.key?"F6"===e.key:e.keyCode===vs.F6)&&_l(e,!1,!1,!1)||(e.key?"ArrowDown"===e.key||"Down"===e.key:e.keyCode===vs.ARROW_DOWN)&&_l(e,!0,!0,!1),tl=e=>(e.key?"F6"===e.key:e.keyCode===vs.F6)&&_l(e,!1,!1,!0)||(e.key?"ArrowUp"===e.key||"Up"===e.key:e.keyCode===vs.ARROW_UP)&&_l(e,!0,!0,!1),ol=e=>(e.key?"F7"===e.key:e.keyCode===vs.F7)&&!ll(e),il=e=>(e.key?"F8"===e.key:e.keyCode===vs.F8)&&_l(e,!0,!0,!1),rl=e=>("ArrowDown"===e.key||"Down"===e.key||"ArrowUp"===e.key||"Up"===e.key)&&_l(e,!1,!0,!1),al=e=>"Shift"===e.key||e.keyCode===vs.SHIFT,nl=e=>("A"===e.key||"a"===e.key||e.which===vs.A)&&_l(e,!1,!1,!1),sl=e=>("P"===e.key||"p"===e.key||e.which===vs.P)&&_l(e,!1,!1,!1),ll=e=>e.shiftKey||e.altKey||cl(e),cl=e=>!(!e.metaKey&&!e.ctrlKey),_l=(e,t,o,i)=>e.shiftKey===i&&e.altKey===o&&cl(e)===t,dl=e=>(e.key?-1!=="0123456789".indexOf(e.key):e.keyCode>=vs.DIGIT_0&&e.keyCode<=vs.DIGIT_9)&&_l(e,!1,!1,!1),ul=e=>(e.key?":"===e.key:e.keyCode===vs.COLON)&&_l(e,!1,!1,!0)}),oc=qr(()=>{hl=new WeakMap,pl=new WeakMap,gl={attributes:!0,childList:!0,characterData:!0,subtree:!0},ml=e=>{const t=e;return t.accessibleNameRef?vl(e):t.accessibleName?t.accessibleName:void 0},vl=e=>{const t=e.accessibleNameRef?.split(" ")??[];let o="";return t.forEach((i,r)=>{const a=yl(e,i),n=`${a&&a.textContent?a.textContent:""}`;n&&(o+=n,r<t.length-1&&(o+=" "))}),o},fl=e=>{const t=new Set;bl(e).forEach(e=>{t.add(e)});const o=[e.accessibleNameRef,e.accessibleDescriptionRef].filter(Boolean).join(" ");return(o?o.split(" "):[]).forEach(o=>{const i=yl(e,o);i&&t.add(i)}),Array.from(t)},bl=e=>{const t=e.getRootNode().querySelectorAll(`[for="${e.id}"]`);return Array.from(t)},yl=(e,t)=>e.getRootNode().querySelector(`[id='${t}']`)||document.getElementById(t),Cl=e=>{const t=[];if(bl(e).forEach(e=>{const o=e.textContent;o&&t.push(o)}),t.length)return t.join(" ")},wl=e=>t=>{const o=t&&"property"===t.type&&"accessibleNameRef"===t.name,i=t&&"property"===t.type&&"accessibleDescriptionRef"===t.name;if(!o&&!i)return;const r=pl.get(e);if(!r)return;const a=r.observedElements,n=fl(e);a.forEach(e=>{n.includes(e)||Sl(r,e)}),n.forEach(e=>{a.includes(e)||(xl(r,e),r.observedElements.push(e))}),r?.callback()},kl=(e,t)=>{if(pl.has(e))return;const o=fl(e),i=wl(e),r={host:e,observedElements:o,callback:t,invalidationCallback:i};pl.set(e,r),e.attachInvalidate(i),o.forEach(e=>{xl(r,e)}),t()},xl=(e,t)=>{let o=hl.get(t);if(!o){o={observer:null,callbacks:[]};const i=new MutationObserver(()=>{o.callbacks.forEach(e=>{e()});const i=document.getElementById(t.id);e.host.id===t.getAttribute("for")||i||Sl(e,t)});o.observer=i,i.observe(t,gl),hl.set(t,o)}o.callbacks.includes(e.callback)||o.callbacks.push(e.callback)},Sl=(e,t)=>{const o=hl.get(t);o&&(o.callbacks=o.callbacks.filter(t=>t!==e.callback),o.callbacks.length||(o.observer?.disconnect(),hl.delete(t))),e.observedElements=e.observedElements.filter(e=>e!==t)},Tl=e=>{const t=pl.get(e);t&&([...t.observedElements].forEach(e=>{Sl(t,e)}),e.detachInvalidate(t.invalidationCallback),pl.delete(e))},Bl=e=>{const t=e;return t.accessibleDescriptionRef?Il(e):t.accessibleDescription?t.accessibleDescription:void 0},Il=e=>{const t=e.accessibleDescriptionRef?.split(" ")??[];let o="";return t.forEach((i,r)=>{const a=yl(e,i),n=`${a&&a.textContent?a.textContent:""}`;n&&(o+=n,r<t.length-1&&(o+=" "))}),o}}),ic=qr(()=>{Dl=(e=>(e["SAP-icons"]="SAP-icons-v4",e.horizon="SAP-icons-v5",e["SAP-icons-TNT"]="tnt",e.BusinessSuiteInAppSymbols="business-suite",e))(Dl||{}),Al=e=>Dl[e]?Dl[e]:e}),rc=qr(()=>{Aa(),Pl=(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))(Pl||{}),(Ml=new Map).set("SAP-icons",{legacy:"SAP-icons-v4",sap_horizon:"SAP-icons-v5"}),Ml.set("tnt",{legacy:"tnt-v2",sap_horizon:"tnt-v3"}),Ml.set("business-suite",{legacy:"business-suite-v1",sap_horizon:"business-suite-v2"}),El=(e,t)=>{Ml.has(e)?Ml.set(e,{...t,...Ml.get(e)}):Ml.set(e,t)},zl=e=>{const t=po()?"legacy":"sap_horizon";return Ml.has(e)?Ml.get(e)[t]:e}}),ac=qr(()=>{Fl=new Map,Rl=e=>Fl.get(e)}),nc=qr(()=>{Aa(),ac(),ic(),rc(),Ol=e=>{const t=Rl(ho());return!e&&t?Al(t):zl(e||"SAP-icons")}}),sc=qr(()=>{Jr(),ic(),rc(),nc(),nn(),Ll=new Map,Nl=g("SVGIcons.registry",new Map),Hl=g("SVGIcons.promises",new Map),Ul="ICON_NOT_FOUND",Vl=async e=>{if(!Hl.has(e)){if(!Ll.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=Ll.get(e);Hl.set(e,t(e))}return Hl.get(e)},Wl=e=>{Object.keys(e.data).forEach(t=>{const o=e.data[t];ql(t,{pathData:o.path||o.paths,ltr:o.ltr,viewBox:o.viewBox,accData:o.acc,collection:e.collection,packageName:e.packageName})})},ql=(e,t)=>{const o=`${t.collection}/${e}`,i={collection:t.collection,packageName:t.packageName,pathData:t.pathData,viewBox:t.viewBox,ltr:t.ltr,accData:t.accData,customTemplate:t.customTemplate};Nl.set(o,i)},jl=e=>{let t;return e.startsWith("sap-icon://")&&(e=e.replace("sap-icon://","")),[e,t]=e.split("/").reverse(),e=e.replace("icon-",""),t&&(t=Al(t)),{name:e,collection:t}},Yl=e=>{const{name:t,collection:o}=jl(e);return Gl(o,t)},$l=async e=>{const{name:t,collection:o}=jl(e);let i=Ul;try{i=await Vl(Ol(o))}catch(cx){console.error(cx.message)}return i===Ul?i:Gl(o,t)||(Array.isArray(i)?i.forEach(e=>{Wl(e),El(o,{[e.themeFamily||"legacy"]:e.collection})}):Wl(i),Gl(o,t))},Gl=(e,t)=>{const o=`${Ol(e)}/${t}`;return Nl.get(o)},Kl=async e=>{if(!e)return;let t=Yl(e);return t||(t=await $l(e)),t&&t!==Ul&&t.accData?t.packageName?(await Dr(t.packageName)).getText(t.accData):t.accData?.defaultText||"":void 0}}),lc=qr(()=>{Zl=e=>Array.from(e).filter(e=>e.nodeType!==Node.COMMENT_NODE&&(e.nodeType!==Node.TEXT_NODE||0!==(e.nodeValue||"").trim().length)).length>0}),cc=qr(()=>{_a(),Jl=()=>(void 0===Xl&&(Xl=De()),Xl)});function _c(e){return e.toLowerCase()}var dc,uc,hc,pc,gc,mc,vc,fc,bc,yc,Cc,wc,kc,xc,Sc,Tc,Bc,Ic,Dc,Ac,Pc,Mc,Ec,zc=qr(()=>{}),Fc=qr(()=>{!function(e){e.Default="Default",e.Positive="Positive",e.Negative="Negative",e.Transparent="Transparent",e.Emphasized="Emphasized",e.Attention="Attention"}(dc||(dc={})),uc=dc}),Rc=qr(()=>{!function(e){e.Button="Button",e.Submit="Submit",e.Reset="Reset"}(hc||(hc={})),pc=hc}),Oc=qr(()=>{!function(e){e.InlineText="InlineText",e.OverlayText="OverlayText",e.AttentionDot="AttentionDot"}(gc||(gc={})),mc=gc}),Lc=qr(()=>{!function(e){e.Button="Button",e.Link="Link"}(vc||(vc={})),fc=vc});function Nc(e,t){for(var o in t)e[o]=t[o];return e}function Hc(e){e&&e.parentNode&&e.parentNode.removeChild(e)}function Uc(e,t,o,i,r){var a={type:e,props:t,key:o,ref:i,__k:null,__:null,__b:0,__e:null,__c:null,constructor:void 0,__v:null==r?++Cc:r,__i:-1,__u:0};return null==r&&null!=yc.vnode&&yc.vnode(a),a}function Vc(e){return e.children}function Wc(e,t){this.props=e,this.context=t}function qc(e,t){if(null==t)return e.__?qc(e.__,e.__i+1):null;for(var o;t<e.__k.length;t++)if(null!=(o=e.__k[t])&&null!=o.__e)return o.__e;return"function"==typeof e.type?qc(e):null}function jc(e){var t,o;if(null!=(e=e.__)&&null!=e.__c){for(e.__e=e.__c.base=null,t=0;t<e.__k.length;t++)if(null!=(o=e.__k[t])&&null!=o.__e){e.__e=e.__c.base=o.__e;break}return jc(e)}}function Yc(e){(!e.__d&&(e.__d=!0)&&wc.push(e)&&!$c.__r++||kc!==yc.debounceRendering)&&((kc=yc.debounceRendering)||xc)($c)}function $c(){var e,t,o,i,r,a,n,s;for(wc.sort(Sc);e=wc.shift();)e.__d&&(t=wc.length,i=void 0,a=(r=(o=e).__v).__e,n=[],s=[],o.__P&&((i=Nc({},r)).__v=r.__v+1,yc.vnode&&yc.vnode(i),e_(o.__P,i,r,o.__n,o.__P.namespaceURI,32&r.__u?[a]:null,n,null==a?qc(r):a,!!(32&r.__u),s),i.__v=r.__v,i.__.__k[i.__i]=i,t_(n,i,s),i.__e!=a&&jc(i)),wc.length>t&&wc.sort(Sc));$c.__r=0}function Gc(e,t,o,i,r,a,n,s,l,c,_){var d,u,h,p,g,m,v=i&&i.__k||Pc,f=t.length;for(l=function(e,t,o,i){var r,a,n,s,l,c=t.length,_=o.length,d=_,u=0;for(e.__k=[],r=0;r<c;r++)null!=(a=t[r])&&"boolean"!=typeof a&&"function"!=typeof a?(s=r+u,(a=e.__k[r]="string"==typeof a||"number"==typeof a||"bigint"==typeof a||a.constructor==String?Uc(null,a,null,null,null):Ec(a)?Uc(Vc,{children:a},null,null,null):void 0===a.constructor&&a.__b>0?Uc(a.type,a.props,a.key,a.ref?a.ref:null,a.__v):a).__=e,a.__b=e.__b+1,n=null,-1!==(l=a.__i=Zc(a,o,s,d))&&(d--,(n=o[l])&&(n.__u|=2)),null==n||null===n.__v?(-1==l&&u--,"function"!=typeof a.type&&(a.__u|=4)):l!==s&&(l==s-1?u--:l==s+1?u++:(l>s?u--:u++,a.__u|=4))):a=e.__k[r]=null;if(d)for(r=0;r<_;r++)null!=(n=o[r])&&!(2&n.__u)&&(n.__e==i&&(i=qc(n)),r_(n,n));return i}(o,t,v,l),d=0;d<f;d++)null!=(h=o.__k[d])&&(u=-1===h.__i?Ac:v[h.__i]||Ac,h.__i=d,m=e_(e,h,u,r,a,n,s,l,c,_),p=h.__e,h.ref&&u.ref!=h.ref&&(u.ref&&i_(u.ref,null,h),_.push(h.ref,h.__c||p,h)),null==g&&null!=p&&(g=p),4&h.__u||u.__k===h.__k?l=Kc(h,l,e):"function"==typeof h.type&&void 0!==m?l=m:p&&(l=p.nextSibling),h.__u&=-7);return o.__e=g,l}function Kc(e,t,o){var i,r;if("function"==typeof e.type){for(i=e.__k,r=0;i&&r<i.length;r++)i[r]&&(i[r].__=e,t=Kc(i[r],t,o));return t}e.__e!=t&&(t&&e.type&&!o.contains(t)&&(t=qc(e)),o.insertBefore(e.__e,t||null),t=e.__e);do{t=t&&t.nextSibling}while(null!=t&&8===t.nodeType);return t}function Zc(e,t,o,i){var r=e.key,a=e.type,n=o-1,s=o+1,l=t[o];if(null===l||l&&r==l.key&&a===l.type&&!(2&l.__u))return o;if(("function"!=typeof a||a===Vc||r)&&i>(null==l||2&l.__u?0:1))for(;n>=0||s<t.length;){if(n>=0){if((l=t[n])&&!(2&l.__u)&&r==l.key&&a===l.type)return n;n--}if(s<t.length){if((l=t[s])&&!(2&l.__u)&&r==l.key&&a===l.type)return s;s++}}return-1}function Xc(e,t,o){"-"===t[0]?e.setProperty(t,null==o?"":o):e[t]=null==o?"":"number"!=typeof o||Mc.test(t)?o:o+"px"}function Jc(e,t,o,i,r){var a,n;e:if("style"===t)if("string"==typeof o)e.style.cssText=o;else{if("string"==typeof i&&(e.style.cssText=i=""),i)for(t in i)o&&t in o||Xc(e.style,t,"");if(o)for(t in o)i&&o[t]===i[t]||Xc(e.style,t,o[t])}else if("o"===t[0]&&"n"===t[1])a=t!==(t=t.replace(Tc,"$1")),t=t.toLowerCase()in e||"onFocusOut"===t||"onFocusIn"===t?t.toLowerCase().slice(2):t.slice(2),e.l||(e.l={}),e.l[t+a]=o,o?i?o.t=i.t:(o.t=Bc,e.addEventListener(t,a?Dc:Ic,a)):e.removeEventListener(t,a?Dc:Ic,a);else{if("http://www.w3.org/2000/svg"==r)t=t.replace(/xlink(H|:h)/,"h").replace(/sName$/,"s");else if("width"!=t&&"height"!=t&&"href"!=t&&"list"!=t&&"form"!=t&&"tabIndex"!=t&&"download"!=t&&"rowSpan"!=t&&"colSpan"!=t&&"role"!=t&&"popover"!=t&&t in e)try{n=e.tagName&&e.tagName.includes("-"),e[t]=null!=o||n?o:"";break e}catch(e){}"function"==typeof o||(null==o||!1===o&&"-"!==t[4]?e.removeAttribute(t):e.setAttribute(t,"popover"==t&&1==o?"":o))}}function Qc(e){return function(t){if(this.l){var o=this.l[t.type+e];if(null==t.u)t.u=Bc++;else if(t.u<o.t)return;return o(yc.event?yc.event(t):t)}}}function e_(e,t,o,i,r,a,n,s,l,c){var _,d,u,h,p,g,m,v,f,b,y,C,w,k,x,S,T,B=t.type;if(void 0!==t.constructor)return null;128&o.__u&&(l=!!(32&o.__u),a=[s=t.__e=o.__e]),(_=yc.__b)&&_(t);e:if("function"==typeof B)try{if(v=t.props,f="prototype"in B&&B.prototype.render,b=(_=B.contextType)&&i[_.__c],y=_?b?b.props.value:_.__:i,o.__c?m=(d=t.__c=o.__c).__=d.__E:(f?t.__c=d=new B(v,y):(t.__c=d=new Wc(v,y),d.constructor=B,d.render=a_),b&&b.sub(d),d.props=v,d.state||(d.state={}),d.context=y,d.__n=i,u=d.__d=!0,d.__h=[],d._sb=[]),f&&null==d.__s&&(d.__s=d.state),f&&null!=B.getDerivedStateFromProps&&(d.__s==d.state&&(d.__s=Nc({},d.__s)),Nc(d.__s,B.getDerivedStateFromProps(v,d.__s))),h=d.props,p=d.state,d.__v=t,u)f&&null==B.getDerivedStateFromProps&&null!=d.componentWillMount&&d.componentWillMount(),f&&null!=d.componentDidMount&&d.__h.push(d.componentDidMount);else{if(f&&null==B.getDerivedStateFromProps&&v!==h&&null!=d.componentWillReceiveProps&&d.componentWillReceiveProps(v,y),!d.__e&&(null!=d.shouldComponentUpdate&&!1===d.shouldComponentUpdate(v,d.__s,y)||t.__v===o.__v)){for(t.__v!==o.__v&&(d.props=v,d.state=d.__s,d.__d=!1),t.__e=o.__e,t.__k=o.__k,t.__k.some(function(e){e&&(e.__=t)}),C=0;C<d._sb.length;C++)d.__h.push(d._sb[C]);d._sb=[],d.__h.length&&n.push(d);break e}null!=d.componentWillUpdate&&d.componentWillUpdate(v,d.__s,y),f&&null!=d.componentDidUpdate&&d.__h.push(function(){d.componentDidUpdate(h,p,g)})}if(d.context=y,d.props=v,d.__P=e,d.__e=!1,w=yc.__r,k=0,f){for(d.state=d.__s,d.__d=!1,w&&w(t),_=d.render(d.props,d.state,d.context),x=0;x<d._sb.length;x++)d.__h.push(d._sb[x]);d._sb=[]}else do{d.__d=!1,w&&w(t),_=d.render(d.props,d.state,d.context),d.state=d.__s}while(d.__d&&++k<25);d.state=d.__s,null!=d.getChildContext&&(i=Nc(Nc({},i),d.getChildContext())),f&&!u&&null!=d.getSnapshotBeforeUpdate&&(g=d.getSnapshotBeforeUpdate(h,p)),s=Gc(e,Ec(S=null!=_&&_.type===Vc&&null==_.key?_.props.children:_)?S:[S],t,o,i,r,a,n,s,l,c),d.base=t.__e,t.__u&=-161,d.__h.length&&n.push(d),m&&(d.__E=d.__=null)}catch(e){if(t.__v=null,l||null!=a)if(e.then){for(t.__u|=l?160:128;s&&8===s.nodeType&&s.nextSibling;)s=s.nextSibling;a[a.indexOf(s)]=null,t.__e=s}else for(T=a.length;T--;)Hc(a[T]);else t.__e=o.__e,t.__k=o.__k;yc.__e(e,t,o)}else null==a&&t.__v===o.__v?(t.__k=o.__k,t.__e=o.__e):s=t.__e=o_(o.__e,t,o,i,r,a,n,l,c);return(_=yc.diffed)&&_(t),128&t.__u?void 0:s}function t_(e,t,o){for(var i=0;i<o.length;i++)i_(o[i],o[++i],o[++i]);yc.__c&&yc.__c(t,e),e.some(function(t){try{e=t.__h,t.__h=[],e.some(function(e){e.call(t)})}catch(e){yc.__e(e,t.__v)}})}function o_(e,t,o,i,r,a,n,s,l){var c,_,d,u,h,p,g,m,v=o.props,f=t.props,b=t.type;if("svg"===b?r="http://www.w3.org/2000/svg":"math"===b?r="http://www.w3.org/1998/Math/MathML":r||(r="http://www.w3.org/1999/xhtml"),null!=a)for(c=0;c<a.length;c++)if((h=a[c])&&"setAttribute"in h==!!b&&(b?h.localName===b:3===h.nodeType)){e=h,a[c]=null;break}if(null==e){if(null===b)return document.createTextNode(f);e=document.createElementNS(r,b,f.is&&f),s&&(yc.__m&&yc.__m(t,a),s=!1),a=null}if(null===b)v===f||s&&e.data===f||(e.data=f);else{if(a=a&&bc.call(e.childNodes),v=o.props||Ac,!s&&null!=a)for(v={},c=0;c<e.attributes.length;c++)v[(h=e.attributes[c]).name]=h.value;for(c in v)if(h=v[c],"children"==c);else if("dangerouslySetInnerHTML"==c)d=h;else if(!(c in f)){if("value"==c&&"defaultValue"in f||"checked"==c&&"defaultChecked"in f)continue;Jc(e,c,null,h,r)}for(c in f)h=f[c],"children"==c?u=h:"dangerouslySetInnerHTML"==c?_=h:"value"==c?p=h:"checked"==c?g=h:s&&"function"!=typeof h||v[c]===h||((c.startsWith("on")||"ref"===c&&"function"==typeof h)&&(m=i[Object.keys(i)[0]])&&(h=h.bind(m.props.value)),Jc(e,c,h,v[c],r));if(_)s||d&&(_.__html===d.__html||_.__html===e.innerHTML)||(e.innerHTML=_.__html),t.__k=[];else if(d&&(e.innerHTML=""),Gc(e,Ec(u)?u:[u],t,o,i,"foreignObject"===b?"http://www.w3.org/1999/xhtml":r,a,n,a?a[0]:o.__k&&qc(o,0),s,l),null!=a)for(c=a.length;c--;)Hc(a[c]);s||(c="value","progress"===b&&null==p?e.removeAttribute("value"):void 0!==p&&(p!==e[c]||"progress"===b&&!p||"option"===b&&p!==v[c])&&Jc(e,c,p,v[c],r),c="checked",void 0!==g&&g!==e[c]&&Jc(e,c,g,v[c],r))}return e}function i_(e,t,o){try{if("function"==typeof e){var i="function"==typeof e.__u;i&&e.__u(),i&&null==t||(e.__u=e(t))}else e.current=t}catch(e){yc.__e(e,o)}}function r_(e,t,o){var i,r;if(yc.unmount&&yc.unmount(e),(i=e.ref)&&(i.current&&i.current!==e.__e||i_(i,null,t)),null!=(i=e.__c)){if(i.componentWillUnmount)try{i.componentWillUnmount()}catch(e){yc.__e(e,t)}i.base=i.__P=null}if(i=e.__k)for(r=0;r<i.length;r++)i[r]&&r_(i[r],t,o||"function"!=typeof e.type);o||Hc(e.__e),e.__c=e.__=e.__e=void 0}function a_(e,t,o){return this.constructor(e,o)}var n_,s_=qr(()=>{Ac={},Pc=[],Mc=/acit|ex(?:s|g|n|p|$)|rph|grid|ows|mnc|ntw|ine[ch]|zoo|^ord|itera/i,Ec=Array.isArray,bc=Pc.slice,yc={__e:function(e,t,o,i){for(var r,a,n;t=t.__;)if((r=t.__c)&&!r.__)try{if((a=r.constructor)&&null!=a.getDerivedStateFromError&&(r.setState(a.getDerivedStateFromError(e)),n=r.__d),null!=r.componentDidCatch&&(r.componentDidCatch(e,i||{}),n=r.__d),n)return r.__E=r}catch(t){e=t}throw e}},Cc=0,Wc.prototype.setState=function(e,t){var o=null!=this.__s&&this.__s!==this.state?this.__s:this.__s=Nc({},this.state);"function"==typeof e&&(e=e(Nc({},o),this.props)),e&&Nc(o,e),null!=e&&this.__v&&(t&&this._sb.push(t),Yc(this))},Wc.prototype.forceUpdate=function(e){this.__v&&(this.__e=!0,e&&this.__h.push(e),Yc(this))},Wc.prototype.render=Vc,wc=[],xc="function"==typeof Promise?Promise.prototype.then.bind(Promise.resolve()):setTimeout,Sc=function(e,t){return e.__v.__b-t.__v.__b},$c.__r=0,Tc=/(PointerCapture)$|Capture$/i,Bc=0,Ic=Qc(!1),Dc=Qc(!0)});function l_(e,t,o,i,r,a){t||(t={});var n,s,l=t;"ref"in t&&(n=t.ref,delete t.ref);var c={type:e,props:l,key:o,ref:n,__k:null,__:null,__b:0,__e:null,__c:null,constructor:void 0,__v:--n_,__i:-1,__u:0,__source:r,__self:a};if("function"==typeof e&&(n=e.defaultProps))for(s in n)void 0===l[s]&&(l[s]=n[s]);return yc.vnode&&yc.vnode(c),c}var c_=qr(()=>{s_(),n_=0,Array.isArray});var __,d_,u_,h_=qr(()=>{}),p_=qr(()=>{__=new Map,d_=e=>{if(!__.has(e)){const t=e.replace(/([a-z])([A-Z])/g,"$1-$2").toLowerCase();__.set(e,t)}return __.get(e)},u_=e=>d_(e)});function g_(e,t,o){let i;return!function(e){return"function"==typeof e&&"getMetadata"in e}(e)?i=e:(i=e.getMetadata().getTag(),function(e,t){const o=e.getMetadata().getEvents();Object.keys(t).forEach(e=>{if(e.startsWith("on")){const i=e.slice(2),r=u_(i),a=i.charAt(0).toLowerCase()+i.slice(1);let n;r in o?n=r:a in o&&(n=a),n&&"onClick"!==e&&(t[`onui5-${n}`]=t[e],delete t[e])}})}(e,t)),"object"==typeof t.class&&(t.class=function(e){let t="";for(const o in e)e[o]&&(t&&(t+=" "),t+=o);return t}(t.class)),i}var m_,v_=qr(()=>{h_(),p_()});function f_(e,t){return Vc(e)}function b_(e,t,o){return l_(g_(e,t),t,o)}function y_(e,t,o){return l_(g_(e,t),t,o)}var C_=qr(()=>{c_(),s_(),v_(),m_=yc.vnode,yc.vnode=e=>{const t=e.props;null!==t&&"object"==typeof t&&t.class&&t.class,m_&&m_(e)}});function w_(){return y_("svg",{class:"ui5-icon-root",part:"root",tabindex:this._tabIndex,dir:this._dir,viewBox:this.viewBox,role:this.effectiveAccessibleRole,focusable:"false",preserveAspectRatio:"xMidYMid meet","aria-label":this.effectiveAccessibleName,"aria-hidden":this.effectiveAriaHidden,xmlns:"http://www.w3.org/2000/svg",onKeyDown:this._onkeydown,onKeyUp:this._onkeyup,onClick:this._onclick,children:[this.hasIconTooltip&&y_("title",{id:`${this._id}-tooltip`,children:[" ",this.effectiveAccessibleName," "]}),b_("g",{role:"presentation",children:k_.call(this)})]})}function k_(){return this.customTemplate?this.customTemplate:this.customTemplateAsString?b_("g",{dangerouslySetInnerHTML:{__html:this.customTemplateAsString}}):this.pathData.map(e=>b_("path",{d:e}))}var x_,S_,T_,B_,I_,D_,A_,P_,M_,E_,z_,F_,R_,O_,L_,N_,H_,U_,V_,W_,q_,j_,Y_,$_,G_,K_,Z_,X_,J_,Q_,ed,td,od,id,rd,ad,nd,sd,ld,cd,_d,dd,ud,hd,pd,gd,md,vd,fd,bd,yd,Cd,wd,kd,xd,Sd,Td,Bd,Id,Dd,Ad,Pd,Md,Ed,zd,Fd,Rd,Od,Ld,Nd,Hd,Ud,Vd,Wd,qd,jd,Yd,$d,Gd,Kd,Zd,Xd,Jd,Qd,eu,tu,ou,iu,ru,au,nu,su,lu,cu,_u,du,uu,hu,pu,gu,mu,vu,fu,bu,yu,Cu,wu,ku,xu,Su,Tu,Bu,Iu,Du,Au,Pu,Mu,Eu,zu,Fu,Ru,Ou,Lu,Nu,Hu,Uu,Vu,Wu,qu,ju,Yu,$u,Gu,Ku,Zu,Xu,Ju,Qu,eh,th,oh,ih,rh,ah,nh,sh,lh,ch,_h,dh,uh,hh,ph,gh,mh,vh,fh=qr(()=>{C_()}),bh=qr(()=>{!function(e){e.Image="Image",e.Decorative="Decorative",e.Interactive="Interactive"}(x_||(x_={})),S_=x_}),yh=qr(()=>{T_={key:"TAG_DESCRIPTION_TAG",defaultText:"Tag"},B_={key:"TAG_ROLE_DESCRIPTION",defaultText:"Tag button"},I_={key:"TAG_ERROR",defaultText:"Error"},D_={key:"TAG_WARNING",defaultText:"Warning"},A_={key:"TAG_SUCCESS",defaultText:"Success"},P_={key:"TAG_INFORMATION",defaultText:"Information"},M_={key:"BREADCRUMB_ITEM_POS",defaultText:"{0} of {1}"},E_={key:"BREADCRUMBS_ARIA_LABEL",defaultText:"Breadcrumb Trail"},z_={key:"BREADCRUMBS_OVERFLOW_ARIA_LABEL",defaultText:"More"},F_={key:"BREADCRUMBS_CANCEL_BUTTON",defaultText:"Cancel"},R_={key:"FORM_SELECTABLE_AVALIABLE_VALUES",defaultText:"Available Values"},O_={key:"BUSY_INDICATOR_TITLE",defaultText:"Please wait"},L_={key:"BUTTON_ARIA_TYPE_ACCEPT",defaultText:"Positive Action"},N_={key:"BUTTON_ARIA_TYPE_REJECT",defaultText:"Negative Action"},H_={key:"BUTTON_ARIA_TYPE_EMPHASIZED",defaultText:"Default Action"},U_={key:"BUTTON_ARIA_TYPE_ATTENTION",defaultText:"Warning"},V_={key:"BUTTON_BADGE_ONE_ITEM",defaultText:"{0} item"},W_={key:"BUTTON_BADGE_MANY_ITEMS",defaultText:"{0} items"},q_={key:"BUTTON_ROLE_DESCRIPTION",defaultText:"Button"},j_={key:"LINK_ROLE_DESCRIPTION",defaultText:"Link"},Y_={key:"DATEPICKER_OPEN_ICON_TITLE",defaultText:"Open Picker"},$_={key:"DATEPICKER_OPEN_ICON_TITLE_OPENED",defaultText:"Close Picker"},G_={key:"DATEPICKER_DATE_DESCRIPTION",defaultText:"Date Input"},K_={key:"DATEPICKER_MOBILE_HEADER_TITLE",defaultText:"Enter date"},Z_={key:"DATEPICKER_VALUE_MISSING",defaultText:"Enter the date in the following format: {0}."},X_={key:"DATEPICKER_PATTERN_MISSMATCH",defaultText:"This format is not supported. Enter the date and time range in the following format: {0}."},J_={key:"DATEPICKER_RANGE_OVERFLOW",defaultText:"Enter a date lower than the maximum value of {0}."},Q_={key:"DATEPICKER_RANGE_UNDERFLOW",defaultText:"Enter a date higher than the minimum value of {0}."},ed={key:"DATETIME_DESCRIPTION",defaultText:"Date Time Input"},td={key:"DATETIME_VALUE_MISSING",defaultText:"Enter the date and time in the following format: {0}."},od={key:"DATETIME_PATTERN_MISMATCH",defaultText:"This format is not supported. Enter the date and time in the following format: {0}."},id={key:"DATETIME_RANGEOVERFLOW",defaultText:"Enter a value lower than the maximum value of {0}."},rd={key:"DATETIME_RANGEUNDERFLOW",defaultText:"Enter a value higher than the minimum value of {0}."},ad={key:"DATEPICKER_POPOVER_ACCESSIBLE_NAME",defaultText:"Choose Date for {0}"},nd={key:"DATETIME_COMPONENTS_PLACEHOLDER_PREFIX",defaultText:"e.g."},sd={key:"DATETIMEPICKER_POPOVER_ACCESSIBLE_NAME",defaultText:"Choose Date and Time for {0}"},ld={key:"DELETE",defaultText:"Delete"},cd={key:"EMPTY_INDICATOR_SYMBOL",defaultText:"–"},_d={key:"EMPTY_INDICATOR_ACCESSIBLE_TEXT",defaultText:"Empty Value"},dd={key:"EXPANDABLE_TEXT_SHOW_MORE",defaultText:"Show More"},ud={key:"EXPANDABLE_TEXT_SHOW_LESS",defaultText:"Show Less"},hd={key:"EXPANDABLE_TEXT_CLOSE",defaultText:"Close"},pd={key:"EXPANDABLE_TEXT_SHOW_MORE_POPOVER_ARIA_LABEL",defaultText:"Show the full text"},gd={key:"EXPANDABLE_TEXT_SHOW_LESS_POPOVER_ARIA_LABEL",defaultText:"Close the popover"},md={key:"GROUP_HEADER_TEXT",defaultText:"Group Header"},vd={key:"SELECT_ROLE_DESCRIPTION",defaultText:"Listbox"},fd={key:"INPUT_SUGGESTIONS",defaultText:"Suggestions Available"},bd={key:"INPUT_SUGGESTIONS_TITLE",defaultText:"All Items"},yd={key:"INPUT_SUGGESTIONS_ONE_HIT",defaultText:"1 result available"},Cd={key:"INPUT_SUGGESTIONS_MORE_HITS",defaultText:"{0} results are available"},wd={key:"INPUT_SUGGESTIONS_NO_HIT",defaultText:"No results"},kd={key:"INPUT_SUGGESTIONS_EXPANDED",defaultText:"Expanded"},xd={key:"INPUT_SUGGESTIONS_COLLAPSED",defaultText:"Collapsed"},Sd={key:"INPUT_CLEAR_ICON_ACC_NAME",defaultText:"Clear"},Td={key:"INPUT_SUGGESTIONS_OK_BUTTON",defaultText:"OK"},Bd={key:"INPUT_SUGGESTIONS_CANCEL_BUTTON",defaultText:"Cancel"},Id={key:"LINK_SUBTLE",defaultText:"Subtle"},Dd={key:"LINK_EMPHASIZED",defaultText:"Emphasized"},Ad={key:"LIST_ROLE_DESCRIPTION",defaultText:"List with interactive items. To move to the content press F2."},Pd={key:"LIST_ITEM_ACTIVE",defaultText:"Is Active"},Md={key:"LIST_ITEM_POSITION",defaultText:"List item {0} of {1}"},Ed={key:"LIST_ITEM_SELECTED",defaultText:"Selected"},zd={key:"LIST_ITEM_NOT_SELECTED",defaultText:"Not Selected"},Fd={key:"LIST_ITEM_GROUP_HEADER",defaultText:"Group Header"},Rd={key:"LIST_ROLE_LIST_GROUP_DESCRIPTION",defaultText:"contains {0} sub groups with {1} items"},Od={key:"LIST_ROLE_LISTBOX_GROUP_DESCRIPTION",defaultText:"contains {0} sub groups"},Ld={key:"ARIA_LABEL_LIST_ITEM_CHECKBOX",defaultText:"Multiple Selection Mode"},Nd={key:"ARIA_LABEL_LIST_ITEM_RADIO_BUTTON",defaultText:"Item Selection."},Hd={key:"ARIA_LABEL_LIST_SELECTABLE",defaultText:"Contains Selectable Items"},Ud={key:"ARIA_LABEL_LIST_MULTISELECTABLE",defaultText:"Contains Multi-Selectable Items"},Vd={key:"ARIA_LABEL_LIST_DELETABLE",defaultText:"Contains Deletable Items"},Wd={key:"MESSAGE_STRIP_CLOSE_BUTTON_INFORMATION",defaultText:"Close information message strip"},qd={key:"MESSAGE_STRIP_CLOSE_BUTTON_POSITIVE",defaultText:"Close positive message strip"},jd={key:"MESSAGE_STRIP_CLOSE_BUTTON_NEGATIVE",defaultText:"Close negative message strip"},Yd={key:"MESSAGE_STRIP_CLOSE_BUTTON_CRITICAL",defaultText:"Close critical message strip"},$d={key:"MESSAGE_STRIP_CLOSE_BUTTON_CUSTOM",defaultText:"Close custom message strip"},Gd={key:"MESSAGE_STRIP_CLOSABLE",defaultText:"Closable"},Kd={key:"MESSAGE_STRIP_ERROR",defaultText:"Error Message Strip"},Zd={key:"MESSAGE_STRIP_WARNING",defaultText:"Warning Message Strip"},Xd={key:"MESSAGE_STRIP_SUCCESS",defaultText:"Success Message Strip"},Jd={key:"MESSAGE_STRIP_INFORMATION",defaultText:"Message Strip"},Qd={key:"MESSAGE_STRIP_CUSTOM",defaultText:"Custom Message Strip"},eu={key:"INPUT_AVALIABLE_VALUES",defaultText:"Available Values"},tu={key:"PANEL_ICON",defaultText:"Expand/Collapse"},ou={key:"RESPONSIVE_POPOVER_CLOSE_DIALOG_BUTTON",defaultText:"Decline"},iu={key:"SEGMENTEDBUTTON_ARIA_DESCRIPTION",defaultText:"Segmented button group"},ru={key:"SEGMENTEDBUTTON_ARIA_DESCRIBEDBY",defaultText:"Press SPACE or ENTER to select an item"},au={key:"SEGMENTEDBUTTONITEM_ARIA_DESCRIPTION",defaultText:"Segmented button"},nu={key:"LOAD_MORE_TEXT",defaultText:"More"},su={key:"TIMEPICKER_HOURS_LABEL",defaultText:"Hours"},lu={key:"TIMEPICKER_MINUTES_LABEL",defaultText:"Minutes"},cu={key:"TIMEPICKER_SECONDS_LABEL",defaultText:"Seconds"},_u={key:"TIMEPICKER_SUBMIT_BUTTON",defaultText:"OK"},du={key:"TIMEPICKER_CANCEL_BUTTON",defaultText:"Cancel"},uu={key:"TIMEPICKER_CLOCK_DIAL_LABEL",defaultText:"Clock Dial"},hu={key:"DATETIME_PICKER_DATE_BUTTON",defaultText:"Date"},pu={key:"DATETIME_PICKER_TIME_BUTTON",defaultText:"Time"},gu={key:"VALUE_STATE_TYPE_ERROR",defaultText:"Value State Error"},mu={key:"VALUE_STATE_TYPE_WARNING",defaultText:"Value State Warning"},vu={key:"VALUE_STATE_TYPE_SUCCESS",defaultText:"Value State Success"},fu={key:"VALUE_STATE_TYPE_INFORMATION",defaultText:"Value State Information"},bu={key:"VALUE_STATE_ERROR",defaultText:"Invalid entry"},yu={key:"VALUE_STATE_WARNING",defaultText:"Warning issued"},Cu={key:"VALUE_STATE_INFORMATION",defaultText:"Informative entry"},wu={key:"VALUE_STATE_SUCCESS",defaultText:"Entry successfully validated"},ku={key:"VALUE_STATE_LINK",defaultText:"To move the focus to the link, press Ctrl+Alt+F8"},xu={key:"VALUE_STATE_LINK_MAC",defaultText:"To move the focus to the link, press Cmd+Option+F8"},Su={key:"VALUE_STATE_LINKS",defaultText:"To go to the first link, press Ctrl+Alt+F8. To move to the next link, use Tab"},Tu={key:"VALUE_STATE_LINKS_MAC",defaultText:"To go to the first link, press Cmd+Option+F8. To move to the next link, use Tab"},Bu={key:"CALENDAR_HEADER_MONTH_BUTTON",defaultText:"Month {0}"},Iu={key:"CALENDAR_HEADER_YEAR_BUTTON",defaultText:"Year {0}"},Du={key:"CALENDAR_HEADER_YEAR_RANGE_BUTTON",defaultText:"Year range from {0} to {1}"},Au={key:"CALENDAR_HEADER_MONTH_BUTTON_SHORTCUT",defaultText:"F4"},Pu={key:"CALENDAR_HEADER_YEAR_BUTTON_SHORTCUT",defaultText:"Shift + F4"},Mu={key:"CALENDAR_HEADER_YEAR_RANGE_BUTTON_SHORTCUT",defaultText:"Shift + F4"},Eu={key:"CALENDAR_HEADER_MONTH_NEXT_BUTTON_TITLE",defaultText:"Next Month"},zu={key:"CALENDAR_HEADER_YEAR_NEXT_BUTTON_TITLE",defaultText:"Next Year"},Fu={key:"CALENDAR_HEADER_YEAR_RANGE_NEXT_BUTTON_TITLE",defaultText:"Next Year Range"},Ru={key:"CALENDAR_HEADER_MONTH_NEXT_BUTTON_SHORTCUT",defaultText:"Pageup"},Ou={key:"CALENDAR_HEADER_MONTH_PREVIOUS_BUTTON_TITLE",defaultText:"Previous Month"},Lu={key:"CALENDAR_HEADER_YEAR_PREVIOUS_BUTTON_TITLE",defaultText:"Previous Year"},Nu={key:"CALENDAR_HEADER_YEAR_RANGE_PREVIOUS_BUTTON_TITLE",defaultText:"Previous Year Range"},Hu={key:"CALENDAR_HEADER_MONTH_PREVIOUS_BUTTON_SHORTCUT",defaultText:"Pagedown"},Uu={key:"DAY_PICKER_SELECTED_RANGE_START",defaultText:"{0} First date of range"},Vu={key:"DAY_PICKER_SELECTED_RANGE_BETWEEN",defaultText:"{0} in a selected range"},Wu={key:"DAY_PICKER_SELECTED_RANGE_END",defaultText:"{0} Last date of range"},qu={key:"DAY_PICKER_WEEK_NUMBER_TEXT",defaultText:"Week Number"},ju={key:"DAY_PICKER_NON_WORKING_DAY",defaultText:"Non-Working Day"},Yu={key:"DAY_PICKER_TODAY",defaultText:"Today"},$u={key:"MONTH_PICKER_DESCRIPTION",defaultText:"Month Picker"},Gu={key:"YEAR_PICKER_DESCRIPTION",defaultText:"Year Picker"},Ku={key:"YEAR_RANGE_PICKER_DESCRIPTION",defaultText:"Year Range Picker"},Zu={key:"DIALOG_HEADER_ARIA_ROLE_DESCRIPTION",defaultText:"Interactive Header"},Xu={key:"DIALOG_HEADER_ARIA_DESCRIBEDBY_RESIZABLE",defaultText:"Use Shift+Arrow keys to resize"},Ju={key:"DIALOG_HEADER_ARIA_DESCRIBEDBY_DRAGGABLE",defaultText:"Use Arrow keys to move"},Qu={key:"DIALOG_HEADER_ARIA_DESCRIBEDBY_DRAGGABLE_RESIZABLE",defaultText:"Use Arrow keys to move, Shift+Arrow keys to resize"},eh={key:"LABEL_COLON",defaultText:":"},th={key:"FORM_CHECKABLE_REQUIRED",defaultText:"Please tick this box if you want to proceed."},oh={key:"FORM_SELECTABLE_REQUIRED",defaultText:"Please select an item in the list."},ih={key:"FORM_SELECTABLE_REQUIRED2",defaultText:"Please select one of these options."},rh={key:"CHECKBOX_CHECKED",defaultText:"Checked"},ah={key:"CHECKBOX_NOT_CHECKED",defaultText:"Not checked"},nh={key:"CHECKBOX_ARIA_TYPE",defaultText:"Checkbox"},sh={key:"ICON_ARIA_TYPE_IMAGE",defaultText:"Image"},lh={key:"ICON_ARIA_TYPE_INTERACTIVE",defaultText:"Button"}}),Ch=qr(()=>{ch=':root {--sapThemeMetaData-Base-baseLib:{"Path": "Base.baseLib.sap_horizon.css_variables","PathPattern": "/%frameworkId%/%libId%/%themeId%/%fileId%.css","Extends": ["baseTheme"],"Tags": ["Fiori_3","LightColorScheme"],"FallbackThemeId": "sap_fiori_3","Engine":{"Name": "theming-engine","Version": "17.0.8"},"Version":{"Build": "11.35.0.20260401080514","Source": "11.35.0"}};--sapBrandColor: #0070f2;--sapHighlightColor: #0064d9;--sapBaseColor: #fff;--sapShellColor: #fff;--sapBackgroundColor: #f5f6f7;--sapFontFamily: "72", "72full", Arial, Helvetica, sans-serif;--sapFontSize: .875rem;--sapTextColor: #131e29;--sapLinkColor: #0064d9;--sapCompanyLogo: none;--sapFavicon: none;--sapBackgroundImage: none;--sapBackgroundImageOpacity: 1;--sapBackgroundImageRepeat: false;--sapSelectedColor: #0064d9;--sapHoverColor: #eaecee;--sapActiveColor: #dee2e5;--sapTitleColor: #131e29;--sapNegativeColor: #aa0808;--sapCriticalColor: #e76500;--sapPositiveColor: #256f3a;--sapInformativeColor: #0070f2;--sapNeutralColor: #788fa6;--sapNegativeElementColor: #f53232;--sapCriticalElementColor: #e76500;--sapPositiveElementColor: #30914c;--sapInformativeElementColor: #0070f2;--sapNeutralElementColor: #788fa6;--sapNegativeTextColor: #aa0808;--sapCriticalTextColor: #b44f00;--sapPositiveTextColor: #256f3a;--sapInformativeTextColor: #0064d9;--sapNeutralTextColor: #131e29;--sapErrorColor: #aa0808;--sapWarningColor: #e76500;--sapSuccessColor: #256f3a;--sapInformationColor: #0070f2;--sapErrorBackground: #ffeaf4;--sapWarningBackground: #fff8d6;--sapSuccessBackground: #f5fae5;--sapInformationBackground: #e1f4ff;--sapNeutralBackground: #eff1f2;--sapErrorBorderColor: #e90b0b;--sapWarningBorderColor: #dd6100;--sapSuccessBorderColor: #30914c;--sapInformationBorderColor: #0070f2;--sapNeutralBorderColor: #788fa6;--sapElement_LineHeight: 2.75rem;--sapElement_Height: 2.25rem;--sapElement_BorderWidth: .0625rem;--sapElement_BorderCornerRadius: .75rem;--sapElement_Compact_LineHeight: 2rem;--sapElement_Compact_Height: 1.625rem;--sapElement_Condensed_LineHeight: 1.5rem;--sapElement_Condensed_Height: 1.375rem;--sapContent_LineHeight: 1.5;--sapContent_IconHeight: 1rem;--sapContent_IconColor: #131e29;--sapContent_ContrastIconColor: #fff;--sapContent_NonInteractiveIconColor: #758ca4;--sapContent_MarkerIconColor: #5d36ff;--sapContent_MarkerTextColor: #046c7a;--sapContent_MeasureIndicatorColor: #556b81;--sapContent_Selected_MeasureIndicatorColor: #0064d9;--sapContent_Placeholderloading_Background: #ccc;--sapContent_Placeholderloading_Gradient: linear-gradient(to right, #ccc 0%, #ccc 20%, #999 50%, #ccc 80%, #ccc 100%);--sapContent_ImagePlaceholderBackground: #eaecee;--sapContent_ImagePlaceholderForegroundColor: #556b82;--sapContent_RatedColor: #d27700;--sapContent_UnratedColor: #758ca4;--sapContent_BusyColor: #0064d9;--sapContent_FocusColor: #0032a5;--sapContent_FocusStyle: solid;--sapContent_FocusWidth: .125rem;--sapContent_ContrastFocusColor: #fff;--sapContent_ShadowColor: #223548;--sapContent_ContrastShadowColor: #fff;--sapContent_Shadow0: 0 0 .125rem 0 rgba(34,53,72,.2), 0 .125rem .25rem 0 rgba(34,53,72,.2);--sapContent_Shadow1: 0 0 0 .0625rem rgba(34,53,72,.48), 0 .125rem .5rem 0 rgba(34,53,72,.3);--sapContent_Shadow2: 0 0 0 .0625rem rgba(34,53,72,.48), 0 .625rem 1.875rem 0 rgba(34,53,72,.25);--sapContent_Shadow3: 0 0 0 .0625rem rgba(34,53,72,.48), 0 1.25rem 5rem 0 rgba(34,53,72,.25);--sapContent_TextShadow: 0 0 .125rem #fff;--sapContent_ContrastTextShadow: 0 0 .0625rem rgba(0,0,0,.7);--sapContent_HeaderShadow: 0 .125rem .125rem 0 rgba(34,53,72,.05), inset 0 -.0625rem 0 0 #d9d9d9;--sapContent_Interaction_Shadow: inset 0 0 0 .0625rem rgba(85,107,129,.25);--sapContent_Selected_Shadow: inset 0 0 0 .0625rem rgba(79,160,255,.5);--sapContent_Negative_Shadow: inset 0 0 0 .0625rem rgba(255,142,196,.45);--sapContent_Critical_Shadow: inset 0 0 0 .0625rem rgba(255,213,10,.4);--sapContent_Positive_Shadow: inset 0 0 0 .0625rem rgba(48,145,76,.18);--sapContent_Informative_Shadow: inset 0 0 0 .0625rem rgba(104,174,255,.5);--sapContent_Neutral_Shadow: inset 0 0 0 .0625rem rgba(120,143,166,.3);--sapContent_SearchHighlightColor: #dafdf5;--sapContent_HelpColor: #188918;--sapContent_LabelColor: #556b82;--sapContent_MonospaceFontFamily: "72Mono", "72Monofull", lucida console, monospace;--sapContent_MonospaceBoldFontFamily: "72Mono-Bold", "72Mono-Boldfull", lucida console, monospace;--sapContent_IconFontFamily: "SAP-icons";--sapContent_DisabledTextColor: rgba(19,30,41,.6);--sapContent_DisabledOpacity: .4;--sapContent_ContrastTextThreshold: .65;--sapContent_ContrastTextColor: #fff;--sapContent_ForegroundColor: #efefef;--sapContent_ForegroundBorderColor: #758ca4;--sapContent_ForegroundTextColor: #131e29;--sapContent_BadgeBackground: #aa0808;--sapContent_BadgeTextColor: #fff;--sapContent_BadgeBorderColor: #fff;--sapContent_DragAndDropActiveColor: #0064d9;--sapContent_Selected_TextColor: #0064d9;--sapContent_Selected_Background: #fff;--sapContent_Selected_Hover_Background: #e3f0ff;--sapContent_Selected_ForegroundColor: #0064d9;--sapContent_ForcedColorAdjust: none;--sapContent_Lite_Shadow: none;--sapContent_Illustrative_Color1: #9b015d;--sapContent_Illustrative_Color2: #56bdff;--sapContent_Illustrative_Color3: #ff7f4c;--sapContent_Illustrative_Color4: #00144a;--sapContent_Illustrative_Color5: #a9b4be;--sapContent_Illustrative_Color6: #d5dadd;--sapContent_Illustrative_Color7: #dbf1ff;--sapContent_Illustrative_Color8: #fff;--sapContent_Illustrative_Color9: #0899a7;--sapContent_Illustrative_Color10: #dbf1ff;--sapContent_Illustrative_Color11: #df1278;--sapContent_Illustrative_Color12: #00a800;--sapContent_Illustrative_Color13: #0070f2;--sapContent_Illustrative_Color14: #0040b0;--sapContent_Illustrative_Color15: #c35500;--sapContent_Illustrative_Color16: #8d2a00;--sapContent_Illustrative_Color17: #046c7c;--sapContent_Illustrative_Color18: #bce5ff;--sapContent_Illustrative_Color19: #a3dbff;--sapContent_Illustrative_Color20: #89d1ff;--sapContent_Illustrative_Color21: #1b90ff;--sapContent_Illustrative_Color22: #00144a;--sapContent_Illustrative_Color23: #d20a0a;--sapContent_Illustrative_Color24: #ffb2d2;--sapContent_Illustrative_Color25: #ffeaf4;--sapContent_Illustrative_Color26: #ffdf72;--sapContent_Illustrative_Color27: #fff8d6;--sapContent_Illustrative_Color28: #a93e00;--sapContent_Illustrative_Color29: #450b00;--sapContent_Illustrative_Color30: #340800;--sapContent_Illustrative_Color31: #ffab92;--sapContent_Space_S: 1rem;--sapContent_Space_M: 2rem;--sapContent_Space_L: 2rem;--sapContent_Space_XL: 3rem;--sapContent_Space_Tiny: .5rem;--sapContent_Space_Small: 1rem;--sapContent_Space_Medium: 2rem;--sapContent_Space_Large: 3rem;--sapContent_Margin_Tiny: 0 0 1rem;--sapContent_Margin_Small: 1rem;--sapContent_Margin_Medium: 1rem 2rem;--sapContent_Margin_Large: 1rem 3rem;--sapContent_Margin_S: 0 0 1rem;--sapContent_Margin_M: 1rem;--sapContent_Margin_L: 1rem 2rem;--sapContent_Margin_XL: 1rem 3rem;--sapContent_Padding_S: 0rem;--sapContent_Padding_M: 2rem;--sapContent_Padding_L: 2rem;--sapContent_Padding_XL: 3rem;--sapContent_Gap: 1rem;--sapContent_Success_HeaderShadow: 0 .125rem .125rem 0 rgba(34,53,72,.05), inset 0 -.0625rem 0 0 #30914c;--sapContent_Warning_HeaderShadow: 0 .125rem .125rem 0 rgba(34,53,72,.05), inset 0 -.0625rem 0 0 #dd6100;--sapContent_Error_HeaderShadow: 0 .125rem .125rem 0 rgba(34,53,72,.05), inset 0 -.0625rem 0 0 #e90b0b;--sapContent_Information_HeaderShadow: 0 .125rem .125rem 0 rgba(34,53,72,.05), inset 0 -.0625rem 0 0 #0070f2;--sapFontLightFamily: "72-Light", "72-Lightfull", "72", "72full", Arial, Helvetica, sans-serif;--sapFontBoldFamily: "72-Bold", "72-Boldfull", "72", "72full", Arial, Helvetica, sans-serif;--sapFontSemiboldFamily: "72-Semibold", "72-Semiboldfull", "72", "72full", Arial, Helvetica, sans-serif;--sapFontSemiboldDuplexFamily: "72-SemiboldDuplex", "72-SemiboldDuplexfull", "72", "72full", Arial, Helvetica, sans-serif;--sapFontBlackFamily: "72Black", "72Blackfull","72", "72full", Arial, Helvetica, sans-serif;--sapFontHeaderFamily: "72-Bold", "72-Boldfull", "72", "72full", Arial, Helvetica, sans-serif;--sapFontSmallSize: .75rem;--sapFontLargeSize: 1rem;--sapFontHeader1Size: 3rem;--sapFontHeader2Size: 2rem;--sapFontHeader3Size: 1.5rem;--sapFontHeader4Size: 1.25rem;--sapFontHeader5Size: 1rem;--sapFontHeader6Size: .875rem;--sapLink_TextDecoration: none;--sapLink_Hover_Color: #0064d9;--sapLink_Hover_TextDecoration: underline;--sapLink_Active_Color: #0064d9;--sapLink_Active_TextDecoration: none;--sapLink_Visited_Color: #0064d9;--sapLink_InvertedColor: #a6cfff;--sapLink_SubtleColor: #131e29;--sapShell_Background: #eff1f2;--sapShell_BackgroundImage: linear-gradient(to bottom, #eff1f2, #eff1f2);--sapShell_BackgroundImageOpacity: 1;--sapShell_BackgroundImageRepeat: false;--sapShell_BorderColor: #d9d9d9;--sapShell_TextColor: #131e29;--sapShell_InteractiveBackground: #eff1f2;--sapShell_InteractiveTextColor: #131e29;--sapShell_InteractiveBorderColor: #556b81;--sapShell_GroupTitleTextColor: #131e29;--sapShell_GroupTitleTextShadow: 0 0 .125rem #fff;--sapShell_Hover_Background: #fff;--sapShell_Active_Background: #fff;--sapShell_Active_TextColor: #0070f2;--sapShell_Selected_Background: #fff;--sapShell_Selected_TextColor: #0070f2;--sapShell_Selected_Hover_Background: #fff;--sapShell_Favicon: none;--sapShell_Navigation_Background: #fff;--sapShell_Navigation_Hover_Background: #fff;--sapShell_Navigation_SelectedColor: #0064d9;--sapShell_Navigation_Selected_TextColor: #0064d9;--sapShell_Navigation_TextColor: #131e29;--sapShell_Navigation_Active_TextColor: #0064d9;--sapShell_Navigation_Active_Background: #fff;--sapShell_Shadow: 0 .125rem .125rem 0 rgba(34,53,72,.15), inset 0 -.0625rem 0 0 rgba(34,53,72,.2);--sapShell_NegativeColor: #aa0808;--sapShell_CriticalColor: #b44f00;--sapShell_PositiveColor: #256f3a;--sapShell_InformativeColor: #0064d9;--sapShell_NeutralColor: #131e29;--sapShell_Assistant_ForegroundColor: #5d36ff;--sapShell_SubBrand_TextColor: #003e87;--sapShell_HeroBanner_Background: #0070f2;--sapShell_HeroBanner_BackgroundImage: linear-gradient(135deg, #0000 45%, #00000073 75%);--sapShell_HeroBanner_TextColor: #fff;--sapShell_Category_1_Background: #0057d2;--sapShell_Category_1_BorderColor: #0057d2;--sapShell_Category_1_TextColor: #fff;--sapShell_Category_1_TextShadow: 0 0 .0625rem rgba(0,0,0,.7);--sapShell_Category_2_Background: #df1278;--sapShell_Category_2_BorderColor: #df1278;--sapShell_Category_2_TextColor: #fff;--sapShell_Category_2_TextShadow: 0 0 .0625rem rgba(0,0,0,.7);--sapShell_Category_3_Background: #e76500;--sapShell_Category_3_BorderColor: #e76500;--sapShell_Category_3_TextColor: #fff;--sapShell_Category_3_TextShadow: 0 0 .0625rem rgba(0,0,0,.7);--sapShell_Category_4_Background: #7800a4;--sapShell_Category_4_BorderColor: #7800a4;--sapShell_Category_4_TextColor: #fff;--sapShell_Category_4_TextShadow: 0 0 .0625rem rgba(0,0,0,.7);--sapShell_Category_5_Background: #aa2608;--sapShell_Category_5_BorderColor: #aa2608;--sapShell_Category_5_TextColor: #fff;--sapShell_Category_5_TextShadow: 0 0 .0625rem rgba(0,0,0,.7);--sapShell_Category_6_Background: #07838f;--sapShell_Category_6_BorderColor: #07838f;--sapShell_Category_6_TextColor: #fff;--sapShell_Category_6_TextShadow: 0 0 .0625rem rgba(0,0,0,.7);--sapShell_Category_7_Background: #f31ded;--sapShell_Category_7_BorderColor: #f31ded;--sapShell_Category_7_TextColor: #fff;--sapShell_Category_7_TextShadow: 0 0 .0625rem rgba(0,0,0,.7);--sapShell_Category_8_Background: #188918;--sapShell_Category_8_BorderColor: #188918;--sapShell_Category_8_TextColor: #fff;--sapShell_Category_8_TextShadow: 0 0 .0625rem rgba(0,0,0,.7);--sapShell_Category_9_Background: #002a86;--sapShell_Category_9_BorderColor: #002a86;--sapShell_Category_9_TextColor: #fff;--sapShell_Category_9_TextShadow: 0 0 .0625rem rgba(0,0,0,.7);--sapShell_Category_10_Background: #5b738b;--sapShell_Category_10_BorderColor: #5b738b;--sapShell_Category_10_TextColor: #fff;--sapShell_Category_10_TextShadow: 0 0 .0625rem rgba(0,0,0,.7);--sapShell_Category_11_Background: #d20a0a;--sapShell_Category_11_BorderColor: #d20a0a;--sapShell_Category_11_TextColor: #fff;--sapShell_Category_11_TextShadow: 0 0 .0625rem rgba(0,0,0,.7);--sapShell_Category_12_Background: #7858ff;--sapShell_Category_12_BorderColor: #7858ff;--sapShell_Category_12_TextColor: #fff;--sapShell_Category_12_TextShadow: 0 0 .0625rem rgba(0,0,0,.7);--sapShell_Category_13_Background: #a00875;--sapShell_Category_13_BorderColor: #a00875;--sapShell_Category_13_TextColor: #fff;--sapShell_Category_13_TextShadow: 0 0 .0625rem rgba(0,0,0,.7);--sapShell_Category_14_Background: #14565b;--sapShell_Category_14_BorderColor: #14565b;--sapShell_Category_14_TextColor: #fff;--sapShell_Category_14_TextShadow: 0 0 .0625rem rgba(0,0,0,.7);--sapShell_Category_15_Background: #223548;--sapShell_Category_15_BorderColor: #223548;--sapShell_Category_15_TextColor: #fff;--sapShell_Category_15_TextShadow: 0 0 .0625rem rgba(0,0,0,.7);--sapShell_Category_16_Background: #1e592f;--sapShell_Category_16_BorderColor: #1e592f;--sapShell_Category_16_TextColor: #fff;--sapShell_Category_16_TextShadow: 0 0 .0625rem rgba(0,0,0,.7);--sapShell_Space_S: .5rem;--sapShell_Space_M: 2rem;--sapShell_Space_L: 2rem;--sapShell_Space_XL: 3rem;--sapShell_Gap_S: .5rem;--sapShell_Gap_M: 1rem;--sapShell_Gap_L: 1rem;--sapShell_Gap_XL: 1rem;--sapShell_GroupGap_S: 2rem;--sapShell_GroupGap_M: 3rem;--sapShell_GroupGap_L: 3rem;--sapShell_GroupGap_XL: 3rem;--sapAssistant_Color1: #5d36ff;--sapAssistant_Color2: #a100c2;--sapAssistant_BackgroundGradient: linear-gradient(#5d36ff, #a100c2);--sapAssistant_Background: #5d36ff;--sapAssistant_BorderColor: #5d36ff;--sapAssistant_TextColor: #fff;--sapAssistant_Hover_Background: #2800cf;--sapAssistant_Hover_BorderColor: #2800cf;--sapAssistant_Hover_TextColor: #fff;--sapAssistant_Active_Background: #fff;--sapAssistant_Active_BorderColor: #5d36ff;--sapAssistant_Active_TextColor: #5d36ff;--sapAssistant_Question_Background: #eae5ff;--sapAssistant_Question_BorderColor: #eae5ff;--sapAssistant_Question_TextColor: #131e29;--sapAssistant_Answer_Background: #eff1f2;--sapAssistant_Answer_BorderColor: #eff1f2;--sapAssistant_Answer_TextColor: #131e29;--sapAvatar_1_Background: #fff3b8;--sapAvatar_1_BorderColor: #fff3b8;--sapAvatar_1_TextColor: #a45d00;--sapAvatar_1_Hover_Background: #fff3b8;--sapAvatar_2_Background: #ffd0e7;--sapAvatar_2_BorderColor: #ffd0e7;--sapAvatar_2_TextColor: #aa0808;--sapAvatar_2_Hover_Background: #ffd0e7;--sapAvatar_3_Background: #ffdbe7;--sapAvatar_3_BorderColor: #ffdbe7;--sapAvatar_3_TextColor: #ba066c;--sapAvatar_3_Hover_Background: #ffdbe7;--sapAvatar_4_Background: #ffdcf3;--sapAvatar_4_BorderColor: #ffdcf3;--sapAvatar_4_TextColor: #a100c2;--sapAvatar_4_Hover_Background: #ffdcf3;--sapAvatar_5_Background: #ded3ff;--sapAvatar_5_BorderColor: #ded3ff;--sapAvatar_5_TextColor: #552cff;--sapAvatar_5_Hover_Background: #ded3ff;--sapAvatar_6_Background: #d1efff;--sapAvatar_6_BorderColor: #d1efff;--sapAvatar_6_TextColor: #0057d2;--sapAvatar_6_Hover_Background: #d1efff;--sapAvatar_7_Background: #c2fcee;--sapAvatar_7_BorderColor: #c2fcee;--sapAvatar_7_TextColor: #046c7a;--sapAvatar_7_Hover_Background: #c2fcee;--sapAvatar_8_Background: #ebf5cb;--sapAvatar_8_BorderColor: #ebf5cb;--sapAvatar_8_TextColor: #256f3a;--sapAvatar_8_Hover_Background: #ebf5cb;--sapAvatar_9_Background: #ddccf0;--sapAvatar_9_BorderColor: #ddccf0;--sapAvatar_9_TextColor: #6c32a9;--sapAvatar_9_Hover_Background: #ddccf0;--sapAvatar_10_Background: #eaecee;--sapAvatar_10_BorderColor: #eaecee;--sapAvatar_10_TextColor: #556b82;--sapAvatar_10_Hover_Background: #eaecee;--sapAvatar_Lite_BorderColor: transparent;--sapAvatar_Lite_Background: transparent;--sapAvatar_Hover_BorderColor: rgba(85,107,129,.25);--sapButton_Background: #fff;--sapButton_BorderColor: #bcc3ca;--sapButton_BorderWidth: .0625rem;--sapButton_BorderCornerRadius: .5rem;--sapButton_TextColor: #0064d9;--sapButton_FontFamily: "72-SemiboldDuplex", "72-SemiboldDuplexfull", "72", "72full", Arial, Helvetica, sans-serif;--sapButton_Hover_Background: #eaecee;--sapButton_Hover_BorderColor: #bcc3ca;--sapButton_Hover_TextColor: #0064d9;--sapButton_IconColor: #0064d9;--sapButton_Active_Background: #fff;--sapButton_Active_BorderColor: #0064d9;--sapButton_Active_TextColor: #0064d9;--sapButton_Emphasized_Background: #0070f2;--sapButton_Emphasized_BorderColor: #0070f2;--sapButton_Emphasized_BorderWidth: .0625rem;--sapButton_Emphasized_TextColor: #fff;--sapButton_Emphasized_FontFamily: "72-Bold", "72-Boldfull", "72", "72full", Arial, Helvetica, sans-serif;--sapButton_Emphasized_Hover_Background: #0064d9;--sapButton_Emphasized_Hover_BorderColor: #0064d9;--sapButton_Emphasized_Hover_TextColor: #fff;--sapButton_Emphasized_Active_Background: #fff;--sapButton_Emphasized_Active_BorderColor: #0064d9;--sapButton_Emphasized_Active_TextColor: #0064d9;--sapButton_Emphasized_TextShadow: transparent;--sapButton_Reject_Background: #ffd6e9;--sapButton_Reject_BorderColor: #ffc2de;--sapButton_Reject_TextColor: #aa0808;--sapButton_Reject_Hover_Background: #ffbddb;--sapButton_Reject_Hover_BorderColor: #ffbddb;--sapButton_Reject_Hover_TextColor: #aa0808;--sapButton_Reject_Active_Background: #fff;--sapButton_Reject_Active_BorderColor: #e90b0b;--sapButton_Reject_Active_TextColor: #aa0808;--sapButton_Reject_Selected_Background: #fff;--sapButton_Reject_Selected_BorderColor: #e90b0b;--sapButton_Reject_Selected_TextColor: #aa0808;--sapButton_Reject_Selected_Hover_Background: #ffbddb;--sapButton_Reject_Selected_Hover_BorderColor: #e90b0b;--sapButton_Accept_Background: #ebf5cb;--sapButton_Accept_BorderColor: #dbeda0;--sapButton_Accept_TextColor: #256f3a;--sapButton_Accept_Hover_Background: #e3f1b6;--sapButton_Accept_Hover_BorderColor: #e3f1b6;--sapButton_Accept_Hover_TextColor: #256f3a;--sapButton_Accept_Active_Background: #fff;--sapButton_Accept_Active_BorderColor: #30914c;--sapButton_Accept_Active_TextColor: #256f3a;--sapButton_Accept_Selected_Background: #fff;--sapButton_Accept_Selected_BorderColor: #30914c;--sapButton_Accept_Selected_TextColor: #256f3a;--sapButton_Accept_Selected_Hover_Background: #e3f1b6;--sapButton_Accept_Selected_Hover_BorderColor: #30914c;--sapButton_Lite_Background: transparent;--sapButton_Lite_BorderColor: transparent;--sapButton_Lite_TextColor: #0064d9;--sapButton_Lite_Hover_Background: #eaecee;--sapButton_Lite_Hover_BorderColor: #bcc3ca;--sapButton_Lite_Hover_TextColor: #0064d9;--sapButton_Lite_Active_Background: #fff;--sapButton_Lite_Active_BorderColor: #0064d9;--sapButton_Selected_Background: #edf6ff;--sapButton_Selected_BorderColor: #0064d9;--sapButton_Selected_TextColor: #0064d9;--sapButton_Selected_Hover_Background: #d9ecff;--sapButton_Selected_Hover_BorderColor: #0064d9;--sapButton_Attention_Background: #fff3b7;--sapButton_Attention_BorderColor: #ffeb84;--sapButton_Attention_TextColor: #b44f00;--sapButton_Attention_Hover_Background: #ffef9e;--sapButton_Attention_Hover_BorderColor: #ffef9e;--sapButton_Attention_Hover_TextColor: #b44f00;--sapButton_Attention_Active_Background: #fff;--sapButton_Attention_Active_BorderColor: #dd6100;--sapButton_Attention_Active_TextColor: #b44f00;--sapButton_Attention_Selected_Background: #fff;--sapButton_Attention_Selected_BorderColor: #dd6100;--sapButton_Attention_Selected_TextColor: #b44f00;--sapButton_Attention_Selected_Hover_Background: #ffef9e;--sapButton_Attention_Selected_Hover_BorderColor: #dd6100;--sapButton_Negative_Background: #f53232;--sapButton_Negative_BorderColor: #f53232;--sapButton_Negative_TextColor: #fff;--sapButton_Negative_Hover_Background: #e90b0b;--sapButton_Negative_Hover_BorderColor: #e90b0b;--sapButton_Negative_Hover_TextColor: #fff;--sapButton_Negative_Active_Background: #fff;--sapButton_Negative_Active_BorderColor: #f53232;--sapButton_Negative_Active_TextColor: #aa0808;--sapButton_Critical_Background: #e76500;--sapButton_Critical_BorderColor: #e76500;--sapButton_Critical_TextColor: #fff;--sapButton_Critical_Hover_Background: #dd6100;--sapButton_Critical_Hover_BorderColor: #dd6100;--sapButton_Critical_Hover_TextColor: #fff;--sapButton_Critical_Active_Background: #fff;--sapButton_Critical_Active_BorderColor: #dd6100;--sapButton_Critical_Active_TextColor: #b44f00;--sapButton_Success_Background: #30914c;--sapButton_Success_BorderColor: #30914c;--sapButton_Success_TextColor: #fff;--sapButton_Success_Hover_Background: #2c8646;--sapButton_Success_Hover_BorderColor: #2c8646;--sapButton_Success_Hover_TextColor: #fff;--sapButton_Success_Active_Background: #fff;--sapButton_Success_Active_BorderColor: #30914c;--sapButton_Success_Active_TextColor: #256f3a;--sapButton_Information_Background: #e8f3ff;--sapButton_Information_BorderColor: #b5d8ff;--sapButton_Information_TextColor: #0064d9;--sapButton_Information_Hover_Background: #d4e8ff;--sapButton_Information_Hover_BorderColor: #b5d8ff;--sapButton_Information_Hover_TextColor: #0064d9;--sapButton_Information_Active_Background: #fff;--sapButton_Information_Active_BorderColor: #0064d9;--sapButton_Information_Active_TextColor: #0064d9;--sapButton_Neutral_Background: #e8f3ff;--sapButton_Neutral_BorderColor: #b5d8ff;--sapButton_Neutral_TextColor: #0064d9;--sapButton_Neutral_Hover_Background: #d4e8ff;--sapButton_Neutral_Hover_BorderColor: #b5d8ff;--sapButton_Neutral_Hover_TextColor: #0064d9;--sapButton_Neutral_Active_Background: #fff;--sapButton_Neutral_Active_BorderColor: #0064d9;--sapButton_Neutral_Active_TextColor: #0064d9;--sapButton_Track_Background: #788fa6;--sapButton_Track_BorderColor: #788fa6;--sapButton_Track_TextColor: #fff;--sapButton_Track_Hover_Background: #637d97;--sapButton_Track_Hover_BorderColor: #637d97;--sapButton_Track_Selected_Background: #0064d9;--sapButton_Track_Selected_BorderColor: #0064d9;--sapButton_Track_Selected_TextColor: #fff;--sapButton_Track_Selected_Hover_Background: #0058c0;--sapButton_Track_Selected_Hover_BorderColor: #0058c0;--sapButton_Handle_Background: #fff;--sapButton_Handle_BorderColor: #fff;--sapButton_Handle_TextColor: #131e29;--sapButton_Handle_Hover_Background: #fff;--sapButton_Handle_Hover_BorderColor: rgba(255,255,255,.5);--sapButton_Handle_Selected_Background: #edf6ff;--sapButton_Handle_Selected_BorderColor: #edf6ff;--sapButton_Handle_Selected_TextColor: #0064d9;--sapButton_Handle_Selected_Hover_Background: #edf6ff;--sapButton_Handle_Selected_Hover_BorderColor: rgba(237,246,255,.5);--sapButton_Track_Negative_Background: #f53232;--sapButton_Track_Negative_BorderColor: #f53232;--sapButton_Track_Negative_TextColor: #fff;--sapButton_Track_Negative_Hover_Background: #e90b0b;--sapButton_Track_Negative_Hover_BorderColor: #e90b0b;--sapButton_Handle_Negative_Background: #fff;--sapButton_Handle_Negative_BorderColor: #fff;--sapButton_Handle_Negative_TextColor: #aa0808;--sapButton_Handle_Negative_Hover_Background: #fff;--sapButton_Handle_Negative_Hover_BorderColor: rgba(255,255,255,.5);--sapButton_Track_Positive_Background: #30914c;--sapButton_Track_Positive_BorderColor: #30914c;--sapButton_Track_Positive_TextColor: #fff;--sapButton_Track_Positive_Hover_Background: #2c8646;--sapButton_Track_Positive_Hover_BorderColor: #2c8646;--sapButton_Handle_Positive_Background: #fff;--sapButton_Handle_Positive_BorderColor: #fff;--sapButton_Handle_Positive_TextColor: #256f3a;--sapButton_Handle_Positive_Hover_Background: #fff;--sapButton_Handle_Positive_Hover_BorderColor: rgba(255,255,255,.5);--sapButton_TokenBackground: #fff;--sapButton_TokenBorderColor: #bcc3ca;--sapButton_TokenBorderCornerRadius: .375rem;--sapButton_Selected_TokenBorderWidth: .0625rem;--sapButton_ReadOnly_TokenBackground: #fff;--sapButton_Segment_BorderCornerRadius: .5rem;--sapField_Background: #fff;--sapField_BackgroundStyle: 0 100% / 100% .0625rem no-repeat linear-gradient(0deg, #556b81, #556b81) border-box;--sapField_TextColor: #131e29;--sapField_PlaceholderTextColor: #556b82;--sapField_BorderColor: #556b81;--sapField_HelpBackground: #fff;--sapField_BorderWidth: .0625rem;--sapField_BorderStyle: none;--sapField_BorderCornerRadius: .25rem;--sapField_Shadow: inset 0 0 0 .0625rem rgba(85,107,129,.25);--sapField_Hover_Background: #fff;--sapField_Hover_BackgroundStyle: 0 100% / 100% .0625rem no-repeat linear-gradient(0deg, #0064d9, #0064d9) border-box;--sapField_Hover_BorderColor: #0064d9;--sapField_Hover_HelpBackground: #fff;--sapField_Hover_Shadow: inset 0 0 0 .0625rem rgba(79,160,255,.5);--sapField_Hover_InvalidShadow: inset 0 0 0 .0625rem rgba(255,142,196,.45);--sapField_Hover_WarningShadow: inset 0 0 0 .0625rem rgba(255,213,10,.4);--sapField_Hover_SuccessShadow: inset 0 0 0 .0625rem rgba(48,145,76,.18);--sapField_Hover_InformationShadow: inset 0 0 0 .0625rem rgba(104,174,255,.5);--sapField_Active_BorderColor: #0064d9;--sapField_Focus_Background: #fff;--sapField_Focus_BorderColor: #0032a5;--sapField_Focus_HelpBackground: #fff;--sapField_ReadOnly_Background: #eaecee;--sapField_ReadOnly_BackgroundStyle: 0 100% / .375rem .0625rem repeat-x linear-gradient(90deg, #556b81 0, #556b81 .25rem, transparent .25rem) border-box;--sapField_ReadOnly_BorderColor: #556b81;--sapField_ReadOnly_BorderStyle: none;--sapField_ReadOnly_HelpBackground: #eaecee;--sapField_RequiredColor: #ba066c;--sapField_InvalidColor: #e90b0b;--sapField_InvalidBackground: #ffeaf4;--sapField_InvalidBackgroundStyle: 0 100% / 100% .125rem no-repeat linear-gradient(0deg, #e90b0b, #e90b0b) border-box;--sapField_InvalidBorderWidth: .125rem;--sapField_InvalidBorderStyle: none;--sapField_InvalidShadow: inset 0 0 0 .0625rem rgba(255,142,196,.45);--sapField_WarningColor: #dd6100;--sapField_WarningBackground: #fff8d6;--sapField_WarningBackgroundStyle: 0 100% / 100% .125rem no-repeat linear-gradient(0deg, #dd6100, #dd6100) border-box;--sapField_WarningBorderWidth: .125rem;--sapField_WarningBorderStyle: none;--sapField_WarningShadow: inset 0 0 0 .0625rem rgba(255,213,10,.4);--sapField_SuccessColor: #30914c;--sapField_SuccessBackground: #f5fae5;--sapField_SuccessBackgroundStyle: 0 100% / 100% .0625rem no-repeat linear-gradient(0deg, #30914c, #30914c) border-box;--sapField_SuccessBorderWidth: .0625rem;--sapField_SuccessBorderStyle: none;--sapField_SuccessShadow: inset 0 0 0 .0625rem rgba(48,145,76,.18);--sapField_InformationColor: #0070f2;--sapField_InformationBackground: #e1f4ff;--sapField_InformationBackgroundStyle: 0 100% / 100% .125rem no-repeat linear-gradient(0deg, #0070f2, #0070f2) border-box;--sapField_InformationBorderWidth: .125rem;--sapField_InformationBorderStyle: none;--sapField_InformationShadow: inset 0 0 0 .0625rem rgba(104,174,255,.5);--sapField_Selector_Hover_Background: #e3f0ff;--sapField_Selector_Hover_InvalidBackground: #fff;--sapField_Selector_Hover_WarningBackground: #fff;--sapField_Selector_Hover_SuccessBackground: #fff;--sapField_Selector_Hover_InformationBackground: #fff;--sapField_Picker_BorderColor: #556b81;--sapField_Picker_BorderWidth: .0625rem;--sapField_Selector_BorderStyle: solid;--sapField_Selector_ReadOnly_BorderStyle: dashed;--sapField_Selector_InvalidBorderStyle: solid;--sapField_Selector_WarningBorderStyle: solid;--sapField_Selector_SuccessBorderStyle: solid;--sapField_Selector_InformationBorderStyle: solid;--sapGroup_TitleBorderWidth: .0625rem;--sapGroup_TitleBackground: #fff;--sapGroup_TitleBorderColor: #a8b2bd;--sapGroup_TitleTextColor: #131e29;--sapGroup_Title_FontSize: 1rem;--sapGroup_ContentBackground: #fff;--sapGroup_ContentAlternatingBackground: #eaecee;--sapGroup_ContentBorderColor: #d9d9d9;--sapGroup_BorderWidth: .0625rem;--sapGroup_BorderCornerRadius: .75rem;--sapGroup_FooterBackground: transparent;--sapToolbar_Background: #fff;--sapToolbar_SeparatorColor: #d9d9d9;--sapList_HeaderBackground: #fff;--sapList_HeaderBorderColor: #a8b2bd;--sapList_HeaderTextColor: #131e29;--sapList_BorderColor: #e5e5e5;--sapList_BorderWidth: .0625rem;--sapList_TextColor: #131e29;--sapList_Active_TextColor: #131e29;--sapList_Active_Background: #dee2e5;--sapList_SelectionBackgroundColor: #ebf8ff;--sapList_SelectionBorderColor: #0064d9;--sapList_Hover_SelectionBackground: #dcf3ff;--sapList_Background: #fff;--sapList_Hover_Background: #eaecee;--sapList_AlternatingBackground: #f5f6f7;--sapList_GroupHeaderBackground: #fff;--sapList_GroupHeaderBorderColor: #a8b2bd;--sapList_GroupHeaderTextColor: #131e29;--sapList_TableGroupHeaderBackground: #eff1f2;--sapList_TableGroupHeaderBorderColor: #a8b2bd;--sapList_TableGroupHeaderTextColor: #131e29;--sapList_FooterBackground: #fff;--sapList_FooterTextColor: #131e29;--sapList_TableFooterBorder: #a8b2bd;--sapList_TableFixedBorderColor: #8c8c8c;--sapList_TableFixedColumnBorderWidth: .0625rem;--sapList_TableFixedRowBorderWidth: .125rem;--sapMessage_BorderWidth: .0625rem;--sapMessage_ErrorBorderColor: #ff8ec4;--sapMessage_WarningBorderColor: #ffe770;--sapMessage_SuccessBorderColor: #cee67e;--sapMessage_InformationBorderColor: #7bcfff;--sapMessage_Button_Hover_Background: rgba(234,236,238,.2);--sapPopover_BorderCornerRadius: .5rem;--sapProgress_Background: #d5dadd;--sapProgress_BorderColor: #d5dadd;--sapProgress_TextColor: #131e29;--sapProgress_FontSize: .875rem;--sapProgress_NegativeBackground: #ffdbec;--sapProgress_NegativeBorderColor: #ffdbec;--sapProgress_NegativeTextColor: #131e29;--sapProgress_CriticalBackground: #fff4bd;--sapProgress_CriticalBorderColor: #fff4bd;--sapProgress_CriticalTextColor: #131e29;--sapProgress_PositiveBackground: #e5f2ba;--sapProgress_PositiveBorderColor: #e5f2ba;--sapProgress_PositiveTextColor: #131e29;--sapProgress_InformationBackground: #cdedff;--sapProgress_InformationBorderColor: #cdedff;--sapProgress_InformationTextColor: #131e29;--sapProgress_Value_Background: #617b94;--sapProgress_Value_BorderColor: #617b94;--sapProgress_Value_TextColor: #788fa6;--sapProgress_Value_NegativeBackground: #f53232;--sapProgress_Value_NegativeBorderColor: #f53232;--sapProgress_Value_NegativeTextColor: #f53232;--sapProgress_Value_CriticalBackground: #e76500;--sapProgress_Value_CriticalBorderColor: #e76500;--sapProgress_Value_CriticalTextColor: #e76500;--sapProgress_Value_PositiveBackground: #30914c;--sapProgress_Value_PositiveBorderColor: #30914c;--sapProgress_Value_PositiveTextColor: #30914c;--sapProgress_Value_InformationBackground: #0070f2;--sapProgress_Value_InformationBorderColor: #0070f2;--sapProgress_Value_InformationTextColor: #0070f2;--sapScrollBar_FaceColor: #7b91a8;--sapScrollBar_TrackColor: #fff;--sapScrollBar_BorderColor: #7b91a8;--sapScrollBar_SymbolColor: #0064d9;--sapScrollBar_Dimension: .75rem;--sapScrollBar_Hover_FaceColor: #5b728b;--sapSlider_Background: #d5dadd;--sapSlider_BorderColor: #d5dadd;--sapSlider_Selected_Background: #0064d9;--sapSlider_Selected_BorderColor: #0064d9;--sapSlider_Selected_Dimension: .125rem;--sapSlider_HandleBackground: #fff;--sapSlider_HandleBorderColor: #b0d5ff;--sapSlider_RangeHandleBackground: #fff;--sapSlider_Hover_HandleBackground: #d9ecff;--sapSlider_Hover_HandleBorderColor: #b0d5ff;--sapSlider_Hover_RangeHandleBackground: #d9ecff;--sapSlider_Active_HandleBackground: #fff;--sapSlider_Active_HandleBorderColor: #0064d9;--sapSlider_Active_RangeHandleBackground: transparent;--sapPageHeader_Background: #fff;--sapPageHeader_BorderColor: #d9d9d9;--sapPageHeader_TextColor: #131e29;--sapPageFooter_Background: #fff;--sapPageFooter_BorderColor: #d9d9d9;--sapPageFooter_TextColor: #131e29;--sapInfobar_Background: #c2fcee;--sapInfobar_Hover_Background: #fff;--sapInfobar_Active_Background: #fff;--sapInfobar_NonInteractive_Background: #f5f6f7;--sapInfobar_TextColor: #046c7a;--sapObjectHeader_Background: #fff;--sapObjectHeader_Hover_Background: #eaecee;--sapObjectHeader_BorderColor: #d9d9d9;--sapObjectHeader_Title_TextColor: #131e29;--sapObjectHeader_Title_FontSize: 1.5rem;--sapObjectHeader_Title_SnappedFontSize: 1.25rem;--sapObjectHeader_Title_FontFamily: "72Black", "72Blackfull","72", "72full", Arial, Helvetica, sans-serif;--sapObjectHeader_Subtitle_TextColor: #556b82;--sapBlockLayer_Background: #000;--sapBlockLayer_Opacity: .2;--sapTab_TextColor: #131e29;--sapTab_ForegroundColor: #0064d9;--sapTab_IconColor: #0064d9;--sapTab_Background: #fff;--sapTab_Selected_TextColor: #0064d9;--sapTab_Selected_IconColor: #fff;--sapTab_Selected_Background: #0064d9;--sapTab_Selected_Indicator_Dimension: .1875rem;--sapTab_Positive_TextColor: #256f3a;--sapTab_Positive_ForegroundColor: #30914c;--sapTab_Positive_IconColor: #30914c;--sapTab_Positive_Selected_TextColor: #256f3a;--sapTab_Positive_Selected_IconColor: #fff;--sapTab_Positive_Selected_Background: #30914c;--sapTab_Negative_TextColor: #aa0808;--sapTab_Negative_ForegroundColor: #f53232;--sapTab_Negative_IconColor: #f53232;--sapTab_Negative_Selected_TextColor: #aa0808;--sapTab_Negative_Selected_IconColor: #fff;--sapTab_Negative_Selected_Background: #f53232;--sapTab_Critical_TextColor: #b44f00;--sapTab_Critical_ForegroundColor: #e76500;--sapTab_Critical_IconColor: #e76500;--sapTab_Critical_Selected_TextColor: #b44f00;--sapTab_Critical_Selected_IconColor: #fff;--sapTab_Critical_Selected_Background: #e76500;--sapTab_Neutral_TextColor: #131e29;--sapTab_Neutral_ForegroundColor: #788fa6;--sapTab_Neutral_IconColor: #788fa6;--sapTab_Neutral_Selected_TextColor: #131e29;--sapTab_Neutral_Selected_IconColor: #fff;--sapTab_Neutral_Selected_Background: #788fa6;--sapTile_Background: #fff;--sapTile_Hover_Background: #eaecee;--sapTile_Active_Background: #dee2e5;--sapTile_BorderColor: transparent;--sapTile_BorderCornerRadius: 1rem;--sapTile_TitleTextColor: #131e29;--sapTile_TextColor: #556b82;--sapTile_IconColor: #556b82;--sapTile_SeparatorColor: transparent;--sapTile_Interactive_BorderColor: #b3b3b3;--sapTile_OverlayBackground: #fff;--sapTile_OverlayForegroundColor: #131e29;--sapTile_Hover_ContentBackground: #fff;--sapTile_Active_ContentBackground: #fff;--sapAccentColor1: #d27700;--sapAccentColor2: #aa0808;--sapAccentColor3: #ba066c;--sapAccentColor4: #a100c2;--sapAccentColor5: #5d36ff;--sapAccentColor6: #0057d2;--sapAccentColor7: #046c7a;--sapAccentColor8: #256f3a;--sapAccentColor9: #6c32a9;--sapAccentColor10: #5b738b;--sapAccentBackgroundColor1: #fff3b8;--sapAccentBackgroundColor2: #ffd0e7;--sapAccentBackgroundColor3: #ffdbe7;--sapAccentBackgroundColor4: #ffdcf3;--sapAccentBackgroundColor5: #ded3ff;--sapAccentBackgroundColor6: #d1efff;--sapAccentBackgroundColor7: #c2fcee;--sapAccentBackgroundColor8: #ebf5cb;--sapAccentBackgroundColor9: #ddccf0;--sapAccentBackgroundColor10: #eaecee;--sapIndicationColor_1: #840606;--sapIndicationColor_1_Background: #840606;--sapIndicationColor_1_BorderColor: #840606;--sapIndicationColor_1_TextColor: #fff;--sapIndicationColor_1_Hover_Background: #6c0505;--sapIndicationColor_1_Active_Background: #fff;--sapIndicationColor_1_Active_BorderColor: #fb9d9d;--sapIndicationColor_1_Active_TextColor: #840606;--sapIndicationColor_1_Selected_Background: #fff;--sapIndicationColor_1_Selected_BorderColor: #fb9d9d;--sapIndicationColor_1_Selected_TextColor: #840606;--sapIndicationColor_1b: #fb9d9d;--sapIndicationColor_1b_TextColor: #830707;--sapIndicationColor_1b_Background: #fb9d9d;--sapIndicationColor_1b_BorderColor: #fb9d9d;--sapIndicationColor_1b_Hover_Background: #fa8585;--sapIndicationColor_2: #aa0808;--sapIndicationColor_2_Background: #aa0808;--sapIndicationColor_2_BorderColor: #aa0808;--sapIndicationColor_2_TextColor: #fff;--sapIndicationColor_2_Hover_Background: #920707;--sapIndicationColor_2_Active_Background: #fff;--sapIndicationColor_2_Active_BorderColor: #fcc4c4;--sapIndicationColor_2_Active_TextColor: #aa0808;--sapIndicationColor_2_Selected_Background: #fff;--sapIndicationColor_2_Selected_BorderColor: #fcc4c4;--sapIndicationColor_2_Selected_TextColor: #aa0808;--sapIndicationColor_2b: #fcc4c4;--sapIndicationColor_2b_TextColor: #a90909;--sapIndicationColor_2b_Background: #fcc4c4;--sapIndicationColor_2b_BorderColor: #fcc4c4;--sapIndicationColor_2b_Hover_Background: #fbacac;--sapIndicationColor_3: #b95100;--sapIndicationColor_3_Background: #e76500;--sapIndicationColor_3_BorderColor: #e76500;--sapIndicationColor_3_TextColor: #fff;--sapIndicationColor_3_Hover_Background: #d85e00;--sapIndicationColor_3_Active_Background: #fff;--sapIndicationColor_3_Active_BorderColor: #ffdfc3;--sapIndicationColor_3_Active_TextColor: #b95100;--sapIndicationColor_3_Selected_Background: #fff;--sapIndicationColor_3_Selected_BorderColor: #ffdfc3;--sapIndicationColor_3_Selected_TextColor: #b95100;--sapIndicationColor_3b: #ffdfc3;--sapIndicationColor_3b_TextColor: #a44d00;--sapIndicationColor_3b_Background: #ffdfc3;--sapIndicationColor_3b_BorderColor: #ffdfc3;--sapIndicationColor_3b_Hover_Background: #ffd1a9;--sapIndicationColor_4: #256f3a;--sapIndicationColor_4_Background: #256f3a;--sapIndicationColor_4_BorderColor: #256f3a;--sapIndicationColor_4_TextColor: #fff;--sapIndicationColor_4_Hover_Background: #1f5c30;--sapIndicationColor_4_Active_Background: #fff;--sapIndicationColor_4_Active_BorderColor: #bae8bc;--sapIndicationColor_4_Active_TextColor: #256f3a;--sapIndicationColor_4_Selected_Background: #fff;--sapIndicationColor_4_Selected_BorderColor: #bae8bc;--sapIndicationColor_4_Selected_TextColor: #256f3a;--sapIndicationColor_4b: #bae8bc;--sapIndicationColor_4b_TextColor: #256f28;--sapIndicationColor_4b_Background: #bae8bc;--sapIndicationColor_4b_BorderColor: #bae8bc;--sapIndicationColor_4b_Hover_Background: #a7e2a9;--sapIndicationColor_5: #0070f2;--sapIndicationColor_5_Background: #0070f2;--sapIndicationColor_5_BorderColor: #0070f2;--sapIndicationColor_5_TextColor: #fff;--sapIndicationColor_5_Hover_Background: #0064d9;--sapIndicationColor_5_Active_Background: #fff;--sapIndicationColor_5_Active_BorderColor: #d9ebff;--sapIndicationColor_5_Active_TextColor: #0070f2;--sapIndicationColor_5_Selected_Background: #fff;--sapIndicationColor_5_Selected_BorderColor: #d9ebff;--sapIndicationColor_5_Selected_TextColor: #0070f2;--sapIndicationColor_5b: #d9ebff;--sapIndicationColor_5b_TextColor: #0067d9;--sapIndicationColor_5b_Background: #d9ebff;--sapIndicationColor_5b_BorderColor: #d9ebff;--sapIndicationColor_5b_Hover_Background: #c0deff;--sapIndicationColor_6: #046c7a;--sapIndicationColor_6_Background: #046c7a;--sapIndicationColor_6_BorderColor: #046c7a;--sapIndicationColor_6_TextColor: #fff;--sapIndicationColor_6_Hover_Background: #035661;--sapIndicationColor_6_Active_Background: #fff;--sapIndicationColor_6_Active_BorderColor: #cdf5ec;--sapIndicationColor_6_Active_TextColor: #046c7a;--sapIndicationColor_6_Selected_Background: #fff;--sapIndicationColor_6_Selected_BorderColor: #cdf5ec;--sapIndicationColor_6_Selected_TextColor: #046c7a;--sapIndicationColor_6b: #cdf5ec;--sapIndicationColor_6b_TextColor: #156b58;--sapIndicationColor_6b_Background: #cdf5ec;--sapIndicationColor_6b_BorderColor: #cdf5ec;--sapIndicationColor_6b_Hover_Background: #b8f1e4;--sapIndicationColor_7: #5d36ff;--sapIndicationColor_7_Background: #5d36ff;--sapIndicationColor_7_BorderColor: #5d36ff;--sapIndicationColor_7_TextColor: #fff;--sapIndicationColor_7_Hover_Background: #481cff;--sapIndicationColor_7_Active_Background: #fff;--sapIndicationColor_7_Active_BorderColor: #e2dbff;--sapIndicationColor_7_Active_TextColor: #5d36ff;--sapIndicationColor_7_Selected_Background: #fff;--sapIndicationColor_7_Selected_BorderColor: #e2dbff;--sapIndicationColor_7_Selected_TextColor: #5d36ff;--sapIndicationColor_7b: #e2dbff;--sapIndicationColor_7b_TextColor: #5f38ff;--sapIndicationColor_7b_Background: #e2dbff;--sapIndicationColor_7b_BorderColor: #e2dbff;--sapIndicationColor_7b_Hover_Background: #cdc2ff;--sapIndicationColor_8: #a100c2;--sapIndicationColor_8_Background: #a100c2;--sapIndicationColor_8_BorderColor: #a100c2;--sapIndicationColor_8_TextColor: #fff;--sapIndicationColor_8_Hover_Background: #8c00a9;--sapIndicationColor_8_Active_Background: #fff;--sapIndicationColor_8_Active_BorderColor: #f8d6ff;--sapIndicationColor_8_Active_TextColor: #a100c2;--sapIndicationColor_8_Selected_Background: #fff;--sapIndicationColor_8_Selected_BorderColor: #f8d6ff;--sapIndicationColor_8_Selected_TextColor: #a100c2;--sapIndicationColor_8b: #f8d6ff;--sapIndicationColor_8b_TextColor: #a100c2;--sapIndicationColor_8b_Background: #f8d6ff;--sapIndicationColor_8b_BorderColor: #f8d6ff;--sapIndicationColor_8b_Hover_Background: #f4bdff;--sapIndicationColor_9: #1d2d3e;--sapIndicationColor_9_Background: #1d2d3e;--sapIndicationColor_9_BorderColor: #1d2d3e;--sapIndicationColor_9_TextColor: #fff;--sapIndicationColor_9_Hover_Background: #15202d;--sapIndicationColor_9_Active_Background: #fff;--sapIndicationColor_9_Active_BorderColor: #d9d9d9;--sapIndicationColor_9_Active_TextColor: #1d2d3e;--sapIndicationColor_9_Selected_Background: #fff;--sapIndicationColor_9_Selected_BorderColor: #d9d9d9;--sapIndicationColor_9_Selected_TextColor: #1d2d3e;--sapIndicationColor_9b: #fff;--sapIndicationColor_9b_TextColor: #2e2e2e;--sapIndicationColor_9b_Background: #fff;--sapIndicationColor_9b_BorderColor: #d9d9d9;--sapIndicationColor_9b_Hover_Background: #f2f2f2;--sapIndicationColor_10: #45484a;--sapIndicationColor_10_Background: #83888b;--sapIndicationColor_10_BorderColor: #83888b;--sapIndicationColor_10_TextColor: #fff;--sapIndicationColor_10_Hover_Background: #767b7e;--sapIndicationColor_10_Active_Background: #fff;--sapIndicationColor_10_Active_BorderColor: #eaecee;--sapIndicationColor_10_Active_TextColor: #45484a;--sapIndicationColor_10_Selected_Background: #fff;--sapIndicationColor_10_Selected_BorderColor: #eaecee;--sapIndicationColor_10_Selected_TextColor: #45484a;--sapIndicationColor_10b: #eaecee;--sapIndicationColor_10b_TextColor: #464646;--sapIndicationColor_10b_Background: #eaecee;--sapIndicationColor_10b_BorderColor: #eaecee;--sapIndicationColor_10b_Hover_Background: #dcdfe3;--sapLegend_WorkingBackground: #fff;--sapLegend_NonWorkingBackground: #ebebeb;--sapLegend_CurrentDateTime: #a100c2;--sapLegendColor1: #c35500;--sapLegendColor2: #d23a0a;--sapLegendColor3: #df1278;--sapLegendColor4: #840606;--sapLegendColor5: #cc00dc;--sapLegendColor6: #0057d2;--sapLegendColor7: #07838f;--sapLegendColor8: #188918;--sapLegendColor9: #5b738b;--sapLegendColor10: #7800a4;--sapLegendColor11: #a93e00;--sapLegendColor12: #aa2608;--sapLegendColor13: #ba066c;--sapLegendColor14: #8d2a00;--sapLegendColor15: #4e247a;--sapLegendColor16: #002a86;--sapLegendColor17: #035663;--sapLegendColor18: #1e592f;--sapLegendColor19: #1a4796;--sapLegendColor20: #470ced;--sapLegendBackgroundColor1: #ffef9f;--sapLegendBackgroundColor2: #feeae1;--sapLegendBackgroundColor3: #fbf6f8;--sapLegendBackgroundColor4: #fbebeb;--sapLegendBackgroundColor5: #ffe5fe;--sapLegendBackgroundColor6: #d1efff;--sapLegendBackgroundColor7: #c2fcee;--sapLegendBackgroundColor8: #f5fae5;--sapLegendBackgroundColor9: #f5f6f7;--sapLegendBackgroundColor10: #fff0fa;--sapLegendBackgroundColor11: #fff8d6;--sapLegendBackgroundColor12: #fff6f6;--sapLegendBackgroundColor13: #f7ebef;--sapLegendBackgroundColor14: #f1ecd5;--sapLegendBackgroundColor15: #f0e7f8;--sapLegendBackgroundColor16: #ebf8ff;--sapLegendBackgroundColor17: #dafdf5;--sapLegendBackgroundColor18: #ebf5cb;--sapLegendBackgroundColor19: #fafdff;--sapLegendBackgroundColor20: #eceeff;--sapChart_Background: #fff;--sapChart_ContrastTextShadow: 0 0 .0625rem rgba(0,0,0,.7);--sapChart_ContrastShadowColor: #fff;--sapChart_ContrastLineColor: #fff;--sapChart_LineColor_1: #e1e6eb;--sapChart_LineColor_2: #768da4;--sapChart_LineColor_3: #000001;--sapChart_Choropleth_Background: #edf0f3;--sapChart_ChoroplethRegion_Background: #758ca4;--sapChart_ChoroplethRegion_BorderColor: #edf0f3;--sapChart_Data_TextColor: #000;--sapChart_Data_ContrastTextColor: #fff;--sapChart_Data_InteractiveColor: #000001;--sapChart_Data_Active_Background: #dee2e5;--sapChart_IBCS_Actual: #233649;--sapChart_IBCS_Previous: #758ca4;--sapChart_IBCS_Good: #287a40;--sapChart_IBCS_Bad: #d00a0a;--sapChart_OrderedColor_1: #168eff;--sapChart_OrderedColor_2: #c87b00;--sapChart_OrderedColor_3: #75980b;--sapChart_OrderedColor_4: #df1278;--sapChart_OrderedColor_5: #8b47d7;--sapChart_OrderedColor_6: #049f9a;--sapChart_OrderedColor_7: #0070f2;--sapChart_OrderedColor_8: #cc00dc;--sapChart_OrderedColor_9: #798c77;--sapChart_OrderedColor_10: #da6c6c;--sapChart_OrderedColor_11: #5d36ff;--sapChart_OrderedColor_12: #a68a5b;--sapChart_Bad: #f53232;--sapChart_Critical: #e26300;--sapChart_Good: #30914c;--sapChart_Neutral: #758ca4;--sapChart_Sequence_1_Plus3: #8bc7ff;--sapChart_Sequence_1_Plus3_TextColor: #000;--sapChart_Sequence_1_Plus3_TextShadow: 0 0 .125rem #fff;--sapChart_Sequence_1_Plus2: #62b3ff;--sapChart_Sequence_1_Plus2_TextColor: #000;--sapChart_Sequence_1_Plus2_TextShadow: 0 0 .125rem #fff;--sapChart_Sequence_1_Plus1: #3fa2ff;--sapChart_Sequence_1_Plus1_TextColor: #000;--sapChart_Sequence_1_Plus1_TextShadow: 0 0 .125rem #fff;--sapChart_Sequence_1: #168eff;--sapChart_Sequence_1_TextColor: #000;--sapChart_Sequence_1_TextShadow: 0 0 .125rem #fff;--sapChart_Sequence_1_BorderColor: #0074e2;--sapChart_Sequence_1_Minus1: #0074e2;--sapChart_Sequence_1_Minus1_TextColor: #fff;--sapChart_Sequence_1_Minus1_TextShadow: 0 0 .125rem #223548;--sapChart_Sequence_1_Minus2: #0065c3;--sapChart_Sequence_1_Minus2_TextColor: #fff;--sapChart_Sequence_1_Minus2_TextShadow: 0 0 .125rem #223548;--sapChart_Sequence_1_Minus3: #0055a5;--sapChart_Sequence_1_Minus3_TextColor: #fff;--sapChart_Sequence_1_Minus3_TextShadow: 0 0 .125rem #223548;--sapChart_Sequence_1_Minus4: #003b72;--sapChart_Sequence_1_Minus4_TextColor: #fff;--sapChart_Sequence_1_Minus4_TextShadow: 0 0 .125rem #223548;--sapChart_Sequence_1_Minus5: #00305d;--sapChart_Sequence_1_Minus5_TextColor: #fff;--sapChart_Sequence_1_Minus5_TextShadow: 0 0 .125rem #223548;--sapChart_Sequence_2_Plus3: #efbf72;--sapChart_Sequence_2_Plus3_TextColor: #000;--sapChart_Sequence_2_Plus3_TextShadow: 0 0 .125rem #fff;--sapChart_Sequence_2_Plus2: #eaaa44;--sapChart_Sequence_2_Plus2_TextColor: #000;--sapChart_Sequence_2_Plus2_TextShadow: 0 0 .125rem #fff;--sapChart_Sequence_2_Plus1: #e29419;--sapChart_Sequence_2_Plus1_TextColor: #000;--sapChart_Sequence_2_Plus1_TextShadow: 0 0 .125rem #fff;--sapChart_Sequence_2: #c87b00;--sapChart_Sequence_2_TextColor: #000;--sapChart_Sequence_2_TextShadow: 0 0 .125rem #fff;--sapChart_Sequence_2_BorderColor: #9f6200;--sapChart_Sequence_2_Minus1: #9f6200;--sapChart_Sequence_2_Minus1_TextColor: #fff;--sapChart_Sequence_2_Minus1_TextShadow: 0 0 .125rem #223548;--sapChart_Sequence_2_Minus2: #7c4c00;--sapChart_Sequence_2_Minus2_TextColor: #fff;--sapChart_Sequence_2_Minus2_TextShadow: 0 0 .125rem #223548;--sapChart_Sequence_2_Minus3: #623c00;--sapChart_Sequence_2_Minus3_TextColor: #fff;--sapChart_Sequence_2_Minus3_TextShadow: 0 0 .125rem #223548;--sapChart_Sequence_2_Minus4: #492d00;--sapChart_Sequence_2_Minus4_TextColor: #fff;--sapChart_Sequence_2_Minus4_TextShadow: 0 0 .125rem #223548;--sapChart_Sequence_2_Minus5: #2f1d00;--sapChart_Sequence_2_Minus5_TextColor: #fff;--sapChart_Sequence_2_Minus5_TextShadow: 0 0 .125rem #223548;--sapChart_Sequence_3_Plus3: #b9d369;--sapChart_Sequence_3_Plus3_TextColor: #000;--sapChart_Sequence_3_Plus3_TextShadow: 0 0 .125rem #fff;--sapChart_Sequence_3_Plus2: #a6c742;--sapChart_Sequence_3_Plus2_TextColor: #000;--sapChart_Sequence_3_Plus2_TextShadow: 0 0 .125rem #fff;--sapChart_Sequence_3_Plus1: #8fad33;--sapChart_Sequence_3_Plus1_TextColor: #000;--sapChart_Sequence_3_Plus1_TextShadow: 0 0 .125rem #fff;--sapChart_Sequence_3: #75980b;--sapChart_Sequence_3_TextColor: #000;--sapChart_Sequence_3_TextShadow: 0 0 .125rem #fff;--sapChart_Sequence_3_BorderColor: #587208;--sapChart_Sequence_3_Minus1: #587208;--sapChart_Sequence_3_Minus1_TextColor: #fff;--sapChart_Sequence_3_Minus1_TextShadow: 0 0 .125rem #223548;--sapChart_Sequence_3_Minus2: #3e5106;--sapChart_Sequence_3_Minus2_TextColor: #fff;--sapChart_Sequence_3_Minus2_TextShadow: 0 0 .125rem #223548;--sapChart_Sequence_3_Minus3: #2c3904;--sapChart_Sequence_3_Minus3_TextColor: #fff;--sapChart_Sequence_3_Minus3_TextShadow: 0 0 .125rem #223548;--sapChart_Sequence_3_Minus4: #212b03;--sapChart_Sequence_3_Minus4_TextColor: #fff;--sapChart_Sequence_3_Minus4_TextShadow: 0 0 .125rem #223548;--sapChart_Sequence_3_Minus5: #161c02;--sapChart_Sequence_3_Minus5_TextColor: #fff;--sapChart_Sequence_3_Minus5_TextShadow: 0 0 .125rem #223548;--sapChart_Sequence_4_Plus3: #f473b3;--sapChart_Sequence_4_Plus3_TextColor: #000;--sapChart_Sequence_4_Plus3_TextShadow: 0 0 .125rem #fff;--sapChart_Sequence_4_Plus2: #f14d9e;--sapChart_Sequence_4_Plus2_TextColor: #000;--sapChart_Sequence_4_Plus2_TextShadow: 0 0 .125rem #fff;--sapChart_Sequence_4_Plus1: #ee278a;--sapChart_Sequence_4_Plus1_TextColor: #000;--sapChart_Sequence_4_Plus1_TextShadow: 0 0 .125rem #fff;--sapChart_Sequence_4: #df1278;--sapChart_Sequence_4_TextColor: #fff;--sapChart_Sequence_4_TextShadow: 0 0 .125rem #223548;--sapChart_Sequence_4_BorderColor: #df1278;--sapChart_Sequence_4_Minus1: #b90f64;--sapChart_Sequence_4_Minus1_TextColor: #fff;--sapChart_Sequence_4_Minus1_TextShadow: 0 0 .125rem #223548;--sapChart_Sequence_4_Minus2: #930c4f;--sapChart_Sequence_4_Minus2_TextColor: #fff;--sapChart_Sequence_4_Minus2_TextShadow: 0 0 .125rem #223548;--sapChart_Sequence_4_Minus3: #770a40;--sapChart_Sequence_4_Minus3_TextColor: #fff;--sapChart_Sequence_4_Minus3_TextShadow: 0 0 .125rem #223548;--sapChart_Sequence_4_Minus4: #51072c;--sapChart_Sequence_4_Minus4_TextColor: #fff;--sapChart_Sequence_4_Minus4_TextShadow: 0 0 .125rem #223548;--sapChart_Sequence_4_Minus5: #3a051f;--sapChart_Sequence_4_Minus5_TextColor: #fff;--sapChart_Sequence_4_Minus5_TextShadow: 0 0 .125rem #223548;--sapChart_Sequence_5_Plus3: #d5bcf0;--sapChart_Sequence_5_Plus3_TextColor: #000;--sapChart_Sequence_5_Plus3_TextShadow: 0 0 .125rem #fff;--sapChart_Sequence_5_Plus2: #b994e0;--sapChart_Sequence_5_Plus2_TextColor: #000;--sapChart_Sequence_5_Plus2_TextShadow: 0 0 .125rem #fff;--sapChart_Sequence_5_Plus1: #a679d8;--sapChart_Sequence_5_Plus1_TextColor: #000;--sapChart_Sequence_5_Plus1_TextShadow: 0 0 .125rem #fff;--sapChart_Sequence_5: #8b47d7;--sapChart_Sequence_5_TextColor: #fff;--sapChart_Sequence_5_TextShadow: 0 0 .125rem #223548;--sapChart_Sequence_5_BorderColor: #8b47d7;--sapChart_Sequence_5_Minus1: #7236b5;--sapChart_Sequence_5_Minus1_TextColor: #fff;--sapChart_Sequence_5_Minus1_TextShadow: 0 0 .125rem #223548;--sapChart_Sequence_5_Minus2: #5e2c96;--sapChart_Sequence_5_Minus2_TextColor: #fff;--sapChart_Sequence_5_Minus2_TextShadow: 0 0 .125rem #223548;--sapChart_Sequence_5_Minus3: #522682;--sapChart_Sequence_5_Minus3_TextColor: #fff;--sapChart_Sequence_5_Minus3_TextShadow: 0 0 .125rem #223548;--sapChart_Sequence_5_Minus4: #46216f;--sapChart_Sequence_5_Minus4_TextColor: #fff;--sapChart_Sequence_5_Minus4_TextShadow: 0 0 .125rem #223548;--sapChart_Sequence_5_Minus5: #341358;--sapChart_Sequence_5_Minus5_TextColor: #fff;--sapChart_Sequence_5_Minus5_TextShadow: 0 0 .125rem #223548;--sapChart_Sequence_6_Plus3: #64ede9;--sapChart_Sequence_6_Plus3_TextColor: #000;--sapChart_Sequence_6_Plus3_TextShadow: 0 0 .125rem #fff;--sapChart_Sequence_6_Plus2: #2ee0da;--sapChart_Sequence_6_Plus2_TextColor: #000;--sapChart_Sequence_6_Plus2_TextShadow: 0 0 .125rem #fff;--sapChart_Sequence_6_Plus1: #05c7c1;--sapChart_Sequence_6_Plus1_TextColor: #000;--sapChart_Sequence_6_Plus1_TextShadow: 0 0 .125rem #fff;--sapChart_Sequence_6: #049f9a;--sapChart_Sequence_6_TextColor: #000;--sapChart_Sequence_6_TextShadow: 0 0 .125rem #fff;--sapChart_Sequence_6_BorderColor: #05c7c1;--sapChart_Sequence_6_Minus1: #02837f;--sapChart_Sequence_6_Minus1_TextColor: #fff;--sapChart_Sequence_6_Minus1_TextShadow: 0 0 .125rem #223548;--sapChart_Sequence_6_Minus2: #006663;--sapChart_Sequence_6_Minus2_TextColor: #fff;--sapChart_Sequence_6_Minus2_TextShadow: 0 0 .125rem #223548;--sapChart_Sequence_6_Minus3: #00514f;--sapChart_Sequence_6_Minus3_TextColor: #fff;--sapChart_Sequence_6_Minus3_TextShadow: 0 0 .125rem #223548;--sapChart_Sequence_6_Minus4: #003d3b;--sapChart_Sequence_6_Minus4_TextColor: #fff;--sapChart_Sequence_6_Minus4_TextShadow: 0 0 .125rem #223548;--sapChart_Sequence_6_Minus5: #002322;--sapChart_Sequence_6_Minus5_TextColor: #fff;--sapChart_Sequence_6_Minus5_TextShadow: 0 0 .125rem #223548;--sapChart_Sequence_7_Plus3: #68aeff;--sapChart_Sequence_7_Plus3_TextColor: #000;--sapChart_Sequence_7_Plus3_TextShadow: 0 0 .125rem #fff;--sapChart_Sequence_7_Plus2: #4098ff;--sapChart_Sequence_7_Plus2_TextColor: #000;--sapChart_Sequence_7_Plus2_TextShadow: 0 0 .125rem #fff;--sapChart_Sequence_7_Plus1: #1c85ff;--sapChart_Sequence_7_Plus1_TextColor: #000;--sapChart_Sequence_7_Plus1_TextShadow: 0 0 .125rem #fff;--sapChart_Sequence_7: #0070f2;--sapChart_Sequence_7_TextColor: #fff;--sapChart_Sequence_7_TextShadow: 0 0 .125rem #223548;--sapChart_Sequence_7_BorderColor: #0070f2;--sapChart_Sequence_7_Minus1: #0062d3;--sapChart_Sequence_7_Minus1_TextColor: #fff;--sapChart_Sequence_7_Minus1_TextShadow: 0 0 .125rem #223548;--sapChart_Sequence_7_Minus2: #0054b5;--sapChart_Sequence_7_Minus2_TextColor: #fff;--sapChart_Sequence_7_Minus2_TextShadow: 0 0 .125rem #223548;--sapChart_Sequence_7_Minus3: #00418c;--sapChart_Sequence_7_Minus3_TextColor: #fff;--sapChart_Sequence_7_Minus3_TextShadow: 0 0 .125rem #223548;--sapChart_Sequence_7_Minus4: #00244f;--sapChart_Sequence_7_Minus4_TextColor: #fff;--sapChart_Sequence_7_Minus4_TextShadow: 0 0 .125rem #223548;--sapChart_Sequence_7_Minus5: #001b3a;--sapChart_Sequence_7_Minus5_TextColor: #fff;--sapChart_Sequence_7_Minus5_TextShadow: 0 0 .125rem #223548;--sapChart_Sequence_8_Plus3: #f462ff;--sapChart_Sequence_8_Plus3_TextColor: #000;--sapChart_Sequence_8_Plus3_TextShadow: 0 0 .125rem #fff;--sapChart_Sequence_8_Plus2: #f034ff;--sapChart_Sequence_8_Plus2_TextColor: #000;--sapChart_Sequence_8_Plus2_TextShadow: 0 0 .125rem #fff;--sapChart_Sequence_8_Plus1: #ed0bff;--sapChart_Sequence_8_Plus1_TextColor: #000;--sapChart_Sequence_8_Plus1_TextShadow: 0 0 .125rem #fff;--sapChart_Sequence_8: #cc00dc;--sapChart_Sequence_8_TextColor: #fff;--sapChart_Sequence_8_TextShadow: 0 0 .125rem #223548;--sapChart_Sequence_8_BorderColor: #cc00dc;--sapChart_Sequence_8_Minus1: #a600b3;--sapChart_Sequence_8_Minus1_TextColor: #fff;--sapChart_Sequence_8_Minus1_TextShadow: 0 0 .125rem #223548;--sapChart_Sequence_8_Minus2: #80008a;--sapChart_Sequence_8_Minus2_TextColor: #fff;--sapChart_Sequence_8_Minus2_TextShadow: 0 0 .125rem #223548;--sapChart_Sequence_8_Minus3: #6d0076;--sapChart_Sequence_8_Minus3_TextColor: #fff;--sapChart_Sequence_8_Minus3_TextShadow: 0 0 .125rem #223548;--sapChart_Sequence_8_Minus4: #56005d;--sapChart_Sequence_8_Minus4_TextColor: #fff;--sapChart_Sequence_8_Minus4_TextShadow: 0 0 .125rem #223548;--sapChart_Sequence_8_Minus5: #350039;--sapChart_Sequence_8_Minus5_TextColor: #fff;--sapChart_Sequence_8_Minus5_TextShadow: 0 0 .125rem #223548;--sapChart_Sequence_9_Plus3: #bdc6bc;--sapChart_Sequence_9_Plus3_TextColor: #000;--sapChart_Sequence_9_Plus3_TextShadow: 0 0 .125rem #fff;--sapChart_Sequence_9_Plus2: #b5bfb4;--sapChart_Sequence_9_Plus2_TextColor: #000;--sapChart_Sequence_9_Plus2_TextShadow: 0 0 .125rem #fff;--sapChart_Sequence_9_Plus1: #97a695;--sapChart_Sequence_9_Plus1_TextColor: #000;--sapChart_Sequence_9_Plus1_TextShadow: 0 0 .125rem #fff;--sapChart_Sequence_9: #798c77;--sapChart_Sequence_9_TextColor: #000;--sapChart_Sequence_9_TextShadow: 0 0 .125rem #fff;--sapChart_Sequence_9_BorderColor: #798c77;--sapChart_Sequence_9_Minus1: #667664;--sapChart_Sequence_9_Minus1_TextColor: #fff;--sapChart_Sequence_9_Minus1_TextShadow: 0 0 .125rem #223548;--sapChart_Sequence_9_Minus2: #536051;--sapChart_Sequence_9_Minus2_TextColor: #fff;--sapChart_Sequence_9_Minus2_TextShadow: 0 0 .125rem #223548;--sapChart_Sequence_9_Minus3: #404a3f;--sapChart_Sequence_9_Minus3_TextColor: #fff;--sapChart_Sequence_9_Minus3_TextShadow: 0 0 .125rem #223548;--sapChart_Sequence_9_Minus4: #2d342c;--sapChart_Sequence_9_Minus4_TextColor: #fff;--sapChart_Sequence_9_Minus4_TextShadow: 0 0 .125rem #223548;--sapChart_Sequence_9_Minus5: #1e231e;--sapChart_Sequence_9_Minus5_TextColor: #fff;--sapChart_Sequence_9_Minus5_TextShadow: 0 0 .125rem #223548;--sapChart_Sequence_10_Plus3: #f1c6c6;--sapChart_Sequence_10_Plus3_TextColor: #000;--sapChart_Sequence_10_Plus3_TextShadow: 0 0 .125rem #fff;--sapChart_Sequence_10_Plus2: #eaadad;--sapChart_Sequence_10_Plus2_TextColor: #000;--sapChart_Sequence_10_Plus2_TextShadow: 0 0 .125rem #fff;--sapChart_Sequence_10_Plus1: #e28d8d;--sapChart_Sequence_10_Plus1_TextColor: #000;--sapChart_Sequence_10_Plus1_TextShadow: 0 0 .125rem #fff;--sapChart_Sequence_10: #da6c6c;--sapChart_Sequence_10_TextColor: #000;--sapChart_Sequence_10_TextShadow: 0 0 .125rem #fff;--sapChart_Sequence_10_BorderColor: #b75757;--sapChart_Sequence_10_Minus1: #b75757;--sapChart_Sequence_10_Minus1_TextColor: #000;--sapChart_Sequence_10_Minus1_TextShadow: 0 0 .125rem #fff;--sapChart_Sequence_10_Minus2: #9d4343;--sapChart_Sequence_10_Minus2_TextColor: #fff;--sapChart_Sequence_10_Minus2_TextShadow: 0 0 .125rem #223548;--sapChart_Sequence_10_Minus3: #803737;--sapChart_Sequence_10_Minus3_TextColor: #fff;--sapChart_Sequence_10_Minus3_TextShadow: 0 0 .125rem #223548;--sapChart_Sequence_10_Minus4: #672c2c;--sapChart_Sequence_10_Minus4_TextColor: #fff;--sapChart_Sequence_10_Minus4_TextShadow: 0 0 .125rem #223548;--sapChart_Sequence_10_Minus5: #562424;--sapChart_Sequence_10_Minus5_TextColor: #fff;--sapChart_Sequence_10_Minus5_TextShadow: 0 0 .125rem #223548;--sapChart_Sequence_11_Plus3: #c0b0ff;--sapChart_Sequence_11_Plus3_TextColor: #000;--sapChart_Sequence_11_Plus3_TextShadow: 0 0 .125rem #fff;--sapChart_Sequence_11_Plus2: #9b83ff;--sapChart_Sequence_11_Plus2_TextColor: #000;--sapChart_Sequence_11_Plus2_TextShadow: 0 0 .125rem #fff;--sapChart_Sequence_11_Plus1: #8669ff;--sapChart_Sequence_11_Plus1_TextColor: #000;--sapChart_Sequence_11_Plus1_TextShadow: 0 0 .125rem #fff;--sapChart_Sequence_11: #5d36ff;--sapChart_Sequence_11_TextColor: #fff;--sapChart_Sequence_11_TextShadow: 0 0 .125rem #223548;--sapChart_Sequence_11_BorderColor: #5d36ff;--sapChart_Sequence_11_Minus1: #4b25e7;--sapChart_Sequence_11_Minus1_TextColor: #fff;--sapChart_Sequence_11_Minus1_TextShadow: 0 0 .125rem #223548;--sapChart_Sequence_11_Minus2: #3a17cd;--sapChart_Sequence_11_Minus2_TextColor: #fff;--sapChart_Sequence_11_Minus2_TextShadow: 0 0 .125rem #223548;--sapChart_Sequence_11_Minus3: #2f13a8;--sapChart_Sequence_11_Minus3_TextColor: #fff;--sapChart_Sequence_11_Minus3_TextShadow: 0 0 .125rem #223548;--sapChart_Sequence_11_Minus4: #250f83;--sapChart_Sequence_11_Minus4_TextColor: #fff;--sapChart_Sequence_11_Minus4_TextShadow: 0 0 .125rem #223548;--sapChart_Sequence_11_Minus5: #180955;--sapChart_Sequence_11_Minus5_TextColor: #fff;--sapChart_Sequence_11_Minus5_TextShadow: 0 0 .125rem #223548;--sapChart_Sequence_12_Plus3: #e4ddcf;--sapChart_Sequence_12_Plus3_TextColor: #000;--sapChart_Sequence_12_Plus3_TextShadow: 0 0 .125rem #fff;--sapChart_Sequence_12_Plus2: #dacebb;--sapChart_Sequence_12_Plus2_TextColor: #000;--sapChart_Sequence_12_Plus2_TextShadow: 0 0 .125rem #fff;--sapChart_Sequence_12_Plus1: #c4b293;--sapChart_Sequence_12_Plus1_TextColor: #000;--sapChart_Sequence_12_Plus1_TextShadow: 0 0 .125rem #fff;--sapChart_Sequence_12: #a68a5b;--sapChart_Sequence_12_TextColor: #000;--sapChart_Sequence_12_TextShadow: 0 0 .125rem #fff;--sapChart_Sequence_12_BorderColor: #a68a5b;--sapChart_Sequence_12_Minus1: #8c744c;--sapChart_Sequence_12_Minus1_TextColor: #fff;--sapChart_Sequence_12_Minus1_TextShadow: 0 0 .125rem #223548;--sapChart_Sequence_12_Minus2: #786441;--sapChart_Sequence_12_Minus2_TextColor: #fff;--sapChart_Sequence_12_Minus2_TextShadow: 0 0 .125rem #223548;--sapChart_Sequence_12_Minus3: #5e4e33;--sapChart_Sequence_12_Minus3_TextColor: #fff;--sapChart_Sequence_12_Minus3_TextShadow: 0 0 .125rem #223548;--sapChart_Sequence_12_Minus4: #433825;--sapChart_Sequence_12_Minus4_TextColor: #fff;--sapChart_Sequence_12_Minus4_TextShadow: 0 0 .125rem #223548;--sapChart_Sequence_12_Minus5: #30271a;--sapChart_Sequence_12_Minus5_TextColor: #fff;--sapChart_Sequence_12_Minus5_TextShadow: 0 0 .125rem #223548;--sapChart_Sequence_Bad_Plus3: #fdcece;--sapChart_Sequence_Bad_Plus3_TextColor: #000;--sapChart_Sequence_Bad_Plus3_TextShadow: 0 0 .125rem #fff;--sapChart_Sequence_Bad_Plus2: #fa9d9d;--sapChart_Sequence_Bad_Plus2_TextColor: #000;--sapChart_Sequence_Bad_Plus2_TextShadow: 0 0 .125rem #fff;--sapChart_Sequence_Bad_Plus1: #f86c6c;--sapChart_Sequence_Bad_Plus1_TextColor: #000;--sapChart_Sequence_Bad_Plus1_TextShadow: 0 0 .125rem #fff;--sapChart_Sequence_Bad: #f53232;--sapChart_Sequence_Bad_TextColor: #000;--sapChart_Sequence_Bad_TextShadow: 0 0 .125rem #fff;--sapChart_Sequence_Bad_BorderColor: #f53232;--sapChart_Sequence_Bad_Minus1: #d00a0a;--sapChart_Sequence_Bad_Minus1_TextColor: #fff;--sapChart_Sequence_Bad_Minus1_TextShadow: 0 0 .125rem #223548;--sapChart_Sequence_Bad_Minus2: #a90808;--sapChart_Sequence_Bad_Minus2_TextColor: #fff;--sapChart_Sequence_Bad_Minus2_TextShadow: 0 0 .125rem #223548;--sapChart_Sequence_Bad_Minus3: #830606;--sapChart_Sequence_Bad_Minus3_TextColor: #fff;--sapChart_Sequence_Bad_Minus3_TextShadow: 0 0 .125rem #223548;--sapChart_Sequence_Bad_Minus4: #570404;--sapChart_Sequence_Bad_Minus4_TextColor: #fff;--sapChart_Sequence_Bad_Minus4_TextShadow: 0 0 .125rem #223548;--sapChart_Sequence_Bad_Minus5: #320000;--sapChart_Sequence_Bad_Minus5_TextColor: #fff;--sapChart_Sequence_Bad_Minus5_TextShadow: 0 0 .125rem #223548;--sapChart_Sequence_Critical_Plus3: #ffb881;--sapChart_Sequence_Critical_Plus3_TextColor: #000;--sapChart_Sequence_Critical_Plus3_TextShadow: 0 0 .125rem #fff;--sapChart_Sequence_Critical_Plus2: #ff933f;--sapChart_Sequence_Critical_Plus2_TextColor: #000;--sapChart_Sequence_Critical_Plus2_TextShadow: 0 0 .125rem #fff;--sapChart_Sequence_Critical_Plus1: #ff760c;--sapChart_Sequence_Critical_Plus1_TextColor: #000;--sapChart_Sequence_Critical_Plus1_TextShadow: 0 0 .125rem #fff;--sapChart_Sequence_Critical: #e26300;--sapChart_Sequence_Critical_TextColor: #000;--sapChart_Sequence_Critical_TextShadow: 0 0 .125rem #fff;--sapChart_Sequence_Critical_BorderColor: #e26300;--sapChart_Sequence_Critical_Minus1: #c35600;--sapChart_Sequence_Critical_Minus1_TextColor: #fff;--sapChart_Sequence_Critical_Minus1_TextShadow: 0 0 .125rem #223548;--sapChart_Sequence_Critical_Minus2: #aa4a00;--sapChart_Sequence_Critical_Minus2_TextColor: #fff;--sapChart_Sequence_Critical_Minus2_TextShadow: 0 0 .125rem #223548;--sapChart_Sequence_Critical_Minus3: #903f00;--sapChart_Sequence_Critical_Minus3_TextColor: #fff;--sapChart_Sequence_Critical_Minus3_TextShadow: 0 0 .125rem #223548;--sapChart_Sequence_Critical_Minus4: #6d3000;--sapChart_Sequence_Critical_Minus4_TextColor: #fff;--sapChart_Sequence_Critical_Minus4_TextShadow: 0 0 .125rem #223548;--sapChart_Sequence_Critical_Minus5: #492000;--sapChart_Sequence_Critical_Minus5_TextColor: #fff;--sapChart_Sequence_Critical_Minus5_TextShadow: 0 0 .125rem #223548;--sapChart_Sequence_Good_Plus3: #88d79f;--sapChart_Sequence_Good_Plus3_TextColor: #000;--sapChart_Sequence_Good_Plus3_TextShadow: 0 0 .125rem #fff;--sapChart_Sequence_Good_Plus2: #56c776;--sapChart_Sequence_Good_Plus2_TextColor: #000;--sapChart_Sequence_Good_Plus2_TextShadow: 0 0 .125rem #fff;--sapChart_Sequence_Good_Plus1: #3ab05c;--sapChart_Sequence_Good_Plus1_TextColor: #000;--sapChart_Sequence_Good_Plus1_TextShadow: 0 0 .125rem #fff;--sapChart_Sequence_Good: #30914c;--sapChart_Sequence_Good_TextColor: #000;--sapChart_Sequence_Good_TextShadow: 0 0 .125rem #fff;--sapChart_Sequence_Good_BorderColor: #30914c;--sapChart_Sequence_Good_Minus1: #287a40;--sapChart_Sequence_Good_Minus1_TextColor: #fff;--sapChart_Sequence_Good_Minus1_TextShadow: 0 0 .125rem #223548;--sapChart_Sequence_Good_Minus2: #226736;--sapChart_Sequence_Good_Minus2_TextColor: #fff;--sapChart_Sequence_Good_Minus2_TextShadow: 0 0 .125rem #223548;--sapChart_Sequence_Good_Minus3: #1c542c;--sapChart_Sequence_Good_Minus3_TextColor: #fff;--sapChart_Sequence_Good_Minus3_TextShadow: 0 0 .125rem #223548;--sapChart_Sequence_Good_Minus4: #13391e;--sapChart_Sequence_Good_Minus4_TextColor: #fff;--sapChart_Sequence_Good_Minus4_TextShadow: 0 0 .125rem #223548;--sapChart_Sequence_Good_Minus5: #0a1e10;--sapChart_Sequence_Good_Minus5_TextColor: #fff;--sapChart_Sequence_Good_Minus5_TextShadow: 0 0 .125rem #223548;--sapChart_Sequence_Neutral_Plus3: #edf0f3;--sapChart_Sequence_Neutral_Plus3_TextColor: #000;--sapChart_Sequence_Neutral_Plus3_TextShadow: 0 0 .125rem #fff;--sapChart_Sequence_Neutral_Plus2: #c2ccd7;--sapChart_Sequence_Neutral_Plus2_TextColor: #000;--sapChart_Sequence_Neutral_Plus2_TextShadow: 0 0 .125rem #fff;--sapChart_Sequence_Neutral_Plus1: #9aabbc;--sapChart_Sequence_Neutral_Plus1_TextColor: #000;--sapChart_Sequence_Neutral_Plus1_TextShadow: 0 0 .125rem #fff;--sapChart_Sequence_Neutral: #758ca4;--sapChart_Sequence_Neutral_TextColor: #000;--sapChart_Sequence_Neutral_TextShadow: 0 0 .125rem #fff;--sapChart_Sequence_Neutral_BorderColor: #758ca4;--sapChart_Sequence_Neutral_Minus1: #5b728b;--sapChart_Sequence_Neutral_Minus1_TextColor: #fff;--sapChart_Sequence_Neutral_Minus1_TextShadow: 0 0 .125rem #223548;--sapChart_Sequence_Neutral_Minus2: #495e74;--sapChart_Sequence_Neutral_Minus2_TextColor: #fff;--sapChart_Sequence_Neutral_Minus2_TextShadow: 0 0 .125rem #223548;--sapChart_Sequence_Neutral_Minus3: #364a5f;--sapChart_Sequence_Neutral_Minus3_TextColor: #fff;--sapChart_Sequence_Neutral_Minus3_TextShadow: 0 0 .125rem #223548;--sapChart_Sequence_Neutral_Minus4: #233649;--sapChart_Sequence_Neutral_Minus4_TextColor: #fff;--sapChart_Sequence_Neutral_Minus4_TextShadow: 0 0 .125rem #223548;--sapChart_Sequence_Neutral_Minus5: #1a2633;--sapChart_Sequence_Neutral_Minus5_TextColor: #fff;--sapChart_Sequence_Neutral_Minus5_TextShadow: 0 0 .125rem #223548;--sapBreakpoint_S_Min: 0;--sapBreakpoint_M_Min: 600px;--sapBreakpoint_L_Min: 1024px;--sapBreakpoint_XL_Min: 1440px;--sapSapThemeId: sap_horizon;--sapHighlightTextColor: #fff;--sapButton_Emphasized_FontWeight: bold;--sapShell_BackgroundGradient: linear-gradient(to bottom, #eff1f2, #eff1f2)\n}'}),wh=qr(()=>{_h=':host{--ui5-avatar-hover-box-shadow-offset: 0px 0px 0px .0625rem var(--sapAvatar_Hover_BorderColor);--ui5-avatar-initials-color: var(--sapContent_ImagePlaceholderForegroundColor);--ui5-avatar-border-radius: var(--sapElement_BorderCornerRadius);--ui5-avatar-border-radius-img-deduction: .0625rem;--ui5-avatar-initials-border: .0625rem solid var(--sapAvatar_1_BorderColor);--ui5-avatar-optional-border: .0625rem solid var(--sapGroup_ContentBorderColor);--ui5-avatar-accent1: var(--sapAvatar_1_Background);--ui5-avatar-accent2: var(--sapAvatar_2_Background);--ui5-avatar-accent3: var(--sapAvatar_3_Background);--ui5-avatar-accent4: var(--sapAvatar_4_Background);--ui5-avatar-accent5: var(--sapAvatar_5_Background);--ui5-avatar-accent6: var(--sapAvatar_6_Background);--ui5-avatar-accent7: var(--sapAvatar_7_Background);--ui5-avatar-accent8: var(--sapAvatar_8_Background);--ui5-avatar-accent9: var(--sapAvatar_9_Background);--ui5-avatar-accent10: var(--sapAvatar_10_Background);--ui5-avatar-placeholder: var(--sapContent_ImagePlaceholderBackground);--ui5-avatar-accent1-color: var(--sapAvatar_1_TextColor);--ui5-avatar-accent2-color: var(--sapAvatar_2_TextColor);--ui5-avatar-accent3-color: var(--sapAvatar_3_TextColor);--ui5-avatar-accent4-color: var(--sapAvatar_4_TextColor);--ui5-avatar-accent5-color: var(--sapAvatar_5_TextColor);--ui5-avatar-accent6-color: var(--sapAvatar_6_TextColor);--ui5-avatar-accent7-color: var(--sapAvatar_7_TextColor);--ui5-avatar-accent8-color: var(--sapAvatar_8_TextColor);--ui5-avatar-accent9-color: var(--sapAvatar_9_TextColor);--ui5-avatar-accent10-color: var(--sapAvatar_10_TextColor);--ui5-avatar-placeholder-color: var(--ui5-avatar-initials-color);--ui5-avatar-accent1-border-color: var(--sapAvatar_1_BorderColor);--ui5-avatar-accent2-border-color: var(--sapAvatar_2_BorderColor);--ui5-avatar-accent3-border-color: var(--sapAvatar_3_BorderColor);--ui5-avatar-accent4-border-color: var(--sapAvatar_4_BorderColor);--ui5-avatar-accent5-border-color: var(--sapAvatar_5_BorderColor);--ui5-avatar-accent6-border-color: var(--sapAvatar_6_BorderColor);--ui5-avatar-accent7-border-color: var(--sapAvatar_7_BorderColor);--ui5-avatar-accent8-border-color: var(--sapAvatar_8_BorderColor);--ui5-avatar-accent9-border-color: var(--sapAvatar_9_BorderColor);--ui5-avatar-accent10-border-color: var(--sapAvatar_10_BorderColor);--_ui5_avatar_outline: var(--sapContent_FocusWidth) var(--sapContent_FocusStyle) var(--sapContent_FocusColor);--_ui5_avatar_focus_offset: .1875rem;--_ui5_avatar_overflow_button_focus_offset: .0625rem;--_ui5_avatar_fontsize_XS: 1rem;--_ui5_avatar_fontsize_S: 1.125rem;--_ui5_avatar_fontsize_M: 1.5rem;--_ui5_avatar_fontsize_L: 2.25rem;--_ui5_avatar_fontsize_XL: 3rem;--_ui5_avatar_icon_XS: var(--_ui5_avatar_fontsize_XS);--_ui5_avatar_icon_S: var(--_ui5_avatar_fontsize_S);--_ui5_avatar_icon_M: var(--_ui5_avatar_fontsize_M);--_ui5_avatar_icon_L: var(--_ui5_avatar_fontsize_L);--_ui5_avatar_icon_XL: var(--_ui5_avatar_fontsize_XL);--_ui5_avatar_group_button_focus_border: none;--_ui5_avatar_group_padding: .3rem;--_ui5-tag-height: 1rem;--_ui5-tag-padding-inline-icon-only: .313rem;--_ui5-tag-text-padding: .1875rem .25rem;--_ui5-tag-text-transform: none;--_ui5-tag-icon-width: .75rem;--_ui5-tag-icon-gap: .25rem;--_ui5-tag-font-weight: normal;--_ui5-tag-letter-spacing: normal;--ui5-tag-text-shadow: var(--sapContent_TextShadow);--ui5-tag-contrast-text-shadow: var(--sapContent_ContrastTextShadow);--ui5-tag-information-text-shadow: var(--ui5-tag-text-shadow);--ui5-tag-set2-color-scheme-1-color: var(--sapIndicationColor_1b_TextColor);--ui5-tag-set2-color-scheme-1-background: var(--sapIndicationColor_1b_Background);--ui5-tag-set2-color-scheme-1-border: var(--sapIndicationColor_1b_BorderColor);--ui5-tag-set2-color-scheme-1-hover-background: var(--sapIndicationColor_1b_Hover_Background);--ui5-tag-set2-color-scheme-1-active-color: var(--sapIndicationColor_1_Active_TextColor);--ui5-tag-set2-color-scheme-1-active-background: var(--sapIndicationColor_1_Active_Background);--ui5-tag-set2-color-scheme-1-active-border: var(--sapIndicationColor_1_Active_BorderColor);--ui5-tag-set2-color-scheme-2-color: var(--sapIndicationColor_2b_TextColor);--ui5-tag-set2-color-scheme-2-background: var(--sapIndicationColor_2b_Background);--ui5-tag-set2-color-scheme-2-border: var(--sapIndicationColor_2b_BorderColor);--ui5-tag-set2-color-scheme-2-hover-background: var(--sapIndicationColor_2b_Hover_Background);--ui5-tag-set2-color-scheme-2-active-color: var(--sapIndicationColor_2_Active_TextColor);--ui5-tag-set2-color-scheme-2-active-background: var(--sapIndicationColor_2_Active_Background);--ui5-tag-set2-color-scheme-2-active-border: var(--sapIndicationColor_2_Active_BorderColor);--ui5-tag-set2-color-scheme-3-color: var(--sapIndicationColor_3b_TextColor);--ui5-tag-set2-color-scheme-3-background: var(--sapIndicationColor_3b_Background);--ui5-tag-set2-color-scheme-3-border: var(--sapIndicationColor_3b_BorderColor);--ui5-tag-set2-color-scheme-3-hover-background: var(--sapIndicationColor_3b_Hover_Background);--ui5-tag-set2-color-scheme-3-active-color: var(--sapIndicationColor_3_Active_TextColor);--ui5-tag-set2-color-scheme-3-active-background: var(--sapIndicationColor_3_Active_Background);--ui5-tag-set2-color-scheme-3-active-border: var(--sapIndicationColor_3_Active_BorderColor);--ui5-tag-set2-color-scheme-4-color: var(--sapIndicationColor_4b_TextColor);--ui5-tag-set2-color-scheme-4-background: var(--sapIndicationColor_4b_Background);--ui5-tag-set2-color-scheme-4-border: var(--sapIndicationColor_4b_BorderColor);--ui5-tag-set2-color-scheme-4-hover-background: var(--sapIndicationColor_4b_Hover_Background);--ui5-tag-set2-color-scheme-4-active-color: var(--sapIndicationColor_4_Active_TextColor);--ui5-tag-set2-color-scheme-4-active-background: var(--sapIndicationColor_4_Active_Background);--ui5-tag-set2-color-scheme-4-active-border: var(--sapIndicationColor_4_Active_BorderColor);--ui5-tag-set2-color-scheme-5-color: var(--sapIndicationColor_5b_TextColor);--ui5-tag-set2-color-scheme-5-background: var(--sapIndicationColor_5b_Background);--ui5-tag-set2-color-scheme-5-border: var(--sapIndicationColor_5b_BorderColor);--ui5-tag-set2-color-scheme-5-hover-background: var(--sapIndicationColor_5b_Hover_Background);--ui5-tag-set2-color-scheme-5-active-color: var(--sapIndicationColor_5_Active_TextColor);--ui5-tag-set2-color-scheme-5-active-background: var(--sapIndicationColor_5_Active_Background);--ui5-tag-set2-color-scheme-5-active-border: var(--sapIndicationColor_5_Active_BorderColor);--ui5-tag-set2-color-scheme-6-color: var(--sapIndicationColor_6b_TextColor);--ui5-tag-set2-color-scheme-6-background: var(--sapIndicationColor_6b_Background);--ui5-tag-set2-color-scheme-6-border: var(--sapIndicationColor_6b_BorderColor);--ui5-tag-set2-color-scheme-6-hover-background: var(--sapIndicationColor_6b_Hover_Background);--ui5-tag-set2-color-scheme-6-active-color: var(--sapIndicationColor_6_Active_TextColor);--ui5-tag-set2-color-scheme-6-active-background: var(--sapIndicationColor_6_Active_Background);--ui5-tag-set2-color-scheme-6-active-border: var(--sapIndicationColor_6_Active_BorderColor);--ui5-tag-set2-color-scheme-7-color: var(--sapIndicationColor_7b_TextColor);--ui5-tag-set2-color-scheme-7-background: var(--sapIndicationColor_7b_Background);--ui5-tag-set2-color-scheme-7-border: var(--sapIndicationColor_7b_BorderColor);--ui5-tag-set2-color-scheme-7-hover-background: var(--sapIndicationColor_7b_Hover_Background);--ui5-tag-set2-color-scheme-7-active-color: var(--sapIndicationColor_7_Active_TextColor);--ui5-tag-set2-color-scheme-7-active-background: var(--sapIndicationColor_7_Active_Background);--ui5-tag-set2-color-scheme-7-active-border: var(--sapIndicationColor_7_Active_BorderColor);--ui5-tag-set2-color-scheme-8-color: var(--sapIndicationColor_8b_TextColor);--ui5-tag-set2-color-scheme-8-background: var(--sapIndicationColor_8b_Background);--ui5-tag-set2-color-scheme-8-border: var(--sapIndicationColor_8b_BorderColor);--ui5-tag-set2-color-scheme-8-hover-background: var(--sapIndicationColor_8b_Hover_Background);--ui5-tag-set2-color-scheme-8-active-color: var(--sapIndicationColor_8_Active_TextColor);--ui5-tag-set2-color-scheme-8-active-background: var(--sapIndicationColor_8_Active_Background);--ui5-tag-set2-color-scheme-8-active-border: var(--sapIndicationColor_8_Active_BorderColor);--ui5-tag-set2-color-scheme-9-color: var(--sapIndicationColor_9b_TextColor);--ui5-tag-set2-color-scheme-9-background: var(--sapIndicationColor_9b_Background);--ui5-tag-set2-color-scheme-9-border: var(--sapIndicationColor_9b_BorderColor);--ui5-tag-set2-color-scheme-9-hover-background: var(--sapIndicationColor_9b_Hover_Background);--ui5-tag-set2-color-scheme-9-active-color: var(--sapIndicationColor_9_Active_TextColor);--ui5-tag-set2-color-scheme-9-active-background: var(--sapIndicationColor_9_Active_Background);--ui5-tag-set2-color-scheme-9-active-border: var(--sapIndicationColor_9_Active_BorderColor);--ui5-tag-set2-color-scheme-10-color: var(--sapIndicationColor_10b_TextColor);--ui5-tag-set2-color-scheme-10-background: var(--sapIndicationColor_10b_Background);--ui5-tag-set2-color-scheme-10-border: var(--sapIndicationColor_10b_BorderColor);--ui5-tag-set2-color-scheme-10-hover-background: var(--sapIndicationColor_10b_Hover_Background);--ui5-tag-set2-color-scheme-10-active-color: var(--sapIndicationColor_10_Active_TextColor);--ui5-tag-set2-color-scheme-10-active-background: var(--sapIndicationColor_10_Active_Background);--ui5-tag-set2-color-scheme-10-active-border: var(--sapIndicationColor_10_Active_BorderColor);--_ui5-tag-height_size_l: 1.5rem;--_ui5-tag-min-width_size_l: 1.75rem;--_ui5-tag-font-size_size_l: 1.25rem;--_ui5-tag-icon_min_width_size_l: 1.25rem;--_ui5-tag-icon_min_height_size_l: 1.25rem;--_ui5-tag-icon_height_size_l: 1.25rem;--_ui5-tag-text_padding_size_l: .125rem .25rem;--_ui5_bar_base_height: var(--_ui5-compact-size, 2.5rem) var(--_ui5-cozy-size, 2.75rem);--_ui5_bar_subheader_height: var(--_ui5-compact-size, 2.25rem) var(--_ui5-cozy-size, 3rem);--_ui5_bar-start-container-padding-start: 1rem;--_ui5_bar-mid-container-padding-start-end: .5rem;--_ui5_bar-end-container-padding-end: 1rem;--_ui5_bar_subheader_margin-top: -.0625rem;--_ui5_breadcrumbs_current_location_color: var(--sapTextColor);--_ui5_breadcrumbs_separator_color: var(--sapTextColor);--_ui5_breadcrumbs_margin: 0 0 .5rem 0;--_ui5_busy_indicator_color: var(--sapContent_BusyColor);--_ui5_busy_indicator_focus_outline: var(--sapContent_FocusWidth) var(--sapContent_FocusStyle) var(--sapContent_FocusColor);--_ui5-button-badge-diameter: var(--_ui5-compact-size, .625rem) var(--_ui5-cozy-size, .75rem);--_ui5-calendar-legend-root-padding: var(--_ui5-compact-size, .5rem) var(--_ui5-cozy-size, .75rem);--_ui5-calendar-legend-root-width: var(--_ui5-compact-size, 16.75rem) var(--_ui5-cozy-size, 18.5rem);--_ui5-calendar-legend-item-box-margin: .25rem;--_ui5-calendar-legend-item-root-focus-border: var(--sapContent_FocusWidth) solid var(--sapContent_FocusColor);--_ui5-calendar-legend-item-root-focus-border-radius: .25rem;--_ui5-calendar-legend-item-root-width: 7.75rem;--_ui5-calendar-legend-item-box-dot-display: block;--_ui5_card_box_shadow: var(--sapContent_Shadow0);--_ui5_card_hover_box_shadow: var(--sapContent_Shadow2);--_ui5_card_border: none;--_ui5_card_border-radius: var(--sapTile_BorderCornerRadius);--_ui5_card_header_padding: 1rem 1rem .75rem 1rem;--_ui5_card_header_hover_bg: var(--sapTile_Hover_Background);--_ui5_card_header_active_bg: var(--sapTile_Active_Background);--_ui5_card_header_border: none;--_ui5_card_header_border_color: var(--sapTile_SeparatorColor);--_ui5_card_header_focus_border: var(--sapContent_FocusWidth) var(--sapContent_FocusStyle) var(--sapContent_FocusColor);--_ui5_card_header_focus_radius: var(--_ui5_card_border-radius);--_ui5_card_header_focus_bottom_radius: 0px;--_ui5_card_header_focus_offset: 0px;--_ui5_card_header_title_font_family: var(--sapFontHeaderFamily);--_ui5_card_header_title_font_size: var(--sapFontHeader6Size);--_ui5_card_header_title_font_weight: normal;--_ui5_card_header_subtitle_margin_top: .25rem;--ui5_carousel_background_color_solid: var(--sapGroup_ContentBackground);--ui5_carousel_background_color_translucent: var(--sapBackgroundColor);--ui5_carousel_button_size: 2.25rem;--ui5_carousel_inactive_dot_size: .25rem;--ui5_carousel_inactive_dot_margin: 0 .375rem;--ui5_carousel_inactive_dot_border: 1px solid var(--sapContent_ForegroundBorderColor);--ui5_carousel_inactive_dot_background: var(--sapContent_ForegroundBorderColor);--ui5_carousel_active_dot_border: 1px solid var(--sapContent_Selected_ForegroundColor);--ui5_carousel_active_dot_background: var(--sapContent_Selected_ForegroundColor);--ui5_carousel_navigation_button_active_box_shadow: none;--_ui5_checkbox_wrapper_padding: var(--_ui5-compact-size, var(--_ui5_checkbox_compact_wrapper_padding)) var(--_ui5-cozy-size, .6875rem);--_ui5_checkbox_width_height: var(--_ui5-compact-size, var(--_ui5_checkbox_compact_width_height)) var(--_ui5-cozy-size, 2.75rem);--_ui5_checkbox_transition: unset;--_ui5_checkbox_disabled_opacity: var(--sapContent_DisabledOpacity);--_ui5_checkbox_border_radius: 0;--_ui5_checkbox_hover_background: var(--sapContent_Selected_Hover_Background);--_ui5_checkbox_active_background: var(--sapContent_Selected_Hover_Background);--_ui5_checkbox_checkmark_warning_color: var(--sapField_WarningColor);--_ui5_checkbox_inner_warning_color: var(--sapField_WarningColor);--_ui5_checkbox_inner_information_color: var(--sapField_InformationColor);--_ui5_checkbox_checkmark_color: var(--sapContent_Selected_ForegroundColor);--_ui5_checkbox_focus_position: var(--_ui5-compact-size, .125rem) var(--_ui5-cozy-size, .3125rem);--_ui5_checkbox_focus_outline: var(--sapContent_FocusWidth) var(--sapContent_FocusStyle) var(--sapContent_FocusColor);--_ui5_checkbox_focus_border_radius: .5rem;--_ui5_checkbox_outer_hover_background: transparent;--_ui5_checkbox_inner_width_height: var(--_ui5-compact-size, var(--_ui5_checkbox_compact_inner_size)) var(--_ui5-cozy-size, 1.375rem);--_ui5_checkbox_inner_border: solid var(--sapField_BorderWidth) var(--sapField_BorderColor);--_ui5_checkbox_inner_hover_border_color: var(--sapField_Hover_BorderColor);--_ui5_checkbox_inner_hover_checked_border_color: var(--sapField_Hover_BorderColor);--_ui5_checkbox_inner_selected_border_color: var(--sapField_BorderColor);--_ui5_checkbox_inner_disabled_border_color: var(--sapField_BorderColor);--_ui5_checkbox_inner_active_border_color: var(--sapField_Hover_BorderColor);--_ui5_checkbox_inner_border_radius: var(--sapField_BorderCornerRadius);--_ui5_checkbox_inner_error_border: var(--sapField_InvalidBorderWidth) solid var(--sapField_InvalidColor);--_ui5_checkbox_inner_warning_border: var(--sapField_WarningBorderWidth) solid var(--sapField_WarningColor);--_ui5_checkbox_inner_information_border: var(--sapField_InformationBorderWidth) solid var(--sapField_InformationColor);--_ui5_checkbox_inner_warning_background_hover: var(--sapField_Hover_Background);--_ui5_checkbox_inner_error_background_hover: var(--sapField_Hover_Background);--_ui5_checkbox_inner_success_background_hover: var(--sapField_Hover_Background);--_ui5_checkbox_inner_information_background_hover: var(--sapField_Hover_Background);--_ui5_checkbox_inner_success_border: var(--sapField_SuccessBorderWidth) solid var(--sapField_SuccessColor);--_ui5_checkbox_inner_readonly_border: var(--sapElement_BorderWidth) var(--sapField_ReadOnly_BorderColor) dashed;--_ui5_checkbox_inner_background: var(--sapField_Background);--_ui5_checkbox_wrapped_focus_padding: .5rem;--_ui5_checkbox_wrapped_focus_inset_block: var(--_ui5-compact-size, .125rem) var(--_ui5-cozy-size, var(--_ui5_checkbox_focus_position));--_ui5_checkbox_compact_wrapper_padding: .5rem;--_ui5_checkbox_compact_width_height: 2rem;--_ui5_checkbox_compact_inner_size: 1rem;--_ui5_checkbox_compact_focus_position: .375rem;--_ui5_checkbox_label_color: var(--sapField_TextColor);--_ui5_checkbox_label_offset: var(--_ui5-compact-size, var(--_ui5_checkbox_compact_wrapper_padding)) var(--_ui5-cozy-size, var(--_ui5_checkbox_wrapper_padding));--_ui5_checkbox_disabled_label_color: var(--sapContent_LabelColor);--_ui5_checkbox_default_focus_border: none;--_ui5_checkbox_focus_outline_display: block;--_ui5_checkbox_right_focus_distance: .3125rem;--_ui5_checkbox_icon_size: var(--_ui5-compact-size, .75rem) var(--_ui5-cozy-size, 1rem);--_ui5_color-palette-item-after-focus-border-radius: .3125rem;--_ui5_color-palette-item-hover-margin: var(--_ui5-compact-size, .0625rem) var(--_ui5-cozy-size, .0625rem);--_ui5_color-palette-row-height: var(--_ui5-compact-size, 7.5rem) var(--_ui5-cozy-size, 9.5rem);--_ui5_color-palette-button-height: var(--_ui5-compact-size, 2rem) var(--_ui5-cozy-size, 3rem);--_ui5_color-palette-item-before-focus-color: .125rem solid var(--sapContent_FocusColor);--_ui5_color-palette-item-before-focus-inset: var(--_ui5-compact-size, -.25rem) var(--_ui5-cozy-size, -.3125rem);--_ui5_color-palette-item-before-focus-hover-inset: -.0625rem;--_ui5_color-palette-item-after-focus-color: .0625rem solid var(--sapContent_ContrastFocusColor);--_ui5_color-palette-item-after-focus-inset: .0625rem;--_ui5_color-palette-item-after-focus-hover-inset: .0625rem;--_ui5_color-palette-item-before-focus-border-radius: .4375rem;--_ui5_color-palette-item-outer-border-radius: .25rem;--_ui5_color-palette-item-inner-border-radius: .1875rem;--_ui5_color-palette-item-hover-outer-border-radius: .4375rem;--_ui5_color-palette-item-hover-inner-border-radius: .375rem;--_ui5_color-palette-item-selected-focused-border-before: -.0625rem;--_ui5_color-palette-item-after-focus-not-selected-border: none;--_ui5_color-palette-item-after-not-focus-color: .0625rem solid var(--sapGroup_ContentBackground);--_ui5_color-palette-item-selected-focused-border: none;--_ui5-color-palette-item-mobile-focus-inset: 0px;--_ui5_color-palette-item-mobile-focus-sides-inset: -.375rem -.375rem;--_ui5_color-palette-item-after-mobile-focus-border: none;--_ui5-color-palette-item-background-color: transparent;--_ui5_color_picker_slider_handle_box_shadow: inset 0 0 0 .125rem var(--sapContent_ContrastShadowColor);--_ui5_color_picker_slider_handle_border: .125rem solid var(--sapField_BorderColor);--_ui5_color_picker_slider_handle_outline_hover: .125rem solid var(--sapContent_FocusColor);--_ui5_color_picker_slider_handle_outline_focus: .125rem solid var(--sapContent_FocusColor);--_ui5_color_picker_slider_handle_inner_border_color: #fff;--_ui5_color_picker_circle_outer_border: .0625rem solid var(--sapContent_ContrastShadowColor);--_ui5_color_picker_circle_inner_border: var(--sapField_Picker_BorderWidth) solid var(--sapField_BorderColor);--_ui5_color_picker_circle_inner_circle_size: .5625rem;--_ui5_color_picker_slider_handle_inline_focus: 1px solid var(--sapContent_ContrastFocusColor);--_ui5_color_picker_slider_handle_container_margin_top: none;--_ui5-datepicker_border_radius: .25rem;--_ui5-datepicker-hover-background: var(--sapField_Hover_Background);--_ui5_daypicker_item_margin: 2px;--_ui5_daypicker_item_border: none;--_ui5_daypicker_item_selected_border_color: var(--sapList_Background);--_ui5_daypicker_daynames_container_height: 2rem;--_ui5_daypicker_weeknumbers_container_padding_top: var(--_ui5-compact-size, 2rem) var(--_ui5-cozy-size, 2rem);--_ui5_daypicker_item_othermonth_background_color: var(--sapList_Background);--_ui5_daypicker_item_othermonth_color: var(--sapContent_LabelColor);--_ui5_daypicker_item_othermonth_hover_color: var(--sapContent_LabelColor);--_ui5_daypicker_item_border_radius: .4375rem;--_ui5_daypicker_dayname_color: var(--sapContent_LabelColor);--_ui5_daypicker_weekname_color: var(--sapContent_LabelColor);--_ui5_daypicker_item_now_selected_outline_offset: -.25rem;--_ui5_daypicker_item_selected_background: transparent;--_ui5_daypicker_item_selected_daytext_hover_background: transparent;--_ui5_daypicker_item_border_radius_focus_after: .1875rem;--_ui5_daypicker_item_selected_between_border: .5rem;--_ui5_daypicker_item_selected_between_background: var(--sapList_SelectionBackgroundColor);--_ui5_daypicker_item_selected_between_text_font: var(--sapFontFamily);--_ui5_daypicker_item_selected_between_hover_background: var(--sapList_Hover_SelectionBackground);--_ui5_daypicker_item_now_box_shadow: inset 0 0 0 .35rem var(--sapList_Background);--_ui5_daypicker_item_selected_text_outline: .0625rem solid var(--sapContent_FocusColor);--_ui5_daypicker_item_now_not_selected_inset: 0;--_ui5_daypicker_item_now_inset: .3125rem;--_ui5_daypicker_item_now_border_color: var(--sapLegend_CurrentDateTime);--_ui5_daypicker_item_weeekend_filter: brightness(105%);--_ui5_daypicker_item_selected_hover: var(--sapList_Hover_Background);--_ui5_daypicker_item_border_radius_item: .5rem;--_ui5_daypicker_two_calendar_item_now_inset: .3125rem;--_ui5_daypicker_item_selected__secondary_type_text_outline: .0625rem solid var(--sapContent_FocusColor);--_ui5_daypicker_two_calendar_item_now_day_text_content: "";--_ui5_daypicker_two_calendar_item_now_selected_border_width: .125rem;--_ui5_daypicker_two_calendar_item_border_radius: .5rem;--_ui5_daypicker_two_calendar_item_border_focus_border_radius: .375rem;--_ui5_daypicker_two_calendar_item_no_selected_inset: 0;--_ui5_daypicker_two_calendar_item_selected_now_border_radius_focus: .1875rem;--_ui5_daypicker_two_calendar_item_no_selected_focus_inset: .1875rem;--_ui5_daypicker_two_calendar_item_no_select_focus_border_radius: .3125rem;--_ui5_dp_two_calendar_item_secondary_text_border_radios: .25rem;--_ui5_daypicker_two_calendar_item_now_selected_border_inset: .125rem;--_ui5_daypicker_special_day_top: var(--_ui5-compact-size, 1.625rem) var(--_ui5-cozy-size, 2.5rem);--_ui5_daypicker_special_day_border_bottom_radius: .5rem;--_ui5_daypicker_special_day_before_border_color: var(--sapList_Background);--_ui5_daypicker_selected_item_special_day_width: calc(100% - .125rem) ;--_ui5_daypicker_selected_item_now_special_day_top: var(--_ui5-compact-size, 1.5625rem) var(--_ui5-cozy-size, 2.4375rem);--_ui5_daypicker_selected_item_now_special_day_width: calc(100% - .1875rem) ;--_ui5_daypicker_selected_item_now_special_day_border_bottom_radius: 0;--_ui5-daypicker_item_selected_now_border_radius: .5rem;--_ui5_daypicker_selected_item_now_special_day_border_bottom_radius_alternate: var(--_ui5-compact-size, .5rem) var(--_ui5-cozy-size, .5rem);--_ui5_daypicker_two_calendar_item_margin_bottom: var(--_ui5-compact-size, 0) var(--_ui5-cozy-size, 0);--_ui5_daypicker_twocalendar_item_special_day_now_inset: .3125rem;--_ui5_daypicker_twocalendar_item_special_day_now_border_radius: .25rem;--_ui5_daypicker_item_now_focus_margin: 0;--_ui5_daypicker_special_day_border_top: none;--_ui5_daypicker_special_day_selected_border_radius_bottom: .25rem;--_ui5_daypicker_specialday_focused_top: var(--_ui5-compact-size, 1.3125rem) var(--_ui5-cozy-size, 2.125rem);--_ui5_daypicker_specialday_focused_width: calc(100% - .75rem) ;--_ui5_daypicker_specialday_focused_border_bottom: var(--_ui5-compact-size, .25rem) var(--_ui5-cozy-size, 0);--_ui5_daypicker_item_now_specialday_top: var(--_ui5-compact-size, 1.4375rem) var(--_ui5-cozy-size, 2.3125rem);--_ui5_daypicker_item_now_specialday_width: calc(100% - .5rem) ;--_ui5_daypicker_twocalendar_item_special_day_after_border_width: .125rem;--_ui5_daypicker_twocalendar_item_special_day_dot: .375rem;--_ui5_daypicker_twocalendar_item_special_day_top: var(--_ui5-compact-size, 1.25rem) var(--_ui5-cozy-size, 2rem);--_ui5_daypicker_twocalendar_item_special_day_right: var(--_ui5-compact-size, 1.25rem) var(--_ui5-cozy-size, 1.4375rem);--_ui5_daypicker_item_selected_border: .0625rem solid var(--sapList_SelectionBorderColor);--_ui5_daypicker_item_not_selected_focus_border: .125rem solid var(--sapContent_FocusColor);--_ui5_daypicker_item_selected_focus_color: var(--sapContent_FocusColor);--_ui5_daypicker_item_selected_focus_width: .125rem;--_ui5_daypicker_item_no_selected_inset: .375rem;--_ui5_daypicker_item_now_border_focus_after: .125rem solid var(--sapContent_FocusColor);--_ui5_daypicker_item_now_border_radius_focus_after: .3125rem;--_ui5_day_picker_item_selected_now_border_focus: .125rem solid var(--sapContent_FocusColor);--_ui5_day_picker_item_selected_now_border_radius_focus: .1875rem;--_ui5_daypicker_item_selected_text_font: var(--sapFontBoldFamily);--_ui5_daypicker_item_now_selected_between_inset: .25rem;--_ui5_daypicker_item_now_selected_between_border: .0625rem solid var(--sapContent_Selected_ForegroundColor);--_ui5_daypicker_item_now_selected_between_border_radius: .1875rem;--_ui5_daypicker_item_select_between_border: 1px solid var(--sapContent_Selected_ForegroundColor);--_ui5-dp-item_withsecondtype_border: .25rem;--_ui5_dialog_header_focus_bottom_offset: 2px;--_ui5_dialog_header_focus_top_offset: 1px;--_ui5_dialog_header_focus_left_offset: 1px;--_ui5_dialog_header_focus_right_offset: 1px;--_ui5_dialog_header_border_radius: var(--sapElement_BorderCornerRadius);--_ui5_dialog_header_state_line_height: .0625rem;--_ui5_file_uploader_display_input_width: calc(100% - var(--_ui5_input_icon_width));--_ui5_file_uploader_tokenizer_width: calc(100% - 2 * var(--_ui5_input_icon_width) - var(--_ui5_input_inner_space_to_tokenizer));--_ui5_table_cell_valign: center;--_ui5_table_cell_min_width: 2.75rem;--_ui5_table_navigated_cell_width: .25rem;--_ui5_first_table_cell_horizontal_padding: 1rem;--_ui5_table_cell_horizontal_padding: .5rem;--_ui5_table_cell_vertical_padding: .25rem;--_ui5_table_row_actions_gap: .25rem;--_ui5_table_row_alternating_background: var(--sapTableRow_AlternatingBackground, var(--sapList_AlternatingBackground));--_ui5_table_row_alternating_hover_background: var(--sapTableRow_AlternatingHoverBackground, var(--sapList_Hover_Background));--_ui5_table_row_alternating_selection_background: var(--sapTableRow_AlternatingSelectionBackground, var(--sapList_SelectionBackgroundColor));--_ui5_table_row_alternating_selection_hover_background: var(--sapTableRow_AlternatingSelectionHoverBackground, var(--sapList_Hover_SelectionBackground));--ui5-group-header-listitem-background-color: var(--sapList_GroupHeaderBackground);--ui5-icon-focus-border-radius: .25rem;--_ui5_input_width: 13.125rem;--_ui5_input_min_width: var(--_ui5-compact-size, 2rem) var(--_ui5-cozy-size, 2.75rem);--_ui5_input_min_width_tokenizer_available: var(--_ui5-compact-size, 2rem) var(--_ui5-cozy-size, 3rem);--_ui5_input_height: var(--_ui5-compact-size, var(--sapElement_Compact_Height)) var(--_ui5-cozy-size, var(--sapElement_Height));--_ui5_input_margin_top_bottom: var(--_ui5-compact-size, .1875rem) var(--_ui5-cozy-size, .25rem);--_ui5_input_hover_border: none;--_ui5_input_value_state_error_hover_background: var(--sapField_Hover_Background);--_ui5_input_background_color: var(--sapField_Background);--_ui5_input_border_radius: var(--sapField_BorderCornerRadius);--_ui5_input_focus_border_radius: .25rem;--_ui5_input_readonly_focus_border_radius: 0;--_ui5-input-border: none;--_ui5_input_placeholder_style: italic;--_ui5_input_placeholder_color: var(--sapField_PlaceholderTextColor);--_ui5_input_bottom_border_height: 0;--_ui5_input_bottom_border_color: transparent;--_ui5_input_focused_border_color: var(--sapField_Hover_BorderColor);--_ui5_input_state_border_width: .125rem;--_ui5_input_information_border_width: .125rem;--_ui5_input_error_font_weight: normal;--_ui5_input_warning_font_weight: normal;--_ui5_input_focus_border_width: 1px;--_ui5_input_error_warning_border_style: none;--_ui5_input_error_warning_font_style: inherit;--_ui5_input_error_warning_text_indent: 0;--_ui5_input_disabled_border_color: var(--sapField_BorderColor);--_ui5-input_disabled_background: var(--sapField_Background);--_ui5_input_readonly_border: none;--_ui5_input_readonly_border_color: var(--sapField_ReadOnly_BorderColor);--_ui5_input_readonly_background: var(--sapField_ReadOnly_Background);--_ui5_input_custom_icon_padding: var(--_ui5-compact-size, .3125rem .5rem .25rem .5rem) var(--_ui5-cozy-size, .625rem .625rem .5625rem .625rem);--_ui5_input_error_warning_custom_icon_padding: var(--_ui5-compact-size, .3125rem .5rem .1875rem .5rem) var(--_ui5-cozy-size, .625rem .625rem .5rem .625rem);--_ui5_input_error_warning_custom_focused_icon_padding: var(--_ui5-compact-size, .3125rem .5rem .25rem .5rem) var(--_ui5-cozy-size, .625rem .625rem .5625rem .625rem);--_ui5_input_information_custom_icon_padding: var(--_ui5-compact-size, .3125rem .5rem .1875rem .5rem) var(--_ui5-cozy-size, .625rem .625rem .5rem .625rem);--_ui5_input_information_custom_focused_icon_padding: var(--_ui5-compact-size, .3125rem .5rem .25rem .5rem) var(--_ui5-cozy-size, .625rem .625rem .5625rem .625rem);--_ui5_input_error_warning_icon_padding: var(--_ui5-compact-size, .3125rem .5rem .1875rem .5rem) var(--_ui5-cozy-size, .625rem .625rem .5rem .625rem);--_ui5_input_error_warning_focused_icon_padding: var(--_ui5-compact-size, .3125rem .5rem .25rem .5rem) var(--_ui5-cozy-size, .625rem .625rem .5625rem .625rem);--_ui5_input_information_icon_padding: var(--_ui5-compact-size, .3125rem .5rem .1875rem .5rem) var(--_ui5-cozy-size, .625rem .625rem .5rem .625rem);--_ui5_input_information_focused_icon_padding: var(--_ui5-compact-size, .3125rem .5rem .25rem .5rem) var(--_ui5-cozy-size, .625rem .625rem .5625rem .625rem);--_ui5_input_disabled_opacity: var(--sapContent_DisabledOpacity);--_ui5_input_icon_min_width: var(--_ui5-compact-size, var(--_ui5_input_compact_min_width)) var(--_ui5-cozy-size, 2.25rem);--_ui5_input_compact_min_width: 2rem;--_ui5_input_transition: none;--_ui5-input-value-state-icon-display: none;--_ui5_input_focused_value_state_error_background: var(--sapField_Hover_Background);--_ui5_input_focused_value_state_warning_background: var(--sapField_Hover_Background);--_ui5_input_focused_value_state_success_background: var(--sapField_Hover_Background);--_ui5_input_focused_value_state_information_background: var(--sapField_Hover_Background);--_ui5_input_value_state_error_border_color: var(--sapField_InvalidColor);--_ui5_input_focused_value_state_error_border_color: var(--sapField_InvalidColor);--_ui5_input_focused_value_state_error_focus_outline_color: var(--sapField_InvalidColor);--_ui5_input_focused_value_state_warning_focus_outline_color: var(--sapField_WarningColor);--_ui5_input_focused_value_state_success_focus_outline_color: var(--sapField_SuccessColor);--_ui5_input_value_state_warning_border_color: var(--sapField_WarningColor);--_ui5_input_focused_value_state_warning_border_color: var(--sapField_WarningColor);--_ui5_input_value_state_success_border_color: var(--sapField_SuccessColor);--_ui5_input_focused_value_state_success_border_color: var(--sapField_SuccessColor);--_ui5_input_value_state_success_border_width: 1px;--_ui5_input_value_state_information_border_color: var(--sapField_InformationColor);--_ui5_input_focused_value_state_information_border_color: var(--sapField_InformationColor);--_ui5_input_focus_offset: 0;--_ui5_input_readonly_focus_offset: .125rem;--ui5_input_focus_pseudo_element_content: "";--_ui5_input_value_state_error_warning_placeholder_font_weight: normal;--_ui5_input_focus_outline_color: var(--sapContent_FocusColor);--_ui5-input_error_placeholder_color: var(--sapField_PlaceholderTextColor);--_ui5_input_icon_width: var(--_ui5-compact-size, 2rem) var(--_ui5-cozy-size, 2.25rem);--_ui5_input_icon_wrapper_height: calc(100% - 1px) ;--_ui5_input_icon_wrapper_state_height: calc(100% - 2px) ;--_ui5_input_icon_wrapper_success_state_height: calc(100% - var(--_ui5_input_value_state_success_border_width));--_ui5-input-icons-count: 0;--_ui5_input_tokenizer_min_width: 3.5rem;--_ui5_input_icon_padding: var(--_ui5-compact-size, .3125rem .5rem .25rem .5rem) var(--_ui5-cozy-size, .625rem .625rem .5625rem .625rem);--_ui5_input_icon_color: var(--sapField_TextColor);--_ui5_input_icon_pressed_color: var(--sapButton_Active_TextColor);--_ui5_input_icon_pressed_bg: var(--sapField_Hover_Background);--_ui5_input_icon_hover_bg: var(--sapField_Focus_Background);--_ui5_input_icon_border_radius: var(--sapField_BorderCornerRadius);--_ui5_input_icon_box_shadow: var(--sapField_Hover_Shadow);--_ui5_input_icon_border: none;--_ui5_input_error_icon_box_shadow: var(--sapContent_Negative_Shadow);--_ui5_input_warning_icon_box_shadow: var(--sapContent_Critical_Shadow);--_ui5_input_information_icon_box_shadow: var(--sapContent_Informative_Shadow);--_ui5_input_success_icon_box_shadow: var(--sapContent_Positive_Shadow);--_ui5_input_icon_error_pressed_color: var(--sapButton_Reject_Selected_TextColor);--_ui5_input_icon_warning_pressed_color: var(--sapButton_Attention_Selected_TextColor);--_ui5_input_icon_information_pressed_color: var(--sapButton_Selected_TextColor);--_ui5_input_icon_success_pressed_color: var(--sapButton_Accept_Selected_TextColor);--_ui5_link_text_decoration: var(--sapLink_TextDecoration);--_ui5_link_hover_text_decoration: var(--sapLink_Hover_TextDecoration);--_ui5_link_focused_hover_text_decoration: none;--_ui5_link_focused_hover_text_color: var(--sapContent_ContrastTextColor);--_ui5_link_active_text_decoration: var(--sapLink_Active_TextDecoration);--_ui5_link_outline: none;--_ui5_link_focus_border-radius: .125rem;--_ui5_link_focus_background_color: var(--sapContent_FocusColor);--_ui5_link_focus_color: var(--sapContent_ContrastTextColor);--_ui5_link_focus_text_decoration: underline;--_ui5_link_subtle_text_decoration: underline;--_ui5_link_subtle_text_decoration_hover: none;--_ui5_link_large_interactive_area_height: 1.5rem;--ui5_list_footer_text_color: var(--sapList_FooterTextColor);--ui5-listitem-background-color: var(--sapList_Background);--ui5-listitem-border-bottom: var(--sapList_BorderWidth) solid var(--sapList_BorderColor);--ui5-listitem-selected-border-bottom: 1px solid var(--sapList_SelectionBorderColor);--ui5-listitem-focused-selected-border-bottom: 1px solid var(--sapList_SelectionBorderColor);--_ui5-listitembase_disabled_opacity: .5;--_ui5_product_switch_item_border: none;--_ui5_menu_popover_border_radius: var(--sapPopover_BorderCornerRadius);--_ui5_menu_item_padding: var(--_ui5-compact-size, 0 .75rem 0 .5rem) var(--_ui5-cozy-size, 0 1rem 0 .75rem);--_ui5_menu_item_submenu_icon_right: var(--_ui5-compact-size, .75rem) var(--_ui5-cozy-size, 1rem);--_ui5_monthpicker_item_margin: .0625rem;--_ui5_monthpicker_item_border: .0625rem solid var(--sapButton_Lite_BorderColor);--_ui5_monthpicker_item_border_radius: .5rem;--_ui5_monthpicker_item_hover_border: .0625rem solid var(--sapButton_Lite_Hover_BorderColor);--_ui5_monthpicker_item_active_border: .0625rem solid var(--sapButton_Lite_Active_BorderColor);--_ui5_monthpicker_item_selected_border: .0625rem solid var(--sapButton_Selected_BorderColor);--_ui5_monthpicker_item_selected_hover_border: .0625rem solid var(--sapButton_Selected_Hover_BorderColor);--_ui5_message_strip_padding: .4375rem 2.5rem .4375rem 2.5rem;--_ui5_message_strip_padding_block_no_icon: .4375rem .4375rem;--_ui5_message_strip_padding_inline_no_icon: 1rem 2.5rem;--_ui5_message_strip_border_width: var(--sapMessage_BorderWidth);--_ui5_message_strip_icon_top: .4375rem;--_ui5_message_strip_close_button_top: .125rem;--_ui5_message_strip_close_button_right: .1875rem;--_ui5_message_strip_close_button_color_set_1_background: var(--sapMessage_Button_Hover_Background);--_ui5_message_strip_close_button_color_set_2_background: var(--sapMessage_Button_Hover_Background);--_ui5_message_strip_close_button_color_set_1_color: var(--sapContent_ContrastIconColor);--_ui5_message_strip_scheme_1_set_2_background: var(--sapIndicationColor_1b);--_ui5_message_strip_scheme_1_set_2_border_color: var(--sapIndicationColor_1b_BorderColor);--_ui5_message_strip_scheme_2_set_2_background: var(--sapIndicationColor_2b);--_ui5_message_strip_scheme_2_set_2_border_color: var(--sapIndicationColor_2b_BorderColor);--_ui5_message_strip_scheme_3_set_2_background: var(--sapIndicationColor_3b);--_ui5_message_strip_scheme_3_set_2_border_color: var(--sapIndicationColor_3b_BorderColor);--_ui5_message_strip_scheme_4_set_2_background: var(--sapIndicationColor_4b);--_ui5_message_strip_scheme_4_set_2_border_color: var(--sapIndicationColor_4b_BorderColor);--_ui5_message_strip_scheme_5_set_2_background: var(--sapIndicationColor_5b);--_ui5_message_strip_scheme_5_set_2_border_color: var(--sapIndicationColor_5b_BorderColor);--_ui5_message_strip_scheme_6_set_2_background: var(--sapIndicationColor_6b);--_ui5_message_strip_scheme_6_set_2_border_color: var(--sapIndicationColor_6b_BorderColor);--_ui5_message_strip_scheme_7_set_2_background: var(--sapIndicationColor_7b);--_ui5_message_strip_scheme_7_set_2_border_color: var(--sapIndicationColor_7b_BorderColor);--_ui5_message_strip_scheme_8_set_2_background: var(--sapIndicationColor_8b);--_ui5_message_strip_scheme_8_set_2_border_color: var(--sapIndicationColor_8b_BorderColor);--_ui5_message_strip_scheme_9_set_2_background: var(--sapIndicationColor_9b);--_ui5_message_strip_scheme_9_set_2_border_color: var(--sapIndicationColor_9b_BorderColor);--_ui5_message_strip_scheme_10_set_2_background: var(--sapIndicationColor_10b);--_ui5_message_strip_scheme_10_set_2_border_color: var(--sapIndicationColor_10b_BorderColor);--_ui5_panel_focus_border: var(--sapContent_FocusWidth) var(--sapContent_FocusStyle) var(--sapContent_FocusColor);--_ui5_panel_header_height: var(--_ui5-compact-size, 2rem) var(--_ui5-cozy-size, 2.75rem);--_ui5_panel_button_root_width: var(--_ui5-compact-size, 2.75rem) var(--_ui5-cozy-size, 2.75rem);--_ui5_panel_button_root_height: var(--_ui5-compact-size, 2rem) var(--_ui5-cozy-size, 2.75rem);--_ui5_panel_border_radius: var(--sapGroup_BorderCornerRadius);--_ui5_panel_border_radius_expanded: var(--sapElement_BorderCornerRadius) var(--sapElement_BorderCornerRadius) 0 0;--_ui5_panel_default_header_border: .0625rem solid var(--sapGroup_TitleBorderColor);--_ui5_panel_border_bottom: none;--_ui5_panel_icon_color: var(--sapButton_Lite_TextColor);--_ui5_panel_header_padding_right: .5rem;--_ui5_panel_header_button_wrapper_padding: var(--_ui5-compact-size, .1875rem .25rem) var(--_ui5-cozy-size, .25rem);--_ui5_panel_focus_offset: 0px;--_ui5_panel_focus_bottom_offset: -1px;--_ui5_panel_content_padding: .625rem 1rem;--_ui5_panel_header_background_color: var(--sapGroup_TitleBackground);--_ui5_popover_background: var(--sapGroup_ContentBackground);--_ui5_popover_box_shadow: var(--sapContent_Shadow2);--_ui5_popover_no_arrow_box_shadow: var(--sapContent_Shadow1);--_ui5_popup_content_padding_s: 1rem;--_ui5_popup_content_padding_m_l: 2rem;--_ui5_popup_content_padding_xl: 3rem;--_ui5_popup_header_footer_padding_s: 1rem;--_ui5_popup_header_footer_padding_m_l: 2rem;--_ui5_popup_header_footer_padding_xl: 3rem;--_ui5_popup_viewport_margin: 10px;--_ui5_popup_header_prop_header_text_alignment: flex-start;--_ui5_popup_border_radius: .5rem;--_ui5_popup_header_shadow: var(--sapContent_HeaderShadow);--_ui5_popup_header_border: none;--_ui5_popup_block_layer_background: var(--sapBlockLayer_Background);--_ui5_popup_block_layer_opacity: .2;--_ui5_progress_indicator_background_none: var(--sapProgress_Background);--_ui5_progress_indicator_background_error: var(--sapProgress_NegativeBackground);--_ui5_progress_indicator_background_warning: var(--sapProgress_CriticalBackground);--_ui5_progress_indicator_background_success: var(--sapProgress_PositiveBackground);--_ui5_progress_indicator_background_information: var(--sapProgress_InformationBackground);--_ui5_progress_indicator_value_state_none: var(--sapProgress_Value_Background);--_ui5_progress_indicator_value_state_error: var(--sapProgress_Value_NegativeBackground);--_ui5_progress_indicator_value_state_warning: var(--sapProgress_Value_CriticalBackground);--_ui5_progress_indicator_value_state_success: var(--sapProgress_Value_PositiveBackground);--_ui5_progress_indicator_value_state_information: var(--sapProgress_Value_InformationBackground);--_ui5_progress_indicator_border_color_error: var(--sapErrorBorderColor);--_ui5_progress_indicator_border_color_warning: var(--sapWarningBorderColor);--_ui5_progress_indicator_border_color_success: var(--sapSuccessBorderColor);--_ui5_progress_indicator_border_color_information: var(--sapInformationBorderColor);--_ui5_progress_indicator_color: var(--sapField_TextColor);--_ui5_progress_indicator_bar_color: var(--sapProgress_TextColor);--_ui5_progress_indicator_border: none;--_ui5_progress_indicator_bar_border_max: none;--_ui5_progress_indicator_icon_visibility: inline-block;--_ui5_progress_indicator_side_points_visibility: block;--_ui5_progress_indicator_padding_novalue: .3125rem;--_ui5_progress_indicator_host_height: unset;--_ui5_progress_indicator_root_border_radius: .25rem;--_ui5_progress_indicator_root_height: .375rem;--_ui5_progress_indicator_root_overflow: visible;--_ui5_progress_indicator_bar_height: .625rem;--_ui5_progress_indicator_bar_border_radius: .5rem;--_ui5_progress_indicator_remaining_bar_overflow: visible;--_ui5_progress_indicator_icon_size: var(--sapFontLargeSize);--_ui5_progress_indicator_value_margin: 0 0 .1875rem 0;--_ui5_progress_indicator_padding: 1.25rem 0 .75rem 0;--_ui5_progress_indicator_padding_end: 1.25rem;--_ui5_progress_indicator_host_box_sizing: border-box;--_ui5_progress_indicator_root_position: relative;--_ui5_progress_indicator_root_min_height: .375rem;--_ui5_progress_indicator_remaining_bar_border_radius: 0 .5rem .5rem 0;--_ui5_progress_indicator_remaining_bar_position: absolute;--_ui5_progress_indicator_remaining_bar_width: 100%;--_ui5_progress_indicator_icon_position: absolute;--_ui5_progress_indicator_icon_right_position: -1.25rem;--_ui5_progress_indicator_value_position: absolute;--_ui5_progress_indicator_value_top_position: -1.3125rem;--_ui5_progress_indicator_value_left_position: 0;--_ui5_progress_indicator_value_state_error_icon_color: var(--sapProgress_Value_NegativeTextColor);--_ui5_progress_indicator_value_state_warning_icon_color: var(--sapProgress_Value_CriticalTextColor);--_ui5_progress_indicator_value_state_success_icon_color: var(--sapProgress_Value_PositiveTextColor);--_ui5_progress_indicator_value_state_information_icon_color: var(--sapProgress_Value_InformationTextColor);--_ui5_rating_indicator_border_radius: .5rem;--_ui5_rating_indicator_outline_offset: -.125rem;--_ui5_rating_indicator_item_height: var(--_ui5-compact-size, 1em) var(--_ui5-cozy-size, 1em);--_ui5_rating_indicator_item_width: var(--_ui5-compact-size, 1em) var(--_ui5-cozy-size, 1em);--_ui5_rating_indicator_readonly_item_height: var(--_ui5-compact-size, .75em) var(--_ui5-cozy-size, .75em);--_ui5_rating_indicator_readonly_item_width: var(--_ui5-compact-size, .75em) var(--_ui5-cozy-size, .75em);--_ui5_rating_indicator_readonly_item_spacing: .1875rem .1875rem;--_ui5_rating_indicator_component_spacing: var(--_ui5-compact-size, .5rem 0px) var(--_ui5-cozy-size, .5rem 0px);--_ui5_rating_indicator_component_padding: .25rem;--_ui5_rating_indicator_item_size_s: 1.375rem;--_ui5_rating_indicator_item_size_l: 2rem;--_ui5_segmented_btn_item_border_left: .0625rem;--_ui5_segmented_btn_item_border_right: .0625rem;--_ui5_segmented_btn_background_color: var(--sapButton_Lite_Background);--_ui5_segmented_btn_border_color: var(--sapButton_Lite_BorderColor);--_ui5_segmented_btn_hover_box_shadow: none;--_ui5_button_focused_border: .125rem solid var(--sapContent_FocusColor);--_ui5_button_focused_border_radius: .375rem;--_ui5_button_focused_inner_border_radius: .375rem;--_ui5_button_base_min_width: var(--_ui5-compact-size, 2rem) var(--_ui5-cozy-size, 2.25rem);--_ui5_button_base_height: var(--_ui5-compact-size, var(--sapElement_Compact_Height)) var(--_ui5-cozy-size, var(--sapElement_Height));--_ui5_button_border_radius: var(--sapButton_BorderCornerRadius);--_ui5_button_base_padding: var(--_ui5-compact-size, .4375rem) var(--_ui5-cozy-size, .5625rem);--_ui5_button_base_icon_margin: .375rem;--_ui5_button_text_shadow: none;--_ui5_button_pressed_focused_border_color: var(--sapContent_FocusColor);--_ui5_button_fontFamily: var(--sapButton_FontFamily);--_ui5_button_emphasized_focused_border_color: var(--sapContent_ContrastFocusColor);--_ui5_button_emphasized_focused_border_before: .125rem solid var(--sapContent_FocusColor);--_ui5_button_emphasized_focused_active_border_color: transparent;--_ui5_button_emphasized_border_width: .0625rem;--_ui5_radio_button_min_width: var(--_ui5-compact-size, 2rem) var(--_ui5-cozy-size, 2.75rem);--_ui5_radio_button_hover_fill: var(--sapField_Selector_Hover_Background);--_ui5_radio_button_hover_fill_error: var(--sapField_Selector_Hover_InvalidBackground);--_ui5_radio_button_hover_fill_warning: var(--sapField_Selector_Hover_WarningBackground);--_ui5_radio_button_hover_fill_success: var(--sapField_Selector_Hover_SuccessBackground);--_ui5_radio_button_hover_fill_information: var(--sapField_Selector_Hover_InformationBackground);--_ui5_radio_button_border_width: var(--sapContent_FocusWidth);--_ui5_radio_button_checked_fill: var(--sapSelectedColor);--_ui5_radio_button_checked_error_fill: var(--sapField_InvalidColor);--_ui5_radio_button_checked_warning_fill: var(--sapField_WarningColor);--_ui5_radio_button_checked_success_fill: var(--sapField_SuccessColor);--_ui5_radio_button_checked_information_fill: var(--sapField_InformationColor);--_ui5_radio_button_warning_error_border_dash: 0;--_ui5_radio_button_outer_ring_color: var(--sapField_BorderColor);--_ui5_radio_button_outer_ring_width: var(--sapField_BorderWidth);--_ui5_radio_button_outer_ring_bg: var(--sapField_Background);--_ui5_radio_button_outer_ring_hover_color: var(--sapField_Hover_BorderColor);--_ui5_radio_button_outer_ring_active_color: var(--sapField_Hover_BorderColor);--_ui5_radio_button_outer_ring_checked_hover_color: var(--sapField_Hover_BorderColor);--_ui5_radio_button_outer_ring_padding: var(--_ui5-compact-size, 0 .5rem) var(--_ui5-cozy-size, 0 .6875rem);--_ui5_radio_button_outer_ring_padding_with_label: var(--_ui5-compact-size, 0 .5rem) var(--_ui5-cozy-size, 0 .6875rem);--_ui5_radio_button_border_radius: .5rem;--_ui5_radio_button_border: none;--_ui5_radio_button_focus_outline: block;--_ui5_radio_button_focus_dist: var(--_ui5-compact-size, .1875rem) var(--_ui5-cozy-size, .375rem);--_ui5_radio_button_color: var(--sapField_BorderColor);--_ui5_radio_button_label_offset: 1px;--_ui5_radio_button_label_color: var(--sapField_TextColor);--_ui5_radio_button_inner_ring_radius: 27.5%;--_ui5_radio_button_read_only_border_type: 4, 2;--_ui5_radio_button_inner_ring_color: var(--sapContent_Selected_ForegroundColor);--_ui5_radio_button_information_border_width: var(--sapField_InformationBorderWidth);--_ui5_radio_button_read_only_border_width: var(--sapElement_BorderWidth);--_ui5_radio_button_read_only_inner_ring_color: var(--sapField_TextColor);--_ui5_switch_height: var(--_ui5-compact-size, 2rem) var(--_ui5-cozy-size, 2.75rem);--_ui5_switch_width: var(--_ui5-compact-size, 2.75rem) var(--_ui5-cozy-size, 2.5rem);--_ui5_switch_min_width: var(--_ui5-compact-size, none) var(--_ui5-cozy-size, none);--_ui5_switch_with_label_width: var(--_ui5-compact-size, 2.75rem) var(--_ui5-cozy-size, 2.875rem);--_ui5_switch_focus_outline: none;--_ui5_switch_root_outline_top: var(--_ui5-compact-size, .25rem) var(--_ui5-cozy-size, .5rem);--_ui5_switch_root_outline_bottom: var(--_ui5-compact-size, .25rem) var(--_ui5-cozy-size, .5rem);--_ui5_switch_root_outline_left: -.125rem;--_ui5_switch_root_outline_right: -.125rem;--_ui5_switch_foucs_border_size: 1px;--_ui5-switch-root-border-radius: 0;--_ui5-switch-root-box-shadow: none;--_ui5_switch_root_after_outline: .125rem solid var(--sapContent_FocusColor);--_ui5_switch_disabled_opacity: var(--sapContent_DisabledOpacity);--_ui5_switch_transform: var(--_ui5-compact-size, translateX(100%) translateX(-1.375rem)) var(--_ui5-cozy-size, translateX(100%) translateX(-1.625rem));--_ui5_switch_transform_with_label: var(--_ui5-compact-size, translateX(100%) translateX(-1.875rem)) var(--_ui5-cozy-size, translateX(100%) translateX(-1.875rem));--_ui5_switch_rtl_transform: var(--_ui5-compact-size, translateX(1.375rem) translateX(-100%)) var(--_ui5-cozy-size, translateX(-100%) translateX(1.625rem));--_ui5_switch_rtl_transform_with_label: var(--_ui5-compact-size, translateX(1.875rem) translateX(-100%)) var(--_ui5-cozy-size, translateX(-100%) translateX(1.875rem));--_ui5_switch_track_with_label_width: var(--_ui5-compact-size, 2.75rem) var(--_ui5-cozy-size, 2.875rem);--_ui5_switch_track_with_label_height: var(--_ui5-compact-size, 1.25rem) var(--_ui5-cozy-size, 1.5rem);--_ui5_switch_track_width: var(--_ui5-compact-size, 2.75rem) var(--_ui5-cozy-size, 2.5rem);--_ui5_switch_track_height: var(--_ui5-compact-size, 1.25rem) var(--_ui5-cozy-size, 1.5rem);--_ui5_switch_track_border_radius: .75rem;--_ui5-switch-track-border: 1px solid;--_ui5_switch_track_active_background_color: var(--sapButton_Track_Selected_Background);--_ui5_switch_track_inactive_background_color: var(--sapButton_Track_Background);--_ui5_switch_track_hover_active_background_color: var(--sapButton_Track_Selected_Hover_Background);--_ui5_switch_track_hover_inactive_background_color: var(--sapButton_Track_Hover_Background);--_ui5_switch_track_active_border_color: var(--sapButton_Track_Selected_BorderColor);--_ui5_switch_track_inactive_border_color: var(--sapButton_Track_BorderColor);--_ui5_switch_track_hover_active_border_color: var(--sapButton_Track_Selected_Hover_BorderColor);--_ui5_switch_track_hover_inactive_border_color: var(--sapButton_Track_Hover_BorderColor);--_ui5_switch_track_semantic_accept_background_color: var(--sapButton_Track_Positive_Background);--_ui5_switch_track_semantic_reject_background_color: var(--sapButton_Track_Negative_Background);--_ui5_switch_track_semantic_hover_accept_background_color: var(--sapButton_Track_Positive_Hover_Background);--_ui5_switch_track_semantic_hover_reject_background_color: var(--sapButton_Track_Negative_Hover_Background);--_ui5_switch_track_semantic_accept_border_color: var(--sapButton_Track_Positive_BorderColor);--_ui5_switch_track_semantic_reject_border_color: var(--sapButton_Track_Negative_BorderColor);--_ui5_switch_track_semantic_hover_accept_border_color: var(--sapButton_Track_Positive_Hover_BorderColor);--_ui5_switch_track_semantic_hover_reject_border_color: var(--sapButton_Track_Negative_Hover_BorderColor);--_ui5_switch_track_transition: none;--_ui5_switch_track_icon_display: inline-block;--_ui5_switch_handle_width: var(--_ui5-compact-size, 1.25rem) var(--_ui5-cozy-size, 1.5rem);--_ui5_switch_handle_height: var(--_ui5-compact-size, 1rem) var(--_ui5-cozy-size, 1.25rem);--_ui5_switch_handle_with_label_width: var(--_ui5-compact-size, 1.75rem) var(--_ui5-cozy-size, 1.75rem);--_ui5_switch_handle_with_label_height: var(--_ui5-compact-size, 1rem) var(--_ui5-cozy-size, 1.25rem);--_ui5_switch_handle_border: var(--_ui5_switch_handle_border_width) solid var(--sapButton_Handle_BorderColor);--_ui5_switch_handle_border_width: .125rem;--_ui5_switch_handle_border_radius: 1rem;--_ui5_switch_handle_active_background_color: var(--sapButton_Handle_Selected_Background);--_ui5_switch_handle_inactive_background_color: var(--sapButton_Handle_Background);--_ui5_switch_handle_hover_active_background_color: var(--sapButton_Handle_Selected_Hover_Background);--_ui5_switch_handle_hover_inactive_background_color: var(--sapButton_Handle_Hover_Background);--_ui5_switch_handle_active_border_color: var(--sapButton_Handle_Selected_BorderColor);--_ui5_switch_handle_inactive_border_color: var(--sapButton_Handle_BorderColor);--_ui5_switch_handle_hover_active_border_color: var(--sapButton_Handle_Selected_BorderColor);--_ui5_switch_handle_hover_inactive_border_color: var(--sapButton_Handle_BorderColor);--_ui5_switch_handle_semantic_accept_background_color: var(--sapButton_Handle_Positive_Background);--_ui5_switch_handle_semantic_reject_background_color: var(--sapButton_Handle_Negative_Background);--_ui5_switch_handle_semantic_hover_accept_background_color: var(--sapButton_Handle_Positive_Hover_Background);--_ui5_switch_handle_semantic_hover_reject_background_color: var(--sapButton_Handle_Negative_Hover_Background);--_ui5_switch_handle_semantic_accept_border_color: var(--sapButton_Handle_Positive_BorderColor);--_ui5_switch_handle_semantic_reject_border_color: var(--sapButton_Handle_Negative_BorderColor);--_ui5_switch_handle_semantic_hover_accept_border_color: var(--sapButton_Handle_Positive_BorderColor);--_ui5_switch_handle_semantic_hover_reject_border_color: var(--sapButton_Handle_Negative_BorderColor);--_ui5_switch_handle_on_hover_box_shadow: 0 0 0 .125rem var(--sapButton_Handle_Selected_Hover_BorderColor);--_ui5_switch_handle_off_hover_box_shadow: 0 0 0 .125rem var(--sapButton_Handle_Hover_BorderColor);--_ui5_switch_handle_semantic_on_hover_box_shadow: 0 0 0 .125rem var(--sapButton_Handle_Positive_Hover_BorderColor);--_ui5_switch_handle_semantic_off_hover_box_shadow: 0 0 0 .125rem var(--sapButton_Handle_Negative_Hover_BorderColor);--_ui5_switch_handle_left: .0625rem;--_ui5-switch-slider-texts-display: inline;--_ui5_switch_text_font_family: var(--sapContent_IconFontFamily);--_ui5_switch_text_font_size: var(--_ui5-compact-size, var(--sapFontSize)) var(--_ui5-cozy-size, var(--sapFontLargeSize));--_ui5_switch_text_with_label_font_family: "72-Condensed-Bold", "72", "72full", Arial, Helvetica, sans-serif;--_ui5_switch_text_with_label_font_size: var(--sapFontSmallSize);--_ui5_switch_text_with_label_width: 1.75rem;--_ui5_switch_text_width: var(--_ui5-compact-size, 1rem) var(--_ui5-cozy-size, 1.25rem);--_ui5_switch_text_inactive_left: .1875rem;--_ui5_switch_text_inactive_left_alternate: .0625rem;--_ui5_switch_text_inactive_right: auto;--_ui5_switch_text_inactive_right_alternate: 0;--_ui5_switch_text_active_left: var(--_ui5-compact-size, .1875rem) var(--_ui5-cozy-size, .1875rem);--_ui5_switch_text_active_left_alternate: .0625rem;--_ui5_switch_text_active_color: var(--sapButton_Handle_Selected_TextColor);--_ui5_switch_text_inactive_color: var(--sapButton_Handle_TextColor);--_ui5_switch_text_semantic_accept_color: var(--sapButton_Handle_Positive_TextColor);--_ui5_switch_text_semantic_reject_color: var(--sapButton_Handle_Negative_TextColor);--_ui5_switch_text_overflow: hidden;--_ui5_switch_text_z_index: 1;--_ui5_switch_text_hidden: hidden;--_ui5_switch_text_min_width: none;--_ui5_switch_icon_width: 1rem;--_ui5_switch_icon_height: 1rem;--_ui5_switch_readonly_track_border_style: dashed;--_ui5_switch_readonly_handle_border_style: solid;--_ui5_switch_root_after_boreder_radius: 1rem;--_ui5_select_hover_icon_left_border: none;--_ui5_select_label_color: var(--sapField_TextColor);--_ui5_select_icon_width: var(--_ui5-compact-size, 2rem) var(--_ui5-cozy-size, 2.25rem);--_ui5_select_icon_wrapper_height: calc(100% - .0625rem) ;--_ui5_select_icon_wrapper_state_height: calc(100% - .125rem) ;--_ui5_split_button_focused_border: .125rem solid var(--sapContent_FocusColor);--_ui5_split_button_focused_border_radius: .375rem;--_ui5_split_button_middle_separator_left: -.0625rem;--_ui5_split_button_middle_separator_hover_display: none;--_ui5_split_button_text_button_right_border_width: .0625rem;--_ui5_split_button_transparent_hover_background: var(--sapButton_Lite_Hover_Background);--_ui5_split_button_host_transparent_hover_background: transparent;--_ui5_split_button_transparent_hover_color: var(--sapButton_TextColor);--_ui5_split_button_transparent_disabled_background: transparent;--_ui5_split_button_inner_focused_border_radius_inner: .375rem;--_ui5_split_button_emphasized_separator_color: transparent;--_ui5_split_button_positive_separator_color: transparent;--_ui5_split_button_negative_separator_color: transparent;--_ui5_split_button_attention_separator_color: transparent;--_ui5_split_button_attention_separator_color_default: var(--sapButton_Attention_TextColor);--_ui5_split_button_host_default_box_shadow: inset 0 0 0 var(--sapButton_BorderWidth) var(--sapButton_BorderColor);--_ui5_split_button_host_attention_box_shadow: inset 0 0 0 var(--sapButton_BorderWidth) var(--sapButton_Attention_BorderColor);--_ui5_split_button_host_emphasized_box_shadow: inset 0 0 0 var(--sapButton_BorderWidth) var(--sapButton_Emphasized_BorderColor);--_ui5_split_button_host_positive_box_shadow: inset 0 0 0 var(--sapButton_BorderWidth) var(--sapButton_Accept_BorderColor);--_ui5_split_button_host_negative_box_shadow: inset 0 0 0 var(--sapButton_BorderWidth) var(--sapButton_Reject_BorderColor);--_ui5_split_button_host_transparent_box_shadow: inset 0 0 0 var(--sapButton_BorderWidth) var(--sapButton_Lite_BorderColor);--_ui5_split_button_host_transparent_hover_box_shadow: inset 0 0 0 var(--sapButton_BorderWidth) var(--sapButton_BorderColor);--_ui5_split_text_button_border_color: transparent;--_ui5_split_text_button_background_color: transparent;--_ui5_split_text_button_emphasized_border: var(--sapButton_BorderWidth) solid var(--sapButton_Emphasized_BorderColor);--_ui5_split_text_button_emphasized_border_width: .0625rem;--_ui5_split_text_button_hover_border: var(--sapButton_BorderWidth) solid var(--sapButton_BorderColor);--_ui5_split_text_button_positive_hover_border: var(--sapButton_BorderWidth) solid var(--sapButton_Accept_BorderColor);--_ui5_split_text_button_negative_hover_border: var(--sapButton_BorderWidth) solid var(--sapButton_Reject_BorderColor);--_ui5_split_text_button_attention_hover_border: var(--sapButton_BorderWidth) solid var(--sapButton_Attention_BorderColor);--_ui5_split_text_button_transparent_hover_border: var(--sapButton_BorderWidth) solid var(--sapButton_BorderColor);--_ui5_split_arrow_button_hover_border: var(--sapButton_BorderWidth) solid var(--sapButton_BorderColor);--_ui5_split_arrow_button_emphasized_hover_border: var(--sapButton_BorderWidth) solid var(--sapButton_Emphasized_BorderColor);--_ui5_split_arrow_button_positive_hover_border: var(--sapButton_BorderWidth) solid var(--sapButton_Accept_BorderColor);--_ui5_split_arrow_button_negative_hover_border: var(--sapButton_BorderWidth) solid var(--sapButton_Reject_BorderColor);--_ui5_split_arrow_button_attention_hover_border: var(--sapButton_BorderWidth) solid var(--sapButton_Attention_BorderColor);--_ui5_split_arrow_button_transparent_hover_border: var(--sapButton_BorderWidth) solid var(--sapButton_BorderColor);--_ui5_split_text_button_hover_border_right: var(--sapButton_BorderWidth) solid var(--sapButton_BorderColor);--_ui5_split_text_button_positive_hover_border_right: var(--sapButton_BorderWidth) solid var(--sapButton_Accept_BorderColor);--_ui5_split_text_button_negative_hover_border_right: var(--sapButton_BorderWidth) solid var(--sapButton_Reject_BorderColor);--_ui5_split_text_button_attention_hover_border_right: var(--sapButton_BorderWidth) solid var(--sapButton_Attention_BorderColor);--_ui5_split_text_button_transparent_hover_border_right: var(--sapButton_BorderWidth) solid var(--sapButton_BorderColor);--_ui5_split_button_middle_separator_hover_display_emphasized: none;--_ui5_tc_header_height: var(--_ui5-compact-size, var(--_ui5_tc_item_height)) var(--_ui5-cozy-size, var(--_ui5_tc_item_height));--_ui5_tc_header_height_text_only: var(--_ui5_tc_item_text_only_height);--_ui5_tc_header_height_text_with_additional_text: var(--_ui5_tc_item_text_only_with_additional_text_height);--_ui5_tc_header_box_shadow: var(--sapContent_HeaderShadow);--_ui5_tc_header_border_bottom: .0625rem solid var(--sapObjectHeader_Background);--_ui5_tc_header_background: var(--sapObjectHeader_Background);--_ui5_tc_header_background_translucent: var(--sapObjectHeader_Background);--_ui5_tc_content_background: var(--sapBackgroundColor);--_ui5_tc_content_background_translucent: var(--sapGroup_ContentBackground);--_ui5_tc_headeritem_padding: 1rem;--_ui5_tc_headerItem_color: var(--sapTab_TextColor);--_ui5_tc_headerItem_additional_text_color: var(--sapContent_LabelColor);--_ui5_tc_headerItem_text_hover_color: var(--sapTab_Selected_TextColor);--_ui5_tc_headerItem_text_selected_color: var(--sapTab_Selected_TextColor);--_ui5_tc_headerItem_text_selected_hover_color: var(--sapSelectedColor);--_ui5_tc_headeritem_text_font_weight: normal;--_ui5_tc_headerItem_additional_text_font_weight: normal;--_ui5_tc_headerItem_neutral_border_color: var(--sapTab_Neutral_ForegroundColor);--_ui5_tc_headerItem_transition: none;--_ui5_tc_headerItemContent_border_radius: .125rem .125rem 0 0;--_ui5_tc_headerItemContent_border_bg: transparent;--_ui5_tc_headerItem_neutral_border_bg: transparent;--_ui5_tc_headerItem_positive_border_bg: transparent;--_ui5_tc_headerItem_negative_border_bg: transparent;--_ui5_tc_headerItem_critical_border_bg: transparent;--_ui5_tc_headerItemContent_border_height: 0;--_ui5_tc_headerItem_focus_border: .125rem solid var(--sapContent_FocusColor);--_ui5_tc_headerItem_text_focus_border_offset_left: 0px;--_ui5_tc_headerItem_text_focus_border_offset_right: 0px;--_ui5_tc_headerItem_text_focus_border_offset_top: 0px;--_ui5_tc_headerItem_text_focus_border_offset_bottom: 0px;--_ui5_tc_headerItem_mixed_mode_focus_border_offset_left: .75rem;--_ui5_tc_headerItem_mixed_mode_focus_border_offset_right: .625rem;--_ui5_tc_headerItem_mixed_mode_focus_border_offset_top: .75rem;--_ui5_tc_headerItem_mixed_mode_focus_border_offset_bottom: .75rem;--_ui5_tc_headerItemContent_default_focus_border: none;--_ui5_tc_headerItemContent_focus_border_radius: 0;--_ui5_tc_headerItemSemanticIcon_display: none;--_ui5_tc_headerItemSemanticIcon_size: .75rem;--_ui5_tc_headerItem_focus_border_radius: .375rem;--_ui5_tc_mixedMode_itemText_color: var(--sapTextColor);--_ui5_tc_mixedMode_itemText_font_family: var(--sapFontFamily);--_ui5_tc_mixedMode_itemText_font_size: var(--sapFontSmallSize);--_ui5_tc_mixedMode_itemText_font_weight: normal;--_ui5_tc_headerItem_expand_button_margin_inline_start: 0rem;--_ui5_tc_headerItem_single_click_expand_button_margin_inline_start: .25rem;--_ui5_tc_headerItem_expand_button_border_radius: .25rem;--_ui5_tc_headerItem_expand_button_separator_display: inline-block;--_ui5_tc_overflowItem_positive_color: var(--sapPositiveColor);--_ui5_tc_overflowItem_negative_color: var(--sapNegativeColor);--_ui5_tc_overflowItem_critical_color: var(--sapCriticalColor);--_ui5_tc_overflowItem_focus_offset: .125rem;--_ui5_tc_overflowItem_indent: .5rem;--_ui5_tc_overflowItem_extra_indent: 0rem;--_ui5_tc_headerItemIcon_border: .125rem solid var(--sapTab_ForegroundColor);--_ui5_tc_headerItemIcon_semantic_selected_color: var(--sapGroup_ContentBackground);--_ui5_tc_overflowItem_default_color: var(--sapTab_TextColor);--_ui5_tc_overflowItem_current_color: CurrentColor;--_ui5_tc_content_border_bottom: .0625rem solid var(--sapObjectHeader_BorderColor);--_ui5_tc_headerItem_focus_border_offset: -5px;--_ui5_tc_headerItemIcon_focus_border_radius: 50%;--_ui5_tc_overflow_text_color: var(--sapTextColor);--_ui5_text_max_lines: initial;--_ui5_textarea_state_border_width: .125rem;--_ui5_textarea_information_border_width: .125rem;--_ui5_textarea_placeholder_font_style: italic;--_ui5_textarea_value_state_error_warning_placeholder_font_weight: normal;--_ui5_textarea_error_placeholder_font_style: italic;--_ui5_textarea_error_placeholder_color: var(--sapField_PlaceholderTextColor);--_ui5_textarea_error_hover_background_color: var(--sapField_Hover_Background);--_ui5_textarea_hover_border: none;--_ui5_textarea_error_warning_border_style: none;--_ui5_textarea_disabled_opacity: .4;--_ui5_textarea_line_height: 1.5;--_ui5_textarea_focus_pseudo_element_content: "";--_ui5_textarea_focused_value_state_error_background: var(--sapField_Hover_Background);--_ui5_textarea_focused_value_state_warning_background: var(--sapField_Hover_Background);--_ui5_textarea_focused_value_state_success_background: var(--sapField_Hover_Background);--_ui5_textarea_focused_value_state_information_background: var(--sapField_Hover_Background);--_ui5_textarea_focused_value_state_error_focus_outline_color: var(--sapField_InvalidColor);--_ui5_textarea_focused_value_state_warning_focus_outline_color: var(--sapField_WarningColor);--_ui5_textarea_focused_value_state_success_focus_outline_color: var(--sapField_SuccessColor);--_ui5_textarea_focus_offset: 0;--_ui5_textarea_readonly_focus_offset: 1px;--_ui5_textarea_value_state_focus_offset: 1px;--_ui5_textarea_focus_outline_color: var(--sapField_Active_BorderColor);--_ui5_textarea_min_height: var(--_ui5-compact-size, 1.625rem) var(--_ui5-cozy-size, 2.25rem);--_ui5_textarea_wrapper_padding: .0625rem;--_ui5_textarea_success_wrapper_padding: .0625rem;--_ui5_textarea_warning_error_wrapper_padding: .0625rem .0625rem .125rem .0625rem;--_ui5_textarea_information_wrapper_padding: .0625rem .0625rem .125rem .0625rem;--_ui5_textarea_inner_width: calc(100% - (2 * var(--_ui5_textarea_wrapper_padding)));--_ui5_textarea_padding_right_and_left: var(--_ui5-compact-size, .5rem) var(--_ui5-cozy-size, .625rem);--_ui5_textarea_padding_right_and_left_error_warning: var(--_ui5-compact-size, .5rem) var(--_ui5-cozy-size, .625rem);--_ui5_textarea_padding_right_and_left_information: var(--_ui5-compact-size, .5rem) var(--_ui5-cozy-size, .625rem);--_ui5_textarea_padding_right_and_left_readonly: var(--_ui5-compact-size, .4375rem) var(--_ui5-cozy-size, .5625rem);--_ui5_textarea_padding_top: var(--_ui5-compact-size, .1875rem) var(--_ui5-cozy-size, .5rem);--_ui5_textarea_padding_bottom: var(--_ui5-compact-size, .125rem) var(--_ui5-cozy-size, .4375rem);--_ui5_textarea_padding_top_readonly: var(--_ui5-compact-size, .125rem) var(--_ui5-cozy-size, .4375rem);--_ui5_textarea_padding_bottom_readonly: var(--_ui5-compact-size, .0625rem) var(--_ui5-cozy-size, .375rem);--_ui5_textarea_padding_top_error_warning: var(--_ui5-compact-size, .1875rem) var(--_ui5-cozy-size, .5rem);--_ui5_textarea_padding_bottom_error_warning: var(--_ui5-compact-size, .125rem) var(--_ui5-cozy-size, .4375rem);--_ui5_textarea_padding_top_information: var(--_ui5-compact-size, .1875rem) var(--_ui5-cozy-size, .5rem);--_ui5_textarea_padding_bottom_information: var(--_ui5-compact-size, .125rem) var(--_ui5-cozy-size, .4375rem);--_ui5_textarea_margin: var(--_ui5-compact-size, .1875rem 0) var(--_ui5-cozy-size, .25rem 0);--_ui5_textarea_readonly_border_style: dashed;--_ui5_textarea_focus_border_radius: .25rem;--_ui5-time_picker_border_radius: .25rem;--_ui5_toast_vertical_offset: 3rem;--_ui5_toast_horizontal_offset: 2rem;--_ui5_toast_background: var(--sapIndicationColor_9_Background);--_ui5_toast_shadow: var(--sapContent_Lite_Shadow);--_ui5_toast_offset_width: -.1875rem;--_ui5_toggle_button_emphasized_text_shadow: none;--_ui5_yearpicker_item_margin: .0625rem;--_ui5_yearpicker_item_border: .0625rem solid var(--sapButton_Lite_BorderColor);--_ui5_yearpicker_item_border_radius: .5rem;--_ui5_yearpicker_item_hover_border: .0625rem solid var(--sapButton_Lite_Hover_BorderColor);--_ui5_yearpicker_item_selected_border: .0625rem solid var(--sapButton_Selected_BorderColor);--_ui5_yearpicker_item_selected_hover_border: .0625rem solid var(--sapButton_Selected_Hover_BorderColor);--_ui5_calendar_header_arrow_button_border: .0625rem solid var(--sapList_Hover_Background);--_ui5_calendar_header_arrow_button_border_radius: .5rem;--_ui5_calendar_header_middle_button_width: 6.25rem;--_ui5_calendar_header_middle_button_flex: 1 1 auto;--_ui5_calendar_header_middle_button_focus_border_radius: .5rem;--_ui5_calendar_header_middle_button_focus_border: none;--_ui5_calendar_header_middle_button_focus_after_display: block;--_ui5_calendar_header_middle_button_focus_after_width: calc(100% - .375rem) ;--_ui5_calendar_header_middle_button_focus_after_height: calc(100% - .375rem) ;--_ui5_calendar_header_middle_button_focus_after_top_offset: .125rem;--_ui5_calendar_header_middle_button_focus_after_left_offset: .125rem;--_ui5_calendar_header_arrow_button_box_shadow: 0 0 .125rem 0 rgb(85 107 130 / 72%);--_ui5_calendar_header_middle_button_focus_background: transparent;--_ui5_calendar_header_middle_button_focus_outline: .125rem solid var(--sapContent_FocusColor);--_ui5_calendar_header_middle_button_focus_active_outline: .0625rem solid var(--sapContent_FocusColor);--_ui5_calendar_header_middle_button_focus_active_background: transparent;--_ui5_calendar_header_middle_button_focus_after_border: none;--_ui5_calendar_header_midcontainer_gap: var(--_ui5-compact-size, 0) var(--_ui5-cozy-size, .5rem);--_ui5_calendar_header_arrow_button_flex_shrink: var(--_ui5-compact-size, 1) var(--_ui5-cozy-size, 0);--_ui5_token_background: var(--sapButton_TokenBackground);--_ui5_token_readonly_background: var(--sapButton_TokenBackground);--_ui5_token_readonly_color: var(--sapContent_LabelColor);--_ui5_token_border_radius: .375rem;--_ui5_token_focus_outline_width: .0625rem;--_ui5_token_outline_offset: var(--_ui5-compact-size, -.125rem) var(--_ui5-cozy-size, .125rem);--_ui5_token_text_color: var(--sapTextColor);--_ui5_token_right_margin: var(--_ui5-compact-size, .25rem) var(--_ui5-cozy-size, .3125rem);--_ui5_token_left_padding: var(--_ui5-compact-size, .25rem) var(--_ui5-cozy-size, .3125rem);--_ui5_token_readonly_padding: var(--_ui5-compact-size, .125rem .25rem) var(--_ui5-cozy-size, .25rem .3125rem);--_ui5_token_selected_focus_outline: none;--_ui5_token_focus_outline: none;--_ui5_token_focused_selected_border: 1px solid var(--sapButton_Selected_BorderColor);--ui5_token_focus_pseudo_element_content: "";--_ui5_token_focus_offset: var(--_ui5-compact-size, -.125rem) var(--_ui5-cozy-size, -.25rem);--_ui5_token_selected_text_font_family: var(--sapFontSemiboldDuplexFamily);--_ui5_token_selected_internal_border_bottom: .125rem solid var(--sapButton_Selected_BorderColor);--_ui5_token_selected_internal_border_bottom_radius: .1875rem;--_ui5_token_icon_padding: var(--_ui5-compact-size, .375rem .375rem) var(--_ui5-cozy-size, .25rem .5rem);--_ui5_token_focus_outline_border_radius: .5rem;--_ui5_tokenizer_padding: var(--_ui5-compact-size, .25rem) var(--_ui5-cozy-size, .3125rem);--_ui5_tokenizer_gap: var(--_ui5-compact-size, .375em .25rem) var(--_ui5-cozy-size, .625rem .25rem);--_ui5_tokenizer_n_more_text_color: var(--sapLinkColor);--_ui5_tokenizer-popover_offset: var(--_ui5-compact-size, .1875rem) var(--_ui5-cozy-size, .3125rem);--_ui5_slider_inner_min_width: 4rem;--_ui5_slider_progress_border_width: .0625rem;--_ui5_slider_disabled_opacity: .4;--_ui5_slider_active_progress_left: -.0625rem;--_ui5_slider_handle_height: var(--_ui5-compact-size, 1.25rem) var(--_ui5-cozy-size, 1.5rem);--_ui5_slider_handle_width: var(--_ui5-compact-size, 1.5rem) var(--_ui5-cozy-size, 2rem);--_ui5_slider_handle_focus_border: .125rem solid var(--sapContent_FocusColor);--ui5_slider_handle_outline: none;--ui5_slider_handle_outline_offset: .0625rem;--_ui5_slider_handle_background: var(--sapSlider_HandleBackground);--_ui5_slider_handle_border: .0625rem solid var(--sapSlider_HandleBorderColor);--_ui5_slider_handle_border_radius: .5rem;--_ui5_slider_handle_hover_background: var(--sapSlider_Hover_HandleBackground);--_ui5_slider_handle_hover_border: .0625rem solid var(--sapSlider_Hover_HandleBorderColor);--_ui5_slider_handle_background_focus: var(--sapSlider_Active_RangeHandleBackground);--_ui5_slider_handle_active_border: .125rem solid var(--sapSlider_Active_HandleBorderColor);--_ui5_slider_handle_icon_display: inline-block;--_ui5_slider_handle_icon_size: .875rem;--_ui5_slider_handle_box_sizing: border-box;--_ui5_slider_scale_background: var(--sapSlider_Background);--_ui5_slider_scale_progress_background: var(--sapSlider_Selected_Background);--_ui5_slider_scale_progress_border: none;--_ui5_slider_scale_dots_distance: var(--_ui5-compact-size, -.75rem) var(--_ui5-cozy-size, -1rem);--_ui5_slider_scale_dots_display: inline-block;--_ui5_slider_scale_tickmark_height: .5rem;--_ui5_slider_scale_root_box_sizing: border-box;--_ui5_slider_scale_progress_top: 0;--_ui5_slider_scale_progress_height: 100%;--_ui5_range_slider_progress_focus_display: block;--_ui5_range_slider_progress_focus_top: calc(-1 * ((var(--_ui5_slider_handle_height) / 2) + .1875rem) + var(--_ui5_slider_progress_border_width) + .0625rem - .125rem - .0625rem);--_ui5_range_slider_progress_focus_left: calc(-1 * ((var(--_ui5_slider_handle_width) / 2) + .1875rem + var(--_ui5_slider_progress_border_width)) - .125rem);--_ui5_range_slider_progress_focus_right: calc(-1 * ((var(--_ui5_slider_handle_width) / 2) + .1875rem + var(--_ui5_slider_progress_border_width)) - .125rem - .0625rem);--_ui5_range_slider_progress_focus_height: calc(var(--_ui5_slider_handle_height) + .375rem + .25rem + .0625rem);--_ui5_range_slider_progress_focus_padding: 0 1rem 0 1rem;--_ui5_range_slider_progress_focus_border: var(--sapContent_FocusWidth) solid var(--sapContent_FocusColor);--_ui5_range_slider_progress_focus_border_radius: .5rem;--_ui5_range_slider_legacy_progress_focus_display: none;--_ui5_range_slider_focus_outline_width: 100%;--_ui5_slider_progress_outline: .0625rem var(--sapContent_FocusStyle) var(--sapContent_FocusColor);--_ui5_range_slider_focus_outline_radius: 0;--_ui5_slider_progress_outline_offset: var(--_ui5-compact-size, -.625rem) var(--_ui5-cozy-size, -.8125rem);--_ui5_slider_outer_height: var(--_ui5-compact-size, 1.3125rem) var(--_ui5-cozy-size, 1.6875rem);--_ui5_slider_progress_outline_offset_left: 0;--_ui5_slider_scale_progress_border_radius: .25rem;--_ui5_slider_scale_border: none;--_ui5_slider_root_side_padding: var(--_ui5-compact-size, 0 .75rem) var(--_ui5-cozy-size, 0 1rem);--_ui5_slider_height: var(--_ui5-compact-size, 2rem) var(--_ui5-cozy-size, 2.75rem);--_ui5_value_state_message_border: none;--_ui5_value_state_header_border: none;--_ui5_input_value_state_icon_display: inline-block;--_ui5_value_state_message_padding: .5rem .5rem .5rem 1.875rem;--_ui5_value_state_message_padding_phone: .5rem .5rem .5rem 2.375rem;--_ui5_value_state_header_padding: .5rem .5rem .5rem 1.875rem;--_ui5_value_state_message_popover_box_shadow: var(--sapContent_Shadow1);--_ui5_value_state_message_icon_width: 1rem;--_ui5_value_state_message_icon_height: 1rem;--_ui5_input_value_state_icon_offset: .5rem;--_ui5_value_state_header_offset: -.25rem;--_ui5_value_state_message_popover_border_radius: var(--sapPopover_BorderCornerRadius);--_ui5_value_state_header_box_shadow_error: inset 0 -.0625rem var(--sapField_InvalidColor);--_ui5_value_state_header_box_shadow_information: inset 0 -.0625rem var(--sapField_InformationColor);--_ui5_value_state_header_box_shadow_success: inset 0 -.0625rem var(--sapField_SuccessColor);--_ui5_value_state_header_box_shadow_warning: inset 0 -.0625rem var(--sapField_WarningColor);--_ui5_value_state_message_line_height: 1.125rem;--_ui5_value_state_message_popover_header_min_height: 2rem;--_ui5_value_state_message_popover_header_min_width: 6rem;--_ui5_value_state_message_popover_header_max_width: 22rem;--_ui5_value_state_message_popover_header_width: auto;--_ui5_value_state_message_icon_offset_phone: 1rem;--_ui5_value_state_header_border_bottom: none;--_ui5-toolbar-padding-left: .5rem;--_ui5-toolbar-padding-right: .5rem;--_ui5-toolbar-item-margin-left: 0;--_ui5-toolbar-item-margin-right: .25rem;--_ui5_step_input_input_error_background_color: inherit;--_ui5-step_input_button_state_hover_background_color: var(--sapField_Hover_Background);--_ui5_step_input_border_style: none;--_ui5_step_input_border_style_hover: none;--_ui5_step_input_button_background_color: transparent;--_ui5_step_input_input_border: none;--_ui5_step_input_input_margin_top: 0;--_ui5_step_input_button_display: inline-flex;--_ui5_step_input_button_left: 0;--_ui5_step_input_button_right: 0;--_ui5_step_input_input_border_focused_after: .125rem solid #0070f2;--_ui5_step_input_input_border_top_bottom_focused_after: 0;--_ui5_step_input_input_border_radius_focused_after: .25rem;--_ui5_step_input_input_information_border_color_focused_after: var(--sapField_InformationColor);--_ui5_step_input_input_warning_border_color_focused_after: var(--sapField_WarningColor);--_ui5_step_input_input_success_border_color_focused_after: var(--sapField_SuccessColor);--_ui5_step_input_input_error_border_color_focused_after: var(--sapField_InvalidColor);--_ui5_step_input_disabled_button_background: none;--_ui5_step_input_border_color_hover: none;--_ui5_step_input_border_hover: none;--_ui5_input_input_background_color: transparent;--_ui5_step_input_min_width: var(--_ui5-compact-size, 6rem) var(--_ui5-cozy-size, 7.25rem);--_ui5_step_input_padding: var(--_ui5-compact-size, 2rem) var(--_ui5-cozy-size, 2.5rem);--_ui5_load_more_padding: 0;--_ui5_load_more_border: 1px top solid transparent;--_ui5_load_more_border_radius: none;--_ui5_load_more_outline_width: var(--sapContent_FocusWidth);--_ui5_load_more_border-bottom: var(--sapList_BorderWidth) solid var(--sapList_BorderColor);--_ui5_calendar_height: var(--_ui5-compact-size, 18rem) var(--_ui5-cozy-size, 24.5rem);--_ui5_calendar_width: var(--_ui5-compact-size, 17.75rem) var(--_ui5-cozy-size, 20rem);--_ui5_calendar_left_right_padding: var(--_ui5-compact-size, .25rem) var(--_ui5-cozy-size, .5rem);--_ui5_calendar_top_bottom_padding: var(--_ui5-compact-size, .5rem) var(--_ui5-cozy-size, 1rem);--_ui5_calendar_header_height: var(--_ui5-compact-size, 2rem) var(--_ui5-cozy-size, 3rem);--_ui5_calendar_header_arrow_button_width: var(--_ui5-compact-size, 2rem) var(--_ui5-cozy-size, 2.5rem);--_ui5_calendar_header_padding: var(--_ui5-compact-size, 0) var(--_ui5-cozy-size, .25rem 0);--_ui5_calendar_multiple_layout: var(--_ui5-compact-size, column) var(--_ui5-cozy-size, row);--_ui5_calendar_multiple_gap: var(--_ui5-compact-size, .5rem) var(--_ui5-cozy-size, 1rem);--_ui5_calendar_multiple_width: var(--_ui5-compact-size, var(--_ui5_calendar_width)) var(--_ui5-cozy-size, calc((var(--_ui5_calendar_width) * 2) + (var(--_ui5_calendar_left_right_padding) * 2)));--_ui5_calendar_overlay_top: var(--_ui5-compact-size, 54%) var(--_ui5-cozy-size, 57%);--_ui5_calendar_overlay_width: var(--_ui5-compact-size, 100%) var(--_ui5-cozy-size, 16rem);--_ui5_checkbox_root_side_padding: var(--_ui5-compact-size, var(--_ui5_checkbox_wrapped_focus_padding)) var(--_ui5-cozy-size, .6875rem);--_ui5_checkbox_partially_icon_size: var(--_ui5-compact-size, .5rem) var(--_ui5-cozy-size, .75rem);--_ui5_custom_list_item_rb_min_width: var(--_ui5-compact-size, 2rem) var(--_ui5-cozy-size, 2.75rem);--_ui5_day_picker_item_width: var(--_ui5-compact-size, 2rem) var(--_ui5-cozy-size, 2.25rem);--_ui5_day_picker_item_height: var(--_ui5-compact-size, 2rem) var(--_ui5-cozy-size, 2.875rem);--_ui5_day_picker_empty_height: var(--_ui5-compact-size, 2.125rem) var(--_ui5-cozy-size, 3rem);--_ui5_day_picker_item_justify_content: var(--_ui5-compact-size, flex-end) var(--_ui5-cozy-size, space-between);--_ui5_dp_item_withsecondtype_font_size: var(--_ui5-compact-size, var(--sapFontSmallSize)) var(--_ui5-cozy-size, var(--sapFontSize));--_ui5_daypicker_item_now_selected_two_calendar_focus_special_day_top: var(--_ui5-compact-size, 1.125rem) var(--_ui5-cozy-size, 2rem);--_ui5_daypicker_item_now_selected_two_calendar_focus_special_day_right: var(--_ui5-compact-size, 1.125rem) var(--_ui5-cozy-size, 1.4375rem);--_ui5_dp_two_calendar_item_secondary_text_height: var(--_ui5-compact-size, .75rem) var(--_ui5-cozy-size, 1rem);--_ui5_dp_two_calendar_item_text_padding_top: var(--_ui5-compact-size, .5rem) var(--_ui5-cozy-size, .4375rem);--_ui5_dp_two_calendar_item_secondary_text_padding_block: var(--_ui5-compact-size, 0 .375rem) var(--_ui5-cozy-size, 0 .5rem);--_ui5_dp_two_calendar_item_secondary_text_padding: var(--_ui5-compact-size, 0 .375rem) var(--_ui5-cozy-size, 0 .5rem);--_ui5_daypicker_item_now_selected_two_calendar_focus_secondary_text_padding_block: var(--_ui5-compact-size, 0 1rem) var(--_ui5-cozy-size, 0 .5rem);--_ui5_daypicker_two_calendar_item_selected_focus_margin_bottom: var(--_ui5-compact-size, -.25rem) var(--_ui5-cozy-size, 0);--_ui5_daypicker_two_calendar_item_selected_focus_padding_right: var(--_ui5-compact-size, .4375rem) var(--_ui5-cozy-size, .5rem);--_ui5_calendar_multiple_months_height: var(--_ui5-compact-size, calc(2 * var(--_ui5_calendar_height))) var(--_ui5-cozy-size, var(--_ui5_calendar_height));--_ui5-calendar-legend-item-root-focus-offset: -.125rem;--_ui5-calendar-legend-item-box-inner-margin: .5rem;--_ui5_color_picker_slider_progress_container_height: var(--_ui5-compact-size, 1.125rem) var(--_ui5-cozy-size, 1.625rem);--_ui5_color_picker_slider_container_margin_top: var(--_ui5-compact-size, -.375rem) var(--_ui5-cozy-size, -.5rem);--_ui5_color_picker_slider_handle_height: var(--_ui5-compact-size, 1.5rem) var(--_ui5-cozy-size, 2rem);--_ui5_color_picker_slider_handle_width: var(--_ui5-compact-size, .9375rem) var(--_ui5-cozy-size, 1.0625rem);--_ui5_color_picker_slider_handle_after_height: var(--_ui5-compact-size, 1.25rem) var(--_ui5-cozy-size, 1.75rem);--_ui5_color_picker_slider_handle_focus_height: var(--_ui5-compact-size, 1.625rem) var(--_ui5-cozy-size, 2.125rem);--_ui5_color_picker_colors_wrapper_height: var(--_ui5-compact-size, 1.5rem) var(--_ui5-cozy-size, 2.25rem);--_ui5_color_picker_sliders_height: var(--_ui5-compact-size, 2.25rem) var(--_ui5-cozy-size, 3rem);--_ui5_color_picker_main_color_margin_bottom: var(--_ui5-compact-size, .75rem) var(--_ui5-cozy-size, 1rem);--_ui5_color_picker_slider_spacing: var(--_ui5-compact-size, .8125rem) var(--_ui5-cozy-size, .9375rem);--_ui5_color_channel_toggle_button_width: var(--_ui5-compact-size, 1.375rem) var(--_ui5-cozy-size, 1.625rem);--_ui5_color_channel_toggle_button_margin-top: var(--_ui5-compact-size, -.9375rem) var(--_ui5-cozy-size, -.75rem);--_ui5_color_channel_hex_input_width: var(--_ui5-compact-size, 4.625rem) var(--_ui5-cozy-size, 4.8125rem);--_ui5-color_channel_margin_top: var(--_ui5-compact-size, 0rem) var(--_ui5-cozy-size, .25rem);--_ui5_color-palette-item-height: var(--_ui5-compact-size, 1.25rem) var(--_ui5-cozy-size, 1.75rem);--_ui5_color-palette-item-hover-height: var(--_ui5-compact-size, 1.625rem) var(--_ui5-cozy-size, 2.25rem);--_ui5_color-palette-item-margin: var(--_ui5-compact-size, calc(((var(--_ui5_color-palette-item-hover-height) - var(--_ui5_color-palette-item-height)) / 2) + .0625rem)) var(--_ui5-cozy-size, calc(((var(--_ui5_color-palette-item-hover-height) - var(--_ui5_color-palette-item-height)) / 2) + .0625rem));--_ui5_color-palette-row-width: var(--_ui5-compact-size, 8.75rem) var(--_ui5-cozy-size, 12rem);--_ui5_color-palette-swatch-container-padding: var(--_ui5-compact-size, .1875rem .5rem) var(--_ui5-cozy-size, .3125rem .6875rem);--_ui5_datetime_picker_width: var(--_ui5-compact-size, 35.5rem) var(--_ui5-cozy-size, 40.0625rem);--_ui5_datetime_picker_height: var(--_ui5-compact-size, 20.5rem) var(--_ui5-cozy-size, 25rem);--_ui5_datetime_timeview_width: var(--_ui5-compact-size, 17rem) var(--_ui5-cozy-size, 17rem);--_ui5_datetime_timeview_phonemode_width: var(--_ui5-compact-size, 18.5rem) var(--_ui5-cozy-size, 19.5rem);--_ui5_datetime_timeview_phonemode_clocks_width: var(--_ui5-compact-size, 21.125rem) var(--_ui5-cozy-size, 24.5rem);--_ui5_datetime_dateview_phonemode_margin_bottom: var(--_ui5-compact-size, 3.125rem) var(--_ui5-cozy-size, 0);--_ui5_popup_footer_height: var(--_ui5-compact-size, 2.5rem) var(--_ui5-cozy-size, 2.75rem);--_ui5_dialog_content_min_height: var(--_ui5-compact-size, 2.5rem) var(--_ui5-cozy-size, 2.75rem);--_ui5_input_inner_padding: var(--_ui5-compact-size, 0 .5rem) var(--_ui5-cozy-size, 0 .625rem);--_ui5_input_inner_padding_with_icon: var(--_ui5-compact-size, 0 .25rem 0 .5rem) var(--_ui5-cozy-size, 0 .25rem 0 .625rem);--_ui5_input_inner_space_to_tokenizer: var(--_ui5-compact-size, .125rem) var(--_ui5-cozy-size, .125rem);--_ui5_input_inner_space_to_n_more_text: var(--_ui5-compact-size, .25rem) var(--_ui5-cozy-size, .3125rem);--_ui5_input_inner_with_tokenizer_padding_inline_end: var(--_ui5-compact-size, .25rem) var(--_ui5-cozy-size, .3125rem);--_ui5_list_no_data_height: var(--_ui5-compact-size, 2rem) var(--_ui5-cozy-size, 3rem);--_ui5_list_item_cb_margin_right: var(--_ui5-compact-size, .5rem) var(--_ui5-cozy-size, 0);--_ui5_list_item_title_size: var(--_ui5-compact-size, var(--sapFontSize)) var(--_ui5-cozy-size, var(--sapFontLargeSize));--_ui5_list_no_data_font_size: var(--_ui5-compact-size, var(--sapFontSize)) var(--_ui5-cozy-size, var(--sapFontLargeSize));--_ui5_list_item_img_size: 3rem;--_ui5_list_item_img_top_margin: var(--_ui5-compact-size, .55rem) var(--_ui5-cozy-size, .5rem);--_ui5_list_item_img_bottom_margin: .5rem;--_ui5_list_item_img_hn_margin: .75rem;--_ui5_list_item_dropdown_base_height: var(--_ui5-compact-size, 2rem) var(--_ui5-cozy-size, 2.5rem);--_ui5_list_item_base_height: var(--_ui5-compact-size, 2rem) var(--_ui5-cozy-size, var(--sapElement_LineHeight));--_ui5_list_item_base_padding: var(--_ui5-compact-size, 0 1rem) var(--_ui5-cozy-size, 0 1rem);--_ui5_list_item_icon_size: var(--_ui5-compact-size, 1rem) var(--_ui5-cozy-size, 1.125rem);--_ui5_list_item_icon_padding-inline-end: .75rem;--_ui5_list_item_selection_btn_margin_top: var(--_ui5-compact-size, calc(-1 * var(--_ui5_checkbox_wrapper_padding))) var(--_ui5-cozy-size, calc(-1 * var(--_ui5_checkbox_wrapper_padding)));--_ui5_list_item_content_vertical_offset: var(--_ui5-compact-size, calc((var(--_ui5_list_item_base_height) - var(--_ui5_list_item_title_size)) / 2)) var(--_ui5-cozy-size, calc((var(--_ui5_list_item_base_height) - var(--_ui5_list_item_title_size)) / 2));--_ui5_group_header_list_item_height: 2.75rem;--_ui5_month_picker_item_height: var(--_ui5-compact-size, 2rem) var(--_ui5-cozy-size, 3rem);--_ui5_list_buttons_left_space: var(--_ui5-compact-size, .125rem) var(--_ui5-cozy-size, .125rem);--_ui5_form_item_min_height: var(--_ui5-compact-size, 2rem) var(--_ui5-cozy-size, 2.813rem);--_ui5_form_item_padding: var(--_ui5-compact-size, .25rem) var(--_ui5-cozy-size, .65rem);--_ui5-form-group-heading-height: var(--_ui5-compact-size, 2rem) var(--_ui5-cozy-size, 2.75rem);--_ui5_popup_default_header_height: var(--_ui5-compact-size, 2.5rem) var(--_ui5-cozy-size, 2.75rem);--_ui5_year_picker_item_height: var(--_ui5-compact-size, 2rem) var(--_ui5-cozy-size, 3rem);--_ui5_token_height: var(--_ui5-compact-size, 1.25rem) var(--_ui5-cozy-size, 1.625rem);--_ui5_token_icon_size: var(--_ui5-compact-size, .75rem) var(--_ui5-cozy-size, .75rem);--_ui5_tc_item_text: var(--_ui5-compact-size, 2rem) var(--_ui5-cozy-size, 3rem);--_ui5_tc_item_height: var(--_ui5-compact-size, 4rem) var(--_ui5-cozy-size, 4.75rem);--_ui5_tc_item_text_only_height: 2.75rem;--_ui5_tc_item_text_only_with_additional_text_height: 3.75rem;--_ui5_tc_item_text_line_height: var(--_ui5-compact-size, 1.325rem) var(--_ui5-cozy-size, 1.325rem);--_ui5_tc_item_icon_circle_size: var(--_ui5-compact-size, 2rem) var(--_ui5-cozy-size, 2.75rem);--_ui5_tc_item_icon_size: var(--_ui5-compact-size, 1rem) var(--_ui5-cozy-size, 1.25rem);--_ui5_tc_item_add_text_margin_top: var(--_ui5-compact-size, .3125rem) var(--_ui5-cozy-size, .375rem);--_ui5_radio_button_height: var(--_ui5-compact-size, 2rem) var(--_ui5-cozy-size, 2.75rem);--_ui5_radio_button_label_side_padding: var(--_ui5-compact-size, .5rem) var(--_ui5-cozy-size, .875rem);--_ui5_radio_button_inner_size: var(--_ui5-compact-size, 2rem) var(--_ui5-cozy-size, 2.75rem);--_ui5_radio_button_svg_size: var(--_ui5-compact-size, 1rem) var(--_ui5-cozy-size, 1.375rem);--_ui5-responsive_popover_header_height: var(--_ui5-compact-size, 2.5rem) var(--_ui5-cozy-size, 2.75rem);--_ui5-tree-indent-step: var(--_ui5-compact-size, .5rem) var(--_ui5-cozy-size, 1.5rem);--_ui5-tree-toggle-box-width: var(--_ui5-compact-size, 2rem) var(--_ui5-cozy-size, 2.75rem);--_ui5-tree-toggle-box-height: var(--_ui5-compact-size, 1.5rem) var(--_ui5-cozy-size, 2.25rem);--_ui5-tree-toggle-icon-size: var(--_ui5-compact-size, .8125rem) var(--_ui5-cozy-size, 1.0625rem);--_ui5_split_button_middle_separator_top: var(--_ui5-compact-size, .3125rem) var(--_ui5-cozy-size, .625rem);--_ui5_split_button_middle_separator_height: var(--_ui5-compact-size, 1rem) var(--_ui5-cozy-size, 1rem);--_ui5-toolbar-separator-height: var(--_ui5-compact-size, 1.5rem) var(--_ui5-cozy-size, 2rem);--_ui5-toolbar-height: var(--_ui5-compact-size, 2rem) var(--_ui5-cozy-size, 2.75rem);--_ui5_toolbar_overflow_padding: var(--_ui5-compact-size, .1875rem .375rem) var(--_ui5-cozy-size, .25rem .5rem);--_ui5_dynamic_page_title_actions_separator_height: var(--_ui5-compact-size, var(--_ui5-toolbar-separator-height)) var(--_ui5-cozy-size, var(--_ui5-toolbar-separator-height));--_ui5-shellbar-separator-height: var(--_ui5-compact-size, 2rem) var(--_ui5-cozy-size, 2rem);--___ui5-test-cozy-only: red;--___ui5-test-both: var(--_ui5-compact-size, blue) var(--_ui5-cozy-size, red);--___ui5-test-compact-only: var(--_ui5-compact-size, blue) var(--_ui5-cozy-size, var(--_ui5-f2d95f8));--_ui5_slider_tooltip_height: var(--_ui5-compact-size, 1.375rem) var(--_ui5-cozy-size, var(--_ui5-f2d95f8));--_ui5_slider_tooltip_padding: var(--_ui5-compact-size, .25rem) var(--_ui5-cozy-size, var(--_ui5-f2d95f8));--_ui5_rotation_90deg: rotate(90deg);--_ui5_rotation_minus_90deg: rotate(-90deg);--_ui5_icon_transform_scale: none;--_ui5_panel_toggle_btn_rotation: var(--_ui5_rotation_90deg);--_ui5_popover_upward_arrow_margin: .1875rem 0 0 .1875rem;--_ui5_popover_right_arrow_margin: .1875rem 0 0 -.375rem;--_ui5_popover_downward_arrow_margin: -.375rem 0 0 .125rem;--_ui5_popover_left_arrow_margin: .125rem 0 0 .25rem;--_ui5_dialog_resize_cursor: se-resize;--_ui5_menu_submenu_margin_offset: -.25rem 0}.ui5-avatar-group-items-xs{--_ui5_avatar_group_focus_border_radius: 1rem}.ui5-avatar-group-items-s{--_ui5_avatar_group_focus_border_radius: 1.5rem}.ui5-avatar-group-items-m{--_ui5_avatar_group_focus_border_radius: 2rem}.ui5-avatar-group-items-l{--_ui5_avatar_group_focus_border_radius: 2.5rem}.ui5-avatar-group-items-xl{--_ui5_avatar_group_focus_border_radius: 3.5rem}:dir(rtl){--_ui5_icon_transform_scale: scale(-1, 1);--_ui5_panel_toggle_btn_rotation: var(--_ui5_rotation_minus_90deg);--_ui5_popover_upward_arrow_margin: .1875rem .125rem 0 0;--_ui5_popover_right_arrow_margin: .1875rem .25rem 0 0;--_ui5_popover_downward_arrow_margin: -.4375rem .125rem 0 0;--_ui5_popover_left_arrow_margin: .1875rem -.375rem 0 0;--_ui5_dialog_resize_cursor:sw-resize;--_ui5_menu_submenu_margin_offset: 0 -.25rem;--_ui5_segmented_btn_item_border_left: .0625rem;--_ui5_segmented_btn_item_border_right: .0625rem;--_ui5_progress_indicator_bar_border_radius: .5rem;--_ui5_progress_indicator_remaining_bar_border_radius: .25rem}\n'}),kh=qr(()=>{Ca(),Ch(),wh(),St("@ui5/webcomponents-theming","sap_horizon",async()=>ch),St("@ui5/webcomponents","sap_horizon",async()=>_h,"host"),dh=':host{-webkit-tap-highlight-color:rgba(0,0,0,0)}:host([hidden]){display:none}:host([invalid]){display:none}:host(:not([hidden]).ui5_hovered){opacity:.7}:host{display:inline-block;width:1rem;height:1rem;color:var(--sapContent_IconColor);fill:currentColor;outline:none}:host([design="Contrast"]){color:var(--sapContent_ContrastIconColor)}:host([design="Critical"]){color:var(--sapCriticalElementColor)}:host([design="Information"]){color:var(--sapInformativeElementColor)}:host([design="Negative"]){color:var(--sapNegativeElementColor)}:host([design="Neutral"]){color:var(--sapNeutralElementColor)}:host([design="NonInteractive"]){color:var(--sapContent_NonInteractiveIconColor)}:host([design="Positive"]){color:var(--sapPositiveElementColor)}:host([mode="Interactive"][desktop]) .ui5-icon-root:focus,:host([mode="Interactive"]) .ui5-icon-root:focus-visible{outline:var(--sapContent_FocusWidth) var(--sapContent_FocusStyle) var(--sapContent_FocusColor);border-radius:var(--ui5-icon-focus-border-radius)}.ui5-icon-root{display:flex;height:100%;width:100%;outline:none;vertical-align:top}:host([mode="Interactive"]){cursor:pointer}.ui5-icon-root:not([dir=ltr])>g{transform:var(--_ui5_icon_transform_scale);transform-origin:center}\n'}),xh=qr(()=>{Cn(),ec(),wn(),xn(),kn(),sc(),nn(),qn(),Pa(),tc(),Ga(),fh(),bh(),yh(),kh(),uh=function(e,t,o,i){var r,a=arguments.length,n=a<3?t:null===i?i=Object.getOwnPropertyDescriptor(t,o):i;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)n=Reflect.decorate(e,t,o,i);else for(var s=e.length-1;s>=0;s--)(r=e[s])&&(n=(a<3?r(n):a>3?r(t,o,n):r(t,o))||n);return a>3&&n&&Object.defineProperty(t,o,n),n},ph=hh=class extends hn{constructor(){super(...arguments),this.design="Default",this.showTooltip=!1,this.mode="Decorative",this.pathData=[],this.invalid=!1}_onclick(e){this.mode===S_.Interactive&&(e.stopImmediatePropagation(),this.fireDecoratorEvent("click"))}_onkeydown(e){this.mode===S_.Interactive&&(fs(e)&&this.fireDecoratorEvent("click"),Cs(e)&&e.preventDefault())}_onkeyup(e){this.mode===S_.Interactive&&Cs(e)&&this.fireDecoratorEvent("click")}get _dir(){return this.ltr?"ltr":void 0}get effectiveAriaHidden(){return this.mode===S_.Decorative?"true":void 0}get _tabIndex(){return this.mode===S_.Interactive?0:void 0}get effectiveAccessibleRole(){switch(this.mode){case S_.Interactive:return"button";case S_.Decorative:return"presentation";default:return"img"}}onEnterDOM(){Po()&&this.setAttribute("desktop","")}async onBeforeRendering(){const e=this.name;if(!e)return;let t=Yl(e);if(t||(t=await $l(e)),!t)return this.invalid=!0,console.warn(`Required icon is not registered. Invalid icon name: ${this.name}`);if("ICON_NOT_FOUND"===t)return this.invalid=!0,console.warn(`Required icon is not registered. You can either import the icon as a module in order to use it e.g. "@ui5/webcomponents-icons/dist/${e.replace("sap-icon://","")}.js", or setup a JSON build step and import "@ui5/webcomponents-icons/dist/AllIcons.js".`);if(this.viewBox=t.viewBox||"0 0 512 512","customTemplate"in t&&t.customTemplate&&(this.customTemplate=Ei(t.customTemplate,this)),"customTemplateAsString"in t&&(this.customTemplateAsString=t.customTemplateAsString),this.invalid=!1,"pathData"in t&&t.pathData&&(this.pathData=Array.isArray(t.pathData)?t.pathData:[t.pathData]),this.accData=t.accData,this.ltr=t.ltr,this.packageName=t.packageName,this.accessibleName)this.effectiveAccessibleName=this.accessibleName;else if(this.accData)if(this.packageName){const e=await Dr(this.packageName);this.effectiveAccessibleName=e.getText(this.accData)||void 0}else this.effectiveAccessibleName=this.accData?.defaultText||void 0;else this.effectiveAccessibleName=void 0}get hasIconTooltip(){return this.showTooltip&&this.effectiveAccessibleName}_getAriaTypeDescription(){switch(this.mode){case S_.Interactive:return hh.i18nBundle.getText(lh);case S_.Image:return hh.i18nBundle.getText(sh);default:return""}}get accessibilityInfo(){return this.mode===S_.Decorative?{}:{role:this.effectiveAccessibleRole,type:this._getAriaTypeDescription(),description:this.effectiveAccessibleName}}},uh([bn()],ph.prototype,"design",void 0),uh([bn()],ph.prototype,"name",void 0),uh([bn()],ph.prototype,"accessibleName",void 0),uh([bn({type:Boolean})],ph.prototype,"showTooltip",void 0),uh([bn()],ph.prototype,"mode",void 0),uh([bn({type:Array,noAttribute:!0})],ph.prototype,"pathData",void 0),uh([bn({type:Object,noAttribute:!0})],ph.prototype,"accData",void 0),uh([bn({type:Boolean})],ph.prototype,"invalid",void 0),uh([bn({noAttribute:!0})],ph.prototype,"effectiveAccessibleName",void 0),uh([Tn("@ui5/webcomponents")],ph,"i18nBundle",void 0),(ph=hh=uh([fn({tag:"ui5-icon",languageAware:!0,themeAware:!0,renderer:ms,template:w_,styles:dh}),yn("click",{bubbles:!0})],ph)).define(),gh=ph}),Sh=qr(()=>{!function(e){e.Top="Top",e.Bottom="Bottom"}(mh||(mh={})),vh=mh});function Th(){return y_("label",{class:"ui5-label-root",onClick:this._onclick,children:[b_("span",{class:"ui5-label-text-wrapper",children:b_("slot",{})}),b_("span",{"aria-hidden":"true",class:"ui5-label-required-colon","data-ui5-colon":this._colonSymbol})]})}var Bh,Ih,Dh,Ah,Ph,Mh=qr(()=>{C_()}),Eh=qr(()=>{Ca(),Ch(),wh(),St("@ui5/webcomponents-theming","sap_horizon",async()=>ch),St("@ui5/webcomponents","sap_horizon",async()=>_h,"host"),Bh=':host(:not([hidden])){display:inline-flex}:host{max-width:100%;color:var(--sapContent_LabelColor);font-family:var(--sapFontFamily);font-size:var(--sapFontSize);font-weight:400;cursor:text}.ui5-label-root{width:100%;cursor:inherit}:host{white-space:normal}:host([wrapping-type="None"]){white-space:nowrap}:host([wrapping-type="None"]) .ui5-label-root{display:inline-flex}:host([wrapping-type="None"]) .ui5-label-text-wrapper{text-overflow:ellipsis;overflow:hidden;display:inline-block;vertical-align:top;flex:0 1 auto;min-width:0}:host([show-colon]) .ui5-label-required-colon:before{content:attr(data-ui5-colon)}:host([required]) .ui5-label-required-colon:after{content:"*";color:var(--sapField_RequiredColor);font-size:var(--sapFontLargeSize);font-weight:700;position:relative;font-style:normal;vertical-align:middle;line-height:0}.ui5-label-text-wrapper{padding-inline-end:.075rem}:host([required][show-colon]) .ui5-label-required-colon:after{margin-inline-start:.125rem}:host([show-colon]) .ui5-label-required-colon{margin-inline-start:-.05rem;white-space:pre}\n'}),zh=qr(()=>{Cn(),wn(),kn(),qn(),ec(),yh(),Mh(),Eh(),Ih=function(e,t,o,i){var r,a=arguments.length,n=a<3?t:null===i?i=Object.getOwnPropertyDescriptor(t,o):i;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)n=Reflect.decorate(e,t,o,i);else for(var s=e.length-1;s>=0;s--)(r=e[s])&&(n=(a<3?r(n):a>3?r(t,o,n):r(t,o))||n);return a>3&&n&&Object.defineProperty(t,o,n),n},Ah=Dh=class extends hn{constructor(){super(...arguments),this.showColon=!1,this.required=!1,this.wrappingType="Normal"}_onclick(){if(!this.for)return;const e=this.getRootNode().querySelector(`[id="${this.for}"]`);e&&e.focus()}get _colonSymbol(){return Dh.i18nBundle.getText(eh)}},Ih([bn()],Ah.prototype,"for",void 0),Ih([bn({type:Boolean})],Ah.prototype,"showColon",void 0),Ih([bn({type:Boolean})],Ah.prototype,"required",void 0),Ih([bn()],Ah.prototype,"wrappingType",void 0),Ih([Tn("@ui5/webcomponents")],Ah,"i18nBundle",void 0),(Ah=Dh=Ih([fn({tag:"ui5-label",renderer:ms,template:Th,styles:Bh,languageAware:!0})],Ah)).define(),Ph=Ah});function Fh(){return y_("div",{class:"ui5-busy-indicator-root",children:[this._isBusy&&y_("div",{class:{"ui5-busy-indicator-busy-area":!0,"ui5-busy-indicator-busy-area-over-content":this.hasContent},title:this.ariaTitle,tabindex:0,role:"progressbar","aria-valuemin":0,"aria-valuemax":100,"aria-valuetext":"Busy","aria-labelledby":this.labelId,"data-sap-focus-ref":!0,children:[this.textPosition.top&&Rh.call(this),y_("div",{class:"ui5-busy-indicator-circles-wrapper",children:[b_("div",{class:"ui5-busy-indicator-circle circle-animation-0"}),b_("div",{class:"ui5-busy-indicator-circle circle-animation-1"}),b_("div",{class:"ui5-busy-indicator-circle circle-animation-2"})]}),this.textPosition.bottom&&Rh.call(this)]}),b_("slot",{}),this._isBusy&&b_("span",{"data-ui5-focus-redirect":!0,tabindex:0,role:"none",onFocusIn:this._redirectFocus})]})}function Rh(){return b_(f_,{children:this.text&&b_(Ph,{id:`${this._id}-label`,class:"ui5-busy-indicator-text",children:this.text})})}var Oh,Lh,Nh,Hh,Uh,Vh,Wh,qh=qr(()=>{C_(),zh()}),jh=qr(()=>{Ca(),Ch(),wh(),St("@ui5/webcomponents-theming","sap_horizon",async()=>ch),St("@ui5/webcomponents","sap_horizon",async()=>_h,"host"),Oh=':host(:not([hidden])){display:inline-block}:host([_is-busy]){color:var(--_ui5_busy_indicator_color)}:host([size="S"]) .ui5-busy-indicator-root{min-width:1.625rem;min-height:.5rem}:host([size="S"][text]:not([text=""])) .ui5-busy-indicator-root{min-height:1.75rem}:host([size="S"]) .ui5-busy-indicator-circle{width:.5rem;height:.5rem}:host([size="S"]) .ui5-busy-indicator-circle:first-child,:host([size="S"]) .ui5-busy-indicator-circle:nth-child(2){margin-inline-end:.0625rem}:host(:not([size])) .ui5-busy-indicator-root,:host([size="M"]) .ui5-busy-indicator-root{min-width:3.375rem;min-height:1rem}:host([size="M"]) .ui5-busy-indicator-circle:first-child,:host([size="M"]) .ui5-busy-indicator-circle:nth-child(2){margin-inline-end:.1875rem}:host(:not([size])[text]:not([text=""])) .ui5-busy-indicator-root,:host([size="M"][text]:not([text=""])) .ui5-busy-indicator-root{min-height:2.25rem}:host(:not([size])) .ui5-busy-indicator-circle,:host([size="M"]) .ui5-busy-indicator-circle{width:1rem;height:1rem}:host([size="L"]) .ui5-busy-indicator-root{min-width:6.5rem;min-height:2rem}:host([size="L"]) .ui5-busy-indicator-circle:first-child,:host([size="L"]) .ui5-busy-indicator-circle:nth-child(2){margin-inline-end:.25rem}:host([size="L"][text]:not([text=""])) .ui5-busy-indicator-root{min-height:3.25rem}:host([size="L"]) .ui5-busy-indicator-circle{width:2rem;height:2rem}.ui5-busy-indicator-root{display:flex;justify-content:center;align-items:center;position:relative;background-color:inherit;height:inherit;border-radius:inherit}.ui5-busy-indicator-busy-area.ui5-busy-indicator-busy-area-over-content{position:absolute;inset:0;z-index:99}.ui5-busy-indicator-busy-area{display:flex;justify-content:center;align-items:center;background-color:inherit;flex-direction:column;border-radius:inherit}:host([active]) ::slotted(*){opacity:var(--sapContent_DisabledOpacity)}:host([desktop]) .ui5-busy-indicator-busy-area:focus,.ui5-busy-indicator-busy-area:focus-visible{outline:var(--_ui5_busy_indicator_focus_outline);outline-offset:-2px}.ui5-busy-indicator-circles-wrapper{line-height:0}.ui5-busy-indicator-circle{display:inline-block;background-color:currentColor;border-radius:50%}.ui5-busy-indicator-circle:before{content:"";width:100%;height:100%;border-radius:100%}.circle-animation-0{animation:grow 1.6s infinite cubic-bezier(.32,.06,.85,1.11)}.circle-animation-1{animation:grow 1.6s infinite cubic-bezier(.32,.06,.85,1.11);animation-delay:.2s}.circle-animation-2{animation:grow 1.6s infinite cubic-bezier(.32,.06,.85,1.11);animation-delay:.4s}.ui5-busy-indicator-text{width:100%;text-align:center}:host([text-placement="Top"]) .ui5-busy-indicator-text{margin-bottom:.5rem}:host(:not([text-placement])) .ui5-busy-indicator-text,:host([text-placement="Bottom"]) .ui5-busy-indicator-text{margin-top:.5rem}@keyframes grow{0%,50%,to{-webkit-transform:scale(.5);-moz-transform:scale(.5);transform:scale(.5)}25%{-webkit-transform:scale(1);-moz-transform:scale(1);transform:scale(1)}}\n'}),Yh=qr(()=>{Cn(),wn(),kn(),qn(),ec(),tc(),Pa(),lc(),Sh(),qh(),yh(),jh(),Lh=function(e,t,o,i){var r,a=arguments.length,n=a<3?t:null===i?i=Object.getOwnPropertyDescriptor(t,o):i;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)n=Reflect.decorate(e,t,o,i);else for(var s=e.length-1;s>=0;s--)(r=e[s])&&(n=(a<3?r(n):a>3?r(t,o,n):r(t,o))||n);return a>3&&n&&Object.defineProperty(t,o,n),n},Hh=Nh=class extends hn{constructor(){super(),this.size="M",this.active=!1,this.delay=1e3,this.textPlacement="Bottom",this._isBusy=!1,this._keydownHandler=this._handleKeydown.bind(this),this._preventEventHandler=this._preventEvent.bind(this)}onEnterDOM(){this.addEventListener("keydown",this._keydownHandler,{capture:!0}),this.addEventListener("keyup",this._preventEventHandler,{capture:!0}),Po()&&this.setAttribute("desktop","")}onExitDOM(){this._busyTimeoutId&&(clearTimeout(this._busyTimeoutId),delete this._busyTimeoutId),this.removeEventListener("keydown",this._keydownHandler,!0),this.removeEventListener("keyup",this._preventEventHandler,!0)}get ariaTitle(){return Nh.i18nBundle.getText(O_)}get labelId(){return this.text?`${this._id}-label`:void 0}get textPosition(){return{top:this.text&&this.textPlacement===vh.Top,bottom:this.text&&this.textPlacement===vh.Bottom}}get hasContent(){return Zl(Array.from(this.children))}onBeforeRendering(){this.active?this._isBusy||this._busyTimeoutId||(this._busyTimeoutId=setTimeout(()=>{delete this._busyTimeoutId,this._isBusy=!0},Math.max(0,this.delay))):(this._busyTimeoutId&&(clearTimeout(this._busyTimeoutId),delete this._busyTimeoutId),this._isBusy=!1)}_handleKeydown(e){this._isBusy&&(e.stopImmediatePropagation(),Ls(e)&&(this.focusForward=!0,this.shadowRoot.querySelector("[data-ui5-focus-redirect]").focus(),this.focusForward=!1))}_preventEvent(e){this._isBusy&&e.stopImmediatePropagation()}_redirectFocus(e){this.focusForward||(e.preventDefault(),this.shadowRoot.querySelector(".ui5-busy-indicator-busy-area").focus())}},Lh([bn()],Hh.prototype,"text",void 0),Lh([bn()],Hh.prototype,"size",void 0),Lh([bn({type:Boolean})],Hh.prototype,"active",void 0),Lh([bn({type:Number})],Hh.prototype,"delay",void 0),Lh([bn()],Hh.prototype,"textPlacement",void 0),Lh([bn({type:Boolean})],Hh.prototype,"_isBusy",void 0),Lh([Tn("@ui5/webcomponents")],Hh,"i18nBundle",void 0),(Hh=Nh=Lh([fn({tag:"ui5-busy-indicator",languageAware:!0,styles:Oh,renderer:ms,template:Fh})],Hh)).define(),Uh=Hh}),$h=qr(()=>{!function(e){e.S="S",e.M="M",e.L="L"}(Vh||(Vh={})),Wh=Vh});function Gh(e){return y_(f_,{children:[y_("button",{type:"button",class:{"ui5-button-root":!0,"ui5-button-badge-placement-end":"InlineText"===this.badge[0]?.design,"ui5-button-badge-placement-end-top":"OverlayText"===this.badge[0]?.design,"ui5-button-badge-dot":"AttentionDot"===this.badge[0]?.design},disabled:this.disabled,"data-sap-focus-ref":!0,"aria-pressed":e?.ariaPressed,"aria-valuemin":e?.ariaValueMin,"aria-valuemax":e?.ariaValueMax,"aria-valuenow":e?.ariaValueNow,"aria-valuetext":e?.ariaValueText,onFocusOut:this._onfocusout,onClick:this._onclick,onMouseDown:this._onmousedown,onKeyDown:this._onkeydown,onKeyUp:this._onkeyup,onTouchStart:this._ontouchstart,onTouchEnd:this._ontouchend,tabindex:this.tabIndexValue,"aria-expanded":this._computedAccessibilityAttributes?.expanded,"aria-controls":this._computedAccessibilityAttributes?.controls,"aria-haspopup":this._computedAccessibilityAttributes?.hasPopup,"aria-label":this._computedAccessibilityAttributes?.ariaLabel,"aria-keyshortcuts":this._computedAccessibilityAttributes?.ariaKeyShortcuts,"aria-description":this.ariaDescriptionText,"aria-busy":this.loading?"true":void 0,title:this.buttonTitle,part:"button",role:this.effectiveAccRole,children:[this.icon&&b_(gh,{class:"ui5-button-icon",name:this.icon,mode:"Decorative",part:"icon"}),b_("span",{id:`${this._id}-content`,class:"ui5-button-text",children:b_("bdi",{children:b_("slot",{})})}),this.endIcon&&b_(gh,{class:"ui5-button-end-icon",name:this.endIcon,mode:"Decorative",part:"endIcon"}),this.shouldRenderBadge&&b_("slot",{name:"badge"})]}),this.loading&&b_(Uh,{id:`${this._id}-button-busy-indicator`,class:"ui5-button-busy-indicator",size:this.iconOnly?Wh.S:Wh.M,active:!0,delay:this.loadingDelay,inert:this.loading})]})}var Kh,Zh,Xh,Jh,Qh,ep,tp,op,ip,rp,ap,np,sp,lp,cp,_p,dp,up,hp=qr(()=>{C_(),xh(),Yh(),$h()}),pp=qr(()=>{Ca(),Ch(),wh(),St("@ui5/webcomponents-theming","sap_horizon",async()=>ch),St("@ui5/webcomponents","sap_horizon",async()=>_h,"host"),Kh=':host{vertical-align:middle}.ui5-hidden-text{position:absolute;clip:rect(1px,1px,1px,1px);user-select:none;left:-1000px;top:-1000px;pointer-events:none;font-size:0}:host(:not([hidden])){display:inline-block}:host{min-width:var(--_ui5_button_base_min_width);height:var(--_ui5_button_base_height);line-height:normal;font-family:var(--_ui5_button_fontFamily);font-size:var(--sapFontSize);text-shadow:var(--_ui5_button_text_shadow);border-radius:var(--_ui5_button_border_radius);cursor:pointer;background-color:var(--sapButton_Background);border:var(--sapButton_BorderWidth) solid var(--sapButton_BorderColor);color:var(--sapButton_TextColor);box-sizing:border-box;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-tap-highlight-color:transparent}.ui5-button-root{min-width:inherit;cursor:inherit;height:100%;width:100%;box-sizing:border-box;display:flex;justify-content:center;align-items:center;outline:none;padding:0 var(--_ui5_button_base_padding);position:relative;background:transparent;border:none;color:inherit;text-shadow:inherit;font:inherit;white-space:inherit;overflow:inherit;text-overflow:inherit;letter-spacing:inherit;word-spacing:inherit;line-height:inherit;-webkit-user-select:none;-moz-user-select:none;user-select:none}:host(:not([active]):not([non-interactive]):not([_is-touch]):not([disabled]):hover),:host(:not([hidden]):not([disabled]).ui5_hovered){background:var(--sapButton_Hover_Background);border:1px solid var(--sapButton_Hover_BorderColor);color:var(--sapButton_Hover_TextColor)}.ui5-button-icon,.ui5-button-end-icon{color:inherit;flex-shrink:0}.ui5-button-end-icon{margin-inline-start:var(--_ui5_button_base_icon_margin)}:host([icon-only]:not([has-end-icon])) .ui5-button-root{min-width:auto;padding:0}:host([icon-only]) .ui5-button-text{display:none}.ui5-button-text{outline:none;position:relative;white-space:inherit;overflow:inherit;text-overflow:inherit}:host([has-icon]:not(:empty)) .ui5-button-text{margin-inline-start:var(--_ui5_button_base_icon_margin)}:host([has-end-icon]:not([has-icon]):empty) .ui5-button-end-icon{margin-inline-start:0}:host([disabled]){opacity:var(--sapContent_DisabledOpacity);pointer-events:unset;cursor:default}:host([has-icon]:not([icon-only]):not([has-end-icon])) .ui5-button-text{min-width:calc(var(--_ui5_button_base_min_width) - var(--_ui5_button_base_icon_margin) - 1rem)}:host([disabled]:active){pointer-events:none}:host([desktop]:not([loading])) .ui5-button-root:focus-within:after,:host(:not([active])) .ui5-button-root:focus-visible:after,:host([desktop][active][design="Emphasized"]) .ui5-button-root:focus-within:after,:host([active][design="Emphasized"]) .ui5-button-root:focus-visible:after,:host([desktop][active]) .ui5-button-root:focus-within:before,:host([active]) .ui5-button-root:focus-visible:before{content:"";position:absolute;box-sizing:border-box;pointer-events:none;inset:.0625rem;border:var(--_ui5_button_focused_border);border-radius:var(--_ui5_button_focused_border_radius)}:host([desktop][active]) .ui5-button-root:focus-within:before,:host([active]) .ui5-button-root:focus-visible:before{border-color:var(--_ui5_button_pressed_focused_border_color)}:host([design="Emphasized"][desktop]) .ui5-button-root:focus-within:after,:host([design="Emphasized"]) .ui5-button-root:focus-visible:after{border-color:var(--_ui5_button_emphasized_focused_border_color)}:host([design="Emphasized"][desktop]) .ui5-button-root:focus-within:before,:host([design="Emphasized"]) .ui5-button-root:focus-visible:before{content:"";position:absolute;box-sizing:border-box;inset:.0625rem;border:var(--_ui5_button_emphasized_focused_border_before);border-radius:var(--_ui5_button_focused_border_radius)}.ui5-button-root::-moz-focus-inner{border:0}bdi{display:block;white-space:inherit;overflow:inherit;text-overflow:inherit}:host([ui5-button][active]:not([disabled]):not([non-interactive])){background-image:none;background-color:var(--sapButton_Active_Background);border-color:var(--sapButton_Active_BorderColor);color:var(--sapButton_Active_TextColor)}:host([design="Positive"]){background-color:var(--sapButton_Accept_Background);border-color:var(--sapButton_Accept_BorderColor);color:var(--sapButton_Accept_TextColor)}:host([design="Positive"]:not([active]):not([non-interactive]):not([_is-touch]):not([disabled]):hover),:host([design="Positive"]:not([active]):not([non-interactive]):not([_is-touch]):not([disabled]).ui5_hovered){background-color:var(--sapButton_Accept_Hover_Background);border-color:var(--sapButton_Accept_Hover_BorderColor);color:var(--sapButton_Accept_Hover_TextColor)}:host([ui5-button][design="Positive"][active]:not([non-interactive])){background-color:var(--sapButton_Accept_Active_Background);border-color:var(--sapButton_Accept_Active_BorderColor);color:var(--sapButton_Accept_Active_TextColor)}:host([design="Negative"]){background-color:var(--sapButton_Reject_Background);border-color:var(--sapButton_Reject_BorderColor);color:var(--sapButton_Reject_TextColor)}:host([design="Negative"]:not([active]):not([non-interactive]):not([_is-touch]):not([disabled]):hover),:host([design="Negative"]:not([active]):not([non-interactive]):not([_is-touch]):not([disabled]).ui5_hovered){background-color:var(--sapButton_Reject_Hover_Background);border-color:var(--sapButton_Reject_Hover_BorderColor);color:var(--sapButton_Reject_Hover_TextColor)}:host([ui5-button][design="Negative"][active]:not([non-interactive])){background-color:var(--sapButton_Reject_Active_Background);border-color:var(--sapButton_Reject_Active_BorderColor);color:var(--sapButton_Reject_Active_TextColor)}:host([design="Attention"]){background-color:var(--sapButton_Attention_Background);border-color:var(--sapButton_Attention_BorderColor);color:var(--sapButton_Attention_TextColor)}:host([design="Attention"]:not([active]):not([non-interactive]):not([_is-touch]):not([disabled]):hover),:host([design="Attention"]:not([active]):not([non-interactive]):not([_is-touch]):not([disabled]).ui5_hovered){background-color:var(--sapButton_Attention_Hover_Background);border-color:var(--sapButton_Attention_Hover_BorderColor);color:var(--sapButton_Attention_Hover_TextColor)}:host([ui5-button][design="Attention"][active]:not([non-interactive])){background-color:var(--sapButton_Attention_Active_Background);border-color:var(--sapButton_Attention_Active_BorderColor);color:var(--sapButton_Attention_Active_TextColor)}:host([design="Emphasized"]){background-color:var(--sapButton_Emphasized_Background);border-color:var(--sapButton_Emphasized_BorderColor);border-width:var(--_ui5_button_emphasized_border_width);color:var(--sapButton_Emphasized_TextColor);font-family:var(--sapButton_Emphasized_FontFamily)}:host([design="Emphasized"]:not([active]):not([non-interactive]):not([_is-touch]):not([disabled]):hover),:host([design="Emphasized"]:not([active]):not([non-interactive]):not([_is-touch]):not([disabled]).ui5_hovered){background-color:var(--sapButton_Emphasized_Hover_Background);border-color:var(--sapButton_Emphasized_Hover_BorderColor);border-width:var(--_ui5_button_emphasized_border_width);color:var(--sapButton_Emphasized_Hover_TextColor)}:host([ui5-button][design="Empasized"][active]:not([non-interactive])){background-color:var(--sapButton_Emphasized_Active_Background);border-color:var(--sapButton_Emphasized_Active_BorderColor);color:var(--sapButton_Emphasized_Active_TextColor)}:host([design="Emphasized"][desktop]) .ui5-button-root:focus-within:after,:host([design="Emphasized"]) .ui5-button-root:focus-visible:after{border-color:var(--_ui5_button_emphasized_focused_border_color);outline:none}:host([design="Emphasized"][desktop][active]:not([non-interactive])) .ui5-button-root:focus-within:after,:host([design="Emphasized"][active]:not([non-interactive])) .ui5-button-root:focus-visible:after{border-color:var(--_ui5_button_emphasized_focused_active_border_color)}:host([design="Transparent"]){background-color:var(--sapButton_Lite_Background);color:var(--sapButton_Lite_TextColor);border-color:var(--sapButton_Lite_BorderColor)}:host([design="Transparent"]:not([active]):not([non-interactive]):not([_is-touch]):not([disabled]):hover),:host([design="Transparent"]:not([active]):not([non-interactive]):not([_is-touch]):not([disabled]).ui5_hovered){background-color:var(--sapButton_Lite_Hover_Background);border-color:var(--sapButton_Lite_Hover_BorderColor);color:var(--sapButton_Lite_Hover_TextColor)}:host([ui5-button][design="Transparent"][active]:not([non-interactive])){background-color:var(--sapButton_Lite_Active_Background);border-color:var(--sapButton_Lite_Active_BorderColor);color:var(--sapButton_Active_TextColor)}:host([ui5-segmented-button-item][active][desktop]) .ui5-button-root:focus-within:after,:host([ui5-segmented-button-item][active]) .ui5-button-root:focus-visible:after,:host([pressed][desktop]) .ui5-button-root:focus-within:after,:host([pressed]) .ui5-button-root:focus-visible:after{border-color:var(--_ui5_button_pressed_focused_border_color);outline:none}:host([ui5-segmented-button-item][desktop]:not(:last-child)) .ui5-button-root:focus-within:after,:host([ui5-segmented-button-item]:not(:last-child)) .ui5-button-root:focus-visible:after{border-top-right-radius:var(--_ui5_button_focused_inner_border_radius);border-bottom-right-radius:var(--_ui5_button_focused_inner_border_radius)}:host([ui5-segmented-button-item][desktop]:not(:first-child)) .ui5-button-root:focus-within:after,:host([ui5-segmented-button-item]:not(:first-child)) .ui5-button-root:focus-visible:after{border-top-left-radius:var(--_ui5_button_focused_inner_border_radius);border-bottom-left-radius:var(--_ui5_button_focused_inner_border_radius)}::slotted([slot="badge"][design="InlineText"]){pointer-events:initial;font-family:var(--sapButton_FontFamily);font-size:var(--sapFontSmallSize);padding-inline-start:.25rem;--_ui5-tag-height: .625rem}::slotted([slot="badge"][design="OverlayText"]){pointer-events:initial;position:absolute;top:0;inset-inline-end:0;margin:-.5rem;z-index:1;font-family:var(--sapButton_FontFamily);font-size:var(--sapFontSmallSize);--_ui5-tag-height: .625rem}::slotted([slot="badge"][design="AttentionDot"]){pointer-events:initial;content:"";position:absolute;top:0;inset-inline-end:0;margin:-.25rem;z-index:1}:host(:state(has-overlay-badge)){overflow:visible;margin-inline-end:.3125rem}:host([loading]){position:relative;pointer-events:unset}:host([loading]) .ui5-button-root{opacity:var(--sapContent_DisabledOpacity)}:host([loading][design="Emphasized"]){background-color:inherit;border:inherit}:host([design="Emphasized"][loading]:not([active]):not([non-interactive]):not([_is-touch]):not([disabled]):hover),:host([design="Emphasized"][loading]:not([active]):not([non-interactive]):not([_is-touch]):not([disabled]).ui5_hovered){background-color:inherit;border:inherit}:host([design="Emphasized"][loading]:not([active]):not([non-interactive]):not([_is-touch]):not([disabled]):hover) .ui5-button-root,:host([design="Emphasized"][loading]:not([active]):not([non-interactive]):not([_is-touch]):not([disabled]).ui5_hovered) .ui5-button-root{background-color:var(--sapButton_Emphasized_Hover_Background)}:host([loading][design="Emphasized"]) .ui5-button-root{background-color:var(--sapButton_Emphasized_Background);border-color:var(--sapButton_Emphasized_BorderColor)}.ui5-button-busy-indicator{position:absolute;height:100%;width:100%;top:0}:host([has-end-icon]:not([icon])) .ui5-button-root{justify-content:flex-start}:host([icon-only]) .ui5-button-root{justify-content:center}:host([has-end-icon]:not([icon]):not(:empty)) .ui5-button-end-icon{padding-inline-start:var(--_ui5_button_base_icon_margin);margin-inline-start:auto}\n'}),gp=qr(()=>{Cn(),wn(),kn(),xn(),Wn(),qn(),ec(),tc(),oc(),sc(),Pa(),lc(),Ka(),cc(),zc(),Fc(),Rc(),Oc(),Lc(),hp(),yh(),pp(),Zh=function(e,t,o,i){var r,a=arguments.length,n=a<3?t:null===i?i=Object.getOwnPropertyDescriptor(t,o):i;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)n=Reflect.decorate(e,t,o,i);else for(var s=e.length-1;s>=0;s--)(r=e[s])&&(n=(a<3?r(n):a>3?r(t,o,n):r(t,o))||n);return a>3&&n&&Object.defineProperty(t,o,n),n},Jh=!1,Qh=null,ep=Xh=class extends hn{constructor(){super(),this.design="Default",this.disabled=!1,this.submits=!1,this.accessibilityAttributes={},this.type="Button",this.accessibleRole="Button",this.active=!1,this.iconOnly=!1,this.hasIcon=!1,this.hasEndIcon=!1,this.nonInteractive=!1,this.loading=!1,this.loadingDelay=1e3,this._iconSettings={},this.forcedTabIndex="0",this._isTouch=!1,this._cancelAction=!1,this._isSpacePressed=!1,this._clickHandlerAttached=!1,this._deactivate=()=>{Qh&&Qh._setActiveState(!1)},this._onclickBound=e=>{e instanceof CustomEvent||this._onclick(e)},this._clickHandlerAttached||(this.addEventListener("click",this._onclickBound),this._clickHandlerAttached=!0),Jh||(document.addEventListener("mouseup",this._deactivate),Jh=!0)}_ontouchstart(){this.nonInteractive||this._setActiveState(!0)}onEnterDOM(){Po()&&this.setAttribute("desktop",""),this._clickHandlerAttached||(this.addEventListener("click",this._onclickBound),this._clickHandlerAttached=!0),kl(this,this._updateAccessibleNameRefTexts.bind(this))}_updateAccessibleNameRefTexts(){this._accessibleNameRefTexts=vl(this)}onExitDOM(){this._clickHandlerAttached&&(this.removeEventListener("click",this._onclickBound),this._clickHandlerAttached=!1),Qh===this&&(Qh=null),Tl(this)}async onBeforeRendering(){this._setBadgeOverlayStyle(),this.hasIcon=!!this.icon,this.hasEndIcon=!!this.endIcon,this.iconOnly=this.isIconOnly;const e=await this.getDefaultTooltip();this.buttonTitle=this.iconOnly?this.tooltip??e:this.tooltip}_setBadgeOverlayStyle(){!this.badge.length||this.badge[0].design!==mc.AttentionDot&&this.badge[0].design!==mc.OverlayText?this._internals.states.delete("has-overlay-badge"):this._internals.states.add("has-overlay-badge")}_onclick(e){if(e.stopImmediatePropagation(),this.nonInteractive)return;if(this.loading)return void e.preventDefault();const{altKey:t,ctrlKey:o,metaKey:i,shiftKey:r}=e;this.fireDecoratorEvent("click",{originalEvent:e,altKey:t,ctrlKey:o,metaKey:i,shiftKey:r})?(this._isSubmit&&Li(this),this._isReset&&Ni(this),Bo()&&this.getDomRef()?.focus()):e.preventDefault()}_onmousedown(){this.nonInteractive||(this._setActiveState(!0),Qh=this)}_ontouchend(e){(this.disabled||this.loading)&&(e.preventDefault(),e.stopPropagation()),this.active&&this._setActiveState(!1),Qh&&Qh._setActiveState(!1)}_onkeydown(e){al(e)||Os(e)?this._cancelAction=!0:Cs(e)&&(this._isSpacePressed=!0),Cs(e)||fs(e)?this._setActiveState(!0):this._cancelAction&&this._setActiveState(!1)}_onkeyup(e){const t=Cs(e),o=al(e)||Os(e);if(t||ws(e)){if(this._cancelAction)return this._cancelAction=!1,this._isSpacePressed=!1,void e.preventDefault();this._isSpacePressed=!1}else o&&!this._isSpacePressed&&(this._cancelAction=!1);(Cs(e)||fs(e))&&this.active&&this._setActiveState(!1)}_onfocusout(){this.nonInteractive||(this._isSpacePressed=!1,this._cancelAction=!1,this.active&&this._setActiveState(!1))}_setActiveState(e){this.fireDecoratorEvent("active-state-change")&&!this.loading&&(this.active=e)}get hasButtonType(){return this.design!==uc.Default&&this.design!==uc.Transparent}get isIconOnly(){return!Zl(this.text)}static typeTextMappings(){return{Positive:L_,Negative:N_,Emphasized:H_,Attention:U_}}getDefaultTooltip(){if(Jl())return Kl(this.icon)}get buttonTypeText(){return Xh.i18nBundle.getText(Xh.typeTextMappings()[this.design])}get effectiveAccRole(){return _c(this.accessibleRole)}get tabIndexValue(){if(this.disabled)return;const e=this.getAttribute("tabindex");return e?Number.parseInt(e):this.nonInteractive?-1:Number.parseInt(this.forcedTabIndex)}get ariaLabelText(){const e=this._accessibleNameRefTexts||this.accessibleName||"",t=this.textContent||"";return[e||t,this.effectiveBadgeDescriptionText||""].filter(e=>e).join(" ")}get ariaDescriptionText(){const e=[""===this.accessibleDescription?void 0:this.accessibleDescription,this.hasButtonType?this.buttonTypeText:""].filter(e=>e);return e.length>0?e.join(" "):void 0}get _computedAccessibilityAttributes(){return{expanded:this.accessibilityAttributes.expanded,hasPopup:this.accessibilityAttributes.hasPopup,controls:this.accessibilityAttributes.controls,ariaKeyShortcuts:this.accessibilityAttributes.ariaKeyShortcuts,ariaLabel:this.accessibilityAttributes.ariaLabel||this.ariaLabelText}}get accessibilityInfo(){return{description:this.ariaDescriptionText,role:this.effectiveAccRole,disabled:this.disabled,children:this.text,type:this.effectiveAccRoleTranslation,label:this.ariaLabelText}}get effectiveAccRoleTranslation(){return this.accessibleRole===fc.Button?Xh.i18nBundle.getText(q_):this.accessibleRole===fc.Link?Xh.i18nBundle.getText(j_):""}get effectiveBadgeDescriptionText(){if(!this.shouldRenderBadge)return"";const e=this.badge[0].effectiveText;switch(e){case"":return e;case"1":return Xh.i18nBundle.getText(V_,e);default:return Xh.i18nBundle.getText(W_,e)}}get _isSubmit(){return this.type===pc.Submit||this.submits}get _isReset(){return this.type===pc.Reset}get shouldRenderBadge(){return!(!this.badge.length||!this.badge[0].text.length&&this.badge[0].design!==mc.AttentionDot)}},Zh([bn()],ep.prototype,"design",void 0),Zh([bn({type:Boolean})],ep.prototype,"disabled",void 0),Zh([bn()],ep.prototype,"icon",void 0),Zh([bn()],ep.prototype,"endIcon",void 0),Zh([bn({type:Boolean})],ep.prototype,"submits",void 0),Zh([bn()],ep.prototype,"form",void 0),Zh([bn()],ep.prototype,"tooltip",void 0),Zh([bn()],ep.prototype,"accessibleName",void 0),Zh([bn()],ep.prototype,"accessibleNameRef",void 0),Zh([bn({type:Object})],ep.prototype,"accessibilityAttributes",void 0),Zh([bn()],ep.prototype,"accessibleDescription",void 0),Zh([bn()],ep.prototype,"type",void 0),Zh([bn()],ep.prototype,"accessibleRole",void 0),Zh([bn({type:Boolean})],ep.prototype,"active",void 0),Zh([bn({type:Boolean})],ep.prototype,"iconOnly",void 0),Zh([bn({type:Boolean})],ep.prototype,"hasIcon",void 0),Zh([bn({type:Boolean})],ep.prototype,"hasEndIcon",void 0),Zh([bn({type:Boolean})],ep.prototype,"nonInteractive",void 0),Zh([bn({type:Boolean})],ep.prototype,"loading",void 0),Zh([bn({type:Number})],ep.prototype,"loadingDelay",void 0),Zh([bn({noAttribute:!0})],ep.prototype,"buttonTitle",void 0),Zh([bn({type:Object})],ep.prototype,"_iconSettings",void 0),Zh([bn({noAttribute:!0})],ep.prototype,"forcedTabIndex",void 0),Zh([bn({type:Boolean})],ep.prototype,"_isTouch",void 0),Zh([bn({type:Boolean,noAttribute:!0})],ep.prototype,"_cancelAction",void 0),Zh([bn({type:Boolean,noAttribute:!0})],ep.prototype,"_isSpacePressed",void 0),Zh([bn({noAttribute:!0})],ep.prototype,"_accessibleNameRefTexts",void 0),Zh([Sn({type:Node,default:!0})],ep.prototype,"text",void 0),Zh([Sn({type:HTMLElement,invalidateOnChildChange:!0})],ep.prototype,"badge",void 0),Zh([Tn("@ui5/webcomponents")],ep,"i18nBundle",void 0),(ep=Xh=Zh([fn({tag:"ui5-button",formAssociated:!0,languageAware:!0,renderer:ms,template:Gh,styles:Kh,shadowRootOptions:{delegatesFocus:!0}}),yn("click",{bubbles:!0,cancelable:!0}),yn("active-state-change",{bubbles:!0,cancelable:!0})],ep)).define(),tp=ep}),mp=qr(()=>{op=()=>{let e=document.activeElement;for(;e&&e.shadowRoot&&e.shadowRoot.activeElement;)e=e.shadowRoot.activeElement;return e}}),vp=qr(()=>{ip=(e=>(e.Auto="Auto",e.Vertical="Vertical",e.Horizontal="Horizontal",e.Paging="Paging",e))(ip||{})}),fp=qr(()=>{rp=(e=>(e.Static="Static",e.Cyclic="Cyclic",e))(rp||{})}),bp=qr(()=>{tc(),mp(),vp(),fp(),Cn(),ap=class{constructor(e,t){if(!e.isUI5Element)throw new Error("The root web component must be a UI5 Element instance");if(this.rootWebComponent=e,this.rootWebComponent.addEventListener("keydown",this._onkeydown.bind(this)),this._initBound=this._init.bind(this),this.rootWebComponent.attachComponentStateFinalized(this._initBound),"function"!=typeof t.getItemsCallback)throw new Error("getItemsCallback is required");this._getItems=t.getItemsCallback,this._currentIndex=t.currentIndex||0,this._rowSize=t.rowSize||1,this._behavior=t.behavior||rp.Static,this._navigationMode=t.navigationMode||ip.Auto,this._affectedPropertiesNames=t.affectedPropertiesNames||[],this._skipItemsSize=t.skipItemsSize||null}setCurrentItem(e){const t=this._getItems().indexOf(e);-1!==t?(this._currentIndex=t,this._applyTabIndex()):console.warn("The provided item is not managed by ItemNavigation",e)}setRowSize(e){this._rowSize=e}_init(){this._getItems().forEach((e,t)=>{e.forcedTabIndex=t===this._currentIndex?"0":"-1"})}_onkeydown(e){if(!this._canNavigate())return;const t=this._navigationMode===ip.Horizontal||this._navigationMode===ip.Auto,o=this._navigationMode===ip.Vertical||this._navigationMode===ip.Auto,i="rtl"===this.rootWebComponent.effectiveDir;if(i&&ks(e)&&t)this._handleRight();else if(i&&xs(e)&&t)this._handleLeft();else if(ks(e)&&t)this._handleLeft();else if(xs(e)&&t)this._handleRight();else if(Ss(e)&&o)this._handleUp();else if(Ts(e)&&o)this._handleDown();else if(Es(e))this._handleHome();else if(zs(e))this._handleEnd();else if(Vs(e))this._handlePageUp();else{if(!Ws(e))return;this._handlePageDown()}e.preventDefault(),this._applyTabIndex(),this._focusCurrentItem()}_handleUp(){const e=this._getItems().length;if(this._currentIndex-this._rowSize>=0)this._currentIndex-=this._rowSize;else if(this._behavior===rp.Cyclic){const t=this._currentIndex%this._rowSize;let o=(0===t?this._rowSize-1:t-1)+(Math.ceil(e/this._rowSize)-1)*this._rowSize;o>e-1&&(o-=this._rowSize),this._currentIndex=o}else this._currentIndex=0}_handleDown(){const e=this._getItems().length;if(this._currentIndex+this._rowSize<e)this._currentIndex+=this._rowSize;else if(this._behavior===rp.Cyclic){const e=(this._currentIndex%this._rowSize+1)%this._rowSize;this._currentIndex=e}else this._currentIndex=e-1}_handleLeft(){const e=this._getItems().length;this._currentIndex>0?this._currentIndex-=1:this._behavior===rp.Cyclic&&(this._currentIndex=e-1)}_handleRight(){const e=this._getItems().length;this._currentIndex<e-1?this._currentIndex+=1:this._behavior===rp.Cyclic&&(this._currentIndex=0)}_handleHome(){const e=this._rowSize>1?this._rowSize:this._getItems().length;this._currentIndex-=this._currentIndex%e}_handleEnd(){const e=this._rowSize>1?this._rowSize:this._getItems().length;this._currentIndex+=e-1-this._currentIndex%e}_handlePageUp(){this._rowSize>1||this._handlePageUpFlat()}_handlePageDown(){this._rowSize>1||this._handlePageDownFlat()}_handlePageUpFlat(){null!==this._skipItemsSize&&this._currentIndex+1>this._skipItemsSize?this._currentIndex-=this._skipItemsSize:this._currentIndex-=this._currentIndex}_handlePageDownFlat(){null!==this._skipItemsSize&&this._getItems().length-this._currentIndex-1>this._skipItemsSize?this._currentIndex+=this._skipItemsSize:this._currentIndex=this._getItems().length-1}_applyTabIndex(){const e=this._getItems();for(let t=0;t<e.length;t++)e[t].forcedTabIndex=t===this._currentIndex?"0":"-1";this._affectedPropertiesNames.forEach(e=>{const t=this.rootWebComponent[e];this.rootWebComponent[e]=Array.isArray(t)?[...t]:{...t}})}_focusCurrentItem(){const e=this._getCurrentItem();e&&e.focus()}_canNavigate(){const e=this._getCurrentItem(),t=op();return e&&e===t}_getCurrentItem(){const e=this._getItems();if(!e.length)return;for(;this._currentIndex>=e.length;)this._currentIndex-=this._rowSize;this._currentIndex<0&&(this._currentIndex=0);const t=e[this._currentIndex];if(!t)return;if(pn(t))return t.getFocusDomRef();const o=this.rootWebComponent.getDomRef();return o&&t.id?o.querySelector(`[id="${t.id}"]`):void 0}}}),yp=qr(()=>{Cn(),sp=new Map,lp=()=>(np||(np=new window.ResizeObserver(e=>{window.requestAnimationFrame(()=>{e.forEach(e=>{const t=sp.get(e.target);t&&Promise.all(t.map(e=>e()))})})})),np),cp=(e,t)=>{const o=sp.get(e)||[];o.length||lp().observe(e),sp.set(e,[...o,t])},_p=(e,t)=>{const o=sp.get(e)||[];if(0===o.length)return;const i=o.filter(e=>e!==t);0===i.length?(lp().unobserve(e),sp.delete(e)):sp.set(e,i)},dp=class{static register(e,t){let o=e;pn(o)&&(o=o.getDomRef()),o instanceof HTMLElement?cp(o,t):console.warn("Cannot register ResizeHandler for element",e)}static deregister(e,t){let o=e;pn(o)&&(o=o.getDomRef()),o instanceof HTMLElement?_p(o,t):console.warn("Cannot deregister ResizeHandler for element",e)}}});gp(),bp(),yp(),function(e){e.Standard="Standard",e.NoCurrentPage="NoCurrentPage"}(up||(up={}));var Cp,wp,kp=up,xp=qr(()=>{!function(e){e.Default="Default",e.Subtle="Subtle",e.Emphasized="Emphasized"}(Cp||(Cp={})),wp=Cp});Cn(),wn(),kn(),Wn(),xn(),xp();var Sp,Tp=function(e,t,o,i){var r,a=arguments.length,n=a<3?t:null===i?i=Object.getOwnPropertyDescriptor(t,o):i;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)n=Reflect.decorate(e,t,o,i);else for(var s=e.length-1;s>=0;s--)(r=e[s])&&(n=(a<3?r(n):a>3?r(t,o,n):r(t,o))||n);return a>3&&n&&Object.defineProperty(t,o,n),n},Bp=class extends hn{get stableDomRef(){return this.getAttribute("stable-dom-ref")||`${this._id}-stable-dom-ref`}get _linkDesign(){return this._isCurrentPageItem?wp.Emphasized:wp.Default}get accessibilityAttributes(){return{current:!!this._isCurrentPageItem&&"page"}}};Tp([bn()],Bp.prototype,"href",void 0),Tp([bn()],Bp.prototype,"target",void 0),Tp([bn()],Bp.prototype,"accessibleName",void 0),Tp([Sn({type:Node,default:!0})],Bp.prototype,"text",void 0),(Bp=Tp([fn("ui5-breadcrumbs-item"),yn("click",{bubbles:!0,cancelable:!0})],Bp)).define();var Ip,Dp,Ap,Pp,Mp,Ep,zp=qr(()=>{Sp=":host{justify-content:center;align-items:center;display:flex;color:var(--sapList_TextColor);background-color:var(--sapList_Background);font-family:var(--sapFontFamily);height:var(--sapElement_LineHeight);border-bottom:var(--sapList_BorderWidth) solid var(--sapList_BorderColor);opacity:.8;position:absolute;padding:0 1rem;top:-1000px;left:-1000px}"}),Fp=qr(()=>{Ip={key:"DRAG_DROP_MULTIPLE_TEXT",defaultText:"{0} items"}}),Rp=qr(()=>{zp(),nn(),Fp(),Dp=null,Ap=(e,t)=>{Dp=e,t?.dataTransfer?.setData("text/plain",e?e.id:"")},Pp=async e=>{const t=document.createElement("div"),o=await Dr("@ui5/webcomponents-base"),i=t.attachShadow({mode:"open"}),r=new CSSStyleSheet;return r.replaceSync(Sp),i.adoptedStyleSheets=[r],i.textContent=o.getText(Ip,e),t},Mp=async(e,t)=>{if(e<2)return void console.warn(`Cannot start multiple drag with count ${e}. Minimum is 2.`);if(!t.dataTransfer)return;const o=await Pp(e);document.body.appendChild(o),t.dataTransfer.setDragImage(o,0,0),requestAnimationFrame(()=>{o.remove()})},Ep={setDraggedElement:Ap,clearDraggedElement:()=>{Dp=null},getDraggedElement:()=>Dp,startMultipleDrag:Mp}});var Op=qr(()=>{Rp()});var Lp,Np,Hp,Up,Vp,Wp,qp,jp,Yp,$p,Gp,Kp,Zp,Xp,Jp,Qp,eg,tg,og,ig,rg,ag,ng,sg,lg,cg,_g,dg,ug=qr(()=>{Rp()}),hg=qr(()=>{Lp=(e=>(e.On="On",e.Before="Before",e.After="After",e))(Lp||{})}),pg=qr(()=>{Np=(e=>(e.Vertical="Vertical",e.Horizontal="Horizontal",e))(Np||{})}),gg=qr(()=>{hg(),pg(),Hp=(e,t,o,i)=>{const r=Math.abs(e-t),a=Math.abs(e-o),n=Math.abs(e-i);let s=[];switch(Math.min(r,a,n)){case r:s=[Lp.Before];break;case a:s=[Lp.On,r<n?Lp.Before:Lp.After];break;case n:s=[Lp.After]}return s},Up=(e,t,o)=>{let i=Number.POSITIVE_INFINITY,r=null;for(let u=0;u<e.length;u++){const a=e[u],{left:n,width:s,top:l,height:c}=a.getBoundingClientRect();let _;_=o===Np.Vertical?l+c/2:n+s/2;const d=Math.abs(t-_);d<i&&(i=d,r=a)}if(!r)return null;const{width:a,height:n,left:s,right:l,top:c,bottom:_}=r.getBoundingClientRect();let d;return d=o===Np.Vertical?Hp(t,c,c+n/2,_):Hp(t,s,s+a/2,l),{element:r,placements:d}},Vp=(e,t)=>--t<0?[]:[{element:e[t],placement:Lp.Before}],Wp=(e,t)=>++t>=e.length?[]:[{element:e[t],placement:Lp.After}],qp={ArrowLeft:Vp,ArrowUp:Vp,ArrowRight:Wp,ArrowDown:Wp,Home:(e,t)=>e.slice(0,t).map(e=>({element:e,placement:Lp.Before})),End:(e,t)=>e.slice(t+1,e.length).reverse().map(e=>({element:e,placement:Lp.After}))},jp=(e,t,o)=>Yp(o.key)?qp[o.key](e,e.indexOf(t)):[],Yp=e=>e in qp}),mg=qr(()=>{Rp(),Op(),ug(),gg(),pg(),$p=class{constructor(e,t){this.component=e,this.config={orientation:Np.Vertical,clientCoordinate:"clientY",...t}}ondragenter(e){e.preventDefault()}ondragleave(e){if(e.relatedTarget instanceof Node&&this.component.shadowRoot?.contains(e.relatedTarget))return;const t=this.config.getDropIndicator();t&&(t.targetReference=null)}ondragover(e){if(!this._validateDragOver(e))return;const t=Ep.getDraggedElement(),o=this.config.getDropIndicator(),i=this._findClosestPosition(e);if(!i)return void(o.targetReference=null);const r=this._transformTargetElement(i.element);if(!this._isValidDragTarget(t,r))return void(o.targetReference=null);const a=this._filterPlacements(i.placements,t,r),n=this.config.useOriginalEvent?{originalEvent:!0}:{},{targetReference:s,placement:l}=function(e,t,o,i,r={}){const a=Ep.getDraggedElement(),n={targetReference:null,placement:null};if(!a&&!r?.crossDnD)return n;const s=o.placements;return n.targetReference=e.target,s.some(s=>{const l=r.originalEvent?{originalEvent:e}:{};return!t.fireDecoratorEvent("move-over",{...l,source:{element:a},destination:{element:i,placement:s}})&&(e.preventDefault(),n.targetReference=o.element,n.placement=s,!0)})||(n.targetReference=null),n}(e,this.component,{element:r,placements:a},r,n);o.targetReference=s,o.placement=l}ondrop(e){const t=this.config.getDropIndicator();if(!t?.targetReference||!t?.placement)return void e.preventDefault();const o=this.config.useOriginalEvent?{originalEvent:!0}:{};!function(e,t,o,i,r={}){e.preventDefault();const a=Ep.getDraggedElement();if(!a&&r?.crossDnD)return;const n=r.originalEvent?{originalEvent:e}:{};t.fireDecoratorEvent("move",{...n,source:{element:a},destination:{element:o,placement:i}}),a?.focus()}(e,this.component,t.targetReference,t.placement,o),t.targetReference=null}_validateDragOver(e){if(!(e.target instanceof HTMLElement))return!1;const t=Ep.getDraggedElement(),o=this.config.getDropIndicator();return!(!t||!o)}_findClosestPosition(e){return Up(this.config.getItems(),"clientX"===this.config.clientCoordinate?e.clientX:e.clientY,this.config.orientation)}_transformTargetElement(e){return this.config.transformElement?this.config.transformElement(e):e}_isValidDragTarget(e,t){return!this.config.validateDraggedElement||this.config.validateDraggedElement(e,t)}_filterPlacements(e,t,o){return this.config.filterPlacements?this.config.filterPlacements(e,t,o):e}}}),vg=qr(()=>{Gp=e=>{let t=e;return e.shadowRoot&&e.shadowRoot.activeElement&&(t=e.shadowRoot.activeElement),t}}),fg=qr(()=>{Kp=null,Zp=(e,t)=>{Kp&&clearTimeout(Kp),Kp=setTimeout(()=>{Kp=null,e()},t)}}),bg=qr(()=>{Xp=e=>{const t=e.getBoundingClientRect();return t.top>=0&&t.left>=0&&t.bottom<=(window.innerHeight||document.documentElement.clientHeight)&&t.right<=(window.innerWidth||document.documentElement.clientWidth)}}),yg=qr(()=>{!function(e){e.None="None",e.Single="Single",e.SingleStart="SingleStart",e.SingleEnd="SingleEnd",e.SingleAuto="SingleAuto",e.Multiple="Multiple",e.Delete="Delete"}(Jp||(Jp={})),Qp=Jp}),Cg=qr(()=>{!function(e){e.Button="Button",e.Scroll="Scroll",e.None="None"}(eg||(eg={})),tg=eg}),wg=qr(()=>{!function(e){e.List="List",e.Menu="Menu",e.Tree="Tree",e.ListBox="ListBox"}(og||(og={})),ig=og}),kg=qr(()=>{!function(e){e.All="All",e.Inner="Inner",e.None="None"}(rg||(rg={})),ag=rg}),xg=qr(()=>{ng=new Map,(sg=new Map).set("S",[0,599]),sg.set("M",[600,1023]),sg.set("L",[1024,1439]),sg.set("XL",[1440,1/0]),lg=(e=>(e.RANGE_4STEPS="4Step",e))(lg||{}),cg=(e,t)=>{ng.set(e,t)},_g=(e,t=window.innerWidth)=>{let o,i=ng.get(e);i||(i=ng.get("4Step"));const r=Math.floor(t);return i.forEach((e,t)=>{r>=e[0]&&r<=e[1]&&(o=t)}),o||[...i.keys()][0]},(dg={RANGESETS:lg,initRangeSet:cg,getCurrentRange:_g}).initRangeSet(dg.RANGESETS.RANGE_4STEPS,sg)});function Sg(){return b_("div",{class:{"ui5-di-rect":this.placement===Lp.On,"ui5-di-needle":this.placement!==Lp.On}})}var Tg,Bg,Ig,Dg,Ag=qr(()=>{C_(),hg()}),Pg=qr(()=>{Ca(),Ch(),wh(),St("@ui5/webcomponents-theming","sap_horizon",async()=>ch),St("@ui5/webcomponents","sap_horizon",async()=>_h,"host"),Tg=':host{position:absolute;pointer-events:none;z-index:99}:host([orientation="Vertical"]) .ui5-di-needle{width:.125rem;height:100%;inset-block:0;background:var(--sapContent_DragAndDropActiveColor)}:host([orientation="Vertical"]){margin-left:-.0625rem}:host([orientation="Horizontal"]) .ui5-di-needle{height:.125rem;width:100%;inset-inline:0;background:var(--sapContent_DragAndDropActiveColor)}:host([orientation="Horizontal"]){margin-top:-.0625rem}:host([orientation="Horizontal"][placement="Before"][first]){margin-top:.3125rem}:host([orientation="Horizontal"][placement="After"][last]){margin-top:-.3125rem}:host([orientation="Vertical"]) .ui5-di-needle:before{left:-.1875rem;content:"";position:absolute;width:.25rem;height:.25rem;border-radius:.25rem;border:.125rem solid var(--sapContent_DragAndDropActiveColor);background-color:#fff;pointer-events:none}:host([orientation="Horizontal"]) .ui5-di-needle:before{top:-.1875rem;content:"";position:absolute;width:.25rem;height:.25rem;border-radius:.25rem;border:.125rem solid var(--sapContent_DragAndDropActiveColor);background-color:#fff;pointer-events:none}:host .ui5-di-rect{border:.125rem solid var(--sapContent_DragAndDropActiveColor);position:absolute;inset:0}:host .ui5-di-rect:before{content:" ";position:absolute;inset:0;background:var(--sapContent_DragAndDropActiveColor);opacity:.05}\n'}),Mg=qr(()=>{Cn(),wn(),kn(),ec(),hg(),pg(),Ag(),Pg(),Bg=function(e,t,o,i){var r,a=arguments.length,n=a<3?t:null===i?i=Object.getOwnPropertyDescriptor(t,o):i;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)n=Reflect.decorate(e,t,o,i);else for(var s=e.length-1;s>=0;s--)(r=e[s])&&(n=(a<3?r(n):a>3?r(t,o,n):r(t,o))||n);return a>3&&n&&Object.defineProperty(t,o,n),n},Ig=class extends hn{get _positionProperty(){return this.orientation===Np.Vertical?"left":"top"}constructor(){super(),this.targetReference=null,this.ownerReference=null,this.placement="Before",this.orientation="Vertical"}onAfterRendering(){if(!this.targetReference||!this.ownerReference)return void Object.assign(this.style,{display:"none"});const{left:e,width:t,right:o,top:i,bottom:r,height:a}=this.targetReference.getBoundingClientRect(),{top:n,height:s}=this.ownerReference.getBoundingClientRect(),l={display:"",[this._positionProperty]:"",width:"",height:""};let c=0,_=!1,d=!1;if(this.orientation===Np.Vertical){switch(this.placement){case Lp.Before:c=e;break;case Lp.On:l.width=`${t}px`,c=e;break;case Lp.After:c=o}l.height=`${a}px`}if(this.orientation===Np.Horizontal){switch(this.placement){case Lp.Before:c=i;break;case Lp.On:l.height=`${a}px`,c=i;break;case Lp.After:c=r}l.width=`${t}px`,c-=n,c<=0&&(d=!0),c>=s&&(_=!0)}l[this._positionProperty]=`${c}px`,this.toggleAttribute("first",d),this.toggleAttribute("last",_),Object.assign(this.style,l)}},Bg([bn({type:Object})],Ig.prototype,"targetReference",void 0),Bg([bn({type:Object})],Ig.prototype,"ownerReference",void 0),Bg([bn()],Ig.prototype,"placement",void 0),Bg([bn()],Ig.prototype,"orientation",void 0),(Ig=Bg([fn({tag:"ui5-drop-indicator",renderer:ms,styles:Tg,template:Sg})],Ig)).define(),Dg=Ig});function Eg(){return b_("div",{class:"ui5-list-root",onFocusIn:this._onfocusin,onKeyDown:this._onkeydown,onDragEnter:this._ondragenter,onDragOver:this._ondragover,onDrop:this._ondrop,onDragLeave:this._ondragleave,"onui5-_close":this.onItemClose,"onui5-toggle":this.onItemToggle,"onui5-request-tabindex-change":this.onItemTabIndexChange,"onui5-_focused":this.onItemFocused,"onui5-forward-after":this.onForwardAfter,"onui5-forward-before":this.onForwardBefore,"onui5-selection-requested":this.onSelectionRequested,"onui5-focus-requested":this.onFocusRequested,"onui5-_press":this.onItemPress,children:y_(Uh,{id:`${this._id}-busyIndicator`,delay:this.loadingDelay,active:this.showBusyIndicatorOverlay,class:"ui5-list-busy-indicator",children:[y_("div",{class:"ui5-list-container",children:[this.header.length>0&&b_("slot",{name:"header"}),this.shouldRenderH1&&b_("header",{id:this.headerID,class:"ui5-list-header",children:this.headerText}),y_("div",{class:"ui5-list-scroll-container",children:[b_("span",{tabindex:-1,"aria-hidden":"true",class:"ui5-list-start-marker"}),this.hasData&&b_("div",{id:`${this._id}-before`,tabindex:0,role:"none",class:"ui5-list-focusarea"}),b_("span",{id:`${this._id}-modeLabel`,class:"ui5-hidden-text",children:this.ariaLabelModeText}),y_("ul",{id:`${this._id}-listUl`,class:"ui5-list-ul",role:this.listAccessibleRole,"aria-label":this.ariaLabelTxt,"aria-labelledby":this.ariaLabelledBy,"aria-description":this.ariaDescriptionText||void 0,children:[b_("slot",{}),this.showNoDataText&&b_("li",{tabindex:0,id:`${this._id}-nodata`,class:"ui5-list-nodata",role:"listitem",children:b_("div",{id:`${this._id}-nodata-text`,class:"ui5-list-nodata-text",children:this.noDataText})})]}),this.growsWithButton&&zg.call(this),this.footerText&&b_("footer",{id:`${this._id}-footer`,class:"ui5-list-footer",children:this.footerText}),this.hasData&&b_("div",{id:`${this._id}-after`,tabindex:0,role:"none",class:"ui5-list-focusarea"}),b_("span",{tabindex:-1,"aria-hidden":"true",class:"ui5-list-end-marker"})]})]}),b_(Dg,{orientation:"Horizontal",ownerReference:this})]})})}function zg(){return y_("div",{class:"ui5-growing-button",part:"growing-button",children:[y_("div",{id:`${this._id}-growing-btn`,role:"button",tabindex:0,part:"growing-button-inner",class:{"ui5-growing-button-inner":!0,"ui5-growing-button-inner-active":this._loadMoreActive},"aria-label":this.growingButtonAriaLabel,"aria-labelledby":this.growingButtonAriaLabelledBy,"aria-describedby":this.growingButtonAriaDescribedBy,onClick:this._onLoadMoreClick,onKeyDown:this._onLoadMoreKeydown,onKeyUp:this._onLoadMoreKeyup,onMouseDown:this._onLoadMoreMousedown,onMouseUp:this._onLoadMoreMouseup,children:[this.loading&&b_(Uh,{delay:this.loadingDelay,part:"growing-button-busy-indicator",class:"ui5-list-growing-button-busy-indicator",active:!0}),b_("span",{id:`${this._id}-growingButton-text`,class:"ui5-growing-button-text","growing-button-text":!0,children:this._growingButtonText})]}),this.accessibilityAttributes.growingButton?.description&&b_("span",{id:`${this._id}-growingButton-description`,class:"ui5-hidden-text",children:this.accessibilityAttributes.growingButton.description})]})}var Fg,Rg,Og,Lg,Ng,Hg,Ug,Vg,Wg,qg,jg,Yg,$g=qr(()=>{C_(),Yh(),Mg()}),Gg=qr(()=>{Ca(),Ch(),wh(),St("@ui5/webcomponents-theming","sap_horizon",async()=>ch),St("@ui5/webcomponents","sap_horizon",async()=>_h,"host"),Fg='.ui5-hidden-text{position:absolute;clip:rect(1px,1px,1px,1px);user-select:none;left:-1000px;top:-1000px;pointer-events:none;font-size:0}.ui5-growing-button{display:flex;align-items:center;padding:var(--_ui5_load_more_padding);border-top:1px solid var(--sapList_BorderColor);border-bottom:var(--_ui5_load_more_border-bottom);box-sizing:border-box;cursor:pointer;outline:none}.ui5-growing-button-inner{display:flex;align-items:center;justify-content:center;flex-direction:row;min-height:var(--_ui5_load_more_text_height);width:100%;color:var(--sapButton_TextColor);background-color:var(--sapList_Background);border:var(--_ui5_load_more_border);border-radius:var(--_ui5_load_more_border_radius);box-sizing:border-box}.ui5-growing-button-inner:focus-visible{outline:var(--_ui5_load_more_outline_width) var(--sapContent_FocusStyle) var(--sapContent_FocusColor);outline-offset:-.125rem;border-color:transparent}.ui5-growing-button-inner:hover{background-color:var(--sapList_Hover_Background)}.ui5-growing-button-inner:active,.ui5-growing-button-inner.ui5-growing-button-inner--active{background-color:var(--sapList_Active_Background);border-color:var(--sapList_Active_Background)}.ui5-growing-button-inner:active>*,.ui5-growing-button-inner.ui5-growing-button-inner--active>*{color:var(--sapList_Active_TextColor)}.ui5-growing-button-text{text-align:center;font-family:var(--sapFontFamily);white-space:nowrap;overflow:hidden;text-overflow:ellipsis;box-sizing:border-box}.ui5-growing-button-text{height:var(--_ui5_load_more_text_height);padding:.875rem 1rem 1rem;font-size:var(--_ui5_load_more_text_font_size);font-weight:700}:host([loading]) .ui5-list-growing-button-busy-indicator:not([_is-busy]){display:none}:host([loading]) .ui5-list-growing-button-busy-indicator[_is-busy]+.ui5-growing-button-text{padding-left:.5rem}:host(:not([hidden])){display:block;max-width:100%;width:100%;-webkit-tap-highlight-color:transparent}:host([indent]) .ui5-list-root{padding:2rem}:host([separators="None"]) .ui5-list-nodata{border-bottom:0}.ui5-list-root,.ui5-list-busy-indicator,.ui5-list-container{width:100%;height:100%;position:relative;box-sizing:border-box}.ui5-list-scroll-container{overflow:auto;height:100%;width:100%}.ui5-list-ul{list-style-type:none;padding:0;margin:0}.ui5-list-ul:focus{outline:none}.ui5-list-focusarea{position:fixed}.ui5-list-header{overflow:hidden;white-space:nowrap;text-overflow:ellipsis;box-sizing:border-box;font-size:var(--sapFontHeader4Size);font-family:var(--sapFontFamily);color:var(--sapGroup_TitleTextColor);height:3rem;line-height:3rem;padding:0 1rem;background-color:var(--sapGroup_TitleBackground);border-bottom:1px solid var(--sapGroup_TitleBorderColor)}.ui5-list-footer{height:2rem;box-sizing:border-box;-webkit-text-size-adjust:none;font-size:var(--sapFontSize);font-family:var(--sapFontFamily);line-height:2rem;background-color:var(--sapList_FooterBackground);color:var(--ui5_list_footer_text_color);padding:0 1rem;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.ui5-list-nodata{list-style-type:none;display:-webkit-box;display:flex;-webkit-box-align:center;align-items:center;-webkit-box-pack:center;justify-content:center;color:var(--sapTextColor);background-color:var(--sapList_Background);border-bottom:1px solid var(--sapList_BorderColor);padding:0 1rem!important;outline:none;min-height:var(--_ui5_list_no_data_height);font-size:var(--_ui5_list_no_data_font_size);font-family:var(--sapFontFamily);position:relative}.ui5-list-nodata:focus:after{content:"";border:var(--sapContent_FocusWidth) var(--sapContent_FocusStyle) var(--sapContent_FocusColor);position:absolute;inset:.125rem;pointer-events:none}.ui5-list-nodata-text{overflow:hidden;text-overflow:ellipsis;white-space:normal;margin:var(--_ui5_list_item_content_vertical_offset) 0}:host([growing="Scroll"]) .ui5-list-end-marker{display:inline-block}:host([sticky-header]) ::slotted([slot="header"]),:host([sticky-header]) .ui5-list-header{position:sticky;top:0;z-index:100}\n'}),Kg=qr(()=>{wn(),kn(),Wn()}),Zg=qr(()=>{Rg=e=>{if("SLOT"===e.nodeName)return!1;const t=window.getComputedStyle(e);return"contents"!==t.display&&e.offsetWidth<=0&&e.offsetHeight<=0||"hidden"===t.visibility}}),Xg=qr(()=>{Zg(),Og=e=>{if(!e||e.hasAttribute("data-sap-no-tab-ref")||Rg(e))return!1;const t=e.getAttribute("tabindex");if(null!=t)return parseInt(t)>=0;const o=e.nodeName.toLowerCase();return!("a"!==o&&!/^(input|select|textarea|button|object)$/.test(o))&&!e.disabled}}),Jg=qr(()=>{Xg(),Lg=e=>Ng("SLOT"===e.tagName?[e]:[...e.children]),Ng=(e,t)=>{const o=t||[];return e&&e.forEach(e=>{if(e.nodeType===Node.TEXT_NODE||e.nodeType===Node.COMMENT_NODE)return;const t=e;t.hasAttribute("data-sap-no-tab-ref")||(Og(t)&&o.push(t),"SLOT"===t.tagName?Ng(t.assignedElements(),o):Ng([...t.shadowRoot?t.shadowRoot.children:t.children],o))}),o}}),Qg=qr(()=>{Ca(),Ch(),wh(),St("@ui5/webcomponents-theming","sap_horizon",async()=>ch),St("@ui5/webcomponents","sap_horizon",async()=>_h,"host"),Hg=':host{box-sizing:border-box;height:var(--_ui5_list_item_base_height);background-color:var(--ui5-listitem-background-color);border-bottom:.0625rem solid transparent}:host(:not([hidden])){display:block}:host([disabled]){opacity:var(--_ui5-listitembase_disabled_opacity);pointer-events:none}:host([actionable]:not([disabled]):not([ui5-li-group-header])){cursor:pointer}:host([has-border]){border-bottom:var(--ui5-listitem-border-bottom)}:host([selected]){background-color:var(--sapList_SelectionBackgroundColor);border-bottom:var(--ui5-listitem-selected-border-bottom)}:host([selected]) .ui5-li-additional-text{text-shadow:var(--sapContent_TextShadow)}:host([actionable]:not([active]):not([selected]):not([ui5-li-group-header]):hover){background-color:var(--sapList_Hover_Background)}:host([actionable]:not([active]):not([selected]):not([ui5-li-group-header]):hover) .ui5-li-additional-text{text-shadow:var(--sapContent_TextShadow)}:host([actionable][selected]:not([active],[data-moving]):hover){background-color:var(--sapList_Hover_SelectionBackground)}:host([active][actionable]:not([data-moving])),:host([active][actionable][selected]:not([data-moving])){background-color:var(--sapList_Active_Background)}:host([desktop]:not([data-moving])) .ui5-li-root.ui5-li--focusable:focus:after,:host([desktop][focused]:not([data-moving])) .ui5-li-root.ui5-li--focusable:after,:host(:not([data-moving])) .ui5-li-root.ui5-li--focusable:focus-visible:after,:host([desktop]:not([data-moving])) .ui5-li-root .ui5-li-content:focus:after,:host([desktop][focused]:not([data-moving])) .ui5-li-root .ui5-li-content:after,:host(:not([data-moving])) .ui5-li-root .ui5-li-content:focus-visible:after{content:"";border:var(--sapContent_FocusWidth) var(--sapContent_FocusStyle) var(--sapContent_FocusColor);position:absolute;inset:.125rem;pointer-events:none}.ui5-li-root{position:relative;display:flex;align-items:center;width:100%;height:100%;padding:var(--_ui5_list_item_base_padding);box-sizing:border-box;background-color:inherit}.ui5-li-root.ui5-li--focusable{outline:none}.ui5-li-content{display:flex;align-items:center;flex:auto;overflow:hidden;max-width:100%;font-family:var(--sapFontFamily);color:var(--sapList_TextColor)}.ui5-li-content .ui5-li-title{color:var(--sapList_TextColor);font-size:var(--_ui5_list_item_title_size)}.ui5-li-text-wrapper{display:flex;flex-direction:row;justify-content:space-between;flex:auto;min-width:1px;line-height:normal}\n'}),em=qr(()=>{Ca(),Ch(),wh(),St("@ui5/webcomponents-theming","sap_horizon",async()=>ch),St("@ui5/webcomponents","sap_horizon",async()=>_h,"host"),Ug="[draggable=true]{cursor:grab!important}[draggable=true][data-moving]{cursor:grabbing!important;opacity:var(--sapContent_DisabledOpacity)}\n"}),tm=qr(()=>{Cn(),wn(),ec(),kn(),xn(),Jg(),Pa(),tc(),mp(),Qg(),em(),Vg=function(e,t,o,i){var r,a=arguments.length,n=a<3?t:null===i?i=Object.getOwnPropertyDescriptor(t,o):i;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)n=Reflect.decorate(e,t,o,i);else for(var s=e.length-1;s>=0;s--)(r=e[s])&&(n=(a<3?r(n):a>3?r(t,o,n):r(t,o))||n);return a>3&&n&&Object.defineProperty(t,o,n),n},Wg=class extends hn{constructor(){super(...arguments),this.selected=!1,this.movable=!1,this.hasBorder=!1,this.disabled=!1,this.focused=!1,this.actionable=!1}onEnterDOM(){Po()&&this.setAttribute("desktop","")}onBeforeRendering(){this.actionable=!0}_onfocusin(e){this.fireDecoratorEvent("request-tabindex-change",e),e.target===this.getFocusDomRef()&&this.fireDecoratorEvent("_focused",e)}_onkeydown(e){return Ls(e)?this._handleTabNext(e):Ns(e)?this._handleTabPrevious(e):void(this.getFocusDomRef().matches(":has(:focus-within)")||(this._isSpace(e)&&e.preventDefault(),this._isEnter(e)&&this.fireItemPress(e)))}_onkeyup(e){this.getFocusDomRef().matches(":has(:focus-within)")||this._isSpace(e)&&this.fireItemPress(e)}_onclick(e){this.getFocusDomRef().matches(":has(:focus-within)")||this._isDisabledInteractiveContentClicked(e)||this.fireItemPress(e)}_isDisabledInteractiveContentClicked(e){const t=e.composedPath(),o=this.getFocusDomRef();return t.some(e=>e instanceof HTMLElement&&(e!==this&&e!==o&&(!(!this._isNativeInteractiveElement(e)&&!this._isCustomInteractiveElement(e))&&this._isElementDisabled(e))))}_isNativeInteractiveElement(e){return e.matches("button, input, select, textarea")}_isCustomInteractiveElement(e){const t=e;return e.tagName.includes("-")&&("disabled"in t||e.hasAttribute("aria-disabled"))}_isElementDisabled(e){const t=e;return"boolean"==typeof t.disabled?t.disabled:"true"===e.getAttribute("aria-disabled")}_isSpace(e){return Cs(e)}_isEnter(e){return fs(e)}fireItemPress(e){!this.disabled&&this._pressable&&(fs(e)&&e.preventDefault(),this.fireDecoratorEvent("_press",{item:this,selected:this.selected,key:e.key}))}_handleTabNext(e){this.shouldForwardTabAfter()&&(this.fireDecoratorEvent("forward-after")||e.preventDefault())}_handleTabPrevious(e){const t=e.target;this.shouldForwardTabBefore(t)&&this.fireDecoratorEvent("forward-before")}shouldForwardTabAfter(){const e=Lg(this.getFocusDomRef());return 0===e.length||e[e.length-1]===op()}shouldForwardTabBefore(e){return this.getFocusDomRef()===e}get classes(){return{main:{"ui5-li-root":!0,"ui5-li--focusable":this._focusable}}}get _ariaDisabled(){return!!this.disabled||void 0}get _focusable(){return!this.disabled}get _pressable(){return!0}get hasConfigurableMode(){return!1}get _effectiveTabIndex(){return this._focusable?this.selected?0:this.forcedTabIndex?parseInt(this.forcedTabIndex):void 0:-1}get isListItemBase(){return!0}},Vg([bn({type:Boolean})],Wg.prototype,"selected",void 0),Vg([bn({type:Boolean})],Wg.prototype,"movable",void 0),Vg([bn({type:Boolean})],Wg.prototype,"hasBorder",void 0),Vg([bn()],Wg.prototype,"forcedTabIndex",void 0),Vg([bn({type:Boolean})],Wg.prototype,"disabled",void 0),Vg([bn({type:Boolean})],Wg.prototype,"focused",void 0),Vg([bn({type:Boolean})],Wg.prototype,"actionable",void 0),Wg=Vg([fn({renderer:ms,styles:[Hg,Ug]}),yn("request-tabindex-change",{bubbles:!0}),yn("_press",{bubbles:!0}),yn("_focused",{bubbles:!0}),yn("forward-after",{bubbles:!0,cancelable:!0}),yn("forward-before",{bubbles:!0})],Wg),qg=Wg}),om=qr(()=>{!function(e){e.None="None",e.Normal="Normal"}(jg||(jg={})),Yg=jg});function im(){return y_("div",{part:"native-li",role:this.effectiveAccRole,tabindex:this.forcedTabIndex?parseInt(this.forcedTabIndex):void 0,class:{"ui5-ghli-root":!0,...this.classes.main},"aria-label":this.ariaLabelText,"aria-roledescription":this.groupHeaderText,onFocusIn:this._onfocusin,onKeyDown:this._onkeydown,children:[b_("div",{id:`${this._id}-content`,class:"ui5-li-content",children:rm.call(this)}),this.hasSubItems&&b_("slot",{name:"subItems"})]})}function rm(){return this.wrappingType===Yg.Normal?this.expandableTextTemplate?.call(this,{className:"ui5-ghli-title",text:this._textContent,maxCharacters:this._maxCharacters,part:"title"}):b_("span",{part:"title",class:"ui5-ghli-title",children:b_("slot",{})})}var am,nm,sm,lm,cm,_m,dm,um=qr(()=>{C_(),om()}),hm=qr(()=>{Ca(),Ch(),wh(),St("@ui5/webcomponents-theming","sap_horizon",async()=>ch),St("@ui5/webcomponents","sap_horizon",async()=>_h,"host"),am='.ui5-hidden-text{position:absolute;clip:rect(1px,1px,1px,1px);user-select:none;left:-1000px;top:-1000px;pointer-events:none;font-size:0}:host{height:var(--_ui5_group_header_list_item_height);background:var(--ui5-group-header-listitem-background-color);color:var(--sapList_TableGroupHeaderTextColor)}:host([wrapping-type="Normal"]){height:auto}:host([has-border]){border-bottom:var(--sapList_BorderWidth) solid var(--sapList_GroupHeaderBorderColor)}:host([actionable]:not([disabled])){cursor:default}.ui5-li-root.ui5-ghli-root{padding-top:.5rem;color:currentColor;font-size:var(--sapFontHeader6Size);font-weight:400;line-height:2rem;margin:0}.ui5-ghli-title{display:block;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;font-weight:700;font-family:var(--sapFontHeaderFamily)}.ui5-li-content{width:100%}\n'}),pm=qr(()=>{!function(e){e.Group="Group",e.ListItem="ListItem",e.MenuItem="MenuItem",e.TreeItem="TreeItem",e.Option="Option",e.None="None"}(nm||(nm={})),sm=nm}),gm=qr(()=>{!function(e){e.InPlace="InPlace",e.Popover="Popover"}(lm||(lm={})),cm=lm}),mm=qr(()=>{!function(e){e.Off="Off",e.On="On"}(_m||(_m={})),dm=_m});function vm(){return b_(f_,{children:b_("span",{children:this._renderEmptyIndicator?y_(f_,{children:[b_("span",{className:"empty-indicator","aria-hidden":"true",children:this._emptyIndicatorSymbol}),b_("span",{className:"empty-indicator-aria-label",children:this._emptyIndicatorAriaLabel})]}):b_("slot",{})})})}var fm,bm,ym,Cm,wm,km=qr(()=>{C_()}),xm=qr(()=>{Ca(),Ch(),wh(),St("@ui5/webcomponents-theming","sap_horizon",async()=>ch),St("@ui5/webcomponents","sap_horizon",async()=>_h,"host"),fm=':host{max-width:100%;font-size:var(--sapFontSize);font-family:var(--sapFontFamily);color:var(--sapTextColor);line-height:normal;cursor:text;overflow:hidden}:host([max-lines="1"]){display:inline-block;text-overflow:ellipsis;white-space:nowrap}:host(:not([max-lines="1"])){display:-webkit-inline-box;-webkit-line-clamp:var(--_ui5_text_max_lines);line-clamp:var(--_ui5_text_max_lines);-webkit-box-orient:vertical;white-space:normal;word-wrap:break-word}.empty-indicator-aria-label{position:absolute!important;clip:rect(1px,1px,1px,1px);user-select:none;left:0;top:0;font-size:0}\n'}),Sm=qr(()=>{Cn(),wn(),kn(),Wn(),ec(),qn(),lc(),mm(),km(),yh(),xm(),bm=function(e,t,o,i){var r,a=arguments.length,n=a<3?t:null===i?i=Object.getOwnPropertyDescriptor(t,o):i;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)n=Reflect.decorate(e,t,o,i);else for(var s=e.length-1;s>=0;s--)(r=e[s])&&(n=(a<3?r(n):a>3?r(t,o,n):r(t,o))||n);return a>3&&n&&Object.defineProperty(t,o,n),n},Cm=ym=class extends hn{constructor(){super(...arguments),this.maxLines=1/0,this.emptyIndicatorMode="Off"}onBeforeRendering(){this.style.setProperty("--_ui5_text_max_lines",`${this.maxLines}`)}get hasText(){return Zl(this.text)}get _renderEmptyIndicator(){return!this.hasText&&this.emptyIndicatorMode===dm.On}get _emptyIndicatorAriaLabel(){return ym.i18nBundle.getText(_d)}get _emptyIndicatorSymbol(){return ym.i18nBundle.getText(cd)}},bm([bn({type:Number})],Cm.prototype,"maxLines",void 0),bm([bn()],Cm.prototype,"emptyIndicatorMode",void 0),bm([Sn({type:Node,default:!0})],Cm.prototype,"text",void 0),bm([Tn("@ui5/webcomponents")],Cm,"i18nBundle",void 0),(Cm=ym=bm([fn({tag:"ui5-text",renderer:ms,template:vm,styles:fm})],Cm)).define(),wm=Cm});function Tm(){return y_("a",{part:"root",class:"ui5-link-root",role:this.effectiveAccRole,href:this.parsedRef,target:this.target,rel:this._rel,tabindex:this.effectiveTabIndex,title:this.tooltip,"aria-disabled":this.disabled,"aria-label":this.ariaLabelText,"aria-haspopup":this._hasPopup,"aria-expanded":this.accessibilityAttributes.expanded,"aria-current":this.accessibilityAttributes.current,"aria-description":this.ariaDescriptionText,onClick:this._onclick,onKeyDown:this._onkeydown,onKeyUp:this._onkeyup,children:[this.icon&&b_(gh,{class:"ui5-link-icon",name:this.icon,mode:"Decorative",part:"icon"}),b_("span",{class:"ui5-link-text",children:b_("slot",{})}),this.hasLinkType&&b_("span",{class:"ui5-hidden-text",children:this.linkTypeText}),this.endIcon&&b_(gh,{class:"ui5-link-end-icon",name:this.endIcon,mode:"Decorative",part:"endIcon"})]})}var Bm,Im,Dm,Am,Pm,Mm,Em,zm,Fm=qr(()=>{C_(),xh()}),Rm=qr(()=>{Ca(),Ch(),wh(),St("@ui5/webcomponents-theming","sap_horizon",async()=>ch),St("@ui5/webcomponents","sap_horizon",async()=>_h,"host"),Bm='.ui5-hidden-text{position:absolute;clip:rect(1px,1px,1px,1px);user-select:none;left:-1000px;top:-1000px;pointer-events:none;font-size:0}:host(:not([hidden])){display:inline-flex}:host{max-width:100%;color:var(--sapLinkColor);font-family:var(--sapFontFamily);font-size:var(--sapFontSize);cursor:pointer;outline:none;text-decoration:var(--_ui5_link_text_decoration);text-shadow:var(--sapContent_TextShadow);white-space:normal;overflow-wrap:break-word}:host(:hover){color:var(--sapLink_Hover_Color);text-decoration:var(--_ui5_link_hover_text_decoration)}:host(:active){color:var(--sapLink_Active_Color);text-decoration:var(--_ui5_link_active_text_decoration)}:host([disabled]){pointer-events:none}:host([disabled]) .ui5-link-root{text-shadow:none;outline:none;cursor:default;pointer-events:none;opacity:var(--sapContent_DisabledOpacity)}:host([design="Emphasized"]) .ui5-link-root{font-family:var(--sapFontBoldFamily)}:host([design="Subtle"]){color:var(--sapLink_SubtleColor);text-decoration:var(--_ui5_link_subtle_text_decoration)}:host([design="Subtle"]:hover:not(:active)){color:var(--sapLink_SubtleColor);text-decoration:var(--_ui5_link_subtle_text_decoration_hover)}:host([wrapping-type="None"]){white-space:nowrap;overflow-wrap:normal}.ui5-link-root{max-width:100%;display:inline-block;position:relative;overflow:hidden;text-overflow:ellipsis;outline:none;white-space:inherit;overflow-wrap:inherit;text-decoration:inherit;color:inherit}:host([wrapping-type="None"][end-icon]) .ui5-link-root{display:inline-flex;align-items:end}:host .ui5-link-root{outline-offset:-.0625rem;border-radius:var(--_ui5_link_focus_border-radius)}.ui5-link-icon,.ui5-link-end-icon{color:inherit;flex-shrink:0}.ui5-link-icon{float:inline-start;margin-inline-end:.125rem}.ui5-link-end-icon{margin-inline-start:.125rem;vertical-align:bottom}.ui5-link-text{overflow:hidden;text-overflow:ellipsis}.ui5-link-root:focus-visible,:host([desktop]) .ui5-link-root:focus-within,:host([design="Subtle"]) .ui5-link-root:focus-visible,:host([design="Subtle"][desktop]) .ui5-link-root:focus-within{background-color:var(--_ui5_link_focus_background_color);outline:var(--_ui5_link_outline);border-radius:var(--_ui5_link_focus_border-radius);text-shadow:none;color:var(--_ui5_link_focus_color)}:host(:not([desktop])) .ui5-link-root:focus-visible,:host([desktop]:focus-within),:host([design="Subtle"][desktop]:focus-within){text-decoration:var(--_ui5_link_focus_text_decoration)}:host([desktop]:hover:not(:active):focus-within),:host([design="Subtle"][desktop]:hover:not(:active):focus-within){color:var(--_ui5_link_focused_hover_text_color);text-decoration:var(--_ui5_link_focused_hover_text_decoration)}:host([interactive-area-size="Large"]) .ui5-link-root{line-height:var(--_ui5_link_large_interactive_area_height)}:host([interactive-area-size="Large"])::part(icon),:host([interactive-area-size="Large"])::part(endIcon){height:var(--_ui5_link_large_interactive_area_height)}\n'}),Om=qr(()=>{Cn(),wn(),xn(),kn(),ec(),tc(),oc(),qn(),Pa(),zc(),ca(),xp(),Fm(),yh(),Rm(),Im=function(e,t,o,i){var r,a=arguments.length,n=a<3?t:null===i?i=Object.getOwnPropertyDescriptor(t,o):i;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)n=Reflect.decorate(e,t,o,i);else for(var s=e.length-1;s>=0;s--)(r=e[s])&&(n=(a<3?r(n):a>3?r(t,o,n):r(t,o))||n);return a>3&&n&&Object.defineProperty(t,o,n),n},Am=Dm=class extends hn{constructor(){super(),this.disabled=!1,this.design="Default",this.interactiveAreaSize="Normal",this.wrappingType="Normal",this.accessibleRole="Link",this.accessibilityAttributes={},this._dummyAnchor=document.createElement("a")}onEnterDOM(){Po()&&this.setAttribute("desktop","")}onBeforeRendering(){const e="_blank"===this.target&&this.href&&this._isCrossOrigin(this.href);this._rel=e?"noreferrer noopener":void 0}_isCrossOrigin(e){return this._dummyAnchor.href=e,!(this._dummyAnchor.hostname===pe()&&this._dummyAnchor.port===ge()&&this._dummyAnchor.protocol===me())}get effectiveTabIndex(){return this.forcedTabIndex?Number.parseInt(this.forcedTabIndex):this.disabled?-1:0}get ariaLabelText(){return ml(this)}get hasLinkType(){return this.design!==wp.Default}static typeTextMappings(){return{Subtle:Id,Emphasized:Dd}}get linkTypeText(){return Dm.i18nBundle.getText(Dm.typeTextMappings()[this.design])}get parsedRef(){return this.href&&this.href.length>0?this.href:void 0}get effectiveAccRole(){return _c(this.accessibleRole)}get ariaDescriptionText(){return""===this.accessibleDescription?void 0:this.accessibleDescription}get _hasPopup(){return this.accessibilityAttributes.hasPopup}_onclick(e){const{altKey:t,ctrlKey:o,metaKey:i,shiftKey:r}=e;e.stopImmediatePropagation(),this.fireDecoratorEvent("click",{altKey:t,ctrlKey:o,metaKey:i,shiftKey:r})||e.preventDefault()}_onkeydown(e){fs(e)&&!this.href?(this._onclick(e),e.preventDefault()):Cs(e)&&e.preventDefault()}_onkeyup(e){if(Cs(e)&&(this._onclick(e),this.href&&!e.defaultPrevented)){const e=new MouseEvent("click");e.stopImmediatePropagation(),this.getDomRef().dispatchEvent(e)}}},Im([bn({type:Boolean})],Am.prototype,"disabled",void 0),Im([bn()],Am.prototype,"tooltip",void 0),Im([bn()],Am.prototype,"href",void 0),Im([bn()],Am.prototype,"target",void 0),Im([bn()],Am.prototype,"design",void 0),Im([bn()],Am.prototype,"interactiveAreaSize",void 0),Im([bn()],Am.prototype,"wrappingType",void 0),Im([bn()],Am.prototype,"accessibleName",void 0),Im([bn()],Am.prototype,"accessibleNameRef",void 0),Im([bn()],Am.prototype,"accessibleRole",void 0),Im([bn({type:Object})],Am.prototype,"accessibilityAttributes",void 0),Im([bn()],Am.prototype,"accessibleDescription",void 0),Im([bn()],Am.prototype,"icon",void 0),Im([bn()],Am.prototype,"endIcon",void 0),Im([bn({noAttribute:!0})],Am.prototype,"_rel",void 0),Im([bn({noAttribute:!0})],Am.prototype,"forcedTabIndex",void 0),Im([Tn("@ui5/webcomponents")],Am,"i18nBundle",void 0),(Am=Dm=Im([fn({tag:"ui5-link",languageAware:!0,renderer:ms,template:Tm,styles:Bm}),yn("click",{bubbles:!0,cancelable:!0})],Am)).define(),Pm=Am}),Lm=qr(()=>{Mm={key:"ICON_DECLINE",defaultText:"Decline"},Em={key:"ICON_ERROR",defaultText:"Error"}}),Nm=qr(()=>{sc(),Lm(),ql("decline",{pathData:"m2.205 2.96.752-.789A.559.559 0 0 1 3.367 2c.137 0 .263.057.377.171l4.239 4.286 4.273-4.286A.522.522 0 0 1 12.633 2a.56.56 0 0 1 .41.171l.752.789c.273.251.273.514 0 .789L9.555 8l4.24 4.286c.25.251.25.503 0 .754l-.752.789c-.183.114-.32.171-.41.171-.069 0-.194-.057-.377-.171L7.983 9.543l-4.24 4.286a.522.522 0 0 1-.375.171c-.092 0-.228-.057-.41-.171l-.753-.789c-.25-.251-.25-.503 0-.754L6.445 8l-4.24-4.251c-.273-.275-.273-.538 0-.789Z",ltr:!1,viewBox:"0 0 16 16",accData:Mm,collection:"SAP-icons-v4",packageName:"@ui5/webcomponents-icons"})}),Hm=qr(()=>{sc(),Lm(),ql("decline",{pathData:"M11.72 3.22a.75.75 0 1 1 1.06 1.06L9.06 8l3.72 3.72a.75.75 0 1 1-1.06 1.06L8 9.06l-3.72 3.72a.75.75 0 0 1-1.06-1.06L6.94 8 3.22 4.28a.75.75 0 1 1 1.06-1.06L8 6.94l3.72-3.72Z",ltr:!1,viewBox:"0 0 16 16",accData:Mm,collection:"SAP-icons-v5",packageName:"@ui5/webcomponents-icons"})}),Um=qr(()=>{Aa(),Nm(),Hm(),zm="decline"}),Vm=qr(()=>{sc(),ql("resize-corner",{pathData:"M13 5v1c0 .25-.104.48-.313.688l-6 6C6.48 12.896 6.25 13 6 13H5l8-8Zm-5 8 5-5v1c0 .25-.104.48-.313.688l-3 3C9.48 12.896 9.25 13 9 13H8Zm5-2v1c0 .25-.104.48-.313.688-.208.208-.437.312-.687.312h-1l2-2Z",ltr:!1,viewBox:"0 0 16 16",collection:"SAP-icons-v4",packageName:"@ui5/webcomponents-icons"})}),Wm=qr(()=>{sc(),ql("resize-corner",{pathData:"M11.72 3.22a.75.75 0 1 1 1.06 1.06l-8.5 8.5a.75.75 0 1 1-1.06-1.06l8.5-8.5Zm0 5a.75.75 0 1 1 1.06 1.06l-3.5 3.5a.75.75 0 1 1-1.06-1.06l3.5-3.5Z",ltr:!1,viewBox:"0 0 16 16",collection:"SAP-icons-v5",packageName:"@ui5/webcomponents-icons"})}),qm=qr(()=>{Aa(),Vm(),Wm()});function jm(){return b_("div",{class:"ui5-block-layer",onKeyDown:this._preventBlockLayerFocus,onMouseDown:this._preventBlockLayerFocus})}var Ym=qr(()=>{C_()});function $m(e){return y_(f_,{children:[jm.call(this),y_("section",{"root-element":!0,style:this.styles.root,class:this.classes.root,role:this._role,"aria-describedby":this.ariaDescribedByIds,"aria-modal":this._ariaModal,"aria-label":this._ariaLabel,"aria-labelledby":this._ariaLabelledBy,onKeyDown:this._onkeydown,onFocusOut:this._onfocusout,onMouseUp:this._onmouseup,onMouseDown:this._onmousedown,children:[b_("span",{class:"first-fe","data-ui5-focus-trap":!0,role:"none",tabIndex:0,onFocusIn:this.forwardToLast}),(e?.beforeContent||Gm).call(this),b_("div",{style:this.styles.content,class:this.classes.content,onScroll:this._scroll,part:"content",children:b_("slot",{})}),this.ariaDescriptionText&&b_("span",{id:"accessibleDescription",class:"ui5-hidden-text",children:this.ariaDescriptionText}),(e?.afterContent||Km).call(this),b_("span",{class:"last-fe","data-ui5-focus-trap":!0,role:"none",tabIndex:0,onFocusIn:this.forwardToFirst})]})]})}function Gm(){}function Km(){}var Zm,Xm,Jm=qr(()=>{C_(),Ym()}),Qm=qr(()=>{!function(e){e.H1="H1",e.H2="H2",e.H3="H3",e.H4="H4",e.H5="H5",e.H6="H6"}(Zm||(Zm={})),Xm=Zm});function ev(){return b_(f_,{children:tv.call(this,this.level)})}function tv(e){switch(e){case"H1":return b_("h1",{class:"ui5-title-root",children:ov.call(this)});case"H2":default:return b_("h2",{class:"ui5-title-root",children:ov.call(this)});case"H3":return b_("h3",{class:"ui5-title-root",children:ov.call(this)});case"H4":return b_("h4",{class:"ui5-title-root",children:ov.call(this)});case"H5":return b_("h5",{class:"ui5-title-root",children:ov.call(this)});case"H6":return b_("h6",{id:`${this._id}-inner`,class:"ui5-title-root",children:ov.call(this)})}}function ov(){return b_("span",{id:`${this._id}-inner`,children:b_("slot",{})})}var iv,rv,av,nv,sv=qr(()=>{C_()}),lv=qr(()=>{Ca(),Ch(),wh(),St("@ui5/webcomponents-theming","sap_horizon",async()=>ch),St("@ui5/webcomponents","sap_horizon",async()=>_h,"host"),iv=':host(:not([hidden])){display:block;cursor:text}:host{max-width:100%;color:var(--sapGroup_TitleTextColor);font-size:var(--sapFontHeader5Size);font-family:var(--sapFontHeaderFamily);text-shadow:var(--sapContent_TextShadow)}.ui5-title-root{display:inline-block;position:relative;font-weight:400;font-size:inherit;box-sizing:border-box;overflow:hidden;text-overflow:ellipsis;max-width:100%;vertical-align:bottom;-webkit-margin-before:0;-webkit-margin-after:0;-webkit-margin-start:0;-webkit-margin-end:0;margin:0;cursor:inherit}:host{white-space:pre-line}:host([wrapping-type="None"]){white-space:nowrap}.ui5-title-root,:host ::slotted(*){white-space:inherit}::slotted(*){font-size:inherit;font-family:inherit;text-shadow:inherit}:host([size="H1"]){font-size:var(--sapFontHeader1Size)}:host([size="H2"]){font-size:var(--sapFontHeader2Size)}:host([size="H3"]){font-size:var(--sapFontHeader3Size)}:host([size="H4"]){font-size:var(--sapFontHeader4Size)}:host([size="H5"]){font-size:var(--sapFontHeader5Size)}:host([size="H6"]){font-size:var(--sapFontHeader6Size)}\n'}),cv=qr(()=>{Cn(),ec(),wn(),kn(),Qm(),sv(),lv(),rv=function(e,t,o,i){var r,a=arguments.length,n=a<3?t:null===i?i=Object.getOwnPropertyDescriptor(t,o):i;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)n=Reflect.decorate(e,t,o,i);else for(var s=e.length-1;s>=0;s--)(r=e[s])&&(n=(a<3?r(n):a>3?r(t,o,n):r(t,o))||n);return a>3&&n&&Object.defineProperty(t,o,n),n},av=class extends hn{constructor(){super(...arguments),this.wrappingType="Normal",this.level="H2",this.size="H5"}get h1(){return this.level===Xm.H1}get h2(){return this.level===Xm.H2}get h3(){return this.level===Xm.H3}get h4(){return this.level===Xm.H4}get h5(){return this.level===Xm.H5}get h6(){return this.level===Xm.H6}},rv([bn()],av.prototype,"wrappingType",void 0),rv([bn()],av.prototype,"level",void 0),rv([bn()],av.prototype,"size",void 0),(av=rv([fn({tag:"ui5-title",renderer:ms,template:ev,styles:iv})],av)).define(),nv=av});function _v(){return $m.call(this,{beforeContent:dv,afterContent:uv})}function dv(){return y_(f_,{children:[b_("span",{class:"ui5-popover-arrow",style:this.styles.arrow}),this._displayHeader&&b_("header",{class:"ui5-popup-header-root",id:"ui5-popup-header",part:"header",children:this.header.length?b_("slot",{name:"header"}):b_(nv,{level:"H1",class:"ui5-popup-header-text",children:this.headerText})})]})}function uv(){return y_(f_,{children:[this._displayFooter&&!!this.footer.length&&b_("footer",{class:"ui5-popup-footer-root",part:"footer",children:b_("slot",{name:"footer"})}),this._showResizeHandle&&b_("div",{class:"ui5-popover-resize-handle",onMouseDown:this._onResizeMouseDown,children:b_(gh,{name:"resize-corner"})})]})}var hv,pv,gv,mv,vv,fv,bv,yv,Cv,wv,kv,xv,Sv,Tv,Bv,Iv,Dv,Av,Pv=qr(()=>{C_(),xh(),qm(),Jm(),cv()}),Mv=qr(()=>{hv=(e,t,o)=>Math.min(Math.max(e,t),Math.max(t,o))}),Ev=qr(()=>{pv=(e=>(e.None="None",e.Positive="Positive",e.Critical="Critical",e.Negative="Negative",e.Information="Information",e))(pv||{})}),zv=qr(()=>{gv=/^(?:a|area)$/i,mv=/^(?:input|select|textarea|button)$/i,vv=e=>{if(e.disabled)return!1;const t=e.getAttribute("tabindex");return null!=t?parseInt(t)>=0:mv.test(e.nodeName)||gv.test(e.nodeName)&&!!e.href}}),Fv=qr(()=>{Zg(),zv(),Cn(),Pa(),fv=e=>e.hasAttribute("data-ui5-focus-trap"),bv=e=>{const t=getComputedStyle(e);return e.scrollHeight>e.clientHeight&&["scroll","auto"].indexOf(t.overflowY)>=0||e.scrollWidth>e.clientWidth&&["scroll","auto"].indexOf(t.overflowX)>=0},yv=async(e,t)=>!e||Rg(e)?null:xv(e,!0,t),Cv=async(e,t)=>!e||Rg(e)?null:xv(e,!1,t),wv=e=>e.hasAttribute("data-ui5-focus-redirect")||!Rg(e),kv=e=>{if(pn(e)){const t=e.getAttribute("tabindex");if(null!==t&&parseInt(t)<0)return!0}return!1},xv=async(e,t,o)=>{let i,r,a,n=-1;for(e.shadowRoot?i=t?e.shadowRoot.firstElementChild:e.shadowRoot.lastElementChild:e instanceof HTMLSlotElement&&e.assignedNodes()?(r=e.assignedElements(),n=t?0:r.length-1,i=r[n]):i=o?e:t?e.firstElementChild:e.lastElementChild;i;){const e=i;if(!Rg(e)&&!kv(e)){if(pn(i)&&(await i._waitForDomRef(),i=i.getDomRef()),!i||Rg(i))return null;if(1===i.nodeType&&wv(i)&&!fv(i)){if(vv(i)||(a=await xv(i,t),!Bo()&&!a&&bv(i)))return i&&"function"==typeof i.focus?i:null;if(a)return a&&"function"==typeof a.focus?a:null}}i=t?e.nextElementSibling:e.previousElementSibling,r&&!r[n].contains(i)&&(n=t?n+1:n-1,i=r[n])}return null}});var Rv,Ov,Lv,Nv,Hv,Uv,Vv,Wv,qv,jv,Yv,$v,Gv=qr(()=>{mp(),Sv=()=>{const e=op();return e&&"function"==typeof e.focus?e:null},Tv=e=>{const t=Sv();return!!t&&Bv(e,t)},Bv=(e,t)=>{let o=e;if(o.shadowRoot&&(o=Array.from(o.shadowRoot.children).find(e=>"style"!==e.localName),!o))return!1;if(o===t)return!0;const i="slot"===o.localName?o.assignedNodes():o.children;return!!i&&Array.from(i).some(e=>Bv(e,t))},Iv=(e,t,o)=>e>=o.left&&e<=o.right&&t>=o.top&&t<=o.bottom,Dv=(e,t)=>{let o,i;if(e instanceof MouseEvent)o=e.clientX,i=e.clientY;else{const t=e.touches[0];o=t.clientX,i=t.clientY}return Iv(o,i,t)},Av=e=>{const t=e.parentElement||e.getRootNode&&e.getRootNode().host;return t&&(function(e){return"isUI5Element"in e&&"_show"in e}(t)||t===document.documentElement)?t:Av(t)}}),Kv=qr(()=>{!function(e){e.None="None",e.Dialog="Dialog",e.AlertDialog="AlertDialog"}(Rv||(Rv={})),Ov=Rv}),Zv=qr(()=>{Lv=(e,t="handledByControl")=>!!e[`_sapui_${t}`]});var Xv,Jv,Qv,ef,tf,of,rf,af,nf,sf,lf,cf,_f=qr(()=>{Jr(),tc(),ra(),Zv(),Nv=g("OpenedPopupsRegistry",{openedRegistry:[]}),Hv=Q("OpenUI5Support"),Uv=(e,t=[])=>{var o;Nv.openedRegistry.some(t=>t.instance===e)||(Nv.openedRegistry.push({instance:e,parentPopovers:t}),o={type:"WebComponent",instance:e},Hv?.addOpenedPopup(o)),$v(),1===Nv.openedRegistry.length&&jv()},Vv=e=>{var t;Nv.openedRegistry=Nv.openedRegistry.filter(t=>t.instance!==e),t=e,Hv?.removeOpenedPopup(t),$v(),Nv.openedRegistry.length||Yv()},Wv=()=>[...Nv.openedRegistry],qv=e=>{if(Nv.openedRegistry.length&&Os(e)&&!Lv(e)){const t=Nv.openedRegistry[Nv.openedRegistry.length-1].instance;if(Hv&&t!==Hv.getTopmostPopup())return;e.stopImmediatePropagation(),t.closePopup(!0)}},jv=()=>{document.addEventListener("keydown",qv)},Yv=()=>{document.removeEventListener("keydown",qv)},$v=()=>{let e,t=!1;for(let o=Nv.openedRegistry.length-1;o>=0;o--)e=Nv.openedRegistry[o].instance,!t&&e.isModal?(e.isTopModalPopup=!0,t=!0):e.isTopModalPopup=!1}}),df=qr(()=>{Ca(),Ch(),wh(),St("@ui5/webcomponents-theming","sap_horizon",async()=>ch),St("@ui5/webcomponents","sap_horizon",async()=>_h,"host"),Xv=":host{min-width:1px;overflow:visible;border:none;inset:unset;margin:0;padding:0}:host(:focus-visible){outline:none}:host(.ui5-popup-opening){opacity:.1}\n"}),uf=qr(()=>{Ca(),Ch(),wh(),St("@ui5/webcomponents-theming","sap_horizon",async()=>ch),St("@ui5/webcomponents","sap_horizon",async()=>_h,"host"),Jv=".ui5-block-layer{position:fixed;z-index:-1;display:none;inset:-500px;outline:none;pointer-events:all}\n"}),hf=qr(()=>{Ca(),Ch(),wh(),St("@ui5/webcomponents-theming","sap_horizon",async()=>ch),St("@ui5/webcomponents","sap_horizon",async()=>_h,"host"),Qv=".ui5-popup-scroll-blocker{overflow:hidden}\n"}),pf=qr(()=>{wn(),ba(),xn(),Wn(),kn(),ec(),Cn(),Pa(),Fv(),oc(),ia(),tc(),Gv(),xg(),zc(),Jm(),Kv(),_f(),df(),uf(),hf(),ef=function(e,t,o,i){var r,a=arguments.length,n=a<3?t:null===i?i=Object.getOwnPropertyDescriptor(t,o):i;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)n=Reflect.decorate(e,t,o,i);else for(var s=e.length-1;s>=0;s--)(r=e[s])&&(n=(a<3?r(n):a>3?r(t,o,n):r(t,o))||n);return a>3&&n&&Object.defineProperty(t,o,n),n},(()=>{$("data-ui5-popup-scroll-blocker")||j(Qv,"data-ui5-popup-scroll-blocker")})(),of=new Set,rf=tf=class extends hn{constructor(){super(),this.preventFocusRestore=!1,this.accessibleRole="Dialog",this.preventInitialFocus=!1,this.isTopModalPopup=!1,this.onPhone=!1,this.onDesktop=!1,this._opened=!1,this._open=!1,this._resizeHandlerRegistered=!1,this._resizeHandler=this._resize.bind(this),this._getRealDomRef=()=>this.shadowRoot.querySelector("[root-element]")}onBeforeRendering(){this.onPhone=Ao(),this.onDesktop=Po()}onAfterRendering(){ht().then(()=>{this._updateMediaRange()}),this.open?this._registerResizeHandler():this._deregisterResizeHandler()}onEnterDOM(){this.setAttribute("popover","manual"),Po()&&this.setAttribute("desktop",""),this.tabIndex=-1,this.handleOpenOnEnterDOM(),this.setAttribute("data-sap-ui-fastnavgroup-container","true"),kl(this,this._updateAssociatedLabelsTexts.bind(this))}handleOpenOnEnterDOM(){this.open&&(this.showPopover(),this.openPopup())}onExitDOM(){this._opened&&(tf.unblockPageScrolling(this),this._removeOpenedPopup()),this._deregisterResizeHandler(),this._detachBrowserEvents(),Tl(this)}set open(e){this._open!==e&&(this._open=e,e?this.openPopup():this.closePopup())}get open(){return this._open}async openPopup(){this._opened||(this.fireDecoratorEvent("before-open")?(this._attachBrowserEvents(),this.isModal&&tf.blockPageScrolling(this),this._focusedElementBeforeOpen=Sv(),this._show(),this._opened=!0,this.getDomRef()&&this._updateMediaRange(),this._addOpenedPopup(),this.classList.add("ui5-popup-opening"),setTimeout(()=>{this.classList.remove("ui5-popup-opening")},50),this.open=!0,await this.applyInitialFocus(),await ht(),this.isConnected&&this.fireDecoratorEvent("open")):this.open=!1)}_resize(){this._updateMediaRange()}_preventBlockLayerFocus(e){e.preventDefault()}_attachBrowserEvents(){}_detachBrowserEvents(){}static blockPageScrolling(e){of.add(e),1===of.size&&document.documentElement.classList.add("ui5-popup-scroll-blocker")}static unblockPageScrolling(e){of.delete(e),0===of.size&&document.documentElement.classList.remove("ui5-popup-scroll-blocker")}_scroll(e){this.fireDecoratorEvent("scroll",{scrollTop:e.target.scrollTop,targetRef:e.target})}_onkeydown(e){const t=e.target===this._root&&Ns(e),o=fs(e)&&!this.open;(t||o)&&e.preventDefault()}_onfocusout(e){e.relatedTarget||(this._shouldFocusRoot=!0)}_onmousedown(e){this.shadowRoot.contains(e.target)?this._shouldFocusRoot=!0:this._shouldFocusRoot=!1}_onmouseup(){this._shouldFocusRoot&&(Io()&&this._root.focus(),this._shouldFocusRoot=!1)}async forwardToFirst(){const e=await yv(this);e?e.focus():this._root.focus()}async forwardToLast(){const e=await Cv(this);e?e.focus():this._root.focus()}async applyInitialFocus(){this.preventInitialFocus||await this.applyFocus()}async applyFocus(){if(this.querySelector("[autofocus]"))return;if(await this._waitForDomRef(),this.getRootNode()===this)return;let e;this.initialFocus&&(e=this.getRootNode().getElementById(this.initialFocus)||document.getElementById(this.initialFocus)),e=e||await yv(this)||this._root,e&&(e===this._root&&(e.tabIndex=-1),e.focus())}isFocusWithin(){return Tv(this._root)}_updateMediaRange(){this.mediaRange=dg.getCurrentRange(dg.RANGESETS.RANGE_4STEPS,this.getDomRef().offsetWidth)}_updateAssociatedLabelsTexts(){this._associatedDescriptionRefTexts=Il(this)}_addOpenedPopup(){Uv(this)}closePopup(e=!1,t=!1,o=!1){this._opened&&(this.fireDecoratorEvent("before-close",{escPressed:e})?(this._opened=!1,this.isModal&&tf.unblockPageScrolling(this),this.hide(),this.open=!1,this._detachBrowserEvents(),t||this._removeOpenedPopup(),this.preventFocusRestore||o||this.resetFocus(),this.fireDecoratorEvent("close")):this.open=!0)}_removeOpenedPopup(){Vv(this)}resetFocus(){this._focusedElementBeforeOpen?.focus(),this._focusedElementBeforeOpen=null}_show(){this.isConnected&&(this.setAttribute("popover","manual"),this.showPopover())}_registerResizeHandler(){this._resizeHandlerRegistered||(dp.register(this,this._resizeHandler),this._resizeHandlerRegistered=!0)}_deregisterResizeHandler(){this._resizeHandlerRegistered&&(dp.deregister(this,this._resizeHandler),this._resizeHandlerRegistered=!1)}hide(){this.isConnected&&this.hidePopover()}get _ariaLabel(){return ml(this)}get _accInfoAriaDescription(){return this.ariaDescriptionText||""}get ariaDescriptionText(){return this._associatedDescriptionRefTexts||Bl(this)}get ariaDescriptionTextId(){return this.ariaDescriptionText?"accessibleDescription":""}get ariaDescribedByIds(){return[this.ariaDescriptionTextId].filter(Boolean).join(" ")}get _root(){return this.shadowRoot.querySelector(".ui5-popup-root")}get _role(){return this.accessibleRole===Ov.None?void 0:_c(this.accessibleRole)}get _ariaModal(){return this.accessibleRole===Ov.None?void 0:"true"}get contentDOM(){return this.shadowRoot.querySelector(".ui5-popup-content")}get styles(){return{root:{},content:{}}}get classes(){return{root:{"ui5-popup-root":!0},content:{"ui5-popup-content":!0}}}},ef([bn()],rf.prototype,"initialFocus",void 0),ef([bn({type:Boolean})],rf.prototype,"preventFocusRestore",void 0),ef([bn()],rf.prototype,"accessibleName",void 0),ef([bn()],rf.prototype,"accessibleNameRef",void 0),ef([bn()],rf.prototype,"accessibleRole",void 0),ef([bn()],rf.prototype,"accessibleDescription",void 0),ef([bn()],rf.prototype,"accessibleDescriptionRef",void 0),ef([bn({noAttribute:!0})],rf.prototype,"_associatedDescriptionRefTexts",void 0),ef([bn()],rf.prototype,"mediaRange",void 0),ef([bn({type:Boolean})],rf.prototype,"preventInitialFocus",void 0),ef([bn({type:Boolean,noAttribute:!0})],rf.prototype,"isTopModalPopup",void 0),ef([Sn({type:HTMLElement,default:!0})],rf.prototype,"content",void 0),ef([bn({type:Boolean})],rf.prototype,"onPhone",void 0),ef([bn({type:Boolean})],rf.prototype,"onDesktop",void 0),ef([bn({type:Boolean})],rf.prototype,"open",null),rf=tf=ef([fn({renderer:ms,styles:[Xv,Jv],template:$m}),yn("before-open",{cancelable:!0}),yn("open"),yn("before-close",{cancelable:!0}),yn("close"),yn("scroll",{bubbles:!0})],rf),af=rf}),gf=qr(()=>{sc(),Lm(),ql("error",{pathData:"M16 8a7.731 7.731 0 0 1-.64 3.125c-.428.98-1 1.828-1.72 2.547a8.025 8.025 0 0 1-2.53 1.703A7.785 7.785 0 0 1 8 16a7.73 7.73 0 0 1-3.125-.64c-.98-.428-1.828-1-2.547-1.72a7.977 7.977 0 0 1-1.703-2.546A7.82 7.82 0 0 1 0 8a7.864 7.864 0 0 1 2.344-5.672A8.214 8.214 0 0 1 4.89.625 7.785 7.785 0 0 1 8 0c1.104 0 2.14.208 3.11.625a8.08 8.08 0 0 1 2.546 1.719 8.081 8.081 0 0 1 1.719 2.547C15.792 5.859 16 6.896 16 8Zm-3.531 3.375c.125-.125.125-.25 0-.375L9.78 8.312c-.125-.124-.125-.25 0-.374l2.531-2.532c.126-.125.126-.25 0-.375l-1.156-1.156c-.041-.042-.104-.063-.187-.063-.084 0-.146.021-.188.063L8.187 6.438c-.02.062-.083.093-.187.093-.063 0-.125-.031-.188-.093L5.188 3.844c-.02-.042-.083-.063-.187-.063-.083 0-.146.021-.188.063L3.657 5c-.125.125-.125.25 0 .375L6.25 7.938c.125.125.125.25 0 .375l-2.594 2.562a.312.312 0 0 0-.078.188c-.01.083.016.145.078.187l1.125 1.156a.48.48 0 0 0 .188.063c.083 0 .146-.021.187-.063l2.657-2.625c.041-.041.104-.062.187-.062s.146.02.188.062l2.75 2.75a.479.479 0 0 0 .187.063.48.48 0 0 0 .188-.063l1.156-1.156Z",ltr:!1,viewBox:"0 0 16 16",accData:Em,collection:"SAP-icons-v4",packageName:"@ui5/webcomponents-icons"})}),mf=qr(()=>{sc(),Lm(),ql("error",{pathData:"M8 0a8 8 0 1 1 0 16A8 8 0 0 1 8 0Zm3.707 4.293a1 1 0 0 0-1.414 0L8 6.586 5.707 4.293a1 1 0 1 0-1.414 1.414L6.586 8l-2.293 2.293a1 1 0 1 0 1.414 1.414L8 9.414l2.293 2.293a1 1 0 1 0 1.414-1.414L9.414 8l2.293-2.293a1 1 0 0 0 0-1.414Z",ltr:!1,viewBox:"0 0 16 16",accData:Em,collection:"SAP-icons-v5",packageName:"@ui5/webcomponents-icons"})}),vf=qr(()=>{Aa(),gf(),mf(),nf="error"}),ff=qr(()=>{sc(),ql("alert",{pathData:"M15.656 12.688c.104.208.182.411.235.609.052.198.088.39.109.578v.156c0 .646-.24 1.136-.719 1.469-.479.333-1 .5-1.562.5H2.313c-.271 0-.542-.042-.813-.125a2.332 2.332 0 0 1-.734-.375 1.932 1.932 0 0 1-.532-.625A2.033 2.033 0 0 1 0 14.031c0-.27.042-.505.125-.703.083-.198.177-.411.281-.64l5.782-10.5C6.625 1.395 7.26 1 8.094 1c.791 0 1.406.396 1.844 1.188l5.718 10.5Zm-7.625-7.72c-.27 0-.515.084-.734.25-.219.167-.328.438-.328.813.02.146.041.271.062.375.063.521.11 1.021.14 1.5.032.48.069 1.115.11 1.907 0 .229.078.395.235.5a.91.91 0 0 0 .515.156c.459 0 .698-.219.719-.656l.063-1.126.28-2.656c0-.375-.109-.646-.327-.812a1.182 1.182 0 0 0-.735-.25Zm0 9.345c.417 0 .745-.126.985-.376s.359-.583.359-1c0-.395-.12-.718-.36-.968-.239-.25-.567-.375-.984-.375-.416 0-.745.125-.984.375-.24.25-.36.573-.36.969 0 .416.12.75.36 1s.568.374.984.374Z",ltr:!1,viewBox:"0 0 16 16",collection:"SAP-icons-v4",packageName:"@ui5/webcomponents-icons"})}),bf=qr(()=>{sc(),ql("alert",{pathData:"M6.491 1.856C7.17.716 8.821.714 9.5 1.855l6.249 10.504c.694 1.166-.147 2.644-1.504 2.644H1.752c-1.357 0-2.197-1.478-1.504-2.644L6.491 1.856Zm1.503 9.138a1 1 0 1 0 0 2 1 1 0 0 0 0-2Zm0-7a1 1 0 0 0-1 1v4a1 1 0 0 0 2 0v-4a1 1 0 0 0-1-1Z",ltr:!1,viewBox:"0 0 16 16",collection:"SAP-icons-v5",packageName:"@ui5/webcomponents-icons"})}),yf=qr(()=>{Aa(),ff(),bf(),sf="alert"}),Cf=qr(()=>{sc(),ql("sys-enter-2",{pathData:"M16 8a7.863 7.863 0 0 1-.625 3.14 8.026 8.026 0 0 1-1.703 2.532 7.979 7.979 0 0 1-2.547 1.703c-.98.417-2.02.625-3.125.625a7.863 7.863 0 0 1-5.672-2.344A8.215 8.215 0 0 1 .625 11.11 7.786 7.786 0 0 1 0 8c0-1.104.214-2.146.64-3.125.428-.98 1-1.828 1.72-2.547A7.977 7.977 0 0 1 4.905.625 7.82 7.82 0 0 1 8 0c1.104 0 2.146.208 3.125.625.98.417 1.828.984 2.547 1.703a7.979 7.979 0 0 1 1.703 2.547c.417.98.625 2.02.625 3.125Zm-3.688-2.719c.084-.166.073-.302-.03-.406L11.155 3.75a.297.297 0 0 0-.25-.125c-.104 0-.187.052-.25.156l-3.25 5.406c-.062.021-.104.021-.125 0L5.094 7.563c-.084-.063-.157-.094-.219-.094-.063 0-.11.02-.14.062a.917.917 0 0 1-.079.094L3.75 8.906c-.125.167-.104.313.063.438l3.53 2.969c.042.041.115.062.22.062a.297.297 0 0 0 .25-.125l4.5-6.969Z",ltr:!0,viewBox:"0 0 16 16",collection:"SAP-icons-v4",packageName:"@ui5/webcomponents-icons"})}),wf=qr(()=>{sc(),ql("sys-enter-2",{pathData:"M8 0a8 8 0 1 1 0 16A8 8 0 0 1 8 0Zm3.707 5.793a1 1 0 0 0-1.414 0L7.5 8.586 6.207 7.293a1 1 0 1 0-1.414 1.414l2 2a1 1 0 0 0 1.414 0l3.5-3.5a1 1 0 0 0 0-1.414Z",ltr:!0,viewBox:"0 0 16 16",collection:"SAP-icons-v5",packageName:"@ui5/webcomponents-icons"})}),kf=qr(()=>{Aa(),Cf(),wf(),lf="sys-enter-2"}),xf=qr(()=>{sc(),ql("information",{pathData:"M0 8c0-1.104.214-2.146.64-3.125.428-.98 1-1.828 1.72-2.547A7.977 7.977 0 0 1 4.905.625 7.82 7.82 0 0 1 8 0a7.863 7.863 0 0 1 5.672 2.344 8.216 8.216 0 0 1 1.703 2.547C15.792 5.859 16 6.896 16 8a7.863 7.863 0 0 1-.625 3.14 8.026 8.026 0 0 1-1.703 2.532 7.979 7.979 0 0 1-2.547 1.703c-.98.417-2.02.625-3.125.625a7.863 7.863 0 0 1-5.672-2.344A8.215 8.215 0 0 1 .625 11.11 7.786 7.786 0 0 1 0 8Zm6 3.5v1.031h4V11.5H9V6.719c0-.125-.073-.188-.219-.188h-2.75V7.5h1v4H6Zm1.063-6.281c.291.229.604.343.937.343.354 0 .661-.12.922-.359.26-.24.39-.536.39-.89 0-.396-.135-.72-.406-.97A1.235 1.235 0 0 0 8 2.97c-.396 0-.714.13-.953.39-.24.26-.36.579-.36.954 0 .354.125.656.375.906Z",ltr:!1,viewBox:"0 0 16 16",collection:"SAP-icons-v4",packageName:"@ui5/webcomponents-icons"})}),Sf=qr(()=>{sc(),ql("information",{pathData:"M8 0a8 8 0 1 1 0 16A8 8 0 0 1 8 0Zm0 7a1 1 0 0 0-1 1v4a1 1 0 1 0 2 0V8a1 1 0 0 0-1-1Zm0-4a1 1 0 1 0 0 2 1 1 0 0 0 0-2Z",ltr:!1,viewBox:"0 0 16 16",collection:"SAP-icons-v5",packageName:"@ui5/webcomponents-icons"})}),Tf=qr(()=>{Aa(),xf(),Sf(),cf="information"});function Bf(){return $m.call(this,{beforeContent:If,afterContent:Df})}function If(){return b_(f_,{children:!!this._displayHeader&&b_("header",{children:y_("div",{class:"ui5-popup-header-root",id:"ui5-popup-header",role:"group","aria-describedby":this.effectiveAriaDescribedBy,"aria-roledescription":this.ariaRoleDescriptionHeaderText,tabIndex:this._headerTabIndex,onKeyDown:this._onDragOrResizeKeyDown,onMouseDown:this._onDragMouseDown,part:"header",children:[this.hasValueState&&b_(gh,{class:"ui5-dialog-value-state-icon",name:this._dialogStateIcon}),this.header.length?b_("slot",{name:"header"}):b_(nv,{level:"H1",id:"ui5-popup-header-text",class:"ui5-popup-header-text",children:this.headerText}),this.resizable?this.draggable?b_("span",{id:`${this._id}-descr`,"aria-hidden":"true",class:"ui5-hidden-text",children:this.ariaDescribedByHeaderTextDraggableAndResizable}):b_("span",{id:`${this._id}-descr`,"aria-hidden":"true",class:"ui5-hidden-text",children:this.ariaDescribedByHeaderTextResizable}):this.draggable&&b_("span",{id:`${this._id}-descr`,"aria-hidden":"true",class:"ui5-hidden-text",children:this.ariaDescribedByHeaderTextDraggable})]})})})}function Df(){return y_(f_,{children:[!!this.footer.length&&b_("footer",{class:"ui5-popup-footer-root",part:"footer",children:b_("slot",{name:"footer"})}),this._showResizeHandle&&b_("div",{class:"ui5-popup-resize-handle",onMouseDown:this._onResizeMouseDown,children:b_(gh,{name:"resize-corner"})})]})}var Af,Pf,Mf,Ef,zf,Ff,Rf,Of,Lf=qr(()=>{C_(),qm(),Jm(),cv(),xh()}),Nf=qr(()=>{Ca(),Ch(),wh(),St("@ui5/webcomponents-theming","sap_horizon",async()=>ch),St("@ui5/webcomponents","sap_horizon",async()=>_h,"host"),Af='.ui5-hidden-text{position:absolute;clip:rect(1px,1px,1px,1px);user-select:none;left:-1000px;top:-1000px;pointer-events:none;font-size:0}:host{position:fixed;background:var(--sapGroup_ContentBackground);border-radius:var(--_ui5_popup_border_radius);min-height:2rem;box-sizing:border-box}:host([open]){display:flex}.ui5-popup-root{background:inherit;border-radius:inherit;width:100%;box-sizing:border-box;display:flex;flex-direction:column;overflow:hidden;flex:1 1 auto;outline:none}.ui5-popup-root .ui5-popup-header-root{box-shadow:var(--_ui5_popup_header_shadow);border-bottom:var(--_ui5_popup_header_border)}.ui5-popup-content{color:var(--sapTextColor);flex:auto}.ui5-popup-content:focus{outline:var(--sapContent_FocusWidth) var(--sapContent_FocusStyle) var(--sapContent_FocusColor);outline-offset:calc(-1 * var(--sapContent_FocusWidth));border-radius:var(--_ui5_popup_border_radius)}.ui5-popup-footer-root{background:var(--sapPageFooter_Background);border-top:1px solid var(--sapPageFooter_BorderColor);color:var(--sapPageFooter_TextColor)}.ui5-popup-header-root,.ui5-popup-footer-root,:host([header-text]) .ui5-popup-header-text{margin:0;display:flex;justify-content:center;align-items:center}.ui5-popup-header-root .ui5-popup-header-text{font-weight:var(--sapFontHeaderFamily);font-size:var(--sapFontHeader5Size);color:var(--sapPageHeader_TextColor)}.ui5-popup-content{overflow:auto;box-sizing:border-box}:host([header-text]) .ui5-popup-header-text{min-height:var(--_ui5_popup_default_header_height);max-height:var(--_ui5_popup_default_header_height);line-height:var(--_ui5_popup_default_header_height);text-overflow:ellipsis;overflow:hidden;white-space:nowrap;max-width:100%;display:inline-flex;justify-content:var(--_ui5_popup_header_prop_header_text_alignment)}:host([header-text]) .ui5-popup-header-root{justify-content:var(--_ui5_popup_header_prop_header_text_alignment)}:host(:not([header-text])) .ui5-popup-header-text{display:none}:host([media-range="S"]) .ui5-popup-content{padding:1rem var(--_ui5_popup_content_padding_s)}:host([media-range="M"]) .ui5-popup-content,:host([media-range="L"]) .ui5-popup-content{padding:1rem var(--_ui5_popup_content_padding_m_l)}:host([media-range="XL"]) .ui5-popup-content{padding:1rem var(--_ui5_popup_content_padding_xl)}.ui5-popup-header-root{background:var(--sapPageHeader_Background)}:host([media-range="S"]) .ui5-popup-header-root,:host([media-range="S"]) .ui5-popup-footer-root{padding-left:var(--_ui5_popup_header_footer_padding_s);padding-right:var(--_ui5_popup_header_footer_padding_s)}:host([media-range="M"]) .ui5-popup-header-root,:host([media-range="L"]) .ui5-popup-header-root,:host([media-range="M"]) .ui5-popup-footer-root,:host([media-range="L"]) .ui5-popup-footer-root{padding-left:var(--_ui5_popup_header_footer_padding_m_l);padding-right:var(--_ui5_popup_header_footer_padding_m_l)}:host([media-range="XL"]) .ui5-popup-header-root,:host([media-range="XL"]) .ui5-popup-footer-root{padding-left:var(--_ui5_popup_header_footer_padding_xl);padding-right:var(--_ui5_popup_header_footer_padding_xl)}::slotted([slot="footer"]){height:var(--_ui5_popup_footer_height)}::slotted([slot="footer"][ui5-bar][design="Footer"]){border-top:none}::slotted([slot="header"][ui5-bar]){box-shadow:none}::slotted([slot="footer"][ui5-toolbar]){border:0}::slotted([slot="footer"][ui5-bar][design="Footer"]),::slotted([slot="header"][ui5-bar][design="Header"]){--_ui5_bar-start-container-padding-start: 0;--_ui5_bar-mid-container-padding-start-end: 0;--_ui5_bar-end-container-padding-end: 0}\n'}),Hf=qr(()=>{Ca(),Ch(),wh(),St("@ui5/webcomponents-theming","sap_horizon",async()=>ch),St("@ui5/webcomponents","sap_horizon",async()=>_h,"host"),Pf='.ui5-hidden-text{position:absolute;clip:rect(1px,1px,1px,1px);user-select:none;left:-1000px;top:-1000px;pointer-events:none;font-size:0}:host{min-width:20rem;min-height:6rem;max-height:94%;max-width:90%;flex-direction:column;box-shadow:var(--sapContent_Shadow3);border-radius:var(--sapElement_BorderCornerRadius)}:host([stretch]){width:90%;height:94%}:host([stretch][on-phone]){width:100%;height:100%;max-height:100%;max-width:100%;border-radius:0;min-width:0}:host([draggable]) .ui5-popup-header-root,:host([draggable]) ::slotted([slot="header"]){cursor:move}:host([draggable]) .ui5-popup-header-root *{cursor:auto}:host([draggable]) .ui5-popup-root{user-select:text}::slotted([slot="header"]){max-width:100%}.ui5-popup-root{display:flex;flex-direction:column;max-width:100vw}.ui5-popup-header-root{position:relative}.ui5-popup-header-root:before{content:"";position:absolute;inset-block-start:auto;inset-block-end:0;inset-inline-start:0;inset-inline-end:0;height:var(--_ui5_dialog_header_state_line_height);background:var(--sapObjectHeader_BorderColor)}:host([state="Negative"]) .ui5-popup-header-root:before{background:var(--sapErrorBorderColor)}:host([state="Information"]) .ui5-popup-header-root:before{background:var(--sapInformationBorderColor)}:host([state="Positive"]) .ui5-popup-header-root:before{background:var(--sapSuccessBorderColor)}:host([state="Critical"]) .ui5-popup-header-root:before{background:var(--sapWarningBorderColor)}.ui5-dialog-value-state-icon{margin-inline-end:.5rem;flex-shrink:0}:host([state="Negative"]) .ui5-dialog-value-state-icon{color:var(--sapNegativeElementColor)}:host([state="Information"]) .ui5-dialog-value-state-icon{color:var(--sapInformativeElementColor)}:host([state="Positive"]) .ui5-dialog-value-state-icon{color:var(--sapPositiveElementColor)}:host([state="Critical"]) .ui5-dialog-value-state-icon{color:var(--sapCriticalElementColor)}.ui5-popup-header-root{outline:none}:host([desktop]) .ui5-popup-header-root:focus:after,.ui5-popup-header-root:focus-visible:after{content:"";position:absolute;left:var(--_ui5_dialog_header_focus_left_offset);bottom:var(--_ui5_dialog_header_focus_bottom_offset);right:var(--_ui5_dialog_header_focus_right_offset);top:var(--_ui5_dialog_header_focus_top_offset);border:var(--sapContent_FocusWidth) var(--sapContent_FocusStyle) var(--sapContent_FocusColor);border-radius:var(--_ui5_dialog_header_border_radius) var(--_ui5_dialog_header_border_radius) 0 0;pointer-events:none}:host([stretch]) .ui5-popup-content{width:100%;height:100%}.ui5-popup-content{min-height:var(--_ui5_dialog_content_min_height);flex:1 1 auto}.ui5-popup-resize-handle{position:absolute;bottom:-.5rem;inset-inline-end:-.5rem;cursor:var(--_ui5_dialog_resize_cursor);width:1.5rem;height:1.5rem;border-radius:50%}.ui5-popup-resize-handle [ui5-icon]{color:var(--sapButton_Lite_TextColor)}:host::backdrop{background-color:var(--_ui5_popup_block_layer_background);opacity:var(--_ui5_popup_block_layer_opacity)}.ui5-block-layer{display:block}\n'}),Uf=qr(()=>{wn(),Wn(),kn(),Mv(),tc(),Ev(),qn(),zc(),pf(),vf(),yf(),kf(),Tf(),yh(),Lf(),Nf(),Hf(),Kv(),Mf=function(e,t,o,i){var r,a=arguments.length,n=a<3?t:null===i?i=Object.getOwnPropertyDescriptor(t,o):i;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)n=Reflect.decorate(e,t,o,i);else for(var s=e.length-1;s>=0;s--)(r=e[s])&&(n=(a<3?r(n):a>3?r(t,o,n):r(t,o))||n);return a>3&&n&&Object.defineProperty(t,o,n),n},zf=16,Ff={[pv.Negative]:"error",[pv.Critical]:"alert",[pv.Positive]:"sys-enter-2",[pv.Information]:"information"},Rf=Ef=class extends af{constructor(){super(),this.stretch=!1,this.draggable=!1,this.resizable=!1,this.state="None",this._draggedOrResized=!1,this._dragHandlerRegistered=!1,this._revertSize=()=>{Object.assign(this.style,{top:"",left:"",width:"",height:""})},this._screenResizeHandler=this._screenResize.bind(this),this._dragMouseMoveHandler=this._onDragMouseMove.bind(this),this._dragMouseUpHandler=this._onDragMouseUp.bind(this),this._resizeMouseMoveHandler=this._onResizeMouseMove.bind(this),this._resizeMouseUpHandler=this._onResizeMouseUp.bind(this),this._dragStartHandler=this._handleDragStart.bind(this)}static _isHeader(e){return e.classList.contains("ui5-popup-header-root")||"header"===e.getAttribute("slot")}get isModal(){return!0}get _ariaLabelledBy(){let e;return this.headerText&&!this._ariaLabel&&(e="ui5-popup-header-text"),e}get ariaRoleDescriptionHeaderText(){return this.resizable||this.draggable?Ef.i18nBundle.getText(Zu):void 0}get effectiveAriaDescribedBy(){return this.resizable||this.draggable?`${this._id}-descr`:void 0}get ariaDescribedByHeaderTextResizable(){return Ef.i18nBundle.getText(Xu)}get ariaDescribedByHeaderTextDraggable(){return Ef.i18nBundle.getText(Ju)}get ariaDescribedByHeaderTextDraggableAndResizable(){return Ef.i18nBundle.getText(Qu)}get _displayHeader(){return this.header.length||this.headerText||this.draggable||this.resizable}get _movable(){return!this.stretch&&this.onDesktop&&(this.draggable||this.resizable)}get _headerTabIndex(){return this._movable?0:void 0}get _showResizeHandle(){return this.resizable&&this.onDesktop}get _minHeight(){let e=Number.parseInt(window.getComputedStyle(this.contentDOM).minHeight);const t=this._root.querySelector(".ui5-popup-header-root");t&&(e+=t.offsetHeight);const o=this._root.querySelector(".ui5-popup-footer-root");return o&&(e+=o.offsetHeight),e}get hasValueState(){return this.state!==pv.None}get _dialogStateIcon(){return Ff[this.state]}get _role(){if(this.accessibleRole!==Ov.None)return this.state===pv.Negative||this.state===pv.Critical?_c(Ov.AlertDialog):_c(this.accessibleRole)}_show(){super._show(),this._center()}onBeforeRendering(){super.onBeforeRendering(),this._isRTL="rtl"===this.effectiveDir}_resize(){super._resize(),this._draggedOrResized||this._center()}_screenResize(){this._center()}_attachBrowserEvents(){this._attachScreenResizeHandler(),this._registerDragHandler()}_detachBrowserEvents(){this._detachScreenResizeHandler(),this._deregisterDragHandler()}_attachScreenResizeHandler(){this._screenResizeHandlerAttached||(window.addEventListener("resize",this._screenResizeHandler),this._screenResizeHandlerAttached=!0)}_detachScreenResizeHandler(){this._screenResizeHandlerAttached&&(window.removeEventListener("resize",this._screenResizeHandler),this._screenResizeHandlerAttached=!1)}_registerDragHandler(){this._dragHandlerRegistered||(this.addEventListener("dragstart",this._dragStartHandler),this._dragHandlerRegistered=!0)}_deregisterDragHandler(){this._dragHandlerRegistered&&(this.removeEventListener("dragstart",this._dragStartHandler),this._dragHandlerRegistered=!1)}_center(){const e=window.innerHeight-this.offsetHeight,t=window.innerWidth-this.offsetWidth;Object.assign(this.style,{top:`${Math.round(e/2)}px`,left:`${Math.round(t/2)}px`})}_onDragMouseDown(e){if(!this._movable||!this.draggable||!Ef._isHeader(e.target))return;const{top:t,left:o}=this.getBoundingClientRect(),{width:i,height:r}=window.getComputedStyle(this);Object.assign(this.style,{top:`${t}px`,left:`${o}px`,width:Math.round(100*Number.parseFloat(i))/100+"px",height:Math.round(100*Number.parseFloat(r))/100+"px"}),this._x=e.clientX,this._y=e.clientY,this._draggedOrResized=!0,this._attachMouseDragHandlers()}_onDragMouseMove(e){e.preventDefault();const{clientX:t,clientY:o}=e,i=this._x-t,r=this._y-o,{left:a,top:n}=this.getBoundingClientRect();Object.assign(this.style,{left:`${Math.floor(a-i)}px`,top:`${Math.floor(n-r)}px`}),this._x=t,this._y=o}_onDragMouseUp(){delete this._x,delete this._y,this._detachMouseDragHandlers()}_onDragOrResizeKeyDown(e){this._movable&&Ef._isHeader(e.target)&&(this.draggable&&[Ss,Ts,ks,xs].some(t=>t(e))?this._dragWithEvent(e):this.resizable&&[Bs,Is,Ps,Ms].some(t=>t(e))&&this._resizeWithEvent(e))}_dragWithEvent(e){const{top:t,left:o,width:i,height:r}=this.getBoundingClientRect();let a=0,n="top";switch(!0){case Ss(e):a=t-zf,n="top";break;case Ts(e):a=t+zf,n="top";break;case ks(e):a=o-zf,n="left";break;case xs(e):a=o+zf,n="left"}a=hv(a,0,"left"===n?window.innerWidth-i:window.innerHeight-r),this.style[n]=`${a}px`}_resizeWithEvent(e){this._draggedOrResized=!0,this.addEventListener("ui5-before-close",this._revertSize,{once:!0});const{top:t,left:o}=this.getBoundingClientRect(),i=window.getComputedStyle(this),r=Number.parseFloat(i.minWidth),a=window.innerWidth-o,n=window.innerHeight-t;let s=Number.parseFloat(i.width),l=Number.parseFloat(i.height);switch(!0){case Bs(e):l-=zf;break;case Is(e):l+=zf;break;case Ps(e):s-=zf;break;case Ms(e):s+=zf}s=hv(s,r,a),l=hv(l,this._minHeight,n),Object.assign(this.style,{width:`${s}px`,height:`${l}px`})}_attachMouseDragHandlers(){window.addEventListener("mousemove",this._dragMouseMoveHandler),window.addEventListener("mouseup",this._dragMouseUpHandler)}_detachMouseDragHandlers(){window.removeEventListener("mousemove",this._dragMouseMoveHandler),window.removeEventListener("mouseup",this._dragMouseUpHandler)}_onResizeMouseDown(e){if(!this._movable||!this.resizable)return;e.preventDefault();const{top:t,left:o}=this.getBoundingClientRect(),{width:i,height:r,minWidth:a}=window.getComputedStyle(this);this._initialX=e.clientX,this._initialY=e.clientY,this._initialWidth=Number.parseFloat(i),this._initialHeight=Number.parseFloat(r),this._initialTop=t,this._initialLeft=o,this._minWidth=Number.parseFloat(a),this._cachedMinHeight=this._minHeight,Object.assign(this.style,{top:`${t}px`,left:`${o}px`}),this._draggedOrResized=!0,this._attachMouseResizeHandlers()}_onResizeMouseMove(e){const{clientX:t,clientY:o}=e;let i,r;if(this._isRTL){i=hv(this._initialWidth-(t-this._initialX),this._minWidth,this._initialLeft+this._initialWidth),Object.assign(this.style,{width:`${i}px`});const e=i-this.getBoundingClientRect().width,o=this._initialLeft+this._initialWidth+e;r=hv(o-i,0,o-this._minWidth)}else i=hv(this._initialWidth+(t-this._initialX),this._minWidth,window.innerWidth-this._initialLeft);const a=hv(this._initialHeight+(o-this._initialY),this._cachedMinHeight,window.innerHeight-this._initialTop);Object.assign(this.style,{height:`${a}px`,width:`${i}px`,left:this._isRTL?`${r}px`:void 0})}_onResizeMouseUp(){delete this._initialX,delete this._initialY,delete this._initialWidth,delete this._initialHeight,delete this._initialTop,delete this._initialLeft,delete this._minWidth,delete this._cachedMinHeight,this._detachMouseResizeHandlers()}_handleDragStart(e){this.draggable&&e.target instanceof HTMLElement&&Ef._isHeader(e.target)&&e.preventDefault()}_attachMouseResizeHandlers(){window.addEventListener("mousemove",this._resizeMouseMoveHandler),window.addEventListener("mouseup",this._resizeMouseUpHandler),this.addEventListener("ui5-before-close",this._revertSize,{once:!0})}_detachMouseResizeHandlers(){window.removeEventListener("mousemove",this._resizeMouseMoveHandler),window.removeEventListener("mouseup",this._resizeMouseUpHandler)}},Mf([bn()],Rf.prototype,"headerText",void 0),Mf([bn({type:Boolean})],Rf.prototype,"stretch",void 0),Mf([bn({type:Boolean})],Rf.prototype,"draggable",void 0),Mf([bn({type:Boolean})],Rf.prototype,"resizable",void 0),Mf([bn()],Rf.prototype,"state",void 0),Mf([Sn()],Rf.prototype,"header",void 0),Mf([Sn()],Rf.prototype,"footer",void 0),Mf([Tn("@ui5/webcomponents")],Rf,"i18nBundle",void 0),(Rf=Ef=Mf([fn({tag:"ui5-dialog",template:Bf,styles:[af.styles,Af,Pf]})],Rf)).define(),Of=Rf});function Vf(){return this._isPhone?y_(Of,{"root-element":!0,accessibleName:this.accessibleName,accessibleNameRef:this.accessibleNameRef,accessibleDescription:this.accessibleDescription,accessibleDescriptionRef:this.accessibleDescriptionRef,accessibleRole:this.accessibleRole,stretch:!0,preventInitialFocus:this.preventInitialFocus,preventFocusRestore:this.preventFocusRestore,initialFocus:this.initialFocus,onBeforeOpen:this._beforeDialogOpen,onOpen:this._afterDialogOpen,onBeforeClose:this._beforeDialogClose,onClose:this._afterDialogClose,exportparts:"content, header, footer",open:this.open,children:[!this._hideHeader&&b_(f_,{children:this.header.length?b_("slot",{slot:"header",name:"header"}):y_("div",{class:this.classes.header,slot:"header",children:[this.headerText&&b_(nv,{level:"H1",wrappingType:"None",class:"ui5-popup-header-text ui5-responsive-popover-header-text",children:this.headerText}),!this._hideCloseButton&&b_(tp,{icon:"decline",design:"Transparent",accessibleName:this._closeDialogAriaLabel,onClick:this._dialogCloseButtonClick})]})}),b_("slot",{}),b_("slot",{slot:"footer",name:"footer"})]}):_v.call(this)}var Wf,qf,jf,Yf,$f,Gf,Kf,Zf,Xf,Jf,Qf,eb,tb,ob,ib,rb,ab,nb,sb,lb,cb,_b,db,ub,hb,pb,gb,mb,vb,fb,bb,yb,Cb,wb,kb,xb,Sb,Tb,Bb,Ib,Db=qr(()=>{C_(),Um(),Pv(),Uf(),cv()}),Ab=qr(()=>{Wf={toAttribute:e=>e instanceof HTMLElement?null:e,fromAttribute:e=>e}}),Pb=qr(()=>{!function(e){e.Start="Start",e.End="End",e.Top="Top",e.Bottom="Bottom"}(qf||(qf={})),jf=qf}),Mb=qr(()=>{!function(e){e.Center="Center",e.Top="Top",e.Bottom="Bottom",e.Stretch="Stretch"}(Yf||(Yf={})),$f=Yf}),Eb=qr(()=>{!function(e){e.Center="Center",e.Start="Start",e.End="End",e.Stretch="Stretch"}(Gf||(Gf={})),Kf=Gf}),zb=qr(()=>{Zf=e=>e.parentElement?e.parentElement:e.parentNode.host}),Fb=qr(()=>{mp(),zb(),Lb(),_f(),Jf=[],Qf=()=>{Jf.forEach(e=>{e.instance.reposition()})},eb=()=>{let e=op();"IFRAME"===e.tagName&&ub().reverse().forEach(t=>{const o=t.instance,i=o.getOpenerHTMLElement(o.opener);for(;e;){if(e===i)return;e=Zf(e)}o.closePopup(!1,!1,!0)})},tb=()=>{Xf=setInterval(()=>{Qf(),eb()},300)},ob=()=>{clearInterval(Xf)},ib=()=>{document.addEventListener("scroll",Qf,{capture:!0})},rb=()=>{document.removeEventListener("scroll",Qf,{capture:!0})},ab=e=>{e&&e.shadowRoot.addEventListener("scroll",Qf,{capture:!0})},nb=e=>{e&&e.shadowRoot.removeEventListener("scroll",Qf,{capture:!0})},sb=()=>{document.addEventListener("mousedown",cb,{capture:!0})},lb=()=>{document.removeEventListener("mousedown",cb,{capture:!0})},cb=e=>{const t=Wv();if(0!==t.length&&kb(t[t.length-1].instance))for(let o=t.length-1;-1!==o;o--){const i=t[o].instance;if(!kb(i))return;if(i.isModal||i.isOpenerClicked(e))return;if(i.isClicked(e))return;i.closePopup()}},_b=e=>{const t=hb(e);Uv(e,t),Jf.push({instance:e,parentPopovers:t}),ab(e),1===Jf.length&&(ib(),sb(),tb())},db=e=>{const t=[e];for(let o=0;o<Jf.length;o++){const i=Jf[o].parentPopovers.indexOf(e);Jf[o].parentPopovers.length>0&&i>-1&&t.push(Jf[o].instance)}for(let o=t.length-1;o>=0;o--)for(let e=0;e<Jf.length;e++){let i=-1;t[o]===Jf[e].instance&&(i=e),i>=0&&(Vv(Jf[i].instance),nb(Jf[i].instance),Jf.splice(i,1)[0].instance.closePopup(!1,!0))}Jf.length||(rb(),lb(),ob())},ub=()=>Jf,hb=e=>{let t=e.parentNode;const o=[];for(;t&&t.parentNode;){for(let e=0;e<Jf.length;e++)t===Jf[e].instance&&o.push(t);t=t.parentNode}return o}}),Rb=qr(()=>{Mv(),Lb(),Mb(),function(e){e.TopLeft="TopLeft",e.TopRight="TopRight",e.BottomLeft="BottomLeft",e.BottomRight="BottomRight"}(pb||(pb={})),gb=class{constructor(e){this._resized=!1,this._popover=e,this._resizeMouseMoveHandler=this._onResizeMouseMove.bind(this),this._resizeMouseUpHandler=this._onResizeMouseUp.bind(this)}reset(){this._resized&&(this._resized=!1,delete this._currentDeltaX,delete this._currentDeltaY,delete this._totalDeltaX,delete this._totalDeltaY)}get isResized(){return this._resized}getCorrectedLeft(e){return this.isResized&&(e-=this._currentDeltaX||0),e}getCorrectedTop(e){return this.isResized&&(e-=this._currentDeltaY||0),e}setCorrectResizeHandleClass(e){switch(this.getResizeHandlePlacement()){case pb.BottomLeft:e.root["ui5-popover-resize-handle-bottom-left"]=!0;break;case pb.BottomRight:e.root["ui5-popover-resize-handle-bottom-right"]=!0;break;case pb.TopLeft:e.root["ui5-popover-resize-handle-top-left"]=!0;break;case pb.TopRight:e.root["ui5-popover-resize-handle-top-right"]=!0}}getResizeHandlePlacement(){const e=this._popover;if(this._resized&&e.resizeHandlePlacement)return e.resizeHandlePlacement;const t=e.getOpenerHTMLElement(e.opener);if(!t)return;const o=e.isRtl,i=t.getBoundingClientRect(),r=e.getBoundingClientRect();let a=Math.floor(i.x+i.width/2);const n=Math.floor(i.y+i.height/2);let s=Math.floor(r.x+r.width/2);const l=Math.floor(r.y+r.height/2),c=e.verticalAlign,_=e._actualHorizontalAlign,d=r.width>i.width,u=r.height>i.height;switch(o&&(a=-a,s=-s),e.getActualPlacement(i)){case yb.Left:return u?l>n+2?pb.BottomLeft:pb.TopLeft:c===$f.Top?pb.BottomLeft:pb.TopLeft;case yb.Right:return u?l+2<n?pb.TopRight:pb.BottomRight:c===$f.Bottom?pb.TopRight:pb.BottomRight;case yb.Bottom:return d?s+2<a?o?pb.BottomRight:pb.BottomLeft:o?pb.BottomLeft:pb.BottomRight:o?_===bb.Left?pb.BottomRight:pb.BottomLeft:_===bb.Right?pb.BottomLeft:pb.BottomRight;case yb.Top:default:return d?s+2<a?o?pb.TopRight:pb.TopLeft:o?pb.TopLeft:pb.TopRight:o?_===bb.Left?pb.TopRight:pb.TopLeft:_===bb.Right?pb.TopLeft:pb.TopRight}}onResizeMouseDown(e){if(!this._popover.resizable)return;e.preventDefault(),this._resized=!0,this._initialBoundingRect=this._popover.getBoundingClientRect(),this._totalDeltaX=this._currentDeltaX,this._totalDeltaY=this._currentDeltaY;const{minWidth:t,minHeight:o}=window.getComputedStyle(this._popover),i=window.getComputedStyle(this._popover._getRealDomRef());this._initialClientX=e.clientX,this._initialClientY=e.clientY,this._minWidth=Math.max(Number.parseFloat(t),Number.parseFloat(i.minWidth)),this._minHeight=Number.parseFloat(o),this._attachMouseResizeHandlers()}_onResizeMouseMove(e){const t=this._popover._viewportMargin,{clientX:o,clientY:i}=e,r=this.getResizeHandlePlacement(),a=this._initialBoundingRect,n=o-this._initialClientX,s=i-this._initialClientY;let l,c;const _=r===pb.TopLeft||r===pb.BottomLeft,d=r===pb.TopLeft||r===pb.TopRight;if(_){const e=a.x+a.width-t;l=hv(a.width-n,this._minWidth,e);const o=hv(a.x+n,t,a.x+a.width-this._minWidth);l=Math.min(l,a.x+a.width-o),this._currentDeltaX=(a.x-o)/2}else{const e=window.innerWidth-a.x-t;l=hv(a.width+n,this._minWidth,e),this._currentDeltaX=(a.width-l)/2}if(d){const e=a.y+a.height-t;c=hv(a.height-s,this._minHeight,e);const o=hv(a.y+s,t,a.y+a.height-this._minHeight);c=Math.min(c,a.y+a.height-o),this._currentDeltaY=(a.y-o)/2}else{const e=window.innerHeight-a.y-t;c=hv(a.height+s,this._minHeight,e),this._currentDeltaY=(a.height-c)/2}this._currentDeltaX+=this._totalDeltaX||0,this._currentDeltaY+=this._totalDeltaY||0;const u=this._popover.calcPlacement(this._popover._openerRect,{width:l,height:c});this._popover.arrowTranslateX=u.arrow.x,this._popover.arrowTranslateY=u.arrow.y,Object.assign(this._popover.style,{left:`${u.left}px`,top:`${u.top}px`,height:`${c}px`,width:`${l}px`})}_onResizeMouseUp(){delete this._initialClientX,delete this._initialClientY,delete this._initialBoundingRect,delete this._minWidth,delete this._minHeight,this._detachMouseResizeHandlers()}_attachMouseResizeHandlers(){window.addEventListener("mousemove",this._resizeMouseMoveHandler),window.addEventListener("mouseup",this._resizeMouseUpHandler)}_detachMouseResizeHandlers(){window.removeEventListener("mousemove",this._resizeMouseMoveHandler),window.removeEventListener("mouseup",this._resizeMouseUpHandler)}}}),Ob=qr(()=>{Ca(),Ch(),wh(),St("@ui5/webcomponents-theming","sap_horizon",async()=>ch),St("@ui5/webcomponents","sap_horizon",async()=>_h,"host"),mb=':host{box-shadow:var(--_ui5_popover_box_shadow);background-color:var(--_ui5_popover_background);max-width:calc(100vw - (100vw - 100%) - 2 * var(--_ui5_popup_viewport_margin))}:host([hide-arrow]){box-shadow:var(--_ui5_popover_no_arrow_box_shadow)}:host([actual-placement="Bottom"]) .ui5-popover-arrow{left:calc(50% - .5625rem);top:-.5rem;height:.5rem}:host([actual-placement="Bottom"]) .ui5-popover-arrow:after{margin:var(--_ui5_popover_upward_arrow_margin)}:host([actual-placement="Left"]) .ui5-popover-arrow{top:calc(50% - .5625rem);right:-.5625rem;width:.5625rem}:host([actual-placement="Left"]) .ui5-popover-arrow:after{margin:var(--_ui5_popover_right_arrow_margin)}:host([actual-placement="Top"]) .ui5-popover-arrow{left:calc(50% - .5625rem);height:.5625rem;top:100%}:host([actual-placement="Top"]) .ui5-popover-arrow:after{margin:var(--_ui5_popover_downward_arrow_margin)}:host(:not([actual-placement])) .ui5-popover-arrow,:host([actual-placement="Right"]) .ui5-popover-arrow{left:-.5625rem;top:calc(50% - .5625rem);width:.5625rem;height:1rem}:host(:not([actual-placement])) .ui5-popover-arrow:after,:host([actual-placement="Right"]) .ui5-popover-arrow:after{margin:var(--_ui5_popover_left_arrow_margin)}:host([hide-arrow]) .ui5-popover-arrow{display:none}.ui5-popover-root{min-width:6.25rem}.ui5-popover-arrow{pointer-events:none;display:block;width:1rem;height:1rem;position:absolute;overflow:hidden}.ui5-popover-arrow:after{content:"";display:block;width:.7rem;height:.7rem;background-color:var(--_ui5_popover_background);box-shadow:var(--_ui5_popover_box_shadow);transform:rotate(-45deg)}:host([modal])::backdrop{background-color:var(--_ui5_popup_block_layer_background);opacity:var(--_ui5_popup_block_layer_opacity)}:host([modal]) .ui5-block-layer{display:block}.ui5-popover-resize-handle{position:absolute;width:1.5rem;height:1.5rem;border-radius:50%;z-index:1}.ui5-popover-resize-handle [ui5-icon]{position:absolute;width:1rem;height:1rem;cursor:inherit;color:var(--sapButton_Lite_TextColor);--rotAngle: 0;--scaleX: 1;transform:rotate(var(--rotAngle)) scaleX(var(--scaleX))}.ui5-popover-rtl .ui5-popover-resize-handle [ui5-icon]{--scaleX: -1}.ui5-popover-resize-handle-top-right .ui5-popover-resize-handle{top:-.5rem;right:-.5rem;cursor:ne-resize}.ui5-popover-resize-handle-top-right .ui5-popover-resize-handle [ui5-icon]{bottom:0;left:0;--rotAngle: 270deg}.ui5-popover-resize-handle-top-left .ui5-popover-resize-handle{top:-.5rem;left:-.5rem;cursor:nw-resize}.ui5-popover-resize-handle-top-left .ui5-popover-resize-handle [ui5-icon]{bottom:0;right:0;--rotAngle: 180deg}.ui5-popover-resize-handle-bottom-left .ui5-popover-resize-handle{bottom:-.5rem;left:-.5rem;cursor:ne-resize}.ui5-popover-resize-handle-bottom-left .ui5-popover-resize-handle [ui5-icon]{top:0;right:0;--rotAngle: 90deg}.ui5-popover-resize-handle-bottom-right .ui5-popover-resize-handle{bottom:-.5rem;right:-.5rem;cursor:nw-resize}.ui5-popover-resize-handle-bottom-right .ui5-popover-resize-handle [ui5-icon]{top:0;left:0}.ui5-popover-resizing,.ui5-popover-resizing *{user-select:none!important}\n'}),Lb=qr(()=>{Cn(),wn(),kn(),Wn(),Pa(),Gv(),Mv(),Ab(),ba(),pf(),Pb(),Mb(),Eb(),Fb(),Rb(),Pv(),Nf(),Ob(),gn(),vb=function(e,t,o,i){var r,a=arguments.length,n=a<3?t:null===i?i=Object.getOwnPropertyDescriptor(t,o):i;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)n=Reflect.decorate(e,t,o,i);else for(var s=e.length-1;s>=0;s--)(r=e[s])&&(n=(a<3?r(n):a>3?r(t,o,n):r(t,o))||n);return a>3&&n&&Object.defineProperty(t,o,n),n},function(e){e.Center="Center",e.Left="Left",e.Right="Right",e.Stretch="Stretch"}(bb||(bb={})),function(e){e.Left="Left",e.Right="Right",e.Top="Top",e.Bottom="Bottom"}(yb||(yb={})),Cb=fb=class extends af{static get VIEWPORT_MARGIN(){return 10}constructor(){super(),this.placement="End",this.horizontalAlign="Center",this.verticalAlign="Center",this.modal=!1,this.hideArrow=!1,this.allowTargetOverlap=!1,this.resizable=!1,this.arrowTranslateX=0,this.arrowTranslateY=0,this.actualPlacement="Right",this.isPopover=!0,this._popoverResize=new gb(this)}set opener(e){this._opener!==e&&(this._opener=e,e&&this.open&&this.openPopup())}get opener(){return this._opener}async openPopup(){if(this._opened)return;const e=this.getOpenerHTMLElement(this.opener);if(e){if(!e||this.isOpenerOutsideViewport(e.getBoundingClientRect()))return await ht(),this.open=!1,void this.fireDecoratorEvent("close");this._initialWidth=this.style.width,this._initialHeight=this.style.height,this._openerRect=e.getBoundingClientRect(),this._observeOpenerVisibility(),await super.openPopup()}}closePopup(e=!1,t=!1,o=!1){this._unobserveOpenerVisibility(),Object.assign(this.style,{width:this._initialWidth,height:this._initialHeight}),this._popoverResize.reset(),delete this._resizeHandlePlacement,super.closePopup(e,t,o)}isOpenerClicked(e){const t=e.target,o=this.getOpenerHTMLElement(this.opener);return!!o&&(t===o||(!(!this._isUI5AbstractElement(t)||t.getFocusDomRef()!==o)||e.composedPath().indexOf(o)>-1))}isClicked(e){return!(!this._showResizeHandle||this.shadowRoot.querySelector(".ui5-popover-resize-handle")!==e.composedPath()[0])||Dv(e,this.getBoundingClientRect())}_addOpenedPopup(){_b(this)}_removeOpenedPopup(){db(this)}getOpenerHTMLElement(e){if(null==e)return e;if(e instanceof HTMLElement)return this._isUI5AbstractElement(e)?e.getFocusDomRef():e;let t=this.getRootNode();if(!t)return null;t===this&&(t=document);let o=t.getElementById(e);return t instanceof ShadowRoot&&!o&&(o=document.getElementById(e)),o&&this._isUI5AbstractElement(o)?o.getFocusDomRef():o}shouldCloseDueToOverflow(e,t){const o={Left:t.right,Right:t.left,Top:t.top,Bottom:t.bottom},i=Av(this.getOpenerHTMLElement(this.opener));let r=!1,a=!1;if(i instanceof fb){const e=i.getBoundingClientRect();r=t.top>e.top+e.height,a=t.top+t.height<e.top}return o[e]<0||o[e]+32>i.innerHeight||r||a}shouldCloseDueToNoOpener(e){return 0===e.top&&0===e.bottom&&0===e.left&&0===e.right}isOpenerOutsideViewport(e){return e.bottom<0||e.top>window.innerHeight||e.right<0||e.left>window.innerWidth}_resize(){super._resize(),this.open&&this.reposition()}get _viewportMargin(){return fb.VIEWPORT_MARGIN}reposition(){this._show(),this.resizable&&(this._resizeHandlePlacement=this._popoverResize.getResizeHandlePlacement())}async _show(){super._show();const e=this.getOpenerHTMLElement(this.opener);if(!e)return void Object.assign(this.style,{top:"0px",left:"0px"});if(e&&pn(e)&&!e.getDomRef())return;this._opened||this._showOutsideViewport();const t=this.getPopoverSize();let o;if(0===t.width||0===t.height)return;if(this.open&&(this._openerRect=e.getBoundingClientRect()),o=this._oldPlacement&&this.shouldCloseDueToNoOpener(this._openerRect)&&this.isFocusWithin()?this._oldPlacement:this.calcPlacement(this._openerRect,t),this._preventRepositionAndClose||this.isOpenerOutsideViewport(this._openerRect))return await this._waitForDomRef(),this.closePopup();this._oldPlacement=o,this.actualPlacement=o.actualPlacement;let i=hv(this._left,fb.VIEWPORT_MARGIN,document.documentElement.clientWidth-t.width-fb.VIEWPORT_MARGIN);this.actualPlacement===yb.Right&&(i=Math.max(i,this._left));let r=hv(this._top,fb.VIEWPORT_MARGIN,document.documentElement.clientHeight-t.height-fb.VIEWPORT_MARGIN);this.actualPlacement===yb.Bottom&&(r=Math.max(r,this._top)),this.arrowTranslateX=o.arrow.x,this.arrowTranslateY=o.arrow.y,r=this._adjustForIOSKeyboard(r),Object.assign(this.style,{top:`${r}px`,left:`${i}px`}),this._popoverResize.isResized||(this.horizontalAlign===Kf.Stretch&&this._width&&(this.style.width=this._width),this.verticalAlign===$f.Stretch&&this._height&&(this.style.height=this._height))}_adjustForIOSKeyboard(e){if(!Mo())return e;const t=Math.ceil(this.getBoundingClientRect().top);return e+(Number.parseInt(this.style.top||"0")-t)}_onOpenerIntersection(e){this.open&&!e[0]?.isIntersecting&&this.closePopup()}_observeOpenerVisibility(){this._unobserveOpenerVisibility();const e=this.getOpenerHTMLElement(this.opener);e&&(this._openerIntersectionObserver=new IntersectionObserver(this._onOpenerIntersection.bind(this)),this._openerIntersectionObserver.observe(e))}_unobserveOpenerVisibility(){this._openerIntersectionObserver&&(this._openerIntersectionObserver.disconnect(),this._openerIntersectionObserver=null)}getPopoverSize(e=!1){const t=this.getBoundingClientRect(),o=t.width;let i;const r=this.getDomRef();if(e&&r){const e=r.querySelector(".ui5-popup-header-root"),t=r.querySelector(".ui5-popup-content"),o=r.querySelector(".ui5-popup-footer-root");i=t?.scrollHeight||0,i+=e?.scrollHeight||0,i+=o?.scrollHeight||0}else i=t.height;return{width:o,height:i}}_showOutsideViewport(){Object.assign(this.style,{top:"-10000px",left:"-10000px"})}_isUI5AbstractElement(e){return pn(e)&&e.isUI5AbstractElement}get arrowDOM(){return this.shadowRoot.querySelector(".ui5-popover-arrow")}focusOpener(){this.getOpenerHTMLElement(this.opener)?.focus()}calcPlacement(e,t){let o=fb.VIEWPORT_MARGIN,i=0;const r=this.allowTargetOverlap,a=document.documentElement.clientWidth,n=document.documentElement.clientHeight;let s=n,l=a;const c=this.getActualPlacement(e);this._preventRepositionAndClose=this.shouldCloseDueToNoOpener(e)||this.shouldCloseDueToOverflow(c,e);const _=c===yb.Top||c===yb.Bottom;this._popoverResize.isResized||(this.horizontalAlign===Kf.Stretch&&_?(t.width=e.width,this._width=`${e.width}px`):this.verticalAlign!==$f.Stretch||_||(t.height=e.height,this._height=`${e.height}px`));const d=this.hideArrow?0:8;switch(c){case yb.Top:o=this.getVerticalLeft(e,t),i=Math.max(e.top-t.height-d,0),r||(s=e.top-d);break;case yb.Bottom:o=this.getVerticalLeft(e,t),i=e.bottom+d,r?i=Math.max(Math.min(i,n-t.height),0):s=n-e.bottom-d;break;case yb.Left:o=Math.max(e.left-t.width-d,0),i=this.getHorizontalTop(e,t),r||(l=e.left-d);break;case yb.Right:o=e.left+e.width+d,i=this.getHorizontalTop(e,t),r?o=Math.max(Math.min(o,a-t.width),0):l=a-e.right-d}_?t.width>a||o<fb.VIEWPORT_MARGIN?o=fb.VIEWPORT_MARGIN:o+t.width>a-fb.VIEWPORT_MARGIN&&(o=a-fb.VIEWPORT_MARGIN-t.width):t.height>n||i<fb.VIEWPORT_MARGIN?i=fb.VIEWPORT_MARGIN:i+t.height>n-fb.VIEWPORT_MARGIN&&(i=n-fb.VIEWPORT_MARGIN-t.height),this._maxHeight=Math.round(s-fb.VIEWPORT_MARGIN),this._maxWidth=Math.round(l-fb.VIEWPORT_MARGIN),(void 0===this._left||Math.abs(this._left-o)>1.5)&&(this._left=Math.round(o)),(void 0===this._top||Math.abs(this._top-i)>1.5)&&(this._top=Math.round(i));const u=Number.parseInt(window.getComputedStyle(this).getPropertyValue("border-radius")),h=this.getArrowPosition(e,t,o,i,_,u);return this._left+=this.getRTLCorrectionLeft(),{arrow:h,top:this._top,left:this._left,actualPlacement:c}}get isVertical(){return this.placement===jf.Top||this.placement===jf.Bottom}getRTLCorrectionLeft(){return parseFloat(window.getComputedStyle(this).left)-this.getBoundingClientRect().left}getArrowPosition(e,t,o,i,r,a){const n=this._actualHorizontalAlign;let s=n===bb.Center||n===bb.Stretch;n===bb.Right&&o<=e.left&&(s=!0),n===bb.Left&&o+t.width>=e.left+e.width&&(s=!0);let l=0;r&&s&&(l=e.left+e.width/2-o-t.width/2);let c=0;r||(c=e.top+e.height/2-i-t.height/2);const _=t.height/2-a-4-2;c=hv(c,-_,_);const d=t.width/2-a-4-2;return l=hv(l,-d,d),{x:Math.round(l),y:Math.round(c)}}fallbackPlacement(e,t,o,i){return o.left>i.width?yb.Left:e-o.right>o.left?yb.Right:t-o.bottom>i.height?yb.Bottom:t-o.bottom<o.top?yb.Top:void 0}getActualPlacement(e){const t=this.placement,o=this.getPopoverSize(!this.allowTargetOverlap);let i=yb.Right;switch(t){case jf.Start:i=this.isRtl?yb.Right:yb.Left;break;case jf.End:i=this.isRtl?yb.Left:yb.Right;break;case jf.Top:i=yb.Top;break;case jf.Bottom:i=yb.Bottom}const r=document.documentElement.clientWidth;let a=document.documentElement.clientHeight,n=o.height;switch(this.isVertical&&(n+=this.hideArrow?0:8,a-=fb.VIEWPORT_MARGIN),i){case yb.Top:e.top<n&&e.top<a-e.bottom&&(i=yb.Bottom);break;case yb.Bottom:a-e.bottom<n&&a-e.bottom<e.top&&(i=yb.Top);break;case yb.Left:e.left<o.width&&(i=this.fallbackPlacement(r,a,e,o)||i);break;case yb.Right:r-e.right<o.width&&(i=this.fallbackPlacement(r,a,e,o)||i)}return i}getVerticalLeft(e,t){const o=this._actualHorizontalAlign;let i=fb.VIEWPORT_MARGIN;switch(o){case bb.Center:case bb.Stretch:i=e.left-(t.width-e.width)/2,i=this._popoverResize.getCorrectedLeft(i);break;case bb.Left:i=e.left;break;case bb.Right:i=e.right-t.width}return i}getHorizontalTop(e,t){let o=0;switch(this.verticalAlign){case $f.Center:case $f.Stretch:o=e.top-(t.height-e.height)/2,o=this._popoverResize.getCorrectedTop(o);break;case $f.Top:o=e.top;break;case $f.Bottom:o=e.bottom-t.height}return o}get isModal(){return this.modal}get _ariaLabelledBy(){if(!this._ariaLabel&&this._displayHeader)return"ui5-popup-header"}get styles(){return{...super.styles,root:{"max-height":this._maxHeight?`${this._maxHeight}px`:"","max-width":this._maxWidth?`${this._maxWidth}px`:""},arrow:{transform:`translate(${this.arrowTranslateX}px, ${this.arrowTranslateY}px)`}}}get classes(){const e=super.classes;return e.root["ui5-popover-root"]=!0,e.root["ui5-popover-rtl"]=this.isRtl,this.resizable&&this._popoverResize.setCorrectResizeHandleClass(e),e}get _displayHeader(){return!(!this.header.length&&!this.headerText)}get _displayFooter(){return!0}get isRtl(){return"rtl"===this.effectiveDir}get _actualHorizontalAlign(){switch(this.horizontalAlign){case Kf.Start:return this.isRtl?bb.Right:bb.Left;case Kf.End:return this.isRtl?bb.Left:bb.Right;case Kf.Stretch:return bb.Stretch;case Kf.Center:default:return bb.Center}}get _showResizeHandle(){return this.resizable&&this.onDesktop}get resizeHandlePlacement(){return this._resizeHandlePlacement}_onResizeMouseDown(e){this._popoverResize.onResizeMouseDown(e),this._resizeHandlePlacement=this._popoverResize.getResizeHandlePlacement()}},vb([bn()],Cb.prototype,"headerText",void 0),vb([bn()],Cb.prototype,"placement",void 0),vb([bn()],Cb.prototype,"horizontalAlign",void 0),vb([bn()],Cb.prototype,"verticalAlign",void 0),vb([bn({type:Boolean})],Cb.prototype,"modal",void 0),vb([bn({type:Boolean})],Cb.prototype,"hideArrow",void 0),vb([bn({type:Boolean})],Cb.prototype,"allowTargetOverlap",void 0),vb([bn({type:Boolean})],Cb.prototype,"resizable",void 0),vb([bn({type:Number,noAttribute:!0})],Cb.prototype,"arrowTranslateX",void 0),vb([bn({type:Number,noAttribute:!0})],Cb.prototype,"arrowTranslateY",void 0),vb([bn()],Cb.prototype,"actualPlacement",void 0),vb([bn({type:Number,noAttribute:!0})],Cb.prototype,"_maxHeight",void 0),vb([bn({type:Number,noAttribute:!0})],Cb.prototype,"_maxWidth",void 0),vb([bn({noAttribute:!0})],Cb.prototype,"_resizeHandlePlacement",void 0),vb([Sn()],Cb.prototype,"header",void 0),vb([Sn()],Cb.prototype,"footer",void 0),vb([bn({converter:Wf})],Cb.prototype,"opener",null),(Cb=fb=vb([fn({tag:"ui5-popover",styles:[af.styles,Af,mb],template:_v})],Cb)).define(),wb=Cb,kb=ln("isPopover")}),Nb=qr(()=>{Ca(),Ch(),wh(),St("@ui5/webcomponents-theming","sap_horizon",async()=>ch),St("@ui5/webcomponents","sap_horizon",async()=>_h,"host"),xb=":host{min-width:6.25rem;min-height:2rem}:host([on-phone]){display:contents}.ui5-responsive-popover-header{height:var(--_ui5-responsive_popover_header_height);display:flex;justify-content:var(--_ui5_popup_header_prop_header_text_alignment);align-items:center;width:100%}.ui5-responsive-popover-header-text{width:calc(100% - var(--_ui5_button_base_min_width))}.ui5-responsive-popover-header-no-title{justify-content:flex-end}\n"}),Hb=qr(()=>{wn(),kn(),Pa(),qn(),yh(),Db(),Lb(),Nb(),Sb=function(e,t,o,i){var r,a=arguments.length,n=a<3?t:null===i?i=Object.getOwnPropertyDescriptor(t,o):i;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)n=Reflect.decorate(e,t,o,i);else for(var s=e.length-1;s>=0;s--)(r=e[s])&&(n=(a<3?r(n):a>3?r(t,o,n):r(t,o))||n);return a>3&&n&&Object.defineProperty(t,o,n),n},Bb=Tb=class extends wb{constructor(){super(),this.contentOnlyOnDesktop=!1,this._hideHeader=!1,this._hideCloseButton=!1}async openPopup(){Ao()?this._dialog&&(this._dialog.open=!0):await super.openPopup()}async _show(){if(!Ao())return super._show()}handleOpenOnEnterDOM(){this.open&&!Ao()&&(this.showPopover(),this.openPopup())}_dialogCloseButtonClick(){this.closePopup()}closePopup(e=!1,t=!1,o=!1){Ao()?this._dialog?.closePopup(e,t,o):super.closePopup(e,t,o)}toggle(e){this.open?this.closePopup():(this.opener=e,this.open=!0)}get classes(){const e=super.classes;return e.header={"ui5-responsive-popover-header":!0,"ui5-responsive-popover-header-no-title":!this.headerText},e}get _dialog(){return this.shadowRoot.querySelector("[ui5-dialog]")}get contentDOM(){return Ao()?this._dialog.contentDOM:super.contentDOM}get _isPhone(){return Ao()}get _displayHeader(){return(Ao()||!this.contentOnlyOnDesktop)&&super._displayHeader}get _displayFooter(){return Ao()||!this.contentOnlyOnDesktop}get _closeDialogAriaLabel(){return Tb.i18nBundle.getText(ou)}_beforeDialogOpen(){this._opened=!0,this.open=!0,this.fireDecoratorEvent("before-open")}_afterDialogOpen(){this.fireDecoratorEvent("open")}_beforeDialogClose(e){this.fireDecoratorEvent("before-close",e.detail)}_afterDialogClose(){this._opened=!1,this.open=!1,this.fireDecoratorEvent("close")}get isModal(){return Ao()?this._dialog.isModal:super.isModal}},Sb([bn({type:Boolean})],Bb.prototype,"contentOnlyOnDesktop",void 0),Sb([bn({type:Boolean})],Bb.prototype,"_hideHeader",void 0),Sb([bn({type:Boolean})],Bb.prototype,"_hideCloseButton",void 0),Sb([Tn("@ui5/webcomponents")],Bb,"i18nBundle",void 0),(Bb=Tb=Sb([fn({tag:"ui5-responsive-popover",styles:[wb.styles,xb],template:Vf})],Bb)).define(),Ib=Bb});function Ub(){return y_("div",{children:[b_(wm,{class:"ui5-exp-text-text",emptyIndicatorMode:this.emptyIndicatorMode,children:this._displayedText}),this._maxCharactersExceeded&&y_(f_,{children:[b_("span",{class:"ui5-exp-text-ellipsis",children:this._ellipsisText}),b_(Pm,{id:"toggle",class:"ui5-exp-text-toggle",accessibleRole:"Button",accessibleName:this._accessibleNameForToggle,accessibilityAttributes:this._accessibilityAttributesForToggle,onClick:this._handleToggleClick,children:this._textForToggle}),this._usePopover&&y_(Ib,{open:this._expanded,opener:"toggle",accessibleNameRef:"popover-text",contentOnlyOnDesktop:!0,_hideHeader:!0,class:"ui5-exp-text-popover",onClose:this._handlePopoverClose,children:[b_(wm,{id:"popover-text",children:this.text}),b_("div",{slot:"footer",class:"ui5-exp-text-footer",children:b_(tp,{design:"Transparent",onClick:this._handleCloseButtonClick,children:this._closeButtonText})})]})]})]})}var Vb,Wb,qb,jb,Yb,$b=qr(()=>{C_(),Sm(),Om(),gp(),Hb()}),Gb=qr(()=>{Ca(),Ch(),wh(),St("@ui5/webcomponents-theming","sap_horizon",async()=>ch),St("@ui5/webcomponents","sap_horizon",async()=>_h,"host"),Vb=":host{display:inline-block;font-family:var(--sapFontFamily);font-size:var(--sapFontSize);color:var(--sapTextColor)}:host([hidden]){display:none}.ui5-exp-text-text{display:inline}.ui5-exp-text-text,.ui5-exp-text-toggle{font-family:inherit;font-size:inherit}.ui5-exp-text-text,.ui5-exp-text-ellipsis{color:inherit}.ui5-exp-text-popover::part(content){padding-inline:1rem}.ui5-exp-text-footer{width:100%;display:flex;align-items:center;justify-content:flex-end}\n"}),Kb=qr(()=>{Cn(),wn(),kn(),qn(),ec(),Pa(),gm(),yh(),$b(),Gb(),Wb=function(e,t,o,i){var r,a=arguments.length,n=a<3?t:null===i?i=Object.getOwnPropertyDescriptor(t,o):i;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)n=Reflect.decorate(e,t,o,i);else for(var s=e.length-1;s>=0;s--)(r=e[s])&&(n=(a<3?r(n):a>3?r(t,o,n):r(t,o))||n);return a>3&&n&&Object.defineProperty(t,o,n),n},jb=qb=class extends hn{constructor(){super(...arguments),this.maxCharacters=100,this.overflowMode="InPlace",this.emptyIndicatorMode="Off",this._expanded=!1}getFocusDomRef(){return this._usePopover?this.shadowRoot?.querySelector("[ui5-responsive-popover]"):this.shadowRoot?.querySelector("[ui5-link]")}get _displayedText(){return this._expanded&&!this._usePopover?this.text:this.text?.substring(0,this.maxCharacters)}get _maxCharactersExceeded(){return(this.text?.length||0)>this.maxCharacters}get _usePopover(){return this.overflowMode===cm.Popover}get _ellipsisText(){return this._expanded&&!this._usePopover?" ":"... "}get _textForToggle(){return this._expanded?qb.i18nBundle.getText(ud):qb.i18nBundle.getText(dd)}get _closeButtonText(){return qb.i18nBundle.getText(hd)}get _accessibilityAttributesForToggle(){return this._usePopover?{expanded:this._expanded,hasPopup:"dialog"}:{expanded:this._expanded}}get _accessibleNameForToggle(){if(this._usePopover)return this._expanded?qb.i18nBundle.getText(gd):qb.i18nBundle.getText(pd)}_handlePopoverClose(){Ao()||(this._expanded=!1)}_handleToggleClick(){this._expanded=!this._expanded}_handleCloseButtonClick(e){this._expanded=!1,e.stopPropagation()}},Wb([bn()],jb.prototype,"text",void 0),Wb([bn({type:Number})],jb.prototype,"maxCharacters",void 0),Wb([bn()],jb.prototype,"overflowMode",void 0),Wb([bn()],jb.prototype,"emptyIndicatorMode",void 0),Wb([bn({type:Boolean})],jb.prototype,"_expanded",void 0),Wb([Tn("@ui5/webcomponents")],jb,"i18nBundle",void 0),(jb=qb=Wb([fn({tag:"ui5-expandable-text",renderer:ms,styles:Vb,template:Ub})],jb)).define(),Yb=jb}),Zb=jr({default:()=>Xb});function Xb(e){const{className:t,text:o,maxCharacters:i,part:r}=e;return b_(Yb,{part:r,class:t,text:o,maxCharacters:i})}var Jb,Qb,ey,ty,oy=qr(()=>{C_(),Kb()}),iy=qr(()=>{Kg(),qn(),zc(),tm(),yh(),um(),hm(),pm(),Jb=function(e,t,o,i){var r,a=arguments.length,n=a<3?t:null===i?i=Object.getOwnPropertyDescriptor(t,o):i;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)n=Reflect.decorate(e,t,o,i);else for(var s=e.length-1;s>=0;s--)(r=e[s])&&(n=(a<3?r(n):a>3?r(t,o,n):r(t,o))||n);return a>3&&n&&Object.defineProperty(t,o,n),n},ey=Qb=class extends qg{constructor(){super(...arguments),this.accessibleRole=sm.ListItem,this.wrappingType="None",this.mediaRange="S"}get effectiveAccRole(){return _c(this.accessibleRole)}get groupItem(){return!0}get _pressable(){return!1}get groupHeaderText(){return Qb.i18nBundle.getText(md)}get defaultSlotText(){return this.textContent}get ariaLabelText(){return[this.textContent,this.accessibleName].filter(Boolean).join(" ")}get hasSubItems(){return this.subItems.length>0}onBeforeRendering(){super.onBeforeRendering(),"Normal"===this.wrappingType&&(Qb.ExpandableTextTemplate?this.expandableTextTemplate=Qb.ExpandableTextTemplate:Promise.resolve().then(()=>(oy(),Zb)).then(e=>{this.expandableTextTemplate=e.default}))}get _maxCharacters(){return"S"===this.mediaRange?100:300}get _textContent(){return this.defaultSlotText||this.groupHeaderText||""}},Jb([bn()],ey.prototype,"accessibleName",void 0),Jb([bn()],ey.prototype,"accessibleRole",void 0),Jb([bn()],ey.prototype,"wrappingType",void 0),Jb([bn()],ey.prototype,"mediaRange",void 0),Jb([bn({noAttribute:!0})],ey.prototype,"expandableTextTemplate",void 0),Jb([Sn()],ey.prototype,"subItems",void 0),Jb([Tn("@ui5/webcomponents")],ey,"i18nBundle",void 0),(ey=Qb=Jb([fn({tag:"ui5-li-group-header",languageAware:!0,template:im,styles:[qg.styles,am]})],ey)).define(),ty=ey});function ry(){return y_(f_,{children:[this.hasHeader&&y_(ty,{wrappingType:this.wrappingType,focused:this.focused,part:"header",exportparts:"title",accessibleRole:sm.ListItem,children:[this.hasFormattedHeader?b_("slot",{name:"header"}):this.headerText,b_("div",{role:"list",slot:"subItems","aria-owns":`${this._id}-content`,"aria-label":this.headerText})]}),y_("div",{class:"ui5-group-li-root",onDragEnter:this._ondragenter,onDragOver:this._ondragover,onDrop:this._ondrop,onDragLeave:this._ondragleave,id:`${this._id}-content`,children:[b_("slot",{}),b_(Dg,{orientation:"Horizontal",ownerReference:this})]})]})}var ay,ny,sy,ly,cy,_y,dy,uy,hy,py,gy=qr(()=>{C_(),iy(),Mg(),pm()}),my=qr(()=>{Ca(),Ch(),wh(),St("@ui5/webcomponents-theming","sap_horizon",async()=>ch),St("@ui5/webcomponents","sap_horizon",async()=>_h,"host"),ay=".ui5-hidden-text{position:absolute;clip:rect(1px,1px,1px,1px);user-select:none;left:-1000px;top:-1000px;pointer-events:none;font-size:0}:host{height:var(--_ui5_group_header_list_item_height);background:var(--ui5-group-header-listitem-background-color);color:var(--sapList_TableGroupHeaderTextColor)}.ui5-group-li-root{width:100%;height:100%;position:relative;box-sizing:border-box;padding:0;margin:0;list-style-type:none}\n"}),vy=qr(()=>{Wn(),xn(),kn(),wn(),ec(),Cn(),mg(),hg(),gy(),my(),om(),gn(),ny=function(e,t,o,i){var r,a=arguments.length,n=a<3?t:null===i?i=Object.getOwnPropertyDescriptor(t,o):i;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)n=Reflect.decorate(e,t,o,i);else for(var s=e.length-1;s>=0;s--)(r=e[s])&&(n=(a<3?r(n):a>3?r(t,o,n):r(t,o))||n);return a>3&&n&&Object.defineProperty(t,o,n),n},sy=class extends hn{constructor(){super(),this.wrappingType="None",this.focused=!1,this._dragAndDropHandler=new $p(this,{getItems:()=>this.items,getDropIndicator:()=>this.dropIndicatorDOM,filterPlacements:this._filterPlacements.bind(this)})}get groupHeaderItem(){return this.shadowRoot.querySelector("[ui5-li-group-header]")}get hasHeader(){return!!this.headerText||this.hasFormattedHeader}get hasFormattedHeader(){return!!this.header.length}get isListItemGroup(){return!0}get dropIndicatorDOM(){return this.shadowRoot.querySelector("[ui5-drop-indicator]")}_ondragenter(e){this._dragAndDropHandler.ondragenter(e)}_ondragleave(e){this._dragAndDropHandler.ondragleave(e)}_ondragover(e){this._dragAndDropHandler.ondragover(e)}_ondrop(e){this._dragAndDropHandler.ondrop(e)}_filterPlacements(e,t,o){return o===t?e.filter(e=>e!==Lp.On):e}getFocusDomRef(){return this.groupHeaderItem||this.items.at(0)}getGroupHeaderWrapping(){return Yg.None}},ny([bn()],sy.prototype,"headerText",void 0),ny([bn()],sy.prototype,"headerAccessibleName",void 0),ny([Sn({default:!0,invalidateOnChildChange:!0,type:HTMLElement})],sy.prototype,"items",void 0),ny([bn()],sy.prototype,"wrappingType",void 0),ny([bn({type:Boolean})],sy.prototype,"focused",void 0),ny([Sn()],sy.prototype,"header",void 0),(sy=ny([fn({tag:"ui5-li-group",renderer:ms,languageAware:!0,template:ry,styles:[ay]}),yn("move-over",{bubbles:!0,cancelable:!0}),yn("move",{bubbles:!0})],sy)).define(),ly=sy,cy=ln("isListItemGroup")}),fy=qr(()=>{Cn(),yp(),ec(),zc(),kn(),xn(),wn(),Wn(),qn(),ba(),mp(),tc(),mg(),gg(),vp(),oc(),vg(),fg(),bg(),yg(),Cg(),wg(),kg(),xg(),$g(),Gg(),yh(),vy(),_y=function(e,t,o,i){var r,a=arguments.length,n=a<3?t:null===i?i=Object.getOwnPropertyDescriptor(t,o):i;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)n=Reflect.decorate(e,t,o,i);else for(var s=e.length-1;s>=0;s--)(r=e[s])&&(n=(a<3?r(n):a>3?r(t,o,n):r(t,o))||n);return a>3&&n&&Object.defineProperty(t,o,n),n},uy=dy=class extends hn{constructor(){super(),this.indent=!1,this.selectionMode="None",this.separators="All",this.growing="None",this.loading=!1,this.loadingDelay=1e3,this.stickyHeader=!1,this.accessibilityAttributes={},this.accessibleRole="List",this._inViewport=!1,this._loadMoreActive=!1,this.mediaRange="S",this._startMarkerOutOfView=!1,this._previouslyFocusedItem=null,this._forwardingFocus=!1,this._itemNavigation=new ap(this,{skipItemsSize:10,navigationMode:ip.Vertical,getItemsCallback:()=>this.getEnabledItems()}),this.handleResizeCallback=this._handleResize.bind(this),this._groupCount=0,this._groupItemCount=0,this.onItemFocusedBound=this.onItemFocused.bind(this),this.onForwardAfterBound=this.onForwardAfter.bind(this),this.onForwardBeforeBound=this.onForwardBefore.bind(this),this.onItemTabIndexChangeBound=this.onItemTabIndexChange.bind(this),this._dragAndDropHandler=new $p(this,{getItems:()=>this.items,getDropIndicator:()=>this.dropIndicatorDOM,useOriginalEvent:!0})}get listItems(){return this.getItems()}_updateAssociatedLabelsTexts(){this._associatedDescriptionRefTexts=Il(this),this._associatedLabelsRefTexts=vl(this)}onEnterDOM(){kl(this,this._updateAssociatedLabelsTexts.bind(this)),dp.register(this.getDomRef(),this.handleResizeCallback)}onExitDOM(){Tl(this),this.unobserveListEnd(),this.unobserveListStart(),dp.deregister(this.getDomRef(),this.handleResizeCallback)}onBeforeRendering(){this.detachGroupHeaderEvents(),this.prepareListItems()}onAfterRendering(){this.attachGroupHeaderEvents(),this.growsOnScroll?(this.observeListEnd(),this.observeListStart()):(this.unobserveListEnd(),this.unobserveListStart()),this.grows&&this.checkListInViewport()}attachGroupHeaderEvents(){this.getItems().forEach(e=>{e.hasAttribute("ui5-li-group-header")&&(e.addEventListener("ui5-_focused",this.onItemFocusedBound),e.addEventListener("ui5-forward-after",this.onForwardAfterBound),e.addEventListener("ui5-forward-before",this.onForwardBeforeBound))})}detachGroupHeaderEvents(){this.getItems().forEach(e=>{e.hasAttribute("ui5-li-group-header")&&(e.removeEventListener("ui5-_focused",this.onItemFocusedBound),e.removeEventListener("ui5-forward-after",this.onForwardAfterBound),e.removeEventListener("ui5-forward-before",this.onForwardBeforeBound))})}getFocusDomRef(){return this._itemNavigation._getCurrentItem()}get shouldRenderH1(){return!this.header.length&&this.headerText}get headerID(){return`${this._id}-header`}get modeLabelID(){return`${this._id}-modeLabel`}get listEndDOM(){return this.shadowRoot.querySelector(".ui5-list-end-marker")}get listStartDOM(){return this.shadowRoot.querySelector(".ui5-list-start-marker")}get dropIndicatorDOM(){return this.shadowRoot.querySelector("[ui5-drop-indicator]")}get hasData(){return 0!==this.getItems().length}get showBusyIndicatorOverlay(){return!this.growsWithButton&&this.loading}get showNoDataText(){return!this.hasData&&this.noDataText}get isDelete(){return this.selectionMode===Qp.Delete}get isSingleSelect(){return[Qp.Single,Qp.SingleStart,Qp.SingleEnd,Qp.SingleAuto].includes(this.selectionMode)}get isMultiple(){return this.selectionMode===Qp.Multiple}get ariaLabelledBy(){if(this.accessibleNameRef||this.accessibleName)return;const e=[];return(this.isMultiple||this.isSingleSelect||this.isDelete)&&e.push(this.modeLabelID),this.shouldRenderH1&&e.push(this.headerID),e.length?e.join(" "):void 0}get ariaLabelTxt(){return this._associatedLabelsRefTexts||ml(this)}get ariaDescriptionText(){const e=[];this.accessibleRole===ig.List&&e.push(this.defaultAriaDescriptionText);const t=this._associatedDescriptionRefTexts||Bl(this);t&&e.push(t);const o=this._getDescriptionForGroups();return o&&e.push(o),e.join(" ")}get defaultAriaDescriptionText(){return dy.i18nBundle.getText(Ad)}get growingButtonAriaLabel(){return this.accessibilityAttributes.growingButton?.name}get growingButtonAriaLabelledBy(){return this.accessibilityAttributes.growingButton?.name?void 0:`${this._id}-growingButton-text`}get growingButtonAriaDescribedBy(){return this.accessibilityAttributes.growingButton?.description?`${this._id}-growingButton-description`:void 0}hasGrowingComponent(){return this.growsOnScroll?this._startMarkerOutOfView:this.growsWithButton}_getDescriptionForGroups(){let e="";return this._groupCount>0&&(this.accessibleRole===ig.List?e=dy.i18nBundle.getText(Rd,this._groupCount,this._groupItemCount):this.accessibleRole===ig.ListBox&&(e=dy.i18nBundle.getText(Od,this._groupCount))),e}get ariaLabelModeText(){if(this.hasData){if(this.isMultiple)return dy.i18nBundle.getText(Ud);if(this.isSingleSelect)return dy.i18nBundle.getText(Hd);if(this.isDelete)return dy.i18nBundle.getText(Vd)}return""}get grows(){return this.growing!==tg.None}get growsOnScroll(){return this.growing===tg.Scroll}get growsWithButton(){return this.growing===tg.Button}get _growingButtonText(){return this.growingButtonText||dy.i18nBundle.getText(nu)}get listAccessibleRole(){return _c(this.accessibleRole)}get classes(){return{root:{"ui5-list-root":!0}}}prepareListItems(){const e=this.getItemsForProcessing();e.forEach((t,o)=>{const i=o===e.length-1,r=this.separators===ag.All||this.separators===ag.Inner&&!i;t.hasConfigurableMode&&(t._selectionMode=this.selectionMode),t.hasBorder=r,t.mediaRange=this.mediaRange})}async observeListEnd(){await ht(),this.getEndIntersectionObserver().observe(this.listEndDOM)}unobserveListEnd(){this._endIntersectionObserver&&(this._endIntersectionObserver.disconnect(),this._endIntersectionObserver=null)}async observeListStart(){await ht(),this.getStartIntersectionObserver().observe(this.listStartDOM)}unobserveListStart(){this._startIntersectionObserver&&(this._startIntersectionObserver.disconnect(),this._startIntersectionObserver=null)}onEndIntersection(e){e.forEach(e=>{e.isIntersecting&&Zp(this.loadMore.bind(this),250)})}onStartIntersection(e){e.forEach(e=>{this._startMarkerOutOfView=!e.isIntersecting})}onSelectionRequested(e){const t=this.getSelectedItems();let o=!1;this.selectionMode!==Qp.None&&this[`handle${this.selectionMode}`]&&(o=this[`handle${this.selectionMode}`](e.detail.item,!!e.detail.selected)),o&&(this.fireDecoratorEvent("selection-change",{selectedItems:this.getSelectedItems(),previouslySelectedItems:t,selectionComponentPressed:e.detail.selectionComponentPressed,targetItem:e.detail.item,key:e.detail.key})||this._revertSelection(t))}handleSingle(e){return!e.selected&&(this.deselectSelectedItems(),e.selected=!0,!0)}handleSingleStart(e){return this.handleSingle(e)}handleSingleEnd(e){return this.handleSingle(e)}handleSingleAuto(e){return this.handleSingle(e)}handleMultiple(e,t){return e.selected=t,!0}handleDelete(e){return this.fireDecoratorEvent("item-delete",{item:e}),!0}deselectSelectedItems(){this.getSelectedItems().forEach(e=>{e.selected=!1})}getSelectedItems(){return this.getItems().filter(e=>e.selected)}getEnabledItems(){return this.getItems().filter(e=>e._focusable)}getItems(){const e=[],t=this.getSlottedNodes("items");let o=0,i=0;return t.forEach(t=>{if(cy(t)){const r=[t.groupHeaderItem,...t.items.filter(e=>e.assignedSlot)].filter(Boolean);e.push(...r),o++,i+=r.length-1}else hy(t)?t.assignedSlot&&e.push(...t.listItems):t.assignedSlot&&e.push(t)}),this._groupCount=o,this._groupItemCount=i,e}getItemsForProcessing(){return this.getItems()}_revertSelection(e){this.getItems().forEach(t=>{const o=-1!==e.indexOf(t),i=t.shadowRoot.querySelector(".ui5-li-multisel-cb"),r=t.shadowRoot.querySelector(".ui5-li-singlesel-radiobtn");t.selected=o,i?i.checked=o:r&&(r.checked=o)})}_onkeydown(e){if(zs(e))return this._handleEnd(),void e.preventDefault();if(Es(e))return void this._handleHome();const t=Ss(e)||Ts(e),o=this._getClosestListItem(e.target);if(o?._isFocusOnInternalElement()&&t){const t=Ss(e)?-1:1;if(this._navigateToAdjacentItem(o,t))return void e.preventDefault()}Ts(e)?this._handleDown(e):ys(e)?this._moveItem(e.target,e):(Ls(e)&&this._handleTabNext(e),ol(e)&&this._handleF7(e))}_handleF7(e){const t=this._getClosestListItem(e.target);if(!t||!t._hasFocusableElements())return;const o=t.getFocusDomRef(),i=op();e.preventDefault(),i===o?(t._focusInternalElement(this._lastFocusedElementIndex??0),this._lastFocusedElementIndex=t._getFocusedElementIndex()):(this._lastFocusedElementIndex=t._getFocusedElementIndex(),o.focus())}_getClosestListItem(e){return e.closest("[ui5-li], [ui5-li-custom]")}_moveItem(e,t){if(!e||!e.movable)return;const o=jp(this.items,e,t);if(!o.length)return;t.preventDefault();const i=o.find(({element:o,placement:i})=>!this.fireDecoratorEvent("move-over",{originalEvent:t,source:{element:e},destination:{element:o,placement:i}}));i&&(this.fireDecoratorEvent("move",{originalEvent:t,source:{element:e},destination:{element:i.element,placement:i.placement}}),e.focus())}_onLoadMoreKeydown(e){Cs(e)&&(e.preventDefault(),this._loadMoreActive=!0),fs(e)&&(this._onLoadMoreClick(),this._loadMoreActive=!0),Ls(e)&&this.focusAfterElement(),Ss(e)?this._handleLodeMoreUp(e):Ns(e)&&(this.getPreviouslyFocusedItem()?this.focusPreviouslyFocusedItem():this.focusFirstItem(),e.preventDefault())}_onLoadMoreKeyup(e){Cs(e)&&this._onLoadMoreClick(),this._loadMoreActive=!1}_onLoadMoreMousedown(){this._loadMoreActive=!0}_onLoadMoreMouseup(){this._loadMoreActive=!1}_onLoadMoreClick(){this.loadMore()}_handleLodeMoreUp(e){if(this.getGrowingButton()===e.target){const t=this.getItems(),o=t[t.length-1];this.focusItem(o),e.preventDefault(),e.stopImmediatePropagation()}}checkListInViewport(){this._inViewport=Xp(this.getDomRef())}loadMore(){this.hasGrowingComponent()&&this.fireDecoratorEvent("load-more")}_handleResize(){this.checkListInViewport();const e=this.getBoundingClientRect().width;this.mediaRange=dg.getCurrentRange(dg.RANGESETS.RANGE_4STEPS,e)}_handleTabNext(e){Gp(e.target)}_handleHome(){this.growsWithButton&&this.focusFirstItem()}_handleEnd(){this.growsWithButton&&this._shouldFocusGrowingButton()&&this.focusGrowingButton()}_handleDown(e){this._shouldFocusGrowingButton()&&(this.focusGrowingButton(),e.preventDefault())}_navigateToAdjacentItem(e,t){const o=e?._getFocusedElementIndex();if(void 0===o||-1===o)return!1;const i=this.getItems().filter(e=>"hasConfigurableMode"in e&&e.hasConfigurableMode&&e._hasFocusableElements()),r=i[i.indexOf(e)+t];if(!r)return!1;const a=r._focusInternalElement(o);return void 0!==a&&(this._lastFocusedElementIndex=a),!0}_onfocusin(e){const t=Gp(e.target);if(this.isForwardElement(t)){if(!this.getPreviouslyFocusedItem())return this.growsWithButton&&this.isForwardAfterElement(t)?this.focusGrowingButton():this.focusFirstItem(),void e.stopImmediatePropagation();if(!this.getForwardingFocus()){if(this.growsWithButton&&this.isForwardAfterElement(t))return this.focusGrowingButton(),void e.stopImmediatePropagation();this.focusPreviouslyFocusedItem()}e.stopImmediatePropagation(),this.setForwardingFocus(!1)}}_ondragenter(e){this._dragAndDropHandler.ondragenter(e)}_ondragleave(e){this._dragAndDropHandler.ondragleave(e)}_ondragover(e){this._dragAndDropHandler.ondragover(e)}_ondrop(e){this._dragAndDropHandler.ondrop(e)}isForwardElement(e){const t=e.id,o=this.getBeforeElement();return!!(this._id===t||o&&o.id===t)||this.isForwardAfterElement(e)}isForwardAfterElement(e){const t=e.id,o=this.getAfterElement();return o&&o.id===t}onItemTabIndexChange(e){e.stopPropagation();const t=e.target;this._itemNavigation.setCurrentItem(t)}onItemFocused(e){const t=e.target;if(e.stopPropagation(),this._itemNavigation.setCurrentItem(t),this.fireDecoratorEvent("item-focused",{item:t}),this.selectionMode===Qp.SingleAuto){const o={item:t,selectionComponentPressed:!1,selected:!0,key:e.detail.key};this.onSelectionRequested({detail:o})}}onItemPress(e){const t=e.detail.item;if(this.fireDecoratorEvent("item-click",{item:t})&&this.selectionMode!==Qp.Delete){const o={item:t,selectionComponentPressed:!1,selected:!t.selected,key:e.detail.key};this.onSelectionRequested({detail:o})}}onItemClose(e){const t=e.target;(t?.hasAttribute("ui5-li-notification")||t?.hasAttribute("ui5-li-notification-group"))&&this.fireDecoratorEvent("item-close",{item:e.detail?.item})}onItemToggle(e){e.target?.isListItemBase&&this.fireDecoratorEvent("item-toggle",{item:e.detail.item})}onForwardBefore(e){this.setPreviouslyFocusedItem(e.target),this.focusBeforeElement(),e.stopPropagation()}onForwardAfter(e){this.setPreviouslyFocusedItem(e.target),this.growsWithButton?(this.focusGrowingButton(),e.preventDefault()):this.focusAfterElement(),e.stopPropagation()}focusBeforeElement(){this.setForwardingFocus(!0),this.getBeforeElement().focus()}focusAfterElement(){this.setForwardingFocus(!0),this.getAfterElement().focus()}focusGrowingButton(){const e=this.getGrowingButton();e&&e.focus()}_shouldFocusGrowingButton(){if(!this.growsWithButton)return!1;const e=this.getItems().length-1,t=this._itemNavigation._currentIndex;return-1!==t&&t===e}getGrowingButton(){return this.shadowRoot.querySelector(`[id="${this._id}-growing-btn"]`)}focusFirstItem(){const e=this.getFirstItem(e=>e._focusable);e&&e.focus()}focusPreviouslyFocusedItem(){const e=this.getPreviouslyFocusedItem();e&&e.focus()}focusFirstSelectedItem(){const e=this.getFirstItem(e=>e.selected&&e._focusable);e&&e.focus()}focusItem(e){this._itemNavigation.setCurrentItem(e),e.focus()}onFocusRequested(e){setTimeout(()=>{this.setPreviouslyFocusedItem(e.target),this.focusPreviouslyFocusedItem()},0)}setForwardingFocus(e){this._forwardingFocus=e}getForwardingFocus(){return this._forwardingFocus}setPreviouslyFocusedItem(e){this._previouslyFocusedItem=e}getPreviouslyFocusedItem(){return this._previouslyFocusedItem}getFirstItem(e){const t=this.getItems();let o=null;if(!e)return t.length?t[0]:null;for(let i=0;i<t.length;i++)if(e(t[i])){o=t[i];break}return o}getAfterElement(){return this._afterElement||(this._afterElement=this.shadowRoot.querySelector(`[id="${this._id}-after"]`)),this._afterElement}getBeforeElement(){return this._beforeElement||(this._beforeElement=this.shadowRoot.querySelector(`[id="${this._id}-before"]`)),this._beforeElement}getEndIntersectionObserver(){return this._endIntersectionObserver||(this._endIntersectionObserver=new IntersectionObserver(this.onEndIntersection.bind(this),{root:null,rootMargin:"0px",threshold:1})),this._endIntersectionObserver}getStartIntersectionObserver(){return this._startIntersectionObserver||(this._startIntersectionObserver=new IntersectionObserver(this.onStartIntersection.bind(this),{root:null,rootMargin:"0px",threshold:1})),this._startIntersectionObserver}},_y([bn()],uy.prototype,"headerText",void 0),_y([bn()],uy.prototype,"footerText",void 0),_y([bn({type:Boolean})],uy.prototype,"indent",void 0),_y([bn()],uy.prototype,"selectionMode",void 0),_y([bn()],uy.prototype,"noDataText",void 0),_y([bn()],uy.prototype,"separators",void 0),_y([bn()],uy.prototype,"growing",void 0),_y([bn()],uy.prototype,"growingButtonText",void 0),_y([bn({type:Boolean})],uy.prototype,"loading",void 0),_y([bn({type:Number})],uy.prototype,"loadingDelay",void 0),_y([bn({type:Boolean})],uy.prototype,"stickyHeader",void 0),_y([bn()],uy.prototype,"accessibleName",void 0),_y([bn({type:Object})],uy.prototype,"accessibilityAttributes",void 0),_y([bn()],uy.prototype,"accessibleNameRef",void 0),_y([bn()],uy.prototype,"accessibleDescription",void 0),_y([bn()],uy.prototype,"accessibleDescriptionRef",void 0),_y([bn({noAttribute:!0})],uy.prototype,"_associatedDescriptionRefTexts",void 0),_y([bn({noAttribute:!0})],uy.prototype,"_associatedLabelsRefTexts",void 0),_y([bn()],uy.prototype,"accessibleRole",void 0),_y([bn({type:Boolean})],uy.prototype,"_inViewport",void 0),_y([bn({type:Boolean})],uy.prototype,"_loadMoreActive",void 0),_y([bn()],uy.prototype,"mediaRange",void 0),_y([Sn({type:HTMLElement,default:!0,invalidateOnChildChange:!0})],uy.prototype,"items",void 0),_y([Sn()],uy.prototype,"header",void 0),_y([Tn("@ui5/webcomponents")],uy,"i18nBundle",void 0),(uy=dy=_y([fn({tag:"ui5-list",fastNavigation:!0,renderer:ms,template:Eg,styles:[Fg]}),yn("item-click",{bubbles:!0,cancelable:!0}),yn("item-close",{bubbles:!0}),yn("item-toggle",{bubbles:!0}),yn("item-delete",{bubbles:!0}),yn("selection-change",{bubbles:!0,cancelable:!0}),yn("load-more",{bubbles:!0}),yn("item-focused",{bubbles:!0}),yn("move-over",{bubbles:!0,cancelable:!0}),yn("move",{bubbles:!0})],uy)).define(),hy=e=>"hasListItems"in e&&e.hasListItems,py=uy});fy(),sc();ql("edit",{pathData:"M15.821 2.571c.12.167.179.31.179.429 0 .143-.06.274-.179.393L4.214 15.036c-.095.095-.19.143-.285.143L0 16l.786-3.929a.44.44 0 0 1 .143-.321L12.57.143A.531.531 0 0 1 12.964 0a.53.53 0 0 1 .393.143l2.464 2.428ZM11.5 6.107 9.857 4.5l-8 7.964L3.5 14.107l8-8Zm3.107-3.143-1.643-1.571-2.285 2.286 1.607 1.607 2.321-2.322Z",ltr:!1,viewBox:"0 0 16 16",collection:"SAP-icons-v4",packageName:"@ui5/webcomponents-icons"}),sc();ql("edit",{pathData:"M11.621.515a1.75 1.75 0 0 1 2.48 0l1.383 1.388a1.752 1.752 0 0 1-.004 2.477L4.03 15.781A.751.751 0 0 1 3.5 16H.75a.75.75 0 0 1-.75-.75v-2.751a.75.75 0 0 1 .219-.53L11.62.515ZM1.808 12.498l1.691 1.692 7.936-7.9-1.743-1.712-7.884 7.92Zm11.23-10.924a.25.25 0 0 0-.354 0l-1.932 1.94 1.746 1.716 1.924-1.914a.25.25 0 0 0 0-.353l-1.384-1.389Z",ltr:!1,viewBox:"0 0 16 16",collection:"SAP-icons-v5",packageName:"@ui5/webcomponents-icons"}),Aa();var by;!function(e){e.None="None",e.Positive="Positive",e.Critical="Critical",e.Negative="Negative",e.Information="Information"}(by||(by={}));var yy,Cy=by;!function(e){e.Inactive="Inactive",e.Active="Active",e.Detail="Detail",e.Navigation="Navigation"}(yy||(yy={}));var wy=yy;Ca(),Ch(),wh(),St("@ui5/webcomponents-theming","sap_horizon",async()=>ch),St("@ui5/webcomponents","sap_horizon",async()=>_h,"host");Ca(),Ch(),wh(),St("@ui5/webcomponents-theming","sap_horizon",async()=>ch),St("@ui5/webcomponents","sap_horizon",async()=>_h,"host");var ky=".ui5-li-additional-text{margin:0 .25rem;color:var(--sapNeutralTextColor);font-size:var(--sapFontSize);min-width:3.75rem;text-align:end;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}\n";sc();ql("slim-arrow-right",{pathData:"M5.178 2.87c-.237-.228-.237-.466 0-.715A.445.445 0 0 1 5.505 2c.119 0 .228.052.327.155l4.9 5.13c.179.207.268.446.268.715 0 .27-.09.497-.267.684l-4.901 5.16A.46.46 0 0 1 5.49 14a.46.46 0 0 1-.341-.155.503.503 0 0 1 0-.716L9.9 8.155c.119-.103.119-.217 0-.342L5.178 2.87Z",ltr:!1,viewBox:"0 0 16 16",collection:"SAP-icons-v4",packageName:"@ui5/webcomponents-icons"}),sc();ql("slim-arrow-right",{pathData:"M6.273 3.17a.75.75 0 0 1 1.056.103l3.5 4.247a.75.75 0 0 1 0 .955l-3.5 4.252a.75.75 0 0 1-1.158-.954l3.107-3.775-3.107-3.771a.75.75 0 0 1 .102-1.056Z",ltr:!1,viewBox:"0 0 16 16",collection:"SAP-icons-v5",packageName:"@ui5/webcomponents-icons"}),Aa();wn(),tc(),ec(),mp(),Fv(),Jg(),kn(),xn(),Wn(),qn(),Um(),Rp(),yg(),tm(),yh();var xy,Sy=function(e,t,o,i){var r,a=arguments.length,n=a<3?t:null===i?i=Object.getOwnPropertyDescriptor(t,o):i;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)n=Reflect.decorate(e,t,o,i);else for(var s=e.length-1;s>=0;s--)(r=e[s])&&(n=(a<3?r(n):a>3?r(t,o,n):r(t,o))||n);return a>3&&n&&Object.defineProperty(t,o,n),n},Ty=xy=class extends qg{constructor(){super(),this.type="Active",this.accessibilityAttributes={},this.navigated=!1,this.active=!1,this.highlight="None",this.accessibleRole="ListItem",this._selectionMode="None",this.mediaRange="S",this.deactivateByKey=e=>{fs(e)&&this.deactivate()},this.deactivate=()=>{this.active&&(this.active=!1)}}onBeforeRendering(){super.onBeforeRendering(),this.actionable=(this.type===wy.Active||this.type===wy.Navigation)&&this._selectionMode!==Qp.Delete}onEnterDOM(){super.onEnterDOM(),document.addEventListener("mouseup",this.deactivate),document.addEventListener("touchend",this.deactivate),document.addEventListener("keyup",this.deactivateByKey)}onExitDOM(){document.removeEventListener("mouseup",this.deactivate),document.removeEventListener("keyup",this.deactivateByKey),document.removeEventListener("touchend",this.deactivate)}_onkeydown(e){const t=e.target!==this.getFocusDomRef();if((Cs(e)||fs(e))&&t)return;super._onkeydown(e);const o=this.type===wy.Active,i=this.typeNavigation;(Cs(e)||fs(e))&&(o||i)&&this.activate(),Xs(e)&&this._handleF2()}_onkeyup(e){super._onkeyup(e),(Cs(e)||fs(e))&&this.deactivate(),this.modeDelete&&Us(e)&&this.onDelete()}_onmousedown(){this.activate()}_onmouseup(){this.getFocusDomRef().matches(":has(:focus-within)")||this.deactivate()}_ontouchend(){this._onmouseup()}_onfocusin(e){super._onfocusin(e),e.target!==this.getFocusDomRef()&&this.deactivate()}_onfocusout(e){e.target===this.getFocusDomRef()&&this.deactivate()}_ondragstart(e){e.dataTransfer&&e.target===this._listItem&&(Ep.setDraggedElement(this,e),this.setAttribute("data-moving",""),e.dataTransfer.dropEffect="move",e.dataTransfer.effectAllowed="move")}_ondragend(e){e.target===this._listItem&&(Ep.clearDraggedElement(),this.removeAttribute("data-moving"))}onMultiSelectionComponentPress(e){this.isInactive||this.fireDecoratorEvent("selection-requested",{item:this,selected:e.target.checked,selectionComponentPressed:!0})}onSingleSelectionComponentPress(e){this.isInactive||this.fireDecoratorEvent("selection-requested",{item:this,selected:!e.target.checked,selectionComponentPressed:!0})}activate(){this.type!==wy.Active&&this.type!==wy.Navigation||(this.active=!0)}onDelete(){this.fireDecoratorEvent("selection-requested",{item:this,selectionComponentPressed:!1})}onDetailClick(){this.fireDecoratorEvent("detail-click",{item:this,selected:this.selected})}fireItemPress(e){this.isInactive||(super.fireItemPress(e),document.activeElement!==this&&this.focus())}get isInactive(){return this.type===wy.Inactive||this.type===wy.Detail}get placeSelectionElementBefore(){return this._selectionMode===Qp.Multiple||this._selectionMode===Qp.SingleStart}get placeSelectionElementAfter(){return!this.placeSelectionElementBefore&&(this._selectionMode===Qp.SingleEnd||this._selectionMode===Qp.Delete)}get modeSingleSelect(){return[Qp.SingleStart,Qp.SingleEnd,Qp.Single].includes(this._selectionMode)}get modeMultiple(){return this._selectionMode===Qp.Multiple}get modeDelete(){return this._selectionMode===Qp.Delete}get typeDetail(){return this.type===wy.Detail}get typeNavigation(){return this.type===wy.Navigation}get typeActive(){return this.type===wy.Active}get _ariaSelected(){if(this.modeMultiple||this.modeSingleSelect)return this.selected}get listItemAccessibleRole(){return this._forcedAccessibleRole||this.accessibleRole.toLowerCase()}get ariaSelectedText(){let e;return void 0!==this._ariaSelected&&(e=this._ariaSelected?xy.i18nBundle.getText(Ed):xy.i18nBundle.getText(zd)),e}get deleteText(){return xy.i18nBundle.getText(ld)}get hasDeleteButtonSlot(){return!!this.deleteButton.length}get _accessibleNameRef(){return this.accessibleName?`${this._id}-invisibleText`:`${this._id}-content ${this._id}-invisibleText`}get ariaLabelledByText(){return[this._accInfo.listItemAriaLabel,this.accessibleName,this.typeActive?xy.i18nBundle.getText(Pd):void 0].filter(Boolean).join(" ")}get _accInfo(){return{role:this.listItemAccessibleRole,ariaExpanded:void 0,ariaLevel:void 0,ariaLabel:xy.i18nBundle.getText(Ld),ariaLabelRadioButton:xy.i18nBundle.getText(Nd),ariaSelectedText:this.ariaSelectedText,ariaHaspopup:this.accessibilityAttributes.hasPopup,setsize:this.accessibilityAttributes.ariaSetsize,posinset:this.accessibilityAttributes.ariaPosinset,tooltip:this.tooltip}}get _hasHighlightColor(){return this.highlight!==Cy.None}get hasConfigurableMode(){return!0}get _listItem(){return this.shadowRoot.querySelector("li")}async _handleF2(){const e=this.getFocusDomRef(),t=op();this._getFocusableElements().length>0&&(t===e?(await yv(e))?.focus():e.focus())}_getFocusableElements(){return Lg(this.getFocusDomRef())}_getFocusedElementIndex(){const e=this._getFocusableElements(),t=op();return e.indexOf(t)}_hasFocusableElements(){return this._getFocusableElements().length>0}_isFocusOnInternalElement(){return-1!==this._getFocusableElements().indexOf(op())}_focusInternalElement(e){const t=this._getFocusableElements();if(!t.length)return;const o=Math.min(e,t.length-1);return t[o].focus(),o}};Sy([bn()],Ty.prototype,"type",void 0),Sy([bn({type:Object})],Ty.prototype,"accessibilityAttributes",void 0),Sy([bn({type:Boolean})],Ty.prototype,"navigated",void 0),Sy([bn()],Ty.prototype,"tooltip",void 0),Sy([bn({type:Boolean})],Ty.prototype,"active",void 0),Sy([bn()],Ty.prototype,"highlight",void 0),Sy([bn({type:Boolean})],Ty.prototype,"selected",void 0),Sy([bn()],Ty.prototype,"accessibleRole",void 0),Sy([bn()],Ty.prototype,"_forcedAccessibleRole",void 0),Sy([bn()],Ty.prototype,"_selectionMode",void 0),Sy([bn()],Ty.prototype,"mediaRange",void 0),Sy([Sn()],Ty.prototype,"deleteButton",void 0),Sy([Tn("@ui5/webcomponents")],Ty,"i18nBundle",void 0);var By=Ty=xy=Sy([fn({languageAware:!0,renderer:ms,styles:[qg.styles,ky,'.ui5-hidden-text{position:absolute;clip:rect(1px,1px,1px,1px);user-select:none;left:-1000px;top:-1000px;pointer-events:none;font-size:0}:host([navigated]) .ui5-li-root .ui5-li-navigated{width:.1875rem;position:absolute;right:0;top:0;bottom:0;background-color:var(--sapList_SelectionBorderColor)}:host([active][actionable]) .ui5-li-root .ui5-li-icon{color:var(--sapList_Active_TextColor)}:host([active][actionable]) .ui5-li-title,:host([active][actionable]) .ui5-li-desc,:host([active][actionable]) .ui5-li-additional-text{color:var(--sapList_Active_TextColor)}:host([active][actionable]) .ui5-li-additional-text{text-shadow:none}:host([additional-text-state="Critical"]) .ui5-li-additional-text{color:var(--sapCriticalTextColor)}:host([additional-text-state="Positive"]) .ui5-li-additional-text{color:var(--sapPositiveTextColor)}:host([additional-text-state="Negative"]) .ui5-li-additional-text{color:var(--sapNegativeTextColor)}:host([additional-text-state="Information"]) .ui5-li-additional-text{color:var(--sapInformativeTextColor)}:host([has-title][description]){height:5rem}:host([has-title][image]){height:5rem}:host([_has-image]){height:5rem}:host([image]) .ui5-li-content{height:3rem}::slotted(img[slot="image"]){width:var(--_ui5_list_item_img_size);height:var(--_ui5_list_item_img_size);border-radius:var(--ui5-avatar-border-radius);object-fit:contain}::slotted([ui5-icon][slot="image"]){color:var(--sapContent_NonInteractiveIconColor);min-width:var(--_ui5_list_item_icon_size);min-height:var(--_ui5_list_item_icon_size);padding-inline-end:var(--_ui5_list_item_icon_padding-inline-end)}::slotted([ui5-avatar][slot="image"]){min-width:var(--_ui5_list_item_img_size);min-height:var(--_ui5_list_item_img_size);margin-top:var(--_ui5_list_item_img_top_margin);margin-bottom:var(--_ui5_list_item_img_bottom_margin);margin-inline-end:var(--_ui5_list_item_img_hn_margin)}:host([wrapping-type="None"][description]) .ui5-li-root{padding:1rem}:host([description]) .ui5-li-content{height:3rem}:host([has-title][description]) .ui5-li-title{padding-bottom:.5rem}.ui5-li-text-wrapper{flex-direction:column}:host([description]) .ui5-li-text-wrapper{justify-content:space-between;padding:.125rem 0}.ui5-li-description-info-wrapper{display:flex;justify-content:space-between}.ui5-li-additional-text,:host(:not([wrapping-type="Normal"])) .ui5-li-title,.ui5-li-desc{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}:host([wrapping-type="Normal"]){height:auto}:host([wrapping-type="Normal"]) .ui5-li-content{margin:var(--_ui5_list_item_content_vertical_offset) 0}.ui5-li-desc{color:var(--sapContent_LabelColor);font-size:var(--sapFontSize)}:host([description]) .ui5-li-additional-text{align-self:flex-end}.ui5-li-icon{min-width:var(--_ui5_list_item_icon_size);min-height:var(--_ui5_list_item_icon_size);color:var(--sapContent_NonInteractiveIconColor);padding-inline-end:var(--_ui5_list_item_icon_padding-inline-end)}:host([icon-end]) .ui5-li-icon{padding-inline-start:var(--_ui5_list_item_icon_padding-inline-end)}.ui5-li-detailbtn,.ui5-li-deletebtn{display:flex;align-items:center;margin-left:var(--_ui5_list_buttons_left_space)}.ui5-li-multisel-cb,.ui5-li-singlesel-radiobtn{flex-shrink:0}:host([description]) .ui5-li-singlesel-radiobtn{align-self:flex-start;margin-top:var(--_ui5_list_item_selection_btn_margin_top)}:host([description]) .ui5-li-multisel-cb{align-self:flex-start;margin-top:var(--_ui5_list_item_selection_btn_margin_top)}:host([_selection-mode="SingleStart"][wrapping-type]) .ui5-li-root{padding-inline:0 1rem}:host([_selection-mode="Multiple"][wrapping-type]) .ui5-li-root{padding-inline:0 1rem}:host([_selection-mode="SingleEnd"][wrapping-type]) .ui5-li-root{padding-inline:1rem 0}:host [ui5-checkbox].ui5-li-singlesel-radiobtn{margin-right:var(--_ui5_list_item_cb_margin_right)}.ui5-li-highlight{position:absolute;width:.375rem;bottom:0;left:0;top:0;border-inline-end:.0625rem solid var(--ui5-listitem-background-color);box-sizing:border-box}:host([highlight="Negative"]) .ui5-li-highlight{background:var(--sapErrorBorderColor)}:host([highlight="Critical"]) .ui5-li-highlight{background:var(--sapWarningBorderColor)}:host([highlight="Positive"]) .ui5-li-highlight{background:var(--sapSuccessBorderColor)}:host([highlight="Information"]) .ui5-li-highlight{background:var(--sapInformationBorderColor)}:host([wrapping-type="Normal"][description]),:host([wrapping-type="Normal"][has-title][description]),:host([wrapping-type="Normal"][has-title][image]){height:auto;min-height:5rem}:host([wrapping-type="Normal"][description]) .ui5-li-content,:host([wrapping-type="Normal"][image]) .ui5-li-content{height:auto;min-height:3rem}:host([wrapping-type="Normal"][has-title][description]) .ui5-li-title{padding-bottom:.75rem}:host([wrapping-type="Normal"][additional-text]) .ui5-li-additional-text{padding-inline-start:.75rem}:host([wrapping-type="Normal"]) .ui5-li-description-info-wrapper{flex-direction:column}:host([wrapping-type="Normal"]) .ui5-li-description-info-wrapper .ui5-li-additional-text{white-space:normal}:host([wrapping-type="Normal"]) .ui5-li-multisel-cb,:host([wrapping-type="Normal"]) .ui5-li-singlesel-radiobtn{display:flex;align-self:flex-start}:host([wrapping-type="Normal"][description]) .ui5-li-multisel-cb,:host([wrapping-type="Normal"][description]) .ui5-li-singlesel-radiobtn{margin-top:0}:host([wrapping-type="Normal"]) .ui5-li-icon,:host([wrapping-type="Normal"]) .ui5-li-image{display:flex;align-self:flex-start}:host([wrapping-type="Normal"][icon-end]) .ui5-li-icon{margin-top:var(--_ui5_list_item_content_vertical_offset)}:host([wrapping-type="Normal"]) ::slotted([ui5-avatar][slot="image"]){margin-top:0;margin-bottom:0}:host([wrapping-type="Normal"]) .ui5-li-detailbtn,:host([wrapping-type="Normal"]) .ui5-li-deletebtn{margin-inline-start:.875rem}\n']}),yn("detail-click",{bubbles:!0}),yn("selection-requested",{bubbles:!0})],Ty);mp();var Iy=class{static hasGroup(e){return this.groups.has(e)}static getGroup(e){return this.groups.get(e)}static getCheckedRadioFromGroup(e){return this.checkedRadios.get(e)}static removeGroup(e){return this.checkedRadios.delete(e),this.groups.delete(e)}static addToGroup(e,t){this.hasGroup(t)?(this.enforceSingleSelection(e,t),this.getGroup(t)&&this.getGroup(t).push(e)):this.createGroup(e,t),this.updateTabOrder(t)}static removeFromGroup(e,t){const o=this.getGroup(t);if(!o)return;const i=this.getCheckedRadioFromGroup(t);o.forEach((t,o,i)=>{if(e._id===t._id)return i.splice(o,1)}),i===e&&this.checkedRadios.set(t,null),o.length||this.removeGroup(t),this.updateTabOrder(t)}static createGroup(e,t){e.checked&&this.checkedRadios.set(t,e),this.groups.set(t,[e])}static selectNextItem(e,t){const o=this.getGroup(t);if(!o)return;const i=o.length,r=o.indexOf(e);if(i<=1)return;const a=this._nextFocusable(r,o);a&&this.updateSelectionInGroup(a,t)}static updateFormValidity(e){const t=this.getGroup(e);if(!t)return;const o=t.some(e=>e.required),i=t.some(e=>e.checked);t.forEach(e=>{e._groupChecked=i,e._groupRequired=o})}static updateTabOrder(e){const t=this.getGroup(e);if(!t)return;const o=t.some(e=>e.checked);t.filter(e=>!e.disabled).forEach((e,t)=>{let i=op();i?.classList.contains("ui5-radio-root")&&(i=i.getRootNode(),i instanceof ShadowRoot&&(i=i.host)),o?i?.hasAttribute("ui5-radio-button")&&i.readonly?e._tabIndex=i===e&&e.readonly?0:-1:e._tabIndex=e.checked?0:-1:e._tabIndex=0===t?0:-1})}static selectPreviousItem(e,t){const o=this.getGroup(t);if(!o)return;const i=o.length,r=o.indexOf(e);if(i<=1)return;const a=this._previousFocusable(r,o);a&&this.updateSelectionInGroup(a,t)}static selectItem(e,t){this.updateSelectionInGroup(e,t),this.updateTabOrder(t),this.updateFormValidity(t)}static updateSelectionInGroup(e,t){const o=this.getCheckedRadioFromGroup(t);o&&!e.readonly&&(this._deselectRadio(o),this.checkedRadios.set(t,e)),e&&(e.focus(),e.readonly?setTimeout(()=>{this.updateTabOrder(t)},0):this._selectRadio(e))}static _deselectRadio(e){e&&(e.checked=!1)}static _selectRadio(e){e.checked=!0,e._checked=!0,e.fireDecoratorEvent("change")}static _nextFocusable(e,t){if(!t)return null;let o=null;if(e===t.length-1){if(t[0].disabled)return this._nextFocusable(1,t);o=t[0]}else{if(t[e+1].disabled)return this._nextFocusable(e+1,t);o=t[e+1]}return o}static _previousFocusable(e,t){const o=t.length;let i=null;if(0===e){if(t[o-1].disabled)return this._previousFocusable(o-1,t);i=t[o-1]}else{if(t[e-1].disabled)return this._previousFocusable(e-1,t);i=t[e-1]}return i}static enforceSingleSelection(e,t){const o=this.getCheckedRadioFromGroup(t);e.checked?o?e!==o&&(this._deselectRadio(o),this.checkedRadios.set(t,e)):this.checkedRadios.set(t,e):e===o&&this.checkedRadios.set(t,null),this.updateTabOrder(t),this.updateFormValidity(t)}static get groups(){return this._groups||(this._groups=new Map),this._groups}static get checkedRadios(){return this._checkedRadios||(this._checkedRadios=new Map),this._checkedRadios}};C_(),Pa(),zh(),Ca(),Ch(),wh(),St("@ui5/webcomponents-theming","sap_horizon",async()=>ch),St("@ui5/webcomponents","sap_horizon",async()=>_h,"host");Pa(),Cn(),kn(),wn(),ec(),xn(),qn(),Ev(),oc(),tc(),yh();var Dy,Ay,Py=function(e,t,o,i){var r,a=arguments.length,n=a<3?t:null===i?i=Object.getOwnPropertyDescriptor(t,o):i;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)n=Reflect.decorate(e,t,o,i);else for(var s=e.length-1;s>=0;s--)(r=e[s])&&(n=(a<3?r(n):a>3?r(t,o,n):r(t,o))||n);return a>3&&n&&Object.defineProperty(t,o,n),n},My=!1,Ey=Dy=class extends hn{get formValidityMessage(){return Dy.i18nBundle.getText(ih)}get formValidity(){return{valueMissing:this._groupRequired&&!this._groupChecked}}async formElementAnchor(){return this.getFocusDomRefAsync()}get formFormattedValue(){return this.checked?this.value||"on":null}constructor(){super(),this.disabled=!1,this.readonly=!1,this.required=!1,this.checked=!1,this.valueState="None",this.value="",this.wrappingType="Normal",this.active=!1,this._groupChecked=!1,this._groupRequired=!1,this._name="",this._checked=!1,this._deactivate=()=>{Ay&&(Ay.active=!1)},My||(document.addEventListener("mouseup",this._deactivate),My=!0)}onAfterRendering(){this.syncGroup()}onEnterDOM(){Po()&&this.setAttribute("desktop","")}onExitDOM(){this.syncGroup(!0)}syncGroup(e){const t=this._name,o=this.name,i=this._checked,r=this.checked;e&&Iy.removeFromGroup(this,t),o!==t?(t&&Iy.removeFromGroup(this,t),o&&Iy.addToGroup(this,o)):o&&this.isConnected&&Iy.enforceSingleSelection(this,o),this.name&&r!==i&&Iy.updateTabOrder(this.name),this._name=this.name||"",this._checked=this.checked}_onclick(){return this.toggle()}_handleDown(e){const t=this.name;t&&(e.preventDefault(),Iy.selectNextItem(this,t))}_handleUp(e){const t=this.name;t&&(e.preventDefault(),Iy.selectPreviousItem(this,t))}_onkeydown(e){if(Cs(e))return this.active=!0,e.preventDefault();if(fs(e))return this.active=!0,this.toggle();const t="rtl"===this.effectiveDir;(Ts(e)||!t&&xs(e)||t&&ks(e))&&this._handleDown(e),(Ss(e)||!t&&ks(e)||t&&xs(e))&&this._handleUp(e)}_onkeyup(e){Cs(e)&&this.toggle(),this.active=!1}_onmousedown(){this.active=!0,Ay=this}_onmouseup(){this.active=!1}_onfocusout(){this.active=!1}toggle(){return this.canToggle()?this.name?(Iy.selectItem(this,this.name),this):(this.checked=!this.checked,this.fireDecoratorEvent("change"),this):this}canToggle(){return!(this.disabled||this.readonly||this.checked)}get effectiveAriaDisabled(){return!(!this.disabled&&!this.readonly)||void 0}get ariaLabelText(){return[ml(this),this.text].filter(Boolean).join(" ")}get effectiveAriaDescribedBy(){return this.hasValueState?`${this._id}-descr`:void 0}get hasValueState(){return this.valueState!==pv.None}get valueStateText(){switch(this.valueState){case pv.Negative:return Dy.i18nBundle.getText(bu);case pv.Critical:return Dy.i18nBundle.getText(yu);case pv.Positive:return Dy.i18nBundle.getText(wu);case pv.Information:return Dy.i18nBundle.getText(Cu);default:return""}}get effectiveTabIndex(){const e=this.getAttribute("tabindex");return this.disabled?-1:this.name?this._tabIndex:e?parseInt(e):0}};Py([bn({type:Boolean})],Ey.prototype,"disabled",void 0),Py([bn({type:Boolean})],Ey.prototype,"readonly",void 0),Py([bn({type:Boolean})],Ey.prototype,"required",void 0),Py([bn({type:Boolean})],Ey.prototype,"checked",void 0),Py([bn()],Ey.prototype,"text",void 0),Py([bn()],Ey.prototype,"valueState",void 0),Py([bn()],Ey.prototype,"name",void 0),Py([bn()],Ey.prototype,"value",void 0),Py([bn()],Ey.prototype,"wrappingType",void 0),Py([bn()],Ey.prototype,"accessibleName",void 0),Py([bn()],Ey.prototype,"accessibleNameRef",void 0),Py([bn({type:Number})],Ey.prototype,"_tabIndex",void 0),Py([bn({type:Boolean})],Ey.prototype,"active",void 0),Py([bn({type:Boolean,noAttribute:!0})],Ey.prototype,"_groupChecked",void 0),Py([bn({type:Boolean,noAttribute:!0})],Ey.prototype,"_groupRequired",void 0),Py([Tn("@ui5/webcomponents")],Ey,"i18nBundle",void 0),(Ey=Dy=Py([fn({tag:"ui5-radio-button",languageAware:!0,formAssociated:!0,renderer:ms,template:function(){return y_("div",{role:"radio",class:"ui5-radio-root","aria-checked":this.checked,"aria-disabled":this.effectiveAriaDisabled,"aria-describedby":this.effectiveAriaDescribedBy,"aria-label":this.ariaLabelText,tabindex:this.effectiveTabIndex,onClick:this._onclick,onKeyDown:this._onkeydown,onKeyUp:this._onkeyup,onMouseDown:this._onmousedown,onMouseUp:this._onmouseup,onFocusOut:this._onfocusout,children:[y_("div",{class:{"ui5-radio-inner":!0,"ui5-radio-inner--hoverable":!this.disabled&&!this.readonly&&Po()},children:[y_("svg",{class:"ui5-radio-svg",focusable:"false","aria-hidden":"true",children:[b_("circle",{part:"outer-ring",class:"ui5-radio-svg-outer",cx:"50%",cy:"50%",r:"50%"}),b_("circle",{part:"inner-ring",class:"ui5-radio-svg-inner",cx:"50%",cy:"50%"})]}),b_("input",{type:"radio",required:this.required,checked:this.checked,readonly:this.readonly,disabled:this.disabled,name:this.name,"data-sap-no-tab-ref":!0})]}),this.text&&b_(Ph,{id:`${this._id}-label`,class:"ui5-radio-label",for:this._id,wrappingType:this.wrappingType,children:this.text}),this.hasValueState&&b_("span",{id:`${this._id}-descr`,class:"ui5-hidden-text",children:this.valueStateText})]})},styles:'.ui5-hidden-text{position:absolute;clip:rect(1px,1px,1px,1px);user-select:none;left:-1000px;top:-1000px;pointer-events:none;font-size:0}:host{vertical-align:middle}:host(:not([hidden])){display:inline-block}:host{min-width:var(--_ui5_radio_button_min_width);max-width:100%;text-overflow:ellipsis;overflow:hidden;color:var(--_ui5_radio_button_color);border-radius:var(--_ui5_radio_button_border_radius)}:host(:not([disabled])) .ui5-radio-root{cursor:pointer}:host([checked]){color:var(--_ui5_radio_button_checked_fill)}:host([checked]) .ui5-radio-svg-inner{fill:var(--_ui5_radio_button_inner_ring_color)}:host([checked]) .ui5-radio-svg-outer{stroke:var(--_ui5_radio_button_outer_ring_color)}:host([disabled]) .ui5-radio-root{color:var(--_ui5_radio_button_color);opacity:var(--sapContent_DisabledOpacity)}:host([disabled][checked]) .ui5-radio-svg-outer{stroke:var(--_ui5_radio_button_color)}:host(:not([disabled])[desktop]) .ui5-radio-root:focus:before,:host(:not([disabled])) .ui5-radio-root:focus-visible:before{content:"";display:var(--_ui5_radio_button_focus_outline);position:absolute;inset:var(--_ui5_radio_button_focus_dist);pointer-events:none;border:var(--_ui5_radio_button_border_width) var(--sapContent_FocusStyle) var(--sapContent_FocusColor);border-radius:var(--_ui5_radio_button_border_radius)}:host(:not([value-state="Negative"]):not([value-state="Critical"]):not([value-state="Positive"]):not([value-state="Information"])) .ui5-radio-root:hover .ui5-radio-inner--hoverable .ui5-radio-svg-outer{stroke:var(--_ui5_radio_button_outer_ring_hover_color)}:host(:not([value-state="Negative"]):not([value-state="Critical"]):not([value-state="Positive"]):not([value-state="Information"])[checked]) .ui5-radio-root:hover .ui5-radio-inner--hoverable .ui5-radio-svg-outer{stroke:var(--_ui5_radio_button_outer_ring_checked_hover_color)}.ui5-radio-root:hover .ui5-radio-inner--hoverable .ui5-radio-svg-outer,:host([checked]) .ui5-radio-root:hover .ui5-radio-inner--hoverable .ui5-radio-svg-outer{fill:var(--_ui5_radio_button_hover_fill)}:host([active][checked]:not([value-state]):not([disabled]):not([readonly])) .ui5-radio-svg-outer{stroke:var(--_ui5_radio_button_outer_ring_checked_hover_color)}:host([active]:not([checked]):not([value-state]):not([disabled]):not([readonly])) .ui5-radio-svg-outer{stroke:var(--_ui5_radio_button_outer_ring_active_color)}:host([text]) .ui5-radio-root{padding-inline-end:var(--_ui5_radio_button_border_width)}:host([text][desktop]) .ui5-radio-root:focus:before,:host([text]) .ui5-radio-root:focus-visible:before{inset-inline-end:0px}:host([text]) .ui5-radio-inner{padding:var(--_ui5_radio_button_outer_ring_padding_with_label)}:host([checked][readonly]) .ui5-radio-svg-inner{fill:var(--_ui5_radio_button_read_only_inner_ring_color)}:host([readonly]) .ui5-radio-root .ui5-radio-svg-outer{fill:var(--sapField_ReadOnly_Background);stroke:var(--sapField_ReadOnly_BorderColor);stroke-dasharray:var(--_ui5_radio_button_read_only_border_type);stroke-width:var(--_ui5_radio_button_read_only_border_width)}:host([value-state="Negative"]) .ui5-radio-svg-outer,:host([value-state="Critical"]) .ui5-radio-svg-outer{stroke-width:var(--sapField_InvalidBorderWidth)}:host([value-state="Information"]) .ui5-radio-svg-outer{stroke-width:var(--_ui5_radio_button_information_border_width)}:host([value-state="Negative"][checked]) .ui5-radio-svg-inner{fill:var(--_ui5_radio_button_checked_error_fill)}:host([value-state="Negative"]) .ui5-radio-svg-outer,:host([value-state="Negative"]) .ui5-radio-root:hover .ui5-radio-inner.ui5-radio-inner--hoverable:hover .ui5-radio-svg-outer{stroke:var(--sapField_InvalidColor);fill:var(--sapField_InvalidBackground)}:host([value-state="Negative"]) .ui5-radio-root:hover .ui5-radio-inner.ui5-radio-inner--hoverable .ui5-radio-svg-outer{fill:var(--_ui5_radio_button_hover_fill_error)}:host([value-state="Critical"][checked]) .ui5-radio-svg-inner{fill:var(--_ui5_radio_button_checked_warning_fill)}:host([value-state="Critical"]) .ui5-radio-svg-outer,:host([value-state="Critical"]) .ui5-radio-root:hover .ui5-radio-inner.ui5-radio-inner--hoverable:hover .ui5-radio-svg-outer{stroke:var(--sapField_WarningColor);fill:var(--sapField_WarningBackground)}:host([value-state="Critical"]) .ui5-radio-root:hover .ui5-radio-inner.ui5-radio-inner--hoverable .ui5-radio-svg-outer{fill:var(--_ui5_radio_button_hover_fill_warning)}:host([value-state="Positive"][checked]) .ui5-radio-svg-inner{fill:var(--_ui5_radio_button_checked_success_fill)}:host([value-state="Positive"]) .ui5-radio-svg-outer,:host([value-state="Positive"]) .ui5-radio-root:hover .ui5-radio-inner.ui5-radio-inner--hoverable:hover .ui5-radio-svg-outer{stroke:var(--sapField_SuccessColor);fill:var(--sapField_SuccessBackground)}:host([value-state="Positive"]) .ui5-radio-root:hover .ui5-radio-inner.ui5-radio-inner--hoverable .ui5-radio-svg-outer{fill:var(--_ui5_radio_button_hover_fill_success)}:host([value-state="Information"][checked]) .ui5-radio-svg-inner{fill:var(--_ui5_radio_button_checked_information_fill)}:host([value-state="Information"]) .ui5-radio-svg-outer,:host([value-state="Information"]) .ui5-radio-root:hover .ui5-radio-inner.ui5-radio-inner--hoverable:hover .ui5-radio-svg-outer{stroke:var(--sapField_InformationColor);fill:var(--sapField_InformationBackground)}:host([value-state="Information"]) .ui5-radio-root:hover .ui5-radio-inner.ui5-radio-inner--hoverable .ui5-radio-svg-outer{fill:var(--_ui5_radio_button_hover_fill_information)}:host([value-state="Negative"]) .ui5-radio-root,:host([value-state="Critical"]) .ui5-radio-root,:host([value-state="Information"]) .ui5-radio-root{stroke-dasharray:var(--_ui5_radio_button_warning_error_border_dash)}.ui5-radio-root{height:auto;position:relative;display:inline-flex;flex-wrap:nowrap;outline:none;max-width:100%;box-sizing:border-box;border:var(--_ui5_radio_button_border);border-radius:var(--_ui5_radio_button_border_radius)}.ui5-radio-inner{display:flex;align-items:center;padding:var(--_ui5_radio_button_outer_ring_padding);flex-shrink:0;height:var(--_ui5_radio_button_inner_size);font-size:1rem;pointer-events:none;vertical-align:top}.ui5-radio-inner{outline:none}.ui5-radio-inner input{-webkit-appearance:none;visibility:hidden;width:0;left:0;position:absolute;font-size:inherit;margin:0}[ui5-label].ui5-radio-label{display:flex;align-items:center;padding-inline-end:var(--_ui5_radio_button_label_offset);padding-block:var(--_ui5_radio_button_label_side_padding);vertical-align:top;max-width:100%;pointer-events:none;color:var(--_ui5_radio_button_label_color);overflow-wrap:break-word}:host([wrapping-type="None"][text]) .ui5-radio-root{height:var(--_ui5_radio_button_height)}:host([wrapping-type="None"][text]) [ui5-label].ui5-radio-label{text-overflow:ellipsis;overflow:hidden}.ui5-radio-svg{height:var(--_ui5_radio_button_svg_size);width:var(--_ui5_radio_button_svg_size);overflow:visible;pointer-events:none}.ui5-radio-svg-outer{fill:var(--_ui5_radio_button_outer_ring_bg);stroke:currentColor;stroke-width:var(--_ui5_radio_button_outer_ring_width)}.ui5-radio-svg-inner{fill:none;r:var(--_ui5_radio_button_inner_ring_radius)}.ui5-radio-svg-outer,.ui5-radio-svg-inner{flex-shrink:0}:host(.ui5-li-singlesel-radiobtn) .ui5-radio-root .ui5-radio-inner .ui5-radio-svg-outer{fill:var(--sapList_Background)}\n'}),yn("change",{bubbles:!0})],Ey)).define();var zy=Ey;Ca(),Ch(),wh(),St("@ui5/webcomponents-theming","sap_horizon",async()=>ch),St("@ui5/webcomponents","sap_horizon",async()=>_h,"host");sc();ql("accept",{pathData:"M14.827 2.942c.192.187.224.385.096.593l-7.11 10.18a.48.48 0 0 1-.383.28.524.524 0 0 1-.449-.156L2.146 8.625C2.039 8.52 1.99 8.406 2 8.28a.54.54 0 0 1 .177-.343l.8-.78c.256-.25.502-.25.737 0l3.074 2.997c.107.104.246.15.416.14.171-.01.3-.098.385-.265l5.604-7.775a.482.482 0 0 1 .368-.25.55.55 0 0 1 .432.125l.833.812Z",ltr:!0,viewBox:"0 0 16 16",collection:"SAP-icons-v4",packageName:"@ui5/webcomponents-icons"}),sc();ql("accept",{pathData:"M12.688 3.254a.75.75 0 0 1 1.124.992l-7.5 8.5A.75.75 0 0 1 5.15 12.7l-3-4a.75.75 0 0 1 1.2-.9l2.447 3.263 6.89-7.81Z",ltr:!0,viewBox:"0 0 16 16",collection:"SAP-icons-v5",packageName:"@ui5/webcomponents-icons"}),Aa();sc();ql("complete",{pathData:"M12.998 10.002h1V14a.946.946 0 0 1-.297.719.987.987 0 0 1-.703.281H1a.973.973 0 0 1-.719-.281A.973.973 0 0 1 0 14V2.005c0-.271.094-.506.281-.703A.947.947 0 0 1 1 1.005h4v1H1V14h11.998v-3.998ZM14.872.786c.146.146.167.313.063.5l-5.78 8.497a.39.39 0 0 1-.313.219.42.42 0 0 1-.375-.125L4.562 5.535c-.188-.188-.188-.375 0-.563l.656-.656c.208-.208.406-.208.593 0l2.5 2.5a.4.4 0 0 0 .36.124c.135-.02.234-.104.296-.25L13.53.224a.38.38 0 0 1 .297-.219.4.4 0 0 1 .359.125l.687.656Z",ltr:!0,viewBox:"0 0 16 16",collection:"SAP-icons-v4",packageName:"@ui5/webcomponents-icons"}),sc();ql("complete",{pathData:"M10.25 1a.75.75 0 0 1 0 1.5h-6.5c-.69 0-1.25.56-1.25 1.25v8.5c0 .69.56 1.25 1.25 1.25h8.5c.69 0 1.25-.56 1.25-1.25V6.754a.75.75 0 0 1 1.5 0v5.496A2.75 2.75 0 0 1 12.25 15h-8.5A2.75 2.75 0 0 1 1 12.25v-8.5A2.75 2.75 0 0 1 3.75 1h6.5Zm4.435-.741a.75.75 0 0 1 1.127.99L8.704 9.335a.95.95 0 0 1-1.385.045L4.97 7.03a.75.75 0 1 1 1.06-1.06l1.934 1.933L14.684.26Z",ltr:!0,viewBox:"0 0 16 16",collection:"SAP-icons-v5",packageName:"@ui5/webcomponents-icons"}),Aa();sc();ql("border",{pathData:"M14 1c.27 0 .505.094.703.281A.947.947 0 0 1 15 2v12a.947.947 0 0 1-.297.719A.988.988 0 0 1 14 15H2a.973.973 0 0 1-.719-.281A.974.974 0 0 1 1 14V2c0-.292.094-.531.281-.719A.973.973 0 0 1 2 1h12Zm0 1H2v12h12V2Z",ltr:!1,viewBox:"0 0 16 16",collection:"SAP-icons-v4",packageName:"@ui5/webcomponents-icons"}),sc();ql("border",{pathData:"M12.25 1A2.75 2.75 0 0 1 15 3.75v8.5A2.75 2.75 0 0 1 12.25 15h-8.5A2.75 2.75 0 0 1 1 12.25v-8.5A2.75 2.75 0 0 1 3.75 1h8.5Zm-8.5 1.5c-.69 0-1.25.56-1.25 1.25v8.5c0 .69.56 1.25 1.25 1.25h8.5c.69 0 1.25-.56 1.25-1.25v-8.5c0-.69-.56-1.25-1.25-1.25h-8.5Z",ltr:!1,viewBox:"0 0 16 16",collection:"SAP-icons-v5",packageName:"@ui5/webcomponents-icons"}),Aa();sc();ql("tri-state",{pathData:"M14 1c.27 0 .505.099.703.297A.961.961 0 0 1 15 2v12a.947.947 0 0 1-.297.719A.988.988 0 0 1 14 15H2a.973.973 0 0 1-.719-.281A.974.974 0 0 1 1 14V2c0-.27.094-.505.281-.703A.947.947 0 0 1 2 1h12Zm0 1H2v12h12V2Zm-9 8.781v-5.5c0-.166.083-.25.25-.25h5.5c.167 0 .25.084.25.25v5.5c0 .167-.083.25-.25.25h-5.5c-.167 0-.25-.083-.25-.25Z",ltr:!1,viewBox:"0 0 16 16",collection:"SAP-icons-v4",packageName:"@ui5/webcomponents-icons"}),sc();ql("tri-state",{pathData:"M12.25 1A2.75 2.75 0 0 1 15 3.75v8.5A2.75 2.75 0 0 1 12.25 15h-8.5A2.75 2.75 0 0 1 1 12.25v-8.5A2.75 2.75 0 0 1 3.75 1h8.5Zm-8.5 1.5c-.69 0-1.25.56-1.25 1.25v8.5c0 .69.56 1.25 1.25 1.25h8.5c.69 0 1.25-.56 1.25-1.25v-8.5c0-.69-.56-1.25-1.25-1.25h-8.5ZM9.25 5c.966 0 1.75.784 1.75 1.75v2.5A1.75 1.75 0 0 1 9.25 11h-2.5A1.75 1.75 0 0 1 5 9.25v-2.5C5 5.784 5.784 5 6.75 5h2.5Z",ltr:!1,viewBox:"0 0 16 16",collection:"SAP-icons-v5",packageName:"@ui5/webcomponents-icons"}),Aa();function Fy(){return this.isCompletelyChecked?"complete":this.checked&&this.indeterminate?"tri-state":"border"}C_(),Pa(),zh(),xh(),Pa(),Cn(),wn(),kn(),xn(),ec(),qn(),Ev(),oc(),tc(),yh();var Ry,Oy,Ly=function(e,t,o,i){var r,a=arguments.length,n=a<3?t:null===i?i=Object.getOwnPropertyDescriptor(t,o):i;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)n=Reflect.decorate(e,t,o,i);else for(var s=e.length-1;s>=0;s--)(r=e[s])&&(n=(a<3?r(n):a>3?r(t,o,n):r(t,o))||n);return a>3&&n&&Object.defineProperty(t,o,n),n},Ny=!1,Hy=Ry=class extends hn{get formValidityMessage(){return Ry.i18nBundle.getText(th)}get formValidity(){return{valueMissing:this.required&&!this.checked}}async formElementAnchor(){return this.getFocusDomRefAsync()}get formFormattedValue(){return this.checked?this.value:null}constructor(){super(),this.disabled=!1,this.readonly=!1,this.displayOnly=!1,this.required=!1,this.indeterminate=!1,this.checked=!1,this.valueState="None",this.wrappingType="Normal",this.value="on",this.active=!1,this._deactivate=()=>{Oy&&(Oy.active=!1)},Ny||(document.addEventListener("mouseup",this._deactivate),Ny=!0)}onEnterDOM(){Po()&&this.setAttribute("desktop","")}_onclick(){this.toggle()}_onmousedown(){this.readonly||this.disabled||(this.active=!0,Oy=this)}_onmouseup(){this.active=!1}_onfocusout(){this.active=!1}_onkeydown(e){Cs(e)&&e.preventDefault(),this.readonly||this.disabled||(fs(e)&&this.toggle(),this.active=!0)}_onkeyup(e){Cs(e)&&this.toggle(),this.active=!1}toggle(){if(this.canToggle()){const e={checked:this.checked,indeterminate:this.indeterminate};this.indeterminate?(this.indeterminate=!1,this.checked=!0):this.checked=!this.checked;const t=!this.fireDecoratorEvent("change"),o=!this.fireDecoratorEvent("value-changed");(t||o)&&(this.checked=e.checked,this.indeterminate=e.indeterminate)}return this}canToggle(){return!(this.disabled||this.readonly||this.displayOnly)}valueStateTextMappings(){return{Negative:Ry.i18nBundle.getText(bu),Critical:Ry.i18nBundle.getText(yu),Positive:Ry.i18nBundle.getText(wu)}}get ariaLabelText(){return ml(this)||Cl(this)}get classes(){return{main:{"ui5-checkbox--hoverable":!this.disabled&&!this.readonly&&Po()}}}get ariaReadonly(){return this.readonly||this.displayOnly?"true":void 0}get effectiveAriaDisabled(){return this.disabled?"true":void 0}get effectiveAriaChecked(){return this.indeterminate&&this.checked?"mixed":this.checked}get ariaLabelledBy(){if(!this.ariaLabelText)return this.text?`${this._id}-label`:void 0}get ariaDescribedBy(){return this.hasValueState?`${this._id}-descr`:void 0}get hasValueState(){return this.valueState!==pv.None}get valueStateText(){if(this.valueState!==pv.None&&this.valueState!==pv.Information)return this.valueStateTextMappings()[this.valueState]}get effectiveTabIndex(){const e=this.getAttribute("tabindex");if(this.tabbable)return e?parseInt(e):0}get tabbable(){return!this.disabled&&!this.displayOnly}get isCompletelyChecked(){return this.checked&&!this.indeterminate}get isDisplayOnly(){return this.displayOnly&&!this.disabled}get accessibilityInfo(){const e=this.checked?Ry.i18nBundle.getText(rh):Ry.i18nBundle.getText(ah),t=[this.text||"",e].filter(Boolean).join(" ");return{role:this.accInfo.role,type:Ry.i18nBundle.getText(nh),description:t,label:this.ariaLabelText,disabled:!!this.accInfo.ariaDisabled,readonly:!!this.accInfo.ariaReadonly,required:this.accInfo.ariaRequired}}get accInfo(){return{role:this._accInfo?this._accInfo.role:"checkbox",ariaChecked:this._accInfo?this._accInfo.ariaChecked:this.effectiveAriaChecked,ariaReadonly:this._accInfo?this._accInfo.ariaReadonly:this.ariaReadonly,ariaDisabled:this._accInfo?this._accInfo.ariaDisabled:this.effectiveAriaDisabled,ariaRequired:this._accInfo?this._accInfo.ariaRequired:this.required,tabindex:this._accInfo?this._accInfo.tabindex:this.effectiveTabIndex}}};Ly([bn()],Hy.prototype,"accessibleNameRef",void 0),Ly([bn()],Hy.prototype,"accessibleName",void 0),Ly([bn({type:Boolean})],Hy.prototype,"disabled",void 0),Ly([bn({type:Boolean})],Hy.prototype,"readonly",void 0),Ly([bn({type:Boolean})],Hy.prototype,"displayOnly",void 0),Ly([bn({type:Boolean})],Hy.prototype,"required",void 0),Ly([bn({type:Boolean})],Hy.prototype,"indeterminate",void 0),Ly([bn({type:Boolean})],Hy.prototype,"checked",void 0),Ly([bn()],Hy.prototype,"text",void 0),Ly([bn()],Hy.prototype,"valueState",void 0),Ly([bn()],Hy.prototype,"wrappingType",void 0),Ly([bn()],Hy.prototype,"name",void 0),Ly([bn()],Hy.prototype,"value",void 0),Ly([bn({type:Boolean})],Hy.prototype,"active",void 0),Ly([bn({type:Object})],Hy.prototype,"_accInfo",void 0),Ly([Tn("@ui5/webcomponents")],Hy,"i18nBundle",void 0),(Hy=Ry=Ly([fn({tag:"ui5-checkbox",languageAware:!0,formAssociated:!0,renderer:ms,template:function(){return y_("div",{class:{"ui5-checkbox-root":!0,"ui5-checkbox--hoverable":!this.disabled&&!this.readonly&&Po()},role:this.accInfo.role,part:"root","aria-checked":this.accInfo.ariaChecked,"aria-readonly":this.accInfo.ariaReadonly,"aria-disabled":this.accInfo.ariaDisabled,"aria-label":this.ariaLabelText,"aria-labelledby":this.ariaLabelledBy,"aria-describedby":this.ariaDescribedBy,"aria-required":this.accInfo.ariaRequired,tabindex:this.accInfo.tabindex,onMouseDown:this._onmousedown,onMouseUp:this._onmouseup,onKeyDown:this._onkeydown,onKeyUp:this._onkeyup,onClick:this._onclick,onFocusOut:this._onfocusout,children:[this.isDisplayOnly?b_("div",{class:"ui5-checkbox-display-only-icon-inner",children:b_(gh,{"aria-hidden":"true",name:Fy.call(this),class:"ui5-checkbox-display-only-icon",part:"icon"})}):b_("div",{id:`${this._id}-CbBg`,class:"ui5-checkbox-inner",children:this.isCompletelyChecked&&b_(gh,{"aria-hidden":"true",name:"accept",class:"ui5-checkbox-icon",part:"icon"})}),"checkbox"===this.accInfo.role&&b_("input",{id:`${this._id}-CB`,type:"checkbox",checked:this.checked,value:this.value,readonly:this.readonly,disabled:this.disabled,tabindex:-1,"aria-hidden":"true","data-sap-no-tab-ref":!0}),this.text&&b_(Ph,{id:`${this._id}-label`,part:"label",class:"ui5-checkbox-label",wrappingType:this.wrappingType,required:this.required,children:this.text}),this.hasValueState&&b_("span",{id:`${this._id}-descr`,class:"ui5-hidden-text",children:this.valueStateText})]})},styles:'.ui5-hidden-text{position:absolute;clip:rect(1px,1px,1px,1px);user-select:none;left:-1000px;top:-1000px;pointer-events:none;font-size:0}:host{-webkit-tap-highlight-color:rgba(0,0,0,0)}:host{vertical-align:middle}:host(:not([hidden])){display:inline-block}:host([required]){vertical-align:middle}:host{overflow:hidden;max-width:100%;outline:none;border-radius:var(--_ui5_checkbox_border_radius);transition:var(--_ui5_checkbox_transition);cursor:pointer;user-select:none;-moz-user-select:none;-webkit-user-select:none;-ms-user-select:none}:host([disabled]){cursor:default}:host([disabled]) .ui5-checkbox-root{opacity:var(--_ui5_checkbox_disabled_opacity)}:host([disabled]) .ui5-checkbox-inner{border-color:var(--_ui5_checkbox_inner_disabled_border_color)}:host([disabled]) .ui5-checkbox-label{color:var(--_ui5_checkbox_disabled_label_color)}:host([readonly]:not([value-state="Critical"]):not([value-state="Negative"])) .ui5-checkbox-inner{background:var(--sapField_ReadOnly_Background);border:var(--_ui5_checkbox_inner_readonly_border);color:var(--sapField_TextColor)}:host(:not([wrapping-type="None"])[text]) .ui5-checkbox-root{min-height:auto;box-sizing:border-box;align-items:flex-start;padding-top:var(--_ui5_checkbox_root_side_padding);padding-bottom:var(--_ui5_checkbox_root_side_padding)}:host(:not([wrapping-type="None"])[text]) .ui5-checkbox-root .ui5-checkbox-label{overflow-wrap:break-word;align-self:center}:host([desktop][text]:not([wrapping-type="None"])) .ui5-checkbox-root:focus:before,.ui5-checkbox-root[text]:focus-visible:before{inset-block:var(--_ui5_checkbox_wrapped_focus_inset_block)}:host([value-state="Negative"]) .ui5-checkbox-inner,:host([value-state="Negative"]) .ui5-checkbox--hoverable:hover .ui5-checkbox-inner{background:var(--sapField_InvalidBackground);border:var(--_ui5_checkbox_inner_error_border);color:var(--sapField_InvalidColor)}:host([value-state="Negative"]) .ui5-checkbox--hoverable:hover .ui5-checkbox-inner{background:var(--_ui5_checkbox_inner_error_background_hover)}:host([value-state="Critical"]) .ui5-checkbox-inner,:host([value-state="Critical"]) .ui5-checkbox--hoverable:hover .ui5-checkbox-inner{background:var(--sapField_WarningBackground);border:var(--_ui5_checkbox_inner_warning_border);color:var(--_ui5_checkbox_inner_warning_color)}:host([value-state="Critical"]) .ui5-checkbox--hoverable:hover .ui5-checkbox-inner{background:var(--_ui5_checkbox_inner_warning_background_hover)}:host([value-state="Information"]) .ui5-checkbox-inner,:host([value-state="Information"]) .ui5-checkbox--hoverable:hover .ui5-checkbox-inner{background:var(--sapField_InformationBackground);border:var(--_ui5_checkbox_inner_information_border);color:var(--_ui5_checkbox_inner_information_color)}:host([value-state="Information"]) .ui5-checkbox--hoverable:hover .ui5-checkbox-inner{background:var(--_ui5_checkbox_inner_information_background_hover)}:host([value-state="Positive"]) .ui5-checkbox-inner,:host([value-state="Positive"]) .ui5-checkbox--hoverable:hover .ui5-checkbox-inner{background:var(--sapField_SuccessBackground);border:var(--_ui5_checkbox_inner_success_border);color:var(--sapField_SuccessColor)}:host([value-state="Positive"]) .ui5-checkbox--hoverable:hover .ui5-checkbox-inner{background:var(--_ui5_checkbox_inner_success_background_hover)}:host([value-state="Critical"]) .ui5-checkbox-icon,:host([value-state="Critical"][indeterminate]) .ui5-checkbox-inner:after{color:var(--_ui5_checkbox_checkmark_warning_color)}.ui5-checkbox-root{position:relative;display:inline-flex;align-items:center;max-width:100%;min-height:var(--_ui5_checkbox_width_height);min-width:var(--_ui5_checkbox_width_height);padding:0 var(--_ui5_checkbox_wrapper_padding);outline:none;transition:var(--_ui5_checkbox_transition);border:var(--_ui5_checkbox_default_focus_border);border-radius:var(--_ui5_checkbox_border_radius);box-sizing:border-box}:host([desktop]) .ui5-checkbox-root:focus:before,.ui5-checkbox-root:focus-visible:before{display:var(--_ui5_checkbox_focus_outline_display);content:"";position:absolute;inset-inline:var(--_ui5_checkbox_focus_position);inset-block:var(--_ui5_checkbox_focus_position);border:var(--_ui5_checkbox_focus_outline);border-radius:var(--_ui5_checkbox_focus_border_radius)}:host([text]) .ui5-checkbox-root{padding-inline-end:var(--_ui5_checkbox_right_focus_distance)}:host([text]) .ui5-checkbox-root:focus:before,:host([text]) .ui5-checkbox-root:focus-visible:before{inset-inline-end:0}:host(:hover:not([disabled])){background:var(--_ui5_checkbox_outer_hover_background)}.ui5-checkbox--hoverable .ui5-checkbox-label:hover{color:var(--_ui5_checkbox_label_color)}:host(:not([active]):not([checked]):not([value-state])) .ui5-checkbox--hoverable:hover .ui5-checkbox-inner,:host(:not([active]):not([checked])[value-state="None"]) .ui5-checkbox--hoverable:hover .ui5-checkbox-inner{background:var(--_ui5_checkbox_hover_background);border-color:var(--_ui5_checkbox_inner_hover_border_color)}:host(:not([active])[checked]:not([value-state])) .ui5-checkbox--hoverable:hover .ui5-checkbox-inner,:host(:not([active])[checked][value-state="None"]) .ui5-checkbox--hoverable:hover .ui5-checkbox-inner{background:var(--_ui5_checkbox_hover_background);border-color:var(--_ui5_checkbox_inner_hover_checked_border_color)}:host([checked]:not([value-state])) .ui5-checkbox-inner,:host([checked][value-state="None"]) .ui5-checkbox-inner{border-color:var(--_ui5_checkbox_inner_selected_border_color)}:host([active]:not([checked]):not([value-state]):not([disabled])) .ui5-checkbox-inner,:host([active]:not([checked])[value-state="None"]:not([disabled])) .ui5-checkbox-inner{border-color:var(--_ui5_checkbox_inner_active_border_color);background-color:var(--_ui5_checkbox_active_background)}:host([active][checked]:not([value-state]):not([disabled])) .ui5-checkbox-inner,:host([active][checked][value-state="None"]:not([disabled])) .ui5-checkbox-inner{border-color:var(--_ui5_checkbox_inner_selected_border_color);background-color:var(--_ui5_checkbox_active_background)}.ui5-checkbox-inner{min-width:var(--_ui5_checkbox_inner_width_height);max-width:var(--_ui5_checkbox_inner_width_height);height:var(--_ui5_checkbox_inner_width_height);max-height:var(--_ui5_checkbox_inner_width_height);border:var(--_ui5_checkbox_inner_border);border-radius:var(--_ui5_checkbox_inner_border_radius);background:var(--_ui5_checkbox_inner_background);color:var(--_ui5_checkbox_checkmark_color);box-sizing:border-box;position:relative;cursor:inherit}:host([indeterminate][checked]) .ui5-checkbox-inner:after{content:"";background-color:currentColor;position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);width:var(--_ui5_checkbox_partially_icon_size);height:var(--_ui5_checkbox_partially_icon_size)}:host input{-webkit-appearance:none;visibility:hidden;width:0;left:0;position:absolute;font-size:inherit}.ui5-checkbox-root .ui5-checkbox-label{margin-inline-start:var(--_ui5_checkbox_label_offset);cursor:inherit;text-overflow:ellipsis;overflow:hidden;pointer-events:none;color:var(--_ui5_checkbox_label_color)}.ui5-checkbox-icon{width:var(--_ui5_checkbox_icon_size);height:var(--_ui5_checkbox_icon_size);color:currentColor;cursor:inherit;position:absolute;left:50%;top:50%;transform:translate(-50%,-50%)}:host([display-only]){cursor:default}:host([display-only]) .ui5-checkbox-display-only-icon-inner [ui5-icon]{color:var(--sapTextColor)}:host([display-only]) .ui5-checkbox-display-only-icon-inner{min-width:var(--_ui5_checkbox_inner_width_height);max-width:var(--_ui5_checkbox_inner_width_height);height:var(--_ui5_checkbox_inner_width_height);max-height:var(--_ui5_checkbox_inner_width_height);display:flex;align-items:center;justify-content:center}\n'}),yn("change",{bubbles:!0,cancelable:!0}),yn("value-changed",{bubbles:!0,cancelable:!0})],Hy)).define();var Uy=Hy;C_(),gp(),xh(),Um();var Vy={listItemPreContent:function(){},listItemContent:function(){},imageBegin:function(){},iconBegin:function(){},iconEnd:function(){},selectionElement:qy};function Wy(e){const t={...Vy,...e};return y_("li",{part:"native-li","data-sap-focus-ref":!0,tabindex:this._effectiveTabIndex,class:this.classes.main,onFocusIn:this._onfocusin,onFocusOut:this._onfocusout,onKeyUp:this._onkeyup,onKeyDown:this._onkeydown,onMouseUp:this._onmouseup,onMouseDown:this._onmousedown,onTouchStart:this._onmousedown,onTouchEnd:this._ontouchend,onClick:this._onclick,draggable:this.movable,onDragStart:this._ondragstart,onDragEnd:this._ondragend,role:this._accInfo.role,title:this._accInfo.tooltip,"aria-expanded":this._accInfo.ariaExpanded,"aria-level":this._accInfo.ariaLevel,"aria-haspopup":this._accInfo.ariaHaspopup,"aria-posinset":this._accInfo.posinset,"aria-setsize":this._accInfo.setsize,"aria-describedby":`${this._id}-invisibleText-describedby`,"aria-labelledby":this._accessibleNameRef,"aria-disabled":this._ariaDisabled,"aria-selected":this._accInfo.ariaSelected,"aria-checked":this._accInfo.ariaChecked,"aria-owns":this._accInfo.ariaOwns,"aria-keyshortcuts":this._accInfo.ariaKeyShortcuts,children:[t.listItemPreContent.call(this),this.placeSelectionElementBefore&&qy.call(this),this._hasHighlightColor&&b_("div",{class:"ui5-li-highlight"}),y_("div",{part:"content",id:`${this._id}-content`,class:"ui5-li-content",children:[t.imageBegin.call(this),t.iconBegin.call(this),t.listItemContent.call(this)]}),t.iconEnd.call(this),this.typeDetail&&b_("div",{class:"ui5-li-detailbtn",children:b_(tp,{part:"detail-button",design:"Transparent",onClick:this.onDetailClick,icon:"edit"})}),this.typeNavigation&&b_(gh,{name:"slim-arrow-right"}),this.navigated&&b_("div",{class:"ui5-li-navigated"}),this.placeSelectionElementAfter&&t.selectionElement.call(this),b_("span",{id:`${this._id}-invisibleText`,class:"ui5-hidden-text",children:this.ariaLabelledByText}),b_("span",{id:`${this._id}-invisibleText-describedby`,class:"ui5-hidden-text",children:this._accInfo.ariaSelectedText})]})}function qy(){switch(!0){case this.modeSingleSelect:return b_(zy,{part:"radio",disabled:this.isInactive,accessibleName:this._accInfo.ariaLabelRadioButton,tabindex:-1,id:`${this._id}-singleSelectionElement`,class:"ui5-li-singlesel-radiobtn",checked:this.selected,onChange:this.onSingleSelectionComponentPress});case this.modeMultiple:return b_(Uy,{part:"checkbox",disabled:this.isInactive,indeterminate:this.indeterminate,tabindex:-1,id:`${this._id}-multiSelectionElement`,class:"ui5-li-multisel-cb",checked:this.selected,accessibleName:this._accInfo.ariaLabel,onChange:this.onMultiSelectionComponentPress});case this.modeDelete:return b_("div",{class:"ui5-li-deletebtn",children:this.hasDeleteButtonSlot?b_("slot",{name:"deleteButton"}):b_(tp,{part:"delete-button",tabindex:-1,"data-sap-no-tab-ref":!0,id:`${this._id}-deleteSelectionElement`,design:"Transparent",icon:zm,onClick:this.onDelete,tooltip:this.deleteText})})}}C_(),xh(),om();var jy={imageBegin:function(){if(this.hasImage)return b_("div",{class:"ui5-li-image",children:b_("slot",{name:"image"})})},iconBegin:function(){if(this.displayIconBegin)return b_(gh,{part:"icon",name:this.icon,class:"ui5-li-icon",mode:"Decorative"})},iconEnd:function(){if(this.displayIconEnd)return b_(gh,{part:"icon",name:this.icon,class:"ui5-li-icon",mode:"Decorative"})},listItemContent:function(){return y_(f_,{children:[y_("div",{class:"ui5-li-text-wrapper",children:[Yy.call(this),$y.call(this),!this.typeActive&&b_("span",{class:"ui5-hidden-text",children:this.type})]}),!this.description&&Gy.call(this)]})}};function Yy(){return this.wrappingType===Yg.Normal?this.expandableTextTemplate?.call(this,{className:"ui5-li-title",text:this._textContent,maxCharacters:this._maxCharacters,part:"title"}):b_("span",{part:"title",class:"ui5-li-title",children:this.text?this.text:b_("slot",{})})}function $y(){return this.description?this.wrappingType===Yg.Normal?y_("div",{class:"ui5-li-description-info-wrapper",children:[this.expandableTextTemplate?.call(this,{className:"ui5-li-desc",text:this.description,maxCharacters:this._maxCharacters,part:"description"}),Gy.call(this)]}):y_("div",{class:"ui5-li-description-info-wrapper",children:[b_("span",{part:"description",class:"ui5-li-desc",children:this.description}),Gy.call(this)]}):null}function Gy(){return this.additionalText?b_("span",{part:"additional-text",class:"ui5-li-additional-text",children:this.additionalText}):null}wn(),ec(),kn(),Wn();var Ky,Zy=function(e,t,o,i){var r,a=arguments.length,n=a<3?t:null===i?i=Object.getOwnPropertyDescriptor(t,o):i;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)n=Reflect.decorate(e,t,o,i);else for(var s=e.length-1;s>=0;s--)(r=e[s])&&(n=(a<3?r(n):a>3?r(t,o,n):r(t,o))||n);return a>3&&n&&Object.defineProperty(t,o,n),n},Xy=Ky=class extends By{constructor(){super(...arguments),this.iconEnd=!1,this.additionalTextState="None",this.movable=!1,this.wrappingType="None",this.hasTitle=!1,this._hasImage=!1}onBeforeRendering(){super.onBeforeRendering(),this.hasTitle=!(!this.text&&!this.textContent),this._hasImage=this.hasImage,"Normal"===this.wrappingType&&(Ky.ExpandableTextTemplate?this.expandableTextTemplate=Ky.ExpandableTextTemplate:Promise.resolve().then(()=>(oy(),Zb)).then(e=>{this.expandableTextTemplate=e.default}))}get _textContent(){return this.text||this.textContent||""}get _maxCharacters(){return"S"===this.mediaRange?100:300}get displayIconBegin(){return!(!this.icon||this.iconEnd)}get displayIconEnd(){return!(!this.icon||!this.iconEnd)}get hasImage(){return!!this.image.length}};Zy([bn()],Xy.prototype,"text",void 0),Zy([bn()],Xy.prototype,"description",void 0),Zy([bn()],Xy.prototype,"icon",void 0),Zy([bn({type:Boolean})],Xy.prototype,"iconEnd",void 0),Zy([bn()],Xy.prototype,"additionalText",void 0),Zy([bn()],Xy.prototype,"additionalTextState",void 0),Zy([bn({type:Boolean})],Xy.prototype,"movable",void 0),Zy([bn()],Xy.prototype,"accessibleName",void 0),Zy([bn()],Xy.prototype,"wrappingType",void 0),Zy([bn({type:Boolean})],Xy.prototype,"hasTitle",void 0),Zy([bn({type:Boolean})],Xy.prototype,"_hasImage",void 0),Zy([bn({noAttribute:!0})],Xy.prototype,"expandableTextTemplate",void 0),Zy([Sn({type:Node,default:!0})],Xy.prototype,"content",void 0),Zy([Sn()],Xy.prototype,"image",void 0),(Xy=Ky=Zy([fn({tag:"ui5-li",renderer:ms,template:function(e){const t={...jy,...e};return Wy.call(this,t)}})],Xy)).define();var Jy=Xy;function Qy(){const e=Ao()?this._mobilePopoverItems:this._overflowItemsData;return y_(Ib,{class:"ui5-breadcrumbs-popover",hideArrow:!0,_hideHeader:!0,contentOnlyOnDesktop:!0,placement:"Bottom",horizontalAlign:"Start",accessibleName:this._accessibleNamePopover,onKeyDown:this._onkeydown,children:[b_(py,{selectionMode:"Single",separators:"None",onSelectionChange:this._onOverflowListItemSelect,children:e.map(e=>b_(Jy,{id:`${e._id}-li`,accessibleName:e.accessibleName,"data-ui5-stable":e.stableDomRef,children:e.textContent}))}),b_("div",{slot:"footer",class:"ui5-breadcrumbs-popover-footer",children:b_(tp,{design:"Transparent",onClick:this._closeRespPopover,children:this._cancelButtonText})})]})}C_(),Pa(),gp(),Hb(),sc();ql("slim-arrow-down",{pathData:"M13.13 5.178c.227-.237.466-.237.715 0a.445.445 0 0 1 .155.327.445.445 0 0 1-.155.327l-5.13 4.9A1.065 1.065 0 0 1 8 11a.953.953 0 0 1-.684-.267l-5.16-4.901A.46.46 0 0 1 2 5.49a.46.46 0 0 1 .155-.341.503.503 0 0 1 .715 0L7.845 9.9c.103.119.217.119.342 0l4.943-4.723Z",ltr:!1,viewBox:"0 0 16 16",collection:"SAP-icons-v4",packageName:"@ui5/webcomponents-icons"}),sc();ql("slim-arrow-down",{pathData:"M12.83 6.273a.75.75 0 0 1-.104 1.056l-4.247 3.5a.75.75 0 0 1-.954 0l-4.252-3.5a.75.75 0 0 1 .954-1.158l3.775 3.107 3.771-3.107a.75.75 0 0 1 1.056.102Z",ltr:!1,viewBox:"0 0 16 16",collection:"SAP-icons-v5",packageName:"@ui5/webcomponents-icons"}),Aa();C_(),xh(),Om(),zh(),Ca(),Ch(),wh(),St("@ui5/webcomponents-theming","sap_horizon",async()=>ch),St("@ui5/webcomponents","sap_horizon",async()=>_h,"host");Ca(),Ch(),wh(),St("@ui5/webcomponents-theming","sap_horizon",async()=>ch),St("@ui5/webcomponents","sap_horizon",async()=>_h,"host");Cn(),wn(),kn(),Wn(),xn(),qn(),bp(),ca(),ec(),ba(),tc(),yp(),vp(),yh();var eC,tC=function(e,t,o,i){var r,a=arguments.length,n=a<3?t:null===i?i=Object.getOwnPropertyDescriptor(t,o):i;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)n=Reflect.decorate(e,t,o,i);else for(var s=e.length-1;s>=0;s--)(r=e[s])&&(n=(a<3?r(n):a>3?r(t,o,n):r(t,o))||n);return a>3&&n&&Object.defineProperty(t,o,n),n},oC=eC=class extends hn{constructor(){super(),this.design="Standard",this.separators="Slash",this._overflowSize=0,this._breadcrumbItemWidths=new WeakMap,this._dropdownArrowLinkWidth=0,this._itemNavigation=new ap(this,{navigationMode:ip.Auto,getItemsCallback:()=>this._getFocusableItems()}),this._onResizeHandler=this._updateOverflow.bind(this),this._labelFocusAdaptor={id:`${this._id}-labelWrapper`,getlabelWrapper:this.getCurrentLocationLabelWrapper.bind(this),set forcedTabIndex(e){const t=this.getlabelWrapper();t&&t.setAttribute("tabindex",e)},get forcedTabIndex(){return this.getlabelWrapper()?.getAttribute("tabindex")||""}}}onInvalidation(e){if("childchange"===e.reason){const t=this._getItems().indexOf(e.child);t<this._overflowSize&&(this._overflowSize=t)}}_getItems(){return this.getSlottedNodes("items")}onBeforeRendering(){this._preprocessItems()}async onAfterRendering(){await ht(),this._cacheWidths(),this._updateOverflow()}onEnterDOM(){dp.register(this,this._onResizeHandler)}onExitDOM(){dp.deregister(this,this._onResizeHandler)}_initItemNavigation(){this._itemNavigation||(this._itemNavigation=new ap(this,{navigationMode:ip.Auto,getItemsCallback:()=>this._getFocusableItems()}))}_getFocusableItems(){const e=this._links;return this._isOverflowEmpty||e.unshift(this._dropdownArrowLink),this._endsWithCurrentLocation&&!this._endsWithCurrentLinkItem&&e.push(this._labelFocusAdaptor),e}getFocusDomRef(){return this._itemNavigation._getCurrentItem()}get _accessibleNamePopover(){return eC.i18nBundle.getText(R_)}_onfocusin(e){const t=e.target,o=t===this.getCurrentLocationLabelWrapper()?this._labelFocusAdaptor:t;this._itemNavigation.setCurrentItem(o)}_onkeydown(e){const t=this._isDropdownArrowFocused;if(Zs(e)&&t&&!this._isOverflowEmpty)return e.preventDefault(),void this._toggleRespPopover();!Cs(e)||!t||this._isOverflowEmpty||this._isPickerOpen?(fs(e)||Cs(e))&&this._isCurrentLocationLabelFocused&&this._onLabelPress(e):e.preventDefault()}_onkeyup(e){this._isDropdownArrowFocused&&Cs(e)&&!this._isOverflowEmpty&&!this._isPickerOpen&&this._openRespPopover()}_cacheWidths(){const e=this._breadcrumbItemWidths,t=this._getItems(),o=this._currentLocationLabel;for(let i=this._overflowSize;i<t.length;i++){const o=t[i],r=this.shadowRoot.querySelector(`#${o._id}-link-wrapper`);e.set(o,this._getElementWidth(r))}if(t.length&&this._endsWithCurrentLocation&&o){const i=t[t.length-1];e.set(i,this._getElementWidth(o))}if(!this._isOverflowEmpty){const e=this.shadowRoot.querySelector(".ui5-breadcrumbs-dropdown-arrow-link-wrapper");this._dropdownArrowLinkWidth=this._getElementWidth(e)}}_updateOverflow(){const e=this._getItems(),t=this.shadowRoot.querySelector(".ui5-breadcrumbs-root").offsetWidth;let o=this._getTotalContentWidth(),i=0;for(o>t&&(o+=this._dropdownArrowLinkWidth);o>=t&&i<this._maxAllowedOverflowSize;){const t=e[i];let r=0;this._isItemVisible(t)&&(r=this._breadcrumbItemWidths.get(t)||0),o-=r,i++}this._overflowSize=i,this._isOverflowEmpty&&this._isPickerOpen&&(this.responsivePopover.open=!1);const r=this._getFocusableItems();r.some(e=>"0"===e.forcedTabIndex)||this._itemNavigation.setCurrentItem(r[0])}_getElementWidth(e){return e?Math.ceil(e.getBoundingClientRect().width):0}_getTotalContentWidth(){const e=this._getItems(),t=this._breadcrumbItemWidths;return e.reduce((e,o)=>e+t.get(o),0)}_onLinkPress(e){const t=e.target,o=this._getItems().find(e=>`${e._id}-link`===t.id),{altKey:i,ctrlKey:r,metaKey:a,shiftKey:n}=e.detail;o.fireDecoratorEvent("click",{altKey:i,ctrlKey:r,metaKey:a,shiftKey:n})&&this.fireDecoratorEvent("item-click",{item:o,altKey:i,ctrlKey:r,metaKey:a,shiftKey:n})||e.preventDefault()}_onLabelPress(e){const t=this._getItems(),o=t[t.length-1],{altKey:i,ctrlKey:r,metaKey:a,shiftKey:n}=e;o.fireDecoratorEvent("click",{altKey:i,ctrlKey:r,metaKey:a,shiftKey:n})&&this.fireDecoratorEvent("item-click",{item:o,altKey:i,ctrlKey:r,metaKey:a,shiftKey:n})}_onOverflowListItemSelect(e){const t=e.detail.selectedItems[0],o=this._getItems().find(e=>`${e._id}-li`===t.id);o.fireDecoratorEvent("click",{altKey:!1,ctrlKey:!1,metaKey:!1,shiftKey:!1})&&this.fireDecoratorEvent("item-click",{item:o})&&(be(o.href,o.target||"_self","noopener,noreferrer"),this.responsivePopover.open=!1)}_respPopover(){return this.shadowRoot.querySelector("[ui5-responsive-popover]")}_toggleRespPopover(){this.responsivePopover=this._respPopover(),this._isPickerOpen?this._closeRespPopover():this._openRespPopover()}_closeRespPopover(){this.responsivePopover&&(this.responsivePopover.open=!1)}_openRespPopover(){this.responsivePopover=this._respPopover(),this.responsivePopover.opener=this._dropdownArrowLink,this.responsivePopover.open=!0}_isItemVisible(e){return!e.hidden&&this._hasVisibleContent(e)}_hasVisibleContent(e){return e.innerText||Array.from(e.children).some(e=>!e.hidden)}_preprocessItems(){this.items.forEach(e=>{e._getRealDomRef=()=>this.getDomRef().querySelector(`[data-ui5-stable*=${e.stableDomRef}]`)})}_getItemPositionText(e,t){return eC.i18nBundle.getText(M_,e,t)}_getItemAccessibleName(e,t,o){const i=this._getItemPositionText(t,o),r=e.textContent||"";let a="";return a=e.accessibleName?`${r.trim()} ${e.accessibleName} ${i}`:`${r.trim()} ${i}`,a}getCurrentLocationLabelWrapper(){return this.shadowRoot.querySelector(".ui5-breadcrumbs-current-location > span")}get _visibleItems(){return this._getItems().slice(this._overflowSize).filter(e=>this._isItemVisible(e))}get _endsWithCurrentLinkItem(){const e=this._getItems();return e.length&&e[e.length-1].href}get _endsWithCurrentLocation(){return this.design===kp.Standard}get _currentLocationText(){const e=this._getItems();if(this._endsWithCurrentLocation&&e.length){const t=e[e.length-1];if(this._isItemVisible(t))return t.innerText}return""}get _currentLocationLabel(){return this.shadowRoot.querySelector(".ui5-breadcrumbs-current-location [ui5-label]")}get _isDropdownArrowFocused(){return"0"===this._dropdownArrowLink.forcedTabIndex}get _isCurrentLocationLabelFocused(){const e=this.getCurrentLocationLabelWrapper();return e&&0===e.tabIndex}get _maxAllowedOverflowSize(){return this._getItems().filter(e=>this._isItemVisible(e)).length-1}get _dropdownArrowLink(){return this.shadowRoot.querySelector(".ui5-breadcrumbs-dropdown-arrow-link-wrapper [ui5-link]")}get _overflowItemsData(){return this._getItems().slice(0,this._overflowSize).filter(e=>this._isItemVisible(e)).reverse()}get _mobilePopoverItems(){return this._getItems().filter(e=>this._isItemVisible(e)).reverse()}get _linksData(){const e=this._visibleItems,t=e.length;return this._endsWithCurrentLocation&&!this._endsWithCurrentLinkItem&&e.pop(),e.map((e,o)=>(e._accessibleNameText=this._getItemAccessibleName(e,o+1,t),e._isCurrentPageItem=o===t-1&&this._endsWithCurrentLocation,e._needsSeparator=!e._isCurrentPageItem,e))}get _currentLocationAccName(){const e=this._visibleItems,t=this._getItemPositionText(e.length,e.length),o=e[e.length-1];if(!o)return t;const i=o.textContent||"";return o.accessibleName?`${i.trim()} ${o.accessibleName} ${t}`:`${i.trim()} ${t}`}get _links(){return Array.from(this.shadowRoot.querySelectorAll(".ui5-breadcrumbs-link-wrapper [ui5-link]"))}get _isOverflowEmpty(){return 0===this._overflowItemsData.length}get linkAccessibilityAttributes(){return{hasPopup:this._isOverflowEmpty?void 0:"listbox"}}get _isPickerOpen(){return!!this.responsivePopover&&this.responsivePopover.open}get _accessibleNameText(){return eC.i18nBundle.getText(E_)}get _dropdownArrowAccessibleNameText(){return eC.i18nBundle.getText(z_)}get _cancelButtonText(){return eC.i18nBundle.getText(F_)}get hasOverflow(){return!0}};tC([bn()],oC.prototype,"design",void 0),tC([bn()],oC.prototype,"separators",void 0),tC([bn({type:Number,noAttribute:!0})],oC.prototype,"_overflowSize",void 0),tC([Sn({type:HTMLElement,invalidateOnChildChange:!0,default:!0})],oC.prototype,"items",void 0),tC([Tn("@ui5/webcomponents")],oC,"i18nBundle",void 0),(oC=eC=tC([fn({tag:"ui5-breadcrumbs",languageAware:!0,renderer:ms,template:function(){return y_(f_,{children:[b_("nav",{class:"ui5-breadcrumbs-root","aria-label":this._accessibleNameText,children:y_("ol",{onFocusIn:this._onfocusin,onKeyDown:this._onkeydown,onKeyUp:this._onkeyup,children:[b_("li",{class:"ui5-breadcrumbs-dropdown-arrow-link-wrapper",hidden:this._isOverflowEmpty,children:b_(Pm,{wrappingType:"None",accessibleRole:"Button",accessibleName:this._dropdownArrowAccessibleNameText,accessibilityAttributes:this.linkAccessibilityAttributes,onClick:this._openRespPopover,children:b_(gh,{name:"slim-arrow-down",title:this._dropdownArrowAccessibleNameText})})}),this._linksData.map(e=>y_("li",{id:`${e._id}-link-wrapper`,class:"ui5-breadcrumbs-link-wrapper",children:[b_(Pm,{id:`${e._id}-link`,href:e.href,target:e.target,design:e._linkDesign,accessibleName:e._accessibleNameText,accessibilityAttributes:e.accessibilityAttributes,"data-ui5-stable":e.stableDomRef,wrappingType:"None",onClick:this._onLinkPress,children:e.innerText}),e._needsSeparator&&b_("span",{class:"ui5-breadcrumbs-separator","aria-hidden":"true"})]})),!this._endsWithCurrentLinkItem&&this._endsWithCurrentLocation&&b_("li",{class:"ui5-breadcrumbs-current-location",onClick:this._onLabelPress,children:b_("span",{id:`${this._id}-labelWrapper`,"aria-current":"page","aria-label":this._currentLocationAccName,children:b_(Ph,{wrappingType:"None",children:this._currentLocationText})})})]})}),Qy.call(this)]})},styles:[':host(:not([hidden])){display:block;width:100%}.ui5-breadcrumbs-root{white-space:nowrap;outline:none;margin:var(--_ui5_breadcrumbs_margin)}.ui5-breadcrumbs-root>ol{margin:0;padding:0;list-style-type:none;display:-webkit-box;display:-webkit-flex;display:flex}.ui5-breadcrumbs-root>ol>li{display:inline}.ui5-breadcrumbs-current-location{flex:1 1 auto;font-size:0;align-self:center}.ui5-breadcrumbs-current-location [ui5-label]{color:var(--_ui5_breadcrumbs_current_location_color)}.ui5-breadcrumbs-current-location,.ui5-breadcrumbs-link-wrapper:last-child{min-width:1%}.ui5-breadcrumbs-current-location>span:focus{outline:var(--sapContent_FocusWidth) var(--sapContent_FocusStyle) var(--sapContent_FocusColor);border-radius:var(--_ui5_breadcrumbs_current_location_focus_border_radius)}.ui5-breadcrumbs-dropdown-arrow-link-wrapper[hidden]{display:none}.ui5-breadcrumbs-dropdown-arrow-link-wrapper [ui5-icon]{width:var(--sapFontSize);height:var(--sapFontSize);padding-left:.675rem;vertical-align:middle;color:var(--sapLinkColor)}.ui5-breadcrumbs-dropdown-arrow-link-wrapper:focus-within [ui5-link] [ui5-icon]{color:var(--_ui5_link_focus_color)}.ui5-breadcrumbs-dropdown-arrow-link-wrapper [ui5-icon]:before{content:"...";position:absolute;left:0;top:.1rem;line-height:1rem;vertical-align:middle}.ui5-breadcrumbs-dropdown-arrow-link-wrapper [ui5-link]::part(root),.ui5-breadcrumbs-link-wrapper [ui5-link]::part(root){padding-top:.25rem;padding-bottom:.25rem}.ui5-breadcrumbs-dropdown-arrow-link-wrapper [ui5-link][focused] [ui5-icon]:after,.ui5-breadcrumbs-dropdown-arrow-link-wrapper:hover [ui5-icon]:after{content:"";position:absolute;height:.0725rem;background-color:currentColor;left:0;right:0;bottom:.3475rem}.ui5-breadcrumbs-popover{margin-top:.25rem}.ui5-breadcrumbs-popover-footer{display:flex;justify-content:flex-end;width:100%}.ui5-breadcrumbs-separator:after{content:"/";padding:0 .25rem;cursor:auto;color:var(--_ui5_breadcrumbs_separator_color);display:inline-block;font-family:var(--sapFontFamily);font-size:var(--sapFontSize)}:host([separators="DoubleSlash"]) .ui5-breadcrumbs-separator:after{content:"//"}:host([separators="BackSlash"]) .ui5-breadcrumbs-separator:after{content:"\\\\\\\\"}:host([separators="DoubleBackSlash"]) .ui5-breadcrumbs-separator:after{content:"\\\\\\\\\\\\\\\\"}:host([separators="GreaterThan"]) .ui5-breadcrumbs-separator:after{content:">"}:host([separators="DoubleGreaterThan"]) .ui5-breadcrumbs-separator:after{content:">>"}\n',".ui5-breadcrumbs-popover::part(content){padding:0}.ui5-breadcrumbs-popover-footer{display:flex;justify-content:flex-end;width:100%;padding-right:.5rem;align-items:center}\n"]}),yn("item-click",{bubbles:!0,cancelable:!0})],oC)).define();var iC=function(e,t){if(!e){var o="function"==typeof t?t():t;console.assert(e,o)}},rC={set(){}},aC=console;aC.warning=console.warn;var nC=function(e){iC(Array.isArray(e),"uniqueSort: input parameter must be an Array");var t=e.length;if(t>1){e.sort();for(var o=0,i=1;i<t;i++)e.indexOf(e[i])===i&&(e[++o]=e[i]);++o<t&&e.splice(o,t-o)}return e};function sC(e){return"function"==typeof e}var lC=function(e,t){if(iC("string"==typeof e&&e,"Metadata: sClassName must be a non-empty string"),iC("object"==typeof t,"Metadata: oClassInfo must be empty or an object"),t&&"object"==typeof t.metadata||((t={metadata:t||{},constructor:rC.get(e)}).metadata.__version=1),t.metadata??={},t.metadata.__version=t.metadata.__version||2,!sC(t.constructor))throw Error("constructor for class "+e+" must have been declared before creating metadata for it");this._sClassName=e,this._oClass=t.constructor,this.extend(t)};lC.prototype.extend=function(e){this.applySettings(e),this.afterApplySettings()},lC.prototype.applySettings=function(e){var t,o=e.metadata;if(o.baseType){var i,r=sC(o.baseType);if(r&&!sC((i=o.baseType).getMetadata))throw new TypeError("baseType must be a UI5 class with a static getMetadata function");r||sC(i=rC.get(o.baseType))||aC.fatal("base class '"+o.baseType+"' does not exist"),i.getMetadata?(this._oParent=i.getMetadata(),iC(i===i.getMetadata().getClass(),"Metadata: oParentClass must match the class in the parent metadata")):this._oParent=new lC(o.baseType,{})}else this._oParent=void 0;for(var a in this._bAbstract=!!o.abstract,this._bFinal=!!o.final,this._sStereotype=o.stereotype||(this._oParent?this._oParent._sStereotype:"object"),this._bDeprecated=!!o.deprecated,this._aInterfaces=o.interfaces||[],this._aPublicMethods=o.publicMethods||[],this._bInterfacesUnique=!1,t=this._oClass.prototype,e)"metadata"!==a&&"constructor"!==a&&(t[a]=e[a],a.match(/^_|^on|^init$|^exit$/)||this._aPublicMethods.push(a))},lC.prototype.afterApplySettings=function(){this._oParent?(this._aAllPublicMethods=this._oParent._aAllPublicMethods.concat(this._aPublicMethods),this._bInterfacesUnique=!1):this._aAllPublicMethods=this._aPublicMethods},lC.prototype.getStereotype=function(){return this._sStereotype},lC.prototype.getName=function(){return this._sClassName},lC.prototype.getClass=function(){return this._oClass},lC.prototype.getParent=function(){return this._oParent},lC.prototype._dedupInterfaces=function(){this._bInterfacesUnique||(nC(this._aInterfaces),nC(this._aPublicMethods),nC(this._aAllPublicMethods),this._bInterfacesUnique=!0)},lC.prototype.getPublicMethods=function(){return this._dedupInterfaces(),this._aPublicMethods},lC.prototype.getAllPublicMethods=function(){return this._dedupInterfaces(),this._aAllPublicMethods},lC.prototype.getInterfaces=function(){return this._dedupInterfaces(),this._aInterfaces},lC.prototype.isInstanceOf=function(e){if(this._oParent&&this._oParent.isInstanceOf(e))return!0;for(var t=this._aInterfaces,o=0,i=t.length;o<i;o++)if(t[o]===e)return!0;return!1},Object.defineProperty(lC.prototype,"_mImplementedTypes",{get:function(){if(this===lC.prototype)throw new Error("sap.ui.base.Metadata: The '_mImplementedTypes' property must not be accessed on the prototype");var e=Object.create(this._oParent?this._oParent._mImplementedTypes:null);e[this._sClassName]=!0;for(var t=this._aInterfaces,o=t.length;o-- >0;)e[t[o]]||(e[t[o]]=!0);return Object.defineProperty(this,"_mImplementedTypes",{value:Object.freeze(e),writable:!1,configurable:!1}),e},configurable:!0}),lC.prototype.isA=function(e){var t=this._mImplementedTypes;if(Array.isArray(e)){for(var o=0;o<e.length;o++)if(e[o]in t)return!0;return!1}return e in t},lC.prototype.isAbstract=function(){return this._bAbstract},lC.prototype.isFinal=function(){return this._bFinal},lC.prototype.isDeprecated=function(){return this._bDeprecated},lC.prototype.addPublicMethods=function(e){var t=e instanceof Array?e:arguments;Array.prototype.push.apply(this._aPublicMethods,t),Array.prototype.push.apply(this._aAllPublicMethods,t),this._bInterfacesUnique=!1},lC.prototype.getStaticProperty=function(e){let t=this;for(;t&&!(e in t.getClass());)t=t.getParent();return(t?.getClass())?.[e]},lC.createClass=function(e,t,o,i){"string"==typeof e&&(i=o,o=t,t=e,e=null),iC(!e||sC(e)),iC("string"==typeof t&&!!t),iC(!o||"object"==typeof o),iC(!i||sC(i)),sC((i=i||lC).preprocessClassInfo)&&(o=i.preprocessClassInfo(o)),(o=o||{}).metadata=o.metadata||{},o.hasOwnProperty("constructor")||(o.constructor=void 0);var r=o.constructor;iC(!r||sC(r)),e?(r||(r=o.metadata.deprecated?function(){aC.warning("Usage of deprecated class: "+t),e.apply(this,arguments)}:function(){e.apply(this,arguments)}),r.prototype=Object.create(e.prototype),r.prototype.constructor=r,o.metadata.baseType=e):(r=r||function(){},delete o.metadata.baseType),o.constructor=r,rC.set(t,r);var a=new i(t,o);return r.getMetadata=r.prototype.getMetadata=function(){return a},r.getMetadata().isFinal()||(r.extend=function(e,t,o){return lC.createClass(r,e,t,o||i)}),r};var cC,_C=lC.createClass("sap.ui.base.Object",{constructor:function(){if(!(this instanceof _C))throw Error('Cannot instantiate object: "new" is missing!')}});_C.prototype.destroy=function(){},_C.prototype.getInterface=function(){var e=new _C._Interface(this,this.getMetadata().getAllPublicMethods());return this.getInterface=function(){return e},e},_C.defineClass=function(e,t,o){var i=new(o||lC)(e,t),r=i.getClass();return r.getMetadata=r.prototype.getMetadata=function(){return i},i.isFinal()||(r.extend=function(e,t,i){return lC.createClass(r,e,t,i||o)}),aC.debug("defined class '"+e+"'"+(i.getParent()?" as subclass of "+i.getParent().getName():"")),i},_C.prototype.isA=function(e){return this.getMetadata().isA(e)},_C.isA=function(e,t){return e instanceof _C&&e.isA(t)},_C.isObjectA=function(e,t){return e instanceof _C&&e.isA(t)},_C._Interface=function(e,t,o){if(!e)return e;function i(e,t){return function(){var i=e[t].apply(e,arguments);return o?this:i instanceof _C?i.getInterface():i}}if(!t)return{};for(var r,a=0,n=t.length;a<n;a++)e[r=t[a]]&&"function"!=typeof e[r]||(this[r]=i(e,r))},_a(),la(),_e(()=>{cC=void 0});en();var dC,uC={iw:"he",ji:"yi"},hC={getModernLanguage:e=>uC[e]||e,getLanguageTag:()=>rr().toString(),getTimezone:()=>(void 0===cC&&(cC=Me()),cC||Intl.DateTimeFormat().resolvedOptions().timeZone),setTimezone:()=>{}},pC=/^((?:[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,gC=class{language;script;region;variant;variantSubtags;extension;extensionSubtags;privateUse;privateUseSubtags;#e;constructor(e){var t=pC.exec(e.replace(/_/g,"-"));if(null===t)throw new TypeError("The given language tag '"+e+"' does not adhere to BCP-47.");this.language=t[1]||null,this.script=t[2]||null,this.region=t[3]||null,this.variant=t[4]&&t[4].slice(1)||null,this.variantSubtags=this.variant?this.variant.split("-"):[],this.extension=t[5]&&t[5].slice(1)||null,this.extensionSubtags=this.variant?this.variant.split("-"):[],this.privateUse=t[6]||null,this.privateUseSubtags=this.privateUse?this.privateUse.slice(2).split("-"):[],this.language&&(this.language=this.language.toLowerCase()),this.script&&(this.script=this.script.toLowerCase().replace(/^[a-z]/,function(e){return e.toUpperCase()})),this.region&&(this.region=this.region.toUpperCase()),this.#e=this.#t(this.language,this.script,this.region,this.variant,this.extension,this.privateUse),Object.freeze(this)}toString(){return this.#e}#t(){return Array.prototype.filter.call(arguments,Boolean).join("-")}},mC=Object.create(null),vC=_C.extend("sap.ui.core.Locale",{constructor:function(e){_C.apply(this),e instanceof gC?(this.oLanguageTag=e,this.sLocaleId=this.oLanguageTag.toString()):(this.oLanguageTag=new gC(e),this.sLocaleId=e),Object.assign(this,this.oLanguageTag),this.sLanguage=this.language},getLanguage:function(){return this.language},getScript:function(){return this.script},getRegion:function(){return this.region},getVariant:function(){return this.variant},getVariantSubtags:function(){return this.variantSubtags},getExtension:function(){return this.extension},getExtensionSubtags:function(){return this.extensionSubtags},getPrivateUse:function(){return this.privateUse},getPrivateUseSubtags:function(){return this.privateUseSubtags},hasPrivateUseSubtag:function(e){return iC(e&&e.match(/^[0-9A-Z]{1,8}$/i),"subtag must be a valid BCP47 private use tag"),this.privateUseSubtags.indexOf(e)>=0},toString:function(){return this.oLanguageTag.toString()},getSAPLogonLanguage:function(){return hC._getSAPLogonLanguage(this)}});vC._getCoreLocale=function(e){return e instanceof gC&&(e=mC[e.toString()]||new vC(e),mC[e.toString()]=e),e},_a(),ra();var fC,bC=class{static getLegacyDateCalendarCustomizing(){return void 0===dC&&(dC=Ee()),dC.legacyDateCalendarCustomizing||[]}};J("LegacyDateFormats",bC),_a(),ra(),la(),_e(()=>{fC=void 0});Q("LegacyDateFormats");var yC,CC,wC=(e=>(e.Gregorian="Gregorian",e.Islamic="Islamic",e.Japanese="Japanese",e.Buddhist="Buddhist",e.Persian="Persian",e))(wC||{});_a(),la(),_e(()=>{yC=void 0,CC=void 0});var kC=()=>(void 0===yC&&(yC=Ae()),yC&&yC in wC?yC:wC.Gregorian);en();var xC,SC=()=>rr().toString(),TC=kC,BC=()=>({}),IC=()=>"Default",DC=new Map,AC=function(e,t){xC?xC(e,t):DC.set(e,t)},PC={Gregorian:"Gregorian",Islamic:"Islamic",Japanese:"Japanese",Persian:"Persian",Buddhist:"Buddhist"};AC("sap.base.i18n.date.CalendarType",PC);var MC={Default:"Default",ISO_8601:"ISO_8601",MiddleEastern:"MiddleEastern",WesternTraditional:"WesternTraditional"};AC("sap.base.i18n.date.CalendarWeekNumbering",MC),Object.defineProperty(MC,"getWeekConfigurationValues",{value:function(e){switch(e){case MC.ISO_8601:return{firstDayOfWeek:1,minimalDaysInFirstWeek:4};case MC.MiddleEastern:return{firstDayOfWeek:6,minimalDaysInFirstWeek:1};case MC.WesternTraditional:return{firstDayOfWeek:0,minimalDaysInFirstWeek:1};default:return}}});var EC={},zC=EC.hasOwnProperty,FC=EC.toString,RC=zC.toString,OC=RC.call(Object),LC=function(e){var t,o;return!(!e||"[object Object]"!==FC.call(e))&&(!(t=Object.getPrototypeOf(e))||"function"==typeof(o=zC.call(t,"constructor")&&t.constructor)&&RC.call(o)===OC)},NC=Object.create(null),HC=function(){var e,t,o,i,r,a,n=arguments[2]||{},s=3,l=arguments.length,c=arguments[0]||!1,_=arguments[1]?void 0:NC;for("object"!=typeof n&&"function"!=typeof n&&(n={});s<l;s++)if(null!=(r=arguments[s]))for(i in r)e=n[i],o=r[i],"__proto__"!==i&&n!==o&&(c&&o&&(LC(o)||(t=Array.isArray(o)))?(t?(t=!1,a=e&&Array.isArray(e)?e:[]):a=e&&LC(e)?e:{},n[i]=HC(c,arguments[1],a,o)):o!==_&&(n[i]=o));return n},UC=function(){var e=[!1,!0];return e.push.apply(e,arguments),HC.apply(null,e)};sn();var VC=e=>{const t=e.match(/sap\/ui\/core\/cldr\/(\w+)\.json/);if(!t)throw new Error(`Unknown module "${e}"`);const o=t[1];return Nr(o)};function WC(e){this._value=void 0,this._error=void 0,this._fulfilled=!1,this._rejected=!1;var t=this;try{e(function(e){e&&"function"==typeof e.then||(t._value=e,t._fulfilled=!0)},function(e){t._error=e,t._rejected=!0})}catch(o){t._error=o,t._rejected=!0}}WC.resolve=function(e){return e instanceof WC?e:new WC(function(t){t(e)})},WC.reject=function(e){return new WC(function(t,o){o(e)})},WC.all=function(e){for(var t=[],o=0;o<e.length;o++)if(e[o]instanceof WC){if(e[o]._rejected)return WC.reject(e[o]._error);t.push(e[o]._value)}else t.push(e[o]);return WC.resolve(t)},WC.prototype.then=function(e,t){if(this._fulfilled){if("function"==typeof e)try{return WC.resolve(e(this._value))}catch(o){return WC.reject(o)}return this}if(this._rejected){if("function"==typeof t)try{return WC.resolve(t(this._error))}catch(o){return WC.reject(o)}return this}return this},WC.prototype.catch=function(e){return this.then(void 0,e)},WC.prototype.finally=function(e){return"function"==typeof e&&e(),this},WC.prototype.unwrap=function(){if(this._rejected)throw this._error;return this._value},WC.prototype.isFulfilled=function(){return this._fulfilled},WC.prototype.isPending=function(){return!this._fulfilled&&!this._rejected},WC.prototype.isRejected=function(){return this._rejected};var qC=/c/i,jC=/e/i,YC=/^([+-]?)((\d+)(?:\.(\d+))?)[eE]([+-]?\d+)$/,$C=/0+$/,GC=/(.*)?\{[0|1]}(.*)?\{[0|1]}(.*)?/,KC=/^0+$/,ZC=["narrow","abbreviated","wide"],XC={"acceleration-meter-per-second-squared":"acceleration-meter-per-square-second","concentr-milligram-per-deciliter":"concentr-milligram-ofglucose-per-deciliter","concentr-part-per-million":"concentr-permillion","consumption-liter-per-100kilometers":"consumption-liter-per-100-kilometer","mass-metric-ton":"mass-tonne","pressure-millimeter-of-mercury":"pressure-millimeter-ofhg","pressure-pound-per-square-inch":"pressure-pound-force-per-square-inch","pressure-inch-hg":"pressure-inch-ofhg","torque-pound-foot":"torque-pound-force-foot"},JC={},QC=_C.extend("sap.ui.core.LocaleData",{constructor:function(e,t){_C.apply(this),this.oLocale=vC._getCoreLocale(e),this.loaded=function(e,t){var o=e.getLanguage()||"",i=e.getRegion()||"",r=e.getScript()||"";function a(e,t){var o,i,r;if(t)for(o in t)t.hasOwnProperty(o)&&(i=e[o],r=t[o],void 0===i?e[o]=r:null===i?delete e[o]:"object"!=typeof i||"object"!=typeof r||Array.isArray(i)||a(i,r))}function n(e){return(!JC[e]&&ow.includes(e)||JC[e]instanceof Promise&&!t)&&(JC[e]=WC.resolve(VC(`sap/ui/core/cldr/${e}.json`,{async:t,dataType:"json",failOnError:!1})).then(t=>t?n(t.__fallbackLocale).then(o=>(a(t,o),JC[e]=t,delete t.__fallbackLocale,t)):t).unwrap()),WC.resolve(JC[e])}"no"===(o=o&&hC.getModernLanguage(o)||o)&&(o="nb");"zh"!==o||i||("Hans"===r?i="CN":"Hant"===r&&(i="TW"));("sh"===o||"sr"===o&&"Latn"===r)&&(o="sr_Latn");const s=o+"_"+i;let l=s;return n(s).then(e=>e||(l=o,n(o))).then(e=>e||(l="en",n("en"))).then(e=>({mData:e,sCLDRLocaleId:l.replace(/_/g,"-")}))}(this.oLocale,t).then(e=>(this.mData=e.mData,this.sCLDRLocaleId=e.sCLDRLocaleId,this)),this.loaded.finally(()=>{delete this.loaded})},_get:function(){return this._getDeep(this.mData,arguments)},_getMerged:function(){return this._get.apply(this,arguments)},_getMonthsWithAlternatives:function(e,t){return this._get(rw(t),"months","format",e)},_getMonthsStandAloneWithAlternatives:function(e,t){return this._get(rw(t),"months","stand-alone",e)},_getDeep:function(e,t){for(var o=e,i=0;i<t.length&&void 0!==(o=o[t[i]]);i++);return o},getOrientation:function(){return this._get("orientation")},getCurrentLanguageName:function(){return this.getLanguageName(this.oLocale.toString())},getLanguageName:function(e){const t=new gC(e);let o=hC.getModernLanguage(t.language),i=t.script;"sr"===o&&"Latn"===i&&(o="sh",i=null);const r=t.region,a=this._get("languages"),n=a[o];if(!i&&!r||!n)return n;const s=a[o+"_"+r]||a[o+"_"+i];if(s)return s;if(i){const e=this._get("scripts")[i];if(e)return n+" ("+e+")"}if(r){const e=this._get("territories")[r];if(e)return n+" ("+e+")"}return n},getLanguages:function(){const e=this._get("languages");return["ar_001","de_AT","de_CH","en_AU","en_CA","en_GB","en_US","es_419","es_ES","es_MX","fa_AF","fr_CA","fr_CH","nds_NL","nl_BE","pt_BR","pt_PT","ro_MD","sw_CD","zh_Hans","zh_Hant"].forEach(t=>{e[t]||(e[t]=this.getLanguageName(t))}),e},getScripts:function(){return this._get("scripts")},getTerritories:function(){return this._get("territories")},getMonths:function(e,t){return iC(ZC.includes(e),"sWidth must be narrow, abbreviated or wide"),this._get(rw(t),"months","format",e).map(e=>Array.isArray(e)?e[0]:e)},getMonthsStandAlone:function(e,t){return iC(ZC.includes(e),"sWidth must be narrow, abbreviated or wide"),this._get(rw(t),"months","stand-alone",e).map(e=>Array.isArray(e)?e[0]:e)},getDays:function(e,t){return iC("narrow"==e||"abbreviated"==e||"wide"==e||"short"==e,"sWidth must be narrow, abbreviate, wide or short"),this._get(rw(t),"days","format",e)},getDaysStandAlone:function(e,t){return iC("narrow"==e||"abbreviated"==e||"wide"==e||"short"==e,"sWidth must be narrow, abbreviated, wide or short"),this._get(rw(t),"days","stand-alone",e)},getQuarters:function(e,t){return iC("narrow"==e||"abbreviated"==e||"wide"==e,"sWidth must be narrow, abbreviated or wide"),this._get(rw(t),"quarters","format",e)},getQuartersStandAlone:function(e,t){return iC("narrow"==e||"abbreviated"==e||"wide"==e,"sWidth must be narrow, abbreviated or wide"),this._get(rw(t),"quarters","stand-alone",e)},getDayPeriods:function(e,t){return iC("narrow"==e||"abbreviated"==e||"wide"==e,"sWidth must be narrow, abbreviated or wide"),this._get(rw(t),"dayPeriods","format",e)},getDayPeriodsStandAlone:function(e,t){return iC("narrow"==e||"abbreviated"==e||"wide"==e,"sWidth must be narrow, abbreviated or wide"),this._get(rw(t),"dayPeriods","stand-alone",e)},getDatePattern:function(e,t){return iC("short"==e||"medium"==e||"long"==e||"full"==e,"sStyle must be short, medium, long or full"),this._get(rw(t),"dateFormats",e)},getFlexibleDayPeriods:function(e,t){return this._get(rw(t),"flexibleDayPeriods","format",e)},getFlexibleDayPeriodsStandAlone:function(e,t){return this._get(rw(t),"flexibleDayPeriods","stand-alone",e)},getFlexibleDayPeriodOfTime:function(e,t){var o=(60*e+t)%1440,i=this._get("dayPeriodRules");function r(e){var t=e.split(":"),o=t[0],i=t[1];return 60*parseInt(o)+parseInt(i)}return Object.keys(i).find(function(e){var t=i[e];return t._at&&r(t._at)===o})||Object.keys(i).find(function(e){var t,a,n=i[e];return!n._at&&((a=r(n._from))>(t=r(n._before))?[{start:a,end:1440},{start:0,end:t}]:[{start:a,end:t}]).some(function(e){return e.start<=o&&e.end>o})})},getTimePattern:function(e,t){return iC("short"==e||"medium"==e||"long"==e||"full"==e,"sStyle must be short, medium, long or full"),this._get(rw(t),"timeFormats",e)},getDateTimePattern:function(e,t){return iC("short"==e||"medium"==e||"long"==e||"full"==e,"sStyle must be short, medium, long or full"),this._get(rw(t),"dateTimeFormats",e)},getCombinedDateTimePattern:function(e,t,o){iC("short"==e||"medium"==e||"long"==e||"full"==e,"sStyle must be short, medium, long or full"),iC("short"==t||"medium"==t||"long"==t||"full"==t,"sStyle must be short, medium, long or full");var i=this.getDateTimePattern(e,o),r=this.getDatePattern(e,o),a=this.getTimePattern(t,o);return i.replace("{0}",a).replace("{1}",r)},getCombinedDateTimeWithTimezonePattern:function(e,t,o){return this.applyTimezonePattern(this.getCombinedDateTimePattern(e,t,o))},applyTimezonePattern:function(e){var t=[e];return this._appendItems(t,[{group:"Timezone",length:2,field:"zone",symbol:"V"}]),t[0]},getTimezoneTranslations:function(){var e=this.oLocale.toString(),t=QC._mTimezoneTranslations[e];return t||(QC._mTimezoneTranslations[e]=t=iw(this._get("timezoneNames"))),Object.assign({},t)},getCustomDateTimePattern:function(e,t){var o=this._get(rw(t),"dateTimeFormats","availableFormats");return this._getFormatPattern(e,o,t)},getIntervalPattern:function(e,t){var o,i,r,a,n,s=this._get(rw(t),"dateTimeFormats","intervalFormats");return e&&(i=(o=e.split("-"))[0],r=o[1],(a=s[i])&&(n=a[r]))?n:s.intervalFormatFallback},getCombinedIntervalPattern:function(e,t){const o=this._get(rw(t),"dateTimeFormats","intervalFormats"),[,i,r,a]=GC.exec(o.intervalFormatFallback);return QC._escapeIfNeeded(i)+e+QC._escapeIfNeeded(r)+e+QC._escapeIfNeeded(a)},getCustomIntervalPattern:function(e,t,o){var i=this._get(rw(o),"dateTimeFormats","intervalFormats");return this._getFormatPattern(e,i,o,t)},_getFormatPattern:function(e,t,o,i){var r,a,n;if(i?"string"==typeof i&&("j"!=i&&"J"!=i||(i=this.getPreferredHourSymbol()),n=t[e],r=n&&n[i]):r=t[e],r){if("object"!=typeof r)return r;a=Object.keys(r).map(function(e){return r[e]})}return a||(a=this._createFormatPattern(e,t,o,i)),a&&1===a.length?a[0]:a},_createFormatPattern:function(e,t,o,i){var r,a,n,s,l,c,_,d,u,h,p,g=this._parseSkeletonFormat(e),m=this._findBestMatch(g,e,t),v=/^([GyYqQMLwWEecdD]+)([hHkKjJmszZvVOXx]+)$/;if(i){if("string"==typeof i)(u=tw[i]?tw[i].group:"")&&(h=ew[u].index>g[g.length-1].index),d=i;else{for(h=!0,"y"===g[0].symbol&&m&&m.pattern.G&&(s=tw.G,l=ew[s.group],g.splice(0,0,{symbol:"G",group:s.group,match:s.match,index:l.index,field:l.field,length:1})),p=g.length-1;p>=0;p--)if(i[(a=g[p]).group]){h=!1;break}for(p=0;p<g.length;p++)if(i[(a=g[p]).group]){d=a.symbol;break}"h"!=d&&"K"!=d||!i.DayPeriod||(d="a")}if(h)return[this.getCustomDateTimePattern(e,o)];m&&0===m.missingTokens.length&&(c=m.pattern[d])&&m.distance>0&&(c=this._expandFields(c,m.patternTokens,g)),c||(n=this._get(rw(o),"dateTimeFormats","availableFormats"),v.test(e)&&"ahHkKjJms".indexOf(d)>=0?c=this._getMixedFormatPattern(e,n,o,i):(_=this._getFormatPattern(e,n,o),c=this.getCombinedIntervalPattern(_,o))),r=[c]}else if(m){if("string"==typeof m.pattern)r=[m.pattern];else if("object"==typeof m.pattern)for(var f in r=[],m.pattern)c=m.pattern[f],r.push(c);m.distance>0&&(m.missingTokens.length>0?v.test(e)?r=[this._getMixedFormatPattern(e,t,o)]:(r=this._expandFields(r,m.patternTokens,g),r=this._appendItems(r,m.missingTokens,o)):r=this._expandFields(r,m.patternTokens,g))}else r=[c=e];return e.indexOf("J")>=0&&r.forEach(function(e,t){r[t]=e.replace(/ ?[abB](?=([^']*'[^']*')*[^']*)$/g,"")}),r},_parseSkeletonFormat:function(e){for(var t,o,i,r=[],a={index:-1},n=0;n<e.length;n++)if("j"!=(t=e.charAt(n))&&"J"!=t||(t=this.getPreferredHourSymbol()),t!=a.symbol){if(o=tw[t],i=ew[o.group],"Other"==o.group||i.diffOnly)throw new Error("Symbol '"+t+"' is not allowed in skeleton format '"+e+"'");if(i.index<=a.index)throw new Error("Symbol '"+t+"' at wrong position or duplicate in skeleton format '"+e+"'");a={symbol:t,group:o.group,match:o.match,index:i.index,field:i.field,length:1},r.push(a)}else a.length++;return r},_findBestMatch:function(e,t,o){var i,r,a,n,s,l,c,_,d,u,h={distance:1e4,firstDiffPos:-1};for(var p in o)if(!("intervalFormatFallback"===p||p.indexOf("B")>-1||(i=this._parseSkeletonFormat(p),l=0,r=[],c=!0,e.length<i.length))){s=0,_=e.length;for(var g=0;g<e.length;g++){if(a=e[g],n=i[s],_===e.length&&(_=g),n){if(d=tw[a.symbol],u=tw[n.symbol],a.symbol===n.symbol){a.length===n.length?_===g&&(_=e.length):(a.length<d.numericCeiling?n.length<u.numericCeiling:n.length>=u.numericCeiling)?l+=Math.abs(a.length-n.length):l+=5,s++;continue}if(a.match==n.match){l+=Math.abs(a.length-n.length)+10,s++;continue}}r.push(a),l+=50-g}s<i.length&&(c=!1),c&&(l<h.distance||l===h.distance&&_>h.firstDiffPos)&&(h.distance=l,h.firstDiffPos=_,h.missingTokens=r,h.pattern=o[p],h.patternTokens=i)}if(h.pattern)return h},_expandFields:function(e,t,o){var i="string"==typeof e,r=(i?[e]:e).map(function(e){var i,r,a,n,s,l,c,_,d={},u={},h="",p=!1,g=0;for(o.forEach(function(e){d[e.group]=e}),t.forEach(function(e){u[e.group]=e});g<e.length;){if(_=e.charAt(g),p)h+=_,"'"==_&&(p=!1);else if((c=tw[_])&&d[c.group]&&u[c.group]){for(s=d[c.group],l=u[c.group],i=s.length,a=l.length,r=1;e.charAt(g+1)==_;)g++,r++;n=i===a||(i<c.numericCeiling?r>=c.numericCeiling:r<c.numericCeiling)?r:Math.max(r,i);for(var m=0;m<n;m++)h+=_}else h+=_,"'"==_&&(p=!0);g++}return h});return i?r[0]:r},_appendItems:function(e,t,o){var i=this._get(rw(o),"dateTimeFormats","appendItems");return e.forEach(function(o,r){var a,n,s;t.forEach(function(t){n=i[t.group],a="'"+this.getDisplayName(t.field)+"'",s="";for(var l=0;l<t.length;l++)s+=t.symbol;e[r]=n.replace(/\{0\}/,o).replace(/\{1\}/,s).replace(/\{2\}/,a)}.bind(this))}.bind(this)),e},_getMixedFormatPattern:function(e,t,o,i){var r,a,n=/^([GyYqQMLwWEecdD]+)([hHkKjJmszZvVOXx]+)$/.exec(e),s=n[1],l=n[2],c=this._getFormatPattern(s,t,o);return a=i?this.getCustomIntervalPattern(l,i,o):this._getFormatPattern(l,t,o),r=/MMMM|LLLL/.test(s)?/E|e|c/.test(s)?"full":"long":/MMM|LLL/.test(s)?"medium":"short",this.getDateTimePattern(r,o).replace(/\{1\}/,c).replace(/\{0\}/,a)},getNumberSymbol:function(e){return iC("decimal"==e||"group"==e||"plusSign"==e||"minusSign"==e||"percentSign"==e,"sType must be decimal, group, plusSign, minusSign or percentSign"),this._get("symbols-latn-"+e)},getLenientNumberSymbols:function(e){return iC("plusSign"==e||"minusSign"==e,"sType must be plusSign or minusSign"),this._get("lenient-scope-number")[e]},getDecimalPattern:function(){return this._get("decimalFormat").standard},getCurrencyPattern:function(e,t){return this._get("currencyFormat")[t?e+"-"+t:e]},getPercentPattern:function(){return this._get("percentFormat").standard},getMiscPattern:function(e){return iC("approximately"==e||"atLeast"==e||"atMost"==e||"range"==e,"sName must be approximately, atLeast, atMost or range"),this._get("miscPattern")[e]},getMinimalDaysInFirstWeek:function(){return this._get("weekData-minDays")},getFirstDayOfWeek:function(){return this._get("weekData-firstDay")},getWeekendStart:function(){return this._get("weekData-weekendStart")},getWeekendEnd:function(){return this._get("weekData-weekendEnd")},getCustomCurrencyCodes:function(){var e=this._get("currency")||{},t={};return Object.keys(e).forEach(function(e){t[e]=e}),t},getCurrencyDigits:function(e){const t=this.getAllCurrencyDigits();return t[e]??t.DEFAULT},getAllCurrencyDigits(){const e=this._get("currency"),t=e?.DEFAULT?{}:{...this._get("currencyDigits")};if(e)for(const o in e)void 0!==e[o].digits&&(t[o]=e[o].digits);return t},getCurrencySymbol:function(e){var t=this.getCurrencySymbols();return t&&t[e]||e},getCurrencyCodeBySymbol:function(e){var t,o=this._get("currencySymbols");for(t in o)if(o[t]===e)return t;return e},getCurrencySymbols:function(){var e,t=this._get("currency"),o={};for(var i in t)e=t[i].isoCode,t[i].symbol?o[i]=t[i].symbol:e&&(o[i]=this._get("currencySymbols")[e]);return Object.assign({},this._get("currencySymbols"),o)},getUnitDisplayName:function(e){var t=this.getUnitFormat(e);return t&&t.displayName||""},getRelativePatterns:function(e,t){void 0===t&&(t="wide"),iC("wide"===t||"short"===t||"narrow"===t,"sStyle is only allowed to be set with 'wide', 'short' or 'narrow'");var o,i,r,a,n=[],s=this.getPluralCategories();return e||(e=["year","month","week","day","hour","minute","second"]),e.forEach(function(e){for(var l in o=this._get("dateFields",e+"-"+t))0===l.indexOf("relative-type-")?(r=parseInt(l.substr(14)),n.push({scale:e,value:r,pattern:o[l]})):0==l.indexOf("relativeTime-type-")&&(i=o[l],a="past"===l.substr(18)?-1:1,s.forEach(function(t){var o=i["relativeTimePattern-count-"+t];o&&n.push({scale:e,sign:a,pattern:o})}))}.bind(this)),n},getRelativePattern:function(e,t,o,i){var r,a;return"string"==typeof o&&(i=o,o=void 0),void 0===o&&(o=t>0),void 0===i&&(i="wide"),iC("wide"===i||"short"===i||"narrow"===i,"sStyle is only allowed to be set with 'wide', 'short' or 'narrow'"),a=e+"-"+i,0!==t&&-2!==t&&2!==t||(r=this._get("dateFields",a,"relative-type-"+t)),r||(r=this._get("dateFields",a,"relativeTime-type-"+(o?"future":"past"))["relativeTimePattern-count-"+this.getPluralCategory(Math.abs(t).toString())]),r},getRelativeSecond:function(e,t){return this.getRelativePattern("second",e,t)},getRelativeMinute:function(e,t){return 0==e?null:this.getRelativePattern("minute",e,t)},getRelativeHour:function(e,t){return 0==e?null:this.getRelativePattern("hour",e,t)},getRelativeDay:function(e,t){return this.getRelativePattern("day",e,t)},getRelativeWeek:function(e,t){return this.getRelativePattern("week",e,t)},getRelativeMonth:function(e,t){return this.getRelativePattern("month",e,t)},getDisplayName:function(e,t){iC("second"==e||"minute"==e||"hour"==e||"zone"==e||"day"==e||"weekday"==e||"week"==e||"month"==e||"quarter"==e||"year"==e||"era"==e,"sType must be second, minute, hour, zone, day, weekday, week, month, quarter, year, era"),void 0===t&&(t="wide"),iC("wide"===t||"short"===t||"narrow"===t,"sStyle is only allowed to be set with 'wide', 'short' or 'narrow'");var o=-1===["era","weekday","zone"].indexOf(e)?e+"-"+t:e;return this._get("dateFields",o,"displayName")},getRelativeYear:function(e,t){return this.getRelativePattern("year",e,t)},getCompactDecimalPattern:function(e,t,o="other"){const i=this._get("decimalFormat-"+e);return i&&(i[t+"-"+o]||i[t+"-other"])},getCompactCurrencyPattern:function(e,t,o="other",i=void 0){const r=this._get("currencyFormat-"+e),a=i?"-"+i:"";return r&&(r[t+"-"+o+a]||r[t+"-other"+a])},getListFormat:function(e,t){var o=this._get("listPattern-"+(e||"standard")+"-"+(t||"wide"));return o||{}},getResolvedUnitFormat:function(e){return e=this.getUnitFromMapping(e)||e,this.getUnitFormat(e)},getUnitFormat:function(e){var t=this._get("units","short",e);return!t&&XC[e]&&(t=this._get("units","short",XC[e])),t},getUnitFormats:function(){return this._getMerged("units","short")},getUnitFromMapping:function(e){return this._get("unitMappings",e)},getEras:function(e,t){iC("wide"==e||"abbreviated"==e||"narrow"==e,"sWidth must be wide, abbreviate or narrow");var o=this._get(rw(t),"era-"+e),i=[];for(var r in o)i[parseInt(r)]=o[r];return i},getEraDates:function(e=TC()){var t=this._get("eras-"+e.toLowerCase()),o=[];for(var i in t)o[parseInt(i)]=t[i];return o},getCalendarWeek:function(e,t){iC("wide"==e||"narrow"==e,"sStyle must be wide or narrow");const o=this._get("sap-calendarWeek")[e];return t?o.replace("{0}",t):o},firstDayStartsFirstWeek:function(){return"en"===this.oLocale.getLanguage()&&"US"===this.oLocale.getRegion()},getPreferredCalendarType:function(){var e,t,o,i=this._get("calendarPreference")||[];for(o=0;o<i.length;o++)for(t in e=i[o].split("-")[0],PC)if(e===t.toLowerCase())return t;return PC.Gregorian},getPreferredHourSymbol:function(){return this._get("timeData","_preferred")},getPluralCategories:function(){var e=this._get("plurals"),t=Object.keys(e);return t.push("other"),t},getPluralCategory:function(e){var t="number"==typeof e?e.toString():e,o=this._get("plurals");for(var i in this._pluralTest||(this._pluralTest={}),o){var r=this._pluralTest[i];if(r||(r=this._parsePluralRule(o[i]),this._pluralTest[i]=r),r(t).bMatch)return i}return"other"},_parsePluralRule:function(e){var t=",",o=0,i=e.split(" ");function r(e){return i[o]===e&&(o++,!0)}function a(){var e=i[o];return o++,e}function n(){var e,o=function(){var e,o,i=function(){var e=function(){if(r("n"))return function(e){return e.n};if(r("i"))return function(e){return e.i};if(r("f"))return function(e){return e.f};if(r("t"))return function(e){return e.t};if(r("v"))return function(e){return e.v};if(r("w"))return function(e){return e.w};if(r("c"))return function(e){return e.c};if(r("e"))return function(e){return e.c};throw new Error("Unknown operand: "+a())}();if(r("%")){var t=parseInt(a());return function(o){return e(o)%t}}return e}();if(r("="))o=!0;else{if(!r("!="))throw new Error("Expected '=' or '!='");o=!1}return e=function(){var e,o,i,r=[];return a().split(t).forEach(function(t){if(1===(e=t.split("..")).length)r.push(parseInt(t));else{o=parseInt(e[0]),i=parseInt(e[1]);for(var a=o;a<=i;a++)r.push(a)}}),function(e){return r}}(),o?function(t){return e(t).indexOf(i(t))>=0}:function(t){return-1===e(t).indexOf(i(t))}}();return r("and")?(e=n(),function(t){return o(t)&&e(t)}):o}var s=function e(){var t,o=n();return r("or")?(t=e(),function(e){return o(e)||t(e)}):o}();if(o!=i.length)throw new Error("Not completely parsed");return function(e){var t,o,i,r,a,n,l;return o=(i=(e=e.replace(qC,"e")).search(jC))<0?0:parseInt(e.slice(i+1)),-1===(t=(e=QC.convertToDecimal(e)).indexOf("."))?(n=e,r="",a=""):(n=e.slice(0,t),a=(r=e.slice(t+1)).replace($C,"")),l={n:parseFloat(e),i:parseInt(n),v:r.length,w:a.length,f:""===r?0:parseInt(r),t:""===a?0:parseInt(a),c:o},{bMatch:s(l),oOperands:l}}}});QC.convertToDecimal=function(e){var t,o,i,r,a,n,s=String(e);return s.includes("e")||s.includes("E")?(r="-"===(n=s.match(YC))[1],s=n[2].replace(".",""),KC.test(s)?"0":(t=n[3]?n[3].length:0,i=n[4]?n[4].length:0,a=t+(o=parseInt(n[5])),s=o>0?o<i?s.slice(0,a)+"."+s.slice(a):s=s.padEnd(a,"0"):s=-o<t?s.slice(0,a)+"."+s.slice(a):"0."+s.padStart(i-o,"0"),r&&(s="-"+s),s)):s};var ew={Era:{field:"era",index:0},Year:{field:"year",index:1},Quarter:{field:"quarter",index:2},Month:{field:"month",index:3},Week:{field:"week",index:4},"Day-Of-Week":{field:"weekday",index:5},Day:{field:"day",index:6},DayPeriod:{field:"hour",index:7,diffOnly:!0},Hour:{field:"hour",index:8},Minute:{field:"minute",index:9},Second:{field:"second",index:10},Timezone:{field:"zone",index:11}},tw={G:{group:"Era",match:"Era",numericCeiling:1},y:{group:"Year",match:"Year",numericCeiling:100},Y:{group:"Year",match:"Year",numericCeiling:100},Q:{group:"Quarter",match:"Quarter",numericCeiling:3},q:{group:"Quarter",match:"Quarter",numericCeiling:3},M:{group:"Month",match:"Month",numericCeiling:3},L:{group:"Month",match:"Month",numericCeiling:3},w:{group:"Week",match:"Week",numericCeiling:100},W:{group:"Week",match:"Week",numericCeiling:100},d:{group:"Day",match:"Day",numericCeiling:100},D:{group:"Day",match:"Day",numericCeiling:100},E:{group:"Day-Of-Week",match:"Day-Of-Week",numericCeiling:1},e:{group:"Day-Of-Week",match:"Day-Of-Week",numericCeiling:3},c:{group:"Day-Of-Week",match:"Day-Of-Week",numericCeiling:2},h:{group:"Hour",match:"Hour12",numericCeiling:100},H:{group:"Hour",match:"Hour24",numericCeiling:100},k:{group:"Hour",match:"Hour24",numericCeiling:100},K:{group:"Hour",match:"Hour12",numericCeiling:100},m:{group:"Minute",match:"Minute",numericCeiling:100},s:{group:"Second",match:"Second",numericCeiling:100},z:{group:"Timezone",match:"Timezone",numericCeiling:1},Z:{group:"Timezone",match:"Timezone",numericCeiling:1},O:{group:"Timezone",match:"Timezone",numericCeiling:1},v:{group:"Timezone",match:"Timezone",numericCeiling:1},V:{group:"Timezone",match:"Timezone",numericCeiling:1},X:{group:"Timezone",match:"Timezone",numericCeiling:1},x:{group:"Timezone",match:"Timezone",numericCeiling:1},S:{group:"Other",numericCeiling:100},u:{group:"Other",numericCeiling:100},U:{group:"Other",numericCeiling:1},r:{group:"Other",numericCeiling:100},F:{group:"Other",numericCeiling:100},g:{group:"Other",numericCeiling:100},a:{group:"DayPeriod",numericCeiling:1},b:{group:"Other",numericCeiling:1},B:{group:"Other",numericCeiling:1},A:{group:"Other",numericCeiling:100}},ow=["ar","ar_EG","ar_SA","bg","ca","cnr","cs","cy","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","mk","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"];function iw(e,t,o,i){return i=i?i.slice():[],o=o||{},t=t||"",Object.keys(e).forEach(function(r){var a=e[r];if("object"==typeof a){var n=i.slice(),s=a._parent;s&&n.push(s),iw(a,t+r+"/",o,n)}else if("string"==typeof a&&"_parent"!==r){var l=i.length?i.join(", ")+", ":"";o[t+r]=l+a}}),o}function rw(e){return e||(e=TC()),"ca-"+e.toLowerCase()}var aw=QC.extend("sap.ui.core.CustomLocaleData",{constructor:function(e){QC.apply(this,arguments),this.mCustomData=BC()},_get:function(){var e,t=Array.prototype.slice.call(arguments);0==t[0].indexOf("ca-")&&t[0]==rw()&&(t=t.slice(1)),e=t.join("-");var o=this.mCustomData[e];return null==o&&null==(o=this._getDeep(this.mCustomData,arguments))&&(o=this._getDeep(this.mData,arguments)),o},_getMerged:function(){return UC({},this._getDeep(this.mData,arguments),this._getDeep(this.mCustomData,arguments))},getFirstDayOfWeek:function(){var e=IC();return e===MC.Default?QC.prototype.getFirstDayOfWeek.call(this):MC.getWeekConfigurationValues(e).firstDayOfWeek},getMinimalDaysInFirstWeek:function(){var e=IC();return e===MC.Default?QC.prototype.getMinimalDaysInFirstWeek.call(this):MC.getWeekConfigurationValues(e).minimalDaysInFirstWeek}});QC._resetLocaleDataCache=function(){JC={}},QC.getInstance=function(e){return(e=vC._getCoreLocale(e)).hasPrivateUseSubtag("sapufmt")?new aw(e):new QC(e)},QC.requestInstance=function(e){const t=vC._getCoreLocale(e),o=t.hasPrivateUseSubtag("sapufmt")?new aw(t,!0):new QC(t,!0);return Promise.resolve(o.loaded)},QC._cldrLocales=ow,QC._mTimezoneTranslations={};var nw=new RegExp("["+Object.keys(tw).join("")+"]"),sw=/^(\s)?(.*?)(\s)?$/;QC._escapeIfNeeded=function(e){return void 0===e?"":nw.test(e)?e.replace(sw,"$1'$2'$3"):e},QC.prototype.getCurrencyFormat=QC.prototype.getCompactCurrencyPattern,QC.prototype.getDecimalFormat=QC.prototype.getCompactDecimalPattern;var lw,cw=QC,_w=class extends cw{},dw=new Map,uw=e=>(dw.has(e)||dw.set(e,new _w(e)),dw.get(e)),hw={},pw="",gw={_oCache:new Map,_iCacheLimit:10,get:function(e){var t=this._oCache.get(e);if(t)return t;var o={hourCycle:"h23",hour:"2-digit",minute:"2-digit",second:"2-digit",fractionalSecondDigits:3,day:"2-digit",month:"2-digit",year:"numeric",timeZone:e,timeZoneName:"short",era:"narrow",weekday:"short"},i=new Intl.DateTimeFormat("en-US",o);return this._oCache.size===this._iCacheLimit&&(this._oCache=new Map),this._oCache.set(e,i),i}};hw.isValidTimezone=function(e){if(!e)return!1;if(Intl.supportedValuesOf)try{if((lw=lw||Intl.supportedValuesOf("timeZone")).includes(e))return!0}catch(t){lw=[]}try{return gw.get(e),!0}catch(t){return!1}},hw.convertToTimezone=function(e,t){var o=this._getParts(e,t);return hw._getDateFromParts(o)},hw._getParts=function(e,t){var o,i,r=Object.create(null),a=gw.get(t).formatToParts(new Date(e.getTime()));for(o in a)"literal"!==(i=a[o]).type&&(r[i.type]=i.value);return r},hw._getDateFromParts=function(e){var t=new Date(0),o=parseInt(e.year);return"B"===e.era&&(o=-1*o+1),t.setUTCFullYear(o,parseInt(e.month)-1,parseInt(e.day)),t.setUTCHours(parseInt(e.hour),parseInt(e.minute),parseInt(e.second),parseInt(e.fractionalSecond||0)),t},hw.calculateOffset=function(e,t){const o=hw.convertToTimezone(e,t),i=e.getTime(),r=i-o.getTime(),a=new Date(i+r),n=hw.convertToTimezone(a,t).getTime(),s=a.getTime()-n;let l=s;if(r!==s){const e=new Date(i+s),o=hw.convertToTimezone(e,t).getTime();o!==i&&n>o&&(l=r)}return l/1e3},hw.mTimezoneAliases2ABAPTimezones={"Africa/Asmera":"Africa/Asmara","Africa/Timbuktu":"Africa/Bamako","America/Argentina/ComodRivadavia":"America/Argentina/Catamarca","America/Atka":"America/Adak","America/Buenos_Aires":"America/Argentina/Buenos_Aires","America/Catamarca":"America/Argentina/Catamarca","America/Coral_Harbour":"America/Atikokan","America/Cordoba":"America/Argentina/Cordoba","America/Ensenada":"America/Tijuana","America/Fort_Wayne":"America/Indiana/Indianapolis","America/Godthab":"America/Nuuk","America/Indianapolis":"America/Indiana/Indianapolis","America/Jujuy":"America/Argentina/Jujuy","America/Knox_IN":"America/Indiana/Knox","America/Louisville":"America/Kentucky/Louisville","America/Mendoza":"America/Argentina/Mendoza","America/Montreal":"America/Toronto","America/Nipigon":"America/Toronto","America/Pangnirtung":"America/Iqaluit","America/Porto_Acre":"America/Rio_Branco","America/Rainy_River":"America/Winnipeg","America/Rosario":"America/Argentina/Cordoba","America/Santa_Isabel":"America/Tijuana","America/Shiprock":"America/Denver","America/Thunder_Bay":"America/Toronto","America/Virgin":"America/St_Thomas","America/Yellowknife":"America/Edmonton","Antarctica/South_Pole":"Antarctica/McMurdo","Asia/Ashkhabad":"Asia/Ashgabat","Asia/Calcutta":"Asia/Kolkata","Asia/Choibalsan":"Asia/Ulaanbaatar","Asia/Chongqing":"Asia/Shanghai","Asia/Chungking":"Asia/Shanghai","Asia/Dacca":"Asia/Dhaka","Asia/Harbin":"Asia/Shanghai","Asia/Istanbul":"Europe/Istanbul","Asia/Kashgar":"Asia/Urumqi","Asia/Katmandu":"Asia/Kathmandu","Asia/Macao":"Asia/Macau","Asia/Rangoon":"Asia/Yangon","Asia/Saigon":"Asia/Ho_Chi_Minh","Asia/Tel_Aviv":"Asia/Jerusalem","Asia/Thimbu":"Asia/Thimphu","Asia/Ujung_Pandang":"Asia/Makassar","Asia/Ulan_Bator":"Asia/Ulaanbaatar","Atlantic/Faeroe":"Atlantic/Faroe","Atlantic/Jan_Mayen":"Arctic/Longyearbyen","Australia/ACT":"Australia/Sydney","Australia/Canberra":"Australia/Sydney","Australia/Currie":"Australia/Hobart","Australia/LHI":"Australia/Lord_Howe","Australia/NSW":"Australia/Sydney","Australia/North":"Australia/Darwin","Australia/Queensland":"Australia/Brisbane","Australia/South":"Australia/Adelaide","Australia/Tasmania":"Australia/Hobart","Australia/Victoria":"Australia/Melbourne","Australia/West":"Australia/Perth","Australia/Yancowinna":"Australia/Broken_Hill","Brazil/Acre":"America/Rio_Branco","Brazil/DeNoronha":"America/Noronha","Brazil/East":"America/Sao_Paulo","Brazil/West":"America/Manaus",CET:"Europe/Brussels",CST6CDT:"America/Chicago","Canada/Atlantic":"America/Halifax","Canada/Central":"America/Winnipeg","Canada/East-Saskatchewan":"America/Regina","Canada/Eastern":"America/Toronto","Canada/Mountain":"America/Edmonton","Canada/Newfoundland":"America/St_Johns","Canada/Pacific":"America/Vancouver","Canada/Saskatchewan":"America/Regina","Canada/Yukon":"America/Whitehorse","Chile/Continental":"America/Santiago","Chile/EasterIsland":"Pacific/Easter",Cuba:"America/Havana",EET:"Europe/Athens",EST:"America/Panama",EST5EDT:"America/New_York",Egypt:"Africa/Cairo",Eire:"Europe/Dublin","Etc/GMT+0":"Etc/GMT","Etc/GMT-0":"Etc/GMT","Etc/GMT0":"Etc/GMT","Etc/Greenwich":"Etc/GMT","Etc/UCT":"Etc/UTC","Etc/Zulu":"Etc/UTC","Europe/Belfast":"Europe/London","Europe/Kyiv":"Europe/Kiev","Europe/Nicosia":"Asia/Nicosia","Europe/Tiraspol":"Europe/Chisinau","Europe/Uzhgorod":"Europe/Kiev","Europe/Zaporozhye":"Europe/Kiev",GB:"Europe/London","GB-Eire":"Europe/London",GMT:"Etc/GMT","GMT+0":"Etc/GMT","GMT-0":"Etc/GMT",GMT0:"Etc/GMT",Greenwich:"Etc/GMT",HST:"Pacific/Honolulu",Hongkong:"Asia/Hong_Kong",Iceland:"Atlantic/Reykjavik",Iran:"Asia/Tehran",Israel:"Asia/Jerusalem",Jamaica:"America/Jamaica",Japan:"Asia/Tokyo",Kwajalein:"Pacific/Kwajalein",Libya:"Africa/Tripoli",MET:"Europe/Brussels",MST:"America/Phoenix",MST7MDT:"America/Denver","Mexico/BajaNorte":"America/Tijuana","Mexico/BajaSur":"America/Mazatlan","Mexico/General":"America/Mexico_City",NZ:"Pacific/Auckland","NZ-CHAT":"Pacific/Chatham",Navajo:"America/Denver",PRC:"Asia/Shanghai",PST8PDT:"America/Los_Angeles","Pacific/Enderbury":"Pacific/Kanton","Pacific/Johnston":"Pacific/Honolulu","Pacific/Ponape":"Pacific/Pohnpei","Pacific/Samoa":"Pacific/Pago_Pago","Pacific/Truk":"Pacific/Chuuk","Pacific/Yap":"Pacific/Chuuk",Poland:"Europe/Warsaw",Portugal:"Europe/Lisbon",ROC:"Asia/Taipei",ROK:"Asia/Seoul",Singapore:"Asia/Singapore",Turkey:"Europe/Istanbul",UCT:"Etc/UTC","US/Alaska":"America/Anchorage","US/Aleutian":"America/Adak","US/Arizona":"America/Phoenix","US/Central":"America/Chicago","US/East-Indiana":"America/Indiana/Indianapolis","US/Eastern":"America/New_York","US/Hawaii":"Pacific/Honolulu","US/Indiana-Starke":"America/Indiana/Knox","US/Michigan":"America/Detroit","US/Mountain":"America/Denver","US/Pacific":"America/Los_Angeles","US/Pacific-New":"America/Los_Angeles","US/Samoa":"Pacific/Pago_Pago",UTC:"Etc/UTC",Universal:"Etc/UTC","W-SU":"Europe/Moscow",WET:"Europe/Lisbon",Zulu:"Etc/UTC"},hw.getLocalTimezone=function(){return""===pw&&(pw=(new Intl.DateTimeFormat).resolvedOptions().timeZone,pw=hw.getABAPTimezone(pw)),pw},hw.getABAPTimezone=function(e){return hw.mTimezoneAliases2ABAPTimezones[e]||e},hw._clearLocalTimezoneCache=function(){pw=""};var mw=["year","month","day","hour","minute","second","fractionalSecond"],vw=/Z|GMT|:.*[\+|\-]|^([\+|\-]\d{2})?\d{4}(-\d{2}){0,2}$/,fw=["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],bw=["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],yw={Sun:0,Mon:1,Tue:2,Wed:3,Thu:4,Fri:5,Sat:6},Cw=/^(\d{1,4})-(\d{1,2})-(\d{1,2})(?:[T ](\d{1,2})(?::(\d{1,2})(?::(\d{1,2})(?:\.(\d{1,3}))?)?)?)?$/;function ww(e,t){return(e<0?"-":"")+Math.abs(e).toString().padStart(t,"0")}function kw(e,t){var o=kw._createDateInstance(e);if(Object.defineProperties(this,{sTimezoneID:{value:t},oDate:{value:o,writable:!0},oDateParts:{value:void 0,writable:!0}}),!isNaN(o)&&(e.length>1||1===e.length&&"string"==typeof e[0]&&!vw.test(e[0]))){const t=[o.getFullYear(),o.getMonth(),o.getDate(),o.getHours(),o.getMinutes(),o.getSeconds(),o.getMilliseconds()];if(o.getTimezoneOffset()<new Date(o.getTime()-72e5).getTimezoneOffset())if(e.length>1)t[1]=e[1]||0,t[2]=void 0!==e[2]?e[2]:1,t[3]=void 0!==e[3]?e[3]:0,t[4]=void 0!==e[4]?e[4]:0;else{const i=Cw.exec(e[0]);i?(t[1]=+i[2]-1,t[2]=i[3],t[3]=void 0!==i[4]?i[4]:0,t[4]=void 0!==i[5]?i[5]:0):aC.warning("UI5Date for '"+e[0]+"' cannot be ensured to be correct as it is near the change from standard time to daylight saving time in the current browser locale; use the constructor with more than 1 arguments or use the ISO format instead",o,"sap.ui.core.date.UI5Date")}this._setParts(mw,t)}}kw.prototype=Object.create(Date.prototype,{constructor:{value:Date}}),kw.prototype[Symbol.toStringTag]="Date",kw.prototype._getPart=function(e){var t;return isNaN(this.oDate)?NaN:(this.oDateParts=this.oDateParts||hw._getParts(this.oDate,this.sTimezoneID),"weekday"===e?yw[this.oDateParts.weekday]:(t=parseInt(this.oDateParts[e]),"month"===e?t-=1:"year"===e&&"B"===this.oDateParts.era&&(t=1-t),t))},kw.prototype._setParts=function(e,t){var o,i,r,a,n,s,l={},c=Math.min(e.length,t.length);if(0===c)return this.setTime(NaN);for(o=0;o<c;o+=1){if(s=parseInt(+t[o]),n=e[o],isNaN(s))return this.setTime(NaN);"month"===n?s+=1:"year"===n&&(s<=0?(s=1-s,l.era="B"):l.era="A"),l[n]=s.toString()}return i=this.oDateParts?this.oDateParts:isNaN(this.oDate)?{day:"1",fractionalSecond:"0",hour:"0",minute:"0",month:"1",second:"0"}:hw._getParts(this.oDate,this.sTimezoneID),l=Object.assign({},i,l),r=hw._getDateFromParts(l),isNaN(r)?this.setTime(NaN):(a=r.getTime()+1e3*hw.calculateOffset(r,this.sTimezoneID),this.setTime(a))},kw.prototype.clone=function(){return kw.getInstance(this)},kw.prototype.getDate=function(){return this._getPart("day")},kw.prototype.getDay=function(){return this._getPart("weekday")},kw.prototype.getFullYear=function(){return this._getPart("year")},kw.prototype.getHours=function(){return this._getPart("hour")},kw.prototype.getMilliseconds=function(){return this._getPart("fractionalSecond")},kw.prototype.getMinutes=function(){return this._getPart("minute")},kw.prototype.getMonth=function(){return this._getPart("month")},kw.prototype.getSeconds=function(){return this._getPart("second")},kw.prototype.getTimezoneOffset=function(){return hw.calculateOffset(this.oDate,this.sTimezoneID)/60},kw.prototype.getYear=function(){return this._getPart("year")-1900},kw.prototype.setDate=function(e){return this._setParts(["day"],arguments)},kw.prototype.setFullYear=function(e,t,o){return this._setParts(["year","month","day"],arguments)},kw.prototype.setHours=function(e,t,o,i){return this._setParts(["hour","minute","second","fractionalSecond"],arguments)},kw.prototype.setMilliseconds=function(e){return this._setParts(["fractionalSecond"],arguments)},kw.prototype.setMinutes=function(e,t,o){return this._setParts(["minute","second","fractionalSecond"],arguments)},kw.prototype.setMonth=function(e,t){return this._setParts(["month","day"],arguments)},kw.prototype.setSeconds=function(e,t){return this._setParts(["second","fractionalSecond"],arguments)},kw.prototype.setTime=function(e){return this.oDateParts=void 0,this.oDate.setTime(e)},kw.prototype.setYear=function(e){var t=parseInt(e);return t=t<0||t>99?t:t+1900,this._setParts(["year"],[t])},kw.prototype.toDateString=function(){return isNaN(this.oDate)?this.oDate.toDateString():fw[this.getDay()]+" "+bw[this.getMonth()]+" "+ww(this.getDate(),2)+" "+ww(this.getFullYear(),4)},kw.prototype.toString=function(){return isNaN(this.oDate)?this.oDate.toString():this.toDateString()+" "+this.toTimeString()},kw.prototype.toTimeString=function(){var e,t,o,i;return isNaN(this.oDate)?this.oDate.toTimeString():(o=(i=this.getTimezoneOffset())>0?"-":"+",e=Math.floor(Math.abs(i)/60),t=Math.abs(i)%60,ww(this.getHours(),2)+":"+ww(this.getMinutes(),2)+":"+ww(this.getSeconds(),2)+" GMT"+o+ww(e,2)+ww(t,2))},["getTime","getUTCDate","getUTCDay","getUTCFullYear","getUTCHours","getUTCMilliseconds","getUTCMinutes","getUTCMonth","getUTCSeconds","toGMTString","toISOString","toJSON","toUTCString","valueOf"].forEach(function(e){kw.prototype[e]=function(){return this.oDate[e].apply(this.oDate,arguments)}}),["toLocaleDateString","toLocaleString","toLocaleTimeString"].forEach(function(e){kw.prototype[e]=function(t,o){return this.oDate[e](t||hC.getLanguageTag().toString(),Object.assign({timeZone:this.sTimezoneID},o))}}),["setUTCDate","setUTCFullYear","setUTCHours","setUTCMilliseconds","setUTCMinutes","setUTCMonth","setUTCSeconds"].forEach(function(e){kw.prototype[e]=function(){return this.oDateParts=void 0,this.oDate[e].apply(this.oDate,arguments)}}),kw._createDateInstance=function(e){return e[0]instanceof Date&&(e[0]=e[0].valueOf()),new(Function.prototype.bind.apply(Date,[].concat.apply([null],e)))},kw.getInstance=function(){var e=hC.getTimezone();return e!==hw.getLocalTimezone()?new kw(arguments,e):kw._createDateInstance(arguments)},kw.checkDate=function(e){if(isNaN(e.getTime()))throw new Error("The given Date is not valid");if(!(e instanceof kw)&&hC.getTimezone()!==hw.getLocalTimezone())throw new Error("Configured time zone requires the parameter 'oDate' to be an instance of sap.ui.core.date.UI5Date")};var xw=kw,Sw=class extends xw{},Tw=new Map,Bw=function(e){if(!Tw.has(e))throw new Error("Required calendar type: "+e+" not loaded.");return Tw.get(e)},Iw=function(e,t){Tw.set(e,t)},Dw={getWeekConfigurationValues:function(e,t){var o;return e?MC.getWeekConfigurationValues(e)||(e===MC.Default?(t=t||new vC(SC()),{firstDayOfWeek:(o=QC.getInstance(t)).getFirstDayOfWeek(),minimalDaysInFirstWeek:o.getMinimalDaysInFirstWeek()}):void 0):Dw.getWeekConfigurationValues(IC(),t)}},Aw=_C.extend("sap.ui.core.date.UniversalDate",{constructor:function(){var e=Aw.getClass();return this.createDate(e,arguments)}});Aw.UTC=function(){var e=Aw.getClass();return e.UTC.apply(e,arguments)},Aw.now=function(){return Date.now()},Aw.prototype.createDate=function(e,t){return e===Date?kw.getInstance.apply(null,t):new e(...t)},Aw.getInstance=function(e,t){var o,i;if(e instanceof Aw&&(e=e.getJSDate()),e&&isNaN(e.getTime()))throw new Error("The given date object is invalid");return t||(t=TC()),o=Aw.getClass(t),(i=Object.create(o.prototype)).oDate=e?kw.getInstance(e):kw.getInstance(),i.sCalendarType=t,i},Aw.getClass=function(e){return e||(e=TC()),Bw(e)},["getDate","getMonth","getFullYear","getYear","getDay","getHours","getMinutes","getSeconds","getMilliseconds","getUTCDate","getUTCMonth","getUTCFullYear","getUTCDay","getUTCHours","getUTCMinutes","getUTCSeconds","getUTCMilliseconds","getTime","valueOf","getTimezoneOffset","toString","toDateString","setDate","setFullYear","setYear","setMonth","setHours","setMinutes","setSeconds","setMilliseconds","setUTCDate","setUTCFullYear","setUTCMonth","setUTCHours","setUTCMinutes","setUTCSeconds","setUTCMilliseconds"].forEach(function(e){Aw.prototype[e]=function(){return this.oDate[e].apply(this.oDate,arguments)}}),Aw.prototype.getJSDate=function(){return this.oDate},Aw.prototype.getCalendarType=function(){return this.sCalendarType},Aw.prototype.getEra=function(){return Aw.getEraByDate(this.sCalendarType,this.oDate.getFullYear(),this.oDate.getMonth(),this.oDate.getDate())},Aw.prototype.setEra=function(e){},Aw.prototype.getUTCEra=function(){return Aw.getEraByDate(this.sCalendarType,this.oDate.getUTCFullYear(),this.oDate.getUTCMonth(),this.oDate.getUTCDate())},Aw.prototype.setUTCEra=function(e){},Aw.prototype.getWeek=function(e,t){return Aw.getWeekByDate(this.sCalendarType,this.getFullYear(),this.getMonth(),this.getDate(),e,t)},Aw.prototype.setWeek=function(e,t,o){var i=Aw.getFirstDateOfWeek(this.sCalendarType,e.year||this.getFullYear(),e.week,t,o);this.setFullYear(i.year,i.month,i.day)},Aw.prototype.getUTCWeek=function(e,t){return Aw.getWeekByDate(this.sCalendarType,this.getUTCFullYear(),this.getUTCMonth(),this.getUTCDate(),e,t)},Aw.prototype.setUTCWeek=function(e,t,o){var i=Aw.getFirstDateOfWeek(this.sCalendarType,e.year||this.getFullYear(),e.week,t,o);this.setUTCFullYear(i.year,i.month,i.day)},Aw.prototype.getQuarter=function(){return Math.floor(this.getMonth()/3)},Aw.prototype.getUTCQuarter=function(){return Math.floor(this.getUTCMonth()/3)},Aw.prototype.getDayPeriod=function(){return this.getHours()<12?0:1},Aw.prototype.getUTCDayPeriod=function(){return this.getUTCHours()<12?0:1},Aw.prototype.getTimezoneShort=function(){if(this.oDate.getTimezoneShort)return this.oDate.getTimezoneShort()},Aw.prototype.getTimezoneLong=function(){if(this.oDate.getTimezoneLong)return this.oDate.getTimezoneLong()};var Pw=6048e5;function Mw(e,t){var o=QC.getInstance(t);return(e===MC.Default||e===MC.WesternTraditional)&&o.firstDayStartsFirstWeek()}function Ew(e){if("object"==typeof e){if("number"!=typeof e.firstDayOfWeek||"number"!=typeof e.minimalDaysInFirstWeek)throw new TypeError("Week config requires firstDayOfWeek and minimalDaysInFirstWeek to be set")}else if(!Object.values(MC).includes(e))throw new TypeError("Illegal format option calendarWeekNumbering: '"+e+"'")}function zw(e,t,o,i){var r=function(e,t){return"object"==typeof e&&"number"==typeof e.firstDayOfWeek&&"number"==typeof e.minimalDaysInFirstWeek?e:Dw.getWeekConfigurationValues(e,t)}(i,o=o||new vC(SC())),a=r.minimalDaysInFirstWeek,n=r.firstDayOfWeek,s=new e(e.UTC(t,0,1)),l=7;if(isNaN(s.getTime()))throw new Error("Could not determine the first day of the week, because the date object is invalid");for(;s.getUTCDay()!==n;)s.setUTCDate(s.getUTCDate()-1),l--;return l<a&&s.setUTCDate(s.getUTCDate()+7),s}function Fw(e,t){return Math.floor((t.valueOf()-e.valueOf())/Pw)}Aw.getWeekByDate=function(e,t,o,i,r,a){Ew(a=a||IC()),r=r||new vC(SC());var n,s,l,c,_=this.getClass(e),d=zw(_,t,r,a),u=new _(_.UTC(t,o,i));return Mw(a,r)?n=Fw(d,u):(l=t+1,c=zw(_,s=t-1,r,a),u>=zw(_,l,r,a)?(t=l,n=0):u<d?(t=s,n=Fw(c,u)):n=Fw(d,u)),{year:t,week:n}},Aw.getFirstDateOfWeek=function(e,t,o,i,r){Ew(r=r||IC()),i=i||new vC(SC());var a=this.getClass(e),n=zw(a,t,i,r),s=new a(n.valueOf()+o*Pw);return Mw(r,i)&&0===o&&n.getUTCFullYear()<t?{year:t,month:0,day:1}:{year:s.getUTCFullYear(),month:s.getUTCMonth(),day:s.getUTCDate()}};var Rw={};function Ow(e){var t=new vC(SC()),o=QC.getInstance(t);if(!(i=Rw[e])){var i;(i=o.getEraDates(e))[0]||(i[0]={_start:"1-1-1"});for(var r=0;r<i.length;r++){var a=i[r];a&&(a._start&&(a._startInfo=Lw(a._start)),a._end&&(a._endInfo=Lw(a._end)))}Rw[e]=i}return i}function Lw(e){var t,o,i,r=e.split("-");return""==r[0]?(t=-parseInt(r[1]),o=parseInt(r[2])-1,i=parseInt(r[3])):(t=parseInt(r[0]),o=parseInt(r[1])-1,i=parseInt(r[2])),{timestamp:new Date(0).setUTCFullYear(t,o,i),year:t,month:o,day:i}}Aw.getEraByDate=function(e,t,o,i){for(var r,a=Ow(e),n=new Date(0).setUTCFullYear(t,o,i),s=a.length-1;s>=0;s--)if(r=a[s]){if(r._start&&n>=r._startInfo.timestamp)return s;if(r._end&&n<r._endInfo.timestamp)return s}},Aw.getCurrentEra=function(e){var t=kw.getInstance();return this.getEraByDate(e,t.getFullYear(),t.getMonth(),t.getDate())},Aw.getEraStartDate=function(e,t){var o=Ow(e),i=o[t]||o[0];if(i._start)return i._startInfo};var Nw=Aw,Hw=class e{constructor(t,o,i,r){let a,n,s,l=arguments;switch(l.length){case 0:return n=Sw.getInstance(),this.constructor(n.getFullYear(),n.getMonth(),n.getDate());case 1:case 2:if(!(l[0]instanceof e))throw new Error("Invalid arguments: the first argument must be of type CalendarDate.");s=l[1]?l[1]:l[0]._oUDate.sCalendarType,a=Sw.getInstance(l[0].valueOf()),a.setFullYear(a.getUTCFullYear(),a.getUTCMonth(),a.getUTCDate()),a.setHours(a.getUTCHours(),a.getUTCMinutes(),a.getUTCSeconds(),a.getUTCMilliseconds()),this._oUDate=Uw(a,s);break;case 3:case 4:qw(l[0],`Invalid year: ${l[0]}`),qw(l[1],`Invalid month: ${l[1]}`),qw(l[2],`Invalid date: ${l[2]}`),a=Sw.getInstance(0,0,1),a.setFullYear(l[0],l[1],l[2]),l[3]&&(s=l[3]),this._oUDate=Uw(a,s);break;default:throw new Error(`Invalid arguments. Accepted arguments are: 1) oCalendarDate, (optional)calendarTypeor 2) year, month, date, (optional) calendarType${l}`)}}getYear(){return this._oUDate.getUTCFullYear()}setYear(e){return qw(e,`Invalid year: ${e}`),this._oUDate.setUTCFullYear(e),this}getMonth(){return this._oUDate.getUTCMonth()}setMonth(e,t){return qw(e,`Invalid month: ${e}`),t||0===t?(qw(t,`Invalid date: ${t}`),this._oUDate.setUTCMonth(e,t)):this._oUDate.setUTCMonth(e),this}getDate(){return this._oUDate.getUTCDate()}setDate(e){return qw(e,`Invalid date: ${e}`),this._oUDate.setUTCDate(e),this}getDay(){return this._oUDate.getUTCDay()}getCalendarType(){return this._oUDate.sCalendarType}isBefore(e){return Ww(e),this.valueOf()<e.valueOf()}isAfter(e){return Ww(e),this.valueOf()>e.valueOf()}isSameOrBefore(e){return Ww(e),this.valueOf()<=e.valueOf()}isSameOrAfter(e){return Ww(e),this.valueOf()>=e.valueOf()}isSame(e){return Ww(e),this.valueOf()===e.valueOf()}toLocalJSDate(){const e=Sw.getInstance(this._oUDate.getTime());return e.setFullYear(e.getUTCFullYear(),e.getUTCMonth(),e.getUTCDate()),e.setHours(0,0,0,0),e}toUTCJSDate(){const e=Sw.getInstance(this._oUDate.getTime());return e.setUTCHours(0,0,0,0),e}toString(){return`${this._oUDate.sCalendarType}: ${this.getYear()}/${this.getMonth()+1}/${this.getDate()}`}valueOf(){return this._oUDate.getTime()}static fromLocalJSDate(t,o){if(!(i=t)||"[object Date]"!==Object.prototype.toString.call(i)||isNaN(i))throw new Error(`Date parameter must be a JavaScript Date object: [${t}].`);var i;return new e(t.getFullYear(),t.getMonth(),t.getDate(),o)}static fromTimestamp(t,o){const i=new e(0,0,1);let r;try{r=Nw.getInstance(Sw.getInstance(t),o)}catch(a){r=new Date(NaN)}return i._oUDate=r,i}};function Uw(e,t){return t?Nw.getInstance(Vw(e),t):new Nw(Vw(e).getTime())}function Vw(e){const t=new Date(Date.UTC(0,0,1));return t.setUTCFullYear(e.getFullYear(),e.getMonth(),e.getDate()),t}function Ww(e){if(!(e instanceof Hw))throw new Error(`Invalid calendar date: [${e}]. Expected: CalendarDate`)}function qw(e,t){if(void 0===e||e===1/0||isNaN(e))throw t}var jw=(e,t,o,i=!0,r,a)=>{const n=new Hw(e);switch(o){case"day":n.setDate(e.getDate()+t);break;case"month":if(i){n.setMonth(e.getMonth()+t);const o=-1===t&&n.getMonth()===e.getMonth(),i=1===t&&n.getMonth()-e.getMonth()>1;(o||i)&&n.setDate(0)}else 1===t&&n.setMonth(n.getMonth()+1,1),-1===t&&n.setDate(0);break;case"year":n.setYear(e.getYear()+t),n.getMonth()!==e.getMonth()&&n.setDate(0)}return r&&n.isBefore(r)?new Hw(r):a&&n.isAfter(a)?new Hw(a):n};sc();ql("date-time",{pathData:"M11 6c.688 0 1.333.13 1.938.39a5.07 5.07 0 0 1 2.671 2.673c.26.604.391 1.25.391 1.937 0 .688-.13 1.333-.39 1.938a5.068 5.068 0 0 1-2.672 2.671c-.605.26-1.25.391-1.938.391s-1.333-.13-1.938-.39a5.069 5.069 0 0 1-2.671-2.672A4.842 4.842 0 0 1 6 11c0-.688.13-1.333.39-1.938a5.07 5.07 0 0 1 2.673-2.671A4.828 4.828 0 0 1 11 6ZM1 1h2V0h1v1h6V0h1v1h2c.292 0 .531.094.719.281A.973.973 0 0 1 14 2v3h-1V4H1v11h4v1H1a.973.973 0 0 1-.719-.281A.974.974 0 0 1 0 15V2c0-.292.094-.531.281-.719A.973.973 0 0 1 1 1Zm6 10c0 .563.104 1.083.313 1.563a4.065 4.065 0 0 0 2.125 2.124c.479.209 1 .313 1.562.313.563 0 1.083-.104 1.563-.313a4.064 4.064 0 0 0 2.124-2.124c.209-.48.313-1 .313-1.563s-.104-1.083-.313-1.563a4.064 4.064 0 0 0-2.124-2.124C12.082 7.104 11.563 7 11 7s-1.083.104-1.563.313a4.065 4.065 0 0 0-2.124 2.125A3.86 3.86 0 0 0 7 11Zm3.969-2c.333 0 .5.167.5.5V11H13c.333 0 .5.167.5.5 0 .125-.047.24-.14.344A.462.462 0 0 1 13 12h-2.031a.462.462 0 0 1-.36-.156.503.503 0 0 1-.14-.344v-2c0-.333.166-.5.5-.5ZM11 3V2h-1v1h1ZM3 2v1h1V2H3Z",ltr:!0,viewBox:"0 0 16 16",collection:"SAP-icons-v4",packageName:"@ui5/webcomponents-icons"}),sc();ql("date-time",{pathData:"M11.25 0a.75.75 0 0 1 .75.75V2c1.583 0 3 1.058 3 2.75v.5a.75.75 0 0 1-1.5 0v-.5c0-.868-.741-1.25-1.5-1.25v.75a.75.75 0 0 1-1.5 0V3.5h-5v.75a.75.75 0 0 1-1.5 0V3.5c-.759 0-1.5.382-1.5 1.25V6h1.82a.75.75 0 0 1 0 1.5H2.5v5.75c0 .69.56 1.25 1.25 1.25h.5a.75.75 0 0 1 0 1.5h-.5A2.75 2.75 0 0 1 1 13.25v-8.5C1 3.058 2.417 2 4 2V.75a.75.75 0 0 1 1.5 0V2h5V.75a.75.75 0 0 1 .75-.75ZM11 6a5 5 0 1 1 0 10 5 5 0 0 1 0-10Zm0 1.5a3.5 3.5 0 1 0 0 7 3.5 3.5 0 0 0 0-7Zm-.25 1a.75.75 0 0 1 .75.75v1.639l.969.775a.75.75 0 0 1-.938 1.172l-1.25-1A.75.75 0 0 1 10 11.25v-2a.75.75 0 0 1 .75-.75Z",ltr:!0,viewBox:"0 0 16 16",collection:"SAP-icons-v5",packageName:"@ui5/webcomponents-icons"}),Aa();var Yw=/('')|'([^']+(?:''[^']*)*)(?:'|$)|\{([0-9]+(?:\s*,[^{}]*)?)\}|[{}]/g,$w=function(e,t,o,i,r){if("boolean"==typeof o&&(i=o,o=void 0),r||(r=0),o||(o=10),r>o)return aC.warning("deepEqual comparison exceeded maximum recursion depth of "+o+". Treating values as unequal"),!1;if(e===t||Number.isNaN(e)&&Number.isNaN(t))return!0;if(Array.isArray(e)&&Array.isArray(t)){if(!i&&e.length!==t.length)return!1;if(e.length>t.length)return!1;for(var a=0;a<e.length;a++)if(!$w(e[a],t[a],o,i,r+1))return!1;return!0}if("object"==typeof e&&"object"==typeof t){if(!e||!t)return!1;if(e.constructor!==t.constructor)return!1;if(!i&&Object.keys(e).length!==Object.keys(t).length)return!1;if(e instanceof Node)return e.isEqualNode(t);if(e instanceof Date)return e.valueOf()===t.valueOf();for(var a in e)if(!$w(e[a],t[a],o,i,r+1))return!1;return!0}return!1},Gw={},Kw={init:function(e){var t=e&&e.name;return t&&!Gw[t]&&(Gw[t]={name:t,getName:function(){return t},isSettingsEnhanced:function(){return!1},getResourceBundle:function(){return{getText:function(){return""}}},_loadResourceBundle:function(){return Promise.resolve()}}),Gw[t]},get:function(e){return Gw[e]},all:function(){return Object.assign({},Gw)},load:function(){return Promise.resolve()},_get:function(e){return Gw[e]}},Zw={collectOriginInfo:()=>!1},Xw={},Jw=/[\u061c\u200e\u200f\u202a\u202b\u202c]/g,Qw=/\s/g;Xw.normalize=function(e,t){return e.replace(Jw,"").replace(Qw,t?"":" ")};var ek=function(){throw new Error},tk="time",ok="datetime",ik="datetimeWithTimezone",rk={},ak=function(e){if("string"!=typeof e&&!(e instanceof String)&&null!=e)throw new TypeError("The given timezone must be a string.")};ek.oDateInfo={type:"date",oDefaultFormatOptions:{style:"medium",relativeScale:"day",relativeStyle:"wide"},aFallbackFormatOptions:[{style:"short"},{style:"medium"},{pattern:"yyyy-MM-dd"},{pattern:"yyyyMMdd",strictParsing:!0}],bShortFallbackFormatOptions:!0,bPatternFallbackWithoutDelimiter:!0,getPattern:function(e,t,o){return e.getDatePattern(t,o)},oRequiredParts:{text:!0,year:!0,weekYear:!0,month:!0,day:!0},aRelativeScales:["year","month","week","day"],aRelativeParseScales:["year","quarter","month","week","day","hour","minute","second"],aIntervalCompareFields:["Era","FullYear","Quarter","Month","Week","Date"]},ek.oDateTimeInfo={type:ok,oDefaultFormatOptions:{style:"medium",relativeScale:"auto",relativeStyle:"wide"},aFallbackFormatOptions:[{style:"short"},{style:"medium"},{pattern:"yyyy-MM-dd'T'HH:mm:ss"},{pattern:"yyyyMMdd HHmmss"}],getPattern:function(e,t,o){var i=t.indexOf("/");return i>0?e.getCombinedDateTimePattern(t.substr(0,i),t.substr(i+1),o):e.getCombinedDateTimePattern(t,t,o)},oRequiredParts:{text:!0,year:!0,weekYear:!0,month:!0,day:!0,hour0_23:!0,hour1_24:!0,hour0_11:!0,hour1_12:!0},aRelativeScales:["year","month","week","day","hour","minute","second"],aRelativeParseScales:["year","quarter","month","week","day","hour","minute","second"],aIntervalCompareFields:["Era","FullYear","Quarter","Month","Week","Date","DayPeriod","Hours","Minutes","Seconds"]},ek._getDateTimeWithTimezoneInfo=function(e){var t=void 0===e.showDate||e.showDate,o=void 0===e.showTime||e.showTime,i=void 0===e.showTimezone||e.showTimezone,r=ek.oDateTimeInfo;return t&&!o?r=ek.oDateInfo:!t&&o&&(r=ek.oTimeInfo),Object.assign({},r,{type:ik,getTimezonePattern:function(e){return t||o||!i?i?e+" VV":e:"VV"},getPattern:function(e,a,n){if(!t&&!o&&i)return"VV";if(!i)return r.getPattern(e,a,n);var s=r.getPattern(e,a,n);return e.applyTimezonePattern(s)}})},ek.oTimeInfo={type:tk,oDefaultFormatOptions:{style:"medium",relativeScale:"auto",relativeStyle:"wide"},aFallbackFormatOptions:[{style:"short"},{style:"medium"},{pattern:"HH:mm:ss"},{pattern:"HHmmss"}],getPattern:function(e,t,o){return e.getTimePattern(t,o)},oRequiredParts:{text:!0,hour0_23:!0,hour1_24:!0,hour0_11:!0,hour1_12:!0},aRelativeScales:["hour","minute","second"],aRelativeParseScales:["year","quarter","month","week","day","hour","minute","second"],aIntervalCompareFields:["DayPeriod","Hours","Minutes","Seconds"]},ek.getInstance=function(e,t){return this.getDateInstance(e,t)},ek.getDateInstance=function(e,t){return this.createInstance(e,t,this.oDateInfo)},ek.getDateTimeInstance=function(e,t){return this.createInstance(e,t,this.oDateTimeInfo)},ek.getDateTimeWithTimezoneInstance=function(e,t){if(e&&!(e instanceof vC)&&(function(){if("string"==typeof(e=Object.assign({},e)).showTimezone){var t=e.showTimezone;void 0===e.showDate&&void 0===e.showTime&&("Hide"===t?e.showTimezone=!1:"Only"===t&&(e.showDate=!1,e.showTime=!1)),e.showTimezone="Hide"!==t}}(),!1===e.showDate&&!1===e.showTime&&!1===e.showTimezone))throw new TypeError("Invalid Configuration. One of the following format options must be true: showDate, showTime or showTimezone.");return this.createInstance(e,t,ek._getDateTimeWithTimezoneInfo(e||{}))},ek.getTimeInstance=function(e,t){return this.createInstance(e,t,this.oTimeInfo)},ek.createInstance=function(e,t,o,i){var r,a,n=Object.create(this.prototype);if(e instanceof vC&&(t=e,e=void 0),t||(t=new vC(SC())),n.oLocale=t,n.oLocaleData=QC.getInstance(t),n.oFormatOptions=UC({},o.oDefaultFormatOptions,e),o.type===ik?(n.oFormatOptions.interval=!1,n.oFormatOptions.singleIntervalValue=!1,n.oFormatOptions.UTC=!1):(n.oFormatOptions.showTimezone=void 0,n.oFormatOptions.showDate=void 0,n.oFormatOptions.showTime=void 0),n.type=o.type,n.oFormatOptions.calendarType||(n.oFormatOptions.calendarType=TC()),void 0===n.oFormatOptions.firstDayOfWeek&&void 0!==n.oFormatOptions.minimalDaysInFirstWeek||void 0!==n.oFormatOptions.firstDayOfWeek&&void 0===n.oFormatOptions.minimalDaysInFirstWeek)throw new TypeError("Format options firstDayOfWeek and minimalDaysInFirstWeek need both to be set, but only one was provided.");if(n.oFormatOptions.calendarWeekNumbering&&!Object.values(MC).includes(n.oFormatOptions.calendarWeekNumbering))throw new TypeError("Illegal format option calendarWeekNumbering: '"+n.oFormatOptions.calendarWeekNumbering+"'");if(n.oFormatOptions.pattern||(n.oFormatOptions.format?n.oFormatOptions.pattern=n.oLocaleData.getCustomDateTimePattern(n.oFormatOptions.format,n.oFormatOptions.calendarType):n.oFormatOptions.pattern=o.getPattern(n.oLocaleData,n.oFormatOptions.style,n.oFormatOptions.calendarType)),n.oFormatOptions.interval){var s,l=n.oFormatOptions.intervalDelimiter;n.oFormatOptions.format?(n.intervalPatterns=n.oLocaleData.getCustomIntervalPattern(n.oFormatOptions.format,null,n.oFormatOptions.calendarType),"string"==typeof n.intervalPatterns&&(n.intervalPatterns=[n.intervalPatterns]),s=n.oLocaleData.getCustomDateTimePattern(n.oFormatOptions.format,n.oFormatOptions.calendarType),n.intervalPatterns.push(s)):(s=n.oFormatOptions.pattern,n.intervalPatterns=[n.oLocaleData.getCombinedIntervalPattern(n.oFormatOptions.pattern,n.oFormatOptions.calendarType),n.oFormatOptions.pattern]),n.intervalPatterns.push(n.oFormatOptions.pattern+" - "+n.oFormatOptions.pattern),l&&(l="'"+(l=l.replace(/'/g,"''"))+"'",n.intervalPatterns.unshift(s+l+s)),n.intervalPatterns=Array.from(new Set(n.intervalPatterns))}return i||(r=o.aFallbackFormatOptions,o.bShortFallbackFormatOptions&&(a=o.getPattern(n.oLocaleData,"short"),r=r.concat(ek._createFallbackOptionsWithoutDelimiter(a))),n.oFormatOptions.pattern&&o.bPatternFallbackWithoutDelimiter&&(r=ek._createFallbackOptionsWithoutDelimiter(n.oFormatOptions.pattern).concat(r)),r=r.reduce(function(e,t){var o=Object.keys(t);return e.some(function(e){return Object.keys(e).length===o.length&&o.every(function(o){return e[o]===t[o]})})||e.push(t),e},[]),n.aFallbackFormats=ek._createFallbackFormat(r,n.oFormatOptions.calendarType,t,o,n.oFormatOptions)),n.oRequiredParts=o.oRequiredParts,n.aRelativeScales=o.aRelativeScales,n.aRelativeParseScales=o.aRelativeParseScales,n.aIntervalCompareFields=o.aIntervalCompareFields,n.init(),n},ek.prototype.init=function(){var e=this.oFormatOptions.calendarType;this.aMonthsAbbrev=this.oLocaleData._getMonthsWithAlternatives("abbreviated",e),this.aMonthsWide=this.oLocaleData.getMonths("wide",e),this.aMonthsNarrow=this.oLocaleData.getMonths("narrow",e),this.aMonthsAbbrevSt=this.oLocaleData._getMonthsStandAloneWithAlternatives("abbreviated",e),this.aMonthsWideSt=this.oLocaleData.getMonthsStandAlone("wide",e),this.aMonthsNarrowSt=this.oLocaleData.getMonthsStandAlone("narrow",e),this.aDaysAbbrev=this.oLocaleData.getDays("abbreviated",e),this.aDaysWide=this.oLocaleData.getDays("wide",e),this.aDaysNarrow=this.oLocaleData.getDays("narrow",e),this.aDaysShort=this.oLocaleData.getDays("short",e),this.aDaysAbbrevSt=this.oLocaleData.getDaysStandAlone("abbreviated",e),this.aDaysWideSt=this.oLocaleData.getDaysStandAlone("wide",e),this.aDaysNarrowSt=this.oLocaleData.getDaysStandAlone("narrow",e),this.aDaysShortSt=this.oLocaleData.getDaysStandAlone("short",e),this.aQuartersAbbrev=this.oLocaleData.getQuarters("abbreviated",e),this.aQuartersWide=this.oLocaleData.getQuarters("wide",e),this.aQuartersNarrow=this.oLocaleData.getQuarters("narrow",e),this.aQuartersAbbrevSt=this.oLocaleData.getQuartersStandAlone("abbreviated",e),this.aQuartersWideSt=this.oLocaleData.getQuartersStandAlone("wide",e),this.aQuartersNarrowSt=this.oLocaleData.getQuartersStandAlone("narrow",e),this.aErasNarrow=this.oLocaleData.getEras("narrow",e),this.aErasAbbrev=this.oLocaleData.getEras("abbreviated",e),this.aErasWide=this.oLocaleData.getEras("wide",e),this.aDayPeriodsAbbrev=this.oLocaleData.getDayPeriods("abbreviated",e),this.aDayPeriodsNarrow=this.oLocaleData.getDayPeriods("narrow",e),this.aDayPeriodsWide=this.oLocaleData.getDayPeriods("wide",e),this.oFlexibleDayPeriodsAbbrev=this.oLocaleData.getFlexibleDayPeriods("abbreviated",e),this.oFlexibleDayPeriodsNarrow=this.oLocaleData.getFlexibleDayPeriods("narrow",e),this.oFlexibleDayPeriodsWide=this.oLocaleData.getFlexibleDayPeriods("wide",e),this.oFlexibleDayPeriodsAbbrevSt=this.oLocaleData.getFlexibleDayPeriodsStandAlone("abbreviated",e),this.oFlexibleDayPeriodsNarrowSt=this.oLocaleData.getFlexibleDayPeriodsStandAlone("narrow",e),this.oFlexibleDayPeriodsWideSt=this.oLocaleData.getFlexibleDayPeriodsStandAlone("wide",e),this.aFormatArray=this.parseCldrDatePattern(this.oFormatOptions.pattern),this.sAllowedCharacters=this.getAllowedCharacters(this.aFormatArray)},ek._createFallbackFormat=function(e,t,o,i,r){return e.map(function(e){var a=Object.assign({},e);return a.showDate=r.showDate,a.showTime=r.showTime,a.showTimezone=r.showTimezone,"function"==typeof i.getTimezonePattern&&a.pattern&&(a.pattern=i.getTimezonePattern(a.pattern)),r.interval&&(a.interval=!0),a.calendarType=t,ek.createInstance(a,o,i,!0)})},ek._createFallbackOptionsWithoutDelimiter=function(e){var t=/d+/g,o="dd",i=/M+/g,r="MM",a={regex:/[yU]+/g,replace:["yyyy","yy"]};return e=(e=(e=e.replace(/[^dMyGU]/g,"")).replace(t,o)).replace(i,r),a.replace.map(function(t){return{pattern:e.replace(a.regex,t),strictParsing:!0}})};var nk={isNumber:function(e){return e>=48&&e<=57},findNumbers:function(e,t){for(var o=0;o<t&&this.isNumber(e.charCodeAt(o));)o++;return e.substr(0,o)},startsWithIgnoreCase:function(e,t,o){if(e.startsWith(t))return!0;try{var i=t.toLocaleUpperCase(o),r=e.toLocaleUpperCase(o);return i.length===t.length&&r.length===e.length&&r.startsWith(i)}catch(a){return!1}},findEntry:function(e,t,o){let i=-1,r=0;return t.forEach((t,a)=>{(Array.isArray(t)?t:[t]).forEach(t=>{t.length>r&&this.startsWithIgnoreCase(e,t,o)&&(i=a,r=t.length)})}),{index:i,length:r}},parseTZ:function(e,t){var o,i=0,r="+"===e.charAt(0)?-1:1;if("Z"===e[0])return{length:1,tzDiff:0};i++,o=this.findNumbers(e.substr(i),2);var a=parseInt(o);i+=2,t&&i++;var n=0;return(o=this.findNumbers(e.substr(i),2))&&(i+=2,n=parseInt(o)),{length:i,tzDiff:60*(n+60*a)*r}},checkValid:function(e,t,o){return!(e in o.oRequiredParts)||!t}};ek._oParseHelper=nk,ek._createPatternSymbol=function(e){var t="function"==typeof e.isNumeric&&e.isNumeric||function(){return e.isNumeric||!1};return{name:e.name,format:e.format||function(){return""},parse:e.parse||function(){return{}},isNumeric:t}},ek.prototype.oSymbols={"":ek._createPatternSymbol({name:"text",format:function(e,t){return e.value},parse:function(e,t,o,i){var r,a=!0,n=0,s=0,l="-~‐‑‒–—﹘﹣-~";const c=Xw.normalize(t.value);for(;s<c.length;s++){if(" "===(r=c.charAt(s)))for(;" "===e.charAt(n);)n++;else l.includes(r)?(l.includes(e.charAt(n))||(a=!1),n++):(e.charAt(n)!==r&&(a=!1),n++);if(!a)break}if(a)return{length:n};var _=!1;return i.index<i.formatArray.length-1&&(_=i.formatArray[i.index+1].type in o.oRequiredParts),{valid:nk.checkValid(t.type,_,o)}}}),G:ek._createPatternSymbol({name:"era",format:function(e,t,o,i){var r=t.getUTCEra();return e.digits<=3?i.aErasAbbrev[r]:4===e.digits?i.aErasWide[r]:i.aErasNarrow[r]},parse:function(e,t,o,i){for(var r=[o.aErasWide,o.aErasAbbrev,o.aErasNarrow],a=0;a<r.length;a++){var n=r[a],s=nk.findEntry(e,n,o.oLocaleData.sCLDRLocaleId);if(-1!==s.index)return{era:s.index,length:s.length}}return{era:o.aErasWide.length-1,valid:nk.checkValid(t.type,!0,o)}}}),y:ek._createPatternSymbol({name:"year",format:function(e,t,o,i){var r=t.getUTCFullYear(),a=String(r),n=i.oFormatOptions.calendarType;return 2===e.digits&&a.length>2&&(a=a.substr(a.length-2)),n!==PC.Japanese&&1===e.digits&&r<100&&(a=a.padStart(4,"0")),a.padStart(e.digits,"0")},parse:function(e,t,o,i){var r,a,n,s=o.oFormatOptions.calendarType;r=1===t.digits?4:2===t.digits?2:t.digits,n=""===(a=nk.findNumbers(e,r))||i.exactLength&&a.length!==r;var l=parseInt(a);if(s!==PC.Japanese&&a.length<=2){var c=Aw.getInstance(kw.getInstance(),s).getUTCFullYear(),_=Math.floor(c/100),d=100*_+l-c;l+=d<-70?100*(_+1):d<30?100*_:100*(_-1)}return{length:a.length,valid:nk.checkValid(t.type,n,o),year:l}},isNumeric:!0}),Y:ek._createPatternSymbol({name:"weekYear",format:function(e,t,o,i){var r=t.getUTCWeek(i.oLocale,lk(i.oFormatOptions)).year,a=String(r),n=i.oFormatOptions.calendarType;return 2===e.digits&&a.length>2&&(a=a.substr(a.length-2)),n!==PC.Japanese&&1===e.digits&&r<100&&(a=a.padStart(4,"0")),a.padStart(e.digits,"0")},parse:function(e,t,o,i){var r,a,n,s=o.oFormatOptions.calendarType;r=1===t.digits?4:2===t.digits?2:t.digits,n=""===(a=nk.findNumbers(e,r))||i.exactLength&&a.length!==r;var l=parseInt(a),c=l;if(s!==PC.Japanese&&a.length<=2){var _=Aw.getInstance(kw.getInstance(),s).getUTCFullYear(),d=Math.floor(_/100),u=100*d+c-_;c+=u<-70?100*(d+1):u<30?100*d:100*(d-1)}return{length:a.length,valid:nk.checkValid(t.type,n,o),year:l,weekYear:c}},isNumeric:!0}),M:ek._createPatternSymbol({name:"month",format:function(e,t,o,i){var r=t.getUTCMonth();if(3===e.digits){const e=i.aMonthsAbbrev[r];return Array.isArray(e)?e[0]:e}return 4===e.digits?i.aMonthsWide[r]:e.digits>4?i.aMonthsNarrow[r]:String(r+1).padStart(e.digits,"0")},parse:function(e,t,o,i){var r,a,n,s,l=[o.aMonthsWide,o.aMonthsWideSt,o.aMonthsAbbrev,o.aMonthsAbbrevSt,o.aMonthsNarrow,o.aMonthsNarrowSt];if(t.digits<3)n=""===(a=nk.findNumbers(e,Math.max(t.digits,2)))||i.exactLength&&a.length<2,s=nk.checkValid(t.type,n,o),r=parseInt(a)-1,i.strict&&(r>11||r<0)&&(s=!1);else{for(var c=0;c<l.length;c++){var _=l[c],d=nk.findEntry(e,_,o.oLocaleData.sCLDRLocaleId);if(-1!==d.index)return{month:d.index,length:d.length}}s=nk.checkValid(t.type,!0,o)}return{month:r,length:a?a.length:0,valid:s}},isNumeric:function(e){return e<3}}),L:ek._createPatternSymbol({name:"monthStandalone",format:function(e,t,o,i){var r=t.getUTCMonth();if(3===e.digits){const e=i.aMonthsAbbrevSt[r];return Array.isArray(e)?e[0]:e}return 4===e.digits?i.aMonthsWideSt[r]:e.digits>4?i.aMonthsNarrowSt[r]:String(r+1).padStart(e.digits,"0")},parse:function(e,t,o,i){var r,a,n,s,l=[o.aMonthsWide,o.aMonthsWideSt,o.aMonthsAbbrev,o.aMonthsAbbrevSt,o.aMonthsNarrow,o.aMonthsNarrowSt];if(t.digits<3)n=""===(a=nk.findNumbers(e,Math.max(t.digits,2)))||i.exactLength&&a.length<2,s=nk.checkValid(t.type,n,o),r=parseInt(a)-1,i.strict&&(r>11||r<0)&&(s=!1);else{for(var c=0;c<l.length;c++){var _=l[c],d=nk.findEntry(e,_,o.oLocaleData.sCLDRLocaleId);if(-1!==d.index)return{month:d.index,length:d.length}}s=nk.checkValid(t.type,!0,o)}return{month:r,length:a?a.length:0,valid:s}},isNumeric:function(e){return e<3}}),w:ek._createPatternSymbol({name:"weekInYear",format:function(e,t,o,i){var r=t.getUTCWeek(i.oLocale,lk(i.oFormatOptions)).week,a=String(r+1);return a=e.digits<3?a.padStart(e.digits,"0"):i.oLocaleData.getCalendarWeek(3===e.digits?"narrow":"wide",a.padStart(2,"0"))},parse:function(e,t,o,i){var r,a,n,s,l=0;if(t.digits<3)l=(r=nk.findNumbers(e,2)).length,s=parseInt(r)-1,a=!r||i.exactLength&&l<2,n=nk.checkValid(t.type,a,o);else{r=(r=o.oLocaleData.getCalendarWeek(3===t.digits?"narrow":"wide")).replace("{0}","([0-9]+)");var c=new RegExp(r).exec(e);c?(l=c[0].length,s=parseInt(c[c.length-1])-1):n=nk.checkValid(t.type,!0,o)}return{length:l,valid:n,week:s}},isNumeric:function(e){return e<3}}),W:ek._createPatternSymbol({name:"weekInMonth"}),D:ek._createPatternSymbol({name:"dayInYear"}),d:ek._createPatternSymbol({name:"day",format:function(e,t){var o=t.getUTCDate();return String(o).padStart(e.digits,"0")},parse:function(e,t,o,i){var r=nk.findNumbers(e,Math.max(t.digits,2)),a=""===r||i.exactLength&&r.length<2,n=nk.checkValid(t.type,a,o),s=parseInt(r);return i.strict&&(s>31||s<1)&&(n=!1),{day:s,length:r.length,valid:n}},isNumeric:!0}),Q:ek._createPatternSymbol({name:"quarter",format:function(e,t,o,i){var r=t.getUTCQuarter();return 3===e.digits?i.aQuartersAbbrev[r]:4===e.digits?i.aQuartersWide[r]:e.digits>4?i.aQuartersNarrow[r]:String(r+1).padStart(e.digits,"0")},parse:function(e,t,o,i){var r,a,n,s,l=[o.aQuartersWide,o.aQuartersWideSt,o.aQuartersAbbrev,o.aQuartersAbbrevSt,o.aQuartersNarrow,o.aQuartersNarrowSt];if(t.digits<3)a=""===(r=nk.findNumbers(e,Math.max(t.digits,2)))||i.exactLength&&r.length<2,s=nk.checkValid(t.type,a,o),n=parseInt(r)-1,i.strict&&n>3&&(s=!1);else{for(var c=0;c<l.length;c++){var _=l[c],d=nk.findEntry(e,_,o.oLocaleData.sCLDRLocaleId);if(-1!==d.index)return{quarter:d.index,length:d.length}}s=nk.checkValid(t.type,!0,o)}return{length:r?r.length:0,quarter:n,valid:s}},isNumeric:function(e){return e<3}}),q:ek._createPatternSymbol({name:"quarterStandalone",format:function(e,t,o,i){var r=t.getUTCQuarter();return 3===e.digits?i.aQuartersAbbrevSt[r]:4===e.digits?i.aQuartersWideSt[r]:e.digits>4?i.aQuartersNarrowSt[r]:String(r+1).padStart(e.digits,"0")},parse:function(e,t,o,i){var r,a,n,s,l=[o.aQuartersWide,o.aQuartersWideSt,o.aQuartersAbbrev,o.aQuartersAbbrevSt,o.aQuartersNarrow,o.aQuartersNarrowSt];if(t.digits<3)a=""===(r=nk.findNumbers(e,Math.max(t.digits,2)))||i.exactLength&&r.length<2,s=nk.checkValid(t.type,a,o),n=parseInt(r)-1,i.strict&&n>3&&(s=!1);else{for(var c=0;c<l.length;c++){var _=l[c],d=nk.findEntry(e,_,o.oLocaleData.sCLDRLocaleId);if(-1!==d.index)return{quarter:d.index,length:d.length}}s=nk.checkValid(t.type,!0,o)}return{length:r?r.length:0,quarter:n,valid:s}},isNumeric:function(e){return e<3}}),F:ek._createPatternSymbol({name:"dayOfWeekInMonth"}),E:ek._createPatternSymbol({name:"dayNameInWeek",format:function(e,t,o,i){var r=t.getUTCDay();return e.digits<4?i.aDaysAbbrev[r]:4===e.digits?i.aDaysWide[r]:5===e.digits?i.aDaysNarrow[r]:i.aDaysShort[r]},parse:function(e,t,o,i){for(var r=[o.aDaysWide,o.aDaysWideSt,o.aDaysAbbrev,o.aDaysAbbrevSt,o.aDaysShort,o.aDaysShortSt,o.aDaysNarrow,o.aDaysNarrowSt],a=0;a<r.length;a++){var n=r[a],s=nk.findEntry(e,n,o.oLocaleData.sCLDRLocaleId);if(-1!==s.index)return{dayOfWeek:s.index,length:s.length}}}}),c:ek._createPatternSymbol({name:"dayNameInWeekStandalone",format:function(e,t,o,i){var r=t.getUTCDay();return e.digits<4?i.aDaysAbbrevSt[r]:4===e.digits?i.aDaysWideSt[r]:5===e.digits?i.aDaysNarrowSt[r]:i.aDaysShortSt[r]},parse:function(e,t,o,i){for(var r=[o.aDaysWide,o.aDaysWideSt,o.aDaysAbbrev,o.aDaysAbbrevSt,o.aDaysShort,o.aDaysShortSt,o.aDaysNarrow,o.aDaysNarrowSt],a=0;a<r.length;a++){var n=r[a],s=nk.findEntry(e,n,o.oLocaleData.sCLDRLocaleId);if(-1!==s.index)return{day:s.index,length:s.length}}}}),u:ek._createPatternSymbol({name:"dayNumberOfWeek",format:function(e,t,o,i){var r=t.getUTCDay();return i._adaptDayOfWeek(r)},parse:function(e,t,o,i){var r=nk.findNumbers(e,t.digits),a=i.exactLength&&r.length!==t.digits;return{dayNumberOfWeek:parseInt(r),length:r.length,valid:nk.checkValid(t.type,a,o)}},isNumeric:!0}),a:ek._createPatternSymbol({name:"amPmMarker",format:function(e,t,o,i){var r=t.getUTCDayPeriod();return e.digits<=3?i.aDayPeriodsAbbrev[r]:4===e.digits?i.aDayPeriodsWide[r]:i.aDayPeriodsNarrow[r]},parse:function(e,t,o,i,r){var a,n,s,l,c,_,d=[o.aDayPeriodsWide,o.aDayPeriodsAbbrev,o.aDayPeriodsNarrow];function u(e){return e.replace(/[\x20\xA0]/g,"").replace(/\./g,"")}for(a=/[aApP](?:\.)?[\x20\xA0]?[mM](?:\.)?/,(n=(c=e.match(a))&&0===c.index)&&(e=u(e)),l=0;l<d.length;l+=1)if(_=d[l].map(e=>Xw.normalize(e)),n&&(_=_.map(u)),-1!==(s=nk.findEntry(e,_,o.oLocaleData.sCLDRLocaleId)).index)return{pm:1===s.index,length:n?c[0].length:s.length};return{valid:!1}}}),B:ek._createPatternSymbol({name:"flexibleDayPeriod",format:function(e,t,o,i){var r=i.aFormatArray.some(function(e){return"hHKk".includes(e.symbol)}),a=i.oLocaleData.getFlexibleDayPeriodOfTime(t.getUTCHours(),t.getUTCMinutes());return r?e.digits<=3?i.oFlexibleDayPeriodsAbbrev[a]:4===e.digits?i.oFlexibleDayPeriodsWide[a]:i.oFlexibleDayPeriodsNarrow[a]:e.digits<=3?i.oFlexibleDayPeriodsAbbrevSt[a]:4===e.digits?i.oFlexibleDayPeriodsWideSt[a]:i.oFlexibleDayPeriodsNarrowSt[a]},parse:function(e,t,o,i){var r,a,n,s=o.aFormatArray.some(function(e){return"hHKk".includes(e.symbol)}),l=[o.oFlexibleDayPeriodsWide,o.oFlexibleDayPeriodsAbbrev,o.oFlexibleDayPeriodsNarrow];if(s)for(r=0;r<l.length;r++)if(n=l[r],-1!==(a=nk.findEntry(e,Object.values(n),o.oLocaleData.sCLDRLocaleId)).index)return{flexDayPeriod:Object.keys(n)[a.index],length:a.length};return{valid:!1}}}),H:ek._createPatternSymbol({name:"hour0_23",format:function(e,t){var o=t.getUTCHours();return String(o).padStart(e.digits,"0")},parse:function(e,t,o,i){var r=nk.findNumbers(e,Math.max(t.digits,2)),a=parseInt(r),n=""===r||i.exactLength&&r.length<2,s=nk.checkValid(t.type,n,o);return i.strict&&a>23&&(s=!1),{hour:a,length:r.length,valid:s}},isNumeric:!0}),k:ek._createPatternSymbol({name:"hour1_24",format:function(e,t){var o=t.getUTCHours();return(0===o?"24":String(o)).padStart(e.digits,"0")},parse:function(e,t,o,i){var r=nk.findNumbers(e,Math.max(t.digits,2)),a=parseInt(r),n=""===r||i.exactLength&&r.length<2,s=nk.checkValid(t.type,n,o);return 24===a&&(a=0),i.strict&&a>23&&(s=!1),{hour:a,length:r.length,valid:s}},isNumeric:!0}),K:ek._createPatternSymbol({name:"hour0_11",format:function(e,t){var o=t.getUTCHours();return String(o>11?o-12:o).padStart(e.digits,"0")},parse:function(e,t,o,i){var r=nk.findNumbers(e,Math.max(t.digits,2)),a=parseInt(r),n=""===r||i.exactLength&&r.length<2,s=nk.checkValid(t.type,n,o);return i.strict&&a>11&&(s=!1),{hour:a,length:r.length,valid:s}},isNumeric:!0}),h:ek._createPatternSymbol({name:"hour1_12",format:function(e,t){var o=t.getUTCHours();return(o>12?String(o-12):0===o?"12":String(o)).padStart(e.digits,"0")},parse:function(e,t,o,i){var r=i.dateValue.pm,a=nk.findNumbers(e,Math.max(t.digits,2)),n=parseInt(a),s=""===a||i.exactLength&&a.length<2,l=nk.checkValid(t.type,s,o);return 12===n&&(n=0,r=void 0===r||r),i.strict&&n>11&&(l=!1),{hour:n,length:a.length,pm:r,valid:l}},isNumeric:!0}),m:ek._createPatternSymbol({name:"minute",format:function(e,t){var o=t.getUTCMinutes();return String(o).padStart(e.digits,"0")},parse:function(e,t,o,i){var r=nk.findNumbers(e,Math.max(t.digits,2)),a=parseInt(r),n=""===r||i.exactLength&&r.length<2,s=nk.checkValid(t.type,n,o);return i.strict&&a>59&&(s=!1),{length:r.length,minute:a,valid:s}},isNumeric:!0}),s:ek._createPatternSymbol({name:"second",format:function(e,t){var o=t.getUTCSeconds();return String(o).padStart(e.digits,"0")},parse:function(e,t,o,i){var r=Math.max(t.digits,2),a=nk.findNumbers(e,r),n=""===a||i.exactLength&&a.length<r,s=parseInt(a),l=nk.checkValid(t.type,n,o);return i.strict&&s>59&&(l=!1),{length:a.length,second:s,valid:l}},isNumeric:!0}),S:ek._createPatternSymbol({name:"fractionalsecond",format:function(e,t){var o=t.getUTCMilliseconds(),i=String(o).padStart(3,"0");return i=(i=i.substr(0,e.digits)).padEnd(e.digits,"0")},parse:function(e,t,o,i){var r=nk.findNumbers(e,t.digits),a=r.length,n=i.exactLength&&a<t.digits;return r=(r=r.substr(0,3)).padEnd(3,"0"),{length:a,millisecond:parseInt(r),valid:nk.checkValid(t.type,n,o)}},isNumeric:!0}),z:ek._createPatternSymbol({name:"timezoneGeneral",format:function(e,t,o,i,r){if(e.digits>3&&t.getTimezoneLong&&t.getTimezoneLong())return t.getTimezoneLong();if(t.getTimezoneShort&&t.getTimezoneShort())return t.getTimezoneShort();var a=hw.calculateOffset(t,r),n="GMT",s=Math.abs(a/60),l=a>0,c=Math.floor(s/60),_=Math.floor(s%60);return o||0===s?n+="Z":(n+=l?"-":"+",n+=String(c).padStart(2,"0"),n+=":",n+=String(_).padStart(2,"0")),n},parse:function(e,t,o,i){var r,a=0,n=e.substring(0,3);if("GMT"===n||"UTC"===n)a=3;else if("UT"===e.substring(0,2))a=2;else{if("Z"!==e.charAt(0))return{error:"cannot be parsed correctly by sap.ui.core.format.DateFormat: The given timezone is not supported!"};a=1,r=0}if("Z"!==e.charAt(0)){var s=nk.parseTZ(e.substr(a),!0);a+=s.length,r=s.tzDiff}return{length:a,tzDiff:r}}}),Z:ek._createPatternSymbol({name:"timezoneRFC822",format:function(e,t,o,i,r){var a=hw.calculateOffset(t,r),n=Math.abs(a/60),s=a>0,l=Math.floor(n/60),c=Math.floor(n%60),_="";return o||(_+=s?"-":"+",_+=String(l).padStart(2,"0"),_+=String(c).padStart(2,"0")),_},parse:function(e,t,o,i){return nk.parseTZ(e,!1)}}),X:ek._createPatternSymbol({name:"timezoneISO8601",format:function(e,t,o,i,r){var a=hw.calculateOffset(t,r),n=Math.abs(a/60),s=a>0,l=Math.floor(n/60),c=Math.floor(n%60),_="";return o||0===n?_+="Z":(_+=s?"-":"+",_+=String(l).padStart(2,"0"),(e.digits>1||c>0)&&(3!==e.digits&&5!==e.digits||(_+=":"),_+=String(c).padStart(2,"0"))),_},parse:function(e,t,o,i){return"Z"===e.charAt(0)?{length:1,tzDiff:0}:nk.parseTZ(e,3===t.digits||5===t.digits)}}),V:ek._createPatternSymbol({name:"timezoneID",format:function(e,t,o,i,r){return o||2!==e.digits?"":i.oLocaleData.getTimezoneTranslations()[r]||r},parse:function(e,t,o,i,r){var a={timezone:"",length:0};if(2===t.digits){var n=o.oLocaleData.getTimezoneTranslations();if(e===n[r=hw.getABAPTimezone(r)])return{timezone:r,length:e.length};var s=Object.values(n),l=nk.findEntry(e,s,o.oLocaleData.sCLDRLocaleId);if(-1!==l.index)return{timezone:Object.keys(n)[l.index],length:l.length};for(var c="",_=e.length;_>0;_-=1)if(c=e.slice(0,_),hw.isValidTimezone(c)){a.timezone=hw.getABAPTimezone(c),a.length=c.length;break}}return a}})},ek.prototype._format=function(e,t,o){if(this.oFormatOptions.relative){var i=this.formatRelative(e,t,this.oFormatOptions.relativeRange,o);if(i)return i}for(var r,a,n,s=this.oFormatOptions.calendarType,l=Aw.getInstance(e,s),c=[],_=0;_<this.aFormatArray.length;_++)n=(r=this.aFormatArray[_]).symbol||"",c.push(this.oSymbols[n].format(r,l,t,this,o));return a=c.join(""),Zw.collectOriginInfo()&&((a=new String(a)).originInfo={source:"Common Locale Data Repository",locale:this.oLocale.toString(),style:this.oFormatOptions.style,pattern:this.oFormatOptions.pattern}),a},ek.prototype.format=function(e,t){var o;if(this.type===ik&&(o=t,t=!1,ak(o),(o=hw.getABAPTimezone(o))&&!hw.isValidTimezone(o)))return aC.error("The given timezone isn't valid."),"";var i,r=this.oFormatOptions.calendarType;if(void 0===t&&(t=this.oFormatOptions.UTC),o=o||hC.getTimezone(),Array.isArray(e)){if(!this.oFormatOptions.interval)return aC.error("Non-interval DateFormat can't format more than one date instance."),"";if(2!==e.length)return aC.error("Interval DateFormat can only format with 2 date instances but "+e.length+" is given."),"";if(e=e.map(function(e){return ck(e,o,t)}),this.oFormatOptions.singleIntervalValue){if(null===e[0])return aC.error("First date instance which is passed to the interval DateFormat shouldn't be null."),"";null===e[1]&&(i=this._format(e[0],t,o))}if(void 0===i){if(!e.every(uk))return aC.error("At least one date instance which is passed to the interval DateFormat isn't valid."),"";i=this._formatInterval(e,t)}}else{if(!uk(e))return null==e&&this.type===ik&&this.oFormatOptions.pattern.includes("VV")?this.oLocaleData.getTimezoneTranslations()[o]||o:(aC.error("The given date instance isn't valid."),"");if(this.oFormatOptions.interval)return aC.error("Interval DateFormat expects an array with two dates for the first argument but only one date is given."),"";e=ck(e,o,t),i=this._format(e,t,o)}return r===PC.Japanese&&"ja"===this.oLocale.getLanguage()&&(i=i.replace(/(^|\D)1\u5e74/g,"$1元年")),i},ek.prototype._useCustomIntervalDelimiter=function(e){return!!this.oFormatOptions.intervalDelimiter&&(!this.oFormatOptions.format||this.oLocaleData._parseSkeletonFormat(this.oFormatOptions.format).some(function(t){return e[t.group]}))},ek.prototype._formatInterval=function(e,t){var o,i,r,a,n,s=[],l=this.oFormatOptions.calendarType,c=Aw.getInstance(e[0],l),_=Aw.getInstance(e[1],l),d=this._getDiffFields([c,_]);if(!d)return this._format(e[0],t);r=this._useCustomIntervalDelimiter(d)?this.intervalPatterns[0]:this.oFormatOptions.format?this.oLocaleData.getCustomIntervalPattern(this.oFormatOptions.format,d,l):this.oLocaleData.getCombinedIntervalPattern(this.oFormatOptions.pattern,l),n=this.parseCldrDatePattern(r),o=c;for(var u=0;u<n.length;u++)a=(i=n[u]).symbol||"",i.repeat&&(o=_),s.push(this.oSymbols[a].format(i,o,t,this));return s.join("")};var sk={Era:"Era",FullYear:"Year",Quarter:"Quarter",Month:"Month",Week:"Week",Date:"Day",DayPeriod:"DayPeriod",Hours:"Hour",Minutes:"Minute",Seconds:"Second"};function lk(e){return e.calendarWeekNumbering?e.calendarWeekNumbering:void 0!==e.firstDayOfWeek&&void 0!==e.minimalDaysInFirstWeek?{firstDayOfWeek:e.firstDayOfWeek,minimalDaysInFirstWeek:e.minimalDaysInFirstWeek}:void 0}ek.prototype._getDiffFields=function(e){var t=!1,o={};return this.aIntervalCompareFields.forEach(function(i){var r="getUTC"+i,a=sk[i];$w(e[0][r].apply(e[0]),e[1][r].apply(e[1]))||(t=!0,o[a]=!0)}),t?o:null},ek.prototype._parse=function(e,t,o,i,r){var a,n,s,l,c,_,d,u={valid:!0,lastTimezonePatternSymbol:""},h=0,p={formatArray:t,dateValue:u,strict:i},g=this;function m(e){return g.oSymbols[e.symbol||""]}function v(e){return!!e&&m(e).isNumeric(e.digits)}for(var f=0;f<t.length&&(d=e.substr(h),s=t[f],c=t[f-1],n=t[f+1],p.index=f,p.exactLength=v(s)&&(v(c)||v(n)),(void 0!==(_=m(s).parse(d,s,this,p,r)||{}).tzDiff||_.timezone)&&(_.lastTimezonePatternSymbol=s.symbol),u=UC(u,_),!1!==_.valid);f++)h+=_.length||0;return u.index=h,l=u.pm,u.flexDayPeriod&&60*u.hour+(u.minute||0)<720&&(a=this.oLocaleData.getFlexibleDayPeriodOfTime(u.hour+12,u.minute||0),l=u.flexDayPeriod===a),l&&(u.hour+=12),void 0===u.dayNumberOfWeek&&void 0!==u.dayOfWeek&&(u.dayNumberOfWeek=this._adaptDayOfWeek(u.dayOfWeek)),void 0!==u.quarter&&void 0===u.month&&void 0===u.day&&(u.month=3*u.quarter,u.day=1),u},ek.prototype._parseInterval=function(e,t,o,i,r){var a,n,s;return this.intervalPatterns.some(function(t){var l=this.parseCldrDatePattern(t);n=void 0;for(var c=0;c<l.length;c++)if(l[c].repeat){n=c;break}if(void 0===n){if((0===(s=this._parse(e,l,o,i,r)).index||s.index<e.length)&&(s.valid=!1),!1===s.valid)return;return a=[s,s],!0}if(a=[],!1!==(s=this._parse(e,l.slice(0,n),o,i,r)).valid){a.push(s);var _=s.index;if((0===(s=this._parse(e.substring(_),l.slice(n),o,i,r)).index||s.index+_<e.length)&&(s.valid=!1),!1!==s.valid)return a.push(s),!0}}.bind(this)),a};var ck=function(e,t,o){return!o&&uk(e)?hw.convertToTimezone(e,t):e},_k=function(e,t,o,i,r,a,n){if(!e.valid)return null;var s,l="number"==typeof e.year?e.year:1970;return(s=Aw.getInstance(new Date(0),t)).setUTCEra(e.era||Aw.getCurrentEra(t)),s.setUTCFullYear(l,e.month||0,e.day||1),s.setUTCHours(e.hour||0),s.setUTCMinutes(e.minute||0),s.setUTCSeconds(e.second||0),s.setUTCMilliseconds(e.millisecond||0),i&&(e.day||1)!==s.getUTCDate()?null:(void 0===e.week||void 0!==e.month&&void 0!==e.day||(s.setUTCWeek({year:e.weekYear||e.year,week:e.week},n,lk(a)),void 0!==e.dayNumberOfWeek&&s.setUTCDate(s.getUTCDate()+e.dayNumberOfWeek-1)),s=s.getJSDate(),!o&&("V"===e.lastTimezonePatternSymbol&&e.timezone||void 0===e.tzDiff)&&(e.timezone&&(r=e.timezone),r&&(e.tzDiff=hw.calculateOffset(s,r))),e.tzDiff&&s.setUTCSeconds(s.getUTCSeconds()+e.tzDiff),s)};function dk(e,t){if(e===t)return e;var o={};return Object.keys(e).forEach(function(t){o[t]=e[t]}),Object.keys(t).forEach(function(e){o.hasOwnProperty(e)||(o[e]=t[e])}),o}function uk(e){return e&&"function"==typeof e.getTime&&!isNaN(e.getTime())}function hk(e,t){for(var o=["FullYear","Month","Date","Hours","Minutes","Seconds","Milliseconds"],i=new Date(e.getTime()),r=t;r<o.length;r++)i["setUTC"+o[t]].apply(i,[0]);return i}ek.prototype.parse=function(e,t,o){var i,r=void 0===this.oFormatOptions.showDate||this.oFormatOptions.showDate,a=void 0===this.oFormatOptions.showTime||this.oFormatOptions.showTime;if(this.type===ik&&(r&&!a||!r&&a))throw new TypeError("The input can only be parsed back to date if both date and time are supplied.");void 0===t&&this.type!==ik&&(t=this.oFormatOptions.UTC);var n,s=t;if(this.type===ik&&(i=t,t=!1,ak(i),i&&!hw.isValidTimezone(i)))return aC.error("The given timezone isn't valid."),null;e=null==e?"":String(e).trim(),e=Xw.normalize(e);var l,c,_=this.oFormatOptions.calendarType;if(i=i||hC.getTimezone(),void 0===o&&(o=this.oFormatOptions.strictParsing),_===PC.Japanese&&"ja"===this.oLocale.getLanguage()&&(e=e.replace(/\u5143\u5e74/g,"1年")),this.oFormatOptions.interval){var d,u,h=this._parseInterval(e,_,t,o,i);if(h&&2===h.length){var p=dk(h[0],h[1]),g=dk(h[1],h[0]);if(d=_k(p,_,t,o,i,this.oFormatOptions,this.oLocale),u=_k(g,_,t,o,i,this.oFormatOptions,this.oLocale),d&&u){if(this.oFormatOptions.singleIntervalValue&&d.getTime()===u.getTime())return[d,null];var m=(l=u,!(d.getTime()>l.getTime()));return o&&!m?(aC.error("StrictParsing: Invalid date range. The given end date is before the start date."),[null,null]):[d,u]}}}else{var v=this.parseRelative(e,t);if(v)return v;if((0===(n=this._parse(e,this.aFormatArray,t,o,i)).index||n.index<e.length)&&(n.valid=!1),v=_k(n,_,t,o,i,this.oFormatOptions,this.oLocale)){if(this.type===ik){var f=void 0===this.oFormatOptions.showTimezone||this.oFormatOptions.showTimezone;return!f&&r&&a?[v,void 0]:!f||r||a?[v,n.timezone||void 0]:[void 0,n.timezone]}return v}}return this.aFallbackFormats?(this.aFallbackFormats.every(function(t){return c=t.parse(e,s,o),Array.isArray(c)?t.type!==ik&&!(c[0]&&c[1]):!c}),c):this.oFormatOptions.interval?[null,null]:null},ek.prototype.parseCldrDatePattern=function(e){if(rk[e])return rk[e];var t,o=[],i=!1,r=null,a="",n="",s={},l=!1;for(t=0;t<e.length;t++){var c,_,d,u=e.charAt(t);if(i){if("'"===u)if(_=e.charAt(t-1),d=e.charAt(t-2),c=e.charAt(t+1),"'"===_&&"'"!==d)i=!1;else{if("'"!==c){i=!1;continue}t+=1}"text"===a?r.value+=u:(r={type:"text",value:u},o.push(r),a="text")}else"'"===u?i=!0:this.oSymbols[u]?a===(n=this.oSymbols[u].name)?r.digits++:(r={type:n,symbol:u,digits:1},o.push(r),a=n,l||(s[n]?(r.repeat=!0,l=!0):s[n]=!0)):"text"===a?r.value+=u:(r={type:"text",value:u},o.push(r),a="text")}return rk[e]=o,o},ek.prototype.parseRelative=function(e,t){var o,i,r;if(!e)return null;o=this.oLocaleData.getRelativePatterns(this.aRelativeParseScales,this.oFormatOptions.relativeStyle);for(var a=0;a<o.length;a++)if(i=o[a],r=new RegExp("^\\s*"+i.pattern.replace(/\{0\}/,"(\\d+)")+"\\s*$","i").exec(e))return void 0!==i.value?n(i.value,i.scale):n(parseInt(r[1])*i.sign,i.scale);function n(e,o){var i=kw.getInstance();if(t)switch(i.setUTCFullYear(i.getFullYear(),i.getMonth(),i.getDate()),i.setUTCHours(i.getHours(),i.getMinutes(),i.getSeconds(),i.getMilliseconds()),o){case"second":i.setUTCSeconds(i.getUTCSeconds()+e);break;case"minute":i.setUTCMinutes(i.getUTCMinutes()+e);break;case"hour":i.setUTCHours(i.getUTCHours()+e);break;case"day":i.setUTCDate(i.getUTCDate()+e);break;case"week":i.setUTCDate(i.getUTCDate()+7*e);break;case"month":i.setUTCMonth(i.getUTCMonth()+e);break;case"quarter":i.setUTCMonth(i.getUTCMonth()+3*e);break;case"year":i.setUTCFullYear(i.getUTCFullYear()+e)}else switch(o){case"second":i.setSeconds(i.getSeconds()+e);break;case"minute":i.setMinutes(i.getMinutes()+e);break;case"hour":i.setHours(i.getHours()+e);break;case"day":i.setDate(i.getDate()+e);break;case"week":i.setDate(i.getDate()+7*e);break;case"month":i.setMonth(i.getMonth()+e);break;case"quarter":i.setMonth(i.getMonth()+3*e);break;case"year":i.setFullYear(i.getFullYear()+e)}return i}},ek.prototype.formatRelative=function(e,t,o,i){var r,a,n,s=ck(new Date,i),l=this.oFormatOptions.relativeScale||"day";return n=(e.getTime()-s.getTime())/1e3,"auto"===this.oFormatOptions.relativeScale&&(l=function(e,t,o,i){var r=Math.abs(e.getUTCMonth()-t.getUTCMonth());if("week"===o&&2===r)return"month";if("week"===o&&1===r){if(e.getUTCDate()===t.getUTCDate()||i<0&&e.getUTCDate()<t.getUTCDate()||i>0&&e.getUTCDate()>t.getUTCDate())return"month"}else if("month"===o&&1===r&&(i>0&&e.getUTCDate()<t.getUTCDate()||i<0&&e.getUTCDate()>t.getUTCDate()))return"week";return o}(e,s,l=this._getScale(n,this.aRelativeScales),n)),o||(o=this._mRanges[l]),"year"!==l&&"month"!==l&&"day"!==l||(s=new Date(Date.UTC(s.getUTCFullYear(),s.getUTCMonth(),s.getUTCDate())),(r=new Date(0)).setUTCFullYear(e.getUTCFullYear(),e.getUTCMonth(),e.getUTCDate()),e=r),a=this._getDifference(l,[s,e]),"auto"!==this.oFormatOptions.relativeScale&&(a<o[0]||a>o[1])?null:function(e,t){return null==e?"":(iC("string"==typeof e||e instanceof String,"pattern must be string"),(arguments.length>2||null!=t&&!Array.isArray(t))&&(t=Array.prototype.slice.call(arguments,1)),t=t||[],e.replace(Yw,function(e,o,i,r,a){if(o)return"'";if(i)return i.replace(/''/g,"'");if(r)return String(t[parseInt(r)]);throw new Error("formatMessage: pattern syntax error at pos. "+a)}))}(this.oLocaleData.getRelativePattern(l,a,n>0,this.oFormatOptions.relativeStyle),[Math.abs(a)])},ek.prototype._mRanges={second:[-60,60],minute:[-60,60],hour:[-24,24],day:[-6,6],week:[-4,4],month:[-12,12],year:[-10,10]},ek.prototype._mScales={second:1,minute:60,hour:3600,day:86400,week:604800,month:2592e3,quarter:7776e3,year:31536e3},ek.prototype._getScale=function(e,t){var o,i;e=Math.abs(e);for(var r=0;r<t.length;r++)if(i=t[r],e>=this._mScales[i]){o=i;break}return o||(o=t[t.length-1]),o};var pk={year:function(e,t){return t.getUTCFullYear()-e.getUTCFullYear()},month:function(e,t){return t.getUTCMonth()-e.getUTCMonth()+12*this.year(e,t)},week:function(e,t,o){var i=o._adaptDayOfWeek(e.getUTCDay()),r=o._adaptDayOfWeek(t.getUTCDay());return e=hk(e,3),((t=hk(t,3)).getTime()-e.getTime()-(r-i)*o._mScales.day*1e3)/(1e3*o._mScales.week)},day:function(e,t,o){return e=hk(e,3),((t=hk(t,3)).getTime()-e.getTime())/(1e3*o._mScales.day)},hour:function(e,t,o){return e=hk(e,4),((t=hk(t,4)).getTime()-e.getTime())/(1e3*o._mScales.hour)},minute:function(e,t,o){return e=hk(e,5),((t=hk(t,5)).getTime()-e.getTime())/(1e3*o._mScales.minute)},second:function(e,t,o){return e=hk(e,6),((t=hk(t,6)).getTime()-e.getTime())/(1e3*o._mScales.second)}};ek.prototype._adaptDayOfWeek=function(e){var t=lk(this.oFormatOptions),o=e-(("object"==typeof t?t.firstDayOfWeek:Dw.getWeekConfigurationValues(t,this.oLocale).firstDayOfWeek)-1);return o<=0&&(o+=7),o},ek.prototype._getDifference=function(e,t){var o=t[0],i=t[1];return Math.round(pk[e](o,i,this))},ek.prototype.getAllowedCharacters=function(e){if(this.oFormatOptions.relative)return"";for(var t,o="",i=!1,r=!1,a=0;a<e.length;a++)switch((t=e[a]).type){case"text":o.indexOf(t.value)<0&&(o+=t.value);break;case"day":case"year":case"weekYear":case"dayNumberOfWeek":case"weekInYear":case"hour0_23":case"hour1_24":case"hour0_11":case"hour1_12":case"minute":case"second":case"fractionalsecond":i||(o+="0123456789",i=!0);break;case"month":case"monthStandalone":t.digits<3?i||(o+="0123456789",i=!0):r=!0;break;default:r=!0}return r&&(o=""),o},ek.prototype.getPlaceholderText=function(){return Kw.getResourceBundleFor("sap.ui.core").getText("date.placeholder",[this.format.apply(this,this.getSampleValue())])},ek.prototype.getSampleValue=function(){var e,t=kw.getInstance().getFullYear(),o=this.oFormatOptions.UTC;function i(e,t,i,r,a,n,s){return o?kw.getInstance(Date.UTC(e,t,i,r,a,n,s)):kw.getInstance(e,t,i,r,a,n,s)}return e=i(t,11,31,23,59,58,123),this.type===ik?[e,hC.getTimezone()]:this.oFormatOptions.interval?[[i(t,11,22,9,12,34,567),e]]:[e]};var gk=vC,mk=class extends gk{};en();var vk,fk=ek,bk=class extends fk{static getDateInstance(e,t){if(e instanceof mk)return fk.getDateInstance(void 0,e);const o=t??new mk(rr().toString());return fk.getDateInstance(e,o)}},yk=e=>(t,o)=>{Object.defineProperty(t,o,{get(){return this.shadowRoot?.querySelector(e)}})},Ck=e=>Hw.fromLocalJSDate(Sw.getInstance(),e).valueOf()/1e3;!function(e){e.DAY_MONTH_YEAR="DAY_MONTH_YEAR",e.MONTH_YEAR="MONTH_YEAR",e.YEAR="YEAR"}(vk||(vk={}));var wk=vk;sc();ql("appointment-2",{pathData:"M1 14.986V2.012c0-.291.099-.53.296-.717a.986.986 0 0 1 .702-.281h1.995V.016h.998v.998h5.986V.016h.998v.998h1.995c.291 0 .53.094.717.28a.971.971 0 0 1 .281.718v12.974c0 .291-.094.53-.28.717a.97.97 0 0 1-.718.281H1.998a.985.985 0 0 1-.702-.28.945.945 0 0 1-.296-.718Zm12.97 0V4.008H1.998v10.978H13.97ZM7.984 6.004a.97.97 0 0 1 .717.28c.187.188.28.427.28.718s-.093.53-.28.717A.97.97 0 0 1 7.984 8a.971.971 0 0 1-.717-.28.972.972 0 0 1-.28-.718.97.97 0 0 1 .28-.717.971.971 0 0 1 .717-.281Zm-3.99 3.992c.29 0 .53.094.716.28.187.188.28.427.28.718s-.093.53-.28.717a.97.97 0 0 1-.717.281.97.97 0 0 1-.717-.28.971.971 0 0 1-.28-.718.97.97 0 0 1 .28-.717.971.971 0 0 1 .717-.281Zm7.98-3.992c.292 0 .53.094.718.28.187.188.28.427.28.718s-.093.53-.28.717a.971.971 0 0 1-.717.281.971.971 0 0 1-.717-.28.971.971 0 0 1-.28-.718.97.97 0 0 1 .28-.717.971.971 0 0 1 .717-.281Zm0 3.992c.292 0 .53.094.718.28.187.188.28.427.28.718s-.093.53-.28.717a.97.97 0 0 1-.717.281.97.97 0 0 1-.717-.28.971.971 0 0 1-.28-.718.97.97 0 0 1 .28-.717.971.971 0 0 1 .717-.281Zm-3.99 0c.291 0 .53.094.717.28.187.188.28.427.28.718s-.093.53-.28.717a.97.97 0 0 1-.717.281.97.97 0 0 1-.717-.28.971.971 0 0 1-.28-.718.97.97 0 0 1 .28-.717.971.971 0 0 1 .717-.281ZM2.995 7.002c0-.291.094-.53.281-.717a.971.971 0 0 1 .717-.281c.291 0 .53.094.717.28.187.188.28.427.28.718s-.093.53-.28.717A.971.971 0 0 1 3.993 8a.971.971 0 0 1-.717-.28.972.972 0 0 1-.28-.718Zm8.98-3.992v-.998h-.998v.998h.998Zm-7.982-.998v.998h.998v-.998h-.998Z",ltr:!1,viewBox:"0 0 16 16",collection:"SAP-icons-v4",packageName:"@ui5/webcomponents-icons"}),sc();ql("appointment-2",{pathData:"M11.25 0a.75.75 0 0 1 .75.75V2c1.583 0 3 1.058 3 2.75v8.5A2.75 2.75 0 0 1 12.25 16h-8.5A2.75 2.75 0 0 1 1 13.25v-8.5C1 3.058 2.417 2 4 2V.75a.75.75 0 0 1 1.5 0V2h5V.75a.75.75 0 0 1 .75-.75ZM2.5 13.25c0 .69.56 1.25 1.25 1.25h8.5c.69 0 1.25-.56 1.25-1.25V7.5h-11v5.75ZM5 10a1 1 0 1 1 0 2 1 1 0 0 1 0-2Zm3 0a1 1 0 1 1 0 2 1 1 0 0 1 0-2Zm3 0a1 1 0 1 1 0 2 1 1 0 0 1 0-2ZM2.5 4.75V6h11V4.75c0-.868-.741-1.25-1.5-1.25v.75a.75.75 0 0 1-1.5 0V3.5h-5v.75a.75.75 0 0 1-1.5 0V3.5c-.759 0-1.5.382-1.5 1.25Z",ltr:!1,viewBox:"0 0 16 16",collection:"SAP-icons-v5",packageName:"@ui5/webcomponents-icons"}),Aa();var kk=new Map,xk=e=>{const t=`max ${e}`;if(!kk.has(t)){const o=new Hw(1,0,1,e);o.setYear(9999),o.setMonth(11);const i=new Hw(o,e);i.setDate(1),i.setMonth(i.getMonth()+1,0),o.setDate(i.getDate()),kk.set(t,o)}return kk.get(t)};Cn(),ec(),wn(),kn(),qn(),en();var Sk=function(e,t,o,i){var r,a=arguments.length,n=a<3?t:null===i?i=Object.getOwnPropertyDescriptor(t,o):i;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)n=Reflect.decorate(e,t,o,i);else for(var s=e.length-1;s>=0;s--)(r=e[s])&&(n=(a<3?r(n):a>3?r(t,o,n):r(t,o))||n);return a>3&&n&&Object.defineProperty(t,o,n),n},Tk=class extends hn{constructor(){super(),this.minDate="",this.maxDate="",this.calendarWeekNumbering="Default"}get _primaryCalendarType(){const e=uw(rr());return this.primaryCalendarType||kC()||e.getPreferredCalendarType()}get _secondaryCalendarType(){return this.secondaryCalendarType||(void 0===CC&&(CC=Pe()),CC)}get _minDate(){let e;return this.minDate&&(e=this._getMinMaxCalendarDateFromString(this.minDate)),e||(e=>{const t=`min ${e}`;if(!kk.has(t)){const o=new Hw(1,0,1,e);o.setYear(1),o.setMonth(0),o.setDate(1),kk.set(t,o)}return kk.get(t)})(this._primaryCalendarType)}get _maxDate(){let e;return this.maxDate&&(e=this._getMinMaxCalendarDateFromString(this.maxDate)),e||xk(this._primaryCalendarType)}get _formatPattern(){return this.formatPattern||this.valueFormat}get _isPattern(){return"medium"!==this._formatPattern&&"short"!==this._formatPattern&&"long"!==this._formatPattern}get _isValueFormatPattern(){return"medium"!==this._valueFormat&&"short"!==this._valueFormat&&"long"!==this._valueFormat}get _isDisplayFormatPattern(){return"medium"!==this._displayFormat&&"short"!==this._displayFormat&&"long"!==this._displayFormat}get initialFocusId(){return`${this._id}-calendar`}get hasSecondaryCalendarType(){return!!this.secondaryCalendarType&&this.secondaryCalendarType!==this.primaryCalendarType}_getMinMaxCalendarDateFromString(e){if(this.getFormat().parse(e))return this._getCalendarDateFromString(e);const t=this.getISOFormat().parse(e);return t?Hw.fromLocalJSDate(t,this._primaryCalendarType):void 0}_getCalendarDateFromString(e){const t=this.getValueFormat().parse(e);if(t)return Hw.fromLocalJSDate(t,this._primaryCalendarType)}_getCalendarDateFromStringDisplayValue(e){const t=this.getDisplayFormat().parse(e);if(t)return Hw.fromLocalJSDate(t,this._primaryCalendarType)}_getTimeStampFromString(e){const t=this._getCalendarDateFromString(e);if(t)return t.toUTCJSDate().valueOf()}_getStringFromTimestamp(e){if(!e)return"";const t=Sw.getInstance(e);return this.getFormat().format(t,!0)}_getDisplayStringFromTimestamp(e){if(!e)return"";const t=Sw.getInstance(e);return this.getDisplayFormat().format(t,!0)}_getValueStringFromTimestamp(e){if(!e)return"";const t=Sw.getInstance(e);return this.getValueFormat().format(t,!0)}getFormat(){return this._isPattern?bk.getDateInstance({strictParsing:!0,pattern:this._formatPattern,calendarType:this._primaryCalendarType}):bk.getDateInstance({strictParsing:!0,style:this._formatPattern,calendarType:this._primaryCalendarType})}get _displayFormat(){return this.displayFormat?this.displayFormat:this._formatPattern}get _valueFormat(){return this.valueFormat?this.valueFormat:this._formatPattern?this._formatPattern:""}getDisplayFormat(){return this._isDisplayFormatPattern?bk.getDateInstance({strictParsing:!0,pattern:this._displayFormat,calendarType:this._primaryCalendarType}):bk.getDateInstance({strictParsing:!0,style:this._displayFormat,calendarType:this._primaryCalendarType})}getValueFormat(){return this._valueFormat?this._isValueFormatPattern?bk.getDateInstance({strictParsing:!0,pattern:this._valueFormat,calendarType:this._primaryCalendarType}):bk.getDateInstance({strictParsing:!0,style:this._valueFormat,calendarType:this._primaryCalendarType}):this.getISOFormat()}getISOFormat(){return this._isoFormatInstance||(this._isoFormatInstance=bk.getDateInstance({strictParsing:!0,pattern:"yyyy-MM-dd",calendarType:this._primaryCalendarType})),this._isoFormatInstance}};Sk([bn()],Tk.prototype,"primaryCalendarType",void 0),Sk([bn()],Tk.prototype,"secondaryCalendarType",void 0),Sk([bn()],Tk.prototype,"formatPattern",void 0),Sk([bn()],Tk.prototype,"displayFormat",void 0),Sk([bn()],Tk.prototype,"valueFormat",void 0),Sk([bn()],Tk.prototype,"minDate",void 0),Sk([bn()],Tk.prototype,"maxDate",void 0),Sk([bn()],Tk.prototype,"calendarWeekNumbering",void 0),Sk([Tn("@ui5/webcomponents")],Tk,"i18nBundle",void 0);var Bk,Ik,Dk,Ak,Pk,Mk,Ek,zk,Fk,Rk,Ok,Lk=Tk=Sk([fn({languageAware:!0,cldr:!0,renderer:ms})],Tk),Nk=qr(()=>{!function(e){e.Text="Text",e.Email="Email",e.Number="Number",e.Password="Password",e.Tel="Tel",e.URL="URL",e.Search="Search"}(Bk||(Bk={})),Ik=Bk}),Hk=qr(()=>{Dk=function(e,t){var o=e.toString(16);return t&&(o=o.padStart(t,"0")),o}}),Uk=qr(()=>{Hk(),Ak=/[\x00-\x2b\x2f\x3a-\x40\x5b-\x5e\x60\x7b-\xff\u2028\u2029]/g,Pk=/[\x00-\x08\x0b\x0c\x0e-\x1f\x7f-\x9f]/,Mk={"<":"<",">":">","&":"&",'"':"""},Ek=function(e){var t=Mk[e];return t||(t=Pk.test(e)?"�":"&#x"+Dk(e.charCodeAt(0))+";",Mk[e]=t),t},zk=function(e){return e.replace(Ak,Ek)}}),Vk=qr(()=>{tc(),Fk=(e,t,o,i)=>{Ls(e)&&(o!==t.length-1?(e.stopImmediatePropagation(),e.preventDefault(),t[o+1].focus()):(i.closeValueState(),i.focusInput())),Ns(e)&&(e.preventDefault(),e.stopImmediatePropagation(),o>0?t[o-1].focus():i.focusInput()),Ss(e)&&(e.preventDefault(),e.stopImmediatePropagation(),i.isPopoverOpen()&&i.focusInput()),Ts(e)&&(e.preventDefault(),e.stopImmediatePropagation(),i.navigateToItem()),Os(e)&&(e.preventDefault(),e.stopImmediatePropagation())}}),Wk=qr(()=>{Rk=e=>{let t=0;return(e.selectionStart||0===e.selectionStart)&&(t="backward"===e.selectionDirection?e.selectionStart:e.selectionEnd),t},Ok=(e,t)=>{e.selectionStart?(e.focus(),e.setSelectionRange(t,t)):e.focus()}});function qk(e){const t=e?.suggestionsList,o=e?.mobileHeader;return y_(f_,{children:[this._effectiveShowSuggestions&&this.Suggestions?.template.call(this,{suggestionsList:t,mobileHeader:o,valueStateMessage:jk,valueStateMessageInputIcon:Yk}),this.hasValueStateMessage&&b_(wb,{preventInitialFocus:!0,preventFocusRestore:!0,hideArrow:!0,class:"ui5-valuestatemessage-popover",placement:"Bottom",tabindex:-1,horizontalAlign:Kf.Start,opener:this,open:this.valueStateOpen,onClose:this._handleValueStatePopoverAfterClose,children:y_("div",{slot:"header",class:this.classes.popoverValueState,children:[b_(gh,{class:"ui5-input-value-state-message-icon",name:Yk.call(this)}),this.valueStateOpen&&jk.call(this)]})})]})}function jk(){return b_(f_,{children:this.shouldDisplayDefaultValueStateMessage?this.valueStateText:b_("slot",{name:"valueStateMessage"})})}function Yk(){const e={Negative:nf,Critical:sf,Positive:lf,Information:cf};return this.valueState!==pv.None?e[this.valueState]:""}var $k=qr(()=>{C_(),xh(),vf(),yf(),kf(),Tf(),Eb(),Lb(),Ev()});function Gk(e){const t=e?.suggestionsList,o=e?.mobileHeader,i=e?.preContent||Kk,r=e?.postContent||Zk;return y_(f_,{children:[b_("div",{class:"ui5-input-root ui5-input-focusable-element",part:"root",onFocusIn:this._onfocusin,onFocusOut:this._onfocusout,children:y_("div",{class:"ui5-input-content",children:[i.call(this),b_("input",{id:"inner",part:"input",class:"ui5-input-inner",style:this.styles.innerInput,type:this.inputNativeType,"inner-input":!0,"inner-input-with-icon":this.iconsCount>0,disabled:this.disabled,readonly:this._readonly,value:this.value,required:this.required,placeholder:this._placeholder,maxlength:this.maxlength,role:this.accInfo.role,enterkeyhint:this.hint,"aria-controls":this.accInfo.ariaControls,"aria-invalid":this.accInfo.ariaInvalid,"aria-haspopup":this.accInfo.ariaHasPopup,"aria-describedby":this.accInfo.ariaDescribedBy,"aria-roledescription":this.accInfo.ariaRoledescription,"aria-autocomplete":this.accInfo.ariaAutoComplete,"aria-expanded":this.accInfo.ariaExpanded,"aria-label":this.accInfo.ariaLabel,"aria-required":this.required,autocomplete:"off","data-sap-focus-ref":!0,step:this.nativeInputAttributes.step,min:this.nativeInputAttributes.min,max:this.nativeInputAttributes.max,onInput:this._handleNativeInput,onChange:this._handleChange,onSelect:this._handleSelect,onKeyDown:this._onkeydown,onKeyUp:this._onkeyup,onClick:this._click,onFocusIn:this.innerFocusIn}),this._effectiveShowClearIcon&&b_("div",{tabindex:-1,class:"ui5-input-clear-icon-wrapper inputIcon",part:"clear-icon-wrapper",onClick:this._clear,onMouseDown:this._iconMouseDown,children:b_(gh,{part:"clear-icon",class:"ui5-input-clear-icon",name:"decline",tabindex:-1,accessibleName:this.clearIconAccessibleName})}),this.icon.length>0&&b_("div",{class:"ui5-input-icon-root",tabindex:-1,children:b_("slot",{name:"icon"})}),b_("div",{class:"ui5-input-value-state-icon",children:this._valueStateInputIcon}),r.call(this),this._effectiveShowSuggestions&&y_(f_,{children:[b_("span",{id:"suggestionsText",class:"ui5-hidden-text",children:this.suggestionsText}),b_("span",{id:"selectionText",class:"ui5-hidden-text","aria-live":"polite",role:"status"}),b_("span",{id:"suggestionsCount",class:"ui5-hidden-text","aria-live":"polite",children:this.availableSuggestionsCount})]}),this.accInfo.ariaDescription&&b_("span",{id:"descr",class:"ui5-hidden-text",children:this.accInfo.ariaDescription}),this.accInfo.accessibleDescription&&b_("span",{id:"accessibleDescription",class:"ui5-hidden-text",children:this.accInfo.accessibleDescription}),this.linksInAriaValueStateHiddenText.length>0&&b_("span",{id:"hiddenText-value-state-link-shortcut",class:"ui5-hidden-text",children:this.valueStateLinksShortcutsTextAcc}),this.hasValueState&&b_("span",{id:"valueStateDesc",class:"ui5-hidden-text",children:this.ariaValueStateHiddenText})]})}),qk.call(this,{suggestionsList:t,mobileHeader:o})]})}function Kk(){}function Zk(){}var Xk,Jk,Qk,ex,tx,ox,ix,rx,ax,nx,sx,lx,cx,_x=qr(()=>{C_(),xh(),Um(),$k()}),dx=jr({Contains:()=>tx,None:()=>ox,StartsWith:()=>ex,StartsWithPerTerm:()=>Qk}),ux=qr(()=>{Xk=/[[\]{}()*+?.\\^$|]/g,Jk=e=>e.replace(Xk,"\\$&"),Qk=(e,t,o)=>{const i=new RegExp(`(^|\\s)${Jk(e.toLowerCase())}.*`,"g");return t.filter(e=>{const t=e[o];return i.lastIndex=0,i.test(t.toLowerCase())})},ex=(e,t,o)=>t.filter(t=>(t[o]||"").toLowerCase().startsWith(e.toLowerCase())),tx=(e,t,o)=>t.filter(t=>(t[o]||"").toLowerCase().includes(e.toLowerCase())),ox=(e,t)=>t}),hx=qr(()=>{Ca(),Ch(),wh(),St("@ui5/webcomponents-theming","sap_horizon",async()=>ch),St("@ui5/webcomponents","sap_horizon",async()=>_h,"host"),ix=':host{vertical-align:middle}.ui5-hidden-text{position:absolute;clip:rect(1px,1px,1px,1px);user-select:none;left:-1000px;top:-1000px;pointer-events:none;font-size:0}.inputIcon{color:var(--_ui5_input_icon_color);cursor:pointer;outline:none;padding:var(--_ui5_input_icon_padding);border-inline-start:var(--_ui5_input_icon_border);min-width:1rem;min-height:1rem;border-radius:var(--_ui5_input_icon_border_radius)}.inputIcon.inputIcon--pressed{background:var(--_ui5_input_icon_pressed_bg);box-shadow:var(--_ui5_input_icon_box_shadow);border-inline-start:var(--_ui5_select_hover_icon_left_border);color:var(--_ui5_input_icon_pressed_color)}.inputIcon:active{background-color:var(--sapButton_Active_Background);box-shadow:var(--_ui5_input_icon_box_shadow);border-inline-start:var(--_ui5_select_hover_icon_left_border);color:var(--_ui5_input_icon_pressed_color)}.inputIcon:not(.inputIcon--pressed):not(:active):hover{background:var(--_ui5_input_icon_hover_bg);box-shadow:var(--_ui5_input_icon_box_shadow)}.inputIcon:hover{border-inline-start:var(--_ui5_select_hover_icon_left_border);box-shadow:var(--_ui5_input_icon_box_shadow)}:host(:not([hidden])){display:inline-block}:host{width:var(--_ui5_input_width);min-width:calc(var(--_ui5_input_min_width) + (var(--_ui5-input-icons-count)*var(--_ui5_input_icon_width)));margin:var(--_ui5_input_margin_top_bottom) 0;height:var(--_ui5_input_height);color:var(--sapField_TextColor);font-size:var(--sapFontSize);font-family:var(--sapFontFamily);font-style:normal;border:var(--_ui5-input-border);border-radius:var(--_ui5_input_border_radius);box-sizing:border-box;text-align:start;transition:var(--_ui5_input_transition);background:var(--sapField_BackgroundStyle);background-color:var(--_ui5_input_background_color)}:host(:not([readonly])),:host([readonly][disabled]){box-shadow:var(--sapField_Shadow)}:host([focused]:not([opened])){border-color:var(--_ui5_input_focused_border_color);background-color:var(--sapField_Focus_Background)}.ui5-input-focusable-element{position:relative}:host([focused]:not([opened])) .ui5-input-focusable-element:after{content:var(--ui5_input_focus_pseudo_element_content);position:absolute;pointer-events:none;z-index:2;border:var(--sapContent_FocusWidth) var(--sapContent_FocusStyle) var(--_ui5_input_focus_outline_color);border-radius:var(--_ui5_input_focus_border_radius);top:var(--_ui5_input_focus_offset);bottom:var(--_ui5_input_focus_offset);left:var(--_ui5_input_focus_offset);right:var(--_ui5_input_focus_offset)}:host([focused][readonly]:not([opened])) .ui5-input-focusable-element:after{top:var(--_ui5_input_readonly_focus_offset);bottom:var(--_ui5_input_readonly_focus_offset);left:var(--_ui5_input_readonly_focus_offset);right:var(--_ui5_input_readonly_focus_offset);border-radius:var(--_ui5_input_readonly_focus_border_radius)}.ui5-input-root:before{content:"";position:absolute;width:calc(100% - 2px);left:1px;bottom:-2px;border-bottom-left-radius:8px;border-bottom-right-radius:8px;height:var(--_ui5_input_bottom_border_height);transition:var(--_ui5_input_transition);background-color:var(--_ui5_input_bottom_border_color)}.ui5-input-root{width:100%;height:100%;position:relative;background:transparent;display:inline-block;outline:none;box-sizing:border-box;color:inherit;transition:border-color .2s ease-in-out;border-radius:var(--_ui5_input_border_radius);overflow:hidden}:host([disabled]){opacity:var(--_ui5_input_disabled_opacity);cursor:default;pointer-events:none;background-color:var(--_ui5-input_disabled_background);border-color:var(--_ui5_input_disabled_border_color)}:host([disabled]) .ui5-input-root:before,:host([readonly]) .ui5-input-root:before{content:none}[inner-input]{background:transparent;color:inherit;border:none;font-style:inherit;-webkit-appearance:none;-moz-appearance:textfield;padding:var(--_ui5_input_inner_padding);box-sizing:border-box;width:100%;text-overflow:ellipsis;flex:1;outline:none;font-size:inherit;font-family:inherit;line-height:inherit;letter-spacing:inherit;word-spacing:inherit;text-align:inherit}[inner-input][inner-input-with-icon]{padding:var(--_ui5_input_inner_padding_with_icon)}[inner-input][type=search]::-webkit-search-decoration,[inner-input][type=search]::-webkit-search-cancel-button,[inner-input][type=search]::-webkit-search-results-button,[inner-input][type=search]::-webkit-search-results-decoration{display:none}[inner-input]::-ms-reveal,[inner-input]::-ms-clear{display:none}.ui5-input-value-state-icon{height:100%;display:var(--_ui5-input-value-state-icon-display);align-items:center}.ui5-input-value-state-icon>svg{margin-right:8px}[inner-input]::selection{background:var(--sapSelectedColor);color:var(--sapContent_ContrastTextColor)}:host([disabled]) [inner-input]::-webkit-input-placeholder{visibility:hidden}:host([readonly]) [inner-input]::-webkit-input-placeholder{visibility:hidden}:host([disabled]) [inner-input]::-moz-placeholder{visibility:hidden}:host([readonly]) [inner-input]::-moz-placeholder{visibility:hidden}[inner-input]::-webkit-input-placeholder{font-weight:400;font-style:var(--_ui5_input_placeholder_style);color:var(--_ui5_input_placeholder_color);padding-right:.125rem}[inner-input]::-moz-placeholder{font-weight:400;font-style:var(--_ui5_input_placeholder_style);color:var(--_ui5_input_placeholder_color);padding-right:.125rem}:host([value-state="Negative"]) [inner-input]::-webkit-input-placeholder{color:var(--_ui5-input_error_placeholder_color);font-weight:var(--_ui5_input_value_state_error_warning_placeholder_font_weight)}:host([value-state="Negative"]) [inner-input]::-moz-placeholder{color:var(--_ui5-input_error_placeholder_color);font-weight:var(--_ui5_input_value_state_error_warning_placeholder_font_weight)}:host([value-state="Critical"]) [inner-input]::-webkit-input-placeholder{font-weight:var(--_ui5_input_value_state_error_warning_placeholder_font_weight)}:host([value-state="Critical"]) [inner-input]::-moz-placeholder{font-weight:var(--_ui5_input_value_state_error_warning_placeholder_font_weight)}:host([value-state="Positive"]) [inner-input]::-webkit-input-placeholder{color:var(--_ui5_input_placeholder_color)}:host([value-state="Positive"]) [inner-input]::-moz-placeholder{color:var(--_ui5_input_placeholder_color)}:host([value-state="Information"]) [inner-input]::-webkit-input-placeholder{color:var(--_ui5_input_placeholder_color)}:host([value-state="Information"]) [inner-input]::-moz-placeholder{color:var(--_ui5_input_placeholder_color)}.ui5-input-content{height:100%;box-sizing:border-box;display:flex;flex-direction:row;justify-content:flex-end;overflow:hidden;outline:none;background:transparent;color:inherit;border-radius:var(--_ui5_input_border_radius)}:host([readonly]:not([disabled])){border:var(--_ui5_input_readonly_border);background:var(--sapField_ReadOnly_BackgroundStyle);background-color:var(--_ui5_input_readonly_background)}:host([value-state="None"]:not([readonly]):hover),:host(:not([value-state]):not([readonly]):hover){border:var(--_ui5_input_hover_border);border-color:var(--_ui5_input_focused_border_color);box-shadow:var(--sapField_Hover_Shadow);background:var(--sapField_Hover_BackgroundStyle);background-color:var(--sapField_Hover_Background)}:host(:not([value-state]):not([readonly])[focused]:not([opened]):hover),:host([value-state="None"]:not([readonly])[focused]:not([opened]):hover){box-shadow:none}:host([focused]):not([opened]) .ui5-input-root:before{content:none}:host(:not([readonly]):not([disabled])[value-state]:not([value-state="None"])){border-width:var(--_ui5_input_state_border_width)}:host([value-state="Negative"]) [inner-input],:host([value-state="Critical"]) [inner-input]{font-style:var(--_ui5_input_error_warning_font_style);text-indent:var(--_ui5_input_error_warning_text_indent)}:host([value-state="Negative"]) [inner-input]{font-weight:var(--_ui5_input_error_font_weight)}:host([value-state="Critical"]) [inner-input]{font-weight:var(--_ui5_input_warning_font_weight)}:host([value-state="Negative"]:not([readonly]):not([disabled])){background:var(--sapField_InvalidBackgroundStyle);background-color:var(--sapField_InvalidBackground);border-color:var(--_ui5_input_value_state_error_border_color);box-shadow:var(--sapField_InvalidShadow)}:host([value-state="Negative"][focused]:not([opened]):not([readonly])){background-color:var(--_ui5_input_focused_value_state_error_background);border-color:var(--_ui5_input_focused_value_state_error_border_color)}:host([value-state="Negative"][focused]:not([opened]):not([readonly])) .ui5-input-focusable-element:after{border-color:var(--_ui5_input_focused_value_state_error_focus_outline_color)}:host([value-state="Negative"]:not([readonly])) .ui5-input-root:before{background-color:var(--_ui5-input-value-state-error-border-botom-color)}:host([value-state="Negative"]:not([readonly]):not([focused]):hover),:host([value-state="Negative"]:not([readonly])[focused][opened]:hover){background-color:var(--_ui5_input_value_state_error_hover_background);box-shadow:var(--sapField_Hover_InvalidShadow)}:host([value-state="Negative"]:not([readonly]):not([disabled])),:host([value-state="Critical"]:not([readonly]):not([disabled])),:host([value-state="Information"]:not([readonly]):not([disabled])){border-style:var(--_ui5_input_error_warning_border_style)}:host([value-state="Critical"]:not([readonly]):not([disabled])){background:var(--sapField_WarningBackgroundStyle);background-color:var(--sapField_WarningBackground);border-color:var(--_ui5_input_value_state_warning_border_color);box-shadow:var(--sapField_WarningShadow)}:host([value-state="Critical"][focused]:not([opened]):not([readonly])){background-color:var(--_ui5_input_focused_value_state_warning_background);border-color:var(--_ui5_input_focused_value_state_warning_border_color)}:host([value-state="Critical"][focused]:not([opened]):not([readonly])) .ui5-input-focusable-element:after{border-color:var(--_ui5_input_focused_value_state_warning_focus_outline_color)}:host([value-state="Critical"]:not([readonly])) .ui5-input-root:before{background-color:var(--_ui5_input_value_state_warning_border_botom_color)}:host([value-state="Critical"]:not([readonly]):not([focused]):hover),:host([value-state="Critical"]:not([readonly])[focused][opened]:hover){background-color:var(--sapField_Hover_Background);box-shadow:var(--sapField_Hover_WarningShadow)}:host([value-state="Positive"]:not([readonly]):not([disabled])){background:var(--sapField_SuccessBackgroundStyle);background-color:var(--sapField_SuccessBackground);border-color:var(--_ui5_input_value_state_success_border_color);border-width:var(--_ui5_input_value_state_success_border_width);box-shadow:var(--sapField_SuccessShadow)}:host([value-state="Positive"][focused]:not([opened]):not([readonly])){background-color:var(--_ui5_input_focused_value_state_success_background);border-color:var(--_ui5_input_focused_value_state_success_border_color)}:host([value-state="Positive"][focused]:not([opened]):not([readonly])) .ui5-input-focusable-element:after{border-color:var(--_ui5_input_focused_value_state_success_focus_outline_color)}:host([value-state="Positive"]:not([readonly])) .ui5-input-root:before{background-color:var(--_ui5_input_value_state_success_border_botom_color)}:host([value-state="Positive"]:not([readonly]):not([focused]):hover),:host([value-state="Positive"]:not([readonly])[focused][opened]:hover){background-color:var(--sapField_Hover_Background);box-shadow:var(--sapField_Hover_SuccessShadow)}:host([value-state="Information"]:not([readonly]):not([disabled])){background:var(--sapField_InformationBackgroundStyle);background-color:var(--sapField_InformationBackground);border-color:var(--_ui5_input_value_state_information_border_color);border-width:var(--_ui5_input_information_border_width);box-shadow:var(--sapField_InformationShadow)}:host([value-state="Information"][focused]:not([opened]):not([readonly])){background-color:var(--_ui5_input_focused_value_state_information_background);border-color:var(--_ui5_input_focused_value_state_information_border_color)}:host([value-state="Information"]:not([readonly])) .ui5-input-root:before{background-color:var(--_ui5_input_value_success_information_border_botom_color)}:host([value-state="Information"]:not([readonly]):not([focused]):hover),:host([value-state="Information"]:not([readonly])[focused][opened]:hover){background-color:var(--sapField_Hover_Background);box-shadow:var(--sapField_Hover_InformationShadow)}.ui5-input-icon-root{min-width:var(--_ui5_input_icon_min_width);height:100%;display:flex;justify-content:center;align-items:center}::slotted([ui5-icon][slot="icon"]){align-self:start;padding:var(--_ui5_input_custom_icon_padding);box-sizing:content-box!important}:host([value-state="Negative"]) .inputIcon,:host([value-state="Critical"]) .inputIcon{padding:var(--_ui5_input_error_warning_icon_padding)}:host([value-state="Negative"][focused]) .inputIcon,:host([value-state="Critical"][focused]) .inputIcon{padding:var(--_ui5_input_error_warning_focused_icon_padding)}:host([value-state="Information"]) .inputIcon{padding:var(--_ui5_input_information_icon_padding)}:host([value-state="Information"][focused]) .inputIcon{padding:var(--_ui5_input_information_focused_icon_padding)}:host([value-state="Negative"]) ::slotted(.inputIcon[ui5-icon]),:host([value-state="Negative"]) ::slotted([ui5-icon][slot="icon"]),:host([value-state="Critical"]) ::slotted([ui5-icon][slot="icon"]){padding:var(--_ui5_input_error_warning_custom_icon_padding)}:host([value-state="Negative"][focused]) ::slotted(.inputIcon[ui5-icon]),:host([value-state="Negative"][focused]) ::slotted([ui5-icon][slot="icon"]),:host([value-state="Critical"][focused]) ::slotted([ui5-icon][slot="icon"]){padding:var(--_ui5_input_error_warning_custom_focused_icon_padding)}:host([value-state="Information"]) ::slotted([ui5-icon][slot="icon"]){padding:var(--_ui5_input_information_custom_icon_padding)}:host([value-state="Information"][focused]) ::slotted([ui5-icon][slot="icon"]){padding:var(--_ui5_input_information_custom_focused_icon_padding)}:host([value-state="Negative"]) .inputIcon:active,:host([value-state="Negative"]) .inputIcon.inputIcon--pressed{box-shadow:var(--_ui5_input_error_icon_box_shadow);color:var(--_ui5_input_icon_error_pressed_color)}:host([value-state="Negative"]) .inputIcon:not(.inputIcon--pressed):not(:active):hover{box-shadow:var(--_ui5_input_error_icon_box_shadow)}:host([value-state="Critical"]) .inputIcon:active,:host([value-state="Critical"]) .inputIcon.inputIcon--pressed{box-shadow:var(--_ui5_input_warning_icon_box_shadow);color:var(--_ui5_input_icon_warning_pressed_color)}:host([value-state="Critical"]) .inputIcon:not(.inputIcon--pressed):not(:active):hover{box-shadow:var(--_ui5_input_warning_icon_box_shadow)}:host([value-state="Information"]) .inputIcon:active,:host([value-state="Information"]) .inputIcon.inputIcon--pressed{box-shadow:var(--_ui5_input_information_icon_box_shadow);color:var(--_ui5_input_icon_information_pressed_color)}:host([value-state="Information"]) .inputIcon:not(.inputIcon--pressed):not(:active):hover{box-shadow:var(--_ui5_input_information_icon_box_shadow)}:host([value-state="Positive"]) .inputIcon:active,:host([value-state="Positive"]) .inputIcon.inputIcon--pressed{box-shadow:var(--_ui5_input_success_icon_box_shadow);color:var(--_ui5_input_icon_success_pressed_color)}:host([value-state="Positive"]) .inputIcon:not(.inputIcon--pressed):not(:active):hover{box-shadow:var(--_ui5_input_success_icon_box_shadow)}.ui5-input-clear-icon-wrapper{height:var(--_ui5_input_icon_wrapper_height);padding:0;width:var(--_ui5_input_icon_width);min-width:var(--_ui5_input_icon_width);display:flex;justify-content:center;align-items:center;box-sizing:border-box}:host([value-state]:not([value-state="None"]):not([value-state="Positive"])) .ui5-input-clear-icon-wrapper{height:var(--_ui5_input_icon_wrapper_state_height);vertical-align:top}:host([value-state="Positive"]) .ui5-input-clear-icon-wrapper{height:var(--_ui5_input_icon_wrapper_success_state_height)}[ui5-icon].ui5-input-clear-icon{padding:0;color:inherit}[inner-input]::-webkit-outer-spin-button,[inner-input]::-webkit-inner-spin-button{-webkit-appearance:inherit;margin:inherit}[ui5-responsive-popover] [ui5-input]{width:100%}\n'}),px=qr(()=>{Ca(),Ch(),wh(),St("@ui5/webcomponents-theming","sap_horizon",async()=>ch),St("@ui5/webcomponents","sap_horizon",async()=>_h,"host"),rx='.input-root-phone{flex:1;position:relative;height:var(--_ui5_input_height);color:var(--sapField_TextColor);font-size:var(--sapFontSize);font-family:var(--sapFontFamily);background:var(--sapField_BackgroundStyle);background-color:var(--_ui5_input_background_color);border:var(--_ui5-input-border);border-radius:var(--_ui5_input_border_radius);box-sizing:border-box}.input-root-phone [inner-input]{padding:0 .5rem;width:100%;height:100%}.input-root-phone [inner-input]:focus{background-color:var(--sapField_Focus_Background)}.input-root-phone:focus-within:before{content:"";position:absolute;pointer-events:none;z-index:2;border:var(--sapContent_FocusWidth) var(--sapContent_FocusStyle) var(--sapContent_FocusColor);border-radius:var(--_ui5_input_focus_border_radius);top:var(--_ui5_input_focus_offset);bottom:var(--_ui5_input_focus_offset);left:var(--_ui5_input_focus_offset);right:var(--_ui5_input_focus_offset)}.input-root-phone [value-state=Negative] .inputIcon[data-ui5-compact-size],.input-root-phone [value-state=Positive] .inputIcon[data-ui5-compact-size],.input-root-phone [value-state=Critical] .inputIcon[data-ui5-compact-size]{padding:.1875rem .5rem}[inner-input]{background:transparent;color:inherit;border:none;font-style:normal;-webkit-appearance:none;-moz-appearance:textfield;line-height:normal;padding:var(--_ui5_input_inner_padding);box-sizing:border-box;min-width:3rem;text-overflow:ellipsis;flex:1;outline:none;font-size:inherit;font-family:inherit;border-radius:var(--_ui5_input_border_radius)}[inner-input]::selection,[inner-input]::-moz-selection{background:var(--sapSelectedColor);color:var(--sapContent_ContrastTextColor)}[inner-input]::-webkit-input-placeholder{font-style:var(--_ui5_input_placeholder_style);color:var(--sapField_PlaceholderTextColor)}[inner-input]::-moz-placeholder{font-style:var(--_ui5_input_placeholder_style);color:var(--sapField_PlaceholderTextColor)}.input-root-phone[value-state]:not([value-state=None]){border-width:var(--_ui5_input_state_border_width)}.input-root-phone[value-state=Negative] [inner-input],.input-root-phone[value-state=Critical] [inner-input]{font-style:var(--_ui5_input_error_warning_font_style)}.input-root-phone[value-state=Negative] [inner-input]{font-weight:var(--_ui5_input_error_font_weight)}.input-root-phone[value-state=Negative]:not([readonly]){background:var(--sapField_InvalidBackgroundStyle);background-color:var(--sapField_InvalidBackground);border-color:var(--_ui5_input_value_state_error_border_color)}.input-root-phone[value-state=Negative]:not([readonly]) [inner-input]:focus{background-color:var(--_ui5_input_focused_value_state_error_background);border-color:var(--_ui5_input_focused_value_state_error_border_color)}.input-root-phone[value-state=Negative]:not([readonly]):focus-within:before{border-color:var(--_ui5_input_focused_value_state_error_focus_outline_color)}.input-root-phone[value-state=Negative]:not([readonly]):not([disabled]),.input-root-phone[value-state=Critical]:not([readonly]):not([disabled]),.input-root-phone[value-state=Information]:not([readonly]):not([disabled]){border-style:var(--_ui5_input_error_warning_border_style)}.input-root-phone[value-state=Critical]:not([readonly]){background:var(--sapField_WarningBackgroundStyle);background-color:var(--sapField_WarningBackground);border-color:var(--_ui5_input_value_state_warning_border_color)}.input-root-phone[value-state=Critical]:not([readonly]) [inner-input]:focus{background-color:var(--_ui5_input_focused_value_state_warning_background);border-color:var(--_ui5_input_focused_value_state_warning_border_color)}.input-root-phone[value-state=Critical]:not([readonly]):focus-within:before{border-color:var(--_ui5_input_focused_value_state_warning_focus_outline_color)}.input-root-phone[value-state=Positive]:not([readonly]){background:var(--sapField_SuccessBackgroundStyle);background-color:var(--sapField_SuccessBackground);border-color:var(--_ui5_input_value_state_success_border_color);border-width:var(--_ui5_input_value_state_success_border_width)}.input-root-phone[value-state=Positive]:not([readonly]) [inner-input]:focus{background-color:var(--_ui5_input_focused_value_state_success_background);border-color:var(--_ui5_input_focused_value_state_success_border_color)}.input-root-phone[value-state=Positive]:not([readonly]):focus-within:before{border-color:var(--_ui5_input_focused_value_state_success_focus_outline_color)}.input-root-phone[value-state=Information]:not([readonly]){background:var(--sapField_InformationBackgroundStyle);background-color:var(--sapField_InformationBackground);border-color:var(--_ui5_input_value_state_information_border_color);border-width:var(--_ui5_input_information_border_width)}.input-root-phone[value-state=Information]:not([readonly]) [inner-input]:focus{background-color:var(--_ui5_input_focused_value_state_information_background);border-color:var(--_ui5_input_focused_value_state_information_border_color)}.ui5-multi-combobox-toggle-button{margin-left:.5rem}.ui5-responsive-popover-header{width:100%;min-height:2.5rem;display:flex;flex-direction:column}.ui5-responsive-popover-header-text{width:100%}.ui5-responsive-popover-header .row{box-sizing:border-box;padding:.25rem 1rem;min-height:2.5rem;display:flex;justify-content:center;align-items:center;font-size:var(--sapFontHeader5Size)}.ui5-responsive-popover-footer{display:flex;justify-content:flex-end;padding:.25rem 0;width:100%}.ui5-responsive-popover-footer .ui5-responsive-popover-close-btn,.ui5-responsive-popover-footer .ui5-responsive-popover-footer-btn{margin-left:.5rem}.ui5-responsive-popover-header .ui5-responsive-popover-close-btn{position:absolute;right:1rem}.ui5-responsive-popover-footer .ui5-responsive-popover-footer-btn{width:4.5rem}\n'}),gx=qr(()=>{Ca(),Ch(),wh(),St("@ui5/webcomponents-theming","sap_horizon",async()=>ch),St("@ui5/webcomponents","sap_horizon",async()=>_h,"host"),ax=".ui5-valuestatemessage-popover{border-radius:var(--_ui5_value_state_message_popover_border_radius);box-shadow:var(--_ui5_value_state_message_popover_box_shadow)}.ui5-input-value-state-message-icon{width:var(--_ui5_value_state_message_icon_width);height:var(--_ui5_value_state_message_icon_height);display:var(--_ui5_input_value_state_icon_display);position:absolute;padding-right:.375rem}.ui5-valuestatemessage-root .ui5-input-value-state-message-icon{left:var(--_ui5_input_value_state_icon_offset)}.ui5-input-value-state-message-icon[name=error]{color:var(--sapNegativeElementColor)}.ui5-input-value-state-message-icon[name=alert]{color:var(--sapCriticalElementColor)}.ui5-input-value-state-message-icon[name=success]{color:var(--sapPositiveElementColor)}.ui5-input-value-state-message-icon[name=information]{color:var(--sapInformativeElementColor)}.ui5-valuestatemessage-root{box-sizing:border-box;display:inline-block;color:var(--sapTextColor);font-size:var(--sapFontSmallSize);font-family:var(--sapFontFamily);height:auto;padding:var(--_ui5_value_state_message_padding);overflow:hidden;text-overflow:ellipsis;min-width:6.25rem;border:var(--_ui5_value_state_message_border);line-height:var(--_ui5_value_state_message_line_height)}[ui5-responsive-popover] .ui5-valuestatemessage-header,[ui5-popover] .ui5-valuestatemessage-header{min-height:var(--_ui5_value_state_message_popover_header_min_height);min-width:var(--_ui5_value_state_message_popover_header_min_width);max-width:var(--_ui5_value_state_message_popover_header_max_width);width:var(--_ui5_value_state_message_popover_header_width)}[ui5-responsive-popover] .ui5-valuestatemessage-header{padding:var(--_ui5_value_state_header_padding);border:var(--_ui5_value_state_header_border);border-bottom:var(--_ui5_value_state_header_border_bottom);flex-grow:1;position:relative}.ui5-valuestatemessage--success{background:var(--sapSuccessBackground)}.ui5-valuestatemessage--warning{background:var(--sapWarningBackground)}.ui5-valuestatemessage--error{background:var(--sapErrorBackground)}.ui5-valuestatemessage--information{background:var(--sapInformationBackground)}.ui5-responsive-popover-header:focus{outline-offset:var(--_ui5_value_state_header_offset);outline:var(--sapContent_FocusWidth) var(--sapContent_FocusStyle) var(--sapContent_FocusColor)}.ui5-valuestatemessage-popover::part(header),.ui5-valuestatemessage-popover::part(content){padding:0}.ui5-valuestatemessage-popover::part(header),.ui5-valuestatemessage-popover::part(footer){min-height:0}.ui5-valuestatemessage-popover::part(header),.ui5-popover-with-value-state-header::part(header),.ui5-popover-with-value-state-header-phone::part(header){margin-bottom:0}.ui5-popover-with-value-state-header-phone .ui5-valuestatemessage-root{padding:var(--_ui5_value_state_message_padding_phone);width:100%}.ui5-popover-with-value-state-header-phone .ui5-input-value-state-message-icon{left:var(--_ui5_value_state_message_icon_offset_phone)}.ui5-popover-with-value-state-header-phone .ui5-valuestatemessage-header{position:relative;flex:none;top:0;left:0;max-width:100%}.ui5-popover-with-value-state-header-phone::part(content){padding:0;overflow:hidden;display:flex;flex-direction:column}.ui5-popover-with-value-state-header-phone [ui5-list]{overflow:auto}[ui5-responsive-popover] .ui5-valuestatemessage--error{box-shadow:var(--_ui5_value_state_header_box_shadow_error)}[ui5-responsive-popover] .ui5-valuestatemessage--information{box-shadow:var(--_ui5_value_state_header_box_shadow_information)}[ui5-responsive-popover] .ui5-valuestatemessage--success{box-shadow:var(--_ui5_value_state_header_box_shadow_success)}[ui5-responsive-popover] .ui5-valuestatemessage--warning{box-shadow:var(--_ui5_value_state_header_box_shadow_warning)}[ui5-responsive-popover].ui5-popover-with-value-state-header .ui5-valuestatemessage-root:has(+[ui5-list]:empty){box-shadow:none}\n"}),mx=qr(()=>{Ca(),Ch(),wh(),St("@ui5/webcomponents-theming","sap_horizon",async()=>ch),St("@ui5/webcomponents","sap_horizon",async()=>_h,"host"),nx=".ui5-suggestions-popover{box-shadow:var(--sapContent_Shadow1)}.ui5-suggestions-popover::part(header),.ui5-suggestions-popover::part(content){padding:0}.ui5-suggestions-popover::part(footer){padding:0 1rem}.input-root-phone.native-input-wrapper{display:contents}.input-root-phone.native-input-wrapper:before{display:none}.native-input-wrapper .ui5-input-inner-phone{margin:0}.native-input-wrapper .ui5-multi-input-mobile-dialog-button{margin-inline-start:.5rem}\n"}),vx=qr(()=>{!function(e){e.StartsWithPerTerm="StartsWithPerTerm",e.StartsWith="StartsWith",e.Contains="Contains",e.None="None"}(sx||(sx={})),lx=sx}),fx=qr(()=>{cx=e=>e.replace(/[.*+?^${}()|[\]\\]/g,"\\$&")});function bx(e,t,o,i){return e.replaceAll(new RegExp(cx(t),(i?"i":"")+"g"),o)}var yx=qr(()=>{fx(),Uk()});function Cx(e,t){const o=e?.listItemContent||wx;return b_("li",{part:"native-li","data-sap-focus-ref":!0,tabindex:this._effectiveTabIndex,class:this.classes.main,draggable:this.movable,role:t?.role,title:t?.title,onFocusIn:this._onfocusin,onKeyUp:this._onkeyup,onKeyDown:this._onkeydown,onClick:this._onclick,children:o.call(this)})}function wx(){return b_("div",{part:"content",id:`${this._id}-content`,class:"ui5-li-content",children:b_("div",{class:"ui5-li-text-wrapper",children:b_("span",{part:"title",class:"ui5-li-title",children:b_("slot",{})})})})}var kx=qr(()=>{C_()});function xx(){return[Cx.call(this,{listItemContent:Sx},{role:"option"})]}function Sx(){return b_("div",{part:"content",id:"content",class:"ui5-li-content",children:y_("div",{class:"ui5-li-text-wrapper",children:[b_("span",{part:"title",className:"ui5-li-title",dangerouslySetInnerHTML:{__html:this.markupText}}),this.additionalText&&b_("span",{part:"additional-text",class:"ui5-li-additional-text",children:this.additionalText})]})})}var Tx,Bx,Ix,Dx=qr(()=>{C_(),kx()}),Ax=qr(()=>{Ca(),Ch(),wh(),St("@ui5/webcomponents-theming","sap_horizon",async()=>ch),St("@ui5/webcomponents","sap_horizon",async()=>_h,"host"),Tx=":host([ui5-suggestion-item]){height:auto;min-height:var(--_ui5_list_item_base_height)}:host([ui5-suggestion-item]) .ui5-li-root{min-height:var(--_ui5_list_item_base_height)}:host([ui5-suggestion-item]) .ui5-li-content{padding-bottom:.5rem;padding-top:.5rem;box-sizing:border-box}\n"}),Px=qr(()=>{wn(),kn(),Pa(),tm(),Dx(),Ax(),Bx=function(e,t,o,i){var r,a=arguments.length,n=a<3?t:null===i?i=Object.getOwnPropertyDescriptor(t,o):i;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)n=Reflect.decorate(e,t,o,i);else for(var s=e.length-1;s>=0;s--)(r=e[s])&&(n=(a<3?r(n):a>3?r(t,o,n):r(t,o))||n);return a>3&&n&&Object.defineProperty(t,o,n),n},Ix=class extends qg{constructor(){super(...arguments),this.markupText=""}onEnterDOM(){Po()&&this.setAttribute("desktop","")}get _effectiveTabIndex(){return-1}},Bx([bn()],Ix.prototype,"text",void 0),Bx([bn()],Ix.prototype,"additionalText",void 0),Bx([bn()],Ix.prototype,"markupText",void 0),(Ix=Bx([fn({tag:"ui5-suggestion-item",template:xx,styles:[qg.styles,Tx]})],Ix)).define()});function Mx(e){const t=e?.items||Ex;return y_("ul",{role:"group",class:"ui5-group-li-root",onDragEnter:this._ondragenter,onDragOver:this._ondragover,onDrop:this._ondrop,onDragLeave:this._ondragleave,children:[this.hasHeader&&b_(ty,{focused:this.focused,part:"header",accessibleRole:sm.Group,wrappingType:this.getGroupHeaderWrapping(),children:this.hasFormattedHeader?b_("slot",{name:"header"}):this.headerText}),t.call(this),b_(Dg,{orientation:"Horizontal",ownerReference:this})]})}function Ex(){return b_("slot",{})}var zx,Fx,Rx=qr(()=>{C_(),iy(),Mg(),pm()}),Ox=qr(()=>{wn(),Wn(),vy(),Rx(),zx=function(e,t,o,i){var r,a=arguments.length,n=a<3?t:null===i?i=Object.getOwnPropertyDescriptor(t,o):i;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)n=Reflect.decorate(e,t,o,i);else for(var s=e.length-1;s>=0;s--)(r=e[s])&&(n=(a<3?r(n):a>3?r(t,o,n):r(t,o))||n);return a>3&&n&&Object.defineProperty(t,o,n),n},Fx=class extends ly{},zx([Sn({default:!0,invalidateOnChildChange:!0,type:HTMLElement})],Fx.prototype,"items",void 0),(Fx=zx([fn({tag:"ui5-suggestion-item-group",template:Mx})],Fx)).define()});function Lx(e){const t=e?.suggestionsList||Nx,o=e?.mobileHeader,i=e?.valueStateMessage,r=e?.valueStateMessageInputIcon;return y_(Ib,{class:this.classes.popover,hideArrow:!0,preventFocusRestore:!0,preventInitialFocus:!0,placement:"Bottom",horizontalAlign:"Start",tabindex:-1,style:this.styles.suggestionsPopover,onOpen:this._afterOpenPicker,onClose:this._afterClosePicker,onScroll:this._scroll,open:this.open,opener:this,accessibleName:this._popupLabel,children:[this._isPhone&&b_(f_,{children:y_("div",{slot:"header",class:"ui5-responsive-popover-header",children:[b_("div",{class:"row",children:b_(nv,{level:"H1",wrappingType:"None",class:"ui5-responsive-popover-header-text",children:this._headerTitleText})}),b_("div",{class:"row",children:y_("div",{class:"input-root-phone native-input-wrapper",children:[b_($x,{class:"ui5-input-inner-phone",type:this.inputType,value:this.value,showClearIcon:this.showClearIcon,placeholder:this.placeholder,onInput:this._handleInput}),o?.call(this)]})}),this.hasValueStateMessage&&y_("div",{class:this.classes.popoverValueState,style:this.styles.suggestionPopoverHeader,children:[b_(gh,{class:"ui5-input-value-state-message-icon",name:r?.call(this)}),this.open&&i?.call(this)]})]})}),!this._isPhone&&this.hasValueStateMessage&&y_("div",{slot:"header",class:{"ui5-responsive-popover-header":!0,...this.classes.popoverValueState},style:this.styles.suggestionPopoverHeader,children:[b_(gh,{class:"ui5-input-value-state-message-icon",name:r?.call(this)}),this.open&&i?.call(this)]}),this.showSuggestions&&t.call(this),this._isPhone&&y_("div",{slot:"footer",class:"ui5-responsive-popover-footer",children:[b_(tp,{design:"Emphasized",onClick:this._confirmMobileValue,children:this._suggestionsOkButtonText}),b_(tp,{class:"ui5-responsive-popover-close-btn",design:"Transparent",onClick:this._cancelMobileValue,children:this._suggestionsCancelButtonText})]})]})}function Nx(){return b_(py,{accessibleRole:ig.ListBox,separators:this.suggestionSeparators,selectionMode:"Single",onMouseDown:this.onItemMouseDown,onItemClick:this._handleSuggestionItemPress,onSelectionChange:this._handleSelectionChange,children:b_("slot",{})})}var Hx,Ux,Vx,Wx,qx,jx,Yx,$x,Gx=qr(()=>{C_(),Qx(),xh(),fy(),Hb(),gp(),wg(),cv()}),Kx=jr({default:()=>Hx}),Zx=qr(()=>{yx(),Px(),Ox(),Gx(),Qx(),yh(),Hx=class e{get template(){return Lx}constructor(e,t,o,i){this.component=e,this.slotName=t,this.handleFocus=i,this.highlight=o,this.selectedItemIndex=-1}onUp(e,t){e.preventDefault();const o=!this.isOpened&&this._hasValueState&&-1===t?0:t;return this._handleItemNavigation(!1,o),!0}onDown(e,t){e.preventDefault();const o=!this.isOpened&&this._hasValueState&&-1===t?0:t;return this._handleItemNavigation(!0,o),!0}onSpace(e){return!!this._isItemOnTarget()&&(e.preventDefault(),this.onItemSelected(this._selectedItem,!0),!0)}onEnter(e){return this._isGroupItem?(e.preventDefault(),!1):!!this._isItemOnTarget()&&(this.onItemSelected(this._selectedItem,!0),!0)}onPageUp(e){e.preventDefault();const t=this.selectedItemIndex-10>-1;return this._moveItemSelection(this.selectedItemIndex,t?this.selectedItemIndex-=10:this.selectedItemIndex=0),!0}onPageDown(e){e.preventDefault();const t=this.visibleItems;if(!t)return!0;const o=t.length-1,i=this.selectedItemIndex+10<=o;return this._moveItemSelection(this.selectedItemIndex,i?this.selectedItemIndex+=10:this.selectedItemIndex=o),!0}onHome(e){return e.preventDefault(),this._moveItemSelection(this.selectedItemIndex,this.selectedItemIndex=0),!0}onEnd(e){e.preventDefault();const t=this._getItems().length-1;return!t||(this._moveItemSelection(this.selectedItemIndex,this.selectedItemIndex=t),!0)}onTab(){return!!this._isItemOnTarget()&&(this.onItemSelected(this._selectedItem,!0),!0)}toggle(e,t){(void 0!==e?e:!this.isOpened())?this._getComponent().open=!0:this.close(t.preventFocusRestore)}get _selectedItem(){return this._getNonGroupItems().find(e=>e.selected)}_isScrollable(){const e=this._getScrollContainer();return e.offsetHeight<e.scrollHeight}close(e=!1){const t=this._getItems()&&this._getItems()[this.selectedItemIndex];this._getComponent().open=!1;const o=this._getPicker();o.preventFocusRestore=e,o.open=!1,t&&t.focused&&(t.focused=!1)}updateSelectedItemPosition(e){this.selectedItemIndex=e}onItemSelected(e,t){const o=e,i=this._getNonGroupItems();o&&(this.accInfo={isGroup:o.hasAttribute("ui5-suggestion-item-group"),currentPos:i.indexOf(o)+1,listSize:i.length,itemText:o.text||"",additionalText:o.additionalText},this._getComponent().onItemSelected(o,t),this._getComponent().open=!1)}onItemSelect(e){this._getComponent().onItemSelect(e)}onItemPress(e){let t;const o="ui5-item-click"===e.type;o&&!e.detail.item.selected||this._handledPress&&!o||(o&&e.detail.item.selected?(t=e.detail.item,this._handledPress=!0):t=e.detail.selectedItems[0],this.onItemSelected(t,!1))}_onClose(){this._handledPress=!1}_isItemOnTarget(){return this.isOpened()&&null!==this.selectedItemIndex&&-1!==this.selectedItemIndex&&!this._isGroupItem}get _isGroupItem(){const e=this._getItems();return!(!e||!e[this.selectedItemIndex])&&e[this.selectedItemIndex].hasAttribute("ui5-suggestion-item-group")}isOpened(){return!!this._getPicker()?.open}_handleItemNavigation(e,t){this.selectedItemIndex=t,this._getItems().length&&(e?this._selectNextItem():this._selectPreviousItem())}_selectNextItem(){const e=this._getItems().length,t=this.selectedItemIndex;-1!==t&&t+1>e-1||this._moveItemSelection(t,++this.selectedItemIndex)}_selectPreviousItem(){const e=this.visibleItems,t=this.selectedItemIndex;if(-1!==t&&null!==t)return t-1<0?((e[t].hasAttribute("ui5-suggestion-item")||e[t].hasAttribute("ui5-suggestion-item-custom"))&&(e[t].selected=!1),e[t].focused=!1,this.component.focused=!0,this.component.hasSuggestionItemSelected=!1,this.component.value=this.component.typedInValue,void(this.selectedItemIndex-=1)):void this._moveItemSelection(t,--this.selectedItemIndex)}get visibleItems(){return this._getItems().filter(e=>!e.hidden)}_moveItemSelection(e,t){const o=this.visibleItems,i=o[t],r=o[e],a=this._getNonGroupItems(),n=i?.hasAttribute("ui5-suggestion-item-group");if(!i)return;this.component.focused=!1;const s=this.visibleItems[this.selectedItemIndex];if(this.accInfo={isGroup:n,currentPos:o.indexOf(i)+1,itemText:(n?s.headerText:s.text)||""},(i.hasAttribute("ui5-suggestion-item")||i.hasAttribute("ui5-suggestion-item-custom"))&&(this.accInfo.additionalText=i.additionalText||"",this.accInfo.currentPos=a.indexOf(i)+1,this.accInfo.listSize=a.length),r&&(r.focused=!1),(r?.hasAttribute("ui5-suggestion-item")||r?.hasAttribute("ui5-suggestion-item-custom"))&&(r.selected=!1),i&&(i.focused=!0,n||(i.selected=!0),this.handleFocus&&i.focus()),this.component.hasSuggestionItemSelected=!0,this.onItemSelect(i),!this._isItemIntoView(i)){const e=this._isGroupItem?i.shadowRoot.querySelector("[ui5-li-group-header]"):i;this._scrollItemIntoView(e)}}_deselectItems(){this._getItems().forEach(e=>{(e.hasAttribute("ui5-suggestion-item")||e.hasAttribute("ui5-suggestion-item-custom"))&&(e.selected=!1),e.focused=!1})}_clearItemFocus(){const e=this._getItems().find(e=>e.focused);e&&(e.focused=!1)}_isItemIntoView(t){const o=t.getDomRef().getBoundingClientRect(),i=this._getComponent().getDomRef().getBoundingClientRect(),r=window.innerHeight||document.documentElement.clientHeight;let a=0;return this._hasValueState&&(a=this._getPicker().querySelector("[slot=header]").getBoundingClientRect().height),o.top+e.SCROLL_STEP<=r&&o.top>=i.top+a}_scrollItemIntoView(e){e.scrollIntoView({behavior:"auto",block:"nearest",inline:"nearest"})}_getScrollContainer(){return this._scrollContainer||(this._scrollContainer=this._getPicker().shadowRoot.querySelector(".ui5-popup-content")),this._scrollContainer}_getItems(){return this._getComponent().getSlottedNodes("suggestionItems").flatMap(e=>e.hasAttribute("ui5-suggestion-item-group")?[e,...e.items]:[e])}_getNonGroupItems(){return this._getItems().filter(e=>!e.hasAttribute("ui5-suggestion-item-group"))}_getComponent(){return this.component}_getList(){return this._getPicker().querySelector("[ui5-list]")}_getListWidth(){return this._getList()?.offsetWidth}_getPicker(){return this._getComponent().shadowRoot.querySelector("[ui5-responsive-popover]")}get itemSelectionAnnounce(){if(!this.accInfo)return"";if(this.accInfo.isGroup)return`${e.i18nBundle.getText(Fd)} ${this.accInfo.itemText}`;const t=e.i18nBundle.getText(Md,this.accInfo.currentPos||0,this.accInfo.listSize||0);return`${this.accInfo.additionalText} ${t}`.trim()}hightlightInput(e,t){return function(e,t){if(!e||!t)return e;const o=o=>{const[i,r]=o.split("");for(;e.indexOf(o)>=0||t.indexOf(o)>=0;)o=`${i}${o}${r}`;return o},i=o("12"),r=o("34");let a=zk(bx(e,t,e=>`${i}${e}${r}`,!0));return[[i,"<b>"],[r,"</b>"]].forEach(([e,t])=>{a=bx(a,e,t,!1)}),a}(e,t)}get _hasValueState(){return this.component.hasValueStateMessage}_clearSelectedSuggestionAndaccInfo(){this.accInfo=void 0,this.selectedItemIndex=0}},Hx.SCROLL_STEP=60,$x.SuggestionsClass=Hx}),Xx=jr({default:()=>Ux}),Jx=qr(()=>{Ux=class{constructor(e){this._onComposition=()=>{this._component.updateCompositionState(!0)},this._onCompositionEnd=()=>{this._component.updateCompositionState(!1)},this._component=e}addEventListeners(){const e=this._component.getInputEl();e&&(e.addEventListener("compositionstart",this._onComposition),e.addEventListener("compositionupdate",this._onComposition),e.addEventListener("compositionend",this._onCompositionEnd))}removeEventListeners(){const e=this._component.getInputEl();e&&(e.removeEventListener("compositionstart",this._onComposition),e.removeEventListener("compositionupdate",this._onComposition),e.removeEventListener("compositionend",this._onCompositionEnd))}}}),Qx=qr(()=>{Cn(),kn(),wn(),Wn(),xn(),ec(),yp(),Uk(),Pa(),Ev(),tc(),Vk(),$a(),qn(),Ka(),oc(),Wk(),mp(),Nk(),_x(),ux(),yh(),hx(),px(),gx(),mx(),vx(),Vx=function(e,t,o,i){var r,a=arguments.length,n=a<3?t:null===i?i=Object.getOwnPropertyDescriptor(t,o):i;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)n=Reflect.decorate(e,t,o,i);else for(var s=e.length-1;s>=0;s--)(r=e[s])&&(n=(a<3?r(n):a>3?r(t,o,n):r(t,o))||n);return a>3&&n&&Object.defineProperty(t,o,n),n},function(e){e.CHANGE="change",e.INPUT="input",e.SELECTION_CHANGE="selection-change"}(qx||(qx={})),function(e){e.ACTION_ENTER="enter",e.ACTION_USER_INPUT="input"}(jx||(jx={})),Yx=Wx=class extends hn{get formValidityMessage(){return this.nativeInput?.validationMessage}get _effectiveShowSuggestions(){return!(!this.showSuggestions||!this.Suggestions)}get formValidity(){return{valueMissing:this.nativeInput?.validity.valueMissing,typeMismatch:this.required&&this.nativeInput?.validity.typeMismatch,patternMismatch:this.nativeInput?.validity.patternMismatch}}async formElementAnchor(){return this.getFocusDomRefAsync()}get formFormattedValue(){return this.value}constructor(){super(),this.disabled=!1,this.highlight=!1,this.readonly=!1,this.required=!1,this.noTypeahead=!1,this.type="Text",this.value="",this.valueState="None",this.showSuggestions=!1,this.showClearIcon=!1,this.open=!1,this.filter=lx.None,this._effectiveShowClearIcon=!1,this.focused=!1,this.valueStateOpen=!1,this._inputAccInfo={},this._nativeInputAttributes={},this._inputIconFocused=!1,this._linksListenersArray=[],this._isComposing=!1,this._handleLinkNavigation=!1,this.hasSuggestionItemSelected=!1,this.valueBeforeItemSelection="",this.valueBeforeSelectionStart="",this.previousValue="",this.firstRendering=!0,this.typedInValue="",this.lastConfirmedValue="",this.isTyping=!1,this._isLatestValueFromSuggestions=!1,this._isChangeTriggeredBySuggestion=!1,this._indexOfSelectedItem=-1,this._handleResizeBound=this._handleResize.bind(this),this._focusedAfterClear=!1,this._valueStateLinks=[]}onEnterDOM(){dp.register(this,this._handleResizeBound),kl(this,this._updateAssociatedLabelsTexts.bind(this)),this._enableComposition()}onExitDOM(){dp.deregister(this,this._handleResizeBound),Tl(this),this._removeLinksEventListeners(),this._composition?.removeEventListeners()}_highlightSuggestionItem(e){e.markupText=this.typedInValue?this.Suggestions?.hightlightInput(e.text||"",this.typedInValue):zk(e.text||"")}_isGroupItem(e){return e.hasAttribute("ui5-suggestion-item-group")}onBeforeRendering(){this.showSuggestions&&(this.enableSuggestions(),this._flattenItems.forEach(e=>{e.hasAttribute("ui5-suggestion-item")?this._highlightSuggestionItem(e):this._isGroupItem(e)&&e.items?.forEach(e=>{this._highlightSuggestionItem(e)})})),this._effectiveShowClearIcon=this.showClearIcon&&!!this.value&&!this.readonly&&!this.disabled,this.style.setProperty("--_ui5-input-icons-count",`${this.iconsCount}`);const e=!!this._flattenItems.length,t=!!this.value,o=this.shadowRoot.querySelector("input")===op(),i=this.disabled||this.readonly,r=!i&&!this._isPhone&&e&&(this.open||t&&o&&this.isTyping);i?this.open=!1:this._isPhone||(this.open=e&&(this.open||t&&o&&this.isTyping)),this.shouldDisplayOnlyValueStateMessage&&!r?this.openValueStatePopover():this.closeValueStatePopover();const a=this.value,n=this.getInputDOMRefSync();if(!n||!a)return;this.filter!==lx.None&&this._filterItems(this.typedInValue);const s=n.selectionEnd-n.selectionStart;if(this._shouldAutocomplete&&!zo()&&!s&&!this._isKeyNavigation){const e=this._getFirstMatchingItem(a);e?(this._isComposing||this._handleTypeAhead(e),this._selectMatchingItem(e)):this._matchedSuggestionItem=void 0}}onAfterRendering(){this.showSuggestions&&this.Suggestions?._getPicker()&&(this._listWidth=this.Suggestions._getListWidth(),this.Suggestions._getList()._itemNavigation._getItems=()=>[]),this._performTextSelection&&(this.typedInValue.length&&this.value.length&&this._adjustSelectionRange(),this.fireDecoratorEvent("type-ahead")),this._performTextSelection=!1,Mi(this._valueStateLinks,this.linksInAriaValueStateHiddenText)||(this._removeLinksEventListeners(),this._addLinksEventListeners(),this._valueStateLinks=this.linksInAriaValueStateHiddenText)}_adjustSelectionRange(){const e=this.getInputDOMRefSync(),t=(this.Suggestions?._getItems().filter(e=>!e.hidden))?.find(e=>e.selected||e.focused),o=this._flattenItems.filter(e=>this._isGroupItem(e));t&&!o.includes(t)?t?.text?.toLowerCase().startsWith(this.typedInValue.toLowerCase())?e.setSelectionRange(this.typedInValue.length,this.value.length):e.setSelectionRange(0,this.value.length):e.setSelectionRange(this.typedInValue.length,this.value.length)}_onkeydown(e){if(this._isKeyNavigation=!0,this._shouldAutocomplete=!this.noTypeahead&&!(Hs(e)||Us(e)||Os(e)),Ss(e))return this._handleUp(e);if(Ts(e))return this._handleDown(e);if(Cs(e))return this._handleSpace(e);if(Ls(e))return this._handleTab();if(fs(e)){const t=this.previousValue===this.getInputDOMRefSync().value;return this._enterKeyDown=!0,t?(this.fireDecoratorEvent("_request-submit"),void Li(this)):this._handleEnter(e)}return Vs(e)?this._handlePageUp(e):Ws(e)?this._handlePageDown(e):Es(e)?this._handleHome(e):zs(e)?this._handleEnd(e):Os(e)?this._handleEscape():il(e)?this._handleCtrlAltF8():(this.showSuggestions&&this._clearPopoverFocusAndSelection(),void(this._isKeyNavigation=!1))}_onkeyup(e){Us(e)&&(this.value=e.target.value),this._enterKeyDown=!1}get currentItemIndex(){const e=(this.Suggestions?._getItems()).filter(e=>!e.hidden),t=e.find(e=>e.selected||e.focused);return t?e.indexOf(t):-1}_handleUp(e){this.Suggestions?.isOpened()&&this.Suggestions.onUp(e,this.currentItemIndex)}_handleDown(e){this.Suggestions?.isOpened()&&this.Suggestions.onDown(e,this.currentItemIndex)}_handleSpace(e){this.Suggestions&&this.Suggestions.onSpace(e)}_handleTab(){this.Suggestions&&this.previousValue!==this.value&&this.Suggestions.onTab()}_handleCtrlAltF8(){this._handleLinkNavigation=!0;const e=this.linksInAriaValueStateHiddenText;e.length&&e[0].focus()}_addLinksEventListeners(){const e=this.linksInAriaValueStateHiddenText;e.forEach((t,o)=>{this._linksListenersArray.push(t=>{Fk(t,e,o,{closeValueState:()=>{this.Suggestions?.isOpened()&&this.Suggestions?.close(),this.valueStateOpen&&this.closeValueStatePopover()},focusInput:()=>{this._handleLinkNavigation=!1,this.getInputDOMRef().focus()},navigateToItem:()=>{this._handleLinkNavigation?(this._handleLinkNavigation=!1,this.Suggestions?.isOpened()&&(this.innerFocusIn(),this.getInputDOMRef().focus(),this.Suggestions.onDown(t,this.currentItemIndex))):this._handleDown(t)},isPopoverOpen:()=>this.Suggestions&&this.Suggestions?.isOpened()||!1})}),t.addEventListener("keydown",this._linksListenersArray[o])})}_removeLinksEventListeners(){this.linksInAriaValueStateHiddenText.forEach((e,t)=>{e.removeEventListener("keydown",this._linksListenersArray[t])}),this._linksListenersArray=[],this._handleLinkNavigation=!1}_handleEnter(e){const t=!!this.Suggestions?.onEnter(e),o=this.getInputDOMRefSync();let i=this._matchedSuggestionItem;if(i||(i=this._selectableItems.find(e=>e.text?.toLowerCase()===this.value.toLowerCase())),i){const e=i.text||"";o.setSelectionRange(e.length,e.length),t||(this.fireSelectionChange(i,!0),this.acceptSuggestion(i,!0),this.open=!1)}!this._isPhone||this._flattenItems.length||this.isTypeNumber||o.setSelectionRange(this.value.length,this.value.length),t?this.focused=!0:this.lastConfirmedValue=this.value}_handlePageUp(e){this._isSuggestionsFocused?this.Suggestions?.onPageUp(e):e.preventDefault()}_handlePageDown(e){this._isSuggestionsFocused?this.Suggestions?.onPageDown(e):e.preventDefault()}_handleHome(e){this._isSuggestionsFocused&&this.Suggestions?.onHome(e)}_handleEnd(e){this._isSuggestionsFocused&&this.Suggestions?.onEnd(e)}_handleEscape(){const e=this.showSuggestions&&!!this.Suggestions&&this.open,t=this.getInputDOMRefSync(),o=t.selectionEnd-t.selectionStart>0;if(this.isTyping=!1,this._matchedSuggestionItem=void 0,this.value!==this.previousValue&&this.value!==this.lastConfirmedValue&&!this.open)return this.value=this.lastConfirmedValue?this.lastConfirmedValue:this.previousValue,void this.fireDecoratorEvent(qx.INPUT,{inputType:""});if(e){if(e&&this.Suggestions?._isItemOnTarget())return this.value=this.typedInValue||this.valueBeforeSelectionStart,void(this.focused=!0);o&&(this.value=this.typedInValue),this.focused=!0}else this.value=this.lastConfirmedValue?this.lastConfirmedValue:this.previousValue}_onfocusin(e){this.focused=!0,this._focusedAfterClear||(this.previousValue=this.value),this.valueBeforeSelectionStart=this.value,this._inputIconFocused=!!e.target&&e.target===this.querySelector("[ui5-icon]"),this._focusedAfterClear=!1}innerFocusIn(){}_onfocusout(e){const t=e.relatedTarget;this.Suggestions?._getPicker()?.contains(t)||this.contains(t)||this.getSlottedNodes("valueStateMessage").some(e=>e.contains(t))||(this.focused=!1,this._isChangeTriggeredBySuggestion=!1,this.showClearIcon&&!this._effectiveShowClearIcon&&(this._clearIconClicked=!1,this._handleChange()),this.open=!1,this._clearPopoverFocusAndSelection(),this._clearIconClicked||(this.previousValue=""),this.lastConfirmedValue="",this.isTyping=!1,this.value!==this.previousValue&&this.showClearIcon&&(this._clearIconClicked=!1))}_clearPopoverFocusAndSelection(){this.showSuggestions&&this.Suggestions&&(this.hasSuggestionItemSelected=!1,this.Suggestions?._deselectItems(),this.Suggestions?._clearItemFocus())}_click(){Ao()&&!this.readonly&&this.Suggestions&&(this.blur(),this.open=!0)}_handleChange(){if(this._clearIconClicked)return void(this._clearIconClicked=!1);const e=()=>{this._isChangeTriggeredBySuggestion||this.fireDecoratorEvent(qx.CHANGE),this.previousValue=this.value,this.typedInValue=this.value,this._isChangeTriggeredBySuggestion=!1};this.previousValue!==this.getInputDOMRefSync().value&&(this.Suggestions?._getPicker()?.open&&this._flattenItems.some(e=>e.hasAttribute("ui5-suggestion-item")&&e.selected)?this._changeToBeFired=!0:(e(),this._enterKeyDown&&(this.fireDecoratorEvent("_request-submit"),Li(this))))}_clear(){const e=this.value;this.value="",this.fireDecoratorEvent(qx.INPUT,{inputType:""})?(this.typedInValue="",this._isPhone||(this.fireResetSelectionChange(),this.focus(),this._focusedAfterClear=!0)):this.value=e}_iconMouseDown(){this._clearIconClicked=!0}_scroll(e){this.fireDecoratorEvent("suggestion-scroll",{scrollTop:e.detail.scrollTop,scrollContainer:e.detail.targetRef})}_handleSelect(){this.fireDecoratorEvent("select")}_handleInput(e){const t=e.detail&&e.detail.inputType||"";this._input(e,t)}_handleNativeInput(e){const t=e.inputType||"";this._input(e,t)}_input(e,t){const o=this.getInputDOMRefSync();this._shouldAutocomplete=!["deleteWordBackward","deleteWordForward","deleteSoftLineBackward","deleteSoftLineForward","deleteEntireSoftLine","deleteHardLineBackward","deleteHardLineForward","deleteByDrag","deleteByCut","deleteContent","deleteContentBackward","deleteContentForward","historyUndo"].includes(t)&&!this.noTypeahead,e.target===o&&(this.focused=!0,e.stopImmediatePropagation()),this.fireEventByAction(jx.ACTION_ENTER,e),this.hasSuggestionItemSelected=!1,this.Suggestions&&this.Suggestions.updateSelectedItemPosition(-1),this.filter&&""===e.target.value&&(this.open=!1),this.isTyping=!0}_startsWithMatchingItems(e){return ex(e,this._selectableItems,"text")}_getFirstMatchingItem(e){if(!this._flattenItems.length)return;const t=this._startsWithMatchingItems(e).filter(e=>!this._isGroupItem(e));return t.length?t[0]:void 0}_handleSelectionChange(e){this.Suggestions?.onItemPress(e)}_selectMatchingItem(e){e.selected=!0,this._matchedSuggestionItem=e}_filterItems(e){let t=[];const o=this._flattenItems.filter(e=>this._isGroupItem(e));this._resetItemVisibility(),t=o.length?this._filterGroups(this.filter,o):dx[this.filter](e,this._selectableItems,"text"),this._selectableItems.forEach(e=>{e.hidden=!t.includes(e)}),0===t.length&&(this.open=!1)}_filterGroups(e,t){const o=[];return t.forEach(t=>{const i=dx[e](this.typedInValue,t.items??[],"text");o.push(...i),0===i.length?t.hidden=!0:t.hidden=!1}),o}_resetItemVisibility(){this._flattenItems.forEach(e=>{this._isGroupItem(e)?e.items?.forEach(e=>{e.hidden=!1}):e.hidden=!1})}_handleTypeAhead(e){const t=e.text?e.text:"",o=this.typedInValue;t.toLowerCase().startsWith(o.toLowerCase())&&(this.value=o+t.substring(o.length)),this._performTextSelection=!0,this._shouldAutocomplete=!1}_handleResize(){this._inputWidth=this.offsetWidth}_updateAssociatedLabelsTexts(){this._associatedLabelsTexts=Cl(this),this._accessibleLabelsRefTexts=vl(this),this._associatedDescriptionRefTexts=Il(this)}_closePicker(){this.open=!1}_confirmMobileValue(){this._closePicker(),this._handleChange()}_cancelMobileValue(){this.value=this.previousValue,this._closePicker()}_afterOpenPicker(){Ao()&&(this.previousValue=this.value,this.getInputDOMRef().focus(),this._composition?.addEventListeners()),this._handlePickerAfterOpen()}_afterClosePicker(){Ao()&&(this.blur(),this.focused=!1),this._changeToBeFired&&!this._isChangeTriggeredBySuggestion?(this.previousValue=this.value,this.fireDecoratorEvent(qx.CHANGE)):this._isChangeTriggeredBySuggestion=!1,this._changeToBeFired=!1,this.open=!1,this.isTyping=!1,this.hasSuggestionItemSelected&&this.focus();const e=this.shadowRoot.querySelector("#selectionText");e&&(e.textContent=""),this._handlePickerAfterClose()}_handlePickerAfterOpen(){this.fireDecoratorEvent("open")}_handlePickerAfterClose(){this.Suggestions?._onClose(),this.fireDecoratorEvent("close")}openValueStatePopover(){this.valueStateOpen=!0}closeValueStatePopover(){this.valueStateOpen=!1}_handleValueStatePopoverAfterClose(){this.valueStateOpen=!1,this._handleLinkNavigation=!1}_getValueStatePopover(){return this.shadowRoot.querySelector("[ui5-popover]")}enableSuggestions(){if(this.Suggestions)return;const e=e=>{e.i18nBundle=Wx.i18nBundle,this.Suggestions=new e(this,"suggestionItems",!0,!1)};Wx.SuggestionsClass?e(Wx.SuggestionsClass):Promise.resolve().then(()=>(Zx(),Kx)).then(t=>{e(t.default)})}_enableComposition(){if(this._composition)return;const e=e=>{this._composition=new e({getInputEl:()=>this.getInputDOMRefSync(),updateCompositionState:e=>{this._isComposing=e}}),this._composition.addEventListeners()};Wx.composition?e(Wx.composition):Promise.resolve().then(()=>(Jx(),Xx)).then(t=>{Wx.composition=t.default,e(t.default)})}acceptSuggestion(e,t){if(this._isGroupItem(e))return;let o=e;if(this._matchedSuggestionItem){const i=this._matchedSuggestionItem.text?.toLowerCase()||"",r=e.text?.toLowerCase()||"";(t||i===r)&&(o=this._matchedSuggestionItem)}const i=o.text||"",r=t?this.valueBeforeItemSelection!==i:this.previousValue!==i;this.hasSuggestionItemSelected=!0,this.value=i,r&&this.previousValue!==i&&(this.valueBeforeItemSelection=i,this.lastConfirmedValue=i,this._performTextSelection=!0,this.fireDecoratorEvent(qx.CHANGE),this._isChangeTriggeredBySuggestion=!0,this.typedInValue=this.value,this.previousValue=this.value),this.valueBeforeSelectionStart="",this._matchedSuggestionItem=void 0,this.isTyping=!1,this.open=!1}updateValueOnSelect(e){const t=this._isGroupItem(e)?this.valueBeforeSelectionStart:e.text;this.value=t||"",this._performTextSelection=!0,this._isGroupItem(e)||(this._matchedSuggestionItem=e)}fireEventByAction(e,t){const o=this.value,i=this.getInputDOMRefSync();if(this.disabled||this.readonly)return;const r=this.getInputValue(),a=e===jx.ACTION_ENTER;this.value=r,this.typedInValue=r,this.valueBeforeSelectionStart=r;const n=this.value;if(a){const e=t.inputType||"";this.fireDecoratorEvent(qx.INPUT,{inputType:e})||(n===this.value&&(this.value=o),i&&(i.value=this.value)),this.fireResetSelectionChange()}}getInputValue(){return this.getDomRef()?this.getInputDOMRef().value:""}getInputDOMRef(){if(Ao()&&this.Suggestions){const e=this.Suggestions._getPicker();if(e)return e.querySelector(".ui5-input-inner-phone")}return this.nativeInput}getInputDOMRefSync(){if(Ao()&&this.Suggestions){const e=this.Suggestions._getPicker();if(e)return e.querySelector(".ui5-input-inner-phone").shadowRoot.querySelector("input")}return this.nativeInput}get nativeInput(){const e=this.getDomRef();return e?e.querySelector("input"):null}get nativeInputWidth(){return this.nativeInput?this.nativeInput.offsetWidth:0}isSuggestionsScrollable(){return this.Suggestions?this.Suggestions?._isScrollable():Promise.resolve(!1)}onItemMouseDown(e){e.preventDefault()}onItemSelected(e,t){t||e?.focused||this.valueBeforeItemSelection===e.text||this.fireSelectionChange(e,!0),this.acceptSuggestion(e,t)}_handleSuggestionItemPress(e){this.Suggestions?.onItemPress(e)}onItemSelect(e){this.valueBeforeItemSelection=this.value,this.updateValueOnSelect(e),this.announceSelectedItem(),this.fireSelectionChange(e,!0)}get _flattenItems(){return this.getSlottedNodes("suggestionItems").flatMap(e=>this._isGroupItem(e)?[e,...e.items]:[e])}get _selectableItems(){return this._flattenItems.filter(e=>!this._isGroupItem(e))}get valueStateTypeMappings(){return{Positive:Wx.i18nBundle.getText(vu),Information:Wx.i18nBundle.getText(fu),Negative:Wx.i18nBundle.getText(gu),Critical:Wx.i18nBundle.getText(mu)}}valueStateTextMappings(){return{Positive:Wx.i18nBundle.getText(wu),Information:Wx.i18nBundle.getText(Cu),Negative:Wx.i18nBundle.getText(bu),Critical:Wx.i18nBundle.getText(yu)}}announceSelectedItem(){const e=this.shadowRoot.querySelector("#selectionText");e&&(e.textContent=this.itemSelectionAnnounce)}fireSelectionChange(e,t){this.Suggestions&&(this.fireDecoratorEvent(qx.SELECTION_CHANGE,{item:e}),this._isLatestValueFromSuggestions=t)}fireResetSelectionChange(){this._isLatestValueFromSuggestions&&(this.fireSelectionChange(null,!1),this.valueBeforeItemSelection=this.value)}get _readonly(){return this.readonly&&!this.disabled}get _headerTitleText(){return this._associatedLabelsTexts||Wx.i18nBundle.getText(bd)}get _suggestionsOkButtonText(){return Wx.i18nBundle.getText(Td)}get _suggestionsCancelButtonText(){return Wx.i18nBundle.getText(Bd)}get clearIconAccessibleName(){return Wx.i18nBundle.getText(Sd)}get _popupLabel(){return Wx.i18nBundle.getText(eu)}get inputType(){return this.type}get inputNativeType(){return this.type.toLowerCase()}get isTypeNumber(){return this.type===Ik.Number}get suggestionsTextId(){return this.showSuggestions?"suggestionsText":""}get valueStateTextId(){return this.hasValueState?"valueStateDesc":""}get _accInfoAriaDescription(){return this._inputAccInfo&&this._inputAccInfo.ariaDescription||""}get _accInfoAriaDescriptionId(){return""!==this._accInfoAriaDescription?"descr":""}get ariaDescriptionText(){return this._associatedDescriptionRefTexts||Bl(this)}get ariaDescriptionTextId(){return this.ariaDescriptionText?"accessibleDescription":""}get ariaDescribedByIds(){return[this.suggestionsTextId,this.valueStateTextId,this._valueStateLinksShortcutsTextAccId,this._inputAccInfo.ariaDescribedBy,this._accInfoAriaDescriptionId,this.ariaDescriptionTextId].filter(Boolean).join(" ")}get accInfo(){const e=this.showSuggestions?"dialog":void 0,t=this.showSuggestions?"list":void 0;return{ariaRoledescription:this._inputAccInfo&&(this._inputAccInfo.ariaRoledescription||void 0),ariaDescribedBy:this.ariaDescribedByIds||void 0,ariaInvalid:this.valueState===pv.Negative||void 0,ariaHasPopup:this._inputAccInfo.ariaHasPopup?this._inputAccInfo.ariaHasPopup:e,ariaAutoComplete:this._inputAccInfo.ariaAutoComplete?this._inputAccInfo.ariaAutoComplete:t,role:this._inputAccInfo&&this._inputAccInfo.role,ariaControls:this._inputAccInfo&&this._inputAccInfo.ariaControls,ariaExpanded:this._inputAccInfo&&this._inputAccInfo.ariaExpanded,ariaDescription:this._accInfoAriaDescription,accessibleDescription:this.ariaDescriptionText,ariaLabel:this._inputAccInfo&&this._inputAccInfo.ariaLabel||this._accessibleLabelsRefTexts||this.accessibleName||this._associatedLabelsTexts||void 0}}get nativeInputAttributes(){return{min:this.isTypeNumber?this._nativeInputAttributes.min:void 0,max:this.isTypeNumber?this._nativeInputAttributes.max:void 0,step:this.isTypeNumber?this._nativeInputAttributes.step||"any":void 0}}get ariaValueStateHiddenText(){if(!this.hasValueState)return;const e=this.valueState!==pv.None?this.valueStateTypeMappings[this.valueState]:"";return this.shouldDisplayDefaultValueStateMessage?this.valueStateText?`${e} ${this.valueStateText}`:e:this.valueStateMessage.length?`${e} ${this.valueStateMessage.map(e=>e.textContent).join(" ")}`:e}get itemSelectionAnnounce(){return this.Suggestions?this.Suggestions.itemSelectionAnnounce:""}get linksInAriaValueStateHiddenText(){const e=[];return this.valueStateMessage&&this.valueStateMessage.forEach(t=>{t.children.length&&t.querySelectorAll("ui5-link").forEach(t=>{e.push(t)})}),e}get valueStateLinksShortcutsTextAcc(){const e=this.linksInAriaValueStateHiddenText;return e.length?Eo()?1===e.length?Wx.i18nBundle.getText(xu):Wx.i18nBundle.getText(Tu):1===e.length?Wx.i18nBundle.getText(ku):Wx.i18nBundle.getText(Su):""}get _valueStateLinksShortcutsTextAccId(){return this.linksInAriaValueStateHiddenText.length>0?"hiddenText-value-state-link-shortcut":""}get iconsCount(){return(this.icon?this.icon.length:0)+(Number(this._effectiveShowClearIcon)??0)}get classes(){return{popover:{"ui5-suggestions-popover":this.showSuggestions,"ui5-popover-with-value-state-header-phone":this._isPhone&&this.showSuggestions&&this.hasValueStateMessage,"ui5-popover-with-value-state-header":!this._isPhone&&this.showSuggestions&&this.hasValueStateMessage},popoverValueState:{"ui5-valuestatemessage-root":!0,"ui5-valuestatemessage-header":!0,"ui5-valuestatemessage--success":this.valueState===pv.Positive,"ui5-valuestatemessage--error":this.valueState===pv.Negative,"ui5-valuestatemessage--warning":this.valueState===pv.Critical,"ui5-valuestatemessage--information":this.valueState===pv.Information}}}get styles(){const e=parseInt(getComputedStyle(document.documentElement).fontSize);return{suggestionPopoverHeader:{display:0===this._listWidth?"none":"inline-block",width:this._listWidth?`${this._listWidth}px`:"","max-width":"inherit"},suggestionsPopover:{"min-width":this._inputWidth?`${this._inputWidth}px`:"","max-width":this._inputWidth&&this._inputWidth/e>40?`${this._inputWidth}px`:"40rem"},innerInput:{padding:""}}}get suggestionSeparators(){return"None"}get shouldDisplayOnlyValueStateMessage(){return this.hasValueStateMessage&&!this.readonly&&!this.open&&this.focused}get shouldDisplayDefaultValueStateMessage(){return!this.valueStateMessage.length&&this.hasValueStateMessage}get hasValueState(){return this.valueState!==pv.None}get hasValueStateMessage(){return this.hasValueState&&this.valueState!==pv.Positive&&(!this._inputIconFocused||!(!this._isPhone||!this.Suggestions))}get valueStateText(){return this.valueState!==pv.None?this.valueStateTextMappings()[this.valueState]:void 0}get suggestionsText(){return Wx.i18nBundle.getText(fd)}get availableSuggestionsCount(){if(this.showSuggestions&&(this.value||this.Suggestions?.isOpened())){const e=this._selectableItems,t=this.Suggestions?.isOpened()?Wx.i18nBundle.getText(kd):Wx.i18nBundle.getText(xd);switch(e.length){case 0:return`${Wx.i18nBundle.getText(wd)} ${t}`;case 1:return`${Wx.i18nBundle.getText(yd)} ${t}`;default:return`${Wx.i18nBundle.getText(Cd,e.length)} ${t}`}}return this.showSuggestions?Wx.i18nBundle.getText(xd):void 0}get step(){return this.isTypeNumber?"any":void 0}get _isPhone(){return Ao()}get _isSuggestionsFocused(){return!this.focused&&this.Suggestions?.isOpened()}get _placeholder(){return this.placeholder}get _valueStateInputIcon(){const e={Negative:'<path xmlns="http://www.w3.org/2000/svg" fill-rule="evenodd" clip-rule="evenodd" d="M10 20C4.47715 20 0 15.5228 0 10C0 4.47715 4.47715 0 10 0C15.5228 0 20 4.47715 20 10C20 15.5228 15.5228 20 10 20ZM7.70711 13.7071C7.31658 14.0976 6.68342 14.0976 6.29289 13.7071C5.90237 13.3166 5.90237 12.6834 6.29289 12.2929L8.58579 10L6.29289 7.70711C5.90237 7.31658 5.90237 6.68342 6.29289 6.29289C6.68342 5.90237 7.31658 5.90237 7.70711 6.29289L10 8.58579L12.2929 6.29289C12.6834 5.90237 13.3166 5.90237 13.7071 6.29289C14.0976 6.68342 14.0976 7.31658 13.7071 7.70711L11.4142 10L13.7071 12.2929C14.0976 12.6834 14.0976 13.3166 13.7071 13.7071C13.3166 14.0976 12.6834 14.0976 12.2929 13.7071L10 11.4142L7.70711 13.7071Z" fill="#EE3939"/>',Critical:'<path xmlns="http://www.w3.org/2000/svg" fill-rule="evenodd" clip-rule="evenodd" d="M11.8619 0.49298C11.6823 0.187541 11.3544 0 11 0C10.6456 0 10.3177 0.187541 10.1381 0.49298L0.138066 17.493C-0.0438112 17.8022 -0.0461447 18.1851 0.13195 18.4965C0.310046 18.8079 0.641283 19 1 19H21C21.3587 19 21.69 18.8079 21.868 18.4965C22.0461 18.1851 22.0438 17.8022 21.8619 17.493L11.8619 0.49298ZM11 6C11.5523 6 12 6.44772 12 7V10C12 10.5523 11.5523 11 11 11C10.4477 11 10 10.5523 10 10V7C10 6.44772 10.4477 6 11 6ZM11 16C11.8284 16 12.5 15.3284 12.5 14.5C12.5 13.6716 11.8284 13 11 13C10.1716 13 9.5 13.6716 9.5 14.5C9.5 15.3284 10.1716 16 11 16Z" fill="#F58B00"/>',Positive:'<path xmlns="http://www.w3.org/2000/svg" fill-rule="evenodd" clip-rule="evenodd" d="M0 10C0 15.5228 4.47715 20 10 20C15.5228 20 20 15.5228 20 10C20 4.47715 15.5228 0 10 0C4.47715 0 0 4.47715 0 10ZM14.7071 6.29289C14.3166 5.90237 13.6834 5.90237 13.2929 6.29289L8 11.5858L6.70711 10.2929C6.31658 9.90237 5.68342 9.90237 5.29289 10.2929C4.90237 10.6834 4.90237 11.3166 5.29289 11.7071L7.29289 13.7071C7.68342 14.0976 8.31658 14.0976 8.70711 13.7071L14.7071 7.70711C15.0976 7.31658 15.0976 6.68342 14.7071 6.29289Z" fill="#36A41D"/>',Information:'<path xmlns="http://www.w3.org/2000/svg" fill-rule="evenodd" clip-rule="evenodd" d="M3 0C1.34315 0 0 1.34315 0 3V15C0 16.6569 1.34315 18 3 18H15C16.6569 18 18 16.6569 18 15V3C18 1.34315 16.6569 0 15 0H3ZM9 6.5C9.82843 6.5 10.5 5.82843 10.5 5C10.5 4.17157 9.82843 3.5 9 3.5C8.17157 3.5 7.5 4.17157 7.5 5C7.5 5.82843 8.17157 6.5 9 6.5ZM9 8.5C9.55228 8.5 10 8.94772 10 9.5V13.5C10 14.0523 9.55228 14.5 9 14.5C8.44771 14.5 8 14.0523 8 13.5V9.5C8 8.94772 8.44771 8.5 9 8.5Z" fill="#1B90FF"/>'};return this.valueState!==pv.None?`\n\t\t\t<svg xmlns="http://www.w3.org/2000/svg" width="24" height="20" viewBox="0 0 20 20" fill="none">\n\t\t\t\t${e[this.valueState]};\n\t\t\t</svg>\n\t\t\t`:""}get _valueStateMessageInputIcon(){return this.valueState!==pv.None?{Negative:"error",Critical:"alert",Positive:"sys-enter-2",Information:"information"}[this.valueState]:""}getCaretPosition(){return Rk(this.nativeInput)}setCaretPosition(e){Ok(this.nativeInput,e)}removeFractionalPart(e){return e.includes(".")?e.slice(0,e.indexOf(".")):e.includes(",")?e.slice(0,e.indexOf(",")):e}},Vx([bn({type:Boolean})],Yx.prototype,"disabled",void 0),Vx([bn({type:Boolean})],Yx.prototype,"highlight",void 0),Vx([bn()],Yx.prototype,"placeholder",void 0),Vx([bn({type:Boolean})],Yx.prototype,"readonly",void 0),Vx([bn({type:Boolean})],Yx.prototype,"required",void 0),Vx([bn({type:Boolean})],Yx.prototype,"noTypeahead",void 0),Vx([bn()],Yx.prototype,"type",void 0),Vx([bn()],Yx.prototype,"value",void 0),Vx([bn()],Yx.prototype,"valueState",void 0),Vx([bn()],Yx.prototype,"name",void 0),Vx([bn({type:Boolean})],Yx.prototype,"showSuggestions",void 0),Vx([bn({type:Number})],Yx.prototype,"maxlength",void 0),Vx([bn()],Yx.prototype,"accessibleName",void 0),Vx([bn()],Yx.prototype,"accessibleNameRef",void 0),Vx([bn()],Yx.prototype,"accessibleDescription",void 0),Vx([bn()],Yx.prototype,"accessibleDescriptionRef",void 0),Vx([bn({type:Boolean})],Yx.prototype,"showClearIcon",void 0),Vx([bn({type:Boolean})],Yx.prototype,"open",void 0),Vx([bn()],Yx.prototype,"filter",void 0),Vx([bn({type:Boolean})],Yx.prototype,"_effectiveShowClearIcon",void 0),Vx([bn({type:Boolean})],Yx.prototype,"focused",void 0),Vx([bn()],Yx.prototype,"hint",void 0),Vx([bn({type:Boolean})],Yx.prototype,"valueStateOpen",void 0),Vx([bn({type:Object})],Yx.prototype,"_inputAccInfo",void 0),Vx([bn({type:Object})],Yx.prototype,"_nativeInputAttributes",void 0),Vx([bn({type:Number})],Yx.prototype,"_inputWidth",void 0),Vx([bn({type:Number})],Yx.prototype,"_listWidth",void 0),Vx([bn({type:Boolean,noAttribute:!0})],Yx.prototype,"_inputIconFocused",void 0),Vx([bn({noAttribute:!0})],Yx.prototype,"_associatedLabelsTexts",void 0),Vx([bn({noAttribute:!0})],Yx.prototype,"_accessibleLabelsRefTexts",void 0),Vx([bn({noAttribute:!0})],Yx.prototype,"_associatedDescriptionRefTexts",void 0),Vx([bn({type:Object})],Yx.prototype,"Suggestions",void 0),Vx([bn({type:Array,noAttribute:!0})],Yx.prototype,"_linksListenersArray",void 0),Vx([bn({type:Boolean,noAttribute:!0})],Yx.prototype,"_isComposing",void 0),Vx([Sn({type:HTMLElement,default:!0})],Yx.prototype,"suggestionItems",void 0),Vx([Sn()],Yx.prototype,"icon",void 0),Vx([Sn({type:HTMLElement,invalidateOnChildChange:!0})],Yx.prototype,"valueStateMessage",void 0),Vx([Tn("@ui5/webcomponents")],Yx,"i18nBundle",void 0),(Yx=Wx=Vx([fn({tag:"ui5-input",languageAware:!0,formAssociated:!0,renderer:ms,template:Gk,styles:[ix,rx,ax,nx]}),yn("change",{bubbles:!0}),yn("_request-submit",{bubbles:!0}),yn("input",{bubbles:!0,cancelable:!0}),yn("select",{bubbles:!0}),yn("selection-change",{bubbles:!0}),yn("type-ahead",{bubbles:!0}),yn("suggestion-scroll",{bubbles:!0}),yn("open",{bubbles:!0}),yn("close")],Yx)).define(),$x=Yx});wn(),Ev(),Qx(),Kg(),Pa();var eS=function(e,t,o,i){var r,a=arguments.length,n=a<3?t:null===i?i=Object.getOwnPropertyDescriptor(t,o):i;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)n=Reflect.decorate(e,t,o,i);else for(var s=e.length-1;s>=0;s--)(r=e[s])&&(n=(a<3?r(n):a>3?r(t,o,n):r(t,o))||n);return a>3&&n&&Object.defineProperty(t,o,n),n},tS=class extends $x{constructor(){super(...arguments),this._shouldOpenValueStatePopover=!1}get hasValueStateMessage(){return this._shouldOpenValueStatePopover&&super.hasValueStateMessage&&!this._isMobileDevice}get _isMobileDevice(){return!Po()&&(Ao()||Do())}get ariaValueStateHiddenText(){if(!this.hasValueState)return;const e=this.valueState!==pv.None?this.valueStateTypeMappings[this.valueState]:"";if(this.shouldDisplayDefaultValueStateMessage)return this.valueStateText?`${e} ${this.valueStateText}`:e;if(this.valueStateMessage.length){const t=this.valueStateMessage[0];if("SLOT"===t.tagName){const o=t.assignedNodes({flatten:!0}).map(e=>e.textContent||"").join(" ").trim();return o?`${e} ${o}`:e}return`${e} ${t.textContent||""}`.trim()}return e}};eS([bn({noAttribute:!0})],tS.prototype,"_shouldOpenValueStatePopover",void 0),(tS=eS([fn({tag:"ui5-datetime-input"})],tS)).define();var oS=tS;function iS(){return b_("div",{class:"ui5-date-picker-root",style:{width:"100%"},children:y_(oS,{"data-sap-focus-ref":!0,id:`${this._id}-inner`,class:"ui5-date-picker-input",part:"input",placeholder:this._placeholder,type:this.type,value:this.displayValue,disabled:this.disabled,required:this.required,readonly:this.readonly,valueState:this.valueState,_inputAccInfo:this.accInfo,_shouldOpenValueStatePopover:!this.open,onChange:this._onInputChange,onInput:this._onInputInput,"onui5-_request-submit":this._onInputRequestSubmit,onKeyDown:this._onkeydown,showClearIcon:this.showClearIcon,children:[!this.open&&this.valueStateMessage.length>0&&b_("slot",{name:"valueStateMessage",slot:"valueStateMessage"}),!this.readonly&&b_(gh,{id:`${this._id}-value-help`,slot:"icon",name:this.openIconName,tabindex:-1,accessibleName:this.openIconTitle,mode:this._iconMode,showTooltip:!0,class:{inputIcon:!0,"inputIcon--pressed":this.open},onClick:this._togglePicker})]})})}C_(),xh();var rS=(e,t,o,i)=>{let r=Hw.fromLocalJSDate(Sw.getInstance(1e3*o),e),a=Hw.fromLocalJSDate(Sw.getInstance(1e3*o),e);return r.setDate(1),i&&(r.setMonth(0),a.setMonth(11)),a.setDate((e=>{const t=new Hw(e);return t.setDate(1),t.setMonth(t.getMonth()+1),t.setDate(0),t.getDate()})(a)),r=new Hw(r,t),a=new Hw(a,t),{firstDate:r,lastDate:a}};en();var aS=(e,t,o)=>{const i=uw(rr()),r=i.getIntervalPattern(""),a=i.getMonthsStandAlone("abbreviated",o),n=i.getMonthsStandAlone("wide",o);return e===t?{text:i.getMonths("abbreviated",o)[e],textInfo:i.getMonths("wide",o)[e]}:{text:r.replace(/\{0\}/,a[e]).replace(/\{1\}/,a[t]),textInfo:r.replace(/\{0\}/,n[e]).replace(/\{1\}/,n[t])}};sc();ql("slim-arrow-left",{pathData:"M10.822 13.13c.237.227.237.466 0 .715a.445.445 0 0 1-.327.155.445.445 0 0 1-.327-.155l-4.9-5.13A1.065 1.065 0 0 1 5 8c0-.27.09-.497.267-.684l4.901-5.16A.46.46 0 0 1 10.51 2a.46.46 0 0 1 .341.155.503.503 0 0 1 0 .715L6.1 7.845c-.119.103-.119.217 0 .342l4.723 4.943Z",ltr:!1,viewBox:"0 0 16 16",collection:"SAP-icons-v4",packageName:"@ui5/webcomponents-icons"}),sc();ql("slim-arrow-left",{pathData:"M9.727 12.83a.75.75 0 0 1-1.056-.104L5.17 8.48a.75.75 0 0 1 0-.954l3.5-4.252a.75.75 0 0 1 1.158.954L6.722 8.002l3.107 3.771a.75.75 0 0 1-.102 1.056Z",ltr:!1,viewBox:"0 0 16 16",collection:"SAP-icons-v5",packageName:"@ui5/webcomponents-icons"}),Aa();wn(),kn(),Cn();var nS=function(e,t,o,i){var r,a=arguments.length,n=a<3?t:null===i?i=Object.getOwnPropertyDescriptor(t,o):i;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)n=Reflect.decorate(e,t,o,i);else for(var s=e.length-1;s>=0;s--)(r=e[s])&&(n=(a<3?r(n):a>3?r(t,o,n):r(t,o))||n);return a>3&&n&&Object.defineProperty(t,o,n),n},sS=class extends hn{constructor(){super(...arguments),this.value=""}};nS([bn()],sS.prototype,"value",void 0),(sS=nS([fn("ui5-date")],sS)).define();var lS=sS;wn(),kn(),Cn();var cS=function(e,t,o,i){var r,a=arguments.length,n=a<3?t:null===i?i=Object.getOwnPropertyDescriptor(t,o):i;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)n=Reflect.decorate(e,t,o,i);else for(var s=e.length-1;s>=0;s--)(r=e[s])&&(n=(a<3?r(n):a>3?r(t,o,n):r(t,o))||n);return a>3&&n&&Object.defineProperty(t,o,n),n},_S=class extends hn{constructor(){super(...arguments),this.startValue="",this.endValue=""}};cS([bn()],_S.prototype,"startValue",void 0),cS([bn()],_S.prototype,"endValue",void 0),(_S=cS([fn("ui5-date-range")],_S)).define();var dS=_S;wn(),kn(),Cn();var uS=function(e,t,o,i){var r,a=arguments.length,n=a<3?t:null===i?i=Object.getOwnPropertyDescriptor(t,o):i;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)n=Reflect.decorate(e,t,o,i);else for(var s=e.length-1;s>=0;s--)(r=e[s])&&(n=(a<3?r(n):a>3?r(t,o,n):r(t,o))||n);return a>3&&n&&Object.defineProperty(t,o,n),n},hS=class extends hn{constructor(){super(...arguments),this.value="",this.type="None",this._tooltip=""}};uS([bn()],hS.prototype,"value",void 0),uS([bn()],hS.prototype,"type",void 0),uS([bn()],hS.prototype,"_tooltip",void 0),(hS=uS([fn("ui5-special-date")],hS)).define(),wn(),kn();var pS=function(e,t,o,i){var r,a=arguments.length,n=a<3?t:null===i?i=Object.getOwnPropertyDescriptor(t,o):i;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)n=Reflect.decorate(e,t,o,i);else for(var s=e.length-1;s>=0;s--)(r=e[s])&&(n=(a<3?r(n):a>3?r(t,o,n):r(t,o))||n);return a>3&&n&&Object.defineProperty(t,o,n),n},gS=class extends Lk{get _minTimestamp(){return this._minDate.valueOf()/1e3}get _maxTimestamp(){return this._maxDate.valueOf()/1e3}get _timestamp(){let e=void 0!==this.timestamp?this.timestamp:Ck(this._primaryCalendarType);return this._maxTimestamp&&this._maxTimestamp<e?e=this._maxTimestamp:this._minTimestamp&&this._minTimestamp>e&&(e=this._minTimestamp),e}get _localDate(){return Sw.getInstance(1e3*this._timestamp)}get _calendarDate(){return Hw.fromTimestamp(this._localDate.getTime(),this._primaryCalendarType)}_safelySetTimestamp(e){const t=this._minDate.valueOf()/1e3,o=this._maxDate.valueOf()/1e3;e<t&&(e=t),e>o&&(e=o),this.timestamp=e}_safelyModifyTimestampBy(e,t,o){const i=jw(this._calendarDate,e,t,o);this._safelySetTimestamp(i.valueOf()/1e3)}_getTimestampFromDom(e){const t=e.getAttribute("data-sap-timestamp");return parseInt(t)}};pS([bn({type:Number})],gS.prototype,"timestamp",void 0);var mS,vS=gS=pS([fn()],gS);!function(e){e.Single="Single",e.Multiple="Multiple",e.Range="Range"}(mS||(mS={}));var fS=mS,bS=Aw.extend("sap.ui.core.date.Gregorian",{constructor:function(){this.oDate=this.createDate(Date,arguments),this.sCalendarType=PC.Gregorian}});bS.UTC=function(){return Date.UTC.apply(Date,arguments)},bS.now=function(){return Date.now()},Iw(PC.Gregorian,bS);var yS,CS,wS="Polite",kS="Assertive";Xr(),Ea();var xS=e=>{e.style.position="absolute",e.style.clip="rect(1px,1px,1px,1px)",e.style.userSelect="none",e.style.left="-1000px",e.style.top="-1000px",e.style.pointerEvents="none"};Vo(()=>{yS&&CS||(yS=document.createElement("span"),CS=document.createElement("span"),yS.classList.add("ui5-invisiblemessage-polite"),CS.classList.add("ui5-invisiblemessage-assertive"),yS.setAttribute("aria-live","polite"),CS.setAttribute("aria-live","assertive"),yS.setAttribute("role","alert"),CS.setAttribute("role","alert"),xS(yS),xS(CS),u("ui5-announcement-area").appendChild(yS),u("ui5-announcement-area").appendChild(CS))});var SS=(e,t)=>{const o=t===kS?CS:yS;o.textContent="",o.textContent=e,t!==kS&&t!==wS&&console.warn('You have entered an invalid mode. Valid values are: "Polite" and "Assertive". The framework will automatically set the mode to "Polite".'),setTimeout(()=>{o.textContent===e&&(o.textContent="")},3e3)},TS=Dw;C_(),Ca(),Ch(),wh(),St("@ui5/webcomponents-theming","sap_horizon",async()=>ch),St("@ui5/webcomponents","sap_horizon",async()=>_h,"host");wn(),kn(),xn(),qn(),en(),tc(),yh();var BS,IS=function(e,t,o,i){var r,a=arguments.length,n=a<3?t:null===i?i=Object.getOwnPropertyDescriptor(t,o):i;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)n=Reflect.decorate(e,t,o,i);else for(var s=e.length-1;s>=0;s--)(r=e[s])&&(n=(a<3?r(n):a>3?r(t,o,n):r(t,o))||n);return a>3&&n&&Object.defineProperty(t,o,n),n},DS=(e,t,o)=>e>Math.min(t,o)&&e<Math.max(t,o),AS=BS=class extends vS{constructor(){super(...arguments),this.selectedDates=[],this.selectionMode="Single",this.hideWeekNumbers=!1,this._weeks=[],this._dayNames=[],this._hidden=!1,this.specialCalendarDates=[],this.disabledDates=[]}onBeforeRendering(){const e=uw(rr());this._buildWeeks(e),this._buildDayNames(e)}_buildWeeks(e){if(this._hidden)return;this._weeks=[];const t=this._getFirstDayOfWeek(),o=this._specialCalendarDates,i=e.getMonths("wide",this._primaryCalendarType),r=this.hasSecondaryCalendarType?e.getMonths("wide",this.secondaryCalendarType):[],a=BS.i18nBundle.getText(ju),n=BS.i18nBundle.getText(Yu),s=this._getFirstDay(),l=Hw.fromLocalJSDate(Sw.getInstance(),this._primaryCalendarType),c=this._calendarDate,_=this.hasSecondaryCalendarType?this._getSecondaryDay(s):void 0;let d=[];for(let u=0;u<42;u++){const e=s.valueOf()/1e3;let u=s.getDay()-t;u<0&&(u+=7);const h=o.find(t=>t.specialDateTimestamp===e),p=h?h.type:"",g=h?h.tooltip:"",m=g&&!this._isDefaultCalendarLegendType(p)?g:"",v=s.getMonth()===c.getMonth()&&s.getDate()===c.getDate(),f=this._isDaySelected(e),b=this._isDayInsideSelectionRange(e),y=s.getMonth()!==c.getMonth(),C=this._isWeekend(s),w=!this._isDateEnabled(s),k=s.isSame(l),x=s.getDay()===t,S=!C&&"NonWorking"!==p||"Working"===p?"":`${a} `,T=k?`${n} `:"",B=_?_.getDate():"",I=_?_.getYear():"",D=r.length>0?r[_.getMonth()]:"",A=`${T}${S}${m}`.trim();let P=this.hasSecondaryCalendarType?`${i[s.getMonth()]} ${s.getDate()}, ${s.getYear()}; ${D} ${B}, ${I} ${A}`.trim():`${i[s.getMonth()]} ${s.getDate()}, ${s.getYear()} ${A}`.trim();this.selectionMode===fS.Range&&(f&&this._isRangeEndDate(e)?P=BS.i18nBundle.getText(Wu,P):f&&this._isRangeStartDate(e)?P=BS.i18nBundle.getText(Uu,P):b&&(P=BS.i18nBundle.getText(Vu,P)));const M={timestamp:e.toString(),focusRef:v,_tabIndex:v?0:-1,selected:f||b,day:s.getDate(),secondDay:this.hasSecondaryCalendarType?_.getDate():void 0,_isSecondaryCalendarType:this.hasSecondaryCalendarType,classes:`ui5-dp-item ui5-dp-wday${u}`,tooltip:A,ariaLabel:P,ariaSelected:f||b,ariaDisabled:w||y,disabled:w,type:p,parts:"day-cell"};if(x&&(M.classes+=" ui5-dp-firstday"),f&&(M.classes+=" ui5-dp-item--selected",M.parts+=" day-cell-selected"),b&&(M.classes+=" ui5-dp-item--selected-between",M.parts+=" day-cell-selected-between"),k&&(M.classes+=" ui5-dp-item--now"),y&&(M.classes+=" ui5-dp-item--othermonth"),!C&&"NonWorking"!==p||"Working"===p||(M.classes+=" ui5-dp-item--weekend"),w&&(M.classes+=" ui5-dp-item--disabled"),this.hasSecondaryCalendarType&&(M.classes+=" ui5-dp-item--withsecondtype"),d.push(M),6===u){const e=this._calculateWeekNumber(s.toLocalJSDate());d.unshift({weekNum:e,isHidden:this.shouldHideWeekNumbers})}8===d.length&&(this._weeks.push(d),d=[]),s.setDate(s.getDate()+1),this.hasSecondaryCalendarType&&_&&_.setDate(_.getDate()+1)}}_calculateWeekNumber(e){const t=bk.getDateInstance({pattern:"w",calendarType:this.primaryCalendarType,calendarWeekNumbering:this.calendarWeekNumbering}).format(e);return Number(t)}_buildDayNames(e){if(this._hidden)return;let t;const o=e.getDays("wide",this._primaryCalendarType);let i,r=e.getDays("abbreviated",this._primaryCalendarType);this.namesTooLong(r)&&(r=e.getDays("narrow",this._primaryCalendarType)),this._dayNames=[],this._dayNames.push({classes:"ui5-dp-dayname",name:BS.i18nBundle.getText(qu)});for(let a=0;a<7;a++)t=a+this._getFirstDayOfWeek(),t>6&&(t-=7),i={name:o[t],ultraShortName:r[t],classes:"ui5-dp-dayname"},this._dayNames.push(i);this._dayNames[1].classes+=" ui5-dp-firstday",this.shouldHideWeekNumbers&&this._dayNames.shift()}namesTooLong(e){return e.some(e=>e.length>4)}onAfterRendering(){this._autoFocus&&!this._hidden&&this.focus()}_focusCorrectDay(){this._shouldFocusDay&&this._focusableDay.focus()}get _shouldFocusDay(){return document.activeElement!==this._focusableDay&&0===this._specialCalendarDates.length}_onfocusin(){this._autoFocus=!0,this._focusCorrectDay()}_onfocusout(){this._autoFocus=!1}_isDaySelected(e){return this.selectionMode===fS.Single?e===this.selectedDates[0]:this.selectionMode===fS.Multiple?this.selectedDates.includes(e):e===this.selectedDates[0]||e===this.selectedDates[this.selectedDates.length-1]}_isRangeEndDate(e){return this.selectionMode===fS.Range&&e===this.selectedDates[1]}_isRangeStartDate(e){return this.selectionMode===fS.Range&&e===this.selectedDates[0]}_isDayInsideSelectionRange(e){return!(this.selectionMode!==fS.Range||!this.selectedDates.length)&&(1===this.selectedDates.length&&this._secondTimestamp?DS(e,this.selectedDates[0],this._secondTimestamp):DS(e,this.selectedDates[0],this.selectedDates[this.selectedDates.length-1]))}_selectDate(e,t){let o=e.target;if(o.hasAttribute("data-sap-timestamp")||(o=o.parentNode),!this._isDayPressed(o))return;const i=this._getTimestampFromDom(o);this._safelySetTimestamp(i),this._updateSecondTimestamp(),this._updateSelectedDates(i,t),this.fireDecoratorEvent("change",{timestamp:this.timestamp,dates:this.selectedDates})}_updateSelectedDates(e,t){this.selectionMode!==fS.Multiple?(SS(BS.i18nBundle.getText(Ed),kS),this.selectionMode!==fS.Range||1!==this.selectedDates.length?this.selectedDates=[e]:this.selectedDates=[this.selectedDates[0],e]):this.selectedDates.length>0&&t?this._multipleSelection(e):this._toggleTimestampInSelection(e)}_selectWeek(){this._weeks.forEach(e=>{const t=e;-1!==t.findIndex(e=>{const t=Hw.fromTimestamp(1e3*parseInt(e.timestamp));return t.getMonth()===this._calendarDate.getMonth()&&t.getDate()===this._calendarDate.getDate()})&&(t.some(e=>e.timestamp&&!this.selectedDates.includes(parseInt(e.timestamp)))?t.filter(e=>e.timestamp).forEach(e=>{this._addTimestampToSelection(parseInt(e.timestamp))}):t.filter(e=>e.timestamp).forEach(e=>{this._removeTimestampFromSelection(parseInt(e.timestamp))}))}),this.fireDecoratorEvent("change",{timestamp:this.timestamp,dates:this.selectedDates})}_toggleTimestampInSelection(e){this.selectedDates.includes(e)?this._removeTimestampFromSelection(e):(this._addTimestampToSelection(e),SS(BS.i18nBundle.getText(Ed),kS))}_addTimestampToSelection(e){this.selectedDates.includes(e)||(this.selectedDates=[...this.selectedDates,e])}_removeTimestampFromSelection(e){this.selectedDates=this.selectedDates.filter(t=>t!==e)}_multipleSelection(e){const t=Math.min(...this.selectedDates),o=Math.max(...this.selectedDates);let i,r,a=!1;e<t?(i=e,r=t):e>=t&&e<=o?(Math.abs(e-t)<Math.abs(e-o)?(i=e,r=o):(i=t,r=e),a=!0):(i=o,r=e);const n=Hw.fromTimestamp(1e3*i),s=Hw.fromTimestamp(1e3*r);for(;n.valueOf()<=s.valueOf();)this[a?"_toggleTimestampInSelection":"_addTimestampToSelection"](n.valueOf()/1e3),n.setDate(n.getDate()+1)}_onmouseover(e){const t=e.target.closest(".ui5-dp-item");t&&this.selectionMode===fS.Range&&1===this.selectedDates.length&&(this._secondTimestamp=this._getTimestampFromDom(t))}_onkeydown(e){let t=!0;if(fs(e)||bs(e))this._selectDate(e,bs(e));else if(Cs(e)||ws(e))e.preventDefault();else if(ks(e))this._modifyTimestampBy(-1,"day",!1);else if(xs(e))this._modifyTimestampBy(1,"day",!1);else if(Ss(e))this._modifyTimestampBy(-7,"day",!1);else if(Ts(e))this._modifyTimestampBy(7,"day",!1);else if(Vs(e))this._modifyTimestampBy(-1,"month");else if(Ws(e))this._modifyTimestampBy(1,"month");else if(qs(e)||js(e))this._modifyTimestampBy(-1,"year");else if(Ys(e)||$s(e))this._modifyTimestampBy(1,"year");else if(Gs(e))this._modifyTimestampBy(-10,"year");else if(Ks(e))this._modifyTimestampBy(10,"year");else if(Es(e)||zs(e))this._onHomeOrEnd(Es(e));else if(Fs(e)){const e=new Hw(this._calendarDate,this._primaryCalendarType);e.setDate(1),this._setTimestamp(e.valueOf()/1e3)}else if(Rs(e)){const e=new Hw(this._calendarDate,this._primaryCalendarType);e.setMonth(e.getMonth()+1),e.setDate(0),this._setTimestamp(e.valueOf()/1e3)}else t=!1;t&&e.preventDefault()}_onkeyup(e){Cs(e)||ws(e)&&this.selectionMode!==fS.Multiple?this._selectDate(e,!1):ws(e)&&this._selectWeek()}_onclick(e){this._selectDate(e,e.shiftKey)}_onHomeOrEnd(e){this._weeks.forEach(t=>{const o=t;if(-1!==o.findIndex(e=>{const t=Hw.fromTimestamp(1e3*parseInt(e.timestamp));return t.getMonth()===this._calendarDate.getMonth()&&t.getDate()===this._calendarDate.getDate()})){const t=e?1:7;this._setTimestamp(parseInt(o[t].timestamp))}})}_hasPreviousPage(){return!(this._calendarDate.getMonth()===this._minDate.getMonth()&&this._calendarDate.getYear()===this._minDate.getYear())}_hasNextPage(){return!(this._calendarDate.getMonth()===this._maxDate.getMonth()&&this._calendarDate.getYear()===this._maxDate.getYear())}_showPreviousPage(){this._modifyTimestampBy(-1,"month",!1)}_showNextPage(){this._modifyTimestampBy(1,"month",!1)}_modifyTimestampBy(e,t,o){this._safelyModifyTimestampBy(e,t,o),this._updateSecondTimestamp(),this.fireDecoratorEvent("navigate",{timestamp:this.timestamp})}_setTimestamp(e){this._safelySetTimestamp(e),this._updateSecondTimestamp(),this.fireDecoratorEvent("navigate",{timestamp:this.timestamp})}_updateSecondTimestamp(){this.selectionMode!==fS.Range||1!==this.selectedDates.length&&2!==this.selectedDates.length||(this._secondTimestamp=this.timestamp)}get _specialCalendarDates(){return this.specialCalendarDates}get shouldHideWeekNumbers(){return this._primaryCalendarType!==wC.Gregorian||this.hideWeekNumbers}_isWeekend(e){const t=uw(rr()),o=e.getDay(),i=t.getWeekendStart(),r=t.getWeekendEnd();return o>=i&&o<=r||r<i&&(o>=i||o<=r)}_isDateEnabled(e){if(this._minDate&&e.isBefore(this._minDate)||this._maxDate&&e.isAfter(this._maxDate))return!1;const t=e.valueOf()/1e3;return!this.disabledDates.some(e=>{const o=this._getTimestampFromDateValue(e.startValue),i=this._getTimestampFromDateValue(e.endValue);return i?t>o&&t<i:o&&t===o})}_getTimestampFromDateValue(e){if(!e)return 0;try{const t=this.getValueFormat().parse(e);return Hw.fromLocalJSDate(t,this._primaryCalendarType).valueOf()/1e3}catch{return 0}}_isDayPressed(e){const t=e.parentNode;return e.className.indexOf("ui5-dp-item")>-1||t&&t.classList&&t.classList.contains("ui5-dp-item")}_isDefaultCalendarLegendType(e){return["NonWorking","Working","Today","Selected","None"].includes(e)}_getSecondaryDay(e){return new Hw(e,this.secondaryCalendarType)}_getFirstDay(){let e;const t=this._getFirstDayOfWeek(),o=new Hw(this._calendarDate,this._primaryCalendarType);return o.setDate(1),e=o.getDay()-t,e<0&&(e=7+e),e>0&&o.setDate(1-e),o}_getFirstDayOfWeek(){const e=uw(rr());let t;const o=(void 0===fC&&(fC=Ee()),fC.firstDayOfWeek);t=void 0!==o?o:e.getFirstDayOfWeek();const i=TS.getWeekConfigurationValues(this.calendarWeekNumbering);return void 0!==i?.firstDayOfWeek&&"Default"!==this.calendarWeekNumbering?i.firstDayOfWeek:t}get styles(){return{wrapper:{display:this._hidden?"none":"flex","justify-content":"center"},main:{width:"100%"}}}get ariaRoledescription(){return this.hasSecondaryCalendarType?`${this._primaryCalendarType} calendar with secondary ${this.secondaryCalendarType} calendar`:`${this._primaryCalendarType} calendar`}};IS([bn({type:Array,noAttribute:!0})],AS.prototype,"selectedDates",void 0),IS([bn()],AS.prototype,"selectionMode",void 0),IS([bn({type:Boolean})],AS.prototype,"hideWeekNumbers",void 0),IS([bn({type:Array,noAttribute:!0})],AS.prototype,"_weeks",void 0),IS([bn({type:Array,noAttribute:!0})],AS.prototype,"_dayNames",void 0),IS([bn({type:Boolean,noAttribute:!0})],AS.prototype,"_hidden",void 0),IS([bn({type:Number,noAttribute:!0})],AS.prototype,"_secondTimestamp",void 0),IS([bn({type:Array,noAttribute:!0})],AS.prototype,"specialCalendarDates",void 0),IS([bn({type:Array,noAttribute:!0})],AS.prototype,"disabledDates",void 0),IS([yk("[data-sap-focus-ref]")],AS.prototype,"_focusableDay",void 0),IS([Tn("@ui5/webcomponents")],AS,"i18nBundle",void 0),(AS=BS=IS([fn({tag:"ui5-daypicker",styles:'.ui5-hidden-text{position:absolute;clip:rect(1px,1px,1px,1px);user-select:none;left:-1000px;top:-1000px;pointer-events:none;font-size:0}:host(:not([hidden])){display:block}:host{height:100%;width:100%}:host([hide-week-numbers]) .ui5-dp-content{flex-basis:100%}.ui5-dp-root.ui5-dp-twocalendartypes .ui5-dp-item{flex-direction:column;justify-content:var(--_ui5_day_picker_item_justify_content)}.ui5-dp-root.ui5-dp-twocalendartypes .ui5-dp-daytext{height:1.5625rem;padding-inline-end:var(--_ui5_dp_two_calendar_item_text_padding_top)}.ui5-dp-root.ui5-dp-twocalendartypes .ui5-dp-daysectext{font-size:.75rem;height:var(--_ui5_dp_two_calendar_item_secondary_text_height);padding-block:var(--_ui5_dp_two_calendar_item_secondary_text_padding_block);padding-inline:50% .4375rem}.ui5-dp-weekname,.ui5-dp-dayname,.ui5-dp-item{width:var(--_ui5_day_picker_item_width);height:var(--_ui5_day_picker_item_height);margin-block-start:var(--_ui5_daypicker_item_margin);margin-inline-end:var(--_ui5_daypicker_item_margin);font-family:var(--sapFontFamily);border-radius:var(--_ui5_daypicker_item_border_radius)}.ui5-dp-weekname,.ui5-dp-dayname{cursor:default}.ui5-dp-weekname{color:var(--_ui5_daypicker_weekname_color)}.ui5-dp-weeks-row{display:flex}.ui5-dp-content{display:flex;flex-basis:87.5%;flex-direction:column;font-family:var(--sapFontFamily)}.ui5-dp-days-names-container{display:flex;height:var(--_ui5_daypicker_daynames_container_height)}.ui5-dp-weeknumber-container{padding-block-start:var(--_ui5_daypicker_weeknumbers_container_padding_top);flex-basis:12.5%}.ui5-dp-weekname,.ui5-dp-dayname,.ui5-dp-weekname-container,.ui5-dp-item{display:flex;flex-grow:1;justify-content:center;align-items:center;font-size:var(--sapFontSmallSize);outline:none;box-sizing:border-box;-webkit-user-select:none;-moz-user-select:none;user-select:none}.ui5-dp-item{position:relative;color:var(--sapTextColor);background:var(--sapLegend_WorkingBackground);font-size:var(--sapFontSize);border:var(--_ui5_daypicker_item_border);border-radius:var(--_ui5_daypicker_item_border_radius);cursor:pointer}.ui5-dp-item:hover{background:var(--sapList_Hover_Background)}.ui5-dp-daytext{display:flex;width:100%;height:100%;justify-content:center;align-items:center;box-sizing:border-box}.ui5-dp-dayname{color:var(--_ui5_daypicker_dayname_color);height:100%}.ui5-dp-item.ui5-dp-item--weekend{background:var(--sapLegend_NonWorkingBackground)}.ui5-dp-item.ui5-dp-item--disabled{pointer-events:none;opacity:.5}.ui5-dp-item.ui5-dp-item--weekend:hover{background:var(--sapList_Hover_Background);filter:var(--_ui5_daypicker_item_weeekend_filter)}.ui5-dp-item.ui5-dp-item--othermonth{color:var(--_ui5_daypicker_item_othermonth_color);background:var(--_ui5_daypicker_item_othermonth_background_color);border-color:transparent}.ui5-dp-item.ui5-dp-item--othermonth:hover,.ui5-dp-item.ui5-dp-item--weekend.ui5-dp-item--othermonth:hover{color:var(--_ui5_daypicker_item_othermonth_hover_color);background:var(--sapList_Hover_Background)}.ui5-dp-item:focus:after{content:"";border:var(--_ui5_daypicker_item_not_selected_focus_border);position:absolute;inset:var(--_ui5_daypicker_item_no_selected_inset);outline:none;border-radius:var(--_ui5_daypicker_item_border_radius_focus_after)}.ui5-dp-item.ui5-dp-item--now:before{position:absolute;inset:var(--_ui5_daypicker_item_now_not_selected_inset);border:.125rem solid var(--_ui5_daypicker_item_now_border_color);content:"";border-radius:var(--_ui5_daypicker_item_border_radius);z-index:1}.ui5-dp-item.ui5-dp-item--now.ui5-dp-item--selected{box-shadow:var(--_ui5_daypicker_item_now_box_shadow)}.ui5-dp-item.ui5-dp-item--selected{background:var(--sapContent_Selected_Background)}.ui5-dp-item.ui5-dp-item--selected:not(.ui5-dp-item.ui5-dp-item--now) .ui5-dp-daytext:after{position:absolute;inset:0;border:var(--_ui5_daypicker_item_selected_border);content:"";border-radius:var(--_ui5_daypicker_item_border_radius_item);z-index:1}.ui5-dp-item.ui5-dp-item--selected.ui5-dp-item.ui5-dp-item--now .ui5-dp-daytext{border:var(--_ui5_day_picker_item_selected_now_border);outline:var(--_ui5_daypicker_item_selected_text_outline);outline-offset:var(--_ui5_daypicker_item_now_selected_outline_offset);border-radius:var(--_ui5_daypicker_item_border_radius_item);font-family:var(--_ui5_daypicker_item_selected_text_font)}.ui5-dp-item.ui5-dp-item--selected .ui5-dp-daytext{background:var(--_ui5_daypicker_item_selected_background);color:var(--sapContent_Selected_TextColor);border-radius:var(--_ui5_daypicker_item_border_radius);border:var(--_ui5_daypicker_item_selected_text_border);font-family:var(--_ui5_daypicker_item_selected_text_font)}.ui5-dp-item.ui5-dp-item--selected .ui5-dp-daytext{background:var(--_ui5_daypicker_item_selected_daytext_hover_background);color:var(--sapContent_Selected_TextColor)}.ui5-dp-item.ui5-dp-item--now:focus:after{inset:var(--_ui5_daypicker_item_now_inset);border-radius:var(--_ui5_daypicker_item_now_border_radius_focus_after);border:var(--_ui5_daypicker_item_now_border_focus_after);position:absolute;content:"";width:auto;height:auto}.ui5-dp-item.ui5-dp-item--selected.ui5-dp-item--now:focus:after{inset:var(--_ui5_daypicker_item_now_inset);border-radius:var(--_ui5_day_picker_item_selected_now_border_radius_focus);border:var(--_ui5_day_picker_item_selected_now_border_focus);position:absolute;content:"";width:auto;height:auto}.ui5-dp-item.ui5-dp-item--selected:hover{background:var(--_ui5_daypicker_item_selected_hover);color:var(--sapContent_ContrastTextColor)}.ui5-dp-item.ui5-dp-item--selected:focus:after{border-color:var(--_ui5_daypicker_item_selected_focus_color);border-width:var(--_ui5_daypicker_item_selected_focus_width)}.ui5-dp-items-container{outline:none}.ui5-dp-item.ui5-dp-item--selected-between .ui5-dp-daytext{border-radius:var(--_ui5_daypicker_item_border_radius);font-weight:var(--_ui5_daypicker_item_selected_between_text_font)}.ui5-dp-item.ui5-dp-item--selected-between.ui5-dp-item--now:not(.ui5-dp-item--selected) .ui5-dp-daytext:after{content:"";position:absolute;inset:var(--_ui5_daypicker_item_now_selected_between_inset);border:var(--_ui5_daypicker_item_now_selected_between_border);border-radius:var(--_ui5_daypicker_item_now_selected_between_border_radius)}.ui5-dp-item.ui5-dp-item--selected-between{border:var(--_ui5_daypicker_item_select_between_border);border-radius:var(--_ui5_daypicker_item_selected_between_border);background:var(--_ui5_daypicker_item_selected_between_background)}.ui5-dp-item.ui5-dp-item--selected-between:hover{background:var(--_ui5_daypicker_item_selected_between_hover_background)}.ui5-dp-item.ui5-dp-item--selected.ui5-dp-item--selected-between:focus:after{border-color:var(--sapContent_FocusColor)}.ui5-dp-items-container>:first-child{justify-content:flex-end}.ui5-dp-emptyweek{height:var(--_ui5_day_picker_empty_height)}.ui5-dp-item.ui5-dp-item--now.ui5-dp-item--selected.ui5-dp-item--withsecondtype:focus:after{outline-offset:-.1875rem;border-radius:var(--_ui5-dp-item_withsecondtype_border)}.ui5-dp-item.ui5-dp-item--selected.ui5-dp-item--now.ui5-dp-item--withsecondtype .ui5-dp-daysectext,.ui5-dp-item.ui5-dp-item--now.ui5-dp-item--selected.ui5-dp-item--withsecondtype .ui5-dp-daytext{border:none;outline:none}.ui5-dp-root.ui5-dp-twocalendartypes .ui5-dp-item.ui5-dp-item--selected:not(.ui5-dp-item.ui5-dp-item--now) .ui5-dp-daytext:after{border-width:.0625rem}.ui5-dp-root.ui5-dp-twocalendartypes .ui5-dp-item.ui5-dp-item--now .ui5-dp-daysectext{height:var(--_ui5_dp_two_calendar_item_secondary_text_height);padding-block-start:0;border-radius:var(--_ui5_dp_two_calendar_item_secondary_text_border_radios)}.ui5-dp-root.ui5-dp-twocalendartypes .ui5-dp-item.ui5-dp-item--selected.ui5-dp-item.ui5-dp-item--now .ui5-dp-daytext{border-radius:var(--_ui5_daypicker_two_calendar_item_border_radius);margin-block-end:var(--_ui5_daypicker_two_calendar_item_margin_bottom)}.ui5-dp-root.ui5-dp-twocalendartypes .ui5-dp-item:focus:after{inset:var(--_ui5_daypicker_two_calendar_item_no_selected_inset);border-radius:var(--_ui5_daypicker_two_calendar_item_border_focus_border_radius)}.ui5-dp-root.ui5-dp-twocalendartypes .ui5-dp-item.ui5-dp-item--now:after{inset:var(--_ui5_daypicker_two_calendar_item_no_selected_focus_inset);border-radius:var(--_ui5_daypicker_two_calendar_item_no_select_focus_border_radius)}.ui5-dp-root.ui5-dp-twocalendartypes .ui5-dp-item.ui5-dp-item--selected:focus:after{border-width:var(--_ui5_daypicker_two_calendar_item_now_selected_border_width);inset:var(--_ui5_daypicker_two_calendar_item_now_selected_border_inset);border-radius:var(--_ui5_daypicker_two_calendar_item_border_focus_border_radius)}.ui5-dp-root.ui5-dp-twocalendartypes .ui5-dp-item.ui5-dp-item--selected.ui5-dp-item--now:after{inset:var(--_ui5_daypicker_two_calendar_item_now_inset);border-radius:var(--_ui5_daypicker_two_calendar_item_selected_now_border_radius_focus)}.ui5-dp-root.ui5-dp-twocalendartypes .ui5-dp-item.ui5-dp-item--now.ui5-dp-item--selected.ui5-dp-item--withsecondtype .ui5-dp-daytext:not(.ui5-dp-daysectext):before{content:var(--_ui5_daypicker_two_calendar_item_now_day_text_content);position:absolute;inset:.25rem;border-radius:var(--_ui5_daypicker_two_calendar_item_selected_now_border_radius_focus);outline:var(--_ui5_daypicker_item_selected__secondary_type_text_outline);z-index:1}.ui5-dp-specialday{width:100%;height:.375rem;position:absolute;box-sizing:border-box;inset-block-start:var(--_ui5_daypicker_special_day_top);border-end-end-radius:var(--_ui5_daypicker_special_day_border_bottom_radius);border-end-start-radius:var(--_ui5_daypicker_special_day_border_bottom_radius);border-block-start:var(--_ui5_daypicker_special_day_border_top)}.ui5-dp-specialday.NonWorking,.ui5-dp-specialday.Working{border-block-start:none}.ui5-dp-item--selected .ui5-dp-specialday{width:var(--_ui5_daypicker_selected_item_special_day_width)}.ui5-dp-item--selected.ui5-dp-item--now .ui5-dp-specialday{inset-block-start:var(--_ui5_daypicker_selected_item_now_special_day_top);width:var(--_ui5_daypicker_selected_item_now_special_day_width);border-end-end-radius:var(--_ui5_daypicker_selected_item_now_special_day_border_bottom_radius);border-end-start-radius:var(--_ui5_daypicker_selected_item_now_special_day_border_bottom_radius)}.ui5-dp-item--now .ui5-dp-specialday,.ui5-dp-item.ui5-dp-item--selected.ui5-dp-item--now .ui5-dp-specialday{height:.3125rem;border-end-end-radius:var(--_ui5_daypicker_selected_item_now_special_day_border_bottom_radius_alternate);border-end-start-radius:var(--_ui5_daypicker_selected_item_now_special_day_border_bottom_radius_alternate);inset-block-start:var(--_ui5_daypicker_item_now_specialday_top);width:var(--_ui5_daypicker_item_now_specialday_width)}.ui5-dp-item:not(:focus).ui5-dp-item--selected.ui5-dp-item--now .ui5-dp-specialday{border-end-end-radius:var(--_ui5_daypicker_special_day_selected_border_radius_bottom);border-end-start-radius:var(--_ui5_daypicker_special_day_selected_border_radius_bottom)}.ui5-dp-item--now .ui5-dp-specialday{width:var(--_ui5_daypicker_selected_item_now_special_day_width);inset-block-start:var(--_ui5_daypicker_selected_item_now_special_day_top)}.ui5-dp-item[data-ui5-special-day].ui5-dp-item--selected.ui5-dp-item--now .ui5-dp-daytext{border-radius:var(--_ui5-daypicker_item_selected_now_border_radius)}.ui5-dp-item[data-ui5-special-day].ui5-dp-item--selected.ui5-dp-item--now:focus:after,.ui5-dp-item[data-ui5-special-day].ui5-dp-item--now:focus:after{margin:var(--_ui5_daypicker_item_now_focus_margin)}.ui5-dp-item.ui5-dp-item--now:focus .ui5-dp-specialday{inset-block-start:var(--_ui5_daypicker_specialday_focused_top);width:var(--_ui5_daypicker_specialday_focused_width);border-end-end-radius:var(--_ui5_daypicker_specialday_focused_border_bottom);border-end-start-radius:var(--_ui5_daypicker_specialday_focused_border_bottom);height:.3125rem}.ui5-dp-root.ui5-dp-twocalendartypes .ui5-dp-item[data-ui5-special-day].ui5-dp-item--selected.ui5-dp-item--now:after,.ui5-dp-root.ui5-dp-twocalendartypes .ui5-dp-item[data-ui5-special-day].ui5-dp-item--now:after{inset:var(--_ui5_daypicker_twocalendar_item_special_day_now_inset);border-radius:var(--_ui5_daypicker_twocalendar_item_special_day_now_border_radius);border-width:var(--_ui5_daypicker_twocalendar_item_special_day_after_border_width);border-color:var(--_ui5_daypicker_item_selected_focus_color)}.ui5-dp-root.ui5-dp-twocalendartypes .ui5-dp-item[data-ui5-special-day].ui5-dp-item--now:not(.ui5-dp-item--selected):after{inset:.1875rem}.ui5-dp-root.ui5-dp-twocalendartypes .ui5-dp-item .ui5-dp-specialday{inset-block-start:var(--_ui5_daypicker_twocalendar_item_special_day_top);inset-inline-end:var(--_ui5_daypicker_twocalendar_item_special_day_right)}.ui5-dp-root.ui5-dp-twocalendartypes .ui5-dp-item:not(.ui5-dp-item--now) .ui5-dp-daysectext{padding-block:var(--_ui5_dp_two_calendar_item_secondary_text_padding)}.ui5-dp-item.ui5-dp-item--selected.ui5-dp-item--now.ui5-dp-item--withsecondtype:focus .ui5-dp-specialday{inset-block-start:var(--_ui5_daypicker_item_now_selected_two_calendar_focus_special_day_top);inset-inline-end:var(--_ui5_daypicker_item_now_selected_two_calendar_focus_special_day_right)}.ui5-dp-item.ui5-dp-item--selected.ui5-dp-item--now.ui5-dp-item--withsecondtype:focus .ui5-dp-daysectext{padding-block:var(--_ui5_daypicker_item_now_selected_two_calendar_focus_secondary_text_padding_block)}.ui5-dp-item--withsecondtype .ui5-dp-daytext{font-size:var(--_ui5_dp_item_withsecondtype_font_size)}.ui5-dp-item.ui5-dp-item--withsecondtype .ui5-dp-specialday,.ui5-dp-item.ui5-dp-item--withsecondtype.ui5-dp-item--now:focus .ui5-dp-specialday,.ui5-dp-item.ui5-dp-item--withsecondtype:not(:focus).ui5-dp-item--selected.ui5-dp-item--now .ui5-dp-specialday{border-radius:100%;width:var(--_ui5_daypicker_twocalendar_item_special_day_dot);inset-block-start:var(--_ui5_daypicker_twocalendar_item_special_day_top);inset-inline-end:var(--_ui5_daypicker_twocalendar_item_special_day_right);height:var(--_ui5_daypicker_twocalendar_item_special_day_dot);border-block-start:none}.ui5-dp-root.ui5-dp-twocalendartypes .ui5-dp-item.ui5-dp-item--selected.ui5-dp-item.ui5-dp-item--now:focus .ui5-dp-daytext{margin-block-end:var(--_ui5_daypicker_two_calendar_item_selected_focus_margin_bottom);padding-inline-end:var(--_ui5_daypicker_two_calendar_item_selected_focus_padding_right)}.Type01{background:var(--sapLegendColor1)}.Type02{background:var(--sapLegendColor2)}.Type03{background:var(--sapLegendColor3)}.Type04{background:var(--sapLegendColor4)}.Type05{background:var(--sapLegendColor5)}.Type06{background:var(--sapLegendColor6)}.Type07{background:var(--sapLegendColor7)}.Type08{background:var(--sapLegendColor8)}.Type09{background:var(--sapLegendColor9)}.Type10{background:var(--sapLegendColor10)}.Type11{background:var(--sapLegendColor11)}.Type12{background:var(--sapLegendColor12)}.Type13{background:var(--sapLegendColor13)}.Type14{background:var(--sapLegendColor14)}.Type15{background:var(--sapLegendColor15)}.Type16{background:var(--sapLegendColor16)}.Type17{background:var(--sapLegendColor17)}.Type18{background:var(--sapLegendColor18)}.Type19{background:var(--sapLegendColor19)}.Type20{background:var(--sapLegendColor20)}\n',template:function(){return b_("div",{class:{"ui5-dp-root":!0,"ui5-dp-twocalendartypes":this.hasSecondaryCalendarType},style:{"justify-content":"center",display:this._hidden?"none":"flex"},onKeyDown:this._onkeydown,onKeyUp:this._onkeyup,onClick:this._onclick,onMouseOver:this._onmouseover,children:y_("div",{id:`${this._id}-content`,class:"ui5-dp-content",role:"grid","aria-roledescription":this.ariaRoledescription,children:[b_("div",{role:"row",class:"ui5-dp-days-names-container",children:this._dayNames.map(e=>b_("div",{role:"columnheader","aria-label":e.ultraShortName?e.name:void 0,class:e.classes,children:e.ultraShortName?e.ultraShortName:b_("span",{class:"ui5-hidden-text",children:e.name})}))}),this._weeks.map(e=>e.length>0?b_("div",{class:"ui5-dp-weeks-row",role:"row",children:e.map(e=>"timestamp"in e?y_("div",{"data-ui5-special-day":e.type?e.type:void 0,tabindex:e._tabIndex,"data-sap-focus-ref":e.focusRef?"true":void 0,"data-sap-timestamp":e.timestamp,role:"gridcell",title:e.tooltip,"aria-selected":e.ariaSelected,"aria-label":e.ariaLabel,"aria-disabled":e.ariaDisabled,class:e.classes,part:e.parts,children:[b_("span",{class:"ui5-dp-daytext","data-sap-timestamp":e.timestamp,children:e.day}),e._isSecondaryCalendarType&&b_("span",{class:"ui5-dp-daytext ui5-dp-daysectext",children:e.secondDay}),e.type&&b_("div",{class:`ui5-dp-specialday ${e.type}`})]}):!e.isHidden&&b_("div",{className:"ui5-dp-weekname-container",role:"rowheader","aria-label":`Calendar Week ${e.weekNum}`,children:b_("span",{className:"ui5-dp-weekname",children:e.weekNum})}))}):b_("div",{class:"ui5-dp-empty-week"}))]})})}}),yn("change",{bubbles:!0}),yn("navigate",{bubbles:!0})],AS)).define();var PS=AS;C_(),Ca(),Ch(),wh(),St("@ui5/webcomponents-theming","sap_horizon",async()=>ch),St("@ui5/webcomponents","sap_horizon",async()=>_h,"host");wn(),kn(),xn(),qn(),tc(),en(),yh();var MS,ES=function(e,t,o,i){var r,a=arguments.length,n=a<3?t:null===i?i=Object.getOwnPropertyDescriptor(t,o):i;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)n=Reflect.decorate(e,t,o,i);else for(var s=e.length-1;s>=0;s--)(r=e[s])&&(n=(a<3?r(n):a>3?r(t,o,n):r(t,o))||n);return a>3&&n&&Object.defineProperty(t,o,n),n},zS=(e,t,o)=>e>Math.min(t,o)&&e<Math.max(t,o),FS=MS=class extends vS{constructor(){super(...arguments),this.selectedDates=[],this.selectionMode="Single",this._monthsInterval=[],this._hidden=!1}get roleDescription(){return MS.i18nBundle.getText($u)}onBeforeRendering(){this._buildMonths()}get rowSize(){return this.secondaryCalendarType===wC.Islamic&&this.primaryCalendarType!==wC.Islamic||this.secondaryCalendarType===wC.Persian&&this.primaryCalendarType!==wC.Persian?2:3}_buildMonths(){if(this._hidden)return;const e=uw(rr()).getMonthsStandAlone("wide",this._primaryCalendarType),t=[],o=this._calendarDate,i=this._minDate,r=this._maxDate;let a;for(let n=0;n<12;n++){const s=new Hw(o,this._primaryCalendarType);s.setMonth(n),s.getMonth()!==n&&(s.setMonth(s.getMonth()-1),s.setDate(this._calendarDate.getDate()-s.getDate())),a=s.valueOf()/1e3;const l=this.selectedDates.some(e=>{const t=Hw.fromTimestamp(1e3*e,this._primaryCalendarType);return t.getYear()===s.getYear()&&t.getMonth()===s.getMonth()}),c=s.getMonth()===o.getMonth(),_=this._isOutOfSelectableRange(s,i,r),d=this._isMonthInsideSelectionRange(a),u={timestamp:a.toString(),focusRef:c,_tabIndex:c?0:-1,selected:l||d,ariaSelected:l||d,name:e[n],nameInSecType:this.hasSecondaryCalendarType?this._getDisplayedSecondaryMonthText(a).text:void 0,disabled:_,ariaDisabled:_,classes:"ui5-mp-item",parts:"month-cell"};l&&(u.classes+=" ui5-mp-item--selected",u.parts+=" month-cell-selected"),d&&(u.classes+=" ui5-mp-item--selected-between",u.parts+=" month-cell-selected-between"),_&&(u.classes+=" ui5-mp-item--disabled");const h=Math.floor(n/this.rowSize);t[h]?t[h].push(u):t[h]=[u]}this._monthsInterval=t}_getDisplayedSecondaryMonthText(e){const t=rS(this._primaryCalendarType,this.secondaryCalendarType,e);return aS(t.firstDate.getMonth(),t.lastDate.getMonth(),this.secondaryCalendarType)}_isMonthInsideSelectionRange(e){return!(this.selectionMode!==fS.Range||!this.selectedDates.length)&&(1===this.selectedDates.length&&this._secondTimestamp?zS(e,this.selectedDates[0],this._secondTimestamp):zS(e,this.selectedDates[0],this.selectedDates[1]))}_onkeydown(e){let t=!0;fs(e)?this._selectMonth(e):Cs(e)?e.preventDefault():ks(e)?this._modifyTimestampBy(-1):xs(e)?this._modifyTimestampBy(1):Ss(e)?this._modifyTimestampBy(-this.rowSize):Ts(e)?this._modifyTimestampBy(this.rowSize):Vs(e)?this._modifyTimestampBy(-12):Ws(e)?this._modifyTimestampBy(12):Es(e)||zs(e)?this._onHomeOrEnd(Es(e)):Fs(e)?this._setTimestamp(parseInt(this._monthsInterval[0][0].timestamp)):Rs(e)?this._setTimestamp(parseInt(this._monthsInterval[12/this.rowSize-1][this.rowSize-1].timestamp)):t=!1,t&&e.preventDefault()}_onHomeOrEnd(e){this._monthsInterval.forEach(t=>{if(-1!==t.findIndex(e=>Hw.fromTimestamp(1e3*parseInt(e.timestamp)).getMonth()===this._calendarDate.getMonth())){const o=e?0:this.rowSize-1;this._setTimestamp(parseInt(t[o].timestamp))}})}_setTimestamp(e){this._safelySetTimestamp(e),this.fireDecoratorEvent("navigate",{timestamp:this.timestamp})}_updateSecondTimestamp(){this.selectionMode!==fS.Range||1!==this.selectedDates.length&&2!==this.selectedDates.length||(this._secondTimestamp=this.timestamp)}_onmouseover(e){const t=e.target.closest(".ui5-mp-item");t&&this.selectionMode===fS.Range&&1===this.selectedDates.length&&(this._secondTimestamp=this._getTimestampFromDom(t))}_onmousedown(e){const t=e.target.closest(".ui5-mp-item");if(t){const e=this._getTimestampFromDom(t);this._setTimestamp(e)}}_modifyTimestampBy(e,t){this._safelyModifyTimestampBy(e,"month",t),this._updateSecondTimestamp(),this.fireDecoratorEvent("navigate",{timestamp:this.timestamp})}_onkeyup(e){Cs(e)&&this._selectMonth(e)}_selectMonth(e){e.preventDefault();const t=e.target;if(!t.classList.contains("ui5-mp-item"))return;const o=this._getTimestampFromDom(t);this._safelySetTimestamp(o),this._updateSecondTimestamp(),this._updateSelectedDates(o),this.fireDecoratorEvent("change",{timestamp:this.timestamp,dates:this.selectedDates})}_updateSelectedDates(e){this.selectionMode!==fS.Range||1!==this.selectedDates.length?this.selectedDates=[e]:this.selectedDates=[this.selectedDates[0],e]}_hasPreviousPage(){return this._calendarDate.getYear()!==this._minDate.getYear()}_hasNextPage(){return this._calendarDate.getYear()!==this._maxDate.getYear()}_showPreviousPage(){this._modifyTimestampBy(-12,!0)}_showNextPage(){this._modifyTimestampBy(12,!0)}_isOutOfSelectableRange(e,t,o){const i=e.getMonth(),r=e.getYear(),a=t.getYear(),n=t.getMonth(),s=o.getYear(),l=o.getMonth();return r<a||r===a&&i<n||r>s||r===s&&i>l}};ES([bn({type:Array,noAttribute:!0})],FS.prototype,"selectedDates",void 0),ES([bn()],FS.prototype,"selectionMode",void 0),ES([bn({type:Array,noAttribute:!0})],FS.prototype,"_monthsInterval",void 0),ES([bn({type:Boolean,noAttribute:!0})],FS.prototype,"_hidden",void 0),ES([bn({type:Number})],FS.prototype,"_secondTimestamp",void 0),ES([Tn("@ui5/webcomponents")],FS,"i18nBundle",void 0),(FS=MS=ES([fn({tag:"ui5-monthpicker",template:function(){return b_("div",{class:"ui5-mp-root",part:"month-picker-root",role:"grid","aria-roledescription":this.roleDescription,"aria-readonly":"false","aria-multiselectable":"false",onMouseOver:this._onmouseover,onKeyDown:this._onkeydown,onKeyUp:this._onkeyup,onClick:this._selectMonth,onMouseDown:this._onmousedown,children:this._monthsInterval.map(e=>b_("div",{role:"row",class:"ui5-mp-quarter",children:e.map(e=>y_("div",{"data-sap-timestamp":e.timestamp,tabindex:e._tabIndex,"data-sap-focus-ref":e.focusRef?"true":void 0,class:e.classes,part:e.parts,role:"gridcell","aria-selected":e.ariaSelected,"aria-disabled":e.ariaDisabled,children:[b_("span",{class:"ui5-dp-monthtext",children:e.name}),e.nameInSecType&&b_("span",{class:"ui5-dp-monthtext ui5-dp-monthsectext",children:e.nameInSecType})]}))}))})},styles:':host(:not([hidden])){display:block}:host{width:100%;height:100%}.ui5-mp-root{box-sizing:border-box;padding:2rem 0 1rem;display:flex;flex-direction:column;font-family:var(--sapFontFamily);font-size:var(--sapFontSize);justify-content:center;align-items:center}.ui5-mp-quarter{display:flex;justify-content:center;align-items:center;width:100%}.ui5-mp-item{display:flex;flex-direction:column;width:calc(33.333% - .125rem);height:var(--_ui5_month_picker_item_height);color:var(--sapButton_Lite_TextColor);background-color:var(--sapButton_Lite_Background);align-items:center;justify-content:center;margin:var(--_ui5_monthpicker_item_margin);box-sizing:border-box;-webkit-user-select:none;-moz-user-select:none;user-select:none;cursor:pointer;outline:none;position:relative;border:var(--_ui5_monthpicker_item_border);border-radius:var(--_ui5_monthpicker_item_border_radius)}.ui5-dp-monthsectext{font-size:var(--sapFontSmallSize);color:var(--sapTextColor)}.ui5-mp-item.ui5-mp-item--selected,.ui5-mp-item.ui5-mp-item--selected-between{background:var(--sapButton_Selected_Background);border:var(--_ui5_monthpicker_item_selected_border);color:var(--sapButton_Selected_TextColor)}.ui5-mp-item.ui5-mp-item--selected .ui5-dp-monthsectext,.ui5-mp-item.ui5-mp-item--selected-between .ui5-dp-monthsectext{color:var(--sapButton_Selected_TextColor)}.ui5-mp-item:hover{background:var(--sapButton_Lite_Hover_Background);border:var(--_ui5_monthpicker_item_hover_border);color:var(--sapButton_Lite_Hover_TextColor)}.ui5-mp-item.ui5-mp-item--selected:hover,.ui5-mp-item.ui5-mp-item--selected-between:hover{background:var(--sapButton_Selected_Hover_Background);border:var(--_ui5_monthpicker_item_selected_hover_border);color:var(--sapButton_Selected_TextColor)}.ui5-mp-item.ui5-mp-item--selected:hover .ui5-dp-monthsectext,.ui5-mp-item.ui5-mp-item--selected-between:hover .ui5-dp-monthsectext{color:var(--sapButton_Selected_TextColor)}.ui5-mp-item:active,.ui5-mp-item.ui5-mp-item--selected:active,.ui5-mp-item.ui5-mp-item--selected-between:active{background:var(--sapButton_Active_Background);border:var(--_ui5_monthpicker_item_active_border);color:var(--sapButton_Active_TextColor)}.ui5-mp-item:active .ui5-dp-monthsectext,.ui5-mp-item.ui5-mp-item--selected:active .ui5-dp-monthsectext,.ui5-mp-item.ui5-mp-item--selected-between:active .ui5-dp-monthsectext{color:var(--sapButton_Active_TextColor)}.ui5-mp-item.ui5-mp-item--disabled{pointer-events:none;opacity:.5}.ui5-mp-item:focus:after{content:"";position:absolute;inset:.0625rem;border:var(--_ui5_button_focused_border);border-radius:var(--_ui5_button_focused_border_radius)}:host([secondary-calendar-type="Persian"]:not([primary-calendar-type="Persian"])) .ui5-mp-root,:host([secondary-calendar-type="Islamic"]:not([primary-calendar-type="Islamic"])) .ui5-mp-root{display:grid;padding:.5625rem 0;grid-template-columns:repeat(2,1fr);gap:var(--_ui5_monthpicker_item_margin)}:host([secondary-calendar-type="Persian"]:not([primary-calendar-type="Persian"])) .ui5-mp-item,:host([secondary-calendar-type="Islamic"]:not([primary-calendar-type="Islamic"])) .ui5-mp-item{margin:0;width:auto}:host([secondary-calendar-type="Persian"]:not([primary-calendar-type="Persian"])) .ui5-mp-quarter,:host([secondary-calendar-type="Islamic"]:not([primary-calendar-type="Islamic"])) .ui5-mp-quarter{width:100%;display:contents}\n'}),yn("change",{bubbles:!0}),yn("navigate",{bubbles:!0})],FS)).define();var RS=FS;C_(),Ca(),Ch(),wh(),St("@ui5/webcomponents-theming","sap_horizon",async()=>ch),St("@ui5/webcomponents","sap_horizon",async()=>_h,"host");wn(),kn(),xn(),qn(),tc(),yh();var OS,LS=function(e,t,o,i){var r,a=arguments.length,n=a<3?t:null===i?i=Object.getOwnPropertyDescriptor(t,o):i;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)n=Reflect.decorate(e,t,o,i);else for(var s=e.length-1;s>=0;s--)(r=e[s])&&(n=(a<3?r(n):a>3?r(t,o,n):r(t,o))||n);return a>3&&n&&Object.defineProperty(t,o,n),n},NS=(e,t,o)=>e>Math.min(t,o)&&e<Math.max(t,o),HS=OS=class extends vS{constructor(){super(...arguments),this.selectedDates=[],this.selectionMode="Single",this._yearsInterval=[],this._hidden=!1}get roleDescription(){return OS.i18nBundle.getText(Gu)}onBeforeRendering(){this._hidden||(this._firstYear=this._currentYearRange?.startYear?this._currentYearRange?.startYear:this._calendarDate.getYear(),this._buildYears())}_getPageSize(){return this.hasSecondaryCalendarType?8:20}_getRowSize(){return this.hasSecondaryCalendarType?2:4}_buildYears(){const e=this._getPageSize(),t=bk.getDateInstance({format:"y",calendarType:this._primaryCalendarType}),o=bk.getDateInstance({format:"y",calendarType:this.secondaryCalendarType}),i=this._calendarDate,r=this._minDate,a=this._maxDate,n=new Hw(i,this._primaryCalendarType);let s,l;n.setYear(this._firstYear);const c=[];let _;for(let d=0;d<e;d++){_=n.valueOf()/1e3;const e=this.selectedDates.some(e=>Hw.fromTimestamp(1e3*e,this._primaryCalendarType).getYear()===n.getYear()),u=n.getYear()===i.getYear(),h=n.getYear()<r.getYear()||n.getYear()>a.getYear(),p=this._isYearInsideSelectionRange(_);this.hasSecondaryCalendarType&&(s=rS(this._primaryCalendarType,this.secondaryCalendarType,_,!0),l=s.firstDate.getYear()===s.lastDate.getYear()?`${o.format(s.firstDate.toLocalJSDate())}`:`${o.format(s.firstDate.toLocalJSDate())} - ${o.format(s.lastDate.toLocalJSDate())}`);const g={timestamp:_.toString(),_tabIndex:u?0:-1,focusRef:u,selected:e||p,ariaSelected:e||p,year:t.format(n.toLocalJSDate()),yearInSecType:l,disabled:h,ariaDisabled:h,classes:"ui5-yp-item",parts:"year-cell"};e&&(g.classes+=" ui5-yp-item--selected",g.parts+=" year-cell-selected"),p&&(g.classes+=" ui5-yp-item--selected-between",g.parts+=" year-cell-selected-between"),h&&(g.classes+=" ui5-yp-item--disabled"),this.hasSecondaryCalendarType&&(g.classes+=" ui5-yp-item-secondary-type");const m=Math.floor(d/this._getRowSize());c[m]?c[m].push(g):c[m]=[g],n.setYear(n.getYear()+1)}this._yearsInterval=c}_isYearInsideSelectionRange(e){return!(this.selectionMode!==fS.Range||!this.selectedDates.length)&&(1===this.selectedDates.length&&this._secondTimestamp?NS(e,this.selectedDates[0],this._secondTimestamp):NS(e,this.selectedDates[0],this.selectedDates[1]))}_onkeydown(e){let t=!0;const o=this._getPageSize(),i=this._getRowSize();fs(e)?this._selectYear(e):Cs(e)?e.preventDefault():ks(e)?this._modifyTimestampBy(-1):xs(e)?this._modifyTimestampBy(1):Ss(e)?this._modifyTimestampBy(-i):Ts(e)?this._modifyTimestampBy(i):Vs(e)?this._modifyTimestampBy(-o):Ws(e)?this._modifyTimestampBy(o):Es(e)||zs(e)?this._onHomeOrEnd(Es(e)):Fs(e)?this._setTimestamp(parseInt(this._yearsInterval[0][0].timestamp)):Rs(e)?this._setTimestamp(parseInt(this._yearsInterval[o/i-1][i-1].timestamp)):t=!1,t&&e.preventDefault()}_onHomeOrEnd(e){this._yearsInterval.forEach(t=>{if(-1!==t.findIndex(e=>Hw.fromTimestamp(1e3*parseInt(e.timestamp)).getYear()===this._calendarDate.getYear())){const o=e?0:this._getRowSize()-1;this._setTimestamp(parseInt(t[o].timestamp))}})}_updateSecondTimestamp(){this.selectionMode!==fS.Range||1!==this.selectedDates.length&&2!==this.selectedDates.length||(this._secondTimestamp=this.timestamp)}_onmouseover(e){const t=e.target.closest(".ui5-yp-item");t&&this.selectionMode===fS.Range&&1===this.selectedDates.length&&(this._secondTimestamp=this._getTimestampFromDom(t))}_setTimestamp(e){this._safelySetTimestamp(e),this.fireDecoratorEvent("navigate",{timestamp:this.timestamp})}_modifyTimestampBy(e){this._safelyModifyTimestampBy(e,"year"),this._updateSecondTimestamp(),this.fireDecoratorEvent("navigate",{timestamp:this.timestamp})}_onkeyup(e){Cs(e)&&this._selectYear(e)}_selectYear(e){e.preventDefault();const t=e.target;if(-1===t.className.indexOf("ui5-yp-item"))return;const o=this._getTimestampFromDom(t);this._safelySetTimestamp(o),this._updateSecondTimestamp(),this._updateSelectedDates(o),this.fireDecoratorEvent("change",{timestamp:this.timestamp,dates:this.selectedDates})}_updateSelectedDates(e){this.selectionMode!==fS.Range||1!==this.selectedDates.length?this.selectedDates=[e]:this.selectedDates=[this.selectedDates[0],e]}_hasPreviousPage(){return this._firstYear>this._minDate.getYear()}_hasNextPage(){return this._firstYear+this._getPageSize()-1<this._maxDate.getYear()}_showPreviousPage(){const e=this._getPageSize();this._modifyTimestampBy(-e)}_showNextPage(){this._modifyTimestampBy(this._getPageSize())}};LS([bn({type:Array,noAttribute:!0})],HS.prototype,"selectedDates",void 0),LS([bn()],HS.prototype,"selectionMode",void 0),LS([bn({type:Array,noAttribute:!0})],HS.prototype,"_yearsInterval",void 0),LS([bn({type:Boolean,noAttribute:!0})],HS.prototype,"_hidden",void 0),LS([bn({type:Number})],HS.prototype,"_secondTimestamp",void 0),LS([bn({noAttribute:!0})],HS.prototype,"_currentYearRange",void 0),LS([Tn("@ui5/webcomponents")],HS,"i18nBundle",void 0),(HS=OS=LS([fn({tag:"ui5-yearpicker",styles:':host(:not([hidden])){display:block}:host{width:100%;height:100%}.ui5-yp-root{padding:2rem 0 1rem;display:flex;flex-direction:column;font-family:var(--sapFontFamily);font-size:var(--sapFontSize);justify-content:center;align-items:center}.ui5-yp-interval-container{display:flex;justify-content:center;align-items:center;width:100%}.ui5-yp-item{display:flex;margin:var(--_ui5_yearpicker_item_margin);width:calc(25% - .125rem);height:var(--_ui5_year_picker_item_height);color:var(--sapButton_Lite_TextColor);background-color:var(--sapButton_Lite_Background);align-items:center;justify-content:center;box-sizing:border-box;-webkit-user-select:none;-moz-user-select:none;user-select:none;cursor:pointer;outline:none;position:relative;border:var(--_ui5_yearpicker_item_border);border-radius:var(--_ui5_yearpicker_item_border_radius)}.ui5-yp-item-secondary-type{flex-direction:column;width:calc(50% - .125rem)}.ui5-yp-item-sec-type{font-size:var(--sapFontSmallSize);color:var(--sapTextColor)}.ui5-yp-item.ui5-yp-item--selected,.ui5-yp-item.ui5-yp-item--selected-between{background:var(--sapButton_Selected_Background);border:var(--_ui5_yearpicker_item_selected_border);color:var(--sapButton_Selected_TextColor)}.ui5-yp-item.ui5-yp-item--selected .ui5-yp-item-sec-type,.ui5-yp-item.ui5-yp-item--selected-between .ui5-yp-item-sec-type{color:var(--sapButton_Selected_TextColor)}.ui5-yp-item:hover{background:var(--sapButton_Lite_Hover_Background);border:var(--_ui5_yearpicker_item_hover_border);color:var(--sapButton_Lite_Hover_TextColor)}.ui5-yp-item.ui5-yp-item--selected:hover,.ui5-yp-item.ui5-yp-item--selected-between:hover{background:var(--sapButton_Selected_Hover_Background);border:var(--_ui5_yearpicker_item_selected_hover_border);color:var(--sapButton_Selected_TextColor)}.ui5-yp-item.ui5-yp-item--selected:hover .ui5-yp-item-sec-type,.ui5-yp-item.ui5-yp-item--selected-between:hover .ui5-yp-item-sec-type{color:var(--sapButton_Selected_TextColor)}.ui5-yp-item:active,.ui5-yp-item.ui5-yp-item--selected:active,.ui5-yp-item.ui5-yp-item--selected-between:active{background:var(--sapButton_Active_Background);border:var(--_ui5_monthpicker_item_active_border);color:var(--sapButton_Active_TextColor)}.ui5-yp-item:active .ui5-yp-item-sec-type,.ui5-yp-item.ui5-yp-item--selected:active .ui5-yp-item-sec-type,.ui5-yp-item.ui5-yp-item--selected-between:active .ui5-yp-item-sec-type{color:var(--sapButton_Active_TextColor)}.ui5-yp-item.ui5-yp-item--disabled{pointer-events:none;opacity:.5}.ui5-yp-item:focus:after{content:"";position:absolute;inset:.0625rem;border:var(--_ui5_button_focused_border);border-radius:var(--_ui5_button_focused_border_radius)}\n',template:function(){return b_("div",{class:"ui5-yp-root",part:"year-picker-root",role:"grid","aria-roledescription":this.roleDescription,"aria-readonly":"false","aria-multiselectable":"false",onMouseOver:this._onmouseover,onKeyDown:this._onkeydown,onKeyUp:this._onkeyup,onClick:this._selectYear,children:this._yearsInterval.map(e=>b_("div",{role:"row",class:"ui5-yp-interval-container",children:e.map(e=>y_("div",{"data-sap-timestamp":e.timestamp,tabindex:e._tabIndex,"data-sap-focus-ref":e.focusRef?"true":void 0,class:e.classes,part:e.parts,role:"gridcell","aria-selected":e.ariaSelected,"aria-disabled":e.ariaDisabled,children:[b_("span",{class:"ui5-dp-yeartext",children:e.year}),e.yearInSecType&&b_("span",{class:"ui5-yp-item-sec-type",children:e.yearInSecType})]}))}))})}}),yn("change",{bubbles:!0}),yn("navigate",{bubbles:!0})],HS)).define();var US=HS;C_(),Ca(),Ch(),wh(),St("@ui5/webcomponents-theming","sap_horizon",async()=>ch),St("@ui5/webcomponents","sap_horizon",async()=>_h,"host");wn(),kn(),xn(),qn(),tc(),en(),yh();var VS,WS=function(e,t,o,i){var r,a=arguments.length,n=a<3?t:null===i?i=Object.getOwnPropertyDescriptor(t,o):i;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)n=Reflect.decorate(e,t,o,i);else for(var s=e.length-1;s>=0;s--)(r=e[s])&&(n=(a<3?r(n):a>3?r(t,o,n):r(t,o))||n);return a>3&&n&&Object.defineProperty(t,o,n),n},qS=(e,t,o)=>e>=Math.min(t,o)&&e<=Math.max(t,o),jS=VS=class extends vS{constructor(){super(...arguments),this.selectedDates=[],this._showRangeSelection=!1,this._yearRanges=[],this._hidden=!1}get roleDescription(){return VS.i18nBundle.getText(Ku)}onBeforeRendering(){this._hidden||(this._gridStartYear=this._getGridStartYear(),this._yearRanges=this._getYearRanges())}_shouldShowOneColumn(){const e=rr().getLanguage();return["zh","ja","ko","bg","mk","ru"].includes(e)&&this.hasSecondaryCalendarType}_getPageSize(){return this._shouldShowOneColumn()?6:8}_getRowSize(){return this._shouldShowOneColumn()?1:2}_getInitialFocusedIndex(){return 2}_getRangeSize(){return this.hasSecondaryCalendarType?8:20}_getYearRangeFormattedText(e,t,o){return`${o.format(e.toLocalJSDate())} - ${o.format(t.toLocalJSDate())}`}_getGridStartYear(){const e=this._getRangeSize(),t=e*this._getPageSize(),o=e*this._getInitialFocusedIndex(),i=this._currentYearRange?.startYear?this._currentYearRange?.startYear:this._calendarDate.getYear();let r=this._gridStartYear?this._gridStartYear:i-o;r+=Math.floor((i-r)/t)*t;const a=this._minDate.getYear();i-e<a&&(r=a);const n=xk(this._primaryCalendarType).getYear();return i+t>n&&(r=n-t+1),r}_getYearRanges(){const e=bk.getDateInstance({format:"y",calendarType:this._primaryCalendarType}),t=bk.getDateInstance({format:"y",calendarType:this._secondaryCalendarType}),o=this._getPageSize(),i=this._getRowSize(),r=this._getRangeSize(),a=this._calendarDate,n=this._minDate.getYear(),s=this._maxDate.getYear(),l=new Hw(a,this._primaryCalendarType);l.setYear(this._gridStartYear);const c=[];for(let _=0;_<o;_++){const o=new Hw(l,this._primaryCalendarType);o.setYear(o.getYear()+r-1);const d=l.valueOf()/1e3,u=o.valueOf()/1e3,h=qS(a.getYear(),l.getYear(),o.getYear()),p=this._isYearRangeSelected(d,u),g=this._isInsideSelectionRange(d),m=this._getYearRangeFormattedText(l,o,e),v=this.hasSecondaryCalendarType?this._getYearRangeFormattedText(l,o,t):void 0,f=!(qS(l.getYear(),n,s)||qS(o.getYear(),n,s)),b=this._getYearRange(d,h,p,g,m,v,f),y=Math.floor(_/i);c[y]?c[y].push(b):c[y]=[b],l.setYear(l.getYear()+r)}return c}_getYearRange(e,t,o,i,r,a,n){const s={timestamp:e.toString(),_tabIndex:t?0:-1,focusRef:t,selected:o||i,ariaSelected:o||i,range:r,rangeInSecType:a,disabled:n,ariaDisabled:n,classes:"ui5-yrp-item",parts:"year-range-cell"};return o&&(s.classes+=" ui5-yrp-item--selected",s.parts+=" year-range-cell-selected"),i&&!o&&(s.classes+=" ui5-yrp-item--selected-between",s.parts+=" year-range-cell-selected-between"),n&&(s.classes+=" ui5-yrp-item--disabled"),this.hasSecondaryCalendarType&&(s.classes+=" ui5-yrp-item-secondary-type"),this._shouldShowOneColumn()&&(s.classes+=" ui5-yrp-item-one-column-view"),s}_isYearRangeSelected(e,t){return this.selectedDates.some(o=>qS(o,e,t))}_isInsideSelectionRange(e){return!(!this._showRangeSelection||!this.selectedDates.length)&&(1===this.selectedDates.length&&this._secondTimestamp?qS(e,this.selectedDates[0],this._secondTimestamp):qS(e,this.selectedDates[0],this.selectedDates[1]))}_onkeydown(e){let t=!0;const o=this._getPageSize(),i=this._getRowSize();fs(e)?this._selectYearRange(e):Cs(e)?e.preventDefault():ks(e)?this._modifyTimestampBy(-1):xs(e)?this._modifyTimestampBy(1):Ss(e)?this._modifyTimestampBy(-i):Ts(e)?this._modifyTimestampBy(i):Vs(e)?this._modifyTimestampBy(-o):Ws(e)?this._modifyTimestampBy(o):Es(e)||zs(e)?this._onHomeOrEnd(Es(e)):Fs(e)?this._setTimestamp(parseInt(this._yearRanges[0][0].timestamp)):Rs(e)?this._setTimestamp(parseInt(this._yearRanges[o/i-1][i-1].timestamp)):t=!1,t&&e.preventDefault()}_onkeyup(e){Cs(e)&&this._selectYearRange(e)}_onHomeOrEnd(e){this._yearRanges.forEach(t=>{if(-1!==t.findIndex(e=>{const t=Hw.fromTimestamp(1e3*parseInt(e.timestamp)).getYear(),o=this._calendarDate.getYear();return qS(t,o,o+this._getRangeSize()-1)})){const o=e?0:this._getRowSize()-1;this._setTimestamp(parseInt(t[o].timestamp))}})}_onmouseover(e){const t=e.target.closest(".ui5-yrp-item");t&&this._showRangeSelection&&1===this.selectedDates.length&&(this._secondTimestamp=this._getTimestampFromDom(t))}_setTimestamp(e){this._safelySetTimestamp(e),this.fireDecoratorEvent("navigate",{timestamp:this.timestamp})}_updateSecondTimestamp(){!this._showRangeSelection||1!==this.selectedDates.length&&2!==this.selectedDates.length||(this._secondTimestamp=this.timestamp)}_selectYearRange(e){e.preventDefault();const t=e.target;if(-1===t.className.indexOf("ui5-yrp-item"))return;let o=this._getTimestampFromDom(t);o=this._getYearPickerCenteredTimestamp(o),this._safelySetTimestamp(o),this.fireDecoratorEvent("change",{timestamp:this.timestamp})}_getYearPickerCenteredTimestamp(e){const t=this.hasSecondaryCalendarType?2:9,o=Hw.fromTimestamp(1e3*e,this._primaryCalendarType),i=o.getYear()+t;return o.setYear(i),o.valueOf()/1e3}_hasPreviousPage(){return this._gridStartYear>this._minDate.getYear()}_hasNextPage(){const e=this._getPageSize()*this._getRangeSize();return this._gridStartYear+e-1<this._maxDate.getYear()}_showPreviousPage(){const e=this._getPageSize();this._modifyTimestampBy(-e);const t=e*this._getRangeSize();this._modifyGridStartBy(-t)}_showNextPage(){const e=this._getPageSize();this._modifyTimestampBy(e);const t=e*this._getRangeSize();this._modifyGridStartBy(t)}_modifyTimestampBy(e){const t=e*this._getRangeSize();this._safelyModifyTimestampBy(t,"year"),this.fireDecoratorEvent("navigate",{timestamp:this.timestamp})}_modifyGridStartBy(e){this._gridStartYear+=e}};WS([bn({type:Array,noAttribute:!0})],jS.prototype,"selectedDates",void 0),WS([bn({type:Boolean,noAttribute:!0})],jS.prototype,"_showRangeSelection",void 0),WS([bn({type:Number})],jS.prototype,"_secondTimestamp",void 0),WS([bn({type:Array,noAttribute:!0})],jS.prototype,"_yearRanges",void 0),WS([bn({type:Boolean,noAttribute:!0})],jS.prototype,"_hidden",void 0),WS([bn({noAttribute:!0})],jS.prototype,"_currentYearRange",void 0),WS([Tn("@ui5/webcomponents")],jS,"i18nBundle",void 0),(jS=VS=WS([fn({tag:"ui5-yearrangepicker",styles:[':host(:not([hidden])){display:block}:host{width:100%;height:100%}.ui5-yrp-root{padding:2rem 0 1rem;display:flex;flex-direction:column;font-family:var(--sapFontFamily);font-size:var(--sapFontSize);justify-content:center;align-items:center}.ui5-yrp-interval-container{display:flex;justify-content:space-evenly;align-items:center;width:100%}.ui5-yrp-item{display:flex;margin:var(--_ui5_yearpicker_item_margin);width:calc(50% - .125rem);height:var(--_ui5_year_picker_item_height);color:var(--sapButton_Lite_TextColor);background-color:var(--sapButton_Lite_Background);align-items:center;justify-content:center;box-sizing:border-box;-webkit-user-select:none;-moz-user-select:none;user-select:none;cursor:pointer;outline:none;position:relative;border:var(--_ui5_yearpicker_item_border);border-radius:var(--_ui5_yearpicker_item_border_radius)}.ui5-yrp-item-secondary-type{flex-direction:column;width:calc(50% - .125rem)}.ui5-yrp-item-sec-type{font-size:var(--sapFontSmallSize);color:var(--sapTextColor)}.ui5-yrp-item-one-column-view{width:initial;padding-left:.5rem;padding-right:.5rem}.ui5-yrp-item.ui5-yrp-item--selected,.ui5-yrp-item.ui5-yrp-item--selected-between{background:var(--sapButton_Selected_Background);border:var(--_ui5_yearpicker_item_selected_border);color:var(--sapButton_Selected_TextColor)}.ui5-yrp-item.ui5-yrp-item--selected .ui5-yrp-item-sec-type,.ui5-yrp-item.ui5-yrp-item--selected-between .ui5-yrp-item-sec-type{color:var(--sapButton_Selected_TextColor)}.ui5-yrp-item:hover{background:var(--sapButton_Lite_Hover_Background);border:var(--_ui5_yearpicker_item_hover_border);color:var(--sapButton_Lite_Hover_TextColor)}.ui5-yrp-item.ui5-yrp-item--selected:hover,.ui5-yrp-item.ui5-yrp-item--selected-between:hover{background:var(--sapButton_Selected_Hover_Background);border:var(--_ui5_yearpicker_item_selected_hover_border);color:var(--sapButton_Selected_TextColor)}.ui5-yrp-item.ui5-yrp-item--selected:hover .ui5-yrp-item-sec-type,.ui5-yrp-item.ui5-yrp-item--selected-between:hover .ui5-yrp-item-sec-type{color:var(--sapButton_Selected_TextColor)}.ui5-yrp-item:active,.ui5-yrp-item.ui5-yrp-item--selected:active,.ui5-yrp-item.ui5-yrp-item--selected-between:active{background:var(--sapButton_Active_Background);border:var(--_ui5_monthpicker_item_active_border);color:var(--sapButton_Active_TextColor)}.ui5-yrp-item:active .ui5-yrp-item-sec-type,.ui5-yrp-item.ui5-yrp-item--selected:active .ui5-yrp-item-sec-type,.ui5-yrp-item.ui5-yrp-item--selected-between:active .ui5-yrp-item-sec-type{color:var(--sapButton_Active_TextColor)}.ui5-yrp-item.ui5-yrp-item--disabled{pointer-events:none;opacity:.5}.ui5-yrp-item:focus:after{content:"";position:absolute;inset:.0625rem;border:var(--_ui5_button_focused_border);border-radius:var(--_ui5_button_focused_border_radius)}\n'],template:function(){return b_("div",{class:"ui5-yrp-root",part:"year-range-picker-root",role:"grid","aria-roledescription":this.roleDescription,"aria-readonly":"false","aria-multiselectable":"false",onClick:this._selectYearRange,onMouseOver:this._onmouseover,onKeyDown:this._onkeydown,onKeyUp:this._onkeyup,children:this._yearRanges.map(e=>b_("div",{role:"row",class:"ui5-yrp-interval-container",children:e.map(e=>y_("div",{"data-sap-timestamp":e.timestamp,tabindex:e._tabIndex,"data-sap-focus-ref":e.focusRef?"true":void 0,class:e.classes,part:e.parts,role:"gridcell","aria-selected":e.ariaSelected,"aria-disabled":e.ariaDisabled,children:[b_("span",{class:"ui5-dp-yeartext",children:e.range}),e.rangeInSecType&&b_("span",{class:"ui5-yrp-item-sec-type",children:e.rangeInSecType})]}))}))})}}),yn("change",{bubbles:!0}),yn("navigate",{bubbles:!0})],jS)).define();var YS=jS;function $S(e){const t=e?.headerText,o=e?.isFirst??!0,i=e?.isLast??!0,r=e?.isMultiple??!1,a=t?.monthText??this._headerMonthButtonText,n=t?.yearText??this._headerYearButtonText,s=t?.secondMonthText??this.secondMonthButtonText,l=t?.secondYearText??this._headerYearButtonTextSecType;return y_("div",{class:r?"ui5-calheader ui5-calheader-multiple":"ui5-calheader-root",children:[GS.call(this,o,r),KS.call(this,{monthText:a||"",yearText:n||"",secondMonthText:s||"",secondYearText:l||""}),ZS.call(this,o,i,r)]})}function GS(e,t){return b_("div",!e&&t?{class:"ui5-calheader-spacer"}:{"data-ui5-cal-header-btn-prev":!0,class:{"ui5-calheader-arrowbtn":!0,"ui5-calheader-arrowbtn-disabled":this._previousButtonDisabled},part:"calendar-header-arrow-button",role:"button",onMouseDown:this.onPrevButtonClick,onKeyDown:this.onPrevButtonKeyDown,onKeyUp:this.onPrevButtonKeyUp,tabindex:this._previousButtonDisabled?-1:0,title:this.accInfo.tooltipPrevButton,"aria-label":this.accInfo.ariaLabelPrevButton,"aria-description":this.accInfo.ariaLabelPrevButton,"aria-keyshortcuts":this.accInfo.keyShortcutPrevButton,children:b_(gh,{class:"ui5-calheader-arrowicon",name:"slim-arrow-left"})})}function KS(e){return y_("div",{class:"ui5-calheader-midcontainer",children:[y_("div",{"data-ui5-cal-header-btn-month":!0,class:"ui5-calheader-arrowbtn ui5-calheader-middlebtn",part:"calendar-header-middle-button",hidden:this._isHeaderMonthButtonHidden,tabindex:0,role:"button","aria-label":this.accInfo.ariaLabelMonthButton,"aria-description":this.accInfo.ariaLabelMonthButton,title:this.accInfo.tooltipMonthButton,"aria-keyshortcuts":this.accInfo.keyShortcutMonthButton,onClick:this.onHeaderMonthButtonPress,onKeyDown:this.onMonthButtonKeyDown,onKeyUp:this.onMonthButtonKeyUp,children:[b_("span",{children:e.monthText}),this.hasSecondaryCalendarType&&e.secondMonthText&&b_("span",{class:"ui5-calheader-btn-sectext",children:e.secondMonthText})]}),y_("div",{"data-ui5-cal-header-btn-year":!0,class:"ui5-calheader-arrowbtn ui5-calheader-middlebtn",part:"calendar-header-middle-button",hidden:this._isHeaderYearButtonHidden,tabindex:0,role:"button","aria-label":this.accInfo.ariaLabelYearButton,"aria-description":this.accInfo.ariaLabelYearButton,onClick:this.onHeaderYearButtonPress,onKeyDown:this.onYearButtonKeyDown,onKeyUp:this.onYearButtonKeyUp,title:this.accInfo.tooltipYearButton,"aria-keyshortcuts":this.accInfo.keyShortcutYearButton,children:[b_("span",{children:e.yearText}),this.hasSecondaryCalendarType&&e.secondYearText&&b_("span",{class:"ui5-calheader-btn-sectext",children:e.secondYearText})]}),y_("div",{"data-ui5-cal-header-btn-year-range":!0,class:"ui5-calheader-arrowbtn ui5-calheader-middlebtn",part:"calendar-header-middle-button",hidden:this._isHeaderYearRangeButtonHidden,tabindex:0,role:"button","aria-label":this.accInfo.ariaLabelYearRangeButton,"aria-description":this.accInfo.ariaLabelYearRangeButton,title:this.accInfo.tooltipYearRangeButton,"aria-keyshortcuts":this.accInfo.keyShortcutYearRangeButton,onClick:this.onHeaderYearRangeButtonPress,onKeyDown:this.onYearRangeButtonKeyDown,onKeyUp:this.onYearRangeButtonKeyUp,children:[b_("span",{children:this._headerYearRangeButtonText}),this.hasSecondaryCalendarType&&b_("span",{class:"ui5-calheader-btn-sectext",children:this._headerYearRangeButtonTextSecType})]})]})}function ZS(e,t,o){const i=this._portraitView||this._isCompactMode,r=o&&(i?t:!t);return!o||(i?e:t)?b_("div",{"data-ui5-cal-header-btn-next":!0,class:{"ui5-calheader-arrowbtn":!0,"ui5-calheader-arrowbtn-disabled":this._nextButtonDisabled},part:"calendar-header-arrow-button",role:"button",onMouseDown:this.onNextButtonClick,onKeyDown:this.onNextButtonKeyDown,onKeyUp:this.onNextButtonKeyUp,tabindex:this._nextButtonDisabled?-1:0,title:this.accInfo.tooltipNextButton,"aria-label":this.accInfo.ariaLabelNextButton,"aria-description":this.accInfo.ariaLabelNextButton,"aria-keyshortcuts":this.accInfo.keyShortcutNextButton,children:b_(gh,{class:"ui5-calheader-arrowicon",name:"slim-arrow-right"})}):r?b_("div",{class:"ui5-calheader-spacer"}):null}function XS(){return Array.from({length:this._monthsToShow},(e,t)=>{const o=this._getMonthTimestamp(t),i=0===t,r=t===this._monthsToShow-1;return b_("div",{class:"ui5-cal-month-header-container",children:$S.call(this,{headerText:this._getHeaderTextForMonth(o),isFirst:i,isLast:r,isMultiple:!0})},`calendar-month-header-${t}`)})}function JS(e){return Array.from({length:this._monthsToShow},(t,o)=>{const i=this._getMonthTimestamp(o),r=0===o,a=o===this._monthsToShow-1;return y_("div",{class:"ui5-cal-month-container",children:[e&&$S.call(this,{headerText:this._getHeaderTextForMonth(i),isFirst:r,isLast:a,isMultiple:!0}),b_("div",{class:"ui5-cal-daypicker-wrapper",children:b_(PS,{id:`${this._id}-daypicker-${o}`,hidden:this._isDayPickerHidden,formatPattern:this._formatPattern,selectedDates:this._selectedDatesTimestamps,specialCalendarDates:this._specialCalendarDates,disabledDates:this._disabledDates,_hidden:this._isDayPickerHidden,primaryCalendarType:this._primaryCalendarType,secondaryCalendarType:this._secondaryCalendarType,selectionMode:this.selectionMode,minDate:this.minDate,maxDate:this.maxDate,calendarWeekNumbering:this.calendarWeekNumbering,timestamp:i,hideWeekNumbers:this.hideWeekNumbers,onChange:this.onSelectedDatesChange,onNavigate:this.onNavigate,exportparts:"day-cell, day-cell-selected, day-cell-selected-between",inert:this._inert})})]},`calendar-month-picker-${o}`)})}function QS(){return b_(RS,{id:`${this._id}-MP`,hidden:this._isMonthPickerHidden,formatPattern:this._formatPattern,selectedDates:this._selectedDatesTimestamps,_hidden:this._isMonthPickerHidden,primaryCalendarType:this._primaryCalendarType,secondaryCalendarType:this._secondaryCalendarType,selectionMode:this.selectionMode,minDate:this.minDate,maxDate:this.maxDate,timestamp:this._timestamp,onChange:this.onSelectedMonthChange,onNavigate:this.onNavigate,exportparts:"month-cell, month-cell-selected, month-cell-selected-between, month-picker-root"})}function eT(){return b_(US,{id:`${this._id}-YP`,hidden:this._isYearPickerHidden,formatPattern:this._formatPattern,selectedDates:this._selectedDatesTimestamps,_hidden:this._isYearPickerHidden,primaryCalendarType:this._primaryCalendarType,secondaryCalendarType:this._secondaryCalendarType,selectionMode:this.selectionMode,minDate:this.minDate,maxDate:this.maxDate,timestamp:this._timestamp,_currentYearRange:this._currentYearRange,onChange:this.onSelectedYearChange,onNavigate:this.onNavigate,exportparts:"year-cell, year-cell-selected, year-cell-selected-between, year-picker-root"})}function tT(){return b_(YS,{id:`${this._id}-YRP`,hidden:this._isYearRangePickerHidden,formatPattern:this._formatPattern,selectedDates:this._selectedDatesTimestamps,_showRangeSelection:this.selectionMode===fS.Range,_hidden:this._isYearRangePickerHidden,primaryCalendarType:this._primaryCalendarType,secondaryCalendarType:this._secondaryCalendarType,minDate:this.minDate,maxDate:this.maxDate,timestamp:this._timestamp,_currentYearRange:this._currentYearRange,onChange:this.onSelectedYearRangeChange,onNavigate:this.onNavigate,exportparts:"year-range-cell, year-range-cell-selected, year-range-cell-selected-between, year-range-picker-root"})}C_(),xh(),C_(),Ca(),Ch(),wh(),St("@ui5/webcomponents-theming","sap_horizon",async()=>ch),St("@ui5/webcomponents","sap_horizon",async()=>_h,"host");Ca(),Ch(),wh(),St("@ui5/webcomponents-theming","sap_horizon",async()=>ch),St("@ui5/webcomponents","sap_horizon",async()=>_h,"host");wn(),xn(),kn(),Wn(),qn(),ba(),tc(),en(),Pa(),yp(),yh();var oT,iT=function(e,t,o,i){var r,a=arguments.length,n=a<3?t:null===i?i=Object.getOwnPropertyDescriptor(t,o):i;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)n=Reflect.decorate(e,t,o,i);else for(var s=e.length-1;s>=0;s--)(r=e[s])&&(n=(a<3?r(n):a>3?r(t,o,n):r(t,o))||n);return a>3&&n&&Object.defineProperty(t,o,n),n},rT=oT=class extends vS{constructor(){super(),this.selectionMode="Single",this.hideWeekNumbers=!1,this._showTwoMonths=!1,this._currentPicker="day",this._previousButtonDisabled=!1,this._nextButtonDisabled=!1,this._pickersMode="DAY_MONTH_YEAR",this._valueIsProcessed=!1,this._selectedItemType="None",this._phoneMode=!1,this._valueIsProcessed=!1,this._handleResizeBound=this._handleResize.bind(this)}onEnterDOM(){dp.register(document.body,this._handleResizeBound),this._handleResize()}get _phoneView(){return Ao()||this._phoneMode}get _portraitView(){return this._phoneMode}_handleResize(){if(!this._showTwoMonths)return;const e=document.body.offsetWidth<=640;(e&&!this._phoneMode||!e&&this._phoneMode)&&(this._phoneMode=e)}onExitDOM(){dp.deregister(document.body,this._handleResizeBound)}_getMonthTimestamp(e){return 0===e?this._timestamp:jw(Hw.fromTimestamp(1e3*this._timestamp,this._primaryCalendarType),e,"month",!1).valueOf()/1e3}_getHeaderTextForMonth(e){const t=Hw.fromTimestamp(1e3*e,this._primaryCalendarType),o=uw(rr()),i=bk.getDateInstance({format:"y",calendarType:this._primaryCalendarType}),r=o.getMonthsStandAlone("wide",this._primaryCalendarType)[t.getMonth()],a=t.toLocalJSDate(),n={monthText:r,yearText:String(i.format(a,!0))};if(this.hasSecondaryCalendarType){const t=rS(this._primaryCalendarType,this._secondaryCalendarType,e,!0),o=t.firstDate||t.lastDate;n.secondMonthText=uw(rr()).getMonthsStandAlone("wide",this._secondaryCalendarType)[o.getMonth()];const i=bk.getDateInstance({format:"y",calendarType:this._secondaryCalendarType});n.secondYearText=String(i.format(o.toLocalJSDate(),!0))}return n}get _selectedDatesTimestamps(){let e=[];if(this.selectionMode===fS.Range){const t=this.dates.find(e=>e.hasAttribute("ui5-date-range")),o=t&&t.startValue&&this.getFormat().parse(t.startValue,!0),i=t&&t.endValue&&this.getFormat().parse(t.endValue,!0);o&&e.push(o.getTime()/1e3),i&&e.push(i.getTime()/1e3)}else e=this.dates.filter(e=>e.hasAttribute("ui5-date")&&e.value&&this._isValidCalendarDate(e.value)&&this._getTimeStampFromString(e.value)).map(e=>Number(this._getTimeStampFromString(e.value))/1e3);return e}_setSelectedDates(e){const t=e.map(e=>this.getFormat().format(Sw.getInstance(1e3*e),!0));if(this.selectionMode===fS.Range){if(t.length){let e=this.dates.find(e=>e.hasAttribute("ui5-date-range")&&e.startValue===t[0]);e?e.endValue=t[1]:(e=document.createElement(dS.getMetadata().getTag()),e.startValue=t[0],this.appendChild(e)),this.dates.filter(t=>t.hasAttribute("ui5-date")||e&&t.startValue!==e.startValue).forEach(e=>{this.removeChild(e)})}}else{const e=this._selectedDatesTimestamps.map(e=>this.getFormat().format(Sw.getInstance(1e3*e)));this.dates.filter(e=>e.hasAttribute("ui5-date-range")||e.hasAttribute("ui5-date")&&!t.includes(e.value)).forEach(e=>{this.removeChild(e)}),t.filter(t=>!e.includes(t)).forEach(e=>{const t=document.createElement(lS.getMetadata().getTag());t.value=e,this.appendChild(t)})}}_isValidCalendarDate(e){return!!this.getFormat().parse(e)}get _disabledDates(){return this.disabledDates.filter(e=>{const t=e.startValue,o=e.endValue;return t&&this._isValidCalendarDate(t)||o&&this._isValidCalendarDate(o)}).map(e=>({startValue:e.startValue,endValue:e.endValue}))}get _specialCalendarDates(){const e=this._specialDates.some(e=>e.type===this._selectedItemType),t=this._specialDates.filter(t=>{const o=t.type,i=t.value;return(!e||(o===this._selectedItemType||"Working"===o||"NonWorking"===o))&&i&&this._isValidCalendarDate(i)});t.forEach(e=>{e._tooltip=(this.calendarLegend.length?this.calendarLegend[0].items.find(t=>t.type===e.type):void 0)?.text||""});const o=new Set,i=[];return t.forEach(e=>{const t=this.getFormat().parse(e.value),r=t.getTime();if(!o.has(r)){o.add(r);const a=Hw.fromLocalJSDate(t).valueOf()/1e3,n=e.type,s=e._tooltip;i.push({specialDateTimestamp:a,type:n,tooltip:s})}}),i}_onCalendarLegendSelectionChange(e){this._selectedItemType=e.detail.item.type,["Working","NonWorking","Selected","Today"].includes(this._selectedItemType)&&(this._selectedItemType="None")}_normalizeCurrentPicker(){"day"===this._currentPicker&&this._pickersMode!==wk.DAY_MONTH_YEAR&&this.switchToMonthPicker(!0),"month"===this._currentPicker&&this._pickersMode===wk.YEAR&&this.switchToYearPicker(!0)}onBeforeRendering(){this._normalizeCurrentPicker(),this._valueIsProcessed||(this._selectedDatesTimestamps.length&&(this.timestamp=this._selectedDatesTimestamps[0]),this._valueIsProcessed=!0)}async onAfterRendering(){await ht(),this._previousButtonDisabled=!this._currentPickerDOM._hasPreviousPage(),this._nextButtonDisabled=!this._currentPickerDOM._hasNextPage();const e=bk.getDateInstance({format:"y",calendarType:this.primaryCalendarType}),t=uw(rr());this._headerMonthButtonText=t.getMonthsStandAlone("wide",this.primaryCalendarType)[this._calendarDate.getMonth()],this._headerYearButtonText=String(e.format(this._localDate,!0));const o=this._currentYearRange,{rangeStartText:i,rangeEndText:r}=this._formatYearRangeText(o);this._headerYearRangeButtonText=`${i} - ${r}`,this._secondaryCalendarType&&this._setSecondaryCalendarTypeButtonText()}onInvalidation(e){"childchange"===e.reason&&(this._valueIsProcessed=!1)}onHeaderMonthButtonPress(){this.switchToMonthPicker(),this.fireDecoratorEvent("show-month-view")}async switchToDayPicker(e=!1){this._currentPicker="day",e||(await ht(),this._currentPickerDOM.focus())}async switchToMonthPicker(e=!1){this._currentPicker="month",e||(await ht(),this._currentPickerDOM.focus())}onHeaderYearButtonPress(){this.switchToYearPicker(),this.fireDecoratorEvent("show-year-view")}async switchToYearPicker(e=!1){this._currentPicker="year",e||(await ht(),this._currentPickerDOM.focus())}onHeaderYearRangeButtonPress(){this.switchToYearRangePicker(),this.fireDecoratorEvent("show-year-range-view")}async switchToYearRangePicker(e=!1){this._currentPicker="yearrange",e||(await ht(),this._currentPickerDOM.focus())}get _currentPickerDOM(){return this.shadowRoot.querySelector(`[ui5-${this._currentPicker}picker]`)}getFocusDomRef(){return this._currentPickerDOM}onHeaderPreviousPress(){this._currentPickerDOM._showPreviousPage()}onHeaderNextPress(){this._currentPickerDOM._showNextPage()}_setSecondaryCalendarTypeButtonText(){const e=bk.getDateInstance({format:"y",calendarType:this._secondaryCalendarType});this._headerYearButtonTextSecType=String(e.format(this._localDate,!0));const t=this._currentYearRange,{rangeStart:o,rangeEnd:i}=this._createYearRangeDates(t),r=rS(this._primaryCalendarType,this._secondaryCalendarType,o.valueOf()/1e3,!0).firstDate,a=rS(this._primaryCalendarType,this._secondaryCalendarType,i.valueOf()/1e3,!0).lastDate;this._headerYearRangeButtonTextSecType=`${e.format(r.toLocalJSDate())} - ${e.format(a.toLocalJSDate())}`}get secondaryCalendarTypeButtonText(){if(!this.hasSecondaryCalendarType)return;const e=Sw.getInstance(1e3*this._timestamp),t=bk.getDateInstance({format:"y",calendarType:this._secondaryCalendarType}),o=rS(this._primaryCalendarType,this._secondaryCalendarType,this._timestamp),i=aS(o.firstDate.getMonth(),o.lastDate.getMonth(),this._secondaryCalendarType);return{yearButtonText:t.format(e),monthButtonText:i.text,monthButtonInfo:i.textInfo}}get _isCompactMode(){return"compact"===(e=>getComputedStyle(e).getPropertyValue("--_ui5_content_density"))(this)}get _monthsToShow(){return this._showTwoMonths&&!Ao()?2:1}get _isHeaderMonthButtonHidden(){return this._showTwoMonths?"yearrange"===this._currentPicker||"year"===this._currentPicker:"day"!==this._currentPicker}get _isHeaderYearRangeButtonHidden(){return"year"!==this._currentPicker}get _isHeaderYearButtonHidden(){return!("day"===this._currentPicker||"month"===this._currentPicker)}get _isDayPickerHidden(){return!this._showTwoMonths&&"day"!==this._currentPicker}get _isMonthPickerHidden(){return"month"!==this._currentPicker}get _isYearPickerHidden(){return"year"!==this._currentPicker}get _isYearRangePickerHidden(){return"yearrange"!==this._currentPicker}get _isDefaultHeaderModeInMultipleMonths(){return!this._isDayPickerHidden&&this._isYearPickerHidden}get _shouldShowOnePickerHeaderButtonInMultipleMonths(){return!this._isDayPickerHidden&&!this._isYearPickerHidden}get _inert(){return this._showTwoMonths&&(!this._isMonthPickerHidden||!this._isYearPickerHidden||!this._isYearRangePickerHidden)}get _currentYearRange(){const e=this.hasSecondaryCalendarType?8:20,t=this.hasSecondaryCalendarType?2:9,o=this._calendarDate.getYear();this._rangeStartYear||(this._rangeStartYear=o-t),this._rangeStartYear+=Math.floor((o-this._rangeStartYear)/e)*e;const i=this._minDate.getYear();o-e<i&&(this._rangeStartYear=i);const r=xk(this._primaryCalendarType).getYear();return o+e>r&&(this._rangeStartYear=r-e+1),{startYear:this._rangeStartYear,endYear:this._rangeStartYear+e-1}}_fireEventAndUpdateSelectedDates(e){const t=e.map(e=>{const t=Hw.fromTimestamp(1e3*e,this._primaryCalendarType);return this.getFormat().format(t.toUTCJSDate(),!0)});this.fireDecoratorEvent("selection-change",{timestamp:this.timestamp,selectedDates:[...e],selectedValues:t})&&this._setSelectedDates(e)}onSelectedDatesChange(e){this.timestamp=e.detail.timestamp,this._fireEventAndUpdateSelectedDates(e.detail.dates)}onSelectedMonthChange(e){this.timestamp=e.detail.timestamp,this._pickersMode===wk.DAY_MONTH_YEAR?this.switchToDayPicker():this._fireEventAndUpdateSelectedDates(e.detail.dates)}onSelectedYearChange(e){this.timestamp=e.detail.timestamp,this._pickersMode===wk.DAY_MONTH_YEAR?this.switchToDayPicker():this._pickersMode===wk.MONTH_YEAR?this.switchToMonthPicker():this._fireEventAndUpdateSelectedDates(e.detail.dates)}onSelectedYearRangeChange(e){this.timestamp=e.detail.timestamp,this.switchToYearPicker()}async onNavigate(e){this.timestamp=e.detail.timestamp,await ht(),this._currentPickerDOM.focus()}_onkeydown(e){Js(e)&&"month"!==this._currentPicker&&(this.switchToMonthPicker(),this.fireDecoratorEvent("show-month-view")),Qs(e)&&("year"!==this._currentPicker?(this.switchToYearPicker(),this.fireDecoratorEvent("show-year-view")):(this.switchToYearRangePicker(),this.fireDecoratorEvent("show-year-range-view")))}_onLegendFocusOut(){this._selectedItemType="None"}get _specialDates(){return this.getSlottedNodes("specialDates")}get classes(){return{prevButton:{"ui5-calheader-arrowbtn":!0,"ui5-calheader-arrowbtn-disabled":this._previousButtonDisabled},nextButton:{"ui5-calheader-arrowbtn":!0,"ui5-calheader-arrowbtn-disabled":this._nextButtonDisabled}}}get accInfo(){const e=this._currentYearRange,{rangeStartText:t,rangeEndText:o}=this._formatYearRangeText(e),i=this.hasSecondaryCalendarType?`${this._headerMonthButtonText}, ${this.secondMonthButtonText}`:`${this._headerMonthButtonText}`,r=oT.i18nBundle?.getText(Bu,i),a=oT.i18nBundle?.getText(Iu,this._headerYearButtonText),n=oT.i18nBundle?.getText(Du,t,o);let s=oT.i18nBundle?.getText(Eu),l=oT.i18nBundle?.getText(Ou);"month"===this._currentPicker?(s=oT.i18nBundle?.getText(zu),l=oT.i18nBundle?.getText(Lu)):"year"!==this._currentPicker&&"yearrange"!==this._currentPicker||(s=oT.i18nBundle?.getText(Fu),l=oT.i18nBundle?.getText(Nu));const c=oT.i18nBundle?.getText(Au),_=oT.i18nBundle?.getText(Pu),d=oT.i18nBundle?.getText(Mu),u=oT.i18nBundle?.getText(Ru),h=oT.i18nBundle?.getText(Hu);return{ariaLabelMonthButton:r,ariaLabelYearButton:a,ariaLabelYearRangeButton:n,ariaLabelNextButton:s,ariaLabelPrevButton:l,keyShortcutMonthButton:c,keyShortcutYearButton:_,keyShortcutYearRangeButton:d,keyShortcutNextButton:u,keyShortcutPrevButton:h,tooltipMonthButton:`${r} (${c})`,tooltipYearButton:`${a} (${_})`,tooltipYearRangeButton:`${n} (${d})`,tooltipNextButton:`${s} (${u})`,tooltipPrevButton:`${l} (${h})`}}_createYearRangeDates(e,t=this._primaryCalendarType){const o=new Hw(this._calendarDate,t),i=new Hw(this._calendarDate,t);return o.setYear(e.startYear),i.setYear(e.endYear),{rangeStart:o,rangeEnd:i}}_formatYearRangeText(e){const t=bk.getDateInstance({format:"y",calendarType:this.primaryCalendarType}),{rangeStart:o,rangeEnd:i}=this._createYearRangeDates(e,this.primaryCalendarType);return{rangeStartText:t.format(o.toLocalJSDate()),rangeEndText:t.format(i.toLocalJSDate())}}get secondMonthButtonText(){return this.secondaryCalendarTypeButtonText?.monthButtonText}onMonthButtonKeyDown(e){Cs(e)&&e.preventDefault(),fs(e)&&(this.switchToMonthPicker(),this.fireDecoratorEvent("show-month-view"))}onMonthButtonKeyUp(e){Cs(e)&&(e.preventDefault(),this.switchToMonthPicker(),this.fireDecoratorEvent("show-month-view"))}onYearButtonKeyDown(e){Cs(e)&&e.preventDefault(),fs(e)&&(this.switchToYearPicker(),this.fireDecoratorEvent("show-year-view"))}onYearButtonKeyUp(e){Cs(e)&&(e.preventDefault(),this.switchToYearPicker(),this.fireDecoratorEvent("show-year-view"))}onYearRangeButtonKeyDown(e){Cs(e)&&e.preventDefault(),fs(e)&&(this.switchToYearRangePicker(),this.fireDecoratorEvent("show-year-range-view"))}onYearRangeButtonKeyUp(e){Cs(e)&&(e.preventDefault(),this.switchToYearRangePicker(),this.fireDecoratorEvent("show-year-range-view"))}_handleNavigationButtonClick(e,t,o){t?e.preventDefault():0===e.button&&(o(),e.preventDefault())}_handlePrevNextButtonKeyDown(e,t,o){t?e.preventDefault():(Cs(e)&&e.preventDefault(),fs(e)&&(o(),e.preventDefault()))}_handlePrevNextButtonKeyUp(e,t,o){t?e.preventDefault():Cs(e)&&(e.preventDefault(),o())}onPrevButtonClick(e){this._handleNavigationButtonClick(e,this._previousButtonDisabled,()=>this.onHeaderPreviousPress())}onNextButtonClick(e){this._handleNavigationButtonClick(e,this._nextButtonDisabled,()=>this.onHeaderNextPress())}onPrevButtonKeyDown(e){this._handlePrevNextButtonKeyDown(e,this._previousButtonDisabled,()=>this.onHeaderPreviousPress())}onPrevButtonKeyUp(e){this._handlePrevNextButtonKeyUp(e,this._previousButtonDisabled,()=>this.onHeaderPreviousPress())}onNextButtonKeyDown(e){this._handlePrevNextButtonKeyDown(e,this._nextButtonDisabled,()=>this.onHeaderNextPress())}onNextButtonKeyUp(e){this._handlePrevNextButtonKeyUp(e,this._nextButtonDisabled,()=>this.onHeaderNextPress())}get selectedDates(){return this._selectedDatesTimestamps}set selectedDates(e){this._setSelectedDates(e)}};iT([bn()],rT.prototype,"selectionMode",void 0),iT([bn({type:Boolean})],rT.prototype,"hideWeekNumbers",void 0),iT([bn({type:Boolean})],rT.prototype,"_showTwoMonths",void 0),iT([bn()],rT.prototype,"_currentPicker",void 0),iT([bn({type:Boolean})],rT.prototype,"_previousButtonDisabled",void 0),iT([bn({type:Boolean})],rT.prototype,"_nextButtonDisabled",void 0),iT([bn()],rT.prototype,"_headerMonthButtonText",void 0),iT([bn()],rT.prototype,"_headerYearButtonText",void 0),iT([bn()],rT.prototype,"_headerYearButtonTextSecType",void 0),iT([bn()],rT.prototype,"_headerYearRangeButtonText",void 0),iT([bn()],rT.prototype,"_headerYearRangeButtonTextSecType",void 0),iT([bn({noAttribute:!0})],rT.prototype,"_pickersMode",void 0),iT([Sn({type:HTMLElement,invalidateOnChildChange:!0})],rT.prototype,"calendarLegend",void 0),iT([Sn({type:HTMLElement,invalidateOnChildChange:!0,default:!0})],rT.prototype,"dates",void 0),iT([Sn({type:HTMLElement,invalidateOnChildChange:!0})],rT.prototype,"specialDates",void 0),iT([Sn({type:HTMLElement,invalidateOnChildChange:!0})],rT.prototype,"disabledDates",void 0),iT([bn()],rT.prototype,"_selectedItemType",void 0),iT([bn({type:Boolean,noAttribute:!0})],rT.prototype,"_phoneMode",void 0),iT([Tn("@ui5/webcomponents")],rT,"i18nBundle",void 0),(rT=oT=iT([fn({tag:"ui5-calendar",fastNavigation:!0,template:function(){const e=this._monthsToShow>1&&!this._isDayPickerHidden,t=this._isDefaultHeaderModeInMultipleMonths&&!this._portraitView&&!this._isCompactMode,o=this._isDefaultHeaderModeInMultipleMonths&&(this._portraitView||this._isCompactMode);return y_(f_,{children:[y_("div",{class:{"ui5-cal-root":!0,"ui5-dt-cal--mobile":this._phoneView,"ui5-dt-cal--portrait":this._portraitView,"ui5-dt-cal--multiple":e},onKeyDown:this._onkeydown,children:[!e&&b_("div",{class:"ui5-calheader",exportparts:"calendar-header-arrow-button, calendar-header-middle-button",children:$S.call(this)}),b_("div",{id:`${this._id}-content`,class:{"ui5-cal-content":!0,"ui5-cal-content-multiple":e},children:y_(f_,e?{children:[this._shouldShowOnePickerHeaderButtonInMultipleMonths&&b_("div",{class:"ui5-calheader ui5-calheader-multiple ui5-calheader-default-multiple",exportparts:"calendar-header-arrow-button, calendar-header-middle-button",children:$S.call(this)}),b_("div",{class:"ui5-cal-daypicker-overlay"}),t&&b_("div",{class:"ui5-cal-multiple-months-header-wrapper",children:XS.call(this)}),b_("div",{class:"ui5-cal-multiple-months-wrapper",children:JS.call(this,o)})]}:{children:[b_(PS,{id:`${this._id}-daypicker`,hidden:this._isDayPickerHidden,formatPattern:this._formatPattern,selectedDates:this._selectedDatesTimestamps,specialCalendarDates:this._specialCalendarDates,disabledDates:this._disabledDates,_hidden:this._isDayPickerHidden,primaryCalendarType:this._primaryCalendarType,secondaryCalendarType:this._secondaryCalendarType,selectionMode:this.selectionMode,minDate:this.minDate,maxDate:this.maxDate,calendarWeekNumbering:this.calendarWeekNumbering,timestamp:this._timestamp,hideWeekNumbers:this.hideWeekNumbers,onChange:this.onSelectedDatesChange,onNavigate:this.onNavigate,exportparts:"day-cell, day-cell-selected, day-cell-selected-between"}),QS.call(this),eT.call(this),tT.call(this)]})}),e&&y_("div",{class:{"ui5-cal-overlay-container":!0,"ui5-cal-overlay-hidden":this._isMonthPickerHidden&&this._isYearPickerHidden&&this._isYearRangePickerHidden},children:[QS.call(this),eT.call(this),tT.call(this)]})]}),b_("div",{"onui5-calendar-legend-selection-change":this._onCalendarLegendSelectionChange,"onui5-calendar-legend-focus-out":this._onLegendFocusOut,children:b_("slot",{name:"calendarLegend"})})]})},styles:[":host(:not([hidden])){display:inline-block}.ui5-cal-root .ui5-calheader{display:block;height:var(--_ui5_calendar_header_height);font-family:var(--_ui5_button_fontFamily)}.ui5-cal-root{background:var(--sapList_Background);box-sizing:border-box;height:var(--_ui5_calendar_height);width:var(--_ui5_calendar_width);padding:var(--_ui5_calendar_top_bottom_padding) var(--_ui5_calendar_left_right_padding) 0;display:flex;flex-direction:column;overflow:hidden;position:relative}.ui5-dt-cal--multiple.ui5-cal-root{width:var(--_ui5_calendar_multiple_width);height:var(--_ui5_calendar_multiple_months_height)}.ui5-dt-cal--portrait.ui5-dt-cal--multiple{height:calc(2 * var(--_ui5_calendar_height))}.ui5-cal-root .ui5-cal-content{padding:0 var(--_ui5_calendar_left_right_padding) var(--_ui5_calendar_top_bottom_padding)}.ui5-cal-root .ui5-cal-content-multiple{display:flex;flex-direction:column;gap:0;flex-wrap:nowrap;overflow:visible}.ui5-cal-multiple-months-wrapper,.ui5-cal-multiple-months-header-wrapper{display:flex;gap:var(--_ui5_calendar_multiple_gap);flex-wrap:nowrap;flex-direction:var(--_ui5_calendar_multiple_layout)}.ui5-cal-multiple-months-header-wrapper{width:100%}.ui5-cal-month-container,.ui5-cal-month-header-container{display:flex;flex-direction:column;flex:1}.ui5-cal-root .ui5-calheader.ui5-calheader-multiple{display:flex;justify-content:space-between;align-items:center;height:var(--_ui5_calendar_header_height);padding:var(--_ui5_calendar_header_padding);box-sizing:border-box}.ui5-calheader-multiple .ui5-calheader-midcontainer{display:flex;gap:var(--_ui5_calendar_header_midcontainer_gap);flex:1;justify-content:center;padding:0;height:100%}.ui5-calheader-multiple .ui5-calheader-arrowbtn{flex-shrink:var(--_ui5_calendar_header_arrow_button_flex_shrink);height:100%}.ui5-calheader-spacer{width:var(--_ui5_calendar_header_arrow_button_width);flex-shrink:0}.ui5-cal-daypicker-wrapper{position:relative}.ui5-cal-daypicker-overlay{background-color:var(--sapBlockLayer_Background);opacity:var(--sapBlockLayer_Opacity);top:calc(var(--_ui5_calendar_header_height) + var(--_ui5_calendar_top_bottom_padding));left:0;right:0;bottom:0;position:absolute;outline:0 none;z-index:11;pointer-events:all;display:none}.ui5-cal-content-multiple:has(~.ui5-cal-overlay-container:not(.ui5-cal-overlay-hidden)) .ui5-cal-daypicker-overlay{display:block}.ui5-cal-overlay-container{position:absolute;width:var(--_ui5_calendar_overlay_width);left:50%;top:var(--_ui5_calendar_overlay_top);transform:translate(-50%,-50%);display:flex;align-items:center;justify-content:center;z-index:13;pointer-events:all;background:var(--sapGroup_ContentBackground);border-radius:var(--_ui5_popup_border_radius);min-height:2rem;box-sizing:border-box}.ui5-cal-overlay-container [ui5-monthpicker]::part(month-picker-root),.ui5-cal-overlay-container [ui5-yearpicker]::part(year-picker-root),.ui5-cal-overlay-container [ui5-yearrangepicker]::part(year-range-picker-root){padding:.5rem}.ui5-cal-overlay-hidden{display:none}.ui5-calheader-default-multiple,.ui5-calheader-default-multiple .ui5-calheader-root{width:100%}.ui5-calheader-multiple .ui5-calheader-middlebtn{flex:none}.ui5-cal-root.ui5-dt-cal--portrait .ui5-cal-content-multiple{gap:0}.ui5-cal-root.ui5-dt-cal--portrait .ui5-cal-multiple-months-wrapper{flex-direction:column;gap:var(--_ui5_calendar_multiple_gap)}.ui5-dt-cal--portrait.ui5-cal-root:has(.ui5-cal-content-multiple){width:var(--_ui5_calendar_width)}.ui5-dt-cal--portrait .ui5-cal-content-multiple>*{width:100%;min-width:auto;max-width:100%}.ui5-dt-cal--portrait .ui5-cal-overlay-container{width:100%}\n",':host{display:block;width:100%;height:100%}.ui5-calheader-root{display:flex;height:100%;padding:var(--_ui5_calendar_header_padding);box-sizing:border-box}.ui5-calheader-arrowbtn{display:flex;justify-content:center;align-items:center;width:var(--_ui5_calendar_header_arrow_button_width);background-color:var(--sapButton_Lite_Background);color:var(--sapButton_Lite_TextColor);cursor:pointer;overflow:hidden;white-space:nowrap;padding:0;font-size:var(--sapFontSize);user-select:none;position:relative;box-sizing:border-box}.ui5-calheader-arrowbtn.ui5-calheader-arrowbtn-disabled:hover,.ui5-calheader-arrowbtn.ui5-calheader-arrowbtn-disabled:active,.ui5-calheader-arrowbtn.ui5-calheader-arrowbtn-disabled:focus,.ui5-calheader-arrowbtn.ui5-calheader-arrowbtn-disabled{opacity:.4;cursor:default;outline:none;background-color:var(--sapButton_Lite_Background);color:var(--sapButton_Lite_TextColor)}[hidden].ui5-calheader-arrowbtn.ui5-calheader-middlebtn{display:none}.ui5-calheader-arrowbtn:hover{background-color:var(--sapButton_Hover_Background);color:var(--sapButton_Lite_TextColor);box-shadow:var(--_ui5_calendar_header_arrow_button_box_shadow)}.ui5-calheader-arrowbtn:active{background-color:var(--sapButton_Active_Background);color:var(--sapButton_Active_TextColor)}.ui5-calheader-arrowbtn,.ui5-calheader-middlebtn{border:var(--_ui5_calendar_header_arrow_button_border);border-radius:var(--_ui5_calendar_header_arrow_button_border_radius);display:flex;background-color:var(--sapButton_Lite_Background);border-color:var(--sapButton_Lite_BorderColor)}.ui5-calheader-middlebtn{flex-direction:column;align-items:center;justify-content:center}.ui5-calheader-arrowbtn:not(:active) .ui5-calheader-btn-sectext{color:var(--sapContent_LabelColor);font-size:var(--sapFontSmallSize)}.ui5-calheader-arrowicon{color:currentColor;pointer-events:none}.ui5-calheader-midcontainer{display:flex;justify-content:space-around;flex:1 1 auto;padding:0 .5rem}.ui5-calheader-midcontainer .ui5-calheader-middlebtn:first-child{margin-inline-end:.5rem}.ui5-calheader-middlebtn{font-family:var(--_ui5_button_fontFamily);width:var(--_ui5_calendar_header_middle_button_width);flex:var(--_ui5_calendar_header_middle_button_flex);position:relative;box-sizing:border-box;-webkit-user-select:none;-moz-user-select:none;user-select:none}.ui5-calheader-middlebtn:focus,.ui5-calheader-arrowbtn:focus{border:var(--_ui5_calendar_header_middle_button_focus_border);border-radius:var(--_ui5_calendar_header_middle_button_focus_border_radius);outline:var(--_ui5_calendar_header_middle_button_focus_outline);outline-offset:-.125rem;background:var(--_ui5_calendar_header_middle_button_focus_background)}.ui5-calheader-middlebtn:focus:active,.ui5-calheader-arrowbtn:focus:active{outline:var(--_ui5_calendar_header_middle_button_focus_active_outline);outline-offset:-.0625rem;background:var(--_ui5_calendar_header_middle_button_focus_active_background)}.ui5-calheader-middlebtn:focus:after,.ui5-calheader-arrowbtn:focus:after{content:"";display:var(--_ui5_calendar_header_middle_button_focus_after_display);width:var(--_ui5_calendar_header_middle_button_focus_after_width);height:var(--_ui5_calendar_header_middle_button_focus_after_height);border:var(--_ui5_calendar_header_middle_button_focus_after_border);position:absolute;top:var(--_ui5_calendar_header_middle_button_focus_after_top_offset);left:var(--_ui5_calendar_header_middle_button_focus_after_left_offset)}.ui5-calheader-middlebtn:focus:active:after,.ui5-calheader-arrowbtn:focus:active:after{border-color:var(--sapContent_ContrastFocusColor)}\n']}),yn("selection-change",{bubbles:!0,cancelable:!0}),yn("show-month-view",{bubbles:!0}),yn("show-year-view",{bubbles:!0}),yn("show-year-range-view",{bubbles:!0})],rT)).define();var aT=rT;function nT(e){const t=e?.header||sT,o=e?.content||lT,i=e?.footer||uT,r=e?.initialFocus;return y_(Ib,{id:`${this._id}-responsive-popover`,class:"ui5-date-picker-popover ui5-popover-with-value-state-header-phone",opener:this,open:this.open,allowTargetOverlap:!0,placement:"Bottom",horizontalAlign:"Start",accessibleName:this.pickerAccessibleName,hideArrow:!0,_hideHeader:this._shouldHideHeader,initialFocus:r,onKeyDown:this._onkeydown,onClose:this.onResponsivePopoverAfterClose,onOpen:this.onResponsivePopoverAfterOpen,onBeforeOpen:this.onResponsivePopoverBeforeOpen,children:[this.showHeader&&t.call(this),_T.call(this),o.call(this),this.showFooter&&i.call(this)]})}function sT(){return b_("div",{slot:"header",class:"ui5-responsive-popover-header",children:b_("div",{class:"row",children:b_("span",{children:this._headerTitleText})})})}function lT(){return b_(aT,{id:`${this._id}-calendar`,primaryCalendarType:this._primaryCalendarType,secondaryCalendarType:this.secondaryCalendarType,formatPattern:this._formatPattern,selectionMode:this._calendarSelectionMode,minDate:this.minDate,maxDate:this.maxDate,calendarWeekNumbering:this.calendarWeekNumbering,onSelectionChange:this.onSelectedDatesChange,onShowMonthView:this.onHeaderShowMonthPress,onShowYearView:this.onHeaderShowYearPress,hideWeekNumbers:this.hideWeekNumbers,_currentPicker:this._calendarCurrentPicker,_pickersMode:this._calendarPickersMode,children:this._calendarSelectedDates.map(e=>b_(lS,{value:e}))})}function cT(){return this.shouldDisplayDefaultValueStateMessage?this.valueStateDefaultText:b_("slot",{name:"valueStateMessage"})}function _T(){if(this.hasValueStateText)return y_("div",{slot:Ao()?void 0:"header",class:{"ui5-popover-header":!0,"ui5-valuestatemessage-header":!0,"ui5-valuestatemessage-root":!0,"ui5-valuestatemessage--success":this.valueState===pv.Positive,"ui5-valuestatemessage--error":this.valueState===pv.Negative,"ui5-valuestatemessage--warning":this.valueState===pv.Critical,"ui5-valuestatemessage--information":this.valueState===pv.Information},children:[b_(gh,{class:"ui5-input-value-state-message-icon",name:dT.call(this)}),cT.call(this)]})}function dT(){const e={Negative:nf,Critical:sf,Positive:lf,Information:cf};return this.valueState!==pv.None?e[this.valueState]:""}function uT(){return b_("div",{slot:"footer",class:{"ui5-dt-picker-footer":!0,"ui5-dt-picker-footer-time-hidden":Ao()},children:b_(tp,{id:"cancel",class:"ui5-dt-picker-action",design:"Transparent",onClick:this._togglePicker,children:this.btnCancelLabel})})}C_(),gp(),xh(),Hb(),Pa(),Ev(),vf(),yf(),kf(),Tf(),Ca(),Ch(),wh(),St("@ui5/webcomponents-theming","sap_horizon",async()=>ch),St("@ui5/webcomponents","sap_horizon",async()=>_h,"host");Ca(),Ch(),wh(),St("@ui5/webcomponents-theming","sap_horizon",async()=>ch),St("@ui5/webcomponents","sap_horizon",async()=>_h,"host");wn(),kn(),Wn(),xn(),qn(),Ev(),oc(),Ka(),lc(),tc(),Pa(),yh(),Nk(),bh(),px(),gx();var hT,pT=function(e,t,o,i){var r,a=arguments.length,n=a<3?t:null===i?i=Object.getOwnPropertyDescriptor(t,o):i;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)n=Reflect.decorate(e,t,o,i);else for(var s=e.length-1;s>=0;s--)(r=e[s])&&(n=(a<3?r(n):a>3?r(t,o,n):r(t,o))||n);return a>3&&n&&Object.defineProperty(t,o,n),n},gT=hT=class extends Lk{constructor(){super(...arguments),this.value="",this.valueState="None",this.required=!1,this.disabled=!1,this.readonly=!1,this.hideWeekNumbers=!1,this.open=!1,this.showClearIcon=!1,this._calendarCurrentPicker="day"}get formValidityMessage(){const e=this.formValidity;return e.valueMissing?hT.i18nBundle.getText(Z_,this.getFormat().oFormatOptions.pattern):e.patternMismatch?hT.i18nBundle.getText(X_,this.getFormat().oFormatOptions.pattern):e.rangeUnderflow?hT.i18nBundle.getText(Q_,this.minDate):e.rangeOverflow?hT.i18nBundle.getText(J_,this.maxDate):""}get formValidity(){return{valueMissing:this.required&&!this.value,patternMismatch:!this.isValidValue(this.value),rangeUnderflow:!this.isValidMin(this.value),rangeOverflow:!this.isValidMax(this.value)}}async formElementAnchor(){return(await this.getFocusDomRefAsync())?.getFocusDomRefAsync()}get formFormattedValue(){return this.value}onResponsivePopoverAfterClose(){this.open=!1,Ao()?this.blur():this._dateTimeInput?.focus(),this.fireDecoratorEvent("close")}onResponsivePopoverAfterOpen(){this.fireDecoratorEvent("open")}onResponsivePopoverBeforeOpen(){this._calendar.timestamp=this._calendarTimestamp,this._calendarCurrentPicker=this.firstPicker}onBeforeRendering(){["minDate","maxDate"].forEach(e=>{const t=this[e];this.isValid(t)||console.warn(`Invalid value for property "${e}": ${t} is not compatible with the configured format pattern: "${this._displayFormat}"`)}),this.isLiveUpdate||(this.value=this.normalizeFormattedValue(this.value)||this.value),this.liveValue=this.value}get _calendarSelectionMode(){return"Single"}get _calendarTimestamp(){return this.value&&this.dateValueUTC&&this._checkValueValidity(this.value)?((e=this.dateValueUTC.getTime())||(e=(new Date).getTime()),(e-e%864e5)/1e3):Ck(this._primaryCalendarType);var e}get _calendarSelectedDates(){return this.value&&this._checkValueValidity(this.value)?[this.value]:[]}_onkeydown(e){Zs(e)&&(e.preventDefault(),this.open&&Js(e)||this._toggleAndFocusInput());const t=e.target;t&&this.open&&this._dateTimeInput.id===t.id&&(Ls(e)||Ns(e)||el(e)||tl(e))&&this._togglePicker(),this.open||(Gs(e)?(e.preventDefault(),this._modifyDateValue(1,"year")):qs(e)?(e.preventDefault(),this._modifyDateValue(1,"month")):Vs(e)?(e.preventDefault(),this._modifyDateValue(1,"day")):Ks(e)?(e.preventDefault(),this._modifyDateValue(-1,"year")):Ys(e)?(e.preventDefault(),this._modifyDateValue(-1,"month")):Ws(e)&&(e.preventDefault(),this._modifyDateValue(-1,"day")))}_modifyDateValue(e,t,o){if(!this.dateValue)return;const i=jw(Hw.fromLocalJSDate(this.dateValue),e,t,o,this._minDate,this._maxDate),r=this.formatValue(i.toUTCJSDate());this._updateValueAndFireEvents(r,!0,["change","value-changed"])}_updateValueAndFireEvents(e,t,o,i=!0){const r=this._checkValueValidity(e);this.isLiveUpdate=!i,(r&&t||!this.isLiveUpdate)&&(e=this.getDisplayValueFromValue(e),e=this.normalizeDisplayValue(e));let a=!0;this.liveValue=e;const n=this.value;if(i&&(this._dateTimeInput.value=e,this.value=this.getValueFromDisplayValue(e),this._updateValueState()),o.forEach(e=>{this.fireDecoratorEvent(e,{value:this.value,valid:r})||(a=!1)}),!a&&i){if(this.value!==n&&this.value!==this._dateTimeInput.value)return;this._dateTimeInput.value=n,this.value=n}}_updateValueState(){const e=this._checkValueValidity(this.value),t=this.valueState;this.valueState=e?pv.None:pv.Negative,this.fireDecoratorEvent("value-state-change",{valueState:this.valueState,valid:e})||(this.valueState=t)}getValueFromDisplayValue(e){return this.getDisplayFormat().parse(e)?this.getValueFormat().format(this.getDisplayFormat().parse(e)):e}getDisplayValueFromValue(e){return this.getValueFormat().parse(e)?this.getDisplayFormat().format(this.getValueFormat().parse(e)):e}_onInputRequestSubmit(){this._internals.form&&Li(this)}_onInputChange(e){this._updateValueAndFireEvents(e.target.value,!0,["change","value-changed"])}_onInputInput(e){this._updateValueAndFireEvents(e.target.value,!1,["input"],!1)}_checkValueValidity(e){return""===e||this.isValidValue(e)&&this.isInValidRange(e)}_checkDisplayValueValidity(e){return""===e||this.isValidDisplayValue(e)&&this.isInValidRangeDisplayValue(e)}_click(e){Ao()&&(this.responsivePopover.opener=this,this.responsivePopover.open=!0,e.preventDefault())}isValid(e){return""===e||void 0===e||!!this.getFormat().parse(e)}isValidValue(e){return""===e||void 0===e||!!this.getValueFormat().parse(e)}isValidDisplayValue(e){return""===e||void 0===e||!!this.getDisplayFormat().parse(e)}isInValidRange(e){if(""===e||void 0===e)return!0;const t=this._getCalendarDateFromString(e);return!!(t&&this._minDate&&this._maxDate)&&(t.valueOf()>=this._minDate.valueOf()&&t.valueOf()<=this._maxDate.valueOf())}isValidMin(e){if(""===e||void 0===e)return!0;const t=this._getCalendarDateFromString(e);return!(!t||!this._minDate)&&t.valueOf()>=this._minDate.valueOf()}isValidMax(e){if(""===e||void 0===e)return!0;const t=this._getCalendarDateFromString(e);return!(!t||!this._maxDate)&&t.valueOf()<=this._maxDate.valueOf()}isInValidRangeDisplayValue(e){if(""===e||void 0===e)return!0;const t=this._getCalendarDateFromStringDisplayValue(e);return!!(t&&this._minDate&&this._maxDate)&&(t.valueOf()>=this._minDate.valueOf()&&t.valueOf()<=this._maxDate.valueOf())}normalizeValue(e){return""===e?e:this.getFormat().format(this.getFormat().parse(e,!0),!0)}normalizeFormattedValue(e){return this.getValueFormat().parse(e,!0)?""===e?e:this.getValueFormat().format(this.getValueFormat().parse(e,!0),!0):""}normalizeDisplayValue(e){return""!==e&&this.getDisplayFormat().parse(e,!0)?this.getDisplayFormat().format(this.getDisplayFormat().parse(e,!0),!0):e}get _lastDayOfTheYear(){const e=Sw.getInstance().getFullYear(),t=Sw.getInstance(e,11,31,23,59,59);return this.getFormat().format(t)}get _placeholder(){return this.placeholder?this.placeholder:`${hT.i18nBundle.getText(nd)} ${this._lastDayOfTheYear}`}get _headerTitleText(){return this.ariaLabelText||hT.i18nBundle.getText(K_)}get showHeader(){return Ao()}get showFooter(){return Ao()}get displayValue(){return this.getValueFormat().parse(this.value,!0)?this.value?this.isLiveUpdate?this.liveValue:this.getDisplayFormat().format(this.getValueFormat().parse(this.value,!0),!0):"":this.value}get accInfo(){return{ariaRoledescription:this.roleDescription,ariaHasPopup:"grid",ariaRequired:this.required,ariaLabel:this.ariaLabelText||void 0,ariaDescription:Il(this)||Bl(this)||void 0}}get ariaLabelText(){return vl(this)||ml(this)||Cl(this)||""}get valueStateDefaultText(){if(this.valueState!==pv.None)return this.valueStateTextMappings[this.valueState]}get valueStateTextMappings(){return{[pv.Positive]:hT.i18nBundle.getText(wu),[pv.Negative]:hT.i18nBundle.getText(bu),[pv.Critical]:hT.i18nBundle.getText(yu),[pv.Information]:hT.i18nBundle.getText(Cu)}}get shouldDisplayDefaultValueStateMessage(){return!Zl(this.valueStateMessage)&&this.hasValueStateText}get hasValueStateText(){return this.hasValueState&&this.valueState!==pv.Positive}get hasValueState(){return this.valueState!==pv.None}get openIconTitle(){return this.open?hT.i18nBundle.getText($_):hT.i18nBundle.getText(Y_)}get openIconName(){return"appointment-2"}get roleDescription(){return hT.i18nBundle.getText(G_)}get pickerAccessibleName(){return hT.i18nBundle.getText(ad,this.ariaLabelText)}get btnCancelLabel(){return hT.i18nBundle.getText(du)}get _shouldHideHeader(){return!1}get firstPicker(){const e=this._calendarPickersMode;let t="day";return e===wk.YEAR?t="year":e===wk.MONTH_YEAR&&(t="month"),t}get _iconMode(){return Po()?S_.Decorative:S_.Interactive}_canOpenPicker(){return!this.disabled&&!this.readonly}get _calendarPickersMode(){const e=this.getFormat().aFormatArray.map(e=>e.type.toLowerCase());return e.includes("day")?wk.DAY_MONTH_YEAR:e.includes("month")||e.includes("monthstandalone")?wk.MONTH_YEAR:wk.YEAR}onSelectedDatesChange(e){e.preventDefault();const t=e.detail.selectedValues&&e.detail.selectedValues[0];this._updateValueAndFireEvents(t,!0,["change","value-changed"]),this._togglePicker()}onHeaderShowMonthPress(){this._calendarCurrentPicker="month"}onHeaderShowYearPress(){this._calendarCurrentPicker="year"}formatValue(e){return this.getValueFormat().format(e)}_togglePicker(){this.open=!this.open}_toggleAndFocusInput(){this._togglePicker(),this._dateTimeInput.focus()}get dateValue(){return this.liveValue?this.getValueFormat().parse(this.liveValue):this.getValueFormat().parse(this.value)}get dateValueAsync(){return this.definePromise.then(()=>this.dateValue)}get dateValueUTC(){return this.liveValue?this.getValueFormat().parse(this.liveValue,!0):this.getValueFormat().parse(this.value)}get dateValueUTCAsync(){return this.definePromise.then(()=>this.dateValueUTC)}get styles(){return{main:{width:"100%"}}}get type(){return Ik.Text}};pT([bn()],gT.prototype,"value",void 0),pT([bn()],gT.prototype,"valueState",void 0),pT([bn({type:Boolean})],gT.prototype,"required",void 0),pT([bn({type:Boolean})],gT.prototype,"disabled",void 0),pT([bn({type:Boolean})],gT.prototype,"readonly",void 0),pT([bn()],gT.prototype,"placeholder",void 0),pT([bn()],gT.prototype,"name",void 0),pT([bn({type:Boolean})],gT.prototype,"hideWeekNumbers",void 0),pT([bn({type:Boolean})],gT.prototype,"open",void 0),pT([bn()],gT.prototype,"accessibleName",void 0),pT([bn()],gT.prototype,"accessibleNameRef",void 0),pT([bn()],gT.prototype,"accessibleDescription",void 0),pT([bn()],gT.prototype,"accessibleDescriptionRef",void 0),pT([bn({type:Boolean})],gT.prototype,"showClearIcon",void 0),pT([bn({type:Object})],gT.prototype,"_respPopoverConfig",void 0),pT([bn()],gT.prototype,"_calendarCurrentPicker",void 0),pT([Sn()],gT.prototype,"valueStateMessage",void 0),pT([yk("[ui5-datetime-input]")],gT.prototype,"_dateTimeInput",void 0),pT([yk("[ui5-calendar]")],gT.prototype,"_calendar",void 0),pT([Tn("@ui5/webcomponents")],gT,"i18nBundle",void 0),(gT=hT=pT([fn({tag:"ui5-date-picker",languageAware:!0,formAssociated:!0,template:function(){return[iS.call(this),nT.call(this,{initialFocus:this.initialFocusId})]},styles:['.ui5-hidden-text{position:absolute;clip:rect(1px,1px,1px,1px);user-select:none;left:-1000px;top:-1000px;pointer-events:none;font-size:0}.inputIcon{color:var(--_ui5_input_icon_color);cursor:pointer;outline:none;padding:var(--_ui5_input_icon_padding);border-inline-start:var(--_ui5_input_icon_border);min-width:1rem;min-height:1rem;border-radius:var(--_ui5_input_icon_border_radius)}.inputIcon.inputIcon--pressed{background:var(--_ui5_input_icon_pressed_bg);box-shadow:var(--_ui5_input_icon_box_shadow);border-inline-start:var(--_ui5_select_hover_icon_left_border);color:var(--_ui5_input_icon_pressed_color)}.inputIcon:active{background-color:var(--sapButton_Active_Background);box-shadow:var(--_ui5_input_icon_box_shadow);border-inline-start:var(--_ui5_select_hover_icon_left_border);color:var(--_ui5_input_icon_pressed_color)}.inputIcon:not(.inputIcon--pressed):not(:active):hover{background:var(--_ui5_input_icon_hover_bg);box-shadow:var(--_ui5_input_icon_box_shadow)}.inputIcon:hover{border-inline-start:var(--_ui5_select_hover_icon_left_border);box-shadow:var(--_ui5_input_icon_box_shadow)}:host([disabled]){cursor:default;pointer-events:none;background:none}:host([readonly]:not([disabled])){border-color:var(--_ui5_input_readonly_border_color);background:var(--sapField_ReadOnly_BackgroundStyle);background-color:var(--_ui5_input_readonly_background)}:host([value-state="Negative"]) .inputIcon:not(.inputIcon--pressed):not(:active):hover{box-shadow:var(--_ui5_input_error_icon_box_shadow)}:host([value-state="Critical"]) .inputIcon:not(.inputIcon--pressed):not(:active):hover{box-shadow:var(--_ui5_input_warning_icon_box_shadow)}:host([value-state="Information"]) .inputIcon:not(.inputIcon--pressed):not(:active):hover{box-shadow:var(--_ui5_input_information_icon_box_shadow)}:host([value-state="Positive"]) .inputIcon:not(.inputIcon--pressed):not(:active):hover{box-shadow:var(--_ui5_input_success_icon_box_shadow)}:host([value-state="Negative"]:not([readonly]):not([disabled])){background:var(--sapField_InvalidBackgroundStyle);background-color:var(--sapField_InvalidBackground);border-color:var(--_ui5_input_value_state_error_border_color);box-shadow:var(--sapField_InvalidShadow)}:host([value-state="Critical"]:not([readonly]):not([disabled])){background:var(--sapField_WarningBackgroundStyle);background-color:var(--sapField_WarningBackground);border-color:var(--_ui5_input_value_state_warning_border_color);box-shadow:var(--sapField_WarningShadow)}:host([value-state="Positive"]:not([readonly]):not([disabled])){background:var(--sapField_SuccessBackgroundStyle);background-color:var(--sapField_SuccessBackground);border-color:var(--_ui5_input_value_state_success_border_color);border-width:var(--_ui5_input_value_state_success_border_width);box-shadow:var(--sapField_SuccessShadow)}:host([value-state="Information"]:not([readonly]):not([disabled])){background:var(--sapField_InformationBackgroundStyle);background-color:var(--sapField_InformationBackground);border-color:var(--_ui5_input_value_state_information_border_color);border-width:var(--_ui5_input_information_border_width);box-shadow:var(--sapField_InformationShadow)}:host([value-state="Negative"]) .inputIcon:active,:host([value-state="Negative"]) .inputIcon.inputIcon--pressed{box-shadow:var(--_ui5_input_error_icon_box_shadow);color:var(--_ui5_input_icon_error_pressed_color)}:host([value-state="Critical"]) .inputIcon:active,:host([value-state="Critical"]) .inputIcon.inputIcon--pressed{box-shadow:var(--_ui5_input_warning_icon_box_shadow);color:var(--_ui5_input_icon_warning_pressed_color)}:host([value-state="Information"]) .inputIcon:active,:host([value-state="Information"]) .inputIcon.inputIcon--pressed{box-shadow:var(--_ui5_input_information_icon_box_shadow);color:var(--_ui5_input_icon_information_pressed_color)}:host([value-state="Positive"]) .inputIcon:active,:host([value-state="Positive"]) .inputIcon.inputIcon--pressed{box-shadow:var(--_ui5_input_success_icon_box_shadow);color:var(--_ui5_input_icon_success_pressed_color)}:host([value-state="Negative"]) .inputIcon,:host([value-state="Critical"]) .inputIcon{padding:var(--_ui5_input_error_warning_icon_padding)}:host([value-state="Information"]) .inputIcon{padding:var(--_ui5_input_information_icon_padding)}:host{vertical-align:middle}:host(:not([hidden])){display:inline-block;line-height:normal;letter-spacing:normal;word-spacing:normal;height:var(--_ui5_input_height);border-radius:var(--_ui5_input_border_radius)}:host{min-width:calc(var(--_ui5_input_min_width) + var(--_ui5_input_icon_width));color:var(--sapField_TextColor);background-color:var(--sapField_Background);border-radius:var(--_ui5-datepicker_border_radius);margin:var(--_ui5_input_margin_top_bottom) 0;user-select:none;-moz-user-select:none;-webkit-user-select:none;-ms-user-select:none}:host(:not([disabled]):not([readonly]):active){background:var(--_ui5-datepicker-hover-background)}:host(:not([disabled]):not([readonly]):hover){background:var(--_ui5-datepicker-hover-background)}.ui5-date-picker-root{border-radius:inherit;height:inherit;line-height:inherit;letter-spacing:inherit;word-spacing:inherit}:host .ui5-date-picker-input{color:inherit;background-color:inherit;border-radius:inherit;height:inherit;line-height:inherit;letter-spacing:inherit;word-spacing:inherit;margin:inherit}:host([disabled]) .ui5-date-picker-input{background-color:var(--_ui5-input_disabled_background);opacity:var(--_ui5_input_disabled_opacity)}:host(:not([disabled]):not([readonly])) .ui5-date-picker-input[focused]{background-color:var(--_ui5-datepicker-hover-background)}.ui5-date-picker-popover::part(header){padding:0}\n',rx,".ui5-date-picker-popover{width:auto;min-width:var(--_ui5_calendar_width);.ui5-popover-header{width:100%}}.ui5-date-picker-popover .ui5-responsive-popover-header .row{justify-content:flex-start;font-family:var(--sapFontHeaderFamily);font-size:var(--sapFontHeader5Size);color:var(--sapPageHeader_TextColor)}[ui5-calendar]{width:auto;display:flex;justify-content:center}[ui5-responsive-popover]::part(content){padding:0}.ui5-dt-picker-footer{display:flex;justify-content:flex-end;align-items:center;height:2.75rem;width:100%}.ui5-dt-picker-footer.ui5-dt-picker-footer-time-hidden{padding:0}.ui5-dt-picker-action{margin:.25rem}[ui5-responsive-popover]::part(header){font-family:var(--_ui5_button_fontFamily);text-align:left}\n",ax]}),yn("change",{bubbles:!0,cancelable:!0}),yn("input",{bubbles:!0,cancelable:!0}),yn("value-state-change",{bubbles:!0,cancelable:!0}),yn("open"),yn("close")],gT)).define();var mT=gT;C_(),xh(),Ca(),Ch(),wh(),St("@ui5/webcomponents-theming","sap_horizon",async()=>ch),St("@ui5/webcomponents","sap_horizon",async()=>_h,"host");wn(),kn(),Cn(),qn(),cc(),Pa(),tc(),oc(),lc(),Wn(),ec(),yh(),xn();var vT,fT=function(e,t,o,i){var r,a=arguments.length,n=a<3?t:null===i?i=Object.getOwnPropertyDescriptor(t,o):i;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)n=Reflect.decorate(e,t,o,i);else for(var s=e.length-1;s>=0;s--)(r=e[s])&&(n=(a<3?r(n):a>3?r(t,o,n):r(t,o))||n);return a>3&&n&&Object.defineProperty(t,o,n),n},bT=vT=class extends hn{get ariaDescription(){return vT.i18nBundle.getText(au)}constructor(){super(),this.disabled=!1,this.selected=!1,this.iconOnly=!1,this.nonInteractive=!1,this.posInSet=0,this.sizeOfSet=0,this.hidden=!1}_onclick(e){if(this.disabled)return e.preventDefault(),void e.stopPropagation();e.stopImmediatePropagation(),this.fireDecoratorEvent("click",{originalEvent:e})||(e.preventDefault(),e.stopPropagation())}onEnterDOM(){Po()&&this.setAttribute("desktop","")}onBeforeRendering(){this.iconOnly=!Zl(this.text)}_onkeyup(e){ws(e)&&e.preventDefault()}get tabIndexValue(){if(this.disabled)return;const e=this.getAttribute("tabindex");return e||this.forcedTabIndex}get ariaLabelText(){return ml(this)||Cl(this)||void 0}get ariaDescriptionText(){return Bl(this)||void 0}get showIconTooltip(){return Jl()&&this.iconOnly&&!this.tooltip}get slotTextContent(){return this.text.filter(e=>e.nodeType===Node.TEXT_NODE).map(e=>e.textContent?.trim()||"").filter(Boolean).join(" ")}};fT([bn({type:Boolean})],bT.prototype,"disabled",void 0),fT([bn({type:Boolean})],bT.prototype,"selected",void 0),fT([bn()],bT.prototype,"tooltip",void 0),fT([bn()],bT.prototype,"accessibleName",void 0),fT([bn()],bT.prototype,"accessibleNameRef",void 0),fT([bn()],bT.prototype,"accessibleDescription",void 0),fT([bn()],bT.prototype,"accessibleDescriptionRef",void 0),fT([bn()],bT.prototype,"icon",void 0),fT([bn({type:Boolean})],bT.prototype,"iconOnly",void 0),fT([bn({type:Boolean})],bT.prototype,"nonInteractive",void 0),fT([bn({noAttribute:!0})],bT.prototype,"forcedTabIndex",void 0),fT([bn({type:Number})],bT.prototype,"posInSet",void 0),fT([bn({type:Number})],bT.prototype,"sizeOfSet",void 0),fT([bn({type:Boolean})],bT.prototype,"hidden",void 0),fT([Sn({type:Node,default:!0})],bT.prototype,"text",void 0),fT([Tn("@ui5/webcomponents")],bT,"i18nBundle",void 0),(bT=vT=fT([fn({tag:"ui5-segmented-button-item",renderer:ms,template:function(){return y_("li",{role:"option",class:"ui5-segmented-button-item-root","aria-posinset":this.posInSet,"aria-setsize":this.sizeOfSet,"aria-selected":this.selected,"aria-disabled":this.disabled,"aria-roledescription":this.ariaDescription,"data-sap-focus-ref":!0,onClick:this._onclick,onKeyUp:this._onkeyup,tabindex:this.tabIndexValue?parseInt(this.tabIndexValue):void 0,"aria-label":this.ariaLabelText,"aria-description":this.ariaDescriptionText,title:this.tooltip||this.slotTextContent,children:[this.icon&&b_(gh,{part:"icon",class:"ui5-segmented-button-item-icon",name:this.icon,showTooltip:this.showIconTooltip}),b_("span",{id:`${this._id}-content`,class:"ui5-segmented-button-item-text",children:b_("bdi",{children:b_("slot",{})})})]})},styles:':host{vertical-align:middle}:host(:not([hidden])){display:inline-block}:host{min-width:var(--_ui5_button_base_min_width);height:var(--_ui5_button_base_height);line-height:normal;font-family:var(--_ui5_button_fontFamily);font-size:var(--sapFontSize);text-shadow:var(--_ui5_button_text_shadow);border-radius:var(--_ui5_button_border_radius);cursor:pointer;background-color:var(--sapButton_Background);border:var(--sapButton_BorderWidth) solid var(--sapButton_BorderColor);color:var(--sapButton_TextColor);box-sizing:border-box;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.ui5-segmented-button-item-root{min-width:inherit;cursor:inherit;height:100%;width:100%;box-sizing:border-box;display:flex;justify-content:center;align-items:center;outline:none;padding:0 var(--_ui5_button_base_padding);position:relative;background:transparent;border:none;color:inherit;text-shadow:inherit;font:inherit;white-space:inherit;overflow:inherit;text-overflow:inherit;letter-spacing:inherit;word-spacing:inherit;line-height:inherit;-webkit-user-select:none;-moz-user-select:none;user-select:none}:host(:not([active]):not([non-interactive]):not([_is-touch]):not([disabled]):hover),:host(:not([hidden]):not([disabled]).ui5_hovered){background:var(--sapButton_Hover_Background);border:.0625rem solid var(--sapButton_Hover_BorderColor);color:var(--sapButton_Hover_TextColor)}.ui5-segmented-button-item-icon{color:inherit;flex-shrink:0;padding-inline-end:.375rem}:host([icon-only]) .ui5-segmented-button-item-icon{padding-inline-end:0}:host([icon-only]) .ui5-segmented-button-item-root{min-width:auto;padding:0}:host([icon-only]) .ui5-segmented-button-item-text{display:none}.ui5-segmented-button-item-text{outline:none;position:relative;white-space:inherit;overflow:inherit;text-overflow:inherit}:host([has-icon]:not([icon-end])) .ui5-segmented-button-item-text{margin-inline-start:var(--_ui5_button_base_icon_margin)}:host([has-icon][icon-end]) .ui5-segmented-button-item-text{margin-inline-start:0}:host([disabled]){opacity:var(--sapContent_DisabledOpacity);pointer-events:unset;cursor:default}:host([has-icon]:not([icon-only])) .ui5-segmented-button-item-text{min-width:calc(var(--_ui5_button_base_min_width) - var(--_ui5_button_base_icon_margin) - 1rem)}:host([desktop]:not([active])) .ui5-segmented-button-item-root:focus-within:after,:host(:not([active])) .ui5-segmented-button-item-root:focus-visible:after,:host([desktop][active]) .ui5-segmented-button-item-root:focus-within:before,:host([active]) .ui5-segmented-button-item-root:focus-visible:before{content:"";position:absolute;box-sizing:border-box;inset:.0625rem;border:var(--_ui5_button_focused_border);border-radius:var(--_ui5_button_focused_border_radius)}:host([desktop][active]) .ui5-segmented-button-item-root:focus-within:before,:host([active]) .ui5-segmented-button-item-root:focus-visible:before{border-color:var(--_ui5_button_pressed_focused_border_color)}.ui5-segmented-button-item-root::-moz-focus-inner{border:0}bdi{display:block;white-space:inherit;overflow:inherit;text-overflow:inherit}:host([active][desktop]) .ui5-segmented-button-item-root:focus-within:after,:host([active]) .ui5-segmented-button-item-root:focus-visible:after,:host([selected][desktop]) .ui5-segmented-button-item-root:focus-within:after,:host([selected]) .ui5-segmented-button-item-root:focus-visible:after{border-color:var(--_ui5_button_pressed_focused_border_color);outline:none}:host([desktop]:not(:last-child)) .ui5-segmented-button-item-root:focus-within:after,:host(:not(:last-child)) .ui5-segmented-button-item-root:focus-visible:after{border-start-end-radius:var(--_ui5_button_focused_inner_border_radius);border-end-end-radius:var(--_ui5_button_focused_inner_border_radius)}:host([desktop]:not(:first-child)) .ui5-segmented-button-item-root:focus-within:after,:host(:not(:first-child)) .ui5-segmented-button-item-root:focus-visible:after{border-start-start-radius:var(--_ui5_button_focused_inner_border_radius);border-end-start-radius:var(--_ui5_button_focused_inner_border_radius)}\n'}),yn("click",{bubbles:!0,cancelable:!0})],bT)).define();var yT,CT=bT;!function(e){e.Single="Single",e.Multiple="Multiple"}(yT||(yT={}));var wT=yT;C_(),Ca(),Ch(),wh(),St("@ui5/webcomponents-theming","sap_horizon",async()=>ch),St("@ui5/webcomponents","sap_horizon",async()=>_h,"host");Cn(),wn(),kn(),xn(),Wn(),oc(),ec(),bp(),qn(),tc(),yh();var kT,xT=function(e,t,o,i){var r,a=arguments.length,n=a<3?t:null===i?i=Object.getOwnPropertyDescriptor(t,o):i;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)n=Reflect.decorate(e,t,o,i);else for(var s=e.length-1;s>=0;s--)(r=e[s])&&(n=(a<3?r(n):a>3?r(t,o,n):r(t,o))||n);return a>3&&n&&Object.defineProperty(t,o,n),n},ST=kT=class extends hn{constructor(){super(),this.selectionMode="Single",this.itemsFitContent=!1,this._itemNavigation=new ap(this,{getItemsCallback:()=>this.navigatableItems}),this.hasPreviouslyFocusedItem=!1,this._cancelAction=!1,this._isSpacePressed=!1}onBeforeRendering(){const e=this.getSlottedNodes("items"),t=e.filter(e=>!e.hidden);let o=1;e.forEach(e=>{e.posInSet=e.hidden?void 0:o++,e.sizeOfSet=e.hidden?void 0:t.length}),this.normalizeSelection(),this.itemsFitContent||this.style.setProperty("--_ui5_segmented_btn_items_count",`${t.length}`)}normalizeSelection(){if(this.items.length)switch(this.selectionMode){case wT.Single:{const e=this.selectedItems,t=this._selectedItem?e.indexOf(this._selectedItem):-1;this._selectedItem&&e.length>1&&e.splice(t,1);const o=e.pop()||this.items[0];this._applySingleSelection(o);break}}}getFocusDomRef(){return this._itemNavigation._getCurrentItem()}_selectItem(e){const t=e.target,o=t.hasAttribute("ui5-segmented-button-item");if(!t.disabled&&t!==this.getDomRef()&&o&&!e.defaultPrevented){if(this.selectionMode===wT.Multiple)t.selected=!t.selected;else this._applySingleSelection(t);return this.fireDecoratorEvent("selection-change",{selectedItems:this.selectedItems}),this._itemNavigation.setCurrentItem(t),this}}_applySingleSelection(e){this.items.forEach(e=>{e.selected=!1}),e.selected=!0,this._selectedItem=e}_onclick(e){this._selectItem(e)}_onkeydown(e){fs(e)?this._selectItem(e):Cs(e)?(e.preventDefault(),this._isSpacePressed=!0):(al(e)||Os(e))&&(this._cancelAction=!0)}_onkeyup(e){const t=Cs(e),o=al(e)||Os(e);if(t||ws(e)){if(this._cancelAction)return this._cancelAction=!1,this._isSpacePressed=!1,void e.preventDefault();this._isSpacePressed=!1}else o&&!this._isSpacePressed&&(this._cancelAction=!1);t&&this._selectItem(e)}_onmousedown(e){const t=e.target;t.hasAttribute("ui5-segmented-button-item")&&(this._itemNavigation.setCurrentItem(t),this.hasPreviouslyFocusedItem=!0)}_onfocusin(e){this.hasPreviouslyFocusedItem?this._itemNavigation.setCurrentItem(e.target):this.selectedItems.length&&(this._itemNavigation.setCurrentItem(this.selectedItems[0]),this.selectedItems[0].focus(),this.hasPreviouslyFocusedItem=!0)}get selectedItems(){return this.items.filter(e=>e.selected)}get navigatableItems(){return this.getSlottedNodes("items").filter(e=>!e.disabled)}get ariaLabelText(){return ml(this)||Cl(this)||void 0}get ariaDescriptionText(){return`${Bl(this)||""} ${kT.i18nBundle.getText(ru)}`.trim()}get ariaRoleDescription(){return kT.i18nBundle.getText(iu)}};xT([bn()],ST.prototype,"accessibleName",void 0),xT([bn()],ST.prototype,"accessibleNameRef",void 0),xT([bn()],ST.prototype,"accessibleDescription",void 0),xT([bn()],ST.prototype,"accessibleDescriptionRef",void 0),xT([bn()],ST.prototype,"selectionMode",void 0),xT([bn({type:Boolean})],ST.prototype,"itemsFitContent",void 0),xT([Sn({type:HTMLElement,invalidateOnChildChange:!0,default:!0})],ST.prototype,"items",void 0),xT([Tn("@ui5/webcomponents")],ST,"i18nBundle",void 0),(ST=kT=xT([fn({tag:"ui5-segmented-button",languageAware:!0,renderer:ms,template:function(){return b_("ul",{role:"listbox",class:{"ui5-segmented-button-root":!0,"ui5-segmented-button-root-equal-sized-items":!this.itemsFitContent,"ui5-segmented-button-root-content-fit-items":this.itemsFitContent},onClick:this._onclick,onMouseDown:this._onmousedown,onKeyDown:this._onkeydown,onKeyUp:this._onkeyup,onFocusIn:this._onfocusin,"aria-multiselectable":"Multiple"===this.selectionMode?"true":"false","aria-orientation":"horizontal","aria-description":this.ariaDescriptionText,"aria-label":this.ariaLabelText,"aria-roledescription":this.ariaRoleDescription,children:b_("slot",{})})},styles:":host{vertical-align:middle}.ui5-hidden-text{position:absolute;clip:rect(1px,1px,1px,1px);user-select:none;left:-1000px;top:-1000px;pointer-events:none;font-size:0}:host(:not([hidden])){display:inline-block;min-width:calc(var(--_ui5_segmented_btn_items_count) * var(--_ui5_button_base_min_width))}.ui5-segmented-button-root{width:inherit;margin:0;padding:0;background-color:var(--sapButton_Background);border-radius:var(--sapButton_BorderCornerRadius);box-shadow:inset 0 0 0 var(--sapButton_BorderWidth) var(--sapButton_BorderColor)}.ui5-segmented-button-root-equal-sized-items{display:grid;grid-template-columns:repeat(var(--_ui5_segmented_btn_items_count),minmax(var(--_ui5_button_base_min_width),1fr))}.ui5-segmented-button-root-content-fit-items{display:inline-flex;gap:0}::slotted([ui5-segmented-button-item]){border-radius:var(--sapButton_Segment_BorderCornerRadius);border-color:var(--_ui5_segmented_btn_border_color);background-color:var(--_ui5_segmented_btn_background_color);height:var(--_ui5_button_base_height);white-space:nowrap;overflow:hidden;text-overflow:ellipsis;z-index:initial}::slotted([ui5-segmented-button-item]:not([disabled]):hover){z-index:2;box-shadow:var(--_ui5_segmented_btn_hover_box_shadow);border-color:var(--sapButton_Hover_BorderColor);background-color:var(--sapButton_Hover_Background)}::slotted([ui5-segmented-button-item][selected]),::slotted([ui5-segmented-button-item][active]){border-color:var(--sapButton_Selected_BorderColor);background-color:var(--sapButton_Selected_Background);color:var(--sapButton_Selected_TextColor)}::slotted([ui5-segmented-button-item][selected]:hover){border-color:var(--sapButton_Selected_Hover_BorderColor);background-color:var(--sapButton_Selected_Hover_Background);color:var(--sapButton_Selected_TextColor)}::slotted([ui5-segmented-button-item]:last-child){border-start-end-radius:var(--sapButton_BorderCornerRadius);border-end-end-radius:var(--sapButton_BorderCornerRadius)}::slotted([ui5-segmented-button-item]:first-child){border-start-start-radius:var(--sapButton_BorderCornerRadius);border-end-start-radius:var(--sapButton_BorderCornerRadius)}::slotted([ui5-segmented-button-item]:not(:first-child)){border-left-width:var(--_ui5_segmented_btn_item_border_left);border-right-width:var(--_ui5_segmented_btn_item_border_right)}::slotted([ui5-segmented-button-item][active]:not([active]):hover){border-color:var(--sapButton_BorderColor)}::slotted([ui5-segmented-button-item][active]:hover){border-color:var(--sapButton_Selected_BorderColor)}::slotted([ui5-segmented-button-item]:not([disabled]):active){background-color:var(--sapButton_Active_Background)}\n"}),yn("selection-change",{bubbles:!0})],ST)).define();var TT=ST;Cn(),ec(),wn(),kn(),xn(),qn(),en(),yh();var BT,IT=function(e,t,o,i){var r,a=arguments.length,n=a<3?t:null===i?i=Object.getOwnPropertyDescriptor(t,o):i;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)n=Reflect.decorate(e,t,o,i);else for(var s=e.length-1;s>=0;s--)(r=e[s])&&(n=(a<3?r(n):a>3?r(t,o,n):r(t,o))||n);return a>3&&n&&Object.defineProperty(t,o,n),n},DT=BT=class extends hn{constructor(){super(...arguments),this._activeIndex=0,this._entities=[],this._periods=[],this._keyboardBuffer=""}get _hoursConfiguration(){const e=this.getFormat().aFormatArray.find(e=>e.type.startsWith("hour"));return(e=>{const t={minHour:0,maxHour:0,isTwelveHoursFormat:!1};return"hour0_23"===e?(t.minHour=0,t.maxHour=23,t.isTwelveHoursFormat=!1):"hour1_24"===e?(t.minHour=1,t.maxHour=24,t.isTwelveHoursFormat=!1):"hour0_11"===e?(t.minHour=0,t.maxHour=11,t.isTwelveHoursFormat=!0):"hour1_12"===e&&(t.minHour=1,t.maxHour=12,t.isTwelveHoursFormat=!0),t})(e?e.type:"hour0_23")}get _zeroPaddedHours(){const e=this.getFormat().aFormatArray.find(e=>e.type.startsWith("hour"));return!(e.digits&&1===e.digits)}get _neededComponents(){return((e,t)=>{const o=[!1,!1,!1,!1];for(let i=0;i<e.length;i++)0!==t.maxHour&&(o[0]=!0),0!==t.maxHour&&t.isTwelveHoursFormat&&(o[0]=!0),"minute"===e[i].type&&(o[1]=!0),"second"===e[i].type&&(o[2]=!0),"amPmMarker"===e[i].type&&(o[3]=!0);return o})(this.getFormat().aFormatArray,this._hoursConfiguration)}get _hasHoursComponent(){return this._neededComponents[0]}get _hasMinutesComponent(){return this._neededComponents[1]}get _hasSecondsComponent(){return this._neededComponents[2]}get _hasPeriodsComponent(){return this._neededComponents[3]}get dateValue(){return this.value?this.getFormat().parse(this.value,void 0,void 0):Sw.getInstance()}get validDateValue(){return void 0!==this.value&&this.isValid(this.value)?this.dateValue:Sw.getInstance()}get periodsArray(){return this.getFormat().aDayPeriodsAbbrev.map(e=>e.toUpperCase())}get _hours(){let e;const t=this.validDateValue;return e=this._hoursConfiguration.isTwelveHoursFormat&&t.getHours()>this._hoursConfiguration.maxHour?t.getHours()-12:this._hoursConfiguration.isTwelveHoursFormat&&t.getHours()<this._hoursConfiguration.minHour?t.getHours()+12:t.getHours(),1===e.toString().length&&this._zeroPaddedHours&&(e=`0${e}`),e.toString()}get _minutes(){const e=this.validDateValue.getMinutes().toString();return 1===e.length?`0${e}`:e}get _seconds(){const e=this.validDateValue.getSeconds().toString();return 1===e.length?`0${e}`:e}get _period(){let e;const t=this.validDateValue;if(this._hoursConfiguration.isTwelveHoursFormat)return e=1===this._hoursConfiguration.minHour?t.getHours()>=this._hoursConfiguration.maxHour?this.periodsArray[1]:this.periodsArray[0]:t.getHours()>this._hoursConfiguration.maxHour||t.getHours()===this._hoursConfiguration.minHour?this.periodsArray[1]:this.periodsArray[0],e}get _formatPattern(){const e=this.formatPattern,t=!!e?.match(/H/i),o=!e||!t,i=uw(rr());return o?i.getCombinedDateTimePattern("medium","medium",void 0):e}get _isPattern(){return"medium"!==this._formatPattern&&"short"!==this._formatPattern&&"long"!==this._formatPattern}get hoursLabel(){return BT.i18nBundle.getText(su)}get minutesLabel(){return BT.i18nBundle.getText(lu)}get secondsLabel(){return BT.i18nBundle.getText(cu)}get clockDialAriaLabel(){return BT.i18nBundle.getText(uu)}setValue(e){const t=this.formatValue(e);this.isValid(t)&&(this.value=this.normalizeValue(t),this.fireDecoratorEvent("change",{value:this.value,valid:!0}))}isValid(e){return""===e||this.getFormat().parse(e,void 0,void 0)}normalizeValue(e){return""===e?e:this.getFormat().format(this.getFormat().parse(e,void 0,void 0))}getFormat(){let e;return e=this._isPattern?bk.getDateInstance({calendarType:this._calendarType,pattern:this._formatPattern}):bk.getDateInstance({calendarType:this._calendarType,style:this._formatPattern}),e}formatValue(e){return this.getFormat().format(e)}_componentKey(e){return e}_indexFromName(e){return this._componentMap[this._componentKey(e)]}_getNameFromId(e){const t=e.split("_");return t.length?t[t.length-1]:void 0}_getIndexFromId(e){const t=this._getNameFromId(e);return t?this._indexFromName(t):0}_hoursChange(e){this._hoursConfiguration.isTwelveHoursFormat&&(e=this._shiftHours(e));const t=this.validDateValue;t.setHours(e),this.setValue(t)}_minutesChange(e){const t=this.validDateValue;t.setMinutes(e),this.setValue(t)}_secondsChange(e){const t=this.validDateValue;t.setSeconds(e),this.setValue(t)}_buttonAmPm(){return this._hasPeriodsComponent?this.shadowRoot?.querySelector(`#${this._id}_AmPm`):void 0}_createPeriodComponent(){this._hasPeriodsComponent&&this.periodsArray.forEach(e=>{this._periods.push({label:e,selected:this._period===e})})}_periodChange(e){const t=e.target;if(t){const e=t.textContent;this._calculatePeriodChange(e)}}_calculatePeriodChange(e){const t=this.validDateValue;e===this._periods[0].label&&t.getHours()>=12&&t.setHours(t.getHours()-12),e===this._periods[1].label&&t.getHours()<12&&t.setHours(t.getHours()+12),this.setValue(t)}_shiftHours(e){return this._period===this.periodsArray[0]?e=12===e?0:e:this._period===this.periodsArray[1]&&(e=12===e?e:e+12),e}_resetCooldown(e){this._typeCooldownId&&clearTimeout(this._typeCooldownId),e&&this._startCooldown()}_startCooldown(){this._typeCooldownId=setTimeout(()=>{this._keyboardBuffer="",this._typeCooldownId=void 0,this._exactMatch&&(this._setExactMatch(),this._exactMatch=void 0)},1e3)}_setExactMatch(){}};IT([bn()],DT.prototype,"value",void 0),IT([bn()],DT.prototype,"formatPattern",void 0),IT([bn({type:Number,noAttribute:!0})],DT.prototype,"_activeIndex",void 0),IT([bn()],DT.prototype,"_calendarType",void 0),IT([bn({type:Array,noAttribute:!0})],DT.prototype,"_entities",void 0),IT([bn({type:Object})],DT.prototype,"_componentMap",void 0),IT([bn({type:Array,noAttribute:!0})],DT.prototype,"_periods",void 0),IT([bn({type:Number,noAttribute:!0})],DT.prototype,"_typeCooldownId",void 0),IT([bn({type:Number,noAttribute:!0})],DT.prototype,"_exactMatch",void 0),IT([bn({noAttribute:!0})],DT.prototype,"_keyboardBuffer",void 0),IT([Tn("@ui5/webcomponents")],DT,"i18nBundle",void 0);var AT=DT=BT=IT([fn({cldr:!0,renderer:ms}),yn("change",{bubbles:!0})],DT);C_(),hp(),Ca(),Ch(),wh(),St("@ui5/webcomponents-theming","sap_horizon",async()=>ch),St("@ui5/webcomponents","sap_horizon",async()=>_h,"host");wn(),kn(),Pa(),gp();var PT=function(e,t,o,i){var r,a=arguments.length,n=a<3?t:null===i?i=Object.getOwnPropertyDescriptor(t,o):i;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)n=Reflect.decorate(e,t,o,i);else for(var s=e.length-1;s>=0;s--)(r=e[s])&&(n=(a<3?r(n):a>3?r(t,o,n):r(t,o))||n);return a>3&&n&&Object.defineProperty(t,o,n),n},MT=class extends tp{constructor(){super(...arguments),this.pressed=!1}_onclick(e){if(e.stopImmediatePropagation(),this.nonInteractive)return;const{altKey:t,ctrlKey:o,metaKey:i,shiftKey:r}=e,a=this.pressed;if(this.pressed=!a,!this.fireDecoratorEvent("click",{originalEvent:e,altKey:t,ctrlKey:o,metaKey:i,shiftKey:r}))return e.preventDefault(),void(this.pressed=a);Bo()&&this.getDomRef().focus()}};PT([bn({type:Boolean})],MT.prototype,"pressed",void 0),(MT=PT([fn({tag:"ui5-toggle-button",template:function(){return b_(f_,{children:Gh.call(this,{ariaPressed:this.pressed})})},styles:[tp.styles,':host(:not([hidden])){display:inline-block}:host([design="Emphasized"]:not([pressed])){text-shadow:var(--_ui5_toggle_button_emphasized_text_shadow)}:host([pressed]),:host([design="Default"][pressed]),:host([design="Transparent"][pressed]),:host([design="Emphasized"][pressed]){background:var(--sapButton_Selected_Background);border-color:var(--sapButton_Selected_BorderColor);color:var(--sapButton_Selected_TextColor);text-shadow:none}:host([pressed]:hover),:host([pressed]:not([active]):not([non-interactive]):not([_is-touch]):hover),:host([design="Default"][pressed]:hover),:host([design="Default"][pressed]:not([active]):not([non-interactive]):not([_is-touch]):hover),:host([design="Transparent"][pressed]:hover),:host([design="Transparent"][pressed]:not([active]):not([non-interactive]):not([_is-touch]):hover),:host([design="Emphasized"][pressed]:hover),:host([design="Emphasized"][pressed]:not([active]):not([non-interactive]):not([_is-touch]):hover){background:var(--sapButton_Selected_Hover_Background);border-color:var(--sapButton_Selected_Hover_BorderColor);color:var(--sapButton_Selected_TextColor)}:host([active]:not([disabled])),:host([design="Default"][active]:not([disabled])),:host([design="Transparent"][active]:not([disabled])),:host([design="Emphasized"][active]:not([disabled])){background:var(--sapButton_Active_Background);border-color:var(--sapButton_Active_BorderColor);color:var(--sapButton_Selected_TextColor)}:host([pressed][active]:not([disabled])),:host([design="Default"][pressed][active]:not([disabled])),:host([design="Transparent"][pressed][active]:not([disabled])),:host([design="Emphasized"][pressed][active]:not([disabled])){background:var(--sapButton_Selected_Hover_Background);border-color:var(--sapButton_Selected_Hover_BorderColor);color:var(--sapButton_Selected_TextColor)}:host([pressed]:not([active]):not([non-interactive]):not([_is-touch])),:host([design="Default"][pressed]:not([active]):not([non-interactive]):not([_is-touch])),:host([design="Transparent"][pressed]:not([active]):not([non-interactive]):not([_is-touch])),:host([design="Emphasized"][pressed]:not([active]):not([non-interactive]):not([_is-touch])){background:var(--sapButton_Selected_Background);border-color:var(--sapButton_Selected_BorderColor);color:var(--sapButton_Selected_TextColor)}:host([design="Negative"][pressed]){background:var(--sapButton_Reject_Selected_Background);border-color:var(--sapButton_Reject_Selected_BorderColor);color:var(--sapButton_Reject_Selected_TextColor)}:host([design="Negative"][active]:not([disabled])){background:var(--sapButton_Reject_Active_Background);border-color:var(--sapButton_Reject_Active_BorderColor);color:var(--sapButton_Reject_Active_TextColor)}:host([design="Negative"][pressed][active]:not([disabled])){background:var(--sapButton_Reject_Selected_Hover_Background);border-color:var(--sapButton_Reject_Selected_Hover_BorderColor);color:var(--sapButton_Reject_Selected_TextColor)}:host([design="Negative"][pressed][active]:hover),:host([design="Negative"][pressed]:not([active]):not([non-interactive]):not([_is-touch]):hover){background:var(--sapButton_Reject_Selected_Hover_Background);border-color:var(--sapButton_Reject_Selected_Hover_BorderColor);color:var(--sapButton_Reject_Selected_TextColor)}:host([design="Negative"][pressed]:not([active]):not([non-interactive]):not([_is-touch])){background:var(--sapButton_Reject_Selected_Background);border-color:var(--sapButton_Reject_Selected_BorderColor);color:var(--sapButton_Reject_Selected_TextColor)}:host([design="Positive"][pressed]){background:var(--sapButton_Accept_Selected_Background);border-color:var(--sapButton_Accept_Selected_BorderColor);color:var(--sapButton_Accept_Selected_TextColor)}:host([design="Positive"][active]:not([disabled])){background:var(--sapButton_Accept_Active_Background);border-color:var(--sapButton_Accept_Active_BorderColor);color:var(--sapButton_Accept_Selected_TextColor)}:host([design="Positive"][pressed][active]:not([disabled])){background:var(--sapButton_Accept_Selected_Hover_Background);border-color:var(--sapButton_Accept_Selected_Hover_BorderColor);color:var(--sapButton_Accept_Selected_TextColor)}:host([design="Positive"][pressed][active]:hover),:host([design="Positive"][pressed]:not([active]):not([non-interactive]):not([_is-touch]):hover){background:var(--sapButton_Accept_Selected_Hover_Background);border-color:var(--sapButton_Accept_Selected_Hover_BorderColor);color:var(--sapButton_Accept_Selected_TextColor)}:host([design="Positive"][pressed]:not([active]):not([non-interactive]):not([_is-touch])){background:var(--sapButton_Accept_Selected_Background);border-color:var(--sapButton_Accept_Selected_BorderColor);color:var(--sapButton_Accept_Selected_TextColor)}:host([design="Attention"][pressed]){background:var(--sapButton_Attention_Selected_Background);border-color:var(--sapButton_Attention_Selected_BorderColor);color:var(--sapButton_Attention_Selected_TextColor)}:host([design="Attention"][active]:not([disabled])){background:var(--sapButton_Attention_Active_Background);border-color:var(--sapButton_Attention_Active_BorderColor);color:var(--sapButton_Attention_Active_TextColor)}:host([design="Attention"][pressed][active]:not([disabled])){background:var(--sapButton_Attention_Selected_Hover_Background);border-color:var(--sapButton_Attention_Selected_Hover_BorderColor);color:var(--sapButton_Attention_Selected_TextColor)}:host([design="Attention"][pressed][active]:hover),:host([design="Attention"][pressed]:not([active]):not([non-interactive]):not([_is-touch]):hover){background:var(--sapButton_Attention_Selected_Hover_Background);border-color:var(--sapButton_Attention_Selected_Hover_BorderColor);color:var(--sapButton_Attention_Selected_TextColor)}:host([design="Attention"][pressed]:not([active]):not([non-interactive]):not([_is-touch])){background:var(--sapButton_Attention_Selected_Background);border-color:var(--sapButton_Attention_Selected_BorderColor);color:var(--sapButton_Attention_Selected_TextColor)}\n']})],MT)).define();var ET=MT;C_(),hp(),wn(),kn(),ec(),gp();var zT=function(e,t,o,i){var r,a=arguments.length,n=a<3?t:null===i?i=Object.getOwnPropertyDescriptor(t,o):i;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)n=Reflect.decorate(e,t,o,i);else for(var s=e.length-1;s>=0;s--)(r=e[s])&&(n=(a<3?r(n):a>3?r(t,o,n):r(t,o))||n);return a>3&&n&&Object.defineProperty(t,o,n),n},FT=class extends ET{constructor(){super(...arguments),this.valueMin=-1,this.valueMax=-1,this.valueNow=-1}_onclick(){}get effectiveAccRole(){return"spinbutton"}};zT([bn({type:Number})],FT.prototype,"valueMin",void 0),zT([bn({type:Number})],FT.prototype,"valueMax",void 0),zT([bn({type:Number})],FT.prototype,"valueNow",void 0),zT([bn()],FT.prototype,"valueText",void 0),(FT=zT([fn({tag:"ui5-toggle-spin-button",renderer:ms,styles:[tp.styles,ET.styles],template:function(){return b_(f_,{children:Gh.call(this,{ariaValueMax:this.valueMax,ariaValueMin:this.valueMin,ariaValueNow:this.valueNow,ariaValueText:this.valueText})})}})],FT)).define();var RT=FT;C_(),Ca(),Ch(),wh(),St("@ui5/webcomponents-theming","sap_horizon",async()=>ch),St("@ui5/webcomponents","sap_horizon",async()=>_h,"host");Cn(),wn(),kn(),xn(),ec();var OT=function(e,t,o,i){var r,a=arguments.length,n=a<3?t:null===i?i=Object.getOwnPropertyDescriptor(t,o):i;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)n=Reflect.decorate(e,t,o,i);else for(var s=e.length-1;s>=0;s--)(r=e[s])&&(n=(a<3?r(n):a>3?r(t,o,n):r(t,o))||n);return a>3&&n&&Object.defineProperty(t,o,n),n},LT="ui5-tp-clock-number",NT="ui5-tp-clock-selected",HT=class extends hn{constructor(){super(),this.disabled=!1,this.active=!1,this.itemMin=-1,this.itemMax=-1,this.hideFractions=!1,this.lastItemReplacement=-1,this.prependZero=!1,this.selectedValue=-1,this.displayStep=5,this.valueStep=1,this._items=[],this._selectedItem={},this._hoveredItem={},this._dimensionParameters={radius:0,centerX:0,centerY:0,dotHeight:0,numberHeight:0,activeRadiusMax:0,activeRadiusMin:0,offsetX:0,offsetY:0},this._mouseOrTouchDown=!1,this._cancelTouchOut=!1,this._selectedValue=-1,this._movSelectedValue=-1,this._hoveredValue=-1,this._prevHoveredValue=-1,this._skipAnimation=!1,this._fnOnMouseOutUp=()=>{this._mouseOrTouchDown=!1}}onEnterDOM(){document.addEventListener("mouseup",this._fnOnMouseOutUp,!1)}onExitDOM(){document.removeEventListener("mouseup",this._fnOnMouseOutUp,!1)}onBeforeRendering(){this._prepareClockItems(),this._selectedItem=this._updateSelectedOrHoveredItem(this._fixReplacementValue(this.selectedValue),NT),this._hoveredItem=this._updateSelectedOrHoveredItem(this._fixReplacementValue(this._hoveredValue),"ui5-tp-clock-hovered")}get _itemsCount(){return this.itemMax-this.itemMin+1}get _angleStep(){return this.hideFractions?360/this._itemsCount:6}_fixReplacementValue(e){let t=e;return 0===t&&(t=this.itemMax),t===this.itemMax&&-1!==this.lastItemReplacement&&(t=this.lastItemReplacement),t}_updateSelectedOrHoveredItem(e,t){if(-1===e)return{showMarker:!1};const o=e>=this.itemMin&&e<=this.itemMax||e===this.lastItemReplacement,i=360/(this.itemMax-this.itemMin+1);let r=o?e*i:void 0;return void 0!==r&&(r%=360),{angle:r,item:o?e.toString():"",showMarker:o,itemClasses:`${LT} ${o?t:""}`}}_prepareClockItems(){const e=[],t=this._angleStep,o=360/t,i=o/this._itemsCount;let r,a;for(this._items=[],a=this.itemMin;a<=this.itemMax;a++)e.push({item:a.toString()});for(-1!==this.lastItemReplacement&&(e[e.length-1].item=this.lastItemReplacement.toString()),a=1;a<=o;a++)r=a%(this.displayStep*i)!==0?{}:e[a/i-1],r.angle=a*t,this._items.push(r)}_getClockCoverContainerDomRef(){const e=this.getDomRef();return e&&e.querySelector(".ui5-tp-clock-cover")}_outerHeight(e){if(!e)return 0;const t=window.getComputedStyle(e);return e.offsetHeight+parseInt(t.marginTop)+parseInt(t.marginBottom)}_hoveredId(e){return e===this.itemMax&&-1!==this.lastItemReplacement&&(e=this.lastItemReplacement),`#${this._id}-${e.toString()}`}_getStringValue(e){return this.prependZero?e.toString().padStart(2,"0"):e.toString()}_calculateDimensions(){const e=this.getDomRef(),t=window.pageXOffset||document.documentElement.scrollLeft,o=window.pageYOffset||document.documentElement.scrollTop;if(!e)return;const i=this.getDomRef(),r=i.querySelector(".ui5-tp-clock-mid-dot"),a=i.querySelector(`.${LT}`),n=Math.round(e.offsetHeight/2),s=this._outerHeight(r),l=this._outerHeight(a),c=e.getBoundingClientRect();this._dimensionParameters={radius:n,centerX:n,centerY:n,dotHeight:s,numberHeight:l,activeRadiusMax:n,activeRadiusMin:n-1.5*l-1,offsetX:c.left+t,offsetY:c.top+o}}_calculatePosition(e,t){const o=e-this._dimensionParameters.offsetX+1-this._dimensionParameters.radius,i=t-this._dimensionParameters.offsetY+1-this._dimensionParameters.radius,r=o>=0?0:180,a=180*Math.atan(i/o)/Math.PI+90+r,n=360/this.itemMax*this.valueStep,s=Math.sqrt(o*o+i*i),l=s<=this._dimensionParameters.activeRadiusMax&&s>this._dimensionParameters.activeRadiusMin;let c=Math.round((0===a?360:a)/n)*n;0===c&&(c=360),this._selectedValue=l?c/n*this.valueStep:-1,this._hoveredValue=l?this._selectedValue:-1,this._selectedValue===this.itemMax&&-1!==this.lastItemReplacement&&(this._selectedValue=this.lastItemReplacement)}_modifyValue(e){let t=this.selectedValue;const o=this.lastItemReplacement;let i,r=this.valueStep;t%r!==0&&(i=e?Math.ceil(t/r)*r:Math.floor(t/r)*r,r=Math.abs(t-i)),t===o&&(t=this.itemMax),e?(t+=r,t>this.itemMax&&(t-=this.itemMax)):(t-=r,t<this.itemMin&&(t=this.itemMax)),this._setSelectedValue(t)}_setSelectedValue(e,t=!1){const o=this._fixReplacementValue(e);this.selectedValue=o,this.fireDecoratorEvent("change",{value:o,stringValue:this._getStringValue(o),finalChange:t}),this._selectedItem=this._updateSelectedOrHoveredItem(o,NT)}_onTouchStart(e){if(this._cancelTouchOut=!1,this.disabled||this._mouseOrTouchDown)return;const t="touchstart"===e.type?e.touches[0].pageX:e.pageX,o="touchstart"===e.type?e.touches[0].pageY:e.pageY;this._movSelectedValue=this.selectedValue,this._calculateDimensions(),this._calculatePosition(t,o),this._mouseOrTouchDown=!0}_onTouchMove(e){if(e.preventDefault(),this._mouseOrTouchDown){const t="touchmove"===e.type?e.touches[0].pageX:e.pageX,o="touchmove"===e.type?e.touches[0].pageY:e.pageY;this._calculatePosition(t,o),this.disabled||-1===this._selectedValue||this._selectedValue===this._movSelectedValue||(this._setSelectedValue(this._selectedValue),this._movSelectedValue=0+this._selectedValue)}else"mousemove"===e.type&&(this._dimensionParameters.radius||this._calculateDimensions(),this._calculatePosition(e.pageX,e.pageY))}_onTouchEnd(e){this._mouseOrTouchDown&&(this._mouseOrTouchDown=!1,e.preventDefault(),this.disabled||-1===this._selectedValue||this._cancelTouchOut||this._setSelectedValue(this._selectedValue,!0))}_onMouseWheel(e){const t=e.detail?e.detail>0:e.deltaY>0||e.deltaX>0;e.preventDefault(),this._mouseOrTouchDown||this._modifyValue(t)}_onMouseOut(){this._hoveredValue=-1,this._prevHoveredValue=-1}noop(){return!1}};OT([bn({type:Boolean})],HT.prototype,"disabled",void 0),OT([bn({type:Boolean})],HT.prototype,"active",void 0),OT([bn({type:Number})],HT.prototype,"itemMin",void 0),OT([bn({type:Number})],HT.prototype,"itemMax",void 0),OT([bn()],HT.prototype,"label",void 0),OT([bn({type:Boolean})],HT.prototype,"hideFractions",void 0),OT([bn({type:Number})],HT.prototype,"lastItemReplacement",void 0),OT([bn({type:Boolean})],HT.prototype,"prependZero",void 0),OT([bn({type:Number})],HT.prototype,"selectedValue",void 0),OT([bn({type:Number})],HT.prototype,"displayStep",void 0),OT([bn({type:Number})],HT.prototype,"valueStep",void 0),OT([bn({type:Array,noAttribute:!0})],HT.prototype,"_items",void 0),OT([bn({type:Object})],HT.prototype,"_selectedItem",void 0),OT([bn({type:Object})],HT.prototype,"_hoveredItem",void 0),OT([bn({type:Object})],HT.prototype,"_dimensionParameters",void 0),OT([bn({type:Boolean,noAttribute:!0})],HT.prototype,"_mouseOrTouchDown",void 0),OT([bn({type:Boolean,noAttribute:!0})],HT.prototype,"_cancelTouchOut",void 0),OT([bn({type:Number,noAttribute:!0})],HT.prototype,"_selectedValue",void 0),OT([bn({type:Number,noAttribute:!0})],HT.prototype,"_movSelectedValue",void 0),OT([bn({type:Number,noAttribute:!0})],HT.prototype,"_hoveredValue",void 0),OT([bn({type:Number,noAttribute:!0})],HT.prototype,"_prevHoveredValue",void 0),OT([bn({type:Boolean})],HT.prototype,"_skipAnimation",void 0),OT([yk(".ui5-tp-clock-number")],HT.prototype,"_firstNumberElement",void 0),OT([yk(".ui5-tp-clock")],HT.prototype,"_clockWrapper",void 0),HT=OT([fn({tag:"ui5-time-picker-clock",renderer:ms,styles:'.ui5-tp-clock{position:relative;width:auto;padding:.5625rem;outline:none;display:none}.ui5-tp-clock-active{display:block}.ui5-tp-clock-dial{position:relative;width:auto;display:block;border-radius:100%;background-color:var(--sapLegend_WorkingBackground);text-align:center;z-index:1}.ui5-tp-clock-dial:before{content:attr(data-label);display:flex;align-items:center;justify-content:center;position:absolute;font-family:var(--sapFontFamily);font-size:var(--sapFontSize);color:var(--sapContent_LabelColor);inset:2.75rem;border-radius:100%;z-index:2}.ui5-tp-clock-dial:after{content:"";display:block;padding-bottom:100%}.ui5-tp-clock-inner .ui5-tp-clock-dial:before{background-color:var(--sapLegend_WorkingBackground)}.ui5-tp-clock-cover{position:absolute;inset:-.25rem;border-radius:100%;z-index:10;touch-action:none}.ui5-tp-clock-item{position:absolute;top:0;left:50%;display:inline-block;width:2.75rem;height:100%;z-index:3;-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.ui5-tp-clock-item.ui5-tp-clock-marker{z-index:4}.ui5-tp-clock-dot{display:block;box-sizing:border-box;width:.25rem;height:.3125rem;margin:0 auto .25rem;border-radius:100%;background-color:var(--sapField_BorderColor)}.ui5-tp-clock-mid-dot{display:block;box-sizing:border-box;width:.125rem;height:.1875rem;margin:0 auto .375rem;border-radius:100%;background-color:var(--sapField_BorderColor)}.ui5-tp-clock-select-marker{box-sizing:border-box;width:.25rem;height:.5625rem;margin:0 auto;border-radius:100%;background-color:var(--sapButton_Selected_Background);border:.0625rem solid var(--sapButton_Selected_BorderColor)}.ui5-tp-clock-hover-marker{box-sizing:border-box;width:.25rem;height:.5625rem;margin:0 auto;border-radius:100%;background-color:var(--sapList_Hover_Background);border:.0625rem solid var(--sapGroup_TitleBorderColor)}.ui5-tp-clock-number{box-sizing:border-box;display:inline-block;width:2.75rem;height:2.75rem;border-radius:100%;line-height:2.75rem;text-align:center;vertical-align:top;font-family:var(--sapFontFamily);font-size:var(--sapFontSize);color:var(--sapTextColor);border:.0625rem solid transparent}.ui5-tp-clock-number.ui5-tp-clock-number-hover:not(.ui5-tp-clock-selected){background-color:var(--sapList_Hover_Background);z-index:5}.ui5-tp-clock-selected{color:var(--sapButton_Selected_TextColor);background-color:var(--sapButton_Selected_Background);border:.0625rem solid var(--sapButton_Selected_BorderColor)}.ui5-tp-clock-hovered{background-color:var(--sapList_Hover_Background);z-index:5}.ui5-tp-clock-pointer{cursor:pointer}.ui5-tp-clock-items,.ui5-tp-clock-markers{position:absolute;inset:0}:host(:not([_skip-animation])) .ui5-tp-clock-active:not(.ui5-tp-clock-transition) .ui5-tp-clock-items .ui5-tp-clock-number,:host(:not([_skip-animation])) .ui5-tp-clock-active:not(.ui5-tp-clock-transition) .ui5-tp-clock-items .ui5-tp-clock-mid-dot,:host(:not([_skip-animation])) .ui5-tp-clock-active:not(.ui5-tp-clock-transition) .ui5-tp-clock-number.ui5-tp-clock-selected,:host(:not([_skip-animation])) .ui5-tp-clock-active:not(.ui5-tp-clock-transition) .ui5-tp-clock-select-marker,:host(:not([_skip-animation])) .ui5-tp-clock-active:not(.ui5-tp-clock-transition) .ui5-tp-clock-dial:before{opacity:0}.ui5-tp-clock-transition .ui5-tp-clock-items .ui5-tp-clock-number{animation-name:fadeOutClockItems;animation-delay:.15s;animation-duration:.2s;animation-timing-function:ease-out;animation-fill-mode:forwards}.ui5-tp-clock-transition .ui5-tp-clock-dial:before{animation-name:fadeOutClockLabel;animation-duration:.35s;animation-timing-function:ease-out;animation-fill-mode:forwards}.ui5-tp-clock-transition .ui5-tp-clock-number.ui5-tp-clock-selected,.ui5-tp-clock-transition .ui5-tp-clock-select-marker{animation-name:fadeOutSelectedItem;animation-delay:.1s;animation-duration:.15s;animation-timing-function:ease-out;animation-fill-mode:forwards}.ui5-tp-clock-transition .ui5-tp-clock-items .ui5-tp-clock-mid-dot{animation-name:fadeOutSelectedItem;animation-delay:.15s;animation-duration:.2s;animation-timing-function:ease-out;animation-fill-mode:forwards}:host(:not([_skip-animation])) .ui5-tp-clock-active:not(.ui5-tp-clock-transition) .ui5-tp-clock-items .ui5-tp-clock-number{animation-name:fadeInClockItems;animation-delay:.15s;animation-duration:.2s;animation-timing-function:ease-in;animation-fill-mode:forwards}:host(:not([_skip-animation])) .ui5-tp-clock-active:not(.ui5-tp-clock-transition) .ui5-tp-clock-dial:before{animation-name:fadeInClockLabel;animation-duration:.35s;animation-timing-function:ease-in;animation-fill-mode:forwards}:host(:not([_skip-animation])) .ui5-tp-clock-active:not(.ui5-tp-clock-transition) .ui5-tp-clock-number.ui5-tp-clock-selected,:host(:not([_skip-animation])) .ui5-tp-clock-active:not(.ui5-tp-clock-transition) .ui5-tp-clock-select-marker{animation-name:fadeInSelectedItem;animation-delay:.1s;animation-duration:.15s;animation-timing-function:ease-in;animation-fill-mode:forwards}:host(:not([_skip-animation])) .ui5-tp-clock-active:not(.ui5-tp-clock-transition) .ui5-tp-clock-items .ui5-tp-clock-mid-dot{animation-name:fadeInSelectedItem;animation-delay:.15s;animation-duration:.2s;animation-timing-function:ease-in;animation-fill-mode:forwards}@keyframes fadeOutClockItems{0%{opacity:1;display:block}to{opacity:0;display:block}}@keyframes fadeOutClockLabel{0%{opacity:1;display:flex;transform:translateY(0)}to{opacity:0;display:flex;transform:translateY(-16px)}}@keyframes fadeOutSelectedItem{0%{opacity:1;display:block}to{opacity:0;display:block}}@keyframes fadeInClockItems{0%{opacity:0;display:block}to{opacity:1;display:block}}@keyframes fadeInClockLabel{0%{opacity:0;display:flex;transform:translateY(16px)}to{opacity:1;display:flex;transform:translateY(0)}}@keyframes fadeInSelectedItem{0%{opacity:0;display:block}50%{opacity:.5;display:block}to{opacity:1;display:block}}\n',template:function(){return y_("div",{id:`${this._id}`,onDragStart:this.noop,onDrop:this.noop,"aria-hidden":"true",class:{"ui5-tp-clock":!0,"ui5-tp-clock-active":this.active},children:[b_("div",{"data-label":this.label,class:"ui5-tp-clock-dial"}),b_("div",{class:"ui5-tp-clock-items",children:this._items.map((e,t)=>b_("div",{class:"ui5-tp-clock-item",style:{transform:`translate(-50%) rotate(${(t+1)*this._angleStep}deg`},children:e.item?y_(f_,{children:[b_("span",{class:"ui5-tp-clock-dot"}),b_("span",{id:`${this._id}-${e.item}`,class:"ui5-tp-clock-number",style:{transform:`rotate(-${(t+1)*this._angleStep}deg)`},children:e.item})]}):b_("span",{class:"ui5-tp-clock-mid-dot"})}))}),y_("div",{class:"ui5-tp-clock-markers",children:[this._selectedItem.showMarker&&y_("div",{class:"ui5-tp-clock-item",style:{transform:`translate(-50%) rotate(${this._selectedItem.angle||0}deg)`},children:[b_("div",{class:"ui5-tp-clock-select-marker"}),b_("div",{class:this._selectedItem.itemClasses,style:{transform:`rotate(-${this._selectedItem.angle||0}deg)`},children:this._selectedItem.item})]}),this._hoveredItem.showMarker&&y_("div",{class:"ui5-tp-clock-item",style:{transform:`translate(-50%) rotate(${this._hoveredItem.angle||0}deg)`},children:[b_("div",{class:"ui5-tp-clock-hover-marker"}),b_("div",{class:this._hoveredItem.itemClasses,style:{transform:`rotate(-${this._hoveredItem.angle||0}deg)`},children:this._hoveredItem.item})]})]}),b_("div",{class:{"ui5-tp-clock-cover":!0,"ui5-tp-clock-pointer":this._hoveredItem.showMarker},onTouchStart:this._onTouchStart,onTouchMove:this._onTouchMove,onTouchEnd:this._onTouchEnd,onMouseDown:this._onTouchStart,onMouseMove:this._onTouchMove,onMouseUp:this._onTouchEnd,onMouseOut:this._onMouseOut,onWheel:this._onMouseWheel})]})}}),yn("change",{bubbles:!0})],HT),HT.define();var UT=HT;C_(),Ca(),Ch(),wh(),St("@ui5/webcomponents-theming","sap_horizon",async()=>ch),St("@ui5/webcomponents","sap_horizon",async()=>_h,"host");wn(),kn(),xn(),tc();var VT=function(e,t,o,i){var r,a=arguments.length,n=a<3?t:null===i?i=Object.getOwnPropertyDescriptor(t,o):i;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)n=Reflect.decorate(e,t,o,i);else for(var s=e.length-1;s>=0;s--)(r=e[s])&&(n=(a<3?r(n):a>3?r(t,o,n):r(t,o))||n);return a>3&&n&&Object.defineProperty(t,o,n),n},WT=class extends AT{constructor(){super(...arguments),this._spacePressed=!1,this._focused=!1,this._amPmFocused=!1,this._skipAnimation=!1}onBeforeRendering(){this._createComponents()}_buttonComponent(e){const t="string"==typeof e?this._indexFromName(e):e,o=this._entities[t].entity;return o?this.shadowRoot?.querySelector(`#${this._id}_button_${o}`):void 0}_clockComponent(e){const t="string"==typeof e?this._indexFromName(e):e,o=this._entities[t].entity;return o?this.shadowRoot?.querySelector(`#${this._id}_clock_${o}`):void 0}_clocksFocusIn(e){e.target.id===this._id&&this._switchClock(this._activeIndex)}_buttonFocusIn(e){const t=e.target,o=this._getNameFromId(t.id),i=this._getIndexFromId(t.id);this._activeIndex!==i&&o&&this._switchTo(o)}_amPmFocusIn(){this._amPmFocused=!0}_amPmFocusOut(){this._amPmFocused=!1}_onkeyup(e){Cs(e)&&(this._spacePressed=!1)}_onkeydown(e){let t;const o=e.target&&-1===e.target.tagName.toLowerCase().indexOf("segmented");if(fs(e)){if(this._amPmFocused){const e=this._buttonAmPm()?.selectedItems[0];e?.textContent&&this._calculatePeriodChange(e.textContent)}this.fireDecoratorEvent("close-picker")}else if(Cs(e)&&o&&!this._spacePressed)e.preventDefault(),this._spacePressed=!0,this._keyboardBuffer="",this._resetCooldown(!0),this._switchNextClock(!0,!0);else if(!Ss(e)&&!Ts(e)||Ds(e)||As(e))if(Vs(e)||Ws(e))t=this._clockComponent("hours"),t&&!t.disabled&&(this._switchTo("hours",!0),t._modifyValue(Vs(e))),e.preventDefault();else if(qs(e)||Ys(e))t=this._clockComponent("minutes"),t&&!t.disabled&&(this._switchTo("minutes",!0),t._modifyValue(qs(e))),e.preventDefault();else if(Gs(e)||Ks(e))t=this._clockComponent("seconds"),t&&!t.disabled&&(this._switchTo("seconds",!0),t._modifyValue(Gs(e))),e.preventDefault();else if(nl(e)||sl(e)){const t=this._buttonAmPm();if(t){t.items[0].selected=nl(e),t.items[1].selected=sl(e);const o=nl(e)?t.items[0].textContent:t.items[1].textContent;o&&this._calculatePeriodChange(o)}e.preventDefault()}else ul(e)?(this._keyboardBuffer="",this._exactMatch=void 0,this._resetCooldown(!0),this._switchNextClock(!0,!0)):dl(e)&&this._entities[this._activeIndex]&&(this._exactMatch=void 0,this._resetCooldown(!0),this._numbersInput(e));else t=this._clockComponent(this._activeIndex),t&&!t.disabled&&!this._amPmFocused&&t._modifyValue(Ss(e)),e.preventDefault()}_numbersInput(e){const t=e.key,o=this._keyboardBuffer+t,i=parseInt(o),r=this._entities[this._activeIndex];let a=this._clockComponent(this._activeIndex);r&&r.attributes&&(i>r.attributes.max?(a&&a._setSelectedValue(parseInt(this._keyboardBuffer)),this._switchNextClock(!1,!0),this._keyboardBuffer=t,a=this._clockComponent(this._activeIndex),a&&a._setSelectedValue(parseInt(t)),this._resetCooldown(!0)):(this._keyboardBuffer=o,a&&a._setSelectedValue(parseInt(this._keyboardBuffer)),(2===this._keyboardBuffer.length||parseInt(`${this._keyboardBuffer}0`)>r.attributes.max)&&(this._resetCooldown(2!==this._keyboardBuffer.length),this._keyboardBuffer="",this._switchNextClock(!1,!0))))}_focusFirstButton(){this._activeIndex=0,this._buttonComponent(0).focus()}_setExactMatch(){const e=this._clockComponent(this._activeIndex);e&&void 0!==this._exactMatch&&e._setSelectedValue(this._exactMatch)}_createComponents(){const e={hours:parseInt(this._hours),minutes:parseInt(this._minutes),seconds:parseInt(this._seconds)};this._entities=[],this._periods=[],this._componentMap={hours:-1,minutes:-1,seconds:-1},this._hasHoursComponent&&(this._componentMap.hours=this._entities.length,this._entities.push({label:this.hoursLabel,entity:"hours",itemMin:1,itemMax:this._hoursConfiguration.isTwelveHoursFormat?12:24,value:e.hours,stringValue:this._hours,textValue:`${e.hours} ${this.hoursLabel}`,displayStep:this._hoursConfiguration.isTwelveHoursFormat?1:2,lastItemReplacement:this._hoursConfiguration.isTwelveHoursFormat?-1:0,hideFractions:!this._hoursConfiguration.isTwelveHoursFormat,prependZero:this._zeroPaddedHours,hasSeparator:this._entities.length>0,active:!1,skipAnimation:!1,attributes:{min:this._hoursConfiguration.minHour,max:this._hoursConfiguration.maxHour,step:1}})),this._hasMinutesComponent&&(this._componentMap.minutes=this._entities.length,this._entities.push({label:this.minutesLabel,entity:"minutes",itemMin:1,itemMax:60,value:e.minutes,stringValue:this._minutes,textValue:`${e.minutes} ${this.minutesLabel}`,displayStep:5,lastItemReplacement:0,hideFractions:!1,prependZero:!1,hasSeparator:this._entities.length>0,active:!1,skipAnimation:!1,attributes:{min:0,max:59,step:1}})),this._hasSecondsComponent&&(this._componentMap.seconds=this._entities.length,this._entities.push({label:this.secondsLabel,entity:"seconds",itemMin:1,itemMax:60,value:e.seconds,stringValue:this._seconds,textValue:`${e.seconds} ${this.secondsLabel}`,displayStep:5,lastItemReplacement:0,hideFractions:!1,prependZero:!1,hasSeparator:this._entities.length>0,active:!1,skipAnimation:!1,attributes:{min:0,max:59,step:1}})),this._entities[this._activeIndex].active=!0,this._entities[this._activeIndex].skipAnimation=this._skipAnimation,this._createPeriodComponent()}_switchTo(e,t=!1){const o=this._componentKey(e);void 0!==this._componentMap[o]&&this._switchClock(this._componentMap[o],t)}_switchClock(e,t=!1){if(this._activeIndex===e||!this._entities.length||e>=this._entities.length)return;const o=this._clockComponent(this._activeIndex),i=this._clockComponent(e);this._skipAnimation&&0!==e&&0===this._activeIndex&&o&&(o._skipAnimation=!1,this._skipAnimation=t),i&&t?(i._skipAnimation=!0,this._activateClock(e)):(o?._firstNumberElement?.addEventListener("animationend",()=>this._activateClock(e),{once:!0}),o?._clockWrapper?.classList.add("ui5-tp-clock-transition"))}_activateClock(e){const t=this._buttonComponent(e);this._entities[this._activeIndex].active=!1,this._activeIndex=e,this._entities[this._activeIndex].active=!0,t&&t.focus()}_switchNextClock(e=!1,t=!1){let o=this._activeIndex;const i=o,r=this._clockComponent(o);do{o++,o>=this._entities.length&&(o=e?0:this._entities.length-1)}while(r&&r.disabled&&o!==i&&(e||o<this._entities.length-1));const a=this._clockComponent(o);o!==i&&a&&!a.disabled&&this._switchClock(o,t)}_clockChange(e){const t=this._getIndexFromId(e.target.id),o=e.detail.stringValue,i=e.detail.value,r=this._buttonComponent(t);if(r){switch(this._entities[t].stringValue=o,this._entities[t].value=i,this._entities=JSON.parse(JSON.stringify(this._entities)),t){case this._componentMap.hours:this._hoursChange(i);break;case this._componentMap.minutes:this._minutesChange(i);break;case this._componentMap.seconds:this._secondsChange(i)}e.detail.finalChange&&(this._activeIndex<this._entities.length-1?this._switchNextClock():r.focus())}}};VT([bn({type:Boolean,noAttribute:!0})],WT.prototype,"_spacePressed",void 0),VT([bn({type:Boolean,noAttribute:!0})],WT.prototype,"_focused",void 0),VT([bn({type:Boolean,noAttribute:!0})],WT.prototype,"_amPmFocused",void 0),VT([bn({type:Boolean})],WT.prototype,"_skipAnimation",void 0),(WT=VT([yn("close-picker",{bubbles:!0}),fn({tag:"ui5-time-selection-clocks",styles:".ui5-time-picker-tsc-container{margin:0 auto;box-sizing:border-box;width:100%;padding:1rem;text-align:center}.ui5-time-picker-tsc-container:focus{outline:none}.ui5-time-picker-tsc-buttons{display:flex;justify-content:center;align-items:center;padding-bottom:1rem;width:100%}.ui5-time-picker-tsc-buttons .ui5-time-selection-separator{min-width:.5rem;padding:0 .125rem;text-align:center;font-family:var(--sapFontFamily);font-size:var(--sapFontSize);color:var(--sapContent_LabelColor)}.ui5-time-picker-tsc-clocks{display:block;text-align:center;width:100%;touch-action:none}\n",template:function(){return y_("div",{id:`${this._id}`,class:"ui5-time-picker-tsc-container",tabindex:-1,onKeyDown:this._onkeydown,onKeyUp:this._onkeyup,onFocusIn:this._clocksFocusIn,children:[y_("div",{class:"ui5-time-picker-tsc-buttons",children:[this._entities.map(e=>y_(f_,{children:[e.hasSeparator&&b_("span",{class:"ui5-time-selection-separator",children:":"}),b_(RT,{"data-sap-focus-ref":!0,id:`${this._id}_button_${e.entity}`,"data-ui5-clock":e.entity,valueMin:e.attributes&&e.attributes.min,valueMax:e.attributes&&e.attributes.max,valueNow:e.value,valueText:e.textValue,accessibleName:e.label,pressed:e.active,onFocusIn:this._buttonFocusIn,children:e.stringValue})]})),this._periods.length>0&&y_(f_,{children:[b_("span",{class:"ui5-time-selection-separator"}),b_(TT,{id:`${this._id}_AmPm`,onClick:this._periodChange,onFocusIn:this._amPmFocusIn,onFocusOut:this._amPmFocusOut,children:this._periods.map(e=>b_(CT,{selected:e.selected,children:e.label}))})]})]}),b_("div",{class:"ui5-time-picker-tsc-clocks",role:"img","aria-label":this.clockDialAriaLabel,children:this._entities.map(e=>b_(UT,{id:`${this._id}_clock_${e.entity}`,"data-ui5-clock":e.entity,active:e.active,label:e.label,itemMin:e.itemMin,itemMax:e.itemMax,selectedValue:e.value,displayStep:e.displayStep,valueStep:e.attributes&&e.attributes.step,lastItemReplacement:e.lastItemReplacement,hideFractions:e.hideFractions,prependZero:e.prependZero,_skipAnimation:e.skipAnimation,onChange:this._clockChange}))})]})}})],WT)).define();var qT=WT;function jT(){return y_(f_,{children:[this._phoneView&&b_("div",{class:"ui5-dt-picker-header",children:y_(TT,{class:"ui5-dt-picker-toggle-button",onSelectionChange:this._dateTimeSwitchChange,children:[b_(CT,{"data-ui5-key":"Date",selected:this.showDateView,children:this.btnDateLabel}),b_(CT,{"data-ui5-key":"Time",selected:this.showTimeView,children:this.btnTimeLabel})]})}),y_("div",{class:{"ui5-dt-picker-content":!0,"ui5-dt-picker-content--phone":this._phoneView},children:[b_(aT,{class:{"ui5-dt-cal":!0,"ui5-dt-cal--hidden":this._phoneView&&this.showTimeView,"ui5-dt-time--hidden":this._phoneView&&this.showDateView},id:`${this._id}-calendar`,primaryCalendarType:this._primaryCalendarType,secondaryCalendarType:this.secondaryCalendarType,formatPattern:this._formatPattern,selectionMode:this._calendarSelectionMode,minDate:this.minDate,maxDate:this.maxDate,calendarWeekNumbering:this.calendarWeekNumbering,onSelectionChange:this.onSelectedDatesChange,onShowMonthView:this.onHeaderShowMonthPress,onShowYearView:this.onHeaderShowYearPress,hideWeekNumbers:this.hideWeekNumbers,_currentPicker:this._calendarCurrentPicker,children:this._calendarSelectedDates.map(e=>b_(lS,{value:e}))}),!this._phoneView&&b_("span",{class:"ui5-dt-picker-separator"}),this.showTimeView&&b_(qT,{id:`${this._id}-time-sel`,class:{"ui5-dt-time":!0,"ui5-dt-cal--hidden":this._phoneView&&this.showTimeView,"ui5-dt-time--hidden":this._phoneView&&this.showDateView},formatPattern:this._formatPattern,value:this._timeSelectionValue,onChange:this.onTimeSelectionChange,_calendarType:this._primaryCalendarType})]})]})}function YT(){return y_("div",{slot:"footer",class:{"ui5-dt-picker-footer":!0,"ui5-dt-picker-footer-time-hidden":this._phoneView&&this.showTimeView||this._phoneView&&this.showDateView},children:[b_(tp,{id:"ok",class:"ui5-dt-picker-action",design:"Emphasized",disabled:this._submitDisabled,onClick:this._submitClick,children:this.btnOKLabel}),b_(tp,{id:"cancel",class:"ui5-dt-picker-action",design:"Transparent",onClick:this._cancelClick,children:this.btnCancelLabel})]})}C_(),gp(),Ca(),Ch(),wh(),St("@ui5/webcomponents-theming","sap_horizon",async()=>ch),St("@ui5/webcomponents","sap_horizon",async()=>_h,"host");Ca(),Ch(),wh(),St("@ui5/webcomponents-theming","sap_horizon",async()=>ch),St("@ui5/webcomponents","sap_horizon",async()=>_h,"host");kn(),wn(),yp(),en(),Pa(),yh(),ba();var $T,GT,KT=function(e,t,o,i){var r,a=arguments.length,n=a<3?t:null===i?i=Object.getOwnPropertyDescriptor(t,o):i;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)n=Reflect.decorate(e,t,o,i);else for(var s=e.length-1;s>=0;s--)(r=e[s])&&(n=(a<3?r(n):a>3?r(t,o,n):r(t,o))||n);return a>3&&n&&Object.defineProperty(t,o,n),n},ZT=$T=class extends mT{constructor(){super(),this._showTimeView=!1,this._phoneMode=!1,this._previewValues={},this._lastValidValue="",this._handleResizeBound=this._handleResize.bind(this)}onResponsivePopoverAfterClose(){super.onResponsivePopoverAfterClose(),this._showTimeView=!1,this._previewValues={}}onEnterDOM(){dp.register(document.body,this._handleResizeBound)}onExitDOM(){dp.deregister(document.body,this._handleResizeBound)}_togglePicker(){if(super._togglePicker(),this.open){let e=this.value;e&&this.isValidValue(e)||(e=this._lastValidValue||this.getValueFormat().format(Sw.getInstance())),this._previewValues={...this._previewValues,timeSelectionValue:e}}}get formValidityMessage(){const e=this.formValidity;return e.valueMissing?$T.i18nBundle.getText(td,this.getFormat().oFormatOptions.pattern):e.patternMismatch?$T.i18nBundle.getText(od,this.getFormat().oFormatOptions.pattern):e.rangeUnderflow?$T.i18nBundle.getText(rd,this.minDate):e.rangeOverflow?$T.i18nBundle.getText(id,this.maxDate):""}get formValidity(){return{valueMissing:this.required&&!this.value,patternMismatch:!this.isValidValue(this.value),rangeUnderflow:!this.isValidMin(this.value),rangeOverflow:!this.isValidMax(this.value)}}get _formatPattern(){const e=this.formatPattern||this.valueFormat||"medium",t=!!(e||"").match(/H/i),o=!e||!t,i=uw(rr());return o?i.getCombinedDateTimePattern("medium","medium",this._primaryCalendarType):e||""}get _calendarTimestamp(){return this._previewValues.calendarTimestamp?this._previewValues.calendarTimestamp:super._calendarTimestamp}get _calendarSelectedDates(){return this._previewValues.calendarValue?[this._previewValues.calendarValue]:super._calendarSelectedDates}get _timeSelectionValue(){return this._previewValues.timeSelectionValue?this._previewValues.timeSelectionValue:this.value}get openIconName(){return"date-time"}get btnOKLabel(){return $T.i18nBundle.getText(_u)}get btnCancelLabel(){return $T.i18nBundle.getText(du)}get btnDateLabel(){return $T.i18nBundle.getText(hu)}get btnTimeLabel(){return $T.i18nBundle.getText(pu)}get showFooter(){return!0}get showDateView(){return!this._phoneView||!this._showTimeView}get showTimeView(){return!this._phoneView||this._showTimeView}get _phoneView(){return Ao()||this._phoneMode}get roleDescription(){return $T.i18nBundle.getText(ed)}get pickerAccessibleName(){return $T.i18nBundle.getText(sd,this.ariaLabelText)}get _shouldHideHeader(){return!1}async onSelectedDatesChange(e){e.preventDefault();let t=this._clocks?.value||"";t&&this.isValidValue(t)||(t=this._lastValidValue||this.getValueFormat().format(Sw.getInstance())),this._previewValues={...this._previewValues,calendarTimestamp:e.detail.timestamp,calendarValue:e.detail.selectedValues[0],timeSelectionValue:t},this._showTimeView=!0,this.showDateView||(await ht(),this._clocks.focus())}onTimeSelectionChange(e){this._previewValues={...this._previewValues,timeSelectionValue:e.detail.value}}_handleResize(){const e=document.body.offsetWidth<=640;(e&&!this._phoneMode||!e&&this._phoneMode)&&(this._phoneMode=e)}get _submitDisabled(){return!this._calendarSelectedDates||!this._calendarSelectedDates.length}_submitClick(){const e=this.getSelectedDateTime(),t=this.getValueFormat().format(e);this.value!==t&&this._updateValueAndFireEvents(t,!0,["change","value-changed"]),this._togglePicker()}_cancelClick(){this._togglePicker()}_dateTimeSwitchChange(e){const t=e.detail.selectedItems[0];this._showTimeView="Time"===t.getAttribute("data-ui5-key")}_modifyDateValue(e,t,o){if(!this.dateValue)return;const i=jw(Hw.fromLocalJSDate(this.dateValue),e,t,o,this._minDate,this._maxDate).toLocalJSDate();i.setHours(this.dateValue.getHours()),i.setMinutes(this.dateValue.getMinutes()),i.setSeconds(this.dateValue.getSeconds());const r=this.formatValue(i);this._updateValueAndFireEvents(r,!0,["change","value-changed"])}_updateValueAndFireEvents(e,t,o,i=!0){super._updateValueAndFireEvents(e,t,o,i),this.value&&this.isValidValue(this.value)&&(this._lastValidValue=this.value)}_checkValueValidity(e){return""===e||this.isValidValue(e)}getSelectedDateTime(){const e=this.getValueFormat().parse(this._calendarSelectedDates[0]),t=this.getValueFormat().parse(this._timeSelectionValue);return t&&(e.setHours(t.getHours()),e.setMinutes(t.getMinutes()),e.setSeconds(t.getSeconds())),e}getFormat(){return this._isPattern?bk.getDateTimeInstance({strictParsing:!0,pattern:this._formatPattern,calendarType:this._primaryCalendarType}):bk.getDateTimeInstance({strictParsing:!0,style:this._formatPattern,calendarType:this._primaryCalendarType})}getDisplayFormat(){return this._isDisplayFormatPattern?bk.getDateTimeInstance({strictParsing:!0,pattern:this._displayFormat,calendarType:this._primaryCalendarType}):bk.getDateTimeInstance({strictParsing:!0,style:this._displayFormat,calendarType:this._primaryCalendarType})}getValueFormat(){return this._valueFormat?this._isValueFormatPattern?bk.getDateTimeInstance({strictParsing:!0,pattern:this._valueFormat,calendarType:this._primaryCalendarType}):bk.getDateTimeInstance({strictParsing:!0,style:this._valueFormat,calendarType:this._primaryCalendarType}):this.getISOFormat()}getISOFormat(){return this._isoFormatInstance||(this._isoFormatInstance=bk.getDateTimeInstance({strictParsing:!0,pattern:"YYYY-MM-dd hh:mm:ss",calendarType:this._primaryCalendarType})),this._isoFormatInstance}get _calendarPickersMode(){return wk.DAY_MONTH_YEAR}};KT([bn({type:Boolean,noAttribute:!0})],ZT.prototype,"_showTimeView",void 0),KT([bn({type:Boolean})],ZT.prototype,"_phoneMode",void 0),KT([bn({type:Object})],ZT.prototype,"_previewValues",void 0),KT([yk("[ui5-time-selection-clocks]")],ZT.prototype,"_clocks",void 0),(ZT=$T=KT([fn({tag:"ui5-datetime-picker",template:function(){return[iS.call(this),nT.call(this,{content:jT,footer:YT,initialFocus:this.initialFocusId})]},styles:[mT.styles,":host{min-width:15rem;color:var(--sapField_TextColor);background-color:var(--sapField_Background)}:host .ui5-date-picker-input{width:100%;min-width:inherit;color:inherit;background-color:inherit}\n",":host .ui5-date-picker-popover{width:auto}:host .ui5-date-picker-popover:not([on-phone]) .ui5-popover-header{width:100%;max-width:100%;display:block}.ui5-dt-picker-content{display:flex;flex-direction:row;height:var(--_ui5_datetime_picker_height);min-width:var(--_ui5_datetime_picker_width);box-sizing:border-box;justify-content:center}.ui5-dt-picker-toggle-button{width:8rem}.ui5-dt-cal{width:auto;box-sizing:border-box}.ui5-dt-time{width:100%;min-width:var(--_ui5_datetime_timeview_width);box-sizing:border-box}.ui5-dt-cal.ui5-dt-cal--hidden,.ui5-dt-time.ui5-dt-time--hidden{display:none}.ui5-dt-picker-header{display:flex;justify-content:center;width:100%;margin-top:1rem;box-sizing:border-box}.ui5-dt-picker-separator{height:calc(100% - 2rem);width:0px;margin-top:1rem;margin-bottom:1rem;border-left:1px solid var(--sapGroup_ContentBorderColor);box-sizing:border-box}.ui5-dt-picker-footer{display:flex;justify-content:flex-end;align-items:center;height:2.75rem;width:100%}.ui5-dt-picker-footer.ui5-dt-picker-footer-time-hidden{padding:0}.ui5-dt-picker-action{margin:.25rem}#ok.ui5-dt-picker-action{width:4rem}.ui5-dt-picker-content--phone.ui5-dt-picker-content{min-width:20rem;height:calc(100% - 4rem)}.ui5-dt-picker-content--phone.ui5-dt-picker-content [ui5-time-selection-clocks]{height:var(--_ui5_datetime_timeview_phonemode_clocks_width);width:auto}.ui5-dt-picker-content--phone.ui5-dt-picker-content [ui5-calendar]{margin-bottom:var(--_ui5_datetime_dateview_phonemode_margin_bottom)}.ui5-dt-picker-content--phone .ui5-dt-cal{width:100%}.ui5-dt-picker-content--phone .ui5-dt-time{min-width:var(--_ui5_datetime_timeview_phonemode_width)}\n"]})],ZT)).define(),function(e){e.Information="Information",e.Positive="Positive",e.Negative="Negative",e.Critical="Critical",e.ColorSet1="ColorSet1",e.ColorSet2="ColorSet2"}(GT||(GT={}));var XT=GT;function JT(){switch(this.design){case XT.Critical:return sf;case XT.Positive:return lf;case XT.Negative:return nf;case XT.Information:return cf;default:return}}C_(),gp(),xh(),Um(),Tf(),kf(),vf(),yf(),Ca(),Ch(),wh(),St("@ui5/webcomponents-theming","sap_horizon",async()=>ch),St("@ui5/webcomponents","sap_horizon",async()=>_h,"host");Cn(),kn(),Wn(),xn(),wn(),ec(),qn(),yh();var QT,eB,tB=function(e,t,o,i){var r,a=arguments.length,n=a<3?t:null===i?i=Object.getOwnPropertyDescriptor(t,o):i;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)n=Reflect.decorate(e,t,o,i);else for(var s=e.length-1;s>=0;s--)(r=e[s])&&(n=(a<3?r(n):a>3?r(t,o,n):r(t,o))||n);return a>3&&n&&Object.defineProperty(t,o,n),n};!function(e){e.Information="ui5-message-strip-root--info",e.Positive="ui5-message-strip-root--positive",e.Negative="ui5-message-strip-root--negative",e.Critical="ui5-message-strip-root--critical",e.ColorSet1="ui5-message-strip-root--color-set-1",e.ColorSet2="ui5-message-strip-root--color-set-2"}(eB||(eB={}));var oB=QT=class extends hn{constructor(){super(...arguments),this.design="Information",this.colorScheme="1",this.hideIcon=!1,this.hideCloseButton=!1}_closeClick(){this.fireDecoratorEvent("close")}static designAnnouncementMappings(){const e=e=>QT.i18nBundle.getText(e);return{Information:e(Jd),Positive:e(Xd),Negative:e(Kd),Critical:e(Zd),ColorSet1:e(Qd),ColorSet2:e(Qd)}}get hiddenText(){return`${QT.designAnnouncementMappings()[this.design]} ${this.hideCloseButton?"":this._closableText}`}get shouldHideIcon(){return this.designClasses===eB.ColorSet1||this.designClasses===eB.ColorSet2?this.hideIcon||0===this.icon.length:this.hideIcon}static closeButtonMappings(){const e=e=>QT.i18nBundle.getText(e);return{Information:e(Wd),Positive:e(qd),Negative:e(jd),Critical:e(Yd),ColorSet1:e($d),ColorSet2:e($d)}}get _closeButtonText(){return QT.closeButtonMappings()[this.design]}get _closableText(){return QT.i18nBundle.getText(Gd)}get iconProvided(){return this.icon.length>0}get designClasses(){return eB[this.design]}};function iB(){return y_("div",{part:"content",id:`${this._id}-content`,class:"ui5-li-content",children:[this.displayIconBegin&&b_(gh,{part:"icon",name:this.icon,class:"ui5-li-icon",mode:"Decorative"}),y_("div",{class:"ui5-li-text-wrapper",children:[b_("span",{part:"title",class:"ui5-li-title",children:b_("slot",{})}),this.additionalText&&b_("span",{part:"additional-text",class:"ui5-li-additional-text",children:this.additionalText})]})]})}tB([bn()],oB.prototype,"design",void 0),tB([bn()],oB.prototype,"colorScheme",void 0),tB([bn({type:Boolean})],oB.prototype,"hideIcon",void 0),tB([bn({type:Boolean})],oB.prototype,"hideCloseButton",void 0),tB([Sn()],oB.prototype,"icon",void 0),tB([Tn("@ui5/webcomponents")],oB,"i18nBundle",void 0),(oB=QT=tB([fn({tag:"ui5-message-strip",fastNavigation:!0,languageAware:!0,renderer:ms,template:function(){return y_("div",{id:this._id,class:{"ui5-message-strip-root":!0,"ui5-message-strip-root-hide-icon":this.shouldHideIcon,"ui5-message-strip-root-hide-close-button":this.hideCloseButton,[this.designClasses]:!0},role:"note","aria-labelledby":"hidden-text content-text",children:[!this.shouldHideIcon&&b_("div",{class:"ui5-message-strip-icon-wrapper","aria-hidden":"true",children:this.iconProvided?b_("slot",{name:"icon"}):b_(gh,{name:JT.call(this),class:"ui5-message-strip-icon"})}),b_("span",{class:"ui5-hidden-text",id:"hidden-text",children:this.hiddenText}),b_("span",{class:"ui5-message-strip-text",id:"content-text",children:b_("slot",{})}),!this.hideCloseButton&&b_(tp,{icon:"decline",design:"Transparent",class:"ui5-message-strip-close-button",tooltip:this._closeButtonText,accessibleName:this._closeButtonText,onClick:this._closeClick})]})},styles:'.ui5-hidden-text{position:absolute;clip:rect(1px,1px,1px,1px);user-select:none;left:-1000px;top:-1000px;pointer-events:none;font-size:0}:host(:not([hidden])){display:inline-block;width:100%}.ui5-message-strip-root{width:100%;height:100%;display:flex;border-radius:var(--sapPopover_BorderCornerRadius);padding:var(--_ui5_message_strip_padding);border-width:var(--_ui5_message_strip_border_width);border-style:solid;box-sizing:border-box;position:relative}.ui5-message-strip-root-hide-icon{padding-inline:var(--_ui5_message_strip_padding_inline_no_icon);padding-block:var(--_ui5_message_strip_padding_block_no_icon)}.ui5-message-strip-root-hide-close-button{padding-inline-end:1rem}.ui5-message-strip-root--info{background-color:var(--sapInformationBackground);border-color:var(--sapMessage_InformationBorderColor);color:var(--sapTextColor)}.ui5-message-strip-root--info .ui5-message-strip-icon{color:var(--sapInformativeElementColor)}.ui5-message-strip-root--positive{background-color:var(--sapSuccessBackground);border-color:var(--sapMessage_SuccessBorderColor)}.ui5-message-strip-root--positive .ui5-message-strip-icon{color:var(--sapPositiveElementColor)}.ui5-message-strip-root--negative{background-color:var(--sapErrorBackground);border-color:var(--sapMessage_ErrorBorderColor)}.ui5-message-strip-root--negative .ui5-message-strip-icon{color:var(--sapNegativeElementColor)}.ui5-message-strip-root--critical{background-color:var(--sapWarningBackground);border-color:var(--sapMessage_WarningBorderColor)}.ui5-message-strip-root--critical .ui5-message-strip-icon{color:var(--sapCriticalElementColor)}.ui5-message-strip-icon-wrapper{position:absolute;top:var(--_ui5_message_strip_icon_top);inset-inline-start:.75rem;box-sizing:border-box}.ui5-message-strip-text{width:100%;color:var(--sapTextColor);line-height:1.2;font-family:var(--sapFontFamily);font-size:var(--sapFontSize)}.ui5-message-strip-close-button{height:1.625rem;min-height:1.625rem;position:absolute;top:var(--_ui5_message_strip_close_button_top);inset-inline-end:var(--_ui5_message_strip_close_button_right)}:host([color-scheme="1"]) .ui5-message-strip-root--color-set-1,:host(:not([color-scheme])[design="ColorSet1"]) .ui5-message-strip-root--color-set-1{background-color:var(--sapIndicationColor_1_Background);border-color:var(--sapIndicationColor_1_BorderColor)}:host([color-scheme="2"]) .ui5-message-strip-root--color-set-1{background-color:var(--sapIndicationColor_2_Background);border-color:var(--sapIndicationColor_2_BorderColor)}:host([color-scheme="3"]) .ui5-message-strip-root--color-set-1{background-color:var(--sapIndicationColor_3_Background);border-color:var(--sapIndicationColor_3_BorderColor)}:host([color-scheme="4"]) .ui5-message-strip-root--color-set-1{background-color:var(--sapIndicationColor_4_Background);border-color:var(--sapIndicationColor_4_BorderColor)}:host([color-scheme="5"]) .ui5-message-strip-root--color-set-1{background-color:var(--sapIndicationColor_5_Background);border-color:var(--sapIndicationColor_5_BorderColor)}:host([color-scheme="6"]) .ui5-message-strip-root--color-set-1{background-color:var(--sapIndicationColor_6_Background);border-color:var(--sapIndicationColor_6_BorderColor)}:host([color-scheme="7"]) .ui5-message-strip-root--color-set-1{background-color:var(--sapIndicationColor_7_Background);border-color:var(--sapIndicationColor_7_BorderColor)}:host([color-scheme="8"]) .ui5-message-strip-root--color-set-1{background-color:var(--sapIndicationColor_8_Background);border-color:var(--sapIndicationColor_8_BorderColor)}:host([color-scheme="9"]) .ui5-message-strip-root--color-set-1{background-color:var(--sapIndicationColor_9_Background);border-color:var(--sapIndicationColor_9_BorderColor)}:host([color-scheme="10"]) .ui5-message-strip-root--color-set-1{background-color:var(--sapIndicationColor_10_Background);border-color:var(--sapIndicationColor_10_BorderColor)}:host([color-scheme="1"]) .ui5-message-strip-root--color-set-2,:host(:not([color-scheme])[design="ColorSet2"]) .ui5-message-strip-root--color-set-2{background-color:var(--_ui5_message_strip_scheme_1_set_2_background);border-color:var(--_ui5_message_strip_scheme_1_set_2_border_color)}:host([color-scheme="2"]) .ui5-message-strip-root--color-set-2{background-color:var(--_ui5_message_strip_scheme_2_set_2_background);border-color:var(--_ui5_message_strip_scheme_2_set_2_border_color)}:host([color-scheme="3"]) .ui5-message-strip-root--color-set-2{background-color:var(--_ui5_message_strip_scheme_3_set_2_background);border-color:var(--_ui5_message_strip_scheme_3_set_2_border_color)}:host([color-scheme="4"]) .ui5-message-strip-root--color-set-2{background-color:var(--_ui5_message_strip_scheme_4_set_2_background);border-color:var(--_ui5_message_strip_scheme_4_set_2_border_color)}:host([color-scheme="5"]) .ui5-message-strip-root--color-set-2{background-color:var(--_ui5_message_strip_scheme_5_set_2_background);border-color:var(--_ui5_message_strip_scheme_5_set_2_border_color)}:host([color-scheme="6"]) .ui5-message-strip-root--color-set-2{background-color:var(--_ui5_message_strip_scheme_6_set_2_background);border-color:var(--_ui5_message_strip_scheme_6_set_2_border_color)}:host([color-scheme="7"]) .ui5-message-strip-root--color-set-2{background-color:var(--_ui5_message_strip_scheme_7_set_2_background);border-color:var(--_ui5_message_strip_scheme_7_set_2_border_color)}:host([color-scheme="8"]) .ui5-message-strip-root--color-set-2{background-color:var(--_ui5_message_strip_scheme_8_set_2_background);border-color:var(--_ui5_message_strip_scheme_8_set_2_border_color)}:host([color-scheme="9"]) .ui5-message-strip-root--color-set-2{background-color:var(--_ui5_message_strip_scheme_9_set_2_background);border-color:var(--_ui5_message_strip_scheme_9_set_2_border_color)}:host([color-scheme="10"]) .ui5-message-strip-root--color-set-2{background-color:var(--_ui5_message_strip_scheme_10_set_2_background);border-color:var(--_ui5_message_strip_scheme_10_set_2_border_color)}:host([design="ColorSet1"]) .ui5-message-strip-root .ui5-message-strip-text{color:var(--sapContent_ContrastTextColor);text-shadow:var(--sapContent_ContrastTextShadow)}:host([design="ColorSet1"]) .ui5-message-strip-root ::slotted([slot="icon"]){color:var(--sapContent_ContrastIconColor);text-shadow:var(--sapContent_ContrastTextShadow)}:host([design="ColorSet2"]) .ui5-message-strip-root .ui5-message-strip-text{color:var(--sapTextColor)}:host([design="ColorSet1"]) .ui5-message-strip-close-button{color:var(--_ui5_message_strip_close_button_color_set_1_color)}:host([design="ColorSet2"]) .ui5-message-strip-close-button,:host([design="ColorSet2"]) .ui5-message-strip-root ::slotted([slot="icon"]){color:var(--sapContent_IconColor)}:host([design="ColorSet1"]) .ui5-message-strip-close-button:hover{border-color:var(--sapContent_ContrastIconColor);background-color:var(--_ui5_message_strip_close_button_color_set_1_background);color:var(--_ui5_message_strip_close_button_color_set_1_color);text-shadow:var(--sapContent_ContrastTextShadow)}:host([design="ColorSet2"]) .ui5-message-strip-close-button:hover{background-color:var(--_ui5_message_strip_close_button_color_set_2_background);border-color:var(--sapContent_IconColor);color:var(--sapContent_IconColor)}:host([design="ColorSet1"]) .ui5-message-strip-close-button:active{background:none;border-color:var(--sapContent_ContrastIconColor)}:host([design="ColorSet2"]) .ui5-message-strip-close-button:active{background:none;border-color:var(--sapContent_IconColor)}:host([design="ColorSet1"]) .ui5-message-strip-close-button::part(button):after,:host([design="ColorSet1"]) .ui5-message-strip-close-button::part(button):before{border-color:var(--sapContent_ContrastFocusColor)}\n'}),yn("close")],oB)).define(),C_(),xh(),kx(),Ca(),Ch(),wh(),St("@ui5/webcomponents-theming","sap_horizon",async()=>ch),St("@ui5/webcomponents","sap_horizon",async()=>_h,"host");Ca(),Ch(),wh(),St("@ui5/webcomponents-theming","sap_horizon",async()=>ch),St("@ui5/webcomponents","sap_horizon",async()=>_h,"host");wn(),Wn(),kn(),tm();var rB=function(e,t,o,i){var r,a=arguments.length,n=a<3?t:null===i?i=Object.getOwnPropertyDescriptor(t,o):i;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)n=Reflect.decorate(e,t,o,i);else for(var s=e.length-1;s>=0;s--)(r=e[s])&&(n=(a<3?r(n):a>3?r(t,o,n):r(t,o))||n);return a>3&&n&&Object.defineProperty(t,o,n),n},aB=class extends qg{get displayIconBegin(){return!!this.icon}get effectiveDisplayText(){return this.textContent||""}};rB([Sn({type:Node,default:!0,invalidateOnChildChange:!0})],aB.prototype,"text",void 0),rB([bn()],aB.prototype,"value",void 0),rB([bn()],aB.prototype,"icon",void 0),rB([bn()],aB.prototype,"additionalText",void 0),rB([bn()],aB.prototype,"tooltip",void 0),rB([bn({type:Boolean})],aB.prototype,"selected",void 0),(aB=rB([fn({tag:"ui5-option",template:function(){return Cx.call(this,{listItemContent:iB},{role:"option",title:this.tooltip})},styles:[qg.styles,ky,".ui5-li-icon{color:var(--sapList_TextColor);min-width:var(--_ui5_list_item_icon_size);min-height:var(--_ui5_list_item_icon_size);padding-inline-end:var(--_ui5_list_item_icon_padding-inline-end)}\n",":host{height:var(--_ui5_list_item_dropdown_base_height);--_ui5_list_item_title_size: var(--sapFontSize)}\n"]})],aB)).define();var nB,sB=new WeakMap,lB=class e{static get tasks(){return sB}static enqueue(e,t){sB.has(e)||sB.set(e,[]),sB.get(e).push(t)}static run(t,o){return sB.has(t)||sB.set(t,[]),o().then(()=>{const o=sB.get(t);if(o.length>0)return e.run(t,o.shift());sB.delete(t)})}static push(t,o){sB.get(t)?e.enqueue(t,o):e.run(t,o)}},cB=e=>{let t,o,i,r=null,a=!1;const n=new Promise((n,s)=>{i=o=>{r=r||o;const s=o-r,l=e.duration-s;if(s<=e.duration){const o=1-l/e.duration;e.advance(o),a||(t=requestAnimationFrame(i))}else e.advance(1),n()},o=()=>{a=!0,cancelAnimationFrame(t),s(new Error("animation stopped"))}}).catch(e=>e);return lB.push(e.element,()=>("function"==typeof e.beforeStart&&e.beforeStart(),requestAnimationFrame(i),new Promise(e=>{n.then(()=>e())}))),{promise:()=>n,stop:()=>o}};_a(),sa(),la(),_e(()=>{nB=void 0});C_(),gp(),xh(),Ca(),Ch(),wh(),St("@ui5/webcomponents-theming","sap_horizon",async()=>ch),St("@ui5/webcomponents","sap_horizon",async()=>_h,"host");Cn(),wn(),xn(),kn(),Wn(),ec(),tc(),sa(),Pa(),qn(),yh();var _B,dB,uB=function(e,t,o,i){var r,a=arguments.length,n=a<3?t:null===i?i=Object.getOwnPropertyDescriptor(t,o):i;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)n=Reflect.decorate(e,t,o,i);else for(var s=e.length-1;s>=0;s--)(r=e[s])&&(n=(a<3?r(n):a>3?r(t,o,n):r(t,o))||n);return a>3&&n&&Object.defineProperty(t,o,n),n},hB=_B=class extends hn{constructor(){super(...arguments),this.fixed=!1,this.collapsed=!1,this.noAnimation=!1,this.accessibleRole="Form",this.headerLevel="H2",this.stickyHeader=!1,this.useAccessibleNameForToggleButton=!1,this._hasHeader=!1,this._contentExpanded=!1,this._animationRunning=!1,this._pendingToggle=!1,this._touched=!1}onBeforeRendering(){this._animationRunning||(this._contentExpanded=!this.collapsed),this._hasHeader=!!this.header.length}shouldToggle(e){return!this.header.length||e.classList.contains("ui5-panel-header-button")}get shouldNotAnimate(){return this.noAnimation||(void 0===nB&&(nB=we()),nB===se.None)}_isMobile(){To()&&(this._touched=!0)}_headerFocusOut(){this._touched=!1}_headerClick(e){this.shouldToggle(e.target)&&this._toggleOpen()}_toggleButtonClick(e){0===e.detail.originalEvent.x&&0===e.detail.originalEvent.y&&e.stopImmediatePropagation()}_headerKeyDown(e){this.shouldToggle(e.target)&&(fs(e)&&this._toggleOpen(),Cs(e)&&(e.preventDefault(),this._pendingToggle=!0),Os(e)&&this._pendingToggle&&(e.preventDefault(),this._pendingToggle=!1))}_headerKeyUp(e){this.shouldToggle(e.target)&&(fs(e)&&e.preventDefault(),Cs(e)&&(this._pendingToggle&&this._toggleOpen(),this._pendingToggle=!1))}_toggleOpen(){if(this.fixed)return;if(this.collapsed=!this.collapsed,this.shouldNotAnimate)return void this.fireDecoratorEvent("toggle");this._animationRunning=!0;const e=this.getDomRef().querySelectorAll(".ui5-panel-content"),t=[];[].forEach.call(e,e=>{this.collapsed?t.push((e=>{let t,o,i,r,a,n,s,l,c,_,d,u;const h=cB({beforeStart:()=>{const h=e;t=getComputedStyle(h),o=parseFloat(t.paddingTop),i=parseFloat(t.paddingBottom),r=parseFloat(t.marginTop),a=parseFloat(t.marginBottom),n=parseFloat(t.height),s=h.style.overflow,l=h.style.paddingTop,c=h.style.paddingBottom,_=h.style.marginTop,d=h.style.marginBottom,u=h.style.height,h.style.overflow="hidden"},duration:400,element:e,advance:t=>{e.style.paddingTop=o-o*t+"px",e.style.paddingBottom=i-i*t+"px",e.style.marginTop=r-r*t+"px",e.style.marginBottom=a-a*t+"px",e.style.height=n-n*t+"px"}});return h.promise().then(t=>{t instanceof Error||(e.style.overflow=s,e.style.paddingTop=l,e.style.paddingBottom=c,e.style.marginTop=_,e.style.marginBottom=d,e.style.height=u,e.style.display="none")}),h})(e).promise()):t.push((e=>{let t,o,i,r,a,n,s,l,c,_,d,u;const h=cB({beforeStart:()=>{e.style.display="block",t=getComputedStyle(e),o=parseFloat(t.paddingTop),i=parseFloat(t.paddingBottom),r=parseFloat(t.marginTop),a=parseFloat(t.marginBottom),n=parseFloat(t.height),s=e.style.overflow,l=e.style.paddingTop,c=e.style.paddingBottom,_=e.style.marginTop,d=e.style.marginBottom,u=e.style.height,e.style.overflow="hidden",e.style.paddingTop="0",e.style.paddingBottom="0",e.style.marginTop="0",e.style.marginBottom="0",e.style.height="0"},duration:400,element:e,advance:t=>{e.style.display="block",e.style.paddingTop=o*t+"px",e.style.paddingBottom=i*t+"px",e.style.marginTop=r*t+"px",e.style.marginBottom=a*t+"px",e.style.height=n*t+"px"}});return h.promise().then(()=>{e.style.overflow=s,e.style.paddingTop=l,e.style.paddingBottom=c,e.style.marginTop=_,e.style.marginBottom=d,e.style.height=u}),h})(e).promise())}),Promise.all(t).then(()=>{this._animationRunning=!1,this._contentExpanded=!this.collapsed,this.fireDecoratorEvent("toggle")})}_headerOnTarget(e){return e.classList.contains("sapMPanelWrappingDiv")}get toggleButtonTitle(){return _B.i18nBundle.getText(tu)}get expanded(){return!this.collapsed}get accRole(){return this.accessibleRole.toLowerCase()}get effectiveAccessibleName(){return"string"==typeof this.accessibleName&&this.accessibleName.length?this.accessibleName:void 0}get accInfo(){return{button:{accessibilityAttributes:{expanded:this.expanded},title:this.toggleButtonTitle,ariaLabelButton:!this.nonFocusableButton&&this.useAccessibleNameForToggleButton?this.effectiveAccessibleName:void 0},ariaExpanded:this.nonFixedInternalHeader?this.expanded:void 0,ariaControls:this.nonFixedInternalHeader?`${this._id}-content`:void 0,ariaLabelledby:this.nonFocusableButton?this.ariaLabelledbyReference:void 0,role:this.nonFixedInternalHeader?"button":void 0}}get ariaLabelledbyReference(){return this.nonFocusableButton&&this.headerText&&!this.fixed?`${this._id}-header-title`:void 0}get fixedPanelAriaLabelledbyReference(){return this.fixed&&!this.effectiveAccessibleName?`${this._id}-header-title`:void 0}get headerAriaLevel(){return Number.parseInt(this.headerLevel.slice(1))}get headerTabIndex(){return this.header.length||this.fixed?-1:0}get headingWrapperAriaLevel(){return this._hasHeader?void 0:this.headerAriaLevel}get headingWrapperRole(){return this._hasHeader?void 0:"heading"}get nonFixedInternalHeader(){return!this._hasHeader&&!this.fixed}get hasHeaderOrHeaderText(){return this._hasHeader||this.headerText}get nonFocusableButton(){return!this.header.length}};uB([bn()],hB.prototype,"headerText",void 0),uB([bn({type:Boolean})],hB.prototype,"fixed",void 0),uB([bn({type:Boolean})],hB.prototype,"collapsed",void 0),uB([bn({type:Boolean})],hB.prototype,"noAnimation",void 0),uB([bn()],hB.prototype,"accessibleRole",void 0),uB([bn()],hB.prototype,"headerLevel",void 0),uB([bn()],hB.prototype,"accessibleName",void 0),uB([bn({type:Boolean})],hB.prototype,"stickyHeader",void 0),uB([bn({type:Boolean})],hB.prototype,"useAccessibleNameForToggleButton",void 0),uB([bn({type:Boolean})],hB.prototype,"_hasHeader",void 0),uB([bn({type:Boolean,noAttribute:!0})],hB.prototype,"_contentExpanded",void 0),uB([bn({type:Boolean,noAttribute:!0})],hB.prototype,"_animationRunning",void 0),uB([bn({type:Boolean,noAttribute:!0})],hB.prototype,"_pendingToggle",void 0),uB([bn({type:Boolean})],hB.prototype,"_touched",void 0),uB([Sn()],hB.prototype,"header",void 0),uB([Tn("@ui5/webcomponents")],hB,"i18nBundle",void 0),(hB=_B=uB([fn({tag:"ui5-panel",fastNavigation:!0,languageAware:!0,renderer:ms,template:function(){return b_(f_,{children:y_("div",{class:"ui5-panel-root",role:this.accRole,"aria-label":this.effectiveAccessibleName,"aria-labelledby":this.fixedPanelAriaLabelledbyReference,children:[this.hasHeaderOrHeaderText&&b_("div",{class:{"ui5-panel-heading-wrapper":!0,"ui5-panel-heading-wrapper-sticky":this.stickyHeader},role:this.headingWrapperRole,"aria-level":this.headingWrapperAriaLevel,children:y_("div",{onClick:this._headerClick,onKeyDown:this._headerKeyDown,onKeyUp:this._headerKeyUp,onTouchStart:this._isMobile,onFocusOut:this._headerFocusOut,class:"ui5-panel-header",tabindex:this.headerTabIndex,role:this.accInfo.role,"aria-expanded":this.accInfo.ariaExpanded,"aria-controls":this.accInfo.ariaControls,"aria-labelledby":this.accInfo.ariaLabelledby,part:"header",children:[!this.fixed&&b_("div",{class:"ui5-panel-header-button-root",children:this._hasHeader?b_(tp,{design:"Transparent",class:"ui5-panel-header-button ui5-panel-header-button-with-icon",onClick:this._toggleButtonClick,accessibilityAttributes:this.accInfo.button.accessibilityAttributes,tooltip:this.accInfo.button.title,accessibleName:this.accInfo.button.ariaLabelButton,children:b_("div",{class:"ui5-panel-header-icon-wrapper",children:b_(gh,{class:{"ui5-panel-header-icon":!0,"ui5-panel-header-button-animated":!this.shouldNotAnimate},name:"slim-arrow-right"})})}):b_(gh,{class:{"ui5-panel-header-button":!0,"ui5-panel-header-icon":!0,"ui5-panel-header-button-animated":!this.shouldNotAnimate},name:"slim-arrow-right",showTooltip:!0,accessibleName:this.toggleButtonTitle})}),this._hasHeader?b_("slot",{name:"header"}):b_("div",{id:`${this._id}-header-title`,class:"ui5-panel-header-title",children:this.headerText})]})}),b_("div",{class:"ui5-panel-content",id:`${this._id}-content`,tabindex:-1,style:{display:this._contentExpanded?"block":"none"},part:"content",children:b_("slot",{})})]})})},styles:'.ui5-hidden-text{position:absolute;clip:rect(1px,1px,1px,1px);user-select:none;left:-1000px;top:-1000px;pointer-events:none;font-size:0}:host(:not([hidden])){display:block}:host{font-family:var(--sapFontFamily);background-color:var(--sapGroup_TitleBackground);border-radius:var(--_ui5_panel_border_radius)}:host(:not([collapsed])){border-bottom:var(--_ui5_panel_border_bottom)}:host([fixed]) .ui5-panel-header{padding-left:1rem}.ui5-panel-header{min-height:var(--_ui5_panel_header_height);width:100%;position:relative;display:flex;justify-content:flex-start;align-items:center;outline:none;box-sizing:border-box;padding-right:var(--_ui5_panel_header_padding_right);font-family:var(--sapFontHeaderFamily);font-size:var(--sapGroup_Title_FontSize);font-weight:400;color:var(--sapGroup_TitleTextColor)}.ui5-panel-header-icon{color:var(--_ui5_panel_icon_color)}.ui5-panel-header-button-animated{transition:transform .4s ease-out}:host(:not([_has-header]):not([fixed])) .ui5-panel-header{cursor:pointer}:host(:not([_has-header]):not([fixed])) .ui5-panel-header:focus:after{content:"";position:absolute;pointer-events:none;z-index:2;border:var(--_ui5_panel_focus_border);border-radius:var(--_ui5_panel_border_radius);top:var(--_ui5_panel_focus_offset);bottom:var(--_ui5_panel_focus_bottom_offset);left:var(--_ui5_panel_focus_offset);right:var(--_ui5_panel_focus_offset)}:host(:not([collapsed]):not([_has-header]):not([fixed])) .ui5-panel-header:focus:after{border-radius:var(--_ui5_panel_border_radius_expanded)}:host([_touched]:not([_has-header]):not([fixed])) .ui5-panel-header:focus:after{display:none}:host(:not([collapsed])) .ui5-panel-header-button:not(.ui5-panel-header-button-with-icon),:host(:not([collapsed])) .ui5-panel-header-icon-wrapper [ui5-icon]{transform:var(--_ui5_panel_toggle_btn_rotation)}:host([fixed]) .ui5-panel-header-title{width:100%}.ui5-panel-heading-wrapper.ui5-panel-heading-wrapper-sticky{position:sticky;top:0;background-color:var(--_ui5_panel_header_background_color);z-index:100;border-radius:var(--_ui5_panel_border_radius)}.ui5-panel-header-title{width:calc(100% - var(--_ui5_panel_button_root_width));overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.ui5-panel-content{padding:var(--_ui5_panel_content_padding);background-color:var(--sapGroup_ContentBackground);outline:none;border-bottom-left-radius:var(--_ui5_panel_border_radius);border-bottom-right-radius:var(--_ui5_panel_border_radius);overflow:auto}.ui5-panel-header-button-root{display:flex;justify-content:center;align-items:center;flex-shrink:0;width:var(--_ui5_panel_button_root_width);height:var(--_ui5_panel_button_root_height);padding:var(--_ui5_panel_header_button_wrapper_padding);box-sizing:border-box}:host([fixed]:not([collapsed]):not([_has-header])) .ui5-panel-header,:host([collapsed]) .ui5-panel-header{border-bottom:.0625rem solid var(--sapGroup_TitleBorderColor)}:host([collapsed]) .ui5-panel-header{border-bottom-left-radius:var(--_ui5_panel_border_radius);border-bottom-right-radius:var(--_ui5_panel_border_radius)}:host(:not([fixed]):not([collapsed])) .ui5-panel-header{border-bottom:var(--_ui5_panel_default_header_border)}[ui5-button].ui5-panel-header-button{display:flex;justify-content:center;align-items:center;min-width:initial;height:100%;width:100%}.ui5-panel-header-icon-wrapper{display:flex;justify-content:center;align-items:center}.ui5-panel-header-icon-wrapper,.ui5-panel-header-icon-wrapper .ui5-panel-header-icon{color:inherit}.ui5-panel-header-icon-wrapper,[ui5-button].ui5-panel-header-button-with-icon [ui5-icon]{pointer-events:none}.ui5-panel-root{height:100%;display:flex;flex-direction:column}\n'}),yn("toggle",{bubbles:!0})],hB)).define(),function(e){e.Bullet="Bullet",e.Dash="Dash",e.VerticalLine="VerticalLine"}(dB||(dB={}));var pB=dB;function gB(){return y_(f_,{children:[this.options.length>0&&y_(Ib,{id:this.responsivePopoverId,class:{"ui5-select-popover":!0,...this.classes.popover},part:"popover",style:this.styles.responsivePopover,placement:"Bottom",horizontalAlign:"Start",hideArrow:!0,preventInitialFocus:!0,onOpen:this._afterOpen,onBeforeOpen:this._beforeOpen,onClose:this._afterClose,onKeyDown:this._onkeydown,accessibleName:this._isPhone?this._headerTitleText:void 0,children:[this._isPhone&&y_("div",{slot:"header",class:"ui5-responsive-popover-header",children:[y_("div",{class:"row",children:[b_(nv,{children:this._headerTitleText}),b_(tp,{class:"ui5-responsive-popover-close-btn",icon:"decline",design:"Transparent",onClick:this._toggleRespPopover})]}),this.hasValueStateText&&b_("div",{class:{row:!0,"ui5-select-value-state-dialog-header":!0,...this.classes.popoverValueState},children:this._isPickerOpen&&mB.call(this)})]}),!this._isPhone&&this.hasValueStateText&&y_("div",{class:this.classes.popoverValueState,style:this.styles.responsivePopoverHeader,children:[b_(gh,{class:"ui5-input-value-state-message-icon",name:this._valueStateMessageInputIcon}),this._isPickerOpen&&mB.call(this)]}),b_(py,{separators:"None",onMouseDown:this._itemMousedown,onItemClick:this._handleItemPress,accessibleRole:"ListBox",children:b_("slot",{})})]}),this.shouldOpenValueStateMessagePopover&&b_(wb,{part:"popover",class:"ui5-valuestatemessage-popover",preventInitialFocus:!0,preventFocusRestore:!0,hideArrow:!0,placement:"Bottom",horizontalAlign:"Start",children:y_("div",{class:this.classes.popoverValueState,style:this.styles.popoverHeader,children:[b_(gh,{class:"ui5-input-value-state-message-icon",name:this._valueStateMessageInputIcon}),mB.call(this)]})})]})}function mB(){return b_(f_,{children:this.shouldDisplayDefaultValueStateMessage?this.valueStateText:b_("slot",{onClick:this._applyFocus,name:"valueStateMessage"})})}C_(),fy(),gp(),Hb(),Lb(),xh(),Um(),cv(),C_(),xh(),Ca(),Ch(),wh(),St("@ui5/webcomponents-theming","sap_horizon",async()=>ch),St("@ui5/webcomponents","sap_horizon",async()=>_h,"host");Ca(),Ch(),wh(),St("@ui5/webcomponents-theming","sap_horizon",async()=>ch),St("@ui5/webcomponents","sap_horizon",async()=>_h,"host");Cn(),wn(),kn(),xn(),Wn(),ec(),tc(),oc(),Ev(),vf(),yf(),kf(),Tf(),Pa(),qn(),fy(),yh(),zh(),Hb(),Lb(),xh(),gp(),px(),gx();var vB,fB=function(e,t,o,i){var r,a=arguments.length,n=a<3?t:null===i?i=Object.getOwnPropertyDescriptor(t,o):i;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)n=Reflect.decorate(e,t,o,i);else for(var s=e.length-1;s>=0;s--)(r=e[s])&&(n=(a<3?r(n):a>3?r(t,o,n):r(t,o))||n);return a>3&&n&&Object.defineProperty(t,o,n),n},bB=vB=class extends hn{constructor(){super(...arguments),this.disabled=!1,this.valueState="None",this.required=!1,this.readonly=!1,this.textSeparator="Dash",this._iconPressed=!1,this.opened=!1,this._listWidth=0,this.focused=!1,this._selectedIndexBeforeOpen=-1,this._escapePressed=!1,this._lastSelectedOption=null,this._typedChars=""}get formValidityMessage(){return vB.i18nBundle.getText(oh)}get formValidity(){return{valueMissing:this.required&&""===this.selectedOption?.getAttribute("value")}}async formElementAnchor(){return this.getFocusDomRefAsync()}get formFormattedValue(){if(void 0!==this._valueStorage)return this._valueStorage;const e=this.selectedOption;return e?"value"in e&&void 0!==e.value?e.value:e.hasAttribute("value")?e.getAttribute("value"):e.textContent:""}onEnterDOM(){kl(this,this._updateAssociatedLabelsTexts.bind(this))}onExitDOM(){Tl(this)}onBeforeRendering(){this._applySelection(),this.style.setProperty("--_ui5-input-icons-count",`${this.iconsCount}`)}onAfterRendering(){this.toggleValueStatePopover(this.shouldOpenValueStateMessagePopover),this._isPickerOpen&&(this._listWidth||(this._listWidth=this.responsivePopover.offsetWidth))}_applySelection(){void 0!==this._valueStorage?this._applySelectionByValue(this._valueStorage):this._applyAutoSelection()}_applySelectionByValue(e){e!==(this.selectedOption?.value||this.selectedOption?.textContent)&&Array.from(this.children).forEach(t=>{t.selected=!((t.getAttribute("value")||t.textContent)!==e)})}_applyAutoSelection(){let e=this.options.findLastIndex(e=>e.selected);e=-1===e?0:e;for(let t=0;t<this.options.length&&(this.options[t].selected=e===t,e!==t);t++);}_setValueByOption(e){this.value=e.value||e.textContent||""}_applyFocus(){this.focus()}_onfocusin(){this.focused=!0}_onfocusout(){this.focused=!1}get _isPickerOpen(){return!!this.responsivePopover&&this.responsivePopover.open}_respPopover(){return this.shadowRoot.querySelector("[ui5-responsive-popover]")}set value(e){this._valueStorage=e}get value(){return void 0!==this._valueStorage?this._valueStorage:void 0===this.selectedOption?.value?this.selectedOption?.textContent||"":this.selectedOption?.value}get _selectedIndex(){return this.options.findIndex(e=>e.selected)}get selectedOption(){return this.options.find(e=>e.selected)}_buildDisplayText(e,t){return t?`${e} ${this._separatorSymbol} ${t}`:e}get text(){const e=this.selectedOption;return e?this.readonly&&e.additionalText?this._buildDisplayText(e.effectiveDisplayText,e.additionalText):e.effectiveDisplayText:""}get _effectiveTooltip(){if(this.tooltip)return this.tooltip;if(this.readonly){const e=this.selectedOption;if(!e)return;const t=e.textContent||"";return this._buildDisplayText(t,e.additionalText)}}get _separatorSymbol(){switch(this.textSeparator){case pB.Bullet:return"·";case pB.VerticalLine:return"|";case pB.Dash:default:return"–"}}_toggleRespPopover(){this.disabled||this.readonly||(this._iconPressed=!0,this.responsivePopover=this._respPopover(),this._isPickerOpen?this.responsivePopover.open=!1:(this.responsivePopover.opener=this,this.responsivePopover.open=!0))}_onkeydown(e){(Ls(e)||Ns(e))&&this._isPickerOpen?this.responsivePopover.open=!1:Zs(e)?(e.preventDefault(),this._toggleRespPopover()):Cs(e)?e.preventDefault():Os(e)&&this._isPickerOpen?this._escapePressed=!0:Es(e)?this._handleHomeKey(e):zs(e)?this._handleEndKey(e):fs(e)&&!e.defaultPrevented?this._handleSelectionChange():Ss(e)||Ts(e)?this._handleArrowNavigation(e):(e=>1===e.key.length&&!e.ctrlKey&&!e.metaKey&&!e.altKey)(e)&&this._handleKeyboardNavigation(e)}_handleKeyboardNavigation(e){if(this.readonly)return;const t=e.key.toLowerCase();this._typedChars+=t;const o=/^(.)\1+$/i.test(this._typedChars)?t:this._typedChars;clearTimeout(this._typingTimeoutID),this._typingTimeoutID=setTimeout(()=>{this._typedChars="",this._typingTimeoutID=-1},1e3),this._selectTypedItem(o)}_selectTypedItem(e){const t=this._selectedIndex,o=this._searchNextItemByText(e);if(o){const e=this.options.indexOf(o);this._changeSelectedItem(this._selectedIndex,e),t!==this._selectedIndex&&(this.itemSelectionAnnounce(),this._scrollSelectedItem())}}_searchNextItemByText(e){let t=this.options.slice(0);const o=t.splice(this._selectedIndex+1,t.length-this._selectedIndex),i=t.splice(0,t.length-1);return t=o.concat(i),t.find(t=>t.effectiveDisplayText.toLowerCase().startsWith(e))}_handleHomeKey(e){e.preventDefault(),this.readonly||this._changeSelectedItem(this._selectedIndex,0)}_handleEndKey(e){if(e.preventDefault(),this.readonly)return;const t=this.options.length-1;this._changeSelectedItem(this._selectedIndex,t)}_onkeyup(e){Cs(e)&&(this._isPickerOpen?this._handleSelectionChange():this._toggleRespPopover())}_getItemIndex(e){return this.options.indexOf(e)}_select(e){const t=this._selectedIndex;if(e<0||e>=this.options.length||0===this.options.length)return;this.options[t]&&(this.options[t].selected=!1);const o=this.options[e];t!==e&&this.fireDecoratorEvent("live-change",{selectedOption:o}),o.selected=!0,void 0!==this._valueStorage&&this._setValueByOption(o)}_handleItemPress(e){const t=e.detail.item,o=this._getItemIndex(t);this._handleSelectionChange(o)}_itemMousedown(e){e.preventDefault()}_onclick(){this.getFocusDomRef().focus(),this._toggleRespPopover()}_handleSelectionChange(e=this._selectedIndex){this._typedChars="",this._select(e),this._toggleRespPopover()}_scrollSelectedItem(){if(this._isPickerOpen){const e=this._currentlySelectedOption?.getDomRef();e&&e.scrollIntoView({behavior:"auto",block:"nearest",inline:"nearest"})}}_handleArrowNavigation(e){if(e.preventDefault(),this.readonly)return;let t=-1;const o=this._selectedIndex;t=Ts(e)?this._getNextOptionIndex():this._getPreviousOptionIndex(),this._changeSelectedItem(this._selectedIndex,t),o!==this._selectedIndex&&(this.itemSelectionAnnounce(),this._scrollSelectedItem())}_changeSelectedItem(e,t){const o=this.options;if(-1===e&&t<0&&o.length&&(t=o.length-1),t<0||t>=o.length)return;const i=o[e],r=o[t];i!==r&&(i&&(i.selected=!1,i.focused=!1),r.selected=!0,r.focused=!0,void 0!==this._valueStorage&&this._setValueByOption(r),this.fireDecoratorEvent("live-change",{selectedOption:r}),this._isPickerOpen||this._fireChangeEvent(r))}_getNextOptionIndex(){return this._selectedIndex===this.options.length-1?this._selectedIndex:this._selectedIndex+1}_getPreviousOptionIndex(){return 0===this._selectedIndex?this._selectedIndex:this._selectedIndex-1}_beforeOpen(){this._selectedIndexBeforeOpen=this._selectedIndex,this._lastSelectedOption=this.options[this._selectedIndex]}_afterOpen(){this.opened=!0,this.fireDecoratorEvent("open"),this.itemSelectionAnnounce(),this._scrollSelectedItem(),this._applyFocusToSelectedItem()}_applyFocusToSelectedItem(){this.options.forEach(e=>{e.focused=e.selected,e.focused&&e.focus()})}_afterClose(){this.opened=!1,this._iconPressed=!1,this._listWidth=0,this._escapePressed?(this._select(this._selectedIndexBeforeOpen),this._escapePressed=!1):this._lastSelectedOption!==this.options[this._selectedIndex]&&(this._fireChangeEvent(this.options[this._selectedIndex]),this._lastSelectedOption=this.options[this._selectedIndex]),this.fireDecoratorEvent("close")}get hasCustomLabel(){return!!this.label.length}_fireChangeEvent(e){const t=!this.fireDecoratorEvent("change",{selectedOption:e});this.fireDecoratorEvent("selected-item-changed"),this.fireDecoratorEvent("input"),t&&this._select(this._selectedIndexBeforeOpen)}get valueStateTextMappings(){return{[pv.Positive]:vB.i18nBundle.getText(wu),[pv.Information]:vB.i18nBundle.getText(Cu),[pv.Negative]:vB.i18nBundle.getText(bu),[pv.Critical]:vB.i18nBundle.getText(yu)}}get valueStateTypeMappings(){return{[pv.Positive]:vB.i18nBundle.getText(vu),[pv.Information]:vB.i18nBundle.getText(fu),[pv.Negative]:vB.i18nBundle.getText(gu),[pv.Critical]:vB.i18nBundle.getText(mu)}}get valueStateText(){let e;return e=this.shouldDisplayDefaultValueStateMessage?this.valueStateDefaultText:this.valueStateMessage.map(e=>e.textContent).join(" "),`${this.valueStateTypeText} ${e}`}get valueStateDefaultText(){return this.valueState!==pv.None?this.valueStateTextMappings[this.valueState]:""}get valueStateTypeText(){return this.valueState!==pv.None?this.valueStateTypeMappings[this.valueState]:""}get hasValueState(){return this.valueState!==pv.None}get valueStateTextId(){return this.hasValueState?`${this._id}-valueStateDesc`:void 0}get responsivePopoverId(){return`${this._id}-popover`}get isDisabled(){return this.disabled||void 0}get _headerTitleText(){return vB.i18nBundle.getText(bd)}get _currentlySelectedOption(){return this.options[this._selectedIndex]}get _effectiveTabIndex(){return this.disabled||this.responsivePopover&&this.responsivePopover.open?-1:0}get _valueStateMessageInputIcon(){return this.valueState!==pv.None?{Negative:"error",Critical:"alert",Positive:"sys-enter-2",Information:"information"}[this.valueState]:""}get iconsCount(){return this.selectedOptionIcon?2:1}get classes(){return{popoverValueState:{"ui5-valuestatemessage-root":!0,"ui5-valuestatemessage-header":!this._isPhone,"ui5-valuestatemessage--success":this.valueState===pv.Positive,"ui5-valuestatemessage--error":this.valueState===pv.Negative,"ui5-valuestatemessage--warning":this.valueState===pv.Critical,"ui5-valuestatemessage--information":this.valueState===pv.Information},popover:{"ui5-select-popover-valuestate":this.hasValueState}}}get styles(){return{popoverHeader:{display:"block"},responsivePopoverHeader:{display:this.options.length&&0===this._listWidth?"none":"inline-block",width:`${this.options.length?this._listWidth:this.offsetWidth}px`,"max-width":"100%"},responsivePopover:{"min-width":`${this.offsetWidth}px`}}}get ariaLabelText(){return ml(this)||Cl(this)}get shouldDisplayDefaultValueStateMessage(){return!this.valueStateMessage.length&&this.hasValueStateText}get hasValueStateText(){return this.hasValueState&&this.valueState!==pv.Positive}get shouldOpenValueStateMessagePopover(){return this.focused&&this.hasValueStateText&&!this._iconPressed&&!this._isPickerOpen&&!this._isPhone}get _ariaRoleDescription(){return vB.i18nBundle.getText(vd)}get _isPhone(){return Ao()}itemSelectionAnnounce(){let e;const t=this.options.length,o=vB.i18nBundle.getText(Md,this._selectedIndex+1,t);this.focused&&this._currentlySelectedOption&&(e=`${this._currentlySelectedOption.textContent} ${this._isPickerOpen?o:""}`,SS(e,wS))}openValueStatePopover(){this.valueStatePopover=this._getPopover(),this.valueStatePopover&&(this.valueStatePopover.opener=this,this.valueStatePopover.open=!0)}closeValueStatePopover(){this.valueStatePopover&&(this.valueStatePopover.open=!1)}toggleValueStatePopover(e){e?this.openValueStatePopover():this.closeValueStatePopover()}get selectedOptionIcon(){return this.selectedOption&&this.selectedOption.icon}get ariaDescriptionText(){return this._associatedDescriptionRefTexts||Bl(this)}get ariaDescriptionTextId(){return this.ariaDescriptionText?"accessibleDescription":""}get ariaDescribedByIds(){const e=[this.valueStateTextId,this.ariaDescriptionTextId].filter(Boolean);return e.length?e.join(" "):void 0}get accessibilityInfo(){return{role:"combobox",type:this._ariaRoleDescription,description:this.text,label:this.ariaLabelText,readonly:this.readonly,required:this.required,disabled:this.disabled}}_updateAssociatedLabelsTexts(){this._associatedDescriptionRefTexts=Il(this)}_getPopover(){return this.shadowRoot.querySelector("[ui5-popover]")}};fB([bn({type:Boolean})],bB.prototype,"disabled",void 0),fB([bn()],bB.prototype,"icon",void 0),fB([bn()],bB.prototype,"name",void 0),fB([bn()],bB.prototype,"valueState",void 0),fB([bn({type:Boolean})],bB.prototype,"required",void 0),fB([bn({type:Boolean})],bB.prototype,"readonly",void 0),fB([bn()],bB.prototype,"accessibleName",void 0),fB([bn()],bB.prototype,"accessibleNameRef",void 0),fB([bn()],bB.prototype,"accessibleDescription",void 0),fB([bn()],bB.prototype,"accessibleDescriptionRef",void 0),fB([bn()],bB.prototype,"tooltip",void 0),fB([bn()],bB.prototype,"textSeparator",void 0),fB([bn({type:String,noAttribute:!0})],bB.prototype,"_associatedDescriptionRefTexts",void 0),fB([bn({type:Boolean,noAttribute:!0})],bB.prototype,"_iconPressed",void 0),fB([bn({type:Boolean})],bB.prototype,"opened",void 0),fB([bn({type:Number,noAttribute:!0})],bB.prototype,"_listWidth",void 0),fB([bn({type:Boolean})],bB.prototype,"focused",void 0),fB([Sn({default:!0,type:HTMLElement,invalidateOnChildChange:!0})],bB.prototype,"options",void 0),fB([Sn()],bB.prototype,"valueStateMessage",void 0),fB([Sn()],bB.prototype,"label",void 0),fB([bn()],bB.prototype,"value",null),fB([Tn("@ui5/webcomponents")],bB,"i18nBundle",void 0),(bB=vB=fB([fn({tag:"ui5-select",languageAware:!0,formAssociated:!0,renderer:ms,template:function(){return y_(f_,{children:[y_("div",{class:{"ui5-select-root":!0,"ui5-input-focusable-element":!0},id:`${this._id}-select`,onClick:this._onclick,title:this._effectiveTooltip,children:[!this.icon&&this.selectedOptionIcon&&b_(gh,{mode:"Decorative",class:"ui5-select-option-icon",name:this.selectedOptionIcon}),b_("div",{class:"ui5-select-label-root","data-sap-focus-ref":!0,tabindex:this._effectiveTabIndex,role:"combobox","aria-haspopup":"listbox","aria-label":this.ariaLabelText,...this.ariaDescribedByIds&&{"aria-describedby":this.ariaDescribedByIds},"aria-disabled":this.isDisabled,"aria-required":this.required,"aria-readonly":this.readonly,"aria-expanded":this._isPickerOpen,"aria-roledescription":this._ariaRoleDescription,onKeyDown:this._onkeydown,onKeyUp:this._onkeyup,onFocusIn:this._onfocusin,onFocusOut:this._onfocusout,"aria-controls":this.responsivePopoverId,children:this.hasCustomLabel?b_("slot",{name:"label"}):this.text}),this.icon&&b_("div",{class:{"ui5-select-icon-root":!0,inputIcon:!0,"inputIcon--pressed":this._iconPressed},children:b_(gh,{name:this.icon,class:{"ui5-select-icon":!0}})}),!this.icon&&!this.readonly&&b_("div",{part:"icon-wrapper",class:{"ui5-select-icon-root":!0,inputIcon:!0,"inputIcon--pressed":this._iconPressed},children:b_(gh,{part:"icon",name:"slim-arrow-down",class:{"ui5-select-icon":!0}})}),this.hasValueState&&b_("span",{id:`${this._id}-valueStateDesc`,class:"ui5-hidden-text",children:this.valueStateText}),this.ariaDescriptionText&&b_("span",{id:"accessibleDescription",class:"ui5-hidden-text",children:this.ariaDescriptionText})]}),gB.call(this)]})},styles:[':host{vertical-align:middle}.ui5-hidden-text{position:absolute;clip:rect(1px,1px,1px,1px);user-select:none;left:-1000px;top:-1000px;pointer-events:none;font-size:0}.inputIcon{color:var(--_ui5_input_icon_color);cursor:pointer;outline:none;padding:var(--_ui5_input_icon_padding);border-inline-start:var(--_ui5_input_icon_border);min-width:1rem;min-height:1rem;border-radius:var(--_ui5_input_icon_border_radius)}.inputIcon.inputIcon--pressed{background:var(--_ui5_input_icon_pressed_bg);box-shadow:var(--_ui5_input_icon_box_shadow);border-inline-start:var(--_ui5_select_hover_icon_left_border);color:var(--_ui5_input_icon_pressed_color)}.inputIcon:active{background-color:var(--sapButton_Active_Background);box-shadow:var(--_ui5_input_icon_box_shadow);border-inline-start:var(--_ui5_select_hover_icon_left_border);color:var(--_ui5_input_icon_pressed_color)}.inputIcon:not(.inputIcon--pressed):not(:active):hover{background:var(--_ui5_input_icon_hover_bg);box-shadow:var(--_ui5_input_icon_box_shadow)}.inputIcon:hover{border-inline-start:var(--_ui5_select_hover_icon_left_border);box-shadow:var(--_ui5_input_icon_box_shadow)}:host(:not([hidden])){display:inline-block}:host{width:var(--_ui5_input_width);min-width:calc(var(--_ui5_input_min_width) + (var(--_ui5-input-icons-count)*var(--_ui5_input_icon_width)));margin:var(--_ui5_input_margin_top_bottom) 0;height:var(--_ui5_input_height);color:var(--sapField_TextColor);font-size:var(--sapFontSize);font-family:var(--sapFontFamily);font-style:normal;border:var(--_ui5-input-border);border-radius:var(--_ui5_input_border_radius);box-sizing:border-box;text-align:start;transition:var(--_ui5_input_transition);background:var(--sapField_BackgroundStyle);background-color:var(--_ui5_input_background_color)}:host(:not([readonly])),:host([readonly][disabled]){box-shadow:var(--sapField_Shadow)}:host([focused]:not([opened])){border-color:var(--_ui5_input_focused_border_color);background-color:var(--sapField_Focus_Background)}.ui5-input-focusable-element{position:relative}:host([focused]:not([opened])) .ui5-input-focusable-element:after{content:var(--ui5_input_focus_pseudo_element_content);position:absolute;pointer-events:none;z-index:2;border:var(--sapContent_FocusWidth) var(--sapContent_FocusStyle) var(--_ui5_input_focus_outline_color);border-radius:var(--_ui5_input_focus_border_radius);top:var(--_ui5_input_focus_offset);bottom:var(--_ui5_input_focus_offset);left:var(--_ui5_input_focus_offset);right:var(--_ui5_input_focus_offset)}:host([focused][readonly]:not([opened])) .ui5-input-focusable-element:after{top:var(--_ui5_input_readonly_focus_offset);bottom:var(--_ui5_input_readonly_focus_offset);left:var(--_ui5_input_readonly_focus_offset);right:var(--_ui5_input_readonly_focus_offset);border-radius:var(--_ui5_input_readonly_focus_border_radius)}.ui5-input-root:before{content:"";position:absolute;width:calc(100% - 2px);left:1px;bottom:-2px;border-bottom-left-radius:8px;border-bottom-right-radius:8px;height:var(--_ui5_input_bottom_border_height);transition:var(--_ui5_input_transition);background-color:var(--_ui5_input_bottom_border_color)}.ui5-input-root{width:100%;height:100%;position:relative;background:transparent;display:inline-block;outline:none;box-sizing:border-box;color:inherit;transition:border-color .2s ease-in-out;border-radius:var(--_ui5_input_border_radius);overflow:hidden}:host([disabled]){opacity:var(--_ui5_input_disabled_opacity);cursor:default;pointer-events:none;background-color:var(--_ui5-input_disabled_background);border-color:var(--_ui5_input_disabled_border_color)}:host([disabled]) .ui5-input-root:before,:host([readonly]) .ui5-input-root:before{content:none}[inner-input]{background:transparent;color:inherit;border:none;font-style:inherit;-webkit-appearance:none;-moz-appearance:textfield;padding:var(--_ui5_input_inner_padding);box-sizing:border-box;width:100%;text-overflow:ellipsis;flex:1;outline:none;font-size:inherit;font-family:inherit;line-height:inherit;letter-spacing:inherit;word-spacing:inherit;text-align:inherit}[inner-input][inner-input-with-icon]{padding:var(--_ui5_input_inner_padding_with_icon)}[inner-input][type=search]::-webkit-search-decoration,[inner-input][type=search]::-webkit-search-cancel-button,[inner-input][type=search]::-webkit-search-results-button,[inner-input][type=search]::-webkit-search-results-decoration{display:none}[inner-input]::-ms-reveal,[inner-input]::-ms-clear{display:none}.ui5-input-value-state-icon{height:100%;display:var(--_ui5-input-value-state-icon-display);align-items:center}.ui5-input-value-state-icon>svg{margin-right:8px}[inner-input]::selection{background:var(--sapSelectedColor);color:var(--sapContent_ContrastTextColor)}:host([disabled]) [inner-input]::-webkit-input-placeholder{visibility:hidden}:host([readonly]) [inner-input]::-webkit-input-placeholder{visibility:hidden}:host([disabled]) [inner-input]::-moz-placeholder{visibility:hidden}:host([readonly]) [inner-input]::-moz-placeholder{visibility:hidden}[inner-input]::-webkit-input-placeholder{font-weight:400;font-style:var(--_ui5_input_placeholder_style);color:var(--_ui5_input_placeholder_color);padding-right:.125rem}[inner-input]::-moz-placeholder{font-weight:400;font-style:var(--_ui5_input_placeholder_style);color:var(--_ui5_input_placeholder_color);padding-right:.125rem}:host([value-state="Negative"]) [inner-input]::-webkit-input-placeholder{color:var(--_ui5-input_error_placeholder_color);font-weight:var(--_ui5_input_value_state_error_warning_placeholder_font_weight)}:host([value-state="Negative"]) [inner-input]::-moz-placeholder{color:var(--_ui5-input_error_placeholder_color);font-weight:var(--_ui5_input_value_state_error_warning_placeholder_font_weight)}:host([value-state="Critical"]) [inner-input]::-webkit-input-placeholder{font-weight:var(--_ui5_input_value_state_error_warning_placeholder_font_weight)}:host([value-state="Critical"]) [inner-input]::-moz-placeholder{font-weight:var(--_ui5_input_value_state_error_warning_placeholder_font_weight)}:host([value-state="Positive"]) [inner-input]::-webkit-input-placeholder{color:var(--_ui5_input_placeholder_color)}:host([value-state="Positive"]) [inner-input]::-moz-placeholder{color:var(--_ui5_input_placeholder_color)}:host([value-state="Information"]) [inner-input]::-webkit-input-placeholder{color:var(--_ui5_input_placeholder_color)}:host([value-state="Information"]) [inner-input]::-moz-placeholder{color:var(--_ui5_input_placeholder_color)}.ui5-input-content{height:100%;box-sizing:border-box;display:flex;flex-direction:row;justify-content:flex-end;overflow:hidden;outline:none;background:transparent;color:inherit;border-radius:var(--_ui5_input_border_radius)}:host([readonly]:not([disabled])){border:var(--_ui5_input_readonly_border);background:var(--sapField_ReadOnly_BackgroundStyle);background-color:var(--_ui5_input_readonly_background)}:host([value-state="None"]:not([readonly]):hover),:host(:not([value-state]):not([readonly]):hover){border:var(--_ui5_input_hover_border);border-color:var(--_ui5_input_focused_border_color);box-shadow:var(--sapField_Hover_Shadow);background:var(--sapField_Hover_BackgroundStyle);background-color:var(--sapField_Hover_Background)}:host(:not([value-state]):not([readonly])[focused]:not([opened]):hover),:host([value-state="None"]:not([readonly])[focused]:not([opened]):hover){box-shadow:none}:host([focused]):not([opened]) .ui5-input-root:before{content:none}:host(:not([readonly]):not([disabled])[value-state]:not([value-state="None"])){border-width:var(--_ui5_input_state_border_width)}:host([value-state="Negative"]) [inner-input],:host([value-state="Critical"]) [inner-input]{font-style:var(--_ui5_input_error_warning_font_style);text-indent:var(--_ui5_input_error_warning_text_indent)}:host([value-state="Negative"]) [inner-input]{font-weight:var(--_ui5_input_error_font_weight)}:host([value-state="Critical"]) [inner-input]{font-weight:var(--_ui5_input_warning_font_weight)}:host([value-state="Negative"]:not([readonly]):not([disabled])){background:var(--sapField_InvalidBackgroundStyle);background-color:var(--sapField_InvalidBackground);border-color:var(--_ui5_input_value_state_error_border_color);box-shadow:var(--sapField_InvalidShadow)}:host([value-state="Negative"][focused]:not([opened]):not([readonly])){background-color:var(--_ui5_input_focused_value_state_error_background);border-color:var(--_ui5_input_focused_value_state_error_border_color)}:host([value-state="Negative"][focused]:not([opened]):not([readonly])) .ui5-input-focusable-element:after{border-color:var(--_ui5_input_focused_value_state_error_focus_outline_color)}:host([value-state="Negative"]:not([readonly])) .ui5-input-root:before{background-color:var(--_ui5-input-value-state-error-border-botom-color)}:host([value-state="Negative"]:not([readonly]):not([focused]):hover),:host([value-state="Negative"]:not([readonly])[focused][opened]:hover){background-color:var(--_ui5_input_value_state_error_hover_background);box-shadow:var(--sapField_Hover_InvalidShadow)}:host([value-state="Negative"]:not([readonly]):not([disabled])),:host([value-state="Critical"]:not([readonly]):not([disabled])),:host([value-state="Information"]:not([readonly]):not([disabled])){border-style:var(--_ui5_input_error_warning_border_style)}:host([value-state="Critical"]:not([readonly]):not([disabled])){background:var(--sapField_WarningBackgroundStyle);background-color:var(--sapField_WarningBackground);border-color:var(--_ui5_input_value_state_warning_border_color);box-shadow:var(--sapField_WarningShadow)}:host([value-state="Critical"][focused]:not([opened]):not([readonly])){background-color:var(--_ui5_input_focused_value_state_warning_background);border-color:var(--_ui5_input_focused_value_state_warning_border_color)}:host([value-state="Critical"][focused]:not([opened]):not([readonly])) .ui5-input-focusable-element:after{border-color:var(--_ui5_input_focused_value_state_warning_focus_outline_color)}:host([value-state="Critical"]:not([readonly])) .ui5-input-root:before{background-color:var(--_ui5_input_value_state_warning_border_botom_color)}:host([value-state="Critical"]:not([readonly]):not([focused]):hover),:host([value-state="Critical"]:not([readonly])[focused][opened]:hover){background-color:var(--sapField_Hover_Background);box-shadow:var(--sapField_Hover_WarningShadow)}:host([value-state="Positive"]:not([readonly]):not([disabled])){background:var(--sapField_SuccessBackgroundStyle);background-color:var(--sapField_SuccessBackground);border-color:var(--_ui5_input_value_state_success_border_color);border-width:var(--_ui5_input_value_state_success_border_width);box-shadow:var(--sapField_SuccessShadow)}:host([value-state="Positive"][focused]:not([opened]):not([readonly])){background-color:var(--_ui5_input_focused_value_state_success_background);border-color:var(--_ui5_input_focused_value_state_success_border_color)}:host([value-state="Positive"][focused]:not([opened]):not([readonly])) .ui5-input-focusable-element:after{border-color:var(--_ui5_input_focused_value_state_success_focus_outline_color)}:host([value-state="Positive"]:not([readonly])) .ui5-input-root:before{background-color:var(--_ui5_input_value_state_success_border_botom_color)}:host([value-state="Positive"]:not([readonly]):not([focused]):hover),:host([value-state="Positive"]:not([readonly])[focused][opened]:hover){background-color:var(--sapField_Hover_Background);box-shadow:var(--sapField_Hover_SuccessShadow)}:host([value-state="Information"]:not([readonly]):not([disabled])){background:var(--sapField_InformationBackgroundStyle);background-color:var(--sapField_InformationBackground);border-color:var(--_ui5_input_value_state_information_border_color);border-width:var(--_ui5_input_information_border_width);box-shadow:var(--sapField_InformationShadow)}:host([value-state="Information"][focused]:not([opened]):not([readonly])){background-color:var(--_ui5_input_focused_value_state_information_background);border-color:var(--_ui5_input_focused_value_state_information_border_color)}:host([value-state="Information"]:not([readonly])) .ui5-input-root:before{background-color:var(--_ui5_input_value_success_information_border_botom_color)}:host([value-state="Information"]:not([readonly]):not([focused]):hover),:host([value-state="Information"]:not([readonly])[focused][opened]:hover){background-color:var(--sapField_Hover_Background);box-shadow:var(--sapField_Hover_InformationShadow)}.ui5-input-icon-root{min-width:var(--_ui5_input_icon_min_width);height:100%;display:flex;justify-content:center;align-items:center}::slotted([ui5-icon][slot="icon"]){align-self:start;padding:var(--_ui5_input_custom_icon_padding);box-sizing:content-box!important}:host([value-state="Negative"]) .inputIcon,:host([value-state="Critical"]) .inputIcon{padding:var(--_ui5_input_error_warning_icon_padding)}:host([value-state="Negative"][focused]) .inputIcon,:host([value-state="Critical"][focused]) .inputIcon{padding:var(--_ui5_input_error_warning_focused_icon_padding)}:host([value-state="Information"]) .inputIcon{padding:var(--_ui5_input_information_icon_padding)}:host([value-state="Information"][focused]) .inputIcon{padding:var(--_ui5_input_information_focused_icon_padding)}:host([value-state="Negative"]) ::slotted(.inputIcon[ui5-icon]),:host([value-state="Negative"]) ::slotted([ui5-icon][slot="icon"]),:host([value-state="Critical"]) ::slotted([ui5-icon][slot="icon"]){padding:var(--_ui5_input_error_warning_custom_icon_padding)}:host([value-state="Negative"][focused]) ::slotted(.inputIcon[ui5-icon]),:host([value-state="Negative"][focused]) ::slotted([ui5-icon][slot="icon"]),:host([value-state="Critical"][focused]) ::slotted([ui5-icon][slot="icon"]){padding:var(--_ui5_input_error_warning_custom_focused_icon_padding)}:host([value-state="Information"]) ::slotted([ui5-icon][slot="icon"]){padding:var(--_ui5_input_information_custom_icon_padding)}:host([value-state="Information"][focused]) ::slotted([ui5-icon][slot="icon"]){padding:var(--_ui5_input_information_custom_focused_icon_padding)}:host([value-state="Negative"]) .inputIcon:active,:host([value-state="Negative"]) .inputIcon.inputIcon--pressed{box-shadow:var(--_ui5_input_error_icon_box_shadow);color:var(--_ui5_input_icon_error_pressed_color)}:host([value-state="Negative"]) .inputIcon:not(.inputIcon--pressed):not(:active):hover{box-shadow:var(--_ui5_input_error_icon_box_shadow)}:host([value-state="Critical"]) .inputIcon:active,:host([value-state="Critical"]) .inputIcon.inputIcon--pressed{box-shadow:var(--_ui5_input_warning_icon_box_shadow);color:var(--_ui5_input_icon_warning_pressed_color)}:host([value-state="Critical"]) .inputIcon:not(.inputIcon--pressed):not(:active):hover{box-shadow:var(--_ui5_input_warning_icon_box_shadow)}:host([value-state="Information"]) .inputIcon:active,:host([value-state="Information"]) .inputIcon.inputIcon--pressed{box-shadow:var(--_ui5_input_information_icon_box_shadow);color:var(--_ui5_input_icon_information_pressed_color)}:host([value-state="Information"]) .inputIcon:not(.inputIcon--pressed):not(:active):hover{box-shadow:var(--_ui5_input_information_icon_box_shadow)}:host([value-state="Positive"]) .inputIcon:active,:host([value-state="Positive"]) .inputIcon.inputIcon--pressed{box-shadow:var(--_ui5_input_success_icon_box_shadow);color:var(--_ui5_input_icon_success_pressed_color)}:host([value-state="Positive"]) .inputIcon:not(.inputIcon--pressed):not(:active):hover{box-shadow:var(--_ui5_input_success_icon_box_shadow)}.ui5-input-clear-icon-wrapper{height:var(--_ui5_input_icon_wrapper_height);padding:0;width:var(--_ui5_input_icon_width);min-width:var(--_ui5_input_icon_width);display:flex;justify-content:center;align-items:center;box-sizing:border-box}:host([value-state]:not([value-state="None"]):not([value-state="Positive"])) .ui5-input-clear-icon-wrapper{height:var(--_ui5_input_icon_wrapper_state_height);vertical-align:top}:host([value-state="Positive"]) .ui5-input-clear-icon-wrapper{height:var(--_ui5_input_icon_wrapper_success_state_height)}[ui5-icon].ui5-input-clear-icon{padding:0;color:inherit}[inner-input]::-webkit-outer-spin-button,[inner-input]::-webkit-inner-spin-button{-webkit-appearance:inherit;margin:inherit}[ui5-responsive-popover] [ui5-input]{width:100%}:host([icon]){min-width:var(--_ui5_button_base_min_width);width:var(--_ui5_button_base_min_width)}:host([opened]) .ui5-input-focusable-element:after{content:var(--ui5_input_focus_pseudo_element_content);position:absolute;pointer-events:none;z-index:2;border:var(--sapContent_FocusWidth) var(--sapContent_FocusStyle) var(--_ui5_input_focus_outline_color);border-radius:var(--_ui5_input_focus_border_radius);top:var(--_ui5_input_focus_offset);bottom:var(--_ui5_input_focus_offset);left:var(--_ui5_input_focus_offset);right:var(--_ui5_input_focus_offset)}:host([value-state="Negative"][opened]:not([readonly])) .ui5-input-focusable-element:after{border-color:var(--_ui5_input_focused_value_state_error_focus_outline_color)}:host([value-state="Critical"][opened]:not([readonly])) .ui5-input-focusable-element:after{border-color:var(--_ui5_input_focused_value_state_warning_focus_outline_color)}:host([value-state="Positive"][opened]:not([readonly])) .ui5-input-focusable-element:after{border-color:var(--_ui5_input_focused_value_state_success_focus_outline_color)}:host([icon]) .ui5-select-root{min-width:var(--_ui5_button_base_min_width)}:host([icon]) .ui5-select-label-root{min-width:0;padding-inline-start:0}.ui5-select-root{min-width:calc(var(--_ui5_input_min_width) + (var(--_ui5-input-icons-count)*var(--_ui5_input_icon_width)));width:100%;height:100%;display:flex;outline:none;cursor:pointer;overflow:hidden;border-radius:var(--_ui5_input_border_radius)}.ui5-select-label-root{flex-shrink:1;flex-grow:1;align-self:center;min-width:1rem;padding-inline-start:.5rem;cursor:pointer;outline:none;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;color:var(--_ui5_select_label_color);font-family:var(--sapFontFamily);font-size:var(--sapFontSize);font-weight:400}.ui5-select-option-icon{padding-inline-start:.5rem;color:var(--sapField_TextColor);align-self:center}:host(:not([disabled])){cursor:pointer}.ui5-select-icon-root{display:flex;justify-content:center;align-items:center;box-sizing:border-box;width:var(--_ui5_select_icon_width);min-width:var(--_ui5_select_icon_width);height:var(--_ui5_select_icon_wrapper_height);padding:0}.ui5-select-icon{color:inherit}:host([value-state]:not([value-state="None"],[value-state="Positive"])) .ui5-select-icon-root{height:var(--_ui5_select_icon_wrapper_state_height)}\n',rx,ax,".ui5-select-popover::part(content),.ui5-select-popover::part(header){padding:0}.ui5-select-popover .ui5-responsive-popover-header .row{justify-content:flex-start}\n"],dependencies:[Ph,Ib,wb,py,gh,tp]}),yn("change",{bubbles:!0,cancelable:!0}),yn("live-change",{bubbles:!0}),yn("open"),yn("close"),yn("selected-item-changed",{bubbles:!0}),yn("input",{bubbles:!0})],bB)).define(),sc();ql("sys-help-2",{pathData:"M8 0c1.104 0 2.14.208 3.11.625a8.215 8.215 0 0 1 2.546 1.703 7.852 7.852 0 0 1 1.719 2.547c.417.98.625 2.02.625 3.125 0 1.104-.208 2.14-.625 3.11a8.082 8.082 0 0 1-1.719 2.546 8.082 8.082 0 0 1-2.547 1.719A7.785 7.785 0 0 1 8 16a7.897 7.897 0 0 1-3.125-.625 7.852 7.852 0 0 1-2.547-1.719A8.215 8.215 0 0 1 .625 11.11 7.786 7.786 0 0 1 0 8c0-1.104.208-2.146.625-3.125a7.977 7.977 0 0 1 1.703-2.547A7.977 7.977 0 0 1 4.875.625 7.897 7.897 0 0 1 8 0Zm-.156 13.281c.312 0 .583-.114.812-.344.23-.229.344-.5.344-.812a1.06 1.06 0 0 0-.344-.797A1.136 1.136 0 0 0 7.844 11c-.313 0-.578.11-.797.328a1.085 1.085 0 0 0-.328.797c0 .313.11.583.328.813.219.229.484.343.797.343ZM11 5.812c0-.666-.281-1.26-.844-1.78-.562-.522-1.364-.782-2.406-.782-.958 0-1.714.25-2.266.75s-.859 1.115-.921 1.844h1.625c.104-.5.286-.839.546-1.016.26-.177.63-.266 1.11-.266.479 0 .843.13 1.093.391.25.26.376.547.376.86 0 .208-.027.354-.079.437-.052.083-.192.24-.421.469l-.626.531c-.312.25-.552.469-.718.656-.167.188-.287.38-.36.578-.073.198-.12.417-.14.657-.021.24-.032.526-.032.859H8.5c0-.25.005-.448.016-.594.01-.146.041-.276.093-.39a1.12 1.12 0 0 1 .235-.329c.104-.104.26-.24.469-.406l.843-.781.5-.563.281-.5.063-.625Z",ltr:!0,viewBox:"0 0 16 16",collection:"SAP-icons-v4",packageName:"@ui5/webcomponents-icons"}),sc();var yB;ql("sys-help-2",{pathData:"M8 0a8 8 0 1 1 0 16A8 8 0 0 1 8 0Zm0 11a1 1 0 1 0 0 2 1 1 0 0 0 0-2Zm.2-8A3.194 3.194 0 0 0 5 6.2a1 1 0 0 0 1.995.103C6.995 5.619 7.443 5 8.2 5c.668 0 1.2.533 1.2 1.2 0 .41-.136.684-.322.859-.19.179-.528.341-1.078.341a1 1 0 0 0-.995.898S7 8.448 7 9a1 1 0 0 0 1.956.291 3.214 3.214 0 0 0 1.491-.774c.64-.6.953-1.428.953-2.317C11.4 4.428 9.972 3 8.2 3Z",ltr:!0,viewBox:"0 0 16 16",collection:"SAP-icons-v5",packageName:"@ui5/webcomponents-icons"}),Aa(),function(e){e.Set1="Set1",e.Set2="Set2",e.Neutral="Neutral",e.Information="Information",e.Positive="Positive",e.Negative="Negative",e.Critical="Critical"}(yB||(yB={}));var CB=yB;function wB(){return y_(f_,{children:[b_("slot",{name:"icon"}),this._semanticIconName&&b_(gh,{class:"ui5-tag-semantic-icon",name:this._semanticIconName}),b_("span",{class:"ui5-hidden-text",children:this.tagDescription}),this.hasText&&b_("span",{class:"ui5-tag-text",children:b_("slot",{})})]})}C_(),xh(),Ca(),Ch(),wh(),St("@ui5/webcomponents-theming","sap_horizon",async()=>ch),St("@ui5/webcomponents","sap_horizon",async()=>_h,"host");Cn(),wn(),xn(),kn(),Wn(),ec(),qn(),lc(),Pa(),kf(),vf(),yf(),Tf(),yh();var kB,xB=function(e,t,o,i){var r,a=arguments.length,n=a<3?t:null===i?i=Object.getOwnPropertyDescriptor(t,o):i;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)n=Reflect.decorate(e,t,o,i);else for(var s=e.length-1;s>=0;s--)(r=e[s])&&(n=(a<3?r(n):a>3?r(t,o,n):r(t,o))||n);return a>3&&n&&Object.defineProperty(t,o,n),n},SB=kB=class extends hn{constructor(){super(...arguments),this.design="Neutral",this.colorScheme="1",this.hideStateIcon=!1,this.interactive=!1,this.wrappingType="Normal",this.size="S",this._hasIcon=!1,this._iconOnly=!1}onEnterDOM(){Po()&&this.setAttribute("desktop","")}onBeforeRendering(){this._hasIcon=this.hasIcon||!!this._semanticIconName,this._iconOnly=this.iconOnly}get _roleDescription(){return kB.i18nBundle.getText(B_)}get _valueState(){switch(this.design){case CB.Positive:return kB.i18nBundle.getText(A_);case CB.Negative:return kB.i18nBundle.getText(I_);case CB.Critical:return kB.i18nBundle.getText(D_);case CB.Information:return kB.i18nBundle.getText(P_)}}get hasText(){return Zl(this.text)}get hasIcon(){return!!this.icon.length}get iconOnly(){return this.hasIcon&&!this.hasText}get _title(){return this.title||void 0}get tagDescription(){if(this.interactive)return;const e=this._valueState;let t=kB.i18nBundle.getText(T_);return e&&(t=`${t} ${e}`),t}get _semanticIconName(){if(this.hideStateIcon||this.hasIcon)return null;switch(this.design){case CB.Neutral:return"sys-help-2";case CB.Positive:return"sys-enter-2";case CB.Negative:return"error";case CB.Critical:return"alert";case CB.Information:return"information";default:return null}}_onclick(e){e.stopPropagation(),this.fireDecoratorEvent("click")}};return xB([bn()],SB.prototype,"design",void 0),xB([bn()],SB.prototype,"colorScheme",void 0),xB([bn({type:Boolean})],SB.prototype,"hideStateIcon",void 0),xB([bn({type:Boolean})],SB.prototype,"interactive",void 0),xB([bn()],SB.prototype,"wrappingType",void 0),xB([bn()],SB.prototype,"size",void 0),xB([bn({type:Boolean})],SB.prototype,"_hasIcon",void 0),xB([bn({type:Boolean})],SB.prototype,"_iconOnly",void 0),xB([Sn({type:Node,default:!0})],SB.prototype,"text",void 0),xB([Sn()],SB.prototype,"icon",void 0),xB([Tn("@ui5/webcomponents")],SB,"i18nBundle",void 0),(SB=kB=xB([fn({tag:"ui5-tag",languageAware:!0,renderer:ms,template:function(){return b_(f_,{children:this.interactive?b_("button",{class:"ui5-tag-root",title:this._title,"aria-roledescription":this._roleDescription,"aria-description":this._valueState,onClick:this._onclick,part:"root",children:wB.call(this)}):b_("div",{class:"ui5-tag-root",title:this._title,part:"root",children:wB.call(this)})})},styles:'.ui5-hidden-text{position:absolute;clip:rect(1px,1px,1px,1px);user-select:none;left:-1000px;top:-1000px;pointer-events:none;font-size:0}:host(:not([hidden])){display:inline-block}:host{font-size:var(--sapFontSmallSize);font-family:var(--sapFontBoldFamily);font-weight:var(--_ui5-tag-font-weight);letter-spacing:var(--_ui5-tag-letter-spacing);line-height:var(--_ui5-tag-height)}.ui5-tag-root{display:flex;align-items:baseline;justify-content:center;width:100%;min-width:1.125em;max-width:100%;box-sizing:border-box;padding:var(--_ui5-tag-text-padding);border:.0625rem solid;border-radius:var(--sapButton_BorderCornerRadius);white-space:normal;font-size:inherit;font-family:inherit;font-weight:inherit;line-height:inherit;letter-spacing:inherit}:host([interactive]) .ui5-tag-root:active{text-shadow:var(--ui5-tag-text-shadow)}:host([interactive]) .ui5-tag-root{cursor:pointer}:host([desktop][interactive]) .ui5-tag-root:focus,:host([interactive]) .ui5-tag-root:focus-visible{outline:var(--sapContent_FocusWidth) var(--sapContent_FocusStyle) var(--sapContent_FocusColor);outline-offset:1px}:host([wrapping-type="None"]) .ui5-tag-root{white-space:nowrap}:host([_icon-only]) .ui5-tag-root{padding-inline:var(--_ui5-tag-padding-inline-icon-only)}.ui5-tag-text{text-transform:var(--_ui5-tag-text-transform);text-align:start;pointer-events:none;overflow:hidden;text-overflow:ellipsis}:host([_has-icon]) .ui5-tag-text{padding-inline-start:var(--_ui5-tag-icon-gap)}[ui5-icon],::slotted([ui5-icon]){width:var(--_ui5-tag-icon-width);min-width:var(--_ui5-tag-icon-width);color:inherit;pointer-events:none;align-self:flex-start}.ui5-tag-root{background-color:var(--sapNeutralBackground);border-color:var(--sapNeutralBorderColor);color:var(--sapTextColor);text-shadow:var(--ui5-tag-text-shadow)}:host([interactive]) .ui5-tag-root:hover{background-color:var(--sapButton_Neutral_Hover_Background);border-color:var(--sapButton_Neutral_Hover_BorderColor);color:var(--sapButton_Neutral_Hover_TextColor)}:host([interactive]) .ui5-tag-root:active{background-color:var(--sapButton_Neutral_Active_Background);border-color:var(--sapButton_Neutral_Active_BorderColor);color:var(--sapButton_Active_TextColor)}:host([design="Positive"]) .ui5-tag-root{background-color:var(--sapButton_Success_Background);border-color:var(--sapButton_Success_BorderColor);color:var(--sapButton_Success_TextColor);text-shadow:var(--ui5-tag-contrast-text-shadow)}:host([interactive][design="Positive"]) .ui5-tag-root:hover{background-color:var(--sapButton_Success_Hover_Background);border-color:var(--sapButton_Success_Hover_BorderColor);color:var(--sapButton_Success_Hover_TextColor)}:host([interactive][design="Positive"]) .ui5-tag-root:active{background-color:var(--sapButton_Success_Active_Background);border-color:var(--sapButton_Success_Active_BorderColor);color:var(--sapButton_Accept_Selected_TextColor)}:host([design="Negative"]) .ui5-tag-root{background-color:var(--sapButton_Negative_Background);border-color:var(--sapButton_Negative_BorderColor);color:var(--sapButton_Negative_TextColor);text-shadow:var(--ui5-tag-contrast-text-shadow)}:host([interactive][design="Negative"]) .ui5-tag-root:hover{background-color:var(--sapButton_Negative_Hover_Background);border-color:var(--sapButton_Negative_Hover_BorderColor);color:var(--sapButton_Negative_Hover_TextColor)}:host([interactive][design="Negative"]) .ui5-tag-root:active{background-color:var(--sapButton_Negative_Active_Background);border-color:var(--sapButton_Negative_Active_BorderColor);color:var(--sapButton_Reject_Selected_TextColor)}:host([design="Critical"]) .ui5-tag-root{background-color:var(--sapButton_Critical_Background);border-color:var(--sapButton_Critical_BorderColor);color:var(--sapButton_Critical_TextColor);text-shadow:var(--ui5-tag-contrast-text-shadow)}:host([interactive][design="Critical"]) .ui5-tag-root:hover{background-color:var(--sapButton_Critical_Hover_Background);border-color:var(--sapButton_Critical_Hover_BorderColor);color:var(--sapButton_Critical_Hover_TextColor)}:host([interactive][design="Critical"]) .ui5-tag-root:active{background-color:var(--sapButton_Critical_Active_Background);border-color:var(--sapButton_Critical_Active_BorderColor);color:var(--sapButton_Attention_Selected_TextColor)}:host([design="Information"]) .ui5-tag-root{background-color:var(--sapButton_Information_Background);border-color:var(--sapButton_Information_BorderColor);color:var(--sapButton_Information_TextColor);text-shadow:var(--ui5-tag-information-text-shadow)}:host([interactive][design="Information"]) .ui5-tag-root:hover{background-color:var(--sapButton_Information_Hover_Background);border-color:var(--sapButton_Information_Hover_BorderColor);color:var(--sapButton_Information_Hover_TextColor)}:host([interactive][design="Information"]) .ui5-tag-root:active{background-color:var(--sapButton_Information_Active_Background);border-color:var(--sapButton_Information_Active_BorderColor);color:var(--sapButton_Selected_TextColor)}:host([design="Set1"]) .ui5-tag-root{text-shadow:var(--ui5-tag-contrast-text-shadow)}:host([design="Set1"]) .ui5-tag-root,:host([interactive][design="Set1"]) .ui5-tag-root{background-color:var(--sapIndicationColor_1_Background);border-color:var(--sapIndicationColor_1_BorderColor);color:var(--sapIndicationColor_1_TextColor)}:host([interactive][design="Set1"]) .ui5-tag-root:hover{background-color:var(--sapIndicationColor_1_Hover_Background)}:host([interactive][design="Set1"]) .ui5-tag-root:active{background-color:var(--sapIndicationColor_1_Active_Background);border-color:var(--sapIndicationColor_1_Active_BorderColor);color:var(--sapIndicationColor_1_Active_TextColor)}:host([design="Set1"][color-scheme="2"]) .ui5-tag-root{background-color:var(--sapIndicationColor_2_Background);border-color:var(--sapIndicationColor_2_BorderColor);color:var(--sapIndicationColor_2_TextColor)}:host([interactive][design="Set1"][color-scheme="2"]) .ui5-tag-root:hover{background-color:var(--sapIndicationColor_2_Hover_Background)}:host([interactive][design="Set1"][color-scheme="2"]) .ui5-tag-root:active{background-color:var(--sapIndicationColor_2_Active_Background);border-color:var(--sapIndicationColor_2_Active_BorderColor);color:var(--sapIndicationColor_2_Active_TextColor)}:host([design="Set1"][color-scheme="3"]) .ui5-tag-root{background-color:var(--sapIndicationColor_3_Background);border-color:var(--sapIndicationColor_3_BorderColor);color:var(--sapIndicationColor_3_TextColor)}:host([interactive][design="Set1"][color-scheme="3"]) .ui5-tag-root:hover{background-color:var(--sapIndicationColor_3_Hover_Background)}:host([interactive][design="Set1"][color-scheme="3"]) .ui5-tag-root:active{background-color:var(--sapIndicationColor_3_Active_Background);border-color:var(--sapIndicationColor_3_Active_BorderColor);color:var(--sapIndicationColor_3_Active_TextColor)}:host([design="Set1"][color-scheme="4"]) .ui5-tag-root{background-color:var(--sapIndicationColor_4_Background);border-color:var(--sapIndicationColor_4_BorderColor);color:var(--sapIndicationColor_4_TextColor)}:host([interactive][design="Set1"][color-scheme="4"]) .ui5-tag-root:hover{background-color:var(--sapIndicationColor_4_Hover_Background)}:host([interactive][design="Set1"][color-scheme="4"]) .ui5-tag-root:active{background-color:var(--sapIndicationColor_4_Active_Background);border-color:var(--sapIndicationColor_4_Active_BorderColor);color:var(--sapIndicationColor_4_Active_TextColor)}:host([design="Set1"][color-scheme="5"]) .ui5-tag-root{background-color:var(--sapIndicationColor_5_Background);border-color:var(--sapIndicationColor_5_BorderColor);color:var(--sapIndicationColor_5_TextColor)}:host([interactive][design="Set1"][color-scheme="5"]) .ui5-tag-root:hover{background-color:var(--sapIndicationColor_5_Hover_Background)}:host([interactive][design="Set1"][color-scheme="5"]) .ui5-tag-root:active{background-color:var(--sapIndicationColor_5_Active_Background);border-color:var(--sapIndicationColor_5_Active_BorderColor);color:var(--sapIndicationColor_5_Active_TextColor)}:host([design="Set1"][color-scheme="6"]) .ui5-tag-root{background-color:var(--sapIndicationColor_6_Background);border-color:var(--sapIndicationColor_6_BorderColor);color:var(--sapIndicationColor_6_TextColor)}:host([interactive][design="Set1"][color-scheme="6"]) .ui5-tag-root:hover{background-color:var(--sapIndicationColor_6_Hover_Background)}:host([interactive][design="Set1"][color-scheme="6"]) .ui5-tag-root:active{background-color:var(--sapIndicationColor_6_Active_Background);border-color:var(--sapIndicationColor_6_Active_BorderColor);color:var(--sapIndicationColor_6_Active_TextColor)}:host([design="Set1"][color-scheme="7"]) .ui5-tag-root{background-color:var(--sapIndicationColor_7_Background);border-color:var(--sapIndicationColor_7_BorderColor);color:var(--sapIndicationColor_7_TextColor)}:host([interactive][design="Set1"][color-scheme="7"]) .ui5-tag-root:hover{background-color:var(--sapIndicationColor_7_Hover_Background)}:host([interactive][design="Set1"][color-scheme="7"]) .ui5-tag-root:active{background-color:var(--sapIndicationColor_7_Active_Background);border-color:var(--sapIndicationColor_7_Active_BorderColor);color:var(--sapIndicationColor_7_Active_TextColor)}:host([design="Set1"][color-scheme="8"]) .ui5-tag-root{background-color:var(--sapIndicationColor_8_Background);border-color:var(--sapIndicationColor_8_BorderColor);color:var(--sapIndicationColor_8_TextColor)}:host([interactive][design="Set1"][color-scheme="8"]) .ui5-tag-root:hover{background-color:var(--sapIndicationColor_8_Hover_Background)}:host([interactive][design="Set1"][color-scheme="8"]) .ui5-tag-root:active{background-color:var(--sapIndicationColor_8_Active_Background);border-color:var(--sapIndicationColor_8_Active_BorderColor);color:var(--sapIndicationColor_8_Active_TextColor)}:host([design="Set1"][color-scheme="9"]) .ui5-tag-root{background-color:var(--sapIndicationColor_9_Background);border-color:var(--sapIndicationColor_9_BorderColor);color:var(--sapIndicationColor_9_TextColor)}:host([interactive][design="Set1"][color-scheme="9"]) .ui5-tag-root:hover{background-color:var(--sapIndicationColor_9_Hover_Background)}:host([interactive][design="Set1"][color-scheme="9"]) .ui5-tag-root:active{background-color:var(--sapIndicationColor_9_Active_Background);border-color:var(--sapIndicationColor_9_Active_BorderColor);color:var(--sapIndicationColor_9_Active_TextColor)}:host([design="Set1"][color-scheme="10"]) .ui5-tag-root{background-color:var(--sapIndicationColor_10_Background);border-color:var(--sapIndicationColor_10_BorderColor);color:var(--sapIndicationColor_10_TextColor)}:host([interactive][design="Set1"][color-scheme="10"]) .ui5-tag-root:hover{background-color:var(--sapIndicationColor_10_Hover_Background)}:host([interactive][design="Set1"][color-scheme="10"]) .ui5-tag-root:active{background-color:var(--sapIndicationColor_10_Active_Background);border-color:var(--sapIndicationColor_10_Active_BorderColor);color:var(--sapIndicationColor_10_Active_TextColor)}:host([design="Set2"]) .ui5-tag-root{text-shadow:var(--ui5-tag-text-shadow)}:host([design="Set2"]) .ui5-tag-root,:host([interactive][design="Set2"]) .ui5-tag-root{background-color:var(--ui5-tag-set2-color-scheme-1-background);border-color:var(--ui5-tag-set2-color-scheme-1-border);color:var(--ui5-tag-set2-color-scheme-1-color)}:host([interactive][design="Set2"]) .ui5-tag-root:hover{background-color:var(--ui5-tag-set2-color-scheme-1-hover-background)}:host([interactive][design="Set2"]) .ui5-tag-root:active{background-color:var(--ui5-tag-set2-color-scheme-1-active-background);border-color:var(--ui5-tag-set2-color-scheme-1-active-border);color:var(--ui5-tag-set2-color-scheme-1-active-color)}:host([design="Set2"][color-scheme="2"]) .ui5-tag-root{background-color:var(--ui5-tag-set2-color-scheme-2-background);border-color:var(--ui5-tag-set2-color-scheme-2-border);color:var(--ui5-tag-set2-color-scheme-2-color)}:host([design="Set2"][color-scheme="3"]) .ui5-tag-root{background-color:var(--ui5-tag-set2-color-scheme-3-background);border-color:var(--ui5-tag-set2-color-scheme-3-border);color:var(--ui5-tag-set2-color-scheme-3-color)}:host([interactive][design="Set2"][color-scheme="3"]) .ui5-tag-root:hover{background-color:var(--ui5-tag-set2-color-scheme-3-hover-background)}:host([interactive][design="Set2"][color-scheme="3"]) .ui5-tag-root:active{background-color:var(--ui5-tag-set2-color-scheme-3-active-background);border-color:var(--ui5-tag-set2-color-scheme-3-active-border);color:var(--ui5-tag-set2-color-scheme-3-active-color)}:host([design="Set2"][color-scheme="4"]) .ui5-tag-root{background-color:var(--ui5-tag-set2-color-scheme-4-background);border-color:var(--ui5-tag-set2-color-scheme-4-border);color:var(--ui5-tag-set2-color-scheme-4-color)}:host([interactive][design="Set2"][color-scheme="4"]) .ui5-tag-root:hover{background-color:var(--ui5-tag-set2-color-scheme-4-hover-background)}:host([interactive][design="Set2"][color-scheme="4"]) .ui5-tag-root:active{background-color:var(--ui5-tag-set2-color-scheme-4-active-background);border-color:var(--ui5-tag-set2-color-scheme-4-active-border);color:var(--ui5-tag-set2-color-scheme-4-active-color)}:host([design="Set2"][color-scheme="5"]) .ui5-tag-root{background-color:var(--ui5-tag-set2-color-scheme-5-background);border-color:var(--ui5-tag-set2-color-scheme-5-border);color:var(--ui5-tag-set2-color-scheme-5-color)}:host([interactive][design="Set2"][color-scheme="5"]) .ui5-tag-root:hover{background-color:var(--ui5-tag-set2-color-scheme-5-hover-background)}:host([interactive][design="Set2"][color-scheme="5"]) .ui5-tag-root:active{background-color:var(--ui5-tag-set2-color-scheme-5-active-background);border-color:var(--ui5-tag-set2-color-scheme-5-active-border);color:var(--ui5-tag-set2-color-scheme-5-active-color)}:host([design="Set2"][color-scheme="6"]) .ui5-tag-root{background-color:var(--ui5-tag-set2-color-scheme-6-background);border-color:var(--ui5-tag-set2-color-scheme-6-border);color:var(--ui5-tag-set2-color-scheme-6-color)}:host([interactive][design="Set2"][color-scheme="6"]) .ui5-tag-root:hover{background-color:var(--ui5-tag-set2-color-scheme-6-hover-background)}:host([interactive][design="Set2"][color-scheme="6"]) .ui5-tag-root:active{background-color:var(--ui5-tag-set2-color-scheme-6-active-background);border-color:var(--ui5-tag-set2-color-scheme-6-active-border);color:var(--ui5-tag-set2-color-scheme-6-active-color)}:host([design="Set2"][color-scheme="7"]) .ui5-tag-root{background-color:var(--ui5-tag-set2-color-scheme-7-background);border-color:var(--ui5-tag-set2-color-scheme-7-border);color:var(--ui5-tag-set2-color-scheme-7-color)}:host([interactive][design="Set2"][color-scheme="7"]) .ui5-tag-root:hover{background-color:var(--ui5-tag-set2-color-scheme-7-hover-background)}:host([interactive][design="Set2"][color-scheme="7"]) .ui5-tag-root:active{background-color:var(--ui5-tag-set2-color-scheme-7-active-background);border-color:var(--ui5-tag-set2-color-scheme-7-active-border);color:var(--ui5-tag-set2-color-scheme-7-active-color)}:host([design="Set2"][color-scheme="8"]) .ui5-tag-root{background-color:var(--ui5-tag-set2-color-scheme-8-background);border-color:var(--ui5-tag-set2-color-scheme-8-border);color:var(--ui5-tag-set2-color-scheme-8-color)}:host([interactive][design="Set2"][color-scheme="8"]) .ui5-tag-root:hover{background-color:var(--ui5-tag-set2-color-scheme-8-hover-background)}:host([interactive][design="Set2"][color-scheme="8"]) .ui5-tag-root:active{background-color:var(--ui5-tag-set2-color-scheme-8-active-background);border-color:var(--ui5-tag-set2-color-scheme-8-active-border);color:var(--ui5-tag-set2-color-scheme-8-active-color)}:host([design="Set2"][color-scheme="9"]) .ui5-tag-root{background-color:var(--ui5-tag-set2-color-scheme-9-background);border-color:var(--ui5-tag-set2-color-scheme-9-border);color:var(--ui5-tag-set2-color-scheme-9-color)}:host([interactive][design="Set2"][color-scheme="9"]) .ui5-tag-root:hover{background-color:var(--ui5-tag-set2-color-scheme-9-hover-background)}:host([interactive][design="Set2"][color-scheme="9"]) .ui5-tag-root:active{background-color:var(--ui5-tag-set2-color-scheme-9-active-background);border-color:var(--ui5-tag-set2-color-scheme-9-active-border);color:var(--ui5-tag-set2-color-scheme-9-active-color)}:host([interactive][design="Set2"][color-scheme="10"]) .ui5-tag-root:hover{background-color:var(--ui5-tag-set2-color-scheme-10-hover-background)}:host([interactive][design="Set2"][color-scheme="10"]) .ui5-tag-root:active{background-color:var(--ui5-tag-set2-color-scheme-10-active-background);border-color:var(--ui5-tag-set2-color-scheme-10-active-border);color:var(--ui5-tag-set2-color-scheme-10-active-color)}:host([design="Set2"][color-scheme="10"]) .ui5-tag-root{background-color:var(--ui5-tag-set2-color-scheme-10-background);border-color:var(--ui5-tag-set2-color-scheme-10-border);color:var(--ui5-tag-set2-color-scheme-10-color)}:host([interactive][design="Set2"][color-scheme="2"]) .ui5-tag-root:hover{background-color:var(--ui5-tag-set2-color-scheme-2-hover-background)}:host([interactive][design="Set2"][color-scheme="2"]) .ui5-tag-root:active{background-color:var(--ui5-tag-set2-color-scheme-2-active-background);border-color:var(--ui5-tag-set2-color-scheme-2-active-border);color:var(--ui5-tag-set2-color-scheme-2-active-color)}:host([size="L"]){font-family:var(--sapFontSemiboldDuplexFamily);line-height:var(--_ui5-tag-height_size_l)}:host([size="L"]) .ui5-tag-root{font-size:var(--_ui5-tag-font-size_size_l);min-width:var(--_ui5-tag-min-width_size_l);padding:var(--_ui5-tag-text_padding_size_l)}:host([size="L"]) [ui5-icon],:host([size="L"]) ::slotted([ui5-icon]){min-width:var(--_ui5-tag-icon_min_width_size_l);min-height:var(--_ui5-tag-icon_min_height_size_l);height:var(--_ui5-tag-icon_height_size_l)}\n'}),yn("click",{bubbles:!0})],SB)).define(),gp(),Qx(),zh(),Lb(),cv(),e.debounce=function(e,t){let o;return(...i)=>{clearTimeout(o),o=setTimeout(()=>e(...i),t)}},e}({});
|