@openui5/sap.ui.integration 1.96.2 → 1.98.0
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/.reuse/dep5 +26 -31
- package/THIRDPARTY.txt +15 -21
- package/package.json +3 -3
- package/src/sap/ui/integration/.library +16 -22
- package/src/sap/ui/integration/ActionDefinition.js +2 -2
- package/src/sap/ui/integration/Designtime.js +2 -2
- package/src/sap/ui/integration/Extension.js +2 -2
- package/src/sap/ui/integration/Host.js +38 -2
- package/src/sap/ui/integration/bindingFeatures/DateRange.js +1 -1
- package/src/sap/ui/integration/cards/AdaptiveContent.js +16 -50
- package/src/sap/ui/integration/cards/AnalyticalContent.js +8 -9
- package/src/sap/ui/integration/cards/AnalyticalContentRenderer.js +1 -1
- package/src/sap/ui/integration/cards/AnalyticsCloudContent.js +5 -3
- package/src/sap/ui/integration/cards/AnalyticsCloudContentRenderer.js +1 -1
- package/src/sap/ui/integration/cards/BaseContent.js +56 -6
- package/src/sap/ui/integration/cards/BaseContentRenderer.js +2 -2
- package/src/sap/ui/integration/cards/BaseListContent.js +39 -69
- package/src/sap/ui/integration/cards/CalendarContent.js +16 -12
- package/src/sap/ui/integration/cards/CalendarContentRenderer.js +2 -1
- package/src/sap/ui/integration/cards/ComponentContent.js +3 -2
- package/src/sap/ui/integration/cards/ComponentContentRenderer.js +1 -1
- package/src/sap/ui/integration/cards/Footer.js +2 -2
- package/src/sap/ui/integration/cards/Header.js +3 -3
- package/src/sap/ui/integration/cards/ListContent.js +67 -23
- package/src/sap/ui/integration/cards/ListContentRenderer.js +1 -1
- package/src/sap/ui/integration/cards/NumericHeader.js +3 -3
- package/src/sap/ui/integration/cards/ObjectContent.js +353 -228
- package/src/sap/ui/integration/cards/ObjectContentRenderer.js +28 -0
- package/src/sap/ui/integration/cards/TableContent.js +6 -10
- package/src/sap/ui/integration/cards/TableContentRenderer.js +1 -1
- package/src/sap/ui/integration/cards/TimelineContent.js +10 -14
- package/src/sap/ui/integration/cards/TimelineContentRenderer.js +1 -1
- package/src/sap/ui/integration/cards/WebPageContent.js +6 -2
- package/src/sap/ui/integration/cards/WebPageContentRenderer.js +1 -1
- package/src/sap/ui/integration/cards/actions/BaseAction.js +89 -0
- package/src/sap/ui/integration/cards/actions/CardActions.js +472 -0
- package/src/sap/ui/integration/cards/actions/CustomAction.js +31 -0
- package/src/sap/ui/integration/cards/actions/DateChangeAction.js +20 -0
- package/src/sap/ui/integration/cards/actions/MonthChangeAction.js +20 -0
- package/src/sap/ui/integration/cards/actions/NavigationAction.js +63 -0
- package/src/sap/ui/integration/cards/actions/SubmitAction.js +89 -0
- package/src/sap/ui/integration/cards/adaptivecards/elements/UI5InputChoiceSet.js +10 -10
- package/src/sap/ui/integration/cards/adaptivecards/elements/UI5InputDate.js +3 -3
- package/src/sap/ui/integration/cards/adaptivecards/elements/UI5InputNumber.js +7 -12
- package/src/sap/ui/integration/cards/adaptivecards/elements/UI5InputText.js +2 -2
- package/src/sap/ui/integration/cards/adaptivecards/elements/UI5InputTime.js +2 -2
- package/src/sap/ui/integration/cards/adaptivecards/elements/UI5InputToggle.js +3 -3
- package/src/sap/ui/integration/cards/adaptivecards/elements/hostConfig.js +1 -1
- package/src/sap/ui/integration/cards/adaptivecards/overwrites/ActionRender.js +1 -1
- package/src/sap/ui/integration/cards/filters/BaseFilter.js +2 -2
- package/src/sap/ui/integration/cards/filters/DateRangeFilter.js +63 -58
- package/src/sap/ui/integration/cards/filters/FilterBar.js +91 -0
- package/src/sap/ui/integration/cards/filters/FilterBarFactory.js +34 -13
- package/src/sap/ui/integration/cards/filters/SearchFilter.js +95 -0
- package/src/sap/ui/integration/cards/filters/SelectFilter.js +34 -4
- package/src/sap/ui/integration/controls/ActionsStrip.js +3 -3
- package/src/sap/ui/integration/controls/ActionsToolbar.js +4 -5
- package/src/sap/ui/integration/controls/ActionsToolbarRenderer.js +1 -1
- package/src/sap/ui/integration/controls/ListContentItem.js +2 -2
- package/src/sap/ui/integration/controls/ListContentItemRenderer.js +1 -1
- package/src/sap/ui/integration/controls/Microchart.js +2 -2
- package/src/sap/ui/integration/controls/MicrochartLegend.js +2 -2
- package/src/sap/ui/integration/controls/MicrochartLegendRenderer.js +1 -1
- package/src/sap/ui/integration/customElements/CustomElementBase.js +1 -1
- package/src/sap/ui/integration/customElements/CustomElementCard.js +1 -1
- package/src/sap/ui/integration/customElements/CustomElementCardEditor.js +1 -1
- package/src/sap/ui/integration/customElements/CustomElementEditor.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/BaseEditor.js +2 -2
- package/src/sap/ui/integration/designtime/baseEditor/PropertyEditor.js +2 -2
- package/src/sap/ui/integration/designtime/baseEditor/PropertyEditors.js +2 -2
- package/src/sap/ui/integration/designtime/baseEditor/i18n/i18n_en_US_sappsd.properties +15 -11
- package/src/sap/ui/integration/designtime/baseEditor/i18n/i18n_en_US_saprigi.properties +13 -19
- package/src/sap/ui/integration/designtime/baseEditor/i18n/i18n_en_US_saptrc.properties +16 -12
- package/src/sap/ui/integration/designtime/baseEditor/layout/Form.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/BasePropertyEditor.js +2 -2
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/PropertyEditorFactory.js +2 -2
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/arrayEditor/ArrayEditor.js +2 -2
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/booleanEditor/BooleanEditor.js +2 -2
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/dateEditor/DateEditor.js +2 -2
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/dateTimeEditor/DateTimeEditor.js +2 -2
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/enumStringEditor/EnumStringEditor.js +2 -2
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/groupEditor/GroupEditor.js +2 -2
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/iconEditor/IconEditor.js +2 -2
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/iconEditor/IsInIconPool.validator.js +2 -2
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/integerEditor/IntegerEditor.js +2 -2
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/jsonEditor/JsonEditor.fragment.xml +1 -0
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/jsonEditor/JsonEditor.js +7 -2
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/listEditor/ListEditor.js +2 -2
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/mapEditor/MapEditor.js +2 -2
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/multiSelectEditor/MultiSelectEditor.fragment.xml +15 -0
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/multiSelectEditor/MultiSelectEditor.js +116 -0
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/numberEditor/NumberEditor.js +2 -2
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/selectEditor/SelectEditor.js +2 -2
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/separatorEditor/SeparatorEditor.js +2 -2
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/stringEditor/StringEditor.js +2 -2
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/textAreaEditor/TextAreaEditor.js +2 -2
- package/src/sap/ui/integration/designtime/baseEditor/util/BaseDefaultValidatorModules.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/util/StylesheetManager.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/util/binding/ObjectBinding.js +2 -2
- package/src/sap/ui/integration/designtime/baseEditor/util/binding/resolveBinding.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/util/cleanupDesigntimeMetadata.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/util/createPromise.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/util/escapeParameter.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/util/findClosestInstance.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/util/hasTag.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/util/isTemplate.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/util/isValidBindingString.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/util/unset.js +2 -2
- package/src/sap/ui/integration/designtime/baseEditor/validator/IsBoolean.js +2 -2
- package/src/sap/ui/integration/designtime/baseEditor/validator/IsDate.js +2 -2
- package/src/sap/ui/integration/designtime/baseEditor/validator/IsInteger.js +2 -2
- package/src/sap/ui/integration/designtime/baseEditor/validator/IsNumber.js +2 -2
- package/src/sap/ui/integration/designtime/baseEditor/validator/IsPatternMatch.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/validator/IsSelectedKey.js +18 -3
- package/src/sap/ui/integration/designtime/baseEditor/validator/IsStringList.js +2 -2
- package/src/sap/ui/integration/designtime/baseEditor/validator/IsUniqueKey.js +2 -2
- package/src/sap/ui/integration/designtime/baseEditor/validator/IsUniqueList.js +2 -2
- package/src/sap/ui/integration/designtime/baseEditor/validator/IsValidBinding.js +2 -2
- package/src/sap/ui/integration/designtime/baseEditor/validator/MaxLength.js +2 -2
- package/src/sap/ui/integration/designtime/baseEditor/validator/NotABinding.js +2 -2
- package/src/sap/ui/integration/designtime/baseEditor/validator/ValidatorRegistry.js +2 -2
- package/src/sap/ui/integration/designtime/cardEditor/BASEditor.js +1 -1
- package/src/sap/ui/integration/designtime/cardEditor/CardEditor.js +1 -1
- package/src/sap/ui/integration/designtime/cardEditor/PropertyEditor.js +1 -1
- package/src/sap/ui/integration/designtime/cardEditor/PropertyEditors.js +1 -1
- package/src/sap/ui/integration/designtime/cardEditor/config/AppConfig.js +1 -1
- package/src/sap/ui/integration/designtime/cardEditor/config/HeaderConfig.js +1 -1
- package/src/sap/ui/integration/designtime/cardEditor/config/ListCardConfig.js +1 -1
- package/src/sap/ui/integration/designtime/cardEditor/config/ObjectCardConfig.js +1 -1
- package/src/sap/ui/integration/designtime/cardEditor/config/TableCardConfig.js +1 -1
- package/src/sap/ui/integration/designtime/cardEditor/config/generateActionConfig.js +1 -1
- package/src/sap/ui/integration/designtime/cardEditor/config/generateDataConfig.js +1 -1
- package/src/sap/ui/integration/designtime/cardEditor/config/index.js +13 -2
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n.properties +57 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_ar.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_bg.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_ca.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_cs.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_cy.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_da.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_de.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_el.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_en.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_en_GB.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_en_US_sappsd.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_en_US_saprigi.properties +0 -4
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_en_US_saptrc.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_es.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_es_MX.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_et.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_fi.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_fr.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_fr_CA.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_hi.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_hr.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_hu.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_id.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_it.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_iw.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_ja.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_kk.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_ko.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_lt.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_lv.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_ms.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_nl.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_no.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_pl.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_pt.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_pt_PT.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_ro.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_ru.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_sh.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_sk.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_sl.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_sv.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_th.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_tr.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_uk.properties +41 -1
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_vi.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_zh_CN.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_zh_TW.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/propertyEditor/complexMapEditor/ComplexMapEditor.js +62 -4
- package/src/sap/ui/integration/designtime/cardEditor/propertyEditor/destinationsEditor/DestinationsEditor.js +2 -2
- package/src/sap/ui/integration/designtime/cardEditor/propertyEditor/filtersEditor/FiltersEditor.js +218 -0
- package/src/sap/ui/integration/designtime/cardEditor/propertyEditor/iconEditor/IconEditor.js +2 -2
- package/src/sap/ui/integration/designtime/cardEditor/propertyEditor/parametersEditor/ParametersEditor.js +2 -2
- package/src/sap/ui/integration/designtime/cardEditor/util/CommonPatterns.js +1 -1
- package/src/sap/ui/integration/designtime/cardEditor/validator/IsPatternMatchList.js +1 -1
- package/src/sap/ui/integration/designtime/editor/CardEditor.js +53 -4
- package/src/sap/ui/integration/designtime/editor/CardPreview.js +31 -11
- package/src/sap/ui/integration/designtime/editor/css/CardPreview.css +18 -1
- package/src/sap/ui/integration/editor/Editor.js +219 -209
- package/src/sap/ui/integration/editor/EditorResourceBundles.js +43 -32
- package/src/sap/ui/integration/editor/Extension.js +2 -2
- package/src/sap/ui/integration/editor/Manifest.js +3 -3
- package/src/sap/ui/integration/editor/Merger.js +1 -19
- package/src/sap/ui/integration/editor/Settings.js +10 -6
- package/src/sap/ui/integration/editor/css/Editor.css +22 -0
- package/src/sap/ui/integration/editor/fields/BaseField.js +9 -12
- package/src/sap/ui/integration/editor/fields/BooleanField.js +4 -2
- package/src/sap/ui/integration/editor/fields/DateField.js +2 -2
- package/src/sap/ui/integration/editor/fields/DateTimeField.js +2 -2
- package/src/sap/ui/integration/editor/fields/DestinationField.js +2 -2
- package/src/sap/ui/integration/editor/fields/IntegerField.js +5 -2
- package/src/sap/ui/integration/editor/fields/ListField.js +274 -62
- package/src/sap/ui/integration/editor/fields/NumberField.js +2 -2
- package/src/sap/ui/integration/editor/fields/StringField.js +85 -53
- package/src/sap/ui/integration/editor/fields/viz/ColorSelect.js +10 -30
- package/src/sap/ui/integration/editor/fields/viz/IconSelect.js +2 -4
- package/src/sap/ui/integration/editor/fields/viz/ShapeSelect.js +2 -4
- package/src/sap/ui/integration/editor/languages.json +2 -2
- package/src/sap/ui/integration/formatters/DateTimeFormatter.js +1 -1
- package/src/sap/ui/integration/formatters/IconFormatter.js +1 -1
- package/src/sap/ui/integration/formatters/NumberFormatter.js +1 -1
- package/src/sap/ui/integration/formatters/TextFormatter.js +1 -1
- package/src/sap/ui/integration/library-bootstrap.js +1 -1
- package/src/sap/ui/integration/library.js +21 -4
- package/src/sap/ui/integration/messagebundle_ar.properties +4 -0
- package/src/sap/ui/integration/messagebundle_bg.properties +4 -0
- package/src/sap/ui/integration/messagebundle_ca.properties +4 -0
- package/src/sap/ui/integration/messagebundle_cs.properties +4 -0
- package/src/sap/ui/integration/messagebundle_cy.properties +4 -0
- package/src/sap/ui/integration/messagebundle_da.properties +4 -0
- package/src/sap/ui/integration/messagebundle_de.properties +4 -0
- package/src/sap/ui/integration/messagebundle_el.properties +4 -0
- package/src/sap/ui/integration/messagebundle_en.properties +4 -0
- package/src/sap/ui/integration/messagebundle_en_GB.properties +4 -0
- package/src/sap/ui/integration/messagebundle_en_US_sappsd.properties +4 -0
- package/src/sap/ui/integration/messagebundle_en_US_saprigi.properties +55 -81
- package/src/sap/ui/integration/messagebundle_en_US_saptrc.properties +4 -0
- package/src/sap/ui/integration/messagebundle_es.properties +4 -0
- package/src/sap/ui/integration/messagebundle_es_MX.properties +4 -0
- package/src/sap/ui/integration/messagebundle_et.properties +4 -0
- package/src/sap/ui/integration/messagebundle_fi.properties +4 -0
- package/src/sap/ui/integration/messagebundle_fr.properties +4 -0
- package/src/sap/ui/integration/messagebundle_fr_CA.properties +4 -0
- package/src/sap/ui/integration/messagebundle_hi.properties +4 -0
- package/src/sap/ui/integration/messagebundle_hr.properties +4 -0
- package/src/sap/ui/integration/messagebundle_hu.properties +4 -0
- package/src/sap/ui/integration/messagebundle_id.properties +4 -0
- package/src/sap/ui/integration/messagebundle_it.properties +4 -0
- package/src/sap/ui/integration/messagebundle_iw.properties +4 -0
- package/src/sap/ui/integration/messagebundle_ja.properties +4 -0
- package/src/sap/ui/integration/messagebundle_kk.properties +4 -0
- package/src/sap/ui/integration/messagebundle_ko.properties +4 -0
- package/src/sap/ui/integration/messagebundle_lt.properties +4 -0
- package/src/sap/ui/integration/messagebundle_lv.properties +4 -0
- package/src/sap/ui/integration/messagebundle_ms.properties +4 -0
- package/src/sap/ui/integration/messagebundle_nl.properties +4 -0
- package/src/sap/ui/integration/messagebundle_no.properties +4 -0
- package/src/sap/ui/integration/messagebundle_pl.properties +4 -0
- package/src/sap/ui/integration/messagebundle_pt.properties +4 -0
- package/src/sap/ui/integration/messagebundle_pt_PT.properties +4 -0
- package/src/sap/ui/integration/messagebundle_ro.properties +4 -0
- package/src/sap/ui/integration/messagebundle_ru.properties +4 -0
- package/src/sap/ui/integration/messagebundle_sh.properties +4 -0
- package/src/sap/ui/integration/messagebundle_sk.properties +4 -0
- package/src/sap/ui/integration/messagebundle_sl.properties +4 -0
- package/src/sap/ui/integration/messagebundle_sv.properties +4 -0
- package/src/sap/ui/integration/messagebundle_th.properties +4 -0
- package/src/sap/ui/integration/messagebundle_tr.properties +4 -0
- package/src/sap/ui/integration/messagebundle_uk.properties +4 -0
- package/src/sap/ui/integration/messagebundle_vi.properties +4 -0
- package/src/sap/ui/integration/messagebundle_zh_CN.properties +4 -0
- package/src/sap/ui/integration/messagebundle_zh_TW.properties +4 -0
- package/src/sap/ui/integration/model/ContextModel.js +3 -3
- package/src/sap/ui/integration/model/ObservableModel.js +2 -2
- package/src/sap/ui/integration/sap-ui-integration-config.js +1 -1
- package/src/sap/ui/integration/sap-ui-integration-define-nojQuery.js +1 -1
- package/src/sap/ui/integration/schemas/sap-card.json +195 -8
- package/src/sap/ui/integration/services/Data.js +1 -1
- package/src/sap/ui/integration/services/Navigation.js +1 -1
- package/src/sap/ui/integration/services/Service.js +1 -1
- package/src/sap/ui/integration/themes/base/CalendarContent.less +31 -4
- package/src/sap/ui/integration/themes/base/ObjectContent.less +57 -9
- package/src/sap/ui/integration/themes/base/library.source.less +1 -1
- package/src/sap/ui/integration/themes/sap_hcb/library.source.less +1 -1
- package/src/sap/ui/integration/thirdparty/adaptive-expressions.js +1 -0
- package/src/sap/ui/integration/thirdparty/adaptivecards-templating.js +660 -952
- package/src/sap/ui/integration/thirdparty/markdown-it.js +8340 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/bundle.esm.js +27 -102
- package/src/sap/ui/integration/thirdparty/webcomponents/bundle.esm.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ar-8f9ad94e.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ar-8f9ad94e.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ar-f6792d81.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ar-f6792d81.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_bg-39f4bd50.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_bg-39f4bd50.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_bg-884d46bd.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_bg-884d46bd.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ca-5b6cc3e2.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ca-5b6cc3e2.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ca-d12c1ceb.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ca-d12c1ceb.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_cs-307b7f69.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_cs-307b7f69.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_cs-c7ed5c29.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_cs-c7ed5c29.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_cy-0f578e7e.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_cy-0f578e7e.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_cy-9889d6f0.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_cy-9889d6f0.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_da-53593542.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_da-53593542.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_da-6bb7d77b.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_da-6bb7d77b.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_de-0376c479.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_de-0376c479.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_de-eb501c07.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_de-eb501c07.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_el-45d1c326.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_el-45d1c326.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_el-e1955d32.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_el-e1955d32.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_en-3bc10a88.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_en-3bc10a88.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_en-e41c44ec.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_en-e41c44ec.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_en_GB-963f5beb.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_en_GB-963f5beb.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_en_GB-a4723c29.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_en_GB-a4723c29.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_en_US_sappsd-10d3b264.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_en_US_sappsd-10d3b264.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_en_US_sappsd-9cf5ba75.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_en_US_sappsd-9cf5ba75.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_en_US_saprigi-00c865df.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_en_US_saprigi-00c865df.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_en_US_saprigi-8a51ede2.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_en_US_saprigi-8a51ede2.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_en_US_saptrc-ac48007a.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_en_US_saptrc-ac48007a.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_en_US_saptrc-ae1a6e4a.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_en_US_saptrc-ae1a6e4a.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_es-1fe90167.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_es-1fe90167.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_es-288d5c23.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_es-288d5c23.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_es_MX-4f1305df.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_es_MX-4f1305df.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_es_MX-b984b6dc.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_es_MX-b984b6dc.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_et-a0061a71.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_et-a0061a71.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_et-c96b504c.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_et-c96b504c.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_fi-27edc9b8.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_fi-27edc9b8.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_fi-c943134b.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_fi-c943134b.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_fr-16c1c577.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_fr-16c1c577.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_fr-6265990a.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_fr-6265990a.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_fr_CA-60f6fce4.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_fr_CA-60f6fce4.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_fr_CA-c0eae649.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_fr_CA-c0eae649.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_hi-3c753818.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_hi-3c753818.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_hi-c4029409.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_hi-c4029409.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_hr-49952683.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_hr-49952683.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_hr-f5eadd90.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_hr-f5eadd90.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_hu-9eaeaf2e.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_hu-9eaeaf2e.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_hu-d57d2bfc.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_hu-d57d2bfc.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_in-5f15c5a1.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_in-5f15c5a1.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_in-69efcc93.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_in-69efcc93.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_it-0b408aea.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_it-0b408aea.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_it-51d189db.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_it-51d189db.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_iw-6db571be.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_iw-6db571be.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_iw-71f66463.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_iw-71f66463.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ja-5b3dd502.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ja-5b3dd502.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ja-9c40042d.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ja-9c40042d.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_kk-b620a07a.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_kk-b620a07a.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_kk-c393c4a9.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_kk-c393c4a9.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ko-4be67a77.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ko-4be67a77.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ko-632e4f9f.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ko-632e4f9f.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_lt-56b41ac8.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_lt-56b41ac8.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_lt-daa86622.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_lt-daa86622.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_lv-54381557.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_lv-54381557.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_lv-c58db769.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_lv-c58db769.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ms-536227b5.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ms-536227b5.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ms-54fe878e.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ms-54fe878e.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_nl-56e48e33.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_nl-56e48e33.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_nl-71b1c190.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_nl-71b1c190.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_no-5ae816d9.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_no-5ae816d9.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_no-eecb1eec.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_no-eecb1eec.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_pl-bd30a402.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_pl-bd30a402.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_pl-dd8107e1.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_pl-dd8107e1.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_pt-026877c7.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_pt-026877c7.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_pt-9e9f924f.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_pt-9e9f924f.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_pt_PT-2c6cce63.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_pt_PT-2c6cce63.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_pt_PT-a24258d4.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_pt_PT-a24258d4.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ro-0dbe572d.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ro-0dbe572d.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ro-767b0e99.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ro-767b0e99.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ru-4291aa7d.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ru-4291aa7d.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ru-b3537542.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ru-b3537542.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_sh-4047dcd1.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_sh-4047dcd1.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_sh-806e8ca0.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_sh-806e8ca0.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_sk-57daf6b1.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_sk-57daf6b1.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_sk-fd3049d8.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_sk-fd3049d8.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_sl-586b310b.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_sl-586b310b.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_sl-71a84189.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_sl-71a84189.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_sv-1796a5d2.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_sv-1796a5d2.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_sv-d6d000eb.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_sv-d6d000eb.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_th-63398540.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_th-63398540.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_th-79715cf0.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_th-79715cf0.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_tr-c378e505.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_tr-c378e505.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_tr-f32e601b.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_tr-f32e601b.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_uk-70daf763.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_uk-70daf763.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_uk-99b5589a.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_uk-99b5589a.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_vi-3f36f453.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_vi-3f36f453.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_vi-c9a9277d.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_vi-c9a9277d.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_zh_CN-2420a6e9.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_zh_CN-2420a6e9.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_zh_CN-748178a2.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_zh_CN-748178a2.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_zh_TW-91e89b06.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_zh_TW-91e89b06.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_zh_TW-ffef9f6e.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_zh_TW-ffef9f6e.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-0c3377c5.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-0c3377c5.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-16ed5ab0.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-16ed5ab0.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-2b80e11c.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-2b80e11c.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-324b2fcc.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-324b2fcc.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-4809f843.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-4809f843.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-5338149e.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-5338149e.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-55dcf53d.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-55dcf53d.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-55e683ed.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-55e683ed.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-5bc2c0de.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-5bc2c0de.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-7bc1fa16.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-7bc1fa16.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-7f593c6e.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-7f593c6e.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-826107f5.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-826107f5.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-8b95ce95.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-8b95ce95.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-a003a2e2.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-a003a2e2.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-ab3e8649.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-ab3e8649.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-bfa33d93.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-bfa33d93.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-dec4feca.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-dec4feca.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-fb5a25ab.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-fb5a25ab.js.map +1 -0
- package/src/sap/ui/integration/util/BaseFactory.js +2 -2
- package/src/sap/ui/integration/util/BindingHelper.js +6 -4
- package/src/sap/ui/integration/util/BindingResolver.js +6 -5
- package/src/sap/ui/integration/util/CacheAndRequestDataProvider.js +1 -1
- package/src/sap/ui/integration/util/CardMerger.js +7 -18
- package/src/sap/ui/integration/util/CardObserver.js +2 -2
- package/src/sap/ui/integration/util/ContentFactory.js +5 -9
- package/src/sap/ui/integration/util/CsrfTokenHandler.js +296 -0
- package/src/sap/ui/integration/util/DataProvider.js +11 -2
- package/src/sap/ui/integration/util/DataProviderFactory.js +49 -12
- package/src/sap/ui/integration/util/Destinations.js +2 -2
- package/src/sap/ui/integration/util/ExtensionDataProvider.js +2 -2
- package/src/sap/ui/integration/util/HeaderFactory.js +3 -3
- package/src/sap/ui/integration/util/JSONBindingHelper.js +3 -3
- package/src/sap/ui/integration/util/LoadingProvider.js +2 -2
- package/src/sap/ui/integration/util/Manifest.js +4 -4
- package/src/sap/ui/integration/util/ManifestResolver.js +99 -0
- package/src/sap/ui/integration/util/ParameterMap.js +1 -1
- package/src/sap/ui/integration/util/RequestDataProvider.js +88 -50
- package/src/sap/ui/integration/util/ServiceDataProvider.js +2 -2
- package/src/sap/ui/integration/util/ServiceManager.js +2 -2
- package/src/sap/ui/integration/util/SkeletonCard.js +50 -0
- package/src/sap/ui/integration/util/Utils.js +74 -2
- package/src/sap/ui/integration/util/loadCardEditor.js +1 -1
- package/src/sap/ui/integration/widgets/Card.js +67 -20
- package/src/sap/ui/integration/widgets/CardRenderer.js +1 -7
- package/src/sap-ui-integration-card-editor.js +1 -1
- package/src/sap-ui-integration-editor.js +1 -1
- package/src/sap-ui-integration.js +1 -1
- package/ui5.yaml +288 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/Unicode-Data-Files-LICENSE.txt +0 -27
- package/src/sap/ui/integration/thirdparty/webcomponents/ar.43441c1da168c24d.json +0 -5906
- package/src/sap/ui/integration/thirdparty/webcomponents/ar_EG.2c9d7bc8c6cc480e.json +0 -5906
- package/src/sap/ui/integration/thirdparty/webcomponents/ar_SA.5a58dac7851f3491.json +0 -5906
- package/src/sap/ui/integration/thirdparty/webcomponents/bg.ed8d32010cf321a6.json +0 -4979
- package/src/sap/ui/integration/thirdparty/webcomponents/bundle.es5.js +0 -212
- package/src/sap/ui/integration/thirdparty/webcomponents/ca.e7ad42298985cd11.json +0 -4996
- package/src/sap/ui/integration/thirdparty/webcomponents/cs.9c679acdc4b03e38.json +0 -5498
- package/src/sap/ui/integration/thirdparty/webcomponents/da.ba9951ef39b201a6.json +0 -4888
- package/src/sap/ui/integration/thirdparty/webcomponents/de.6caccc36abcd1ecf.json +0 -4916
- package/src/sap/ui/integration/thirdparty/webcomponents/de_AT.0f4ffe37737725a0.json +0 -4917
- package/src/sap/ui/integration/thirdparty/webcomponents/de_CH.c148cbc7ceb1a7a5.json +0 -4915
- package/src/sap/ui/integration/thirdparty/webcomponents/el.11c4c67dcb9fadcc.json +0 -4883
- package/src/sap/ui/integration/thirdparty/webcomponents/el_CY.ed3bddd6e79dc343.json +0 -4883
- package/src/sap/ui/integration/thirdparty/webcomponents/en.c4465af466100b5b.json +0 -4970
- package/src/sap/ui/integration/thirdparty/webcomponents/en_AU.5cb9fccc9ce24663.json +0 -4962
- package/src/sap/ui/integration/thirdparty/webcomponents/en_GB.e31daeeb57c2f1d1.json +0 -4971
- package/src/sap/ui/integration/thirdparty/webcomponents/en_HK.0a22405bb092bec2.json +0 -4977
- package/src/sap/ui/integration/thirdparty/webcomponents/en_IE.6a062df10dabdb1c.json +0 -4971
- package/src/sap/ui/integration/thirdparty/webcomponents/en_IN.bfd20b07e9079267.json +0 -4972
- package/src/sap/ui/integration/thirdparty/webcomponents/en_NZ.18303e8298e4752a.json +0 -4971
- package/src/sap/ui/integration/thirdparty/webcomponents/en_PG.9f604c968f3ab77e.json +0 -4972
- package/src/sap/ui/integration/thirdparty/webcomponents/en_SG.cc59a6a409e1617e.json +0 -4973
- package/src/sap/ui/integration/thirdparty/webcomponents/en_ZA.198f9641a502d660.json +0 -4972
- package/src/sap/ui/integration/thirdparty/webcomponents/es.c10bf80f473caf30.json +0 -4912
- package/src/sap/ui/integration/thirdparty/webcomponents/es_AR.7708d7dd7a6d2a15.json +0 -4914
- package/src/sap/ui/integration/thirdparty/webcomponents/es_BO.4a1616d9f3425fba.json +0 -4913
- package/src/sap/ui/integration/thirdparty/webcomponents/es_CL.5637126713317a15.json +0 -4914
- package/src/sap/ui/integration/thirdparty/webcomponents/es_CO.c9436572ca8f4da8.json +0 -4913
- package/src/sap/ui/integration/thirdparty/webcomponents/es_MX.b4bce7dc951eb8f4.json +0 -4915
- package/src/sap/ui/integration/thirdparty/webcomponents/es_PE.65f448fde1f0de13.json +0 -4913
- package/src/sap/ui/integration/thirdparty/webcomponents/es_UY.9ec44031491e9b95.json +0 -4915
- package/src/sap/ui/integration/thirdparty/webcomponents/es_VE.152233c7f57ecdab.json +0 -4914
- package/src/sap/ui/integration/thirdparty/webcomponents/et.bbc93e8a17832e8f.json +0 -4967
- package/src/sap/ui/integration/thirdparty/webcomponents/fa.083b927b3586b3a3.json +0 -4883
- package/src/sap/ui/integration/thirdparty/webcomponents/fi.1b4c89f38783556e.json +0 -5008
- package/src/sap/ui/integration/thirdparty/webcomponents/fr.ddbb9df1e0bdb6ac.json +0 -4979
- package/src/sap/ui/integration/thirdparty/webcomponents/fr_BE.bf3609280b7b93ee.json +0 -4979
- package/src/sap/ui/integration/thirdparty/webcomponents/fr_CA.b64d0bcd23a5cd3e.json +0 -4973
- package/src/sap/ui/integration/thirdparty/webcomponents/fr_CH.349b221a02887244.json +0 -4997
- package/src/sap/ui/integration/thirdparty/webcomponents/fr_LU.ef7d7c8bb3328d28.json +0 -4979
- package/src/sap/ui/integration/thirdparty/webcomponents/he.d628e8bf13a8a2c8.json +0 -5378
- package/src/sap/ui/integration/thirdparty/webcomponents/hi.cc34df8229f656f5.json +0 -4829
- package/src/sap/ui/integration/thirdparty/webcomponents/hr.c920290f50173516.json +0 -4919
- package/src/sap/ui/integration/thirdparty/webcomponents/hu.2d9fa4a9163cd7c0.json +0 -4856
- package/src/sap/ui/integration/thirdparty/webcomponents/id.163fdd2a7dbd1dd3.json +0 -4658
- package/src/sap/ui/integration/thirdparty/webcomponents/it.b5acbefdd6794dfc.json +0 -4950
- package/src/sap/ui/integration/thirdparty/webcomponents/it_CH.ade4cbfb2e49424a.json +0 -4950
- package/src/sap/ui/integration/thirdparty/webcomponents/ja.d882fade5c3e04b5.json +0 -4830
- package/src/sap/ui/integration/thirdparty/webcomponents/kk.ab96b18c66676a99.json +0 -4725
- package/src/sap/ui/integration/thirdparty/webcomponents/ko.a0d63a1580dcbefd.json +0 -4738
- package/src/sap/ui/integration/thirdparty/webcomponents/lt.93bb00f91a74d613.json +0 -5481
- package/src/sap/ui/integration/thirdparty/webcomponents/lv.3c272216d7d4d61c.json +0 -5112
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ar.d20c665dc46a6f9b.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_bg.38428028ff3b1869.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ca.c46423cc94896604.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_cs.d9d68b2690954b4e.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_cy.facf33e921a1a902.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_da.1189e997523b89f6.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_de.1edf86f620dd657a.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_el.b0d02877b9366e9a.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_es.43fc364a8be37449.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_es_MX.ebf2828c83c4821a.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_et.8f9abcfab5eb10c2.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_fi.6fc14fd0d16cc223.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_fr.c686ab9036b91d78.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_fr_CA.fb1250c736f2ac8c.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_hi.8b8cbc4fb282adf6.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_hr.bb811aa76359724a.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_hu.18417ced7dce8cf7.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_in.e3c5681fc8917143.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_it.554f904c106ab069.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_iw.487febe0c5c504ff.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ja.68cf1fa9f03cd6c3.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_kk.36e63b8f9e1fd98f.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ko.fb000c7a35009d21.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_lt.6acd357e3eb3f54e.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_lv.3ffdda1a20bc15ec.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ms.218aa30a3e8f58fa.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_nl.f753744c7e08b3a5.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_no.385f0fc9f2e49ab5.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_pl.6c42672479ad9687.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_pt.ede162cbf79f7fca.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_pt_PT.dcaa871d6b8eec75.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ro.d3f32654c57588ea.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ru.0ec083b64484a12d.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_sh.98cd3e4299919a30.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_sk.fddb8b9e7b70fc1d.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_sl.c55d5f817482ea06.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_sv.6d855a11d20b4335.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_th.e791b9a81f16120c.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_tr.ce83741e39606b55.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_uk.e1ea822764025a5a.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_vi.7ee7339211750379.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_zh_CN.0cfd71faba640211.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_zh_TW.bc718e0187728a16.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/ms.e26b54937e5d1516.json +0 -4515
- package/src/sap/ui/integration/thirdparty/webcomponents/nb.a6e9993590a73989.json +0 -4977
- package/src/sap/ui/integration/thirdparty/webcomponents/nl.cac914c3529b7b01.json +0 -4884
- package/src/sap/ui/integration/thirdparty/webcomponents/nl_BE.a3ac6f9f99feba7b.json +0 -4884
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css.34f9ef46a8f6a852.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css.52d78e00faad9126.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css.6c6e759e0d3534d0.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css.8cc66e917327b7a4.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css.966b2e43c0966351.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css.97725b2cf4e77494.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css.b1bf75f0b850363c.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css.d164773ecb392b28.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css.def3978aa5de7b11.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css.dfd19a1252497415.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css.e19065174fdd4592.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css.e2ac94de83159e1e.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/pl.2cc1c94da23f8c37.json +0 -5176
- package/src/sap/ui/integration/thirdparty/webcomponents/pt.fc8dd9656bc363a4.json +0 -4805
- package/src/sap/ui/integration/thirdparty/webcomponents/pt_PT.be31b641eedfdb48.json +0 -4940
- package/src/sap/ui/integration/thirdparty/webcomponents/ro.fc6a48bc63cf435e.json +0 -5090
- package/src/sap/ui/integration/thirdparty/webcomponents/ru.77f0de46b3b490b1.json +0 -5407
- package/src/sap/ui/integration/thirdparty/webcomponents/ru_UA.4c4e0034fbd799c6.json +0 -5407
- package/src/sap/ui/integration/thirdparty/webcomponents/sk.0d62a8cca83c1dec.json +0 -5370
- package/src/sap/ui/integration/thirdparty/webcomponents/sl.7b303551cc238560.json +0 -5340
- package/src/sap/ui/integration/thirdparty/webcomponents/sr.7fb9ac6ed054ff7d.json +0 -5126
- package/src/sap/ui/integration/thirdparty/webcomponents/sv.6ea04dfd8d1c331b.json +0 -5011
- package/src/sap/ui/integration/thirdparty/webcomponents/th.8e8d734a66ed1c51.json +0 -4797
- package/src/sap/ui/integration/thirdparty/webcomponents/tr.dbb9aa836fc4e3f5.json +0 -4979
- package/src/sap/ui/integration/thirdparty/webcomponents/uk.4854089f0c12f77c.json +0 -5353
- package/src/sap/ui/integration/thirdparty/webcomponents/vi.e6ffbde0643d7d75.json +0 -4673
- package/src/sap/ui/integration/thirdparty/webcomponents/webcomponentsjs/bundles/webcomponents-ce.js +0 -73
- package/src/sap/ui/integration/thirdparty/webcomponents/webcomponentsjs/bundles/webcomponents-ce.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/webcomponentsjs/bundles/webcomponents-sd-ce-pf.js +0 -336
- package/src/sap/ui/integration/thirdparty/webcomponents/webcomponentsjs/bundles/webcomponents-sd-ce-pf.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/webcomponentsjs/bundles/webcomponents-sd-ce.js +0 -221
- package/src/sap/ui/integration/thirdparty/webcomponents/webcomponentsjs/bundles/webcomponents-sd-ce.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/webcomponentsjs/bundles/webcomponents-sd.js +0 -169
- package/src/sap/ui/integration/thirdparty/webcomponents/webcomponentsjs/bundles/webcomponents-sd.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/webcomponentsjs/webcomponents-loader.js +0 -185
- package/src/sap/ui/integration/thirdparty/webcomponents/zh_CN.6607a3e9e0901e53.json +0 -4632
- package/src/sap/ui/integration/thirdparty/webcomponents/zh_HK.1c2563d3e4dad56e.json +0 -4640
- package/src/sap/ui/integration/thirdparty/webcomponents/zh_SG.db7f1334eecf894d.json +0 -4640
- package/src/sap/ui/integration/thirdparty/webcomponents/zh_TW.a1d00dd87c58d8f0.json +0 -4728
- package/src/sap/ui/integration/util/CardActions.js +0 -551
|
@@ -1,121 +1,46 @@
|
|
|
1
|
-
const e={};var t={},i=t.hasOwnProperty,r=t.toString,a=i.toString,o=a.call(Object),n=function(e){var t,n;return!(!e||"[object Object]"!==r.call(e))&&(!(t=Object.getPrototypeOf(e))||"function"==typeof(n=i.call(t,"constructor")&&t.constructor)&&a.call(n)===o)},s=Object.create(null),l=function(){var e,t,i,r,a,o,u=arguments[2]||{},d=3,c=arguments.length,h=arguments[0]||!1,p=arguments[1]?void 0:s;for("object"!=typeof u&&"function"!=typeof u&&(u={});d<c;d++)if(null!=(a=arguments[d]))for(r in a)e=u[r],i=a[r],"__proto__"!==r&&u!==i&&(h&&i&&(n(i)||(t=Array.isArray(i)))?(t?(t=!1,o=e&&Array.isArray(e)?e:[]):o=e&&n(e)?e:{},u[r]=l(h,arguments[1],o,i)):i!==p&&(u[r]=i));return u},u=function(){var e=[!0,!1];return e.push.apply(e,arguments),l.apply(null,e)};const d=new Map,c=e=>d.get(e),h={default:"en",all:["ar","ar_EG","ar_SA","bg","ca","cs","da","de","de_AT","de_CH","el","el_CY","en","en_AU","en_GB","en_HK","en_IE","en_IN","en_NZ","en_PG","en_SG","en_ZA","es","es_AR","es_BO","es_CL","es_CO","es_MX","es_PE","es_UY","es_VE","et","fa","fi","fr","fr_BE","fr_CA","fr_CH","fr_LU","he","hi","hr","hu","id","it","it_CH","ja","kk","ko","lt","lv","ms","nb","nl","nl_BE","pl","pt","pt_PT","ro","ru","ru_UA","sk","sl","sr","sv","th","tr","uk","vi","zh_CN","zh_HK","zh_SG","zh_TW"]},p={default:"sap_fiori_3",all:["sap_fiori_3","sap_fiori_3_dark","sap_belize","sap_belize_hcb","sap_belize_hcw","sap_fiori_3_hcb","sap_fiori_3_hcw"]}.default,_={default:"en",all:["ar","bg","ca","cs","da","de","el","en","es","et","fi","fr","hi","hr","hu","it","iw","ja","kk","ko","lt","lv","ms","nl","no","pl","pt","ro","ru","sh","sk","sl","sv","th","tr","uk","vi","zh_CN","zh_TW"]}.default,m=h.default,g=h.all;let f=!1,v={animationMode:"full",theme:p,rtl:null,language:null,calendarType:null,noConflict:!1,formatSettings:{}};const y=new Map;y.set("true",!0),y.set("false",!1);const b=()=>{f||((()=>{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(e){console.warn("Incorrect data-sap-ui-config format. Please use JSON")}t&&(v=u(v,t))}})(),new URLSearchParams(window.location.search).forEach((e,t)=>{if(!t.startsWith("sap-ui"))return;const i=e.toLowerCase(),r=t.split("sap-ui-")[1];y.has(e)&&(e=y.get(i)),v[r]=e}),(()=>{const e=c("OpenUI5Support");if(!e||!e.isLoaded())return;const t=e.getConfigurationSettingsObject();v=u(v,t)})(),f=!0)},w=new Map,k=new Map,x=new Map,C=async e=>{w.get(e)||w.set(e,fetch(e));const t=await w.get(e);return x.get(e)||x.set(e,t.text()),x.get(e)},S=async e=>{w.get(e)||w.set(e,fetch(e));const t=await w.get(e);return k.get(e)||k.set(e,t.json()),k.get(e)},T=new Map,D=new Map,P=new Set,I=new Set,M=(e,t,i)=>{i._?D.set(`${e}_${t}`,i._):i.includes(":root")||""===i?D.set(`${e}_${t}`,i):T.set(`${e}_${t}`,i),P.add(e),I.add(t)},B=async(e,t)=>{const i=D.get(`${e}_${t}`);if(void 0!==i)return i;if(!I.has(t)){const t=[...I.values()].join(", ");return console.warn(`You have requested a non-registered theme - falling back to ${p}. Registered themes are: ${t}`),D.get(`${e}_${p}`)}const r=await E(e,t),a=r._||r;return D.set(`${e}_${t}`,a),a},E=async(e,t)=>{let i=T.get(`${e}_${t}`);if(!i)throw new Error(`You have to import the ${e}/dist/Assets.js module to switch to additional themes`);return!i.startsWith("/")&&window.sap&&window.sap.ui&&(i=`${window.sap.ui.require.toUrl("")}/${i}`),".css"===(e=>{const t=e.lastIndexOf(".");return t<1?"":e.slice(t)})(i)?C(i):S(i)},F=()=>P,A=(e,t={})=>{const i=document.createElement("style");return i.type="text/css",Object.entries(t).forEach(e=>i.setAttribute(...e)),i.textContent=e,document.head.appendChild(i),i},N=(e,t)=>{const i=document.head.querySelector(`style[data-ui5-theme-properties="${t}"]`);if(i)i.textContent=e||"";else{A(e,{"data-ui5-theme-properties":t})}},O=()=>{const e=(()=>{let e=document.querySelector(".sapThemeMetaData-Base-baseLib");if(e)return getComputedStyle(e).backgroundImage;e=document.createElement("span"),e.style.display="none",e.classList.add("sapThemeMetaData-Base-baseLib"),document.body.appendChild(e);const t=getComputedStyle(e).backgroundImage;return document.body.removeChild(e),t})();if(!e||"none"===e)return;return(e=>{let t,i;try{t=e.Path.match(/\.([^.]+)\.css_variables$/)[1],i=e.Extends[0]}catch(t){return void console.warn("Malformed theme metadata Object",e)}return{themeName:t,baseThemeName:i}})((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(e){return void console.warn("Malformed theme metadata string, unable to decodeURIComponent")}try{return JSON.parse(e)}catch(e){console.warn("Malformed theme metadata string, unable to parse JSON")}}})(e))};let $;const L=()=>!!window.CSSVarsPonyfill,R=()=>{$=void 0,window.CSSVarsPonyfill.cssVars({rootElement:document.head,silent:!0})},z="@ui5/webcomponents-theme-base",H=async e=>{if(!F().has(z))return;const t=await B(z,e);N(t,z)},U=async e=>{const t=(()=>{const e=O();if(e)return e;const t=c("OpenUI5Support");if(t){if(t.cssVariablesLoaded())return{themeName:t.getConfigurationSettingsObject().theme}}})();t&&e===t.themeName?(()=>{const e=document.head.querySelector(`style[data-ui5-theme-properties="${z}"]`);e&&e.parentElement.removeChild(e)})():await H(e);const i=(e=>I.has(e))(e)?e:t&&t.baseThemeName;await(async e=>{F().forEach(async t=>{if(t===z)return;const i=await B(t,e);N(i,t)})})(i),L()&&R()};let j;const V=()=>(void 0===j&&(b(),j=v.theme),j),W=async e=>{j!==e&&(j=e,await U(j))};((t,i,...r)=>{if(r.length)throw new Error("addCustomCSS no longer accepts theme specific CSS. new signature is `addCustomCSS(tag, css)`");e[t]||(e[t]=[]),e[t].push(i)})("ui5-select","\n\t.ui5-select-root ui5-li:first-child {\n\t\tdisplay: none;\n\t}\n");const Y=getComputedStyle(document.documentElement);if(sap&&sap.ui&&sap.ui.getCore&&(!!Y.getPropertyValue("--sapFontFamily")||!!Y.getPropertyValue("--sapBrandColor")||!!Y.getPropertyValue("--sapBaseColor"))){const e=sap.ui.getCore().getConfiguration().getTheme();W(e)}const q=window.sap,G=q&&q.ui&&"function"==typeof q.ui.getCore&&q.ui.getCore();((e,t)=>{d.set(e,t)})("OpenUI5Support",{isLoaded:()=>!!G,init:()=>G?new Promise(e=>{G.attachInit(()=>{q.ui.require(["sap/ui/core/LocaleData"],e)})}):Promise.resolve(),getConfigurationSettingsObject:()=>{if(!G)return;const e=G.getConfiguration(),t=q.ui.require("sap/ui/core/LocaleData");return{animationMode:e.getAnimationMode(),language:e.getLanguage(),theme:e.getTheme(),rtl:e.getRTL(),calendarType:e.getCalendarType(),formatSettings:{firstDayOfWeek:t?t.getInstance(e.getLocale()).getFirstDayOfWeek():void 0}}},getLocaleDataObject:()=>{if(!G)return;const e=G.getConfiguration();return q.ui.require("sap/ui/core/LocaleData").getInstance(e.getLocale())._get()},attachListeners:()=>{G&&(()=>{const e=G.getConfiguration();G.attachThemeChanged(async()=>{await W(e.getTheme())})})()},cssVariablesLoaded:()=>{if(!G)return;const e=[...document.head.children].find(e=>"sap-ui-theme-sap.ui.core"===e.id);return e?!!e.href.match(/\/css(-|_)variables\.css/):void 0}});var J=()=>{const e=navigator.languages;return e&&e[0]||navigator.language||navigator.userLanguage||navigator.browserLanguage||_};class X{constructor(){this._eventRegistry={}}attachEvent(e,t){const i=this._eventRegistry;let r=i[e];Array.isArray(r)||(i[e]=[],r=i[e]),r.push({function:t})}detachEvent(e,t){const i=this._eventRegistry;let r=i[e];r&&(r=r.filter(e=>e.function!==t),0===r.length&&delete i[e])}fireEvent(e,t){const i=this._eventRegistry[e];return i?i.map(e=>e.function.call(this,t)):[]}isHandlerAttached(e,t){const i=this._eventRegistry[e];if(!i)return!1;for(let e=0;e<i.length;e++){if(i[e].function===t)return!0}return!1}hasListeners(e){return!!this._eventRegistry[e]}}const Q=new X;const Z=e=>{const t=[];return e.forEach(e=>{t.push(e)}),t},K=new Set,ee=new Set;let te;const ie=e=>{K.add(e)},re=()=>{console.warn("The following tags have already been defined by a different UI5 Web Components version: "+Z(ee).join(", ")),ee.clear()},ae=new Set,oe=new Set,ne=new 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 i=new Map;for(t=this.shift();t;){const r=i.get(t)||0;if(r>10)throw new Error("Web component processed too many times this task, max allowed is: 10");e(t),i.set(t,r+1),t=this.shift()}}};let se,le,ue,de,ce;class he{constructor(){throw new Error("Static class")}static async renderDeferred(e){ne.add(e),await he.scheduleRenderTask()}static renderImmediately(e){e._render()}static cancelRender(e){ne.remove(e)}static async scheduleRenderTask(){de||(de=new Promise(e=>{window.requestAnimationFrame(()=>{ne.process(e=>e._render()),de=null,e(),ue||(ue=setTimeout(()=>{ue=void 0,ne.isEmpty()&&he._resolveTaskPromise()},200))})})),await de}static whenDOMUpdated(){return se||(se=new Promise(e=>{le=e,window.requestAnimationFrame(()=>{ne.isEmpty()&&(se=void 0,e())})}),se)}static whenAllCustomElementsAreDefined(){const e=Z(K).map(e=>customElements.whenDefined(e));return Promise.all(e)}static async whenFinished(){await he.whenAllCustomElementsAreDefined(),await he.whenDOMUpdated()}static _resolveTaskPromise(){ne.isEmpty()&&le&&(le.call(this),le=void 0,se=void 0)}static register(e){oe.add(e)}static deregister(e){oe.delete(e)}static reRenderAllUI5Elements(e){oe.forEach(t=>{const i=(r=t.constructor,ae.has(r));var r;const a=t.constructor.getMetadata().isLanguageAware();(!e||e.rtlAware&&i||e.languageAware&&a)&&he.renderDeferred(t)})}}const pe=()=>(void 0===ce&&(b(),ce=v.language),ce),_e=/^((?:[A-Z]{2,3}(?:-[A-Z]{3}){0,3})|[A-Z]{4}|[A-Z]{5,8})(?:-([A-Z]{4}))?(?:-([A-Z]{2}|[0-9]{3}))?((?:-[0-9A-Z]{5,8}|-[0-9][0-9A-Z]{3})*)((?:-[0-9A-WYZ](?:-[0-9A-Z]{2,8})+)*)(?:-(X(?:-[0-9A-Z]{1,8})+))?$/i;class me{constructor(e){const t=_e.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]||null,this.sScript=t[2]||null,this.sRegion=t[3]||null,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("-")}}const ge=e=>{try{if(e&&"string"==typeof e)return new me(e)}catch(e){}},fe=e=>e?ge(e):pe()?new me(pe()):ge(J()),ve=/^((?:[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,ye=/(?:^|-)(saptrc|sappsd)(?:-|$)/i,be={he:"iw",yi:"ji",id:"in",sr:"sh"},we=e=>{if(!e)return m;if("zh_HK"===e)return"zh_TW";const t=e.lastIndexOf("_");return t>=0?e.slice(0,t):e!==m?m:""},ke=new Map,xe=new Map,Ce=(e,t)=>{ke.set(e,t)},Se=(e,t)=>{const i=xe.get(e)||{};xe.set(e,Object.assign({},i,t))},Te=async e=>{const t=xe.get(e);if(!t)return void console.warn("Message bundle assets are not configured. Falling back to English texts.",` You need to import ${e}/dist/Assets.js with a build tool that supports JSON imports.`);const i=fe().getLanguage(),r=fe().getRegion();let a=(e=>{let t;if(!e)return m;if("string"==typeof e&&(t=ve.exec(e.replace(/_/g,"-")))){let e=t[1].toLowerCase(),i=t[3]?t[3].toUpperCase():void 0;const r=t[2]?t[2].toLowerCase():void 0,a=t[4]?t[4].slice(1):void 0,o=t[6];return e=be[e]||e,o&&(t=ye.exec(o))||a&&(t=ye.exec(a))?"en_US_"+t[1].toLowerCase():("zh"!==e||i||("hans"===r?i="CN":"hant"===r&&(i="TW")),e+(i?"_"+i+(a?"_"+a.replace("-","_"):""):""))}})(i+(r?"-"+r:""));for(;a!==_&&!t[a];)a=we(a);if(!t[a])return void Ce(e,null);let o=t[a];if("object"==typeof o)return void Ce(e,o);!o.startsWith("/")&&window.sap&&window.sap.ui&&(o=`${window.sap.ui.require.toUrl("")}/${o}`);const n=await C(o);let s;if(n.startsWith("{"))s=JSON.parse;else{const e=c("PropertiesFormatSupport");if(!e)throw new Error('In order to support .properties files, please: import "@ui5/webcomponents-base/dist/features/PropertiesFormatSupport.js";');s=e.parser}const l=s(n);Ce(e,l)};var De,Pe;De=()=>{const e=[...ke.keys()];return Promise.all(e.map(Te))},Q.attachEvent("languageChange",De);var Ie=function(e,t,i){if(!e)return e;function r(e,t){return function(){var r=e[t].apply(e,arguments);return i?this:(typeof r.getInterface === "function")?r.getInterface():r}}if(Pe=Pe,!t)return{};for(var a,o=0,n=t.length;o<n;o++)e[a=t[o]]&&"function"!=typeof e[a]||(this[a]=r(e,a))},Me={},Be=window;function Ee(e){return Array.isArray(e)?e.slice():e.split(".")}Me.create=function(e,t){for(var i=t||Be,r=Ee(e),a=0;a<r.length;a++){var o=r[a];if(null===i[o]||void 0!==i[o]&&"object"!=typeof i[o]&&"function"!=typeof i[o])throw new Error("Could not set object-path for '"+r.join(".")+"', path segment '"+o+"' already exists.");i[o]=i[o]||{},i=i[o]}return i},Me.get=function(e,t){for(var i=t||Be,r=Ee(e),a=r.pop(),o=0;o<r.length&&i;o++)i=i[r[o]];return i?i[a]:void 0},Me.set=function(e,t,i){i=i||Be;var r=Ee(e),a=r.pop();Me.create(r,i)[a]=t};var Fe,Ae="undefined"!=typeof window&&window.performance&&performance.now&&performance.timing?(Fe=performance.timing.navigationStart,function(){return Fe+performance.now()}):Date.now,Ne={Level:{NONE:-1,FATAL:0,ERROR:1,WARNING:2,INFO:3,DEBUG:4,TRACE:5,ALL:6}},Oe=[],$e={"":Ne.Level.ERROR},Le=3e3,Re=null,ze=!1;function He(e,t){return("000"+String(e)).slice(-t)}function Ue(e){return!e||isNaN($e[e])?$e[""]:$e[e]}function je(){var e=Oe.length;if(e){var t=Math.min(e,Math.floor(.7*Le));Re&&Re.onDiscardLogEntries(Oe.slice(0,e-t)),Oe=t?Oe.slice(-t,e):[]}}function Ve(){return Re||(Re={listeners:[],onLogEntry:function(e){for(var t=0;t<Re.listeners.length;t++)Re.listeners[t].onLogEntry&&Re.listeners[t].onLogEntry(e)},onDiscardLogEntries:function(e){for(var t=0;t<Re.listeners.length;t++)Re.listeners[t].onDiscardLogEntries&&Re.listeners[t].onDiscardLogEntries(e)},attach:function(e,t){t&&(Re.listeners.push(t),t.onAttachToLog&&t.onAttachToLog(e))},detach:function(e,t){for(var i=0;i<Re.listeners.length;i++)if(Re.listeners[i]===t)return t.onDetachFromLog&&t.onDetachFromLog(e),void Re.listeners.splice(i,1)}}),Re}function We(e,t,i,r,a){if(a||r||"function"!=typeof i||(a=i,i=""),a||"function"!=typeof r||(a=r,r=""),e<=Ue(r=r||void 0)){var o=Ae(),n=new Date(o),s=Math.floor(1e3*(o-Math.floor(o))),l={time:He(n.getHours(),2)+":"+He(n.getMinutes(),2)+":"+He(n.getSeconds(),2)+"."+He(n.getMilliseconds(),3)+He(s,3),date:He(n.getFullYear(),4)+"-"+He(n.getMonth()+1,2)+"-"+He(n.getDate(),2),timestamp:o,level:e,message:String(t||""),details:String(i||""),component:String(r||"")};if(ze&&"function"==typeof a&&(l.supportInfo=a()),Le&&(Oe.length>=Le&&je(),Oe.push(l)),Re&&Re.onLogEntry(l),console){var u=i instanceof Error,d=l.date+" "+l.time+" "+l.message+" - "+l.details+" "+l.component;switch(e){case Ne.Level.FATAL:case Ne.Level.ERROR:u?console.error(d,"\n",i):console.error(d);break;case Ne.Level.WARNING:u?console.warn(d,"\n",i):console.warn(d);break;case Ne.Level.INFO:console.info?u?console.info(d,"\n",i):console.info(d):u?console.log(d,"\n",i):console.log(d);break;case Ne.Level.DEBUG:console.debug?u?console.debug(d,"\n",i):console.debug(d):u?console.log(d,"\n",i):console.log(d);break;case Ne.Level.TRACE:console.trace?u?console.trace(d,"\n",i):console.trace(d):u?console.log(d,"\n",i):console.log(d)}console.info&&l.supportInfo&&console.info(l.supportInfo)}return l}}function Ye(e){this.fatal=function(t,i,r,a){return Ne.fatal(t,i,r||e,a),this},this.error=function(t,i,r,a){return Ne.error(t,i,r||e,a),this},this.warning=function(t,i,r,a){return Ne.warning(t,i,r||e,a),this},this.info=function(t,i,r,a){return Ne.info(t,i,r||e,a),this},this.debug=function(t,i,r,a){return Ne.debug(t,i,r||e,a),this},this.trace=function(t,i,r,a){return Ne.trace(t,i,r||e,a),this},this.setLevel=function(t,i){return Ne.setLevel(t,i||e),this},this.getLevel=function(t){return Ne.getLevel(t||e)},this.isLoggable=function(t,i){return Ne.isLoggable(t,i||e)}}Ne.fatal=function(e,t,i,r){We(Ne.Level.FATAL,e,t,i,r)},Ne.error=function(e,t,i,r){We(Ne.Level.ERROR,e,t,i,r)},Ne.warning=function(e,t,i,r){We(Ne.Level.WARNING,e,t,i,r)},Ne.info=function(e,t,i,r){We(Ne.Level.INFO,e,t,i,r)},Ne.debug=function(e,t,i,r){We(Ne.Level.DEBUG,e,t,i,r)},Ne.trace=function(e,t,i,r){We(Ne.Level.TRACE,e,t,i,r)},Ne.setLevel=function(e,t,i){var r;(t=t||"",i&&null!=$e[t])||($e[t]=e,Object.keys(Ne.Level).forEach((function(t){Ne.Level[t]===e&&(r=t)})),We(Ne.Level.INFO,"Changing log level "+(t?"for '"+t+"' ":"")+"to "+r,"","sap.base.log"))},Ne.getLevel=function(e){return Ue(e||void 0)},Ne.isLoggable=function(e,t){return(null==e?Ne.Level.DEBUG:e)<=Ue(t||void 0)},Ne.logSupportInfo=function(e){ze=e},Ne.getLogEntries=function(){return Oe.slice()},Ne.getLogEntriesLimit=function(){return Le},Ne.setLogEntriesLimit=function(e){if(e<0)throw new Error("The log entries limit needs to be greater than or equal to 0!");Le=e,Oe.length>=Le&&je()},Ne.addLogListener=function(e){Ve().attach(this,e)},Ne.removeLogListener=function(e){Ve().detach(this,e)},Ne.getLogger=function(e,t){return isNaN(t)||null!=$e[e]||($e[e]=t),new Ye(e)};var qe=function(e,t){if(!e){var i="function"==typeof t?t():t;console&&console.assert?console.assert(e,i):Ne.debug("[Assertions] "+i)}},Ge=function(e){qe(e instanceof Array,"uniqueSort: input parameter must be an Array");var t=e.length;if(t>1){e.sort();for(var i=0,r=1;r<t;r++)e[r]!==e[i]&&(e[++i]=e[r]);++i<t&&e.splice(i,t-i)}return e},Je=function(e,t){if(qe("string"==typeof e&&e,"Metadata: sClassName must be a non-empty string"),qe("object"==typeof t,"Metadata: oClassInfo must be empty or an object"),t&&"object"==typeof t.metadata||((t={metadata:t||{},constructor:Me.get(e)}).metadata.__version=1),t.metadata.__version=t.metadata.__version||2,"function"!=typeof 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)};Je.prototype.extend=function(e){this.applySettings(e),this.afterApplySettings()},Je.prototype.applySettings=function(e){var t,i=e.metadata;if(i.baseType){var r=Me.get(i.baseType);"function"!=typeof r&&Ne.fatal("base class '"+i.baseType+"' does not exist"),r.getMetadata?(this._oParent=r.getMetadata(),qe(r===r.getMetadata().getClass(),"Metadata: oParentClass must match the class in the parent metadata")):this._oParent=new Je(i.baseType,{})}else this._oParent=void 0;for(var a in this._bAbstract=!!i.abstract,this._bFinal=!!i.final,this._sStereotype=i.stereotype||(this._oParent?this._oParent._sStereotype:"object"),this._bDeprecated=!!i.deprecated,this._aInterfaces=i.interfaces||[],this._aPublicMethods=i.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))},Je.prototype.afterApplySettings=function(){this._oParent?(this._aAllPublicMethods=this._oParent._aAllPublicMethods.concat(this._aPublicMethods),this._bInterfacesUnique=!1):this._aAllPublicMethods=this._aPublicMethods},Je.prototype.getStereotype=function(){return this._sStereotype},Je.prototype.getName=function(){return this._sClassName},Je.prototype.getClass=function(){return this._oClass},Je.prototype.getParent=function(){return this._oParent},Je.prototype._dedupInterfaces=function(){this._bInterfacesUnique||(Ge(this._aInterfaces),Ge(this._aPublicMethods),Ge(this._aAllPublicMethods),this._bInterfacesUnique=!0)},Je.prototype.getPublicMethods=function(){return this._dedupInterfaces(),this._aPublicMethods},Je.prototype.getAllPublicMethods=function(){return this._dedupInterfaces(),this._aAllPublicMethods},Je.prototype.getInterfaces=function(){return this._dedupInterfaces(),this._aInterfaces},Je.prototype.isInstanceOf=function(e){if(this._oParent&&this._oParent.isInstanceOf(e))return!0;for(var t=this._aInterfaces,i=0,r=t.length;i<r;i++)if(t[i]===e)return!0;return!1};Object.defineProperty(Je.prototype,"_mImplementedTypes",{get:function(){if(this===Je.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,i=t.length;i-- >0;)e[t[i]]||(e[t[i]]=!0);return Object.defineProperty(this,"_mImplementedTypes",{value:Object.freeze(e),writable:!1,configurable:!1}),e},configurable:!0}),Je.prototype.isA=function(e){var t=this._mImplementedTypes;if(Array.isArray(e)){for(var i=0;i<e.length;i++)if(e[i]in t)return!0;return!1}return e in t},Je.prototype.isAbstract=function(){return this._bAbstract},Je.prototype.isFinal=function(){return this._bFinal},Je.prototype.isDeprecated=function(){return this._bDeprecated},Je.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},Je.createClass=function(e,t,i,r){"string"==typeof e&&(r=i,i=t,t=e,e=null),qe(!e||"function"==typeof e),qe("string"==typeof t&&!!t),qe(!i||"object"==typeof i),qe(!r||"function"==typeof r),"function"==typeof(r=r||Je).preprocessClassInfo&&(i=r.preprocessClassInfo(i)),(i=i||{}).metadata=i.metadata||{},i.hasOwnProperty("constructor")||(i.constructor=void 0);var a=i.constructor;qe(!a||"function"==typeof a),e?(a||(a=i.metadata.deprecated?function(){Ne.warning("Usage of deprecated class: "+t),e.apply(this,arguments)}:function(){e.apply(this,arguments)}),a.prototype=Object.create(e.prototype),a.prototype.constructor=a,i.metadata.baseType=e.getMetadata().getName()):(a=a||function(){},delete i.metadata.baseType),i.constructor=a,Me.set(t,a);var o=new r(t,i);return a.getMetadata=a.prototype.getMetadata=function(){return o},a.getMetadata().isFinal()||(a.extend=function(e,t,i){return Je.createClass(a,e,t,i||r)}),a};var Xe=Je.createClass("sap.ui.base.Object",{constructor:function(){if(!(this instanceof Xe))throw Error('Cannot instantiate object: "new" is missing!')}});Xe.prototype.destroy=function(){},Xe.prototype.getInterface=function(){var e=new Ie(this,this.getMetadata().getAllPublicMethods());return this.getInterface=function(){return e},e},Xe.defineClass=function(e,t,i){var r=new(i||Je)(e,t),a=r.getClass();return a.getMetadata=a.prototype.getMetadata=function(){return r},r.isFinal()||(a.extend=function(e,t,r){return Je.createClass(a,e,t,r||i)}),Ne.debug("defined class '"+e+"'"+(r.getParent()?" as subclass of "+r.getParent().getName():"")),r},Xe.prototype.isA=function(e){return this.getMetadata().isA(e)},Xe.isA=function(e,t){return e instanceof Xe&&e.isA(t)};var Qe=/^((?:[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,Ze=Xe.extend("sap.ui.core.Locale",{constructor:function(e){Xe.apply(this);var t=Qe.exec(e.replace(/_/g,"-"));if(null===t)throw"The given language '"+e+"' does not adhere to BCP-47.";this.sLocaleId=e,this.sLanguage=t[1]||null,this.sScript=t[2]||null,this.sRegion=t[3]||null,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]/,(function(e){return e.toUpperCase()}))),this.sRegion&&(this.sRegion=this.sRegion.toUpperCase())},getLanguage:function(){return this.sLanguage},getScript:function(){return this.sScript},getRegion:function(){return this.sRegion},getVariant:function(){return this.sVariant},getVariantSubtags:function(){return this.sVariant?this.sVariant.split("-"):[]},getExtension:function(){return this.sExtension},getExtensionSubtags:function(){return this.sExtension?this.sExtension.slice(2).split("-"):[]},getPrivateUse:function(){return this.sPrivateUse},getPrivateUseSubtags:function(){return this.sPrivateUse?this.sPrivateUse.slice(2).split("-"):[]},hasPrivateUseSubtag:function(e){return qe(e&&e.match(/^[0-9A-Z]{1,8}$/i),"subtag must be a valid BCP47 private use tag"),this.getPrivateUseSubtags().indexOf(e)>=0},toString:function(){var 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("-")},getSAPLogonLanguage:function(){var e,t=this.sLanguage||"";return t.indexOf("-")>=0&&(t=t.slice(0,t.indexOf("-"))),"zh"===(t=Ke[t]||t)&&("Hant"===this.sScript||!this.sScript&&"TW"===this.sRegion)&&(t="zf"),this.sPrivateUse&&(e=/-(saptrc|sappsd)(?:-|$)/i.exec(this.sPrivateUse))&&(t="saptrc"===e[1].toLowerCase()?"1Q":"2Q"),t.toUpperCase()}}),Ke={iw:"he",ji:"yi",in:"id",sh:"sr"};function et(e){var t=/\$([-a-z0-9A-Z._]+)(?::([^$]*))?\$/.exec(e);return t&&t[2]?t[2].split(/,/):null}var tt=et("$cldr-rtl-locales:ar,fa,he$")||[];Ze._cldrLocales=et("$cldr-locales:ar,ar_EG,ar_SA,bg,br,ca,cs,da,de,de_AT,de_CH,el,el_CY,en,en_AU,en_GB,en_HK,en_IE,en_IN,en_NZ,en_PG,en_SG,en_ZA,es,es_AR,es_BO,es_CL,es_CO,es_MX,es_PE,es_UY,es_VE,et,fa,fi,fr,fr_BE,fr_CA,fr_CH,fr_LU,he,hi,hr,hu,id,it,it_CH,ja,kk,ko,lt,lv,ms,nb,nl,nl_BE,nn,pl,pt,pt_PT,ro,ru,ru_UA,sk,sl,sr,sv,th,tr,uk,vi,zh_CN,zh_HK,zh_SG,zh_TW$"),Ze._coreI18nLocales=et("$core-i18n-locales:,ar,bg,ca,cs,da,de,el,en,es,et,fi,fr,hi,hr,hu,it,iw,ja,kk,ko,lt,lv,ms,nl,no,pl,pt,ro,ru,sh,sk,sl,sv,th,tr,uk,vi,zh_CN,zh_TW$"),Ze._impliesRTL=function(e){var t=e instanceof Ze?e:new Ze(e),i=t.getLanguage()||"";i=i&&Ke[i]||i;var r=t.getRegion()||"";return!!(r&&tt.indexOf(i+"_"+r)>=0)||tt.indexOf(i)>=0};const it={in:"sap/ui/integration/thirdparty/webcomponents/messagebundle_in.e3c5681fc8917143.json",cy:"sap/ui/integration/thirdparty/webcomponents/messagebundle_cy.facf33e921a1a902.json",es_MX:"sap/ui/integration/thirdparty/webcomponents/messagebundle_es_MX.ebf2828c83c4821a.json",fr_CA:"sap/ui/integration/thirdparty/webcomponents/messagebundle_fr_CA.fb1250c736f2ac8c.json",pt_PT:"sap/ui/integration/thirdparty/webcomponents/messagebundle_pt_PT.dcaa871d6b8eec75.json"};Ze._cldrLocales.push("cy"),g.push("cy"),Se("@ui5/webcomponents",it);let rt;let at;const ot=()=>at||(at=new Promise(async e=>{const t=c("OpenUI5Support");t&&await t.init(),await new Promise(e=>{document.body?e():document.addEventListener("DOMContentLoaded",()=>{e()})}),await U(V()),t&&t.attachListeners(),(()=>{if(document.querySelector("head>style[data-ui5-font-face]"))return;const e=c("OpenUI5Support");e&&e.isLoaded()||A('\n\t@font-face {\n\t\tfont-family: "72";\n\t\tfont-style: normal;\n\t\tfont-weight: 400;\n\t\tsrc: local("72"),\n\t\t\turl(https://ui5.sap.com/sdk/resources/sap/ui/core/themes/sap_fiori_3/fonts/72-Regular.woff2?ui5-webcomponents) format("woff2"),\n\t\t\turl(https://ui5.sap.com/sdk/resources/sap/ui/core/themes/sap_fiori_3/fonts/72-Regular.woff?ui5-webcomponents) format("woff");\n\t}\n\t\n\t@font-face {\n\t\tfont-family: "72full";\n\t\tfont-style: normal;\n\t\tfont-weight: 400;\n\t\tsrc: local(\'72-full\'),\n\t\t\turl(https://ui5.sap.com/sdk/resources/sap/ui/core/themes/sap_fiori_3/fonts/72-Regular-full.woff2?ui5-webcomponents) format("woff2"),\n\t\t\turl(https://ui5.sap.com/sdk/resources/sap/ui/core/themes/sap_fiori_3/fonts/72-Regular-full.woff?ui5-webcomponents) format("woff");\n\t\t\n\t}\n\t\n\t@font-face {\n\t\tfont-family: "72";\n\t\tfont-style: normal;\n\t\tfont-weight: 700;\n\t\tsrc: local(\'72-Bold\'),\n\t\t\turl(https://ui5.sap.com/sdk/resources/sap/ui/core/themes/sap_fiori_3/fonts/72-Bold.woff2?ui5-webcomponents) format("woff2"),\n\t\t\turl(https://ui5.sap.com/sdk/resources/sap/ui/core/themes/sap_fiori_3/fonts/72-Bold.woff?ui5-webcomponents) format("woff");\n\t}\n\t\n\t@font-face {\n\t\tfont-family: "72full";\n\t\tfont-style: normal;\n\t\tfont-weight: 700;\n\t\tsrc: local(\'72-Bold-full\'),\n\t\t\turl(https://ui5.sap.com/sdk/resources/sap/ui/core/themes/sap_fiori_3/fonts/72-Bold-full.woff2?ui5-webcomponents) format("woff2"),\n\t\t\turl(https://ui5.sap.com/sdk/resources/sap/ui/core/themes/sap_fiori_3/fonts/72-Bold-full.woff?ui5-webcomponents) format("woff");\n\t}\n',{"data-ui5-font-face":""})})(),document.querySelector("head>style[data-ui5-system-css-vars]")||A('\n\t:root {\n\t\t--_ui5_content_density:cozy;\n\t}\n\t\n\t[data-ui5-compact-size],\n\t.ui5-content-density-compact,\n\t.sapUiSizeCompact {\n\t\t--_ui5_content_density:compact;\n\t}\n\t\n\t[dir="rtl"] {\n\t\t--_ui5_dir:rtl;\n\t}\n\t\n\t[dir="ltr"] {\n\t\t--_ui5_dir:ltr;\n\t}\n',{"data-ui5-system-css-vars":""}),await(rt||(rt=new Promise(e=>{window.WebComponents&&!window.WebComponents.ready&&window.WebComponents.waitFor?window.WebComponents.waitFor(()=>{e()}):e()}),rt)),e()}),at);class nt{static isValid(e){}static generataTypeAcessors(e){Object.keys(e).forEach(t=>{Object.defineProperty(this,t,{get:()=>e[t]})})}}const st=new Map,lt=new Map,ut=e=>{if(!st.has(e)){const t=ct(e.split("-"));st.set(e,t)}return st.get(e)},dt=e=>{if(!lt.has(e)){const t=e.replace(/([a-z])([A-Z])/g,"$1-$2").toLowerCase();lt.set(e,t)}return lt.get(e)},ct=e=>e.map((e,t)=>0===t?e.toLowerCase():e.charAt(0).toUpperCase()+e.slice(1).toLowerCase()).join(""),ht=e=>e&&e instanceof HTMLElement&&"slot"===e.localName;class pt{constructor(e){this.metadata=e}static validatePropertyValue(e,t){return t.multiple?e.map(e=>_t(e,t)):_t(e,t)}static validateSlotValue(e,t){return mt(e,t)}getTag(){return this.metadata.tag}getAltTag(){return this.metadata.altTag}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,this).map(dt)}getSlots(){return this.metadata.slots||{}}canSlotText(){const e=this.getSlots().default;return e&&e.type===Node}hasSlots(){return!!Object.entries(this.getSlots()).length}hasIndividualSlots(){return this.slotsAreManaged()&&Object.entries(this.getSlots()).some(([e,t])=>t.individualSlots)}slotsAreManaged(){return!!this.metadata.managedSlots}getProperties(){return this.metadata.properties||{}}getEvents(){return this.metadata.events||{}}isLanguageAware(){return!!this.metadata.languageAware}}const _t=(e,t)=>{const i=t.type;return i===Boolean?"boolean"==typeof e&&e:i===String?"string"==typeof e||null==e?e:e.toString():i===Object?"object"==typeof e?e:t.defaultValue:((e,t,i=!1)=>{if("function"!=typeof e||"function"!=typeof t)return!1;if(i&&e===t)return!0;let r=e;do{r=Object.getPrototypeOf(r)}while(null!==r&&r!==t);return r===t})(i,nt)?i.isValid(e)?e:t.defaultValue:void 0},mt=(e,t)=>{if(null===e)return e;return(e=>ht(e)?e.assignedNodes({flatten:!0}).filter(e=>e instanceof HTMLElement):[e])(e).forEach(e=>{if(!(e instanceof t.type))throw new Error(`${e} is not of type ${t.type}`)}),e},gt=(e,t=document.body)=>{let i=document.querySelector(e);return i||(i=document.createElement(e),t.insertBefore(i,t.firstChild))},ft=()=>gt("ui5-static-area");class vt extends HTMLElement{constructor(){super()}get isUI5Element(){return!0}destroy(){const e=document.querySelector(this.tagName.toLowerCase());e.parentElement.removeChild(e)}}customElements.get("ui5-static-area")||customElements.define("ui5-static-area",vt);class yt{constructor(e){this.ui5ElementContext=e,this._rendered=!1}isRendered(){return this._rendered}_updateFragment(){const e=this.ui5ElementContext.constructor.staticAreaTemplate(this.ui5ElementContext),t=!window.ShadyDOM&&this.ui5ElementContext.constructor.staticAreaStyles;this.staticAreaItemDomRef||(this.staticAreaItemDomRef=document.createElement("ui5-static-area-item"),this.staticAreaItemDomRef.attachShadow({mode:"open"}),this.staticAreaItemDomRef.classList.add(this.ui5ElementContext._id),ft().appendChild(this.staticAreaItemDomRef),this._rendered=!0),this.ui5ElementContext.constructor.render(e,this.staticAreaItemDomRef.shadowRoot,t,{eventContext:this.ui5ElementContext})}_removeFragmentFromStaticArea(){if(!this.staticAreaItemDomRef)return;const e=ft();e.removeChild(this.staticAreaItemDomRef),this.staticAreaItemDomRef=null,e.childElementCount<1&&ft().destroy()}_updateContentDensity(e){this.staticAreaItemDomRef&&(e?(this.staticAreaItemDomRef.classList.add("sapUiSizeCompact"),this.staticAreaItemDomRef.classList.add("ui5-content-density-compact")):(this.staticAreaItemDomRef.classList.remove("sapUiSizeCompact"),this.staticAreaItemDomRef.classList.remove("ui5-content-density-compact")))}async getDomRef(){return this._rendered&&this.staticAreaItemDomRef||this._updateFragment(),await he.whenDOMUpdated(),this.staticAreaItemDomRef.shadowRoot}}class bt extends HTMLElement{constructor(){super()}get isUI5Element(){return!0}}customElements.get("ui5-static-area-item")||customElements.define("ui5-static-area-item",bt);const wt=window,kt=new WeakMap;class xt{constructor(){throw new Error("Static class")}static observeDOMNode(e,t,i){let r=kt.get(e);if(r)throw new Error("A mutation/ShadyDOM observer is already assigned to this node.");wt.ShadyDOM?r=wt.ShadyDOM.observeChildren(e,t):(r=new MutationObserver(t),r.observe(e,i)),kt.set(e,r)}static unobserveDOMNode(e){const t=kt.get(e);t&&(t instanceof MutationObserver?t.disconnect():wt.ShadyDOM.unobserveChildren(t),kt.delete(e))}}const Ct=["value-changed"];let St;const Tt=()=>(void 0===St&&(b(),St=v.noConflict),St),Dt=e=>{const t=Tt();return!(e=>Ct.includes(e))(e)&&(!0===t||!(e=>{const t=Tt();return!(t.events&&t.events.includes&&t.events.includes(e))})(e))};var Pt=e=>{const t=/\$([-a-z0-9A-Z._]+)(?::([^$]*))?\$/.exec(e);return t&&t[2]?t[2].split(/,/):null};const It={iw:"he",ji:"yi",in:"id",sh:"sr"},Mt=Pt("$cldr-rtl-locales:ar,fa,he$")||[],Bt=()=>{const e=(b(),v.rtl);return null!==e?!!e:(e=>(e=e&&It[e]||e,Mt.indexOf(e)>=0))(pe()||J())},Et=t=>{const i=(t=>e[t]?e[t].join(""):"")(t.getMetadata().getTag())||"";let r=t.styles;return Array.isArray(r)&&(r=r.join(" ")),`${r} ${i}`},Ft=new Map,At=(e,t,i,r)=>{const a=i+t.length,o=e.charAt(a),n=e.substring(0,i)+r;if("("===o){const t=((e,t)=>{let i=1;for(let r=t+1;r<e.length;r++){const t=e.charAt(r);if("("===t?i++:")"===t&&i--,0===i)return r}})(e,a);return n+e.substring(a+1,t)+e.substring(t+1)}return n+e.substring(a)},Nt=(e,t)=>(e=((e,t,i)=>{let r=e.indexOf(t);for(;-1!==r;)r=(e=At(e,t,r,i)).indexOf(t);return e})(e=e.trim(),"::slotted","")).startsWith(":host")?At(e,":host",0,t):e.match(/^[@0-9]/)||"to"===e||"to{"===e||e.match(new RegExp(`^${t}[^a-zA-Z0-9-]`))?e:`${t} ${e}`,Ot=(e,t)=>{e=(e=e.replace(/\n/g," ")).replace(/([{}])/g,"$1\n");let i="";return e.split("\n").forEach(e=>{if(e.match(/{$/)){const i=e.split(",");e=i.map(e=>Nt(e,t)).join(",")}i=`${i}${e}`}),i},$t=new Set,Lt=e=>{const t=e.getMetadata().getTag();if($t.has(t))return;let i=Et(e);i=Ot(i,t);let r=(e=>{let t=e.staticAreaStyles;return Array.isArray(t)&&(t=t.join(" ")),t})(e);r&&(r=Ot(r,"ui5-static-area-item"),i=`${i} ${r}`),A(i,{"data-ui5-element-styles":t,disabled:"disabled"}),L()&&($||($=window.setTimeout(R,0))),$t.add(t)};class Rt extends nt{static isValid(e){return Number.isInteger(e)}}class zt extends nt{static isValid(e){return Number(e)===e}}const Ht=["disabled","title","hidden"],Ut=e=>{if(Ht.includes(e)||e.startsWith("aria"))return!0;return![HTMLElement,Element,Node].some(t=>t.prototype.hasOwnProperty(e))},jt={events:{"_property-change":{}}};let Vt=0;const Wt=new Map;class Yt extends HTMLElement{constructor(){let e;super(),this._initializeState(),this._upgradeAllProperties(),this._initializeContainers(),this._upToDate=!1,this._inDOM=!1,this._fullyConnected=!1,this._domRefReadyPromise=new Promise(t=>{e=t}),this._domRefReadyPromise._deferredResolve=e,this._monitoredChildProps=new Map,this._firePropertyChange=!1,this._shouldInvalidateParent=!1}get _id(){return this.__id||(this.__id="ui5wc_"+ ++Vt),this.__id}_initializeContainers(){const e=this.constructor._needsShadowDOM(),t=this.constructor._needsStaticArea();if(e&&(this.attachShadow({mode:"open"}),window.ShadyDOM&&Lt(this.constructor),document.adoptedStyleSheets)){const e=(e=>{const t=e.getMetadata().getTag(),i=Et(e);if(Ft.has(t))return Ft.get(t);const r=new CSSStyleSheet;return r.replaceSync(i),Ft.set(t,r),r})(this.constructor);this.shadowRoot.adoptedStyleSheets=[e]}t&&(this.staticAreaItem=new yt(this))}async connectedCallback(){const e=this.constructor._needsShadowDOM(),t=this.constructor.getMetadata().slotsAreManaged();if(this._inDOM=!0,t&&(this._startObservingDOMChildren(),await this._processChildren()),e){if(this.shadowRoot||await Promise.resolve(),!this._inDOM)return;he.register(this),he.renderImmediately(this),this._domRefReadyPromise._deferredResolve(),this._fullyConnected=!0,"function"==typeof this.onEnterDOM&&this.onEnterDOM()}}disconnectedCallback(){const e=this.constructor._needsShadowDOM(),t=this.constructor._needsStaticArea(),i=this.constructor.getMetadata().slotsAreManaged();this._inDOM=!1,i&&this._stopObservingDOMChildren(),e&&(he.deregister(this),this._fullyConnected&&("function"==typeof this.onExitDOM&&this.onExitDOM(),this._fullyConnected=!1)),t&&this.staticAreaItem._removeFragmentFromStaticArea(),he.cancelRender(this)}_startObservingDOMChildren(){if(!this.constructor.getMetadata().hasSlots())return;const e={childList:!0,subtree:this.constructor.getMetadata().canSlotText(),characterData:!0};xt.observeDOMNode(this,this._processChildren.bind(this),e)}_stopObservingDOMChildren(){xt.unobserveDOMNode(this)}async _processChildren(){this.constructor.getMetadata().hasSlots()&&await this._updateSlots()}async _updateSlots(){const e=this.constructor.getMetadata().getSlots(),t=this.constructor.getMetadata().canSlotText(),i=Array.from(t?this.childNodes:this.children);for(const[t,i]of Object.entries(e))this._clearSlot(t,i);const r=new Map,a=new Map,o=i.map(async(t,i)=>{const o=this.constructor._getSlotName(t),n=e[o];if(void 0===n){const i=Object.keys(e).join(", ");return void console.warn(`Unknown slotName: ${o}, ignoring`,t,"Valid values are: "+i)}if(n.individualSlots){const e=(r.get(o)||0)+1;r.set(o,e),t._individualSlot=`${o}-${e}`}if(t instanceof HTMLElement){const e=t.localName;if(e.includes("-")){if(!window.customElements.get(e)){const t=window.customElements.whenDefined(e);let i=Wt.get(e);i||(i=new Promise(e=>setTimeout(e,1e3)),Wt.set(e,i)),await Promise.race([t,i])}window.customElements.upgrade(t)}}(t=this.constructor.getMetadata().constructor.validateSlotValue(t,n)).isUI5Element&&n.listenFor&&this._attachChildPropertyUpdated(t,n.listenFor),t.isUI5Element&&n.invalidateParent&&(t._shouldInvalidateParent=!0),ht(t)&&this._attachSlotChange(t);const s=n.propertyName||o;a.has(s)?a.get(s).push({child:t,idx:i}):a.set(s,[{child:t,idx:i}])});await Promise.all(o),a.forEach((e,t)=>{this._state[t]=e.sort((e,t)=>e.idx-t.idx).map(e=>e.child)}),this._invalidate("slots")}_clearSlot(e,t){const i=t.propertyName||e;let r=this._state[i];Array.isArray(r)||(r=[r]),r.forEach(e=>{e&&e.isUI5Element&&(this._detachChildPropertyUpdated(e),e._shouldInvalidateParent=!1),ht(e)&&this._detachSlotChange(e)}),this._state[i]=[],this._invalidate(i,[])}attributeChangedCallback(e,t,i){const r=this.constructor.getMetadata().getProperties(),a=e.replace(/^ui5-/,""),o=ut(a);if(r.hasOwnProperty(o)){const e=r[o].type;e===Boolean&&(i=null!==i),e===Rt&&(i=parseInt(i)),e===zt&&(i=parseFloat(i)),this[o]=i}}_updateAttribute(e,t){if(!this.constructor.getMetadata().hasAttribute(e))return;if("object"==typeof t)return;const i=dt(e),r=this.getAttribute(i);"boolean"==typeof t?!0===t&&null===r?this.setAttribute(i,""):!1===t&&null!==r&&this.removeAttribute(i):r!==t&&this.setAttribute(i,t)}_upgradeProperty(e){if(this.hasOwnProperty(e)){const t=this[e];delete this[e],this[e]=t}}_upgradeAllProperties(){this.constructor.getMetadata().getPropertiesList().forEach(this._upgradeProperty,this)}_initializeState(){const e=this.constructor._getDefaultState();this._state=Object.assign({},e)}_attachChildPropertyUpdated(e,t){const i=e.constructor.getMetadata(),r=this.constructor._getSlotName(e),a=i.getProperties();let o=[],n=[];Array.isArray(t)?o=t:(o=Array.isArray(t.props)?t.props:Object.keys(a),n=Array.isArray(t.exclude)?t.exclude:[]),this._monitoredChildProps.has(r)||this._monitoredChildProps.set(r,{observedProps:o,notObservedProps:n}),e.addEventListener("_property-change",this._invalidateParentOnPropertyUpdate),e._firePropertyChange=!0}_detachChildPropertyUpdated(e){e.removeEventListener("_property-change",this._invalidateParentOnPropertyUpdate),e._firePropertyChange=!1}_propertyChange(e,t){this._updateAttribute(e,t),this._firePropertyChange&&this.dispatchEvent(new CustomEvent("_property-change",{detail:{name:e,newValue:t},composed:!1,bubbles:!0}))}_invalidateParentOnPropertyUpdate(e){const t=this.parentNode;if(!t)return;const i=t.constructor._getSlotName(this),r=t._monitoredChildProps.get(i);if(!r)return;const{observedProps:a,notObservedProps:o}=r;a.includes(e.detail.name)&&!o.includes(e.detail.name)&&t._invalidate("_parent_",this)}_attachSlotChange(e){this._invalidateOnSlotChange||(this._invalidateOnSlotChange=()=>{this._invalidate("slotchange")}),e.addEventListener("slotchange",this._invalidateOnSlotChange)}_detachSlotChange(e){e.removeEventListener("slotchange",this._invalidateOnSlotChange)}_invalidate(){this._shouldInvalidateParent&&this.parentNode._invalidate(),this._upToDate&&this.getDomRef()&&!this._suppressInvalidation&&(this._upToDate=!1,he.renderDeferred(this))}_render(){const e=this.constructor.getMetadata().hasIndividualSlots();this._suppressInvalidation=!0,"function"==typeof this.onBeforeRendering&&this.onBeforeRendering(),this._onComponentStateFinalized&&this._onComponentStateFinalized(),delete this._suppressInvalidation,this._upToDate=!0,this._updateShadowRoot(),this._shouldUpdateFragment()&&this.staticAreaItem._updateFragment(this),e&&this._assignIndividualSlotsToChildren(),"function"==typeof this.onAfterRendering&&this.onAfterRendering()}_updateShadowRoot(){if(!this.constructor._needsShadowDOM())return;let e;const t=this.constructor.template(this);document.adoptedStyleSheets||window.ShadyDOM||(e=Et(this.constructor)),this.constructor.render(t,this.shadowRoot,e,{eventContext:this})}_assignIndividualSlotsToChildren(){Array.from(this.children).forEach(e=>{e._individualSlot&&e.setAttribute("slot",e._individualSlot)})}_waitForDomRef(){return this._domRefReadyPromise}getDomRef(){if(this.shadowRoot&&0!==this.shadowRoot.children.length)return 1===this.shadowRoot.children.length?this.shadowRoot.children[0]:this.shadowRoot.children[1]}getFocusDomRef(){const e=this.getDomRef();if(e){return e.querySelector("[data-sap-focus-ref]")||e}}getStableDomRef(e){return this.getDomRef().querySelector(`[data-ui5-stable=${e}]`)}async focus(){await this._waitForDomRef();const e=this.getFocusDomRef();e&&"function"==typeof e.focus&&e.focus()}fireEvent(e,t,i=!1,r=!0){const a=this._fireEvent(e,t,i,r),o=ut(e);return o!==e?a&&this._fireEvent(o,t,i):a}_fireEvent(e,t,i=!1,r=!0){let a=!0;const o=new CustomEvent("ui5-"+e,{detail:t,composed:!1,bubbles:r,cancelable:i});if(a=this.dispatchEvent(o),Dt(e))return a;const n=new CustomEvent(e,{detail:t,composed:!1,bubbles:r,cancelable:i});return this.dispatchEvent(n)&&a}getSlottedNodes(e){return this[e].reduce((e,t)=>ht(t)?e.concat(t.assignedNodes({flatten:!0}).filter(e=>e instanceof HTMLElement)):e.concat([t]),[])}get isCompact(){return"compact"===getComputedStyle(this).getPropertyValue("--_ui5_content_density")}get effectiveDir(){var e;e=this.constructor,ae.add(e);const t=window.document,i=["ltr","rtl"],r=getComputedStyle(this).getPropertyValue("--_ui5_dir");return i.includes(r)?r:i.includes(this.dir)?this.dir:i.includes(t.documentElement.dir)?t.documentElement.dir:i.includes(t.body.dir)?t.body.dir:Bt()?"rtl":void 0}updateStaticAreaItemContentDensity(){this.staticAreaItem&&this.staticAreaItem._updateContentDensity(this.isCompact)}get isUI5Element(){return!0}static get observedAttributes(){return this.getMetadata().getAttributesList()}static _getSlotName(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"}static _needsShadowDOM(){return!!this.template}_shouldUpdateFragment(){return this.constructor._needsStaticArea()&&this.staticAreaItem.isRendered()}static _needsStaticArea(){return"function"==typeof this.staticAreaTemplate}getStaticAreaItemDomRef(){return this.staticAreaItem.getDomRef()}static _getDefaultState(){if(this._defaultState)return this._defaultState;const e=this.getMetadata(),t={},i=e.slotsAreManaged(),r=e.getProperties();for(const e in r){const i=r[e].type,a=r[e].defaultValue;i===Boolean?(t[e]=!1,void 0!==a&&console.warn("The 'defaultValue' metadata key is ignored for all booleans properties, they would be initialized with 'false' by default")):r[e].multiple?t[e]=[]:t[e]=i===Object?"defaultValue"in r[e]?r[e].defaultValue:{}:i===String?"defaultValue"in r[e]?r[e].defaultValue:"":a}if(i){const i=e.getSlots();for(const[e,r]of Object.entries(i)){t[r.propertyName||e]=[]}}return this._defaultState=t,t}static _generateAccessors(){const e=this.prototype,t=this.getMetadata().slotsAreManaged(),i=this.getMetadata().getProperties();for(const[t,r]of Object.entries(i)){if(!Ut(t))throw new Error(`"${t}" is not a valid property name. Use a name that does not collide with DOM APIs`);if(r.type===Boolean&&r.defaultValue)throw new Error(`Cannot set a default value for property "${t}". All booleans are false by default.`);if(r.type===Array)throw new Error(`Wrong type for property "${t}". Properties cannot be of type Array - use "multiple: true" and set "type" to the single value type, such as "String", "Object", etc...`);if(r.type===Object&&r.defaultValue)throw new Error(`Cannot set a default value for property "${t}". All properties of type "Object" are empty objects by default.`);if(r.multiple&&r.defaultValue)throw new Error(`Cannot set a default value for property "${t}". All multiple properties are empty arrays by default.`);Object.defineProperty(e,t,{get(){if(void 0!==this._state[t])return this._state[t];const e=r.defaultValue;return r.type!==Boolean&&(r.type===String?e:r.multiple?[]:e)},set(e){e=this.constructor.getMetadata().constructor.validatePropertyValue(e,r);this._state[t]!==e&&(this._state[t]=e,this._invalidate(t,e),this._propertyChange(t,e))}})}if(t){const t=this.getMetadata().getSlots();for(const[i,r]of Object.entries(t)){if(!Ut(i))throw new Error(`"${i}" is not a valid property name. Use a name that does not collide with DOM APIs`);const t=r.propertyName||i;Object.defineProperty(e,t,{get(){return void 0!==this._state[t]?this._state[t]:[]},set(){throw new Error("Cannot set slots directly, use the DOM APIs")}})}}}static get metadata(){return jt}static get styles(){return""}static get staticAreaStyles(){return""}static async define(){await ot(),this.onDefine&&await this.onDefine();const e=this.getMetadata().getTag(),t=this.getMetadata().getAltTag(),i=(e=>K.has(e))(e),r=customElements.get(e);if(r&&!i)(e=>{ee.add(e),te||(te=setTimeout(()=>{re(),te=void 0},1e3))})(e);else if(!r&&(this._generateAccessors(),ie(e),window.customElements.define(e,this),t&&!customElements.get(t))){class e extends(this){}ie(t),window.customElements.define(t,e)}return this}static getMetadata(){if(this.hasOwnProperty("_metadata"))return this._metadata;const e=[this.metadata];let t=this;for(;t!==Yt;)t=Object.getPrototypeOf(t),e.unshift(t.metadata);const i=u({},...e);return this._metadata=new pt(i),this._metadata}}
|
|
1
|
+
class e{constructor(){this._eventRegistry=new Map}attachEvent(e,t){const i=this._eventRegistry,o=i.get(e);Array.isArray(o)?o.includes(t)||o.push(t):i.set(e,[t])}detachEvent(e,t){const i=this._eventRegistry,o=i.get(e);if(!o)return;const r=o.indexOf(t);-1!==r&&o.splice(r,1),0===o.length&&i.delete(e)}fireEvent(e,t){const i=this._eventRegistry.get(e);return i?i.map(e=>e.call(this,t)):[]}fireEventAsync(e,t){return Promise.all(this.fireEvent(e,t))}isHandlerAttached(e,t){const i=this._eventRegistry.get(e);return!!i&&i.includes(t)}hasListeners(e){return!!this._eventRegistry.get(e)}}const t=e=>{const t=[];return e.forEach(e=>{t.push(e)}),t},i=new Set,o=new Set;let r;const a=e=>{i.add(e)},n=()=>{console.warn(`The following tags have already been defined by a different UI5 Web Components version: ${t(o).join(", ")}`),o.clear()},s=new Set,l=new Set,u=new e,d=new 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 i=new Map;for(t=this.shift();t;){const o=i.get(t)||0;if(o>10)throw new Error("Web component processed too many times this task, max allowed is: 10");e(t),i.set(t,o+1),t=this.shift()}}};let c,_,h,p;const g=async e=>{d.add(e),await f()},m=e=>{u.fireEvent("beforeComponentRender",e),l.add(e),e._render()},f=async()=>{p||(p=new Promise(e=>{window.requestAnimationFrame(()=>{d.process(m),p=null,e(),h||(h=setTimeout(()=>{h=void 0,d.isEmpty()&&y()},200))})})),await p},v=()=>{const e=t(i).map(e=>customElements.whenDefined(e));return Promise.all(e)},b=async()=>{await v(),await(c||(c=new Promise(e=>{_=e,window.requestAnimationFrame(()=>{d.isEmpty()&&(c=void 0,e())})}),c))},y=()=>{d.isEmpty()&&_&&(_(),_=void 0,c=void 0)},w=async e=>{l.forEach(t=>{const i=t.constructor.getMetadata().getTag(),o=(r=t.constructor,s.has(r));var r;const a=t.constructor.getMetadata().isLanguageAware(),n=t.constructor.getMetadata().isThemeAware();(!e||e.tag===i||e.rtlAware&&o||e.languageAware&&a||e.themeAware&&n)&&g(t)}),await b()},k=(e,t=document.body)=>{let i=document.querySelector(e);return i||(i=document.createElement(e),t.insertBefore(i,t.firstChild))},x=(e,t)=>{const i=e.split(".");let o=k("ui5-shared-resources",document.head);for(let e=0;e<i.length;e++){const r=i[e],a=e===i.length-1;Object.prototype.hasOwnProperty.call(o,r)||(o[r]=a?t:{}),o=o[r]}return o},C=x("CustomStyle.eventProvider",new e),S=e=>{C.attachEvent("CustomCSSChange",e)},T=x("CustomStyle.customCSSFor",{});let B;S(e=>{B||w({tag:e})});const I=new e;((e,t)=>{T[e]||(T[e]=[]),T[e].push(t),B=!0;try{(e=>{C.fireEvent("CustomCSSChange",e)})(e)}finally{B=!1}w({tag:e})})("ui5-select","\n\t.ui5-select-root ui5-li:first-child {\n\t\tdisplay: none;\n\t}\n");
|
|
2
|
+
//!!computedStyles.getPropertyValue('--sapBaseColor'));
|
|
3
|
+
const $=new Map,D=(e,t)=>{$.set(e,t)},A=e=>$.get(e);var F={},E=F.hasOwnProperty,M=F.toString,P=E.toString,L=P.call(Object),N=function(e){var t,i;return!(!e||"[object Object]"!==M.call(e))&&(!(t=Object.getPrototypeOf(e))||"function"==typeof(i=E.call(t,"constructor")&&t.constructor)&&P.call(i)===L)},z=Object.create(null),O=function(){var e,t,i,o,r,a,n=arguments[2]||{},s=3,l=arguments.length,u=arguments[0]||!1,d=arguments[1]?void 0:z;for("object"!=typeof n&&"function"!=typeof n&&(n={});s<l;s++)if(null!=(r=arguments[s]))for(o in r)e=n[o],i=r[o],"__proto__"!==o&&n!==i&&(u&&i&&(N(i)||(t=Array.isArray(i)))?(t?(t=!1,a=e&&Array.isArray(e)?e:[]):a=e&&N(e)?e:{},n[o]=O(u,arguments[1],a,i)):i!==d&&(n[o]=i));return n},H=function(){var e=[!0,!1];return e.push.apply(e,arguments),O.apply(null,e)};const R={default:"en",all:["ar","ar_EG","ar_SA","bg","ca","cs","da","de","de_AT","de_CH","el","el_CY","en","en_AU","en_GB","en_HK","en_IE","en_IN","en_NZ","en_PG","en_SG","en_ZA","es","es_AR","es_BO","es_CL","es_CO","es_MX","es_PE","es_UY","es_VE","et","fa","fi","fr","fr_BE","fr_CA","fr_CH","fr_LU","he","hi","hr","hu","id","it","it_CH","ja","kk","ko","lt","lv","ms","nb","nl","nl_BE","pl","pt","pt_PT","ro","ru","ru_UA","sk","sl","sr","sv","th","tr","uk","vi","zh_CN","zh_HK","zh_SG","zh_TW"]},U={default:"sap_fiori_3",all:["sap_fiori_3","sap_fiori_3_dark","sap_belize","sap_belize_hcb","sap_belize_hcw","sap_fiori_3_hcb","sap_fiori_3_hcw","sap_horizon","sap_horizon_exp"]}.default,V={default:"en",all:["ar","bg","ca","cs","cy","da","de","el","en","en_GB","en_US_sappsd","en_US_saprigi","en_US_saptrc","es","es_MX","et","fi","fr","fr_CA","hi","hr","hu","in","it","iw","ja","kk","ko","lt","lv","ms","nl","no","pl","pt_PT","pt","ro","ru","sh","sk","sl","sv","th","tr","uk","vi","zh_CN","zh_TW"]}.default,j=R.default,W=R.all;let q=!1,Y={animationMode:"full",theme:U,rtl:null,language:null,calendarType:null,noConflict:!1,formatSettings:{},fetchDefaultLanguage:!1};const G=new Map;G.set("true",!0),G.set("false",!1);const X=(e,t,i)=>{const o=t.toLowerCase(),r=e.split(`${i}-`)[1];G.has(t)&&(t=G.get(o)),t=((e,t)=>"theme"===e&&t.includes("@")?t.split("@")[0]:t)(r,t),Y[r]=t},Z=()=>{q||((()=>{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(e){console.warn("Incorrect data-sap-ui-config format. Please use JSON")}t&&(Y=H(Y,t))}})(),(()=>{const e=new URLSearchParams(window.location.search);e.forEach((e,t)=>{const i=t.split("sap-").length;0!==i&&i!==t.split("sap-ui-").length&&X(t,e,"sap")}),e.forEach((e,t)=>{t.startsWith("sap-ui")&&X(t,e,"sap-ui")})})(),(()=>{const e=A("OpenUI5Support");if(!e||!e.isLoaded())return;const t=e.getConfigurationSettingsObject();Y=H(Y,t)})(),q=!0)},J=new Map,K=new Map,Q=new Set,ee=new Set,te=(e,t,i)=>{K.set(`${e}/${t}`,i),Q.add(e),ee.add(t)},ie=async(e,t)=>{const i=J.get(`${e}_${t}`);if(void 0!==i)return i;if(!ee.has(t)){const t=[...ee.values()].join(", ");return console.warn(`You have requested a non-registered theme - falling back to ${U}. Registered themes are: ${t}`),J.get(`${e}_${U}`)}const o=K.get(`${e}/${t}`);if(!o)return void console.error(`Theme [${t}] not registered for package [${e}]`);let r;try{r=await o(t)}catch(t){return void console.error(e,t.message)}const a=r._||r;return J.set(`${e}_${t}`,a),a},oe=()=>Q,re=(e,t={})=>{const i=document.createElement("style");return i.type="text/css",Object.entries(t).forEach(e=>i.setAttribute(...e)),i.textContent=e,document.head.appendChild(i),i},ae=(e,t)=>t?`${e}|${t}`:e,ne=(e,t,i="")=>{const o="string"==typeof e?e:e.content;if(document.adoptedStyleSheets){const e=new CSSStyleSheet;e.replaceSync(o),e._ui5StyleId=ae(t,i),document.adoptedStyleSheets=[...document.adoptedStyleSheets,e]}else{const e={};e[t]=i,re(o,e)}},se=(e,t="")=>document.adoptedStyleSheets?!!document.adoptedStyleSheets.find(i=>i._ui5StyleId===ae(e,t)):!!document.querySelector(`head>style[${e}="${t}"]`),le=(e,t,i="")=>{se(t,i)?((e,t,i="")=>{const o="string"==typeof e?e:e.content;document.adoptedStyleSheets?document.adoptedStyleSheets.find(e=>e._ui5StyleId===ae(t,i)).replaceSync(o||""):document.querySelector(`head>style[${t}="${i}"]`).textContent=o||""})(e,t,i):ne(e,t,i)},ue=()=>{const e=(()=>{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"),e.classList.add("sapThemeMetaData-UI5-sap-ui-core"),document.body.appendChild(e);const t=getComputedStyle(e).backgroundImage;return document.body.removeChild(e),t})();if(e&&"none"!==e)return(e=>{let t,i;try{t=e.Path.match(/\.([^.]+)\.css_variables$/)[1],i=e.Extends[0]}catch(t){return void console.warn("Malformed theme metadata Object",e)}return{themeName:t,baseThemeName:i}})((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(e){return void console.warn("Malformed theme metadata string, unable to decodeURIComponent")}try{return JSON.parse(e)}catch(e){console.warn("Malformed theme metadata string, unable to parse JSON")}}})(e))},de="@ui5/webcomponents-theming",ce=async e=>{if(!oe().has(de))return;const t=await ie(de,e);le(t,"data-ui5-theme-properties",de)},_e=()=>{((e,t="")=>{if(document.adoptedStyleSheets)document.adoptedStyleSheets=document.adoptedStyleSheets.filter(i=>i._ui5StyleId!==ae(e,t));else{const i=document.querySelector(`head > style[${e}="${t}"]`);i&&i.parentElement.removeChild(i)}})("data-ui5-theme-properties",de)},he=async e=>{const t=(()=>{const e=ue();if(e)return e;const t=A("OpenUI5Support");if(t){if(t.cssVariablesLoaded())return{themeName:t.getConfigurationSettingsObject().theme}}})();t&&e===t.themeName?_e():await ce(e);const i=(e=>ee.has(e))(e)?e:t&&t.baseThemeName;await(async e=>{oe().forEach(async t=>{if(t===de)return;const i=await ie(t,e);le(i,"data-ui5-theme-properties",t)})})(i),(e=>{I.fireEvent("themeLoaded",e)})(e)};let pe;const ge=()=>(void 0===pe&&(Z(),pe=Y.theme),pe),me=e=>{const t=ge();return t===e||t===`${e}_exp`},fe=()=>{let e=document.activeElement;for(;e&&e.shadowRoot&&e.shadowRoot.activeElement;)e=e.shadowRoot.activeElement;return e},ve=x("PopupUtilsData",{});ve.currentZIndex=ve.currentZIndex||100;const be=()=>{const e=fe();return e&&"function"==typeof e.focus?e:null},ye=(e,t)=>{let i=e;if(i.shadowRoot&&(i=Array.from(i.shadowRoot.children).find(e=>"style"!==e.localName)),i===t)return!0;const o="slot"===i.localName?i.assignedNodes():i.children;return o?Array.from(o).some(e=>ye(e,t)):void 0},we=(e,t)=>{let i,o;if(e.touches){const t=e.touches[0];i=t.clientX,o=t.clientY}else i=e.clientX,o=e.clientY;return((e,t,i)=>e>=i.left&&e<=i.right&&t>=i.top&&t<=i.bottom)(i,o,t)},ke=e=>{const t=e.parentElement||e.getRootNode&&e.getRootNode().host;return t&&(t.showAt&&t.isUI5Element||t.open&&t.isUI5Element||t===document.documentElement)?t:ke(t)},xe=()=>{const e=A("OpenUI5Support");return e&&e.isLoaded()?e.getNextZIndex():(ve.currentZIndex+=2,ve.currentZIndex)},Ce=()=>ve.currentZIndex,Se=()=>{const e=window.sap;return e&&e.ui&&"function"==typeof e.ui.getCore&&e.ui.getCore()},Te=()=>{const e=Se(),t=e.getConfiguration();e.attachThemeChanged(async()=>{await(async e=>{pe!==e&&(pe=e,await he(pe),await w({themeAware:!0}))})(t.getTheme())})};D("OpenUI5Support",{isLoaded:()=>!!Se(),init:()=>{const e=Se();return e?new Promise(t=>{e.attachInit(()=>{window.sap.ui.require(["sap/ui/core/LocaleData","sap/ui/core/Popup"],(e,i)=>{i.setInitialZIndex(Ce()),t()})})}):Promise.resolve()},getConfigurationSettingsObject:()=>{const e=Se();if(!e)return;const t=e.getConfiguration(),i=window.sap.ui.require("sap/ui/core/LocaleData");return{animationMode:t.getAnimationMode(),language:t.getLanguage(),theme:t.getTheme(),rtl:t.getRTL(),calendarType:t.getCalendarType(),formatSettings:{firstDayOfWeek:i?i.getInstance(t.getLocale()).getFirstDayOfWeek():void 0}}},getLocaleDataObject:()=>{const e=Se();if(!e)return;const t=e.getConfiguration();return window.sap.ui.require("sap/ui/core/LocaleData").getInstance(t.getLocale())._get()},attachListeners:()=>{Se()&&Te()},cssVariablesLoaded:()=>{if(!Se())return;const e=[...document.head.children].find(e=>"sap-ui-theme-sap.ui.core"===e.id);return e?!!e.href.match(/\/css(-|_)variables\.css/):void 0},getNextZIndex:()=>{if(Se())return window.sap.ui.require("sap/ui/core/Popup").getNextZIndex()},setInitialZIndex:()=>{Se()&&window.sap.ui.require("sap/ui/core/Popup").setInitialZIndex(Ce())}});var Be={packageName:"@ui5/webcomponents-base",fileName:"FontFace.css",content:'@font-face{font-family:"72";font-style:normal;font-weight:400;src:local("72"),url(https://ui5.sap.com/sdk/resources/sap/ui/core/themes/sap_fiori_3/fonts/72-Regular.woff2?ui5-webcomponents) format("woff2"),url(https://ui5.sap.com/sdk/resources/sap/ui/core/themes/sap_fiori_3/fonts/72-Regular.woff?ui5-webcomponents) format("woff")}@font-face{font-family:"72full";font-style:normal;font-weight:400;src:local(\'72-full\'),url(https://ui5.sap.com/sdk/resources/sap/ui/core/themes/sap_fiori_3/fonts/72-Regular-full.woff2?ui5-webcomponents) format("woff2"),url(https://ui5.sap.com/sdk/resources/sap/ui/core/themes/sap_fiori_3/fonts/72-Regular-full.woff?ui5-webcomponents) format("woff")}@font-face{font-family:"72";font-style:normal;font-weight:700;src:local(\'72-Bold\'),url(https://ui5.sap.com/sdk/resources/sap/ui/core/themes/sap_fiori_3/fonts/72-Bold.woff2?ui5-webcomponents) format("woff2"),url(https://ui5.sap.com/sdk/resources/sap/ui/core/themes/sap_fiori_3/fonts/72-Bold.woff?ui5-webcomponents) format("woff")}@font-face{font-family:"72full";font-style:normal;font-weight:700;src:local(\'72-Bold-full\'),url(https://ui5.sap.com/sdk/resources/sap/ui/core/themes/sap_fiori_3/fonts/72-Bold-full.woff2?ui5-webcomponents) format("woff2"),url(https://ui5.sap.com/sdk/resources/sap/ui/core/themes/sap_fiori_3/fonts/72-Bold-full.woff?ui5-webcomponents) format("woff")}@font-face{font-family:"72Black";font-style:bold;font-weight:900;src:local(\'72Black\'),url(https://openui5nightly.hana.ondemand.com/resources/sap/ui/core/themes/sap_horizon/fonts/72-Black.woff2?ui5-webcomponents) format("woff2"),url(https://openui5nightly.hana.ondemand.com/resources/sap/ui/core/themes/sap_horizon/fonts/72-Black.woff?ui5-webcomponents) format("woff")}'},Ie={packageName:"@ui5/webcomponents-base",fileName:"OverrideFontFace.css",content:"@font-face{font-family:'72override';unicode-range:U+0102-0103,U+01A0-01A1,U+01AF-01B0,U+1EA0-1EB7,U+1EB8-1EC7,U+1EC8-1ECB,U+1ECC-1EE3,U+1EE4-1EF1,U+1EF4-1EF7;src:local('Arial'),local('Helvetica'),local('sans-serif')}"};const $e=()=>{se("data-ui5-font-face")||ne(Be,"data-ui5-font-face")},De=()=>{se("data-ui5-font-face-override")||ne(Ie,"data-ui5-font-face-override")};var Ae={packageName:"@ui5/webcomponents-base",fileName:"SystemCSSVars.css",content:":root{--_ui5_content_density:cozy}.sapUiSizeCompact,.ui5-content-density-compact,[data-ui5-compact-size]{--_ui5_content_density:compact}[dir=rtl]{--_ui5_dir:rtl}[dir=ltr]{--_ui5_dir:ltr}"};let Fe=!1;const Ee=new e,Me=async()=>{if(Fe)return;const e=A("OpenUI5Support");e&&await e.init(),await new Promise(e=>{document.body?e():document.addEventListener("DOMContentLoaded",()=>{e()})}),await he(ge()),e&&e.attachListeners(),(()=>{const e=A("OpenUI5Support");e&&e.isLoaded()||$e(),De()})(),se("data-ui5-system-css-vars")||ne(Ae,"data-ui5-system-css-vars"),await Ee.fireEventAsync("boot"),Fe=!0};class Pe{static isValid(e){}static attributeToProperty(e){return e}static propertyToAttribute(e){return`${e}`}static valuesAreEqual(e,t){return e===t}static generateTypeAccessors(e){Object.keys(e).forEach(t=>{Object.defineProperty(this,t,{get:()=>e[t]})})}}const Le=(e,t,i=!1)=>{if("function"!=typeof e||"function"!=typeof t)return!1;if(i&&e===t)return!0;let o=e;do{o=Object.getPrototypeOf(o)}while(null!==o&&o!==t);return o===t},Ne=new Map,ze=new Map,Oe=e=>{if(!Ne.has(e)){const t=Re(e.split("-"));Ne.set(e,t)}return Ne.get(e)},He=e=>{if(!ze.has(e)){const t=e.replace(/([a-z])([A-Z])/g,"$1-$2").toLowerCase();ze.set(e,t)}return ze.get(e)},Re=e=>e.map((e,t)=>0===t?e.toLowerCase():e.charAt(0).toUpperCase()+e.slice(1).toLowerCase()).join(""),Ue=e=>e&&e instanceof HTMLElement&&"slot"===e.localName,Ve=e=>Ue(e)?e.assignedNodes({flatten:!0}).filter(e=>e instanceof HTMLElement):[e];let je={include:[/^ui5-/],exclude:[]};const We=new Map,qe=e=>{if(!We.has(e)){const t=je.include.some(t=>e.match(t))&&!je.exclude.some(t=>e.match(t));We.set(e,t)}return We.get(e)},Ye=e=>{qe(e)};class Ge{constructor(e){this.metadata=e}getInitialState(){if(Object.prototype.hasOwnProperty.call(this,"_initialState"))return this._initialState;const e={},t=this.slotsAreManaged(),i=this.getProperties();for(const t in i){const o=i[t].type,r=i[t].defaultValue;o===Boolean?(e[t]=!1,void 0!==r&&console.warn("The 'defaultValue' metadata key is ignored for all booleans properties, they would be initialized with 'false' by default")):i[t].multiple?e[t]=[]:e[t]=o===Object?"defaultValue"in i[t]?i[t].defaultValue:{}:o===String?"defaultValue"in i[t]?i[t].defaultValue:"":r}if(t){const t=this.getSlots();for(const[i,o]of Object.entries(t)){e[o.propertyName||i]=[]}}return this._initialState=e,e}static validatePropertyValue(e,t){return t.multiple?e.map(e=>Xe(e,t)):Xe(e,t)}static validateSlotValue(e,t){return Ze(e,t)}getPureTag(){return this.metadata.tag}getTag(){const e=this.metadata.tag,t=Ye(e);return t?`${e}-${t}`:e}getAltTag(){const e=this.metadata.altTag;if(!e)return;const t=Ye(e);return t?`${e}-${t}`:e}hasAttribute(e){const t=this.getProperties()[e];return t.type!==Object&&!t.noAttribute&&!t.multiple}getPropertiesList(){return Object.keys(this.getProperties())}getAttributesList(){return this.getPropertiesList().filter(this.hasAttribute,this).map(He)}getSlots(){return this.metadata.slots||{}}canSlotText(){const e=this.getSlots().default;return e&&e.type===Node}hasSlots(){return!!Object.entries(this.getSlots()).length}hasIndividualSlots(){return this.slotsAreManaged()&&Object.entries(this.getSlots()).some(([e,t])=>t.individualSlots)}slotsAreManaged(){return!!this.metadata.managedSlots}getProperties(){return this.metadata.properties||{}}getEvents(){return this.metadata.events||{}}isLanguageAware(){return!!this.metadata.languageAware}isThemeAware(){return!!this.metadata.themeAware}shouldInvalidateOnChildChange(e,t,i){const o=this.getSlots()[e].invalidateOnChildChange;if(void 0===o)return!1;if("boolean"==typeof o)return o;if("object"==typeof o){if("property"===t){if(void 0===o.properties)return!1;if("boolean"==typeof o.properties)return o.properties;if(Array.isArray(o.properties))return o.properties.includes(i);throw new Error("Wrong format for invalidateOnChildChange.properties: boolean or array is expected")}if("slot"===t){if(void 0===o.slots)return!1;if("boolean"==typeof o.slots)return o.slots;if(Array.isArray(o.slots))return o.slots.includes(i);throw new Error("Wrong format for invalidateOnChildChange.slots: boolean or array is expected")}}throw new Error("Wrong format for invalidateOnChildChange: boolean or object is expected")}}const Xe=(e,t)=>{const i=t.type;return i===Boolean?"boolean"==typeof e&&e:i===String?"string"==typeof e||null==e?e:e.toString():i===Object?"object"==typeof e?e:t.defaultValue:Le(i,Pe)?i.isValid(e)?e:t.defaultValue:void 0},Ze=(e,t)=>(e&&Ve(e).forEach(e=>{if(!(e instanceof t.type))throw new Error(`${e} is not of type ${t.type}`)}),e);customElements.get("ui5-static-area")||customElements.define("ui5-static-area",class extends HTMLElement{});const Je=e=>Array.isArray(e)?Ke(e.filter(e=>!!e)).map(e=>"string"==typeof e?e:e.content).join(" "):"string"==typeof e?e:e.content,Ke=e=>e.reduce((e,t)=>e.concat(Array.isArray(t)?Ke(t):t),[]),Qe=new Map;S(e=>{Qe.delete(`${e}_normal`)});const et=(e,t=!1)=>{const i=e.getMetadata().getTag(),o=`${i}_${t?"static":"normal"}`;if(!Qe.has(o)){let r;if(t)r=Je(e.staticAreaStyles);else{const t=(e=>T[e]?T[e].join(""):"")(i)||"";r=`${Je(e.styles)} ${t}`}Qe.set(o,r)}return Qe.get(o)},tt=new Map;S(e=>{tt.delete(`${e}_normal`)});const it=()=>!!window.ShadyDOM,ot=(e,t=!1)=>{let i;const o=t?"staticAreaTemplate":"template",r=t?e.staticAreaItem.shadowRoot:e.shadowRoot,a=((e,t)=>{const i=t.constructor.getUniqueDependencies().map(e=>e.getMetadata().getPureTag()).filter(qe);return e(t,i,void 0)})(e.constructor[o],e);document.adoptedStyleSheets?r.adoptedStyleSheets=((e,t=!1)=>{const i=`${e.getMetadata().getTag()}_${t?"static":"normal"}`;if(!tt.has(i)){const o=et(e,t),r=new CSSStyleSheet;r.replaceSync(o),tt.set(i,[r])}return tt.get(i)})(e.constructor,t):it()||(i=et(e.constructor,t)),e.constructor.render(a,r,i,{host:e})},rt=e=>getComputedStyle(e).getPropertyValue("--_ui5_content_density"),at=new e,nt=e=>{at.attachEvent("languageChange",e)};let st,lt;const ut=()=>(void 0===st&&(Z(),st=Y.language),st),dt=()=>{var e;return void 0===lt&&(Z(),e=Y.fetchDefaultLanguage,lt=e),lt};var ct=e=>{const t=/\$([-a-z0-9A-Z._]+)(?::([^$]*))?\$/.exec(e);return t&&t[2]?t[2].split(/,/):null},_t=()=>{const e=navigator.languages;return e&&e[0]||navigator.language||navigator.userLanguage||navigator.browserLanguage||V};const ht={iw:"he",ji:"yi",in:"id",sh:"sr"},pt=ct("$cldr-rtl-locales:ar,fa,he$")||[],gt=()=>{const e=(Z(),Y.rtl);return null!==e?!!e:(e=>(e=e&&ht[e]||e,pt.indexOf(e)>=0))(ut()||_t())},mt=e=>{const t=window.document,i=["ltr","rtl"],o=getComputedStyle(e).getPropertyValue("--_ui5_dir");return i.includes(o)?o:i.includes(e.dir)?e.dir:i.includes(t.documentElement.dir)?t.documentElement.dir:i.includes(t.body.dir)?t.body.dir:gt()?"rtl":void 0};class ft extends HTMLElement{constructor(){super(),this._rendered=!1,this.attachShadow({mode:"open"})}setOwnerElement(e){this.ownerElement=e,this.classList.add(this.ownerElement._id)}update(){this._rendered&&(this._updateContentDensity(),this._updateDirection(),ot(this.ownerElement,!0))}_updateContentDensity(){"compact"===rt(this.ownerElement)?(this.classList.add("sapUiSizeCompact"),this.classList.add("ui5-content-density-compact")):(this.classList.remove("sapUiSizeCompact"),this.classList.remove("ui5-content-density-compact"))}_updateDirection(){const e=mt(this.ownerElement);e?this.setAttribute("dir",e):this.removeAttribute("dir")}async getDomRef(){return this._updateContentDensity(),this._rendered||(this._rendered=!0,ot(this.ownerElement,!0)),await b(),this.shadowRoot}static getTag(){const e="ui5-static-area-item",t=Ye(e);return t?`${e}-${t}`:e}static createInstance(){return customElements.get(ft.getTag())||customElements.define(ft.getTag(),ft),document.createElement(this.getTag())}}const vt=new WeakMap;const bt=(e,t,i)=>{const o=((e,t,i)=>{const o=new MutationObserver(t);return o.observe(e,i),o})(e,t,i);vt.set(e,o)},yt=["value-changed"];let wt;const kt=()=>(void 0===wt&&(Z(),wt=Y.noConflict),wt),xt=e=>{const t=kt();return!(e=>yt.includes(e))(e)&&(!0===t||!(e=>{const t=kt();return!(t.events&&t.events.includes&&t.events.includes(e))})(e))},Ct=["disabled","title","hidden","role","draggable"],St=e=>{if(Ct.includes(e)||e.startsWith("aria"))return!0;return![HTMLElement,Element,Node].some(t=>t.prototype.hasOwnProperty(e))},Tt=(e,t)=>{if(e.length!==t.length)return!1;for(let i=0;i<e.length;i++)if(e[i]!==t[i])return!1;return!0},Bt=(e,t)=>class extends e{constructor(){super(),t&&t()}};let It=0;const $t=new Map,Dt=new Map;function At(e){this._suppressInvalidation||(this.onInvalidation(e),this._changedState.push(e),g(this),this._eventProvider.fireEvent("invalidate",{...e,target:this}))}class Ft extends HTMLElement{constructor(){let t;super(),this._changedState=[],this._suppressInvalidation=!0,this._inDOM=!1,this._fullyConnected=!1,this._childChangeListeners=new Map,this._slotChangeListeners=new Map,this._eventProvider=new e,this._domRefReadyPromise=new Promise(e=>{t=e}),this._domRefReadyPromise._deferredResolve=t,this._initializeState(),this._upgradeAllProperties(),this.constructor._needsShadowDOM()&&this.attachShadow({mode:"open"})}get _id(){return this.__id||(this.__id=`ui5wc_${++It}`),this.__id}async connectedCallback(){this.setAttribute(this.constructor.getMetadata().getPureTag(),"");const e=this.constructor.getMetadata().slotsAreManaged();this._inDOM=!0,e&&(this._startObservingDOMChildren(),await this._processChildren()),this._inDOM&&(m(this),this._domRefReadyPromise._deferredResolve(),this._fullyConnected=!0,"function"==typeof this.onEnterDOM&&this.onEnterDOM())}disconnectedCallback(){const e=this.constructor.getMetadata().slotsAreManaged();var t;this._inDOM=!1,e&&this._stopObservingDOMChildren(),this._fullyConnected&&("function"==typeof this.onExitDOM&&this.onExitDOM(),this._fullyConnected=!1),this.staticAreaItem&&this.staticAreaItem.parentElement&&this.staticAreaItem.parentElement.removeChild(this.staticAreaItem),t=this,d.remove(t),l.delete(t)}_startObservingDOMChildren(){if(!this.constructor.getMetadata().hasSlots())return;const e=this.constructor.getMetadata().canSlotText(),t={childList:!0,subtree:e,characterData:e};bt(this,this._processChildren.bind(this),t)}_stopObservingDOMChildren(){(e=>{const t=vt.get(e);t&&((e=>{e.disconnect()})(t),vt.delete(e))})(this)}async _processChildren(){this.constructor.getMetadata().hasSlots()&&await this._updateSlots()}async _updateSlots(){const e=this.constructor.getMetadata().getSlots(),t=this.constructor.getMetadata().canSlotText(),i=Array.from(t?this.childNodes:this.children),o=new Map,r=new Map;for(const[t,i]of Object.entries(e)){const e=i.propertyName||t;r.set(e,t),o.set(e,[...this._state[e]]),this._clearSlot(t,i)}const a=new Map,n=new Map,s=i.map(async(t,i)=>{const o=(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"})(t),r=e[o];if(void 0===r){const i=Object.keys(e).join(", ");return void console.warn(`Unknown slotName: ${o}, ignoring`,t,`Valid values are: ${i}`)}if(r.individualSlots){const e=(a.get(o)||0)+1;a.set(o,e),t._individualSlot=`${o}-${e}`}if(t instanceof HTMLElement){const e=t.localName;if(e.includes("-")){if(!window.customElements.get(e)){const t=window.customElements.whenDefined(e);let i=$t.get(e);i||(i=new Promise(e=>setTimeout(e,1e3)),$t.set(e,i)),await Promise.race([t,i])}window.customElements.upgrade(t)}}(t=this.constructor.getMetadata().constructor.validateSlotValue(t,r)).isUI5Element&&r.invalidateOnChildChange&&t.attachInvalidate(this._getChildChangeListener(o)),Ue(t)&&this._attachSlotChange(t,o);const s=r.propertyName||o;n.has(s)?n.get(s).push({child:t,idx:i}):n.set(s,[{child:t,idx:i}])});await Promise.all(s),n.forEach((e,t)=>{this._state[t]=e.sort((e,t)=>e.idx-t.idx).map(e=>e.child)});let l=!1;for(const[t,i]of Object.entries(e)){const e=i.propertyName||t;Tt(o.get(e),this._state[e])||(At.call(this,{type:"slot",name:r.get(e),reason:"children"}),l=!0)}l||At.call(this,{type:"slot",name:"default",reason:"textcontent"})}_clearSlot(e,t){const i=t.propertyName||e;this._state[i].forEach(t=>{t&&t.isUI5Element&&t.detachInvalidate(this._getChildChangeListener(e)),Ue(t)&&this._detachSlotChange(t,e)}),this._state[i]=[]}attachInvalidate(e){this._eventProvider.attachEvent("invalidate",e)}detachInvalidate(e){this._eventProvider.detachEvent("invalidate",e)}_onChildChange(e,t){this.constructor.getMetadata().shouldInvalidateOnChildChange(e,t.type,t.name)&&At.call(this,{type:"slot",name:e,reason:"childchange",child:t.target})}attributeChangedCallback(e,t,i){const o=this.constructor.getMetadata().getProperties(),r=e.replace(/^ui5-/,""),a=Oe(r);if(o.hasOwnProperty(a)){const e=o[a].type;e===Boolean?i=null!==i:Le(e,Pe)&&(i=e.attributeToProperty(i)),this[a]=i}}_updateAttribute(e,t){if(!this.constructor.getMetadata().hasAttribute(e))return;const i=this.constructor.getMetadata().getProperties()[e].type,o=He(e),r=this.getAttribute(o);i===Boolean?!0===t&&null===r?this.setAttribute(o,""):!1===t&&null!==r&&this.removeAttribute(o):Le(i,Pe)?this.setAttribute(o,i.propertyToAttribute(t)):"object"!=typeof t&&r!==t&&this.setAttribute(o,t)}_upgradeProperty(e){if(this.hasOwnProperty(e)){const t=this[e];delete this[e],this[e]=t}}_upgradeAllProperties(){this.constructor.getMetadata().getPropertiesList().forEach(this._upgradeProperty,this)}_initializeState(){this._state={...this.constructor.getMetadata().getInitialState()}}_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){e.addEventListener("slotchange",this._getSlotChangeListener(t))}_detachSlotChange(e,t){e.removeEventListener("slotchange",this._getSlotChangeListener(t))}_onSlotChange(e){At.call(this,{type:"slot",name:e,reason:"slotchange"})}onInvalidation(e){}_render(){const e=this.constructor.getMetadata().hasIndividualSlots();this._suppressInvalidation=!0,"function"==typeof this.onBeforeRendering&&this.onBeforeRendering(),this._onComponentStateFinalized&&this._onComponentStateFinalized(),this._suppressInvalidation=!1,this._changedState=[],this.constructor._needsShadowDOM()&&ot(this),this.staticAreaItem&&this.staticAreaItem.update(),e&&this._assignIndividualSlotsToChildren(),"function"==typeof this.onAfterRendering&&this.onAfterRendering()}_assignIndividualSlotsToChildren(){Array.from(this.children).forEach(e=>{e._individualSlot&&e.setAttribute("slot",e._individualSlot)})}_waitForDomRef(){return this._domRefReadyPromise}getDomRef(){if("function"==typeof this._getRealDomRef)return this._getRealDomRef();if(!this.shadowRoot||0===this.shadowRoot.children.length)return;const e=[...this.shadowRoot.children].filter(e=>!["link","style"].includes(e.localName));return 1!==e.length&&console.warn(`The shadow DOM for ${this.constructor.getMetadata().getTag()} does not have a top level element, the getDomRef() method might not work as expected`),e[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(){await this._waitForDomRef();const e=this.getFocusDomRef();e&&"function"==typeof e.focus&&e.focus()}fireEvent(e,t,i=!1,o=!0){const r=this._fireEvent(e,t,i,o),a=Oe(e);return a!==e?r&&this._fireEvent(a,t,i):r}_fireEvent(e,t,i=!1,o=!0){const r=new CustomEvent(`ui5-${e}`,{detail:t,composed:!1,bubbles:o,cancelable:i}),a=this.dispatchEvent(r);if(xt(e))return a;const n=new CustomEvent(e,{detail:t,composed:!1,bubbles:o,cancelable:i});return this.dispatchEvent(n)&&a}getSlottedNodes(e){return this[e].reduce((e,t)=>e.concat(Ve(t)),[])}get effectiveDir(){var e;return e=this.constructor,s.add(e),mt(this)}get isUI5Element(){return!0}static get observedAttributes(){return this.getMetadata().getAttributesList()}static _needsShadowDOM(){return!!this.template}static _needsStaticArea(){return!!this.staticAreaTemplate}getStaticAreaItemDomRef(){if(!this.constructor._needsStaticArea())throw new Error("This component does not use the static area");return this.staticAreaItem||(this.staticAreaItem=ft.createInstance(),this.staticAreaItem.setOwnerElement(this)),this.staticAreaItem.parentElement||k("ui5-static-area").appendChild(this.staticAreaItem),this.staticAreaItem.getDomRef()}static _generateAccessors(){const e=this.prototype,t=this.getMetadata().slotsAreManaged(),i=this.getMetadata().getProperties();for(const[t,o]of Object.entries(i)){if(St(t)||console.warn(`"${t}" is not a valid property name. Use a name that does not collide with DOM APIs`),o.type===Boolean&&o.defaultValue)throw new Error(`Cannot set a default value for property "${t}". All booleans are false by default.`);if(o.type===Array)throw new Error(`Wrong type for property "${t}". Properties cannot be of type Array - use "multiple: true" and set "type" to the single value type, such as "String", "Object", etc...`);if(o.type===Object&&o.defaultValue)throw new Error(`Cannot set a default value for property "${t}". All properties of type "Object" are empty objects by default.`);if(o.multiple&&o.defaultValue)throw new Error(`Cannot set a default value for property "${t}". All multiple properties are empty arrays by default.`);Object.defineProperty(e,t,{get(){if(void 0!==this._state[t])return this._state[t];const e=o.defaultValue;return o.type!==Boolean&&(o.type===String?e:o.multiple?[]:e)},set(e){let i;e=this.constructor.getMetadata().constructor.validatePropertyValue(e,o);const r=this._state[t];i=o.multiple&&o.compareValues?!Tt(r,e):Le(o.type,Pe)?!o.type.valuesAreEqual(r,e):r!==e,i&&(this._state[t]=e,At.call(this,{type:"property",name:t,newValue:e,oldValue:r}),this._updateAttribute(t,e))}})}if(t){const t=this.getMetadata().getSlots();for(const[i,o]of Object.entries(t)){St(i)||console.warn(`"${i}" is not a valid property name. Use a name that does not collide with DOM APIs`);const t=o.propertyName||i;Object.defineProperty(e,t,{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...)")}})}}}static get metadata(){return{}}static get styles(){return""}static get staticAreaStyles(){return""}static get dependencies(){return[]}static getUniqueDependencies(){if(!Dt.has(this)){const e=this.dependencies.filter((e,t,i)=>i.indexOf(e)===t);Dt.set(this,e)}return Dt.get(this)}static whenDependenciesDefined(){return Promise.all(this.getUniqueDependencies().map(e=>e.define()))}static async onDefine(){return Promise.resolve()}static async define(){await Me(),await Promise.all([this.whenDependenciesDefined(),this.onDefine()]);const e=this.getMetadata().getTag(),t=this.getMetadata().getAltTag(),s=(e=>i.has(e))(e),l=customElements.get(e);return l&&!s?(e=>{o.add(e),r||(r=setTimeout(()=>{n(),r=void 0},1e3))})(e):l||(this._generateAccessors(),a(e),window.customElements.define(e,this),t&&!customElements.get(t)&&(a(t),window.customElements.define(t,Bt(this,()=>{console.log(`The ${t} tag is deprecated and will be removed in the next release, please use ${e} instead.`)})))),this}static getMetadata(){if(this.hasOwnProperty("_metadata"))return this._metadata;const e=[this.metadata];let t=this;for(;t!==Ft;)t=Object.getPrototypeOf(t),e.unshift(t.metadata);const i=H({},...e);return this._metadata=new Ge(i),this._metadata}}
|
|
2
4
|
/**
|
|
3
5
|
* @license
|
|
4
|
-
* Copyright
|
|
5
|
-
*
|
|
6
|
-
|
|
7
|
-
* The complete set of authors may be found at
|
|
8
|
-
* http://polymer.github.io/AUTHORS.txt
|
|
9
|
-
* The complete set of contributors may be found at
|
|
10
|
-
* http://polymer.github.io/CONTRIBUTORS.txt
|
|
11
|
-
* Code distributed by Google as part of the polymer project is also
|
|
12
|
-
* subject to an additional IP rights grant found at
|
|
13
|
-
* http://polymer.github.io/PATENTS.txt
|
|
14
|
-
*/const qt=new WeakMap,Gt=e=>(...t)=>{const i=e(...t);return qt.set(i,!0),i},Jt=e=>"function"==typeof e&&qt.has(e),Xt=void 0!==window.customElements&&void 0!==window.customElements.polyfillWrapFlushCallback,Qt=(e,t,i=null,r=null)=>{for(;t!==i;){const i=t.nextSibling;e.insertBefore(t,r),t=i}},Zt=(e,t,i=null)=>{for(;t!==i;){const i=t.nextSibling;e.removeChild(t),t=i}},Kt={},ei={},ti=`{{lit-${String(Math.random()).slice(2)}}}`,ii=`\x3c!--${ti}--\x3e`,ri=new RegExp(`${ti}|${ii}`);class ai{constructor(e,t){this.parts=[],this.element=t;const i=[],r=[],a=document.createTreeWalker(t.content,133,null,!1);let o=0,n=-1,s=0;const{strings:l,values:{length:u}}=e;for(;s<u;){const e=a.nextNode();if(null!==e){if(n++,1===e.nodeType){if(e.hasAttributes()){const t=e.attributes,{length:i}=t;let r=0;for(let e=0;e<i;e++)oi(t[e].name,"$lit$")&&r++;for(;r-- >0;){const t=l[s],i=li.exec(t)[2],r=i.toLowerCase()+"$lit$",a=e.getAttribute(r);e.removeAttribute(r);const o=a.split(ri);this.parts.push({type:"attribute",index:n,name:i,strings:o}),s+=o.length-1}}"TEMPLATE"===e.tagName&&(r.push(e),a.currentNode=e.content)}else if(3===e.nodeType){const t=e.data;if(t.indexOf(ti)>=0){const r=e.parentNode,a=t.split(ri),o=a.length-1;for(let t=0;t<o;t++){let i,o=a[t];if(""===o)i=si();else{const e=li.exec(o);null!==e&&oi(e[2],"$lit$")&&(o=o.slice(0,e.index)+e[1]+e[2].slice(0,-"$lit$".length)+e[3]),i=document.createTextNode(o)}r.insertBefore(i,e),this.parts.push({type:"node",index:++n})}""===a[o]?(r.insertBefore(si(),e),i.push(e)):e.data=a[o],s+=o}}else if(8===e.nodeType)if(e.data===ti){const t=e.parentNode;null!==e.previousSibling&&n!==o||(n++,t.insertBefore(si(),e)),o=n,this.parts.push({type:"node",index:n}),null===e.nextSibling?e.data="":(i.push(e),n--),s++}else{let t=-1;for(;-1!==(t=e.data.indexOf(ti,t+1));)this.parts.push({type:"node",index:-1}),s++}}else a.currentNode=r.pop()}for(const e of i)e.parentNode.removeChild(e)}}const oi=(e,t)=>{const i=e.length-t.length;return i>=0&&e.slice(i)===t},ni=e=>-1!==e.index,si=()=>document.createComment(""),li=/([ \x09\x0a\x0c\x0d])([^\0-\x1F\x7F-\x9F "'>=/]+)([ \x09\x0a\x0c\x0d]*=[ \x09\x0a\x0c\x0d]*(?:[^ \x09\x0a\x0c\x0d"'`<>=]*|"[^"]*|'[^']*))$/;
|
|
6
|
+
* Copyright 2017 Google LLC
|
|
7
|
+
* SPDX-License-Identifier: BSD-3-Clause
|
|
8
|
+
*/var Et;const Mt=globalThis.trustedTypes,Pt=Mt?Mt.createPolicy("lit-html",{createHTML:e=>e}):void 0,Lt=`lit$${(Math.random()+"").slice(9)}$`,Nt="?"+Lt,zt=`<${Nt}>`,Ot=document,Ht=(e="")=>Ot.createComment(e),Rt=e=>null===e||"object"!=typeof e&&"function"!=typeof e,Ut=Array.isArray,Vt=e=>{var t;return Ut(e)||"function"==typeof(null===(t=e)||void 0===t?void 0:t[Symbol.iterator])},jt=/<(?:(!--|\/[^a-zA-Z])|(\/?[a-zA-Z][^>\s]*)|(\/?$))/g,Wt=/-->/g,qt=/>/g,Yt=/>|[ \n\r](?:([^\s"'>=/]+)([ \n\r]*=[ \n\r]*(?:[^ \n\r"'`<>=]|("|')|))|$)/g,Gt=/'/g,Xt=/"/g,Zt=/^(?:script|style|textarea)$/i,Jt=e=>(t,...i)=>({_$litType$:e,strings:t,values:i}),Kt=Jt(1),Qt=Jt(2),ei=Symbol.for("lit-noChange"),ti=Symbol.for("lit-nothing"),ii=new WeakMap,oi=Ot.createTreeWalker(Ot,129,null,!1),ri=(e,t)=>{const i=e.length-1,o=[];let r,a=2===t?"<svg>":"",n=jt;for(let t=0;t<i;t++){const i=e[t];let s,l,u=-1,d=0;for(;d<i.length&&(n.lastIndex=d,l=n.exec(i),null!==l);)d=n.lastIndex,n===jt?"!--"===l[1]?n=Wt:void 0!==l[1]?n=qt:void 0!==l[2]?(Zt.test(l[2])&&(r=RegExp("</"+l[2],"g")),n=Yt):void 0!==l[3]&&(n=Yt):n===Yt?">"===l[0]?(n=null!=r?r:jt,u=-1):void 0===l[1]?u=-2:(u=n.lastIndex-l[2].length,s=l[1],n=void 0===l[3]?Yt:'"'===l[3]?Xt:Gt):n===Xt||n===Gt?n=Yt:n===Wt||n===qt?n=jt:(n=Yt,r=void 0);const c=n===Yt&&e[t+1].startsWith("/>")?" ":"";a+=n===jt?i+zt:u>=0?(o.push(s),i.slice(0,u)+"$lit$"+i.slice(u)+Lt+c):i+Lt+(-2===u?(o.push(void 0),t):c)}const s=a+(e[i]||"<?>")+(2===t?"</svg>":"");return[void 0!==Pt?Pt.createHTML(s):s,o]};class ai{constructor({strings:e,_$litType$:t},i){let o;this.parts=[];let r=0,a=0;const n=e.length-1,s=this.parts,[l,u]=ri(e,t);if(this.el=ai.createElement(l,i),oi.currentNode=this.el.content,2===t){const e=this.el.content,t=e.firstChild;t.remove(),e.append(...t.childNodes)}for(;null!==(o=oi.nextNode())&&s.length<n;){if(1===o.nodeType){if(o.hasAttributes()){const e=[];for(const t of o.getAttributeNames())if(t.endsWith("$lit$")||t.startsWith(Lt)){const i=u[a++];if(e.push(t),void 0!==i){const e=o.getAttribute(i.toLowerCase()+"$lit$").split(Lt),t=/([.?@])?(.*)/.exec(i);s.push({type:1,index:r,name:t[2],strings:e,ctor:"."===t[1]?di:"?"===t[1]?ci:"@"===t[1]?_i:ui})}else s.push({type:6,index:r})}for(const t of e)o.removeAttribute(t)}if(Zt.test(o.tagName)){const e=o.textContent.split(Lt),t=e.length-1;if(t>0){o.textContent=Mt?Mt.emptyScript:"";for(let i=0;i<t;i++)o.append(e[i],Ht()),oi.nextNode(),s.push({type:2,index:++r});o.append(e[t],Ht())}}}else if(8===o.nodeType)if(o.data===Nt)s.push({type:2,index:r});else{let e=-1;for(;-1!==(e=o.data.indexOf(Lt,e+1));)s.push({type:7,index:r}),e+=Lt.length-1}r++}}static createElement(e,t){const i=Ot.createElement("template");return i.innerHTML=e,i}}function ni(e,t,i=e,o){var r,a,n,s;if(t===ei)return t;let l=void 0!==o?null===(r=i._$Cl)||void 0===r?void 0:r[o]:i._$Cu;const u=Rt(t)?void 0:t._$litDirective$;return(null==l?void 0:l.constructor)!==u&&(null===(a=null==l?void 0:l._$AO)||void 0===a||a.call(l,!1),void 0===u?l=void 0:(l=new u(e),l._$AT(e,i,o)),void 0!==o?(null!==(n=(s=i)._$Cl)&&void 0!==n?n:s._$Cl=[])[o]=l:i._$Cu=l),void 0!==l&&(t=ni(e,l._$AS(e,t.values),l,o)),t}class si{constructor(e,t){this.v=[],this._$AN=void 0,this._$AD=e,this._$AM=t}get parentNode(){return this._$AM.parentNode}get _$AU(){return this._$AM._$AU}p(e){var t;const{el:{content:i},parts:o}=this._$AD,r=(null!==(t=null==e?void 0:e.creationScope)&&void 0!==t?t:Ot).importNode(i,!0);oi.currentNode=r;let a=oi.nextNode(),n=0,s=0,l=o[0];for(;void 0!==l;){if(n===l.index){let t;2===l.type?t=new li(a,a.nextSibling,this,e):1===l.type?t=new l.ctor(a,l.name,l.strings,this,e):6===l.type&&(t=new hi(a,this,e)),this.v.push(t),l=o[++s]}n!==(null==l?void 0:l.index)&&(a=oi.nextNode(),n++)}return r}m(e){let t=0;for(const i of this.v)void 0!==i&&(void 0!==i.strings?(i._$AI(e,i,t),t+=i.strings.length-2):i._$AI(e[t])),t++}}class li{constructor(e,t,i,o){var r;this.type=2,this._$AH=ti,this._$AN=void 0,this._$AA=e,this._$AB=t,this._$AM=i,this.options=o,this._$Cg=null===(r=null==o?void 0:o.isConnected)||void 0===r||r}get _$AU(){var e,t;return null!==(t=null===(e=this._$AM)||void 0===e?void 0:e._$AU)&&void 0!==t?t:this._$Cg}get parentNode(){let e=this._$AA.parentNode;const t=this._$AM;return void 0!==t&&11===e.nodeType&&(e=t.parentNode),e}get startNode(){return this._$AA}get endNode(){return this._$AB}_$AI(e,t=this){e=ni(this,e,t),Rt(e)?e===ti||null==e||""===e?(this._$AH!==ti&&this._$AR(),this._$AH=ti):e!==this._$AH&&e!==ei&&this.$(e):void 0!==e._$litType$?this.T(e):void 0!==e.nodeType?this.S(e):Vt(e)?this.M(e):this.$(e)}A(e,t=this._$AB){return this._$AA.parentNode.insertBefore(e,t)}S(e){this._$AH!==e&&(this._$AR(),this._$AH=this.A(e))}$(e){this._$AH!==ti&&Rt(this._$AH)?this._$AA.nextSibling.data=e:this.S(Ot.createTextNode(e)),this._$AH=e}T(e){var t;const{values:i,_$litType$:o}=e,r="number"==typeof o?this._$AC(e):(void 0===o.el&&(o.el=ai.createElement(o.h,this.options)),o);if((null===(t=this._$AH)||void 0===t?void 0:t._$AD)===r)this._$AH.m(i);else{const e=new si(r,this),t=e.p(this.options);e.m(i),this.S(t),this._$AH=e}}_$AC(e){let t=ii.get(e.strings);return void 0===t&&ii.set(e.strings,t=new ai(e)),t}M(e){Ut(this._$AH)||(this._$AH=[],this._$AR());const t=this._$AH;let i,o=0;for(const r of e)o===t.length?t.push(i=new li(this.A(Ht()),this.A(Ht()),this,this.options)):i=t[o],i._$AI(r),o++;o<t.length&&(this._$AR(i&&i._$AB.nextSibling,o),t.length=o)}_$AR(e=this._$AA.nextSibling,t){var i;for(null===(i=this._$AP)||void 0===i||i.call(this,!1,!0,t);e&&e!==this._$AB;){const t=e.nextSibling;e.remove(),e=t}}setConnected(e){var t;void 0===this._$AM&&(this._$Cg=e,null===(t=this._$AP)||void 0===t||t.call(this,e))}}class ui{constructor(e,t,i,o,r){this.type=1,this._$AH=ti,this._$AN=void 0,this.element=e,this.name=t,this._$AM=o,this.options=r,i.length>2||""!==i[0]||""!==i[1]?(this._$AH=Array(i.length-1).fill(new String),this.strings=i):this._$AH=ti}get tagName(){return this.element.tagName}get _$AU(){return this._$AM._$AU}_$AI(e,t=this,i,o){const r=this.strings;let a=!1;if(void 0===r)e=ni(this,e,t,0),a=!Rt(e)||e!==this._$AH&&e!==ei,a&&(this._$AH=e);else{const o=e;let n,s;for(e=r[0],n=0;n<r.length-1;n++)s=ni(this,o[i+n],t,n),s===ei&&(s=this._$AH[n]),a||(a=!Rt(s)||s!==this._$AH[n]),s===ti?e=ti:e!==ti&&(e+=(null!=s?s:"")+r[n+1]),this._$AH[n]=s}a&&!o&&this.k(e)}k(e){e===ti?this.element.removeAttribute(this.name):this.element.setAttribute(this.name,null!=e?e:"")}}class di extends ui{constructor(){super(...arguments),this.type=3}k(e){this.element[this.name]=e===ti?void 0:e}}class ci extends ui{constructor(){super(...arguments),this.type=4}k(e){e&&e!==ti?this.element.setAttribute(this.name,""):this.element.removeAttribute(this.name)}}class _i extends ui{constructor(e,t,i,o,r){super(e,t,i,o,r),this.type=5}_$AI(e,t=this){var i;if((e=null!==(i=ni(this,e,t,0))&&void 0!==i?i:ti)===ei)return;const o=this._$AH,r=e===ti&&o!==ti||e.capture!==o.capture||e.once!==o.once||e.passive!==o.passive,a=e!==ti&&(o===ti||r);r&&this.element.removeEventListener(this.name,this,o),a&&this.element.addEventListener(this.name,this,e),this._$AH=e}handleEvent(e){var t,i;"function"==typeof this._$AH?this._$AH.call(null!==(i=null===(t=this.options)||void 0===t?void 0:t.host)&&void 0!==i?i:this.element,e):this._$AH.handleEvent(e)}}class hi{constructor(e,t,i){this.element=e,this.type=6,this._$AN=void 0,this._$AM=t,this.options=i}get _$AU(){return this._$AM._$AU}_$AI(e){ni(this,e)}}const pi={P:"$lit$",V:Lt,L:Nt,I:1,N:ri,R:si,D:Vt,j:ni,H:li,O:ui,F:ci,B:_i,W:di,Z:hi},gi=window.litHtmlPolyfillSupport;null==gi||gi(ai,li),(null!==(Et=globalThis.litHtmlVersions)&&void 0!==Et?Et:globalThis.litHtmlVersions=[]).push("2.0.1");
|
|
15
9
|
/**
|
|
16
10
|
* @license
|
|
17
|
-
* Copyright
|
|
18
|
-
*
|
|
19
|
-
* http://polymer.github.io/LICENSE.txt
|
|
20
|
-
* The complete set of authors may be found at
|
|
21
|
-
* http://polymer.github.io/AUTHORS.txt
|
|
22
|
-
* The complete set of contributors may be found at
|
|
23
|
-
* http://polymer.github.io/CONTRIBUTORS.txt
|
|
24
|
-
* Code distributed by Google as part of the polymer project is also
|
|
25
|
-
* subject to an additional IP rights grant found at
|
|
26
|
-
* http://polymer.github.io/PATENTS.txt
|
|
11
|
+
* Copyright 2020 Google LLC
|
|
12
|
+
* SPDX-License-Identifier: BSD-3-Clause
|
|
27
13
|
*/
|
|
28
|
-
|
|
14
|
+
const mi=new Map,fi=e=>(t,...i)=>{var o;const r=i.length;let a,n;const s=[],l=[];let u,d=0,c=!1;for(;d<r;){for(u=t[d];d<r&&void 0!==(n=i[d],a=null===(o=n)||void 0===o?void 0:o._$litStatic$);)u+=a+t[++d],c=!0;l.push(n),s.push(u),d++}if(d===r&&s.push(t[r]),c){const e=s.join("$$lit$$");void 0===(t=mi.get(e))&&mi.set(e,t=s),i=l}return e(t,...i)},vi=fi(Kt),bi=fi(Qt),yi=1,wi=2,ki=e=>(...t)=>({_$litDirective$:e,values:t});
|
|
29
15
|
/**
|
|
30
16
|
* @license
|
|
31
|
-
* Copyright
|
|
32
|
-
*
|
|
33
|
-
|
|
34
|
-
* The complete set of authors may be found at
|
|
35
|
-
* http://polymer.github.io/AUTHORS.txt
|
|
36
|
-
* The complete set of contributors may be found at
|
|
37
|
-
* http://polymer.github.io/CONTRIBUTORS.txt
|
|
38
|
-
* Code distributed by Google as part of the polymer project is also
|
|
39
|
-
* subject to an additional IP rights grant found at
|
|
40
|
-
* http://polymer.github.io/PATENTS.txt
|
|
41
|
-
*/const di=` ${ti} `;class ci{constructor(e,t,i,r){this.strings=e,this.values=t,this.type=i,this.processor=r}getHTML(){const e=this.strings.length-1;let t="",i=!1;for(let r=0;r<e;r++){const e=this.strings[r],a=e.lastIndexOf("\x3c!--");i=(a>-1||i)&&-1===e.indexOf("--\x3e",a+1);const o=li.exec(e);t+=null===o?e+(i?di:ii):e.substr(0,o.index)+o[1]+o[2]+"$lit$"+o[3]+ti}return t+=this.strings[e],t}getTemplateElement(){const e=document.createElement("template");return e.innerHTML=this.getHTML(),e}}class hi extends ci{getHTML(){return`<svg>${super.getHTML()}</svg>`}getTemplateElement(){const e=super.getTemplateElement(),t=e.content,i=t.firstChild;return t.removeChild(i),Qt(t,i.firstChild),e}}
|
|
17
|
+
* Copyright 2017 Google LLC
|
|
18
|
+
* SPDX-License-Identifier: BSD-3-Clause
|
|
19
|
+
*/class xi{constructor(e){}get _$AU(){return this._$AM._$AU}_$AT(e,t,i){this._$Ct=e,this._$AM=t,this._$Ci=i}_$AS(e,t){return this.update(e,t)}update(e,t){return this.render(...t)}}
|
|
42
20
|
/**
|
|
43
21
|
* @license
|
|
44
|
-
* Copyright
|
|
45
|
-
*
|
|
46
|
-
|
|
47
|
-
* The complete set of authors may be found at
|
|
48
|
-
* http://polymer.github.io/AUTHORS.txt
|
|
49
|
-
* The complete set of contributors may be found at
|
|
50
|
-
* http://polymer.github.io/CONTRIBUTORS.txt
|
|
51
|
-
* Code distributed by Google as part of the polymer project is also
|
|
52
|
-
* subject to an additional IP rights grant found at
|
|
53
|
-
* http://polymer.github.io/PATENTS.txt
|
|
54
|
-
*/const pi=e=>null===e||!("object"==typeof e||"function"==typeof e),_i=e=>Array.isArray(e)||!(!e||!e[Symbol.iterator]);class mi{constructor(e,t,i){this.dirty=!0,this.element=e,this.name=t,this.strings=i,this.parts=[];for(let e=0;e<i.length-1;e++)this.parts[e]=this._createPart()}_createPart(){return new gi(this)}_getValue(){const e=this.strings,t=e.length-1;let i="";for(let r=0;r<t;r++){i+=e[r];const t=this.parts[r];if(void 0!==t){const e=t.value;if(pi(e)||!_i(e))i+="string"==typeof e?e:String(e);else for(const t of e)i+="string"==typeof t?t:String(t)}}return i+=e[t],i}commit(){this.dirty&&(this.dirty=!1,this.element.setAttribute(this.name,this._getValue()))}}class gi{constructor(e){this.value=void 0,this.committer=e}setValue(e){e===Kt||pi(e)&&e===this.value||(this.value=e,Jt(e)||(this.committer.dirty=!0))}commit(){for(;Jt(this.value);){const e=this.value;this.value=Kt,e(this)}this.value!==Kt&&this.committer.commit()}}class fi{constructor(e){this.value=void 0,this.__pendingValue=void 0,this.options=e}appendInto(e){this.startNode=e.appendChild(si()),this.endNode=e.appendChild(si())}insertAfterNode(e){this.startNode=e,this.endNode=e.nextSibling}appendIntoPart(e){e.__insert(this.startNode=si()),e.__insert(this.endNode=si())}insertAfterPart(e){e.__insert(this.startNode=si()),this.endNode=e.endNode,e.endNode=this.startNode}setValue(e){this.__pendingValue=e}commit(){for(;Jt(this.__pendingValue);){const e=this.__pendingValue;this.__pendingValue=Kt,e(this)}const e=this.__pendingValue;e!==Kt&&(pi(e)?e!==this.value&&this.__commitText(e):e instanceof ci?this.__commitTemplateResult(e):e instanceof Node?this.__commitNode(e):_i(e)?this.__commitIterable(e):e===ei?(this.value=ei,this.clear()):this.__commitText(e))}__insert(e){this.endNode.parentNode.insertBefore(e,this.endNode)}__commitNode(e){this.value!==e&&(this.clear(),this.__insert(e),this.value=e)}__commitText(e){const t=this.startNode.nextSibling,i="string"==typeof(e=null==e?"":e)?e:String(e);t===this.endNode.previousSibling&&3===t.nodeType?t.data=i:this.__commitNode(document.createTextNode(i)),this.value=e}__commitTemplateResult(e){const t=this.options.templateFactory(e);if(this.value instanceof ui&&this.value.template===t)this.value.update(e.values);else{const i=new ui(t,e.processor,this.options),r=i._clone();i.update(e.values),this.__commitNode(r),this.value=i}}__commitIterable(e){Array.isArray(this.value)||(this.value=[],this.clear());const t=this.value;let i,r=0;for(const a of e)i=t[r],void 0===i&&(i=new fi(this.options),t.push(i),0===r?i.appendIntoPart(this):i.insertAfterPart(t[r-1])),i.setValue(a),i.commit(),r++;r<t.length&&(t.length=r,this.clear(i&&i.endNode))}clear(e=this.startNode){Zt(this.startNode.parentNode,e.nextSibling,this.endNode)}}class vi{constructor(e,t,i){if(this.value=void 0,this.__pendingValue=void 0,2!==i.length||""!==i[0]||""!==i[1])throw new Error("Boolean attributes can only contain a single expression");this.element=e,this.name=t,this.strings=i}setValue(e){this.__pendingValue=e}commit(){for(;Jt(this.__pendingValue);){const e=this.__pendingValue;this.__pendingValue=Kt,e(this)}if(this.__pendingValue===Kt)return;const e=!!this.__pendingValue;this.value!==e&&(e?this.element.setAttribute(this.name,""):this.element.removeAttribute(this.name),this.value=e),this.__pendingValue=Kt}}class yi extends mi{constructor(e,t,i){super(e,t,i),this.single=2===i.length&&""===i[0]&&""===i[1]}_createPart(){return new bi(this)}_getValue(){return this.single?this.parts[0].value:super._getValue()}commit(){this.dirty&&(this.dirty=!1,this.element[this.name]=this._getValue())}}class bi extends gi{}let wi=!1;try{const e={get capture(){return wi=!0,!1}};window.addEventListener("test",e,e),window.removeEventListener("test",e,e)}catch(e){}class ki{constructor(e,t,i){this.value=void 0,this.__pendingValue=void 0,this.element=e,this.eventName=t,this.eventContext=i,this.__boundHandleEvent=e=>this.handleEvent(e)}setValue(e){this.__pendingValue=e}commit(){for(;Jt(this.__pendingValue);){const e=this.__pendingValue;this.__pendingValue=Kt,e(this)}if(this.__pendingValue===Kt)return;const e=this.__pendingValue,t=this.value,i=null==e||null!=t&&(e.capture!==t.capture||e.once!==t.once||e.passive!==t.passive),r=null!=e&&(null==t||i);i&&this.element.removeEventListener(this.eventName,this.__boundHandleEvent,this.__options),r&&(this.__options=xi(e),this.element.addEventListener(this.eventName,this.__boundHandleEvent,this.__options)),this.value=e,this.__pendingValue=Kt}handleEvent(e){"function"==typeof this.value?this.value.call(this.eventContext||this.element,e):this.value.handleEvent(e)}}const xi=e=>e&&(wi?{capture:e.capture,passive:e.passive,once:e.once}:e.capture)
|
|
22
|
+
* Copyright 2020 Google LLC
|
|
23
|
+
* SPDX-License-Identifier: BSD-3-Clause
|
|
24
|
+
*/const{H:Ci}=pi,Si=()=>document.createComment(""),Ti=(e,t,i)=>{var o;const r=e._$AA.parentNode,a=void 0===t?e._$AB:t._$AA;if(void 0===i){const t=r.insertBefore(Si(),a),o=r.insertBefore(Si(),a);i=new Ci(t,o,e,e.options)}else{const t=i._$AB.nextSibling,n=i._$AM,s=n!==e;if(s){let t;null===(o=i._$AQ)||void 0===o||o.call(i,e),i._$AM=e,void 0!==i._$AP&&(t=e._$AU)!==n._$AU&&i._$AP(t)}if(t!==a||s){let e=i._$AA;for(;e!==t;){const t=e.nextSibling;r.insertBefore(e,a),e=t}}}return i},Bi=(e,t,i=e)=>(e._$AI(t,i),e),Ii={},$i=e=>{var t;null===(t=e._$AP)||void 0===t||t.call(e,!1,!0);let i=e._$AA;const o=e._$AB.nextSibling;for(;i!==o;){const e=i.nextSibling;i.remove(),i=e}},Di=(e,t,i)=>{const o=new Map;for(let r=t;r<=i;r++)o.set(e[r],r);return o},Ai=ki(class extends xi{constructor(e){if(super(e),e.type!==wi)throw Error("repeat() can only be used in text expressions")}dt(e,t,i){let o;void 0===i?i=t:void 0!==t&&(o=t);const r=[],a=[];let n=0;for(const t of e)r[n]=o?o(t,n):n,a[n]=i(t,n),n++;return{values:a,keys:r}}render(e,t,i){return this.dt(e,t,i).values}update(e,[t,i,o]){var r;const a=(e=>e._$AH)(e),{values:n,keys:s}=this.dt(t,i,o);if(!Array.isArray(a))return this.ct=s,n;const l=null!==(r=this.ct)&&void 0!==r?r:this.ct=[],u=[];let d,c,_=0,h=a.length-1,p=0,g=n.length-1;for(;_<=h&&p<=g;)if(null===a[_])_++;else if(null===a[h])h--;else if(l[_]===s[p])u[p]=Bi(a[_],n[p]),_++,p++;else if(l[h]===s[g])u[g]=Bi(a[h],n[g]),h--,g--;else if(l[_]===s[g])u[g]=Bi(a[_],n[g]),Ti(e,u[g+1],a[_]),_++,g--;else if(l[h]===s[p])u[p]=Bi(a[h],n[p]),Ti(e,a[_],a[h]),h--,p++;else if(void 0===d&&(d=Di(s,p,g),c=Di(l,_,h)),d.has(l[_]))if(d.has(l[h])){const t=c.get(s[p]),i=void 0!==t?a[t]:null;if(null===i){const t=Ti(e,a[_]);Bi(t,n[p]),u[p]=t}else u[p]=Bi(i,n[p]),Ti(e,a[_],i),a[t]=null;p++}else $i(a[h]),h--;else $i(a[_]),_++;for(;p<=g;){const t=Ti(e,u[g+1]);Bi(t,n[p]),u[p++]=t}for(;_<=h;){const e=a[_++];null!==e&&$i(e)}return this.ct=s,((e,t=Ii)=>{e._$AH=t})(e,u),ei}}),Fi=ki(class extends xi{constructor(e){var t;if(super(e),e.type!==yi||"class"!==e.name||(null===(t=e.strings)||void 0===t?void 0:t.length)>2)throw Error("`classMap()` can only be used in the `class` attribute and must be the only part in the attribute.")}render(e){return" "+Object.keys(e).filter(t=>e[t]).join(" ")+" "}update(e,[t]){var i,o;if(void 0===this.st){this.st=new Set,void 0!==e.strings&&(this.et=new Set(e.strings.join(" ").split(/\s/).filter(e=>""!==e)));for(const e in t)t[e]&&!(null===(i=this.et)||void 0===i?void 0:i.has(e))&&this.st.add(e);return this.render(t)}const r=e.element.classList;this.st.forEach(e=>{e in t||(r.remove(e),this.st.delete(e))});for(const e in t){const i=!!t[e];i===this.st.has(e)||(null===(o=this.et)||void 0===o?void 0:o.has(e))||(i?(r.add(e),this.st.add(e)):(r.remove(e),this.st.delete(e)))}return ei}});
|
|
55
25
|
/**
|
|
56
26
|
* @license
|
|
57
|
-
* Copyright
|
|
58
|
-
*
|
|
59
|
-
|
|
60
|
-
* The complete set of authors may be found at
|
|
61
|
-
* http://polymer.github.io/AUTHORS.txt
|
|
62
|
-
* The complete set of contributors may be found at
|
|
63
|
-
* http://polymer.github.io/CONTRIBUTORS.txt
|
|
64
|
-
* Code distributed by Google as part of the polymer project is also
|
|
65
|
-
* subject to an additional IP rights grant found at
|
|
66
|
-
* http://polymer.github.io/PATENTS.txt
|
|
67
|
-
*/;const Ci=new class{handleAttributeExpressions(e,t,i,r){const a=t[0];if("."===a){return new yi(e,t.slice(1),i).parts}if("@"===a)return[new ki(e,t.slice(1),r.eventContext)];if("?"===a)return[new vi(e,t.slice(1),i)];return new mi(e,t,i).parts}handleTextExpression(e){return new fi(e)}};
|
|
27
|
+
* Copyright 2017 Google LLC
|
|
28
|
+
* SPDX-License-Identifier: BSD-3-Clause
|
|
29
|
+
*/const Ei=ki(
|
|
68
30
|
/**
|
|
69
31
|
* @license
|
|
70
|
-
* Copyright
|
|
71
|
-
*
|
|
72
|
-
* http://polymer.github.io/LICENSE.txt
|
|
73
|
-
* The complete set of authors may be found at
|
|
74
|
-
* http://polymer.github.io/AUTHORS.txt
|
|
75
|
-
* The complete set of contributors may be found at
|
|
76
|
-
* http://polymer.github.io/CONTRIBUTORS.txt
|
|
77
|
-
* Code distributed by Google as part of the polymer project is also
|
|
78
|
-
* subject to an additional IP rights grant found at
|
|
79
|
-
* http://polymer.github.io/PATENTS.txt
|
|
80
|
-
*/function Si(e){let t=Ti.get(e.type);void 0===t&&(t={stringsArray:new WeakMap,keyString:new Map},Ti.set(e.type,t));let i=t.stringsArray.get(e.strings);if(void 0!==i)return i;const r=e.strings.join(ti);return i=t.keyString.get(r),void 0===i&&(i=new ai(e,e.getTemplateElement()),t.keyString.set(r,i)),t.stringsArray.set(e.strings,i),i}const Ti=new Map,Di=new WeakMap;
|
|
81
|
-
/**
|
|
82
|
-
* @license
|
|
83
|
-
* Copyright (c) 2017 The Polymer Project Authors. All rights reserved.
|
|
84
|
-
* This code may only be used under the BSD style license found at
|
|
85
|
-
* http://polymer.github.io/LICENSE.txt
|
|
86
|
-
* The complete set of authors may be found at
|
|
87
|
-
* http://polymer.github.io/AUTHORS.txt
|
|
88
|
-
* The complete set of contributors may be found at
|
|
89
|
-
* http://polymer.github.io/CONTRIBUTORS.txt
|
|
90
|
-
* Code distributed by Google as part of the polymer project is also
|
|
91
|
-
* subject to an additional IP rights grant found at
|
|
92
|
-
* http://polymer.github.io/PATENTS.txt
|
|
32
|
+
* Copyright 2018 Google LLC
|
|
33
|
+
* SPDX-License-Identifier: BSD-3-Clause
|
|
93
34
|
*/
|
|
35
|
+
class extends xi{constructor(e){var t;if(super(e),e.type!==yi||"style"!==e.name||(null===(t=e.strings)||void 0===t?void 0:t.length)>2)throw new Error("The `styleMap` directive must be used in the `style` attribute and must be the only part in the attribute.")}render(e){return""}update(e,[t]){const{style:i}=e.element;if(void 0===this._previousStyleProperties){this._previousStyleProperties=new Set;for(const e in t)this._previousStyleProperties.add(e)}this._previousStyleProperties.forEach(e=>{null==t[e]&&(this._previousStyleProperties.delete(e),e.includes("-")?i.removeProperty(e):i[e]="")});for(const e in t){const o=t[e];null!=o&&(this._previousStyleProperties.add(e),e.includes("-")?i.setProperty(e,o):i[e]=o)}return ei}}),Mi=e=>null!=e?e:ti
|
|
94
36
|
/**
|
|
95
37
|
* @license
|
|
96
|
-
* Copyright
|
|
97
|
-
*
|
|
98
|
-
|
|
99
|
-
* The complete set of authors may be found at
|
|
100
|
-
* http://polymer.github.io/AUTHORS.txt
|
|
101
|
-
* The complete set of contributors may be found at
|
|
102
|
-
* http://polymer.github.io/CONTRIBUTORS.txt
|
|
103
|
-
* Code distributed by Google as part of the polymer project is also
|
|
104
|
-
* subject to an additional IP rights grant found at
|
|
105
|
-
* http://polymer.github.io/PATENTS.txt
|
|
106
|
-
*/
|
|
107
|
-
(window.litHtmlVersions||(window.litHtmlVersions=[])).push("1.1.2");const Pi=(e,...t)=>new ci(e,t,"html",Ci),Ii=(e,...t)=>new hi(e,t,"svg",Ci)
|
|
38
|
+
* Copyright 2017 Google LLC
|
|
39
|
+
* SPDX-License-Identifier: BSD-3-Clause
|
|
40
|
+
*/;
|
|
108
41
|
/**
|
|
109
42
|
* @license
|
|
110
|
-
* Copyright
|
|
111
|
-
*
|
|
112
|
-
* http://polymer.github.io/LICENSE.txt
|
|
113
|
-
* The complete set of authors may be found at
|
|
114
|
-
* http://polymer.github.io/AUTHORS.txt
|
|
115
|
-
* The complete set of contributors may be found at
|
|
116
|
-
* http://polymer.github.io/CONTRIBUTORS.txt
|
|
117
|
-
* Code distributed by Google as part of the polymer project is also
|
|
118
|
-
* subject to an additional IP rights grant found at
|
|
119
|
-
* http://polymer.github.io/PATENTS.txt
|
|
120
|
-
*/,Mi=(e,t)=>{const i=e.startNode.parentNode,r=void 0===t?e.endNode:t.startNode,a=i.insertBefore(si(),r);i.insertBefore(si(),r);const o=new fi(e.options);return o.insertAfterNode(a),o},Bi=(e,t)=>(e.setValue(t),e.commit(),e),Ei=(e,t,i)=>{const r=e.startNode.parentNode,a=i?i.startNode:e.endNode,o=t.endNode.nextSibling;o!==a&&Qt(r,t.startNode,o,a)},Fi=e=>{Zt(e.startNode.parentNode,e.startNode,e.endNode.nextSibling)},Ai=(e,t,i)=>{const r=new Map;for(let a=t;a<=i;a++)r.set(e[a],a);return r},Ni=new WeakMap,Oi=new WeakMap,$i=Gt((e,t,i)=>{let r;return void 0===i?i=t:void 0!==t&&(r=t),t=>{if(!(t instanceof fi))throw new Error("repeat can only be used in text bindings");const a=Ni.get(t)||[],o=Oi.get(t)||[],n=[],s=[],l=[];let u,d,c=0;for(const t of e)l[c]=r?r(t,c):c,s[c]=i(t,c),c++;let h=0,p=a.length-1,_=0,m=s.length-1;for(;h<=p&&_<=m;)if(null===a[h])h++;else if(null===a[p])p--;else if(o[h]===l[_])n[_]=Bi(a[h],s[_]),h++,_++;else if(o[p]===l[m])n[m]=Bi(a[p],s[m]),p--,m--;else if(o[h]===l[m])n[m]=Bi(a[h],s[m]),Ei(t,a[h],n[m+1]),h++,m--;else if(o[p]===l[_])n[_]=Bi(a[p],s[_]),Ei(t,a[p],a[h]),p--,_++;else if(void 0===u&&(u=Ai(l,_,m),d=Ai(o,h,p)),u.has(o[h]))if(u.has(o[p])){const e=d.get(l[_]),i=void 0!==e?a[e]:null;if(null===i){const e=Mi(t,a[h]);Bi(e,s[_]),n[_]=e}else n[_]=Bi(i,s[_]),Ei(t,i,a[h]),a[e]=null;_++}else Fi(a[p]),p--;else Fi(a[h]),h++;for(;_<=m;){const e=Mi(t,n[m+1]);Bi(e,s[_]),n[_++]=e}for(;h<=p;){const e=a[h++];null!==e&&Fi(e)}Ni.set(t,n),Oi.set(t,l)}}),Li=new WeakMap,Ri=Gt(e=>t=>{if(!(t instanceof gi)||t instanceof bi||"class"!==t.committer.name||t.committer.parts.length>1)throw new Error("The `classMap` directive must be used in the `class` attribute and must be the only part in the attribute.");const{committer:i}=t,{element:r}=i;Li.has(t)||(r.className=i.strings.join(" "));const{classList:a}=r,o=Li.get(t);for(const t in o)t in e||a.remove(t);for(const t in e){const i=e[t];if(!o||i!==o[t]){a[i?"add":"remove"](t)}}Li.set(t,e)}),zi=new WeakMap,Hi=Gt(e=>t=>{if(!(t instanceof gi)||t instanceof bi||"style"!==t.committer.name||t.committer.parts.length>1)throw new Error("The `styleMap` directive must be used in the style attribute and must be the only part in the attribute.");const{committer:i}=t,{style:r}=i.element;zi.has(t)||(r.cssText=i.strings.join(" "));const a=zi.get(t);for(const t in a)t in e||(-1===t.indexOf("-")?r[t]=null:r.removeProperty(t));for(const t in e)-1===t.indexOf("-")?r[t]=e[t]:r.setProperty(t,e[t]);zi.set(t,e)}),Ui=new WeakMap,ji=Gt(e=>t=>{if(!(t instanceof fi))throw new Error("unsafeHTML can only be used in text bindings");const i=Ui.get(t);if(void 0!==i&&pi(e)&&e===i.value&&t.value===i.fragment)return;const r=document.createElement("template");r.innerHTML=e;const a=document.importNode(r.content,!0);t.setValue(a),Ui.set(t,{value:e,fragment:a})}),Vi=(e,t,i,{eventContext:r}={})=>{i&&(e=Pi`<style>${i}</style>${e}`),((e,t,i)=>{let r=Di.get(t);void 0===r&&(Zt(t,t.firstChild),Di.set(t,r=new fi(Object.assign({templateFactory:Si},i))),r.appendInto(t)),r.setValue(e),r.commit()})(e,t,{eventContext:r})},Wi=9,Yi=13,qi=27,Gi=32,Ji=35,Xi=36,Qi=37,Zi=38,Ki=39,er=40,tr=115,ir=e=>(e.key?"Enter"===e.key:e.keyCode===Yi)&&!_r(e),rr=e=>(e.key?"Spacebar"===e.key||" "===e.key:e.keyCode===Gi)&&!_r(e),ar=e=>(e.key?"ArrowLeft"===e.key||"Left"===e.key:e.keyCode===Qi)&&!_r(e),or=e=>(e.key?"ArrowRight"===e.key||"Right"===e.key:e.keyCode===Ki)&&!_r(e),nr=e=>(e.key?"ArrowUp"===e.key||"Up"===e.key:e.keyCode===Zi)&&!_r(e),sr=e=>(e.key?"ArrowDown"===e.key||"Down"===e.key:e.keyCode===er)&&!_r(e),lr=e=>(e.key?"Escape"===e.key||"Esc"===e.key:e.keyCode===qi)&&!_r(e),ur=e=>(e.key?"Tab"===e.key:e.keyCode===Wi)&&!_r(e),dr=e=>(e.key?"Tab"===e.key:e.keyCode===Wi)&&gr(e,!1,!1,!0),cr=e=>e.key?hr(e)||pr(e):e.keyCode===tr&&!_r(e)||e.keyCode===er&&gr(e,!1,!0,!1),hr=e=>"F4"===e.key&&!_r(e),pr=e=>("ArrowDown"===e.key||"Down"===e.key||"ArrowUp"===e.key||"Up"===e.key)&&gr(e,!1,!0,!1),_r=e=>e.shiftKey||e.altKey||mr(e),mr=e=>!(!e.metaKey&&!e.ctrlKey),gr=(e,t,i,r)=>e.shiftKey===r&&e.altKey===i&&mr(e)===t,fr=/('')|'([^']+(?:''[^']*)*)(?:'|$)|\{([0-9]+(?:\s*,[^{}]*)?)\}|[{}]/g,vr=new Map;class yr{constructor(e){this.packageName=e}getText(e,...t){if("string"==typeof e&&(e={key:e,defaultText:e}),!e||!e.key)return"";const i=(r=this.packageName,ke.get(r));var r;const a=i&&i[e.key]?i[e.key]:e.defaultText||e.key;return o=(o=t)||[],a.replace(fr,(e,t,i,r,a)=>{if(t)return"'";if(i)return i.replace(/''/g,"'");if(r)return String(o[parseInt(r)]);throw new Error("[i18n]: pattern syntax error at pos "+a)});var o}}const br=e=>{if(vr.has(e))return vr.get(e);const t=new yr(e);return vr.set(e,t),t},wr=e=>{if(!e.ariaLabelledby)return e.ariaLabel?e.ariaLabel:void 0;const t=e.ariaLabelledby.split(" "),i=(e=>{if(!(e instanceof HTMLElement))throw new Error("Argument node should be of type HTMLElement");const t=[HTMLHtmlElement,HTMLIFrameElement];let i=!0,r=!0;for(;e;){if("[object ShadowRoot]"===e.toString()){if(i&&(i=!1),!r&&!i)return e}else if(e.tagName&&e.tagName.indexOf("-")>-1){if(!r)return e;r=!1}else if(t.indexOf(e.constructor)>-1)return e;e=e.parentNode||e.host}})(e);let r="";return t.forEach((e,a)=>{const o=i.querySelector(`[id='${e}']`);r+=""+(o?o.textContent:""),a<t.length-1&&(r+=" ")}),r},kr={Default:"Default",Positive:"Positive",Negative:"Negative",Transparent:"Transparent",Emphasized:"Emphasized"};class xr extends nt{static isValid(e){return!!kr[e]}}xr.generataTypeAcessors(kr);var Cr=Gt(e=>t=>{if(void 0===e&&t instanceof gi){if(e!==t.value){const e=t.committer.name;t.committer.element.removeAttribute(e)}}else t.committer&&t.committer.element&&t.committer.element.getAttribute(t.committer.name)===e?t.setValue(Kt):t.setValue(e)});const Sr=e=>Pi`<button type="button" class="ui5-button-root" ?disabled="${e.disabled}" data-sap-focus-ref dir="${Cr(e.effectiveDir)}" @focusout=${e._onfocusout} @focusin=${e._onfocusin} @click=${e._onclick} @mousedown=${e._onmousedown} @mouseup=${e._onmouseup} @keydown=${e._onkeydown} @keyup=${e._onkeyup} tabindex=${Cr(e.tabIndexValue)} aria-expanded="${Cr(e.accInfo.ariaExpanded)}" aria-controls="${Cr(e.accInfo.ariaControls)}" aria-haspopup="${Cr(e.accInfo.ariaHaspopup)}" aria-label="${Cr(e.ariaLabelText)}" title="${Cr(e.accInfo.title)}" part="button">${e.icon?Tr(e):void 0}<span id="${Cr(e._id)}-content" class="ui5-button-text"><bdi><slot></slot></bdi></span>${e.hasButtonType?Dr(e):void 0}</button> `,Tr=e=>Pi`<ui5-icon class="ui5-button-icon" name="${Cr(e.icon)}" show-tooltip=${Cr(e.iconOnly)}></ui5-icon>`,Dr=e=>Pi`<span class="ui5-hidden-text">${Cr(e.buttonTypeText)}</span>`,Pr=(e,t)=>{const i=e.split(".");let r=gt("ui5-shared-resources",document.head);for(let e=0;e<i.length;e++){const a=i[e],o=e===i.length-1;Object.prototype.hasOwnProperty.call(r,a)||(r[a]=o?t:{}),r=r[a]}return r},Ir=Pr("SVGIcons.registry",new Map),Mr=Pr("SVGIcons.promises",new Map),Br=(e,t)=>(e.startsWith("sap-icon://")&&(e=e.replace("sap-icon://",""),[e,t]=e.split("/").reverse()),`${t=t||"SAP-icons"}:${e}`),Er=(e,{pathData:t,ltr:i,accData:r,collection:a}={})=>{const o=Br(e,a);Ir.set(o,{pathData:t,ltr:i,accData:r})},Fr=e=>Pi`<svg class="ui5-icon-root" tabindex="${Cr(e.tabIndex)}" dir="${Cr(e._dir)}" viewBox="0 0 512 512" role="${Cr(e.role)}" focusable="false" preserveAspectRatio="xMidYMid meet" aria-label="${Cr(e.accessibleNameText)}" xmlns="http://www.w3.org/2000/svg" @focusin=${e._onfocusin} @focusout=${e._onfocusout} @keydown=${e._onkeydown} @keyup=${e._onkeyup} @click=${e._onclick}>${Ar(e)}</svg>`,Ar=e=>Ii`${e.hasIconTooltip?(e=>Ii`<title id="${Cr(e._id)}-tooltip">${Cr(e.accessibleNameText)}</title>`)(e):void 0}<g role="presentation"><path transform="translate(0, 512) scale(1, -1)" d="${Cr(e.pathData)}"/></g>`;var Nr=':root{--sapBrandColor:#0a6ed1;--sapHighlightColor:#0854a0;--sapBaseColor:#fff;--sapShellColor:#354a5f;--sapBackgroundColor:#f7f7f7;--sapFontFamily:"72","72full",Arial,Helvetica,sans-serif;--sapFontLightFamily:"72-Light","72-Lightfull","72","72full",Arial,Helvetica,sans-serif;--sapFontBoldFamily:"72-Bold","72-Boldfull","72","72full",Arial,Helvetica,sans-serif;--sapFontHeaderFamily:"72","72full",Arial,Helvetica,sans-serif;--sapFontSize:.875rem;--sapFontSmallSize:.75rem;--sapFontLargeSize:1rem;--sapFontHeader1Size:2.25rem;--sapFontHeader2Size:1.5rem;--sapFontHeader3Size:1.25rem;--sapFontHeader4Size:1.125rem;--sapFontHeader5Size:1rem;--sapFontHeader6Size:.875rem;--sapTextColor:#32363a;--sapLinkColor:#0a6ed1;--sapLink_Hover_Color:#0854a0;--sapLink_Active_Color:#0a6ed1;--sapLink_Visited_Color:#0a6ed1;--sapLink_InvertedColor:#d3e8fd;--sapLink_SubtleColor:#074888;--sapCompanyLogo:none;--sapBackgroundImage:none;--sapBackgroundImageOpacity:1.0;--sapBackgroundImageRepeat:false;--sapSelectedColor:#0854a0;--sapActiveColor:#0854a0;--sapHighlightTextColor:#fff;--sapTitleColor:#32363a;--sapNegativeColor:#b00;--sapCriticalColor:#e9730c;--sapPositiveColor:#107e3e;--sapInformativeColor:#0a6ed1;--sapNeutralColor:#6a6d70;--sapNegativeElementColor:#b00;--sapCriticalElementColor:#e9730c;--sapPositiveElementColor:#107e3e;--sapInformativeElementColor:#0a6ed1;--sapNeutralElementColor:#6a6d70;--sapNegativeTextColor:#b00;--sapPositiveTextColor:#107e3e;--sapCriticalTextColor:#e9730c;--sapInformativeTextColor:#053b70;--sapNeutralTextColor:#6a6d70;--sapNeutralBorderColor:#6a6d70;--sapErrorColor:#b00;--sapErrorBorderColor:#b00;--sapWarningColor:#e9730c;--sapWarningBorderColor:#e9730c;--sapSuccessColor:#107e3e;--sapSuccessBorderColor:#107e3e;--sapInformationColor:#0a6ed1;--sapInformationBorderColor:#0a6ed1;--sapErrorBackground:#ffebeb;--sapWarningBackground:#fef7f1;--sapSuccessBackground:#f1fdf6;--sapInformationBackground:#f5faff;--sapNeutralBackground:#f4f4f4;--sapIndicationColor_1:#800;--sapIndicationColor_1_Hover_Background:#6f0000;--sapIndicationColor_1_Active_Background:#500;--sapIndicationColor_1_TextColor:#fff;--sapIndicationColor_2:#b00;--sapIndicationColor_2_Hover_Background:#a20000;--sapIndicationColor_2_Active_Background:#800;--sapIndicationColor_2_TextColor:#fff;--sapIndicationColor_3:#e9730c;--sapIndicationColor_3_Hover_Background:#da6c0b;--sapIndicationColor_3_Active_Background:#cc650b;--sapIndicationColor_3_TextColor:#fff;--sapIndicationColor_4:#107e3e;--sapIndicationColor_4_Hover_Background:#0d6733;--sapIndicationColor_4_Active_Background:#0a5128;--sapIndicationColor_4_TextColor:#fff;--sapIndicationColor_5:#0a6ed1;--sapIndicationColor_5_Hover_Background:#0961b9;--sapIndicationColor_5_Active_Background:#0854a0;--sapIndicationColor_5_TextColor:#fff;--sapIndicationColor_6:#0f828f;--sapIndicationColor_6_Hover_Background:#0d6d78;--sapIndicationColor_6_Active_Background:#0a5861;--sapIndicationColor_6_TextColor:#fff;--sapIndicationColor_7:#925ace;--sapIndicationColor_7_Hover_Background:#8546c8;--sapIndicationColor_7_Active_Background:#7838bd;--sapIndicationColor_7_TextColor:#fff;--sapIndicationColor_8:#c0399f;--sapIndicationColor_8_Hover_Background:#ac338f;--sapIndicationColor_8_Active_Background:#992d7e;--sapIndicationColor_8_TextColor:#fff;--sapElement_LineHeight:2.75rem;--sapElement_Height:2.25rem;--sapElement_BorderWidth:.0625rem;--sapElement_BorderCornerRadius:.25rem;--sapElement_Compact_LineHeight:2rem;--sapElement_Compact_Height:1.625rem;--sapElement_Condensed_LineHeight:1.5rem;--sapElement_Condensed_Height:1.375rem;--sapContent_LineHeight:1.4;--sapContent_IconHeight:1rem;--sapContent_IconColor:#0854a0;--sapContent_ContrastIconColor:#fff;--sapContent_NonInteractiveIconColor:#6a6d70;--sapContent_MarkerIconColor:#286eb4;--sapContent_MarkerTextColor:#0e7581;--sapContent_ImagePlaceholderBackground:#ccc;--sapContent_ImagePlaceholderForegroundColor:#fff;--sapContent_RatedColor:#d08014;--sapContent_UnratedColor:#89919a;--sapContent_FocusColor:#000;--sapContent_FocusStyle:dotted;--sapContent_FocusWidth:.0625rem;--sapContent_ContrastFocusColor:#fff;--sapContent_ShadowColor:#000;--sapContent_ContrastShadowColor:#fff;--sapContent_Shadow0:0 0 0 0.0625rem rgba(0,0,0,0.1),0 0.125rem 0.5rem 0 rgba(0,0,0,0.1);--sapContent_Shadow1:0 0 0 0.0625rem rgba(0,0,0,0.42),0 0.125rem 0.5rem 0 rgba(0,0,0,0.3);--sapContent_Shadow2:0 0 0 0.0625rem rgba(0,0,0,0.42),0 0.625rem 1.875rem 0 rgba(0,0,0,0.3);--sapContent_Shadow3:0 0 0 0.0625rem rgba(0,0,0,0.42),0 1.25rem 5rem 0 rgba(0,0,0,0.3);--sapContent_TextShadow:0 0 0.125rem #fff;--sapContent_HeaderShadow:0 0 0.25rem 0 rgba(0,0,0,0.15),inset 0 -0.0625rem 0 0 #d9d9d9;--sapContent_SearchHighlightColor:#d4f7db;--sapContent_HelpColor:#3f8600;--sapContent_LabelColor:#6a6d70;--sapContent_MonospaceFontFamily:lucida console,monospace;--sapContent_DisabledTextColor:rgba(50,54,58,0.6);--sapContent_DisabledOpacity:0.4;--sapContent_ContrastTextThreshold:0.65;--sapContent_ContrastTextColor:#fff;--sapContent_ForegroundColor:#efefef;--sapContent_ForegroundBorderColor:#89919a;--sapContent_ForegroundTextColor:#32363a;--sapContent_BadgeBackground:#d04343;--sapContent_BadgeTextColor:#fff;--sapContent_Placeholderloading_Background:#e0e0e0;--sapContent_Placeholderloading_Gradient:linear-gradient(90deg,#e0e0e0 0%,#e0e0e0 35%,#d3d3d3 50%,#e0e0e0 65%,#e0e0e0);--sapContent_DragAndDropActiveColor:#0854a0;--sapContent_Selected_Background:#0854a0;--sapContent_Selected_TextColor:#fff;--sapContent_Selected_Hover_Background:#095caf;--sapContent_Illustrative_Color1:#0a6ed1;--sapContent_Illustrative_Color2:#72b5f8;--sapContent_Illustrative_Color3:#ffba10;--sapContent_Illustrative_Color4:#4a5055;--sapContent_Illustrative_Color5:#9da4aa;--sapContent_Illustrative_Color6:#c6cace;--sapContent_Illustrative_Color7:#e7e9ea;--sapContent_Illustrative_Color8:#fff;--sapShell_Background:#edeff0;--sapShell_BackgroundImage:linear-gradient(180deg,#dfe3e4,#f3f4f5);--sapShell_BackgroundGradient:linear-gradient(180deg,#dfe3e4,#f3f4f5);--sapShell_BackgroundImageOpacity:1.0;--sapShell_BackgroundImageRepeat:false;--sapShell_BorderColor:#354a5f;--sapShell_TextColor:#fff;--sapShell_InteractiveTextColor:#d1e8ff;--sapShell_InteractiveBorderColor:#7996b4;--sapShell_GroupTitleTextColor:#32363a;--sapShell_Hover_Background:#283848;--sapShell_Active_Background:#23303e;--sapShell_Active_TextColor:#fff;--sapShell_Selected_Background:#23303e;--sapShell_Selected_TextColor:#fff;--sapShell_Selected_Hover_Background:#23303e;--sapShell_Favicon:none;--sapShell_Navigation_Background:#fff;--sapShell_Navigation_SelectedColor:#0854a0;--sapShell_Navigation_Selected_TextColor:#0854a0;--sapShell_Navigation_TextColor:#32363a;--sapShell_Shadow:0 0 0.25rem 0 rgba(0,0,0,0.15),inset 0 -0.0625rem 0 0 rgba(0,0,0,0.2);--sapButton_BorderWidth:.0625rem;--sapButton_BorderCornerRadius:.25rem;--sapButton_Background:#fff;--sapButton_BorderColor:#0854a0;--sapButton_TextColor:#0854a0;--sapButton_Hover_Background:#ebf5fe;--sapButton_Hover_BorderColor:#0854a0;--sapButton_Hover_TextColor:#0854a0;--sapButton_IconColor:#0854a0;--sapButton_Active_Background:#0854a0;--sapButton_Active_BorderColor:#0854a0;--sapButton_Active_TextColor:#fff;--sapButton_Emphasized_Background:#0a6ed1;--sapButton_Emphasized_BorderColor:#0a6ed1;--sapButton_Emphasized_TextColor:#fff;--sapButton_Emphasized_Hover_Background:#085caf;--sapButton_Emphasized_Hover_BorderColor:#085caf;--sapButton_Emphasized_Hover_TextColor:#fff;--sapButton_Emphasized_Active_Background:#0854a0;--sapButton_Emphasized_Active_BorderColor:#0854a0;--sapButton_Emphasized_TextShadow:transparent;--sapButton_Accept_Background:#fff;--sapButton_Accept_BorderColor:#107e3e;--sapButton_Accept_Hover_Background:#f1fdf6;--sapButton_Accept_Hover_BorderColor:#107e3e;--sapButton_Accept_Hover_TextColor:#107e3e;--sapButton_Accept_Active_Background:#0d6733;--sapButton_Accept_Active_BorderColor:#0d6733;--sapButton_Accept_TextColor:#107e3e;--sapButton_Accept_Selected_Background:#0d6733;--sapButton_Accept_Selected_BorderColor:#0d6733;--sapButton_Accept_Selected_TextColor:#fff;--sapButton_Accept_Selected_Hover_Background:#107e3e;--sapButton_Accept_Selected_Hover_BorderColor:#107e3e;--sapButton_Reject_Background:#fff;--sapButton_Reject_BorderColor:#b00;--sapButton_Reject_Hover_Background:#ffebeb;--sapButton_Reject_Hover_BorderColor:#b00;--sapButton_Reject_Hover_TextColor:#b00;--sapButton_Reject_Active_Background:#a20000;--sapButton_Reject_Active_BorderColor:#a20000;--sapButton_Reject_TextColor:#b00;--sapButton_Reject_Selected_Background:#a20000;--sapButton_Reject_Selected_BorderColor:#a20000;--sapButton_Reject_Selected_TextColor:#fff;--sapButton_Reject_Selected_Hover_Background:#b00;--sapButton_Reject_Selected_Hover_BorderColor:#b00;--sapButton_Lite_Background:transparent;--sapButton_Lite_BorderColor:transparent;--sapButton_Lite_TextColor:#0854a0;--sapButton_Lite_Hover_Background:#ebf5fe;--sapButton_Lite_Hover_BorderColor:#0854a0;--sapButton_Lite_Hover_TextColor:#0854a0;--sapButton_Lite_Active_Background:#0854a0;--sapButton_Lite_Active_BorderColor:#0854a0;--sapButton_Selected_Background:#0854a0;--sapButton_Selected_BorderColor:#0854a0;--sapButton_Selected_TextColor:#fff;--sapButton_Selected_Hover_Background:#095caf;--sapButton_Selected_Hover_BorderColor:#095caf;--sapButton_Attention_Background:#fff;--sapButton_Attention_BorderColor:#e9730c;--sapButton_Attention_TextColor:#e9730c;--sapButton_Attention_Hover_Background:#fef7f1;--sapButton_Attention_Hover_BorderColor:#e9730c;--sapButton_Attention_Hover_TextColor:#e9730c;--sapButton_Attention_Active_Background:#d1670b;--sapButton_Attention_Active_BorderColor:#d1670b;--sapButton_Attention_Selected_Background:#d1670b;--sapButton_Attention_Selected_BorderColor:#d1670b;--sapButton_Attention_Selected_TextColor:#fff;--sapButton_Attention_Selected_Hover_Background:#e9730c;--sapButton_Attention_Selected_Hover_BorderColor:#e9730c;--sapButton_Negative_Background:#b00;--sapButton_Negative_BorderColor:#b00;--sapButton_Negative_TextColor:#fff;--sapButton_Negative_Hover_Background:#970000;--sapButton_Negative_Hover_BorderColor:#970000;--sapButton_Negative_Hover_TextColor:#fff;--sapButton_Negative_Active_Background:#800;--sapButton_Negative_Active_BorderColor:#800;--sapButton_Critical_Background:#e9730c;--sapButton_Critical_BorderColor:#e9730c;--sapButton_Critical_TextColor:#fff;--sapButton_Critical_Hover_Background:#c7620a;--sapButton_Critical_Hover_BorderColor:#c7620a;--sapButton_Critical_Hover_TextColor:#fff;--sapButton_Critical_Active_Background:#b85b0a;--sapButton_Critical_Active_BorderColor:#b85b0a;--sapButton_Success_Background:#107e3e;--sapButton_Success_BorderColor:#107e3e;--sapButton_Success_TextColor:#fff;--sapButton_Success_Hover_Background:#0c5e2e;--sapButton_Success_Hover_BorderColor:#0c5e2e;--sapButton_Success_Hover_TextColor:#fff;--sapButton_Success_Active_Background:#0a5128;--sapButton_Success_Active_BorderColor:#0a5128;--sapButton_Information_Background:#0a6ed1;--sapButton_Information_BorderColor:#0a6ed1;--sapButton_Information_TextColor:#fff;--sapButton_Information_Hover_Background:#0961b9;--sapButton_Information_Hover_BorderColor:#0961b9;--sapButton_Information_Hover_TextColor:#fff;--sapButton_Information_Active_Background:#0854a0;--sapButton_Information_Active_BorderColor:#0854a0;--sapButton_Neutral_Background:#6a6d70;--sapButton_Neutral_BorderColor:#6a6d70;--sapButton_Neutral_TextColor:#fff;--sapButton_Neutral_Hover_Background:#595b5e;--sapButton_Neutral_Hover_BorderColor:#595b5e;--sapButton_Neutral_Hover_TextColor:#fff;--sapButton_Neutral_Active_Background:#515456;--sapButton_Neutral_Active_BorderColor:#515456;--sapButton_Track_Selected_Background:#ebf5fe;--sapButton_Track_Selected_TextColor:#32363a;--sapButton_Track_Background:#ededed;--sapButton_Track_TextColor:#32363a;--sapButton_TokenBackground:#fafafa;--sapButton_TokenBorderColor:#c2c2c2;--sapField_Background:#fff;--sapField_TextColor:#32363a;--sapField_PlaceholderTextColor:#74777a;--sapField_BorderColor:#89919a;--sapField_HelpBackground:#fff;--sapField_BorderWidth:.0625rem;--sapField_BorderCornerRadius:.125rem;--sapField_Hover_Background:#fff;--sapField_Hover_BorderColor:#0854a0;--sapField_Hover_HelpBackground:#ebf5fe;--sapField_Active_BorderColor:#0854a0;--sapField_Focus_Background:#fff;--sapField_Focus_BorderColor:#89919a;--sapField_Focus_HelpBackground:#fff;--sapField_ReadOnly_Background:hsla(0,0%,94.9%,0.5);--sapField_ReadOnly_BorderColor:#89919a;--sapField_ReadOnly_HelpBackground:hsla(0,0%,94.9%,0.5);--sapField_RequiredColor:#ce3b3b;--sapField_InvalidColor:#b00;--sapField_InvalidBackground:#fff;--sapField_WarningColor:#e9730c;--sapField_WarningBackground:#fff;--sapField_SuccessColor:#107e3e;--sapField_SuccessBackground:#fff;--sapField_InformationColor:#0a6ed1;--sapField_InformationBackground:#fff;--sapGroup_TitleBackground:transparent;--sapGroup_TitleBorderColor:#d9d9d9;--sapGroup_TitleTextColor:#32363a;--sapGroup_ContentBackground:#fff;--sapGroup_ContentBorderColor:#d9d9d9;--sapGroup_BorderWidth:.0625rem;--sapGroup_BorderCornerRadius:0;--sapGroup_FooterBackground:transparent;--sapToolbar_Background:transparent;--sapToolbar_SeparatorColor:#d9d9d9;--sapList_HeaderBackground:#f2f2f2;--sapList_HeaderBorderColor:#e4e4e4;--sapList_HeaderTextColor:#32363a;--sapList_BorderColor:#e4e4e4;--sapList_TextColor:#32363a;--sapList_Active_TextColor:#fff;--sapList_BorderWidth:.0625rem;--sapList_SelectionBackgroundColor:#e5f0fa;--sapList_SelectionBorderColor:#0854a0;--sapList_Hover_SelectionBackground:#d8e9f8;--sapList_Background:#fff;--sapList_Hover_Background:#f5f5f5;--sapList_AlternatingBackground:#fafafa;--sapList_GroupHeaderBackground:#fff;--sapList_GroupHeaderBorderColor:#d8d8d8;--sapList_GroupHeaderTextColor:#32363a;--sapList_FooterBackground:#fafafa;--sapList_FooterTextColor:#32363a;--sapList_TableGroupHeaderBackground:#efefef;--sapList_TableGroupHeaderBorderColor:#d8d8d8;--sapList_TableGroupHeaderTextColor:#32363a;--sapList_TableFooterBorder:#d8d8d8;--sapList_TableFixedBorderColor:#d8d8d8;--sapList_Active_Background:#0854a0;--sapScrollBar_FaceColor:#949494;--sapScrollBar_TrackColor:#fff;--sapScrollBar_BorderColor:#949494;--sapScrollBar_SymbolColor:#0854a0;--sapScrollBar_Dimension:.75rem;--sapScrollBar_Hover_FaceColor:#8c8c8c;--sapPageHeader_Background:#fff;--sapPageHeader_BorderColor:#d9d9d9;--sapPageHeader_TextColor:#32363a;--sapPageFooter_Background:#fff;--sapPageFooter_BorderColor:#d9d9d9;--sapPageFooter_TextColor:#32363a;--sapInfobar_Background:#0f828f;--sapInfobar_Hover_Background:#0e7581;--sapInfobar_Active_Background:#0a545c;--sapObjectHeader_Background:#fff;--sapObjectHeader_BorderColor:#d9d9d9;--sapBlockLayer_Background:#000;--sapTile_Background:#fff;--sapTile_Hover_Background:#f5f5f5;--sapTile_Active_Background:#f5f5f5;--sapTile_BorderColor:transparent;--sapTile_TitleTextColor:#32363a;--sapTile_TextColor:#6a6d70;--sapTile_IconColor:#5a7da0;--sapTile_SeparatorColor:#ccc;--sapAccentColor1:#d08014;--sapAccentColor2:#d04343;--sapAccentColor3:#db1f77;--sapAccentColor4:#c0399f;--sapAccentColor5:#6367de;--sapAccentColor6:#286eb4;--sapAccentColor7:#0f828f;--sapAccentColor8:#7ca10c;--sapAccentColor9:#925ace;--sapAccentColor10:#647987;--sapLegend_WorkingBackground:#fafafa;--sapLegend_NonWorkingBackground:#dedede;--sapLegend_CurrentDateTime:#c0399f;--sapLegendColor1:#d58215;--sapLegendColor2:#dc5b5b;--sapLegendColor3:#db1f77;--sapLegendColor4:#9b3b3b;--sapLegendColor5:#cf5db3;--sapLegendColor6:#286eb4;--sapLegendColor7:#1193a2;--sapLegendColor8:#8b9668;--sapLegendColor9:#647987;--sapLegendColor10:#892971;--sapLegendColor11:#725a3a;--sapLegendColor12:#bb2f2f;--sapLegendColor13:#bc1b66;--sapLegendColor14:#8b714f;--sapLegendColor15:#606190;--sapLegendColor16:#597da1;--sapLegendColor17:#49797e;--sapLegendColor18:#687a33;--sapLegendColor19:#295989;--sapLegendColor20:#5154bd;--sapLegendBackgroundColor1:#fdf3e7;--sapLegendBackgroundColor2:#faeaea;--sapLegendBackgroundColor3:#fce9f2;--sapLegendBackgroundColor4:#f8ecec;--sapLegendBackgroundColor5:#f9ebf5;--sapLegendBackgroundColor6:#ebf3fa;--sapLegendBackgroundColor7:#e8fbfd;--sapLegendBackgroundColor8:#f3f4ef;--sapLegendBackgroundColor9:#f1f3f4;--sapLegendBackgroundColor10:#f9ebf6;--sapLegendBackgroundColor11:#f6f2ed;--sapLegendBackgroundColor12:#faeaea;--sapLegendBackgroundColor13:#fce9f2;--sapLegendBackgroundColor14:#f5f2ee;--sapLegendBackgroundColor15:#f0f0f5;--sapLegendBackgroundColor16:#eff2f6;--sapLegendBackgroundColor17:#eff5f6;--sapLegendBackgroundColor18:#f5f7ed;--sapLegendBackgroundColor19:#ebf2f9;--sapLegendBackgroundColor20:#ecedf8;--sapChart_OrderedColor_1:#5899da;--sapChart_OrderedColor_2:#e8743b;--sapChart_OrderedColor_3:#19a979;--sapChart_OrderedColor_4:#ed4a7b;--sapChart_OrderedColor_5:#945ecf;--sapChart_OrderedColor_6:#13a4b4;--sapChart_OrderedColor_7:#525df4;--sapChart_OrderedColor_8:#bf399e;--sapChart_OrderedColor_9:#6c8893;--sapChart_OrderedColor_10:#ee6868;--sapChart_OrderedColor_11:#2f6497;--sapChart_Bad:#dc0d0e;--sapChart_Critical:#de890d;--sapChart_Good:#3fa45b;--sapChart_Neutral:#848f94;--sapChart_Sequence_1:#5899da;--sapChart_Sequence_2:#e8743b;--sapChart_Sequence_3:#19a979;--sapChart_Sequence_4:#ed4a7b;--sapChart_Sequence_5:#945ecf;--sapChart_Sequence_6:#13a4b4;--sapChart_Sequence_7:#525df4;--sapChart_Sequence_8:#bf399e;--sapChart_Sequence_9:#6c8893;--sapChart_Sequence_10:#ee6868;--sapChart_Sequence_11:#2f6497;--sapChart_Sequence_Neutral:#848f94;}',Or=":root{--_ui5_calendar_header_height:3rem;--_ui5_calendar_header_arrow_button_width:2.5rem;--_ui5_calendar_header_padding:0.25rem 0;--_ui5_checkbox_root_side_padding:.6875rem;--_ui5_checkbox_icon_size:1rem;--_ui5_custom_list_item_height:3rem;--_ui5_custom_list_item_rb_min_width:3rem;--_ui5_day_picker_item_width:2.25rem;--_ui5_day_picker_item_height:2.875rem;--_ui5_day_picker_empty_height:3rem;--_ui5_datetime_picker_width:40.0625rem;--_ui5_datetime_picker_height:25rem;--_ui5_datetime_timeview_phonemode_width:19.5rem;--_ui5_datetime_timeview_padding:1rem;--_ui5_input_inner_padding:0 0.75rem;--_ui5_input_value_state_icon_padding:var(--_ui5-input-icon-padding);--_ui5_list_no_data_height:3rem;--_ui5_list_item_cb_margin_right:0;--_ui5_list_item_title_size:var(--sapMFontLargeSize);--_ui5_list_item_img_size:2rem;--_ui5_list_item_img_margin:0.5rem 0.75rem 0.5rem 0rem;--_ui5_list_item_base_height:3rem;--_ui5_list_busy_row_height:3rem;--_ui5_month_picker_item_height:3rem;--_ui5_year_picker_item_height:3rem;--_ui5_tokenizer_root_padding:0.1875rem;--_ui5_token_height:1.625rem;--_ui5_token_icon_size:1rem;--_ui5_token_icon_padding:0.25rem 0.5rem;--_ui5_token_wrapper_right_padding:0.3125rem;--_ui5_tl_bubble_padding:1rem;--_ui5_tl_indicator_before_bottom:-1.625rem;--_ui5_tl_padding:1rem 1rem 1rem .5rem;--_ui5_tl_li_margin_bottom:1.625rem;--_ui5_rb_height:2.75rem;--_ui5_rb_label_side_padding:.875rem;--_ui5_rb_focus_dist:.5rem;--_ui5_rb_inner_size:2.75rem;--_ui5_rb_svg_size:1.375rem;--_ui5_rb_label_width:calc(100% - 2.75rem);--_ui5_rb_rtl_focus_right:0.5rem;--_ui5_switch_text_on_left:calc(-100% + 1.9125rem);--_ui5_switch_slide_transform:translateX(100%) translateX(-1.875rem);--_ui5_switch_rtl_transform:translateX(1.875rem) translateX(-100%);--_ui5_switch_text_right:calc(-100% + 1.9125rem);--_ui5_tc_item_text:3rem;--_ui5_tc_item_text_text_only:3rem;--_ui5_tc_item_text_line_height:normal;--_ui5_tc_item_icon_size:1.5rem;--_ui5_tc_item_add_text_margin_top:0.625rem;--_ui5_textarea_padding:0.5625rem 0.6875rem;--_ui5-responnsive_popover_header_height:2.75rem;--ui5_side_navigation_item_height:2.75rem;--_ui5-tree-indent-step:1.5rem;--_ui5-tree-toggle-box-width:2.75rem;--_ui5-tree-toggle-box-height:2.25rem;--_ui5-tree-toggle-icon-size:1.0625rem;--_ui5_segmented_btn_border_radius:0.375rem;--ui5-avatar-initials-color:var(--sapContent_ImagePlaceholderForegroundColor);--ui5-avatar-initials-border:none;--ui5-avatar-accent1:var(--sapAccentColor1);--ui5-avatar-accent2:var(--sapAccentColor2);--ui5-avatar-accent3:var(--sapAccentColor3);--ui5-avatar-accent4:var(--sapAccentColor4);--ui5-avatar-accent5:var(--sapAccentColor5);--ui5-avatar-accent6:var(--sapAccentColor6);--ui5-avatar-accent7:var(--sapAccentColor7);--ui5-avatar-accent8:var(--sapAccentColor8);--ui5-avatar-accent9:var(--sapAccentColor9);--ui5-avatar-accent10:var(--sapAccentColor10);--ui5-avatar-placeholder:var(--sapContent_ImagePlaceholderBackground);--ui5-badge-font-size:0.75em;--_ui5_button_base_min_compact_width:2rem;--_ui5_button_compact_height:1.625rem;--_ui5_button_compact_padding:0.4375rem;--_ui5_button_outline:1px dotted var(--sapContent_FocusColor);--_ui5_button_outline_offset:-0.1875rem;--_ui5_button_focus_offset:1px;--_ui5_button_focus_width:1px;--_ui5_button_focus_color:var(--sapContent_FocusColor);--_ui5_button_transparent_border_color:transparent;--_ui5_button_transparent_hover_border_color:var(--sapButton_BorderColor);--_ui5_button_active_border_color:var(--sapButton_Active_BorderColor);--_ui5_button_positive_border_color:var(--sapButton_Accept_BorderColor);--_ui5_button_positive_border_hover_color:var(--sapButton_Accept_Hover_BorderColor);--_ui5_button_positive_border_active_color:var(--sapButton_Accept_Active_BorderColor);--_ui5_button_positive_border_focus_hover_color:var(--sapContent_FocusColor);--_ui5_button_positive_focus_border_color:var(--sapButton_Accept_BorderColor);--_ui5_button_negative_focus_border_color:var(--sapButton_Reject_BorderColor);--_ui5_button_negative_active_border_color:var(--sapButton_Reject_Active_BorderColor);--_ui5_button_emphasized_focused_border_color:var(--sapButton_Emphasized_BorderColor);--_ui5_button_base_min_width:2.25rem;--_ui5_button_base_height:2.25rem;--_ui5_button_border_radius:0.25rem;--_ui5_button_base_padding:0.5625rem;--_ui5_button_base_icon_only_padding:0.5625rem;--_ui5_button_base_icon_margin:0.375rem;--_ui5_button_emphasized_font_weight:bold;--_ui5_button_text_shadow:none;--_ui5_card_border_color:var(--sapTile_SeparatorColor);--_ui5_card_content_padding:1rem;--_ui5_card_header_hover_bg:var(--sapList_Hover_Background);--_ui5_card_header_active_bg:var(--_ui5_card_header_hover_bg);--_ui5_card_header_border_color:var(--_ui5_card_border_color);--_ui5_card_header_focus_border:1px dotted var(--sapContent_FocusColor);--ui5_carousel_button_size:2.5rem;--ui5_carousel_height:0.25rem;--ui5_carousel_width:0.25rem;--ui5_carousel_margin:0 0.375rem;--ui5_carousel_border:1px solid var(--sapContent_ForegroundBorderColor);--ui5_carousel_dot_border:none;--ui5_carousel_dot_background:var(--sapContent_NonInteractiveIconColor);--_ui5_checkbox_hover_background:var(--sapField_Hover_Background);--_ui5_checkbox_inner_width_height:1.375rem;--_ui5_checkbox_inner_error_border:0.125rem solid var(--sapField_InvalidColor);--_ui5_checkbox_inner_warning_border:0.125rem solid var(--sapField_WarningColor);--_ui5_checkbox_inner_information_border:0.125rem solid var(--sapField_InformationColor);--_ui5_checkbox_checkmark_warning_color:var(--sapField_TextColor);--_ui5_checkbox_checkmark_color:var(--sapSelectedColor);--_ui5_checkbox_wrapped_focus_left_top_bottom_position:.5625rem;--_ui5_checkbox_focus_outline:1px dotted var(--sapContent_FocusColor);--_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_wrapper_padding:.6875rem;--_ui5_checkbox_width_height:2.75rem;--_ui5_checkbox_inner_border:.0625rem solid var(--sapField_BorderColor);--_ui5_checkbox_focus_position:0.5625rem;--_ui5_checkbox_inner_border_radius:.125rem;--_ui5_checkbox_wrapped_content_margin_top:0;--_ui5_checkbox_wrapped_focus_padding:.5rem;--_ui5_checkbox_inner_readonly_border:1px solid var(--sapField_ReadOnly_BorderColor);--_ui5_checkbox_compact_wrapped_label_margin_top:-0.125rem;--_ui5_datepicker_icon_border:none;--_ui5_daypicker_item_margin:2px;--_ui5_daypicker_item_border:none;--_ui5_daypicker_item_outline_width:1px;--_ui5_daypicker_item_outline_offset:1px;--_ui5_daypicker_daynames_container_height: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_dayname_color:var(--sapContent_LabelColor);--_ui5_daypicker_weekname_color:var(--sapContent_LabelColor);--_ui5_daypicker_item_now_selected_focus_after_width:calc(100% - 0.125rem);--_ui5_daypicker_item_now_selected_focus_after_height:calc(100% - 0.125rem);--_ui5_daypicker_item_selected_hover_background_color:var(--sapActiveColor_Lighten3);--_ui5_daypicker_item_border_radius:0.25rem;--_ui5_daypicker_item_now_inner_border_radius:0.125rem;--ui5-group-header-listitem-background-color:var(--sapList_GroupHeaderBackground);--_ui5_input_width:13.125rem;--_ui5_input_compact_height:1.625rem;--_ui5_input_state_border_width:0.125rem;--_ui5-input-information_border_width:0.125rem;--_ui5_input_error_font_weight:normal;--_ui5_input_focus_border_width:1px;--_ui5_input_error_warning_border_style:solid;--_ui5_input_error_warning_font_style:inherit;--_ui5_input_disabled_color:var(--sapContent_DisabledTextColor);--_ui5_input_disabled_font_weight:normal;--_ui5_input_disabled_border_color:var(--sapField_BorderColor);--_ui5_input_disabled_background:var(--sapField_Background);--_ui5_input_icon_min_width:2.375rem;--_ui5_input_compact_min_width:2rem;--_ui5_input_height:2.25rem;--_ui5_input_disabled_opacity:0.4;--_ui5_input_wrapper_border_radius:0.125rem;--_ui5_input_icon_padding:.5625rem .6875rem;--_ui5_link_opacity:0.4;--_ui5_link_text_decoration:none;--_ui5_link_hover_text_decoration:underline;--ui5_list_footer_text_color:var(--sapTextColor);--ui5-listitem-background-color:var(--sapList_Background);--ui5-listitem-border-bottom:1px solid var(--sapList_BorderColor);--ui5-listitem-selected-border-bottom:1px solid var(--sapList_SelectionBorderColor);--_ui5_listitembase_focus_width:1px;--_ui5_product_switch_item_border:none;--_ui5_monthpicker_item_border:none;--_ui5_monthpicker_item_margin:1px;--_ui5_monthpicker_item_focus_after_width:calc(100% - 0.375rem);--_ui5_monthpicker_item_focus_after_height:calc(100% - 0.375rem);--_ui5_monthpicker_item_focus_after_border:1px dotted var(--sapContent_FocusColor);--_ui5_monthpicker_item_focus_after_offset:2px;--_ui5_monthpicker_item_border_radius:0.25rem;--_ui5_messagestrip_icon_width:2.5rem;--_ui5_messagestrip_border_radius:0.1875rem;--_ui5_messagestrip_button_border_width:0;--_ui5_messagestrip_button_border_style:none;--_ui5_messagestrip_button_border_color:transparent;--_ui5_messagestrip_button_border_radius:0;--_ui5_messagestrip_padding:0.125rem .125rem;--_ui5_messagestrip_button_height:1.625rem;--_ui5_messagestrip_border_width:1px;--_ui5_messagestrip_close_button_border:none;--_ui5_messagestrip_close_button_size:1.625rem;--_ui5_messagestrip_icon_top:0.4375rem;--_ui5_messagestrip_focus_width:1px;--_ui5_messagestrip_focus_offset:-2px;--_ui5_panel_focus_border:1px dotted var(--sapContent_FocusColor);--_ui5_panel_header_height:2.75rem;--_ui5_panel_button_root_width:2.75rem;--_ui5_popup_content_padding:.4375em;--_ui5_progress_indicator_value_state_none:var(--sapNeutralElementColor);--_ui5_progress_indicator_value_state_error:var(--sapNegativeElementColor);--_ui5_progress_indicator_value_state_warning:var(--sapCriticalElementColor);--_ui5_progress_indicator_value_state_success:var(--sapPositiveElementColor);--_ui5_progress_indicator_value_state_information:var(--sapInformativeElementColor);--_ui5_progress_indicator_color:var(--sapTextColor);--_ui5_progress_indicator_bar_color:var(--sapContent_ContrastTextColor);--_ui5_progress_indicator_border:0.0625rem solid var(--sapField_BorderColor);--_ui5_progress_indicator_bar_border_max:none;--_ui5_progress_indicator_icon_visibility:none;--_ui5_radiobutton_min_width:2.75rem;--_ui5_radiobutton_min_width_compact:2rem;--_ui5_radiobutton_hover_fill:var(--sapField_Hover_Background);--_ui5_radiobutton_border_width:1px;--_ui5_radiobutton_selected_fill:var(--sapSelectedColor);--_ui5_radiobutton_selected_error_fill:var(--sapField_InvalidColor);--_ui5_radiobutton_selected_warning_fill:var(--sapField_TextColor);--_ui5_radiobutton_warning_error_border_dash:0;--_ui5_select_disabled_background:var(--sapField_Background);--_ui5_select_disabled_border_color:var(--sapField_BorderColor);--_ui5_select_state_error_warning_border_style:solid;--_ui5_select_state_error_warning_border_width:0.125rem;--_ui5_select_hover_icon_left_border:1px solid transparent;--_ui5_select_rtl_hover_icon_left_border:none;--_ui5_select_rtl_hover_icon_right_border:none;--_ui5_select_focus_width:1px;--_ui5_switch_height:2.75rem;--_ui5_switch_width:3.875rem;--_ui5_switch_no_label_width:3.25rem;--_ui5_switch_outline:1px;--_ui5_switch_compact_height:2rem;--_ui5_switch_compact_width:3.5rem;--_ui5_switch_compact_no_label_width:2.5rem;--_ui5_switch_track_height:1.375rem;--_ui5_switch_track_no_label_height:1.25rem;--_ui5_switch_track_compact_no_label_height:1rem;--_ui5_switch_track_hover_border_color:var(--_ui5_switch_track_checked_border_color);--_ui5_switch_track_hover_background_color:var(--sapButton_Track_Background);--_ui5_switch_track_hover_checked_background_color:var(--sapButton_Track_Selected_Background);--_ui5_switch_track_border_radius:0.75rem;--_ui5_switch_track_disabled_checked_bg:var(--_ui5_switch_track_checked_bg);--_ui5_switch_track_disabled_border_color:var(--sapContent_ForegroundBorderColor);--_ui5_switch_track_disabled_semantic_checked_bg:var(--sapSuccessBackground);--_ui5_switch_track_disabled_semantic_checked_border_color:var(--sapSuccessBorderColor);--_ui5_switch_track_disabled_semantic_bg:var(--sapErrorBackground);--_ui5_switch_track_disabled_semantic_border_color:var(--sapErrorBorderColor);--_ui5_switch_handle_width:2rem;--_ui5_switch_handle_height:2rem;--_ui5_switch_handle_border_width:1px;--_ui5_switch_handle_border_radius:1rem;--_ui5_switch_handle_bg:var(--sapButton_TokenBackground);--_ui5_switch_handle_checked_bg:var(--sapButton_Selected_Background);--_ui5_switch_handle_checked_border_color:var(--sapButton_Selected_BorderColor);--_ui5_switch_handle_semantic_hover_bg:var(--sapErrorBackground);--_ui5_switch_handle_semantic_checked_hover_bg:var(--sapSuccessBackground);--_ui5_switch_handle_semantic_hover_border_color:var(--sapErrorBorderColor);--_ui5_switch_handle_semantic_checked_hover_border_color:var(--sapSuccessBorderColor);--_ui5_switch_handle_compact_width:1.625rem;--_ui5_switch_handle_compact_height:1.625rem;--_ui5_switch_handle_disabled_bg:var(--_ui5_switch_handle_bg);--_ui5_switch_handle_disabled_checked_bg:var(--_ui5_switch_handle_checked_bg);--_ui5_switch_handle_disabled_border_color:var(--sapContent_ForegroundBorderColor);--_ui5_switch_handle_disabled_semantic_checked_bg:var(--sapButton_Background);--_ui5_switch_handle_disabled_semantic_checked_border_color:var(--sapSuccessBorderColor);--_ui5_switch_handle_disabled_semantic_border_color:var(--sapErrorBorderColor);--_ui5_switch_text_on_semantic_color:var(--sapPositiveElementColor);--_ui5_switch_text_off_semantic_color:var(--sapNegativeElementColor);--_ui5_switch_text_disabled_color:var(--sapTextColor);--_ui5_tc_header_height:4.6875rem;--_ui5_tc_header_height_compact:3.6875rem;--_ui5_tc_header_height_text_only:3rem;--_ui5_tc_header_height_text_only_compact:2rem;--_ui5_tc_headeritem_text_selected_color:var(--sapSelectedColor);--_ui5_tc_headerItem_neutral_color:var(--sapNeutralColor);--_ui5_tc_headerItem_positive_color:var(--sapPositiveColor);--_ui5_tc_headerItem_negative_color:var(--sapNegativeColor);--_ui5_tc_headerItem_critical_color:var(--sapCriticalColor);--_ui5_tc_headerItem_neutral_border_color:var(--_ui5_tc_headerItem_neutral_color);--_ui5_tc_headerItem_positive_border_color:var(--_ui5_tc_headerItem_positive_color);--_ui5_tc_headerItem_negative_border_color:var(--_ui5_tc_headerItem_negative_color);--_ui5_tc_headerItem_critical_border_color:var(--_ui5_tc_headerItem_critical_color);--_ui5_tc_headerItem_neutral_selected_border_color:var(--_ui5_tc_headerItem_neutral_color);--_ui5_tc_headerItem_positive_selected_border_color:var(--_ui5_tc_headerItem_positive_color);--_ui5_tc_headerItem_negative_selected_border_color:var(--_ui5_tc_headerItem_negative_color);--_ui5_tc_headerItem_critical_selected_border_color:var(--_ui5_tc_headerItem_critical_color);--_ui5_tc_headerItem_focus_border:1px dotted var(--sapContent_FocusColor);--_ui5_tc_headerItemSemanticIcon_display:none;--_ui5_tc_overflowItem_neutral_color:var(--sapNeutralColor);--_ui5_tc_overflowItem_positive_color:var(--sapPositiveColor);--_ui5_tc_overflowItem_negative_color:var(--sapNegativeColor);--_ui5_tc_overflowItem_critical_color:var(--sapCriticalColor);--_ui5_tc_headerItemIcon_border:1px solid var(--sapHighlightColor);--_ui5_tc_headerItemIcon_color:var(--sapHighlightColor);--_ui5_tc_headerItemIcon_selected_background:var(--sapHighlightColor);--_ui5_tc_headerItemIcon_selected_color:var(--sapGroup_ContentBackground);--_ui5_tc_headerItemIcon_positive_selected_background:var(--sapPositiveColor);--_ui5_tc_headerItemIcon_negative_selected_background:var(--sapNegativeColor);--_ui5_tc_headerItemIcon_critical_selected_background:var(--sapCriticalColor);--_ui5_tc_headerItemIcon_neutral_selected_background:var(--sapNeutralColor);--_ui5_tc_headerItemIcon_semantic_selected_color:var(--sapGroup_ContentBackground);--_ui5_tc_header_box_shadow:var(--sapContent_HeaderShadow);--_ui5_tc_header_border_bottom:0.0625rem solid var(--sapObjectHeader_Background);--_ui5_tc_headerItem_color:var(--sapContent_LabelColor);--_ui5_tc_headerItemContent_border_bottom:0.188rem solid var(--sapSelectedColor);--_ui5_tc_overflowItem_default_color:var(--sapHighlightColor);--_ui5_tc_overflowItem_current_color:CurrentColor;--_ui5_tc_content_border_bottom:0.0625rem solid var(--sapObjectHeader_BorderColor);--_ui5_textarea_focus_after_width:1px;--_ui5_textarea_warning_border_style:solid;--_ui5_textarea_warning_border_width:2px;--_ui5_TimelineItem_arrow_size:1.625rem;--_ui5_TimelineItem_bubble_outline_width:0.0625rem;--_ui5_TimelineItem_bubble_outline_top:-0.125rem;--_ui5_TimelineItem_bubble_outline_right:-0.125rem;--_ui5_TimelineItem_bubble_outline_bottom:-0.125rem;--_ui5_TimelineItem_bubble_outline_left:-0.625rem;--_ui5_TimelineItem_bubble_rtl_left_offset:-0.125rem;--_ui5_TimelineItem_bubble_rtl_right_offset:-0.625rem;--_ui5_time_picker_border:0.0625rem solid transparent;--_ui5_toast_vertical_offset:3rem;--_ui5_toast_horizontal_offset:2rem;--_ui5_toast_background:var(--sapList_Background);--_ui5_toast_shadow:var(--sapContent_Shadow2);--_ui5_wheelslider_item_text_size:var(--sapFontSize);--_ui5_wheelslider_label_text_size:var(--sapFontSmallSize);--_ui5_wheelslider_mobile_selection_frame_margin_top:calc(var(--_ui5_wheelslider_item_height)*4);--_ui5_wheelslider_label_text_color:var(--sapContent_LabelColor);--_ui5_wheelslider_height:15rem;--_ui5_wheelslider_mobile_height:27rem;--_ui5_wheelslider_arrows_visibility:hidden;--_ui5_wheelslider_item_background_color:var(--sapLegend_WorkingBackground);--_ui5_wheelslider_item_text_color:var(--sapTextColor);--_ui_wheelslider_item_hover_color:var(--sapButton_Emphasized_Hover_BorderColor);--_ui5_wheelslider_item_border_color:var(--sapList_Background);--_ui5_wheelslider_item_hovered_border_color:var(--sapList_Background);--_ui5_wheelslider_collapsed_item_text_color:var(--_ui5_wheelslider_item_border_color);--_ui5_wheelslider_selected_item_background_color:var(--sapContent_Selected_Background);--_ui5_wheelslider_selected_item_hover_background_color:var(--sapButton_Emphasized_Hover_BorderColor);--_ui5_wheelslider_active_item_background_color:var(--sapContent_Selected_Background);--_ui5_wheelslider_active_item_text_color:var(--sapContent_Selected_TextColor);--_ui5_wheelslider_item_width:3rem;--_ui5_wheelslider_item_height:2.875rem;--_ui5_wheelslider_selection_frame_color:var(--sapList_SelectionBorderColor);--_ui_wheelslider_item_border_radius:var(--_ui5_button_border_radius);--_ui5_toggle_button_pressed_focussed:var(--sapButton_Selected_BorderColor);--_ui5_toggle_button_pressed_focussed_hovered:var(--sapButton_Selected_BorderColor);--_ui5_yearpicker_item_selected_focus:var(--sapContent_Selected_Background);--_ui5_yearpicker_item_border:none;--_ui5_yearpicker_item_margin:1px;--_ui5_yearpicker_item_focus_after_width:calc(100% - 0.375rem);--_ui5_yearpicker_item_focus_after_height:calc(100% - 0.375rem);--_ui5_yearpicker_item_focus_after_border:1px dotted var(--sapContent_FocusColor);--_ui5_yearpicker_item_focus_after_offset:2px;--_ui5_yearpicker_item_border_radius:0.25rem;--_ui5_calendar_header_arrow_button_border:none;--_ui5_calendar_header_arrow_button_border_radius:0.25rem;--_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:0.25rem;--_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% - 0.375rem);--_ui5_calendar_header_middle_button_focus_after_height:calc(100% - 0.375rem);--_ui5_calendar_header_middle_button_focus_after_top_offset:0.125rem;--_ui5_calendar_header_middle_button_focus_after_left_offset:0.125rem;--ui5_table_header_row_outline_width:1px;--ui5_table_row_outline_width:1px;--ui5_title_level_1Size:1.625rem;--ui5_title_level_2Size:1.375rem;--ui5_title_level_3Size:1.250rem;--ui5_title_level_4Size:1.125rem;--ui5_title_level_5Size:1rem;--ui5_title_level_6Size:0.875rem;--_ui5_token_background:var(--sapButton_TokenBackground);--_ui5_token_border_radius:0.25rem;--_ui5_token_focus_outline_width:0.0625rem;--_ui5_token_text_color:var(--sapTextColor);--_ui5_token_icon_color:var(--sapContent_IconColor);--_ui5_value_state_message_border:none;--_ui5-multi_combobox_token_margin_top:1px}.sapUiSizeCompact,.ui5-content-density-compact,:root,[data-ui5-compact-size]{--_ui5_datetime_timeview_width:17rem;--_ui5_token_wrapper_left_padding:0;--_ui5_button_icon_font_size:1rem;--_ui5_daypicker_weeknumbers_container_padding_top:2rem;--_ui5_wheelslider_selection_frame_margin_top:calc(var(--_ui5_wheelslider_item_height)*2)}.sapUiSizeCompact,.ui5-content-density-compact,[data-ui5-compact-size]{--_ui5_button_base_height:1.625rem;--_ui5_button_base_padding:0.4375rem;--_ui5_button_base_min_width:2rem;--_ui5_calendar_header_height:2rem;--_ui5_calendar_header_padding:0;--_ui5_calendar_header_arrow_button_width:2rem;--_ui5_checkbox_root_side_padding:var(--_ui5_checkbox_wrapped_focus_padding);--_ui5_checkbox_wrapped_content_margin_top:var(--_ui5_checkbox_compact_wrapped_label_margin_top);--_ui5_checkbox_wrapped_focus_left_top_bottom_position:var(--_ui5_checkbox_compact_focus_position);--_ui5_checkbox_width_height:var(--_ui5_checkbox_compact_width_height);--_ui5_checkbox_wrapper_padding:var(--_ui5_checkbox_compact_wrapper_padding);--_ui5_checkbox_focus_position:var(--_ui5_checkbox_compact_focus_position);--_ui5_checkbox_inner_width_height:var(--_ui5_checkbox_compact_inner_size);--_ui5_checkbox_icon_size:.75rem;--_ui5_custom_list_item_height:2rem;--_ui5_custom_list_item_rb_min_width:2rem;--_ui5_day_picker_item_width:2rem;--_ui5_day_picker_item_height:2rem;--_ui5_day_picker_empty_height:2.125rem;--_ui5_datetime_picker_height:17rem;--_ui5_datetime_picker_width:34.0625rem;--_ui5_datetime_timeview_phonemode_width:18.5rem;--_ui5_datetime_timeview_padding:0.5rem;--_ui5_input_height:var(--_ui5_input_compact_height);--_ui5_input_inner_padding:0 0.5rem;--_ui5_input_icon_min_width:var(--_ui5_input_compact_min_width);--_ui5_input_icon_padding:.25rem .5rem;--_ui5_input_value_state_icon_padding:.1875rem .5rem;--_ui5_textarea_padding:.1875rem .5rem;--_ui5_list_no_data_height:2rem;--_ui5_list_item_cb_margin_right:.5rem;--_ui5_list_item_title_size:var(--sapFontSize);--_ui5_list_item_img_size:1.75rem;--_ui5_list_item_img_margin:0.55rem 0.75rem 0.5rem 0rem;--_ui5_list_item_base_height:2rem;--_ui5_list_busy_row_height:2rem;--_ui5_month_picker_item_height:2rem;--_ui5_panel_header_height:2rem;--_ui5_year_picker_item_height:2rem;--_ui5_tokenizer_root_padding:0.125rem;--_ui5_token_height:1.125rem;--_ui5_token_icon_size:.75rem;--_ui5_token_icon_padding:0.1rem 0.25rem;--_ui5_token_wrapper_right_padding:0.25rem;--_ui5_tl_bubble_padding:.5rem;--_ui5_tl_indicator_before_bottom:-.5rem;--_ui5_tl_padding:.5rem;--_ui5_tl_li_margin_bottom:.5rem;--_ui5_rb_height:2rem;--_ui5_rb_label_side_padding:.5rem;--_ui5_rb_focus_dist:.375rem;--_ui5_rb_inner_size:2rem;--_ui5_rb_svg_size:1rem;--_ui5_rb_label_width:calc(100% - 2rem + 1px);--_ui5_rb_rtl_focus_right:0.375rem;--_ui5_wheelslider_item_width:4rem;--_ui5_wheelslider_item_height:2rem;--_ui5_wheelslider_height:14rem;--_ui5_wheelslider_arrows_visibility:visible;--_ui5_switch_height:var(--_ui5_switch_compact_height);--_ui5_switch_width:var(--_ui5_switch_compact_width);--_ui5_switch_handle_height:var(--_ui5_switch_handle_compact_height);--_ui5_switch_handle_width:var(--_ui5_switch_handle_compact_width);--_ui5_switch_text_on_left:calc(-100% + 1.5625rem);--_ui5_switch_slide_transform:translateX(100%) translateX(-1.5rem);--_ui5_switch_no_label_width:var(--_ui5_switch_compact_no_label_width);--_ui5_switch_track_no_label_height:var(--_ui5_switch_track_compact_no_label_height);--_ui5_switch_rtl_transform:translateX(-100%) translateX(1.5rem);--_ui5_switch_text_right:calc(-100% + 1.5625rem);--_ui5_tc_item_text:2rem;--_ui5_tc_item_text_line_height:1.325rem;--_ui5_tc_item_icon_size:1rem;--_ui5_tc_item_add_text_margin_top:0.3125rem;--_ui5_tc_header_height:var(--_ui5_tc_header_height_compact);--_ui5_radiobutton_min_width:var(--_ui5_radiobutton_min_width_compact);--_ui5-responnsive_popover_header_height:2.5rem;--ui5_side_navigation_item_height:2rem;--_ui5-tree-indent-step:0.5rem;--_ui5-tree-toggle-box-width:2rem;--_ui5-tree-toggle-box-height:1.5rem;--_ui5-tree-toggle-icon-size:0.8125rem}";M("@ui5/webcomponents-theme-base","sap_fiori_3",Nr),M("@ui5/webcomponents","sap_fiori_3",Or);const $r={tag:"ui5-icon",languageAware:!0,properties:{interactive:{type:Boolean},name:{type:String},accessibleName:{type:String},showTooltip:{type:Boolean},pathData:{type:String,noAttribute:!0},accData:{type:Object,noAttribute:!0},focused:{type:Boolean},invalid:{type:Boolean}},events:{click:{}}};class Lr extends Yt{constructor(){super(),this.i18nBundle=br("@ui5/webcomponents")}static get metadata(){return $r}static get render(){return Vi}static get template(){return Fr}static get styles(){return":host(:not([hidden])){display:inline-block}:host([invalid]){display:none}:host(:not([hidden]).ui5_hovered){opacity:.7}:host{width:1rem;height:1rem;color:var(--sapContent_NonInteractiveIconColor);fill:currentColor;outline:none}:host([interactive][focused]) .ui5-icon-root{outline:1px dotted var(--sapContent_FocusColor)}:host(:not([dir=ltr])) .ui5-icon-root[dir=rtl]{transform:scale(-1);transform-origin:center}.ui5-icon-root{display:flex;transform:scaleY(-1);transform-origin:center;outline:none}"}static async onDefine(){this.createGlobalStyle(),await Te("@ui5/webcomponents")}_onfocusin(e){this.interactive&&(this.focused=!0)}_onfocusout(e){this.focused=!1}_onkeydown(e){this.interactive&&ir(e)&&this.fireEvent("click")}_onkeyup(e){this.interactive&&rr(e)&&this.fireEvent("click")}_onclick(e){this.interactive&&(e.preventDefault(),this.fireEvent("click"))}get _dir(){if(this.effectiveDir)return this.ltr?"ltr":this.effectiveDir}get tabIndex(){return this.interactive?"0":"-1"}get role(){return this.interactive?"button":this.accessibleNameText?"img":"presentation"}static createGlobalStyle(){if(!window.ShadyDOM)return;document.head.querySelector("style[data-ui5-icon-global]")||A("ui5-icon { display: none !important; }",{"data-ui5-icon-global":""})}static removeGlobalStyle(){if(!window.ShadyDOM)return;const e=document.head.querySelector("style[data-ui5-icon-global]");e&&document.head.removeChild(e)}async onBeforeRendering(){const e=this.name;if(!e)return console.warn("Icon name property is required",this);let t=((e,t="SAP-icons")=>{const i=Br(e,t);return Ir.get(i)})(e);return t||(t=await(async(e,t="SAP-icons")=>{const i=Br(e,t);Mr.has(t)||Mr.set(t,Promise.resolve("ICON_NOT_FOUND"));const r=await Mr.get(t);return"ICON_NOT_FOUND"===r?r:Ir.get(i)})(e)),"ICON_NOT_FOUND"===t?(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/icons/${e.replace("sap-icon://","")}.js", or setup a JSON build step and import "@ui5/webcomponents-icons/dist/Assets.js".`)):t?(this.pathData=t.pathData,this.accData=t.accData,void(this.ltr=t.ltr)):(this.invalid=!0,console.warn("Required icon is not registered. Invalid icon name: "+this.name))}get hasIconTooltip(){return this.showTooltip&&this.accessibleNameText}get accessibleNameText(){return this.accessibleName?this.accessibleName:this.i18nBundle.getText(this.accData)||void 0}async onEnterDOM(){setTimeout(()=>{this.constructor.removeGlobalStyle()},0)}}Lr.define();const Rr={key:"BUSY_INDICATOR_TITLE",defaultText:"Please wait"},zr={key:"BUTTON_ARIA_TYPE_ACCEPT",defaultText:"Positive Action"},Hr={key:"BUTTON_ARIA_TYPE_REJECT",defaultText:"Negative Action"},Ur={key:"BUTTON_ARIA_TYPE_EMPHASIZED",defaultText:"Emphasized"},jr={key:"DATEPICKER_DATE_ACC_TEXT",defaultText:"Date"},Vr={key:"DATEPICKER_OPEN_ICON_TITLE",defaultText:"Open Picker"},Wr={key:"DELETE",defaultText:"Delete"},Yr={key:"INPUT_SUGGESTIONS",defaultText:"Suggestions Available"},qr={key:"INPUT_SUGGESTIONS_TITLE",defaultText:"Select"},Gr={key:"INPUT_SUGGESTIONS_ONE_HIT",defaultText:"1 result available"},Jr={key:"INPUT_SUGGESTIONS_MORE_HITS",defaultText:"{0} results are available"},Xr={key:"INPUT_SUGGESTIONS_NO_HIT",defaultText:"No results"},Qr={key:"ARIA_LABEL_LIST_ITEM_CHECKBOX",defaultText:"Multiple Selection Mode"},Zr={key:"TEXTAREA_CHARACTERS_LEFT",defaultText:"{0} characters remaining"},Kr={key:"TEXTAREA_CHARACTERS_EXCEEDED",defaultText:"{0} characters over limit"},ea={key:"TIMEPICKER_HOURS_LABEL",defaultText:"Hours"},ta={key:"TIMEPICKER_MINUTES_LABEL",defaultText:"Minutes"},ia={key:"TIMEPICKER_SECONDS_LABEL",defaultText:"Seconds"},ra={key:"TIMEPICKER_PERIODS_LABEL",defaultText:"AM/PM"},aa={key:"TIMEPICKER_SUBMIT_BUTTON",defaultText:"OK"},oa={key:"TIMEPICKER_CANCEL_BUTTON",defaultText:"Cancel"},na={key:"VALUE_STATE_ERROR",defaultText:"Invalid entry"},sa={key:"VALUE_STATE_WARNING",defaultText:"Warning issued"},la={key:"VALUE_STATE_INFORMATION",defaultText:"Informative entry"},ua={key:"VALUE_STATE_SUCCESS",defaultText:"Entry successfully validated"};M("@ui5/webcomponents-theme-base","sap_fiori_3",Nr),M("@ui5/webcomponents","sap_fiori_3",Or);let da=!1,ca=null;const ha={tag:"ui5-button",languageAware:!0,properties:{design:{type:xr,defaultValue:xr.Default},disabled:{type:Boolean},icon:{type:String},iconEnd:{type:Boolean},submits:{type:Boolean},active:{type:Boolean},iconOnly:{type:Boolean},focused:{type:Boolean},hasIcon:{type:Boolean},ariaLabel:{type:String,defaultValue:void 0},ariaLabelledby:{type:String,defaultValue:""},ariaExpanded:{type:String},nonFocusable:{type:Boolean},_iconSettings:{type:Object},_buttonAccInfo:{type:Object},_tabIndex:{type:String,defaultValue:"0",noAttribute:!0}},managedSlots:!0,slots:{default:{type:Node}},events:{click:{}}};class pa extends Yt{static get metadata(){return ha}static get styles(){return'.ui5-hidden-text{position:absolute;clip:rect(1px,1px,1px,1px);user-select:none;left:0;top:0}:host(:not([hidden])){display:inline-block}:host{min-width:var(--_ui5_button_base_min_width);height:var(--_ui5_button_base_height);font-family:var(--sapFontFamily);font-size:var(--sapFontSize);text-shadow:var(--_ui5_button_text_shadow);border-radius:var(--_ui5_button_border_radius);border-width:.0625rem;cursor:pointer;background-color:var(--sapButton_Background);border:1px solid var(--sapButton_BorderColor);color:var(--sapButton_TextColor);box-sizing:border-box;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}:host([has-icon]) button[dir=rtl].ui5-button-root .ui5-button-text{margin-right:var(--_ui5_button_base_icon_margin);margin-left:0}:host([has-icon][icon-end]) button[dir=rtl].ui5-button-root .ui5-button-icon{margin-right:var(--_ui5_button_base_icon_margin);margin-left:0}.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}:host(:not([active]):hover),:host(:not([hidden]).ui5_hovered){background:var(--sapButton_Hover_Background)}.ui5-button-icon{font-size:var(--_ui5_button_icon_font_size);height:0;top:-.5rem;position:relative;color:inherit;flex-shrink:0}:host([icon-end]) .ui5-button-root{flex-direction:row-reverse}:host([icon-end]) .ui5-button-icon{margin-left:var(--_ui5_button_base_icon_margin)}:host([icon-only]) .ui5-button-root{min-width:auto}: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([icon-end])) .ui5-button-text{max-width:calc(100% - 1rem);margin-left:var(--_ui5_button_base_icon_margin)}:host([has-icon][icon-end]) .ui5-button-text{margin-left:0}:host([disabled]){opacity:.5;pointer-events:none}:host([focused]){outline:var(--_ui5_button_outline);outline-offset:var(--_ui5_button_outline_offset)}.ui5-button-root::-moz-focus-inner{border:0}bdi{display:block;white-space:inherit;overflow:inherit;text-overflow:inherit}:host([active]:not([disabled])){background-image:none;background-color:var(--sapButton_Active_Background);border-color:var(--_ui5_button_active_border_color);color:var(--sapButton_Active_TextColor);text-shadow:none}:host([active]){outline-color:var(--sapContent_ContrastFocusColor)}:host([design=Positive]){background-color:var(--sapButton_Accept_Background);border-color:var(--_ui5_button_positive_border_color);color:var(--sapButton_Accept_TextColor);text-shadow:var(--_ui5_button_text_shadow)}:host([design=Positive]:hover){background-color:var(--sapButton_Accept_Hover_Background);border-color:var(--_ui5_button_positive_border_hover_color)}:host([design=Positive][active]){background-color:var(--sapButton_Accept_Active_Background);border-color:var(--_ui5_button_positive_border_active_color);color:var(--sapButton_Active_TextColor);text-shadow:none}:host([design=Positive][focused]){outline-color:var(--_ui5_button_positive_border_focus_hover_color);border-color:var(--_ui5_button_positive_focus_border_color)}:host([design=Positive][active][focused]){outline-color:var(--sapContent_ContrastFocusColor)}:host([design=Negative]){background-color:var(--sapButton_Reject_Background);border-color:var(--sapButton_Reject_BorderColor);color:var(--sapButton_Reject_TextColor);text-shadow:var(--_ui5_button_text_shadow)}:host([design=Negative]:hover){background-color:var(--sapButton_Reject_Hover_Background);border-color:var(--sapButton_Reject_Hover_BorderColor)}:host([design=Negative][focused]){border-color:var(--_ui5_button_negative_focus_border_color);outline-color:var(--_ui5_button_positive_border_focus_hover_color)}:host([design=Negative][active]){background-color:var(--sapButton_Reject_Active_Background);border-color:var(--_ui5_button_negative_active_border_color);color:var(--sapButton_Active_TextColor);text-shadow:none}:host([design=Negative][active][focused]){outline-color:var(--sapContent_ContrastFocusColor)}:host([design=Emphasized]){background-color:var(--sapButton_Emphasized_Background);border-color:var(--sapButton_Emphasized_BorderColor);color:var(--sapButton_Emphasized_TextColor);text-shadow:0 0 .125rem var(--sapButton_Emphasized_TextShadow);font-weight:var(--_ui5_button_emphasized_font_weight)}:host([design=Emphasized]:not([active]):hover){background-color:var(--sapButton_Emphasized_Hover_Background);border-color:var(--sapButton_Emphasized_Hover_BorderColor)}:host([design=Empasized][active]){background-color:var(--sapButton_Emphasized_Active_Background);border-color:var(--sapButton_Emphasized_Active_BorderColor);color:var(--sapButton_Active_TextColor);text-shadow:none}:host([design=Emphasized][focused]){outline-color:var(--sapContent_ContrastFocusColor);border-color:var(--_ui5_button_emphasized_focused_border_color)}:host([design=Transparent]){background-color:var(--sapButton_Lite_Background);color:var(--sapButton_Lite_TextColor);text-shadow:var(--_ui5_button_text_shadow);border-color:var(--_ui5_button_transparent_border_color)}:host([design=Transparent]):hover{background-color:var(--sapButton_Lite_Hover_Background)}:host([design=Transparent][active]){background-color:var(--sapButton_Active_Background);color:var(--sapButton_Active_TextColor);text-shadow:none}:host([design=Transparent]:not([active]):hover){border-color:var(--_ui5_button_transparent_hover_border_color)}ui5-button[focused]{outline:none}ui5-button[focused] .ui5-button-root{position:relative}ui5-button[focused] .ui5-button-root:after{content:"";position:absolute;border-width:1px;border-style:dotted;border-color:var(--_ui5_button_focus_color);top:var(--_ui5_button_focus_offset);bottom:var(--_ui5_button_focus_offset);left:var(--_ui5_button_focus_offset);right:var(--_ui5_button_focus_offset)}ui5-button[active] .ui5-button-root:after{border-color:var(--sapContent_ContrastFocusColor)}ui5-button[design=Positive][focused] .ui5-button-root:after{border-color:var(--_ui5_button_positive_border_focus_hover_color)}ui5-button[design=Positive][active][focused] .ui5-button-root:after{border-color:var(--sapContent_ContrastFocusColor)}ui5-button[design=Negative][focused] .ui5-button-root:after{border-color:var(--_ui5_button_positive_border_focus_hover_color)}ui5-button[design=Negative][active][focused] .ui5-button-root:after{border-color:var(--sapContent_ContrastFocusColor)}ui5-button[design=Emphasized][focused] .ui5-button-root:after{border-color:var(--sapContent_ContrastFocusColor)}ui5-button ui5-icon.ui5-button-icon{height:var(--_ui5_button_icon_font_size);top:0}'}static get render(){return Vi}static get template(){return Sr}constructor(){super(),this._deactivate=()=>{ca&&(ca.active=!1)},da||(document.addEventListener("mouseup",this._deactivate),da=!0),this.i18nBundle=br("@ui5/webcomponents")}onBeforeRendering(){const e=c("FormSupport");this.submits&&!e&&console.warn('In order for the "submits" property to have effect, you should also: import "@ui5/webcomponents/dist/features/InputElementsFormSupport.js";'),this.iconOnly=this.isIconOnly,this.hasIcon=!!this.icon}_onclick(e){e.isMarked="button";const t=c("FormSupport");t&&t.triggerFormSubmit(this)}_onmousedown(e){e.isMarked="button",this.active=!0,ca=this}_onmouseup(e){e.isMarked="button"}_onkeydown(e){e.isMarked="button",(rr(e)||ir(e))&&(this.active=!0)}_onkeyup(e){(rr(e)||ir(e))&&(this.active=!1)}_onfocusout(e){this.active=!1,this.focused=!1}_onfocusin(e){e.isMarked="button",this.focused=!0}get hasButtonType(){return this.design!==xr.Default&&this.design!==xr.Transparent}get isIconOnly(){return!Array.from(this.childNodes).filter(e=>e.nodeType!==Node.COMMENT_NODE).length}get accInfo(){return{ariaExpanded:this.ariaExpanded||this._buttonAccInfo&&this._buttonAccInfo.ariaExpanded,ariaControls:this._buttonAccInfo&&this._buttonAccInfo.ariaControls,ariaHaspopup:this._buttonAccInfo&&this._buttonAccInfo.ariaHaspopup,title:this._buttonAccInfo&&this._buttonAccInfo.title}}get ariaLabelText(){return wr(this)}static typeTextMappings(){return{Positive:zr,Negative:Hr,Emphasized:Ur}}get buttonTypeText(){return this.i18nBundle.getText(pa.typeTextMappings()[this.design])}get tabIndexValue(){const e=this.getAttribute("tabindex");return e||(this.nonFocusable?"-1":this._tabIndex)}static async onDefine(){await Promise.all([Lr.define(),Te("@ui5/webcomponents")])}}pa.define();const _a={},ma={WINDOWS:"win",MACINTOSH:"mac",IOS:"iOS",ANDROID:"Android"},ga=()=>(()=>{const e=navigator.userAgent;let t,i;if(t=/\(([a-zA-Z ]+);\s(?:[U]?[;]?)([\D]+)((?:[\d._]*))(?:.*[)][^\d]*)([\d.]*)\s/,i=e.match(t),i){const e=/iPhone|iPad|iPod/;if(i[0].match(e))return i[3]=i[3].replace(/_/g,"."),{name:ma.IOS,versionStr:i[3]};if(i[2].match(/Android/))return i[2]=i[2].replace(/\s/g,""),{name:ma.ANDROID,versionStr:i[3]}}if(t=/\((Android)[\s]?([\d][.\d]*)?;.*Firefox\/[\d][.\d]*/,i=e.match(t),i)return{name:ma.ANDROID,versionStr:3===i.length?i[2]:""}})()||(()=>{const e=navigator.platform;if(-1!==e.indexOf("Win")){const e=/Windows NT (\d+).(\d)/i,t=navigator.userAgent.match(e);return{name:ma.WINDOWS,versionStr:t[1]}}return-1!==e.indexOf("Mac")?{name:ma.MACINTOSH,versionStr:""}:null})(),fa={INTERNET_EXPLORER:"ie",EDGE:"ed",FIREFOX:"ff",CHROME:"cr",SAFARI:"sf",ANDROID:"an"},va=()=>{const e=(()=>{const e=navigator.userAgent.toLowerCase(),t=/(edge)[ /]([\w.]+)/.exec(e)||/(trident)\/[\w.]+;.*rv:([\w.]+)/.exec(e)||/(webkit)[ /]([\w.]+)/.exec(e)||/(msie) ([\w.]+)/.exec(e)||e.indexOf("compatible")<0&&/(mozilla)(?:.*? rv:([\w.]+))?/.exec(e)||[],i={browser:t[1]||"",version:t[2]||"0"};return i[i.browser]=!0,i})(),t=navigator.userAgent,i=window.navigator;let r,a,o;if(e.mozilla)r=/Mobile/,t.match(/Firefox\/(\d+\.\d+)/)?(o=parseFloat(RegExp.$1),a={name:fa.FIREFOX,versionStr:""+o,version:o,mozilla:!0,mobile:r.test(t)}):a={mobile:r.test(t),mozilla:!0,version:-1};else if(e.webkit){const e=t.toLowerCase().match(/webkit[/]([\d.]+)/);let n;e&&(n=e[1]),r=/Mobile/;const s=t.match(/(Chrome|CriOS)\/(\d+\.\d+).\d+/),l=t.match(/FxiOS\/(\d+\.\d+)/),u=t.match(/Android .+ Version\/(\d+\.\d+)/);if(s||l||u){let e,i,o;s?(e=fa.CHROME,o=r.test(t),i=parseFloat(s[2])):l?(e=fa.FIREFOX,o=!0,i=parseFloat(l[1])):u&&(e=fa.ANDROID,o=r.test(t),i=parseFloat(u[1])),a={name:e,mobile:o,versionStr:""+i,version:i,webkit:!0,webkitVersion:n}}else{const e=/(Version|PhantomJS)\/(\d+\.\d+).*Safari/,s=i.standalone;if(e.test(t)){const i=e.exec(t);o=parseFloat(i[2]),a={name:fa.SAFARI,versionStr:""+o,fullscreen:!1,webview:!1,version:o,mobile:r.test(t),webkit:!0,webkitVersion:n,phantomJS:"PhantomJS"===i[1]}}else a=!/iPhone|iPad|iPod/.test(t)||/CriOS/.test(t)||/FxiOS/.test(t)||!0!==s&&!1!==s?{mobile:r.test(t),webkit:!0,webkitVersion:n,version:-1}:{name:fa.SAFARI,version:-1,fullscreen:s,webview:!s,mobile:r.test(t),webkit:!0,webkitVersion:n}}}else e.msie||e.trident?(o=parseFloat(e.version),a={name:fa.INTERNET_EXPLORER,versionStr:""+o,version:o,msie:!0,mobile:!1}):e.edge?(o=parseFloat(e.version),a={name:fa.EDGE,versionStr:""+o,version:o,edge:!0}):a={name:"",versionStr:"",version:-1,mobile:!1};return a},ya=()=>{_a.browser=va(),_a.browser.BROWSER=fa,_a.browser.name&&Object.keys(fa).forEach(e=>{fa[e]===_a.browser.name&&(_a.browser[e.toLowerCase()]=!0)})},ba=()=>(_a.browser||ya(),!!_a.browser.msie),wa=()=>{_a.support||(_a.browser||ya(),_a.support={},_a.support.touch=!!("ontouchstart"in window||navigator.maxTouchPoints>0||window.DocumentTouch&&document instanceof window.DocumentTouch))},ka={TABLET:"tablet",PHONE:"phone",DESKTOP:"desktop",COMBI:"combi"},xa=()=>{const e=navigator.userAgent;if(_a.os.name===_a.os.OS.IOS)return/ipad/i.test(e);if(_a.support||wa(),_a.support.touch){if(_a.os.windows&&_a.os.version>=8)return!0;if(_a.browser.chrome&&_a.os.android&&_a.os.version>=4.4)return!/Mobile Safari\/[.0-9]+/.test(e);let t=window.devicePixelRatio?window.devicePixelRatio:1;_a.os.android&&_a.browser.webkit&&parseFloat(_a.browser.webkitVersion)>537.1&&(t=1);return Math.min(window.screen.width/t,window.screen.height/t)>=600}const t=/(?=android)(?=.*mobile)/i.test(e);return _a.browser.msie&&-1!==e.indexOf("Touch")||_a.os.android&&!t},Ca=()=>{wa(),_a.os||(_a.os=ga()||{},_a.os.OS=ma,_a.os.version=_a.os.versionStr?parseFloat(_a.os.versionStr):-1,_a.os.name&&Object.keys(ma).forEach(e=>{ma[e]===_a.os.name&&(_a.os[e.toLowerCase()]=!0)})),_a.system={},_a.system=(()=>{const e=xa(),t=_a.os.windows&&_a.os.version>=8,i={};return i.tablet=!(!_a.support.touch&&!t||!e),i.phone=!(!_a.os.windows_phone&&!_a.support.touch||e),i.desktop=!((i.tablet||i.phone)&&!t),i.combi=i.desktop&&i.tablet,i.SYSTEMTYPE=ka,i})(),(_a.system.tablet||_a.system.phone)&&(_a.browser.mobile=!0)},Sa=()=>(_a.system||Ca(),_a.system.desktop),Ta=()=>(_a.system||Ca(),_a.system.phone),Da={None:"None",Success:"Success",Warning:"Warning",Error:"Error",Information:"Information"};class Pa extends nt{static isValid(e){return!!Da[e]}}Pa.generataTypeAcessors(Da);Er("accept",{pathData:"M455.8 94q9 9 3 19l-222 326q-4 8-12 9t-14-5l-151-167q-5-5-4.5-11t5.5-11l25-25q12-12 23 0l96 96q5 5 13 4.5t12-8.5l175-249q4-7 11.5-8t13.5 4z",ltr:!0});const Ia=e=>Pi`<label class="ui5-label-root" dir="${Cr(e.effectiveDir)}" @click=${e._onclick} for="${Cr(e.for)}"><span class="ui5-label-text-wrapper"><bdi id="${Cr(e._id)}-bdi"><slot></slot></bdi></span><span class="ui5-label-required-colon"></span></label>`;M("@ui5/webcomponents-theme-base","sap_fiori_3",Nr),M("@ui5/webcomponents","sap_fiori_3",Or);const Ma={tag:"ui5-label",properties:{required:{type:Boolean},wrap:{type:Boolean},showColon:{type:Boolean},for:{type:String}},slots:{default:{type:Node}}};class Ba extends Yt{static get metadata(){return Ma}static get render(){return Vi}static get template(){return Ia}static get styles(){return':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}:host(:not([wrap])) .ui5-label-root{width:100%;font-weight:inherit;display:inline-block;white-space:nowrap;cursor:inherit;overflow:hidden}bdi{content:"";padding-right:.15625rem}:host(:not([wrap])) .ui5-label-text-wrapper{text-overflow:ellipsis;overflow:hidden;display:inline-block;vertical-align:top;max-width:100%}:host(:not([wrap])[required][show-colon]) .ui5-label-text-wrapper{max-width:calc(100% - .85rem)}:host(:not([wrap])[required]) .ui5-label-text-wrapper{max-width:calc(100% - .475rem)}:host(:not([wrap])[show-colon]) .ui5-label-text-wrapper{max-width:calc(100% - .2rem)}:host([show-colon]) .ui5-label-required-colon:before{content:":"}:host([required]) .ui5-label-required-colon:after{content:"*";color:var(--sapField_RequiredColor);font-size:1.25rem;font-weight:700;position:relative;font-style:normal;vertical-align:middle;line-height:0}:host([required][show-colon]) .ui5-label-required-colon:after{margin-right:0;margin-left:.125rem}:host([required][show-colon]) [dir=rtl] .ui5-label-required-colon:after{margin-right:.125rem;margin-left:0}'}_onclick(){const e=document.getElementById(this.for);e&&e.focus()}}Ba.define();const Ea=e=>Pi`<div class="ui5-checkbox-root ${Ri(e.classes.main)}" role="checkbox" aria-checked="${Cr(e.checked)}" aria-readonly="${Cr(e.ariaReadonly)}" aria-disabled="${Cr(e.ariaDisabled)}" aria-label="${Cr(e.ariaLabel)}" aria-labelledby="${Cr(e.ariaLabelledBy)}" aria-describedby="${Cr(e.ariaDescribedBy)}" tabindex="${Cr(e.tabIndex)}" @keydown="${e._onkeydown}" @keyup="${e._onkeyup}" @click="${e._onclick}" dir="${Cr(e.effectiveDir)}"><div id="${Cr(e._id)}-CbBg" class="ui5-checkbox-inner">${e.checked?Fa():void 0}<input id="${Cr(e._id)}-CB" type='checkbox' ?checked="${e.checked}" ?readonly="${e.readonly}" ?disabled="${e.disabled}" data-sap-no-tab-ref/></div>${e._label.text?Aa(e):void 0}${e.hasValueState?Na(e):void 0}<slot name="formSupport"></slot></div>`,Fa=e=>Pi`<ui5-icon name="accept" class="ui5-checkbox-icon"></ui5-icon>`,Aa=e=>Pi`<ui5-label id="${Cr(e._id)}-label" class="ui5-checkbox-label" ?wrap="${e._label.wrap}">${Cr(e._label.text)}</ui5-label>`,Na=e=>Pi`<span id="${Cr(e._id)}-descr" class="ui5-hidden-text">${Cr(e.valueStateText)}</span>`;M("@ui5/webcomponents-theme-base","sap_fiori_3",Nr),M("@ui5/webcomponents","sap_fiori_3",Or);const Oa={tag:"ui5-checkbox",languageAware:!0,properties:{disabled:{type:Boolean},readonly:{type:Boolean},checked:{type:Boolean},text:{type:String},valueState:{type:Pa,defaultValue:Pa.None},wrap:{type:Boolean},name:{type:String},ariaLabel:{type:String,defaultValue:void 0},_label:{type:Object}},events:{change:{}}};(class extends Yt{static get metadata(){return Oa}static get render(){return Vi}static get template(){return Ea}static get styles(){return'.ui5-hidden-text{position:absolute;clip:rect(1px,1px,1px,1px);user-select:none;left:0;top:0}:host(:not([hidden])){display:inline-block}:host{overflow:hidden;max-width:100%;outline:none}:host([disabled]) .ui5-checkbox-root{opacity:.5}:host([readonly]:not([value-state=Warning]):not([value-state=Error])) .ui5-checkbox-inner{background:var(--sapField_ReadOnly_Background);border:var(--_ui5_checkbox_inner_readonly_border);color:var(--sapContent_NonInteractiveIconColor)}:host([wrap][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([wrap][text]) .ui5-checkbox-root .ui5-checkbox-inner,:host([wrap][text]) .ui5-checkbox-root .ui5-checkbox-label{margin-top:var(--_ui5_checkbox_wrapped_content_margin_top)}:host([wrap][text]) .ui5-checkbox-root .ui5-checkbox-label{word-break:break-all}:host([wrap]) .ui5-checkbox-root:focus:before{bottom:var(--_ui5_checkbox_wrapped_focus_left_top_bottom_position)}:host([value-state=Error]) .ui5-checkbox--hoverable:hover .ui5-checkbox-inner,:host([value-state=Error]) .ui5-checkbox-inner{background:var(--sapField_InvalidBackground);border:var(--_ui5_checkbox_inner_error_border);color:var(--sapField_InvalidColor)}:host([value-state=Warning]) .ui5-checkbox--hoverable:hover .ui5-checkbox-inner,:host([value-state=Warning]) .ui5-checkbox-inner{background:var(--sapField_WarningBackground);border:var(--_ui5_checkbox_inner_warning_border);color:var(--sapField_WarningColor)}:host([value-state=Information]) .ui5-checkbox--hoverable:hover .ui5-checkbox-inner,:host([value-state=Information]) .ui5-checkbox-inner{background:var(--sapField_InformationBackground);border:var(--_ui5_checkbox_inner_information_border);color:var(--sapField_InformationColor)}:host([value-state=Warning]) .ui5-checkbox-icon{color:var(--_ui5_checkbox_checkmark_warning_color)}:host([text]) .ui5-checkbox-root{padding-right:0}:host([text]) .ui5-checkbox-root:focus:before{right:0}.ui5-checkbox-root{position:relative;display:inline-flex;align-items:center;justify-content:center;width:100%;min-height:var(--_ui5_checkbox_width_height);min-width:var(--_ui5_checkbox_width_height);padding:0 var(--_ui5_checkbox_wrapper_padding);box-sizing:border-box;outline:none;-webkit-tap-highlight-color:rgba(0,0,0,0)}.ui5-checkbox-root:after{content:"";min-height:inherit;font-size:0}.ui5-checkbox-root:focus:before{content:"";position:absolute;top:var(--_ui5_checkbox_focus_position);left:var(--_ui5_checkbox_focus_position);right:var(--_ui5_checkbox_focus_position);bottom:var(--_ui5_checkbox_focus_position);border:var(--_ui5_checkbox_focus_outline)}.ui5-checkbox--hoverable:hover .ui5-checkbox-inner{background:var(--_ui5_checkbox_hover_background);border-color:var(--sapField_Hover_BorderColor)}.ui5-checkbox-inner{display:flex;justify-content:center;align-items:center;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(--sapField_Background);color:var(--_ui5_checkbox_checkmark_color);box-sizing:border-box;position:relative;cursor:default;pointer-events:none}.ui5-checkbox-icon{color:currentColor;cursor:default}.ui5-checkbox-inner input{-webkit-appearance:none;visibility:hidden;width:0;left:0;position:absolute;font-size:inherit}.ui5-checkbox-root .ui5-checkbox-label{margin-left:var(--_ui5_checkbox_wrapper_padding);cursor:default;text-overflow:ellipsis;overflow:hidden;pointer-events:none;user-select:none;-ms-user-select:none;-webkit-user-select:none}.ui5-checkbox-icon{width:var(--_ui5_checkbox_icon_size);height:var(--_ui5_checkbox_icon_size)}:host([text]) [dir=rtl].ui5-checkbox-root{padding-left:0;padding-right:var(--_ui5_checkbox_wrapper_padding)}:host([text]) [dir=rtl].ui5-checkbox-root:focus:before{left:0;right:var(--_ui5_checkbox_focus_position)}:host([text]) [dir=rtl].ui5-checkbox-root .ui5-checkbox-label{margin-left:0;margin-right:var(--_ui5_checkbox_compact_wrapper_padding)}'}constructor(){super(),this._label={},this.i18nBundle=br("@ui5/webcomponents")}onBeforeRendering(){this.syncLabel(),this._enableFormSupport()}syncLabel(){this._label=Object.assign({},this._label),this._label.text=this.text,this._label.wrap=this.wrap,this._label.textDirection=this.textDirection}_enableFormSupport(){const e=c("FormSupport");e?e.syncNativeHiddenInput(this,(e,t)=>{t.disabled=e.disabled||!e.checked,t.value=e.checked?"on":""}):this.name&&console.warn('In order for the "name" property to have effect, you should also: import "@ui5/webcomponents/dist/features/InputElementsFormSupport.js";')}_onclick(){this.toggle()}_onkeydown(e){rr(e)&&e.preventDefault(),ir(e)&&this.toggle()}_onkeyup(e){rr(e)&&this.toggle()}toggle(){return this.canToggle()&&(this.checked=!this.checked,this.fireEvent("change"),this.fireEvent("value-changed")),this}canToggle(){return!(this.disabled||this.readonly)}valueStateTextMappings(){const e=this.i18nBundle;return{Error:e.getText(na),Warning:e.getText(sa)}}get classes(){return{main:{"ui5-checkbox--hoverable":!this.disabled&&!this.readonly&&Sa()}}}get ariaReadonly(){return this.readonly?"true":void 0}get ariaDisabled(){return this.disabled?"true":void 0}get ariaLabelledBy(){return this.text?this._id+"-label":void 0}get ariaDescribedBy(){return this.hasValueState?this._id+"-descr":void 0}get hasValueState(){return this.valueState!==Pa.None}get valueStateText(){return this.valueStateTextMappings()[this.valueState]}get tabIndex(){const e=this.getAttribute("tabindex");return this.disabled?void 0:e||"0"}static async onDefine(){await Promise.all([Ba.define(),Lr.define(),Te("@ui5/webcomponents")])}}).define();class $a{static initialize(){$a.resizeObserver=new window.ResizeObserver(e=>{e.forEach(e=>{$a.observedObjects.get(e.target).forEach(e=>e())})}),$a.observedObjects=new Map}static attachListener(e,t){const i=$a.observedObjects,r=i.get(e)||[];r.length||$a.resizeObserver.observe(e),i.set(e,[...r,t])}static detachListener(e,t){const i=$a.observedObjects.get(e)||[],r=i.filter(e=>e!==t);!i.length||i.length===r.length&&0!==i.length||($a.observedObjects.set(e,r),r.length||$a.resizeObserver.unobserve(e))}}class La{static initialize(){La.initialized=!1,La.resizeInterval=void 0,La.resizeListeners=new Map}static attachListener(e,t){const i=La.resizeListeners.get(e),r=i?i.callbacks:[];La.resizeListeners.set(e,{width:e?e.offsetWidth:0,height:e?e.offsetHeight:0,callbacks:r.concat(t)}),La.initListener()}static initListener(){La.resizeListeners.size>0&&!La.initialized&&(La.resizeInterval=setInterval(La.checkListeners.bind(La),300))}static checkListeners(){La.resizeListeners.forEach((e,t)=>{(La.checkSizes(e,t)||e&&!e._hasBeenRendered)&&(La.updateSizes(e,t.offsetWidth,t.offsetHeight),e.callbacks.forEach(e=>e()),e._hasBeenRendered=!0)})}static updateSizes(e,t,i){e.width=t,e.height=i}static checkSizes(e,t){const i=e.height,r=e.width,a=t.offsetHeight,o=t.offsetWidth;return i!==a||r!==o}static detachListener(e,t){const i=La.resizeListeners.get(e),r=i?i.callbacks:[],a=r.filter(e=>e!==t);!i||r.length===a.length&&0!==r.length||(La.resizeListeners.set(e,Object.assign(i,{callbacks:a})),a.length||(i.callbacks=null,La.resizeListeners.delete(e)),0===La.resizeListeners.size&&(La.initialized=!1,clearInterval(La.resizeInterval)))}}class Ra{static initialize(){Ra.Implementation=window.ResizeObserver?$a:La,Ra.Implementation.initialize()}static attachListener(e,t){Ra.Implementation.attachListener.call(Ra.Implementation,e,t)}static detachListener(e,t){Ra.Implementation.detachListener.call(Ra.Implementation,e,t)}static register(e,t){e.isUI5Element&&(e=e.getDomRef()),Ra.attachListener(e,t)}static deregister(e,t){e.isUI5Element&&(e=e.getDomRef()),Ra.detachListener(e,t)}}Ra.initialize();Er("decline",{pathData:"M425.25 109q5 5 5 11.5t-5 11.5l-124 124 124 125q11 11 0 22l-22 23q-12 11-23 0l-125-125-124 125q-5 5-11.5 5t-11.5-5l-22-23q-5-5-5-11t5-11l124-125-124-124q-5-5-5-11.5t5-11.5l22-23q12-11 23 0l124 125 125-125q11-11 23 0l22 23z",ltr:!1});const za={Text:"Text",Email:"Email",Number:"Number",Password:"Password",Tel:"Tel",URL:"URL"};class Ha extends nt{static isValid(e){return!!za[e]}}Ha.generataTypeAcessors(za);const Ua=e=>"SLOT"!==e.nodeName&&(e.offsetWidth<=0&&e.offsetHeight<=0||"hidden"===e.style.visibility),ja=/^(?:a|area)$/i,Va=/^(?:input|select|textarea|button)$/i,Wa=e=>{if(e.disabled)return!1;const t=e.getAttribute("tabindex");return null!=t?parseInt(t)>=0:Va.test(e.nodeName)||ja.test(e.nodeName)&&e.href},Ya=e=>e.hasAttribute("data-ui5-focus-trap"),qa=e=>!e||Ua(e)?null:Ga(e,!0),Ga=(e,t)=>{let i,r;if(e.shadowRoot)i=t?e.shadowRoot.firstChild:e.shadowRoot.lastChild;else if(e.assignedNodes&&e.assignedNodes()){const r=e.assignedNodes();i=t?r[0]:r[r.length-1]}else i=t?e.firstChild:e.lastChild;for(;i;){const e=i;if(i=i.isUI5Element?i.getFocusDomRef():i,!i)return null;if(1===i.nodeType&&!Ua(i)&&!Ya(i)){if(Wa(i))return i&&"function"==typeof i.focus?i:null;if(r=Ga(i,t),r)return r&&"function"==typeof r.focus?r:null}i=t?e.nextSibling:e.previousSibling}return null},Ja=e=>Pi`<section style="${Hi(e.styles.root)}" class="${Ri(e.classes.root)}" role="dialog" aria-modal="${Cr(e._ariaModal)}" aria-label="${Cr(e._ariaLabel)}" aria-labelledby="${Cr(e._ariaLabelledBy)}"><span class="first-fe" data-ui5-focus-trap tabindex="0" @focusin=${e.forwardToLast}></span><div style="${Hi(e.styles.content)}" class="${Ri(e.classes.content)}" @scroll="${e._scroll}"><slot></slot></div><span class="last-fe" data-ui5-focus-trap tabindex="0" @focusin=${e.forwardToFirst}></span></section> `,Xa=e=>Pi`<div class="ui5-block-layer" ?hidden=${e._blockLayerHidden} style="${Hi(e.styles.blockLayer)}"></div>`;let Qa=100;const Za=()=>{let e=document.activeElement;for(;e.shadowRoot&&e.shadowRoot.activeElement;)e=e.shadowRoot.activeElement;return e&&"function"==typeof e.focus?e:null},Ka=(e,t)=>{let i=e;if(i.shadowRoot&&(i=Array.from(i.shadowRoot.children).find(e=>"style"!==e.localName)),i===t)return!0;const r="slot"===i.localName?i.assignedNodes():i.children;return r?Array.from(r).some(e=>Ka(e,t)):void 0},eo=(e,t)=>{let i,r;if(e.touches){const t=e.touches[0];i=t.clientX,r=t.clientY}else i=e.clientX,r=e.clientY;return((e,t,i)=>e>=i.left&&e<=i.right&&t>=i.top&&t<=i.bottom)(i,r,t)},to=e=>{const t=e.parentElement||e.getRootNode&&e.getRootNode().host;return t.openBy&&t.isUI5Element||t.open&&t.isUI5Element||t===document.documentElement?t:to(t)},io=()=>(Qa+=2,Qa);let ro=[];const ao=(e,t=[])=>{ro.includes(e)||ro.push({instance:e,parentPopovers:t}),1===ro.length&&so()},oo=e=>{ro=ro.filter(t=>t!==e.instance),ro.length||lo()},no=e=>{ro.length&&lr(e)&&ro.pop().instance.close(!0)},so=()=>{document.addEventListener("keydown",no)},lo=()=>{document.removeEventListener("keydown",no)};M("@ui5/webcomponents-theme-base","sap_fiori_3",Nr),M("@ui5/webcomponents","sap_fiori_3",Or);M("@ui5/webcomponents-theme-base","sap_fiori_3",Nr),M("@ui5/webcomponents","sap_fiori_3",Or);const uo={managedSlots:!0,slots:{default:{type:HTMLElement}},properties:{initialFocus:{type:String},preventFocusRestore:{type:Boolean},opened:{type:Boolean},ariaLabel:{type:String,defaultValue:void 0},_disableInitialFocus:{type:Boolean},_blockLayerHidden:{type:Boolean}},events:{"before-open":{},"after-open":{},"before-close":{escPressed:{type:Boolean}},"after-close":{}}};let co=!1;co||(A("\n\t\t.ui5-popup-scroll-blocker {\n\t\t\twidth: 100%;\n\t\t\theight: 100%;\n\t\t\tposition: fixed;\n\t\t\toverflow: hidden;\n\t\t}\n\t",{"data-ui5-popup-scroll-blocker":""}),co=!0);class ho extends Yt{static get metadata(){return uo}static get render(){return Vi}static get styles(){return":host{min-width:1px;display:none;position:fixed}"}static get template(){return Ja}static get staticAreaTemplate(){return Xa}static get staticAreaStyles(){return".ui5-block-layer{display:none;position:fixed;background-color:var(--sapBlockLayer_Background);opacity:.6;top:-500px;left:-500px;right:-500px;bottom:-500px;outline:none;pointer-events:all;z-index:-1}.ui5-block-layer:not([hidden]){display:inline-block}"}static blockBodyScrolling(){document.body.style.top=`-${window.pageYOffset}px`,document.body.classList.add("ui5-popup-scroll-blocker")}static unblockBodyScrolling(){document.body.classList.remove("ui5-popup-scroll-blocker"),window.scrollTo(0,-parseFloat(document.body.style.top)),document.body.style.top=""}_scroll(e){this.fireEvent("scroll",{scrollTop:e.target.scrollTop,targetRef:e.target})}forwardToFirst(){const e=qa(this);e&&e.focus()}forwardToLast(){const e=!(t=this)||Ua(t)?null:Ga(t,!1);var t;e&&e.focus()}applyInitialFocus(){this.applyFocus()}applyFocus(){const e=this.getRootNode().getElementById(this.initialFocus)||document.getElementById(this.initialFocus)||qa(this);e&&e.focus()}isOpen(){return this.opened}isFocusWithin(){return(e=>{const t=Za();return!!t&&Ka(e,t)})(this.shadowRoot.querySelector(".ui5-popup-root"))}open(e){!this.fireEvent("before-open",{},!0,!1)||(this.isModal&&(this.getStaticAreaItemDomRef(),this._blockLayerHidden=!1,ho.blockBodyScrolling()),this._zIndex=io(),this.style.zIndex=this._zIndex,this._focusedElementBeforeOpen=Za(),this.show(),this._disableInitialFocus||e||this.applyInitialFocus(),this._addOpenedPopup(),this.opened=!0,this.fireEvent("after-open",{},!1,!1))}_addOpenedPopup(){ao(this)}close(e=!1,t=!1,i=!1){if(!this.opened)return;!this.fireEvent("before-close",{escPressed:e},!0,!1)||(this.isModal&&(this._blockLayerHidden=!0,ho.unblockBodyScrolling()),this.hide(),this.opened=!1,t||this._removeOpenedPopup(),this.preventFocusRestore||i||this.resetFocus(),this.fireEvent("after-close",{},!1,!1))}_removeOpenedPopup(){oo(this)}resetFocus(){this._focusedElementBeforeOpen&&(this._focusedElementBeforeOpen.focus(),this._focusedElementBeforeOpen=null)}show(){this.style.display="block"}hide(){this.style.display="none"}onExitDOM(){this.isOpen()&&(ho.unblockBodyScrolling(),this._removeOpenedPopup())}get isModal(){}get _ariaLabelledBy(){}get _ariaModal(){}get _ariaLabel(){return this.ariaLabel||void 0}get styles(){return{root:{},content:{},blockLayer:{zIndex:this._zIndex-1}}}get classes(){return{root:{},content:{}}}}const po={Left:"Left",Right:"Right",Top:"Top",Bottom:"Bottom"};class _o extends nt{static isValid(e){return!!po[e]}}_o.generataTypeAcessors(po);const mo={Center:"Center",Top:"Top",Bottom:"Bottom",Stretch:"Stretch"};class go extends nt{static isValid(e){return!!mo[e]}}go.generataTypeAcessors(mo);const fo={Center:"Center",Left:"Left",Right:"Right",Stretch:"Stretch"};class vo extends nt{static isValid(e){return!!fo[e]}}vo.generataTypeAcessors(fo);let yo=null;const bo=[],wo=e=>{bo.forEach(e=>{e.instance.reposition()})},ko=e=>{const t=[...ro],i=t[t.length-1].instance.openBy;if(0!==t.length&&i)for(let i=t.length-1;-1!==i;i--){const r=t[i].instance;if(r.isModal||r.isOpenerClicked(e))return;if(eo(e,r.getBoundingClientRect()))break;r.close()}},xo=e=>{const t=So(e);var i;ao(e,t),bo.push({instance:e,parentPopovers:t}),(i=e)&&i.shadowRoot.addEventListener("scroll",wo,!0),1===bo.length&&(document.body.addEventListener("scroll",wo,!0),document.addEventListener("mousedown",ko),yo=setInterval(()=>{wo()},300))},Co=e=>{const t=[e];for(let i=0;i<bo.length;i++){const r=bo[i].parentPopovers.indexOf(e);bo[i].parentPopovers.length>0&&r>-1&&t.push(bo[i].instance)}for(let e=t.length-1;e>=0;e--)for(let r=0;r<bo.length;r++){let a;if(t[e]===bo[r].instance&&(a=r),a>=0){oo(bo[a].instance),(i=bo[a].instance)&&i.shadowRoot.removeEventListener("scroll",wo);bo.splice(a,1)[0].instance.close(!1,!0)}}var i;bo.length||(document.body.removeEventListener("scroll",wo,!0),document.removeEventListener("mousedown",ko),clearInterval(yo))},So=e=>{let t=e.parentNode;const i=[];for(;t.parentNode;){for(let e=0;e<bo.length;e++)t&&t===bo[e].instance&&i.push(t);t=t.parentNode}return i},To=e=>Pi`<section style="${Hi(e.styles.root)}" class="${Ri(e.classes.root)}" role="dialog" aria-modal="${Cr(e._ariaModal)}" aria-label="${Cr(e._ariaLabel)}" aria-labelledby="${Cr(e._ariaLabelledBy)}"><span class="first-fe" data-ui5-focus-trap tabindex="0" @focusin=${e.forwardToLast}></span><span class="ui5-popover-arrow" style="${Hi(e.styles.arrow)}"></span>${e._displayHeader?Do(e):void 0}<div style="${Hi(e.styles.content)}" class="${Ri(e.classes.content)}" @scroll="${e._scroll}"><slot></slot></div>${e._displayFooter?Mo(e):void 0}<span class="last-fe" data-ui5-focus-trap tabindex="0" @focusin=${e.forwardToFirst}></span></section> `,Do=e=>Pi`<header class="ui5-popup-header-root" id="ui5-popup-header">${e.header.length?Po():Io(e)}</header>`,Po=e=>Pi`<slot name="header"></slot>`,Io=e=>Pi`<h2 class="ui5-popup-header-text">${Cr(e.headerText)}</h2>`,Mo=e=>Pi`${e.footer.length?Bo():void 0}`,Bo=e=>Pi`<footer class="ui5-popup-footer-root"><slot name="footer"></slot></footer>`;M("@ui5/webcomponents-theme-base","sap_fiori_3",Nr),M("@ui5/webcomponents","sap_fiori_3",Or);var Eo=":host{display:none;position:fixed;min-width:6.25rem;background:var(--sapGroup_ContentBackground);box-shadow:var(--sapContent_Shadow2);border-radius:.25rem;min-height:2rem;box-sizing:border-box}.ui5-popup-root{background:inherit;border-radius:inherit;width:100%;height:100%;box-sizing:border-box;display:flex;flex-direction:column;overflow:hidden;max-height:94vh;max-width:90vw}@media screen and (-ms-high-contrast:active){.ui5-popup-root{border:1px solid var(--sapPageFooter_BorderColor)}}.ui5-popup-root .ui5-popup-header-root{box-shadow:var(--sapContent_Shadow0);margin-bottom:.125rem}.ui5-popup-footer-root{background:var(--sapPageFooter_Background);border-top:1px solid var(--sapPageFooter_BorderColor);color:var(--sapPageFooter_TextColor)}.ui5-popup-footer-root,.ui5-popup-header-root,:host([header-text]) .ui5-popup-header-text{margin:0;color:var(--sapPageHeader_TextColor);font-size:1rem;font-weight:400;font-family:var(--sapFontFamily);display:flex;justify-content:center;align-items:center}.ui5-popup-content{overflow:auto;padding:var(--_ui5_popup_content_padding);box-sizing:border-box}:host([no-padding]) .ui5-popup-content{padding:0}:host([header-text]) .ui5-popup-header-text{padding:0 .25rem;text-align:center;min-height:3rem;max-height:3rem;line-height:3rem;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;max-width:100%;display:inline-block}:host(:not([header-text])) .ui5-popup-header-text{display:none}";M("@ui5/webcomponents-theme-base","sap_fiori_3",Nr),M("@ui5/webcomponents","sap_fiori_3",Or);const Fo={tag:"ui5-popover",properties:{headerText:{type:String},placementType:{type:_o,defaultValue:_o.Right},horizontalAlign:{type:vo,defaultValue:vo.Center},verticalAlign:{type:go,defaultValue:go.Center},modal:{type:Boolean},noArrow:{type:Boolean},allowTargetOverlap:{type:Boolean},arrowTranslateX:{type:Rt,defaultValue:0,noAttribute:!0},arrowTranslateY:{type:Rt,defaultValue:0,noAttribute:!0},actualPlacementType:{type:_o,defaultValue:_o.Right},_maxContentHeight:{type:Rt}},managedSlots:!0,slots:{header:{type:HTMLElement},footer:{type:HTMLElement}},events:{}};class Ao extends ho{static get metadata(){return Fo}static get styles(){return[Eo,'.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(--sapGroup_ContentBackground);box-shadow:var(--sapContent_Shadow3);transform:rotate(-45deg)}:host([actual-placement-type=Bottom]) .ui5-popover-arrow{left:calc(50% - .5625rem);top:-.5rem;height:.5625rem}:host([actual-placement-type=Bottom]) .ui5-popover-arrow:after{margin:.1875rem 0 0 .1875rem}:host([actual-placement-type=Left]) .ui5-popover-arrow{top:calc(50% - .5625rem);right:-.5625rem;width:.5625rem}:host([actual-placement-type=Left]) .ui5-popover-arrow:after{margin:.1875rem 0 0 -.375rem}:host([actual-placement-type=Top]) .ui5-popover-arrow{left:calc(50% - .5625rem);height:.5625rem;bottom:calc(-1*(var(--_ui5_popup_content_padding) + 2px))}:host([actual-placement-type=Top]) .ui5-popover-arrow:after{margin:-.375rem 0 0 .125rem}:host(:not([actual-placement-type])) .ui5-popover-arrow,:host([actual-placement-type=Right]) .ui5-popover-arrow{left:-.5625rem;top:calc(50% - .5625rem);width:.5625rem;height:1rem}:host(:not([actual-placement-type])) .ui5-popover-arrow:after,:host([actual-placement-type=Right]) .ui5-popover-arrow:after{margin:.125rem 0 0 .25rem}:host([no-arrow]) .ui5-popover-arrow{display:none}']}static get template(){return To}static get MIN_OFFSET(){return 10}isOpenerClicked(e){const t=e.target;return t===this._opener||t.getFocusDomRef&&t.getFocusDomRef()===this._opener}openBy(e,t=!1){e&&!this.opened&&(this._opener=e,super.open(t))}_addOpenedPopup(){xo(this)}_removeOpenedPopup(){Co(this)}shouldCloseDueToOverflow(e,t){const i={Right:t.right,Left:t.left,Top:t.top,Bottom:t.bottom},r=to(this._opener);let a=!1,o=!1;if(r.openBy){const e=r.contentDOM.getBoundingClientRect();a=t.top>e.top+e.height,o=t.top+t.height<e.top}return i[e]<0||i[e]+32>r.innerHeight||a||o}shouldCloseDueToNoOpener(e){return 0===e.top&&0===e.bottom&&0===e.left&&0===e.right}reposition(){this.show()}show(){let e;const t=this.popoverSize,i=this._opener.getBoundingClientRect();e=this.shouldCloseDueToNoOpener(i)&&this.isFocusWithin()?this._oldPlacement:this.calcPlacement(i,t);const r=this.horizontalAlign===vo.Stretch;if(this._preventRepositionAndClose)return this.close();if(this._oldPlacement&&this._oldPlacement.left===e.left&&this._oldPlacement.top===e.top&&r)return super.show(),void(this.style.width=this._width);this._oldPlacement=e;const a=0===this._left,o=0===this._top;this.actualPlacementType=e.placementType,this.arrowTranslateX=a?e.arrowX-Ao.MIN_OFFSET:e.arrowX,this.arrowTranslateY=o?e.arrowY-Ao.MIN_OFFSET:e.arrowY,this.style.left=(a?Ao.MIN_OFFSET:this._left)+"px",this.style.top=(o?Ao.MIN_OFFSET:this._top)+"px",super.show(),r&&this._width&&(this.style.width=this._width)}get popoverSize(){let e,t,i=this.getBoundingClientRect();return this.opened?(e=i.width,t=i.height,{width:e,height:t}):(this.style.visibility="hidden",this.style.display="block",i=this.getBoundingClientRect(),e=i.width,t=i.height,this.hide(),this.style.visibility="visible",{width:e,height:t})}get contentDOM(){return this.shadowRoot.querySelector(".ui5-popup-content")}get arrowDOM(){return this.shadowRoot.querySelector(".ui5-popover-arrow")}calcPlacement(e,t){let i=0,r=0;const a=this.allowTargetOverlap,o=document.documentElement.clientWidth,n=document.documentElement.clientHeight;let s=n,l="",u="";const d=this.getActualPlacementType(e,t);this._preventRepositionAndClose=this.shouldCloseDueToNoOpener(e)||this.shouldCloseDueToOverflow(d,e);const c=d===_o.Top||d===_o.Bottom;this.horizontalAlign===vo.Stretch&&c?(t.width=e.width,l=e.width+"px"):this.verticalAlign!==go.Stretch||c||(t.height=e.height,u=e.height+"px"),this._width=l,this._height=u;const h=this.noArrow?0:8;switch(d){case _o.Top:i=this.getVerticalLeft(e,t),r=Math.max(e.top-t.height-h,0),a||(s=e.top-h);break;case _o.Bottom:i=this.getVerticalLeft(e,t),a?r=Math.max(Math.min(e.bottom+h,n-t.height),0):(r=e.bottom+h,s=n-e.bottom-h);break;case _o.Left:i=Math.max(e.left-t.width-h,0),r=this.getHorizontalTop(e,t);break;case _o.Right:i=a?Math.max(Math.min(e.left+e.width+h,o-t.width),0):e.left+e.width+h,r=this.getHorizontalTop(e,t)}c?t.width>o||i<0?i=0:i+t.width>o&&(i-=i+t.width-o):t.height>n||r<0?r=0:r+t.height>n&&(r-=r+t.height-n);let p=Math.round(s);if(this.header.length||this.headerText){const e=this.shadowRoot.querySelector(".ui5-popup-header-root")||this.shadowRoot.querySelector(".ui5-popup-header-text");e&&(p=Math.round(s-e.offsetHeight))}this._maxContentHeight=p;const _=c?e.left+e.width/2-i-t.width/2:0,m=c?0:e.top+e.height/2-r-t.height/2;return(void 0===this._left||Math.abs(this._left-i)>1.5)&&(this._left=Math.round(i)),(void 0===this._top||Math.abs(this._top-r)>1.5)&&(this._top=Math.round(r)),{arrowX:Math.round(_),arrowY:Math.round(m),top:this._top,left:this._left,placementType:d}}fallbackPlacement(e,t,i,r){return i.left>r.width?_o.Left:e-i.right>i.left?_o.Right:t-i.bottom>r.height?_o.Bottom:t-i.bottom<i.top?_o.Top:void 0}getActualPlacementType(e,t){const i=this.placementType;let r=i;const a=document.documentElement.clientWidth,o=document.documentElement.clientHeight;switch(i){case _o.Top:e.top<t.height&&e.top<o-e.bottom&&(r=_o.Bottom);break;case _o.Bottom:o-e.bottom<t.height&&o-e.bottom<e.top&&(r=_o.Top);break;case _o.Left:e.left<t.width&&(r=this.fallbackPlacement(a,o,e,t)||i);break;case _o.Right:a-e.right<t.width&&(r=this.fallbackPlacement(a,o,e,t)||i)}return r}getVerticalLeft(e,t){let i;switch(this.horizontalAlign){case vo.Center:case vo.Stretch:i=e.left-(t.width-e.width)/2;break;case vo.Left:i=e.left;break;case vo.Right:i=e.right-t.width}return i}getHorizontalTop(e,t){let i;switch(this.verticalAlign){case go.Center:case go.Stretch:i=e.top-(t.height-e.height)/2;break;case go.Top:i=e.top;break;case go.Bottom:i=e.bottom-t.height}return i}get isModal(){return this.modal}get _ariaLabelledBy(){return this.ariaLabel?void 0:"ui5-popup-header"}get _ariaModal(){return!0}get styles(){return{...super.styles,content:{"max-height":this._maxContentHeight+"px"},arrow:{transform:`translate(${this.arrowTranslateX}px, ${this.arrowTranslateY}px)`}}}get classes(){return{root:{"ui5-popup-root":!0},content:{"ui5-popup-content":!0}}}get _displayHeader(){return!0}get _displayFooter(){return!0}}Ao.define();const No=e=>Pi`<div class="ui5-input-root" @focusin="${e._onfocusin}" @focusout="${e._onfocusout}"><div class="ui5-input-content"><input id="${Cr(e._id)}-inner" class="ui5-input-inner" type="${Cr(e.inputType)}" inner-input ?disabled="${e.disabled}" ?readonly="${e._readonly}" ?required="${e.required}" .value="${Cr(e.value)}" placeholder="${Cr(e.placeholder)}" maxlength="${Cr(e.maxlength)}" role="${Cr(e.accInfo.input.role)}" aria-owns="${Cr(e.accInfo.input.ariaOwns)}" ?aria-invalid="${e.accInfo.input.ariaInvalid}" aria-haspopup="${Cr(e.accInfo.input.ariaHasPopup)}" aria-describedby="${Cr(e.accInfo.input.ariaDescribedBy)}" aria-autocomplete="${Cr(e.accInfo.input.ariaAutoComplete)}" aria-expanded="${Cr(e.accInfo.input.ariaExpanded)}" aria-label="${Cr(e.accInfo.input.ariaLabel)}" @input="${e._handleInput}" @change="${e._handleChange}" @keydown="${e._onkeydown}" @keyup="${e._onkeyup}" @click=${e._click} data-sap-no-tab-ref data-sap-focus-ref step="${Cr(e.step)}" />${e.icon.length?Oo():void 0}${e.showSuggestions?$o(e):void 0}${e.accInfo.input.ariaDescription?Lo(e):void 0}${e.hasValueState?Ro(e):void 0}</div><slot name="formSupport"></slot></div>`,Oo=e=>Pi`<div class="ui5-input-icon-root"><slot name="icon"></slot></div>`,$o=e=>Pi`<span id="${Cr(e._id)}-suggestionsText" class="ui5-hidden-text">${Cr(e.suggestionsText)}</span><span id="${Cr(e._id)}-selectionText" class="ui5-hidden-text" aria-live="polite" role="status"></span><span id="${Cr(e._id)}-suggestionsCount" class="ui5-hidden-text" aria-live="polite">${Cr(e.availableSuggestionsCount)}</span>`,Lo=e=>Pi`<span id="${Cr(e._id)}-descr" class="ui5-hidden-text">${Cr(e.accInfo.input.ariaDescription)}</span>`,Ro=e=>Pi`<span id="${Cr(e._id)}-valueStateDesc" class="ui5-hidden-text">${Cr(e.valueStateText)}</span>`,zo=e=>Pi`${e.showSuggestions?Ho(e):void 0}${e.hasValueStateMessage?an(e):void 0} `,Ho=e=>Pi`<ui5-responsive-popover no-arrow _disable-initial-focus placement-type="Bottom" horizontal-align="Left" style="${Hi(e.styles.suggestionsPopover)}" @ui5-after-open="${Cr(e._afterOpenPopover)}" @ui5-after-close="${Cr(e._afterClosePopover)}" @scroll="${e._scroll}">${e._isPhone?Uo(e):void 0}${e._isPhone?void 0:qo(e)}<ui5-list separators="${Cr(e.suggestionSeparators)}">${$i(e.suggestionsTexts,(e,t)=>e._id||t,(e,t)=>Zo(e))}</ui5-list>${e._isPhone?rn(e):void 0}</ui5-responsive-popover>`,Uo=e=>Pi`<div slot="header" class="ui5-responsive-popover-header"><div class="row"><span>${Cr(e._headerTitleText)}</span><ui5-button class="ui5-responsive-popover-close-btn" icon="decline" design="Transparent" @click="${e._closeRespPopover}"></ui5-button></div><div class="row"><div class="input-root-phone"><input class="ui5-input-inner-phone" type="${Cr(e.inputType)}" .value="${Cr(e.value)}" inner-input placeholder="${Cr(e.placeholder)}" @input="${e._handleInput}" @change="${e._handleChange}" /></div></div>${e.hasValueStateMessage?jo(e):void 0}</div>`,jo=e=>Pi`<div class="row ${Ri(e.classes.popoverValueState)}" style="${Hi(e.styles.suggestionPopoverHeader)}">${e.shouldDisplayDefaultValueStateMessage?Vo(e):Wo(e)}</div>`,Vo=e=>Pi`${Cr(e.valueStateText)}`,Wo=e=>Pi`${$i(e.valueStateMessageText,(e,t)=>e._id||t,(e,t)=>Yo(e))}`,Yo=(e,t,i)=>Pi`${Cr(e)}`,qo=e=>Pi`${e.hasValueStateMessage?Go(e):void 0}`,Go=e=>Pi`<div slot="header" class="ui5-responsive-popover-header ${Ri(e.classes.popoverValueState)}" style=${Hi(e.styles.suggestionPopoverHeader)}>${e.shouldDisplayDefaultValueStateMessage?Jo(e):Xo(e)}</div>`,Jo=e=>Pi`${Cr(e.valueStateText)}`,Xo=e=>Pi`${$i(e.valueStateMessageText,(e,t)=>e._id||t,(e,t)=>Qo(e))}`,Qo=(e,t,i)=>Pi`${Cr(e)}`,Zo=(e,t,i)=>Pi`${e.group?Ko(e):en(e)}`,Ko=(e,t,i)=>Pi`<ui5-li-groupheader data-ui5-key="${Cr(e.key)}">${ji(e.text)}</ui5-li-groupheader>`,en=(e,t,i)=>Pi`<ui5-li-suggestion-item image="${Cr(e.image)}" icon="${Cr(e.icon)}" info="${Cr(e.info)}" type="${Cr(e.type)}" info-state="${Cr(e.infoState)}" @ui5-_item-press="${Cr(e.fnOnSuggestionItemPress)}" data-ui5-key="${Cr(e.key)}">${ji(e.text)}${e.description?tn(e):void 0}</ui5-li-suggestion-item>`,tn=(e,t,i)=>Pi`<span slot="richDescription">${ji(e.description)}</span>`,rn=e=>Pi`<div slot="footer" class="ui5-responsive-popover-footer"><ui5-button design="Transparent" @click="${e._closeRespPopover}">OK</ui5-button></div>`,an=e=>Pi`<ui5-popover skip-registry-update _disable-initial-focus prevent-focus-restore no-padding no-arrow class="ui5-valuestatemessage-popover" placement-type="Bottom"><div slot="header" class="ui5-responsive-popover-header ${Ri(e.classes.popoverValueState)}" style="${Hi(e.styles.popoverHeader)}">${e.shouldDisplayDefaultValueStateMessage?on(e):nn(e)}</div></ui5-popover>`,on=e=>Pi`${Cr(e.valueStateText)}`,nn=e=>Pi`${$i(e.valueStateMessageText,(e,t)=>e._id||t,(e,t)=>sn(e))}`,sn=(e,t,i)=>Pi`${Cr(e)}`;M("@ui5/webcomponents-theme-base","sap_fiori_3",Nr),M("@ui5/webcomponents","sap_fiori_3",Or);M("@ui5/webcomponents-theme-base","sap_fiori_3",Nr),M("@ui5/webcomponents","sap_fiori_3",Or);var ln=".input-root-phone{flex:1;height:var(--_ui5_input_height);color:var(--sapField_TextColor);font-size:var(--sapFontSize);font-family:var(--sapFontFamily);background-color:var(--sapField_Background);border:1px solid var(--sapField_BorderColor);border-radius:var(--_ui5_input_wrapper_border_radius);box-sizing:border-box}.input-root-phone [inner-input]{padding:0 .5rem;width:100%;height:100%}.input-root-phone[value-state]:not([value-state=None])[focused]{outline:var(--_ui5_input_focus_border_width) dotted var(--sapContent_FocusColor);outline-offset:-4px}.input-root-phone [value-state=Error] [input-icon][data-ui5-compact-size],.input-root-phone [value-state=Success] [input-icon][data-ui5-compact-size],.input-root-phone [value-state=Warning] [input-icon][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}[inner-input]::-moz-selection,[inner-input]::selection{background:var(--sapSelected);color:var(--sapContent_contrastTextColor)}[inner-input]::-webkit-input-placeholder{font-style:italic;color:var(--sapField_PlaceholderTextColor)}[inner-input]::-moz-placeholder{font-style:italic;color:var(--sapField_PlaceholderTextColor)}[inner-input]:-ms-input-placeholder{font-style:italic;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=Error] [inner-input],.input-root-phone[value-state=Warning] [inner-input]{font-style:var(--_ui5_input_error_warning_font_style)}.input-root-phone[value-state=Error] [inner-input]{font-weight:var(--_ui5_input_error_font_weight)}.input-root-phone[value-state=Error]:not([readonly]){background-color:var(--sapField_InvalidBackground);border-color:var(--sapField_InvalidColor)}.input-root-phone[value-state=Error]:not([readonly]):not([disabled]),.input-root-phone[value-state=Warning]:not([readonly]):not([disabled]){border-style:var(--_ui5_input_error_warning_border_style)}.input-root-phone[value-state=Warning]:not([readonly]){background-color:var(--sapField_WarningBackground);border-color:var(--sapField_WarningColor)}.input-root-phone[value-state=Success]:not([readonly]){background-color:var(--sapField_SuccessBackground);border-color:var(--sapField_SuccessColor)}[inner-input]::-ms-clear{height:0;width:0}.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 .row{box-sizing:border-box;padding:.25rem 1rem;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;width:100%}.ui5-responsive-popover-close-btn{position:absolute;right:1rem}";M("@ui5/webcomponents-theme-base","sap_fiori_3",Nr),M("@ui5/webcomponents","sap_fiori_3",Or);var un=".ui5-valuestatemessage-popover{min-height:1rem;box-shadow:none}.ui5-valuestatemessage-root{box-sizing:border-box;display:inline-block;color:var(--sapUiBaseColor);font-size:var(--sapFontSmallSize);font-family:var(--sapFontFamily);padding:.3rem .625rem;overflow:hidden;text-overflow:ellipsis;min-width:6.25rem;border:var(--_ui5_value_state_message_border)}.ui5-valuestatemessage--success{background:var(--sapSuccessBackground)}.ui5-valuestatemessage--warning{background:var(--sapWarningBackground)}.ui5-valuestatemessage--error{background:var(--sapErrorBackground)}.ui5-valuestatemessage--information{background:var(--sapInformationBackground)}";const dn={tag:"ui5-input",languageAware:!0,managedSlots:!0,slots:{icon:{type:HTMLElement},default:{propertyName:"suggestionItems",type:HTMLElement},formSupport:{type:HTMLElement},valueStateMessage:{type:HTMLElement}},properties:{disabled:{type:Boolean},highlight:{type:Boolean},placeholder:{type:String},readonly:{type:Boolean},required:{type:Boolean},type:{type:Ha,defaultValue:Ha.Text},value:{type:String},valueState:{type:Pa,defaultValue:Pa.None},name:{type:String},showSuggestions:{type:Boolean},maxlength:{type:Rt},ariaLabel:{type:String},ariaLabelledby:{type:String,defaultValue:""},focused:{type:Boolean},_input:{type:Object},_inputAccInfo:{type:Object},_wrapperAccInfo:{type:Object},_inputWidth:{type:Rt},_listWidth:{type:Rt},_isPopoverOpen:{type:Boolean,noAttribute:!0},_inputIconFocused:{type:Boolean,noAttribute:!0}},events:{change:{},input:{},submit:{},"suggestion-item-select":{detail:{item:{type:HTMLElement}}},"suggestion-item-preview":{detail:{item:{type:HTMLElement},targetRef:{type:HTMLElement}}},"suggestion-scroll":{detail:{scrollTop:{type:Rt},scrollContainer:{type:HTMLElement}}}}};class cn extends Yt{static get metadata(){return dn}static get render(){return Vi}static get template(){return No}static get staticAreaTemplate(){return zo}static get styles(){return".ui5-hidden-text{position:absolute;clip:rect(1px,1px,1px,1px);user-select:none;left:0;top:0}:host(:not([hidden])){display:inline-block}:host{width:var(--_ui5_input_width);min-width:var(--_ui5_input_width);height:var(--_ui5_input_height);color:var(--sapField_TextColor);font-size:var(--sapFontSize);font-family:var(--sapFontFamily);font-style:normal;background-color:var(--sapField_Background);border:1px solid var(--sapField_BorderColor);border-radius:var(--_ui5_input_wrapper_border_radius);box-sizing:border-box}:host([focused]){outline:var(--_ui5_input_focus_border_width) dotted var(--sapContent_FocusColor);outline-offset:-3px}:host([value-state]:not([value-state=None])[focused]){outline:var(--_ui5_input_focus_border_width) dotted var(--sapContent_FocusColor);outline-offset:-4px}.ui5-input-root{width:100%;height:100%;background:transparent;display:inline-block;outline:none;box-sizing:border-box;color:inherit}:host([disabled]){opacity:var(--_ui5_input_disabled_opacity);cursor:default;pointer-events:none;background:var(--sapField_ReadOnly_Background);border-color:var(--sapField_ReadOnly_BorderColor);-webkit-text-fill-color:var(--sapContent_DisabledTextColor);color:var(--sapContent_DisabledTextColor)}[inner-input]{background:transparent;color:inherit;border:none;font-style:inherit;-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}[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}[inner-input]::-webkit-input-placeholder{font-style:italic;color:var(--sapField_PlaceholderTextColor)}:host([disabled]) [inner-input]::-moz-placeholder{visibility:hidden}:host([readonly]) [inner-input]::-moz-placeholder{visibility:hidden}[inner-input]::-moz-placeholder{font-style:italic;color:var(--sapField_PlaceholderTextColor)}:host([disabled]) [inner-input]:-ms-input-placeholder{visibility:hidden}:host([readonly]) [inner-input]:-ms-input-placeholder{visibility:hidden}[inner-input]:-ms-input-placeholder{font-style:italic;color:var(--sapField_PlaceholderTextColor)}.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}:host([readonly]){border-color:var(--sapField_ReadOnly_BorderColor);background:var(--sapField_ReadOnly_Background)}:host(:not([value-state]):not([readonly]):hover){background-color:var(--sapField_Hover_Background);border:1px solid var(--sapField_Hover_BorderColor)}:host([value-state=None]:not([readonly]):hover){background-color:var(--sapField_Hover_Background);border:1px solid var(--sapField_Hover_BorderColor)}:host([value-state]:not([value-state=None])){border-width:var(--_ui5_input_state_border_width)}:host([value-state=Error]) [inner-input],:host([value-state=Warning]) [inner-input]{font-style:var(--_ui5_input_error_warning_font_style)}:host([value-state=Error]) [inner-input]{font-weight:var(--_ui5_input_error_font_weight)}:host([value-state=Error]:not([readonly])){background-color:var(--sapField_InvalidBackground);border-color:var(--sapField_InvalidColor)}:host([value-state=Error]:not([readonly]):not([disabled])),:host([value-state=Information]:not([readonly]):not([disabled])),:host([value-state=Warning]:not([readonly]):not([disabled])){border-style:var(--_ui5_input_error_warning_border_style)}:host([value-state=Warning]:not([readonly])){background-color:var(--sapField_WarningBackground);border-color:var(--sapField_WarningColor)}:host([value-state=Success]:not([readonly])){background-color:var(--sapField_SuccessBackground);border-color:var(--sapField_SuccessColor);border-width:1px}:host([value-state=Information]:not([readonly])){background-color:var(--sapField_InformationBackground);border-color:var(--sapField_InformationColor);border-width:var(--_ui5-input-information_border_width)}[inner-input]::-ms-clear{height:0;width:0}.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]){padding:var(--_ui5_input_icon_padding)}"}static get staticAreaStyles(){return[ln,un]}constructor(){super(),this.hasSuggestionItemSelected=!1,this.valueBeforeItemSelection="",this.previousValue=void 0,this.firstRendering=!0,this.highlightValue="",this.EVENT_SUBMIT="submit",this.EVENT_CHANGE="change",this.EVENT_INPUT="input",this.EVENT_SUGGESTION_ITEM_SELECT="suggestion-item-select",this.ACTION_ENTER="enter",this.ACTION_USER_INPUT="input",this.suggestionsTexts=[],this.i18nBundle=br("@ui5/webcomponents"),this._handleResizeBound=this._handleResize.bind(this)}onEnterDOM(){Ra.register(this,this._handleResizeBound)}onExitDOM(){Ra.deregister(this,this._handleResizeBound)}onBeforeRendering(){this.showSuggestions&&(this.enableSuggestions(),this.suggestionsTexts=this.Suggestions.defaultSlotProperties(this.highlightValue));const e=c("FormSupport");e?e.syncNativeHiddenInput(this):this.name&&console.warn('In order for the "name" property to have effect, you should also: import "@ui5/webcomponents/dist/features/InputElementsFormSupport.js";')}onAfterRendering(){if(!this.firstRendering&&!Ta()&&this.Suggestions){const e=this.shouldOpenSuggestions();this.updateStaticAreaItemContentDensity(),this.Suggestions.toggle(e,{preventFocusRestore:!this.hasSuggestionItemSelected}),he.whenFinished().then(async()=>{this._listWidth=await this.Suggestions._getListWidth()}),!Ta()&&e&&this.inputDomRef&&this.inputDomRef.focus()}!this.firstRendering&&this.hasValueStateMessage&&this.toggle(this.shouldDisplayOnlyValueStateMessage),this.firstRendering=!1}_onkeydown(e){return nr(e)?this._handleUp(e):sr(e)?this._handleDown(e):rr(e)?this._handleSpace(e):ir(e)?this._handleEnter(e):void(this._keyDown=!0)}_onkeyup(e){this._keyDown=!1}_handleUp(e){this.Suggestions&&this.Suggestions.isOpened()&&this.Suggestions.onUp(e)}_handleDown(e){this.Suggestions&&this.Suggestions.isOpened()&&this.Suggestions.onDown(e)}_handleSpace(e){this.Suggestions&&this.Suggestions.onSpace(e)}_handleEnter(e){!(!this.Suggestions||!this.Suggestions.onEnter(e))||this.fireEventByAction(this.ACTION_ENTER)}async _onfocusin(e){this.focused=!0,this.previousValue=this.value,await this.getInputDOMRef(),this._inputIconFocused=e.target&&e.target===this.querySelector("ui5-icon")}_onfocusout(e){const t=this.Suggestions&&e.relatedTarget&&e.relatedTarget.shadowRoot&&e.relatedTarget.shadowRoot.contains(this.Suggestions.responsivePopover),i=e.relatedTarget&&e.relatedTarget.shadowRoot&&e.relatedTarget.shadowRoot.querySelector(".ui5-valuestatemessage-root");if(t||i)return void e.stopImmediatePropagation();const r=e.relatedTarget;r&&r.classList.contains(this._id)||(this.popover&&this.popover.close(),this.previousValue="",this.focused=!1)}_click(e){Ta()&&!this.readonly&&this.Suggestions&&(this.updateStaticAreaItemContentDensity(),this.Suggestions.open(this),this.isRespPopoverOpen=!0)}_handleChange(e){this.fireEvent(this.EVENT_CHANGE)}_scroll(e){const t=e.detail;this.fireEvent("suggestion-scroll",{scrollTop:t.scrollTop,scrollContainer:t.targetRef})}async _handleInput(e){await this.getInputDOMRef(),e.target===this.inputDomRef&&e.stopImmediatePropagation();!(this.inputDomRef.value===this.value&&ba()&&!this._keyDown&&!!this.placeholder)&&this.fireEventByAction(this.ACTION_USER_INPUT),this.hasSuggestionItemSelected=!1,this.Suggestions&&this.Suggestions.updateSelectedItemPosition(null)}_handleResize(){this._inputWidth=this.offsetWidth}_closeRespPopover(){this.Suggestions.close()}async _afterOpenPopover(){Ta()&&(await this.getInputDOMRef(),this.inputDomRef.focus())}_afterClosePopover(){this.announceSelectedItem(),Ta()&&this.blur()}toggle(e){e&&!this.isRespPopoverOpen?this.openPopover():this.closePopover()}isOpen(){return!!this._isPopoverOpen}async openPopover(){this.popover=await this._getPopover(),this.popover&&(this._isPopoverOpen=!0,this.popover.openBy(this))}closePopover(){this.isOpen()&&(this._isPopoverOpen=!1,this.popover&&this.popover.close())}async _getPopover(){return(await this.getStaticAreaItemDomRef()).querySelector("ui5-popover")}enableSuggestions(){if(this.Suggestions)return void(this.Suggestions.highlight=this.highlight);const e=c("InputSuggestions");if(!e)throw new Error('You have to import "@ui5/webcomponents/dist/features/InputSuggestions.js" module to use ui5-input suggestions');this.Suggestions=new e(this,"suggestionItems",this.highlight)}shouldOpenSuggestions(){return!(!(this.suggestionItems.length&&this.focused&&this.showSuggestions)||this.hasSuggestionItemSelected)}selectSuggestion(e,t){if(e.group)return;const i=e.text||e.textContent,r=t?this.valueBeforeItemSelection!==i:this.value!==i;this.hasSuggestionItemSelected=!0,this.fireEvent(this.EVENT_SUGGESTION_ITEM_SELECT,{item:e}),r&&(this.value=i,this.valueBeforeItemSelection=i,this.fireEvent(this.EVENT_INPUT),this.fireEvent(this.EVENT_CHANGE))}previewSuggestion(e){this.valueBeforeItemSelection=this.value,this.updateValueOnPreview(e),this.announceSelectedItem(),this._previewItem=e}updateValueOnPreview(e){const t="Inactive"===e.type||e.group?"":e.effectiveTitle||e.textContent;this.value=t}get previewItem(){return this._previewItem?this.getSuggestionByListItem(this._previewItem):null}async fireEventByAction(e){if(await this.getInputDOMRef(),this.disabled||this.readonly)return;const t=this.getInputValue(),i=e===this.ACTION_ENTER,r=e===this.ACTION_USER_INPUT,a=await this.getInputDOMRef(),o=a.selectionStart;if(this.value=t,this.highlightValue=t,_a.browser||ya(),_a.browser.safari&&setTimeout(()=>{a.selectionStart=o,a.selectionEnd=o},0),r)return this.fireEvent(this.EVENT_INPUT),void this.fireEvent("value-changed");i&&this.fireEvent(this.EVENT_SUBMIT);const n=void 0!==this.previousValue&&this.previousValue!==this.value;ba()&&i&&n&&this.fireEvent(this.EVENT_CHANGE)}getInputValue(){return this.getDomRef()?this.inputDomRef.value:""}async getInputDOMRef(){let e;return Ta()&&this.Suggestions&&(await this.Suggestions._respPopover(),e=this.Suggestions&&this.Suggestions.responsivePopover.querySelector(".ui5-input-inner-phone")),e||(e=this.getDomRef().querySelector("#"+this.getInputId())),this.inputDomRef=e,this.inputDomRef}getLabelableElementId(){return this.getInputId()}getSuggestionByListItem(e){const t=parseInt(e.getAttribute("data-ui5-key"));return this.suggestionItems[t]}isSuggestionsScrollable(){return this.Suggestions?this.Suggestions._isScrollable():Promise.resolve(!1)}getInputId(){return this._id+"-inner"}onItemFocused(){}onItemMouseOver(e){const t=e.target,i=this.getSuggestionByListItem(t);i&&i.fireEvent("mouseover",{item:i,targetRef:t})}onItemMouseOut(e){const t=e.target,i=this.getSuggestionByListItem(t);i&&i.fireEvent("mouseout",{item:i,targetRef:t})}onItemSelected(e,t){this.selectSuggestion(e,t)}onItemPreviewed(e){this.previewSuggestion(e),this.fireEvent("suggestion-item-preview",{item:this.getSuggestionByListItem(e),targetRef:e})}onOpen(){}onClose(){}valueStateTextMappings(){const e=this.i18nBundle;return{Success:e.getText(ua),Information:e.getText(la),Error:e.getText(na),Warning:e.getText(sa)}}announceSelectedItem(){const e=this.shadowRoot.querySelector(`#${this._id}-selectionText`);this.Suggestions&&this.Suggestions._isItemOnTarget()?e.textContent=this.itemSelectionAnnounce:e.textContent=""}get _readonly(){return this.readonly&&!this.disabled}get _headerTitleText(){return this.i18nBundle.getText(qr)}get inputType(){return this.type.toLowerCase()}get suggestionsTextId(){return this.showSuggestions?this._id+"-suggestionsText":""}get valueStateTextId(){return this.hasValueState?this._id+"-valueStateDesc":""}get accInfo(){const e=this.showSuggestions?"true":void 0,t=this.showSuggestions?"list":void 0;return{wrapper:{},input:{ariaDescribedBy:this._inputAccInfo.ariaDescribedBy?`${this.suggestionsTextId} ${this.valueStateTextId} ${this._id}-suggestionsCount ${this._inputAccInfo.ariaDescribedBy}`.trim():`${this.suggestionsTextId} ${this.valueStateTextId} ${this._id}-suggestionsCount`.trim(),ariaInvalid:this.valueState===Pa.Error?"true":void 0,ariaHasPopup:this._inputAccInfo.ariaHasPopup?this._inputAccInfo.ariaHasPopup:e,ariaAutoComplete:this._inputAccInfo.ariaAutoComplete?this._inputAccInfo.ariaAutoComplete:t,role:this._inputAccInfo&&this._inputAccInfo.role,ariaOwns:this._inputAccInfo&&this._inputAccInfo.ariaOwns,ariaExpanded:this._inputAccInfo&&this._inputAccInfo.ariaExpanded,ariaDescription:this._inputAccInfo&&this._inputAccInfo.ariaDescription,ariaLabel:wr(this)}}}get itemSelectionAnnounce(){return this.Suggestions?this.Suggestions.itemSelectionAnnounce:void 0}get classes(){return{popoverValueState:{"ui5-valuestatemessage-root":!0,"ui5-valuestatemessage--success":this.valueState===Pa.Success,"ui5-valuestatemessage--error":this.valueState===Pa.Error,"ui5-valuestatemessage--warning":this.valueState===Pa.Warning,"ui5-valuestatemessage--information":this.valueState===Pa.Information}}}get styles(){return{popoverHeader:{width:this._inputWidth+"px"},suggestionPopoverHeader:{display:0===this._listWidth?"none":"inline-block",width:this._listWidth+"px",padding:"0.5625rem 1rem"},suggestionsPopover:{"max-width":this._inputWidth+"px"}}}get suggestionSeparators(){return"None"}get valueStateMessageText(){return this.getSlottedNodes("valueStateMessage").map(e=>e.cloneNode(!0))}get shouldDisplayOnlyValueStateMessage(){return this.hasValueStateMessage&&!this.shouldOpenSuggestions()&&this.focused}get shouldDisplayDefaultValueStateMessage(){return!this.valueStateMessage.length&&this.hasValueStateMessage}get hasValueState(){return this.valueState!==Pa.None}get hasValueStateMessage(){return this.hasValueState&&this.valueState!==Pa.Success&&(!this._inputIconFocused||this._isPhone&&this.Suggestions)}get valueStateText(){return this.valueStateTextMappings()[this.valueState]}get suggestionsText(){return this.i18nBundle.getText(Yr)}get availableSuggestionsCount(){if(this.showSuggestions)switch(this.suggestionsTexts.length){case 0:return this.i18nBundle.getText(Xr);case 1:return this.i18nBundle.getText(Gr);default:return this.i18nBundle.getText(Jr,this.suggestionsTexts.length)}}get step(){return this.type===Ha.Number?"any":void 0}get _isPhone(){return Ta()}static async onDefine(){await Promise.all([Ao.define(),Te("@ui5/webcomponents")])}}cn.define();const hn=new Map,pn={},_n={};let mn=e=>`https://ui5.sap.com/1.60.2/resources/sap/ui/core/cldr/${e}.json`;const gn={iw:"he",ji:"yi",in:"id",sh:"sr"},fn=(e,t)=>{hn.set(e,t)},vn=async(e,t,i)=>{(()=>{if(!mn)return;g.filter(e=>!pn[e]&&!_n[e]).forEach(e=>{_n[e]=mn(e)})})();const r=((e,t,i)=>{"no"===(e=e&&gn[e]||e)&&(e="nb"),"zh"!==e||t||("Hans"===i?t="CN":"Hant"===i&&(t="TW"));let r=`${e}_${t}`;return g.includes(r)||(r=e),g.includes(r)||(r=m),r})(e,t,i);let a=pn[r];const o=_n[r],n=c("OpenUI5Support");if(!a&&n&&(a=n.getLocaleDataObject()),a)fn(`sap/ui/core/cldr/${r}.json`,a);else if(o){const e=await S(o);fn(`sap/ui/core/cldr/${r}.json`,e)}},yn={Gregorian:"Gregorian",Islamic:"Islamic",Japanese:"Japanese",Buddhist:"Buddhist",Persian:"Persian"};class bn extends nt{static isValid(e){return!!yn[e]}}let wn;bn.generataTypeAcessors(yn);const kn=()=>(void 0===wn&&(b(),wn=v.calendarType),bn.isValid(wn)?wn:bn.Gregorian),xn=()=>{},Cn={getFormatLocale:fe,getLegacyDateFormat:xn,getLegacyDateCalendarCustomizing:xn,getCustomLocaleData:xn},Sn={getLanguage:pe,getCalendarType:kn,getSupportedLanguages:()=>Pt("$core-i18n-locales:,ar,bg,ca,cs,da,de,el,en,es,et,fi,fr,hi,hr,hu,it,iw,ja,ko,lt,lv,nl,no,pl,pt,ro,ru,sh,sk,sl,sv,th,tr,uk,vi,zh_CN,zh_TW$"),getOriginInfo:xn,getFormatSettings:()=>Cn},Tn={getConfiguration:()=>Sn,getLibraryResourceBundle:void 0,getFormatSettings:()=>Cn};var Dn={},Pn=Dn.hasOwnProperty,In=Dn.toString,Mn=Pn.toString,Bn=Mn.call(Object),En=function(e){var t,i;return!(!e||"[object Object]"!==In.call(e))&&(!(t=Object.getPrototypeOf(e))||"function"==typeof(i=Pn.call(t,"constructor")&&t.constructor)&&Mn.call(i)===Bn)},Fn=Object.create(null),An=function(){var e,t,i,r,a,o,n=arguments[2]||{},s=3,l=arguments.length,u=arguments[0]||!1,d=arguments[1]?void 0:Fn;for("object"!=typeof n&&"function"!=typeof n&&(n={});s<l;s++)if(null!=(a=arguments[s]))for(r in a)e=n[r],i=a[r],"__proto__"!==r&&n!==i&&(u&&i&&(En(i)||(t=Array.isArray(i)))?(t?(t=!1,o=e&&Array.isArray(e)?e:[]):o=e&&En(e)?e:{},n[r]=An(u,arguments[1],o,i)):i!==d&&(n[r]=i));return n},Nn=function(){var e=[!1,!0];return e.push.apply(e,arguments),An.apply(null,e)},On={Gregorian:"Gregorian",Islamic:"Islamic",Japanese:"Japanese",Persian:"Persian",Buddhist:"Buddhist"};const $n=e=>{const t=hn.get(e);if(t)return t;const i=e.match(/sap\/ui\/core\/cldr\/(\w+)\.json/);if(i)throw new Error(`CLDR data for locale ${i[1]} is not loaded!`);throw new Error("Unknown module "+e)};var Ln=Xe.extend("sap.ui.core.LocaleData",{constructor:function(e){this.oLocale=e,Xe.apply(this),this.mData=function(e){var t,i=e.getLanguage()||"",r=e.getScript()||"",a=e.getRegion()||"";function o(e){if(!(Vn[e]||jn&&!0!==jn[e])){var t=Vn[e]=$n("sap/ui/core/cldr/"+e+".json",{dataType:"json",failOnError:!1});t&&t.__fallbackLocale&&(!function e(t,i){var r,a,o;if(i)for(r in i)i.hasOwnProperty(r)&&(a=t[r],o=i[r],void 0===a?t[r]=o:null===a?delete t[r]:"object"==typeof a&&"object"==typeof o&&e(a,o))}(t,o(t.__fallbackLocale)),delete t.__fallbackLocale)}return Vn[e]}"no"===(i=i&&Un[i]||i)&&(i="nb");"zh"!==i||a||("Hans"===r?a="CN":"Hant"===r&&(a="TW"));var n=i+"_"+a;i&&a&&(t=o(n));!t&&i&&(t=o(i));return Vn[n]=t||Hn,Vn[n]}(e)},_get:function(){return this._getDeep(this.mData,arguments)},_getMerged:function(){return this._get.apply(this,arguments)},_getDeep:function(e,t){for(var i=e,r=0;r<t.length&&void 0!==(i=i[t[r]]);r++);return i},getOrientation:function(){return this._get("orientation")},getLanguages:function(){return this._get("languages")},getScripts:function(){return this._get("scripts")},getTerritories:function(){return this._get("territories")},getMonths:function(e,t){return qe("narrow"==e||"abbreviated"==e||"wide"==e,"sWidth must be narrow, abbreviated or wide"),this._get(Wn(t),"months","format",e)},getMonthsStandAlone:function(e,t){return qe("narrow"==e||"abbreviated"==e||"wide"==e,"sWidth must be narrow, abbreviated or wide"),this._get(Wn(t),"months","stand-alone",e)},getDays:function(e,t){return qe("narrow"==e||"abbreviated"==e||"wide"==e||"short"==e,"sWidth must be narrow, abbreviate, wide or short"),this._get(Wn(t),"days","format",e)},getDaysStandAlone:function(e,t){return qe("narrow"==e||"abbreviated"==e||"wide"==e||"short"==e,"sWidth must be narrow, abbreviated, wide or short"),this._get(Wn(t),"days","stand-alone",e)},getQuarters:function(e,t){return qe("narrow"==e||"abbreviated"==e||"wide"==e,"sWidth must be narrow, abbreviated or wide"),this._get(Wn(t),"quarters","format",e)},getQuartersStandAlone:function(e,t){return qe("narrow"==e||"abbreviated"==e||"wide"==e,"sWidth must be narrow, abbreviated or wide"),this._get(Wn(t),"quarters","stand-alone",e)},getDayPeriods:function(e,t){return qe("narrow"==e||"abbreviated"==e||"wide"==e,"sWidth must be narrow, abbreviated or wide"),this._get(Wn(t),"dayPeriods","format",e)},getDayPeriodsStandAlone:function(e,t){return qe("narrow"==e||"abbreviated"==e||"wide"==e,"sWidth must be narrow, abbreviated or wide"),this._get(Wn(t),"dayPeriods","stand-alone",e)},getDatePattern:function(e,t){return qe("short"==e||"medium"==e||"long"==e||"full"==e,"sStyle must be short, medium, long or full"),this._get(Wn(t),"dateFormats",e)},getTimePattern:function(e,t){return qe("short"==e||"medium"==e||"long"==e||"full"==e,"sStyle must be short, medium, long or full"),this._get(Wn(t),"timeFormats",e)},getDateTimePattern:function(e,t){return qe("short"==e||"medium"==e||"long"==e||"full"==e,"sStyle must be short, medium, long or full"),this._get(Wn(t),"dateTimeFormats",e)},getCombinedDateTimePattern:function(e,t,i){qe("short"==e||"medium"==e||"long"==e||"full"==e,"sStyle must be short, medium, long or full"),qe("short"==t||"medium"==t||"long"==t||"full"==t,"sStyle must be short, medium, long or full");var r=this.getDateTimePattern(e,i),a=this.getDatePattern(e,i),o=this.getTimePattern(t,i);return r.replace("{0}",o).replace("{1}",a)},getCustomDateTimePattern:function(e,t){var i=this._get(Wn(t),"dateTimeFormats","availableFormats");return this._getFormatPattern(e,i,t)},getIntervalPattern:function(e,t){var i,r,a,o,n,s=this._get(Wn(t),"dateTimeFormats","intervalFormats");return e&&(r=(i=e.split("-"))[0],a=i[1],(o=s[r])&&(n=o[a]))?n:s.intervalFormatFallback},getCombinedIntervalPattern:function(e,t){return this._get(Wn(t),"dateTimeFormats","intervalFormats").intervalFormatFallback.replace(/\{(0|1)\}/g,e)},getCustomIntervalPattern:function(e,t,i){var r=this._get(Wn(i),"dateTimeFormats","intervalFormats");return this._getFormatPattern(e,r,i,t)},_getFormatPattern:function(e,t,i,r){var a,o,n;if(r?"string"==typeof r&&("j"!=r&&"J"!=r||(r=this.getPreferredHourSymbol()),n=t[e],a=n&&n[r]):a=t[e],a){if("object"!=typeof a)return a;o=Object.keys(a).map((function(e){return a[e]}))}return o||(o=this._createFormatPattern(e,t,i,r)),o&&1===o.length?o[0]:o},_createFormatPattern:function(e,t,i,r){var a,o,n,s,l,u,d,c,h,p,_,m=this._parseSkeletonFormat(e),g=this._findBestMatch(m,e,t),f=/^([GyYqQMLwWEecdD]+)([hHkKjJmszZvVOXx]+)$/;if(r){if("string"==typeof r)(h=zn[r]?zn[r].group:"")&&(p=Rn[h].index>m[m.length-1].index),c=r;else{for(p=!0,"y"===m[0].symbol&&g&&g.pattern.G&&(s=zn.G,l=Rn[s.group],m.splice(0,0,{symbol:"G",group:s.group,match:s.match,index:l.index,field:l.field,length:1})),_=m.length-1;_>=0;_--)if(r[(o=m[_]).group]){p=!1;break}for(_=0;_<m.length;_++)if(r[(o=m[_]).group]){c=o.symbol;break}"h"!=c&&"K"!=c||!r.DayPeriod||(c="a")}if(p)return[this.getCustomDateTimePattern(e,i)];g&&0===g.missingTokens.length&&(u=g.pattern[c])&&g.distance>0&&(u=this._expandFields(u,g.patternTokens,m)),u||(n=this._get(Wn(i),"dateTimeFormats","availableFormats"),f.test(e)&&"ahHkKjJms".indexOf(c)>=0?u=this._getMixedFormatPattern(e,n,i,r):(d=this._getFormatPattern(e,n,i),u=this.getCombinedIntervalPattern(d,i))),a=[u]}else if(g){if("string"==typeof g.pattern)a=[g.pattern];else if("object"==typeof g.pattern)for(var v in a=[],g.pattern)u=g.pattern[v],a.push(u);g.distance>0&&(g.missingTokens.length>0?f.test(e)?a=[this._getMixedFormatPattern(e,t,i)]:(a=this._expandFields(a,g.patternTokens,m),a=this._appendItems(a,g.missingTokens,i)):a=this._expandFields(a,g.patternTokens,m))}else a=[u=e];return e.indexOf("J")>=0&&a.forEach((function(e,t){a[t]=e.replace(/ ?[abB](?=([^']*'[^']*')*[^']*)$/g,"")})),a},_parseSkeletonFormat:function(e){for(var t,i,r,a=[],o={index:-1},n=0;n<e.length;n++)if("j"!=(t=e.charAt(n))&&"J"!=t||(t=this.getPreferredHourSymbol()),t!=o.symbol){if(i=zn[t],r=Rn[i.group],"Other"==i.group||r.diffOnly)throw new Error("Symbol '"+t+"' is not allowed in skeleton format '"+e+"'");if(r.index<=o.index)throw new Error("Symbol '"+t+"' at wrong position or duplicate in skeleton format '"+e+"'");o={symbol:t,group:i.group,match:i.match,index:r.index,field:r.field,length:1},a.push(o)}else o.length++;return a},_findBestMatch:function(e,t,i){var r,a,o,n,s,l,u,d,c,h,p={distance:1e4,firstDiffPos:-1};for(var _ in i)if(!("intervalFormatFallback"===_||_.indexOf("B")>-1||(r=this._parseSkeletonFormat(_),l=0,a=[],u=!0,e.length<r.length))){s=0,d=e.length;for(var m=0;m<e.length;m++){if(o=e[m],n=r[s],d===e.length&&(d=m),n){if(c=zn[o.symbol],h=zn[n.symbol],o.symbol===n.symbol){o.length===n.length?d===m&&(d=e.length):(o.length<c.numericCeiling?n.length<h.numericCeiling:n.length>=h.numericCeiling)?l+=Math.abs(o.length-n.length):l+=5,s++;continue}if(o.match==n.match){l+=Math.abs(o.length-n.length)+10,s++;continue}}a.push(o),l+=50-m}s<r.length&&(u=!1),u&&(l<p.distance||l===p.distance&&d>p.firstDiffPos)&&(p.distance=l,p.firstDiffPos=d,p.missingTokens=a,p.pattern=i[_],p.patternTokens=r)}if(p.pattern)return p},_expandFields:function(e,t,i){var r="string"==typeof e,a=(r?[e]:e).map((function(e){var r,a,o,n,s,l,u,d,c={},h={},p="",_=!1,m=0;for(i.forEach((function(e){c[e.group]=e})),t.forEach((function(e){h[e.group]=e}));m<e.length;){if(d=e.charAt(m),_)p+=d,"'"==d&&(_=!1);else if((u=zn[d])&&c[u.group]&&h[u.group]){for(s=c[u.group],l=h[u.group],r=s.length,o=l.length,a=1;e.charAt(m+1)==d;)m++,a++;n=r===o||(r<u.numericCeiling?a>=u.numericCeiling:a<u.numericCeiling)?a:Math.max(a,r);for(var g=0;g<n;g++)p+=d}else p+=d,"'"==d&&(_=!0);m++}return p}));return r?a[0]:a},_appendItems:function(e,t,i){var r=this._get(Wn(i),"dateTimeFormats","appendItems");return e.forEach(function(i,a){var o,n,s;t.forEach(function(t){n=r[t.group],o="'"+this.getDisplayName(t.field)+"'",s="";for(var l=0;l<t.length;l++)s+=t.symbol;e[a]=n.replace(/\{0\}/,i).replace(/\{1\}/,s).replace(/\{2\}/,o)}.bind(this))}.bind(this)),e},_getMixedFormatPattern:function(e,t,i,r){var a,o,n,s,l,u;return o=(a=/^([GyYqQMLwWEecdD]+)([hHkKjJmszZvVOXx]+)$/.exec(e))[1],n=a[2],l=this._getFormatPattern(o,t,i),u=r?this.getCustomIntervalPattern(n,r,i):this._getFormatPattern(n,t,i),s=/MMMM|LLLL/.test(o)?/E|e|c/.test(o)?"full":"long":/MMM|LLL/.test(o)?"medium":"short",this.getDateTimePattern(s,i).replace(/\{1\}/,l).replace(/\{0\}/,u)},getNumberSymbol:function(e){return qe("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 qe("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){return this._get("currencyFormat")[e]||this._get("currencyFormat").standard},getCurrencySpacing:function(e){return this._get("currencyFormat","currencySpacing","after"===e?"afterCurrency":"beforeCurrency")},getPercentPattern:function(){return this._get("percentFormat").standard},getMiscPattern:function(e){return qe("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){var t=this._get("currency");if(t){if(t[e]&&t[e].hasOwnProperty("digits"))return t[e].digits;if(t.DEFAULT&&t.DEFAULT.hasOwnProperty("digits"))return t.DEFAULT.digits}var i=this._get("currencyDigits",e);return null==i&&null==(i=this._get("currencyDigits","DEFAULT"))&&(i=2),i},getCurrencySymbol:function(e){var t=this.getCurrencySymbols();return t&&t[e]||e},getCurrencyCodeBySymbol:function(e){var t,i=this._get("currencySymbols");for(t in i)if(i[t]===e)return t;return e},getCurrencySymbols:function(){var e,t=this._get("currency"),i={};for(var r in t)e=t[r].isoCode,t[r].symbol?i[r]=t[r].symbol:e&&(i[r]=this._get("currencySymbols")[e]);return Object.assign({},this._get("currencySymbols"),i)},getUnitDisplayName:function(e){var t=this.getUnitFormat(e);return t&&t.displayName||""},getRelativePatterns:function(e,t){void 0===t&&(t="wide"),qe("wide"===t||"short"===t||"narrow"===t,"sStyle is only allowed to be set with 'wide', 'short' or 'narrow'");var i,r,a,o,n=[],s=this.getPluralCategories();return e||(e=["year","month","week","day","hour","minute","second"]),e.forEach(function(e){for(var l in i=this._get("dateFields",e+"-"+t))0===l.indexOf("relative-type-")?(a=parseInt(l.substr(14)),n.push({scale:e,value:a,pattern:i[l]})):0==l.indexOf("relativeTime-type-")&&(r=i[l],o="past"===l.substr(18)?-1:1,s.forEach((function(t){n.push({scale:e,sign:o,pattern:r["relativeTimePattern-count-"+t]})})))}.bind(this)),n},getRelativePattern:function(e,t,i,r){var a,o;return"string"==typeof i&&(r=i,i=void 0),void 0===i&&(i=t>0),void 0===r&&(r="wide"),qe("wide"===r||"short"===r||"narrow"===r,"sStyle is only allowed to be set with 'wide', 'short' or 'narrow'"),o=e+"-"+r,0!==t&&-2!==t&&2!==t||(a=this._get("dateFields",o,"relative-type-"+t)),a||(a=this._get("dateFields",o,"relativeTime-type-"+(i?"future":"past"))["relativeTimePattern-count-"+this.getPluralCategory(Math.abs(t).toString())]),a},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){qe("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"),qe("wide"===t||"short"===t||"narrow"===t,"sStyle is only allowed to be set with 'wide', 'short' or 'narrow'");var i=-1===["era","weekday","zone"].indexOf(e)?e+"-"+t:e;return this._get("dateFields",i,"displayName")},getRelativeYear:function(e,t){return this.getRelativePattern("year",e,t)},getDecimalFormat:function(e,t,i){var r,a;switch(e){case"long":a=this._get("decimalFormat-long");break;default:a=this._get("decimalFormat-short")}if(a){var o=t+"-"+i;(r=a[o])||(r=a[o=t+"-other"])}return r},getCurrencyFormat:function(e,t,i){var r,a=this._get("currencyFormat-"+e);if(!a){if("sap-short"===e)throw new Error('Failed to get CLDR data for property "currencyFormat-sap-short"');a=this._get("currencyFormat-short")}if(a){var o=t+"-"+i;(r=a[o])||(r=a[o=t+"-other"])}return r},getListFormat:function(e,t){var i=this._get("listPattern-"+(e||"standard")+"-"+(t||"wide"));return i||{}},getResolvedUnitFormat:function(e){return e=this.getUnitFromMapping(e)||e,this.getUnitFormat(e)},getUnitFormat:function(e){return this._get("units","short",e)},getUnitFormats:function(){return this._getMerged("units","short")},getUnitFromMapping:function(e){return this._get("unitMappings",e)},getEras:function(e,t){qe("wide"==e||"abbreviated"==e||"narrow"==e,"sWidth must be wide, abbreviate or narrow");var i=this._get(Wn(t),"era-"+e),r=[];for(var a in i)r[parseInt(a)]=i[a];return r},getEraDates:function(e){var t=this._get("eras-"+e.toLowerCase()),i=[];for(var r in t)i[parseInt(r)]=t[r];return i},getCalendarWeek:function(e,t){qe("wide"==e||"narrow"==e,"sStyle must be wide or narrow");var i="date.week.calendarweek."+e;return Tn.getLibraryResourceBundle("sap.ui.core",this.oLocale.toString()).getText(i,t)},getPreferredCalendarType:function(){var e,t,i,r=this._get("calendarPreference"),a=r?r.split(" "):[];for(i=0;i<a.length;i++)for(t in e=a[i].split("-")[0],On)if(e===t.toLowerCase())return t;return On.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=this._get("plurals");for(var i in"number"==typeof e&&(e=e.toString()),this._pluralTest||(this._pluralTest={}),t){var r=this._pluralTest[i];if(r||(r=this._parsePluralRule(t[i]),this._pluralTest[i]=r),r(e))return i}return"other"},_parsePluralRule:function(e){var t,i=",",r=0;function a(e){return t[r]===e&&(r++,!0)}function o(){var e=t[r];return r++,e}t=e.split(" ");var n=function e(){var t,r;return t=function e(){var t,r;if(t=function(){var e,t,r;if(e=function(){var e;if(e=function(){if(a("n"))return function(e){return e.n};if(a("i"))return function(e){return e.i};if(a("f"))return function(e){return e.f};if(a("t"))return function(e){return e.t};if(a("v"))return function(e){return e.v};if(a("w"))return function(e){return e.w};throw new Error("Unknown operand: "+o())}(),a("%")){var t=parseInt(o());return function(i){return e(i)%t}}return e}(),a("="))r=!0;else{if(!a("!="))throw new Error("Expected '=' or '!='");r=!1}return t=function(){var e,t,r,a=[];return o().split(i).forEach((function(i){if(1===(e=i.split("..")).length)a.push(parseInt(i));else{t=parseInt(e[0]),r=parseInt(e[1]);for(var o=t;o<=r;o++)a.push(o)}})),function(e){return a}}(),r?function(i){return t(i).indexOf(e(i))>=0}:function(i){return-1===t(i).indexOf(e(i))}}(),a("and"))return r=e(),function(e){return t(e)&&r(e)};return t}(),a("or")?(r=e(),function(e){return t(e)||r(e)}):t}();if(r!=t.length)throw new Error("Not completely parsed");return function(e){var t,i,r,a,o=e.indexOf(".");return-1===o?(t=e,i="",r=""):(t=e.substr(0,o),r=(i=e.substr(o+1)).replace(/0+$/,"")),a={n:parseFloat(e),i:parseInt(t),v:i.length,w:r.length,f:parseInt(i),t:parseInt(r)},n(a)}}}),Rn={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}},zn={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}},Hn={orientation:"left-to-right",languages:{},scripts:{},territories:{},"ca-gregorian":{dateFormats:{full:"EEEE, MMMM d, y",long:"MMMM d, y",medium:"MMM d, y",short:"M/d/yy"},timeFormats:{full:"h:mm:ss a zzzz",long:"h:mm:ss a z",medium:"h:mm:ss a",short:"h:mm a"},dateTimeFormats:{full:"{1} 'at' {0}",long:"{1} 'at' {0}",medium:"{1}, {0}",short:"{1}, {0}",availableFormats:{d:"d",E:"ccc",Ed:"d E",Ehm:"E h:mm a",EHm:"E HH:mm",Ehms:"E h:mm:ss a",EHms:"E HH:mm:ss",Gy:"y G",GyMMM:"MMM y G",GyMMMd:"MMM d, y G",GyMMMEd:"E, MMM d, y G",h:"h a",H:"HH",hm:"h:mm a",Hm:"HH:mm",hms:"h:mm:ss a",Hms:"HH:mm:ss",hmsv:"h:mm:ss a v",Hmsv:"HH:mm:ss v",hmv:"h:mm a v",Hmv:"HH:mm v",M:"L",Md:"M/d",MEd:"E, M/d",MMM:"LLL",MMMd:"MMM d",MMMEd:"E, MMM d",MMMMd:"MMMM d",ms:"mm:ss",y:"y",yM:"M/y",yMd:"M/d/y",yMEd:"E, M/d/y",yMMM:"MMM y",yMMMd:"MMM d, y",yMMMEd:"E, MMM d, y",yMMMM:"MMMM y",yQQQ:"QQQ y",yQQQQ:"QQQQ y"},appendItems:{Day:"{0} ({2}: {1})","Day-Of-Week":"{0} {1}",Era:"{0} {1}",Hour:"{0} ({2}: {1})",Minute:"{0} ({2}: {1})",Month:"{0} ({2}: {1})",Quarter:"{0} ({2}: {1})",Second:"{0} ({2}: {1})",Timezone:"{0} {1}",Week:"{0} ({2}: {1})",Year:"{0} {1}"},intervalFormats:{intervalFormatFallback:"{0} – {1}",d:{d:"d – d"},h:{a:"h a – h a",h:"h – h a"},H:{H:"HH – HH"},hm:{a:"h:mm a – h:mm a",h:"h:mm – h:mm a",m:"h:mm – h:mm a"},Hm:{H:"HH:mm – HH:mm",m:"HH:mm – HH:mm"},hmv:{a:"h:mm a – h:mm a v",h:"h:mm – h:mm a v",m:"h:mm – h:mm a v"},Hmv:{H:"HH:mm – HH:mm v",m:"HH:mm – HH:mm v"},hv:{a:"h a – h a v",h:"h – h a v"},Hv:{H:"HH – HH v"},M:{M:"M – M"},Md:{d:"M/d – M/d",M:"M/d – M/d"},MEd:{d:"E, M/d – E, M/d",M:"E, M/d – E, M/d"},MMM:{M:"MMM – MMM"},MMMd:{d:"MMM d – d",M:"MMM d – MMM d"},MMMEd:{d:"E, MMM d – E, MMM d",M:"E, MMM d – E, MMM d"},y:{y:"y – y"},yM:{M:"M/y – M/y",y:"M/y – M/y"},yMd:{d:"M/d/y – M/d/y",M:"M/d/y – M/d/y",y:"M/d/y – M/d/y"},yMEd:{d:"E, M/d/y – E, M/d/y",M:"E, M/d/y – E, M/d/y",y:"E, M/d/y – E, M/d/y"},yMMM:{M:"MMM – MMM y",y:"MMM y – MMM y"},yMMMd:{d:"MMM d – d, y",M:"MMM d – MMM d, y",y:"MMM d, y – MMM d, y"},yMMMEd:{d:"E, MMM d – E, MMM d, y",M:"E, MMM d – E, MMM d, y",y:"E, MMM d, y – E, MMM d, y"},yMMMM:{M:"MMMM – MMMM y",y:"MMMM y – MMMM y"}}},months:{format:{abbreviated:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],narrow:["J","F","M","A","M","J","J","A","S","O","N","D"],wide:["January","February","March","April","May","June","July","August","September","October","November","December"]},"stand-alone":{abbreviated:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],narrow:["J","F","M","A","M","J","J","A","S","O","N","D"],wide:["January","February","March","April","May","June","July","August","September","October","November","December"]}},days:{format:{abbreviated:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],narrow:["S","M","T","W","T","F","S"],short:["Su","Mo","Tu","We","Th","Fr","Sa"],wide:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"]},"stand-alone":{abbreviated:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],narrow:["S","M","T","W","T","F","S"],short:["Su","Mo","Tu","We","Th","Fr","Sa"],wide:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"]}},quarters:{format:{abbreviated:["Q1","Q2","Q3","Q4"],narrow:["1","2","3","4"],wide:["1st quarter","2nd quarter","3rd quarter","4th quarter"]},"stand-alone":{abbreviated:["Q1","Q2","Q3","Q4"],narrow:["1","2","3","4"],wide:["1st quarter","2nd quarter","3rd quarter","4th quarter"]}},dayPeriods:{format:{abbreviated:["AM","PM"],narrow:["a","p"],wide:["AM","PM"]},"stand-alone":{abbreviated:["AM","PM"],narrow:["AM","PM"],wide:["AM","PM"]}},"era-wide":{0:"Before Christ",1:"Anno Domini"},"era-abbreviated":{0:"BC",1:"AD"},"era-narrow":{0:"B",1:"A"}},"eras-gregorian":{0:{_end:"0-12-31"},1:{_start:"1-01-01"}},dateFields:{era:{displayName:"era"},"year-wide":{displayName:"year","relative-type--1":"last year","relative-type-0":"this year","relative-type-1":"next year","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} year","relativeTimePattern-count-other":"in {0} years"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} year ago","relativeTimePattern-count-other":"{0} years ago"}},"year-short":{displayName:"yr.","relative-type--1":"last yr.","relative-type-0":"this yr.","relative-type-1":"next yr.","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} yr.","relativeTimePattern-count-other":"in {0} yr."},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} yr. ago","relativeTimePattern-count-other":"{0} yr. ago"}},"year-narrow":{displayName:"yr.","relative-type--1":"last yr.","relative-type-0":"this yr.","relative-type-1":"next yr.","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} yr.","relativeTimePattern-count-other":"in {0} yr."},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} yr. ago","relativeTimePattern-count-other":"{0} yr. ago"}},"quarter-wide":{displayName:"quarter","relative-type--1":"last quarter","relative-type-0":"this quarter","relative-type-1":"next quarter","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} quarter","relativeTimePattern-count-other":"in {0} quarters"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} quarter ago","relativeTimePattern-count-other":"{0} quarters ago"}},"quarter-short":{displayName:"qtr.","relative-type--1":"last qtr.","relative-type-0":"this qtr.","relative-type-1":"next qtr.","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} qtr.","relativeTimePattern-count-other":"in {0} qtrs."},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} qtr. ago","relativeTimePattern-count-other":"{0} qtrs. ago"}},"quarter-narrow":{displayName:"qtr.","relative-type--1":"last qtr.","relative-type-0":"this qtr.","relative-type-1":"next qtr.","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} qtr.","relativeTimePattern-count-other":"in {0} qtrs."},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} qtr. ago","relativeTimePattern-count-other":"{0} qtrs. ago"}},"month-wide":{displayName:"month","relative-type--1":"last month","relative-type-0":"this month","relative-type-1":"next month","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} month","relativeTimePattern-count-other":"in {0} months"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} month ago","relativeTimePattern-count-other":"{0} months ago"}},"month-short":{displayName:"mo.","relative-type--1":"last mo.","relative-type-0":"this mo.","relative-type-1":"next mo.","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} mo.","relativeTimePattern-count-other":"in {0} mo."},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} mo. ago","relativeTimePattern-count-other":"{0} mo. ago"}},"month-narrow":{displayName:"mo.","relative-type--1":"last mo.","relative-type-0":"this mo.","relative-type-1":"next mo.","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} mo.","relativeTimePattern-count-other":"in {0} mo."},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} mo. ago","relativeTimePattern-count-other":"{0} mo. ago"}},"week-wide":{displayName:"week","relative-type--1":"last week","relative-type-0":"this week","relative-type-1":"next week","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} week","relativeTimePattern-count-other":"in {0} weeks"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} week ago","relativeTimePattern-count-other":"{0} weeks ago"},relativePeriod:"the week of {0}"},"week-short":{displayName:"wk.","relative-type--1":"last wk.","relative-type-0":"this wk.","relative-type-1":"next wk.","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} wk.","relativeTimePattern-count-other":"in {0} wk."},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} wk. ago","relativeTimePattern-count-other":"{0} wk. ago"},relativePeriod:"the week of {0}"},"week-narrow":{displayName:"wk.","relative-type--1":"last wk.","relative-type-0":"this wk.","relative-type-1":"next wk.","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} wk.","relativeTimePattern-count-other":"in {0} wk."},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} wk. ago","relativeTimePattern-count-other":"{0} wk. ago"},relativePeriod:"the week of {0}"},"day-wide":{displayName:"day","relative-type--1":"yesterday","relative-type-0":"today","relative-type-1":"tomorrow","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} day","relativeTimePattern-count-other":"in {0} days"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} day ago","relativeTimePattern-count-other":"{0} days ago"}},"day-short":{displayName:"day","relative-type--1":"yesterday","relative-type-0":"today","relative-type-1":"tomorrow","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} day","relativeTimePattern-count-other":"in {0} days"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} day ago","relativeTimePattern-count-other":"{0} days ago"}},"day-narrow":{displayName:"day","relative-type--1":"yesterday","relative-type-0":"today","relative-type-1":"tomorrow","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} day","relativeTimePattern-count-other":"in {0} days"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} day ago","relativeTimePattern-count-other":"{0} days ago"}},weekday:{displayName:"day of the week"},"hour-wide":{displayName:"hour","relative-type-0":"this hour","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} hour","relativeTimePattern-count-other":"in {0} hours"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} hour ago","relativeTimePattern-count-other":"{0} hours ago"}},"hour-short":{displayName:"hr.","relative-type-0":"this hour","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} hr.","relativeTimePattern-count-other":"in {0} hr."},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} hr. ago","relativeTimePattern-count-other":"{0} hr. ago"}},"hour-narrow":{displayName:"hr.","relative-type-0":"this hour","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} hr.","relativeTimePattern-count-other":"in {0} hr."},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} hr. ago","relativeTimePattern-count-other":"{0} hr. ago"}},"minute-wide":{displayName:"minute","relative-type-0":"this minute","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} minute","relativeTimePattern-count-other":"in {0} minutes"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} minute ago","relativeTimePattern-count-other":"{0} minutes ago"}},"minute-short":{displayName:"min.","relative-type-0":"this minute","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} min.","relativeTimePattern-count-other":"in {0} min."},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} min. ago","relativeTimePattern-count-other":"{0} min. ago"}},"minute-narrow":{displayName:"min.","relative-type-0":"this minute","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} min.","relativeTimePattern-count-other":"in {0} min."},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} min. ago","relativeTimePattern-count-other":"{0} min. ago"}},"second-wide":{displayName:"second","relative-type-0":"now","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} second","relativeTimePattern-count-other":"in {0} seconds"},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} second ago","relativeTimePattern-count-other":"{0} seconds ago"}},"second-short":{displayName:"sec.","relative-type-0":"now","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} sec.","relativeTimePattern-count-other":"in {0} sec."},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} sec. ago","relativeTimePattern-count-other":"{0} sec. ago"}},"second-narrow":{displayName:"sec.","relative-type-0":"now","relativeTime-type-future":{"relativeTimePattern-count-one":"in {0} sec.","relativeTimePattern-count-other":"in {0} sec."},"relativeTime-type-past":{"relativeTimePattern-count-one":"{0} sec. ago","relativeTimePattern-count-other":"{0} sec. ago"}},zone:{displayName:"time zone"}},decimalFormat:{standard:"#,##0.###"},currencyFormat:{standard:"¤#,##0.00",currencySpacing:{beforeCurrency:{currencyMatch:"[:^S:]",surroundingMatch:"[:digit:]",insertBetween:" "},afterCurrency:{currencyMatch:"[:^S:]",surroundingMatch:"[:digit:]",insertBetween:" "}}},percentFormat:{standard:"#,##0%"},miscPattern:{approximately:"~{0}",atLeast:"{0}+",atMost:"≤{0}",range:"{0}–{1}"},"symbols-latn-decimal":".","symbols-latn-group":",","symbols-latn-plusSign":"+","symbols-latn-minusSign":"-","symbols-latn-percentSign":"%","weekData-minDays":4,"weekData-firstDay":1,"weekData-weekendStart":6,"weekData-weekendEnd":0,timeData:{_allowed:"H h",_preferred:"H"},"lenient-scope-number":{minusSign:"-‐‒–⁻₋−➖﹣",commaSign:",،٫、︐︑﹐﹑,",plusSign:"+⁺₊➕﬩﹢"},plurals:{},units:{short:{per:{compoundUnitPattern:"{0}/{1}"},"acceleration-g-force":{displayName:"g-force","unitPattern-count-one":"{0} G","unitPattern-count-other":"{0} G"},"acceleration-meter-per-second-squared":{displayName:"meters/sec²","unitPattern-count-one":"{0} m/s²","unitPattern-count-other":"{0} m/s²"},"angle-revolution":{displayName:"rev","unitPattern-count-one":"{0} rev","unitPattern-count-other":"{0} rev"},"angle-radian":{displayName:"radians","unitPattern-count-one":"{0} rad","unitPattern-count-other":"{0} rad"},"angle-degree":{displayName:"degrees","unitPattern-count-one":"{0} deg","unitPattern-count-other":"{0} deg"},"angle-arc-minute":{displayName:"arcmins","unitPattern-count-one":"{0} arcmin","unitPattern-count-other":"{0} arcmins"},"angle-arc-second":{displayName:"arcsecs","unitPattern-count-one":"{0} arcsec","unitPattern-count-other":"{0} arcsecs"},"area-square-kilometer":{displayName:"km²","unitPattern-count-one":"{0} km²","unitPattern-count-other":"{0} km²",perUnitPattern:"{0}/km²"},"area-hectare":{displayName:"hectares","unitPattern-count-one":"{0} ha","unitPattern-count-other":"{0} ha"},"area-square-meter":{displayName:"meters²","unitPattern-count-one":"{0} m²","unitPattern-count-other":"{0} m²",perUnitPattern:"{0}/m²"},"area-square-centimeter":{displayName:"cm²","unitPattern-count-one":"{0} cm²","unitPattern-count-other":"{0} cm²",perUnitPattern:"{0}/cm²"},"area-square-mile":{displayName:"sq miles","unitPattern-count-one":"{0} sq mi","unitPattern-count-other":"{0} sq mi",perUnitPattern:"{0}/mi²"},"area-acre":{displayName:"acres","unitPattern-count-one":"{0} ac","unitPattern-count-other":"{0} ac"},"area-square-yard":{displayName:"yards²","unitPattern-count-one":"{0} yd²","unitPattern-count-other":"{0} yd²"},"area-square-foot":{displayName:"sq feet","unitPattern-count-one":"{0} sq ft","unitPattern-count-other":"{0} sq ft"},"area-square-inch":{displayName:"inches²","unitPattern-count-one":"{0} in²","unitPattern-count-other":"{0} in²",perUnitPattern:"{0}/in²"},"concentr-karat":{displayName:"karats","unitPattern-count-one":"{0} kt","unitPattern-count-other":"{0} kt"},"concentr-milligram-per-deciliter":{displayName:"mg/dL","unitPattern-count-one":"{0} mg/dL","unitPattern-count-other":"{0} mg/dL"},"concentr-millimole-per-liter":{displayName:"millimol/liter","unitPattern-count-one":"{0} mmol/L","unitPattern-count-other":"{0} mmol/L"},"concentr-part-per-million":{displayName:"parts/million","unitPattern-count-one":"{0} ppm","unitPattern-count-other":"{0} ppm"},"consumption-liter-per-kilometer":{displayName:"liters/km","unitPattern-count-one":"{0} L/km","unitPattern-count-other":"{0} L/km"},"consumption-liter-per-100kilometers":{displayName:"L/100 km","unitPattern-count-one":"{0} L/100 km","unitPattern-count-other":"{0} L/100 km"},"consumption-mile-per-gallon":{displayName:"miles/gal","unitPattern-count-one":"{0} mpg","unitPattern-count-other":"{0} mpg"},"consumption-mile-per-gallon-imperial":{displayName:"miles/gal Imp.","unitPattern-count-one":"{0} mpg Imp.","unitPattern-count-other":"{0} mpg Imp."},"digital-terabyte":{displayName:"TByte","unitPattern-count-one":"{0} TB","unitPattern-count-other":"{0} TB"},"digital-terabit":{displayName:"Tbit","unitPattern-count-one":"{0} Tb","unitPattern-count-other":"{0} Tb"},"digital-gigabyte":{displayName:"GByte","unitPattern-count-one":"{0} GB","unitPattern-count-other":"{0} GB"},"digital-gigabit":{displayName:"Gbit","unitPattern-count-one":"{0} Gb","unitPattern-count-other":"{0} Gb"},"digital-megabyte":{displayName:"MByte","unitPattern-count-one":"{0} MB","unitPattern-count-other":"{0} MB"},"digital-megabit":{displayName:"Mbit","unitPattern-count-one":"{0} Mb","unitPattern-count-other":"{0} Mb"},"digital-kilobyte":{displayName:"kByte","unitPattern-count-one":"{0} kB","unitPattern-count-other":"{0} kB"},"digital-kilobit":{displayName:"kbit","unitPattern-count-one":"{0} kb","unitPattern-count-other":"{0} kb"},"digital-byte":{displayName:"byte","unitPattern-count-one":"{0} byte","unitPattern-count-other":"{0} byte"},"digital-bit":{displayName:"bit","unitPattern-count-one":"{0} bit","unitPattern-count-other":"{0} bit"},"duration-century":{displayName:"c","unitPattern-count-one":"{0} c","unitPattern-count-other":"{0} c"},"duration-year":{displayName:"years","unitPattern-count-one":"{0} yr","unitPattern-count-other":"{0} yrs",perUnitPattern:"{0}/y"},"duration-month":{displayName:"months","unitPattern-count-one":"{0} mth","unitPattern-count-other":"{0} mths",perUnitPattern:"{0}/m"},"duration-week":{displayName:"weeks","unitPattern-count-one":"{0} wk","unitPattern-count-other":"{0} wks",perUnitPattern:"{0}/w"},"duration-day":{displayName:"days","unitPattern-count-one":"{0} day","unitPattern-count-other":"{0} days",perUnitPattern:"{0}/d"},"duration-hour":{displayName:"hours","unitPattern-count-one":"{0} hr","unitPattern-count-other":"{0} hr",perUnitPattern:"{0}/h"},"duration-minute":{displayName:"mins","unitPattern-count-one":"{0} min","unitPattern-count-other":"{0} min",perUnitPattern:"{0}/min"},"duration-second":{displayName:"secs","unitPattern-count-one":"{0} sec","unitPattern-count-other":"{0} sec",perUnitPattern:"{0}/s"},"duration-millisecond":{displayName:"millisecs","unitPattern-count-one":"{0} ms","unitPattern-count-other":"{0} ms"},"duration-microsecond":{displayName:"μsecs","unitPattern-count-one":"{0} μs","unitPattern-count-other":"{0} μs"},"duration-nanosecond":{displayName:"nanosecs","unitPattern-count-one":"{0} ns","unitPattern-count-other":"{0} ns"},"electric-ampere":{displayName:"amps","unitPattern-count-one":"{0} A","unitPattern-count-other":"{0} A"},"electric-milliampere":{displayName:"milliamps","unitPattern-count-one":"{0} mA","unitPattern-count-other":"{0} mA"},"electric-ohm":{displayName:"ohms","unitPattern-count-one":"{0} Ω","unitPattern-count-other":"{0} Ω"},"electric-volt":{displayName:"volts","unitPattern-count-one":"{0} V","unitPattern-count-other":"{0} V"},"energy-kilocalorie":{displayName:"kcal","unitPattern-count-one":"{0} kcal","unitPattern-count-other":"{0} kcal"},"energy-calorie":{displayName:"cal","unitPattern-count-one":"{0} cal","unitPattern-count-other":"{0} cal"},"energy-foodcalorie":{displayName:"Cal","unitPattern-count-one":"{0} Cal","unitPattern-count-other":"{0} Cal"},"energy-kilojoule":{displayName:"kilojoule","unitPattern-count-one":"{0} kJ","unitPattern-count-other":"{0} kJ"},"energy-joule":{displayName:"joules","unitPattern-count-one":"{0} J","unitPattern-count-other":"{0} J"},"energy-kilowatt-hour":{displayName:"kW-hour","unitPattern-count-one":"{0} kWh","unitPattern-count-other":"{0} kWh"},"frequency-gigahertz":{displayName:"GHz","unitPattern-count-one":"{0} GHz","unitPattern-count-other":"{0} GHz"},"frequency-megahertz":{displayName:"MHz","unitPattern-count-one":"{0} MHz","unitPattern-count-other":"{0} MHz"},"frequency-kilohertz":{displayName:"kHz","unitPattern-count-one":"{0} kHz","unitPattern-count-other":"{0} kHz"},"frequency-hertz":{displayName:"Hz","unitPattern-count-one":"{0} Hz","unitPattern-count-other":"{0} Hz"},"length-kilometer":{displayName:"km","unitPattern-count-one":"{0} km","unitPattern-count-other":"{0} km",perUnitPattern:"{0}/km"},"length-meter":{displayName:"m","unitPattern-count-one":"{0} m","unitPattern-count-other":"{0} m",perUnitPattern:"{0}/m"},"length-decimeter":{displayName:"dm","unitPattern-count-one":"{0} dm","unitPattern-count-other":"{0} dm"},"length-centimeter":{displayName:"cm","unitPattern-count-one":"{0} cm","unitPattern-count-other":"{0} cm",perUnitPattern:"{0}/cm"},"length-millimeter":{displayName:"mm","unitPattern-count-one":"{0} mm","unitPattern-count-other":"{0} mm"},"length-micrometer":{displayName:"µmeters","unitPattern-count-one":"{0} µm","unitPattern-count-other":"{0} µm"},"length-nanometer":{displayName:"nm","unitPattern-count-one":"{0} nm","unitPattern-count-other":"{0} nm"},"length-picometer":{displayName:"pm","unitPattern-count-one":"{0} pm","unitPattern-count-other":"{0} pm"},"length-mile":{displayName:"miles","unitPattern-count-one":"{0} mi","unitPattern-count-other":"{0} mi"},"length-yard":{displayName:"yards","unitPattern-count-one":"{0} yd","unitPattern-count-other":"{0} yd"},"length-foot":{displayName:"feet","unitPattern-count-one":"{0} ft","unitPattern-count-other":"{0} ft",perUnitPattern:"{0}/ft"},"length-inch":{displayName:"inches","unitPattern-count-one":"{0} in","unitPattern-count-other":"{0} in",perUnitPattern:"{0}/in"},"length-parsec":{displayName:"parsecs","unitPattern-count-one":"{0} pc","unitPattern-count-other":"{0} pc"},"length-light-year":{displayName:"light yrs","unitPattern-count-one":"{0} ly","unitPattern-count-other":"{0} ly"},"length-astronomical-unit":{displayName:"au","unitPattern-count-one":"{0} au","unitPattern-count-other":"{0} au"},"length-furlong":{displayName:"furlongs","unitPattern-count-one":"{0} fur","unitPattern-count-other":"{0} fur"},"length-fathom":{displayName:"fathoms","unitPattern-count-one":"{0} ftm","unitPattern-count-other":"{0} ftm"},"length-nautical-mile":{displayName:"nmi","unitPattern-count-one":"{0} nmi","unitPattern-count-other":"{0} nmi"},"length-mile-scandinavian":{displayName:"smi","unitPattern-count-one":"{0} smi","unitPattern-count-other":"{0} smi"},"length-point":{displayName:"points","unitPattern-count-one":"{0} pt","unitPattern-count-other":"{0} pt"},"light-lux":{displayName:"lux","unitPattern-count-one":"{0} lx","unitPattern-count-other":"{0} lx"},"mass-metric-ton":{displayName:"t","unitPattern-count-one":"{0} t","unitPattern-count-other":"{0} t"},"mass-kilogram":{displayName:"kg","unitPattern-count-one":"{0} kg","unitPattern-count-other":"{0} kg",perUnitPattern:"{0}/kg"},"mass-gram":{displayName:"grams","unitPattern-count-one":"{0} g","unitPattern-count-other":"{0} g",perUnitPattern:"{0}/g"},"mass-milligram":{displayName:"mg","unitPattern-count-one":"{0} mg","unitPattern-count-other":"{0} mg"},"mass-microgram":{displayName:"µg","unitPattern-count-one":"{0} µg","unitPattern-count-other":"{0} µg"},"mass-ton":{displayName:"tons","unitPattern-count-one":"{0} tn","unitPattern-count-other":"{0} tn"},"mass-stone":{displayName:"stones","unitPattern-count-one":"{0} st","unitPattern-count-other":"{0} st"},"mass-pound":{displayName:"pounds","unitPattern-count-one":"{0} lb","unitPattern-count-other":"{0} lb",perUnitPattern:"{0}/lb"},"mass-ounce":{displayName:"oz","unitPattern-count-one":"{0} oz","unitPattern-count-other":"{0} oz",perUnitPattern:"{0}/oz"},"mass-ounce-troy":{displayName:"oz troy","unitPattern-count-one":"{0} oz t","unitPattern-count-other":"{0} oz t"},"mass-carat":{displayName:"carats","unitPattern-count-one":"{0} CD","unitPattern-count-other":"{0} CD"},"power-gigawatt":{displayName:"GW","unitPattern-count-one":"{0} GW","unitPattern-count-other":"{0} GW"},"power-megawatt":{displayName:"MW","unitPattern-count-one":"{0} MW","unitPattern-count-other":"{0} MW"},"power-kilowatt":{displayName:"kW","unitPattern-count-one":"{0} kW","unitPattern-count-other":"{0} kW"},"power-watt":{displayName:"watts","unitPattern-count-one":"{0} W","unitPattern-count-other":"{0} W"},"power-milliwatt":{displayName:"mW","unitPattern-count-one":"{0} mW","unitPattern-count-other":"{0} mW"},"power-horsepower":{displayName:"hp","unitPattern-count-one":"{0} hp","unitPattern-count-other":"{0} hp"},"pressure-hectopascal":{displayName:"hPa","unitPattern-count-one":"{0} hPa","unitPattern-count-other":"{0} hPa"},"pressure-millimeter-of-mercury":{displayName:"mmHg","unitPattern-count-one":"{0} mmHg","unitPattern-count-other":"{0} mmHg"},"pressure-pound-per-square-inch":{displayName:"psi","unitPattern-count-one":"{0} psi","unitPattern-count-other":"{0} psi"},"pressure-inch-hg":{displayName:"inHg","unitPattern-count-one":"{0} inHg","unitPattern-count-other":"{0} inHg"},"pressure-millibar":{displayName:"mbar","unitPattern-count-one":"{0} mbar","unitPattern-count-other":"{0} mbar"},"speed-kilometer-per-hour":{displayName:"km/hour","unitPattern-count-one":"{0} kph","unitPattern-count-other":"{0} kph"},"speed-meter-per-second":{displayName:"meters/sec","unitPattern-count-one":"{0} m/s","unitPattern-count-other":"{0} m/s"},"speed-mile-per-hour":{displayName:"miles/hour","unitPattern-count-one":"{0} mph","unitPattern-count-other":"{0} mph"},"speed-knot":{displayName:"kn","unitPattern-count-one":"{0} kn","unitPattern-count-other":"{0} kn"},"temperature-generic":{displayName:"°","unitPattern-count-other":"{0}°"},"temperature-celsius":{displayName:"deg. C","unitPattern-count-one":"{0}°C","unitPattern-count-other":"{0}°C"},"temperature-fahrenheit":{displayName:"deg. F","unitPattern-count-one":"{0}°F","unitPattern-count-other":"{0}°F"},"temperature-kelvin":{displayName:"K","unitPattern-count-one":"{0} K","unitPattern-count-other":"{0} K"},"volume-cubic-kilometer":{displayName:"km³","unitPattern-count-one":"{0} km³","unitPattern-count-other":"{0} km³"},"volume-cubic-meter":{displayName:"m³","unitPattern-count-one":"{0} m³","unitPattern-count-other":"{0} m³",perUnitPattern:"{0}/m³"},"volume-cubic-centimeter":{displayName:"cm³","unitPattern-count-one":"{0} cm³","unitPattern-count-other":"{0} cm³",perUnitPattern:"{0}/cm³"},"volume-cubic-mile":{displayName:"mi³","unitPattern-count-one":"{0} mi³","unitPattern-count-other":"{0} mi³"},"volume-cubic-yard":{displayName:"yards³","unitPattern-count-one":"{0} yd³","unitPattern-count-other":"{0} yd³"},"volume-cubic-foot":{displayName:"feet³","unitPattern-count-one":"{0} ft³","unitPattern-count-other":"{0} ft³"},"volume-cubic-inch":{displayName:"inches³","unitPattern-count-one":"{0} in³","unitPattern-count-other":"{0} in³"},"volume-megaliter":{displayName:"ML","unitPattern-count-one":"{0} ML","unitPattern-count-other":"{0} ML"},"volume-hectoliter":{displayName:"hL","unitPattern-count-one":"{0} hL","unitPattern-count-other":"{0} hL"},"volume-liter":{displayName:"liters","unitPattern-count-one":"{0} L","unitPattern-count-other":"{0} L",perUnitPattern:"{0}/L"},"volume-deciliter":{displayName:"dL","unitPattern-count-one":"{0} dL","unitPattern-count-other":"{0} dL"},"volume-centiliter":{displayName:"cL","unitPattern-count-one":"{0} cL","unitPattern-count-other":"{0} cL"},"volume-milliliter":{displayName:"mL","unitPattern-count-one":"{0} mL","unitPattern-count-other":"{0} mL"},"volume-pint-metric":{displayName:"mpt","unitPattern-count-one":"{0} mpt","unitPattern-count-other":"{0} mpt"},"volume-cup-metric":{displayName:"mcup","unitPattern-count-one":"{0} mc","unitPattern-count-other":"{0} mc"},"volume-acre-foot":{displayName:"acre ft","unitPattern-count-one":"{0} ac ft","unitPattern-count-other":"{0} ac ft"},"volume-bushel":{displayName:"bushels","unitPattern-count-one":"{0} bu","unitPattern-count-other":"{0} bu"},"volume-gallon":{displayName:"gal","unitPattern-count-one":"{0} gal","unitPattern-count-other":"{0} gal",perUnitPattern:"{0}/gal US"},"volume-gallon-imperial":{displayName:"Imp. gal","unitPattern-count-one":"{0} gal Imp.","unitPattern-count-other":"{0} gal Imp.",perUnitPattern:"{0}/gal Imp."},"volume-quart":{displayName:"qts","unitPattern-count-one":"{0} qt","unitPattern-count-other":"{0} qt"},"volume-pint":{displayName:"pints","unitPattern-count-one":"{0} pt","unitPattern-count-other":"{0} pt"},"volume-cup":{displayName:"cups","unitPattern-count-one":"{0} c","unitPattern-count-other":"{0} c"},"volume-fluid-ounce":{displayName:"fl oz","unitPattern-count-one":"{0} fl oz","unitPattern-count-other":"{0} fl oz"},"volume-tablespoon":{displayName:"tbsp","unitPattern-count-one":"{0} tbsp","unitPattern-count-other":"{0} tbsp"},"volume-teaspoon":{displayName:"tsp","unitPattern-count-one":"{0} tsp","unitPattern-count-other":"{0} tsp"},coordinateUnit:{east:"{0} E",north:"{0} N",south:"{0} S",west:"{0} W"}}}},Un={iw:"he",ji:"yi",in:"id",sh:"sr"},jn=function(){var e,t=Ze._cldrLocales,i={};if(t)for(e=0;e<t.length;e++)i[t[e]]=!0;return i}(),Vn={};function Wn(e){return e||(e=Tn.getConfiguration().getCalendarType()),"ca-"+e.toLowerCase()}var Yn=Ln.extend("sap.ui.core.CustomLocaleData",{constructor:function(e){Ln.apply(this,arguments),this.mCustomData=Tn.getConfiguration().getFormatSettings().getCustomLocaleData()},_get:function(){var e,t=Array.prototype.slice.call(arguments);0==t[0].indexOf("ca-")&&t[0]==Wn()&&(t=t.slice(1)),e=t.join("-");var i=this.mCustomData[e];return null==i&&null==(i=this._getDeep(this.mCustomData,arguments))&&(i=this._getDeep(this.mData,arguments)),i},_getMerged:function(){var e=this._getDeep(this.mData,arguments),t=this._getDeep(this.mCustomData,arguments);return Nn({},e,t)}});Ln.getInstance=function(e){return e.hasPrivateUseSubtag("sapufmt")?new Yn(e):new Ln(e)};var qn=new Map,Gn=function(e){if(!qn.has(e))throw new Error("Required calendar type: "+e+" not loaded.");return qn.get(e)},Jn=function(e,t){qn.set(e,t)},Xn=Xe.extend("sap.ui.core.date.UniversalDate",{constructor:function(){var e=Xn.getClass();return this.createDate(e,arguments)}});Xn.UTC=function(){var e=Xn.getClass();return e.UTC.apply(e,arguments)},Xn.now=function(){return Date.now()},Xn.prototype.createDate=function(e,t){switch(t.length){case 0:return new e;case 1:return new e(t[0]);case 2:return new e(t[0],t[1]);case 3:return new e(t[0],t[1],t[2]);case 4:return new e(t[0],t[1],t[2],t[3]);case 5:return new e(t[0],t[1],t[2],t[3],t[4]);case 6:return new e(t[0],t[1],t[2],t[3],t[4],t[5]);case 7:return new e(t[0],t[1],t[2],t[3],t[4],t[5],t[6])}},Xn.getInstance=function(e,t){var i,r;return e instanceof Xn&&(e=e.getJSDate()),t||(t=Tn.getConfiguration().getCalendarType()),i=Xn.getClass(t),(r=Object.create(i.prototype)).oDate=e,r.sCalendarType=t,r},Xn.getClass=function(e){return e||(e=Tn.getConfiguration().getCalendarType()),Gn(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){Xn.prototype[e]=function(){return this.oDate[e].apply(this.oDate,arguments)}})),Xn.prototype.getJSDate=function(){return this.oDate},Xn.prototype.getCalendarType=function(){return this.sCalendarType},Xn.prototype.getEra=function(){return Xn.getEraByDate(this.sCalendarType,this.oDate.getFullYear(),this.oDate.getMonth(),this.oDate.getDate())},Xn.prototype.setEra=function(e){},Xn.prototype.getUTCEra=function(){return Xn.getEraByDate(this.sCalendarType,this.oDate.getUTCFullYear(),this.oDate.getUTCMonth(),this.oDate.getUTCDate())},Xn.prototype.setUTCEra=function(e){},Xn.prototype.getWeek=function(){return Xn.getWeekByDate(this.sCalendarType,this.getFullYear(),this.getMonth(),this.getDate())},Xn.prototype.setWeek=function(e){var t=Xn.getFirstDateOfWeek(this.sCalendarType,e.year||this.getFullYear(),e.week);this.setFullYear(t.year,t.month,t.day)},Xn.prototype.getUTCWeek=function(){return Xn.getWeekByDate(this.sCalendarType,this.getUTCFullYear(),this.getUTCMonth(),this.getUTCDate())},Xn.prototype.setUTCWeek=function(e){var t=Xn.getFirstDateOfWeek(this.sCalendarType,e.year||this.getFullYear(),e.week);this.setUTCFullYear(t.year,t.month,t.day)},Xn.prototype.getQuarter=function(){return Math.floor(this.getMonth()/3)},Xn.prototype.getUTCQuarter=function(){return Math.floor(this.getUTCMonth()/3)},Xn.prototype.getDayPeriod=function(){return this.getHours()<12?0:1},Xn.prototype.getUTCDayPeriod=function(){return this.getUTCHours()<12?0:1},Xn.prototype.getTimezoneShort=function(){if(this.oDate.getTimezoneShort)return this.oDate.getTimezoneShort()},Xn.prototype.getTimezoneLong=function(){if(this.oDate.getTimezoneLong)return this.oDate.getTimezoneLong()};function Qn(e,t){for(var i=Tn.getConfiguration().getFormatSettings().getFormatLocale(),r=Ln.getInstance(i),a=r.getMinimalDaysInFirstWeek(),o=r.getFirstDayOfWeek(),n=new e(e.UTC(t,0,1)),s=7;n.getUTCDay()!==o;)n.setUTCDate(n.getUTCDate()-1),s--;return s<a&&n.setUTCDate(n.getUTCDate()+7),n}function Zn(e,t){return Math.floor((t.valueOf()-e.valueOf())/6048e5)}Xn.getWeekByDate=function(e,t,i,r){var a,o,n,s,l=Tn.getConfiguration().getFormatSettings().getFormatLocale(),u=this.getClass(e),d=Qn(u,t),c=new u(u.UTC(t,i,r));return"US"===l.getRegion()?a=Zn(d,c):(n=t+1,s=Qn(u,o=t-1),c>=Qn(u,n)?(t=n,a=0):c<d?(t=o,a=Zn(s,c)):a=Zn(d,c)),{year:t,week:a}},Xn.getFirstDateOfWeek=function(e,t,i){var r=Tn.getConfiguration().getFormatSettings().getFormatLocale(),a=this.getClass(e),o=Qn(a,t),n=new a(o.valueOf()+6048e5*i);return"US"===r.getRegion()&&0===i&&o.getUTCFullYear()<t?{year:t,month:0,day:1}:{year:n.getUTCFullYear(),month:n.getUTCMonth(),day:n.getUTCDate()}};var Kn={};function es(e){var t=Tn.getConfiguration().getFormatSettings().getFormatLocale(),i=Ln.getInstance(t);if(!(r=Kn[e])){var r;(r=i.getEraDates(e))[0]||(r[0]={_start:"1-1-1"});for(var a=0;a<r.length;a++){var o=r[a];o&&(o._start&&(o._startInfo=ts(o._start)),o._end&&(o._endInfo=ts(o._end)))}Kn[e]=r}return r}function ts(e){var t,i,r,a=e.split("-");return""==a[0]?(t=-parseInt(a[1]),i=parseInt(a[2])-1,r=parseInt(a[3])):(t=parseInt(a[0]),i=parseInt(a[1])-1,r=parseInt(a[2])),{timestamp:new Date(0).setUTCFullYear(t,i,r),year:t,month:i,day:r}}Xn.getEraByDate=function(e,t,i,r){for(var a,o=es(e),n=new Date(0).setUTCFullYear(t,i,r),s=o.length-1;s>=0;s--)if(a=o[s]){if(a._start&&n>=a._startInfo.timestamp)return s;if(a._end&&n<a._endInfo.timestamp)return s}},Xn.getCurrentEra=function(e){var t=new Date;return this.getEraByDate(e,t.getFullYear(),t.getMonth(),t.getDate())},Xn.getEraStartDate=function(e,t){var i=es(e),r=i[t]||i[0];if(r._start)return r._startInfo};var is=function(e,t,i,r,a){if("boolean"==typeof i&&(r=i,i=void 0),a||(a=0),i||(i=10),a>i)return Ne.warning("deepEqual comparison exceeded maximum recursion depth of "+i+". Treating values as unequal"),!1;if(e===t)return!0;if("number"==typeof e&&"number"==typeof t&&isNaN(e)&&isNaN(t))return!0;if(Array.isArray(e)&&Array.isArray(t)){if(!r&&e.length!==t.length)return!1;if(e.length>t.length)return!1;for(var o=0;o<e.length;o++)if(!is(e[o],t[o],i,r,a+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(!r&&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 o in e)if(!is(e[o],t[o],i,r,a+1))return!1;return!0}return!1},rs=/('')|'([^']+(?:''[^']*)*)(?:'|$)|\{([0-9]+(?:\s*,[^{}]*)?)\}|[{}]/g,as=function(){throw new Error},os={};as.oDateInfo={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,i){return e.getDatePattern(t,i)},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"]},as.oDateTimeInfo={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,i){var r=t.indexOf("/");return r>0?e.getCombinedDateTimePattern(t.substr(0,r),t.substr(r+1),i):e.getCombinedDateTimePattern(t,t,i)},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"]},as.oTimeInfo={oDefaultFormatOptions:{style:"medium",relativeScale:"auto",relativeStyle:"wide"},aFallbackFormatOptions:[{style:"short"},{style:"medium"},{pattern:"HH:mm:ss"},{pattern:"HHmmss"}],getPattern:function(e,t,i){return e.getTimePattern(t,i)},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"]},as.getInstance=function(e,t){return this.getDateInstance(e,t)},as.getDateInstance=function(e,t){return this.createInstance(e,t,this.oDateInfo)},as.getDateTimeInstance=function(e,t){return this.createInstance(e,t,this.oDateTimeInfo)},as.getTimeInstance=function(e,t){return this.createInstance(e,t,this.oTimeInfo)},as.createInstance=function(e,t,i){var r=Object.create(this.prototype);if(e instanceof Ze&&(t=e,e=void 0),t||(t=Tn.getConfiguration().getFormatSettings().getFormatLocale()),r.oLocale=t,r.oLocaleData=Ln.getInstance(t),r.oFormatOptions=Nn({},i.oDefaultFormatOptions,e),r.oFormatOptions.calendarType||(r.oFormatOptions.calendarType=Tn.getConfiguration().getCalendarType()),r.oFormatOptions.pattern||(r.oFormatOptions.format?r.oFormatOptions.pattern=r.oLocaleData.getCustomDateTimePattern(r.oFormatOptions.format,r.oFormatOptions.calendarType):r.oFormatOptions.pattern=i.getPattern(r.oLocaleData,r.oFormatOptions.style,r.oFormatOptions.calendarType)),r.oFormatOptions.interval){r.oFormatOptions.format?(r.intervalPatterns=r.oLocaleData.getCustomIntervalPattern(r.oFormatOptions.format,null,r.oFormatOptions.calendarType),"string"==typeof r.intervalPatterns&&(r.intervalPatterns=[r.intervalPatterns]),r.intervalPatterns.push(r.oLocaleData.getCustomDateTimePattern(r.oFormatOptions.format,r.oFormatOptions.calendarType))):r.intervalPatterns=[r.oLocaleData.getCombinedIntervalPattern(r.oFormatOptions.pattern,r.oFormatOptions.calendarType),r.oFormatOptions.pattern];var a=function(e){var t=e.oLocaleData.getIntervalPattern("",e.oFormatOptions.calendarType);return(t=t.replace(/[^\{\}01 ]/,"-")).replace(/\{(0|1)\}/g,e.oFormatOptions.pattern)}(r);r.intervalPatterns.push(a)}if(!r.oFormatOptions.fallback){i.oFallbackFormats||(i.oFallbackFormats={});var o,n,s=t.toString(),l=r.oFormatOptions.calendarType,u=s+"-"+l;r.oFormatOptions.pattern&&i.bPatternFallbackWithoutDelimiter&&(u=u+"-"+r.oFormatOptions.pattern),r.oFormatOptions.interval&&(u+="-interval");var d=i.oFallbackFormats[u]?Object.assign({},i.oFallbackFormats[u]):void 0;d||(n=i.aFallbackFormatOptions,i.bShortFallbackFormatOptions&&(o=i.getPattern(r.oLocaleData,"short"),n=n.concat(as._createFallbackOptionsWithoutDelimiter(o))),r.oFormatOptions.pattern&&i.bPatternFallbackWithoutDelimiter&&(n=as._createFallbackOptionsWithoutDelimiter(r.oFormatOptions.pattern).concat(n)),d=as._createFallbackFormat(n,l,t,i,r.oFormatOptions.interval)),r.aFallbackFormats=d}return r.oRequiredParts=i.oRequiredParts,r.aRelativeScales=i.aRelativeScales,r.aRelativeParseScales=i.aRelativeParseScales,r.aIntervalCompareFields=i.aIntervalCompareFields,r.init(),r},as.prototype.init=function(){var e=this.oFormatOptions.calendarType;this.aMonthsAbbrev=this.oLocaleData.getMonths("abbreviated",e),this.aMonthsWide=this.oLocaleData.getMonths("wide",e),this.aMonthsNarrow=this.oLocaleData.getMonths("narrow",e),this.aMonthsAbbrevSt=this.oLocaleData.getMonthsStandAlone("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.aDayPeriods=this.oLocaleData.getDayPeriods("abbreviated",e),this.aFormatArray=this.parseCldrDatePattern(this.oFormatOptions.pattern),this.sAllowedCharacters=this.getAllowedCharacters(this.aFormatArray)},as._createFallbackFormat=function(e,t,i,r,a){return e.map((function(e){var o=Object.assign({},e);a&&(o.interval=!0),o.calendarType=t,o.fallback=!0;var n=as.createInstance(o,i,r);return n.bIsFallback=!0,n}))},as._createFallbackOptionsWithoutDelimiter=function(e){var t=/d+/g,i="dd",r=/M+/g,a="MM",o={regex:/[yU]+/g,replace:["yyyy","yy"]};return e=(e=(e=e.replace(/[^dMyGU]/g,"")).replace(t,i)).replace(r,a),o.replace.map((function(t){return{pattern:e.replace(o.regex,t),strictParsing:!0}}))};var ns={isNumber:function(e){return e>=48&&e<=57},findNumbers:function(e,t){for(var i=0;i<t&&this.isNumber(e.charCodeAt(i));)i++;return"string"!=typeof e&&(e=e.toString()),e.substr(0,i)},findEntry:function(e,t){for(var i=-1,r=0,a=0;a<t.length;a++)t[a]&&t[a].length>r&&0===e.indexOf(t[a])&&(i=a,r=t[a].length);return{index:i,value:-1===i?null:t[i]}},parseTZ:function(e,t){var i,r=0,a="+"==e.charAt(0)?-1:1;r++,i=this.findNumbers(e.substr(r),2);var o=parseInt(i);return r+=2,t&&r++,i=this.findNumbers(e.substr(r),2),{length:r+=2,tzDiff:(parseInt(i)+60*o)*a}},checkValid:function(e,t,i){if(e in i.oRequiredParts&&t)return!1}};as.prototype.oSymbols={"":{name:"text",format:function(e,t,i,r){return e.value},parse:function(e,t,i,r){for(var a,o=!0,n=0,s=0;s<t.value.length;s++){if(" "===(a=t.value.charAt(s)))for(;" "===e.charAt(n);)n++;else"-~‐‑‒–—﹘﹣-~".includes(a)?("-~‐‑‒–—﹘﹣-~".includes(e.charAt(n))||(o=!1),n++):(e.charAt(n)!==a&&(o=!1),n++);if(!o)break}if(o)return{length:n};var l=!1;return r.index<r.formatArray.length-1&&(l=r.formatArray[r.index+1].type in i.oRequiredParts),{valid:ns.checkValid(t.type,l,i)}}},G:{name:"era",format:function(e,t,i,r){var a=i?t.getUTCEra():t.getEra();return e.digits<=3?r.aErasAbbrev[a]:4===e.digits?r.aErasWide[a]:r.aErasNarrow[a]},parse:function(e,t,i,r){for(var a=[i.aErasWide,i.aErasAbbrev,i.aErasNarrow],o=0;o<a.length;o++){var n=a[o],s=ns.findEntry(e,n);if(-1!==s.index)return{era:s.index,length:s.value.length}}return{era:i.aErasWide.length-1,valid:ns.checkValid(t.type,!0,i)}}},y:{name:"year",format:function(e,t,i,r){var a=i?t.getUTCFullYear():t.getFullYear(),o=String(a),n=r.oFormatOptions.calendarType;return 2==e.digits&&o.length>2&&(o=o.substr(o.length-2)),n!=On.Japanese&&1==e.digits&&a<100&&(o=o.padStart(4,"0")),o.padStart(e.digits,"0")},parse:function(e,t,i,r){var a,o=i.oFormatOptions.calendarType;a=1==t.digits?ns.findNumbers(e,4):2==t.digits?ns.findNumbers(e,2):ns.findNumbers(e,t.digits);var n=parseInt(a);if(o!=On.Japanese&&a.length<=2){var s=Xn.getInstance(new Date,o).getFullYear(),l=Math.floor(s/100),u=100*l+n-s;n+=u<-70?100*(l+1):u<30?100*l:100*(l-1)}return{length:a.length,valid:ns.checkValid(t.type,""===a,i),year:n}}},Y:{name:"weekYear",format:function(e,t,i,r){var a=(i?t.getUTCWeek():t.getWeek()).year,o=String(a),n=r.oFormatOptions.calendarType;return 2==e.digits&&o.length>2&&(o=o.substr(o.length-2)),n!=On.Japanese&&1==e.digits&&a<100&&(o=o.padStart(4,"0")),o.padStart(e.digits,"0")},parse:function(e,t,i,r){var a,o=i.oFormatOptions.calendarType;a=1==t.digits?ns.findNumbers(e,4):2==t.digits?ns.findNumbers(e,2):ns.findNumbers(e,t.digits);var n,s=parseInt(a);if(o!=On.Japanese&&a.length<=2){var l=Xn.getInstance(new Date,o).getFullYear(),u=Math.floor(l/100),d=100*u+n-l;n+=d<-70?100*(u+1):d<30?100*u:100*(u-1)}return{length:a.length,valid:ns.checkValid(t.type,""===a,i),year:s,weekYear:n}}},M:{name:"month",format:function(e,t,i,r){var a=i?t.getUTCMonth():t.getMonth();return 3==e.digits?r.aMonthsAbbrev[a]:4==e.digits?r.aMonthsWide[a]:e.digits>4?r.aMonthsNarrow[a]:String(a+1).padStart(e.digits,"0")},parse:function(e,t,i,r){var a,o,n,s=[i.aMonthsWide,i.aMonthsWideSt,i.aMonthsAbbrev,i.aMonthsAbbrevSt,i.aMonthsNarrow,i.aMonthsNarrowSt];if(t.digits<3)n=ns.findNumbers(e,Math.max(t.digits,2)),a=ns.checkValid(t.type,""===n,i),o=parseInt(n)-1,r.strict&&(o>11||o<0)&&(a=!1);else{for(var l=0;l<s.length;l++){var u=s[l],d=ns.findEntry(e,u);if(-1!==d.index)return{month:d.index,length:d.value.length}}a=ns.checkValid(t.type,!0,i)}return{month:o,length:n?n.length:0,valid:a}}},L:{name:"monthStandalone",format:function(e,t,i,r){var a=i?t.getUTCMonth():t.getMonth();return 3==e.digits?r.aMonthsAbbrevSt[a]:4==e.digits?r.aMonthsWideSt[a]:e.digits>4?r.aMonthsNarrowSt[a]:String(a+1).padStart(e.digits,"0")},parse:function(e,t,i,r){var a,o,n,s=[i.aMonthsWide,i.aMonthsWideSt,i.aMonthsAbbrev,i.aMonthsAbbrevSt,i.aMonthsNarrow,i.aMonthsNarrowSt];if(t.digits<3)n=ns.findNumbers(e,Math.max(t.digits,2)),a=ns.checkValid(t.type,""===n,i),o=parseInt(n)-1,r.strict&&(o>11||o<0)&&(a=!1);else{for(var l=0;l<s.length;l++){var u=s[l],d=ns.findEntry(e,u);if(-1!==d.index)return{month:d.index,length:d.value.length}}a=ns.checkValid(t.type,!0,i)}return{month:o,length:n?n.length:0,valid:a}}},w:{name:"weekInYear",format:function(e,t,i,r){var a=(i?t.getUTCWeek():t.getWeek()).week,o=String(a+1);return o=e.digits<3?o.padStart(e.digits,"0"):r.oLocaleData.getCalendarWeek(3===e.digits?"narrow":"wide",o.padStart(2,"0"))},parse:function(e,t,i,r){var a,o,n,s=0;if(t.digits<3)s=(o=ns.findNumbers(e,2)).length,n=parseInt(o)-1,a=ns.checkValid(t.type,!o,i);else{o=(o=i.oLocaleData.getCalendarWeek(3===t.digits?"narrow":"wide")).replace("{0}","[0-9]+");var l=new RegExp(o).exec(e);l?(s=l[0].length,n=parseInt(l[0])-1):a=ns.checkValid(t.type,!0,i)}return{length:s,valid:a,week:n}}},W:{name:"weekInMonth",format:function(e,t,i,r){return""},parse:function(){return{}}},D:{name:"dayInYear",format:function(e,t,i,r){},parse:function(){return{}}},d:{name:"day",format:function(e,t,i,r){var a=i?t.getUTCDate():t.getDate();return String(a).padStart(e.digits,"0")},parse:function(e,t,i,r){var a=ns.findNumbers(e,Math.max(t.digits,2)),o=ns.checkValid(t.type,""===a,i),n=parseInt(a);return r.strict&&(n>31||n<1)&&(o=!1),{day:n,length:a.length,valid:o}}},Q:{name:"quarter",format:function(e,t,i,r){var a=i?t.getUTCQuarter():t.getQuarter();return 3==e.digits?r.aQuartersAbbrev[a]:4==e.digits?r.aQuartersWide[a]:e.digits>4?r.aQuartersNarrow[a]:String(a+1).padStart(e.digits,"0")},parse:function(e,t,i,r){var a,o,n,s=[i.aQuartersWide,i.aQuartersWideSt,i.aQuartersAbbrev,i.aQuartersAbbrevSt,i.aQuartersNarrow,i.aQuartersNarrowSt];if(t.digits<3)n=ns.findNumbers(e,Math.max(t.digits,2)),a=ns.checkValid(t.type,""===n,i),o=parseInt(n)-1,r.strict&&o>3&&(a=!1);else{for(var l=0;l<s.length;l++){var u=s[l],d=ns.findEntry(e,u);if(-1!==d.index)return{quarter:d.index,length:d.value.length}}a=ns.checkValid(t.type,!0,i)}return{length:n?n.length:0,quarter:o,valid:a}}},q:{name:"quarterStandalone",format:function(e,t,i,r){var a=i?t.getUTCQuarter():t.getQuarter();return 3==e.digits?r.aQuartersAbbrevSt[a]:4==e.digits?r.aQuartersWideSt[a]:e.digits>4?r.aQuartersNarrowSt[a]:String(a+1).padStart(e.digits,"0")},parse:function(e,t,i,r){var a,o,n,s=[i.aQuartersWide,i.aQuartersWideSt,i.aQuartersAbbrev,i.aQuartersAbbrevSt,i.aQuartersNarrow,i.aQuartersNarrowSt];if(t.digits<3)n=ns.findNumbers(e,Math.max(t.digits,2)),a=ns.checkValid(t.type,""===n,i),o=parseInt(n)-1,r.strict&&o>3&&(a=!1);else{for(var l=0;l<s.length;l++){var u=s[l],d=ns.findEntry(e,u);if(-1!==d.index)return{quarter:d.index,length:d.value.length}}a=ns.checkValid(t.type,!0,i)}return{length:n?n.length:0,quarter:o,valid:a}}},F:{name:"dayOfWeekInMonth",format:function(e,t,i,r){return""},parse:function(){return{}}},E:{name:"dayNameInWeek",format:function(e,t,i,r){var a=i?t.getUTCDay():t.getDay();return e.digits<4?r.aDaysAbbrev[a]:4==e.digits?r.aDaysWide[a]:5==e.digits?r.aDaysNarrow[a]:r.aDaysShort[a]},parse:function(e,t,i,r){for(var a=[i.aDaysWide,i.aDaysWideSt,i.aDaysAbbrev,i.aDaysAbbrevSt,i.aDaysShort,i.aDaysShortSt,i.aDaysNarrow,i.aDaysNarrowSt],o=0;o<a.length;o++){var n=a[o],s=ns.findEntry(e,n);if(-1!==s.index)return{dayOfWeek:s.index,length:s.value.length}}}},c:{name:"dayNameInWeekStandalone",format:function(e,t,i,r){var a=i?t.getUTCDay():t.getDay();return e.digits<4?r.aDaysAbbrevSt[a]:4==e.digits?r.aDaysWideSt[a]:5==e.digits?r.aDaysNarrowSt[a]:r.aDaysShortSt[a]},parse:function(e,t,i,r){for(var a=[i.aDaysWide,i.aDaysWideSt,i.aDaysAbbrev,i.aDaysAbbrevSt,i.aDaysShort,i.aDaysShortSt,i.aDaysNarrow,i.aDaysNarrowSt],o=0;o<a.length;o++){var n=a[o],s=ns.findEntry(e,n);if(-1!==s.index)return{day:s.index,length:s.value.length}}}},u:{name:"dayNumberOfWeek",format:function(e,t,i,r){var a=i?t.getUTCDay():t.getDay();return r._adaptDayOfWeek(a)},parse:function(e,t,i,r){var a=ns.findNumbers(e,t.digits);return{dayNumberOfWeek:parseInt(a),length:a.length}}},a:{name:"amPmMarker",format:function(e,t,i,r){var a=i?t.getUTCDayPeriod():t.getDayPeriod();return r.aDayPeriods[a]},parse:function(e,t,i,r){var a,o,n=i.aDayPeriods[0],s=i.aDayPeriods[1],l=e.match(/[aApP](?:\.)?[mM](?:\.)?/),u=l&&0===l.index;return u&&(e=l[0].replace(/\./g,"").toLowerCase()+e.substring(l[0].length),n=n.replace(/\./g,"").toLowerCase(),s=s.replace(/\./g,"").toLowerCase()),0===e.indexOf(n)?(a=!1,o=u?l[0].length:n.length):0===e.indexOf(s)&&(a=!0,o=u?l[0].length:s.length),{pm:a,length:o}}},H:{name:"hour0_23",format:function(e,t,i,r){var a=i?t.getUTCHours():t.getHours();return String(a).padStart(e.digits,"0")},parse:function(e,t,i,r){var a,o=ns.findNumbers(e,Math.max(t.digits,2)),n=parseInt(o);return a=ns.checkValid(t.type,""===o,i),r.strict&&n>23&&(a=!1),{hour:n,length:o.length,valid:a}}},k:{name:"hour1_24",format:function(e,t,i,r){var a=i?t.getUTCHours():t.getHours();return(0===a?"24":String(a)).padStart(e.digits,"0")},parse:function(e,t,i,r){var a,o=ns.findNumbers(e,Math.max(t.digits,2)),n=parseInt(o);return a=ns.checkValid(t.type,""===o,i),24==n&&(n=0),r.strict&&n>23&&(a=!1),{hour:n,length:o.length,valid:a}}},K:{name:"hour0_11",format:function(e,t,i,r){var a=i?t.getUTCHours():t.getHours();return String(a>11?a-12:a).padStart(e.digits,"0")},parse:function(e,t,i,r){var a,o=ns.findNumbers(e,Math.max(t.digits,2)),n=parseInt(o);return a=ns.checkValid(t.type,""===o,i),r.strict&&n>11&&(a=!1),{hour:n,length:o.length,valid:a}}},h:{name:"hour1_12",format:function(e,t,i,r){var a=i?t.getUTCHours():t.getHours();return(a>12?String(a-12):0==a?"12":String(a)).padStart(e.digits,"0")},parse:function(e,t,i,r){var a=r.dateValue.pm,o=ns.findNumbers(e,Math.max(t.digits,2)),n=parseInt(o),s=ns.checkValid(t.type,""===o,i);return 12==n&&(n=0,a=void 0===a||a),r.strict&&n>11&&(s=!1),{hour:n,length:o.length,pm:a,valid:s}}},m:{name:"minute",format:function(e,t,i,r){var a=i?t.getUTCMinutes():t.getMinutes();return String(a).padStart(e.digits,"0")},parse:function(e,t,i,r){var a,o=ns.findNumbers(e,Math.max(t.digits,2)),n=parseInt(o);return a=ns.checkValid(t.type,""===o,i),r.strict&&n>59&&(a=!1),{length:o.length,minute:n,valid:a}}},s:{name:"second",format:function(e,t,i,r){var a=i?t.getUTCSeconds():t.getSeconds();return String(a).padStart(e.digits,"0")},parse:function(e,t,i,r){var a,o=ns.findNumbers(e,Math.max(t.digits,2)),n=parseInt(o);return a=ns.checkValid(t.type,""===o,i),r.strict&&n>59&&(a=!1),{length:o.length,second:n,valid:a}}},S:{name:"fractionalsecond",format:function(e,t,i,r){var a=i?t.getUTCMilliseconds():t.getMilliseconds(),o=String(a).padStart(3,"0");return o=(o=o.substr(0,e.digits)).padEnd(e.digits,"0")},parse:function(e,t,i,r){var a=ns.findNumbers(e,t.digits),o=a.length;return a=(a=a.substr(0,3)).padEnd(3,"0"),{length:o,millisecond:parseInt(a)}}},z:{name:"timezoneGeneral",format:function(e,t,i,r){if(e.digits>3&&t.getTimezoneLong())return t.getTimezoneLong();if(t.getTimezoneShort())return t.getTimezoneShort();var a="GMT",o=Math.abs(t.getTimezoneOffset()),n=t.getTimezoneOffset()>0,s=Math.floor(o/60),l=o%60;return i||0==o?a+="Z":(a+=n?"-":"+",a+=String(s).padStart(2,"0"),a+=":",a+=String(l).padStart(2,"0")),a},parse:function(e,t,i,r){var a,o=0,n=e.substring(0,3);if("GMT"===n||"UTC"===n)o=3;else if("UT"===e.substring(0,2))o=2;else{if("Z"!=e.charAt(0))return{error:"cannot be parsed correcly by sap.ui.core.format.DateFormat: The given timezone is not supported!"};o=1,a=0}if("Z"!=e.charAt(0)){var s=ns.parseTZ(e.substr(o),!0);o+=s.length,a=s.tzDiff}return{length:o,tzDiff:a}}},Z:{name:"timezoneRFC822",format:function(e,t,i,r){var a=Math.abs(t.getTimezoneOffset()),o=t.getTimezoneOffset()>0,n=Math.floor(a/60),s=a%60,l="";return i||0==a||(l+=o?"-":"+",l+=String(n).padStart(2,"0"),l+=String(s).padStart(2,"0")),l},parse:function(e,t,i,r){return ns.parseTZ(e,!1)}},X:{name:"timezoneISO8601",format:function(e,t,i,r){var a=Math.abs(t.getTimezoneOffset()),o=t.getTimezoneOffset()>0,n=Math.floor(a/60),s=a%60,l="";return i||0==a?l+="Z":(l+=o?"-":"+",l+=String(n).padStart(2,"0"),l+=":",l+=String(s).padStart(2,"0")),l},parse:function(e,t,i,r){return"Z"==e.charAt(0)?{length:1,tzDiff:0}:ns.parseTZ(e,!0)}}},as.prototype._format=function(e,t){if(this.oFormatOptions.relative){var i=this.formatRelative(e,t,this.oFormatOptions.relativeRange);if(i)return i}for(var r,a,o,n=this.oFormatOptions.calendarType,s=Xn.getInstance(e,n),l=[],u=0;u<this.aFormatArray.length;u++)o=(r=this.aFormatArray[u]).symbol||"",l.push(this.oSymbols[o].format(r,s,t,this));return a=l.join(""),Tn.getConfiguration().getOriginInfo()&&((a=new String(a)).originInfo={source:"Common Locale Data Repository",locale:this.oLocale.toString(),style:this.oFormatOptions.style,pattern:this.oFormatOptions.pattern}),a},as.prototype.format=function(e,t){var i,r=this.oFormatOptions.calendarType;if(void 0===t&&(t=this.oFormatOptions.UTC),Array.isArray(e)){if(!this.oFormatOptions.interval)return Ne.error("Non-interval DateFormat can't format more than one date instance."),"";if(2!==e.length)return Ne.error("Interval DateFormat can only format with 2 date instances but "+e.length+" is given."),"";if(this.oFormatOptions.singleIntervalValue){if(null===e[0])return Ne.error("First date instance which is passed to the interval DateFormat shouldn't be null."),"";null===e[1]&&(i=this._format(e[0],t))}if(void 0===i){if(!e.every((function(e){return e&&!isNaN(e.getTime())})))return Ne.error("At least one date instance which is passed to the interval DateFormat isn't valid."),"";i=this._formatInterval(e,t)}}else{if(!e||isNaN(e.getTime()))return Ne.error("The given date instance isn't valid."),"";if(this.oFormatOptions.interval)return Ne.error("Interval DateFormat expects an array with two dates for the first argument but only one date is given."),"";i=this._format(e,t)}return r==On.Japanese&&"ja"===this.oLocale.getLanguage()&&(i=i.replace(/(^|[^\d])1年/g,"$1元年")),i},as.prototype._formatInterval=function(e,t){var i,r,a,o,n,s=this.oFormatOptions.calendarType,l=Xn.getInstance(e[0],s),u=Xn.getInstance(e[1],s),d=[],c=this._getGreatestDiffField([l,u],t);if(!c)return this._format(e[0],t);o=this.oFormatOptions.format?this.oLocaleData.getCustomIntervalPattern(this.oFormatOptions.format,c,s):this.oLocaleData.getCombinedIntervalPattern(this.oFormatOptions.pattern,s),n=this.parseCldrDatePattern(o),i=l;for(var h=0;h<n.length;h++)a=(r=n[h]).symbol||"",r.repeat&&(i=u),d.push(this.oSymbols[a].format(r,i,t,this));return d.join("")};var ss={Era:"Era",FullYear:"Year",Quarter:"Quarter",Month:"Month",Week:"Week",Date:"Day",DayPeriod:"DayPeriod",Hours:"Hour",Minutes:"Minute",Seconds:"Second"};as.prototype._getGreatestDiffField=function(e,t){var i=!1,r={};return this.aIntervalCompareFields.forEach((function(a){var o="get"+(t?"UTC":"")+a,n=ss[a],s=e[0][o].apply(e[0]),l=e[1][o].apply(e[1]);is(s,l)||(i=!0,r[n]=!0)})),i?r:null},as.prototype._parse=function(e,t,i,r){for(var a,o,n,s=0,l={valid:!0},u={formatArray:t,dateValue:l,strict:r},d=0;d<t.length&&(o=e.substr(s),a=t[d],u.index=d,n=this.oSymbols[a.symbol||""].parse(o,a,this,u)||{},l=Nn(l,n),!1!==n.valid);d++)s+=n.length||0;return l.index=s,l.pm&&(l.hour+=12),void 0===l.dayNumberOfWeek&&void 0!==l.dayOfWeek&&(l.dayNumberOfWeek=this._adaptDayOfWeek(l.dayOfWeek)),void 0!==l.quarter&&void 0===l.month&&void 0===l.day&&(l.month=3*l.quarter,l.day=1),l},as.prototype._parseInterval=function(e,t,i,r){var a,o,n;return this.intervalPatterns.some(function(t){var s=this.parseCldrDatePattern(t);o=void 0;for(var l=0;l<s.length;l++)if(s[l].repeat){o=l;break}if(void 0===o){if((0===(n=this._parse(e,s,i,r)).index||n.index<e.length)&&(n.valid=!1),!1===n.valid)return;return a=[n,n],!0}if(a=[],!1!==(n=this._parse(e,s.slice(0,o),i,r)).valid){a.push(n);var u=n.index;if((0===(n=this._parse(e.substring(u),s.slice(o),i,r)).index||n.index+u<e.length)&&(n.valid=!1),!1!==n.valid)return a.push(n),!0}}.bind(this)),a};var ls=function(e,t,i,r){var a,o="number"==typeof e.year?e.year:1970;return e.valid&&(i||void 0!==e.tzDiff?((a=Xn.getInstance(new Date(0),t)).setUTCEra(e.era||Xn.getCurrentEra(t)),a.setUTCFullYear(o),a.setUTCMonth(e.month||0),a.setUTCDate(e.day||1),a.setUTCHours(e.hour||0),a.setUTCMinutes(e.minute||0),a.setUTCSeconds(e.second||0),a.setUTCMilliseconds(e.millisecond||0),r&&(e.day||1)!==a.getUTCDate()?(e.valid=!1,a=void 0):(e.tzDiff&&a.setUTCMinutes((e.minute||0)+e.tzDiff),void 0===e.week||void 0!==e.month&&void 0!==e.day||(a.setUTCWeek({year:e.weekYear||e.year,week:e.week}),void 0!==e.dayNumberOfWeek&&a.setUTCDate(a.getUTCDate()+e.dayNumberOfWeek-1)))):((a=Xn.getInstance(new Date(1970,0,1,0,0,0),t)).setEra(e.era||Xn.getCurrentEra(t)),a.setFullYear(o),a.setMonth(e.month||0),a.setDate(e.day||1),a.setHours(e.hour||0),a.setMinutes(e.minute||0),a.setSeconds(e.second||0),a.setMilliseconds(e.millisecond||0),r&&(e.day||1)!==a.getDate()?(e.valid=!1,a=void 0):void 0===e.week||void 0!==e.month&&void 0!==e.day||(a.setWeek({year:e.weekYear||e.year,week:e.week}),void 0!==e.dayNumberOfWeek&&a.setDate(a.getDate()+e.dayNumberOfWeek-1))),e.valid)?a=a.getJSDate():null};function us(e,t){if(e===t)return e;var i={};return Object.keys(e).forEach((function(t){i[t]=e[t]})),Object.keys(t).forEach((function(e){i.hasOwnProperty(e)||(i[e]=t[e])})),i}function ds(e,t){for(var i=["FullYear","Month","Date","Hours","Minutes","Seconds","Milliseconds"],r=t;r<i.length;r++)e["set"+i[t]].apply(e,[0])}as.prototype.parse=function(e,t,i){var r;e=null==e?"":String(e).trim();var a,o,n=this.oFormatOptions.calendarType;if(void 0===t&&(t=this.oFormatOptions.UTC),void 0===i&&(i=this.oFormatOptions.strictParsing),n==On.Japanese&&"ja"===this.oLocale.getLanguage()&&(e=e.replace(/元年/g,"1年")),this.oFormatOptions.interval){var s,l,u=this._parseInterval(e,n,t,i);if(u&&2==u.length){var d=us(u[0],u[1]),c=us(u[1],u[0]);if(s=ls(d,n,t,i),l=ls(c,n,t,i),s&&l){if(this.oFormatOptions.singleIntervalValue&&s.getTime()===l.getTime())return[s,null];var h=(a=l,!(s.getTime()>a.getTime()));return i&&!h?(Ne.error("StrictParsing: Invalid date range. The given end date is before the start date."),[null,null]):[s,l]}}}else{var p=this.parseRelative(e,t);if(p)return p;if((0===(r=this._parse(e,this.aFormatArray,t,i)).index||r.index<e.length)&&(r.valid=!1),p=ls(r,n,t,i))return p}return this.bIsFallback?this.oFormatOptions.interval?[null,null]:null:(this.aFallbackFormats.every((function(r){return o=r.parse(e,t,i),Array.isArray(o)?!(o[0]&&o[1]):!o})),o)},as.prototype.parseCldrDatePattern=function(e){if(os[e])return os[e];var t,i=[],r=!1,a=null,o="",n="",s={},l=!1;for(t=0;t<e.length;t++){var u,d,c,h=e.charAt(t);if(r){if("'"==h)if(d=e.charAt(t-1),c=e.charAt(t-2),u=e.charAt(t+1),"'"==d&&"'"!=c)r=!1;else{if("'"!=u){r=!1;continue}t+=1}"text"==o?a.value+=h:(a={type:"text",value:h},i.push(a),o="text")}else"'"==h?r=!0:this.oSymbols[h]?o==(n=this.oSymbols[h].name)?a.digits++:(a={type:n,symbol:h,digits:1},i.push(a),o=n,l||(s[n]?(a.repeat=!0,l=!0):s[n]=!0)):"text"==o?a.value+=h:(a={type:"text",value:h},i.push(a),o="text")}return os[e]=i,i},as.prototype.parseRelative=function(e,t){var i,r,a;if(!e)return null;i=this.oLocaleData.getRelativePatterns(this.aRelativeParseScales,this.oFormatOptions.relativeStyle);for(var o=0;o<i.length;o++)if(r=i[o],a=new RegExp("^\\s*"+r.pattern.replace(/\{0\}/,"(\\d+)")+"\\s*$","i").exec(e))return void 0!==r.value?n(r.value,r.scale):n(parseInt(a[1])*r.sign,r.scale);function n(e,i){var r,a,o=new Date;switch(r=t?o.getTime():Date.UTC(o.getFullYear(),o.getMonth(),o.getDate(),o.getHours(),o.getMinutes(),o.getSeconds(),o.getMilliseconds()),a=new Date(r),i){case"second":a.setUTCSeconds(a.getUTCSeconds()+e);break;case"minute":a.setUTCMinutes(a.getUTCMinutes()+e);break;case"hour":a.setUTCHours(a.getUTCHours()+e);break;case"day":a.setUTCDate(a.getUTCDate()+e);break;case"week":a.setUTCDate(a.getUTCDate()+7*e);break;case"month":a.setUTCMonth(a.getUTCMonth()+e);break;case"quarter":a.setUTCMonth(a.getUTCMonth()+3*e);break;case"year":a.setUTCFullYear(a.getUTCFullYear()+e)}return t?a:new Date(a.getUTCFullYear(),a.getUTCMonth(),a.getUTCDate(),a.getUTCHours(),a.getUTCMinutes(),a.getUTCSeconds(),a.getUTCMilliseconds())}},as.prototype.formatRelative=function(e,t,i){var r,a,o,n=new Date,s=this.oFormatOptions.relativeScale||"day";return o=(e.getTime()-n.getTime())/1e3,"auto"==this.oFormatOptions.relativeScale&&(s=this._getScale(o,this.aRelativeScales)),i||(i=this._mRanges[s]),"year"!=s&&"month"!=s&&"day"!=s||(n=new Date(Date.UTC(n.getFullYear(),n.getMonth(),n.getDate())),r=new Date(0),t?r.setUTCFullYear(e.getUTCFullYear(),e.getUTCMonth(),e.getUTCDate()):r.setUTCFullYear(e.getFullYear(),e.getMonth(),e.getDate()),e=r),a=this._getDifference(s,[n,e]),"auto"!=this.oFormatOptions.relativeScale&&(a<i[0]||a>i[1])?null:function(e,t){return qe("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(rs,(function(e,i,r,a,o){if(i)return"'";if(r)return r.replace(/''/g,"'");if(a)return String(t[parseInt(a)]);throw new Error("formatMessage: pattern syntax error at pos. "+o)}))}(this.oLocaleData.getRelativePattern(s,a,o>0,this.oFormatOptions.relativeStyle),[Math.abs(a)])},as.prototype._mRanges={second:[-60,60],minute:[-60,60],hour:[-24,24],day:[-6,6],week:[-4,4],month:[-12,12],year:[-10,10]},as.prototype._mScales={second:1,minute:60,hour:3600,day:86400,week:604800,month:2592e3,quarter:7776e3,year:31536e3},as.prototype._getScale=function(e,t){var i,r;e=Math.abs(e);for(var a=0;a<t.length;a++)if(r=t[a],e>=this._mScales[r]){i=r;break}return i||(i=t[t.length-1]),i};var cs={year:function(e,t){return t.getFullYear()-e.getFullYear()},month:function(e,t){return t.getMonth()-e.getMonth()+12*this.year(e,t)},week:function(e,t,i){var r=i._adaptDayOfWeek(e.getDay()),a=i._adaptDayOfWeek(t.getDay());return ds(e,3),ds(t,3),(t.getTime()-e.getTime()-(a-r)*i._mScales.day*1e3)/(1e3*i._mScales.week)},day:function(e,t,i){return ds(e,3),ds(t,3),(t.getTime()-e.getTime())/(1e3*i._mScales.day)},hour:function(e,t,i){return ds(e,4),ds(t,4),(t.getTime()-e.getTime())/(1e3*i._mScales.hour)},minute:function(e,t,i){return ds(e,5),ds(t,5),(t.getTime()-e.getTime())/(1e3*i._mScales.minute)},second:function(e,t,i){return ds(e,6),ds(t,6),(t.getTime()-e.getTime())/(1e3*i._mScales.second)}};as.prototype._adaptDayOfWeek=function(e){var t=e-(Ln.getInstance(Tn.getConfiguration().getFormatSettings().getFormatLocale()).getFirstDayOfWeek()-1);return t<=0&&(t+=7),t},as.prototype._getDifference=function(e,t){var i=t[0],r=t[1];return Math.round(cs[e](i,r,this))},as.prototype.getAllowedCharacters=function(e){if(this.oFormatOptions.relative)return"";for(var t,i="",r=!1,a=!1,o=0;o<e.length;o++)switch((t=e[o]).type){case"text":i.indexOf(t.value)<0&&(i+=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":r||(i+="0123456789",r=!0);break;case"month":case"monthStandalone":t.digits<3?r||(i+="0123456789",r=!0):a=!0;break;default:a=!0}return a&&(i=""),i};class hs{constructor(){let e,t,i,r=arguments;switch(r.length){case 0:return t=new Date,this.constructor(t.getFullYear(),t.getMonth(),t.getDate());case 1:case 2:if(!(r[0]instanceof hs))throw new Error("Invalid arguments: the first argument must be of type sap.ui.unified.calendar.CalendarDate.");i=r[1]?r[1]:r[0]._oUDate.sCalendarType,e=new Date(r[0].valueOf()),e.setFullYear(e.getUTCFullYear(),e.getUTCMonth(),e.getUTCDate()),e.setHours(e.getUTCHours(),e.getUTCMinutes(),e.getUTCSeconds(),e.getUTCMilliseconds()),this._oUDate=ps(e,i);break;case 3:case 4:gs(r[0],"Invalid year: "+r[0]),gs(r[1],"Invalid month: "+r[1]),gs(r[2],"Invalid date: "+r[2]),e=new Date(0,0,1),e.setFullYear(r[0],r[1],r[2]),r[3]&&(i=r[3]),this._oUDate=ps(e,i);break;default:throw new Error("Invalid arguments. Accepted arguments are: 1) oCalendarDate, (optional)calendarTypeor 2) year, month, date, (optional) calendarType"+r)}}getYear(){return this._oUDate.getUTCFullYear()}setYear(e){return gs(e,"Invalid year: "+e),this._oUDate.setUTCFullYear(e),this}getMonth(){return this._oUDate.getUTCMonth()}setMonth(e,t){return gs(e,"Invalid month: "+e),t||0===t?(gs(t,"Invalid date: "+t),this._oUDate.setUTCMonth(e,t)):this._oUDate.setUTCMonth(e),this}getDate(){return this._oUDate.getUTCDate()}setDate(e){return gs(e,"Invalid date: "+e),this._oUDate.setUTCDate(e),this}getDay(){return this._oUDate.getUTCDay()}getCalendarType(){return this._oUDate.sCalendarType}isBefore(e){return ms(e),this.valueOf()<e.valueOf()}isAfter(e){return ms(e),this.valueOf()>e.valueOf()}isSameOrBefore(e){return ms(e),this.valueOf()<=e.valueOf()}isSameOrAfter(e){return ms(e),this.valueOf()>=e.valueOf()}isSame(e){return ms(e),this.valueOf()===e.valueOf()}toLocalJSDate(){const e=new Date(this._oUDate.getTime());return e.setFullYear(e.getUTCFullYear(),e.getUTCMonth(),e.getUTCDate()),e.setHours(0,0,0,0),e}toUTCJSDate(){const e=new Date(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(e,t){if(!(i=e)||"[object Date]"!==Object.prototype.toString.call(i)||isNaN(i))throw new Error(`Date parameter must be a JavaScript Date object: [${e}].`);var i;return new hs(e.getFullYear(),e.getMonth(),e.getDate(),t)}static fromTimestamp(e,t){const i=new hs(0,0,1);return i._oUDate=Xn.getInstance(new Date(e),t),i}}function ps(e,t){return t?Xn.getInstance(_s(e),t):new Xn(_s(e).getTime())}function _s(e){const t=new Date(Date.UTC(0,0,1));return t.setUTCFullYear(e.getFullYear(),e.getMonth(),e.getDate()),t}function ms(e){if(!(e instanceof hs))throw new Error(`Invalid calendar date: [${e}]. Expected: sap.ui.unified.calendar.CalendarDate`)}function gs(e,t){if(void 0===e||e===1/0||isNaN(e))throw t}Er("appointment-2",{pathData:"M448 33q14 0 23 9t9 23v416q0 14-9 23t-23 9H64q-13 0-22.5-9T32 481V65q0-14 9.5-23T64 33h64V1h32v32h192V1h32v32h64zm-96 64h32V65h-32v32zm-224 0h32V65h-32v32zm320 32H64v352h384V129zM128 257q-14 0-23-9t-9-23 9-23 23-9 23 9 9 23-9 23-23 9zm128 0q-14 0-23-9t-9-23 9-23 23-9 23 9 9 23-9 23-23 9zm128 0q-14 0-23-9t-9-23 9-23 23-9 23 9 9 23-9 23-23 9zm0 128q-14 0-23-9t-9-23 9-23 23-9 23 9 9 23-9 23-23 9zm-128 0q-14 0-23-9t-9-23 9-23 23-9 23 9 9 23-9 23-23 9zm-128 0q-14 0-23-9t-9-23 9-23 23-9 23 9 9 23-9 23-23 9z",ltr:!1});const fs=e=>Pi`${e._isPhone?vs(e):ks(e)}`,vs=e=>Pi`<ui5-dialog ?with-padding=${e.withPadding} stretch _disable-initial-focus @ui5-before-open="${Cr(e._propagateDialogEvent)}" @ui5-after-open="${Cr(e._afterDialogOpen)}" @ui5-before-close="${Cr(e._propagateDialogEvent)}" @ui5-after-close="${Cr(e._afterDialogClose)}">${e._hideHeader?void 0:ys(e)}<slot></slot><slot slot="footer" name="footer"></slot></ui5-dialog>`,ys=e=>Pi`${e.header.length?bs():ws(e)}`,bs=e=>Pi`<slot slot="header" name="header"></slot>`,ws=e=>Pi`<header class="ui5-responsive-popover-header"><ui5-title level="H5" class="ui5-responsive-popover-header-text">${Cr(e.headerText)}</ui5-title><ui5-button icon="decline" design="Transparent" @click="${e.close}"></ui5-button></header>`,ks=e=>Pi`<section style="${Hi(e.styles.root)}" class="${Ri(e.classes.root)}" role="dialog" aria-modal="${Cr(e._ariaModal)}" aria-label="${Cr(e._ariaLabel)}" aria-labelledby="${Cr(e._ariaLabelledBy)}"><span class="first-fe" data-ui5-focus-trap tabindex="0" @focusin=${e.forwardToLast}></span><span class="ui5-popover-arrow" style="${Hi(e.styles.arrow)}"></span>${e._displayHeader?xs(e):void 0}<div style="${Hi(e.styles.content)}" class="${Ri(e.classes.content)}" @scroll="${e._scroll}"><slot></slot></div>${e._displayFooter?Ts(e):void 0}<span class="last-fe" data-ui5-focus-trap tabindex="0" @focusin=${e.forwardToFirst}></span></section>`,xs=e=>Pi`<header class="ui5-popup-header-root" id="ui5-popup-header">${e.header.length?Cs():Ss(e)}</header>`,Cs=e=>Pi`<slot name="header"></slot>`,Ss=e=>Pi`<h2 class="ui5-popup-header-text">${Cr(e.headerText)}</h2>`,Ts=e=>Pi`${e.footer.length?Ds():void 0}`,Ds=e=>Pi`<footer class="ui5-popup-footer-root"><slot name="footer"></slot></footer>`,Ps=e=>Pi`<section style="${Hi(e.styles.root)}" class="${Ri(e.classes.root)}" role="dialog" aria-modal="${Cr(e._ariaModal)}" aria-label="${Cr(e._ariaLabel)}" aria-labelledby="${Cr(e._ariaLabelledBy)}"><span class="first-fe" data-ui5-focus-trap tabindex="0" @focusin=${e.forwardToLast}></span><header class="ui5-popup-header-root" id="ui5-popup-header">${e.header.length?Is():Ms(e)}</header><div style="${Hi(e.styles.content)}" class="${Ri(e.classes.content)}" @scroll="${e._scroll}"><slot></slot></div>${e.footer.length?Bs():void 0}<span class="last-fe" data-ui5-focus-trap tabindex="0" @focusin=${e.forwardToFirst}></span></section> `,Is=e=>Pi`<slot name="header"></slot>`,Ms=e=>Pi`<h2 class="ui5-popup-header-text">${Cr(e.headerText)}</h2>`,Bs=e=>Pi`<footer class="ui5-popup-footer-root"><slot name="footer"></slot></footer>`;M("@ui5/webcomponents-theme-base","sap_fiori_3",Nr),M("@ui5/webcomponents","sap_fiori_3",Or);const Es={tag:"ui5-dialog",slots:{header:{type:HTMLElement},footer:{type:HTMLElement}},properties:{headerText:{type:String},stretch:{type:Boolean},onPhone:{type:Boolean}}};class Fs extends ho{static get metadata(){return Es}static get template(){return Ps}static get styles(){return[Eo,":host{top:50%;left:50%;transform:translate(-50%,-50%);min-width:20rem;box-shadow:var(--sapContent_Shadow3)}:host([stretch]){width:90%;height:90%}:host([stretch][on-phone]){width:100%;height:100%}:host([stretch][on-phone]) .ui5-popup-root{max-height:100vh;max-width:100vw}.ui5-popup-root{display:flex;flex-direction:column;max-width:100vw}.ui5-popup-content{flex:1 1 auto}"]}onBeforeRendering(){this.onPhone=Ta()}get isModal(){return!0}get _ariaLabelledBy(){return this.ariaLabel?void 0:"ui5-popup-header"}get _ariaModal(){return!0}get classes(){return{root:{"ui5-popup-root":!0},content:{"ui5-popup-content":!0}}}}Fs.define();const As={H1:"H1",H2:"H2",H3:"H3",H4:"H4",H5:"H5",H6:"H6"};class Ns extends nt{static isValid(e){return!!As[e]}}Ns.generataTypeAcessors(As);const Os=e=>Pi`${e.h1?$s(e):void 0}${e.h2?Ls(e):void 0}${e.h3?Rs(e):void 0}${e.h4?zs(e):void 0}${e.h5?Hs(e):void 0}${e.h6?Us(e):void 0}`,$s=e=>Pi`<h1 class="ui5-title-root"><span id="${Cr(e._id)}-inner"><slot></slot></span></h1>`,Ls=e=>Pi`<h2 class="ui5-title-root"><span id="${Cr(e._id)}-inner"><slot></slot></span></h2>`,Rs=e=>Pi`<h3 class="ui5-title-root"><span id="${Cr(e._id)}-inner"><slot></slot></span></h3>`,zs=e=>Pi`<h4 class="ui5-title-root"><span id="${Cr(e._id)}-inner"><slot></slot></span></h4>`,Hs=e=>Pi`<h5 class="ui5-title-root"><span id="${Cr(e._id)}-inner"><slot></slot></span></h5>`,Us=e=>Pi`<h6 class="ui5-title-root"><span id="${Cr(e._id)}-inner"><slot></slot></span></h6>`;M("@ui5/webcomponents-theme-base","sap_fiori_3",Nr),M("@ui5/webcomponents","sap_fiori_3",Or);const js={tag:"ui5-title",properties:{wrap:{type:Boolean},level:{type:Ns,defaultValue:Ns.H2}},slots:{default:{type:Node}}};class Vs extends Yt{static get metadata(){return js}static get render(){return Vi}static get template(){return Os}static get styles(){return":host(:not([hidden])){display:block;cursor:text}:host{max-width:100%;color:var(--sapGroup_TitleTextColor);font-family:var(--sapFontFamily);text-shadow:var(--sapContent_TextShadow)}.ui5-title-root{display:inline-block;position:relative;font-weight:400;box-sizing:border-box;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;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([wrap]) .ui5-title-root{white-space:pre-line}:host .ui5-title-root{font-size:var(--ui5_title_level_2Size)}:host([level=H1]) .ui5-title-root{font-size:var(--ui5_title_level_1Size)}:host([level=H2]) .ui5-title-root{font-size:var(--ui5_title_level_2Size)}:host([level=H3]) .ui5-title-root{font-size:var(--ui5_title_level_3Size)}:host([level=H4]) .ui5-title-root{font-size:var(--ui5_title_level_4Size)}:host([level=H5]) .ui5-title-root{font-size:var(--ui5_title_level_5Size)}:host([level=H6]) .ui5-title-root{font-size:var(--ui5_title_level_6Size)}"}get normalizedLevel(){return this.level.toLowerCase()}get h1(){return"h1"===this.normalizedLevel}get h2(){return"h2"===this.normalizedLevel}get h3(){return"h3"===this.normalizedLevel}get h4(){return"h4"===this.normalizedLevel}get h5(){return"h5"===this.normalizedLevel}get h6(){return"h6"===this.normalizedLevel}}Vs.define(),M("@ui5/webcomponents-theme-base","sap_fiori_3",Nr),M("@ui5/webcomponents","sap_fiori_3",Or);const Ws={tag:"ui5-responsive-popover",properties:{noStretch:{type:Boolean},withPadding:{type:Boolean},contentOnlyOnDesktop:{type:Boolean},_hideHeader:{type:Boolean}}};class Ys extends Ao{static get metadata(){return Ws}static get styles(){return[...Ao.styles,":host{--_ui5_input_width:100%;min-width:6.25rem;min-height:2rem}:host(:not([with-padding])){--_ui5_popup_content_padding:0}:host([opened]){display:inline-block}.ui5-responsive-popover-header{height:var(--_ui5-responnsive_popover_header_height);display:flex;justify-content:space-between;align-items:center;padding:0 0 0 1rem;box-shadow:var(--sapContent_HeaderShadow)}:host [dir=rtl] .ui5-responsive-popover-header{padding:0 1rem 0 0}.ui5-responsive-popover-header-text{display:flex;align-items:center;width:calc(100% - var(--_ui5_button_base_min_width))}"]}static get template(){return fs}static async onDefine(){await Promise.all([pa.define(),Fs.define(),Vs.define()])}open(e){this.style.display=this._isPhone?"contents":"",this.isOpen()||this._dialog&&this._dialog.isOpen()||(Ta()?(this.style.zIndex=io(),this._dialog.open()):(this.noStretch||(this._minWidth=Math.max(100,e.getBoundingClientRect().width)),this.openBy(e)))}close(e=!1,t=!1,i=!1){Ta()?this._dialog.close():super.close(e,t,i)}toggle(e){if(this.isOpen())return this.close();this.open(e)}isOpen(){return Ta()?this._dialog.isOpen():super.isOpen()}get styles(){const e=super.styles;return e.root={"min-width":this._minWidth+"px"},e}get _dialog(){return this.shadowRoot.querySelector("ui5-dialog")}get _isPhone(){return Ta()}get _displayHeader(){return this._isPhone||!this.contentOnlyOnDesktop}get _displayFooter(){return this._isPhone||!this.contentOnlyOnDesktop}_afterDialogOpen(e){this.opened=!0,this._propagateDialogEvent(e)}_afterDialogClose(e){this.opened=!1,this._propagateDialogEvent(e)}_propagateDialogEvent(e){const t=e.type.replace("ui5-","");this.fireEvent(t,e.detail)}}Ys.define();Er("slim-arrow-left",{pathData:"M351.5 421q12 12 0 23-5 5-11 5t-11-5l-166-165q-9-10-9-23t9-23l165-164q5-5 11.5-5t11.5 5 5 11-5 11l-159 159q-6 6 0 12z",ltr:!1});Er("slim-arrow-right",{pathData:"M357.5 233q10 10 10 23t-10 23l-165 165q-12 11-23 0t0-23l160-159q6-6 0-12l-159-159q-5-5-5-11t5-11 11-5 11 5z",ltr:!1});const qs=e=>Pi`<div class="ui5-calheader-root" dir="${Cr(e.effectiveDir)}" @keydown=${e._onkeydown}><div id="${Cr(e._id)}-btnPrev" class="${Cr(e._btnPrev.classes)}" @click=${e._handlePrevPress} data-sap-cal-head-button="Prev"><ui5-icon class="ui5-calheader-arrowicon" name="${Cr(e._btnPrev.icon)}"></ui5-icon></div><div class="ui5-calheader-midcontainer"><div id="${Cr(e._id)}-btn1" class="ui5-calheader-arrowbtn ui5-calheader-middlebtn" type="${Cr(e._btn1.type)}" tabindex="0" @click=${e._showMonthPicker} data-sap-show-picker="Month">${Cr(e._btn1.text)}</div><div id="${Cr(e._id)}-btn2" class="ui5-calheader-arrowbtn ui5-calheader-middlebtn" type="${Cr(e._btn2.type)}" tabindex="0" @click=${e._showYearPicker} data-sap-show-picker="Year">${Cr(e._btn2.text)}</div></div><div class="${Cr(e._btnNext.classes)}" @click=${e._handleNextPress} id="${Cr(e._id)}-btnNext" data-sap-cal-head-button="Next"><ui5-icon class="ui5-calheader-arrowicon" name="${Cr(e._btnNext.icon)}"></ui5-icon></div></div>`;M("@ui5/webcomponents-theme-base","sap_fiori_3",Nr),M("@ui5/webcomponents","sap_fiori_3",Or);const Gs={tag:"ui5-calendar-header",properties:{monthText:{type:String},yearText:{type:String},_btnPrev:{type:Object},_btnNext:{type:Object},_btn1:{type:Object},_btn2:{type:Object},_isNextButtonDisabled:{type:Boolean},_isPrevButtonDisabled:{type:Boolean}},events:{"previous-press":{},"next-press":{},"show-month-press":{},"show-year-press":{}}};class Js extends Yt{static get metadata(){return Gs}static get render(){return Vi}static get template(){return qs}static get styles(){return':host{display:inline-block;width:100%}.ui5-calheader-root{display:flex;height:var(--_ui5_calendar_header_height);padding:var(--_ui5_calendar_header_padding);box-sizing:border-box}.ui5-calheader-root ui5-button{height:100%}.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_TextColor);cursor:pointer;overflow:hidden;white-space:nowrap;padding:0;font-size:var(--sapFontSize)}.ui5-calheader-arrowbtn.ui5-calheader-arrowbtn-disabled,.ui5-calheader-arrowbtn.ui5-calheader-arrowbtn-disabled:active,.ui5-calheader-arrowbtn.ui5-calheader-arrowbtn-disabled:focus,.ui5-calheader-arrowbtn.ui5-calheader-arrowbtn-disabled:hover{pointer-events:none;opacity:.4;outline:none;background-color:var(--sapButton_Lite_Background);color:var(--sapButton_TextColor)}.ui5-calheader-arrowbtn:focus{outline:none}.ui5-calheader-arrowbtn:hover{background-color:var(--sapButton_Hover_Background);color:var(--sapButton_Hover_TextColor)}.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)}.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-right:.5rem}.ui5-calheader-middlebtn{font-family:var(--sapFontFamily);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;-ms-user-select:none;user-select:none}.ui5-calheader-middlebtn:focus{border:var(--_ui5_calendar_header_middle_button_focus_border);border-radius:var(--_ui5_calendar_header_middle_button_focus_border_radius)}.ui5-calheader-middlebtn: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:1px dotted var(--sapContent_FocusColor);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{border-color:var(--sapContent_ContrastFocusColor)}[dir=rtl] .ui5-calheader-root-midcontainer .ui5-calheader-middlebtn:first-child{margin-left:.5rem;margin-right:0}'}constructor(){super(),this._btnPrev={},this._btnPrev.icon="slim-arrow-left",this._btnNext={},this._btnNext.icon="slim-arrow-right",this._btn1={},this._btn1.type=xr.Transparent,this._btn2={},this._btn2.type=xr.Transparent}onBeforeRendering(){this._btn1.text=this.monthText,this._btn2.text=this.yearText,this._btnPrev.classes="ui5-calheader-arrowbtn",this._btnNext.classes="ui5-calheader-arrowbtn",this._isNextButtonDisabled&&(this._btnNext.classes+=" ui5-calheader-arrowbtn-disabled"),this._isPrevButtonDisabled&&(this._btnPrev.classes+=" ui5-calheader-arrowbtn-disabled")}_handlePrevPress(e){this.fireEvent("previous-press",e)}_handleNextPress(e){this.fireEvent("next-press",e)}_showMonthPicker(e){this.fireEvent("show-month-press",e)}_showYearPicker(e){this.fireEvent("show-year-press",e)}_onkeydown(e){if(rr(e)||ir(e)){const t=e.target.getAttribute("data-sap-show-picker");t&&this[`_show${t}Picker`]()}}static async onDefine(){await Promise.all([await pa.define(),await Lr.define()])}}let Xs;Js.define();const Qs=()=>(void 0===Xs&&(b(),Xs=v.formatSettings),Xs.firstDayOfWeek),Zs="Auto",Ks="Vertical",el="Horizontal",tl="Static",il="Cyclic",rl="Paging";class al extends X{constructor(e,t={}){super(),this.currentIndex=t.currentIndex||0,this.rowSize=t.rowSize||1,this.behavior=t.behavior||tl,this.hasNextPage=!0,this.hasPrevPage=!0;const i=t.navigationMode,r=!i||i===Zs;this.horizontalNavigationOn=r||i===el,this.verticalNavigationOn=r||i===Ks,this.pageSize=t.pageSize,this.rootWebComponent=e,this.rootWebComponent.addEventListener("keydown",this.onkeydown.bind(this)),this.rootWebComponent._onComponentStateFinalized=()=>{this._init()}}_init(){this._getItems().forEach((e,t)=>{e._tabIndex=t===this.currentIndex?"0":"-1"})}_horizontalNavigationOn(){return this.horizontalNavigationOn}_verticalNavigationOn(){return this.verticalNavigationOn}async _onKeyPress(e){this.currentIndex>=this._getItems().length?this.onOverflowBottomEdge():this.currentIndex<0&&this.onOverflowTopEdge(),e.preventDefault(),await he.whenFinished(),this.update(),this.focusCurrent()}onkeydown(e){return nr(e)&&this._verticalNavigationOn()?this._handleUp(e):sr(e)&&this._verticalNavigationOn()?this._handleDown(e):ar(e)&&this._horizontalNavigationOn()?this._handleLeft(e):or(e)&&this._horizontalNavigationOn()?this._handleRight(e):(e=>(e.key?"Home"===e.key:e.keyCode===Xi)&&!_r(e))(e)?this._handleHome(e):(e=>(e.key?"End"===e.key:e.keyCode===Ji)&&!_r(e))(e)?this._handleEnd(e):void 0}_handleUp(e){this._canNavigate()&&(this.currentIndex-=this.rowSize,this._onKeyPress(e))}_handleDown(e){this._canNavigate()&&(this.currentIndex+=this.rowSize,this._onKeyPress(e))}_handleLeft(e){this._canNavigate()&&(this.currentIndex-=1,this._onKeyPress(e))}_handleRight(e){this._canNavigate()&&(this.currentIndex+=1,this._onKeyPress(e))}_handleHome(e){if(this._canNavigate()){const t=this.rowSize>1?this.rowSize:this._getItems().length;this.currentIndex-=this.currentIndex%t,this._onKeyPress(e)}}_handleEnd(e){if(this._canNavigate()){const t=this.rowSize>1?this.rowSize:this._getItems().length;this.currentIndex+=t-1-this.currentIndex%t,this._onKeyPress(e)}}update(e){const t=this._getItems();if(e&&(this.currentIndex=this._getItems().indexOf(e)),!t[this.currentIndex]||t[this.currentIndex]._tabIndex&&"0"===t[this.currentIndex]._tabIndex)return;const i=t.slice(0);for(let e=0;e<i.length;e++)i[e]._tabIndex=e===this.currentIndex?"0":"-1";this.rootWebComponent._invalidate()}focusCurrent(){const e=this._getCurrentItem();e&&e.focus()}_canNavigate(){const e=this._getCurrentItem();let t=document.activeElement;for(;t.shadowRoot&&t.shadowRoot.activeElement;)t=t.shadowRoot.activeElement;return e&&e===t}_getCurrentItem(){const e=this._getItems();if(!e.length)return null;for(;this.currentIndex>=e.length;)this.currentIndex-=this.rowSize;this.currentIndex<0&&(this.currentIndex=0);const t=e[this.currentIndex];if(t){if(t.isUI5Element)return t.getFocusDomRef();if(this.rootWebComponent.getDomRef())return this.rootWebComponent.getDomRef().querySelector("#"+t.id)}}set getItemsCallback(e){this._getItems=e}set current(e){this.currentIndex=e}onOverflowBottomEdge(){const e=this._getItems(),t=this.currentIndex-e.length;this.behavior!==il?(this.behavior===rl?this._handleNextPage():this.currentIndex=e.length-1,this.fireEvent(al.BORDER_REACH,{start:!1,end:!0,offset:t})):this.currentIndex=0}onOverflowTopEdge(){const e=this._getItems(),t=this.currentIndex+this.rowSize;this.behavior!==il?(this.behavior===rl?this._handlePrevPage():this.currentIndex=0,this.fireEvent(al.BORDER_REACH,{start:!0,end:!1,offset:t})):this.currentIndex=e.length-1}_handleNextPage(){this.fireEvent(al.PAGE_BOTTOM);const e=this._getItems();this.hasNextPage?this.currentIndex-=this.pageSize:this.currentIndex=e.length-1}_handlePrevPage(){this.fireEvent(al.PAGE_TOP),this.hasPrevPage?this.currentIndex=this.pageSize+this.currentIndex:this.currentIndex=0}}al.PAGE_TOP="PageTop",al.PAGE_BOTTOM="PageBottom",al.BORDER_REACH="_borderReach";const ol=(e,t,i,r,a)=>{let o=0,n=0;const s=Number.isInteger(e)?e:a.getFirstDayOfWeek();if(r&&"en"===r.getLanguage()&&"US"===r.getRegion()){const e=new Xn(t.getTime());e.setUTCFullYear(i,0,1),n=e.getUTCDay();const r=new Xn(t.getTime());r.setUTCDate(r.getUTCDate()-r.getUTCDay()+n),o=Math.round((r.getTime()-e.getTime())/864e5/7)+1}else{const e=new Xn(t.getTime());e.setUTCDate(e.getUTCDate()-s),n=e.getUTCDay(),e.setUTCDate(e.getUTCDate()-n+4);const i=new Xn(e.getTime());i.setUTCMonth(0,1),n=i.getUTCDay();let r=0;n>4&&(r=7);const a=new Xn(i.getTime());a.setUTCDate(1-n+4+r),o=Math.round((e.getTime()-a.getTime())/864e5/7)+1}return o},nl=e=>Pi`<div class="ui5-dp-root" style="${Hi(e.styles.wrapper)}" @keydown=${e._onkeydown} @mousedown=${e._onmousedown} @mouseup=${e._onmouseup}>${e._hideWeekNumbers?void 0:sl(e)}<div id="${Cr(e._id)}-content" class="ui5-dp-content"><div role="row" class="ui5-dp-days-names-container">${$i(e._dayNames,(e,t)=>e._id||t,(e,t)=>ul(e))}</div><div id="${Cr(e._id)}-days" class="ui5-dp-items-container" tabindex="-1">${$i(e._weeks,(e,t)=>e._id||t,(t,i)=>dl(t,i,e))}</div></div></div>`,sl=e=>Pi`<div class="ui5-dp-weeknumber-container">${$i(e._weekNumbers,(e,t)=>e._id||t,(e,t)=>ll(e))}</div>`,ll=(e,t,i)=>Pi`<div class="ui5-dp-weekname-container"><span class="ui5-dp-weekname">${Cr(e)}</span></div>`,ul=(e,t,i)=>Pi`<div id=${Cr(e.id)} role="columnheader" aria-label="${Cr(e.name)}" class="${Cr(e.classes)}">${Cr(e.ultraShortName)}</div>`,dl=(e,t,i)=>Pi`${e.length?cl(e,t,i):pl()}`,cl=(e,t,i)=>Pi`<div style="display: flex;" @mouseover="${i._onitemmouseover}" @keydown="${i._onitemkeydown}">${$i(e,(e,t)=>e._id||t,(e,t)=>hl(e))}</div>`,hl=(e,t,i)=>Pi`<div id="${Cr(e.id)}" tabindex="${Cr(e._tabIndex)}" data-sap-timestamp="${Cr(e.timestamp)}" data-sap-index="${Cr(e._index)}" role="gridcell" aria-selected="${Cr(e.selected)}" class="${Cr(e.classes)}"><span class="ui5-dp-daytext" data-sap-timestamp="${Cr(e.timestamp)}" data-sap-index="${Cr(e._index)}">${Cr(e.iDay)}</span></div>`,pl=(e,t,i)=>Pi`<div class="sapWCEmptyWeek"></div>`;M("@ui5/webcomponents-theme-base","sap_fiori_3",Nr),M("@ui5/webcomponents","sap_fiori_3",Or);const _l=(e,t)=>{let i;const r=hs.fromTimestamp(e).toLocalJSDate(),a=hs.fromTimestamp(t).toLocalJSDate();return i=12*(a.getFullYear()-r.getFullYear()),i-=r.getMonth(),i+=a.getMonth(),i},ml={tag:"ui5-daypicker",properties:{timestamp:{type:Rt},primaryCalendarType:{type:bn},selectedDates:{type:Rt,multiple:!0},minDate:{type:String},maxDate:{type:String},formatPattern:{type:String},hideWeekNumbers:{type:Boolean},_hideWeekNumbers:{type:Boolean},_weeks:{type:Object,multiple:!0},_weekNumbers:{type:Object,multiple:!0},_hidden:{type:Boolean,noAttribute:!0}},events:{change:{},navigate:{}}};class gl extends Yt{static get metadata(){return ml}static get render(){return Vi}static get template(){return nl}static get styles(){return':host(:not([hidden])){display:inline-block}:host{height:100%;width:100%}:host([_hide-week-numbers]) .ui5-dp-content{flex-basis:100%}.ui5-dp-dayname,.ui5-dp-item,.ui5-dp-weekname{width:var(--_ui5_day_picker_item_width);height:var(--_ui5_day_picker_item_height);margin-top:var(--_ui5_daypicker_item_margin);margin-right:var(--_ui5_daypicker_item_margin);font-family:var(--sapFontFamily);border-radius:var(--_ui5_daypicker_item_border_radius)}.ui5-dp-weekname{color:var(--_ui5_daypicker_weekname_color)}.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-top:var(--_ui5_daypicker_weeknumbers_container_padding_top);flex-basis:12.5%}.ui5-dp-dayname,.ui5-dp-item,.ui5-dp-weekname,.ui5-dp-weekname-container{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;-ms-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)}.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--weeekend{background:var(--sapLegend_NonWorkingBackground)}.ui5-dp-item.ui5-dp-item--disabled{pointer-events:none;opacity:.5}.ui5-dp-item.ui5-dp-item--weeekend:hover{background:var(--sapList_Hover_Background)}.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--weeekend.ui5-dp-item--othermonth:hover{color:var(--_ui5_daypicker_item_othermonth_hover_color);background:var(--sapList_Hover_Background)}.ui5-dp-item:focus:after{content:"";width:calc(100% - .25rem);height:calc(100% - .25rem);border:var(--_ui5_daypicker_item_outline_width) dotted var(--sapContent_FocusColor);position:absolute;top:var(--_ui5_daypicker_item_outline_offset);left:var(--_ui5_daypicker_item_outline_offset)}.ui5-dp-item.ui5-dp-item--selected .ui5-dp-daytext{background:var(--sapContent_Selected_Background);color:var(--sapContent_Selected_TextColor)}.ui5-dp-item.ui5-dp-item--selected.ui5-dp-item--now .ui5-dp-daytext{border:1px solid var(--sapList_Background);border-radius:var(--_ui5_daypicker_item_now_inner_border_radius)}.ui5-dp-item.ui5-dp-item--selected.ui5-dp-item--now:focus:after{width:var(--_ui5_daypicker_item_now_selected_focus_after_width);height:var(--_ui5_daypicker_item_now_selected_focus_after_height);border-color:var(--sapContent_FocusColor);top:0;left:0}.ui5-dp-item.ui5-dp-item--selected:hover{background:var(--_ui5_daypicker_item_selected_hover_background_color);color:var(--sapContent_ContrastTextColor)}.ui5-dp-item.ui5-dp-item--selected:focus:after{border-color:var(--sapContent_ContrastFocusColor)}.ui5-dp-items-container{outline:none}.ui5-dp-item.ui5-dp-item--selected-between .ui5-dp-daytext,.ui5-dp-item[hovered] .ui5-dp-daytext{background-color:var(--sapList_SelectionBackgroundColor);color:var(--sapTextColor)}.ui5-dp-item.ui5-dp-item--selected-between,.ui5-dp-item[hovered]{border:1px solid var(--sapContent_Selected_Background);border-radius:5%}.ui5-dp-item.ui5-dp-item--now{border:.125rem solid var(--sapLegend_CurrentDateTime)}.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)}'}constructor(){super(),this._oLocale=fe(),this._oLocaleData=new Ln(this._oLocale),this._itemNav=new al(this,{rowSize:7,pageSize:42,behavior:rl}),this._itemNav.getItemsCallback=function(){return this.focusableDays}.bind(this),this._itemNav.attachEvent(al.BORDER_REACH,this._handleItemNavigationBorderReach.bind(this)),this._itemNav.attachEvent("PageBottom",this._handleMonthBottomOverflow.bind(this)),this._itemNav.attachEvent("PageTop",this._handleMonthTopOverflow.bind(this))}onBeforeRendering(){let e,t,i,r=-1,a=!1,o=0;const n=this._getVisibleDays(this._calendarDate);this._weeks=[];let s,l=[];this._weekNumbers=[],this.minDate&&(this._minDateObject=new Date(this._minDate)),this.maxDate&&(this._maxDateObject=new Date(this._maxDate));for(let u=0;u<n.length;u++){e=n[u],i=e.valueOf()/1e3,s=e.getDay()-this._getFirstDayOfWeek(),s<0&&(s+=7),t={timestamp:i.toString(),selected:this._selectedDates.some(e=>e===i),selectedBetween:this._selectedDates.slice(1,this._selectedDates.length-1).some(e=>e===i),iDay:e.getDate(),_index:u.toString(),classes:"ui5-dp-item ui5-dp-wday"+s};const d=ol(Qs(),e.toUTCJSDate(),e.getYear(),this._oLocale,this._oLocaleData);r!==d&&(this._weekNumbers.push(d),r=d);const c=e.isSame(hs.fromLocalJSDate(new Date,this._primaryCalendarType));l.push(t),e.getDay()===this._getFirstDayOfWeek()&&(t.classes+=" ui5-dp-firstday"),t.selected&&(t.classes+=" ui5-dp-item--selected",a=!0),t.selectedBetween&&(t.classes+=" ui5-dp-item--selected-between"),c&&(t.classes+=" ui5-dp-item--now",o=u),e.getMonth()!==this._month&&(t.classes+=" ui5-dp-item--othermonth"),t.id=`${this._id}-${i}`,this._isWeekend(e)&&(t.classes+=" ui5-dp-item--weeekend"),(this.minDate||this.maxDate)&&this._isOutOfSelectableRange(e)&&(t.classes+=" ui5-dp-item--disabled",t.disabled=!0),-1===t.classes.indexOf("ui5-dp-wday6")&&n.length-1!==u||(this._weeks.push(l),l=[])}for(;this._weeks.length<6;)this._weeks.push([]);!a&&o&&0===this._itemNav.current&&(this._itemNav.current=o);const u=this._oLocaleData.getDays("wide",this._primaryCalendarType),d=this._oLocaleData.getDays("abbreviated",this._primaryCalendarType).map(e=>e);let c;this._dayNames=[];for(let e=0;e<7;e++)s=e+this._getFirstDayOfWeek(),s>6&&(s-=7),c={id:`${this._id}-WH${e.toString()}`,name:u[s],ultraShortName:d[s],classes:"ui5-dp-dayname"},this._dayNames.push(c);this._dayNames[0].classes+=" ui5-dp-firstday",this._hideWeekNumbers=this.shouldHideWeekNumbers}onAfterRendering(){1===this.selectedDates.length&&this.fireEvent("daypickerrendered",{focusedItemIndex:this._itemNav.currentIndex})}_onmousedown(e){const t=e.target;if(this._isDayPressed(t)){const e=parseInt(t.getAttribute("data-sap-timestamp"));for(let i=0;i<this._weeks.length;i++)for(let r=0;r<this._weeks[i].length;r++)if(parseInt(this._weeks[i][r].timestamp)===e){let e=parseInt(t.getAttribute("data-sap-index"));if(this.minDate||this.maxDate){const t=this.focusableDays.find(t=>parseInt(t._index)===e);e=t?this.focusableDays.indexOf(t):e}this._itemNav.current=e,this._itemNav.update();break}this.targetDate=e}}_onmouseup(e){const t=this._isDayPressed(e.target);this.targetDate&&(this._modifySelectionAndNotifySubscribers(this.targetDate,e.ctrlKey),this.targetDate=null),t||this._itemNav.focusCurrent()}_onitemmouseover(e){1===this.selectedDates.length&&this.fireEvent("item-mouseover",e)}_onitemkeydown(e){1===this.selectedDates.length&&this.fireEvent("item-keydown",e)}_onkeydown(e){return ir(e)?this._handleEnter(e):rr(e)?this._handleSpace(e):void 0}_handleEnter(e){if(e.preventDefault(),e.target.className.indexOf("ui5-dp-item")>-1){const t=parseInt(e.target.getAttribute("data-sap-timestamp"));this._modifySelectionAndNotifySubscribers(t,e.ctrlKey)}}_handleSpace(e){if(e.preventDefault(),e.target.className.indexOf("ui5-dp-item")>-1){const t=parseInt(e.target.getAttribute("data-sap-timestamp"));this._modifySelectionAndNotifySubscribers(t,e.ctrlKey)}}get shouldHideWeekNumbers(){return this._primaryCalendarType!==bn.Gregorian||this.hideWeekNumbers}get _timestamp(){return void 0!==this.timestamp?this.timestamp:Math.floor((new Date).getTime()/1e3)}get _localDate(){return new Date(1e3*this._timestamp)}get _calendarDate(){return hs.fromTimestamp(this._localDate.getTime(),this._primaryCalendarType)}get _formatPattern(){return this.formatPattern||"medium"}get _month(){return this._calendarDate.getMonth()}get _year(){return this._calendarDate.getYear()}get _currentCalendarDate(){return hs.fromTimestamp((new Date).getTime(),this._primaryCalendarType)}get _selectedDates(){return this.selectedDates||[]}get _primaryCalendarType(){return this.primaryCalendarType||kn()||Ln.getInstance(fe()).getPreferredCalendarType()}get focusableDays(){const e=[];for(let t=0;t<this._weeks.length;t++){const i=this._weeks[t].filter(e=>!e.disabled);e.push(i)}return[].concat(...e)}_modifySelectionAndNotifySubscribers(e,t){this.selectedDates=t?[...this._selectedDates,e]:[e],this.fireEvent("change",{dates:[...this._selectedDates]})}_handleMonthBottomOverflow(e){this._itemNav.hasNextPage=this._hasNextMonth()}_handleMonthTopOverflow(e){this._itemNav.hasPrevPage=this._hasPrevMonth()}_hasNextMonth(){let e=this._month+1,t=this._year;if(e>11&&(e=0,t++),t>9999&&0===e)return!1;if(!this.maxDate)return!0;const i=this._calendarDate;i.setDate(i.getDate()),i.setYear(t),i.setMonth(e);const r=_l(i.valueOf(),this._maxDate);if(r<0)return!1;const a=this.focusableDays[this.focusableDays.length-1].iDay;return 0!==r||hs.fromTimestamp(this._maxDate).toLocalJSDate().getDate()!==a}_hasPrevMonth(){let e=this._month-1,t=this._year;if(e<0&&(e=11,t--),t<1&&11===e)return!1;if(!this.minDate)return!0;const i=this._calendarDate;i.setDate(i.getDate()),i.setYear(t),i.setMonth(e);const r=_l(this._minDate,i.valueOf());return!(this.minDate&&r<0)}_handleItemNavigationBorderReach(e){const t=this._month,i=this._year;let r,a,o,n;e.end?(n=new Date(1e3*this._weeks[this._weeks.length-1][e.offset].timestamp),r=t<11?t+1:0,a=t<11?i:i+1,o=n.getMonth()===r?n.getDate():n.getDate()+7):e.start&&(n=new Date(1e3*this._weeks[0][e.offset].timestamp),r=t>0?t-1:11,a=t>0?i:i-1,o=n.getMonth()===r?n.getDate():n.getDate()-7);const s=this._calendarDate;s.setDate(o),s.setYear(a),s.setMonth(r),s.getYear()<1||s.getYear()>9999||this._isOutOfSelectableRange(s._oUDate.oDate)||this.fireEvent("navigate",{timestamp:s.valueOf()/1e3})}_isWeekend(e){const t=e.getDay(),i=this._oLocaleData.getWeekendStart(),r=this._oLocaleData.getWeekendEnd();return t>=i&&t<=r||r<i&&(t>=i||t<=r)}_isDayPressed(e){const t=e.parentNode;return e.className.indexOf("ui5-dp-item")>-1||t&&e.parentNode.classList.contains("ui5-dp-item")}_isOutOfSelectableRange(e){const t=e._oUDate?e.toLocalJSDate():hs.fromTimestamp(e).toLocalJSDate();return t>this._maxDateObject||t<this._minDateObject}get _maxDate(){if(this.maxDate){const e=new Date(this.getFormat().parse(this.maxDate).getFullYear(),this.getFormat().parse(this.maxDate).getMonth(),this.getFormat().parse(this.maxDate).getDate());return hs.fromTimestamp(e.getTime(),this._primaryCalendarType).valueOf()}return this.maxDate}get _minDate(){if(this.minDate){const e=new Date(this.getFormat().parse(this.minDate).getFullYear(),this.getFormat().parse(this.minDate).getMonth(),this.getFormat().parse(this.minDate).getDate());return hs.fromTimestamp(e.getTime(),this._primaryCalendarType).valueOf()}return this.minDate}getFormat(){return this._isPattern?this._oDateFormat=as.getInstance({pattern:this._formatPattern,calendarType:this._primaryCalendarType}):this._oDateFormat=as.getInstance({style:this._formatPattern,calendarType:this._primaryCalendarType}),this._oDateFormat}get _isPattern(){return"medium"!==this._formatPattern&&"short"!==this._formatPattern&&"long"!==this._formatPattern}_getVisibleDays(e,t){let i,r,a;const o=[];if(!e)return o;const n=this._getFirstDayOfWeek(),s=new hs(e,this._primaryCalendarType);s.setDate(1),r=s.getDay()-n,r<0&&(r=7+r),r>0&&s.setDate(1-r);const l=new hs(s);for(let e=0;e<42;e++)a=l.getYear(),i=new hs(l,this._primaryCalendarType),t&&a<1?(i._bBeforeFirstYear=!0,o.push(i)):a>=1&&a<=9999&&o.push(i),l.setDate(l.getDate()+1);return o}_getFirstDayOfWeek(){const e=Qs();return Number.isInteger(e)?e:this._oLocaleData.getFirstDayOfWeek()}get styles(){return{wrapper:{display:this._hidden?"none":"flex"},main:{width:"100%"}}}static async onDefine(){await Promise.all([vn(fe().getLanguage(),fe().getRegion(),fe().getScript())])}}gl.define();const fl=e=>Pi`<div class="ui5-mp-root" role="grid" aria-readonly="false" aria-multiselectable="false" style="${Hi(e.styles.main)}" @keydown=${e._onkeydown} @click=${e._onclick}>${$i(e._quarters,(e,t)=>e._id||t,(e,t)=>vl(e))}</div>`,vl=(e,t,i)=>Pi`<div class="ui5-mp-quarter">${$i(e,(e,t)=>e._id||t,(e,t)=>yl(e))}</div>`,yl=(e,t,i)=>Pi`<div id="${Cr(e.id)}" data-sap-timestamp=${Cr(e.timestamp)} tabindex=${Cr(e._tabIndex)} class="${Cr(e.classes)}" role="gridcell" aria-selected="false">${Cr(e.name)}</div>`;M("@ui5/webcomponents-theme-base","sap_fiori_3",Nr),M("@ui5/webcomponents","sap_fiori_3",Or);const bl={tag:"ui5-monthpicker",properties:{timestamp:{type:Rt},primaryCalendarType:{type:bn},minDate:{type:String},maxDate:{type:String},_quarters:{type:Object,multiple:!0},_hidden:{type:Boolean,noAttribute:!0},formatPattern:{type:String}},events:{change:{}}};class wl extends Yt{static get metadata(){return bl}static get render(){return Vi}static get template(){return fl}static get styles(){return':host(:not([hidden])){display:inline-block}:host{width:100%;height:100%}.ui5-mp-root{padding:2rem 0 1rem 0;display:flex;flex-direction:column;font-family:var(--sapFontFamily);font-size:var(--sapFontSize);justify-content:center;align-items:center}.ui5-mp-item{display:flex;width:calc(33.333% - .125rem);height:var(--_ui5_month_picker_item_height);color:var(--sapTextColor);background-color:var(--sapLegend_WorkingBackground);align-items:center;justify-content:center;margin:var(--_ui5_monthpicker_item_margin);box-sizing:border-box;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:default;outline:none;position:relative;border:var(--_ui5_monthpicker_item_border);border-radius:var(--_ui5_monthpicker_item_border_radius)}.ui5-mp-item:hover{background-color:var(--sapList_Hover_Background)}.ui5-mp-item.ui5-mp-item--selected{background-color:var(--sapSelectedColor);color:var(--sapContent_ContrastTextColor)}.ui5-mp-item.ui5-mp-item--disabled{pointer-events:none;opacity:.5}.ui5-mp-item.ui5-mp-item--selected:focus{background-color:var(--sapContent_Selected_Background)}.ui5-mp-item.ui5-mp-item--selected:focus:after{border-color:var(--sapContent_ContrastFocusColor)}.ui5-mp-item.ui5-mp-item--selected:hover{background-color:var(--sapContent_Selected_Background)}.ui5-mp-item:focus:after{content:"";position:absolute;width:var(--_ui5_monthpicker_item_focus_after_width);height:var(--_ui5_monthpicker_item_focus_after_height);border:var(--_ui5_monthpicker_item_focus_after_border);top:var(--_ui5_monthpicker_item_focus_after_offset);left:var(--_ui5_monthpicker_item_focus_after_offset)}.ui5-mp-quarter{display:flex;justify-content:center;align-items:center;width:100%}'}constructor(){super(),this._oLocale=fe(),this._oLocaleData=new Ln(this._oLocale),this._itemNav=new al(this,{pageSize:12,rowSize:3,behavior:rl}),this._itemNav.getItemsCallback=function(){const e=[];for(let t=0;t<this._quarters.length;t++){const i=this._quarters[t].filter(e=>!e.disabled);e.push(i)}return[].concat(...e)}.bind(this),this._itemNav.setItemsCallback=function(e){this._quarters=e}.bind(this)}onBeforeRendering(){const e=[],t=hs.fromTimestamp((new Date).getTime(),this._primaryCalendarType);let i;for(let r=0;r<12;r++){t.setMonth(r),i=t.valueOf()/1e3;const a={timestamp:i.toString(),id:`${this._id}-m${r}`,name:this._oLocaleData.getMonths("wide",this._primaryCalendarType)[r],classes:"ui5-mp-item"};this._month===r&&(a.classes+=" ui5-mp-item--selected"),(this.minDate||this.maxDate)&&this._isOutOfSelectableRange(r)&&(a.classes+=" ui5-mp-item--disabled",a.disabled=!0);const o=parseInt(r/3);e[o]?e[o].push(a):e[o]=[a]}this._quarters=e}onAfterRendering(){this._itemNav.focusCurrent()}get _timestamp(){return void 0!==this.timestamp?this.timestamp:Math.floor((new Date).getTime()/1e3)}get _localDate(){return new Date(1e3*this._timestamp)}get _calendarDate(){return hs.fromTimestamp(this._localDate.getTime(),this._primaryCalendarType)}get _month(){return this._calendarDate.getMonth()}get _primaryCalendarType(){return this.primaryCalendarType||kn()||Ln.getInstance(fe()).getPreferredCalendarType()}get _isPattern(){return"medium"!==this._formatPattern&&"short"!==this._formatPattern&&"long"!==this._formatPattern}_onclick(e){if(e.target.className.indexOf("ui5-mp-item")>-1){const t=this.getTimestampFromDOM(e.target);this.timestamp=t,this._itemNav.current=this._month,this.fireEvent("change",{timestamp:t})}}_onkeydown(e){(rr(e)||ir(e))&&this._activateMonth(e)}_activateMonth(e){if(e.preventDefault(),e.target.className.indexOf("ui5-mp-item")>-1){const t=this.getTimestampFromDOM(e.target);this.timestamp=t,this.fireEvent("change",{timestamp:t})}}_isOutOfSelectableRange(e){const t=this._localDate.getFullYear(),i=new Date(this._minDate),r=new Date(this._maxDate),a=i&&(t===i.getFullYear()&&e<i.getMonth()||t<i.getFullYear());return r&&(t===r.getFullYear()&&e>r.getMonth()||t>r.getFullYear())||a}get _maxDate(){if(this.maxDate){const e=new Date(this.getFormat().parse(this.maxDate).getFullYear(),this.getFormat().parse(this.maxDate).getMonth(),this.getFormat().parse(this.maxDate).getDate());return hs.fromTimestamp(e.getTime(),this._primaryCalendarType).valueOf()}return this.maxDate}get _minDate(){if(this.minDate){const e=new Date(this.getFormat().parse(this.minDate).getFullYear(),this.getFormat().parse(this.minDate).getMonth(),this.getFormat().parse(this.minDate).getDate());return hs.fromTimestamp(e.getTime(),this._primaryCalendarType).valueOf()}return this.minDate}getFormat(){return this._isPattern?this._oDateFormat=as.getInstance({pattern:this._formatPattern,calendarType:this._primaryCalendarType}):this._oDateFormat=as.getInstance({style:this._formatPattern,calendarType:this._primaryCalendarType}),this._oDateFormat}get _formatPattern(){return this.formatPattern||"medium"}getTimestampFromDOM(e){const t=e.getAttribute("data-sap-timestamp");return parseInt(t)}get styles(){return{main:{display:this._hidden?"none":""}}}}wl.define();const kl=e=>Pi`<div class="ui5-yp-root" role="grid" aria-readonly="false" aria-multiselectable="false" style="${Hi(e.styles.main)}" @keydown=${e._onkeydown} @click=${e._onclick}>${$i(e._yearIntervals,(e,t)=>e._id||t,(e,t)=>xl(e))}</div>`,xl=(e,t,i)=>Pi`<div class="ui5-yp-interval-container">${$i(e,(e,t)=>e._id||t,(e,t)=>Cl(e))}</div>`,Cl=(e,t,i)=>Pi`<div id="${Cr(e.id)}" tabindex="${Cr(e._tabIndex)}" data-sap-timestamp="${Cr(e.timestamp)}" class="${Cr(e.classes)}" role="gridcell" aria-selected="false">${Cr(e.year)}</div>`;M("@ui5/webcomponents-theme-base","sap_fiori_3",Nr),M("@ui5/webcomponents","sap_fiori_3",Or);const Sl={tag:"ui5-yearpicker",properties:{timestamp:{type:Rt},primaryCalendarType:{type:bn},minDate:{type:String},maxDate:{type:String,defaultValue:void 0},_selectedYear:{type:Rt,noAttribute:!0},_yearIntervals:{type:Object,multiple:!0},_hidden:{type:Boolean,noAttribute:!0},formatPattern:{type:String}},events:{change:{}}};class Tl extends Yt{static get metadata(){return Sl}static get styles(){return':host(:not([hidden])){display:inline-block}:host{width:100%;height:100%}.ui5-yp-root{padding:2rem 0 1rem 0;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(--sapTextColor);background-color:var(--sapLegend_WorkingBackground);align-items:center;justify-content:center;box-sizing:border-box;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:default;outline:none;position:relative;border:var(--_ui5_yearpicker_item_border);border-radius:var(--_ui5_yearpicker_item_border_radius)}.ui5-yp-item:hover{background-color:var(--sapList_Hover_Background)}.ui5-yp-item.ui5-yp-item--selected{background-color:var(--sapSelectedColor);color:var(--sapContent_ContrastTextColor)}.ui5-yp-item.ui5-yp-item--disabled{pointer-events:none;opacity:.5}.ui5-yp-item.ui5-yp-item--selected:focus{background-color:var(--_ui5_yearpicker_item_selected_focus)}.ui5-yp-item.ui5-yp-item--selected:focus:after{border-color:var(--sapContent_ContrastFocusColor)}.ui5-yp-item.ui5-yp-item--selected:hover{background-color:var(--_ui5_yearpicker_item_selected_focus)}.ui5-yp-item:focus:after{content:"";position:absolute;width:var(--_ui5_yearpicker_item_focus_after_width);height:var(--_ui5_yearpicker_item_focus_after_height);border:var(--_ui5_yearpicker_item_focus_after_border);top:var(--_ui5_yearpicker_item_focus_after_offset);left:var(--_ui5_yearpicker_item_focus_after_offset)}'}static get render(){return Vi}static get template(){return kl}constructor(){super(),this._oLocale=fe(),this._itemNav=new al(this,{pageSize:20,rowSize:4,behavior:rl}),this._itemNav.getItemsCallback=function(){const e=[];for(let t=0;t<this._yearIntervals.length;t++){const i=this._yearIntervals[t].filter(e=>!e.disabled);e.push(i)}return[].concat(...e)}.bind(this),this._itemNav.attachEvent(al.BORDER_REACH,this._handleItemNavigationBorderReach.bind(this)),this._yearIntervals=[]}onBeforeRendering(){const e=as.getDateInstance({format:"y",calendarType:this._primaryCalendarType},this._oLocale),t=this._calendarDate;t.setMonth(0),t.setDate(1),t.getYear()-Tl._MIDDLE_ITEM_INDEX-1>Tl._MAX_YEAR-Tl._ITEMS_COUNT?t.setYear(Tl._MAX_YEAR-Tl._ITEMS_COUNT):t.getYear()-Tl._MIDDLE_ITEM_INDEX-1<Tl._MIN_YEAR?t.setYear(Tl._MIN_YEAR-1):t.setYear(t.getYear()-Tl._MIDDLE_ITEM_INDEX-1);const i=[];let r;void 0===this._selectedYear&&(this._selectedYear=this._year);for(let a=0;a<Tl._ITEMS_COUNT;a++){const o=parseInt(a/4);i[o]||(i[o]=[]),t.setYear(t.getYear()+1),r=t.valueOf()/1e3;const n={timestamp:r.toString(),id:`${this._id}-y${r}`,year:e.format(t.toLocalJSDate()),classes:"ui5-yp-item"};t.getYear()===this._selectedYear&&(n.classes+=" ui5-yp-item--selected"),(this.minDate||this.maxDate)&&this._isOutOfSelectableRange(t.getYear())&&(n.classes+=" ui5-yp-item--disabled",n.disabled=!0),i[o]&&i[o].push(n)}this._yearIntervals=i}onAfterRendering(){this._itemNav.focusCurrent()}get _timestamp(){return void 0!==this.timestamp?this.timestamp:Math.floor((new Date).getTime()/1e3)}get _localDate(){return new Date(1e3*this._timestamp)}get _calendarDate(){return hs.fromTimestamp(this._localDate.getTime(),this._primaryCalendarType)}get _year(){return this._calendarDate.getYear()}get _primaryCalendarType(){return this.primaryCalendarType||kn()||Ln.getInstance(fe()).getPreferredCalendarType()}get _isPattern(){return"medium"!==this._formatPattern&&"short"!==this._formatPattern&&"long"!==this._formatPattern}_onclick(e){if(e.target.className.indexOf("ui5-yp-item")>-1){const t=this.getTimestampFromDom(e.target);this.timestamp=t,this._selectedYear=this._year,this._itemNav.current=Tl._MIDDLE_ITEM_INDEX,this.fireEvent("change",{timestamp:t})}}getTimestampFromDom(e){const t=e.getAttribute("data-sap-timestamp");return parseInt(t)}_onkeydown(e){return ir(e)?this._handleEnter(e):rr(e)?this._handleSpace(e):void 0}_handleEnter(e){if(e.preventDefault(),e.target.className.indexOf("ui5-yp-item")>-1){const t=this.getTimestampFromDom(e.target);this.timestamp=t,this._selectedYear=this._year,this._itemNav.current=Tl._MIDDLE_ITEM_INDEX,this.fireEvent("change",{timestamp:t})}}_handleSpace(e){if(e.preventDefault(),e.target.className.indexOf("ui5-yp-item")>-1){const t=this.getTimestampFromDom(e.target);this._selectedYear=hs.fromTimestamp(1e3*t,this._primaryCalendarType).getYear()}}_handleItemNavigationBorderReach(e){const t=this._calendarDate;if(t.setMonth(0),t.setDate(1),e.end)t.setYear(t.getYear()+Tl._ITEMS_COUNT);else if(e.start){if(t.getYear()-Tl._MIDDLE_ITEM_INDEX<Tl._MIN_YEAR)return;t.setYear(t.getYear()-Tl._ITEMS_COUNT)}t.getYear()-Tl._MIDDLE_ITEM_INDEX>Tl._MAX_YEAR||this._isOutOfSelectableRange(t.getYear()-Tl._MIDDLE_ITEM_INDEX)&&this._isOutOfSelectableRange(t.getYear()+Tl._MIDDLE_ITEM_INDEX)||this._isOutOfSelectableRange(t.getYear()-Tl._MIDDLE_ITEM_INDEX)&&this._isOutOfSelectableRange(t.getYear()+Tl._MIDDLE_ITEM_INDEX)||(this.timestamp=t.valueOf()/1e3)}get _formatPattern(){return this.formatPattern||"medium"}_isOutOfSelectableRange(e){const t=new Date(this._minDate),i=new Date(this._maxDate),r=t&&e<t.getFullYear(),a=i&&e>i.getFullYear();return r||a}get _maxDate(){if(this.maxDate){const e=new Date(this.getFormat().parse(this.maxDate).getFullYear(),this.getFormat().parse(this.maxDate).getMonth(),this.getFormat().parse(this.maxDate).getDate());return hs.fromTimestamp(e.getTime(),this._primaryCalendarType).valueOf()}return this.maxDate}get _minDate(){if(this.minDate){const e=new Date(this.getFormat().parse(this.minDate).getFullYear(),this.getFormat().parse(this.minDate).getMonth(),this.getFormat().parse(this.minDate).getDate());return hs.fromTimestamp(e.getTime(),this._primaryCalendarType).valueOf()}return this.minDate}getFormat(){return this._isPattern?this._oDateFormat=as.getInstance({pattern:this._formatPattern,calendarType:this._primaryCalendarType}):this._oDateFormat=as.getInstance({style:this._formatPattern,calendarType:this._primaryCalendarType}),this._oDateFormat}get styles(){return{main:{display:this._hidden?"none":""}}}}Tl._ITEMS_COUNT=20,Tl._MIDDLE_ITEM_INDEX=7,Tl._MAX_YEAR=9999,Tl._MIN_YEAR=1,Tl.define();var Dl=Xn.extend("sap.ui.core.date.Gregorian",{constructor:function(){this.oDate=this.createDate(Date,arguments),this.sCalendarType=On.Gregorian}});Dl.UTC=function(){return Date.UTC.apply(Date,arguments)},Dl.now=function(){return Date.now()},Jn(On.Gregorian,Dl);const Pl=e=>Pi`<div class="${Ri(e.classes.main)}" style="${Hi(e.styles.main)}"><ui5-calendar-header id="${Cr(e._id)}-head" month-text="${Cr(e._header.monthText)}" year-text="${Cr(e._header.yearText)}" .primaryCalendarType="${Cr(e._oMonth.primaryCalendarType)}" @ui5-previous-press="${Cr(e._header.onPressPrevious)}" @ui5-next-press="${Cr(e._header.onPressNext)}" @ui5-show-month-press="${Cr(e._header.onBtn1Press)}" @ui5-show-year-press="${Cr(e._header.onBtn2Press)}" ._isNextButtonDisabled="${Cr(e._header._isNextButtonDisabled)}" ._isPrevButtonDisabled="${Cr(e._header._isPrevButtonDisabled)}"></ui5-calendar-header><div id="${Cr(e._id)}-content"><ui5-daypicker id="${Cr(e._id)}-daypicker" class="${Ri(e.classes.dayPicker)}" format-pattern="${Cr(e._oMonth.formatPattern)}" .selectedDates="${Cr(e._oMonth.selectedDates)}" ._hidden="${Cr(e._oMonth._hidden)}" .primaryCalendarType="${Cr(e._oMonth.primaryCalendarType)}" .minDate="${Cr(e._oMonth.minDate)}" .maxDate="${Cr(e._oMonth.maxDate)}" timestamp="${Cr(e._oMonth.timestamp)}" @ui5-change="${Cr(e._oMonth.onSelectedDatesChange)}" @ui5-navigate="${Cr(e._oMonth.onNavigate)}" ?hide-week-numbers="${e.hideWeekNumbers}"></ui5-daypicker><ui5-monthpicker id="${Cr(e._id)}-MP" class="${Ri(e.classes.monthPicker)}" format-pattern="${Cr(e._oMonth.formatPattern)}" ._hidden="${Cr(e._monthPicker._hidden)}" .primaryCalendarType="${Cr(e._oMonth.primaryCalendarType)}" .minDate="${Cr(e._oMonth.minDate)}" .maxDate="${Cr(e._oMonth.maxDate)}" timestamp="${Cr(e._monthPicker.timestamp)}" @ui5-change="${Cr(e._monthPicker.onSelectedMonthChange)}"></ui5-monthpicker><ui5-yearpicker id="${Cr(e._id)}-YP" class="${Ri(e.classes.yearPicker)}" format-pattern="${Cr(e._oMonth.formatPattern)}" ._hidden="${Cr(e._yearPicker._hidden)}" .primaryCalendarType="${Cr(e._oMonth.primaryCalendarType)}" .minDate="${Cr(e._oMonth.minDate)}" .maxDate="${Cr(e._oMonth.maxDate)}" timestamp="${Cr(e._yearPicker.timestamp)}" ._selectedYear="${Cr(e._yearPicker._selectedYear)}" @ui5-change="${Cr(e._yearPicker.onSelectedYearChange)}"></ui5-yearpicker></div></div>`;M("@ui5/webcomponents-theme-base","sap_fiori_3",Nr),M("@ui5/webcomponents","sap_fiori_3",Or);const Il={tag:"ui5-calendar",properties:{timestamp:{type:Rt},primaryCalendarType:{type:bn},selectedDates:{type:Rt,multiple:!0},minDate:{type:String},maxDate:{type:String},hideWeekNumbers:{type:Boolean},_header:{type:Object},_oMonth:{type:Object},_monthPicker:{type:Object},_yearPicker:{type:Object},_calendarWidth:{type:String,noAttribute:!0},_calendarHeight:{type:String,noAttribute:!0},formatPattern:{type:String}},events:{"selected-dates-change":{type:Array}}};class Ml extends Yt{static get metadata(){return Il}static get render(){return Vi}static get template(){return Pl}static get styles(){return":host{display:inline-block}.ui5-daypicker--hidden,.ui5-monthpicker--hidden,.ui5-yearpicker--hidden{display:none}.ui5-cal-root{background:var(--sapList_Background)}.ui5-cal-root ui5-daypicker,.ui5-cal-root ui5-month-picker,.ui5-cal-root ui5-yearpicker{vertical-align:top}"}constructor(){super(),this._oLocale=fe(),this._oLocaleData=new Ln(this._oLocale),this._header={},this._header.onPressPrevious=this._handlePrevious.bind(this),this._header.onPressNext=this._handleNext.bind(this),this._header.onBtn1Press=this._handleMonthButtonPress.bind(this),this._header.onBtn2Press=this._handleYearButtonPress.bind(this),this._oMonth={},this._oMonth.onSelectedDatesChange=this._handleSelectedDatesChange.bind(this),this._oMonth.onNavigate=this._handleMonthNavigate.bind(this),this._monthPicker={},this._monthPicker._hidden=!0,this._monthPicker.onSelectedMonthChange=this._handleSelectedMonthChange.bind(this),this._yearPicker={},this._yearPicker._hidden=!0,this._yearPicker.onSelectedYearChange=this._handleSelectedYearChange.bind(this),this._isShiftingYears=!1}onBeforeRendering(){const e=as.getDateInstance({format:"y",calendarType:this._primaryCalendarType}),t=this.minDate&&this.getFormat().parse(this.minDate),i=this.maxDate&&this.getFormat().parse(this.maxDate);let r=0,a=1;(this.minDate||this.maxDate)&&this._timestamp&&!this.isInValidRange(1e3*this._timestamp)&&(this._minDate?this.timestamp=this._minDate/1e3:this.timestamp=new Date(-621355968e5).getTime()/1e3),this._oMonth.formatPattern=this._formatPattern,this._oMonth.timestamp=this._timestamp,this._oMonth.selectedDates=[...this._selectedDates],this._oMonth.primaryCalendarType=this._primaryCalendarType,this._oMonth.minDate=this.minDate,this._oMonth.maxDate=this.maxDate,this._header.monthText=this._oLocaleData.getMonths("wide",this._primaryCalendarType)[this._month],this._header.yearText=e.format(this._localDate),r=this.timestamp&&hs.fromTimestamp(1e3*this.timestamp).getMonth(),a=this.timestamp&&hs.fromTimestamp(1e3*this.timestamp).getYear(),this._monthPicker.primaryCalendarType=this._primaryCalendarType,this._monthPicker.timestamp=this._timestamp,this._yearPicker.primaryCalendarType=this._primaryCalendarType,this._isShiftingYears||(this._yearPicker.timestamp=this._timestamp),this._isShiftingYears=!1,this._oMonth._hidden||(this.minDate&&t.getMonth()===r&&t.getFullYear()===a?this._header._isPrevButtonDisabled=!0:this._header._isPrevButtonDisabled=!1,this.maxDate&&i.getMonth()===r&&i.getFullYear()===a?this._header._isNextButtonDisabled=!0:this._header._isNextButtonDisabled=!1),this._yearPicker._hidden||(a=this._yearPicker.timestamp&&hs.fromTimestamp(1e3*this._yearPicker.timestamp).getYear(),this.minDate&&a-t.getFullYear()<1?this._header._isPrevButtonDisabled=!0:this._header._isPrevButtonDisabled=!1,this.maxDate&&i.getFullYear()-a<1?this._header._isNextButtonDisabled=!0:this._header._isNextButtonDisabled=!1)}get _timestamp(){return void 0!==this.timestamp?this.timestamp:Math.floor((new Date).getTime()/1e3)}get _localDate(){return new Date(1e3*this._timestamp)}get _calendarDate(){return hs.fromTimestamp(this._localDate.getTime(),this._primaryCalendarType)}get _month(){return this._calendarDate.getMonth()}get _primaryCalendarType(){return this.primaryCalendarType||kn()||Ln.getInstance(fe()).getPreferredCalendarType()}get _formatPattern(){return this.formatPattern||"medium"}get _isPattern(){return"medium"!==this._formatPattern&&"short"!==this._formatPattern&&"long"!==this._formatPattern}get _selectedDates(){return this.selectedDates||[]}get _maxDate(){if(this.maxDate){const e=new Date(this.getFormat().parse(this.maxDate).getFullYear(),this.getFormat().parse(this.maxDate).getMonth(),this.getFormat().parse(this.maxDate).getDate());return hs.fromTimestamp(e.getTime(),this._primaryCalendarType).valueOf()}return this.maxDate}get _minDate(){if(this.minDate){const e=new Date(this.getFormat().parse(this.minDate).getFullYear(),this.getFormat().parse(this.minDate).getMonth(),this.getFormat().parse(this.minDate).getDate());return hs.fromTimestamp(e.getTime(),this._primaryCalendarType).valueOf()}return this.minDate}_handleSelectedDatesChange(e){this.selectedDates=[...e.detail.dates],this.fireEvent("selected-dates-change",{dates:e.detail.dates})}_handleMonthNavigate(e){this.timestamp=e.detail.timestamp}_handleSelectedMonthChange(e){const t=this._calendarDate,i=hs.fromTimestamp(1e3*e.detail.timestamp,this._primaryCalendarType).getMonth();t.setMonth(i),this.timestamp=t.valueOf()/1e3,this._hideMonthPicker(),this._focusFirstDayOfMonth(t)}_focusFirstDayOfMonth(e){let t=-1;const i=this.shadowRoot.querySelector("ui5-daypicker");i._getVisibleDays(e).forEach((e,i)=>{1===e.getDate()&&-1===t&&(t=i)}),i._itemNav.currentIndex=t,i._itemNav.focusCurrent()}_handleSelectedYearChange(e){const t=hs.fromTimestamp(1e3*e.detail.timestamp,this._primaryCalendarType);t.setMonth(0),t.setDate(1),this.timestamp=t.valueOf()/1e3,this._hideYearPicker(),this._focusFirstDayOfMonth(t)}_handleMonthButtonPress(){this._hideYearPicker(),this[`_${this._monthPicker._hidden?"show":"hide"}MonthPicker`]()}_handleYearButtonPress(){this._hideMonthPicker(),this[`_${this._yearPicker._hidden?"show":"hide"}YearPicker`]()}_handlePrevious(){this._monthPicker._hidden&&this._yearPicker._hidden?this._showPrevMonth():this._monthPicker._hidden&&!this._yearPicker._hidden?this._showPrevPageYears():!this._monthPicker._hidden&&this._yearPicker._hidden&&this._showPrevYear()}_handleNext(){this._monthPicker._hidden&&this._yearPicker._hidden?this._showNextMonth():this._monthPicker._hidden&&!this._yearPicker._hidden?this._showNextPageYears():!this._monthPicker._hidden&&this._yearPicker._hidden&&this._showNextYear()}_showNextMonth(){const e=this._calendarDate;e.setDate(1),e.setMonth(e.getMonth()+1),e.getYear()>Tl._MAX_YEAR||this.isInValidRange(e.toLocalJSDate().valueOf())&&(this._focusFirstDayOfMonth(e),this.timestamp=e.valueOf()/1e3)}_showPrevMonth(){let e=this._month-1,t=this._calendarDate.getYear();const i=this.shadowRoot.querySelector("ui5-daypicker"),r=i._calendarDate.setMonth(i._calendarDate.getMonth()),a=i._calendarDate.setMonth(i._calendarDate.getMonth()-1);r.setDate(-1);let o=-1;if(!this.isInValidRange(r.toLocalJSDate().valueOf()))return;i._getVisibleDays(a).forEach((e,t)=>{const i=r.getDate()===e.getDate(),a=r.getMonth()===e.getMonth();i&&a&&(o=t+1)});if(-1!==o){const e=i.shadowRoot.querySelector(".ui5-dp-items-container").children[parseInt(o/7)].children[o%7];i._itemNav.current=o,e.focus()}e>11&&(e=0,t=this._calendarDate.getYear()+1),e<0&&(e=11,t=this._calendarDate.getYear()-1);const n=this._calendarDate;n.setYear(t),n.setMonth(e),n.getYear()<Tl._MIN_YEAR||(this.timestamp=n.valueOf()/1e3)}_showNextYear(){if(this._calendarDate.getYear()===Tl._MAX_YEAR)return;const e=this._calendarDate;e.setYear(this._calendarDate.getYear()+1),this.timestamp=e.valueOf()/1e3}_showPrevYear(){if(this._calendarDate.getYear()===Tl._MIN_YEAR)return;const e=this._calendarDate;e.setYear(this._calendarDate.getYear()-1),this.timestamp=e.valueOf()/1e3}_showNextPageYears(){this._isYearInRange(this._yearPicker.timestamp,Tl._ITEMS_COUNT-Tl._MIDDLE_ITEM_INDEX,Tl._MIN_YEAR,Tl._MAX_YEAR)&&(this.minDate&&!this._isYearInRange(this._yearPicker.timestamp,Tl._ITEMS_COUNT-Tl._MIDDLE_ITEM_INDEX,this.getFormat().parse(this.minDate).getFullYear(),Tl._MAX_YEAR)||this.maxDate&&!this._isYearInRange(this._yearPicker.timestamp,Tl._ITEMS_COUNT-Tl._MIDDLE_ITEM_INDEX,Tl._MIN_YEAR,this.getFormat().parse(this.maxDate).getFullYear())||(this._yearPicker=Object.assign({},this._yearPicker,{timestamp:this._yearPicker.timestamp+31536e3*Tl._ITEMS_COUNT}),this._isShiftingYears=!0))}_showPrevPageYears(){this._isYearInRange(this._yearPicker.timestamp,-Tl._MIDDLE_ITEM_INDEX-1,Tl._MIN_YEAR,Tl._MAX_YEAR)&&(this.minDate&&!this._isYearInRange(this._yearPicker.timestamp,-Tl._MIDDLE_ITEM_INDEX-1,this.getFormat().parse(this.minDate).getFullYear(),Tl._MAX_YEAR)||this.maxDate&&!this._isYearInRange(this._yearPicker.timestamp,-Tl._MIDDLE_ITEM_INDEX-1,Tl._MIN_YEAR,this.getFormat().parse(this.maxDate).getFullYear())||(this._yearPicker=Object.assign({},this._yearPicker,{timestamp:this._yearPicker.timestamp-31536e3*Tl._ITEMS_COUNT}),this._isShiftingYears=!0))}_showMonthPicker(){this._monthPicker=Object.assign({},this._monthPicker),this._oMonth=Object.assign({},this._oMonth),this._monthPicker.timestamp=this._timestamp,this._monthPicker._hidden=!1,this._oMonth._hidden=!0;const e=this.shadowRoot.querySelector(".ui5-cal-root").getBoundingClientRect();this._calendarWidth=e.width.toString(),this._calendarHeight=e.height.toString()}_showYearPicker(){this._yearPicker=Object.assign({},this._yearPicker),this._oMonth=Object.assign({},this._oMonth),this._yearPicker.timestamp=this._timestamp,this._yearPicker._selectedYear=this._calendarDate.getYear(),this._yearPicker._hidden=!1,this._oMonth._hidden=!0;const e=this.shadowRoot.querySelector(".ui5-cal-root").getBoundingClientRect();this._calendarWidth=e.width.toString(),this._calendarHeight=e.height.toString()}_hideMonthPicker(){this._monthPicker=Object.assign({},this._monthPicker),this._oMonth=Object.assign({},this._oMonth),this._monthPicker._hidden=!0,this._oMonth._hidden=!1}_hideYearPicker(){this._yearPicker=Object.assign({},this._yearPicker),this._oMonth=Object.assign({},this._oMonth),this._yearPicker._hidden=!0,this._oMonth._hidden=!1}_isYearInRange(e,t,i,r){if(e){const a=hs.fromTimestamp(1e3*e,this._primaryCalendarType);return a.setMonth(0),a.setDate(1),a.setYear(a.getYear()+t),a.getYear()>=i&&a.getYear()<=r}}get classes(){return{main:{"ui5-cal-root":!0},dayPicker:{".ui5-daypicker--hidden":!this._yearPicker._hidden||!this._monthPicker._hidden},yearPicker:{"ui5-yearpicker--hidden":this._yearPicker._hidden},monthPicker:{"ui5-monthpicker--hidden":this._monthPicker._hidden}}}isInValidRange(e=""){const t=hs.fromTimestamp(e).toLocalJSDate(),i=this._minDate&&new Date(this._minDate),r=this._maxDate&&new Date(this._maxDate);if(i&&r){if(i<=t&&r>=t)return!0}else if(i&&!r){if(i<=t)return!0}else if(r&&!i){if(r>=t)return!0}else if(!r&&!i)return!0;return!1}getFormat(){return this._isPattern?this._oDateFormat=as.getInstance({pattern:this._formatPattern,calendarType:this._primaryCalendarType}):this._oDateFormat=as.getInstance({style:this._formatPattern,calendarType:this._primaryCalendarType}),this._oDateFormat}get styles(){return{main:{height:""+(this._calendarHeight?this._calendarHeight+"px":"auto"),width:""+(this._calendarWidth?this._calendarWidth+"px":"auto")}}}static async onDefine(){await Promise.all([vn(fe().getLanguage(),fe().getRegion(),fe().getScript()),Js.define(),gl.define(),wl.define(),Tl.define()])}}Ml.define();const Bl=e=>Pi`<div class="ui5-date-picker-root" style="${Hi(e.styles.main)}" @keydown=${e._onkeydown}><!-- INPUT --><ui5-input id="${Cr(e._id)}-inner" class="ui5-date-picker-input" placeholder="${Cr(e._placeholder)}" type="${Cr(e.type)}" value="${Cr(e.value)}" ?disabled="${e.disabled}" ?readonly="${e.readonly}" value-state="${Cr(e.valueState)}" @ui5-change="${Cr(e._handleInputChange)}" @ui5-input="${Cr(e._handleInputLiveChange)}" data-sap-focus-ref ._inputAccInfo ="${Cr(e.accInfo)}">${e.valueStateMessage.length?El():void 0}${e.readonly?void 0:Fl(e)}</ui5-input><slot name="formSupport"></slot></div>`,El=e=>Pi`<slot name="valueStateMessage" slot="valueStateMessage"></slot>`,Fl=e=>Pi`<ui5-icon slot="icon" name="${Cr(e.openIconName)}" tabindex="-1" accessible-name="${Cr(e.openIconTitle)}" show-tooltip @click="${e.togglePicker}" input-icon ?pressed="${e._isPickerOpen}" dir="${Cr(e.effectiveDir)}"></ui5-icon>`,Al=e=>Pi`<ui5-responsive-popover id="${Cr(e._id)}-responsive-popover" allow-target-overlap="${Cr(e._respPopoverConfig.allowTargetOverlap)}" stay-open-on-scroll="${Cr(e._respPopoverConfig.stayOpenOnScroll)}" placement-type="Bottom" horizontal-align="Left" no-arrow with-padding no-stretch ?_hide-header=${Cr(e._shouldHideHeader)} @keydown="${e._onkeydown}" @ui5-after-close="${Cr(e._respPopoverConfig.afterClose)}" @ui5-after-open="${Cr(e._respPopoverConfig.afterOpen)}">${e.showHeader?Nl(e):void 0}<ui5-calendar id="${Cr(e._id)}-calendar" primary-calendar-type="${Cr(e._calendar.primaryCalendarType)}" format-pattern="${Cr(e._calendar.formatPattern)}" timestamp="${Cr(e._calendar.timestamp)}" .selectedDates="${Cr(e._calendar.selectedDates)}" .minDate="${Cr(e._calendar.minDate)}" .maxDate="${Cr(e._calendar.maxDate)}" @ui5-selected-dates-change="${Cr(e._calendar.onSelectedDatesChange)}" ?hide-week-numbers="${e.hideWeekNumbers}"></ui5-calendar>${e.showFooter?Ol():void 0}</ui5-responsive-popover>`,Nl=e=>Pi`<div slot="header" class="ui5-responsive-popover-header"><div class="row"><span>${Cr(e._headerTitleText)}</span><ui5-button class="ui5-responsive-popover-close-btn" icon="decline" design="Transparent" @click="${e.closePicker}"></ui5-button></div></div>`,Ol=e=>Pi``;M("@ui5/webcomponents-theme-base","sap_fiori_3",Nr),M("@ui5/webcomponents","sap_fiori_3",Or);M("@ui5/webcomponents-theme-base","sap_fiori_3",Nr),M("@ui5/webcomponents","sap_fiori_3",Or);const $l={tag:"ui5-date-picker",altTag:"ui5-datepicker",languageAware:!0,managedSlots:!0,properties:{value:{type:String},valueState:{type:Pa,defaultValue:Pa.None},formatPattern:{type:String},minDate:{type:String},maxDate:{type:String},primaryCalendarType:{type:bn},disabled:{type:Boolean},readonly:{type:Boolean},placeholder:{type:String,defaultValue:void 0},name:{type:String},hideWeekNumbers:{type:Boolean},_isPickerOpen:{type:Boolean,noAttribute:!0},_respPopoverConfig:{type:Object},_calendar:{type:Object}},slots:{valueStateMessage:{type:HTMLElement}},events:{change:{},input:{}}};const Ll=e=>{let t,i;return"function"==typeof e.composedPath&&(i=e.composedPath()),Array.isArray(i)&&i.length&&(t=i[0]),t};(class extends Yt{static get metadata(){return $l}static get render(){return Vi}static get template(){return Bl}static get staticAreaTemplate(){return Al}static get styles(){return".ui5-hidden-text{position:absolute;clip:rect(1px,1px,1px,1px);user-select:none;left:0;top:0}[input-icon]{color:var(--sapContent_IconColor);cursor:pointer;outline:none;padding:var(--_ui5_input_icon_padding);border-left:1px solid transparent;min-width:1rem;min-height:1rem}[input-icon][pressed]{background:var(--sapButton_Selected_Background);color:var(--sapButton_Active_TextColor)}[input-icon]:active{background-color:var(--sapButton_Active_Background);color:var(--sapButton_Active_TextColor)}[input-icon]:not([pressed]):not(:active):hover{background:var(--sapButton_Lite_Hover_Background)}[input-icon]:hover{border-left:var(--_ui5_select_hover_icon_left_border)}[input-icon][dir=rtl]:hover{border-left:none;border-right:var(--_ui5_select_hover_icon_left_border)}[input-icon][dir=rtl]{border-left:none;border-right:1px solid transparent}:host(:not([hidden])){display:inline-block}:host .ui5-date-picker-input{width:100%}"}static get staticAreaStyles(){return[ln,"ui5-calendar{width:100%}"]}constructor(){super(),this._respPopoverConfig={allowTargetOverlap:!0,stayOpenOnScroll:!0,afterClose:()=>{this._isPickerOpen=!1,Ta()?this.blur():this._focusInputAfterClose&&(this._getInput().focus(),this._focusInputAfterClose=!1);const e=this.calendar;e&&(e._hideMonthPicker(),e._hideYearPicker())},afterOpen:()=>{const e=this.calendar;if(!e)return;const t=e.shadowRoot.querySelector(`#${e._id}-daypicker`),i=t.shadowRoot.querySelector(".ui5-dp-item--selected"),r=t.shadowRoot.querySelector(".ui5-dp-item--now");let a=i||r;if(i||!this.minDate&&!this.maxDate||this.isInValidRange((new Date).getTime())||(a=this.findFirstFocusableDay(t)),this._focusInputAfterOpen)this._focusInputAfterOpen=!1,this._getInput().focus();else if(a){a.focus();let e=parseInt(a.getAttribute("data-sap-index"));const i=t.focusableDays.find(t=>parseInt(t._index)===e);e=i?t.focusableDays.indexOf(i):e,t._itemNav.current=e,t._itemNav.update()}}},this._calendar={onSelectedDatesChange:this._handleCalendarChange.bind(this),selectedDates:[]},this.i18nBundle=br("@ui5/webcomponents")}findFirstFocusableDay(e){const t=new Date;if(!this.isInValidRange(t.getTime())){return Array.from(e.shadowRoot.querySelectorAll(".ui5-dp-item")).filter(e=>!e.classList.contains("ui5-dp-item--disabled"))[0]}}onBeforeRendering(){this._calendar.primaryCalendarType=this._primaryCalendarType,this._calendar.formatPattern=this._formatPattern,this.minDate&&!this.isValid(this.minDate)&&(this.minDate=null,console.warn('In order for the "minDate" property to have effect, you should enter valid date format')),this.maxDate&&!this.isValid(this.maxDate)&&(this.maxDate=null,console.warn('In order for the "maxDate" property to have effect, you should enter valid date format')),this._checkValueValidity(this.value)?this._changeCalendarSelection():this._calendar.selectedDates=[];const e=c("FormSupport");e?e.syncNativeHiddenInput(this):this.name&&console.warn('In order for the "name" property to have effect, you should also: import "@ui5/webcomponents/dist/features/InputElementsFormSupport.js";'),this.minDate&&(this._calendar.minDate=this.minDate),this.maxDate&&(this._calendar.maxDate=this.maxDate)}_getTimeStampFromString(e){const t=this.getFormat().parse(e);if(t){const e=new Date(t.getFullYear(),t.getMonth(),t.getDate());return hs.fromTimestamp(e.getTime(),this._primaryCalendarType).valueOf()}}_onkeydown(e){cr(e)&&(e.preventDefault(),this.isOpen()&&hr(e)?this.calendar._monthPicker._hidden&&this.calendar._showYearPicker():this._toggleAndFocusInput())}_toggleAndFocusInput(){this.togglePicker(),this._getInput().focus()}_getInput(){return this.shadowRoot.querySelector("ui5-input")}_handleInputChange(){let e=this._getInput().getInputValue();const t=""===e||this._checkValueValidity(e);t?(e=this.normalizeValue(e),this.valueState=Pa.None):this.valueState=Pa.Error,this.value=e,this.fireEvent("change",{value:e,valid:t}),this.fireEvent("value-changed",{value:e,valid:t})}_handleInputLiveChange(){const e=this._getInput().getInputValue(),t=""===e||this._checkValueValidity(e);this.value=e,this.fireEvent("input",{value:e,valid:t})}_checkValueValidity(e){return this.isValid(e)&&this.isInValidRange(this._getTimeStampFromString(e))}_click(e){Ta()&&(this.responsivePopover.open(this),e.preventDefault())}isValid(e=""){return!(!e||!this.getFormat().parse(e))}isInValidRange(e=""){if(""===e)return!0;const t=new Date(e),i=this._minDate&&new Date(this._minDate),r=this._maxDate&&new Date(this._maxDate);if(i&&r){if(i<=t&&r>=t)return!0}else if(i&&!r){if(i<=t)return!0}else if(r&&!i){if(r>=t)return!0}else if(!r&&!i)return!0;return!1}normalizeValue(e){return""===e?e:this.getFormat().format(this.getFormat().parse(e))}get validValue(){return this.isValid(this.value)?this.value:this.getFormat().format(new Date)}get calendar(){return this.responsivePopover.querySelector(`#${this._id}-calendar`)}get _calendarDate(){const e=this.getFormat().parse(this.validValue,!0).getTime();return hs.fromTimestamp(e-e%864e5,this._primaryCalendarType)}get _primaryCalendarType(){return this.primaryCalendarType||kn()||Ln.getInstance(fe()).getPreferredCalendarType()}get _formatPattern(){return this.formatPattern||"medium"}get _isPattern(){return"medium"!==this._formatPattern&&"short"!==this._formatPattern&&"long"!==this._formatPattern}get _displayFormat(){return this.getFormat().oFormatOptions.pattern}get _placeholder(){return void 0!==this.placeholder?this.placeholder:this._displayFormat}get _headerTitleText(){return this.i18nBundle.getText(qr)}get phone(){return Ta()}get showHeader(){return this.phone}get showFooter(){return this.phone}getFormat(){return this._isPattern?this._oDateFormat=as.getInstance({pattern:this._formatPattern,calendarType:this._primaryCalendarType}):this._oDateFormat=as.getInstance({style:this._formatPattern,calendarType:this._primaryCalendarType}),this._oDateFormat}get accInfo(){return{ariaDescribedBy:this._id+"-date",ariaHasPopup:"true",ariaAutoComplete:"none",role:"combobox",ariaOwns:this._id+"-responsive-popover",ariaExpanded:this.isOpen(),ariaDescription:this.dateAriaDescription}}get _maxDate(){return this.maxDate?this._getTimeStampFromString(this.maxDate):this.maxDate}get _minDate(){return this.minDate?this._getTimeStampFromString(this.minDate):this.minDate}get openIconTitle(){return this.i18nBundle.getText(Vr)}get openIconName(){return"appointment-2"}get dateAriaDescription(){return this.i18nBundle.getText(jr)}get _shouldHideHeader(){return!1}async _respPopover(){return(await this.getStaticAreaItemDomRef()).querySelector("ui5-responsive-popover")}_canOpenPicker(){return!this.disabled&&!this.readonly}_handleCalendarChange(e){const t=e.detail.dates&&e.detail.dates[0];if(-1!==this._calendar.selectedDates.indexOf(t))return this.closePicker(),!1;this._handleCalendarSelectedDatesChange(e,t)&&(this.fireEvent("change",{value:this.value,valid:!0}),this.fireEvent("value-changed",{value:this.value,valid:!0})),this.closePicker()}_handleCalendarSelectedDatesChange(e,t){return this._updateValueCalendarSelectedDatesChange(t),this._calendar.timestamp=t,this._calendar.selectedDates=e.detail.dates,this._focusInputAfterClose=!0,this.isInValidRange(this._getTimeStampFromString(this.value))?this.valueState=Pa.None:this.valueState=Pa.Error,!0}_updateValueCalendarSelectedDatesChange(e){this.value=this.getFormat().format(new Date(hs.fromTimestamp(1e3*e,this._primaryCalendarType).valueOf()),!0)}formatValue(e){return this.getFormat().format(e)}closePicker(){this.responsivePopover.close()}async openPicker(e){this._isPickerOpen=!0,this.responsivePopover=await this._respPopover(),this._changeCalendarSelection(),e&&e.focusInput&&(this._focusInputAfterOpen=!0),this.responsivePopover.open(this)}togglePicker(){this.isOpen()?this.closePicker():this._canOpenPicker()&&(this.updateStaticAreaItemContentDensity(),this.openPicker())}_changeCalendarSelection(e){if(this._calendarDate.getYear()<1)return;const t=this._calendarDate,i=e||t.valueOf()/1e3;this._calendar=Object.assign({},this._calendar),this._calendar.timestamp=i,this.value&&(this._calendar.selectedDates=[i])}isOpen(){return!!this._isPickerOpen}getSemanticTargetInfo(e){const t=Ll(e);let i=!1;return t&&t.className.indexOf("ui5-input-inner")>-1&&(i=!0),{isInput:i}}get dateValue(){return this.getFormat().parse(this.value)}get styles(){return{main:{width:"100%"}}}get type(){return Ha.Text}static async onDefine(){await Promise.all([vn(fe().getLanguage(),fe().getRegion(),fe().getScript()),Lr.define(),Ys.define(),Ml.define(),cn.define(),Te("@ui5/webcomponents")])}}).define();const Rl=9,zl=37,Hl=38,Ul=39,jl=40,Vl=115,Wl=e=>(e.key?"Tab"===e.key:e.keyCode===Rl)&&!Jl(e),Yl=e=>(e.key?"Tab"===e.key:e.keyCode===Rl)&&Ql(e,!1,!1,!0),ql=e=>"F4"===e.key&&!Jl(e),Gl=e=>("ArrowDown"===e.key||"Down"===e.key||"ArrowUp"===e.key||"Up"===e.key)&&Ql(e,!1,!0,!1),Jl=e=>e.shiftKey||e.altKey||Xl(e),Xl=e=>!(!e.metaKey&&!e.ctrlKey),Ql=(e,t,i,r)=>e.shiftKey===r&&e.altKey===i&&Xl(e)===t;Er("time-entry-request",{pathData:"M416 272q0 16-16 16H224V144q0-16 16-16t16 16v112h144q16 0 16 16zM256 0q53 0 99.5 20T437 75t55 81.5 20 99.5q0 49-17.5 92.5T447 426t-71 56-88 28v-32q40-6 75.5-25.5t61-49T465 336t15-80q0-46-17.5-87t-48-71.5-71.5-48T256 32q-38 0-72.5 12T121 77.5t-49 51T41 192H8q11-41 34.5-76.5t56-61 72.5-40T256 0zM144 480q16 0 16 16 0 6-4.5 11t-11.5 5H16q-6 0-11-5t-5-11q0-7 5-11.5t11-4.5h128zm0-64q16 0 16 16 0 6-4.5 11t-11.5 5H16q-6 0-11-5t-5-11q0-7 5-11.5t11-4.5h128zm0-64q16 0 16 16 0 6-4.5 11t-11.5 5H16q-6 0-11-5t-5-11q0-7 5-11.5t11-4.5h128z",ltr:!1});const Zl=e=>Pi`<div id="${Cr(e._id)}" class="ui5-time-picker-root" @keydown="${e._ontimepickerkeydown}"><ui5-input id="${Cr(e._id)}-inner" value="${Cr(e.value)}" placeholder="${Cr(e._placeholder)}" ?disabled="${e.disabled}" ?readonly="${e.readonly}" value-state="${Cr(e.valueState)}" @click="${e._handleInputClick}" @ui5-change="${Cr(e._handleInputChange)}" @ui5-input="${Cr(e._handleInputLiveChange)}" class="ui5-time-picker-input">${e.valueStateMessage.length?Kl():void 0}${e.readonly?void 0:eu(e)}</ui5-input></div>`,Kl=e=>Pi`<slot name="valueStateMessage" slot="valueStateMessage"></slot>`,eu=e=>Pi`<ui5-icon slot="icon" name="time-entry-request" tabindex="-1" show-tooltip @click="${e.togglePicker}" input-icon ?pressed="${e._isPickerOpen}" class="ui5-time-picker-input-icon-button"></ui5-icon>`,tu=e=>Pi`<ui5-responsive-popover id="${Cr(e._id)}-responsive-popover" allow-target-overlap="${Cr(e._respPopover.allowTargetOverlap)}" placement-type="${Cr(e._respPopover.placementType)}" _hide-header no-arrow no-stretch horizontal-align="${Cr(e._respPopover.horizontalAlign)}" stay-open-on-scroll="${Cr(e._respPopover.stayOpenOnScroll)}" @ui5-after-close="${Cr(e._respPopover.afterClose)}" @ui5-after-open="${Cr(e._respPopover.afterOpen)}" class="ui5-time-picker-popover" @keydown="${e._ontimepickerpopoverkeydown}" @wheel="${e._handleWheel}"><div class="${Ri(e.classes.container)}" @keydown=${e._oncontainerkeydown} tabindex="0" @focusin="${e._onfocuscontainerin}">${e.shouldBuildHoursSlider?iu(e):void 0}${e.shouldBuildMinutesSlider?ru(e):void 0}${e.shouldBuildSecondsSlider?au(e):void 0}${e.shouldBuildPeriodsSlider?ou(e):void 0}</div><div slot="footer" class="ui5-time-picker-footer" @keydown=${e._onfooterkeydown}><ui5-button id="submit" design="Emphasized" @click="${e.submitPickers}">${Cr(e.submitButtonLabel)}</ui5-button><ui5-button id="close" design="Transparent" @click="${e.closePicker}">${Cr(e.cancelButtonLabel)}</ui5-button></div></ui5-responsive-popover>`,iu=e=>Pi`<ui5-wheelslider label = "${Cr(e.hoursSliderTitle)}" ._items="${Cr(e.hoursArray)}" @click="${e.handleSliderClicked}" class="ui5-time-picker-wheelslider ui5-time-picker-hours-wheelslider" cyclic></ui5-wheelslider>`,ru=e=>Pi`<ui5-wheelslider label = "${Cr(e.minutesSliderTitle)}" ._items="${Cr(e.minutesArray)}" @click="${e.handleSliderClicked}" class="ui5-time-picker-wheelslider ui5-time-picker-minutes-wheelslider" cyclic></ui5-wheelslider>`,au=e=>Pi`<ui5-wheelslider label = "${Cr(e.secondsSliderTitle)}" ._items="${Cr(e.secondsArray)}" @click="${e.handleSliderClicked}" class="ui5-time-picker-wheelslider ui5-time-picker-seconds-wheelslider" cyclic></ui5-wheelslider>`,ou=e=>Pi`<ui5-wheelslider label = "${Cr(e.periodSliderTitle)}" value="AM" ._items="${Cr(e.periodsArray)}" @click="${e.handleSliderClicked}" class="ui5-time-picker-wheelslider ui5-time-picker-period-wheelslider"></ui5-wheelslider>`;Er("navigation-up-arrow",{pathData:"M86.5 380q-9 9-22.5 9t-22.5-9q-10-10-10-23t10-23l192-196 1-1q4-2 5-3 2-1 2.5-1.5t2.5-1.5q6-2 11-2 2 0 3 .5t2 .5q4 0 6 1t3.5 2 3.5 2q1 1 1.5 1t1.5 1 2 1l192 196q10 10 10 23t-10 23q-9 9-22.5 9t-22.5-9l-154-155q-16-10-32 0z",ltr:!1});Er("navigation-down-arrow",{pathData:"M425.5 137q9-9 22.5-9t22.5 9q10 10 10 23t-10 23l-192 196-1 1q-4 2-5 3-2 1-2.5 1.5t-2.5 1.5q-6 2-11 2-2 0-3-.5t-2-.5q-4 0-6-1t-3.5-2-3.5-2q-1-1-1.5-1t-1.5-1-2-1l-192-196q-10-10-10-23t10-23q9-9 22.5-9t22.5 9l154 155q16 10 32 0z",ltr:!1});const nu=new WeakMap;class su{static get tasks(){return nu}static enqueue(e,t){nu.has(e)||nu.set(e,[]),nu.get(e).push(t)}static run(e,t){return nu.has(e)||nu.set(e,[]),t().then(()=>{const t=nu.get(e);if(t.length>0)return su.run(e,t.shift());nu.delete(e)})}static push(e,t){nu.get(e)?su.enqueue(e,t):su.run(e,t)}}var lu={defaultDuration:400,element:document.createElement("DIV"),identity:()=>{}},uu=({element:e=lu.element,duration:t=lu.duration,progress:i=lu.identity,dx:r=0,dy:a=0})=>{let o,n;return(({beforeStart:e=lu.identity,duration:t=lu.defaultDuration,element:i=lu.element,progress:r=lu.identity})=>{let a,o,n,s=null,l=!1;const u=new Promise((e,i)=>{n=i=>{s=s||i;const o=i-s;if(o<=t){r(1-(t-o)/t),a=!l&&requestAnimationFrame(n)}else r(1),e()},o=()=>{l=!0,cancelAnimationFrame(a),i(new Error("animation stopped"))}}).catch(e=>e);return su.push(i,()=>(e(),requestAnimationFrame(n),new Promise(e=>{u.then(()=>e())}))),{promise:()=>u,stop:()=>o}})({beforeStart:()=>{o=e.scrollLeft,n=e.scrollTop},duration:t,element:e,progress:t=>{i(t),e.scrollLeft=o+t*r,e.scrollTop=n+t*a}})};const du=Ta()?"touchend":"mouseup";class cu extends X{constructor(e){super(),this.containerComponent=e,this.mouseMove=this.ontouchmove.bind(this),this.mouseUp=this.ontouchend.bind(this),this.touchStart=this.ontouchstart.bind(this),this.isPhone=Ta(),this.cachedValue={},this.startX=0,this.startY=0,this.isPhone?(e.addEventListener("touchstart",this.touchStart,{passive:!0}),e.addEventListener("touchmove",this.mouseMove,{passive:!0}),e.addEventListener("touchend",this.mouseUp,{passive:!0})):e.addEventListener("mousedown",this.touchStart,{passive:!0})}set scrollContainer(e){this._container=e}get scrollContainer(){return this._container}scrollTo(e,t){this._container.scrollLeft=e,this._container.scrollTop=t}move(e,t){return uu({element:this._container,dx:e,dy:t})}getScrollLeft(){return this._container.scrollLeft}getScrollTop(){return this._container.scrollTop}_isTouchInside(e){const t=this._container.getBoundingClientRect(),i=this.isPhone?e.clientX:e.x,r=this.isPhone?e.clientY:e.y;return i>=t.left&&i<=t.right&&r>=t.top&&r<=t.bottom}ontouchstart(e){const t=this.isPhone?e.touches[0]:null;this.isPhone?(this.startX=t.pageX,this.startY=t.pageY):(document.addEventListener("mouseup",this.mouseUp,{passive:!0}),document.addEventListener("mousemove",this.mouseMove,{passive:!0})),this._prevDragX=this.isPhone?t.pageX:e.x,this._prevDragY=this.isPhone?t.pageY:e.y,this._canScroll=this._isTouchInside(this.isPhone?t:e)}ontouchmove(e){if(!this._canScroll)return;const t=this._container,i=this.isPhone?e.touches[0]:null,r=this.isPhone?i.pageX:e.x,a=this.isPhone?i.pageY:e.y;t.scrollLeft+=this._prevDragX-r,t.scrollTop+=this._prevDragY-a,this.fireEvent("scroll",{isLeft:r>this._prevDragX,isRight:r<this._prevDragX}),this.cachedValue.dragX=this._prevDragX,this.cachedValue.dragY=this._prevDragY,this._prevDragX=r,this._prevDragY=a}ontouchend(e){if(this.isPhone){const t=Math.abs(e.changedTouches[0].pageX-this.startX),i=Math.abs(e.changedTouches[0].pageY-this.startY);if(t<10&&i<10)return}if(!this._canScroll)return;const t=this._container,i=this.isPhone?e.changedTouches[0].pageX:e.x,r=this.isPhone?e.changedTouches[0].pageY:e.y;t.scrollLeft+=this._prevDragX-i,t.scrollTop+=this._prevDragY-r;const a=i===this._prevDragX?this.cachedValue.dragX:i;this.fireEvent(du,{isLeft:a<this._prevDragX,isRight:a>this._prevDragX}),this._prevDragX=i,this._prevDragY=r,this.isPhone||(document.removeEventListener("mousemove",this.mouseMove,{passive:!0}),document.removeEventListener("mouseup",this.mouseUp))}}const hu=e=>Pi`<div id="${Cr(e._id)}" ?disabled= "${Cr(e.disabled)}" value = "${Cr(e.value)}" label = "${Cr(e.label)}" ?expanded= "${Cr(e._expanded)}" @click = ${Cr(e._onclick)} @keydown=${e._onkeydown} class = "${Ri(e.classes.root)}" data-sap-focus-ref @focusin="${e._onfocusin}" @focusout="${e._onfocusout}" tabindex="0" @wheel="${e._handleWheel}"><div class="ui5-wheelslider-header-block"><div id="${Cr(e._id)}--label" class="ui5-wheelslider-label">${Cr(e.label)}</div><div class="ui5-wheelslider-invisible-text"></div><ui5-button class="ui5-wheelslider-arrow" icon="navigation-up-arrow" @click=${e._onArrowUp} tabindex="-1"></ui5-button></div><div id="${Cr(e._id)}--inner" class="ui5-wheelslider-inner"><div id="${Cr(e._id)}--selection-frame" class="ui5-wheelslider-selection-frame"></div><div id="${Cr(e._id)}--wrapper" class="ui5-wheelslider-wrapper">${e._expanded?pu(e):mu(e)}</div></div><div class="ui5-wheelslider-footer-block"><ui5-button class="ui5-wheelslider-arrow" icon="navigation-down-arrow" @click=${e._onArrowDown} tabindex="-1"></ui5-button></div></div>`,pu=e=>Pi`<ul id="${Cr(e._id)}--items-list">${$i(e._itemsToShow,(e,t)=>e._id||t,(e,t)=>_u(e,t))}</ul>`,_u=(e,t,i)=>Pi`<li class="ui5-wheelslider-item" data-item-index="${t}" style="list-style-type: none;">${Cr(e)}</li>`,mu=e=>Pi`<ul id="${Cr(e._id)}--items-list"><li class="ui5-wheelslider-item" style="list-style-type: none;">${Cr(e.value)}</li></ul>`;M("@ui5/webcomponents-theme-base","sap_fiori_3",Nr),M("@ui5/webcomponents","sap_fiori_3",Or);const gu={tag:"ui5-wheelslider",properties:{disabled:{type:Boolean},value:{type:String,defaultValue:"0"},label:{type:String,defaultValue:""},_expanded:{type:Boolean},_items:{type:String,multiple:!0},_itemsToShow:{type:String,multiple:!0},cyclic:{type:Boolean}},slots:{},events:{expand:{},collapse:{},select:{value:{type:String}}}};class fu extends Yt{static get metadata(){return gu}static get render(){return Vi}static get styles(){return".ui5-wheelslider-root{overflow:hidden;height:100%;vertical-align:middle;text-align:center;box-sizing:border-box;font-family:var(--sapFontFamily);justify-content:space-between;flex-direction:column;display:inline-flex;width:var(--_ui5_wheelslider_item_width)}.ui5-wheelslider-root .ui5-wheelslider-label{box-sizing:border-box;height:2rem;line-height:2rem;width:var(--_ui5_wheelslider_item_width);font-size:var(--sapFontSmallSize);color:var(--_ui5_wheelslider_label_text_color);text-align:center;vertical-align:middle;visibility:hidden}.ui5-wheelslider-root .ui5-wheelslider-arrow{visibility:hidden;box-sizing:border-box;height:1.5rem;user-select:none;outline:none}.ui5-wheelslider-root[expanded] .ui5-wheelslider-arrow{visibility:var(--_ui5_wheelslider_arrows_visibility);box-sizing:border-box;border-color:transparent;cursor:pointer}.ui5-wheelslider-root[expanded] .ui5-wheelslider-arrow:hover{visibility:var(--_ui5_wheelslider_arrows_visibility);box-sizing:border-box;border-color:inherit;cursor:pointer}.ui5-wheelslider-root .ui5-wheelslider-inner{position:relative;overflow:hidden;height:100%;box-sizing:border-box;user-select:none;list-style:none;margin-top:0}.ui5-wheelslider-root[expanded] .ui5-wheelslider-inner{margin-top:0}.ui5-wheelslider-root .ui5-wheelslider-inner .ui5-wheelslider-item{height:var(--_ui5_wheelslider_item_height);line-height:var(--_ui5_wheelslider_item_height);width:var(--_ui5_wheelslider_item_width);box-sizing:border-box;background:var(--_ui5_wheelslider_selected_item_background_color);border:.625px solid var(--_ui5_wheelslider_item_border_color);font-size:var(--_ui5_wheelslider_item_text_size);color:var(--_ui5_wheelslider_collapsed_item_text_color);text-align:center;border-radius:var(--_ui_wheelslider_item_border_radius);cursor:pointer}.ui5-wheelslider-root .ui5-wheelslider-inner .ui5-wheelslider-item:hover{background:var(--_ui_wheelslider_item_hover_color);border-color:var(--_ui5_wheelslider_item_hovered_border_color)}.ui5-wheelslider-root .ui5-wheelslider-inner .ui5-wheelslider-item:focus{outline:1px dotted #000;outline-offset:-3px}.ui5-wheelslider-root .ui5-wheelslider-inner .ui5-wheelslider-selection-frame{width:var(--_ui5_wheelslider_item_width);height:var(--_ui5_wheelslider_item_height);position:absolute;box-sizing:border-box;visibility:hidden;z-index:1}.ui5-wheelslider-root .ui5-wheelslider-inner .ui5-wheelslider-wrapper>ul{transition:all .4s;margin:0;padding:0;position:absolute;top:var(--_ui5_wheelslider_selection_frame_margin_top);height:3000px;cursor:pointer;list-style-type:none}.ui5-wheelslider-root.ui5-phone .ui5-wheelslider-inner .ui5-wheelslider-wrapper>ul{top:var(--_ui5_wheelslider_mobile_selection_frame_margin_top)}.ui5-wheelslider-root[expanded] .ui5-wheelslider-inner .ui5-wheelslider-wrapper>ul{list-style-type:none;top:0;padding-top:calc(var(--_ui5_wheelslider_item_height)*2)}.ui5-wheelslider-root.ui5-phone[expanded] .ui5-wheelslider-inner .ui5-wheelslider-wrapper>ul{list-style-type:none;top:0;padding-top:calc(var(--_ui5_wheelslider_item_height)*4)}.ui5-wheelslider-root .ui5-wheelslider-inner .ui5-wheelslider-wrapper{height:var(--_ui5_wheelslider_height);position:relative;overflow:hidden;outline:none}.ui5-wheelslider-root.ui5-phone .ui5-wheelslider-inner .ui5-wheelslider-wrapper{height:var(--_ui5_wheelslider_mobile_height)}.ui5-wheelslider-root[expanded]{height:100%;cursor:default;margin:0;justify-content:space-between;flex-direction:column;display:inline-flex}.ui5-wheelslider-root[expanded] .ui5-wheelslider-label{display:block;visibility:visible}.ui5-wheelslider-root .ui5-wheelslider-inner{max-height:100%;height:var(--_ui5_wheelslider_height)}.ui5-wheelslider-root.ui5-phone .ui5-wheelslider-inner{height:var(--_ui5_wheelslider_mobile_height)}.ui5-wheelslider-root[expanded] .ui5-wheelslider-inner .ui5-wheelslider-item{background:var(--_ui5_wheelslider_item_background_color);color:var(--_ui5_wheelslider_item_text_color);border:1px solid var(--_ui5_wheelslider_item_border_color);border-radius:var(--_ui_wheelslider_item_border_radius);offset-position:auto;cursor:auto}.ui5-wheelslider-root[expanded] .ui5-wheelslider-inner .ui5-wheelslider-item:hover{background:var(--sapList_Hover_Background);border-color:var(--_ui5_wheelslider_item_hovered_border_color)}.ui5-wheelslider-root[expanded] .ui5-wheelslider-inner .ui5-wheelslider-item:active{background:var(--_ui5_wheelslider_active_item_background_color);color:var(--_ui5_wheelslider_active_item_text_color)}.ui5-wheelslider-root[expanded] .ui5-wheelslider-inner .ui5-wheelslider-item:focus{outline:1px dotted #000;outline-offset:-3px}.ui5-wheelslider-root[expanded] .ui5-wheelslider-inner .ui5-wheelslider-selection-frame{visibility:visible;-webkit-box-shadow:inset 0 0 0 2px var(--_ui5_wheelslider_selection_frame_color);-moz-box-shadow:inset 0 0 0 2px var(--_ui5_wheelslider_selection_frame_color);box-shadow:inset 0 0 0 2px var(--_ui5_wheelslider_selection_frame_color);border-radius:var(--_ui_wheelslider_item_border_radius);margin-top:var(--_ui5_wheelslider_selection_frame_margin_top)}.ui5-wheelslider-root.ui5-phone[expanded] .ui5-wheelslider-inner .ui5-wheelslider-selection-frame{margin-top:var(--_ui5_wheelslider_mobile_selection_frame_margin_top)}.ui5-wheelslider-root[expanded] .ui5-wheelslider-inner .ui5-wheelslider-selection-frame:hover+ul>li.ui5-wheelslider-item.ui5-wheelslider-itemSelected{background:var(--_ui_wheelslider_item_hover_color)}.ui5-wheelslider-root[expanded] .ui5-wheelslider-inner .ui5-wheelslider-selection-frame:active+ul>li.ui5-wheelslider-item.ui5-wheelslider-itemSelected{background:var(--_ui5_wheelslider_selected_item_background_color);color:#d3d3d3}.ui5-wheelslider-root:focus{outline:none}"}static get template(){return hu}constructor(){super(),this._currentElementIndex=0,this._itemCellHeight=0,this._itemsToShow=[],this._scroller=new cu(this),this._scroller.attachEvent("scroll",this._updateScrolling.bind(this)),this._scroller.attachEvent("mouseup",this._handleScrollTouchEnd.bind(this)),this._scroller.attachEvent("touchend",this._handleScrollTouchEnd.bind(this))}onBeforeRendering(){if(!this._expanded&&this.cyclic){const e=this._currentElementIndex%this._items.length;this._currentElementIndex=this._timesMultipliedOnCyclic()/2*this._items.length+e}this.value||(this.value=this._items[0]),this._buildItemsToShow(),this._updateItemCellHeight()}static async onDefine(){await pa.define()}onAfterRendering(){if(this._scroller.scrollContainer||(this._scroller.scrollContainer=this.shadowRoot.querySelector(`#${this._id}--wrapper`)),this._expanded||this._scroller.scrollTo(0,0),this._expanded){const e=this.shadowRoot.querySelectorAll(".ui5-wheelslider-item");for(let t=0;t<e.length;t++)if(e[t].textContent===this.value)return this._selectElementByIndex(Number(e[t].dataset.itemIndex)+this._getCurrentRepetition()*this._items.length),!0;this._selectElement(e[0])}}get classes(){return{root:{"ui5-wheelslider-root":!0,"ui5-phone":Ta()}}}expandSlider(){this._expanded=!0,this.fireEvent("expand",{})}collapseSlider(){this._expanded=!1,this.fireEvent("collapse",{})}_updateItemCellHeight(){if(this.shadowRoot.querySelectorAll(".ui5-wheelslider-item").length){const e=getComputedStyle(this.shadowRoot.querySelector(".ui5-wheelslider-item")).getPropertyValue("--_ui5_wheelslider_item_height").replace("rem","");this._itemCellHeight=Number(e)}}_updateScrolling(){const e=16*this._itemCellHeight,t=this._scroller.scrollContainer.scrollTop;let i;if(t&&(i=Math.round(t/e),this.value!==this._itemsToShow[i])){if(this.cyclic){const e=this._handleArrayBorderReached(i);i!==e&&(i=e)}this.value=this._itemsToShow[i],this._currentElementIndex=i}}_handleScrollTouchEnd(){this._expanded&&this._selectElementByIndex(this._currentElementIndex)}_selectElement(e){e&&this._items.indexOf(e.textContent)>-1&&(this._currentElementIndex=Number(e.dataset.itemIndex),this._selectElementByIndex(this._currentElementIndex))}_getCurrentRepetition(){return this._currentElementIndex?Math.floor(this._currentElementIndex/this._items.length):0}_selectElementByIndex(e){let t=e;const i=this._itemsToShow.length,r=this.isCompact?32*t:46*t;this.cyclic&&(t=this._handleArrayBorderReached(t)),t<i&&t>-1&&(this._scroller.scrollTo(0,r),this._currentElementIndex=t,this.value=this._items[t-this._getCurrentRepetition()*this._items.length],this.fireEvent("select",{value:this.value}))}_timesMultipliedOnCyclic(){const e=Math.round(70/this._items.length);return Math.max(3,e)}_buildItemsToShow(){if(this._itemsToShow=this._items,this.cyclic&&this._itemsToShow.length<this._items.length*this._timesMultipliedOnCyclic())for(let e=0;e<this._timesMultipliedOnCyclic();e++)this._itemsToShow=this._itemsToShow.concat(this._items)}_handleArrayBorderReached(e){const t=this._itemsToShow.length;let i=e;return 7>i?i+=2*this._items.length:i>t-7&&(i-=2*this._items.length),i}_handleWheel(e){e&&(e.stopPropagation(),e.preventDefault(),e.timeStamp!==this._prevWheelTimestamp&&this._expanded&&(e.deltaY>0?this._itemUp():e.deltaY<0&&this._itemDown(),this._prevWheelTimestamp=e.timeStamp))}_onclick(e){e.target.classList.contains("ui5-wheelslider-item")&&(this._expanded?(this.value=e.target.textContent,this._selectElement(e.target),this.fireEvent("select",{value:this.value})):this._expanded=!0)}_onArrowDown(e){e.preventDefault(),this._itemDown()}_onArrowUp(e){e.preventDefault(),this._itemUp()}_itemDown(){const e=this._currentElementIndex+1;this._selectElementByIndex(e)}_itemUp(){const e=this._currentElementIndex-1;this._selectElementByIndex(e)}_onkeydown(e){var t;this._expanded&&(((t=e).key?"ArrowUp"!==t.key&&"Up"!==t.key:t.keyCode!==Hl)||Jl(t)||this._onArrowUp(e),(e=>(e.key?"ArrowDown"===e.key||"Down"===e.key:e.keyCode===jl)&&!Jl(e))(e)&&this._onArrowDown(e))}_onfocusin(e){e.preventDefault(),this.expandSlider()}_onfocusout(e){e.preventDefault(),this.collapseSlider()}}fu.define();const vu=e=>{const t=[];for(let i=0;i<e;i++){let e=i.toString();1===e.length&&(e="0"+e),t.push(e)}return t};M("@ui5/webcomponents-theme-base","sap_fiori_3",Nr),M("@ui5/webcomponents","sap_fiori_3",Or);M("@ui5/webcomponents-theme-base","sap_fiori_3",Nr),M("@ui5/webcomponents","sap_fiori_3",Or);const yu={tag:"ui5-time-picker",altTag:"ui5-timepicker",languageAware:!0,managedSlots:!0,properties:{value:{type:String,defaultValue:void 0},placeholder:{type:String,defaultValue:void 0},formatPattern:{type:String},valueState:{type:Pa,defaultValue:Pa.None},disabled:{type:Boolean},readonly:{type:Boolean},_isPickerOpen:{type:Boolean,noAttribute:!0},_respPopover:{type:Object},_hours:{type:String},_minutes:{type:String},_seconds:{type:String}},slots:{valueStateMessage:{type:HTMLElement}},events:{change:{},input:{}}};(class extends Yt{static get metadata(){return yu}static get render(){return Vi}static get styles(){return":host(:not([hidden])){display:inline-block}:host .ui5-time-picker-input{width:100%}.ui5-time-picker-input-icon-button{border-left:.0625rem solid transparent}.ui5-time-picker-input-icon-button:hover{cursor:pointer;border-left:var(--_ui5_time_picker_border);background:var(--sapButton_Hover_Background)}.ui5-time-picker-input-icon-button:active{background-color:var(--sapButton_Active_Background);color:var(--sapButton_Active_TextColor)}.ui5-time-picker-input-icon-button[pressed]{background-color:var(--sapButton_Active_Background);color:var(--sapButton_Active_TextColor)}"}static get staticAreaTemplate(){return tu}static get template(){return Zl}static async onDefine(){await Promise.all([vn(fe().getLanguage(),fe().getRegion(),fe().getScript()),Ys.define(),Te("@ui5/webcomponents"),fu.define(),cn.define()])}static get staticAreaStyles(){return[ln,".ui5-time-picker-sliders-container{display:flex;justify-content:center;align-items:stretch;direction:ltr;padding:.5rem;min-width:18rem;box-sizing:border-box}.ui5-time-picker-sliders-container.ui5-phone{height:90vh}.ui5-time-picker-footer{height:fit-content;display:flex;justify-content:flex-end;width:100%}.ui5-time-picker-wheelslider{padding-left:.25rem;padding-right:.25rem}.ui5-time-picker-footer>ui5-button{margin:1%;min-width:20%}"]}constructor(){super(),this.prevValue=null,this._isPickerOpen=!1,this.i18nBundle=br("@ui5/webcomponents"),this._respPopover={placementType:_o.Bottom,horizontalAlign:vo.Left,allowTargetOverlap:!0,stayOpenOnScroll:!0,afterClose:()=>{this._isPickerOpen=!1,this.closePicker()}},this._hoursParameters={minHour:0,maxHour:0,isTwelveHoursFormat:!1},this._slidersDomRefs=[]}onBeforeRendering(){this.formatPattern||(this.formatPattern=Ln.getInstance(fe()).getTimePattern(this.getFormat().oFormatOptions.style)),void 0===this.value&&(this.value=this.getFormat().format(new Date)),this._initHoursFormatParameters()}async _handleInputClick(){if(this._isPickerOpen)return;const e=await this._getInputField();e&&e.select()}_handleInputChange(){const e=this._getInput().getInputValue(),t=this.isValid(e);this.setValue(e),this.fireEvent("change",{value:e,valid:t}),this.fireEvent("value-changed",{value:e,valid:t})}_handleInputLiveChange(){const e=this._getInput().getInputValue(),t=this.isValid(e);this.value=e,this.setSlidersValue(),this.fireEvent("input",{value:e,valid:t})}setSlidersValue(){const e=this._getInput()?this.getFormat().parse(this._getInput().getAttribute("value")):null,t=this.secondsSlider,i=this.minutesSlider,r=this.hoursSlider,a=this.periodsSlider;if(e){if(r){let t="";t=this._hoursParameters.isTwelveHoursFormat&&e.getHours()>this._hoursParameters.maxHour?e.getHours()-12:this._hoursParameters.isTwelveHoursFormat&&e.getHours()<this._hoursParameters.minHour?e.getHours()+12:e.getHours(),1===t.toString().length?r.value="0"+t:r.value=t.toString()}if(i){const t=e.getMinutes();1===t.toString().length?i.value="0"+t:i.value=t.toString()}if(t){const i=e.getSeconds();1===i.toString().length?t.value="0"+i:t.value=i.toString()}this._hoursParameters.isTwelveHoursFormat&&a&&1===this._hoursParameters.minHour?a.value=e.getHours()>=this._hoursParameters.maxHour?this.periodsArray[1]:this.periodsArray[0]:this._hoursParameters.isTwelveHoursFormat&&a&&(a.value=e.getHours()>this._hoursParameters.maxHour||e.getHours()===this._hoursParameters.minHour?this.periodsArray[1]:this.periodsArray[0])}}async closePicker(){await this._getPopover(),this.responsivePopover.close(),this._isPickerOpen=!1;for(let e=0;e<this._slidersDomRefs.length;e++)this._slidersDomRefs[e].collapseSlider()}async openPicker(){await this._getPopover(),this.responsivePopover.open(this),this._isPickerOpen=!0,this._slidersDomRefs=await this.slidersDomRefs(),this.setSlidersValue(),this._slidersDomRefs[0]&&this._slidersDomRefs[0].focus()}togglePicker(){this.isOpen()?(this.closePicker(),this._isPickerOpen=!1):this._canOpenPicker()&&(this.openPicker(),this._isPickerOpen=!0)}isOpen(){return!!this._isPickerOpen}_canOpenPicker(){return!this.disabled&&!this.readonly}async _getPopover(){const e=await this.getStaticAreaItemDomRef();return this.responsivePopover=e.querySelector("ui5-responsive-popover"),this.responsivePopover}get secondsArray(){return vu(60)}get minutesArray(){return vu(60)}get hoursArray(){return(e=>{let t=[];if(t=e.isTwelveHoursFormat?vu(12):vu(24),1===e.minHour)for(let e=0;e<t.length;e++){const i=1*t[e]+1;1===i.toString().length?t[e]="0"+i.toString():t[e]=i.toString()}return t})(this._hoursParameters)}get periodsArray(){return this.getFormat().aDayPeriods.map(e=>e.toUpperCase())}async slidersDomRefs(){return await this._getPopover(),this.responsivePopover.default.length?[...this.responsivePopover.default[0].children].filter(e=>e.isUI5Element):this.responsivePopover.default}_getInput(){return this.shadowRoot.querySelector("ui5-input")}_getInputField(){const e=this._getInput();return e&&e.getInputDOMRef()}get secondsSlider(){return this.responsivePopover&&this.responsivePopover.querySelector(".ui5-time-picker-seconds-wheelslider")}get minutesSlider(){return this.responsivePopover&&this.responsivePopover.querySelector(".ui5-time-picker-minutes-wheelslider")}get hoursSlider(){return this.responsivePopover&&this.responsivePopover.querySelector(".ui5-time-picker-hours-wheelslider")}get periodsSlider(){return this.responsivePopover&&this.responsivePopover.querySelector(".ui5-time-picker-period-wheelslider")}submitPickers(){const e=new Date,t=this.secondsSlider,i=this.minutesSlider,r=this.hoursSlider,a=this.periodsSlider,o=i?i.getAttribute("value"):"0",n=t?t.getAttribute("value"):"0",s=a?a.getAttribute("value"):this.periodsArray[0],l=this._hoursParameters.isTwelveHoursFormat;let u=r?r.getAttribute("value"):this._hoursParameters.minHour.toString();l&&(s===this.periodsArray[0]&&(u="12"===u?0:u),s===this.periodsArray[1]&&(u="12"===u?u:1*u+12)),e.setHours(u),e.setMinutes(o),e.setSeconds(n),this.setPrevValue(this.value),this.setValue(this.getFormat().format(e)),this.prevValue!==this.value&&(this.fireEvent("change",{value:this.value,valid:!0}),this.previousValue=this.value),this.closePicker()}isValid(e){return""===e||!(!e||!this.getFormat().parse(e))}normalizeValue(e){return""===e?e:this.getFormat().format(this.getFormat().parse(e))}get _formatPattern(){return this.formatPattern||"medium"}get _isPattern(){return"medium"!==this._formatPattern&&"short"!==this._formatPattern&&"long"!==this._formatPattern}get _displayFormat(){return this.getFormat().oFormatOptions.pattern}get _placeholder(){return void 0!==this.placeholder?this.placeholder:this._displayFormat}handleSliderClicked(e){e.target._expanded&&this.openSlider(e.target.label)}openSlider(e){for(let t=0;t<this._slidersDomRefs.length;t++)this._slidersDomRefs[t].label!==e&&this._slidersDomRefs[t].collapseSlider()}async _onfocuscontainerin(e){if(e.target!==e.currentTarget)return;let t=[];t=this._slidersDomRefs.length?await this.slidersDomRefs():this._slidersDomRefs,t[0]&&t[0].focus()}async _oncontainerkeydown(e){if(((t=e).key?"ArrowLeft"!==t.key&&"Left"!==t.key:t.keyCode!==zl)||Jl(t)){if((e=>(e.key?"ArrowRight"===e.key||"Right"===e.key:e.keyCode===Ul)&&!Jl(e))(e)){let e=0;for(let t=0;t<this._slidersDomRefs.length;t++)this._slidersDomRefs[t]._expanded&&(e=t);this._slidersDomRefs[e+1]?this._slidersDomRefs[e+1].focus():this._slidersDomRefs[0].focus()}}else{let e=0;for(let t=0;t<this._slidersDomRefs.length;t++)this._slidersDomRefs[t]._expanded&&(e=t);this._slidersDomRefs[e-1]?this._slidersDomRefs[e-1].focus():this._slidersDomRefs[this._slidersDomRefs.length-1].focus()}var t;if(Wl(e)&&e.target===this._slidersDomRefs[this._slidersDomRefs.length-1]){const t=await this._getPopover();e.preventDefault(),t.querySelector(".ui5-time-picker-footer").firstElementChild.focus()}else if(Yl(e)&&e.target===this._slidersDomRefs[0]){const t=await this._getPopover();e.preventDefault(),t.querySelector(".ui5-time-picker-footer").lastElementChild.focus()}}_onfooterkeydown(e){Wl(e)&&e.target===e.target.parentElement.lastElementChild&&(e.preventDefault(),this._slidersDomRefs[0].focus()),Yl(e)&&e.target===e.target.parentElement.firstElementChild&&(e.preventDefault(),this._slidersDomRefs[this._slidersDomRefs.length-1].focus())}_ontimepickerkeydown(e){this._handleTimepickerKeysDown(e)}_ontimepickerpopoverkeydown(e){this._handleTimepickerKeysDown(e)}_handleTimepickerKeysDown(e){var t;((t=e).key?ql(t)||Gl(t):t.keyCode===Vl&&!Jl(t)||t.keyCode===jl&&Ql(t,!1,!0,!1))&&(e.preventDefault(),this.togglePicker())}_handleWheel(e){e.preventDefault()}getFormat(){return this._isPattern?this._oDateFormat=as.getInstance({pattern:this._formatPattern}):this._oDateFormat=as.getInstance({style:this._formatPattern}),this._oDateFormat}setValue(e){this.isValid(e)?(this.value=this.normalizeValue(e),this.setSlidersValue(),this.valueState=Pa.None):this.valueState=Pa.Error}setPrevValue(e){this.isValid(e)&&(this.prevValue=this.normalizeValue(e))}formatValue(e){return this.getFormat().format(e)}_getSlidersContained(){return((e,t)=>{const i=[!1,!1,!1,!1];for(let r=0;r<e.length;r++)0!==t.maxHour&&(i[0]=!0),0!==t.maxHour&&t.isTwelveHoursFormat&&(i[0]=!0),"minute"===e[r].type&&(i[1]=!0),"second"===e[r].type&&(i[2]=!0),"amPmMarker"===e[r].type&&(i[3]=!0);return i})(this.getFormat().aFormatArray,this._hoursParameters)}_initHoursFormatParameters(){const e=(e=>{const t={};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})(this.getFormat().aFormatArray[0].type);this._hoursParameters.minHour=e.minHour,this._hoursParameters.maxHour=e.maxHour,this._hoursParameters.isTwelveHoursFormat=e.isTwelveHoursFormat}get dateValue(){return this.getFormat().parse(this.value)}get shouldBuildHoursSlider(){return this._getSlidersContained()[0]}get shouldBuildMinutesSlider(){return this._getSlidersContained()[1]}get shouldBuildSecondsSlider(){return this._getSlidersContained()[2]}get shouldBuildPeriodsSlider(){return this._getSlidersContained()[3]}get hoursSliderTitle(){return this.i18nBundle.getText(ea)}get minutesSliderTitle(){return this.i18nBundle.getText(ta)}get secondsSliderTitle(){return this.i18nBundle.getText(ia)}get periodSliderTitle(){return this.i18nBundle.getText(ra)}get submitButtonLabel(){return this.i18nBundle.getText(aa)}get cancelButtonLabel(){return this.i18nBundle.getText(oa)}get classes(){return{container:{"ui5-time-picker-sliders-container":!0,"ui5-phone":Ta()}}}}).define();class bu{static hasGroup(e){return this.groups.has(e)}static getGroup(e){return this.groups.get(e)}static getSelectedRadioFromGroup(e){return this.selectedRadios.get(e)}static removeGroup(e){return this.selectedRadios.delete(e),this.groups.delete(e)}static addToGroup(e,t){this.hasGroup(t)?(this.enforceSingleSelection(e,t),this.getGroup(t).push(e)):this.createGroup(e,t)}static removeFromGroup(e,t){if(!this.hasGroup(t))return;const i=this.getGroup(t),r=this.getSelectedRadioFromGroup(t);i.forEach((t,i,r)=>{if(e._id===t._id)return r.splice(i,1)}),r===e&&this.selectedRadios.set(t,null),i.length||this.removeGroup(t)}static createGroup(e,t){e.selected&&this.selectedRadios.set(t,e),this.groups.set(t,[e])}static selectNextItem(e,t){const i=this.getGroup(t),r=i.length,a=i.indexOf(e);if(r<=1)return;const o=this._nextSelectable(a,i);this.updateSelectionInGroup(o,t)}static selectPreviousItem(e,t){const i=this.getGroup(t),r=i.length,a=i.indexOf(e);if(r<=1)return;const o=this._previousSelectable(a,i);this.updateSelectionInGroup(o,t)}static selectItem(e,t){this.updateSelectionInGroup(e,t)}static updateSelectionInGroup(e,t){const i=this.getSelectedRadioFromGroup(t);this._deselectRadio(i),this._selectRadio(e),this.selectedRadios.set(t,e)}static _deselectRadio(e){e&&(e.selected=!1)}static _selectRadio(e){e&&(e.focus(),e.selected=!0,e._selected=!0,e.fireEvent("select"))}static _nextSelectable(e,t){let i=null;if(e===t.length-1){if(t[0].disabled||t[0].readonly)return this._nextSelectable(1,t);i=t[0]}else{if(t[e+1].disabled||t[e+1].readonly)return this._nextSelectable(e+1,t);i=t[e+1]}return i}static _previousSelectable(e,t){const i=t.length;let r=null;if(0===e){if(t[i-1].disabled||t[i-1].readonly)return this._previousSelectable(i-1,t);r=t[i-1]}else{if(t[e-1].disabled||t[e-1].readonly)return this._previousSelectable(e-1,t);r=t[e-1]}return r}static enforceSingleSelection(e,t){const i=this.getSelectedRadioFromGroup(t);e.selected?i?e!==i&&(this._deselectRadio(i),this.selectedRadios.set(t,e)):this.selectedRadios.set(t,e):e===i&&this.selectedRadios.set(t,null)}static get groups(){return this._groups||(this._groups=new Map),this._groups}static get selectedRadios(){return this._selectedRadios||(this._selectedRadios=new Map),this._selectedRadios}}const wu=e=>Pi`<div class="ui5-radio-root ${Ri(e.classes.main)}" role="radio" aria-checked="${Cr(e.selected)}" aria-readonly="${Cr(e.ariaReadonly)}" aria-disabled="${Cr(e.ariaDisabled)}" aria-labelledby="${Cr(e.ariaLabelledBy)}" aria-describedby="${Cr(e.ariaDescribedBy)}" tabindex="${Cr(e.tabIndex)}" dir="${Cr(e.effectiveDir)}" @click="${e._onclick}" @keydown="${e._onkeydown}" @keyup="${e._onkeyup}"><div class='ui5-radio-inner ${Ri(e.classes.inner)}'><svg class="ui5-radio-svg" focusable="false" aria-hidden="true">${Cu()}</svg><input type='radio' ?checked="${e.selected}" ?readonly="${e.readonly}" ?disabled="${e.disabled}" name="${Cr(e.name)}" data-sap-no-tab-ref/></div>${e.text?ku(e):void 0}${e.hasValueState?xu(e):void 0}</div>`,ku=e=>Pi`<ui5-label id="${Cr(e._id)}-label" class="ui5-radio-label" for="${Cr(e._id)}" ?wrap="${e.wrap}">${Cr(e.text)}</ui5-label>`,xu=e=>Pi`<span id="${Cr(e._id)}-descr" class="ui5-hidden-text">${Cr(e.valueStateText)}</span>`,Cu=e=>Ii`<circle class="ui5-radio-svg-outer" cx="50%" cy="50%" r="50%" /><circle class="ui5-radio-svg-inner" cx="50%" cy="50%" r="22%" />`;M("@ui5/webcomponents-theme-base","sap_fiori_3",Nr),M("@ui5/webcomponents","sap_fiori_3",Or);const Su={tag:"ui5-radiobutton",languageAware:!0,properties:{disabled:{type:Boolean},readonly:{type:Boolean},selected:{type:Boolean},text:{type:String},valueState:{defaultValue:Pa.None,type:Pa},name:{type:String},value:{type:String},wrap:{type:Boolean}},events:{select:{}}};(class extends Yt{constructor(){super(),this.i18nBundle=br("@ui5/webcomponents")}static get metadata(){return Su}static get render(){return Vi}static get template(){return wu}static get styles(){return'.ui5-hidden-text{position:absolute;clip:rect(1px,1px,1px,1px);user-select:none;left:0;top:0}:host(:not([hidden])){display:inline-block}:host{min-width:var(--_ui5_radiobutton_min_width);max-width:100%;text-overflow:ellipsis;overflow:hidden;color:var(--sapField_BorderColor)}:host([selected]){color:var(--_ui5_radiobutton_selected_fill)}:host([selected]) .ui5-radio-svg-inner{fill:currentColor}:host([selected]) .ui5-radio-svg-outer{stroke:var(--sapField_BorderColor)}:host([disabled]) .ui5-radio-root{opacity:var(--sapContent_DisabledOpacity)}:host(:not([disabled])) .ui5-radio-root:focus:before{content:"";display:block;position:absolute;top:var(--_ui5_rb_focus_dist);bottom:var(--_ui5_rb_focus_dist);left:var(--_ui5_rb_focus_dist);right:var(--_ui5_rb_focus_dist);pointer-events:none;border:var(--_ui5_radiobutton_border_width) dotted var(--sapContent_FocusColor)}:host(:not([value-state=Error]):not([value-state=Warning])) .ui5-radio-root:hover .ui5-radio-inner--hoverable .ui5-radio-svg-outer{fill:var(--_ui5_radiobutton_hover_fill);stroke:var(--sapField_Hover_BorderColor)}:host([text]) .ui5-radio-root:focus:before{right:0}:host([selected][readonly]) .ui5-radio-svg-inner{fill:var(--sapContent_NonInteractiveIconColor)}:host([readonly]) .ui5-radio-root .ui5-radio-svg-outer{fill:var(--sapField_ReadOnly_Background);stroke:var(--sapField_ReadOnly_BorderColor)}:host([value-state=Error]) .ui5-radio-svg-outer,:host([value-state=Warning]) .ui5-radio-svg-outer{stroke-width:2}:host([value-state=Error][selected]) .ui5-radio-svg-inner{fill:var(--_ui5_radiobutton_selected_error_fill)}:host([value-state=Error]) .ui5-radio-root:hover .ui5-radio-inner.ui5-radio-inner--hoverable:hover .ui5-radio-svg-outer,:host([value-state=Error]) .ui5-radio-svg-outer{stroke:var(--sapField_InvalidColor);fill:var(--sapField_InvalidBackground)}:host([value-state=Warning][selected]) .ui5-radio-svg-inner{fill:var(--_ui5_radiobutton_selected_warning_fill)}:host([value-state=Warning]) .ui5-radio-root:hover .ui5-radio-inner.ui5-radio-inner--hoverable:hover .ui5-radio-svg-outer,:host([value-state=Warning]) .ui5-radio-svg-outer{stroke:var(--sapField_WarningColor);fill:var(--sapField_WarningBackground)}:host([value-state=Error]) .ui5-radio-root,:host([value-state=Information]) .ui5-radio-root,:host([value-state=Warning]) .ui5-radio-root{stroke-dasharray:var(--_ui5_radiobutton_warning_error_border_dash)}.ui5-radio-root{height:var(--_ui5_rb_height);position:relative;display:flex;flex-wrap:nowrap;outline:none;max-width:100%}.ui5-radio-inner{display:flex;align-items:center;justify-content:center;flex-shrink:0;width:var(--_ui5_rb_inner_size);height:var(--_ui5_rb_inner_size);font-size:1rem;pointer-events:none;vertical-align:top}.ui5-radio-inner:focus{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;width:var(--_ui5_rb_label_width);padding-right:1px;vertical-align:top;cursor:default;max-width:100%;text-overflow:ellipsis;overflow:hidden;pointer-events:none}:host([wrap][text]) .ui5-radio-root{height:auto}:host([wrap][text]) ui5-label.ui5-radio-label{padding:var(--_ui5_rb_label_side_padding) 0;word-break:break-all}.ui5-radio-svg{height:var(--_ui5_rb_svg_size);width:var(--_ui5_rb_svg_size);overflow:visible;pointer-events:none}.ui5-radio-svg-outer{fill:var(--sapField_Background);stroke:currentColor;stroke-width:1}.ui5-radio-svg-inner{fill:none}.ui5-radio-svg-inner,.ui5-radio-svg-outer{flex-shrink:0}:host([text]) [dir=rtl].ui5-radio-root:focus:before{left:0;right:var(--_ui5_rb_rtl_focus_right)}:host(.ui5-li-singlesel-radiobtn) .ui5-radio-root .ui5-radio-inner .ui5-radio-svg-outer{fill:var(--sapList_Background)}'}static async onDefine(){await Promise.all([Ba.define(),Te("@ui5/webcomponents")])}onBeforeRendering(){this.syncGroup(),this._enableFormSupport()}syncGroup(){const e=this._name,t=this.name;t!==e?(e&&bu.removeFromGroup(this,e),t&&bu.addToGroup(this,t)):t&&bu.enforceSingleSelection(this,t),this._name=this.name}_enableFormSupport(){const e=c("FormSupport");e?e.syncNativeHiddenInput(this,(e,t)=>{t.disabled=e.disabled||!e.selected,t.value=e.selected?e.value:""}):this.value&&console.warn('In order for the "value" property to have effect, you should also: import "@ui5/webcomponents/dist/features/InputElementsFormSupport.js";')}_onclick(){return this.toggle()}_handleDown(e){const t=this.name;t&&(e.preventDefault(),bu.selectNextItem(this,t))}_handleUp(e){const t=this.name;t&&(e.preventDefault(),bu.selectPreviousItem(this,t))}_onkeydown(e){return rr(e)?e.preventDefault():ir(e)?this.toggle():((sr(e)||or(e))&&this._handleDown(e),void((nr(e)||ar(e))&&this._handleUp(e)))}_onkeyup(e){rr(e)&&this.toggle()}toggle(){return this.canToggle()?this.name?(bu.selectItem(this,this.name),this):(this.selected=!this.selected,this.fireEvent("select"),this):this}canToggle(){return!(this.disabled||this.readonly||this.selected)}valueStateTextMappings(){const e=this.i18nBundle;return{Error:e.getText(na),Warning:e.getText(sa)}}get classes(){return{inner:{"ui5-radio-inner--hoverable":!this.disabled&&!this.readonly&&Sa()}}}get ariaReadonly(){return this.readonly?"true":void 0}get ariaDisabled(){return this.disabled?"true":void 0}get ariaLabelledBy(){return this.text?this._id+"-label":void 0}get ariaDescribedBy(){return this.hasValueState?this._id+"-descr":void 0}get hasValueState(){return this.valueState!==Pa.None}get valueStateText(){return this.valueStateTextMappings()[this.valueState]}get tabIndex(){const e=this.getAttribute("tabindex");return this.disabled?"-1":this.name?this.selected?"0":"-1":e||"0"}get strokeWidth(){return"None"===this.valueState?"1":"2"}}).define();const Tu=e=>Pi`<div class="ui5-textarea-root" style="${Hi(e.styles.main)}" ?aria-invalid="${e.ariaInvalid}" @focusin="${e._onfocusin}" @focusout="${e._onfocusout}">${e.growing?Du(e):void 0}<textarea id="${Cr(e._id)}-inner" class="ui5-textarea-inner" placeholder="${Cr(e.placeholder)}" ?disabled="${e.disabled}" ?readonly="${e.readonly}" ?required="${e.required}" maxlength="${Cr(e._exceededTextProps.calcedMaxLength)}" aria-labelledby=${Cr(e.ariaLabelledBy)} .value="${Cr(e.value)}" @input="${e._oninput}" @change="${e._onchange}" @keyup="${e._onkeyup}" @keydown="${e._onkeydown}" data-sap-focus-ref part="textarea"></textarea>${e.showExceededText?Iu(e):void 0}<slot name="formSupport"></slot></div> `,Du=e=>Pi`<div id="${Cr(e._id)}-mirror" style="${Hi(e.styles.mirror)}" class="ui5-textarea-mirror" aria-hidden="true">${$i(e._mirrorText,(e,t)=>e._id||t,(e,t)=>Pu(e))}</div>`,Pu=(e,t,i)=>Pi`${Cr(e.text)}<br />`,Iu=e=>Pi`<span id="${Cr(e._id)}-exceededText" class="ui5-textarea-exceeded-text">${Cr(e._exceededTextProps.exceededText)}</span>`,Mu=e=>Pi`${e.displayValueStateMessagePopover?Bu(e):void 0}`,Bu=e=>Pi`<ui5-popover skip-registry-update prevent-focus-restore no-padding no-arrow _disable-initial-focus class="ui5-valuestatemessage-popover" style="${Hi(e.styles.valueStateMsgPopover)}" placement-type="Bottom" horizontal-align="Left"><div slot="header" class="ui5-valuestatemessage-root ${Ri(e.classes.valueStateMsg)}">${e.hasCustomValueState?Eu(e):Au(e)}</div></ui5-popover>`,Eu=e=>Pi`${$i(e.valueStateMessageText,(e,t)=>e._id||t,(e,t)=>Fu(e))}`,Fu=(e,t,i)=>Pi`${Cr(e)}`,Au=e=>Pi`${Cr(e.valueStateText)}`;M("@ui5/webcomponents-theme-base","sap_fiori_3",Nr),M("@ui5/webcomponents","sap_fiori_3",Or);const Nu={tag:"ui5-textarea",languageAware:!0,managedSlots:!0,properties:{value:{type:String},disabled:{type:Boolean},readonly:{type:Boolean},required:{type:Boolean},placeholder:{type:String},valueState:{type:Pa,defaultValue:Pa.None},rows:{type:Rt,defaultValue:0},maxlength:{type:Rt,defaultValue:null},showExceededText:{type:Boolean},growing:{type:Boolean},growingMaxLines:{type:Rt,defaultValue:0},name:{type:String},focused:{type:Boolean},exceeding:{type:Boolean},_mirrorText:{type:Object,multiple:!0,defaultValue:""},_maxHeight:{type:String,noAttribute:!0},_width:{type:Rt}},slots:{valueStateMessage:{type:HTMLElement}},events:{change:{},input:{}}};(class extends Yt{static get metadata(){return Nu}static get styles(){return":host(:not([hidden])){display:inline-block}:host{width:100%;color:var(--sapField_TextColor);font-size:var(--sapFontSize);font-family:var(--sapFontFamily);font-style:normal;border-color:var(--sapField_BorderColor);border-radius:var(--_ui5_input_wrapper_border_radius);box-sizing:border-box}:host([disabled]){opacity:var(--_ui5_input_disabled_opacity);cursor:default;pointer-events:none;border-color:var(--sapField_ReadOnly_BorderColor);-webkit-text-fill-color:var(--sapContent_DisabledTextColor);color:var(--sapContent_DisabledTextColor)}:host([disabled]) .ui5-textarea-inner{background:var(--sapField_ReadOnly_Background)}:host([focused]) .ui5-textarea-inner{outline:var(--_ui5_textarea_focus_after_width) dotted var(--sapContent_FocusColor);outline-offset:-3px}:host([exceeding]) .ui5-textarea-inner,:host([value-state]:not([value-state=None])[focused]) .ui5-textarea-inner{outline:var(--_ui5_input_focus_border_width) dotted var(--sapContent_FocusColor);outline-offset:-4px}.ui5-textarea-root{height:100%;min-height:var(--_ui5_input_height);display:inline-flex;vertical-align:top;outline:none;overflow:hidden;box-sizing:border-box;border-radius:inherit;border-color:inherit}.ui5-textarea-inner{width:100%;height:100%;margin:0;padding:var(--_ui5_textarea_padding);line-height:1.4;box-sizing:border-box;color:inherit;font-size:inherit;font-family:inherit;font-style:inherit;-webkit-appearance:none;-moz-appearance:textfield;overflow:auto;resize:none;border-color:inherit;border-radius:inherit;background-color:var(--sapField_Background);border-width:1px;border-style:solid}:host([growing]) .ui5-textarea-root{position:relative}:host([growing]) .ui5-textarea-inner{position:absolute;top:0;left:0}.ui5-textarea-mirror{line-height:1.4;visibility:hidden;width:100%;word-break:break-all;padding:var(--_ui5_textarea_padding);font-size:var(--sapFontSize);font-family:var(--sapFontFamily);white-space:pre-wrap;box-sizing:border-box}:host([readonly]){border-color:var(--sapField_ReadOnly_BorderColor)}:host([readonly]) .ui5-textarea-inner{background:var(--sapField_ReadOnly_Background)}:host([show-exceeded-text]) .ui5-textarea-root{flex-direction:column}.ui5-textarea-inner::-webkit-input-placeholder{color:var(--sapField_PlaceholderTextColor)}.ui5-textarea-inner::-moz-placeholder{color:var(--sapField_PlaceholderTextColor)}.ui5-textarea-inner:-ms-input-placeholder{color:var(--sapField_PlaceholderTextColor)}.ui5-textarea-inner:-moz-placeholder{color:var(--sapField_PlaceholderTextColor)}:host(:not([value-state]):not([exceeding]):not([readonly]):hover){border-color:var(--sapField_Hover_BorderColor)}:host(:not([value-state]):not([exceeding]):not([readonly]):hover) .ui5-textarea-inner{background-color:var(--sapField_Hover_Background)}:host([exceeding]) .ui5-textarea-inner,:host([value-state]:not([value-state=None])) .ui5-textarea-inner{border-width:var(--_ui5_textarea_error_warning_border_width)}:host([value-state=Error]) .ui5-textarea-inner,:host([value-state=Warning]) .ui5-textarea-inner{font-style:var(--_ui5_input_error_warning_font_style)}:host([value-state=Error]) .ui5-textarea-inner{font-weight:var(--_ui5_input_error_font_weight)}:host([value-state=Error]:not([readonly])){border-color:var(--sapField_InvalidColor)}:host([value-state=Error]:not([readonly])) .ui5-textarea-inner{background-color:var(--sapField_InvalidBackground)}:host([value-state=Error]:not([readonly]):not([disabled])) .ui5-textarea-inner,:host([value-state=Information]:not([readonly]):not([disabled])) .ui5-textarea-inner,:host([value-state=Warning]:not([readonly]):not([disabled])) .ui5-textarea-inner{border-style:var(--_ui5_input_error_warning_border_style)}:host([exceeding]),:host([value-state=Warning]:not([readonly])){border-color:var(--sapField_WarningColor)}:host([exceeding]) .ui5-textarea-inner,:host([value-state=Warning]:not([readonly])) .ui5-textarea-inner{background-color:var(--sapField_WarningBackground)}:host([value-state=Success]:not([readonly]):not([exceeding])){border-color:var(--sapField_SuccessColor)}:host([value-state=Success]:not([readonly]):not([exceeding])) .ui5-textarea-inner{background-color:var(--sapField_SuccessBackground);border-width:1px}:host([value-state=Information]:not([readonly]):not([exceeding])){border-color:var(--sapField_InformationColor)}:host([value-state=Information]:not([readonly]):not([exceeding])) .ui5-textarea-inner{background-color:var(--sapField_InformationBackground);border-width:var(--_ui5_textarea_information_border_width)}.ui5-textarea-exceeded-text{overflow:hidden;align-self:flex-end;padding:.125rem .125rem .5rem;color:var(--sapContent_LabelColor);font-family:var(--sapFontFamily);font-size:var(--sapFontSmallSize)}"}static get render(){return Vi}static get template(){return Tu}static get staticAreaTemplate(){return Mu}static get staticAreaStyles(){return un}constructor(){super(),this._firstRendering=!0,this._openValueStateMsgPopover=!1,this._fnOnResize=this._onResize.bind(this),this.i18nBundle=br("@ui5/webcomponents")}onEnterDOM(){Ra.register(this,this._fnOnResize)}onExitDOM(){Ra.deregister(this,this._fnOnResize)}onBeforeRendering(){this._exceededTextProps=this._calcExceededText(),this._mirrorText=this._tokenizeText(this.value),this.exceeding=this._exceededTextProps.leftCharactersCount<0,this.growingMaxLines&&(this._maxHeight=1.4*this.growingMaxLines*14+9+"px");const e=c("FormSupport");e?e.syncNativeHiddenInput(this):this.name&&console.warn('In order for the "name" property to have effect, you should also: import "@ui5/webcomponents/dist/features/InputElementsFormSupport.js";')}onAfterRendering(){this.toggleValueStateMessage(this.openValueStateMsgPopover),this._firstRendering=!1}getInputDomRef(){return this.getDomRef().querySelector("textarea")}_onkeydown(){this._keyDown=!0}_onkeyup(){this._keyDown=!1}_onfocusin(){this.focused=!0,this._openValueStateMsgPopover=!0}_onfocusout(){this.focused=!1,this._openValueStateMsgPopover=!1}_onchange(){this.fireEvent("change",{})}_oninput(e){const t=this.getInputDomRef(),i=t.value===this.value&&ba()&&!this._keyDown&&!!this.placeholder;e.target===t&&e.stopImmediatePropagation(),i||(this.value=t.value,this.fireEvent("input",{}),this.fireEvent("value-changed"))}_onResize(){this.displayValueStateMessagePopover&&(this._width=this.offsetWidth)}toggleValueStateMessage(e){e?this.openPopover():this.closePopover()}async openPopover(){this.popover=await this._getPopover(),this.popover&&this.popover.openBy(this.shadowRoot.querySelector(".ui5-textarea-inner"))}async closePopover(){this.popover=await this._getPopover(),this.popover&&this.popover.close()}async _getPopover(){return(await this.getStaticAreaItemDomRef()).querySelector("ui5-popover")}_tokenizeText(e){const t=e.replace(/&/gm,"&").replace(/"/gm,""").replace(/'/gm,"'").replace(/</gm,"<").replace(/>/gm,">").split("\n");return t.length<this.rows?this._mapTokenizedTextToObject([...t,...Array(this.rows-t.length).fill("")]):this._mapTokenizedTextToObject(t)}_mapTokenizedTextToObject(e){return e.map((t,i)=>({text:t,last:i===e.length-1}))}_calcExceededText(){let e,t,i;if(this.showExceededText){const e=this.maxlength||0;e&&(i=e-this.value.length,t=i>=0?this.i18nBundle.getText(Zr,[i]):this.i18nBundle.getText(Kr,[Math.abs(i)]))}else e=this.maxlength;return{exceededText:t,leftCharactersCount:i,calcedMaxLength:e}}get classes(){return{valueStateMsg:{"ui5-valuestatemessage--error":this.valueState===Pa.Error,"ui5-valuestatemessage--warning":this.valueState===Pa.Warning||this.exceeding,"ui5-valuestatemessage--information":this.valueState===Pa.Information}}}get styles(){return{mirror:{"max-height":this._maxHeight},main:{width:"100%",height:this.rows&&!this.growing?22.4*this.rows+"px":"100%"},focusDiv:{height:this.showExceededText?"calc(100% - 26px)":"100%","max-height":this._maxHeight},valueStateMsgPopover:{"max-width":this._width+"px"}}}get tabIndex(){return this.disabled?void 0:"0"}get ariaLabelledBy(){return this.showExceededText?this._id+"-exceededText":void 0}get ariaInvalid(){return"Error"===this.valueState?"true":void 0}get openValueStateMsgPopover(){return!this._firstRendering&&this._openValueStateMsgPopover&&this.displayValueStateMessagePopover}get displayValueStateMessagePopover(){return this.hasCustomValueState||this.hasValueState||this.exceeding}get hasCustomValueState(){return!!this.valueStateMessage.length&&this.hasValueState}get hasValueState(){return this.valueState===Pa.Error||this.valueState===Pa.Warning||this.valueState===Pa.Information}get valueStateMessageText(){return this.valueStateMessage.map(e=>e.cloneNode(!0))}get valueStateText(){return this.valueState!==Pa.Error&&this.exceeding?this.valueStateTextMappings()[Pa.Warning]:this.valueStateTextMappings()[this.valueState]}valueStateTextMappings(){const e=this.i18nBundle;return{Information:e.getText(la),Error:e.getText(na),Warning:e.getText(sa)}}static async onDefine(){await Promise.all([Ao.define(),Te("@ui5/webcomponents")])}}).define();Er("slim-arrow-down",{pathData:"M420.5 187q11-12 23 0 5 5 5 11t-5 11l-165 165q-10 9-23 9t-22-9l-166-165q-5-5-5-11.5t5-11.5 11.5-5 11.5 5l160 160q5 6 11 0l159-159z",ltr:!1});const Ou={tag:"ui5-option",properties:{selected:{type:Boolean},icon:{type:String,defaultValue:null},value:{type:String}},events:{}};class $u extends Yt{static get metadata(){return Ou}}$u.define();const Lu=(e,t)=>{const i=t||[];return e?(Array.from(e).forEach(e=>{if(e.nodeType!==Node.TEXT_NODE&&e.nodeType!==Node.COMMENT_NODE){if(e.shadowRoot){const t=e.shadowRoot.children;e=Array.from(t).find(e=>"STYLE"!==e.tagName)}(e=>{if(!e)return!1;const t=e.nodeName.toLowerCase();if(e.hasAttribute("data-sap-no-tab-ref"))return!1;if(Ua(e))return!1;if("a"===t||/input|select|textarea|button|object/.test(t))return!e.disabled;const i=e.getAttribute("tabindex");return null!=i?parseInt(i)>=0:void 0})(e)&&i.push(e),"SLOT"===e.tagName?Lu(e.assignedNodes(),i):Lu(e.children,i)}}),i):i},Ru={None:"None",SingleSelect:"SingleSelect",SingleSelectBegin:"SingleSelectBegin",SingleSelectEnd:"SingleSelectEnd",SingleSelectAuto:"SingleSelectAuto",MultiSelect:"MultiSelect",Delete:"Delete"};class zu extends nt{static isValid(e){return!!Ru[e]}}zu.generataTypeAcessors(Ru);const Hu={All:"All",Inner:"Inner",None:"None"};class Uu extends nt{static isValid(e){return!!Hu[e]}}Uu.generataTypeAcessors(Hu);const ju={Small:"Small",Medium:"Medium",Large:"Large"};class Vu extends nt{static isValid(e){return!!ju[e]}}Vu.generataTypeAcessors(ju);const Wu=e=>Pi`<div class="${Ri(e.classes.root)}"><div class="ui5-busyindicator-wrapper">${e.active?Yu(e):void 0}${e.text?qu(e):void 0}</div><slot></slot></div>`,Yu=e=>Pi`<div class="ui5-busyindicator-dynamic-content" role="progressbar" aria-valuemin="0" aria-valuemax="100" title="${Cr(e.ariaTitle)}"><div class="ui5-busyindicator-circle circle-animation-0"></div><div class="ui5-busyindicator-circle circle-animation-1"></div><div class="ui5-busyindicator-circle circle-animation-2"></div></div>`,qu=e=>Pi`<ui5-label class="ui5-busyindicator-text">${Cr(e.text)}</ui5-label>`;M("@ui5/webcomponents-theme-base","sap_fiori_3",Nr),M("@ui5/webcomponents","sap_fiori_3",Or);const Gu={tag:"ui5-busyindicator",languageAware:!0,slots:{default:{type:Node}},properties:{text:{type:String},size:{type:Vu,defaultValue:Vu.Medium},active:{type:Boolean}}};class Ju extends Yt{constructor(){super(),this.i18nBundle=br("@ui5/webcomponents"),this._preventHandler=this._preventEvent.bind(this)}onBeforeRendering(){this.active?this.tabIndex=-1:this.removeAttribute("tabindex")}onEnterDOM(){this.addEventListener("keyup",this._preventHandler,{capture:!0}),this.addEventListener("keydown",this._preventHandler,{capture:!0})}onExitDOM(){this.removeEventListener("keyup",this._preventHandler,!0),this.removeEventListener("keydown",this._preventHandler,!0)}static get metadata(){return Gu}static get styles(){return':host(:not([hidden])){display:inline-block}:host(:not([active])) .ui5-busyindicator-wrapper{display:none}:host([active]){color:var(--sapContent_IconColor);pointer-events:none}:host([active]) :not(.ui5-busyindicator-root--ie) ::slotted(:not([class^=ui5-busyindicator-])){opacity:.6}:host([active]) .ui5-busyindicator-root--ie ::slotted(:not([class^=ui5-busyindicator-])){opacity:.95}:host([size=Small]) .ui5-busyindicator-root{min-width:1.5em;min-height:.5rem}:host([size=Small][text]:not([text=""])) .ui5-busyindicator-root{min-height:1.75rem}:host([size=Small]) .ui5-busyindicator-circle{width:.5rem;height:.5rem}:host(:not([size])) .ui5-busyindicator-root,:host([size=Medium]) .ui5-busyindicator-root{min-width:3rem;min-height:1rem}:host(:not([size])[text]:not([text=""])) .ui5-busyindicator-root,:host([size=Medium][text]:not([text=""])) .ui5-busyindicator-root{min-height:2.25rem}:host(:not([size])) .ui5-busyindicator-circle,:host([size=Medium]) .ui5-busyindicator-circle{width:1rem;height:1rem}:host([size=Large]) .ui5-busyindicator-root{min-width:6rem;min-height:2rem}:host([size=Large][text]:not([text=""])) .ui5-busyindicator-root{min-height:3.25rem}:host([size=Large]) .ui5-busyindicator-circle{width:2rem;height:2rem}.ui5-busyindicator-root{display:flex;justify-content:center;align-items:center;position:relative;background-color:inherit}.ui5-busyindicator-wrapper{position:absolute;z-index:99;width:100%;left:0;right:0;top:50%;transform:translateY(-50%)}.ui5-busyindicator-circle{display:inline-block;background-color:currentColor;border-radius:50%}.ui5-busyindicator-circle:before{content:"";width:100%;height:100%;border-radius:100%}.ui5-busyindicator-dynamic-content{height:100%;display:flex;justify-content:center;align-items:center;background-color:inherit}.circle-animation-0{animation:grow 1.6s cubic-bezier(.32,.06,.85,1.11) infinite}.circle-animation-1{animation:grow 1.6s cubic-bezier(.32,.06,.85,1.11) infinite;animation-delay:.2s}.circle-animation-2{animation:grow 1.6s cubic-bezier(.32,.06,.85,1.11) infinite;animation-delay:.4s}.ui5-busyindicator-text{width:100%;margin-top:.25rem;text-align:center}@keyframes grow{0%,50%,to{-webkit-transform:scale(.5);-moz-transform:scale(.5);-ms-transform:scale(.5);transform:scale(.5)}25%{-webkit-transform:scale(1);-moz-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}}'}static get render(){return Vi}static get template(){return Wu}static async onDefine(){await Promise.all([Te("@ui5/webcomponents"),Ba.define()])}get ariaTitle(){return this.i18nBundle.getText(Rr)}get classes(){return{root:{"ui5-busyindicator-root":!0,"ui5-busyindicator-root--ie":ba()}}}_preventEvent(e){this.active&&e.stopImmediatePropagation()}}Ju.define();const Xu=e=>Pi`<div class="ui5-list-root" @focusin="${e._onfocusin}" @keydown="${e._onkeydown}" @scroll="${e._onScroll}"><!-- header -->${e.header.length?Qu():void 0}${e.shouldRenderH1?Zu(e):void 0}<div id="${Cr(e._id)}-before" tabindex="0" class="ui5-list-focusarea"></div><ul id="${Cr(e._id)}-listUl" class="ui5-list-ul" role="${Cr(e._role)}" aria-label="${Cr(e.ariaLabelТxt)}" aria-labelledby="${Cr(e.ariaLabelledBy)}" aria-multiselectable="${Cr(e.isMultiSelect)}"><slot></slot>${e.showNoDataText?Ku(e):void 0}</ul>${e.footerText?ed(e):void 0}${e.showBusy?td(e):void 0}<div id="${Cr(e._id)}-after" tabindex="0" class="ui5-list-focusarea"></div></div>`,Qu=e=>Pi`<slot name="header" />`,Zu=e=>Pi`<header id="${Cr(e.headerID)}" class="ui5-list-header">${Cr(e.headerText)}</header>`,Ku=e=>Pi`<li id="${Cr(e._id)}-nodata" class="ui5-list-nodata" tabindex="${Cr(e.noDataTabIndex)}" style="list-style-type: none;"><div id="${Cr(e._id)}-nodata-text" class="ui5-list-nodata-text">${Cr(e.noDataText)}</div></li>`,ed=e=>Pi`<footer id="${Cr(e._id)}-footer" class="ui5-list-footer">${Cr(e.footerText)}</footer>`,td=e=>Pi`<div class="ui5-list-busy-row"><ui5-busyindicator ?active="${e.busy}" size="Medium" class="ui5-list-busy-ind"></ui5-busyindicator></div>`;M("@ui5/webcomponents-theme-base","sap_fiori_3",Nr),M("@ui5/webcomponents","sap_fiori_3",Or);const id={tag:"ui5-list",managedSlots:!0,slots:{header:{type:HTMLElement},default:{propertyName:"items",type:HTMLElement}},properties:{headerText:{type:String},footerText:{type:String},inset:{type:Boolean},mode:{type:zu,defaultValue:zu.None},noDataText:{type:String},separators:{type:Uu,defaultValue:Uu.All},infiniteScroll:{type:Boolean},busy:{type:Boolean},ariaLabel:{type:String},ariaLabelledby:{type:String,defaultValue:""},_role:{type:String,defaultValue:"listbox",noAttribute:!0}},events:{"item-click":{detail:{item:{type:HTMLElement}}},"item-close":{detail:{item:{type:HTMLElement}}},"item-toggle":{detail:{item:{type:HTMLElement}}},"item-delete":{detail:{item:{type:HTMLElement}}},"selection-change":{detail:{selectedItems:{type:Array},previouslySelectedItems:{type:Array},selectionComponentPressed:{type:Boolean}}},"load-more":{}}};class rd extends Yt{static get metadata(){return id}static get render(){return Vi}static get template(){return Xu}static get styles(){return":host(:not([hidden])){display:block;max-width:100%;width:100%}:host([inset]) .ui5-list-root{padding:2rem}:host([separators=None]) .ui5-list-nodata{border-bottom:0}.ui5-list-root{width:100%;height:100%;position:relative;box-sizing:border-box;overflow:auto}.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(--sapMFontHeader4Size);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;height:var(--_ui5_list_no_data_height);font-size:var(--sapFontSize)}.ui5-list-nodata-text{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.ui5-list-busy-row{display:flex;align-items:center;height:var(--_ui5_list_busy_row_height);justify-content:center}"}constructor(){super(),this.initItemNavigation(),this._previouslyFocusedItem=null,this._forwardingFocus=!1,this._previouslySelectedItem=null,this.addEventListener("ui5-_press",this.onItemPress.bind(this)),this.addEventListener("ui5-close",this.onItemClose.bind(this)),this.addEventListener("ui5-toggle",this.onItemToggle.bind(this)),this.addEventListener("ui5-_focused",this.onItemFocused.bind(this)),this.addEventListener("ui5-_forward-after",this.onForwardAfter.bind(this)),this.addEventListener("ui5-_forward-before",this.onForwardBefore.bind(this)),this.addEventListener("ui5-_selection-requested",this.onSelectionRequested.bind(this)),this.addEventListener("ui5-_focus-requested",this.focusUploadCollectionItem.bind(this))}get shouldRenderH1(){return!this.header.length&&this.headerText}get headerID(){return this._id+"-header"}get showNoDataText(){return 0===this.items.length&&this.noDataText}get showBusy(){return this.busy||this.infiniteScroll}get isMultiSelect(){return this.mode===zu.MultiSelect}get ariaLabelledBy(){if(!this.ariaLabelledby&&!this.ariaLabel)return this.shouldRenderH1?this.headerID:void 0}get"ariaLabelТxt"(){return wr(this)}onBeforeRendering(){this.prepareListItems()}initItemNavigation(){this._itemNavigation=new al(this,{navigationMode:Ks}),this._itemNavigation.getItemsCallback=()=>this.getSlottedNodes("items")}prepareListItems(){const e=this.getSlottedNodes("items");e.forEach((t,i)=>{const r=i===e.length-1,a=this.separators===Uu.All||this.separators===Uu.Inner&&!r;t._mode=this.mode,t.hasBorder=a}),this._previouslySelectedItem=null}onSelectionRequested(e){const t=this.getSelectedItems();let i=!1;this._selectionRequested=!0,this["handle"+this.mode]&&(i=this["handle"+this.mode](e.detail.item,e.detail.selected)),i&&this.fireEvent("selection-change",{selectedItems:this.getSelectedItems(),previouslySelectedItems:t,selectionComponentPressed:e.detail.selectionComponentPressed,key:e.detail.key})}handleSingleSelect(e){return!e.selected&&(this.deselectSelectedItems(),e.selected=!0,!0)}handleSingleSelectBegin(e){return this.handleSingleSelect(e)}handleSingleSelectEnd(e){return this.handleSingleSelect(e)}handleSingleSelectAuto(e){return this.handleSingleSelect(e)}handleMultiSelect(e,t){return e.selected=t,!0}handleDelete(e){this.fireEvent("item-delete",{item:e})}deselectSelectedItems(){this.getSelectedItems().forEach(e=>{e.selected=!1})}getSelectedItems(){return this.getSlottedNodes("items").filter(e=>e.selected)}getFirstSelectedItem(){const e=this.getSlottedNodes("items");let t=null;for(let i=0;i<e.length;i++)if(e[i].selected){t=e[i];break}return t}_onkeydown(e){ur(e)&&this._handleTabNext(e)}_handleTabNext(e){let t;const i=this.getNormalizedTarget(e.target);this.headerToolbar&&(t=this.getHeaderToolbarLastTabbableElement()),t&&t===i&&(this.getFirstSelectedItem()?this.focusFirstSelectedItem():this.getPreviouslyFocusedItem()?this.focusPreviouslyFocusedItem():this.focusFirstItem(),e.stopImmediatePropagation(),e.preventDefault())}_onScroll(e){this.infiniteScroll&&this.debounce(this.loadMore.bind(this,e.target),250)}_onfocusin(e){if(this.isForwardElement(this.getNormalizedTarget(e.target))){if(!this.getPreviouslyFocusedItem())return this.getFirstSelectedItem()?this.focusFirstSelectedItem():this.focusFirstItem(),void e.stopImmediatePropagation();this.getForwardingFocus()||(this.getFirstSelectedItem()?this.focusFirstSelectedItem():this.focusPreviouslyFocusedItem()),this.setForwardingFocus(!1)}else e.stopImmediatePropagation()}isForwardElement(e){const t=e.id;return this._id===t||this.getBeforeElement().id===t||this.getAfterElement().id===t}onItemFocused(e){const t=e.target;this._itemNavigation.update(t),this.fireEvent("item-focused",{item:t}),this.mode===zu.SingleSelectAuto&&this.onSelectionRequested({detail:{item:t,selectionComponentPressed:!1,selected:!0,key:e.detail.key}})}onItemPress(e){const t=e.detail.item;this._selectionRequested||this.mode===zu.Delete||(this._selectionRequested=!0,this.onSelectionRequested({detail:{item:t,selectionComponentPressed:!1,selected:!t.selected,key:e.detail.key}})),this.fireEvent("item-press",{item:t}),this.fireEvent("item-click",{item:t}),this._selectionRequested=!1}onItemClose(e){this.fireEvent("item-close",{item:e.detail.item})}onItemToggle(e){this.fireEvent("item-toggle",{item:e.detail.item})}onForwardBefore(e){this.setPreviouslyFocusedItem(e.target),this.focusBeforeElement()}onForwardAfter(e){this.setPreviouslyFocusedItem(e.target),this.focusAfterElement()}focusBeforeElement(){this.setForwardingFocus(!0),this.getBeforeElement().focus()}focusAfterElement(){this.setForwardingFocus(!0),this.getAfterElement().focus()}focusFirstItem(){const e=this.getFirstItem();e&&e.focus()}focusPreviouslyFocusedItem(){const e=this.getPreviouslyFocusedItem();e&&e.focus()}focusFirstSelectedItem(){const e=this.getFirstSelectedItem();e&&e.focus()}focusItem(e){e.focus()}focusUploadCollectionItem(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(){const e=this.getSlottedNodes("items");return!!e.length&&e[0]}getAfterElement(){return this._afterElement||(this._afterElement=this.shadowRoot.querySelector(`#${this._id}-after`)),this._afterElement}getBeforeElement(){return this._beforeElement||(this._beforeElement=this.shadowRoot.querySelector(`#${this._id}-before`)),this._beforeElement}getHeaderToolbarLastTabbableElement(){return(e=>{const t=Lu(e.children);return t.length?t[t.length-1]:null})(this.headerToolbar.getDomRef())||this.headerToolbar.getDomRef()}getNormalizedTarget(e){let t=e;return e.shadowRoot&&e.shadowRoot.activeElement&&(t=e.shadowRoot.activeElement),t}loadMore(e){const t=e.scrollTop,i=e.offsetHeight,r=e.scrollHeight;this.previousScrollPosition>t?this.previousScrollPosition=t:(this.previousScrollPosition=t,r-48<=i+t&&this.fireEvent("load-more"))}debounce(e,t){clearTimeout(this.debounceInterval),this.debounceInterval=setTimeout(()=>{this.debounceInterval=null,e()},t)}static async onDefine(){await Ju.define()}}rd.define();Er("edit",{pathData:"M475 104q5 7 5 12 0 6-5 11L150 453q-4 4-8 4L32 480l22-110q0-5 4-9L384 36q4-4 11-4t11 4zm-121 99l-46-45L84 381l46 46zm87-88l-46-44-64 64 45 45z",ltr:!1});const ad={Inactive:"Inactive",Active:"Active",Detail:"Detail"};class od extends nt{static isValid(e){return!!ad[e]}}od.generataTypeAcessors(ad),M("@ui5/webcomponents-theme-base","sap_fiori_3",Nr),M("@ui5/webcomponents","sap_fiori_3",Or);const nd={properties:{selected:{type:Boolean},hasBorder:{type:Boolean},_tabIndex:{type:String,defaultValue:"-1",noAttribute:!0},focused:{type:Boolean}},events:{_focused:{},"_forward-after":{},"_forward-before":{}}};class sd extends Yt{static get metadata(){return nd}static get render(){return Vi}static get styles(){return':host(:not([hidden])){display:block}:host{height:var(--_ui5_list_item_base_height);background:var(--ui5-listitem-background-color);box-sizing:border-box;border-bottom:1px solid transparent}:host([selected]){background:var(--sapList_SelectionBackgroundColor)}:host([has-border]){border-bottom:var(--ui5-listitem-border-bottom)}:host([selected]){border-bottom:var(--ui5-listitem-selected-border-bottom)}:host([selected][has-border]){border-bottom:var(--ui5-listitem-selected-border-bottom)}.ui5-li-root{position:relative;display:flex;align-items:center;width:100%;height:100%;padding:0 1rem 0 1rem;box-sizing:border-box}:host([focused]) .ui5-li-root.ui5-li--focusable{outline:none}:host([focused]) .ui5-li-root.ui5-li--focusable:after{content:"";border:var(--_ui5_listitembase_focus_width) dotted var(--sapContent_FocusColor);position:absolute;top:0;right:0;bottom:0;left:0;pointer-events:none}:host([focused]) .ui5-li-content:focus:after{content:"";border:var(--_ui5_listitembase_focus_width) dotted var(--sapContent_FocusColor);position:absolute;top:0;right:0;bottom:0;left:0;pointer-events:none}:host([active][focused]) .ui5-li-root.ui5-li--focusable:after{border-color:var(--sapContent_ContrastFocusColor)}.ui5-li-content{max-width:100%;min-height:1px;font-family:var(--sapFontFamily);pointer-events:none}'}_onfocusin(e){"button"!==e.isMarked&&"link"!==e.isMarked&&(this.focused=!0,this.fireEvent("_focused",e))}_onfocusout(e){this.focused=!1}_onkeydown(e){return ur(e)?this._handleTabNext(e):dr(e)?this._handleTabPrevious(e):void 0}_onkeyup(){}_handleTabNext(e){const t=e.target;this.shouldForwardTabAfter(t)&&this.fireEvent("_forward-after",{item:t})}_handleTabPrevious(e){const t=e.target;if(this.shouldForwardTabBefore(t)){const i=e;i.item=t,this.fireEvent("_forward-before",i)}}shouldForwardTabAfter(e){const t=(i=this.getDomRef(),Lu(i.children));var i;return e.getFocusDomRef&&(e=e.getFocusDomRef()),!t.length||t[t.length-1]===e}shouldForwardTabBefore(e){return this.getDomRef()===e}get classes(){return{main:{"ui5-li-root":!0,"ui5-li--focusable":!0}}}}M("@ui5/webcomponents-theme-base","sap_fiori_3",Nr),M("@ui5/webcomponents","sap_fiori_3",Or);const ld={languageAware:!0,properties:{type:{type:od,defaultValue:od.Active},active:{type:Boolean},actionable:{type:Boolean},_mode:{type:zu,defaultValue:zu.None,noAttribute:!0}},events:{"detail-click":{},_press:{},_focused:{},"_selection-requested":{}}};class ud extends sd{static get metadata(){return ld}static get styles(){return[sd.styles,".ui5-hidden-text{position:absolute;clip:rect(1px,1px,1px,1px);user-select:none;left:0;top:0}:host([actionable]){cursor:pointer}:host([selected][actionable]:not([active]):hover){background:var(--sapList_Hover_SelectionBackground)}:host([active][actionable]),:host([selected][active][actionable]){background:var(--sapList_Active_Background)}:host([actionable]:not([active]):not([selected]):hover){background:var(--sapList_Hover_Background)}:host([active][actionable]) .ui5-li-root.ui5-li--focusable .ui5-li-content:focus,:host([active][actionable]) .ui5-li-root.ui5-li--focusable:focus{outline-color:var(--sapContent_ContrastFocusColor)}:host([active][actionable]) .ui5-li-root .ui5-li-icon{color:var(--sapList_Active_TextColor)}:host([active][actionable]) .ui5-li-desc,:host([active][actionable]) .ui5-li-info,:host([active][actionable]) .ui5-li-title{color:var(--sapList_Active_TextColor)}:host([info-state=Warning]) .ui5-li-info{color:var(--sapCriticalTextColor)}:host([info-state=Success]) .ui5-li-info{color:var(--sapPositiveTextColor)}:host([info-state=Error]) .ui5-li-info{color:var(--sapNegativeTextColor)}:host([info-state=Information]) .ui5-li-info{color:var(--sapInformativeTextColor)}:host([has-title][description]){height:5rem}:host([has-title][description]) .ui5-li-title{padding-bottom:.375rem}.ui5-li-title-wrapper{display:flex;flex-direction:column;flex:auto;min-width:1px;line-height:normal}.ui5-li-title{color:var(--sapTextColor);font-size:var(--_ui5_list_item_title_size)}.ui5-li-desc,.ui5-li-title{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.ui5-li-desc{color:var(--sapContent_LabelColor);font-size:var(--sapFontSize)}.ui5-li-info{margin:0 .25rem;color:var(--sapNeutralTextColor);font-size:.875rem;flex-shrink:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.ui5-li-img{width:var(--_ui5_list_item_img_size);min-width:var(--_ui5_list_item_img_size);height:var(--_ui5_list_item_img_size);min-height:var(--_ui5_list_item_img_size);margin:var(--_ui5_list_item_img_margin)}.ui5-li-icon{min-width:1rem;min-height:1rem;color:var(--sapContent_NonInteractiveIconColor);padding-right:.5rem}.ui5-li-content{display:flex;align-items:center;flex:auto;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;pointer-events:none}.ui5-li-deletebtn{display:flex;align-items:center}.ui5-li-multisel-cb,.ui5-li-singlesel-radiobtn{flex-shrink:0}:host ui5-checkbox.ui5-li-singlesel-radiobtn{margin-right:var(--_ui5_list_item_cb_margin_right)}:host [dir=rtl] .ui5-li-icon{padding-left:.5rem;padding-right:0}:host [dir=rtl] .ui5-li-img{margin:.5rem 0 .5rem .75rem}"]}constructor(){super(),this.deactivateByKey=e=>{ir(e)&&this.deactivate()},this.deactivate=()=>{this.active&&(this.active=!1)},this.i18nBundle=br("@ui5/webcomponents")}onBeforeRendering(...e){this.actionable=this.type===od.Active&&this._mode!==zu.Delete}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){super._onkeydown(e);const t=this.type===od.Active;rr(e)&&e.preventDefault(),(rr(e)||ir(e))&&t&&this.activate(),ir(e)&&this.fireItemPress(e)}_onkeyup(e){(rr(e)||ir(e))&&this.deactivate(),rr(e)&&this.fireItemPress(e)}_onmousedown(e){"button"!==e.isMarked&&this.activate()}_onmouseup(e){"button"!==e.isMarked&&this.deactivate()}_ontouchstart(e){this._onmousedown(e)}_ontouchend(e){this._onmouseup(e)}_onfocusout(){super._onfocusout(),this.deactivate()}_onclick(e){"button"!==e.isMarked&&this.fireItemPress(e)}onMultiSelectionComponentPress(e){this.isInactive||this.fireEvent("_selection-requested",{item:this,selected:e.target.checked,selectionComponentPressed:!0})}onSingleSelectionComponentPress(e){this.isInactive||this.fireEvent("_selection-requested",{item:this,selected:!e.target.selected,selectionComponentPressed:!0})}activate(){this.type===od.Active&&(this.active=!0)}onDelete(e){this.fireEvent("_selection-requested",{item:this,selectionComponentPressed:!1})}onDetailClick(e){this.fireEvent("detail-click",{item:this,selected:this.selected})}fireItemPress(e){this.isInactive||this.fireEvent("_press",{item:this,selected:this.selected,key:e.key})}get isInactive(){return this.type===od.Inactive||this.type===od.Detail}get placeSelectionElementBefore(){return this._mode===zu.MultiSelect||this._mode===zu.SingleSelectBegin}get placeSelectionElementAfter(){return!this.placeSelectionElementBefore&&(this._mode===zu.SingleSelectEnd||this._mode===zu.Delete)}get modeSingleSelect(){return[zu.SingleSelectBegin,zu.SingleSelectEnd,zu.SingleSelect].includes(this._mode)}get modeMultiSelect(){return this._mode===zu.MultiSelect}get modeDelete(){return this._mode===zu.Delete}get typeDetail(){return this.type===od.Detail}get typeActive(){return this.type===od.Active}get ariaSelected(){if(this.modeMultiSelect)return this.selected}get deleteText(){return this.i18nBundle.getText(Wr)}get _accInfo(){return{role:"option",ariaExpanded:void 0,ariaLevel:void 0,ariaLabel:this.i18nBundle.getText(Qr)}}static async onDefine(){await Promise.all([Te("@ui5/webcomponents")])}}const dd=e=>Pi`<li tabindex="${Cr(e._tabIndex)}" class="${Ri(e.classes.main)}" dir="${Cr(e.effectiveDir)}" @focusin="${e._onfocusin}" @focusout="${e._onfocusout}" @keyup="${e._onkeyup}" @keydown="${e._onkeydown}" @mouseup="${e._onmouseup}" @mousedown="${e._onmousedown}" @touchstart="${e._ontouchstart}" @touchend="${e._ontouchend}" @click="${e._onclick}" aria-selected="${Cr(e.ariaSelected)}" role="${Cr(e._accInfo.role)}" aria-expanded="${Cr(e._accInfo.ariaExpanded)}" aria-level="${Cr(e._accInfo.ariaLevel)}" style="list-style-type: none;">${e.placeSelectionElementBefore?cd(e):void 0}<div id="${Cr(e._id)}-content" class="ui5-li-content">${e.displayImage?md(e):void 0}${e.displayIconBegin?gd(e):void 0}<div class="ui5-li-title-wrapper">${e.textContent.length?fd():void 0}${e.description?vd(e):void 0}${e.typeActive?void 0:yd(e)}</div>${e.info?bd(e):void 0}</div>${e.displayIconEnd?wd(e):void 0}${e.typeDetail?kd(e):void 0}${e.placeSelectionElementAfter?xd(e):void 0}</li> `,cd=e=>Pi`${e.modeSingleSelect?hd(e):void 0}${e.modeMultiSelect?pd(e):void 0}${e.modeDelete?_d(e):void 0}`,hd=e=>Pi`<ui5-radiobutton ?disabled="${e.isInactive}" tabindex="-1" id="${Cr(e._id)}-singleSelectionElement" class="ui5-li-singlesel-radiobtn" ?selected="${e.selected}" @click="${e.onSingleSelectionComponentPress}"></ui5-radiobutton>`,pd=e=>Pi`<ui5-checkbox ?disabled="${e.isInactive}" tabindex="-1" id="${Cr(e._id)}-multiSelectionElement" class="ui5-li-multisel-cb" ?checked="${e.selected}" aria-label="${Cr(e._accInfo.ariaLabel)}" @click="${e.onMultiSelectionComponentPress}"></ui5-checkbox>`,_d=e=>Pi`<div class="ui5-li-deletebtn"><ui5-button id="${Cr(e._id)}-deleteSelectionElement" design="Transparent" icon="decline" @click="${e.onDelete}" title="${Cr(e.deleteText)}"></ui5-button></div>`,md=e=>Pi`<img part="img" src="${Cr(e.image)}" class="ui5-li-img">`,gd=e=>Pi`<ui5-icon part="icon" name="${Cr(e.icon)}" class="ui5-li-icon"></ui5-icon>`,fd=e=>Pi`<span part="title" class="ui5-li-title"><slot></slot></span>`,vd=e=>Pi`<span part="description" class="ui5-li-desc">${Cr(e.description)}</span>`,yd=e=>Pi`<span class="ui5-hidden-text">${Cr(e.type)}</span>`,bd=e=>Pi`<span part="info" class="ui5-li-info">${Cr(e.info)}</span>`,wd=e=>Pi`<ui5-icon part="icon" name="${Cr(e.icon)}" class="ui5-li-icon"></ui5-icon>`,kd=e=>Pi`<div class="ui5-li-detailbtn"><ui5-button design="Transparent" icon="edit" @click="${e.onDetailClick}"></ui5-button></div>`,xd=e=>Pi`${e.modeSingleSelect?Cd(e):void 0}${e.modeMultiSelect?Sd(e):void 0}${e.modeDelete?Td(e):void 0}`,Cd=e=>Pi`<ui5-radiobutton ?disabled="${e.isInactive}" tabindex="-1" id="${Cr(e._id)}-singleSelectionElement" class="ui5-li-singlesel-radiobtn" ?selected="${e.selected}" @click="${e.onSingleSelectionComponentPress}"></ui5-radiobutton>`,Sd=e=>Pi`<ui5-checkbox ?disabled="${e.isInactive}" tabindex="-1" id="${Cr(e._id)}-multiSelectionElement" class="ui5-li-multisel-cb" ?checked="${e.selected}" aria-label="${Cr(e._accInfo.ariaLabel)}" @click="${e.onMultiSelectionComponentPress}"></ui5-checkbox>`,Td=e=>Pi`<div class="ui5-li-deletebtn"><ui5-button id="${Cr(e._id)}-deleteSelectionElement" design="Transparent" icon="decline" @click="${e.onDelete}" title="${Cr(e.deleteText)}"></ui5-button></div>`,Dd={tag:"ui5-li",properties:{description:{type:String},icon:{type:String},iconEnd:{type:Boolean},image:{type:String},info:{type:String},infoState:{type:Pa,defaultValue:Pa.None},hasTitle:{type:Boolean}},slots:{default:{type:Node}}};class Pd extends ud{static get template(){return dd}static get metadata(){return Dd}onBeforeRendering(...e){super.onBeforeRendering(...e),this.hasTitle=!!this.textContent}get displayImage(){return!!this.image}get displayIconBegin(){return this.icon&&!this.iconEnd}get displayIconEnd(){return this.icon&&this.iconEnd}static async onDefine(){await Lr.define()}}Pd.define();const Id=e=>Pi`<div class="ui5-select-root" dir="${Cr(e.effectiveDir)}" tabindex="${Cr(e.tabIndex)}" id="${Cr(e._id)}-select" role="button" aria-haspopup="listbox" aria-labelledby="${Cr(e._id)}-label" aria-describedby="${Cr(e.valueStateTextId)}" aria-disabled="${Cr(e.isDisabled)}" @keydown="${e._onkeydown}" @keyup="${e._onkeyup}" @focusin="${e._onfocusin}" @focusout="${e._onfocusout}" @click="${e._toggleRespPopover}"><div class="ui5-select-label-root"><ui5-label id="${Cr(e._id)}-label" for="${Cr(e._id)}-select">${Cr(e._text)}</ui5-label></div><ui5-icon name="slim-arrow-down" input-icon ?pressed="${e._iconPressed}" dir="${Cr(e.effectiveDir)}"></ui5-icon>${e.hasValueState?Md(e):void 0}<slot name="formSupport"></slot></div>`,Md=e=>Pi`<span id="${Cr(e._id)}-valueStateDesc" class="ui5-hidden-text">${Cr(e.valueStateText)}</span>`,Bd=e=>Pi`${e.options?Ed(e):void 0} `,Ed=e=>Pi`<ui5-responsive-popover no-arrow _disable-initial-focus content-only-on-desktop placement-type="Bottom" horizontal-align="Left" @ui5-after-open="${Cr(e._applyFocusAfterOpen)}" @ui5-before-open="${Cr(e._beforeOpen)}" @ui5-after-close="${Cr(e._afterClose)}" @keydown="${e._onkeydown}"><div slot="header" class="ui5-responsive-popover-header"><div class="row"><span>${Cr(e._headerTitleText)}</span><ui5-button class="ui5-responsive-popover-close-btn" icon="decline" design="Transparent" @click="${e._toggleRespPopover}"></ui5-button></div></div><ui5-list mode="SingleSelectAuto" separators="None" @keydown="${e._handlePickerKeydown}" @ui5-selection-change="${Cr(e._handleSelectionChange)}" @ui5-item-press="${Cr(e._handleItemPress)}">${$i(e._syncedOptions,(e,t)=>e._id||t,(e,t)=>Fd(e))}</ui5-list></ui5-responsive-popover>`,Fd=(e,t,i)=>Pi`<ui5-li ?selected="${e.selected}" icon="${Cr(e.icon)}" id="${Cr(e.id)}-li">${Cr(e.textContent)}</ui5-li>`;M("@ui5/webcomponents-theme-base","sap_fiori_3",Nr),M("@ui5/webcomponents","sap_fiori_3",Or);const Ad={tag:"ui5-select",languageAware:!0,managedSlots:!0,slots:{default:{propertyName:"options",type:HTMLElement,listenFor:{include:["*"]}}},properties:{disabled:{type:Boolean},name:{type:String},valueState:{type:Pa,defaultValue:Pa.None},_text:{type:String,noAttribute:!0},_iconPressed:{type:Boolean,noAttribute:!0},opened:{type:Boolean},focused:{type:Boolean}},events:{change:{detail:{selectedOption:{}}}}};(class extends Yt{static get metadata(){return Ad}static get render(){return Vi}static get template(){return Id}static get staticAreaTemplate(){return Bd}static get styles(){return"[input-icon]{color:var(--sapContent_IconColor);cursor:pointer;outline:none;padding:var(--_ui5_input_icon_padding);border-left:1px solid transparent;min-width:1rem;min-height:1rem}[input-icon][pressed]{background:var(--sapButton_Selected_Background);color:var(--sapButton_Active_TextColor)}[input-icon]:active{background-color:var(--sapButton_Active_Background);color:var(--sapButton_Active_TextColor)}[input-icon]:not([pressed]):not(:active):hover{background:var(--sapButton_Lite_Hover_Background)}[input-icon]:hover{border-left:var(--_ui5_select_hover_icon_left_border)}[input-icon][dir=rtl]:hover{border-left:none;border-right:var(--_ui5_select_hover_icon_left_border)}[input-icon][dir=rtl]{border-left:none;border-right:1px solid transparent}.ui5-hidden-text{position:absolute;clip:rect(1px,1px,1px,1px);user-select:none;left:0;top:0}:host(:not([hidden])){display:inline-block}:host{width:var(--_ui5_input_width);min-width:var(--_ui5_input_width);height:var(--_ui5_input_height);color:var(--sapField_TextColor);font-size:var(--sapFontSize);font-family:var(--sapFontFamily);font-style:normal;background-color:var(--sapField_Background);border:1px solid var(--sapField_BorderColor);border-radius:var(--_ui5_input_wrapper_border_radius);box-sizing:border-box}:host([focused]){outline:var(--_ui5_input_focus_border_width) dotted var(--sapContent_FocusColor);outline-offset:-3px}:host([value-state]:not([value-state=None])[focused]){outline:var(--_ui5_input_focus_border_width) dotted var(--sapContent_FocusColor);outline-offset:-4px}.ui5-input-root{width:100%;height:100%;background:transparent;display:inline-block;outline:none;box-sizing:border-box;color:inherit}:host([disabled]){opacity:var(--_ui5_input_disabled_opacity);cursor:default;pointer-events:none;background:var(--sapField_ReadOnly_Background);border-color:var(--sapField_ReadOnly_BorderColor);-webkit-text-fill-color:var(--sapContent_DisabledTextColor);color:var(--sapContent_DisabledTextColor)}[inner-input]{background:transparent;color:inherit;border:none;font-style:inherit;-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}[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}[inner-input]::-webkit-input-placeholder{font-style:italic;color:var(--sapField_PlaceholderTextColor)}:host([disabled]) [inner-input]::-moz-placeholder{visibility:hidden}:host([readonly]) [inner-input]::-moz-placeholder{visibility:hidden}[inner-input]::-moz-placeholder{font-style:italic;color:var(--sapField_PlaceholderTextColor)}:host([disabled]) [inner-input]:-ms-input-placeholder{visibility:hidden}:host([readonly]) [inner-input]:-ms-input-placeholder{visibility:hidden}[inner-input]:-ms-input-placeholder{font-style:italic;color:var(--sapField_PlaceholderTextColor)}.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}:host([readonly]){border-color:var(--sapField_ReadOnly_BorderColor);background:var(--sapField_ReadOnly_Background)}:host(:not([value-state]):not([readonly]):hover){background-color:var(--sapField_Hover_Background);border:1px solid var(--sapField_Hover_BorderColor)}:host([value-state=None]:not([readonly]):hover){background-color:var(--sapField_Hover_Background);border:1px solid var(--sapField_Hover_BorderColor)}:host([value-state]:not([value-state=None])){border-width:var(--_ui5_input_state_border_width)}:host([value-state=Error]) [inner-input],:host([value-state=Warning]) [inner-input]{font-style:var(--_ui5_input_error_warning_font_style)}:host([value-state=Error]) [inner-input]{font-weight:var(--_ui5_input_error_font_weight)}:host([value-state=Error]:not([readonly])){background-color:var(--sapField_InvalidBackground);border-color:var(--sapField_InvalidColor)}:host([value-state=Error]:not([readonly]):not([disabled])),:host([value-state=Information]:not([readonly]):not([disabled])),:host([value-state=Warning]:not([readonly]):not([disabled])){border-style:var(--_ui5_input_error_warning_border_style)}:host([value-state=Warning]:not([readonly])){background-color:var(--sapField_WarningBackground);border-color:var(--sapField_WarningColor)}:host([value-state=Success]:not([readonly])){background-color:var(--sapField_SuccessBackground);border-color:var(--sapField_SuccessColor);border-width:1px}:host([value-state=Information]:not([readonly])){background-color:var(--sapField_InformationBackground);border-color:var(--sapField_InformationColor);border-width:var(--_ui5-input-information_border_width)}[inner-input]::-ms-clear{height:0;width:0}.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]){padding:var(--_ui5_input_icon_padding)}.ui5-select-root{width:100%;height:100%;display:flex;outline:none;cursor:pointer;overflow:hidden;box-shadow:var(--sapUiContentShadow1)}.ui5-select-label-root{display:inline-flex;align-items:center;flex-shrink:1;flex-grow:1;height:100%;min-width:1rem;padding-left:.5rem}.ui5-select-label-root ui5-label{cursor:pointer}:host [dir=rtl].ui5-select-root .ui5-select-label-root{padding-left:0;padding-right:.5rem}:host(:not([disabled])){cursor:pointer}"}static get staticAreaStyles(){return ln}constructor(){super(),this._syncedOptions=[],this._selectedIndex=-1,this._selectedIndexBeforeOpen=-1,this._escapePressed=!1,this._lastSelectedOption=null,this.i18nBundle=br("@ui5/webcomponents")}onBeforeRendering(){this._syncSelection(),this._enableFormSupport()}_onfocusin(){this.focused=!0}_onfocusout(){this.focused=!1}get _isPickerOpen(){return this.responsivePopover&&this.responsivePopover.opened}async _respPopover(){this._iconPressed=!0;return(await this.getStaticAreaItemDomRef()).querySelector("ui5-responsive-popover")}get selectedOption(){return this.options.find(e=>e.selected)}async _toggleRespPopover(){this.responsivePopover=await this._respPopover(),this.disabled||(this.updateStaticAreaItemContentDensity(),this._isPickerOpen?this.responsivePopover.close():this.responsivePopover.open(this))}_syncSelection(){let e=-1;const t=this.options.map((t,i)=>(t.selected&&(e=i),t.selected=!1,{selected:!1,icon:t.icon,value:t.value,textContent:t.textContent,id:t._id}));e>-1?(t[e].selected=!0,this.options[e].selected=!0,this._text=t[e].textContent,this._selectedIndex=e):(this._text="",this._selectedIndex=-1),-1===e&&t[0]&&(t[0].selected=!0,this.options[0].selected=!0,this._selectedIndex=0,this._text=this.options[0].textContent),this._syncedOptions=t}_enableFormSupport(){const e=c("FormSupport");e?e.syncNativeHiddenInput(this,(e,t)=>{t.disabled=e.disabled,t.value=e._currentlySelectedOption.value}):this.name&&console.warn('In order for the "name" property to have effect, you should also: import "@ui5/webcomponents/dist/features/InputElementsFormSupport.js";')}_onkeydown(e){(ur(e)||dr(e))&&this.responsivePopover&&this.responsivePopover.opened&&this.responsivePopover.close(),cr(e)&&(e.preventDefault(),this._toggleRespPopover()),rr(e)&&e.preventDefault(),this._isPickerOpen||this._handleArrowNavigation(e,!0)}_onkeyup(e){rr(e)&&!this._isPickerOpen&&this._toggleRespPopover()}_getSelectedItemIndex(e){return[].indexOf.call(e.parentElement.children,e)}_select(e){this.options[this._selectedIndex].selected=!1,this._selectedIndex=e,this.options[e].selected=!0}_handleItemPress(e){const t=e.detail.item,i=this._getSelectedItemIndex(t);this._select(i),this._toggleRespPopover()}_handleSelectionChange(e){const t=e.detail.selectedItems[0],i=this._getSelectedItemIndex(t);this._select(i)}_applyFocusAfterOpen(){if(!this._currentlySelectedOption)return;const e=this.responsivePopover.querySelector(`#${this._currentlySelectedOption._id}-li`);e.parentElement._itemNavigation.currentIndex=this._selectedIndex,e&&e.focus()}_handlePickerKeydown(e){lr(e)&&this._isPickerOpen&&(this._escapePressed=!0),(ir(e)||rr(e))&&(this._shouldClosePopover=!0)}_handleArrowNavigation(e,t){let i=-1;const r=sr(e),a=nr(e);(r||a)&&(e.preventDefault(),i=r?this._getNextOptionIndex():this._getPreviousOptionIndex(),this.options[this._selectedIndex].selected=!1,this.options[i].selected=!0,this._selectedIndex=-1===i?this._selectedIndex:i,t&&this._fireChangeEvent(this.options[i]))}_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]}_afterClose(){this._iconPressed=!1,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])}_fireChangeEvent(e){this.fireEvent("change",{selectedOption:e}),this.selectedItem=e,this.fireEvent("selected-item-changed")}get valueStateTextMappings(){const e=this.i18nBundle;return{Success:e.getText(ua),Information:e.getText(la),Error:e.getText(na),Warning:e.getText(sa)}}get valueStateText(){return this.valueStateTextMappings[this.valueState]}get hasValueState(){return this.valueState!==Pa.None}get valueStateTextId(){return this.hasValueState?this._id+"-valueStateDesc":void 0}get isDisabled(){return this.disabled||void 0}get _headerTitleText(){return this.i18nBundle.getText(qr)}get _currentSelectedItem(){return this.shadowRoot.querySelector(`#${this.options[this._selectedIndex]._id}-li`)}get _currentlySelectedOption(){return this.options[this._selectedIndex]}get tabIndex(){return this.disabled&&this.responsivePopover&&this.responsivePopover.opened?"-1":"0"}static async onDefine(){await Promise.all([$u.define(),Ba.define(),Ys.define(),rd.define(),Pd.define(),Lr.define()])}}).define();const Nd={ar:"sap/ui/integration/thirdparty/webcomponents/ar.43441c1da168c24d.json",ar_EG:"sap/ui/integration/thirdparty/webcomponents/ar_EG.2c9d7bc8c6cc480e.json",ar_SA:"sap/ui/integration/thirdparty/webcomponents/ar_SA.5a58dac7851f3491.json",bg:"sap/ui/integration/thirdparty/webcomponents/bg.ed8d32010cf321a6.json",ca:"sap/ui/integration/thirdparty/webcomponents/ca.e7ad42298985cd11.json",cs:"sap/ui/integration/thirdparty/webcomponents/cs.9c679acdc4b03e38.json",da:"sap/ui/integration/thirdparty/webcomponents/da.ba9951ef39b201a6.json",de:"sap/ui/integration/thirdparty/webcomponents/de.6caccc36abcd1ecf.json",de_AT:"sap/ui/integration/thirdparty/webcomponents/de_AT.0f4ffe37737725a0.json",de_CH:"sap/ui/integration/thirdparty/webcomponents/de_CH.c148cbc7ceb1a7a5.json",el:"sap/ui/integration/thirdparty/webcomponents/el.11c4c67dcb9fadcc.json",el_CY:"sap/ui/integration/thirdparty/webcomponents/el_CY.ed3bddd6e79dc343.json",en:"sap/ui/integration/thirdparty/webcomponents/en.c4465af466100b5b.json",en_AU:"sap/ui/integration/thirdparty/webcomponents/en_AU.5cb9fccc9ce24663.json",en_GB:"sap/ui/integration/thirdparty/webcomponents/en_GB.e31daeeb57c2f1d1.json",en_HK:"sap/ui/integration/thirdparty/webcomponents/en_HK.0a22405bb092bec2.json",en_IE:"sap/ui/integration/thirdparty/webcomponents/en_IE.6a062df10dabdb1c.json",en_IN:"sap/ui/integration/thirdparty/webcomponents/en_IN.bfd20b07e9079267.json",en_NZ:"sap/ui/integration/thirdparty/webcomponents/en_NZ.18303e8298e4752a.json",en_PG:"sap/ui/integration/thirdparty/webcomponents/en_PG.9f604c968f3ab77e.json",en_SG:"sap/ui/integration/thirdparty/webcomponents/en_SG.cc59a6a409e1617e.json",en_ZA:"sap/ui/integration/thirdparty/webcomponents/en_ZA.198f9641a502d660.json",es:"sap/ui/integration/thirdparty/webcomponents/es.c10bf80f473caf30.json",es_AR:"sap/ui/integration/thirdparty/webcomponents/es_AR.7708d7dd7a6d2a15.json",es_BO:"sap/ui/integration/thirdparty/webcomponents/es_BO.4a1616d9f3425fba.json",es_CL:"sap/ui/integration/thirdparty/webcomponents/es_CL.5637126713317a15.json",es_CO:"sap/ui/integration/thirdparty/webcomponents/es_CO.c9436572ca8f4da8.json",es_MX:"sap/ui/integration/thirdparty/webcomponents/es_MX.b4bce7dc951eb8f4.json",es_PE:"sap/ui/integration/thirdparty/webcomponents/es_PE.65f448fde1f0de13.json",es_UY:"sap/ui/integration/thirdparty/webcomponents/es_UY.9ec44031491e9b95.json",es_VE:"sap/ui/integration/thirdparty/webcomponents/es_VE.152233c7f57ecdab.json",et:"sap/ui/integration/thirdparty/webcomponents/et.bbc93e8a17832e8f.json",fa:"sap/ui/integration/thirdparty/webcomponents/fa.083b927b3586b3a3.json",fi:"sap/ui/integration/thirdparty/webcomponents/fi.1b4c89f38783556e.json",fr:"sap/ui/integration/thirdparty/webcomponents/fr.ddbb9df1e0bdb6ac.json",fr_BE:"sap/ui/integration/thirdparty/webcomponents/fr_BE.bf3609280b7b93ee.json",fr_CA:"sap/ui/integration/thirdparty/webcomponents/fr_CA.b64d0bcd23a5cd3e.json",fr_CH:"sap/ui/integration/thirdparty/webcomponents/fr_CH.349b221a02887244.json",fr_LU:"sap/ui/integration/thirdparty/webcomponents/fr_LU.ef7d7c8bb3328d28.json",he:"sap/ui/integration/thirdparty/webcomponents/he.d628e8bf13a8a2c8.json",hi:"sap/ui/integration/thirdparty/webcomponents/hi.cc34df8229f656f5.json",hr:"sap/ui/integration/thirdparty/webcomponents/hr.c920290f50173516.json",hu:"sap/ui/integration/thirdparty/webcomponents/hu.2d9fa4a9163cd7c0.json",id:"sap/ui/integration/thirdparty/webcomponents/id.163fdd2a7dbd1dd3.json",it:"sap/ui/integration/thirdparty/webcomponents/it.b5acbefdd6794dfc.json",it_CH:"sap/ui/integration/thirdparty/webcomponents/it_CH.ade4cbfb2e49424a.json",ja:"sap/ui/integration/thirdparty/webcomponents/ja.d882fade5c3e04b5.json",kk:"sap/ui/integration/thirdparty/webcomponents/kk.ab96b18c66676a99.json",ko:"sap/ui/integration/thirdparty/webcomponents/ko.a0d63a1580dcbefd.json",lt:"sap/ui/integration/thirdparty/webcomponents/lt.93bb00f91a74d613.json",lv:"sap/ui/integration/thirdparty/webcomponents/lv.3c272216d7d4d61c.json",ms:"sap/ui/integration/thirdparty/webcomponents/ms.e26b54937e5d1516.json",nb:"sap/ui/integration/thirdparty/webcomponents/nb.a6e9993590a73989.json",nl:"sap/ui/integration/thirdparty/webcomponents/nl.cac914c3529b7b01.json",nl_BE:"sap/ui/integration/thirdparty/webcomponents/nl_BE.a3ac6f9f99feba7b.json",pl:"sap/ui/integration/thirdparty/webcomponents/pl.2cc1c94da23f8c37.json",pt:"sap/ui/integration/thirdparty/webcomponents/pt.fc8dd9656bc363a4.json",pt_PT:"sap/ui/integration/thirdparty/webcomponents/pt_PT.be31b641eedfdb48.json",ro:"sap/ui/integration/thirdparty/webcomponents/ro.fc6a48bc63cf435e.json",ru:"sap/ui/integration/thirdparty/webcomponents/ru.77f0de46b3b490b1.json",ru_UA:"sap/ui/integration/thirdparty/webcomponents/ru_UA.4c4e0034fbd799c6.json",sk:"sap/ui/integration/thirdparty/webcomponents/sk.0d62a8cca83c1dec.json",sl:"sap/ui/integration/thirdparty/webcomponents/sl.7b303551cc238560.json",sr:"sap/ui/integration/thirdparty/webcomponents/sr.7fb9ac6ed054ff7d.json",sv:"sap/ui/integration/thirdparty/webcomponents/sv.6ea04dfd8d1c331b.json",th:"sap/ui/integration/thirdparty/webcomponents/th.8e8d734a66ed1c51.json",tr:"sap/ui/integration/thirdparty/webcomponents/tr.dbb9aa836fc4e3f5.json",uk:"sap/ui/integration/thirdparty/webcomponents/uk.4854089f0c12f77c.json",vi:"sap/ui/integration/thirdparty/webcomponents/vi.e6ffbde0643d7d75.json",zh_CN:"sap/ui/integration/thirdparty/webcomponents/zh_CN.6607a3e9e0901e53.json",zh_HK:"sap/ui/integration/thirdparty/webcomponents/zh_HK.1c2563d3e4dad56e.json",zh_SG:"sap/ui/integration/thirdparty/webcomponents/zh_SG.db7f1334eecf894d.json",zh_TW:"sap/ui/integration/thirdparty/webcomponents/zh_TW.a1d00dd87c58d8f0.json"};Object.entries(Nd).every(([e,t])=>"object"==typeof t)&&console.warn('Inefficient bundling detected: consider bundling CLDR imports as URLs instead of inlining them.\nSee rollup-plugin-url or webpack file-loader for more information.\nSuggested pattern: "assets\\/.*\\.json"'),Object.entries(Nd).forEach(([e,t])=>{var i;"object"==typeof t?(i=t,pn[e]=i):((e,t)=>{_n[e]=t})(e,t)});var Od="sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css.6c6e759e0d3534d0.json",$d="sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css.dfd19a1252497415.json",Ld="sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css.e2ac94de83159e1e.json",Rd="sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css.e19065174fdd4592.json",zd="sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css.966b2e43c0966351.json",Hd="sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css.8cc66e917327b7a4.json";const Ud=e=>"object"==typeof e;(Ud(Od)||Ud($d)||Ud(Ld)||Ud(Rd)||Ud(zd)||Ud(Hd))&&console.warn('Inefficient bundling detected: consider bundling theme properties imports as URLs instead of inlining them.\nSee rollup-plugin-url or webpack file-loader for more information.\nSuggested pattern: "assets\\/.*\\.json"'),M("@ui5/webcomponents-theme-base","sap_belize",Od),M("@ui5/webcomponents-theme-base","sap_belize_hcb",$d),M("@ui5/webcomponents-theme-base","sap_belize_hcw",Ld),M("@ui5/webcomponents-theme-base","sap_fiori_3_dark",Rd),M("@ui5/webcomponents-theme-base","sap_fiori_3_hcb",zd),M("@ui5/webcomponents-theme-base","sap_fiori_3_hcw",Hd);var jd="sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css.97725b2cf4e77494.json",Vd="sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css.52d78e00faad9126.json",Wd="sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css.def3978aa5de7b11.json",Yd="sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css.34f9ef46a8f6a852.json",qd="sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css.d164773ecb392b28.json",Gd="sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css.b1bf75f0b850363c.json";const Jd=e=>"object"==typeof e;(Jd(jd)||Jd(Vd)||Jd(Wd)||Jd(Yd)||Jd(qd)||Jd(Gd))&&console.warn('Inefficient bundling detected: consider bundling theme properties imports as URLs instead of inlining them.\nSee rollup-plugin-url or webpack file-loader for more information.\nSuggested pattern: "assets\\/.*\\.json"'),M("@ui5/webcomponents","sap_belize",jd),M("@ui5/webcomponents","sap_belize_hcb",Vd),M("@ui5/webcomponents","sap_belize_hcw",Wd),M("@ui5/webcomponents","sap_fiori_3_dark",Yd),M("@ui5/webcomponents","sap_fiori_3_hcb",qd),M("@ui5/webcomponents","sap_fiori_3_hcw",Gd);const Xd={ar:"sap/ui/integration/thirdparty/webcomponents/messagebundle_ar.d20c665dc46a6f9b.json",bg:"sap/ui/integration/thirdparty/webcomponents/messagebundle_bg.38428028ff3b1869.json",ca:"sap/ui/integration/thirdparty/webcomponents/messagebundle_ca.c46423cc94896604.json",cs:"sap/ui/integration/thirdparty/webcomponents/messagebundle_cs.d9d68b2690954b4e.json",da:"sap/ui/integration/thirdparty/webcomponents/messagebundle_da.1189e997523b89f6.json",de:"sap/ui/integration/thirdparty/webcomponents/messagebundle_de.1edf86f620dd657a.json",el:"sap/ui/integration/thirdparty/webcomponents/messagebundle_el.b0d02877b9366e9a.json",es:"sap/ui/integration/thirdparty/webcomponents/messagebundle_es.43fc364a8be37449.json",et:"sap/ui/integration/thirdparty/webcomponents/messagebundle_et.8f9abcfab5eb10c2.json",fi:"sap/ui/integration/thirdparty/webcomponents/messagebundle_fi.6fc14fd0d16cc223.json",fr:"sap/ui/integration/thirdparty/webcomponents/messagebundle_fr.c686ab9036b91d78.json",hi:"sap/ui/integration/thirdparty/webcomponents/messagebundle_hi.8b8cbc4fb282adf6.json",hr:"sap/ui/integration/thirdparty/webcomponents/messagebundle_hr.bb811aa76359724a.json",hu:"sap/ui/integration/thirdparty/webcomponents/messagebundle_hu.18417ced7dce8cf7.json",it:"sap/ui/integration/thirdparty/webcomponents/messagebundle_it.554f904c106ab069.json",iw:"sap/ui/integration/thirdparty/webcomponents/messagebundle_iw.487febe0c5c504ff.json",ja:"sap/ui/integration/thirdparty/webcomponents/messagebundle_ja.68cf1fa9f03cd6c3.json",kk:"sap/ui/integration/thirdparty/webcomponents/messagebundle_kk.36e63b8f9e1fd98f.json",ko:"sap/ui/integration/thirdparty/webcomponents/messagebundle_ko.fb000c7a35009d21.json",lt:"sap/ui/integration/thirdparty/webcomponents/messagebundle_lt.6acd357e3eb3f54e.json",lv:"sap/ui/integration/thirdparty/webcomponents/messagebundle_lv.3ffdda1a20bc15ec.json",ms:"sap/ui/integration/thirdparty/webcomponents/messagebundle_ms.218aa30a3e8f58fa.json",nl:"sap/ui/integration/thirdparty/webcomponents/messagebundle_nl.f753744c7e08b3a5.json",no:"sap/ui/integration/thirdparty/webcomponents/messagebundle_no.385f0fc9f2e49ab5.json",pl:"sap/ui/integration/thirdparty/webcomponents/messagebundle_pl.6c42672479ad9687.json",pt:"sap/ui/integration/thirdparty/webcomponents/messagebundle_pt.ede162cbf79f7fca.json",ro:"sap/ui/integration/thirdparty/webcomponents/messagebundle_ro.d3f32654c57588ea.json",ru:"sap/ui/integration/thirdparty/webcomponents/messagebundle_ru.0ec083b64484a12d.json",sh:"sap/ui/integration/thirdparty/webcomponents/messagebundle_sh.98cd3e4299919a30.json",sk:"sap/ui/integration/thirdparty/webcomponents/messagebundle_sk.fddb8b9e7b70fc1d.json",sl:"sap/ui/integration/thirdparty/webcomponents/messagebundle_sl.c55d5f817482ea06.json",sv:"sap/ui/integration/thirdparty/webcomponents/messagebundle_sv.6d855a11d20b4335.json",th:"sap/ui/integration/thirdparty/webcomponents/messagebundle_th.e791b9a81f16120c.json",tr:"sap/ui/integration/thirdparty/webcomponents/messagebundle_tr.ce83741e39606b55.json",uk:"sap/ui/integration/thirdparty/webcomponents/messagebundle_uk.e1ea822764025a5a.json",vi:"sap/ui/integration/thirdparty/webcomponents/messagebundle_vi.7ee7339211750379.json",zh_CN:"sap/ui/integration/thirdparty/webcomponents/messagebundle_zh_CN.0cfd71faba640211.json",zh_TW:"sap/ui/integration/thirdparty/webcomponents/messagebundle_zh_TW.bc718e0187728a16.json"};Object.entries(Xd).every(([e,t])=>"object"==typeof t)&&console.warn('Inefficient bundling detected: consider bundling i18n imports as URLs instead of inlining them.\nSee rollup-plugin-url or webpack file-loader for more information.\nSuggested pattern: "assets\\/.*\\.json"'),Se("@ui5/webcomponents",Xd);var Qd=Xn.extend("sap.ui.core.date.Buddhist",{constructor:function(){var e=arguments;e.length>1&&(e=ec(e)),this.oDate=this.createDate(Date,e),this.sCalendarType=On.Buddhist}});function Zd(e){var t=Xn.getEraStartDate(On.Buddhist,0).year,i=e.year-t+1;return e.year<1941&&e.month<3&&(i-=1),null===e.year&&(i=void 0),{year:i,month:e.month,day:e.day}}function Kd(e){var t=Xn.getEraStartDate(On.Buddhist,0).year,i=e.year+t-1;return i<1941&&e.month<3&&(i+=1),null===e.year&&(i=void 0),{year:i,month:e.month,day:e.day}}function ec(e){var t;return t=Kd({year:e[0],month:e[1],day:void 0!==e[2]?e[2]:1}),e[0]=t.year,e}Qd.UTC=function(){var e=ec(arguments);return Date.UTC.apply(Date,e)},Qd.now=function(){return Date.now()},Qd.prototype._getBuddhist=function(){return Zd({year:this.oDate.getFullYear(),month:this.oDate.getMonth(),day:this.oDate.getDate()})},Qd.prototype._setBuddhist=function(e){var t=Kd(e);return this.oDate.setFullYear(t.year,t.month,t.day)},Qd.prototype._getUTCBuddhist=function(){return Zd({year:this.oDate.getUTCFullYear(),month:this.oDate.getUTCMonth(),day:this.oDate.getUTCDate()})},Qd.prototype._setUTCBuddhist=function(e){var t=Kd(e);return this.oDate.setUTCFullYear(t.year,t.month,t.day)},Qd.prototype.getYear=function(){return this._getBuddhist().year},Qd.prototype.getFullYear=function(){return this._getBuddhist().year},Qd.prototype.getUTCFullYear=function(){return this._getUTCBuddhist().year},Qd.prototype.setYear=function(e){var t=this._getBuddhist();return t.year=e,this._setBuddhist(t)},Qd.prototype.setFullYear=function(e,t,i){var r=this._getBuddhist();return r.year=e,void 0!==t&&(r.month=t),void 0!==i&&(r.day=i),this._setBuddhist(r)},Qd.prototype.setUTCFullYear=function(e,t,i){var r=this._getUTCBuddhist();return r.year=e,void 0!==t&&(r.month=t),void 0!==i&&(r.day=i),this._setUTCBuddhist(r)},Qd.prototype.getWeek=function(){return Xn.getWeekByDate(this.sCalendarType,this.oDate.getFullYear(),this.getMonth(),this.getDate())},Qd.prototype.getUTCWeek=function(){return Xn.getWeekByDate(this.sCalendarType,this.oDate.getUTCFullYear(),this.getUTCMonth(),this.getUTCDate())},Jn(On.Buddhist,Qd);var tc=Xn.extend("sap.ui.core.date.Islamic",{constructor:function(){var e=arguments;e.length>1&&(e=nc(e)),this.oDate=this.createDate(Date,e),this.sCalendarType=On.Islamic}});tc.UTC=function(){var e=nc(arguments);return Date.UTC.apply(Date,e)},tc.now=function(){return Date.now()};var ic=null,rc=["A","B"];function ac(e){var t,i,r,a,o,n,s,l=e.year,u=e.month,d=e.day;if(n=0,u+1>2&&(n=hc(l)?-1:-2),s=1721424.5+365*(l-1)+Math.floor((l-1)/4)+-Math.floor((l-1)/100)+Math.floor((l-1)/400)+Math.floor((367*(u+1)-362)/12+n+d),o=(s=Math.floor(s)+.5)-1948439.5,(a=Math.floor(o/29.530588853))<0)(i=a%12)<0&&(i+=12),r=o-dc(t=Math.floor(a/12)+1,i)+1;else{for(a++;uc(a)>o;)a--;r=o-uc(12*((t=Math.floor(a/12)+1)-1)+(i=a%12))+1}return{day:r,month:i,year:t}}function oc(e){var t,i,r,a,o,n=e.year,s=e.month,l=e.day+(n<1?dc(n,s):uc(12*(n-1)+s))+1948439.5-1,u=Math.floor(l-.5)+.5,d=u-1721425.5,c=Math.floor(d/146097),h=cc(d,146097),p=Math.floor(h/36524),_=cc(h,36524),m=Math.floor(_/1461),g=cc(_,1461),f=Math.floor(g/365),v=400*c+100*p+4*m+f;return 4!=p&&4!=f&&v++,i=u-(1721425.5+365*(v-1)+Math.floor((v-1)/4)-Math.floor((v-1)/100)+Math.floor((v-1)/400)),a=0,a=u<1721424.5+365*(v-1)+Math.floor((v-1)/4)-Math.floor((v-1)/100)+Math.floor((v-1)/400)+Math.floor(739/12+(hc(v)?-1:-2)+1)?0:hc(v)?1:2,t=Math.floor((12*(i+a)+373)/367),r=1721424.5+365*(v-1)+Math.floor((v-1)/4)-Math.floor((v-1)/100)+Math.floor((v-1)/400),o=0,t>2&&(o=hc(v)?-1:-2),{day:u-(r+=Math.floor((367*t-362)/12+o+1))+1,month:t-1,year:v}}function nc(e){var t,i=Array.prototype.slice.call(e);return t=oc({year:e[0],month:e[1],day:void 0!==e[2]?e[2]:1}),i[0]=t.year,i[1]=t.month,i[2]=t.day,i}function sc(){var e,t,i;ic={},e=Tn.getConfiguration().getFormatSettings().getLegacyDateFormat(),i=e,e=-1!==rc.indexOf(i)?e:"A",(t=(t=Tn.getConfiguration().getFormatSettings().getLegacyDateCalendarCustomizing())||[]).length?(t.forEach((function(t){if(t.dateFormat===e){var i=lc(t.gregDate),r=(new Date(Date.UTC(i.year,i.month-1,i.day)).getTime()- -425215872e5)/864e5,a=12*((i=lc(t.islamicMonthStart)).year-1)+i.month-1;ic[a]=r}})),Ne.info("Working with date format: ["+e+"] and customization: "+JSON.stringify(t))):Ne.warning("No calendar customizations.")}function lc(e){return{year:parseInt(e.substr(0,4)),month:parseInt(e.substr(4,2)),day:parseInt(e.substr(6,2))}}function uc(e){ic||sc();var t=ic[e];t||(t=dc(Math.floor(e/12)+1,e%12));return t}function dc(e,t){return Math.ceil(29.5*t)+354*(e-1)+Math.floor((3+11*e)/30)}function cc(e,t){return e-t*Math.floor(e/t)}function hc(e){return!(e%400&&(e%4||!(e%100)))}tc.prototype._getIslamic=function(){return ac({day:this.oDate.getDate(),month:this.oDate.getMonth(),year:this.oDate.getFullYear()})},tc.prototype._setIslamic=function(e){var t=oc(e);return this.oDate.setFullYear(t.year,t.month,t.day)},tc.prototype._getUTCIslamic=function(){return ac({day:this.oDate.getUTCDate(),month:this.oDate.getUTCMonth(),year:this.oDate.getUTCFullYear()})},tc.prototype._setUTCIslamic=function(e){var t=oc(e);return this.oDate.setUTCFullYear(t.year,t.month,t.day)},tc.prototype.getDate=function(e){return this._getIslamic().day},tc.prototype.getMonth=function(){return this._getIslamic().month},tc.prototype.getYear=function(){return this._getIslamic().year-1400},tc.prototype.getFullYear=function(){return this._getIslamic().year},tc.prototype.setDate=function(e){var t=this._getIslamic();return t.day=e,this._setIslamic(t)},tc.prototype.setMonth=function(e,t){var i=this._getIslamic();return i.month=e,void 0!==t&&(i.day=t),this._setIslamic(i)},tc.prototype.setYear=function(e){var t=this._getIslamic();return t.year=e+1400,this._setIslamic(t)},tc.prototype.setFullYear=function(e,t,i){var r=this._getIslamic();return r.year=e,void 0!==t&&(r.month=t),void 0!==i&&(r.day=i),this._setIslamic(r)},tc.prototype.getUTCDate=function(e){return this._getUTCIslamic().day},tc.prototype.getUTCMonth=function(){return this._getUTCIslamic().month},tc.prototype.getUTCFullYear=function(){return this._getUTCIslamic().year},tc.prototype.setUTCDate=function(e){var t=this._getUTCIslamic();return t.day=e,this._setUTCIslamic(t)},tc.prototype.setUTCMonth=function(e,t){var i=this._getUTCIslamic();return i.month=e,void 0!==t&&(i.day=t),this._setUTCIslamic(i)},tc.prototype.setUTCFullYear=function(e,t,i){var r=this._getUTCIslamic();return r.year=e,void 0!==t&&(r.month=t),void 0!==i&&(r.day=i),this._setUTCIslamic(r)},Jn(On.Islamic,tc);var pc=Xn.extend("sap.ui.core.date.Japanese",{constructor:function(){var e=arguments;e.length>1&&(e=gc(e)),this.oDate=this.createDate(Date,e),this.sCalendarType=On.Japanese}});function _c(e){var t=Xn.getEraByDate(On.Japanese,e.year,e.month,e.day),i=Xn.getEraStartDate(On.Japanese,t).year;return{era:t,year:e.year-i+1,month:e.month,day:e.day}}function mc(e){return{year:Xn.getEraStartDate(On.Japanese,e.era).year+e.year-1,month:e.month,day:e.day}}function gc(e){var t,i=e[0];if("number"==typeof i){if(i>=100)return e;i=[Xn.getCurrentEra(On.Japanese),i]}else Array.isArray(i)||(i=[]);return t=mc({era:i[0],year:i[1],month:e[1],day:void 0!==e[2]?e[2]:1}),e[0]=t.year,e}pc.UTC=function(){var e=gc(arguments);return Date.UTC.apply(Date,e)},pc.now=function(){return Date.now()},pc.prototype._getJapanese=function(){return _c({year:this.oDate.getFullYear(),month:this.oDate.getMonth(),day:this.oDate.getDate()})},pc.prototype._setJapanese=function(e){var t=mc(e);return this.oDate.setFullYear(t.year,t.month,t.day)},pc.prototype._getUTCJapanese=function(){return _c({year:this.oDate.getUTCFullYear(),month:this.oDate.getUTCMonth(),day:this.oDate.getUTCDate()})},pc.prototype._setUTCJapanese=function(e){var t=mc(e);return this.oDate.setUTCFullYear(t.year,t.month,t.day)},pc.prototype.getYear=function(){return this._getJapanese().year},pc.prototype.getFullYear=function(){return this._getJapanese().year},pc.prototype.getEra=function(){return this._getJapanese().era},pc.prototype.getUTCFullYear=function(){return this._getUTCJapanese().year},pc.prototype.getUTCEra=function(){return this._getUTCJapanese().era},pc.prototype.setYear=function(e){var t=this._getJapanese();return t.year=e,this._setJapanese(t)},pc.prototype.setFullYear=function(e,t,i){var r=this._getJapanese();return r.year=e,void 0!==t&&(r.month=t),void 0!==i&&(r.day=i),this._setJapanese(r)},pc.prototype.setEra=function(e,t,i,r){var a=_c(Xn.getEraStartDate(On.Japanese,e));return void 0!==t&&(a.year=t),void 0!==i&&(a.month=i),void 0!==r&&(a.day=r),this._setJapanese(a)},pc.prototype.setUTCFullYear=function(e,t,i){var r=this._getUTCJapanese();return r.year=e,void 0!==t&&(r.month=t),void 0!==i&&(r.day=i),this._setUTCJapanese(r)},pc.prototype.setUTCEra=function(e,t,i,r){var a=_c(Xn.getEraStartDate(On.Japanese,e));return void 0!==t&&(a.year=t),void 0!==i&&(a.month=i),void 0!==r&&(a.day=r),this._setUTCJapanese(a)},pc.prototype.getWeek=function(){return Xn.getWeekByDate(this.sCalendarType,this.oDate.getFullYear(),this.getMonth(),this.getDate())},pc.prototype.getUTCWeek=function(){return Xn.getWeekByDate(this.sCalendarType,this.oDate.getUTCFullYear(),this.getUTCMonth(),this.getUTCDate())},Jn(On.Japanese,pc);var fc=Xn.extend("sap.ui.core.date.Persian",{constructor:function(){var e=arguments;e.length>1&&(e=bc(e)),this.oDate=this.createDate(Date,e),this.sCalendarType=On.Persian}});fc.UTC=function(){var e=bc(arguments);return Date.UTC.apply(Date,e)},fc.now=function(){return Date.now()};function vc(e){return function(e){var t,i,r,a=xc(e).year,o=a-621,n=wc(o),s=kc(a,3,n.march);if((r=e-s)>=0){if(r<=185)return i=1+Cc(r,31),t=Sc(r,31)+1,{year:o,month:i-1,day:t};r-=186}else o-=1,r+=179,1===n.leap&&(r+=1);return i=7+Cc(r,30),t=Sc(r,30)+1,{year:o,month:i-1,day:t}}(kc(e.year,e.month+1,e.day))}function yc(e){return xc(function(e,t,i){for(;t<1;)t+=12,e--;for(;t>12;)t-=12,e++;var r=wc(e);return kc(r.gy,3,r.march)+31*(t-1)-Cc(t,7)*(t-7)+i-1}(e.year,e.month+1,e.day))}function bc(e){var t,i=Array.prototype.slice.call(e);return"number"!=typeof e[0]||"number"!=typeof e[1]||void 0!==e[2]&&"number"!=typeof e[2]?(i[0]=NaN,i[1]=NaN,i[2]=NaN,i):(t=yc({year:e[0],month:e[1],day:void 0!==e[2]?e[2]:1}),i[0]=t.year,i[1]=t.month,i[2]=t.day,i)}function wc(e){var t,i,r,a,o,n,s=[-61,9,38,199,426,686,756,818,1111,1181,1210,1635,2060,2097,2192,2262,2324,2394,2456,3178],l=s.length,u=e+621,d=-14,c=s[0];for(n=1;n<l&&(i=(t=s[n])-c,!(e<t));n+=1)d=d+8*Cc(i,33)+Cc(Sc(i,33),4),c=t;return d=d+8*Cc(o=e-c,33)+Cc(Sc(o,33)+3,4),4===Sc(i,33)&&i-o==4&&(d+=1),a=20+d-(Cc(u,4)-Cc(3*(Cc(u,100)+1),4)-150),i-o<6&&(o=o-i+33*Cc(i+4,33)),-1===(r=Sc(Sc(o+1,33)-1,4))&&(r=4),{leap:r,gy:u,march:a}}function kc(e,t,i){var r=Cc(1461*(e+Cc(t-8,6)+100100),4)+Cc(153*Sc(t+9,12)+2,5)+i-34840408;return r=r-Cc(3*Cc(e+100100+Cc(t-8,6),100),4)+752}function xc(e){var t,i,r,a;return t=(t=4*e+139361631)+4*Cc(3*Cc(4*e+183187720,146097),4)-3908,i=5*Cc(Sc(t,1461),4)+308,r=Cc(Sc(i,153),5)+1,a=Sc(Cc(i,153),12)+1,{year:Cc(t,1461)-100100+Cc(8-a,6),month:a-1,day:r}}function Cc(e,t){return~~(e/t)}function Sc(e,t){return e-~~(e/t)*t}fc.prototype._getPersian=function(){return vc({day:this.oDate.getDate(),month:this.oDate.getMonth(),year:this.oDate.getFullYear()})},fc.prototype._setPersian=function(e){var t=yc(e);return this.oDate.setFullYear(t.year,t.month,t.day)},fc.prototype._getUTCPersian=function(){return vc({day:this.oDate.getUTCDate(),month:this.oDate.getUTCMonth(),year:this.oDate.getUTCFullYear()})},fc.prototype._setUTCPersian=function(e){var t=yc(e);return this.oDate.setUTCFullYear(t.year,t.month,t.day)},fc.prototype.getDate=function(e){return this._getPersian().day},fc.prototype.getMonth=function(){return this._getPersian().month},fc.prototype.getYear=function(){return this._getPersian().year-1300},fc.prototype.getFullYear=function(){return this._getPersian().year},fc.prototype.setDate=function(e){var t=this._getPersian();return t.day=e,this._setPersian(t)},fc.prototype.setMonth=function(e,t){var i=this._getPersian();return i.month=e,void 0!==t&&(i.day=t),this._setPersian(i)},fc.prototype.setYear=function(e){var t=this._getPersian();return t.year=e+1300,this._setPersian(t)},fc.prototype.setFullYear=function(e,t,i){var r=this._getPersian();return r.year=e,void 0!==t&&(r.month=t),void 0!==i&&(r.day=i),this._setPersian(r)},fc.prototype.getUTCDate=function(e){return this._getUTCPersian().day},fc.prototype.getUTCMonth=function(){return this._getUTCPersian().month},fc.prototype.getUTCFullYear=function(){return this._getUTCPersian().year},fc.prototype.setUTCDate=function(e){var t=this._getUTCPersian();return t.day=e,this._setUTCPersian(t)},fc.prototype.setUTCMonth=function(e,t){var i=this._getUTCPersian();return i.month=e,void 0!==t&&(i.day=t),this._setUTCPersian(i)},fc.prototype.setUTCFullYear=function(e,t,i){var r=this._getUTCPersian();return r.year=e,void 0!==t&&(r.month=t),void 0!==i&&(r.day=i),this._setUTCPersian(r)},Jn(On.Persian,fc);
|
|
43
|
+
* Copyright 2018 Google LLC
|
|
44
|
+
* SPDX-License-Identifier: BSD-3-Clause
|
|
45
|
+
*/class Pi extends xi{constructor(e){if(super(e),this.it=ti,e.type!==wi)throw Error(this.constructor.directiveName+"() can only be used in child bindings")}render(e){if(e===ti||null==e)return this.vt=void 0,this.it=e;if(e===ei)return e;if("string"!=typeof e)throw Error(this.constructor.directiveName+"() called with a non-string value");if(e===this.it)return this.vt;this.it=e;const t=[e];return t.raw=t,this.vt={_$litType$:this.constructor.resultType,strings:t,values:[]}}}Pi.directiveName="unsafeHTML",Pi.resultType=1;const Li=ki(Pi),Ni=(e,t,i,{host:o}={})=>{"string"==typeof i?e=vi`<style>${i}</style>${e}`:Array.isArray(i)&&i.length&&(e=vi`${i.map(e=>vi`<link type="text/css" rel="stylesheet" href="${e}">`)}${e}`),((e,t,i)=>{var o,r;const a=null!==(o=null==i?void 0:i.renderBefore)&&void 0!==o?o:t;let n=a._$litPart$;if(void 0===n){const e=null!==(r=null==i?void 0:i.renderBefore)&&void 0!==r?r:null;a._$litPart$=n=new li(t.insertBefore(Ht(),e),e,void 0,null!=i?i:{})}n._$AI(e)})(e,t,{host:o})},zi=(e,t,i)=>(e=>({_$litStatic$:e}))(i&&(t||[]).includes(e)?`${e}-${i}`:e),Oi=8,Hi=9,Ri=13,Ui=27,Vi=32,ji=33,Wi=34,qi=35,Yi=36,Gi=37,Xi=38,Zi=39,Ji=40,Ki=46,Qi=115,eo=e=>(e.key?"Enter"===e.key:e.keyCode===Ri)&&!$o(e),to=e=>(e.key?"Enter"===e.key:e.keyCode===Ri)&&Ao(e,!1,!1,!0),io=e=>(e.key?"Spacebar"===e.key||" "===e.key:e.keyCode===Vi)&&!$o(e),oo=e=>(e.key?"Spacebar"===e.key||" "===e.key:e.keyCode===Vi)&&Ao(e,!1,!1,!0),ro=e=>(e.key?"ArrowLeft"===e.key||"Left"===e.key:e.keyCode===Gi)&&!$o(e),ao=e=>(e.key?"ArrowRight"===e.key||"Right"===e.key:e.keyCode===Zi)&&!$o(e),no=e=>(e.key?"ArrowUp"===e.key||"Up"===e.key:e.keyCode===Xi)&&!$o(e),so=e=>(e.key?"ArrowDown"===e.key||"Down"===e.key:e.keyCode===Ji)&&!$o(e),lo=e=>(e.key?"ArrowUp"===e.key||"Up"===e.key:e.keyCode===Xi)&&Ao(e,!1,!1,!0),uo=e=>(e.key?"ArrowDown"===e.key||"Down"===e.key:e.keyCode===Ji)&&Ao(e,!1,!1,!0),co=e=>(e.key?"ArrowLeft"===e.key||"Left"===e.key:e.keyCode===Gi)&&Ao(e,!1,!1,!0),_o=e=>(e.key?"ArrowRight"===e.key||"Right"===e.key:e.keyCode===Zi)&&Ao(e,!1,!1,!0),ho=e=>(e.key?"Home"===e.key:e.keyCode===Yi)&&!$o(e),po=e=>(e.key?"End"===e.key:e.keyCode===qi)&&!$o(e),go=e=>(e.key?"Home"===e.key:e.keyCode===Yi)&&Ao(e,!0,!1,!1),mo=e=>(e.key?"End"===e.key:e.keyCode===qi)&&Ao(e,!0,!1,!1),fo=e=>(e.key?"Escape"===e.key||"Esc"===e.key:e.keyCode===Ui)&&!$o(e),vo=e=>(e.key?"Tab"===e.key:e.keyCode===Hi)&&!$o(e),bo=e=>(e.key?"Tab"===e.key:e.keyCode===Hi)&&Ao(e,!1,!1,!0),yo=e=>(e.key?"PageUp"===e.key:e.keyCode===ji)&&!$o(e),wo=e=>(e.key?"PageDown"===e.key:e.keyCode===Wi)&&!$o(e),ko=e=>(e.key?"PageUp"===e.key:e.keyCode===ji)&&Ao(e,!1,!1,!0),xo=e=>(e.key?"PageDown"===e.key:e.keyCode===Wi)&&Ao(e,!1,!1,!0),Co=e=>(e.key?"PageUp"===e.key:e.keyCode===ji)&&Ao(e,!0,!1,!0),So=e=>(e.key?"PageDown"===e.key:e.keyCode===Wi)&&Ao(e,!0,!1,!0),To=e=>e.key?Bo(e)||Io(e):e.keyCode===Qi&&!$o(e)||e.keyCode===Ji&&Ao(e,!1,!0,!1),Bo=e=>"F4"===e.key&&!$o(e),Io=e=>("ArrowDown"===e.key||"Down"===e.key||"ArrowUp"===e.key||"Up"===e.key)&&Ao(e,!1,!0,!1),$o=e=>e.shiftKey||e.altKey||Do(e),Do=e=>!(!e.metaKey&&!e.ctrlKey),Ao=(e,t,i,o)=>e.shiftKey===o&&e.altKey===i&&Do(e)===t,Fo=/^((?:[A-Z]{2,3}(?:-[A-Z]{3}){0,3})|[A-Z]{4}|[A-Z]{5,8})(?:-([A-Z]{4}))?(?:-([A-Z]{2}|[0-9]{3}))?((?:-[0-9A-Z]{5,8}|-[0-9][0-9A-Z]{3})*)((?:-[0-9A-WYZ](?:-[0-9A-Z]{2,8})+)*)(?:-(X(?:-[0-9A-Z]{1,8})+))?$/i;class Eo{constructor(e){const t=Fo.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]||null,this.sScript=t[2]||null,this.sRegion=t[3]||null,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("-")}}const Mo=new Map,Po=e=>(Mo.has(e)||Mo.set(e,new Eo(e)),Mo.get(e)),Lo=e=>{try{if(e&&"string"==typeof e)return Po(e)}catch(e){}},No=e=>e?Lo(e):ut()?Po(ut()):Lo(_t()),zo=/^((?:[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,Oo=/(?:^|-)(saptrc|sappsd)(?:-|$)/i,Ho={he:"iw",yi:"ji",id:"in",sr:"sh"},Ro=e=>{if(!e)return j;if("zh_HK"===e)return"zh_TW";const t=e.lastIndexOf("_");return t>=0?e.slice(0,t):e!==j?j:""},Uo=new Set,Vo=new Set,jo=new Map,Wo=new Map,qo=new Map,Yo=(e,t,i)=>{const o=`${e}/${t}`;qo.set(o,i)},Go=(e,t)=>{jo.set(e,t)},Xo=(e,t)=>{const i=`${e}/${t}`;return qo.has(i)},Zo=async e=>{const t=No().getLanguage(),i=No().getRegion();let o=(e=>{let t;if(!e)return j;if("string"==typeof e&&(t=zo.exec(e.replace(/_/g,"-")))){let e=t[1].toLowerCase(),i=t[3]?t[3].toUpperCase():void 0;const o=t[2]?t[2].toLowerCase():void 0,r=t[4]?t[4].slice(1):void 0,a=t[6];return e=Ho[e]||e,a&&(t=Oo.exec(a))||r&&(t=Oo.exec(r))?`en_US_${t[1].toLowerCase()}`:("zh"!==e||i||("hans"===o?i="CN":"hant"===o&&(i="TW")),e+(i?"_"+i+(r?"_"+r.replace("-","_"):""):""))}})(t+(i?`-${i}`:""));for(;o!==V&&!Xo(e,o);)o=Ro(o);const r=dt();if(o!==V||r)if(Xo(e,o))try{const t=await((e,t)=>{const i=`${e}/${t}`,o=qo.get(i);return Wo.get(i)||Wo.set(i,o(t)),Wo.get(i)})(e,o);Go(e,t)}catch(e){Vo.has(e.message)||(Vo.add(e.message),console.error(e.message))}else(e=>{Uo.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.`),Uo.add(e))})(e);else Go(e,null)};nt(()=>{const e=[...jo.keys()];return Promise.all(e.map(Zo))});const Jo=/('')|'([^']+(?:''[^']*)*)(?:'|$)|\{([0-9]+(?:\s*,[^{}]*)?)\}|[{}]/g,Ko=new Map;class Qo{constructor(e){this.packageName=e}getText(e,...t){if("string"==typeof e&&(e={key:e,defaultText:e}),!e||!e.key)return"";const i=(e=>jo.get(e))(this.packageName);i&&!i[e.key]&&console.warn(`Key ${e.key} not found in the i18n bundle, the default text will be used`);const o=i&&i[e.key]?i[e.key]:e.defaultText||e.key;return r=(r=t)||[],o.replace(Jo,(e,t,i,o,a)=>{if(t)return"'";if(i)return i.replace(/''/g,"'");if(o)return String(r[parseInt(o)]);throw new Error(`[i18n]: pattern syntax error at pos ${a}`)});var r}}const er=async e=>(await Zo(e),(e=>{if(Ko.has(e))return Ko.get(e);const t=new Qo(e);return Ko.set(e,t),t})(e)),tr=navigator.userAgent,ir="ontouchstart"in window||navigator.maxTouchPoints>0,or=/(msie|trident)/i.test(tr),rr=!or&&/(Chrome|CriOS)/.test(tr),ar=!or&&!rr&&/(Version|PhantomJS)\/(\d+\.\d+).*Safari/.test(tr),nr=!or&&/webkit/.test(tr),sr=-1!==navigator.platform.indexOf("Win"),lr=!sr&&/Android/.test(tr),ur=lr&&/(?=android)(?=.*mobile)/i.test(tr),dr=/ipad/i.test(tr);let cr,_r,hr;const pr=()=>{if(!sr)return!1;if(void 0===cr){const e=tr.match(/Windows NT (\d+).(\d)/);cr=e?parseFloat(e[1]):0}return cr>=8},gr=()=>{if(void 0===hr)if(dr)hr=!0;else{if(ir){if(pr())return void(hr=!0);if(rr&&lr)return void(hr=!/Mobile Safari\/[.0-9]+/.test(tr));let e=window.devicePixelRatio?window.devicePixelRatio:1;return lr&&(()=>{if(!nr)return!1;if(void 0===_r){const e=tr.match(/(webkit)[ /]([\w.]+)/);_r=e?parseFloat(e[1]):0}return _r>=537.1})()&&(e=1),void(hr=Math.min(window.screen.width/e,window.screen.height/e)>=600)}hr=or&&-1!==tr.indexOf("Touch")||lr&&!ur}},mr=()=>ir,fr=()=>or,vr=()=>ar,br=()=>(gr(),(ir||pr())&&hr),yr=()=>(gr(),ir&&!hr),wr=()=>!br()&&!yr()||pr(),kr={Default:"Default",Positive:"Positive",Negative:"Negative",Transparent:"Transparent",Emphasized:"Emphasized",Attention:"Attention"};class xr extends Pe{static isValid(e){return!!kr[e]}}xr.generateTypeAccessors(kr);const Cr=(e,t,i)=>vi`<button type="button" class="ui5-button-root" ?disabled="${e.disabled}" data-sap-focus-ref dir="${Mi(e.effectiveDir)}" @focusout=${e._onfocusout} @focusin=${e._onfocusin} @click=${e._onclick} @mousedown=${e._onmousedown} @mouseup=${e._onmouseup} @keydown=${e._onkeydown} @keyup=${e._onkeyup} @touchstart="${e._ontouchstart}" @touchend="${e._ontouchend}" tabindex=${Mi(e.tabIndexValue)} aria-expanded="${Mi(e.accInfo.ariaExpanded)}" aria-controls="${Mi(e.accInfo.ariaControls)}" aria-haspopup="${Mi(e.accInfo.ariaHaspopup)}" aria-label="${Mi(e.accessibleName)}" title="${Mi(e.accInfo.title)}" part="button">${e.icon?Sr(e,t,i):void 0}<span id="${Mi(e._id)}-content" class="ui5-button-text"><bdi><slot></slot></bdi></span>${e.hasButtonType?Tr(e):void 0}</button> `,Sr=(e,t,i)=>vi`<${zi("ui5-icon",t,i)} class="ui5-button-icon" name="${Mi(e.icon)}" part="icon" ?show-tooltip=${e.showIconTooltip}></${zi("ui5-icon",t,i)}>`,Tr=(e,t,i)=>vi`<span class="ui5-hidden-text">${Mi(e.buttonTypeText)}</span>`,Br={"SAP-icons-TNT":"tnt",BusinessSuiteInAppSymbols:"business-suite",horizon:"SAP-icons-v5"},Ir=new Map,$r=x("SVGIcons.registry",new Map),Dr=x("SVGIcons.promises",new Map),Ar=(e,{pathData:t,ltr:i,accData:o,collection:r,packageName:a}={})=>{r||(r=Mr());const n=`${r}/${e}`;$r.set(n,{pathData:t,ltr:i,accData:o,packageName:a})},Fr=e=>{let t;return e.startsWith("sap-icon://")&&(e=e.replace("sap-icon://","")),[e,t]=e.split("/").reverse(),t=t||Mr(),t=Pr(t),{name:e=e.replace("icon-",""),collection:t,registryKey:`${t}/${e}`}},Er=async e=>{const{collection:t,registryKey:i}=Fr(e);let o="ICON_NOT_FOUND";try{o=await(async e=>{if(!Dr.has(e)){if(!Ir.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=Ir.get(e);Dr.set(e,t(e))}return Dr.get(e)})(t)}catch(e){console.error(e.message)}return"ICON_NOT_FOUND"===o?o:($r.has(i)||(e=>{Object.keys(e.data).forEach(t=>{const i=e.data[t];Ar(t,{pathData:i.path,ltr:i.ltr,accData:i.acc,collection:e.collection,packageName:e.packageName})})})(o),$r.get(i))},Mr=()=>me("sap_horizon")?"SAP-icons-v5":"SAP-icons",Pr=e=>Br[e]?Br[e]:e,Lr=(e,t,i)=>vi`<svg class="ui5-icon-root" tabindex="${Mi(e.tabIndex)}" dir="${Mi(e._dir)}" viewBox="0 0 512 512" role="${Mi(e.effectiveAccessibleRole)}" focusable="false" preserveAspectRatio="xMidYMid meet" aria-label="${Mi(e.effectiveAccessibleName)}" aria-hidden=${Mi(e.effectiveAriaHidden)} xmlns="http://www.w3.org/2000/svg" @focusin=${e._onfocusin} @focusout=${e._onfocusout} @keydown=${e._onkeydown} @keyup=${e._onkeyup} @click=${e._onclick}>${Nr(e)}</svg>`,Nr=(e,t,i)=>bi`${e.hasIconTooltip?((e,t,i)=>bi`<title id="${Mi(e._id)}-tooltip">${Mi(e.effectiveAccessibleName)}</title>`)(e):void 0}<g role="presentation"><path d="${Mi(e.pathData)}"/></g>`;var zr={packageName:"@ui5/webcomponents-theming",fileName:"themessap_fiori_3parameters-bundle.css",content:':root{--sapBrandColor:#0a6ed1;--sapHighlightColor:#0854a0;--sapBaseColor:#fff;--sapShellColor:#354a5f;--sapBackgroundColor:#f7f7f7;--sapFontFamily:"72","72full",Arial,Helvetica,sans-serif;--sapFontLightFamily:"72-Light","72-Lightfull","72","72full",Arial,Helvetica,sans-serif;--sapFontBoldFamily:"72-Bold","72-Boldfull","72","72full",Arial,Helvetica,sans-serif;--sapFontBlackFamily:"72Black","72","72full",Arial,Helvetica,sans-serif;--sapFontHeaderFamily:"72","72full",Arial,Helvetica,sans-serif;--sapFontSize:.875rem;--sapFontSmallSize:.75rem;--sapFontLargeSize:1rem;--sapFontHeader1Size:2.25rem;--sapFontHeader2Size:1.5rem;--sapFontHeader3Size:1.25rem;--sapFontHeader4Size:1.125rem;--sapFontHeader5Size:1rem;--sapFontHeader6Size:.875rem;--sapTextColor:#32363a;--sapLinkColor:#0a6ed1;--sapLink_Hover_Color:#0854a0;--sapLink_Active_Color:#0a6ed1;--sapLink_Visited_Color:#0a6ed1;--sapLink_InvertedColor:#d3e8fd;--sapLink_SubtleColor:#074888;--sapCompanyLogo:none;--sapBackgroundImage:none;--sapBackgroundImageOpacity:1.0;--sapBackgroundImageRepeat:false;--sapSelectedColor:#0854a0;--sapActiveColor:#0854a0;--sapHighlightTextColor:#fff;--sapTitleColor:#32363a;--sapNegativeColor:#b00;--sapCriticalColor:#df6e0c;--sapPositiveColor:#107e3e;--sapInformativeColor:#0a6ed1;--sapNeutralColor:#6a6d70;--sapNegativeElementColor:#b00;--sapCriticalElementColor:#df6e0c;--sapPositiveElementColor:#107e3e;--sapInformativeElementColor:#0a6ed1;--sapNeutralElementColor:#6a6d70;--sapNegativeTextColor:#b00;--sapPositiveTextColor:#107e3e;--sapCriticalTextColor:#df6e0c;--sapInformativeTextColor:#0a6ed1;--sapNeutralTextColor:#6a6d70;--sapNeutralBorderColor:#6a6d70;--sapErrorColor:#b00;--sapErrorBorderColor:#b00;--sapWarningColor:#df6e0c;--sapWarningBorderColor:#df6e0c;--sapSuccessColor:#107e3e;--sapSuccessBorderColor:#107e3e;--sapInformationColor:#0a6ed1;--sapInformationBorderColor:#0a6ed1;--sapErrorBackground:#ffebeb;--sapWarningBackground:#fef7f1;--sapSuccessBackground:#f1fdf6;--sapInformationBackground:#f5faff;--sapNeutralBackground:#f4f4f4;--sapIndicationColor_1:#800;--sapIndicationColor_1_Hover_Background:#6f0000;--sapIndicationColor_1_Active_Background:#500;--sapIndicationColor_1_TextColor:#fff;--sapIndicationColor_2:#b00;--sapIndicationColor_2_Hover_Background:#a20000;--sapIndicationColor_2_Active_Background:#800;--sapIndicationColor_2_TextColor:#fff;--sapIndicationColor_3:#df6e0c;--sapIndicationColor_3_Hover_Background:#d0670b;--sapIndicationColor_3_Active_Background:#c2600a;--sapIndicationColor_3_TextColor:#fff;--sapIndicationColor_4:#107e3e;--sapIndicationColor_4_Hover_Background:#0d6733;--sapIndicationColor_4_Active_Background:#0a5128;--sapIndicationColor_4_TextColor:#fff;--sapIndicationColor_5:#0a6ed1;--sapIndicationColor_5_Hover_Background:#0961b9;--sapIndicationColor_5_Active_Background:#0854a0;--sapIndicationColor_5_TextColor:#fff;--sapIndicationColor_6:#0f828f;--sapIndicationColor_6_Hover_Background:#0d6d78;--sapIndicationColor_6_Active_Background:#0a5861;--sapIndicationColor_6_TextColor:#fff;--sapIndicationColor_7:#925ace;--sapIndicationColor_7_Hover_Background:#8546c8;--sapIndicationColor_7_Active_Background:#7838bd;--sapIndicationColor_7_TextColor:#fff;--sapIndicationColor_8:#c0399f;--sapIndicationColor_8_Hover_Background:#ac338f;--sapIndicationColor_8_Active_Background:#992d7e;--sapIndicationColor_8_TextColor:#fff;--sapElement_LineHeight:2.75rem;--sapElement_Height:2.25rem;--sapElement_BorderWidth:.0625rem;--sapElement_BorderCornerRadius:.25rem;--sapElement_Compact_LineHeight:2rem;--sapElement_Compact_Height:1.625rem;--sapElement_Condensed_LineHeight:1.5rem;--sapElement_Condensed_Height:1.375rem;--sapContent_LineHeight:1.4;--sapContent_IconHeight:1rem;--sapContent_IconColor:#0854a0;--sapContent_ContrastIconColor:#fff;--sapContent_NonInteractiveIconColor:#6a6d70;--sapContent_MarkerIconColor:#286eb4;--sapContent_MarkerTextColor:#0e7581;--sapContent_ImagePlaceholderBackground:#ccc;--sapContent_ImagePlaceholderForegroundColor:#fff;--sapContent_RatedColor:#d08014;--sapContent_UnratedColor:#89919a;--sapContent_FocusColor:#000;--sapContent_FocusStyle:dotted;--sapContent_FocusWidth:.0625rem;--sapContent_ContrastFocusColor:#fff;--sapContent_ShadowColor:#000;--sapContent_ContrastShadowColor:#fff;--sapContent_Shadow0:0 0 0 0.0625rem rgba(0,0,0,0.1),0 0.125rem 0.5rem 0 rgba(0,0,0,0.1);--sapContent_Shadow1:0 0 0 0.0625rem rgba(0,0,0,0.42),0 0.125rem 0.5rem 0 rgba(0,0,0,0.3);--sapContent_Shadow2:0 0 0 0.0625rem rgba(0,0,0,0.42),0 0.625rem 1.875rem 0 rgba(0,0,0,0.3);--sapContent_Shadow3:0 0 0 0.0625rem rgba(0,0,0,0.42),0 1.25rem 5rem 0 rgba(0,0,0,0.3);--sapContent_TextShadow:0 0 0.125rem #fff;--sapContent_ContrastTextShadow:0 0 0.0625rem rgba(0,0,0,0.7);--sapContent_HeaderShadow:0 0 0.25rem 0 rgba(0,0,0,0.15),inset 0 -0.0625rem 0 0 #d9d9d9;--sapContent_Interaction_Shadow:none;--sapContent_Selected_Shadow:none;--sapContent_Negative_Shadow:none;--sapContent_Critical_Shadow:none;--sapContent_Positive_Shadow:none;--sapContent_Informative_Shadow:none;--sapContent_Neutral_Shadow:none;--sapContent_SearchHighlightColor:#d4f7db;--sapContent_HelpColor:#3f8600;--sapContent_LabelColor:#6a6d70;--sapContent_MonospaceFontFamily:"72Mono","72Monofull",lucida console,monospace;--sapContent_MonospaceBoldFontFamily:"72Mono-Bold","72Mono-Boldfull",lucida console,monospace;--sapContent_IconFontFamily:"SAP-icons";--sapContent_DisabledTextColor:rgba(50,54,58,0.6);--sapContent_DisabledOpacity:0.4;--sapContent_ContrastTextThreshold:0.65;--sapContent_ContrastTextColor:#fff;--sapContent_ForegroundColor:#efefef;--sapContent_ForegroundBorderColor:#89919a;--sapContent_ForegroundTextColor:#32363a;--sapContent_BadgeBackground:#d04343;--sapContent_BadgeTextColor:#fff;--sapContent_Placeholderloading_Background:#ccc;--sapContent_Placeholderloading_Gradient:linear-gradient(90deg,#ccc 0%,#ccc 20%,#999 50%,#ccc 80%,#ccc);--sapContent_DragAndDropActiveColor:#0854a0;--sapContent_Selected_Background:#0854a0;--sapContent_Selected_TextColor:#fff;--sapContent_Selected_Hover_Background:#095caf;--sapContent_Selected_ForegroundColor:#0854a0;--sapContent_Illustrative_Color1:#0a6ed1;--sapContent_Illustrative_Color2:#72b5f8;--sapContent_Illustrative_Color3:#ffba10;--sapContent_Illustrative_Color4:#4a5055;--sapContent_Illustrative_Color5:#9da4aa;--sapContent_Illustrative_Color6:#c6cace;--sapContent_Illustrative_Color7:#e7e9ea;--sapContent_Illustrative_Color8:#fff;--sapContent_Illustrative_Color9:#64edd2;--sapContent_Illustrative_Color10:#e7e9ea;--sapContent_Illustrative_Color11:#f31ded;--sapContent_Illustrative_Color12:#5dc122;--sapContent_Illustrative_Color13:#4ba1f6;--sapContent_Illustrative_Color14:#298ff4;--sapContent_Illustrative_Color15:#e6a400;--sapContent_Illustrative_Color16:#085aaa;--sapContent_Illustrative_Color17:#00a5a8;--sapContent_Illustrative_Color18:#d9ddde;--sapContent_Illustrative_Color19:#ccd0d2;--sapContent_Illustrative_Color20:#bec4c6;--sapShell_Background:#edeff0;--sapShell_BackgroundImage:linear-gradient(180deg,#dfe3e4,#f3f4f5);--sapShell_BackgroundGradient:linear-gradient(180deg,#dfe3e4,#f3f4f5);--sapShell_BackgroundImageOpacity:1.0;--sapShell_BackgroundImageRepeat:false;--sapShell_BorderColor:#354a5f;--sapShell_TextColor:#fff;--sapShell_InteractiveBackground:#354a5f;--sapShell_InteractiveTextColor:#d1e8ff;--sapShell_InteractiveBorderColor:#7996b4;--sapShell_GroupTitleTextColor:#32363a;--sapShell_GroupTitleTextShadow:0 0 0.125rem #fff;--sapShell_Hover_Background:#283848;--sapShell_Active_Background:#23303e;--sapShell_Active_TextColor:#fff;--sapShell_Selected_Background:#23303e;--sapShell_Selected_TextColor:#fff;--sapShell_Selected_Hover_Background:#23303e;--sapShell_Favicon:none;--sapShell_Navigation_Background:#354a5f;--sapShell_Navigation_SelectedColor:#d1e8ff;--sapShell_Navigation_Selected_TextColor:#d1e8ff;--sapShell_Navigation_TextColor:#fff;--sapShell_Navigation_Hover_Background:#283848;--sapShell_Navigation_Active_Background:#23303e;--sapShell_Navigation_Active_TextColor:#fff;--sapShell_Shadow:0 0 0.25rem 0 rgba(0,0,0,0.4),inset 0 -0.0625rem 0 0 rgba(0,0,0,0.2);--sapShell_NegativeColor:#f88;--sapShell_CriticalColor:#f8b67d;--sapShell_PositiveColor:#abe2c2;--sapShell_InformativeColor:#b1d6fb;--sapShell_NeutralColor:#d4d6d7;--sapButton_BorderWidth:.0625rem;--sapButton_BorderCornerRadius:.25rem;--sapButton_Background:#fff;--sapButton_BorderColor:#0854a0;--sapButton_TextColor:#0854a0;--sapButton_Hover_Background:#ebf5fe;--sapButton_Hover_BorderColor:#0854a0;--sapButton_Hover_TextColor:#0854a0;--sapButton_IconColor:#0854a0;--sapButton_Active_Background:#0854a0;--sapButton_Active_BorderColor:#0854a0;--sapButton_Active_TextColor:#fff;--sapButton_Emphasized_Background:#0a6ed1;--sapButton_Emphasized_BorderColor:#0a6ed1;--sapButton_Emphasized_TextColor:#fff;--sapButton_Emphasized_Hover_Background:#085caf;--sapButton_Emphasized_Hover_BorderColor:#085caf;--sapButton_Emphasized_Hover_TextColor:#fff;--sapButton_Emphasized_Active_Background:#0854a0;--sapButton_Emphasized_Active_BorderColor:#0854a0;--sapButton_Emphasized_Active_TextColor:#fff;--sapButton_Emphasized_TextShadow:transparent;--sapButton_Reject_Background:#fff;--sapButton_Reject_BorderColor:#b00;--sapButton_Reject_Hover_Background:#ffebeb;--sapButton_Reject_Hover_BorderColor:#b00;--sapButton_Reject_Hover_TextColor:#b00;--sapButton_Reject_Active_Background:#a20000;--sapButton_Reject_Active_BorderColor:#a20000;--sapButton_Reject_Active_TextColor:#fff;--sapButton_Reject_TextColor:#b00;--sapButton_Reject_Selected_Background:#a20000;--sapButton_Reject_Selected_BorderColor:#a20000;--sapButton_Reject_Selected_TextColor:#fff;--sapButton_Reject_Selected_Hover_Background:#b00;--sapButton_Reject_Selected_Hover_BorderColor:#b00;--sapButton_Accept_Background:#fff;--sapButton_Accept_BorderColor:#107e3e;--sapButton_Accept_Hover_Background:#f1fdf6;--sapButton_Accept_Hover_BorderColor:#107e3e;--sapButton_Accept_Hover_TextColor:#107e3e;--sapButton_Accept_Active_Background:#0d6733;--sapButton_Accept_Active_BorderColor:#0d6733;--sapButton_Accept_Active_TextColor:#fff;--sapButton_Accept_TextColor:#107e3e;--sapButton_Accept_Selected_Background:#0d6733;--sapButton_Accept_Selected_BorderColor:#0d6733;--sapButton_Accept_Selected_TextColor:#fff;--sapButton_Accept_Selected_Hover_Background:#107e3e;--sapButton_Accept_Selected_Hover_BorderColor:#107e3e;--sapButton_Lite_Background:transparent;--sapButton_Lite_BorderColor:transparent;--sapButton_Lite_TextColor:#0854a0;--sapButton_Lite_Hover_Background:#ebf5fe;--sapButton_Lite_Hover_BorderColor:#0854a0;--sapButton_Lite_Hover_TextColor:#0854a0;--sapButton_Lite_Active_Background:#0854a0;--sapButton_Lite_Active_BorderColor:#0854a0;--sapButton_Selected_Background:#0854a0;--sapButton_Selected_BorderColor:#0854a0;--sapButton_Selected_TextColor:#fff;--sapButton_Selected_Hover_Background:#095caf;--sapButton_Selected_Hover_BorderColor:#095caf;--sapButton_Attention_Background:#fff;--sapButton_Attention_BorderColor:#df6e0c;--sapButton_Attention_TextColor:#32363a;--sapButton_Attention_Hover_Background:#fef7f1;--sapButton_Attention_Hover_BorderColor:#df6e0c;--sapButton_Attention_Hover_TextColor:#32363a;--sapButton_Attention_Active_Background:#f3801c;--sapButton_Attention_Active_BorderColor:#f3801c;--sapButton_Attention_Active_TextColor:#fff;--sapButton_Attention_Selected_Background:#f3801c;--sapButton_Attention_Selected_BorderColor:#f3801c;--sapButton_Attention_Selected_TextColor:#fff;--sapButton_Attention_Selected_Hover_Background:#f48e34;--sapButton_Attention_Selected_Hover_BorderColor:#f48e34;--sapButton_Negative_Background:#b00;--sapButton_Negative_BorderColor:#b00;--sapButton_Negative_TextColor:#fff;--sapButton_Negative_Hover_Background:#970000;--sapButton_Negative_Hover_BorderColor:#970000;--sapButton_Negative_Hover_TextColor:#fff;--sapButton_Negative_Active_Background:#800;--sapButton_Negative_Active_BorderColor:#800;--sapButton_Negative_Active_TextColor:#fff;--sapButton_Critical_Background:#df6e0c;--sapButton_Critical_BorderColor:#df6e0c;--sapButton_Critical_TextColor:#fff;--sapButton_Critical_Hover_Background:#f3801c;--sapButton_Critical_Hover_BorderColor:#f3801c;--sapButton_Critical_Hover_TextColor:#fff;--sapButton_Critical_Active_Background:#f5933e;--sapButton_Critical_Active_BorderColor:#f5933e;--sapButton_Critical_Active_TextColor:#fff;--sapButton_Success_Background:#107e3e;--sapButton_Success_BorderColor:#107e3e;--sapButton_Success_TextColor:#fff;--sapButton_Success_Hover_Background:#0c5e2e;--sapButton_Success_Hover_BorderColor:#0c5e2e;--sapButton_Success_Hover_TextColor:#fff;--sapButton_Success_Active_Background:#0a5128;--sapButton_Success_Active_BorderColor:#0a5128;--sapButton_Success_Active_TextColor:#fff;--sapButton_Information_Background:#0a6ed1;--sapButton_Information_BorderColor:#0a6ed1;--sapButton_Information_TextColor:#fff;--sapButton_Information_Hover_Background:#0961b9;--sapButton_Information_Hover_BorderColor:#0961b9;--sapButton_Information_Hover_TextColor:#fff;--sapButton_Information_Active_Background:#0854a0;--sapButton_Information_Active_BorderColor:#0854a0;--sapButton_Neutral_Background:#6a6d70;--sapButton_Neutral_BorderColor:#6a6d70;--sapButton_Neutral_TextColor:#fff;--sapButton_Neutral_Hover_Background:#595b5e;--sapButton_Neutral_Hover_BorderColor:#595b5e;--sapButton_Neutral_Hover_TextColor:#fff;--sapButton_Neutral_Active_Background:#515456;--sapButton_Neutral_Active_BorderColor:#515456;--sapButton_Neutral_Active_TextColor:#fff;--sapButton_Track_Selected_Background:#ebf5fe;--sapButton_Track_Selected_TextColor:#32363a;--sapButton_Track_Background:#ededed;--sapButton_Track_TextColor:#32363a;--sapButton_TokenBackground:#fafafa;--sapButton_TokenBorderColor:#c2c2c2;--sapField_Background:#fff;--sapField_TextColor:#32363a;--sapField_PlaceholderTextColor:#74777a;--sapField_BorderColor:#89919a;--sapField_HelpBackground:#fff;--sapField_BorderWidth:.0625rem;--sapField_BorderCornerRadius:.125rem;--sapField_Hover_Background:#fff;--sapField_Hover_BorderColor:#0854a0;--sapField_Hover_HelpBackground:#ebf5fe;--sapField_Active_BorderColor:#0854a0;--sapField_Focus_Background:#fff;--sapField_Focus_BorderColor:#89919a;--sapField_Focus_HelpBackground:#fff;--sapField_ReadOnly_Background:hsla(0,0%,94.9%,0.5);--sapField_ReadOnly_BorderColor:#89919a;--sapField_ReadOnly_HelpBackground:hsla(0,0%,94.9%,0.5);--sapField_RequiredColor:#ce3b3b;--sapField_InvalidColor:#b00;--sapField_InvalidBackground:#fff;--sapField_InvalidBorderWidth:.125rem;--sapField_InvalidBorderStyle:solid;--sapField_WarningColor:#df6e0c;--sapField_WarningBackground:#fff;--sapField_WarningBorderWidth:.125rem;--sapField_WarningBorderStyle:solid;--sapField_SuccessColor:#107e3e;--sapField_SuccessBackground:#fff;--sapField_SuccessBorderWidth:.0625rem;--sapField_SuccessBorderStyle:solid;--sapField_InformationColor:#0a6ed1;--sapField_InformationBackground:#fff;--sapField_InformationBorderWidth:.125rem;--sapField_InformationBorderStyle:solid;--sapGroup_TitleBackground:transparent;--sapGroup_TitleBorderColor:#d9d9d9;--sapGroup_TitleTextColor:#32363a;--sapGroup_ContentBackground:#fff;--sapGroup_ContentBorderColor:#d9d9d9;--sapGroup_BorderWidth:.0625rem;--sapGroup_BorderCornerRadius:0;--sapGroup_FooterBackground:transparent;--sapToolbar_Background:transparent;--sapToolbar_SeparatorColor:#d9d9d9;--sapList_HeaderBackground:#f2f2f2;--sapList_HeaderBorderColor:#e5e5e5;--sapList_HeaderTextColor:#32363a;--sapList_BorderColor:#e5e5e5;--sapList_TextColor:#32363a;--sapList_Active_TextColor:#fff;--sapList_BorderWidth:.0625rem;--sapList_SelectionBackgroundColor:#e5f0fa;--sapList_SelectionBorderColor:#0854a0;--sapList_Hover_SelectionBackground:#d8e9f8;--sapList_Background:#fff;--sapList_Hover_Background:#f5f5f5;--sapList_AlternatingBackground:#f2f2f2;--sapList_GroupHeaderBackground:#fff;--sapList_GroupHeaderBorderColor:#d9d9d9;--sapList_GroupHeaderTextColor:#32363a;--sapList_FooterBackground:#fafafa;--sapList_FooterTextColor:#32363a;--sapList_TableGroupHeaderBackground:#efefef;--sapList_TableGroupHeaderBorderColor:#d9d9d9;--sapList_TableGroupHeaderTextColor:#32363a;--sapList_TableFooterBorder:#d9d9d9;--sapList_TableFixedBorderColor:#8c8c8c;--sapList_Active_Background:#0854a0;--sapScrollBar_FaceColor:#949494;--sapScrollBar_TrackColor:#fff;--sapScrollBar_BorderColor:#949494;--sapScrollBar_SymbolColor:#0854a0;--sapScrollBar_Dimension:.75rem;--sapScrollBar_Hover_FaceColor:#8c8c8c;--sapPageHeader_Background:#fff;--sapPageHeader_BorderColor:#d9d9d9;--sapPageHeader_TextColor:#32363a;--sapPageFooter_Background:#fff;--sapPageFooter_BorderColor:#d9d9d9;--sapPageFooter_TextColor:#32363a;--sapInfobar_Background:#0f828f;--sapInfobar_Hover_Background:#0e7581;--sapInfobar_Active_Background:#0a545c;--sapInfobar_NonInteractive_Background:#e6e6e6;--sapInfobar_TextColor:#fff;--sapObjectHeader_Background:#fff;--sapObjectHeader_BorderColor:#d9d9d9;--sapObjectHeader_Hover_Background:#f5f5f5;--sapBlockLayer_Background:#000;--sapTile_Background:#fff;--sapTile_Hover_Background:#f5f5f5;--sapTile_Active_Background:#f5f5f5;--sapTile_BorderColor:transparent;--sapTile_TitleTextColor:#32363a;--sapTile_TextColor:#6a6d70;--sapTile_IconColor:#5a7da0;--sapTile_SeparatorColor:#ccc;--sapTile_Interactive_BorderColor:#b3b3b3;--sapTile_OverlayBackground:rgba(0,0,0,0.8);--sapTile_OverlayForegroundColor:#fff;--sapAccentColor1:#d08014;--sapAccentColor2:#d04343;--sapAccentColor3:#db1f77;--sapAccentColor4:#c0399f;--sapAccentColor5:#6367de;--sapAccentColor6:#286eb4;--sapAccentColor7:#0f828f;--sapAccentColor8:#7ca10c;--sapAccentColor9:#925ace;--sapAccentColor10:#647987;--sapAccentBackgroundColor1:#fff3b8;--sapAccentBackgroundColor2:#ffd0e7;--sapAccentBackgroundColor3:#fff0fa;--sapAccentBackgroundColor4:#ffdcf3;--sapAccentBackgroundColor5:#ded3ff;--sapAccentBackgroundColor6:#d1efff;--sapAccentBackgroundColor7:#c2fcee;--sapAccentBackgroundColor8:#ebf5cb;--sapAccentBackgroundColor9:#dafdf5;--sapAccentBackgroundColor10:#eaecee;--sapLegend_WorkingBackground:#fafafa;--sapLegend_NonWorkingBackground:#dedede;--sapLegend_CurrentDateTime:#c0399f;--sapLegendColor1:#d58215;--sapLegendColor2:#dc5b5b;--sapLegendColor3:#db1f77;--sapLegendColor4:#9b3b3b;--sapLegendColor5:#cf5db3;--sapLegendColor6:#286eb4;--sapLegendColor7:#1193a2;--sapLegendColor8:#8b9668;--sapLegendColor9:#647987;--sapLegendColor10:#892971;--sapLegendColor11:#725a3a;--sapLegendColor12:#bb2f2f;--sapLegendColor13:#bc1b66;--sapLegendColor14:#8b714f;--sapLegendColor15:#606190;--sapLegendColor16:#597da1;--sapLegendColor17:#49797e;--sapLegendColor18:#687a33;--sapLegendColor19:#295989;--sapLegendColor20:#5154bd;--sapLegendBackgroundColor1:#fdf3e7;--sapLegendBackgroundColor2:#faeaea;--sapLegendBackgroundColor3:#fce9f2;--sapLegendBackgroundColor4:#f8ecec;--sapLegendBackgroundColor5:#f9ebf5;--sapLegendBackgroundColor6:#ebf3fa;--sapLegendBackgroundColor7:#e8fbfd;--sapLegendBackgroundColor8:#f3f4ef;--sapLegendBackgroundColor9:#f1f3f4;--sapLegendBackgroundColor10:#f9ebf6;--sapLegendBackgroundColor11:#f6f2ed;--sapLegendBackgroundColor12:#faeaea;--sapLegendBackgroundColor13:#fce9f2;--sapLegendBackgroundColor14:#f5f2ee;--sapLegendBackgroundColor15:#f0f0f5;--sapLegendBackgroundColor16:#eff2f6;--sapLegendBackgroundColor17:#eff5f6;--sapLegendBackgroundColor18:#f5f7ed;--sapLegendBackgroundColor19:#ebf2f9;--sapLegendBackgroundColor20:#ecedf8;--sapChart_OrderedColor_1:#5899da;--sapChart_OrderedColor_2:#e8743b;--sapChart_OrderedColor_3:#19a979;--sapChart_OrderedColor_4:#ed4a7b;--sapChart_OrderedColor_5:#945ecf;--sapChart_OrderedColor_6:#13a4b4;--sapChart_OrderedColor_7:#525df4;--sapChart_OrderedColor_8:#bf399e;--sapChart_OrderedColor_9:#6c8893;--sapChart_OrderedColor_10:#ee6868;--sapChart_OrderedColor_11:#2f6497;--sapChart_Bad:#dc0d0e;--sapChart_Critical:#de890d;--sapChart_Good:#3fa45b;--sapChart_Neutral:#848f94;--sapChart_Sequence_1:#5899da;--sapChart_Sequence_2:#e8743b;--sapChart_Sequence_3:#19a979;--sapChart_Sequence_4:#ed4a7b;--sapChart_Sequence_5:#945ecf;--sapChart_Sequence_6:#13a4b4;--sapChart_Sequence_7:#525df4;--sapChart_Sequence_8:#bf399e;--sapChart_Sequence_9:#6c8893;--sapChart_Sequence_10:#ee6868;--sapChart_Sequence_11:#2f6497;--sapChart_Sequence_Neutral:#848f94;}'},Or={packageName:"@ui5/webcomponents",fileName:"themessap_fiori_3parameters-bundle.css",content:':root{--_ui5_calendar_height:24.5rem;--_ui5_calendar_width:20.5rem;--_ui5_calendar_padding:0.75rem;--_ui5_calendar_header_height:3rem;--_ui5_calendar_header_arrow_button_width:2.5rem;--_ui5_calendar_header_padding:0.25rem 0;--_ui5_checkbox_root_side_padding:.6875rem;--_ui5_checkbox_icon_size:1rem;--_ui5_checkbox_partially_icon_size:.75rem;--_ui5_custom_list_item_height:3rem;--_ui5_custom_list_item_rb_min_width:2.75rem;--_ui5_day_picker_item_width:2.25rem;--_ui5_day_picker_item_height:2.875rem;--_ui5_day_picker_empty_height:3rem;--_ui5_day_picker_item_justify_content:space-between;--_ui5_color-palette-item-height:1.75rem;--_ui5_color-palette-item-hover-height:2.375rem;--_ui5_color-palette-item-margin:calc(var(--_ui5_color-palette-item-hover-height)/2 - var(--_ui5_color-palette-item-height)/2);--_ui5_color-palette-row-width:12rem;--_ui5_datetime_picker_width:40.0625rem;--_ui5_datetime_picker_height:25rem;--_ui5_datetime_timeview_phonemode_width:19.5rem;--_ui5_datetime_timeview_padding:1rem;--_ui5_dialog_content_min_height:2.75rem;--_ui5_input_inner_padding:0 0.625rem;--_ui5_input_inner_padding_with_icon:0 0.25rem 0 0.625rem;--_ui5_input_value_state_icon_padding:var(--_ui5-input-icon-padding);--_ui5_list_no_data_height:3rem;--_ui5_list_item_cb_margin_right:0;--_ui5_list_item_title_size:var(--sapFontLargeSize);--_ui5_list_item_img_size:3rem;--_ui5_list_item_img_margin:0.5rem 0.75rem 0.5rem 0rem;--_ui5_list_item_base_height:2.75rem;--_ui5_list_item_icon_size:1.125rem;--_ui5_group_header_list_item_height:2.75rem;--_ui5_list_busy_row_height:3rem;--_ui5_month_picker_item_height:3rem;--_ui5_popup_default_header_height:2.75rem;--_ui5_year_picker_item_height:3rem;--_ui5_tokenizer_root_padding:0.1875rem;--_ui5_token_height:1.625rem;--_ui5_token_icon_padding:0.25rem 0.5rem;--_ui5_token_wrapper_right_padding:0.3125rem;--_ui5_tl_bubble_padding:1rem;--_ui5_tl_indicator_before_bottom:-1.625rem;--_ui5_tl_padding:1rem 1rem 1rem .5rem;--_ui5_tl_li_margin_bottom:1.625rem;--_ui5_switch_focus_width_size_horizon_exp:calc(100% + 4px);--_ui5_switch_focus_height_size_horizon_exp:calc(100% + 4px);--_ui5_switch_text_on_left:calc(-100% + 1.9125rem);--_ui5_switch_slide_transform:translateX(100%) translateX(-1.875rem);--_ui5_switch_rtl_transform:translateX(1.875rem) translateX(-100%);--_ui5_switch_text_right:calc(-100% + 1.9125rem);--_ui5_tc_item_text:3rem;--_ui5_tc_item_height: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:normal;--_ui5_tc_item_icon_circle_size:2.75rem;--_ui5_tc_item_icon_size:1.25rem;--_ui5_tc_item_add_text_margin_top:0.375rem;--_ui5_textarea_padding:0.5625rem 0.6875rem;--_ui5_radio_button_height:2.75rem;--_ui5_radio_button_label_side_padding:.875rem;--_ui5_radio_button_focus_dist:.5rem;--_ui5_radio_button_inner_size:2.75rem;--_ui5_radio_button_svg_size:1.375rem;--_ui5_radio_button_label_width:calc(100% - 2.75rem);--_ui5_radio_button_rtl_focus_right:0.5rem;--_ui5-responsive_popover_header_height:2.75rem;--ui5_side_navigation_item_height:2.75rem;--_ui5_load_more_text_height:2.75rem;--_ui5_load_more_text_font_size:var(--sapFontMediumSize);--_ui5_load_more_desc_padding:0.375rem 2rem 0.875rem 2rem;--_ui5-tree-indent-step:1.5rem;--_ui5-tree-toggle-box-width:2.75rem;--_ui5-tree-toggle-box-height:2.25rem;--_ui5-tree-toggle-icon-size:1.0625rem;--_ui5_timeline_tli_indicator_before_bottom:-1.625rem;--_ui5_timeline_tli_indicator_before_right:-1.625rem;--_ui5_timeline_tli_indicator_before_without_icon_bottom:-1.875rem;--_ui5_timeline_tli_indicator_before_without_icon_right:-1.9375rem;--_ui5_segmented_btn_border_radius:0.375rem}.sapUiSizeCompact,.ui5-content-density-compact,:root,[data-ui5-compact-size]{--_ui5_datetime_timeview_width:17rem;--_ui5_list_item_selection_btn_margin_top:calc(var(--_ui5_checkbox_wrapper_padding)*-1);--_ui5_token_icon_size:.75rem;--_ui5_token_wrapper_left_padding:0}.sapUiSizeCompact,.ui5-content-density-compact,[data-ui5-compact-size]{--_ui5_button_base_height:1.625rem;--_ui5_button_base_padding:0.4375rem;--_ui5_button_base_min_width:2rem;--_ui5_button_icon_font_size:1rem;--_ui5_calendar_height:18rem;--_ui5_calendar_width:17.75rem;--_ui5_calendar_padding:0.5rem;--_ui5_calendar_header_height:2rem;--_ui5_calendar_header_arrow_button_width:2rem;--_ui5_calendar_header_padding:0;--_ui5_checkbox_root_side_padding:var(--_ui5_checkbox_wrapped_focus_padding);--_ui5_checkbox_wrapped_content_margin_top:var(--_ui5_checkbox_compact_wrapped_label_margin_top);--_ui5_checkbox_wrapped_focus_left_top_bottom_position:var(--_ui5_checkbox_compact_focus_position);--_ui5_checkbox_width_height:var(--_ui5_checkbox_compact_width_height);--_ui5_checkbox_wrapper_padding:var(--_ui5_checkbox_compact_wrapper_padding);--_ui5_checkbox_focus_position:var(--_ui5_checkbox_compact_focus_position);--_ui5_checkbox_inner_width_height:var(--_ui5_checkbox_compact_inner_size);--_ui5_checkbox_icon_size:.75rem;--_ui5_checkbox_partially_icon_size:.5rem;--_ui5_color-palette-item-height:1.25rem;--_ui5_color-palette-item-focus-height:1rem;--_ui5_color-palette-item-container-sides-padding:0.1875rem;--_ui5_color-palette-item-container-rows-padding:0.8125rem;--_ui5_color-palette-item-hover-height:1.625rem;--_ui5_color-palette-item-margin:calc(var(--_ui5_color-palette-item-hover-height)/2 - var(--_ui5_color-palette-item-height)/2);--_ui5_color-palette-row-width:8.125rem;--_ui5_color-palette-item-hover-margin:0;--_ui5_color-palette-row-height:7.5rem;--_ui5_color-palette-button-height:2rem;--_ui5_custom_list_item_height:2rem;--_ui5_custom_list_item_rb_min_width:2rem;--_ui5_daypicker_weeknumbers_container_padding_top:2rem;--_ui5_day_picker_item_width:2rem;--_ui5_day_picker_item_height:2rem;--_ui5_day_picker_empty_height:2.125rem;--_ui5_day_picker_item_justify_content:flex-end;--_ui5_datetime_picker_height:17rem;--_ui5_datetime_picker_width:34.0625rem;--_ui5_datetime_timeview_phonemode_width:18.5rem;--_ui5_datetime_timeview_padding:0.5rem;--_ui5_dialog_content_min_height:2.5rem;--_ui5_input_height:var(--_ui5_input_compact_height);--_ui5_input_inner_padding:0 0.5rem;--_ui5_input_icon_min_width:var(--_ui5_input_compact_min_width);--_ui5_input_icon_padding:.25rem .5rem;--_ui5_input_value_state_icon_padding:.1875rem .5rem;--_ui5_popup_default_header_height:2.5rem;--_ui5_textarea_padding:.1875rem .5rem;--_ui5_list_no_data_height:2rem;--_ui5_list_item_cb_margin_right:.5rem;--_ui5_list_item_title_size:var(--sapFontSize);--_ui5_list_item_img_margin:0.55rem 0.75rem 0.5rem 0rem;--_ui5_list_item_base_height:2rem;--_ui5_list_item_icon_size:1rem;--_ui5_list_busy_row_height:2rem;--_ui5_month_picker_item_height:2rem;--_ui5_panel_header_height:2rem;--_ui5_year_picker_item_height:2rem;--_ui5_tokenizer_root_padding:0.125rem;--_ui5_token_height:1.125rem;--_ui5_token_icon_padding:0.1rem 0.25rem;--_ui5_token_wrapper_right_padding:0.25rem;--_ui5_tl_bubble_padding:.5rem;--_ui5_tl_indicator_before_bottom:-.5rem;--_ui5_tl_padding:.5rem;--_ui5_tl_li_margin_bottom:.5rem;--_ui5_wheelslider_item_width:64px;--_ui5_wheelslider_item_height:32px;--_ui5_wheelslider_height:224px;--_ui5_wheelslider_selection_frame_margin_top:calc(var(--_ui5_wheelslider_item_height)*2);--_ui5_wheelslider_arrows_visibility:visible;--_ui5_wheelslider_mobile_selection_frame_margin_top:128px;--_ui5_switch_height:var(--_ui5_switch_compact_height);--_ui5_switch_width:var(--_ui5_switch_compact_width);--_ui5_switch_handle_height:var(--_ui5_switch_handle_compact_height);--_ui5_switch_handle_width:var(--_ui5_switch_handle_compact_width);--_ui5_switch_text_on_left:calc(-100% + 1.5625rem);--_ui5_switch_slide_transform:translateX(100%) translateX(-1.5rem);--_ui5_switch_no_label_width:var(--_ui5_switch_compact_no_label_width);--_ui5_switch_no_label_width_horizon:var(--_ui5_switch_compact_no_label_width_horizon);--_ui5_switch_rtl_transform:translateX(-100%) translateX(1.5rem);--_ui5_switch_text_right:calc(-100% + 1.5625rem);--_ui5_switch_root_outline_top_bottom:var(--_ui5_switch_compact_root_outline_top_bottom);--_ui5_switch_root_outline_left_right:var(--_ui5_switch_compact_root_outline_left_right);--_ui5_switch_root_outline_top_bottom_horizon:var(--_ui5_switch_compact_root_outline_top_bottom_horizon);--_ui5_switch_root_outline_left_right_horizon:var(--_ui5_switch_compact_root_outline_left_right_horizon);--_ui5_switch_root_outline_top_bottom_hcb:var(--_ui5_switch_compact_root_outline_top_bottom_hcb);--_ui5_switch_root_outline_left_right_hcb:var(--_ui5_switch_compact_root_outline_left_right_hcb);--_ui5_tc_item_text:2rem;--_ui5_tc_item_text_line_height:1.325rem;--_ui5_tc_item_add_text_margin_top:0.3125rem;--_ui5_tc_header_height:var(--_ui5_tc_header_height_compact);--_ui5_tc_item_height:4rem;--_ui5_tc_item_icon_circle_size:2rem;--_ui5_tc_item_icon_size:1rem;--_ui5_radio_button_min_width:var(--_ui5_radio_button_min_width_compact);--_ui5_radio_button_height:2rem;--_ui5_radio_button_label_side_padding:.5rem;--_ui5_radio_button_focus_dist:.375rem;--_ui5_radio_button_inner_size:2rem;--_ui5_radio_button_svg_size:1rem;--_ui5_radio_button_label_width:calc(100% - 2rem + 1px);--_ui5_radio_button_rtl_focus_right:0.375rem;--_ui5-responsive_popover_header_height:2.5rem;--ui5_side_navigation_item_height:2rem;--_ui5_slider_handle_height:1.25rem;--_ui5_slider_handle_width:1.25rem;--_ui5_slider_handle_top:-0.6425rem;--_ui5_slider_handle_margin_left:-0.7825rem;--_ui5_slider_tooltip_height:1rem;--_ui5_slider_tooltip_padding:0.25rem;--_ui5_slider_tooltip_bottom:1.825rem;--_ui5_slider_progress_outline_offset:-0.625rem;--_ui5_slider_outer_height:1.3125rem;--_ui5_load_more_text_height:2.625rem;--_ui5_load_more_text_font_size:var(--sapFontSize);--_ui5_load_more_desc_padding:0 2rem 0.875rem 2rem;--_ui5-tree-indent-step:0.5rem;--_ui5-tree-toggle-box-width:2rem;--_ui5-tree-toggle-box-height:1.5rem;--_ui5-tree-toggle-icon-size:0.8125rem;--_ui5_timeline_tli_indicator_before_bottom:-0.5rem;--_ui5_timeline_tli_indicator_before_right:-0.5rem;--_ui5_timeline_tli_indicator_before_without_icon_bottom:-0.75rem;--_ui5_timeline_tli_indicator_before_without_icon_right:-0.8125rem}:root{--ui5-avatar-initials-color:var(--sapContent_ImagePlaceholderForegroundColor);--ui5-avatar-initials-border:none;--ui5-avatar-accent1:var(--sapAccentColor1);--ui5-avatar-accent2:var(--sapAccentColor2);--ui5-avatar-accent3:var(--sapAccentColor3);--ui5-avatar-accent4:var(--sapAccentColor4);--ui5-avatar-accent5:var(--sapAccentColor5);--ui5-avatar-accent6:var(--sapAccentColor6);--ui5-avatar-accent7:var(--sapAccentColor7);--ui5-avatar-accent8:var(--sapAccentColor8);--ui5-avatar-accent9:var(--sapAccentColor9);--ui5-avatar-accent10:var(--sapAccentColor10);--ui5-avatar-placeholder:var(--sapContent_ImagePlaceholderBackground);--ui5-avatar-accent1-color:var(--ui5-avatar-initials-color);--ui5-avatar-accent2-color:var(--ui5-avatar-initials-color);--ui5-avatar-accent3-color:var(--ui5-avatar-initials-color);--ui5-avatar-accent4-color:var(--ui5-avatar-initials-color);--ui5-avatar-accent5-color:var(--ui5-avatar-initials-color);--ui5-avatar-accent6-color:var(--ui5-avatar-initials-color);--ui5-avatar-accent7-color:var(--ui5-avatar-initials-color);--ui5-avatar-accent8-color:var(--ui5-avatar-initials-color);--ui5-avatar-accent9-color:var(--ui5-avatar-initials-color);--ui5-avatar-accent10-color:var(--ui5-avatar-initials-color);--ui5-avatar-placeholder-color:var(--ui5-avatar-initials-color);--_ui5_avatar_outline:var(--sapContent_FocusWidth) var(--sapContent_FocusStyle) var(--sapContent_FocusColor);--_ui5_avatar_focus_offset:1px;--_ui5_avatar_focus_width:1px;--_ui5_avatar_focus_color:var(--sapContent_FocusColor);--_ui5_avatar_fontsize_XS:0.75rem;--_ui5_avatar_fontsize_M:1.625rem;--_ui5_avatar_fontsize_L:2rem;--_ui5_avatar_fontsize_XL:2.75rem;--_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-badge-font-size:0.75em;--_ui5-badge-height:1rem;--_ui5-badge-border:0.0625em solid;--_ui5-badge-left-border:1px solid;--_ui5-badge-border-radius:0.5em;--_ui5-badge-font-weight:bold;--_ui5-badge-text-transform:uppercase;--_ui5-badge-cursor:default;--_ui5_badge_pointer_events:none;--ui5-badge-color-scheme-1-background:var(--sapLegendBackgroundColor1);--ui5-badge-color-scheme-1-hover-background:var(--ui5-badge-color-scheme-1-background);--ui5-badge-color-scheme-1-border:var(--sapAccentColor1);--ui5-badge-color-scheme-1-color:var(--sapAccentColor1);--ui5-badge-color-scheme-2-background:var(--sapLegendBackgroundColor2);--ui5-badge-color-scheme-2-hover-background:var(--ui5-badge-color-scheme-2-background);--ui5-badge-color-scheme-2-border:var(--sapAccentColor2);--ui5-badge-color-scheme-2-color:var(--sapAccentColor2);--ui5-badge-color-scheme-3-background:var(--sapLegendBackgroundColor3);--ui5-badge-color-scheme-3-hover-background:var(--ui5-badge-color-scheme-3-background);--ui5-badge-color-scheme-3-border:var(--sapAccentColor3);--ui5-badge-color-scheme-3-color:var(--sapAccentColor3);--ui5-badge-color-scheme-4-background:var(--sapLegendBackgroundColor5);--ui5-badge-color-scheme-4-hover-background:var(--ui5-badge-color-scheme-4-background);--ui5-badge-color-scheme-4-border:var(--sapAccentColor4);--ui5-badge-color-scheme-4-color:var(--sapAccentColor4);--ui5-badge-color-scheme-5-background:var(--sapLegendBackgroundColor20);--ui5-badge-color-scheme-5-hover-background:var(--ui5-badge-color-scheme-5-background);--ui5-badge-color-scheme-5-border:var(--sapAccentColor5);--ui5-badge-color-scheme-5-color:var(--sapAccentColor5);--ui5-badge-color-scheme-6-background:var(--sapLegendBackgroundColor6);--ui5-badge-color-scheme-6-hover-background:var(--ui5-badge-color-scheme-6-background);--ui5-badge-color-scheme-6-border:var(--sapAccentColor6);--ui5-badge-color-scheme-6-color:var(--sapAccentColor6);--ui5-badge-color-scheme-7-background:var(--sapLegendBackgroundColor7);--ui5-badge-color-scheme-7-hover-background:var(--ui5-badge-color-scheme-7-background);--ui5-badge-color-scheme-7-border:var(--sapAccentColor7);--ui5-badge-color-scheme-7-color:var(--sapAccentColor7);--ui5-badge-color-scheme-8-background:var(--sapLegendBackgroundColor18);--ui5-badge-color-scheme-8-hover-background:var(--ui5-badge-color-scheme-8-background);--ui5-badge-color-scheme-8-border:var(--sapLegendColor18);--ui5-badge-color-scheme-8-color:var(--sapLegendColor18);--ui5-badge-color-scheme-9-background:var(--sapLegendBackgroundColor10);--ui5-badge-color-scheme-9-hover-background:var(--ui5-badge-color-scheme-9-background);--ui5-badge-color-scheme-9-border:var(--sapAccentColor10);--ui5-badge-color-scheme-9-color:var(--sapAccentColor10);--ui5-badge-color-scheme-10-background:var(--sapLegendBackgroundColor9);--ui5-badge-color-scheme-10-hover-background:var(--ui5-badge-color-scheme-10-background);--ui5-badge-color-scheme-10-border:var(--sapAccentColor9);--ui5-badge-color-scheme-10-color:var(--sapAccentColor9);--_ui5_busy_indicator_color:var(--sapContent_IconColor);--_ui5_busy_indicator_focus_outline:var(--sapContent_FocusWidth) var(--sapContent_FocusStyle) var(--sapContent_FocusColor);--_ui5_busy_indicator_focus_border_radius:0px;--_ui5_button_base_min_width:2.5rem;--_ui5_button_base_min_compact_width:2rem;--_ui5_button_base_height:2.5rem;--_ui5_button_compact_height:1.625rem;--_ui5_button_border_radius:var(--sapButton_BorderCornerRadius);--_ui5_button_base_padding:0.6875rem;--_ui5_button_compact_padding:0.4375rem;--_ui5_button_base_icon_margin:0.563rem;--_ui5_button_icon_font_size:1.375rem;--_ui5_button_outline:1px dotted var(--sapContent_FocusColor);--_ui5_button_emphasized_outline:1px dotted var(--sapContent_FocusColor);--_ui5_button_outline_offset:-0.1875rem;--_ui5_button_emphasized_font_weight:normal;--_ui5_button_text_shadow:var(--sapContent_TextShadow);--_ui5_button_focus_offset:1px;--_ui5_button_focus_width:1px;--_ui5_button_focus_color:var(--sapContent_FocusColor);--_ui5_button_focus_outline_focus_color:var(--sapContent_ContrastFocusColor);--_ui5_button_positive_border_focus_hover_color:var(--sapContent_FocusColor);--_ui5_button_positive_focus_border_color:var(--sapButton_Accept_BorderColor);--_ui5_button_negative_focus_border_color:var(--sapButton_Reject_BorderColor);--_ui5_button_attention_focus_border_color:var(--sapButton_Negative_BorderColor);--_ui5_button_emphasized_focused_border_color:var(--sapButton_Emphasized_BorderColor);--_ui5_button_fontFamily:"72override",var(--sapFontFamily);--_ui5_button_emphasized_focused_border_radius:0;--_ui5_button_transparent_hover:transparent;--_ui5_button_base_min_width:2.25rem;--_ui5_button_base_height:2.25rem;--_ui5_button_base_padding:0.5625rem;--_ui5_button_base_icon_only_padding:0.5625rem;--_ui5_button_base_icon_margin:0.375rem;--_ui5_button_icon_font_size:1rem;--_ui5_button_emphasized_font_weight:bold;--_ui5_button_text_shadow:none;--_ui5_button_emphasized_focused_border:0.0625rem dotted var(--sapContent_ContrastFocusColor);--_ui5_button_emphasized_outline:1px solid var(--sapContent_FocusColor);--_ui5_card_box_shadow:var(--sapContent_Shadow0);--_ui5_card_hover_box_shadow:var(--_ui5_card_box_shadow);--_ui5_card_border_color:var(--sapTile_BorderColor);--_ui5_card_border-radius:.25rem;--_ui5_card_content_padding:1rem;--_ui5_card_header_hover_bg:var(--sapList_Hover_Background);--_ui5_card_header_active_bg:var(--_ui5_card_header_hover_bg);--_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:0px;--_ui5_card_header_focus_bottom_radius:0px;--_ui5_card_header_focus_offset:1px;--_ui5_card_header_title_font_family:"72override",var(--sapFontFamily);--_ui5_card_header_title_font_size:var(--sapFontHeader5Size);--_ui5_card_header_title_font_weight:normal;--ui5_carousel_button_size:2.5rem;--ui5_carousel_height:0.25rem;--ui5_carousel_width:0.25rem;--ui5_carousel_margin:0 0.375rem;--ui5_carousel_border:1px solid var(--sapContent_ForegroundBorderColor);--ui5_carousel_dot_border:none;--ui5_carousel_dot_background:var(--sapContent_NonInteractiveIconColor);--_ui5_checkbox_wrapper_padding:.8125rem;--_ui5_checkbox_width_height:3rem;--_ui5_checkbox_box_shadow:none;--_ui5_checkbox_transition:unset;--_ui5_checkbox_focus_border:none;--_ui5_checkbox_border_radius:0;--_ui5_checkbox_hover_background:var(--sapField_Hover_Background);--_ui5_checkbox_active_background:var(--sapField_Hover_Background);--_ui5_checkbox_checkmark_warning_color:var(--sapField_TextColor);--_ui5_checkbox_checkmark_color:var(--sapSelectedColor);--_ui5_checkbox_focus_position:.6875rem;--_ui5_checkbox_focus_outline:var(--sapContent_FocusWidth) var(--sapContent_FocusStyle) var(--sapContent_FocusColor);--_ui5_checkbox_focus_border_radius:0;--_ui5_checkbox_outer_hover_background:transparent;--_ui5_checkbox_inner_width_height:1.375rem;--_ui5_checkbox_inner_border:solid .125rem var(--sapField_BorderColor);--_ui5_checkbox_inner_hover_border_color:var(--sapField_HoverBorderColor);--_ui5_checkbox_inner_hover_checked_border_color:var(--sapField_HoverBorderColor);--_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_BorderColor);--_ui5_checkbox_inner_border_radius:0;--_ui5_checkbox_inner_error_border:0.125rem solid var(--sapField_InvalidColor);--_ui5_checkbox_inner_warning_border:0.125rem solid var(--sapField_WarningColor);--_ui5_checkbox_inner_information_border:0.125rem solid var(--sapField_InformationColor);--_ui5_checkbox_inner_information_box_shadow:none;--_ui5_checkbox_inner_warning_box_shadow:none;--_ui5_checkbox_inner_error_box_shadow:none;--_ui5_checkbox_inner_success_box_shadow:none;--_ui5_checkbox_inner_default_box_shadow:none;--_ui5_checkbox_inner_warning_background_hover:var(--sapField_WarningBackground);--_ui5_checkbox_inner_error_background_hover:var(--sapField_InvalidBackground);--_ui5_checkbox_inner_success_background_hover:var(--sapField_SuccessBackground);--_ui5_checkbox_inner_information_background_hover:var(--sapField_InformationBackground);--_ui5_checkbox_inner_success_border:var(--sapField_BorderWidth) solid var(--sapField_SuccessColor);--_ui5_checkbox_inner_readonly_border:0.125rem solid var(--sapField_ReadOnly_BorderColor);--_ui5_checkbox_inner_background:var(--sapField_Background);--_ui5_checkbox_wrapped_focus_padding:.375rem;--_ui5_checkbox_wrapped_content_margin_top:.125rem;--_ui5_checkbox_wrapped_focus_left_top_bottom_position:.5625rem;--_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_compact_wrapped_label_margin_top:-1px;--_ui5_checkbox_label_color:var(--sapContent_LabelColor);--_ui5_checkbox_label_offset_left:var(--_ui5_checkbox_wrapper_padding);--_ui5_checkbox_label_offset_right:0;--_ui5_checkbox_disabled_label_color:var(--sapContent_LabelColor);--_ui5_checkbox_default_focus_border:none;--_ui5_checkbox_focus_outline_display:block;--_ui5_checkbox_wrapper_padding:.6875rem;--_ui5_checkbox_width_height:2.75rem;--_ui5_checkbox_inner_border:.0625rem solid var(--sapField_BorderColor);--_ui5_checkbox_focus_position:0.5625rem;--_ui5_checkbox_inner_border_radius:.125rem;--_ui5_checkbox_wrapped_content_margin_top:0;--_ui5_checkbox_wrapped_focus_padding:.5rem;--_ui5_checkbox_inner_readonly_border:1px solid var(--sapField_ReadOnly_BorderColor);--_ui5_checkbox_compact_wrapped_label_margin_top:-0.125rem;--_ui5_color-palette-item-container-sides-padding:0.3125rem;--_ui5_color-palette-item-container-rows-padding:0.6875rem;--_ui5_color-palette-item-focus-height:1.5rem;--_ui5_color-palette-item-container-padding:var(--_ui5_color-palette-item-container-sides-padding) var(--_ui5_color-palette-item-container-rows-padding);--_ui5_color-palette-item-hover-margin:0;--_ui5_color-palette-row-height:9.5rem;--_ui5_color-palette-button-height:3rem;--_ui5_color-palette-item-before-focus-color:0.0625rem solid #fff;--_ui5_color-palette-item-before-focus-offset:0.0625rem;--_ui5_color-palette-item-after-focus-color:0.0625rem dotted #000;--_ui5_color-palette-item-after-focus-offset:0.0625rem;--_ui5_color-palette-item-border-radius:0;--_ui5_color_picker_slider_handle_box_shadow:0.0625rem solid var(--sapField_BorderColor);--_ui5_color_picker_slider_handle_border:0.125rem solid var(--sapField_BorderColor);--_ui5_color_picker_slider_handle_outline_hover:0.125rem solid var(--sapButton_Hover_BorderColor);--_ui5_color_picker_slider_handle_outline_focus:0.0625rem dotted var(--sapContent_FocusColor);--_ui5_color_picker_slider_handle_margin_top:0.0625rem;--_ui5_color_picker_slider_handle_focus_margin_top:0.0625rem;--_ui5_datepicker_icon_border:none;--_ui5-datepicker_border_radius:0;--_ui5-datepicker-hover-background:var(--sapField_Hover_Background);--_ui5-datepicker_icon_border_radius:0;--_ui5_daypicker_item_box_shadow:inset 0 0 0 0.0625rem var(--sapContent_Selected_ForegroundColor);--_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: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:0;--_ui5_daypicker_item_now_inner_border_radius:0;--_ui5_daypicker_dayname_color:var(--sapContent_LabelColor);--_ui5_daypicker_weekname_color:var(--sapContent_LabelColor);--_ui5_daypicker_item_outline_width:1px;--_ui5_daypicker_item_outline_offset:1px;--_ui5_daypicker_item_now_selected_outline_offset:2px;--_ui5_daypicker_item_now_focus_after_width:calc(100% - 0.25rem);--_ui5_daypicker_item_now_focus_after_height:calc(100% - 0.25rem);--_ui5_daypicker_item_now_selected_focus_after_width:calc(100% - 0.375rem);--_ui5_daypicker_item_now_selected_focus_after_height:calc(100% - 0.375rem);--_ui5_daypicker_item_selected_background:transparent;--_ui5_daypicker_item_selected_box_shadow:var(--_ui5_daypicker_item_box_shadow),var(--_ui5_daypicker_item_box_shadow);--_ui5_daypicker_item_selected_daytext_hover_background:transparent;--_ui5_daypicker_item_outline_focus_after:none;--_ui5_daypicker_item_border_radius_focus_after:none;--_ui5_daypicker_item_border_focus_after:var(--_ui5_daypicker_item_outline_width) dotted var(--sapContent_FocusColor);--_ui5_daypicker_item_width_focus_after:calc(100% - 0.25rem);--_ui5_daypicker_item_height_focus_after:calc(100% - 0.25rem);--_ui5_daypicker_item_now_border:0.125rem solid var(--sapLegend_CurrentDateTime);--_ui5_daypicker_item_now_outline:none;--_ui5_daypicker_item_now_outline_offset:none;--_ui5_daypicker_item_now_outline_offset_focus_after:var(--_ui5_daypicker_item_now_outline_offset);--_ui5_daypicker_item_selected_between_border:5%;--_ui5_daypicker_item_selected_between_background:transparent;--_ui5_daypicker_item_selected_between_text_background:var(--sapList_SelectionBackgroundColor);--_ui5_daypicker_item_selected_between_text_font:inherit;--_ui5_daypicker_item_selected_between_hover_background:inherit;--_ui5_daypicker_item_now_box_shadow:inset 0 0 0 0.0625rem var(--_ui5_daypicker_item_selected_border_color);--_ui5_daypicker_item_selected_text_outline:none;--_ui5_daypicker_item_border_radius:0.25rem;--_ui5_daypicker_item_now_inner_border_radius:0.125rem;--_ui5_dialog_resize_handle_color:var(--sapButton_Lite_TextColor);--_ui5_dialog_header_focus_width:0.0625rem;--_ui5_dialog_header_focus_offset:-0.1875rem;--_ui5_dialog_outline:var(--_ui5_dialog_header_focus_width) var(--sapContent_FocusStyle) var(--sapContent_FocusColor);--_ui5_dialog_header_border_radius:0px;--_ui5_dialog_resize_handle_right:-0.25rem;--_ui5_dialog_resize_handle_bottom:-0.0625rem;--ui5-group-header-listitem-background-color:var(--sapList_GroupHeaderBackground);--_ui5_input_width:13.125rem;--_ui5_input_height:2.5rem;--_ui5_input_compact_height:1.625rem;--_ui5-input-hover-border:1px solid var(--sapField_Hover_BorderColor);--_ui5-input-hover-box-shadow:none;--_ui5-input-focus-box-shadow:none;--_ui5-input-background-color:var(--sapField_Background);--_ui5-input-border-radius:var(--sapField_BorderCornerRadius);--_ui5-input-border:2px solid transparent;--_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-focus-outline:var(--_ui5_input_focus_border_width) dotted var(--sapContent_FocusColor);--_ui5-input-focus-outline-offset:-3px;--_ui5_input_state_border_width:0.125rem;--_ui5-input-information_border_width:0.125rem;--_ui5_input_error_font_weight:normal;--_ui5_input_focus_border_width:1px;--_ui5_input_error_warning_border_style:solid;--_ui5_input_error_warning_font_style:inherit;--_ui5_input_disabled_color:var(--sapContent_DisabledTextColor);--_ui5_input_disabled_font_weight:normal;--_ui5_input_disabled_border_color:var(--sapField_ReadOnly_BorderColor);--_ui5-input-disabled-background:var(--sapField_ReadOnly_Background);--_ui5_input_readonly_border_color:var(--sapField_ReadOnly_BorderColor);--_ui5-input-readonly-background:var(--sapField_ReadOnly_Background);--_ui5_input_icon_padding:0.625rem .6875rem;--_ui5_input_disabled_opacity:0.5;--_ui5_input_icon_min_width:2.375rem;--_ui5_input_compact_min_width:2rem;--_ui5-input-value-state-outline:var(--_ui5_input_focus_border_width) dotted var(--sapContent_FocusColor);--_ui5-input-value-state-outline-offset:-4px;--_ui5-input-transition:none;--_ui5-input-value-state-icon-display:none;--_ui5-input-focused-value-state-error-background:var(--sapField_InvalidBackground);--_ui5-input-focused-value-state-warning-background:var(--sapField_WarningBackground);--_ui5-input-focused-value-state-success-background:var(--sapField_SuccessBackground);--_ui5-input-focused-value-state-information-background:var(--sapField_InformationBackground);--_ui5-input-value-state-error-border-color:var(--sapField_InvalidColor);--_ui5-input-focused-value-state-error-border-color:var(--sapField_InvalidColor);--_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-value-state-information-border-width:1px;--_ui5-input-background-image:none;--_ui5-input-information-background-image:none;--_ui5-input-success-background-image:none;--_ui5-input-error-background-image:none;--_ui5-input-warning-background-image:none;--_ui5_input_readonly_icon_display:none;--_ui5_input_height:2.25rem;--_ui5-input-border:1px solid var(--sapField_BorderColor);--_ui5_input_disabled_opacity:0.4;--_ui5_input_icon_padding:.5625rem .6875rem;--_ui5_input_icon_color:var(--sapContent_IconColor);--_ui5_input_icon_pressed_color:var(--sapButton_Active_TextColor);--_ui5_input_icon_pressed_bg:var(--sapButton_Selected_Background);--_ui5_input_icon_hover_bg:var(--sapButton_Lite_Hover_Background);--_ui5_input_icon_border_radius:0;--_ui5_input_icon_box_shadow:none;--_ui5_input_icon_border:1px solid transparent;--_ui5_input_icon_margin:0;--_ui5_link_opacity:0.5;--_ui5_link_border:0.0625rem dotted transparent;--_ui5_link_border_focus:0.0625rem dotted var(--sapContent_FocusColor);--_ui5_link_focus_border-radius:0;--_ui5_link_opacity:0.4;--_ui5_link_text_decoration:none;--_ui5_link_hover_text_decoration:underline;--ui5_list_footer_text_color:var(--sapPageFooter_TextColor);--ui5_list_footer_text_color:var(--sapTextColor);--ui5-listitem-background-color:var(--sapList_Background);--ui5-listitem-border-bottom:1px solid var(--sapList_BorderColor);--ui5-listitem-selected-border-bottom:1px solid var(--sapList_SelectionBorderColor);--ui5-listitem-active-border-color:var(--sapContent_ContrastFocusColor);--_ui5_listitembase_focus_width:1px;--_ui5-listitembase_disabled_opacity:0.5;--_ui5_product_switch_item_border:none;--_ui5_monthpicker_item_border_radius:0;--_ui5_monthpicker_item_border:none;--_ui5_monthpicker_item_margin:1px;--_ui5_monthpicker_item_focus_after_width:calc(100% - 0.375rem);--_ui5_monthpicker_item_focus_after_height:calc(100% - 0.375rem);--_ui5_monthpicker_item_focus_after_border:1px dotted var(--sapContent_FocusColor);--_ui5_monthpicker_item_focus_after_offset:2px;--_ui5_monthpicker_item_focus_after_border_radius:0;--_ui5_monthpicker_item_selected_text_color:var(--sapContent_ContrastTextColor);--_ui5_monthpicker_item_selected_background_color:var(--sapSelectedColor);--_ui5_monthpicker_item_selected_hover_color:var(--sapContent_Selected_Background);--_ui5_monthpicker_item_selected_box_shadow:none;--_ui5_monthpicker_item_focus_after_outline:none;--_ui5_monthpicker_item_selected_font_wieght:inherit;--_ui5_monthpicker_item_border_radius:0.25rem;--_ui5_message_strip_icon_width:2.5rem;--_ui5_message_strip_border_radius:0.1875rem;--_ui5_message_strip_success_border_color:var(--sapSuccessBorderColor);--_ui5_message_strip_error_border_color:var(--sapErrorBorderColor);--_ui5_message_strip_warning_border_color:var(--sapWarningBorderColor);--_ui5_message_strip_information_border_color:var(--sapInformationBorderColor);--_ui5_message_strip_button_border_width:0;--_ui5_message_strip_button_border_style:none;--_ui5_message_strip_button_border_color:transparent;--_ui5_message_strip_button_border_radius:0;--_ui5_message_strip_padding:0.4375rem 2.5rem 0.4375rem 2.5rem;--_ui5_message_strip_padding_no_icon:0.4375rem 2.5rem 0.4375rem 1rem;--_ui5_message_strip_button_height:1.625rem;--_ui5_message_strip_border_width:1px;--_ui5_message_strip_close_button_border:none;--_ui5_message_strip_close_button_size:1.625rem;--_ui5_message_strip_icon_top:0.4375rem;--_ui5_message_strip_focus_width:1px;--_ui5_message_strip_focus_offset:-2px;--_ui5_panel_focus_border:var(--sapContent_FocusWidth) var(--sapContent_FocusStyle) var(--sapContent_FocusColor);--_ui5_panel_header_height:3rem;--_ui5_panel_button_root_width:3rem;--_ui5_panel_background_color:var(--sapGroup_TitleBackground);--_ui5_panel_border_radius:0px;--_ui5_panel_border_radius_expanded:0;--_ui5_panel_border_bottom:1px solid var(--sapGroup_TitleBorderColor);--_ui5_panel_outline_offset:-3px;--_ui5_panel_title_font_weight:normal;--_ui5_panel_header_height:2.75rem;--_ui5_panel_button_root_width:2.75rem;--_ui5_popup_content_padding:.4375em;--_ui5_popup_viewport_margin:10px;--_ui5-popup-border-radius:0.25rem;--_ui5_popup_header_shadow:var(--sapContent_Shadow0);--_ui5_popup_footer_border_top:1px solid var(--sapPageFooter_BorderColor);--_ui5_popup_header_footer_font_weight:400;--_ui5_progress_indicator_background_none:var(--sapField_Background);--_ui5_progress_indicator_background_error:var(--sapField_Background);--_ui5_progress_indicator_background_warning:var(--sapField_Background);--_ui5_progress_indicator_background_success:var(--sapField_Background);--_ui5_progress_indicator_background_information:var(--sapField_Background);--_ui5_progress_indicator_value_state_none:var(--sapNeutralElementColor);--_ui5_progress_indicator_value_state_error:var(--sapNegativeElementColor);--_ui5_progress_indicator_value_state_warning:var(--sapCriticalElementColor);--_ui5_progress_indicator_value_state_success:var(--sapPositiveElementColor);--_ui5_progress_indicator_value_state_information:var(--sapInformativeElementColor);--_ui5_progress_indicator_border_color_error:var(--sapField_BorderColor);--_ui5_progress_indicator_border_color_warning:var(--sapField_BorderColor);--_ui5_progress_indicator_border_color_success:var(--sapField_BorderColor);--_ui5_progress_indicator_border_color_information:var(--sapField_BorderColor);--_ui5_progress_indicator_color:var(--sapTextColor);--_ui5_progress_indicator_bar_color:var(--sapContent_ContrastTextColor);--_ui5_progress_indicator_border:0.0625rem solid var(--sapField_BorderColor);--_ui5_progress_indicator_bar_border_max:none;--_ui5_progress_indicator_icon_visibility:none;--_ui5_radio_button_min_width:2.75rem;--_ui5_radio_button_min_width_compact:2rem;--_ui5_radio_button_hover_fill:var(--sapField_Hover_Background);--_ui5_radio_button_border_width:1px;--_ui5_radio_button_checked_fill:var(--sapSelectedColor);--_ui5_radio_button_checked_error_fill:var(--sapField_InvalidColor);--_ui5_radio_button_checked_warning_fill:var(--sapField_TextColor);--_ui5_radio_button_warning_error_border_dash:0;--_ui5_radio_button_outer_ring_color:var(--sapField_BorderColor);--_ui5_radio_button_outer_ring_width:1;--_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:0 0.625rem;--_ui5_radio_button_outer_ring_padding_with_label:0 0.625rem;--_ui5_radio_button_outer_ring_padding_rtl:0 0.625rem;--_ui5_radio_button_border_radius:0;--_ui5_radio_button_border:none;--_ui5_radio_button_focus_border:none;--_ui5_radio_button_focus_outline:block;--_ui5_radio_button_hover_shadow:none;--_ui5_radio_button_transition:none;--_ui5_radio_button_hover_background:inherit;--_ui5_radio_button_color:var(--sapField_BorderColor);--_ui5_radio_button_label_offset:1px;--_ui5_radio_button_label_color:var(--sapContent_LabelColor);--_ui5_radio_button_items_align:unset;--_ui5_radio_button_inner_width:initial;--_ui5_radio_button_border_readonly_focus_style:var(--sapContent_FocusStyle);--_ui5_segmented_btn_inner_border:0.0625rem solid var(--sapButton_Selected_BorderColor);--_ui5_segmented_btn_inner_border_odd_child:0;--_ui5_segmented_btn_inner_pressed_border_odd_child:0;--_ui5_segmented_btn_border_radius:0.35rem;--_ui5_segmented_btn_inner_border_radius:0;--_ui5_segmented_btn_background_color:transparent;--_ui5_select_disabled_background:var(--sapField_Background);--_ui5_select_disabled_border_color:var(--sapField_BorderColor);--_ui5_select_state_error_warning_border_style:solid;--_ui5_select_state_error_warning_border_width:0.125rem;--_ui5_select_hover_icon_left_border:1px solid transparent;--_ui5_select_rtl_hover_icon_left_border:none;--_ui5_select_rtl_hover_icon_right_border:none;--_ui5_select_focus_width:1px;--_ui5_select_label_olor:var(--sapField_TextColor);--_ui5_switch_height:2.75rem;--_ui5_switch_width:3.875rem;--_ui5_switch_no_label_width:3.25rem;--_ui5_switch_no_label_width_horizon:3.875rem;--_ui5_switch_root_outline_top_bottom:0.25rem;--_ui5_switch_root_outline_left_right:-0.125rem;--_ui5_switch_root_outline_top_bottom_horizon:0.3125rem;--_ui5_switch_root_outline_left_right_horizon:-0.0625rem;--_ui5_switch_root_outline_top_bottom_hcb:0.1875rem;--_ui5_switch_root_outline_left_right_hcb:-0.1875rem;--_ui5_switch_compact_height:2rem;--_ui5_switch_compact_width:3.5rem;--_ui5_switch_compact_no_label_width:2.5rem;--_ui5_switch_compact_no_label_width_horizon:3.5rem;--_ui5_switch_compact_root_outline_top_bottom:0.0625rem;--_ui5_switch_compact_root_outline_left_right:-0.125rem;--_ui5_switch_compact_root_outline_top_bottom_horizon:0.125em;--_ui5_switch_compact_root_outline_left_right_horizon:-0.125rem;--_ui5_switch_compact_root_outline_top_bottom_hcb:0;--_ui5_switch_compact_root_outline_left_right_hcb:-0.1875rem;--_ui5_switch_foucs_border_size:1px;--_ui5_switch_focus_outline:var(--_ui5_switch_foucs_border_size) dotted var(--sapContent_FocusColor);--_ui5_switch_root_after_boreder:var(--_ui5_switch_outline) dotted var(--sapContent_FocusColor);--_ui5-switch-root-border-radius:0;--_ui5-switch-root-box-shadow:none;--_ui5_switch_root_after_outline:none;--_ui5-switch-focus:"";--_ui5_switch_semantic_button_background:var(--sapButton_Background);--_ui5_switch_track_height:1.375rem;--_ui5_switch_track_no_label_height:1.25rem;--_ui5_switch_track_no_label_height_horizont:var(--_ui5_switch_track_height);--_ui5-switch-track-border:1px solid;--_ui5-switch-track-border_color:var(--sapContent_ForegroundBorderColor);--_ui5-switch_handle-off-hover_box_shadow:none;--_ui5-switch_handle-on-hover_box_shadow:none;--_ui5_switch_track_semantic_success_backgroud_color:var(--sapSuccessBackground);--_ui5_switch_track_semantic_error_backgroud_color:var(----sapErrorBackground);--_ui5_switch_track_semantic_border_color:var(--sapSuccessBorderColor);--_ui5_switch_track_semantic_not_checked_border_color:var(--sapErrorBorderColor);--_ui5_switch_track_semantic_checked_hover_border_color:var(--sapSuccessBorderColor);--_ui5_switch_track_semantic_hover_border_color:var(--sapErrorBorderColor);--_ui5_switch_handle_hover_border_color:var(--sapButton_Hover_BorderColor);--_ui5_switch_track_hover_border_color:var(--_ui5_switch_track_checked_border_color);--_ui5_switch_track_hover_background_color:var(--sapButton_Track_Background);--_ui5_switch_track_hover_checked_background_color:var(--sapButton_Track_Selected_Background);--_ui5-switch_track-on-hover-background:var(--_ui5-switch_track-on-background);--_ui5_switch_track_border_radius:0.75rem;--_ui5-switch_track-off-background:var(--sapButton_Track_Background);--_ui5-switch_track-on-background:var(--sapButton_Track_Selected_Background);--_ui5-switch_track-off-hover-color:var(--_ui5-switch_track-off-background);--_ui5-switch-track-transition:none;--_ui5_switch_disabled_opacity:.4;--_ui5_switch_track_disabled_checked_bg:var(--_ui5_switch_track_checked_bg);--_ui5_switch_track_disabled_border_color:var(--sapContent_ForegroundBorderColor);--_ui5_switch_track_disabled_semantic_checked_bg:var(--sapSuccessBackground);--_ui5_switch_track_disabled_semantic_checked_border_color:var(--sapSuccessBorderColor);--_ui5_switch_track_disabled_semantic_bg:var(--sapErrorBackground);--_ui5_switch_track_disabled_semantic_border_color:var(--sapErrorBorderColor);--_ui5-switch-track-icon-display:none;--_ui5_switch_handle_width:2rem;--_ui5_switch_handle_height:2rem;--_ui5_switch_handle_border_width:1px;--_ui5_switch_handle_border_radius:1rem;--_ui5_switch_handle_bg:var(--sapButton_TokenBackground);--_ui5_switch_handle_checked_bg:var(--sapButton_Selected_Background);--_ui5_switch_handle_checked_border_color:var(--sapButton_Selected_BorderColor);--_ui5_switch_handle_semantic_hover_bg:var(--sapErrorBackground);--_ui5_switch_handle_semantic_checked_hover_bg:var(--sapSuccessBackground);--_ui5_switch_handle_semantic_hover_border_color:var(--sapErrorBorderColor);--_ui5_switch_handle_semantic_checked_hover_border_color:var(--sapSuccessBorderColor);--_ui5_switch_handle_compact_width:1.625rem;--_ui5_switch_handle_compact_height:1.625rem;--_ui5-switch-handle-border:var(--_ui5_switch_handle_border_width) solid var(--sapContent_ForegroundBorderColor);--_ui5-switch-handle-left:-1px;--_ui5_switch_handle_disabled_bg:var(--_ui5_switch_handle_bg);--_ui5_switch_handle_disabled_checked_bg:var(--_ui5_switch_handle_checked_bg);--_ui5_switch_handle_disabled_border_color:var(--sapContent_ForegroundBorderColor);--_ui5_switch_handle_disabled_semantic_checked_bg:var(--sapButton_Background);--_ui5_switch_handle_disabled_semantic_checked_border_color:var(--sapSuccessBorderColor);--_ui5_switch_handle_disabled_semantic_border_color:var(--sapErrorBorderColor);--_ui5-switch-handle-icon-display:none;--_ui5-switch-slider-texts-display:inline;--_ui5_switch_text_on_semantic_color:var(--sapPositiveElementColor);--_ui5_switch_text_off_semantic_color:var(--sapNegativeElementColor);--_ui5_switch_text_disabled_color:var(--sapTextColor);--_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:0.125rem solid var(--sapObjectHeader_Background);--_ui5_tc_headeritem_padding:0 1rem;--_ui5_tc_headerItem_color:var(--sapContent_LabelColor);--_ui5_tc_headerItem_text_hover_color:var(--_ui5_tc_headerItem_color);--_ui5_tc_headeritem_text_selected_color:var(--sapSelectedColor);--_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_color:var(--sapNeutralColor);--_ui5_tc_headerItem_positive_color:var(--sapPositiveColor);--_ui5_tc_headerItem_negative_color:var(--sapNegativeColor);--_ui5_tc_headerItem_critical_color:var(--sapCriticalColor);--_ui5_tc_headerItem_neutral_border_color:var(--_ui5_tc_headerItem_neutral_color);--_ui5_tc_headerItem_positive_border_color:var(--_ui5_tc_headerItem_positive_color);--_ui5_tc_headerItem_negative_border_color:var(--_ui5_tc_headerItem_negative_color);--_ui5_tc_headerItem_critical_border_color:var(--_ui5_tc_headerItem_critical_color);--_ui5_tc_headerItem_neutral_selected_border_color:var(--_ui5_tc_headerItem_neutral_color);--_ui5_tc_headerItem_positive_selected_border_color:var(--_ui5_tc_headerItem_positive_color);--_ui5_tc_headerItem_negative_selected_border_color:var(--_ui5_tc_headerItem_negative_color);--_ui5_tc_headerItem_critical_selected_border_color:var(--_ui5_tc_headerItem_critical_color);--_ui5_tc_headerItem_transition:none;--_ui5_tc_headerItem_hover_border_visibility:hidden;--_ui5_tc_headerItem_focus_offset:0px;--_ui5_tc_headerItemContent_border_radius:0.125rem 0.125rem 0 0;--_ui5_tc_headerItemContent_border_bottom:0.125rem solid var(--sapSelectedColor);--_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_headerItem_hover_border_bg:transparent;--_ui5_tc_headerItem_hover_selected_hover_border_bg:transparent;--_ui5_tc_headerItemContent_border_height:0;--_ui5_tc_headerItemContent_offset:1rem;--_ui5_tc_headerItemContent_focus_offset:1rem;--_ui5_tc_headerItem_focus_border:var(--sapContent_FocusWidth) var(--sapContent_FocusStyle) var(--sapContent_FocusColor);--_ui5_tc_headerItemContent_padding:0;--_ui5_tc_headerItemContent_focus_border:none;--_ui5_tc_headerItemContent_default_focus_border:none;--_ui5_tc_headerItemContent_focus_border_radius:0;--_ui5_tc_headerItemSemanticIcon_display:none;--_ui5_tc_headerItem_focus_border_radius:0px;--_ui5_tc_overflowItem_neutral_color:var(--sapNeutralColor);--_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_border:0px;--_ui5_tc_headerItemIcon_border:1px solid var(--sapHighlightColor);--_ui5_tc_headerItemIcon_color:var(--sapHighlightColor);--_ui5_tc_headerItemIcon_selected_background:var(--sapHighlightColor);--_ui5_tc_headerItemIcon_selected_color:var(--sapGroup_ContentBackground);--_ui5_tc_headerItemIcon_positive_selected_background:var(--sapPositiveColor);--_ui5_tc_headerItemIcon_negative_selected_background:var(--sapNegativeColor);--_ui5_tc_headerItemIcon_critical_selected_background:var(--sapCriticalColor);--_ui5_tc_headerItemIcon_neutral_selected_background:var(--sapNeutralColor);--_ui5_tc_headerItemIcon_semantic_selected_color:var(--sapGroup_ContentBackground);--_ui5_tc_content_border_bottom:0.125rem solid var(--sapObjectHeader_BorderColor);--_ui5_tc_headerItem_focus_border_offset:-2px;--_ui5_tc_headerItemIcon_focus_border_radius:0}.sapUiSizeCompact,.ui5-content-density-compact,:root,[data-ui5-compact-size]{--_ui5_tc_header_height:var(--_ui5_tc_item_height)}:root{--_ui5_tc_header_border_bottom:0.0625rem solid var(--sapObjectHeader_Background);--_ui5_tc_headerItemContent_border_bottom:0.1875rem solid var(--sapSelectedColor);--_ui5_tc_overflowItem_default_color:var(--sapHighlightColor);--_ui5_tc_overflowItem_current_color:CurrentColor;--_ui5_tc_content_border_bottom:0.0625rem solid var(--sapObjectHeader_BorderColor);--_ui5_textarea_focus_after_width:1px;--_ui5_textarea_warning_border_style:solid;--_ui5_textarea_state_border_width:0.125rem;--_ui5_textarea_background_image:none;--_ui5_textarea_error_background_image:none;--_ui5_textarea_warning_background_image:none;--_ui5_textarea_information_background_image:none;--_ui_textarea_success_background_image:none;--_ui5_textarea_focus_box_shadow:none;--_ui5_textarea_value_state_warning_focus_box_shadow:none;--_ui5_textarea_value_state_error_focus_box_shadow:none;--_ui5_textarea_value_state_success_focus_box_shadow:none;--_ui5_textarea_hover_box_shadow:none;--_ui5_textarea_inner_border_width:1px;--_ui5_textarea_success_border_width:1px;--_ui5_textarea_focus_outline:var(--_ui5_textarea_focus_after_width) dotted var(--sapContent_FocusColor);--_ui5_textarea_value_state_focus_outline:var(--_ui5_input_focus_border_width) dotted var(--sapContent_FocusColor);--_ui5_textarea_after_element_display:none;--_ui5_textarea_placeholder_font_style:italic;--_ui5-time_picker_border_radius:0;--_ui5_time_picker_border:0.0625rem solid transparent;--_ui5_toast_vertical_offset:3rem;--_ui5_toast_horizontal_offset:2rem;--_ui5_toast_background:var(--sapList_Background);--_ui5_toast_shadow:var(--sapContent_Shadow2);--_ui5_wheelslider_item_text_size:var(--sapFontSize);--_ui5_wheelslider_selected_item_hover_background_color:var(--sapList_BorderColor);--_ui5_wheelslider_label_text_size:var(--sapFontSmallSize);--_ui5_wheelslider_selection_frame_margin_top:calc(var(--_ui5_wheelslider_item_height)*2);--_ui5_wheelslider_mobile_selection_frame_margin_top:calc(var(--_ui5_wheelslider_item_height)*4);--_ui5_wheelslider_label_text_color:var(--sapContent_LabelColor);--_ui5_wheelslider_height:240px;--_ui5_wheelslider_mobile_height:432px;--_ui5_wheelslider_item_width:48px;--_ui5_wheelslider_item_height:46px;--_ui5_wheelslider_arrows_visibility:hidden;--_ui_wheelslider_item_expanded_hover_color:var(--sapList_Hover_Background);--_ui5_wheelslider_item_background_color:var(--sapLegend_WorkingBackground);--_ui5_wheelslider_item_text_color:var(--sapTextColor);--_ui_wheelslider_item_hover_color:var(--sapButton_Emphasized_Hover_BorderColor);--_ui5_wheelslider_item_border_color:var(--sapList_Background);--_ui5_wheelslider_item_hovered_border_color:var(--sapList_Background);--_ui5_wheelslider_collapsed_item_text_color:var(--_ui5_wheelslider_item_border_color);--_ui5_wheelslider_selected_item_background_color:var(--sapContent_Selected_Background);--_ui5_wheelslider_selected_item_hover_background_color:var(--sapButton_Emphasized_Hover_BorderColor);--_ui5_wheelslider_active_item_background_color:var(--sapContent_Selected_Background);--_ui5_wheelslider_active_item_text_color:var(--sapContent_Selected_TextColor);--_ui5_wheelslider_selection_frame_color:var(--sapList_SelectionBorderColor);--_ui_wheelslider_item_border_radius:var(--_ui5_button_border_radius);--_ui5_toggle_button_pressed_focussed:var(--sapButton_Selected_BorderColor);--_ui5_toggle_button_pressed_focussed_hovered:var(--sapButton_Selected_BorderColor);--_ui5_toggle_button_selected_positive_text_color:var(--sapButton_Selected_TextColor);--_ui5_toggle_button_selected_negative_text_color:var(--sapButton_Selected_TextColor);--_ui5_toggle_button_selected_attention_text_color:var(--sapButton_Selected_TextColor);--_ui5_toggle_button_emphasized_pressed_focussed_hovered:var(--sapContent_FocusColor);--_ui5_yearpicker_item_selected_focus:var(--sapContent_Selected_Background);--_ui5_yearpicker_item_selected_hover_color:var(--sapContent_Selected_Background);--_ui5_yearpicker_item_border:none;--_ui5_yearpicker_item_border_radius:0;--_ui5_yearpicker_item_margin:1px;--_ui5_yearpicker_item_focus_after_width:calc(100% - 0.375rem);--_ui5_yearpicker_item_focus_after_height:calc(100% - 0.375rem);--_ui5_yearpicker_item_focus_after_border:1px dotted var(--sapContent_FocusColor);--_ui5_yearpicker_item_focus_after_offset:2px;--_ui5_yearpicker_item_focus_after_border_radius:0;--_ui5_yearpicker_item_selected_background_color:var(--sapSelectedColor);--_ui5_yearpicker_item_selected_text_color:var(--sapContent_ContrastTextColor);--_ui5_yearpicker_item_selected_box_shadow:none;--_ui5_yearpicker_item_focus_after_outline:none;--_ui5_yearpicker_item_border_radius:0.25rem;--_ui5_calendar_header_arrow_button_border:none;--_ui5_calendar_header_arrow_button_border_radius:0.25rem;--_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:0.25rem;--_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% - 0.25rem);--_ui5_calendar_header_middle_button_focus_after_height:calc(100% - 0.25rem);--_ui5_calendar_header_middle_button_focus_after_top_offset:1px;--_ui5_calendar_header_middle_button_focus_after_left_offset:1px;--_ui5_calendar_header_button_background_color:none;--_ui5_calendar_header_arrow_button_box_shadow:none;--_ui5_calendar_header_middle_button_focus_background:transparent;--_ui5_calendar_header_middle_button_focus_outline:none;--_ui5_calendar_header_middle_button_focus_active_outline:none;--_ui5_calendar_header_middle_button_focus_active_background:var(--sapButton_Active_Background);--_ui5_calendar_header_middle_button_focus_after_border:1px dotted var(--sapContent_FocusColor);--_ui5_calendar_header_middle_button_focus_after_width:calc(100% - 0.375rem);--_ui5_calendar_header_middle_button_focus_after_height:calc(100% - 0.375rem);--_ui5_calendar_header_middle_button_focus_after_top_offset:0.125rem;--_ui5_calendar_header_middle_button_focus_after_left_offset:0.125rem;--ui5_table_bottom_border:1px solid var(--sapList_BorderColor);--ui5_table_header_row_outline_width:1px;--ui5_table_multiselect_column_width:2.75rem;--ui5_table_header_row_font_weight:normal;--ui5_table_row_outline_width:1px;--_ui5_load_more_padding:0;--_ui5_load_more_border:1px top solid transparent;--_ui5_load_more_border_radius:none;--_ui5_load_more_outline_width:1px;--ui5_title_level_1Size:1.625rem;--ui5_title_level_2Size:1.375rem;--ui5_title_level_3Size:1.250rem;--ui5_title_level_4Size:1.125rem;--ui5_title_level_5Size:1rem;--ui5_title_level_6Size:0.875rem;--_ui5_token_background:var(--sapButton_Background);--_ui5_token_border_radius:0.125rem;--_ui5_token_text_color:var(--sapButton_TextColor);--_ui5_token_hover_background:var(--sapButton_Hover_Background);--_ui5_token_hover_border_color:var(--sapButton_Hover_BorderColor);--_ui5_token_top_margin:0;--_ui5_token_bottom_margin:0;--_ui5_token_selected_focus_outline:var(--_ui5_token_focus_outline_width) dotted var(--sapContent_ContrastFocusColor);--_ui5_token_focus_outline:var(--_ui5_token_focus_outline_width) dotted var(--sapContent_FocusColor);--_ui5_token_selected_hover_background:var(--sapButton_Selected_Hover_Background);--_ui5_token_selected_hover_border_color:var(--sapButton_Selected_Hover_BorderColor);--_ui5_token_selected_box_shadow:none;--_ui5_token_focused_border:1px solid var(--sapButton_TokenBorderColor);--_ui5_token_focused_selected_border:1px solid var(--sapButton_Selected_BorderColor);--_ui5_token_background:var(--sapButton_TokenBackground);--_ui5_token_border_radius:0.25rem;--_ui5_token_focus_outline_width:0.0625rem;--_ui5_token_text_color:var(--sapTextColor);--_ui5_token_icon_color:var(--sapContent_IconColor);--_ui5_tokenizer_n_more_indicator_font_weight:normal;--_ui5_tokenizer_n_more_indicator_color:var(--sapField_TextColor);--_ui5_value_state_message_border:none;--_ui5_value_state_message_focus_border_radius:0;--_ui5_input_value_state_icon_display:none;--_ui5_value_state_message_padding:0.5rem;--_ui5_value_state_header_padding:.5625rem 1rem;--_ui5-multi_combobox_token_margin_top:3px;--_ui5-multi_combobox_token_margin_top:1px;--_ui5_slider_progress_container_background:var(--sapField_BorderColor);--_ui5_slider_progress_container_dot_display:none;--_ui5_slider_progress_container_dot_background:var(--sapField_BorderColor);--_ui5_slider_progress_border:none;--_ui5_slider_inner_height:0.25rem;--_ui5_slider_outer_height:1.6875rem;--_ui5_slider_progress_border_radius:0.25rem;--_ui5_slider_progress_background:var(--sapActiveColor);--_ui5_slider_handle_icon_display:none;--_ui5_slider_handle_height:1.625rem;--_ui5_slider_handle_width:1.625rem;--_ui5_slider_handle_border:solid 0.125rem var(--sapField_BorderColor);--_ui5_slider_handle_border_radius:1rem;--_ui5_slider_handle_box_shadow:none;--_ui5_slider_handle_box_shadow_focus:none;--_ui5_slider_handle_background:var(--sapButton_Background);--_ui5_range_slider_handle_background:#fff;--_ui5_slider_handle_top:-0.825rem;--_ui5_slider_handle_margin_left:-0.9725rem;--_ui5_slider_handle_hover_background:var(--sapButton_Hover_Background);--_ui5_slider_handle_hover_border:0.125rem solid var(--sapButton_Hover_BorderColor);--_ui5_slider_handle_outline:0.0625rem dotted var(--sapContent_FocusColor);--_ui5_slider_handle_focus_border:var(--_ui5_slider_handle_hover_border);--_ui5_slider_handle_active_border:var(--_ui5_slider_handle_hover_border);--_ui5_slider_handle_focused_top:var(--_ui5_slider_handle_top);--_ui5_slider_handle_focused_margin_left:var(--_ui5_slider_handle_margin_left);--_ui5_slider_handle_outline_offset:0.075rem;--_ui5_slider_icon_left:0.5rem;--_ui5_slider_icon_top:0.125rem;--_ui5_range_slider_handle_hover_background:rgba(var(--sapButton_Background),0.25);--_ui5_range_slider_handle_hover_icon_display:none;--_ui5_slider_progress_outline:0.0625rem dotted var(--sapContent_FocusColor);--_ui5_slider_progress_outline_offset:-0.8125rem;--_ui5_slider_tickmark_top:-0.375rem;--_ui5_slider_disabled_opacity:0.4;--_ui5_slider_tooltip_fontsize:var(--sapFontSmallSize);--_ui5_slider_tooltip_color:var(--sapContent_LabelColor);--_ui5_slider_tooltip_background:var(--sapField_Background);--_ui5_slider_tooltip_border_radius:var(--sapElement_BorderCornerRadius);--_ui5_slider_tooltip_border_color:var(--sapField_BorderColor);--_ui5_slider_tooltip_border:0.0625rem solid var(--_ui5_slider_tooltip_border_color);--_ui5_slider_tooltip_box_shadow:none;--_ui5_slider_tooltip_padding:0.4125rem;--_ui5_slider_tooltip_height:1rem;--_ui5_slider_tooltip_min_width:2rem;--_ui5_slider_tooltip_bottom:2rem;--_ui5_slider_label_fontsize:var(--sapFontSmallSize);--_ui5_slider_label_color:var(--sapContent_LabelColor);--_ui5_range_slider_progress_focus_display:none;--_ui5_range_slider_progress_focus_top:-1.063rem;--_ui5_range_slider_progress_focus_left:-1.438rem;--_ui5_range_slider_progress_focus_padding:0 1.375rem 0 1.438rem;--_ui5_range_slider_progress_focus_height:2rem;--_ui5_range_slider_legacy_progress_focus_display:block;--_ui5_slider_inner_min_width:4rem;--_ui5_suggestions_item_focus_border_radius:0;--_ui5_step_input_input_error_background_color:var(--sapField_InvalidBackground);--_ui5-step_input_button_state_hover_background_color:var(--sapField_Background);--_ui5_step_input_border_style:1px solid var(--sapField_BorderColor);--_ui5_step_input_border_style_hover:1px solid var(--sapField_Hover_BorderColor);--_ui5_step_input_button_background_color:var(--sapField_Background);--_ui5_step_input_input_border:1px solid transparent;--_ui5_step_input_input_margin_top:-0.0625rem;--_ui5_step_input_button_display:inline-block;--_ui5_step_input_button_left:0;--_ui5_step_input_button_right:0;--_ui5_step_input_input_border_focused_after:var(--_ui5_input_focus_border_width) dotted var(--sapContent_FocusColor);--_ui5_step_input_input_border_top_bottom_focused_after:0.0625rem;--_ui5_step_input_input_border_radius_focused_after:0;--_ui5_step_input_input_information_border_color_focused_after:var(--sapField_BorderColor);--_ui5_step_input_input_warning_border_color_focused_after:var(--sapField_BorderColor);--_ui5_step_input_input_success_border_color_focused_after:var(--sapField_BorderColor);--_ui5_step_input_input_error_border_color_focused_after:var(--sapField_BorderColor);--_ui5_step_input_disabled_button_background:var(--sapField_ReadOnly_Background);--_ui5_step_input_border_color_hover:var(--sapField_Hover_Background);--_ui5_step_input_border_hover:1px solid var(--sapField_Hover_BorderColor);--_ui5_input_input_background_color:var(--sapField_InvalidBackground)}'};te("@ui5/webcomponents-theming","sap_fiori_3",()=>zr),te("@ui5/webcomponents","sap_fiori_3",()=>Or);var Hr={packageName:"@ui5/webcomponents",fileName:"themesIcon.css",content:":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_NonInteractiveIconColor);fill:currentColor;outline:none}:host([interactive][focused]) .ui5-icon-root{outline:1px dotted var(--sapContent_FocusColor)}.ui5-icon-root{display:flex;outline:none;vertical-align:top}:host(:not([dir=ltr])) .ui5-icon-root[dir=rtl]{transform:scaleX(-1);transform-origin:center}"};const Rr={tag:"ui5-icon",languageAware:!0,themeAware:!0,properties:{interactive:{type:Boolean},name:{type:String},accessibleName:{type:String},showTooltip:{type:Boolean},role:{type:String},ariaHidden:{type:String},pathData:{type:String,noAttribute:!0},accData:{type:Object,noAttribute:!0},focused:{type:Boolean},invalid:{type:Boolean},effectiveAccessibleName:{type:String,defaultValue:void 0,noAttribute:!0}},events:{click:{}}};class Ur extends Ft{static get metadata(){return Rr}static get render(){return Ni}static get template(){return Lr}static get styles(){return Hr}static async onDefine(){this.createGlobalStyle()}_onfocusin(e){this.interactive&&(this.focused=!0)}_onfocusout(e){this.focused=!1}_onkeydown(e){this.interactive&&(eo(e)&&this.fireEvent("click"),io(e)&&e.preventDefault())}_onkeyup(e){this.interactive&&io(e)&&this.fireEvent("click")}_onClickHandler(e){e.stopPropagation(),this.fireEvent("click")}get _dir(){if(this.effectiveDir)return this.ltr?"ltr":this.effectiveDir}get effectiveAriaHidden(){return""===this.ariaHidden?!!this.isDecorative||void 0:this.ariaHidden}get tabIndex(){return this.interactive?"0":"-1"}get isDecorative(){return"presentation"===this.effectiveAccessibleRole}get effectiveAccessibleRole(){return this.role?this.role:this.interactive?"button":this.effectiveAccessibleName?"img":"presentation"}static createGlobalStyle(){if(it()){document.head.querySelector("style[data-ui5-icon-global]")||re("ui5-icon { display: none !important; }",{"data-ui5-icon-global":""})}}static removeGlobalStyle(){if(it()){const e=document.head.querySelector("style[data-ui5-icon-global]");e&&document.head.removeChild(e)}}async onBeforeRendering(){const e=this.name;if(!e)return console.warn("Icon name property is required",this);let t=(e=>{const{registryKey:t}=Fr(e);return $r.get(t)})(e);if(t||(t=await Er(e)),"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(!t)return this.invalid=!0,console.warn(`Required icon is not registered. Invalid icon name: ${this.name}`);if(this.invalid=!1,this.pathData=t.pathData,this.accData=t.accData,this.ltr=t.ltr,this.packageName=t.packageName,this._onclick=this.interactive?this._onClickHandler.bind(this):void 0,this.accessibleName)this.effectiveAccessibleName=this.accessibleName;else if(this.accData){const e=await er(this.packageName);this.effectiveAccessibleName=e.getText(this.accData)||void 0}}get hasIconTooltip(){return this.showTooltip&&this.effectiveAccessibleName}async onEnterDOM(){setTimeout(()=>{this.constructor.removeGlobalStyle()},0)}}Ur.define();const Vr={key:"AVATAR_TOOLTIP",defaultText:"Avatar"},jr={key:"BUSY_INDICATOR_TITLE",defaultText:"Please wait"},Wr={key:"BUTTON_ARIA_TYPE_ACCEPT",defaultText:"Positive Action"},qr={key:"BUTTON_ARIA_TYPE_REJECT",defaultText:"Negative Action"},Yr={key:"BUTTON_ARIA_TYPE_EMPHASIZED",defaultText:"Emphasized"},Gr={key:"DATEPICKER_OPEN_ICON_TITLE",defaultText:"Open Picker"},Xr={key:"DATEPICKER_DATE_DESCRIPTION",defaultText:"Date Input"},Zr={key:"DELETE",defaultText:"Delete"},Jr={key:"INPUT_SUGGESTIONS",defaultText:"Suggestions Available"},Kr={key:"INPUT_SUGGESTIONS_TITLE",defaultText:"Select"},Qr={key:"INPUT_SUGGESTIONS_ONE_HIT",defaultText:"1 result available"},ea={key:"INPUT_SUGGESTIONS_MORE_HITS",defaultText:"{0} results are available"},ta={key:"INPUT_SUGGESTIONS_NO_HIT",defaultText:"No results"},ia={key:"LIST_ITEM_POSITION",defaultText:"List item {0} of {1}"},oa={key:"LIST_ITEM_SELECTED",defaultText:"Selected"},ra={key:"LIST_ITEM_NOT_SELECTED",defaultText:"Not Selected"},aa={key:"ARIA_LABEL_LIST_ITEM_CHECKBOX",defaultText:"Multiple Selection Mode"},na={key:"ARIA_LABEL_LIST_ITEM_RADIO_BUTTON",defaultText:"Item Selection."},sa={key:"ARIA_LABEL_LIST_SELECTABLE",defaultText:"Contains Selectable Items"},la={key:"ARIA_LABEL_LIST_MULTISELECTABLE",defaultText:"Contains Multi-Selectable Items"},ua={key:"ARIA_LABEL_LIST_DELETABLE",defaultText:"Contains Deletable Items"},da={key:"RESPONSIVE_POPOVER_CLOSE_DIALOG_BUTTON",defaultText:"Decline"},ca={key:"LOAD_MORE_TEXT",defaultText:"More"},_a={key:"TEXTAREA_CHARACTERS_LEFT",defaultText:"{0} characters remaining"},ha={key:"TEXTAREA_CHARACTERS_EXCEEDED",defaultText:"{0} characters over limit"},pa={key:"TIMEPICKER_HOURS_LABEL",defaultText:"Hours"},ga={key:"TIMEPICKER_MINUTES_LABEL",defaultText:"Minutes"},ma={key:"TIMEPICKER_SECONDS_LABEL",defaultText:"Seconds"},fa={key:"TIMEPICKER_PERIODS_LABEL",defaultText:"AM/PM"},va={key:"TIMEPICKER_SUBMIT_BUTTON",defaultText:"OK"},ba={key:"TIMEPICKER_CANCEL_BUTTON",defaultText:"Cancel"},ya={key:"TIMEPICKER_INPUT_DESCRIPTION",defaultText:"Time Input"},wa={key:"VALUE_STATE_ERROR",defaultText:"Invalid entry"},ka={key:"VALUE_STATE_WARNING",defaultText:"Warning issued"},xa={key:"VALUE_STATE_INFORMATION",defaultText:"Informative entry"},Ca={key:"VALUE_STATE_SUCCESS",defaultText:"Entry successfully validated"},Sa={key:"CALENDAR_HEADER_NEXT_BUTTON",defaultText:"Next"},Ta={key:"CALENDAR_HEADER_PREVIOUS_BUTTON",defaultText:"Previous"},Ba={key:"DAY_PICKER_WEEK_NUMBER_TEXT",defaultText:"Week Number"},Ia={key:"DAY_PICKER_NON_WORKING_DAY",defaultText:"Non-Working Day"},$a={key:"DAY_PICKER_TODAY",defaultText:"Today"},Da={key:"STEPINPUT_DEC_ICON_TITLE",defaultText:"Decrease"},Aa={key:"STEPINPUT_INC_ICON_TITLE",defaultText:"Increase"};te("@ui5/webcomponents-theming","sap_fiori_3",()=>zr),te("@ui5/webcomponents","sap_fiori_3",()=>Or);var Fa={packageName:"@ui5/webcomponents",fileName:"themesButton.css",content:'.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);border-width:.0625rem;cursor:pointer;background-color:var(--sapButton_Background);border:1px solid var(--sapButton_BorderColor);color:var(--sapButton_TextColor);box-sizing:border-box;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}:host([has-icon]) button[dir=rtl].ui5-button-root .ui5-button-text{margin-right:var(--_ui5_button_base_icon_margin);margin-left:0}:host([has-icon][icon-end]) button[dir=rtl].ui5-button-root .ui5-button-icon{margin-right:var(--_ui5_button_base_icon_margin);margin-left:0}.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;-ms-user-select:none;user-select:none}:host(:not([active]):not([non-interactive]):not([_is-touch]):hover),:host(:not([hidden]).ui5_hovered){background:var(--sapButton_Hover_Background);box-shadow:var(--sapContent_Interaction_Shadow)}.ui5-button-icon{color:inherit;flex-shrink:0}:host([icon-end]) .ui5-button-root{flex-direction:row-reverse}:host([icon-end]) .ui5-button-icon{margin-left:var(--_ui5_button_base_icon_margin)}:host([icon-only]) .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([icon-end])) .ui5-button-text{margin-left:var(--_ui5_button_base_icon_margin)}:host([has-icon][icon-end]) .ui5-button-text{margin-left:0}:host([disabled]){opacity:.5;pointer-events:none}:host([focused]){outline:var(--_ui5_button_outline);outline-offset:var(--_ui5_button_outline_offset)}:host([design=Emphasized][focused]){outline:var(--_ui5_button_emphasized_outline)}.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);text-shadow:none}:host([ui5-button]:not([design=Emphasized])[active]:not([_is-touch])){outline-color:var(--_ui5_button_focus_outline_focus_color)}:host([design=Positive]){background-color:var(--sapButton_Accept_Background);border-color:var(--sapButton_Accept_BorderColor);color:var(--sapButton_Accept_TextColor);text-shadow:var(--_ui5_button_text_shadow)}:host([design=Positive]:not([active]):not([non-interactive]):not([_is-touch]).ui5_hovered),:host([design=Positive]:not([active]):not([non-interactive]):not([_is-touch]):hover){background-color:var(--sapButton_Accept_Hover_Background);border-color:var(--sapButton_Accept_Hover_BorderColor);box-shadow:var(--sapContent_Positive_Shadow)}: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);text-shadow:none}:host([design=Positive][focused]:not([_is-touch])){outline-color:var(--_ui5_button_positive_border_focus_hover_color);border-color:var(--_ui5_button_positive_focus_border_color)}:host([design=Positive][active][focused]){outline-color:var(--_ui5_button_focus_outline_focus_color)}:host([design=Negative]){background-color:var(--sapButton_Reject_Background);border-color:var(--sapButton_Reject_BorderColor);color:var(--sapButton_Reject_TextColor);text-shadow:var(--_ui5_button_text_shadow)}:host([design=Negative]:not([active]):not([non-interactive]):not([_is-touch]).ui5_hovered),:host([design=Negative]:not([active]):not([non-interactive]):not([_is-touch]):hover){background-color:var(--sapButton_Reject_Hover_Background);border-color:var(--sapButton_Reject_Hover_BorderColor);box-shadow:var(--sapContent_Negative_Shadow)}:host([design=Negative][focused]){border-color:var(--_ui5_button_negative_focus_border_color);outline-color:var(--_ui5_button_positive_border_focus_hover_color)}: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);text-shadow:none}:host([design=Negative][active][focused]){outline-color:var(--_ui5_button_focus_outline_focus_color)}:host([design=Attention]){background-color:var(--sapButton_Attention_Background);border-color:var(--sapButton_Attention_BorderColor);color:var(--sapButton_Attention_TextColor);text-shadow:var(--_ui5_button_text_shadow)}:host([design=Attention]:not([active]):not([non-interactive]):not([_is-touch]).ui5_hovered),:host([design=Attention]:not([active]):not([non-interactive]):not([_is-touch]):hover){background-color:var(--sapButton_Attention_Hover_Background);border-color:var(--sapButton_Attention_Hover_BorderColor);color:var(--sapButton_Attention_Hover_TextColor);box-shadow:var(--sapContent_Critical_Shadow)}: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);text-shadow:none}:host([design=Attention][focused]:not([_is-touch])){outline-color:var(--_ui5_button_positive_border_focus_hover_color);border-color:var(--_ui5_button_attention_focus_border_color)}:host([design=Attention][active][focused]){outline-color:var(--_ui5_button_focus_outline_focus_color)}:host([design=Emphasized]){background-color:var(--sapButton_Emphasized_Background);border-color:var(--sapButton_Emphasized_BorderColor);color:var(--sapButton_Emphasized_TextColor);text-shadow:0 0 .125rem var(--sapButton_Emphasized_TextShadow);font-weight:var(--_ui5_button_emphasized_font_weight)}:host([design=Emphasized]:not([active]):not([non-interactive]):not([_is-touch]).ui5_hovered),:host([design=Emphasized]:not([active]):not([non-interactive]):not([_is-touch]):hover){background-color:var(--sapButton_Emphasized_Hover_Background);border-color:var(--sapButton_Emphasized_Hover_BorderColor);box-shadow:var(--sapContent_Informative_Shadow)}: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);text-shadow:none}:host([design=Emphasized][focused]) .ui5-button-root:after{content:"";position:absolute;box-sizing:border-box;left:.0625rem;top:.0625rem;right:.0625rem;bottom:.0625rem;border:var(--_ui5_button_emphasized_focused_border);pointer-events:none;border-radius:var(--_ui5_button_emphasized_focused_border_radius)}:host([design=Transparent]){background-color:var(--sapButton_Lite_Background);color:var(--sapButton_Lite_TextColor);text-shadow:var(--_ui5_button_text_shadow);border-color:var(--sapButton_Lite_BorderColor)}:host([design=Transparent]:not([active]):not([non-interactive]):not([_is-touch]):hover){background-color:var(--_ui5_button_transparent_hover)}:host([design=Transparent]:not([active]):not([non-interactive]):not([_is-touch]).ui5_hovered){background-color:var(--_ui5_button_transparent_hover);border-color:var(--sapButton_Lite_Hover_BorderColor);box-shadow:var(--sapContent_Critical_Shadow)}:host([ui5-button][design=Transparent][active]:not([non-interactive])){background-color:var(--sapButton_Active_Background);color:var(--sapButton_Active_TextColor);text-shadow:none}:host([design=Transparent]:not([active]):hover){border-color:var(--sapButton_Lite_Hover_BorderColor)}'};te("@ui5/webcomponents-theming","sap_fiori_3",()=>zr),te("@ui5/webcomponents","sap_fiori_3",()=>Or);var Ea={packageName:"@ui5/webcomponents",fileName:"themesButton.ie11.css",content:'[ui5-button][focused]{outline:none}[ui5-button][focused] .ui5-button-root{position:relative}[ui5-button][focused] .ui5-button-root:after{content:"";position:absolute;border-width:1px;border-style:dotted;border-color:var(--_ui5_button_focus_color);top:var(--_ui5_button_focus_offset);bottom:var(--_ui5_button_focus_offset);left:var(--_ui5_button_focus_offset);right:var(--_ui5_button_focus_offset)}[ui5-button][active] .ui5-button-root:after{border-color:var(--sapContent_ContrastFocusColor)}[ui5-button][design=Positive][focused] .ui5-button-root:after{border-color:var(--_ui5_button_positive_border_focus_hover_color)}[ui5-button][design=Positive][active][focused] .ui5-button-root:after{border-color:var(--sapContent_ContrastFocusColor)}[ui5-button][design=Negative][focused] .ui5-button-root:after{border-color:var(--_ui5_button_positive_border_focus_hover_color)}[ui5-button][design=Negative][active][focused] .ui5-button-root:after{border-color:var(--sapContent_ContrastFocusColor)}[ui5-button][design=Emphasized][focused] .ui5-button-root:after{border-color:var(--sapContent_ContrastFocusColor)}[ui5-button] [ui5-icon].ui5-button-icon{height:var(--_ui5_button_icon_font_size);top:0}'};let Ma=!1,Pa=null;const La={tag:"ui5-button",languageAware:!0,properties:{design:{type:xr,defaultValue:xr.Default},disabled:{type:Boolean},icon:{type:String},iconEnd:{type:Boolean},submits:{type:Boolean},title:{type:String},active:{type:Boolean},iconOnly:{type:Boolean},focused:{type:Boolean},hasIcon:{type:Boolean},accessibleName:{type:String,defaultValue:void 0},ariaExpanded:{type:String},nonInteractive:{type:Boolean},_iconSettings:{type:Object},_buttonAccInfo:{type:Object},_tabIndex:{type:String,defaultValue:"0",noAttribute:!0},_isTouch:{type:Boolean}},managedSlots:!0,slots:{default:{type:Node}},events:{click:{}}};class Na extends Ft{static get metadata(){return La}static get styles(){return[Fa,it()&&Ea]}static get render(){return Ni}static get template(){return Cr}static get dependencies(){return[Ur]}constructor(){super(),this._deactivate=()=>{Pa&&(Pa.active=!1)},Ma||(document.addEventListener("mouseup",this._deactivate),Ma=!0)}onEnterDOM(){this._isTouch=(yr()||br())&&!(br()&&wr())}onBeforeRendering(){const e=A("FormSupport");this.submits&&!e&&console.warn('In order for the "submits" property to have effect, you should also: import "@ui5/webcomponents/dist/features/InputElementsFormSupport.js";'),this.iconOnly=this.isIconOnly,this.hasIcon=!!this.icon}_onclick(e){if(this.nonInteractive)return;e.isMarked="button";const t=A("FormSupport");t&&t.triggerFormSubmit(this)}_onmousedown(e){this.nonInteractive||this._isTouch||(e.isMarked="button",this.active=!0,Pa=this)}_ontouchstart(e){e.isMarked="button",this.nonInteractive||(this.active=!0)}_ontouchend(e){this.active=!1,Pa&&(Pa.active=!1)}_onmouseup(e){e.isMarked="button"}_onkeydown(e){e.isMarked="button",(io(e)||eo(e))&&(this.active=!0)}_onkeyup(e){(io(e)||eo(e))&&(this.active=!1)}_onfocusout(e){this.nonInteractive||(this.active=!1,this.focused=!1)}_onfocusin(e){this.nonInteractive||(e.isMarked="button",this.focused=!0)}get hasButtonType(){return this.design!==xr.Default&&this.design!==xr.Transparent}get isIconOnly(){return!Array.from(this.childNodes).filter(e=>e.nodeType!==Node.COMMENT_NODE&&(e.nodeType!==Node.TEXT_NODE||0!==e.nodeValue.trim().length)).length}get accInfo(){return{ariaExpanded:this.ariaExpanded||this._buttonAccInfo&&this._buttonAccInfo.ariaExpanded,ariaControls:this._buttonAccInfo&&this._buttonAccInfo.ariaControls,ariaHaspopup:this._buttonAccInfo&&this._buttonAccInfo.ariaHaspopup,title:this.title||this._buttonAccInfo&&this._buttonAccInfo.title}}static typeTextMappings(){return{Positive:Wr,Negative:qr,Emphasized:Yr}}get buttonTypeText(){return Na.i18nBundle.getText(Na.typeTextMappings()[this.design])}get tabIndexValue(){const e=this.getAttribute("tabindex");return e||(this.nonInteractive?"-1":this._tabIndex)}get showIconTooltip(){return this.iconOnly&&!this.title}static async onDefine(){Na.i18nBundle=await er("@ui5/webcomponents")}}Na.define();const za={None:"None",Success:"Success",Warning:"Warning",Error:"Error",Information:"Information"};class Oa extends Pe{static isValid(e){return!!za[e]}}Oa.generateTypeAccessors(za);const Ha="M468.5 106c6 7 9 16 9 24v3c0 9-4 18-11 25l-244 243c-7 7-15 10-24 10-10 0-20-4-28-12l-125-129c-7-7-10-15-10-24 0-10 4-20 12-28 7-6 16-9 24-10 10 0 20 4 28 12l100 103 217-219c7-7 15-10 24-10 10 0 20 4 28 12z";Ar("accept",{pathData:Ha,ltr:!0,collection:"SAP-icons-v5",packageName:"@ui5/webcomponents-icons"});var Ra={pathData:Ha};const Ua="M455.8 94q9 9 3 19l-222 326q-4 8-12 9t-14-5l-151-167q-5-5-4.5-11t5.5-11l25-25q12-12 23 0l96 96q5 5 13 4.5t12-8.5l175-249q4-7 11.5-8t13.5 4z";Ar("accept",{pathData:Ua,ltr:!0,collection:"SAP-icons",packageName:"@ui5/webcomponents-icons"});var Va={pathData:Ua};me("sap_horizon");const ja={None:"None",Normal:"Normal"};class Wa extends Pe{static isValid(e){return!!ja[e]}}Wa.generateTypeAccessors(ja);const qa=(e,t,i)=>vi`<label class="ui5-label-root" dir="${Mi(e.effectiveDir)}" @click=${e._onclick} for="${Mi(e.for)}"><span class="${Fi(e.classes.textWrapper)}"><bdi id="${Mi(e._id)}-bdi"><slot></slot></bdi></span><span class="ui5-label-required-colon"></span></label>`;te("@ui5/webcomponents-theming","sap_fiori_3",()=>zr),te("@ui5/webcomponents","sap_fiori_3",()=>Or);var Ya={packageName:"@ui5/webcomponents",fileName:"themesLabel.css",content:':host(:not([hidden])){display:inline-flex}:host{max-width:100%;color:var(--sapContent_LabelColor);font-family:"72override",var(--sapFontFamily);font-size:var(--sapFontSize);font-weight:400;cursor:text}.ui5-label-root{width:100%;cursor:inherit}:host([wrapping-type=Normal]) .ui5-label-root{white-space:normal}:host(:not([wrapping-type=Normal])) .ui5-label-root{display:inline-block;white-space:nowrap}bdi{content:"";padding-right:.075rem}:host(:not([wrapping-type=Normal])) .ui5-label-text-wrapper{text-overflow:ellipsis;overflow:hidden;display:inline-block;vertical-align:top;max-width:100%}:host(:not([wrapping-type=Normal])[required][show-colon]) .ui5-label-text-wrapper,:host(:not([wrapping-type=Normal])[required][show-colon]) .ui5-label-text-wrapper.ui5-label-text-wrapper-safari{max-width:calc(100% - .8rem)}:host(:not([wrapping-type=Normal])[required]) .ui5-label-text-wrapper{max-width:calc(100% - .475rem)}:host(:not([wrapping-type=Normal])[required]) .ui5-label-text-wrapper.ui5-label-text-wrapper-safari{max-width:calc(100% - .425rem)}:host(:not([wrapping-type=Normal])[show-colon]) .ui5-label-text-wrapper{max-width:calc(100% - .125rem)}:host([show-colon]) .ui5-label-required-colon{margin-left:-.05rem}:host([show-colon]) .ui5-label-required-colon:before{content:":"}:host([required]) .ui5-label-required-colon:after{content:"*";color:var(--sapField_RequiredColor);font-size:1.25rem;font-weight:700;position:relative;font-style:normal;vertical-align:middle;line-height:0}:host([required][show-colon]) .ui5-label-required-colon:after{margin-right:0;margin-left:.125rem}:host([required][show-colon]) [dir=rtl] .ui5-label-required-colon:after{margin-right:.125rem;margin-left:0}'};const Ga={tag:"ui5-label",properties:{required:{type:Boolean},wrappingType:{type:Wa,defaultValue:Wa.None},showColon:{type:Boolean},for:{type:String}},slots:{default:{type:Node}}};class Xa extends Ft{static get metadata(){return Ga}static get render(){return Ni}static get template(){return qa}static get styles(){return Ya}get classes(){return{textWrapper:{"ui5-label-text-wrapper":!0,"ui5-label-text-wrapper-safari":vr()}}}_onclick(){const e=document.getElementById(this.for);e&&e.focus()}}Xa.define();const Za=(e,t,i)=>vi`<div class="ui5-checkbox-root ${Fi(e.classes.main)}" role="checkbox" aria-checked="${Mi(e.ariaChecked)}" aria-readonly="${Mi(e.ariaReadonly)}" aria-disabled="${Mi(e.ariaDisabled)}" aria-labelledby="${Mi(e.ariaLabelledBy)}" aria-describedby="${Mi(e.ariaDescribedBy)}" tabindex="${Mi(e.tabIndex)}" @mousedown="${e._onmousedown}" @mouseup="${e._onmouseup}" @keydown="${e._onkeydown}" @keyup="${e._onkeyup}" @click="${e._onclick}" @focusout="${e._onfocusout}" dir="${Mi(e.effectiveDir)}"><div id="${Mi(e._id)}-CbBg" class="ui5-checkbox-inner">${e.isCompletelyChecked?Ja(e,t,i):void 0}<input id="${Mi(e._id)}-CB" type='checkbox' ?checked="${e.checked}" ?readonly="${e.readonly}" ?disabled="${e.disabled}" tabindex="-1" aria-hidden="true" data-sap-no-tab-ref /></div>${e.text?Ka(e,t,i):void 0}${e.hasValueState?Qa(e):void 0}<slot name="formSupport"></slot></div>`,Ja=(e,t,i)=>vi`<${zi("ui5-icon",t,i)} aria-hidden="true" name="accept" class="ui5-checkbox-icon"></${zi("ui5-icon",t,i)}>`,Ka=(e,t,i)=>vi`<${zi("ui5-label",t,i)} id="${Mi(e._id)}-label" class="ui5-checkbox-label" wrapping-type="${Mi(e.wrappingType)}">${Mi(e.text)}</${zi("ui5-label",t,i)}>`,Qa=(e,t,i)=>vi`<span id="${Mi(e._id)}-descr" class="ui5-hidden-text">${Mi(e.valueStateText)}</span>`;te("@ui5/webcomponents-theming","sap_fiori_3",()=>zr),te("@ui5/webcomponents","sap_fiori_3",()=>Or);var en={packageName:"@ui5/webcomponents",fileName:"themesCheckBox.css",content:'.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(:not([hidden])){display:inline-block}:host{overflow:hidden;max-width:100%;outline:none;border-radius:var(--_ui5_checkbox_border_radius);transition:var(--_ui5_checkbox_transition);cursor:pointer}:host([disabled]) .ui5-checkbox-root{opacity:.5}: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=Warning]):not([value-state=Error])) .ui5-checkbox-inner{background:var(--sapField_ReadOnly_Background);border:var(--_ui5_checkbox_inner_readonly_border);color:var(--sapContent_NonInteractiveIconColor)}:host([wrapping-type=Normal][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([wrapping-type=Normal][text]) .ui5-checkbox-root .ui5-checkbox-inner,:host([wrapping-type=Normal][text]) .ui5-checkbox-root .ui5-checkbox-label{margin-top:var(--_ui5_checkbox_wrapped_content_margin_top)}:host([wrapping-type=Normal][text]) .ui5-checkbox-root .ui5-checkbox-label{word-break:break-all;align-self:center}:host([wrapping-type=Normal]) .ui5-checkbox-root:focus:before{bottom:var(--_ui5_checkbox_wrapped_focus_left_top_bottom_position)}:host([value-state=Error]) .ui5-checkbox--hoverable .ui5-checkbox-inner:hover,:host([value-state=Error]) .ui5-checkbox-inner{background:var(--sapField_InvalidBackground);border:var(--_ui5_checkbox_inner_error_border);color:var(--sapField_InvalidColor)}:host([value-state=Error]) .ui5-checkbox--hoverable .ui5-checkbox-inner:hover{box-shadow:var(--_ui5_checkbox_inner_error_box_shadow);background:var(--_ui5_checkbox_inner_error_background_hover)}:host([value-state=Warning]) .ui5-checkbox--hoverable .ui5-checkbox-inner:hover,:host([value-state=Warning]) .ui5-checkbox-inner{background:var(--sapField_WarningBackground);border:var(--_ui5_checkbox_inner_warning_border);color:var(--sapField_WarningColor)}:host([value-state=Warning]) .ui5-checkbox--hoverable .ui5-checkbox-inner:hover{box-shadow:var(--_ui5_checkbox_inner_warning_box_shadow);background:var(--_ui5_checkbox_inner_warning_background_hover)}:host([value-state=Information]) .ui5-checkbox--hoverable .ui5-checkbox-inner:hover,:host([value-state=Information]) .ui5-checkbox-inner{background:var(--sapField_InformationBackground);border:var(--_ui5_checkbox_inner_information_border)}:host([value-state=Information]) .ui5-checkbox--hoverable .ui5-checkbox-inner:hover{box-shadow:var(--_ui5_checkbox_inner_information_box_shadow);background:var(--_ui5_checkbox_inner_information_background_hover)}:host([value-state=Success]) .ui5-checkbox--hoverable .ui5-checkbox-inner:hover,:host([value-state=Success]) .ui5-checkbox-inner{background:var(--sapField_SuccessBackground);border:var(--_ui5_checkbox_inner_success_border);color:var(--sapField_SuccessColor)}:host([value-state=Success]) .ui5-checkbox--hoverable .ui5-checkbox-inner:hover{box-shadow:var(--_ui5_checkbox_inner_success_box_shadow);background:var(--_ui5_checkbox_inner_success_background_hover)}:host(:not([value-state])) .ui5-checkbox--hoverable .ui5-checkbox-inner:hover,:host([value-state=None]) .ui5-checkbox--hoverable .ui5-checkbox-inner:hover{box-shadow:var(--_ui5_checkbox_inner_default_box_shadow)}:host([value-state=Warning]) .ui5-checkbox-icon,:host([value-state=Warning][indeterminate]) .ui5-checkbox-inner:after{color:var(--_ui5_checkbox_checkmark_warning_color)}:host([text]) .ui5-checkbox-root{padding-right:0}:host([text]) .ui5-checkbox-root:focus:before{right:0}.ui5-checkbox-root{position:relative;display:inline-flex;align-items:center;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}.ui5-checkbox-root:after{content:"";min-height:inherit;font-size:0}.ui5-checkbox-root:focus:before{display:var(--_ui5_checkbox_focus_outline_display);content:"";position:absolute;top:var(--_ui5_checkbox_focus_position);left:var(--_ui5_checkbox_focus_position);right:var(--_ui5_checkbox_focus_position);bottom:var(--_ui5_checkbox_focus_position);border:var(--_ui5_checkbox_focus_outline);border-radius:var(--_ui5_checkbox_focus_border_radius)}:host .ui5-checkbox-root:focus{border:var(--_ui5_checkbox_focus_border);border-radius:.5rem}:host(:hover:not([disabled])){background:var(--_ui5_checkbox_outer_hover_background);box-shadow:var(--_ui5_checkbox_box_shadow)}.ui5-checkbox--hoverable .ui5-checkbox-label:hover{color:var(--_ui5_checkbox_label_color)}:host(:not([active]):not([checked]):not([value-state])) .ui5-checkbox--hoverable .ui5-checkbox-inner:hover,:host(:not([active]):not([checked])[value-state=None]) .ui5-checkbox--hoverable .ui5-checkbox-inner:hover{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 .ui5-checkbox-inner:hover,:host(:not([active])[checked][value-state=None]) .ui5-checkbox--hoverable .ui5-checkbox-inner:hover{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)}.ui5-checkbox-inner{display:flex;justify-content:center;align-items:center;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:default}:host([indeterminate][checked]) .ui5-checkbox-inner:after{content:"";background-color:currentColor;width:var(--_ui5_checkbox_partially_icon_size);height:var(--_ui5_checkbox_partially_icon_size)}.ui5-checkbox-inner input{-webkit-appearance:none;visibility:hidden;width:0;left:0;position:absolute;font-size:inherit}.ui5-checkbox-root .ui5-checkbox-label{margin-left:var(--_ui5_checkbox_label_offset_left);margin-right:var(--_ui5_checkbox_label_offset_right);cursor:default;text-overflow:ellipsis;overflow:hidden;pointer-events:none;user-select:none;-ms-user-select:none;-webkit-user-select: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:default;position:absolute}:host([text]) [dir=rtl].ui5-checkbox-root{padding-left:0;padding-right:var(--_ui5_checkbox_wrapper_padding)}:host([text]) [dir=rtl].ui5-checkbox-root:focus:before{left:0;right:var(--_ui5_checkbox_focus_position)}:host([text]) [dir=rtl].ui5-checkbox-root .ui5-checkbox-label{margin-left:0;margin-right:var(--_ui5_checkbox_compact_wrapper_padding)}'};let tn=!1,on=null;const rn={tag:"ui5-checkbox",languageAware:!0,properties:{disabled:{type:Boolean},readonly:{type:Boolean},indeterminate:{type:Boolean},checked:{type:Boolean},text:{type:String},valueState:{type:Oa,defaultValue:Oa.None},wrappingType:{type:Wa,defaultValue:Wa.None},name:{type:String},active:{type:Boolean}},events:{change:{}},slots:{formSupport:{type:HTMLElement}}};class an extends Ft{static get metadata(){return rn}static get render(){return Ni}static get template(){return Za}static get styles(){return en}constructor(){super(),this._deactivate=()=>{on&&(on.active=!1)},tn||(document.addEventListener("mouseup",this._deactivate),tn=!0)}onBeforeRendering(){this._enableFormSupport()}_enableFormSupport(){const e=A("FormSupport");e?e.syncNativeHiddenInput(this,(e,t)=>{t.disabled=e.disabled||!e.checked,t.value=e.checked?"on":""}):this.name&&console.warn('In order for the "name" property to have effect, you should also: import "@ui5/webcomponents/dist/features/InputElementsFormSupport.js";')}_onclick(){this.toggle()}_onmousedown(){this.readonly||this.disabled||(this.active=!0,on=this)}_onmouseup(){this.active=!1}_onfocusout(){this.active=!1}_onkeydown(e){io(e)&&(e.preventDefault(),this.active=!0),eo(e)&&(this.toggle(),this.active=!0)}_onkeyup(e){io(e)&&this.toggle(),this.active=!1}toggle(){return this.canToggle()&&(this.indeterminate?(this.indeterminate=!1,this.checked=!0):this.checked=!this.checked,this.fireEvent("change"),this.fireEvent("value-changed")),this}canToggle(){return!(this.disabled||this.readonly)}valueStateTextMappings(){return{Error:an.i18nBundle.getText(wa),Warning:an.i18nBundle.getText(ka),Success:an.i18nBundle.getText(Ca)}}get classes(){return{main:{"ui5-checkbox--hoverable":!this.disabled&&!this.readonly&&wr()}}}get ariaReadonly(){return this.readonly?"true":void 0}get ariaDisabled(){return this.disabled?"true":void 0}get ariaChecked(){return this.indeterminate&&this.checked?"mixed":this.checked}get ariaLabelledBy(){return this.text?`${this._id}-label`:void 0}get ariaDescribedBy(){return this.hasValueState?`${this._id}-descr`:void 0}get hasValueState(){return this.valueState!==Oa.None}get valueStateText(){return this.valueStateTextMappings()[this.valueState]}get tabIndex(){const e=this.getAttribute("tabindex");return this.disabled?void 0:e||"0"}get isCompletelyChecked(){return this.checked&&!this.indeterminate}static get dependencies(){return[Xa,Ur]}static async onDefine(){an.i18nBundle=await er("@ui5/webcomponents")}}let nn;an.define();const sn=new Map,ln=()=>(nn||(nn=new window.ResizeObserver(e=>{e.forEach(e=>{sn.get(e.target).forEach(e=>e())})})),nn);class un{static register(e,t){e.isUI5Element&&(e=e.getDomRef()),e instanceof HTMLElement?((e,t)=>{const i=sn.get(e)||[];i.length||ln().observe(e),sn.set(e,[...i,t])})(e,t):console.warn("Cannot register ResizeHandler for element",e)}static deregister(e,t){e.isUI5Element&&(e=e.getDomRef()),e instanceof HTMLElement?((e,t)=>{const i=sn.get(e)||[];if(0===i.length)return;const o=i.filter(e=>e!==t);0===o.length?(ln().unobserve(e),sn.delete(e)):sn.set(e,o)})(e,t):console.warn("Cannot deregister ResizeHandler for element",e)}}class dn extends Pe{static isValid(e){return Number.isInteger(e)}static attributeToProperty(e){return parseInt(e)}}const cn=e=>e.accessibleNameRef?_n(e):e.accessibleName?e.accessibleName:void 0,_n=(e,t,i="")=>{const o=i&&i.split(" ")||e.accessibleNameRef.split(" "),r=t||(e=>{if(!(e instanceof HTMLElement))throw new Error("Argument node should be of type HTMLElement");const t=[HTMLHtmlElement,HTMLIFrameElement];let i=!0,o=!0;for(;e;){if("[object ShadowRoot]"===e.toString()){if(i&&(i=!1),!o&&!i)return e}else if(e.tagName&&e.tagName.indexOf("-")>-1){if(!o)return e;o=!1}else if(t.indexOf(e.constructor)>-1)return e;e=e.parentNode||e.host}})(e);let a="";return o.forEach((e,t)=>{const i=r.querySelector(`[id='${e}']`);a+=`${i?i.textContent:""}`,t<o.length-1&&(a+=" ")}),a},hn={key:"ICON_ADD",defaultText:"Add"},pn={key:"ICON_DECLINE",defaultText:"Decline"},gn="M452.5 417c8 7 12 17 12 26s-4 19-12 26c-7 8-17 12-26 12s-19-4-26-12l-144-143-145 143c-8 8-17 12-26 12-10 0-19-4-27-12-7-7-11-17-11-26s4-19 11-26l145-143-145-146c-7-8-11-17-11-26 0-10 4-19 11-27 8-7 17-11 27-11 9 0 18 4 26 11l145 146 144-146c7-7 17-11 26-11 10 0 19 4 26 11 8 8 12 17 12 27 0 9-4 18-12 26l-144 146z",mn=pn;Ar("decline",{pathData:gn,ltr:!1,accData:mn,collection:"SAP-icons-v5",packageName:"@ui5/webcomponents-icons"});var fn={pathData:gn,accData:mn};const vn="M86 109l22-23q5-5 12-5 6 0 11 5l124 125L380 86q5-5 11-5 7 0 12 5l22 23q12 11 0 23L301 256l124 125q11 11 0 22l-22 23q-8 5-12 5-3 0-11-5L255 301 131 426q-5 5-11 5-4 0-12-5l-22-23q-11-11 0-22l124-125L86 132q-12-12 0-23z",bn=pn;Ar("decline",{pathData:vn,ltr:!1,accData:bn,collection:"SAP-icons",packageName:"@ui5/webcomponents-icons"});var yn={pathData:vn,accData:bn};me("sap_horizon");const wn="M87.5 397l41 41 130-130-41-41zm-30-363l434 434c5 5 7 12 7 18 0 16-11 26-26 26-6 0-13-2-18-7l-160-161-148 148c-5 5-11 7-18 7h-77c-14 0-25-11-25-25v-77c0-7 2-13 7-18l148-148-161-160c-5-5-7-12-7-18 0-16 11-26 26-26 6 0 13 2 18 7zm367 108l-41-41-40 41 40 40zm-117 36l-10 9c-5 5-11 8-18 8-14 0-25-12-25-26 0-7 2-13 7-18l104-104c5-5 12-7 18-7 7 0 13 2 18 7l77 77c5 5 7 11 7 18 0 6-2 13-7 18l-104 104c-5 5-11 7-18 7-14 0-26-11-26-25 0-7 3-13 8-18l9-10z";Ar("not-editable",{pathData:wn,ltr:!1,collection:"SAP-icons-v5",packageName:"@ui5/webcomponents-icons"});var kn={pathData:wn};Ar("not-editable",{pathData:"",ltr:!1,collection:"SAP-icons",packageName:"@ui5/webcomponents-icons"});var xn={pathData:""};me("sap_horizon");const Cn={Text:"Text",Email:"Email",Number:"Number",Password:"Password",Tel:"Tel",URL:"URL"};class Sn extends Pe{static isValid(e){return!!Cn[e]}}Sn.generateTypeAccessors(Cn);const Tn=(e,t,i)=>Math.min(Math.max(e,t),i),Bn=e=>"SLOT"!==e.nodeName&&(e.offsetWidth<=0&&e.offsetHeight<=0||"hidden"===e.style.visibility),In=/^(?:a|area)$/i,$n=/^(?:input|select|textarea|button)$/i,Dn=e=>{if(e.disabled)return!1;const t=e.getAttribute("tabindex");return null!=t?parseInt(t)>=0:$n.test(e.nodeName)||In.test(e.nodeName)&&e.href},An=e=>e.hasAttribute("data-ui5-focus-trap"),Fn=async e=>!e||Bn(e)?null:En(e,!0),En=async(e,t)=>{let i,o;if(e.shadowRoot)i=t?e.shadowRoot.firstChild:e.shadowRoot.lastChild;else if(e.assignedNodes&&e.assignedNodes()){const o=e.assignedNodes();i=t?o[0]:o[o.length-1]}else i=t?e.firstChild:e.lastChild;for(;i;){const e=i;if(i.isUI5Element&&(i=await i.getFocusDomRefAsync()),!i)return null;if(1===i.nodeType&&((r=i).hasAttribute("data-ui5-focus-redirect")||!Bn(r))&&!An(i)){if(Dn(i))return i&&"function"==typeof i.focus?i:null;if(o=await En(i,t),o)return o&&"function"==typeof o.focus?o:null}i=t?e.nextSibling:e.previousSibling}var r;return null},Mn=(e,t,i)=>vi`<section style="${Ei(e.styles.root)}" class="${Fi(e.classes.root)}" role="dialog" aria-modal="${Mi(e._ariaModal)}" aria-label="${Mi(e._ariaLabel)}" aria-labelledby="${Mi(e._ariaLabelledBy)}" dir="${Mi(e.effectiveDir)}" @keydown=${e._onkeydown} @focusout=${e._onfocusout} @mouseup=${e._onmouseup} @mousedown=${e._onmousedown}><span class="first-fe" data-ui5-focus-trap tabindex="0" @focusin=${e.forwardToLast}></span><div style="${Ei(e.styles.content)}" class="${Fi(e.classes.content)}" @scroll="${e._scroll}"><slot></slot></div><span class="last-fe" data-ui5-focus-trap tabindex="0" @focusin=${e.forwardToFirst}></span></section> `,Pn=(e,t,i)=>vi`<div class="ui5-block-layer" ?hidden=${e._blockLayerHidden} tabindex="1" style="${Ei(e.styles.blockLayer)}" @keydown="${e._preventBlockLayerFocus}" @mousedown="${e._preventBlockLayerFocus}"></div>`;let Ln=[];const Nn=(e,t=[])=>{Ln.includes(e)||Ln.push({instance:e,parentPopovers:t}),1===Ln.length&&Hn()},zn=e=>{Ln=Ln.filter(t=>t.instance!==e),Ln.length||Rn()},On=e=>{Ln.length&&fo(e)&&Ln[Ln.length-1].instance.close(!0)},Hn=()=>{document.addEventListener("keydown",On)},Rn=()=>{document.removeEventListener("keydown",On)};te("@ui5/webcomponents-theming","sap_fiori_3",()=>zr),te("@ui5/webcomponents","sap_fiori_3",()=>Or);var Un={packageName:"@ui5/webcomponents",fileName:"themesPopup.css",content:":host{min-width:1px;display:none;position:fixed}"};te("@ui5/webcomponents-theming","sap_fiori_3",()=>zr),te("@ui5/webcomponents","sap_fiori_3",()=>Or);var Vn={packageName:"@ui5/webcomponents",fileName:"themesPopupStaticAreaStyles.css",content:".ui5-block-layer{display:none;position:fixed;background-color:var(--sapBlockLayer_Background);opacity:.6;top:-500px;left:-500px;right:-500px;bottom:-500px;outline:none;pointer-events:all;z-index:-1}.ui5-block-layer:not([hidden]){display:inline-block}"};te("@ui5/webcomponents-theming","sap_fiori_3",()=>zr),te("@ui5/webcomponents","sap_fiori_3",()=>Or);var jn={packageName:"@ui5/webcomponents",fileName:"themesPopupGlobal.css",content:".ui5-popup-scroll-blocker{width:100%;height:100%;position:fixed;overflow:hidden}"};const Wn={managedSlots:!0,slots:{default:{type:HTMLElement,propertyName:"content"}},properties:{initialFocus:{type:String},preventFocusRestore:{type:Boolean},opened:{type:Boolean},accessibleName:{type:String,defaultValue:void 0},_disableInitialFocus:{type:Boolean},_blockLayerHidden:{type:Boolean}},events:{"before-open":{},"after-open":{},"before-close":{detail:{escPressed:{type:Boolean}}},"after-close":{},scroll:{}}};se("data-ui5-popup-scroll-blocker")||ne(jn,"data-ui5-popup-scroll-blocker");const qn=new Set;class Yn extends Ft{static get metadata(){return Wn}static get render(){return Ni}static get styles(){return Un}static get template(){return Mn}static get staticAreaTemplate(){return Pn}static get staticAreaStyles(){return Vn}onEnterDOM(){this.isOpen()||(this._blockLayerHidden=!0)}onExitDOM(){this.isOpen()&&(Yn.unblockBodyScrolling(this),this._removeOpenedPopup())}get _displayProp(){return"block"}_preventBlockLayerFocus(e){e.preventDefault()}static blockBodyScrolling(e){qn.add(e),1===qn.size&&(window.pageYOffset>0&&(document.body.style.top=`-${window.pageYOffset}px`),document.body.classList.add("ui5-popup-scroll-blocker"))}static unblockBodyScrolling(e){qn.delete(e),0===qn.size&&(document.body.classList.remove("ui5-popup-scroll-blocker"),window.scrollTo(0,-parseFloat(document.body.style.top)),document.body.style.top="")}_scroll(e){this.fireEvent("scroll",{scrollTop:e.target.scrollTop,targetRef:e.target})}_onkeydown(e){e.target===this._root&&bo(e)&&e.preventDefault()}_onfocusout(e){e.relatedTarget||(this._shouldFocusRoot=!0)}_onmousedown(e){this._root.removeAttribute("tabindex"),this.shadowRoot.contains(e.target)?this._shouldFocusRoot=!0:this._shouldFocusRoot=!1}_onmouseup(){this._root.tabIndex=-1,this._shouldFocusRoot&&(rr&&this._root.focus(),this._shouldFocusRoot=!1)}async forwardToFirst(){const e=await Fn(this);e?e.focus():this._root.focus()}async forwardToLast(){const e=await(async e=>!e||Bn(e)?null:En(e,!1))(this);e?e.focus():this._root.focus()}async applyInitialFocus(){await this.applyFocus()}async applyFocus(){await this._waitForDomRef();const e=this.getRootNode().getElementById(this.initialFocus)||document.getElementById(this.initialFocus)||await Fn(this)||this._root;e&&(e===this._root&&(e.tabIndex=-1),e.focus())}isOpen(){return this.opened}isFocusWithin(){return(e=>{const t=be();return!!t&&ye(e,t)})(this.shadowRoot.querySelector(".ui5-popup-root"))}async _open(e){!this.fireEvent("before-open",{},!0,!1)||(this.isModal&&!this.shouldHideBackdrop&&(this.getStaticAreaItemDomRef(),this._blockLayerHidden=!1,Yn.blockBodyScrolling(this)),this._zIndex=xe(),this.style.zIndex=this._zIndex,this._focusedElementBeforeOpen=be(),this._show(),this._disableInitialFocus||e||this.applyInitialFocus(),this._addOpenedPopup(),this.opened=!0,await b(),this.fireEvent("after-open",{},!1,!1))}_addOpenedPopup(){Nn(this)}close(e=!1,t=!1,i=!1){if(!this.opened)return;!this.fireEvent("before-close",{escPressed:e},!0,!1)||(this.isModal&&(this._blockLayerHidden=!0,Yn.unblockBodyScrolling(this)),this.hide(),this.opened=!1,t||this._removeOpenedPopup(),this.preventFocusRestore||i||this.resetFocus(),this.fireEvent("after-close",{},!1,!1))}_removeOpenedPopup(){zn(this)}resetFocus(){this._focusedElementBeforeOpen&&(this._focusedElementBeforeOpen.focus(),this._focusedElementBeforeOpen=null)}_show(){this.style.display=this._displayProp}hide(){this.style.display="none"}get isModal(){}get shouldHideBackdrop(){}get _ariaLabelledBy(){}get _ariaModal(){}get _ariaLabel(){return this.accessibleName||void 0}get _root(){return this.shadowRoot.querySelector(".ui5-popup-root")}get styles(){return{root:{},content:{},blockLayer:{zIndex:this._zIndex-1}}}get classes(){return{root:{"ui5-popup-root":!0},content:{"ui5-popup-content":!0}}}}const Gn={Left:"Left",Right:"Right",Top:"Top",Bottom:"Bottom"};class Xn extends Pe{static isValid(e){return!!Gn[e]}}Xn.generateTypeAccessors(Gn);const Zn={Center:"Center",Top:"Top",Bottom:"Bottom",Stretch:"Stretch"};class Jn extends Pe{static isValid(e){return!!Zn[e]}}Jn.generateTypeAccessors(Zn);const Kn={Center:"Center",Left:"Left",Right:"Right",Stretch:"Stretch"};class Qn extends Pe{static isValid(e){return!!Kn[e]}}Qn.generateTypeAccessors(Kn);let es=null;const ts=[],is=e=>{ts.forEach(e=>{e.instance.reposition()})},os=e=>{const t=[...Ln],i=t[t.length-1].instance.showAt;if(0!==t.length&&i)for(let i=t.length-1;-1!==i;i--){const o=t[i].instance;if(o.isModal||o.isOpenerClicked(e))return;if(we(e,o.getBoundingClientRect()))break;o.close()}},rs=e=>{const t=ns(e);var i;Nn(e,t),ts.push({instance:e,parentPopovers:t}),(i=e)&&i.shadowRoot.addEventListener("scroll",is,!0),1===ts.length&&(document.body.addEventListener("scroll",is,!0),document.addEventListener("mousedown",os),es=setInterval(()=>{is()},300))},as=e=>{const t=[e];for(let i=0;i<ts.length;i++){const o=ts[i].parentPopovers.indexOf(e);ts[i].parentPopovers.length>0&&o>-1&&t.push(ts[i].instance)}for(let e=t.length-1;e>=0;e--)for(let o=0;o<ts.length;o++){let r;if(t[e]===ts[o].instance&&(r=o),r>=0){zn(ts[r].instance),(i=ts[r].instance)&&i.shadowRoot.removeEventListener("scroll",is),ts.splice(r,1)[0].instance.close(!1,!0)}}var i;ts.length||(document.body.removeEventListener("scroll",is,!0),document.removeEventListener("mousedown",os),clearInterval(es))},ns=e=>{let t=e.parentNode;const i=[];for(;t.parentNode;){for(let e=0;e<ts.length;e++)t&&t===ts[e].instance&&i.push(t);t=t.parentNode}return i},ss=(e,t,i)=>vi`<section style="${Ei(e.styles.root)}" class="${Fi(e.classes.root)}" role="dialog" aria-modal="${Mi(e._ariaModal)}" aria-label="${Mi(e._ariaLabel)}" aria-labelledby="${Mi(e._ariaLabelledBy)}" dir="${Mi(e.effectiveDir)}" @keydown=${e._onkeydown} @focusout=${e._onfocusout} @mouseup=${e._onmouseup} @mousedown=${e._onmousedown}><span class="first-fe" data-ui5-focus-trap tabindex="0" @focusin=${e.forwardToLast}></span><span class="ui5-popover-arrow" style="${Ei(e.styles.arrow)}"></span>${e._displayHeader?ls(e):void 0}<div style="${Ei(e.styles.content)}" class="${Fi(e.classes.content)}" @scroll="${e._scroll}"><slot></slot></div>${e._displayFooter?cs(e):void 0}<span class="last-fe" data-ui5-focus-trap tabindex="0" @focusin=${e.forwardToFirst}></span></section> `,ls=(e,t,i)=>vi`<header class="ui5-popup-header-root" id="ui5-popup-header">${e.header.length?us():ds(e)}</header>`,us=(e,t,i)=>vi`<slot name="header"></slot>`,ds=(e,t,i)=>vi`<h2 class="ui5-popup-header-text">${Mi(e.headerText)}</h2>`,cs=(e,t,i)=>vi`${e.footer.length?_s():void 0}`,_s=(e,t,i)=>vi`<footer class="ui5-popup-footer-root"><slot name="footer"></slot></footer>`;te("@ui5/webcomponents-theming","sap_fiori_3",()=>zr),te("@ui5/webcomponents","sap_fiori_3",()=>Or);var hs={packageName:"@ui5/webcomponents",fileName:"themesBrowserScrollbar.css",content:"::-webkit-scrollbar:horizontal{height:var(--sapScrollBar_Dimension)}::-webkit-scrollbar:vertical{width:var(--sapScrollBar_Dimension)}::-webkit-scrollbar{background-color:var(--sapScrollBar_TrackColor)}::-webkit-scrollbar-thumb{background-color:var(--sapScrollBar_FaceColor)}::-webkit-scrollbar-thumb:hover{background-color:var(--sapScrollBar_Hover_FaceColor)}::-webkit-scrollbar-corner{background-color:var(--sapScrollBar_TrackColor)}"};te("@ui5/webcomponents-theming","sap_fiori_3",()=>zr),te("@ui5/webcomponents","sap_fiori_3",()=>Or);var ps={packageName:"@ui5/webcomponents",fileName:"themesPopupsCommon.css",content:':host{display:none;position:fixed;min-width:6.25rem;background:var(--sapGroup_ContentBackground);box-shadow:var(--sapContent_Shadow2);border-radius:var(--_ui5-popup-border-radius);min-height:2rem;box-sizing:border-box}.ui5-popup-root{background:inherit;border-radius:inherit;width:100%;height:100%;box-sizing:border-box;display:flex;flex-direction:column;overflow:hidden;outline:none}@media screen and (-ms-high-contrast:active){.ui5-popup-root{border:1px solid var(--sapPageFooter_BorderColor)}}.ui5-popup-root .ui5-popup-header-root{box-shadow:var(--_ui5_popup_header_shadow);margin-bottom:.125rem}.ui5-popup-footer-root{background:var(--sapPageFooter_Background);border-top:var(--_ui5_popup_footer_border_top);color:var(--sapPageFooter_TextColor)}.ui5-popup-footer-root,.ui5-popup-header-root,:host([header-text]) .ui5-popup-header-text{margin:0;color:var(--sapPageHeader_TextColor);font-size:1rem;font-family:"72override",var(--sapFontFamily);display:flex;justify-content:center;align-items:center}.ui5-popup-header-root .ui5-popup-header-text{font-weight:var(--_ui5_popup_header_footer_font_weight)}.ui5-popup-content{overflow:auto;padding:var(--_ui5_popup_content_padding);box-sizing:border-box}:host([no-padding]) .ui5-popup-content{padding:0}:host([header-text]) .ui5-popup-header-text{padding:0 .25rem;text-align:center;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-block}:host(:not([header-text])) .ui5-popup-header-text{display:none}:host([disable-scrolling]) .ui5-popup-content{overflow:hidden}'};te("@ui5/webcomponents-theming","sap_fiori_3",()=>zr),te("@ui5/webcomponents","sap_fiori_3",()=>Or);var gs={packageName:"@ui5/webcomponents",fileName:"themesPopover.css",content:'.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(--sapGroup_ContentBackground);box-shadow:var(--sapContent_Shadow3);transform:rotate(-45deg)}:host{max-width:calc(100% - var(--_ui5_popup_viewport_margin)*2)}:host([opened][actual-placement-type=Top]){margin-top:var(--_ui5-popover-margin-bottom)}:host([opened][actual-placement-type=Bottom]){margin-top:var(--_ui5-popover-margin-top)}:host([actual-placement-type=Bottom]) .ui5-popover-arrow{left:calc(50% - .5625rem);top:-.5rem;height:.5625rem}:host([actual-placement-type=Bottom]) .ui5-popover-arrow:after{margin:.1875rem 0 0 .1875rem}:host([actual-placement-type=Left]) .ui5-popover-arrow{top:calc(50% - .5625rem);right:-.5625rem;width:.5625rem}:host([actual-placement-type=Left]) .ui5-popover-arrow:after{margin:.1875rem 0 0 -.375rem}:host([actual-placement-type=Left]) [dir=rtl] .ui5-popover-arrow:after{margin:.1875rem .25rem 0 0}:host([actual-placement-type=Bottom]) [dir=rtl] .ui5-popover-arrow:after{margin:.1875rem .125rem 0 0}:host([actual-placement-type=Top]) [dir=rtl] .ui5-popover-arrow:after{margin:-.4375rem .125rem 0 0}:host([actual-placement-type=Top]) .ui5-popover-arrow{left:calc(50% - .5625rem);height:.5625rem;top:100%}:host([actual-placement-type=Top]) .ui5-popover-arrow:after{margin:-.375rem 0 0 .125rem}:host(:not([actual-placement-type])) .ui5-popover-arrow,:host([actual-placement-type=Right]) .ui5-popover-arrow{left:-.5625rem;top:calc(50% - .5625rem);width:.5625rem;height:1rem}:host(:not([actual-placement-type])) .ui5-popover-arrow:after,:host([actual-placement-type=Right]) .ui5-popover-arrow:after{margin:.125rem 0 0 .25rem}:host(:not([actual-placement-type])) [dir=rtl] .ui5-popover-arrow:after,:host([actual-placement-type=Right]) [dir=rtl] .ui5-popover-arrow:after{margin:.1875rem -.375rem 0 0}:host([hide-arrow]) .ui5-popover-arrow{display:none}'};const ms={tag:"ui5-popover",properties:{headerText:{type:String},placementType:{type:Xn,defaultValue:Xn.Right},horizontalAlign:{type:Qn,defaultValue:Qn.Center},verticalAlign:{type:Jn,defaultValue:Jn.Center},modal:{type:Boolean},hideBackdrop:{type:Boolean},hideArrow:{type:Boolean},allowTargetOverlap:{type:Boolean},disableScrolling:{type:Boolean},arrowTranslateX:{type:dn,defaultValue:0,noAttribute:!0},arrowTranslateY:{type:dn,defaultValue:0,noAttribute:!0},actualPlacementType:{type:Xn,defaultValue:Xn.Right},_maxContentHeight:{type:dn,noAttribute:!0},_maxContentWidth:{type:dn,noAttribute:!0}},managedSlots:!0,slots:{header:{type:HTMLElement},footer:{type:HTMLElement}},events:{}};class fs extends Yn{constructor(){super(),this._handleResize=this.handleResize.bind(this)}static get metadata(){return ms}static get styles(){return[hs,ps,gs]}static get template(){return ss}static get VIEWPORT_MARGIN(){return 10}onEnterDOM(){un.register(this,this._handleResize)}onExitDOM(){un.deregister(this,this._handleResize)}isOpenerClicked(e){const t=e.target;return t===this._opener||t.getFocusDomRef&&t.getFocusDomRef()===this._opener||e.composedPath().indexOf(this._opener)>-1}async showAt(e,t=!1){e&&!this.opened&&(this._opener=e,this._openerRect=e.getBoundingClientRect(),await super._open(t))}_addOpenedPopup(){rs(this)}_removeOpenedPopup(){as(this)}shouldCloseDueToOverflow(e,t){const i={Right:t.right,Left:t.left,Top:t.top,Bottom:t.bottom},o=ke(this._opener);let r=!1,a=!1;if(o.showAt){const e=o.contentDOM.getBoundingClientRect();r=t.top>e.top+e.height,a=t.top+t.height<e.top}return i[e]<0||i[e]+32>o.innerHeight||r||a}shouldCloseDueToNoOpener(e){return 0===e.top&&0===e.bottom&&0===e.left&&0===e.right}handleResize(){this.opened&&this.reposition()}reposition(){this._show()}_show(){let e;const t=this.getPopoverSize();if(0===t.width||0===t.height)return;this.isOpen()&&(this._openerRect=this._opener.getBoundingClientRect()),e=this.shouldCloseDueToNoOpener(this._openerRect)&&this.isFocusWithin()?this._oldPlacement:this.calcPlacement(this._openerRect,t);const i=this.horizontalAlign===Qn.Stretch;if(this._preventRepositionAndClose)return this.close();this._oldPlacement=e,this.actualPlacementType=e.placementType;let o=Tn(this._left,fs.VIEWPORT_MARGIN,document.documentElement.clientWidth-t.width-fs.VIEWPORT_MARGIN);this.actualPlacementType===Xn.Right&&(o=Math.max(o,this._left));let r=Tn(this._top,fs.VIEWPORT_MARGIN,document.documentElement.clientHeight-t.height-fs.VIEWPORT_MARGIN);this.actualPlacementType===Xn.Bottom&&(r=Math.max(r,this._top));let{arrowX:a,arrowY:n}=e;const s=this.actualPlacementType===Xn.Top||this.actualPlacementType===Xn.Bottom;if(s){const e=fs.VIEWPORT_MARGIN-this._left,i=this._left+t.width+fs.VIEWPORT_MARGIN-document.documentElement.clientWidth;e>0?a-=e:i>0&&(a+=i)}if(this.arrowTranslateX=Math.round(a),!s){const e=fs.VIEWPORT_MARGIN-this._top,i=this._top+t.height+fs.VIEWPORT_MARGIN-document.documentElement.clientHeight;e>0?n-=e:i>0&&(n+=i)}this.arrowTranslateY=Math.round(n),Object.assign(this.style,{top:`${r}px`,left:`${o}px`}),super._show(),i&&this._width&&(this.style.width=this._width)}getPopoverSize(){this.opened||Object.assign(this.style,{display:"block",top:"-10000px",left:"-10000px"});const e=this.getBoundingClientRect();return{width:e.width,height:e.height}}get contentDOM(){return this.shadowRoot.querySelector(".ui5-popup-content")}get arrowDOM(){return this.shadowRoot.querySelector(".ui5-popover-arrow")}calcPlacement(e,t){let i=0,o=0;const r=this.allowTargetOverlap,a=document.documentElement.clientWidth,n=document.documentElement.clientHeight;let s=n,l=a,u="",d="";const c=this.getActualPlacementType(e,t);this._preventRepositionAndClose=this.shouldCloseDueToNoOpener(e)||this.shouldCloseDueToOverflow(c,e);const _=c===Xn.Top||c===Xn.Bottom;this.horizontalAlign===Qn.Stretch&&_?(t.width=e.width,u=`${e.width}px`):this.verticalAlign!==Jn.Stretch||_||(t.height=e.height,d=`${e.height}px`),this._width=u,this._height=d;const h=this.hideArrow?0:8;switch(c){case Xn.Top:i=this.getVerticalLeft(e,t),o=Math.max(e.top-t.height-h,0),r||(s=e.top-h);break;case Xn.Bottom:i=this.getVerticalLeft(e,t),r?o=Math.max(Math.min(e.bottom+h,n-t.height),0):(o=e.bottom+h,s=n-e.bottom-h);break;case Xn.Left:i=Math.max(e.left-t.width-h,0),o=this.getHorizontalTop(e,t),r||(l=e.left-h);break;case Xn.Right:r?i=Math.max(Math.min(e.left+e.width+h,a-t.width),0):(i=e.left+e.width+h,l=a-e.right-h),o=this.getHorizontalTop(e,t)}_?t.width>a||i<0?i=0:i+t.width>a&&(i-=i+t.width-a):t.height>n||o<0?o=0:o+t.height>n&&(o-=o+t.height-n);let p=s;if(this._displayHeader){const e=this.shadowRoot.querySelector(".ui5-popup-header-root")||this.shadowRoot.querySelector(".ui5-popup-header-text");e&&(p=s-e.offsetHeight)}this._maxContentHeight=Math.round(p-fs.VIEWPORT_MARGIN),this._maxContentWidth=Math.round(l-fs.VIEWPORT_MARGIN);const g=this.getArrowPosition(e,t,i,o,_);return(void 0===this._left||Math.abs(this._left-i)>1.5)&&(this._left=Math.round(i)),(void 0===this._top||Math.abs(this._top-o)>1.5)&&(this._top=Math.round(o)),{arrowX:g.x,arrowY:g.y,top:this._top,left:this._left,placementType:c}}getArrowPosition(e,t,i,o,r){let a=this.horizontalAlign===Qn.Center||this.horizontalAlign===Qn.Stretch;this.horizontalAlign===Qn.Right&&i<=e.left&&(a=!0),this.horizontalAlign===Qn.Left&&i+t.width>=e.left+e.width&&(a=!0);let n=0;r&&a&&(n=e.left+e.width/2-i-t.width/2);let s=0;return r||(s=e.top+e.height/2-o-t.height/2),{x:Math.round(n),y:Math.round(s)}}fallbackPlacement(e,t,i,o){return i.left>o.width?Xn.Left:e-i.right>i.left?Xn.Right:t-i.bottom>o.height?Xn.Bottom:t-i.bottom<i.top?Xn.Top:void 0}getActualPlacementType(e,t){const i=this.placementType;let o=i;const r=document.documentElement.clientWidth,a=document.documentElement.clientHeight;switch(i){case Xn.Top:e.top<t.height&&e.top<a-e.bottom&&(o=Xn.Bottom);break;case Xn.Bottom:a-e.bottom<t.height&&a-e.bottom<e.top&&(o=Xn.Top);break;case Xn.Left:e.left<t.width&&(o=this.fallbackPlacement(r,a,e,t)||i);break;case Xn.Right:r-e.right<t.width&&(o=this.fallbackPlacement(r,a,e,t)||i)}return o}getVerticalLeft(e,t){let i;switch(this.horizontalAlign){case Qn.Center:case Qn.Stretch:i=e.left-(t.width-e.width)/2;break;case Qn.Left:i=e.left;break;case Qn.Right:i=e.right-t.width}return i}getHorizontalTop(e,t){let i;switch(this.verticalAlign){case Jn.Center:case Jn.Stretch:i=e.top-(t.height-e.height)/2;break;case Jn.Top:i=e.top;break;case Jn.Bottom:i=e.bottom-t.height}return i}get isModal(){return this.modal}get shouldHideBackdrop(){return this.hideBackdrop}get _ariaLabelledBy(){return this.accessibleName?void 0:"ui5-popup-header"}get _ariaModal(){return!0}get styles(){return{...super.styles,content:{"max-height":`${this._maxContentHeight}px`,"max-width":`${this._maxContentWidth}px`},arrow:{transform:`translate(${this.arrowTranslateX}px, ${this.arrowTranslateY}px)`}}}get _displayHeader(){return this.header.length||this.headerText}get _displayFooter(){return!0}}fs.define();const vs=(e,t,i)=>vi`<div class="ui5-input-root" @focusin="${e._onfocusin}" @focusout="${e._onfocusout}"><div class="ui5-input-content"><input id="${Mi(e._id)}-inner" class="ui5-input-inner" style="${Ei(e.styles.innerInput)}" type="${Mi(e.inputType)}" inner-input ?inner-input-with-icon="${e.icon.length}" ?disabled="${e.disabled}" ?readonly="${e._readonly}" .value="${Mi(e.value)}" placeholder="${Mi(e._placeholder)}" maxlength="${Mi(e.maxlength)}" role="${Mi(e.accInfo.input.role)}" aria-controls="${Mi(e.accInfo.input.ariaControls)}" ?aria-invalid="${e.accInfo.input.ariaInvalid}" aria-haspopup="${Mi(e.accInfo.input.ariaHasPopup)}" aria-describedby="${Mi(e.accInfo.input.ariaDescribedBy)}" aria-roledescription="${Mi(e.accInfo.input.ariaRoledescription)}" aria-autocomplete="${Mi(e.accInfo.input.ariaAutoComplete)}" aria-expanded="${Mi(e.accInfo.input.ariaExpanded)}" aria-label="${Mi(e.accInfo.input.ariaLabel)}" aria-required="${Mi(e.required)}" @input="${e._handleInput}" @change="${e._handleChange}" @keydown="${e._onkeydown}" @keyup="${e._onkeyup}" @click=${e._click} @focusin=${e.innerFocusIn} data-sap-focus-ref step="${Mi(e.nativeInputAttributes.step)}" min="${Mi(e.nativeInputAttributes.min)}" max="${Mi(e.nativeInputAttributes.max)}" />${e.readonly?bs(e,t,i):void 0}${e.icon.length?ys():void 0}<div class="ui5-input-value-state-icon">${Li(e._valueStateInputIcon)}</div>${e.showSuggestions?ws(e):void 0}${e.accInfo.input.ariaDescription?ks(e):void 0}${e.hasValueState?xs(e):void 0}</div><slot name="formSupport"></slot></div>`,bs=(e,t,i)=>vi`<${zi("ui5-icon",t,i)} class="ui5-input-readonly-icon" name="not-editable"></${zi("ui5-icon",t,i)}>`,ys=(e,t,i)=>vi`<div class="ui5-input-icon-root"><slot name="icon"></slot></div>`,ws=(e,t,i)=>vi`<span id="${Mi(e._id)}-suggestionsText" class="ui5-hidden-text">${Mi(e.suggestionsText)}</span><span id="${Mi(e._id)}-selectionText" class="ui5-hidden-text" aria-live="polite" role="status"></span><span id="${Mi(e._id)}-suggestionsCount" class="ui5-hidden-text" aria-live="polite">${Mi(e.availableSuggestionsCount)}</span>`,ks=(e,t,i)=>vi`<span id="${Mi(e._id)}-descr" class="ui5-hidden-text">${Mi(e.accInfo.input.ariaDescription)}</span>`,xs=(e,t,i)=>vi`<span id="${Mi(e._id)}-valueStateDesc" class="ui5-hidden-text">${Mi(e.ariaValueStateHiddenText)}</span>`,Cs=(e,t,i)=>vi`${e.showSuggestions?Ss(e,t,i):void 0}${e.hasValueStateMessage?Rs(e,t,i):void 0} `,Ss=(e,t,i)=>vi`<${zi("ui5-responsive-popover",t,i)} class="${Fi(e.classes.popover)}" hide-arrow _disable-initial-focus placement-type="Bottom" horizontal-align="Left" style="${Ei(e.styles.suggestionsPopover)}" @ui5-after-open="${Mi(e._afterOpenPopover)}" @ui5-after-close="${Mi(e._afterClosePopover)}" @ui5-scroll="${Mi(e._scroll)}">${e._isPhone?Ts(e,t,i):void 0}${e._isPhone?void 0:As(e,t,i)}<${zi("ui5-list",t,i)} separators="${Mi(e.suggestionSeparators)}">${Ai(e.suggestionsTexts,(e,t)=>e._id||t,(o,r)=>Ls(o,r,e,t,i))}</${zi("ui5-list",t,i)}>${e._isPhone?Hs(e,t,i):void 0}</${zi("ui5-responsive-popover",t,i)}>`,Ts=(e,t,i)=>vi`<div slot="header" class="ui5-responsive-popover-header"><div class="row"><span>${Mi(e._headerTitleText)}</span><${zi("ui5-button",t,i)} class="ui5-responsive-popover-close-btn" icon="decline" design="Transparent" @click="${e._closeRespPopover}"></${zi("ui5-button",t,i)}></div><div class="row"><div class="input-root-phone"><input class="ui5-input-inner-phone" type="${Mi(e.inputType)}" .value="${Mi(e.value)}" inner-input placeholder="${Mi(e.placeholder)}" @input="${e._handleInput}" @change="${e._handleChange}" /></div></div>${e.hasValueStateMessage?Bs(e):void 0}</div>`,Bs=(e,t,i)=>vi`<div class="row ${Fi(e.classes.popoverValueState)}" style="${Ei(e.styles.suggestionPopoverHeader)}">${e.shouldDisplayDefaultValueStateMessage?Is(e):$s(e)}</div>`,Is=(e,t,i)=>vi`${Mi(e.valueStateText)}`,$s=(e,t,i)=>vi`${Ai(e.valueStateMessageText,(e,t)=>e._id||t,(e,t)=>Ds(e))}`,Ds=(e,t,i,o,r)=>vi`${Mi(e)}`,As=(e,t,i)=>vi`${e.hasValueStateMessage?Fs(e,t,i):void 0}`,Fs=(e,t,i)=>vi`<div slot="header" ?focused=${e._isValueStateFocused} class="ui5-responsive-popover-header ${Fi(e.classes.popoverValueState)}" style=${Ei(e.styles.suggestionPopoverHeader)}><${zi("ui5-icon",t,i)} class="ui5-input-value-state-message-icon" name="${Mi(e._valueStateMessageInputIcon)}"></${zi("ui5-icon",t,i)}>${e.shouldDisplayDefaultValueStateMessage?Es(e):Ms(e)}</div>`,Es=(e,t,i)=>vi`${Mi(e.valueStateText)}`,Ms=(e,t,i)=>vi`${Ai(e.valueStateMessageText,(e,t)=>e._id||t,(e,t)=>Ps(e))}`,Ps=(e,t,i,o,r)=>vi`${Mi(e)}`,Ls=(e,t,i,o,r)=>vi`${e.groupItem?Ns(e,t,i,o,r):zs(e,t,i,o,r)}`,Ns=(e,t,i,o,r)=>vi`<${zi("ui5-li-groupheader",o,r)} data-ui5-key="${Mi(e.key)}">${Li(e.text)}</${zi("ui5-li-groupheader",o,r)}>`,zs=(e,t,i,o,r)=>vi`<${zi("ui5-li-suggestion-item",o,r)} image="${Mi(e.image)}" icon="${Mi(e.icon)}" additional-text="${Mi(e.additionalText)}" type="${Mi(e.type)}" additional-text-state="${Mi(e.additionalTextState)}" @ui5-_item-press="${Mi(e.fnOnSuggestionItemPress)}" data-ui5-key="${Mi(e.key)}">${Li(e.text)}${e.description?Os(e):void 0}</${zi("ui5-li-suggestion-item",o,r)}>`,Os=(e,t,i,o,r)=>vi`<span slot="richDescription">${Li(e.description)}</span>`,Hs=(e,t,i)=>vi`<div slot="footer" class="ui5-responsive-popover-footer"><${zi("ui5-button",t,i)} design="Transparent" @click="${e._closeRespPopover}">OK</${zi("ui5-button",t,i)}></div>`,Rs=(e,t,i)=>vi`<${zi("ui5-popover",t,i)} skip-registry-update _disable-initial-focus prevent-focus-restore no-padding hide-arrow class="ui5-valuestatemessage-popover" placement-type="Bottom" horizontal-align="Left"><div slot="header" class="${Fi(e.classes.popoverValueState)}" style="${Ei(e.styles.popoverHeader)}"><${zi("ui5-icon",t,i)} class="ui5-input-value-state-message-icon" name="${Mi(e._valueStateMessageInputIcon)}"></${zi("ui5-icon",t,i)}>${e.shouldDisplayDefaultValueStateMessage?Us(e):Vs(e)}</div></${zi("ui5-popover",t,i)}>`,Us=(e,t,i)=>vi`${Mi(e.valueStateText)}`,Vs=(e,t,i)=>vi`${Ai(e.valueStateMessageText,(e,t)=>e._id||t,(e,t)=>js(e))}`,js=(e,t,i,o,r)=>vi`${Mi(e)}`;te("@ui5/webcomponents-theming","sap_fiori_3",()=>zr),te("@ui5/webcomponents","sap_fiori_3",()=>Or);var Ws={packageName:"@ui5/webcomponents",fileName:"themesInput.css",content:'.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{width:var(--_ui5_input_width);min-width:var(--_ui5_input_width);height:var(--_ui5_input_height);color:var(--sapField_TextColor);font-size:var(--sapFontSize);font-family:"72override",var(--sapFontFamily);font-style:normal;background-color:var(--_ui5-input-background-color);border:var(--_ui5-input-border);border-radius:var(--_ui5-input-border-radius);box-sizing:border-box;line-height:normal;letter-spacing:normal;word-spacing:normal;text-align:start;transition:var(--_ui5-input-transition);background-image:var(--_ui5-input-background-image);background-size:100% var(--sapField_BorderWidth);background-repeat:repeat-x;background-position:bottom}:host([focused]){border-color:var(--_ui5-input-focused-border-color);background-color:var(--sapField_Focus_Background);outline:var(--_ui5-input-focus-outline);outline-offset:var(--_ui5-input-focus-outline-offset);box-shadow:var(--_ui5-input-focus-box-shadow)}.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)}:host([value-state]:not([value-state=None])[focused]){outline:var(--_ui5-input-value-state-outline);outline-offset:var(--_ui5-input-value-state-outline-offset)}.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}: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;min-width:inherit;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)}.ui5-input-readonly-icon{display:var(--_ui5_input_readonly_icon_display);padding:var(--_ui5_input_icon_padding);margin-right:.125rem;align-self:center}.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}[inner-input]::-webkit-input-placeholder{font-style:var(--_ui5-input-placeholder-style);color:var(--_ui5-input-placeholder-color);padding-right:.125rem}:host([disabled]) [inner-input]::-moz-placeholder{visibility:hidden}:host([readonly]) [inner-input]::-moz-placeholder{visibility:hidden}[inner-input]::-moz-placeholder{font-style:var(--_ui5-input-placeholder-style);color:var(--sapField_PlaceholderTextColor);padding-right:.125rem}:host([disabled]) [inner-input]:-ms-input-placeholder{visibility:hidden}:host([readonly]) [inner-input]:-ms-input-placeholder{visibility:hidden}[inner-input]:-ms-input-placeholder{font-style:italic;color:var(--sapField_PlaceholderTextColor);padding-right:.125rem}:host([value-state=Error]) [inner-input]::-webkit-input-placeholder{color:var(--_ui5-input-value-state-error-border-botom-color)}:host([value-state=Error]) [inner-input]::-moz-placeholder{color:var(--_ui5-input-value-state-error-border-botom-color)}:host([value-state=Warning]) [inner-input]::-webkit-input-placeholder{color:var(--_ui5-input-value-state-warning-border-botom-color)}:host([value-state=Warning]) [inner-input]::-moz-placeholder{color:var(--_ui5-input-value-state-warning-border-botom-color)}:host([value-state=Success]) [inner-input]::-webkit-input-placeholder{color:var(--_ui5-input-value-state-success-border-botom-color)}:host([value-state=Success]) [inner-input]::-moz-placeholder{color:var(--_ui5-input-value-state-success-border-botom-color)}:host([value-state=Information]) [inner-input]::-webkit-input-placeholder{color:var(--_ui5-input-value-success-information-border-botom-color)}:host([value-state=Information]) [inner-input]::-moz-placeholder{color:var(--_ui5-input-value-success-information-border-botom-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}:host([readonly]){border-color:var(--_ui5_input_readonly_border_color);background:var(--_ui5-input-readonly-background)}:host(:not([value-state]):not([readonly]):hover){background-color:var(--sapField_Hover_Background);box-shadow:var(--_ui5-input-hover-box-shadow);background-image:var(--_ui5-input-background-image);background-size:100% var(--sapField_BorderWidth);background-repeat:repeat-x;background-position:bottom}:host(:not([value-state]):not([readonly])[focused]:hover),:host([value-state=None]:not([readonly])[focused]:hover){border-color:var(--_ui5-input-focused-border-color);box-shadow:var(--_ui5-input-focus-box-shadow)}:host(:not([value-state]):not([readonly]):hover){border:var(--_ui5-input-hover-border)}:host([focused]) .ui5-input-root:before{content:none}:host([value-state=None]:not([readonly]):hover){background-color:var(--sapField_Hover_Background);border:var(--_ui5-input-hover-border);box-shadow:var(--_ui5-input-hover-box-shadow)}:host([value-state]:not([value-state=None])){border-width:var(--_ui5_input_state_border_width)}:host([value-state=Error]) [inner-input],:host([value-state=Warning]) [inner-input]{font-style:var(--_ui5_input_error_warning_font_style)}:host([value-state=Error]) [inner-input]{font-weight:var(--_ui5_input_error_font_weight)}:host([value-state=Error]:not([readonly])){background-color:var(--sapField_InvalidBackground);border-color:var(--_ui5-input-value-state-error-border-color);background-image:var(--_ui5-input-error-background-image);background-size:100% var(--sapField_InvalidBorderWidth);background-repeat:repeat-x;background-position:bottom}:host([value-state=Error][focused]:not([readonly])){background-color:var(--_ui5-input-focused-value-state-error-background);border-color:var(--_ui5-input-focused-value-state-error-border-color);box-shadow:var(--_ui5-input-value-state-error-focus-box-shadow)}:host([value-state=Error]:not([readonly])) .ui5-input-root:before{background-color:var(--_ui5-input-value-state-error-border-botom-color)}:host([value-state=Error]:not([readonly]):not([focused]):hover){background-color:var(--sapField_Hover_Background);box-shadow:var(--_ui5-input-value-state-error-hover-box-shadow)}:host([value-state=Error]:not([readonly]):not([disabled])),:host([value-state=Information]:not([readonly]):not([disabled])),:host([value-state=Warning]:not([readonly]):not([disabled])){border-style:var(--_ui5_input_error_warning_border_style)}:host([value-state=Warning]:not([readonly])){background-color:var(--sapField_WarningBackground);border-color:var(--_ui5-input-value-state-warning-border-color);background-image:var(--_ui5-input-warning-background-image);background-size:100% var(--sapField_WarningBorderWidth);background-repeat:repeat-x;background-position:bottom}:host([value-state=Warning][focused]:not([readonly])){background-color:var(--_ui5-input-focused-value-state-warning-background);border-color:var(--_ui5-input-focused-value-state-warning-border-color);box-shadow:var(--_ui5-input-value-state-warning-focus-box-shadow)}:host([value-state=Warning]:not([readonly])) .ui5-input-root:before{background-color:var(--_ui5-input-value-state-warning-border-botom-color)}:host([value-state=Warning]:not([readonly]):not([focused]):hover){background-color:var(--sapField_Hover_Background);box-shadow:var(--_ui5-input-value-state-warning-hover-box-shadow)}:host([value-state=Success]:not([readonly])){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);background-image:var(--_ui5-input-success-background-image);background-size:100% var(--sapField_SuccessBorderWidth);background-repeat:repeat-x;background-position:bottom}:host([value-state=Success][focused]:not([readonly])){background-color:var(--_ui5-input-focused-value-state-success-background);border-color:var(--_ui5-input-focused-value-state-success-border-color);box-shadow:var(--_ui5-input-value-state-success-focus-box-shadow)}:host([value-state=Success]:not([readonly])) .ui5-input-root:before{background-color:var(--_ui5-input-value-state-success-border-botom-color)}:host([value-state=Success]:not([readonly]):not([focused]):hover){background-color:var(--sapField_Hover_Background);box-shadow:var(--_ui5-input-value-state-success-hover-box-shadow)}:host([value-state=Information]:not([readonly])){background-color:var(--sapField_InformationBackground);border-color:var(--_ui5-input-value-state-information-border-color);border-width:var(--_ui5-input-information_border_width);background-image:var(--_ui5-input-information-background-image);background-size:100% var(--sapField_InformationBorderWidth);background-repeat:repeat-x;background-position:bottom}:host([value-state=Information][focused]:not([readonly])){background-color:var(--_ui5-input-focused-value-state-information-background);border-color:var(--_ui5-input-focused-value-state-information-border-color);box-shadow:var(--_ui5-input-focus-box-shadow)}: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){background-color:var(--sapField_Hover_Background);box-shadow:var(--_ui5-input-value-state-information-hover-box-shadow)}[inner-input]::-ms-clear{height:0;width:0}.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]){padding:var(--_ui5_input_icon_padding)}[inner-input]::-webkit-inner-spin-button,[inner-input]::-webkit-outer-spin-button{-webkit-appearance:inherit;margin:inherit}'};te("@ui5/webcomponents-theming","sap_fiori_3",()=>zr),te("@ui5/webcomponents","sap_fiori_3",()=>Or);var qs={packageName:"@ui5/webcomponents",fileName:"themesResponsivePopoverCommon.css",content:'.input-root-phone{flex:1;height:var(--_ui5_input_height);color:var(--sapField_TextColor);font-size:var(--sapFontSize);font-family:"72override",var(--sapFontFamily);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{border-color:var(--_ui5-input-focused-border-color);background-color:var(--sapField_Focus_Background);box-shadow:var(--_ui5-input-focus-box-shadow)}.input-root-phone[value-state]:not([value-state=None])[focused]{outline:var(--_ui5_input_focus_border_width) dotted var(--sapContent_FocusColor);outline-offset:-4px}.input-root-phone [value-state=Error] [input-icon][data-ui5-compact-size],.input-root-phone [value-state=Success] [input-icon][data-ui5-compact-size],.input-root-phone [value-state=Warning] [input-icon][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]::-moz-selection,[inner-input]::selection{background:var(--sapSelectedColor);color:var(--sapContent_ContrastTextColor)}[inner-input]::-webkit-input-placeholder{font-style:italic;color:var(--sapField_PlaceholderTextColor)}[inner-input]::-moz-placeholder{font-style:italic;color:var(--sapField_PlaceholderTextColor)}[inner-input]:-ms-input-placeholder{font-style:italic;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=Error] [inner-input],.input-root-phone[value-state=Warning] [inner-input]{font-style:var(--_ui5_input_error_warning_font_style)}.input-root-phone[value-state=Error] [inner-input]{font-weight:var(--_ui5_input_error_font_weight)}.input-root-phone[value-state=Error]:not([readonly]){background-color:var(--sapField_InvalidBackground);border-color:var(--sapField_InvalidColor);background-image:var(--_ui5-input-error-background-image);background-size:100% var(--sapField_InvalidBorderWidth);background-repeat:repeat-x;background-position:bottom}.input-root-phone[value-state=Error]: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);box-shadow:var(--_ui5-input-value-state-error-focus-box-shadow)}.input-root-phone[value-state=Error]:not([readonly]):not([disabled]),.input-root-phone[value-state=Warning]:not([readonly]):not([disabled]){border-style:var(--_ui5_input_error_warning_border_style)}.input-root-phone[value-state=Warning]:not([readonly]){background-color:var(--sapField_WarningBackground);border-color:var(--sapField_WarningColor);background-image:var(--_ui5-input-warning-background-image);background-size:100% var(--sapField_WarningBorderWidth);background-repeat:repeat-x;background-position:bottom}.input-root-phone[value-state=Warning]: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);box-shadow:var(--_ui5-input-value-state-warning-focus-box-shadow)}.input-root-phone[value-state=Success]:not([readonly]){background-color:var(--sapField_SuccessBackground);border-color:var(--sapField_SuccessColor);background-image:var(--_ui5-input-success-background-image);background-size:100% var(--sapField_SuccessBorderWidth);background-repeat:repeat-x;background-position:bottom}.input-root-phone[value-state=Success]: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);box-shadow:var(--_ui5-input-value-state-success-focus-box-shadow)}.input-root-phone[value-state=Information]:not([readonly]){background-color:var(--sapField_InformationBackground);border-color:var(--_ui5-input-value-state-information-border-color);border-width:var(--_ui5-input-information_border_width);background-image:var(--_ui5-input-information-background-image);background-size:100% var(--sapField_InformationBorderWidth);background-repeat:repeat-x;background-position:bottom}.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);box-shadow:var(--_ui5-input-focus-box-shadow)}.input-root-phone[value-state=None]:not([readonly]){background-image:var(--_ui5-input-background-image);background-size:100% var(--sapField_BorderWidth);background-repeat:repeat-x;background-position:bottom}[inner-input]::-ms-clear{height:0;width:0}.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:calc(100% - var(--_ui5_button_base_min_width))}.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;width:100%}.ui5-responsive-popover-close-btn{position:absolute;right:1rem}'};te("@ui5/webcomponents-theming","sap_fiori_3",()=>zr),te("@ui5/webcomponents","sap_fiori_3",()=>Or);var Ys={packageName:"@ui5/webcomponents",fileName:"themesValueStateMessage.css",content:'.ui5-valuestatemessage-popover{box-shadow:none}.ui5-input-value-state-message-icon{width:.875rem;height:.875rem;display:var(--_ui5_input_value_state_icon_display);position:absolute;padding-right:.5rem}.ui5-valuestatemessage-root .ui5-input-value-state-message-icon{left:.5rem}ui5-responsive-popover .ui5-valuestatemessage-header .ui5-input-value-state-message-icon{left:1rem}.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:"72override",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)}ui5-responsive-popover .ui5-valuestatemessage-header{min-height:2rem;padding:var(--_ui5_value_state_header_padding)}.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,.ui5-responsive-popover-header[focused]{outline-offset:-.125rem;outline:var(--sapContent_FocusWidth) var(--sapContent_FocusStyle) var(--sapContent_FocusColor);border-radius:var(--_ui5_value_state_message_focus_border_radius)}'};te("@ui5/webcomponents-theming","sap_fiori_3",()=>zr),te("@ui5/webcomponents","sap_fiori_3",()=>Or);var Gs={packageName:"@ui5/webcomponents",fileName:"themesSuggestions.css",content:".ui5-suggestions-popover:not(.ui5-suggestions-popover-with-value-state-header) [ui5-li-groupheader][focused]:first-child::part(native-li):after,.ui5-suggestions-popover:not(.ui5-suggestions-popover-with-value-state-header) [ui5-li-suggestion-item][focused]:first-child::part(native-li):after,.ui5-suggestions-popover:not(.ui5-suggestions-popover-with-value-state-header) [ui5-li][focused]:first-child::part(native-li):after,.ui5-tokenizer-list [ui5-li][focused]:first-child::part(native-li):after{border-top-left-radius:var(--_ui5_suggestions_item_focus_border_radius);border-top-right-radius:var(--_ui5_suggestions_item_focus_border_radius)}.ui5-suggestions-popover [ui5-li-suggestion-item][focused]:last-child::part(native-li):after,.ui5-suggestions-popover [ui5-li][focused]:last-child::part(native-li):after,.ui5-tokenizer-list [ui5-li][focused]:last-child::part(native-li):after{border-bottom-left-radius:var(--_ui5_suggestions_item_focus_border_radius);border-bottom-right-radius:var(--_ui5_suggestions_item_focus_border_radius)}"};const Xs=new RegExp(/(\+|-)?\d+(\.|,)\d+/),Zs={tag:"ui5-input",languageAware:!0,managedSlots:!0,slots:{icon:{type:HTMLElement},default:{propertyName:"suggestionItems",type:HTMLElement},formSupport:{type:HTMLElement},valueStateMessage:{type:HTMLElement}},properties:{disabled:{type:Boolean},highlight:{type:Boolean},placeholder:{type:String},readonly:{type:Boolean},required:{type:Boolean},type:{type:Sn,defaultValue:Sn.Text},value:{type:String},valueState:{type:Oa,defaultValue:Oa.None},name:{type:String},showSuggestions:{type:Boolean},maxlength:{type:dn},accessibleName:{type:String},accessibleNameRef:{type:String,defaultValue:""},focused:{type:Boolean},_isValueStateFocused:{type:Boolean},open:{type:Boolean},_input:{type:Object},_inputAccInfo:{type:Object},_nativeInputAttributes:{type:Object},_inputWidth:{type:dn},_listWidth:{type:dn},_isPopoverOpen:{type:Boolean,noAttribute:!0},_inputIconFocused:{type:Boolean,noAttribute:!0}},events:{change:{},input:{},"suggestion-item-select":{detail:{item:{type:HTMLElement}}},"suggestion-item-preview":{detail:{item:{type:HTMLElement},targetRef:{type:HTMLElement}}},"suggestion-scroll":{detail:{scrollTop:{type:dn},scrollContainer:{type:HTMLElement}}}}};class Js extends Ft{static get metadata(){return Zs}static get render(){return Ni}static get template(){return vs}static get staticAreaTemplate(){return Cs}static get styles(){return Ws}static get staticAreaStyles(){return[qs,Ys,Gs]}constructor(){super(),this.hasSuggestionItemSelected=!1,this.valueBeforeItemSelection="",this.valueBeforeItemPreview="",this.suggestionSelectionCanceled=!1,this._changeFired=!1,this.previousValue=void 0,this.firstRendering=!0,this.highlightValue="",this.lastConfirmedValue="",this._backspaceKeyDown=!1,this.EVENT_CHANGE="change",this.EVENT_INPUT="input",this.EVENT_SUGGESTION_ITEM_SELECT="suggestion-item-select",this.ACTION_ENTER="enter",this.ACTION_USER_INPUT="input",this.suggestionsTexts=[],this._handleResizeBound=this._handleResize.bind(this)}onEnterDOM(){un.register(this,this._handleResizeBound)}onExitDOM(){un.deregister(this,this._handleResizeBound)}onBeforeRendering(){this.showSuggestions&&(this.enableSuggestions(),this.suggestionsTexts=this.Suggestions.defaultSlotProperties(this.highlightValue)),this.open=this.open&&(!!this.suggestionItems.length||this._isPhone);const e=A("FormSupport");e?e.syncNativeHiddenInput(this):this.name&&console.warn('In order for the "name" property to have effect, you should also: import "@ui5/webcomponents/dist/features/InputElementsFormSupport.js";')}async onAfterRendering(){this.Suggestions&&(this.Suggestions.toggle(this.open,{preventFocusRestore:!0}),this._listWidth=await this.Suggestions._getListWidth()),this.shouldDisplayOnlyValueStateMessage?this.openPopover():this.closePopover()}_onkeydown(e){return no(e)?this._handleUp(e):so(e)?this._handleDown(e):io(e)?this._handleSpace(e):vo(e)?this._handleTab(e):eo(e)?this._handleEnter(e):fo(e)?this._handleEscape(e):((e=>(e.key?"Backspace"===e.key:e.keyCode===Oi)&&!$o(e))(e)&&(this._backspaceKeyDown=!0,this._selectedText=window.getSelection().toString()),this.showSuggestions&&this._clearPopoverFocusAndSelection(),void(this._keyDown=!0))}_onkeyup(e){this._keyDown=!1,this._backspaceKeyDown=!1}_handleUp(e){this.Suggestions&&this.Suggestions.isOpened()&&this.Suggestions.onUp(e)}_handleDown(e){this.Suggestions&&this.Suggestions.isOpened()&&this.Suggestions.onDown(e)}_handleSpace(e){this.Suggestions&&this.Suggestions.onSpace(e)}_handleTab(e){this.Suggestions&&this.previousValue!==this.value&&this.Suggestions.onTab(e)}_handleEnter(e){if(!!(!this.Suggestions||!this.Suggestions.onEnter(e)))return this.fireEventByAction(this.ACTION_ENTER),void(this.lastConfirmedValue=this.value);this.focused=!0}_handleEscape(){const e=this.showSuggestions&&!!this.Suggestions,t=e&&this.open;t?(e&&t&&this.Suggestions._isItemOnTarget()&&(this.value=this.valueBeforeItemPreview,this.suggestionSelectionCanceled=!0,this.focused=!0),this._isValueStateFocused&&(this._isValueStateFocused=!1,this.focused=!0),this.open=!1):this.value=this.lastConfirmedValue?this.lastConfirmedValue:this.previousValue}async _onfocusin(e){await this.getInputDOMRef(),this.focused=!0,this.previousValue=this.value,this.valueBeforeItemPreview=this.value,this._inputIconFocused=e.target&&e.target===this.querySelector("[ui5-icon]")}_onfocusout(e){const t=this.Suggestions&&e.relatedTarget&&e.relatedTarget.shadowRoot&&e.relatedTarget.shadowRoot.contains(this.Suggestions.responsivePopover),i=e.relatedTarget&&e.relatedTarget.shadowRoot&&e.relatedTarget.shadowRoot.querySelector(".ui5-valuestatemessage-root");if(t||i)return void e.stopImmediatePropagation();const o=e.relatedTarget;o&&o.classList.contains(this._id)||(this.closePopover(),this._clearPopoverFocusAndSelection(),this.previousValue="",this.lastConfirmedValue="",this.focused=!1,this.open=!1)}_clearPopoverFocusAndSelection(){this.showSuggestions&&this.Suggestions&&(this._isValueStateFocused=!1,this.hasSuggestionItemSelected=!1,this.Suggestions._deselectItems(),this.Suggestions._clearItemFocus())}_click(e){yr()&&!this.readonly&&this.Suggestions&&(this.blur(),this.open=!0)}_handleChange(e){this._changeFired||this.fireEvent(this.EVENT_CHANGE),this._changeFired=!1}_scroll(e){const t=e.detail;this.fireEvent("suggestion-scroll",{scrollTop:t.scrollTop,scrollContainer:t.targetRef})}async _handleInput(e){const t=await this.getInputDOMRef(),i=this.value&&this.isTypeNumber&&!t.value;if(this.suggestionSelectionCanceled=!1,!i||this._backspaceKeyDown){if(i&&this._backspaceKeyDown&&Xs.test(this.value)&&this._selectedText!==this.value){const e=this.removeFractionalPart(this.value);return this.value=e,this.highlightValue=e,this.valueBeforeItemPreview=e,this.fireEvent(this.EVENT_INPUT),void this.fireEvent("value-changed")}e.target===t&&(this.focused=!0,e.stopImmediatePropagation()),!(t.value===this.value&&fr()&&!this._keyDown&&!!this.placeholder)&&this.fireEventByAction(this.ACTION_USER_INPUT),this.hasSuggestionItemSelected=!1,this._isValueStateFocused=!1,this.Suggestions&&(this.Suggestions.updateSelectedItemPosition(null),this._isPhone||(this.open=!!t.value))}}_handleResize(){this._inputWidth=this.offsetWidth}_closeRespPopover(e){this.Suggestions.close(e)}async _afterOpenPopover(){yr()&&(await this.getInputDOMRef()).focus()}_afterClosePopover(){this.announceSelectedItem(),yr()&&(this.blur(),this.focused=!1)}isValueStateOpened(){return!!this._isPopoverOpen}async openPopover(){const e=await this._getPopover();e&&(this._isPopoverOpen=!0,e.showAt(this))}async closePopover(){const e=await this._getPopover();e&&e.close()}async _getPopover(){const e=await this.getStaticAreaItemDomRef();return e&&e.querySelector("[ui5-popover]")}enableSuggestions(){if(this.Suggestions)return;const e=A("InputSuggestions");if(!e)throw new Error('You have to import "@ui5/webcomponents/dist/features/InputSuggestions.js" module to use ui5-input suggestions');this.Suggestions=new e(this,"suggestionItems",!0)}selectSuggestion(e,t){if(e.group)return;const i=e.text||e.textContent,o=t?this.valueBeforeItemSelection!==i:this.value!==i;this.hasSuggestionItemSelected=!0,o&&(this.value=i,this.valueBeforeItemSelection=i,this.lastConfirmedValue=i,this.fireEvent(this.EVENT_INPUT),this.fireEvent(this.EVENT_CHANGE),this._changeFired=!0),this.valueBeforeItemPreview="",this.suggestionSelectionCanceled=!1,this.fireEvent(this.EVENT_SUGGESTION_ITEM_SELECT,{item:e})}previewSuggestion(e){this.valueBeforeItemSelection=this.value,this.updateValueOnPreview(e),this.announceSelectedItem(),this._previewItem=e}updateValueOnPreview(e){const t="Inactive"===e.type||e.group?this.valueBeforeItemPreview:e.effectiveTitle||e.textContent;this.value=t}get previewItem(){return this._previewItem?this.getSuggestionByListItem(this._previewItem):null}async fireEventByAction(e){if(await this.getInputDOMRef(),this.disabled||this.readonly)return;const t=await this.getInputValue(),i=e===this.ACTION_USER_INPUT,o=await this.getInputDOMRef(),r=o.selectionStart;if(this.value=t,this.highlightValue=t,this.valueBeforeItemPreview=t,vr()&&setTimeout(()=>{o.selectionStart=r,o.selectionEnd=r},0),i)return this.fireEvent(this.EVENT_INPUT),void this.fireEvent("value-changed");const a=void 0!==this.previousValue&&this.previousValue!==this.value;fr()&&e===this.ACTION_ENTER&&a&&this.fireEvent(this.EVENT_CHANGE)}async getInputValue(){return this.getDomRef()?(await this.getInputDOMRef()).value:""}async getInputDOMRef(){return yr()&&this.Suggestions?(await this.Suggestions._getSuggestionPopover(),this.Suggestions&&this.Suggestions.responsivePopover.querySelector(".ui5-input-inner-phone")):this.nativeInput}get nativeInput(){return this.getDomRef()&&this.getDomRef().querySelector("input")}get nativeInputWidth(){return this.nativeInput&&this.nativeInput.offsetWidth}getLabelableElementId(){return this.getInputId()}getSuggestionByListItem(e){const t=parseInt(e.getAttribute("data-ui5-key"));return this.suggestionItems[t]}isSuggestionsScrollable(){return this.Suggestions?this.Suggestions._isScrollable():Promise.resolve(!1)}getInputId(){return`${this._id}-inner`}onItemFocused(){}onItemMouseOver(e){const t=e.target,i=this.getSuggestionByListItem(t);i&&i.fireEvent("mouseover",{item:i,targetRef:t})}onItemMouseOut(e){const t=e.target,i=this.getSuggestionByListItem(t);i&&i.fireEvent("mouseout",{item:i,targetRef:t})}onItemSelected(e,t){this.selectSuggestion(e,t)}onItemPreviewed(e){this.previewSuggestion(e),this.fireEvent("suggestion-item-preview",{item:this.getSuggestionByListItem(e),targetRef:e})}onOpen(){}onClose(){}valueStateTextMappings(){return{Success:Js.i18nBundle.getText(Ca),Information:Js.i18nBundle.getText(xa),Error:Js.i18nBundle.getText(wa),Warning:Js.i18nBundle.getText(ka)}}announceSelectedItem(){const e=this.shadowRoot.querySelector(`#${this._id}-selectionText`);this.Suggestions&&this.Suggestions._isItemOnTarget()?e.textContent=this.itemSelectionAnnounce:e.textContent=""}get _readonly(){return this.readonly&&!this.disabled}get _headerTitleText(){return Js.i18nBundle.getText(Kr)}get inputType(){return this.type.toLowerCase()}get isTypeNumber(){return this.type===Sn.Number}get suggestionsTextId(){return this.showSuggestions?`${this._id}-suggestionsText`:""}get valueStateTextId(){return this.hasValueState?`${this._id}-valueStateDesc`:""}get accInfo(){const e=this.showSuggestions?"true":void 0,t=this.showSuggestions?"list":void 0,i=this._inputAccInfo.ariaDescribedBy?`${this.suggestionsTextId} ${this.valueStateTextId} ${this._inputAccInfo.ariaDescribedBy}`.trim():`${this.suggestionsTextId} ${this.valueStateTextId}`.trim();return{input:{ariaRoledescription:this._inputAccInfo&&(this._inputAccInfo.ariaRoledescription||void 0),ariaDescribedBy:i||void 0,ariaInvalid:this.valueState===Oa.Error?"true":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._inputAccInfo&&this._inputAccInfo.ariaDescription,ariaLabel:this._inputAccInfo&&this._inputAccInfo.ariaLabel||cn(this)}}}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.hasValueStateMessage)return this.shouldDisplayDefaultValueStateMessage?this.valueStateText:this.valueStateMessageText.map(e=>e.textContent).join(" ")}get itemSelectionAnnounce(){return this.Suggestions?this.Suggestions.itemSelectionAnnounce:void 0}get classes(){return{popover:{"ui5-suggestions-popover":!this.isPhone&&this.showSuggestions,"ui5-suggestions-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===Oa.Success,"ui5-valuestatemessage--error":this.valueState===Oa.Error,"ui5-valuestatemessage--warning":this.valueState===Oa.Warning,"ui5-valuestatemessage--information":this.valueState===Oa.Information}}}get styles(){const e=parseInt(getComputedStyle(document.documentElement).fontSize),t={popoverHeader:{"max-width":`${this._inputWidth}px`},suggestionPopoverHeader:{display:0===this._listWidth?"none":"inline-block",width:`${this._listWidth}px`},suggestionsPopover:{"min-width":`${this._inputWidth}px`,"max-width":this._inputWidth/e>40?`${this._inputWidth}px`:"40rem"},innerInput:{}};return this.nativeInputWidth<48&&(t.innerInput.padding="0"),t}get suggestionSeparators(){return"None"}get valueStateMessageText(){return this.getSlottedNodes("valueStateMessage").map(e=>e.cloneNode(!0))}get shouldDisplayOnlyValueStateMessage(){return this.hasValueStateMessage&&!this.open&&this.focused}get shouldDisplayDefaultValueStateMessage(){return!this.valueStateMessage.length&&this.hasValueStateMessage}get hasValueState(){return this.valueState!==Oa.None}get hasValueStateMessage(){return this.hasValueState&&this.valueState!==Oa.Success&&(!this._inputIconFocused||this._isPhone&&this.Suggestions)}get valueStateText(){return this.valueStateTextMappings()[this.valueState]}get suggestionsText(){return Js.i18nBundle.getText(Jr)}get availableSuggestionsCount(){if(this.showSuggestions&&(this.value||this.Suggestions.isOpened()))switch(this.suggestionsTexts.length){case 0:return Js.i18nBundle.getText(ta);case 1:return Js.i18nBundle.getText(Qr);default:return Js.i18nBundle.getText(ea,this.suggestionsTexts.length)}}get step(){return this.isTypeNumber?"any":void 0}get _isPhone(){return yr()}get _placeholder(){return this.placeholder}get _valueStateInputIcon(){const e=`\n\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${{Error:'<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"/>',Warning:'<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"/>',Success:'<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"/>'}[this.valueState]};\n\t\t</svg>\n\t\t`;return this.valueState!==Oa.None?e:""}get _valueStateMessageInputIcon(){return this.valueState!==Oa.None?{Error:"error",Warning:"alert",Success:"sys-enter-2",Information:"information"}[this.valueState]:""}getCaretPosition(){return(e=>{let t=0;if(document.selection){e.focus();const i=document.selection.createRange();i.moveStart("character",-e.value.length),t=i.text.length}else(e.selectionStart||"0"===e.selectionStart)&&(t="backward"===e.selectionDirection?e.selectionStart:e.selectionEnd);return t})(this.nativeInput)}setCaretPosition(e){((e,t)=>{if(e.createTextRange){const i=e.createTextRange();i.move("character",t),i.select()}else e.selectionStart?(e.focus(),e.setSelectionRange(t,t)):e.focus()})(this.nativeInput,e)}removeFractionalPart(e){return e.includes(".")?e.slice(0,e.indexOf(".")):e.includes(",")?e.slice(0,e.indexOf(",")):e}static get dependencies(){const e=A("InputSuggestions");return[fs].concat(e?e.dependencies:[])}static async onDefine(){const e=A("InputSuggestions");[Js.i18nBundle]=await Promise.all([er("@ui5/webcomponents"),e?e.init():Promise.resolve()])}}Js.define();class Ks extends Pe{static isValid(e){return Number(e)===e}static attributeToProperty(e){return parseFloat(e)}}const Qs=(e,t,i)=>vi`<div id="${Mi(e._id)}" class="ui5-step-input-root" @keydown="${e._onkeydown}" @focusin="${e._onfocusin}" @focusout="${e._onfocusout}"><!-- Decrement Icon -->${e.readonly?void 0:el(e,t,i)}<!-- INPUT --><${zi("ui5-input",t,i)} id="${Mi(e._id)}-inner" class="ui5-step-input-input" placeholder="${Mi(e.placeholder)}" type="${Mi(e.type)}" value="${Mi(e._valuePrecisioned)}" ?disabled="${e.disabled}" ?required="${e.required}" ?readonly="${e.readonly}" value-state="${Mi(e.valueState)}" data-sap-focus-ref ._inputAccInfo ="${Mi(e.accInfo)}" ._nativeInputAttributes="${Mi(e.inputAttributes)}" @ui5-change="${Mi(e._onInputChange)}" @focusout="${e._onInputFocusOut}" @focusin="${e._onInputFocusIn}">${e.valueStateMessage.length?tl():void 0}</${zi("ui5-input",t,i)}><!-- Increment Icon -->${e.readonly?void 0:il(e,t,i)}<slot name="formSupport"></slot></div>`,el=(e,t,i)=>vi`<div class="ui5-step-icon ui5-step-dec" title="${Mi(e.decIconTitle)}"><${zi("ui5-icon",t,i)} id="${Mi(e._id)}-dec" name="${Mi(e.decIconName)}" tabindex="-1" accessible-name="${Mi(e.decIconTitle)}" @click="${e._decValue}" @focusout="${e._onButtonFocusOut}" @mousedown="${e._decSpin}" @mouseup="${e._resetSpin}" @mouseout="${e._resetSpinOut}" input-icon show-tooltip ?clickable="${e._decIconClickable}"></${zi("ui5-icon",t,i)}></div>`,tl=(e,t,i)=>vi`<slot name="valueStateMessage" slot="valueStateMessage"></slot>`,il=(e,t,i)=>vi`<div class="ui5-step-icon ui5-step-inc" title="${Mi(e.incIconTitle)}"><${zi("ui5-icon",t,i)} id="${Mi(e._id)}-inc" name="${Mi(e.incIconName)}" tabindex="-1" accessible-name="${Mi(e.incIconTitle)}" @click="${e._incValue}" @focusout="${e._onButtonFocusOut}" @mousedown="${e._incSpin}" @mouseup="${e._resetSpin}" @mouseout="${e._resetSpinOut}" input-icon show-tooltip ?clickable="${e._incIconClickable}"></${zi("ui5-icon",t,i)}></div>`,ol="M444 215c21 0 36 15 36 36 0 22-15 37-36 37H69c-22 0-37-15-37-37 0-21 15-36 37-36h375z";Ar("less",{pathData:ol,ltr:!1,collection:"SAP-icons-v5",packageName:"@ui5/webcomponents-icons"});var rl={pathData:ol};const al="M464 224q16 0 16 16v32q0 16-16 16H48q-6 0-11-4.5T32 272v-32q0-7 5-11.5t11-4.5h416z";Ar("less",{pathData:al,ltr:!1,collection:"SAP-icons",packageName:"@ui5/webcomponents-icons"});var nl={pathData:al};me("sap_horizon");const sl="M444 220c22 0 36 15 36 37s-14 37-36 37H294v149c0 22-15 37-37 37s-36-15-36-37V294H69c-22 0-37-15-37-37s15-37 37-37h152V73c0-22 14-37 36-37s37 15 37 37v147h150z",ll=hn;Ar("add",{pathData:sl,ltr:!1,accData:ll,collection:"SAP-icons-v5",packageName:"@ui5/webcomponents-icons"});var ul={pathData:sl,accData:ll};const dl="M32 240q0-7 5-11.5t11-4.5h176V48q0-7 5-11.5t11-4.5h32q16 0 16 16v176h176q16 0 16 16v32q0 16-16 16H288v176q0 16-16 16h-32q-6 0-11-4.5t-5-11.5V288H48q-6 0-11-4.5T32 272v-32z",cl=hn;Ar("add",{pathData:dl,ltr:!1,accData:cl,collection:"SAP-icons",packageName:"@ui5/webcomponents-icons"});var _l={pathData:dl,accData:cl};me("sap_horizon");te("@ui5/webcomponents-theming","sap_fiori_3",()=>zr),te("@ui5/webcomponents","sap_fiori_3",()=>Or);var hl={packageName:"@ui5/webcomponents",fileName:"themesStepInput.css",content:'.ui5-hidden-text{position:absolute;clip:rect(1px,1px,1px,1px);user-select:none;left:-1000px;top:-1000px;pointer-events:none;font-size:0}[input-icon]{color:var(--_ui5_input_icon_color);cursor:pointer;outline:none;padding:var(--_ui5_input_icon_padding);margin-right:var(--_ui5_input_icon_margin);border-left:var(--_ui5_input_icon_border);min-width:1rem;min-height:1rem;border-radius:var(--_ui5_input_icon_border_radius);align-self:center}[input-icon][pressed]{background:var(--_ui5_input_icon_pressed_bg);box-shadow:var(--_ui5_input_icon_box_shadow);color:var(--_ui5_input_icon_pressed_color)}[input-icon]:active{background-color:var(--sapButton_Active_Background);box-shadow:var(--_ui5_input_icon_box_shadow);color:var(--_ui5_input_icon_pressed_color)}[input-icon]:not([pressed]):not(:active):hover{background:var(--_ui5_input_icon_hover_bg);box-shadow:var(--_ui5_input_icon_box_shadow)}[input-icon]:hover{border-left:var(--_ui5_select_hover_icon_left_border);box-shadow:var(--_ui5_input_icon_box_shadow)}[input-icon][dir=rtl]:hover{border-left:none;border-right:var(--_ui5_select_hover_icon_left_border)}[input-icon][dir=rtl]{border-left:none;margin-right:0;margin-left:var(--_ui5_input_icon_margin);border-right:var(--_ui5_input_icon_border)}:host(:not([hidden])){display:inline-block;width:100%}:host{color:var(--sapField_TextColor);background-color:var(--sapField_Background);border:var(--_ui5_step_input_border_style);border-radius:var(--sapField_BorderCornerRadius);box-sizing:border-box;height:var(--_ui5_input_height);position:relative}:host .ui5-step-input-input{text-align:inherit}:host(:not([value-state]):not([readonly]):not([disabled])){box-shadow:none}:host([value-state=Success]:not([readonly]):not([disabled])){background-color:var(--sapField_SuccessBackground)}:host([value-state=Error]:not([readonly]):not([disabled])){background-color:var(--sapField_InvalidBackground)}:host([value-state=Information]:not([readonly]):not([disabled])){background-color:var(--sapField_InformationBackground)}:host([value-state=Warning]:not([readonly]):not([disabled])){background-color:var(--sapField_WarningBackground)}:host(:not([value-state]):not([readonly]):not([disabled]):hover),:host([value-state=None]:not([readonly]):not([disabled]):hover){background-color:var(--_ui5_step_input_border_color_hover);border:var(--_ui5_step_input_border_hover)}:host(:not([value-state]):not([readonly]):not([disabled]):not([focused]):hover),:host([value-state=None]:not([readonly]):not([disabled]):not([focused]):hover){background-color:var(--sapField_Hover_Background);border:var(--_ui5_step_input_border_style_hover);box-shadow:var(--_ui5-input-hover-box-shadow)}:host([value-state=Success]:not([readonly]):not([disabled]):not([focused]):hover){box-shadow:var(--_ui5-input-value-state-success-hover-box-shadow)}:host([value-state=Information]:not([readonly]):not([disabled]):not([focused]):hover){box-shadow:var(--_ui5-input-value-state-information-hover-box-shadow)}:host([value-state=Warning]:not([readonly]):not([disabled]):not([focused]):hover){box-shadow:var(--_ui5-input-value-state-warning-hover-box-shadow)}:host([value-state=Error]:not([readonly]):not([disabled]):not([focused]):hover){box-shadow:var(--_ui5-input-value-state-error-hover-box-shadow)}:host([value-state=Error]:not([readonly]):not([disabled]):hover),:host([value-state=Information]:not([readonly]):not([disabled]):hover),:host([value-state=Success]:not([readonly]):not([disabled]):hover),:host([value-state=Warning]:not([readonly]):not([disabled]):hover){background-color:var(--_ui5-step_input_button_state_hover_background_color)}:host(:not([value-state]):not([readonly]):not([disabled])[focused]),:host([value-state=Error]:not([readonly]):not([disabled])[focused]),:host([value-state=Information]:not([readonly]):not([disabled])[focused]),:host([value-state=None]:not([readonly]):not([disabled])[focused]),:host([value-state=Success]:not([readonly]):not([disabled])[focused]),:host([value-state=Warning]:not([readonly]):not([disabled])[focused]){background-color:var(--sapField_Focus_Background)}:host([value-state=Error]:not([readonly]):not([disabled])):after,:host([value-state=Information]:not([readonly]):not([disabled])):after,:host([value-state=None]:not([readonly]):not([disabled])):after,:host([value-state=Success]:not([readonly]):not([disabled])):after,:host([value-state=Warning]:not([readonly]):not([disabled])):after{position:absolute;content:"";top:-1px;right:-1px;bottom:-1px;left:-1px;outline:none;pointer-events:none;border-radius:var(--sapField_BorderCornerRadius);border-style:var(--_ui5_input_error_warning_border_style);z-index:3;border-width:0}:host([value-state=Information]:not([readonly]):not([disabled])):after{border-color:var(--sapField_InformationColor);border-width:var(--_ui5-input-information_border_width)}:host([value-state=Warning]:not([readonly]):not([disabled])):after{border-color:var(--sapField_WarningColor);border-width:2px}:host([value-state=Success]:not([readonly]):not([disabled])):after{border-color:var(--sapField_SuccessColor);border-width:1px}:host([value-state=Error]:not([readonly]):not([disabled])):after{border-color:var(--sapField_InvalidColor);border-width:var(--_ui5-input-information_border_width)}:host([value-state]):after{border-width:var(--_ui5_input_state_border_width)}:host([value-state=Error]:not([readonly]):not([disabled])) .ui5-step-input-input{background-color:var(--_ui5_input_input_background_color)}:host([value-state=Error]:not([readonly]):not([disabled])) .ui5-step-input-input:hover{background-color:var(--_ui5_step_input_input_error_background_color)}:host([value-state]:not([value-state=None]) .ui5-step-input-input[focused]){outline:none}:host .ui5-step-input-input{width:100%;color:inherit;background-color:inherit;border:var(--_ui5_step_input_input_border);box-sizing:border-box;vertical-align:top;margin-top:var(--_ui5_step_input_input_margin_top);min-width:9.125rem;position:relative;padding:0 2.5rem 0 2.4375rem;outline:none}:host .ui5-step-input-input[readonly]{padding:0}:host .ui5-step-input-input:hover,:host .ui5-step-input-input[focused]{box-shadow:none}:host .ui5-step-input-root{white-space:nowrap}:host .ui5-step-input-input[text-align=left]{text-align:left}:host .ui5-step-input-input[text-align=center]{text-align:center}:host .ui5-step-input-input[text-align=right]{text-align:right}:host .ui5-step-icon{position:absolute;display:var(--_ui5_step_input_button_display);height:2rem;height:100%;background-color:var(--_ui5_step_input_button_background_color);z-index:2}:host .ui5-step-icon[focused]{border:none;outline:none}:host .ui5-step-icon.ui5-step-dec{left:var(--_ui5_step_input_button_left)}:host .ui5-step-icon.ui5-step-inc{right:var(--_ui5_step_input_button_right)}:host .ui5-step-icon :not([clickable]),:host .ui5-step-icon :not([clickable]):active,:host .ui5-step-icon :not([clickable]):hover{opacity:.5;background-color:transparent;color:var(--sapContent_IconColor)}:host .ui5-step-icon :not([clickable]) :active,:host .ui5-step-icon :not([clickable]) :hover{background-color:var(--sapField_Background);color:var(--sapContent_IconColor)}:host .ui5-step-input-input[focused]:after{position:absolute;content:"";border:var(--_ui5_step_input_input_border_focused_after);top:var(--_ui5_step_input_input_border_top_bottom_focused_after);right:0;bottom:var(--_ui5_step_input_input_border_top_bottom_focused_after);border-radius:var(--_ui5_step_input_input_border_radius_focused_after);left:0;outline:none;pointer-events:none;z-index:3}:host .ui5-step-input-input[focused]{outline:none}:host([value-state=Information]:not([readonly]):not([disabled])) .ui5-step-input-input[focused]:after{border-color:var(--_ui5_step_input_input_information_border_color_focused_after)}:host([value-state=Warning]:not([readonly]):not([disabled])) .ui5-step-input-input[focused]:after{border-color:var(--_ui5_step_input_input_warning_border_color_focused_after)}:host([value-state=Success]:not([readonly]):not([disabled])) .ui5-step-input-input[focused]:after{border-color:var(--_ui5_step_input_input_success_border_color_focused_after)}:host([value-state=Error]:not([readonly]):not([disabled])) .ui5-step-input-input[focused]:after{border-color:var(--_ui5_step_input_input_error_border_color_focused_after)}:host .ui5-step-input-input::-webkit-inner-spin-button,:host .ui5-step-input-input::-webkit-outer-spin-button{-webkit-appearance:none;margin:0}:host([disabled]){opacity:var(--_ui5_input_disabled_opacity);cursor:default;pointer-events:none;background:var(--sapField_ReadOnly_Background);border-color:var(--sapField_ReadOnly_BorderColor)}:host([disabled]) .ui5-step-icon{background-color:var(--_ui5_step_input_disabled_button_background)}:host([disabled]) .ui5-step-icon [ui5-icon]{color:var(--sapField_ReadOnly_BorderColor)}'};const pl={tag:"ui5-step-input",managedSlots:!0,properties:{value:{type:Ks,defaultValue:0},min:{type:Ks},max:{type:Ks},step:{type:Ks,defaultValue:1},valueState:{type:Oa,defaultValue:Oa.None},required:{type:Boolean},disabled:{type:Boolean},readonly:{type:Boolean},placeholder:{type:String,defaultValue:void 0},name:{type:String},valuePrecision:{type:dn,defaultValue:0},accessibleName:{type:String},accessibleNameRef:{type:String,defaultValue:""},_decIconDisabled:{type:Boolean,noAttribute:!0},_incIconDisabled:{type:Boolean,noAttribute:!0},focused:{type:Boolean},_inputFocused:{type:Boolean,noAttribute:!0},_previousValue:{type:Ks,noAttribute:!0},_previousValueState:{type:String,noAttribute:!0,defaultValue:""},_waitTimeout:{type:Ks,noAttribute:!0},_speed:{type:Ks,noAttribute:!0},_btnDown:{type:Boolean,noAttribute:!0},_spinTimeoutId:{type:dn,noAttribute:!0},_spinStarted:{type:Boolean,noAttribute:!0}},slots:{valueStateMessage:{type:HTMLElement},formSupport:{type:HTMLElement}},events:{change:{}}};class gl extends Ft{constructor(){super()}static get metadata(){return pl}static get render(){return Ni}static get styles(){return hl}static get template(){return Qs}static get dependencies(){return[Ur,Js]}static async onDefine(){gl.i18nBundle=await er("@ui5/webcomponents")}get type(){return Sn.Number}get decIconTitle(){return gl.i18nBundle.getText(Da)}get decIconName(){return"less"}get incIconTitle(){return gl.i18nBundle.getText(Aa)}get incIconName(){return"add"}get _decIconClickable(){return!this._decIconDisabled&&!this.readonly&&!this.disabled}get _incIconClickable(){return!this._incIconDisabled&&!this.readonly&&!this.disabled}get _isFocused(){return this.focused}get _valuePrecisioned(){return this.value.toFixed(this.valuePrecision)}get accInfo(){return{ariaRequired:this.required,ariaLabel:cn(this)}}get inputAttributes(){return{min:void 0===this.min?void 0:this.min,max:void 0===this.max?void 0:this.max,step:this.step}}onBeforeRendering(){this._setButtonState(),void 0===this._previousValue&&(this._previousValue=this.value);const e=A("FormSupport");e?e.syncNativeHiddenInput(this):this.name&&console.warn('In order for the "name" property to have effect, you should also: import "@ui5/webcomponents/dist/features/InputElementsFormSupport.js";')}get input(){return this.shadowRoot.querySelector("[ui5-input]")}get inputOuter(){return this.shadowRoot.querySelector(".ui5-step-input-input")}_onButtonFocusOut(){setTimeout(()=>{this._inputFocused||this.inputOuter.removeAttribute("focused")},0)}_onInputFocusIn(){this._inputFocused=!0}_onInputFocusOut(){this._inputFocused=!1,this._onInputChange()}_setButtonState(){this._decIconDisabled=void 0!==this.min&&this.value<=this.min,this._incIconDisabled=void 0!==this.max&&this.value>=this.max}_validate(){""===this._previousValueState&&(this._previousValueState=""!==this.valueState?this.valueState:Oa.None),this.valueState=void 0!==this.min&&this.value<this.min||void 0!==this.max&&this.value>this.max?Oa.Error:this._previousValueState}_preciseValue(e){const t=10**this.valuePrecision;return Math.round(e*t)/t}_fireChangeEvent(){this._previousValue!==this.value&&(this._previousValue=this.value,this.fireEvent("change",{value:this.value}))}_modifyValue(e,t){let i;this.value=this._preciseValue(parseFloat(this.input.value)),i=this.value+e,void 0!==this.min&&i<this.min&&(i=this.min),void 0!==this.max&&i>this.max&&(i=this.max),i=this._preciseValue(i),i!==this.value&&(this.value=i,this._validate(),this._setButtonState(),this.focused=!0,this.inputOuter.setAttribute("focused",""),t?this._fireChangeEvent():this.input.focus())}_incValue(e){this._incIconClickable&&e.isTrusted&&!this.disabled&&!this.readonly&&(this._modifyValue(this.step,!0),this._previousValue=this.value)}_decValue(e){this._decIconClickable&&e.isTrusted&&!this.disabled&&!this.readonly&&(this._modifyValue(-this.step,!0),this._previousValue=this.value)}_onInputChange(e){""===this.input.value&&(this.input.value=this.min||0);const t=this._preciseValue(parseFloat(this.input.value));this.value===this._previousValue&&this.value===t||(this.value=t,this._validate(),this._setButtonState(),this._fireChangeEvent())}_onfocusin(){this.focused=!0}_onfocusout(){this.focused=!1}_onkeydown(e){let t=!0;this.disabled||this.readonly||(eo(e)?this._onInputChange():(no(e)?this._modifyValue(this.step):so(e)?this._modifyValue(-this.step):fo(e)?(this.value=this._previousValue,this.input.value=this.value.toFixed(this.valuePrecision)):void 0!==this.max&&(ko(e)||(e=>(e.key?"ArrowUp"===e.key||"Up"===e.key:e.keyCode===Xi)&&Ao(e,!0,!1,!0))(e))?this._modifyValue(this.max-this.value):void 0!==this.min&&(xo(e)||(e=>(e.key?"ArrowDown"===e.key||"Down"===e.key:e.keyCode===Ji)&&Ao(e,!0,!1,!0))(e))?this._modifyValue(this.min-this.value):(e=>(e.key?"ArrowUp"===e.key||"Up"===e.key:e.keyCode===Xi)&&Ao(e,!0,!1,!1))(e)||(e=>(e.key?"ArrowDown"===e.key||"Down"===e.key:e.keyCode===Ji)&&Ao(e,!0,!1,!1))(e)||lo(e)||uo(e)||(t=!1),t&&e.preventDefault()))}_decSpin(){this._decIconDisabled||this._spinValue(!1,!0)}_incSpin(){this._incIconDisabled||this._spinValue(!0,!0)}_calcWaitTimeout(){return this._speed*=.8,this._waitTimeout=this._waitTimeout-this._speed<50?50:this._waitTimeout-this._speed,this._waitTimeout}_spinValue(e,t){t&&(this._waitTimeout=500,this._speed=120,this._btnDown=!0),this._spinTimeoutId=setTimeout(()=>{this._btnDown&&(this._spinStarted=!0,this._modifyValue(e?this.step:-this.step),this._setButtonState(),!this._incIconDisabled&&e||!this._decIconDisabled&&!e?this._spinValue(e):(this._resetSpin(),this._fireChangeEvent()))},this._calcWaitTimeout())}_resetSpin(){clearTimeout(this._spinTimeoutId),this._btnDown=!1,this._spinStarted=!1}_resetSpinOut(){this._btnDown&&(this._resetSpin(),this._fireChangeEvent())}}gl.define();const ml={Gregorian:"Gregorian",Islamic:"Islamic",Japanese:"Japanese",Buddhist:"Buddhist",Persian:"Persian"};class fl extends Pe{static isValid(e){return!!ml[e]}}let vl;fl.generateTypeAccessors(ml);const bl=()=>(void 0===vl&&(Z(),vl=Y.calendarType),fl.isValid(vl)?vl:fl.Gregorian),yl=()=>{},wl={getFormatLocale:No,getLegacyDateFormat:yl,getLegacyDateCalendarCustomizing:yl,getCustomLocaleData:yl},kl={getLanguage:ut,getCalendarType:bl,getSupportedLanguages:()=>ct("$core-i18n-locales:,ar,bg,ca,cs,da,de,el,en,es,et,fi,fr,hi,hr,hu,it,iw,ja,ko,lt,lv,nl,no,pl,pt,ro,ru,sh,sk,sl,sv,th,tr,uk,vi,zh_CN,zh_TW$"),getOriginInfo:yl,getFormatSettings:()=>wl},xl={getConfiguration:()=>kl,getLibraryResourceBundle:void 0,getFormatSettings:()=>wl};var Cl={},Sl=window;function Tl(e){return Array.isArray(e)?e.slice():e.split(".")}Cl.create=function(e,t){for(var i=t||Sl,o=Tl(e),r=0;r<o.length;r++){var a=o[r];if(null===i[a]||void 0!==i[a]&&"object"!=typeof i[a]&&"function"!=typeof i[a])throw new Error("Could not set object-path for '"+o.join(".")+"', path segment '"+a+"' already exists.");i[a]=i[a]||{},i=i[a]}return i},Cl.get=function(e,t){for(var i=t||Sl,o=Tl(e),r=o.pop(),a=0;a<o.length&&i;a++)i=i[o[a]];return i?i[r]:void 0},Cl.set=function(e,t,i){i=i||Sl;var o=Tl(e),r=o.pop();Cl.create(o,i)[r]=t};var Bl,Il="undefined"!=typeof window&&window.performance&&performance.now&&performance.timing?(Bl=performance.timing.navigationStart,function(){return Bl+performance.now()}):Date.now,$l={Level:{NONE:-1,FATAL:0,ERROR:1,WARNING:2,INFO:3,DEBUG:4,TRACE:5,ALL:6}},Dl=[],Al={"":$l.Level.ERROR},Fl=3e3,El=null,Ml=!1;function Pl(e,t){return("000"+String(e)).slice(-t)}function Ll(e){return!e||isNaN(Al[e])?Al[""]:Al[e]}function Nl(){var e=Dl.length;if(e){var t=Math.min(e,Math.floor(.7*Fl));El&&El.onDiscardLogEntries(Dl.slice(0,e-t)),Dl=t?Dl.slice(-t,e):[]}}function zl(){return El||(El={listeners:[],onLogEntry:function(e){for(var t=0;t<El.listeners.length;t++)El.listeners[t].onLogEntry&&El.listeners[t].onLogEntry(e)},onDiscardLogEntries:function(e){for(var t=0;t<El.listeners.length;t++)El.listeners[t].onDiscardLogEntries&&El.listeners[t].onDiscardLogEntries(e)},attach:function(e,t){t&&(El.listeners.push(t),t.onAttachToLog&&t.onAttachToLog(e))},detach:function(e,t){for(var i=0;i<El.listeners.length;i++)if(El.listeners[i]===t)return t.onDetachFromLog&&t.onDetachFromLog(e),void El.listeners.splice(i,1)}}),El}function Ol(e,t,i,o,r){if(r||o||"function"!=typeof i||(r=i,i=""),r||"function"!=typeof o||(r=o,o=""),e<=Ll(o=o||void 0)){var a=Il(),n=new Date(a),s=Math.floor(1e3*(a-Math.floor(a))),l={time:Pl(n.getHours(),2)+":"+Pl(n.getMinutes(),2)+":"+Pl(n.getSeconds(),2)+"."+Pl(n.getMilliseconds(),3)+Pl(s,3),date:Pl(n.getFullYear(),4)+"-"+Pl(n.getMonth()+1,2)+"-"+Pl(n.getDate(),2),timestamp:a,level:e,message:String(t||""),details:String(i||""),component:String(o||"")};if(Ml&&"function"==typeof r&&(l.supportInfo=r()),Fl&&(Dl.length>=Fl&&Nl(),Dl.push(l)),El&&El.onLogEntry(l),console){var u=i instanceof Error,d=l.date+" "+l.time+" "+l.message+" - "+l.details+" "+l.component;switch(e){case $l.Level.FATAL:case $l.Level.ERROR:u?console.error(d,"\n",i):console.error(d);break;case $l.Level.WARNING:u?console.warn(d,"\n",i):console.warn(d);break;case $l.Level.INFO:console.info?u?console.info(d,"\n",i):console.info(d):u?console.log(d,"\n",i):console.log(d);break;case $l.Level.DEBUG:u?console.debug(d,"\n",i):console.debug(d);break;case $l.Level.TRACE:u?console.trace(d,"\n",i):console.trace(d)}console.info&&l.supportInfo&&console.info(l.supportInfo)}return l}}function Hl(e){this.fatal=function(t,i,o,r){return $l.fatal(t,i,o||e,r),this},this.error=function(t,i,o,r){return $l.error(t,i,o||e,r),this},this.warning=function(t,i,o,r){return $l.warning(t,i,o||e,r),this},this.info=function(t,i,o,r){return $l.info(t,i,o||e,r),this},this.debug=function(t,i,o,r){return $l.debug(t,i,o||e,r),this},this.trace=function(t,i,o,r){return $l.trace(t,i,o||e,r),this},this.setLevel=function(t,i){return $l.setLevel(t,i||e),this},this.getLevel=function(t){return $l.getLevel(t||e)},this.isLoggable=function(t,i){return $l.isLoggable(t,i||e)}}$l.fatal=function(e,t,i,o){Ol($l.Level.FATAL,e,t,i,o)},$l.error=function(e,t,i,o){Ol($l.Level.ERROR,e,t,i,o)},$l.warning=function(e,t,i,o){Ol($l.Level.WARNING,e,t,i,o)},$l.info=function(e,t,i,o){Ol($l.Level.INFO,e,t,i,o)},$l.debug=function(e,t,i,o){Ol($l.Level.DEBUG,e,t,i,o)},$l.trace=function(e,t,i,o){Ol($l.Level.TRACE,e,t,i,o)},$l.setLevel=function(e,t,i){var o;(t=t||"",i&&null!=Al[t])||(Al[t]=e,Object.keys($l.Level).forEach((function(t){$l.Level[t]===e&&(o=t)})),Ol($l.Level.INFO,"Changing log level "+(t?"for '"+t+"' ":"")+"to "+o,"","sap.base.log"))},$l.getLevel=function(e){return Ll(e||void 0)},$l.isLoggable=function(e,t){return(null==e?$l.Level.DEBUG:e)<=Ll(t||void 0)},$l.logSupportInfo=function(e){Ml=e},$l.getLogEntries=function(){return Dl.slice()},$l.getLogEntriesLimit=function(){return Fl},$l.setLogEntriesLimit=function(e){if(e<0)throw new Error("The log entries limit needs to be greater than or equal to 0!");Fl=e,Dl.length>=Fl&&Nl()},$l.addLogListener=function(e){zl().attach(this,e)},$l.removeLogListener=function(e){zl().detach(this,e)},$l.getLogger=function(e,t){return isNaN(t)||null!=Al[e]||(Al[e]=t),new Hl(e)};var Rl=function(e,t){if(!e){var i="function"==typeof t?t():t;console.assert(e,i)}},Ul=function(e){Rl(Array.isArray(e),"uniqueSort: input parameter must be an Array");var t=e.length;if(t>1){e.sort();for(var i=0,o=1;o<t;o++)e.indexOf(e[o])===o&&(e[++i]=e[o]);++i<t&&e.splice(i,t-i)}return e},Vl=function(e,t){if(Rl("string"==typeof e&&e,"Metadata: sClassName must be a non-empty string"),Rl("object"==typeof t,"Metadata: oClassInfo must be empty or an object"),t&&"object"==typeof t.metadata||((t={metadata:t||{},constructor:Cl.get(e)}).metadata.__version=1),t.metadata.__version=t.metadata.__version||2,"function"!=typeof 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)};Vl.prototype.extend=function(e){this.applySettings(e),this.afterApplySettings()},Vl.prototype.applySettings=function(e){var t,i=e.metadata;if(i.baseType){var o=Cl.get(i.baseType);"function"!=typeof o&&$l.fatal("base class '"+i.baseType+"' does not exist"),o.getMetadata?(this._oParent=o.getMetadata(),Rl(o===o.getMetadata().getClass(),"Metadata: oParentClass must match the class in the parent metadata")):this._oParent=new Vl(i.baseType,{})}else this._oParent=void 0;for(var r in this._bAbstract=!!i.abstract,this._bFinal=!!i.final,this._sStereotype=i.stereotype||(this._oParent?this._oParent._sStereotype:"object"),this._bDeprecated=!!i.deprecated,this._aInterfaces=i.interfaces||[],this._aPublicMethods=i.publicMethods||[],this._bInterfacesUnique=!1,t=this._oClass.prototype,e)"metadata"!==r&&"constructor"!==r&&(t[r]=e[r],r.match(/^_|^on|^init$|^exit$/)||this._aPublicMethods.push(r))},Vl.prototype.afterApplySettings=function(){this._oParent?(this._aAllPublicMethods=this._oParent._aAllPublicMethods.concat(this._aPublicMethods),this._bInterfacesUnique=!1):this._aAllPublicMethods=this._aPublicMethods},Vl.prototype.getStereotype=function(){return this._sStereotype},Vl.prototype.getName=function(){return this._sClassName},Vl.prototype.getClass=function(){return this._oClass},Vl.prototype.getParent=function(){return this._oParent},Vl.prototype._dedupInterfaces=function(){this._bInterfacesUnique||(Ul(this._aInterfaces),Ul(this._aPublicMethods),Ul(this._aAllPublicMethods),this._bInterfacesUnique=!0)},Vl.prototype.getPublicMethods=function(){return this._dedupInterfaces(),this._aPublicMethods},Vl.prototype.getAllPublicMethods=function(){return this._dedupInterfaces(),this._aAllPublicMethods},Vl.prototype.getInterfaces=function(){return this._dedupInterfaces(),this._aInterfaces},Vl.prototype.isInstanceOf=function(e){if(this._oParent&&this._oParent.isInstanceOf(e))return!0;for(var t=this._aInterfaces,i=0,o=t.length;i<o;i++)if(t[i]===e)return!0;return!1},Object.defineProperty(Vl.prototype,"_mImplementedTypes",{get:function(){if(this===Vl.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,i=t.length;i-- >0;)e[t[i]]||(e[t[i]]=!0);return Object.defineProperty(this,"_mImplementedTypes",{value:Object.freeze(e),writable:!1,configurable:!1}),e},configurable:!0}),Vl.prototype.isA=function(e){var t=this._mImplementedTypes;if(Array.isArray(e)){for(var i=0;i<e.length;i++)if(e[i]in t)return!0;return!1}return e in t},Vl.prototype.isAbstract=function(){return this._bAbstract},Vl.prototype.isFinal=function(){return this._bFinal},Vl.prototype.isDeprecated=function(){return this._bDeprecated},Vl.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},Vl.createClass=function(e,t,i,o){"string"==typeof e&&(o=i,i=t,t=e,e=null),Rl(!e||"function"==typeof e),Rl("string"==typeof t&&!!t),Rl(!i||"object"==typeof i),Rl(!o||"function"==typeof o),"function"==typeof(o=o||Vl).preprocessClassInfo&&(i=o.preprocessClassInfo(i)),(i=i||{}).metadata=i.metadata||{},i.hasOwnProperty("constructor")||(i.constructor=void 0);var r=i.constructor;Rl(!r||"function"==typeof r),e?(r||(r=i.metadata.deprecated?function(){$l.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,i.metadata.baseType=e.getMetadata().getName()):(r=r||function(){},delete i.metadata.baseType),i.constructor=r,Cl.set(t,r);var a=new o(t,i);return r.getMetadata=r.prototype.getMetadata=function(){return a},r.getMetadata().isFinal()||(r.extend=function(e,t,i){return Vl.createClass(r,e,t,i||o)}),r};var jl=Vl.createClass("sap.ui.base.Object",{constructor:function(){if(!(this instanceof jl))throw Error('Cannot instantiate object: "new" is missing!')}});jl.prototype.destroy=function(){},jl.prototype.getInterface=function(){var e=new jl._Interface(this,this.getMetadata().getAllPublicMethods());return this.getInterface=function(){return e},e},jl.defineClass=function(e,t,i){var o=new(i||Vl)(e,t),r=o.getClass();return r.getMetadata=r.prototype.getMetadata=function(){return o},o.isFinal()||(r.extend=function(e,t,o){return Vl.createClass(r,e,t,o||i)}),$l.debug("defined class '"+e+"'"+(o.getParent()?" as subclass of "+o.getParent().getName():"")),o},jl.prototype.isA=function(e){return this.getMetadata().isA(e)},jl.isA=function(e,t){return e instanceof jl&&e.isA(t)},jl._Interface=function(e,t,i){if(!e)return e;function o(e,t){return function(){var o=e[t].apply(e,arguments);return i?this:o instanceof jl?o.getInterface():o}}if(!t)return{};for(var r,a=0,n=t.length;a<n;a++)e[r=t[a]]&&"function"!=typeof e[r]||(this[r]=o(e,r))};var Wl={},ql=Wl.hasOwnProperty,Yl=Wl.toString,Gl=ql.toString,Xl=Gl.call(Object),Zl=function(e){var t,i;return!(!e||"[object Object]"!==Yl.call(e))&&(!(t=Object.getPrototypeOf(e))||"function"==typeof(i=ql.call(t,"constructor")&&t.constructor)&&Gl.call(i)===Xl)},Jl=Object.create(null),Kl=function(){var e,t,i,o,r,a,n=arguments[2]||{},s=3,l=arguments.length,u=arguments[0]||!1,d=arguments[1]?void 0:Jl;for("object"!=typeof n&&"function"!=typeof n&&(n={});s<l;s++)if(null!=(r=arguments[s]))for(o in r)e=n[o],i=r[o],"__proto__"!==o&&n!==i&&(u&&i&&(Zl(i)||(t=Array.isArray(i)))?(t?(t=!1,a=e&&Array.isArray(e)?e:[]):a=e&&Zl(e)?e:{},n[o]=Kl(u,arguments[1],a,i)):i!==d&&(n[o]=i));return n},Ql=function(){var e=[!1,!0];return e.push.apply(e,arguments),Kl.apply(null,e)},eu={Gregorian:"Gregorian",Islamic:"Islamic",Japanese:"Japanese",Persian:"Persian",Buddhist:"Buddhist"},tu=/^((?:[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,iu=jl.extend("sap.ui.core.Locale",{constructor:function(e){jl.apply(this);var t=tu.exec(e.replace(/_/g,"-"));if(null===t)throw new TypeError("The given language '"+e+"' does not adhere to BCP-47.");this.sLocaleId=e,this.sLanguage=t[1]||null,this.sScript=t[2]||null,this.sRegion=t[3]||null,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]/,(function(e){return e.toUpperCase()}))),this.sRegion&&(this.sRegion=this.sRegion.toUpperCase())},getLanguage:function(){return this.sLanguage},getScript:function(){return this.sScript},getRegion:function(){return this.sRegion},getVariant:function(){return this.sVariant},getVariantSubtags:function(){return this.sVariant?this.sVariant.split("-"):[]},getExtension:function(){return this.sExtension},getExtensionSubtags:function(){return this.sExtension?this.sExtension.slice(2).split("-"):[]},getPrivateUse:function(){return this.sPrivateUse},getPrivateUseSubtags:function(){return this.sPrivateUse?this.sPrivateUse.slice(2).split("-"):[]},hasPrivateUseSubtag:function(e){return Rl(e&&e.match(/^[0-9A-Z]{1,8}$/i),"subtag must be a valid BCP47 private use tag"),this.getPrivateUseSubtags().indexOf(e)>=0},toString:function(){return uu(this.sLanguage,this.sScript,this.sRegion,this.sVariant,this.sExtension,this.sPrivateUse)},toLanguageTag:function(){var e=this.getModernLanguage(),t=this.sScript;return"sr"===e&&"Latn"===t&&(e="sh",t=null),uu(e,t,this.sRegion,this.sVariant,this.sExtension,this.sPrivateUse)},getModernLanguage:function(){return ru[this.sLanguage]||this.sLanguage},getSAPLogonLanguage:function(){var e=this.sLanguage||"";return e.indexOf("-")>=0&&(e=e.slice(0,e.indexOf("-"))),"zh"!==(e=ru[e]||e)||this.sScript||"TW"!==this.sRegion?nu[uu(e,this.sScript)]||nu[uu(e,this.sRegion)]||nu[function(e){if(e){var t=/-(saptrc|sappsd|saprigi)(?:-|$)/i.exec(e);return t&&"en-US-x-"+t[1].toLowerCase()}}(this.sPrivateUse)]||e.toUpperCase():"ZF"}});var ou,ru={iw:"he",ji:"yi"},au={ZH:"zh-Hans",ZF:"zh-Hant",SH:"sr-Latn","6N":"en-GB","1P":"pt-PT","1X":"es-MX","3F":"fr-CA","1Q":"en-US-x-saptrc","2Q":"en-US-x-sappsd","3Q":"en-US-x-saprigi"},nu=(ou=au,Object.keys(ou).reduce((function(e,t){return e[ou[t]]=t,e}),{}));function su(e){var t=/\$([-a-z0-9A-Z._]+)(?::([^$]*))?\$/.exec(e);return t&&t[2]?t[2].split(/,/):null}var lu=su("$cldr-rtl-locales:ar,fa,he$")||[];function uu(){return Array.prototype.filter.call(arguments,Boolean).join("-")}iu._cldrLocales=su("$cldr-locales:ar,ar_EG,ar_SA,bg,ca,cy,cs,da,de,de_AT,de_CH,el,el_CY,en,en_AU,en_GB,en_HK,en_IE,en_IN,en_NZ,en_PG,en_SG,en_ZA,es,es_AR,es_BO,es_CL,es_CO,es_MX,es_PE,es_UY,es_VE,et,fa,fi,fr,fr_BE,fr_CA,fr_CH,fr_LU,he,hi,hr,hu,id,it,it_CH,ja,kk,ko,lt,lv,ms,nb,nl,nl_BE,pl,pt,pt_PT,ro,ru,ru_UA,sk,sl,sr,sr_Latn,sv,th,tr,uk,vi,zh_CN,zh_HK,zh_SG,zh_TW$"),iu._coreI18nLocales=su("$core-i18n-locales:,ar,bg,ca,cs,da,de,el,en,en_GB,es,es_MX,et,fi,fr,hi,hr,hu,it,iw,ja,kk,ko,lt,lv,ms,nl,no,pl,pt,ro,ru,sh,sk,sl,sv,th,tr,uk,vi,zh_CN,zh_TW$"),iu._impliesRTL=function(e){var t=e instanceof iu?e:new iu(e),i=t.getLanguage()||"";i=i&&ru[i]||i;var o=t.getRegion()||"";return!!(o&&lu.indexOf(i+"_"+o)>=0)||lu.indexOf(i)>=0},iu.fromSAPLogonLanguage=function(e){if(e&&"string"==typeof e){e=au[e.toUpperCase()]||e;try{return new iu(e)}catch(e){}}};const du=new Map,cu=new Map,_u=new Map,hu=new Set;let pu=!1;const gu={iw:"he",ji:"yi",in:"id",sh:"sr"},mu=e=>{pu||(console.warn(`[LocaleData] Supported locale "${e}" not configured, import the "Assets.js" module from the webcomponents package you are using.`),pu=!0)},fu=(e,t)=>{du.set(e,t)},vu=async(e,t,i)=>{const o=((e,t,i)=>{"no"===(e=e&&gu[e]||e)&&(e="nb"),"zh"!==e||t||("Hans"===i?t="CN":"Hant"===i&&(t="TW"));let o=`${e}_${t}`;return W.includes(o)?cu.has(o)?o:(mu(o),j):(o=e,W.includes(o)?cu.has(o)?o:(mu(o),j):j)})(e,t,i),r=A("OpenUI5Support");if(r){const e=r.getLocaleDataObject();if(e)return void fu(o,e)}try{const e=await(e=>{const t=cu.get(e);return _u.get(e)||_u.set(e,t(e)),_u.get(e)})(o);fu(o,e)}catch(e){hu.has(e.message)||(hu.add(e.message),console.error(e.message))}},bu=(e,t)=>{cu.set(e,t)};bu("en",async e=>(await fetch("https://ui5.sap.com/1.60.2/resources/sap/ui/core/cldr/en.json")).json()),nt(()=>{const e=No();return vu(e.getLanguage(),e.getRegion(),e.getScript())});const yu=e=>{const t=e.match(/sap\/ui\/core\/cldr\/(\w+)\.json/);if(!t)throw new Error(`Unknown module "${e}"`);return(e=>{cu.has(e)||(e=j);const t=du.get(e);if(!t)throw new Error(`CLDR data for locale ${e} is not loaded!`);return t})(t[1])};var wu=jl.extend("sap.ui.core.LocaleData",{constructor:function(e){this.oLocale=e,jl.apply(this),this.mData=function(e){var t,i=e.getLanguage()||"",o=e.getScript()||"",r=e.getRegion()||"";function a(e){if(!(Tu[e]||Su&&!0!==Su[e])){var t=Tu[e]=yu("sap/ui/core/cldr/"+e+".json",{dataType:"json",failOnError:!1});t&&t.__fallbackLocale&&(!function e(t,i){var o,r,a;if(i)for(o in i)i.hasOwnProperty(o)&&(r=t[o],a=i[o],void 0===r?t[o]=a:null===r?delete t[o]:"object"==typeof r&&"object"==typeof a&&e(r,a))}(t,a(t.__fallbackLocale)),delete t.__fallbackLocale)}return Tu[e]}"no"===(i=i&&Cu[i]||i)&&(i="nb");"zh"!==i||r||("Hans"===o?r="CN":"Hant"===o&&(r="TW"));("sh"===i||"sr"===i&&"Latn"===o)&&(i="sr_Latn");var n=i+"_"+r;i&&r&&(t=a(n));!t&&i&&(t=a(i));return Tu[n]=t||a("en"),Tu[n]}(e)},_get:function(){return this._getDeep(this.mData,arguments)},_getMerged:function(){return this._get.apply(this,arguments)},_getDeep:function(e,t){for(var i=e,o=0;o<t.length&&void 0!==(i=i[t[o]]);o++);return i},getOrientation:function(){return this._get("orientation")},getCurrentLanguageName:function(){var e,t=this.getLanguages(),i=this.oLocale.getModernLanguage(),o=this.oLocale.getScript();return"sr"===i&&"Latn"===o&&(i="sh",o=null),this.oLocale.getRegion()&&(e=t[i+"_"+this.oLocale.getRegion()]),!e&&o&&(e=t[i+"_"+o]),e||(e=t[i]),e},getLanguages:function(){return this._get("languages")},getScripts:function(){return this._get("scripts")},getTerritories:function(){return this._get("territories")},getMonths:function(e,t){return Rl("narrow"==e||"abbreviated"==e||"wide"==e,"sWidth must be narrow, abbreviated or wide"),this._get(Bu(t),"months","format",e)},getMonthsStandAlone:function(e,t){return Rl("narrow"==e||"abbreviated"==e||"wide"==e,"sWidth must be narrow, abbreviated or wide"),this._get(Bu(t),"months","stand-alone",e)},getDays:function(e,t){return Rl("narrow"==e||"abbreviated"==e||"wide"==e||"short"==e,"sWidth must be narrow, abbreviate, wide or short"),this._get(Bu(t),"days","format",e)},getDaysStandAlone:function(e,t){return Rl("narrow"==e||"abbreviated"==e||"wide"==e||"short"==e,"sWidth must be narrow, abbreviated, wide or short"),this._get(Bu(t),"days","stand-alone",e)},getQuarters:function(e,t){return Rl("narrow"==e||"abbreviated"==e||"wide"==e,"sWidth must be narrow, abbreviated or wide"),this._get(Bu(t),"quarters","format",e)},getQuartersStandAlone:function(e,t){return Rl("narrow"==e||"abbreviated"==e||"wide"==e,"sWidth must be narrow, abbreviated or wide"),this._get(Bu(t),"quarters","stand-alone",e)},getDayPeriods:function(e,t){return Rl("narrow"==e||"abbreviated"==e||"wide"==e,"sWidth must be narrow, abbreviated or wide"),this._get(Bu(t),"dayPeriods","format",e)},getDayPeriodsStandAlone:function(e,t){return Rl("narrow"==e||"abbreviated"==e||"wide"==e,"sWidth must be narrow, abbreviated or wide"),this._get(Bu(t),"dayPeriods","stand-alone",e)},getDatePattern:function(e,t){return Rl("short"==e||"medium"==e||"long"==e||"full"==e,"sStyle must be short, medium, long or full"),this._get(Bu(t),"dateFormats",e)},getTimePattern:function(e,t){return Rl("short"==e||"medium"==e||"long"==e||"full"==e,"sStyle must be short, medium, long or full"),this._get(Bu(t),"timeFormats",e)},getDateTimePattern:function(e,t){return Rl("short"==e||"medium"==e||"long"==e||"full"==e,"sStyle must be short, medium, long or full"),this._get(Bu(t),"dateTimeFormats",e)},getCombinedDateTimePattern:function(e,t,i){Rl("short"==e||"medium"==e||"long"==e||"full"==e,"sStyle must be short, medium, long or full"),Rl("short"==t||"medium"==t||"long"==t||"full"==t,"sStyle must be short, medium, long or full");var o=this.getDateTimePattern(e,i),r=this.getDatePattern(e,i),a=this.getTimePattern(t,i);return o.replace("{0}",a).replace("{1}",r)},getCustomDateTimePattern:function(e,t){var i=this._get(Bu(t),"dateTimeFormats","availableFormats");return this._getFormatPattern(e,i,t)},getIntervalPattern:function(e,t){var i,o,r,a,n,s=this._get(Bu(t),"dateTimeFormats","intervalFormats");return e&&(o=(i=e.split("-"))[0],r=i[1],(a=s[o])&&(n=a[r]))?n:s.intervalFormatFallback},getCombinedIntervalPattern:function(e,t){return this._get(Bu(t),"dateTimeFormats","intervalFormats").intervalFormatFallback.replace(/\{(0|1)\}/g,e)},getCustomIntervalPattern:function(e,t,i){var o=this._get(Bu(i),"dateTimeFormats","intervalFormats");return this._getFormatPattern(e,o,i,t)},_getFormatPattern:function(e,t,i,o){var r,a,n;if(o?"string"==typeof o&&("j"!=o&&"J"!=o||(o=this.getPreferredHourSymbol()),n=t[e],r=n&&n[o]):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,i,o)),a&&1===a.length?a[0]:a},_createFormatPattern:function(e,t,i,o){var r,a,n,s,l,u,d,c,_,h,p,g=this._parseSkeletonFormat(e),m=this._findBestMatch(g,e,t),f=/^([GyYqQMLwWEecdD]+)([hHkKjJmszZvVOXx]+)$/;if(o){if("string"==typeof o)(_=xu[o]?xu[o].group:"")&&(h=ku[_].index>g[g.length-1].index),c=o;else{for(h=!0,"y"===g[0].symbol&&m&&m.pattern.G&&(s=xu.G,l=ku[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(o[(a=g[p]).group]){h=!1;break}for(p=0;p<g.length;p++)if(o[(a=g[p]).group]){c=a.symbol;break}"h"!=c&&"K"!=c||!o.DayPeriod||(c="a")}if(h)return[this.getCustomDateTimePattern(e,i)];m&&0===m.missingTokens.length&&(u=m.pattern[c])&&m.distance>0&&(u=this._expandFields(u,m.patternTokens,g)),u||(n=this._get(Bu(i),"dateTimeFormats","availableFormats"),f.test(e)&&"ahHkKjJms".indexOf(c)>=0?u=this._getMixedFormatPattern(e,n,i,o):(d=this._getFormatPattern(e,n,i),u=this.getCombinedIntervalPattern(d,i))),r=[u]}else if(m){if("string"==typeof m.pattern)r=[m.pattern];else if("object"==typeof m.pattern)for(var v in r=[],m.pattern)u=m.pattern[v],r.push(u);m.distance>0&&(m.missingTokens.length>0?f.test(e)?r=[this._getMixedFormatPattern(e,t,i)]:(r=this._expandFields(r,m.patternTokens,g),r=this._appendItems(r,m.missingTokens,i)):r=this._expandFields(r,m.patternTokens,g))}else r=[u=e];return e.indexOf("J")>=0&&r.forEach((function(e,t){r[t]=e.replace(/ ?[abB](?=([^']*'[^']*')*[^']*)$/g,"")})),r},_parseSkeletonFormat:function(e){for(var t,i,o,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(i=xu[t],o=ku[i.group],"Other"==i.group||o.diffOnly)throw new Error("Symbol '"+t+"' is not allowed in skeleton format '"+e+"'");if(o.index<=a.index)throw new Error("Symbol '"+t+"' at wrong position or duplicate in skeleton format '"+e+"'");a={symbol:t,group:i.group,match:i.match,index:o.index,field:o.field,length:1},r.push(a)}else a.length++;return r},_findBestMatch:function(e,t,i){var o,r,a,n,s,l,u,d,c,_,h={distance:1e4,firstDiffPos:-1};for(var p in i)if(!("intervalFormatFallback"===p||p.indexOf("B")>-1||(o=this._parseSkeletonFormat(p),l=0,r=[],u=!0,e.length<o.length))){s=0,d=e.length;for(var g=0;g<e.length;g++){if(a=e[g],n=o[s],d===e.length&&(d=g),n){if(c=xu[a.symbol],_=xu[n.symbol],a.symbol===n.symbol){a.length===n.length?d===g&&(d=e.length):(a.length<c.numericCeiling?n.length<_.numericCeiling:n.length>=_.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<o.length&&(u=!1),u&&(l<h.distance||l===h.distance&&d>h.firstDiffPos)&&(h.distance=l,h.firstDiffPos=d,h.missingTokens=r,h.pattern=i[p],h.patternTokens=o)}if(h.pattern)return h},_expandFields:function(e,t,i){var o="string"==typeof e,r=(o?[e]:e).map((function(e){var o,r,a,n,s,l,u,d,c={},_={},h="",p=!1,g=0;for(i.forEach((function(e){c[e.group]=e})),t.forEach((function(e){_[e.group]=e}));g<e.length;){if(d=e.charAt(g),p)h+=d,"'"==d&&(p=!1);else if((u=xu[d])&&c[u.group]&&_[u.group]){for(s=c[u.group],l=_[u.group],o=s.length,a=l.length,r=1;e.charAt(g+1)==d;)g++,r++;n=o===a||(o<u.numericCeiling?r>=u.numericCeiling:r<u.numericCeiling)?r:Math.max(r,o);for(var m=0;m<n;m++)h+=d}else h+=d,"'"==d&&(p=!0);g++}return h}));return o?r[0]:r},_appendItems:function(e,t,i){var o=this._get(Bu(i),"dateTimeFormats","appendItems");return e.forEach(function(i,r){var a,n,s;t.forEach(function(t){n=o[t.group],a="'"+this.getDisplayName(t.field)+"'",s="";for(var l=0;l<t.length;l++)s+=t.symbol;e[r]=n.replace(/\{0\}/,i).replace(/\{1\}/,s).replace(/\{2\}/,a)}.bind(this))}.bind(this)),e},_getMixedFormatPattern:function(e,t,i,o){var r,a,n,s,l,u;return a=(r=/^([GyYqQMLwWEecdD]+)([hHkKjJmszZvVOXx]+)$/.exec(e))[1],n=r[2],l=this._getFormatPattern(a,t,i),u=o?this.getCustomIntervalPattern(n,o,i):this._getFormatPattern(n,t,i),s=/MMMM|LLLL/.test(a)?/E|e|c/.test(a)?"full":"long":/MMM|LLL/.test(a)?"medium":"short",this.getDateTimePattern(s,i).replace(/\{1\}/,l).replace(/\{0\}/,u)},getNumberSymbol:function(e){return Rl("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 Rl("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){return this._get("currencyFormat")[e]||this._get("currencyFormat").standard},getCurrencySpacing:function(e){return this._get("currencyFormat","currencySpacing","after"===e?"afterCurrency":"beforeCurrency")},getPercentPattern:function(){return this._get("percentFormat").standard},getMiscPattern:function(e){return Rl("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){var t=this._get("currency");if(t){if(t[e]&&t[e].hasOwnProperty("digits"))return t[e].digits;if(t.DEFAULT&&t.DEFAULT.hasOwnProperty("digits"))return t.DEFAULT.digits}var i=this._get("currencyDigits",e);return null==i&&null==(i=this._get("currencyDigits","DEFAULT"))&&(i=2),i},getCurrencySymbol:function(e){var t=this.getCurrencySymbols();return t&&t[e]||e},getCurrencyCodeBySymbol:function(e){var t,i=this._get("currencySymbols");for(t in i)if(i[t]===e)return t;return e},getCurrencySymbols:function(){var e,t=this._get("currency"),i={};for(var o in t)e=t[o].isoCode,t[o].symbol?i[o]=t[o].symbol:e&&(i[o]=this._get("currencySymbols")[e]);return Object.assign({},this._get("currencySymbols"),i)},getUnitDisplayName:function(e){var t=this.getUnitFormat(e);return t&&t.displayName||""},getRelativePatterns:function(e,t){void 0===t&&(t="wide"),Rl("wide"===t||"short"===t||"narrow"===t,"sStyle is only allowed to be set with 'wide', 'short' or 'narrow'");var i,o,r,a,n=[],s=this.getPluralCategories();return e||(e=["year","month","week","day","hour","minute","second"]),e.forEach(function(e){for(var l in i=this._get("dateFields",e+"-"+t))0===l.indexOf("relative-type-")?(r=parseInt(l.substr(14)),n.push({scale:e,value:r,pattern:i[l]})):0==l.indexOf("relativeTime-type-")&&(o=i[l],a="past"===l.substr(18)?-1:1,s.forEach((function(t){n.push({scale:e,sign:a,pattern:o["relativeTimePattern-count-"+t]})})))}.bind(this)),n},getRelativePattern:function(e,t,i,o){var r,a;return"string"==typeof i&&(o=i,i=void 0),void 0===i&&(i=t>0),void 0===o&&(o="wide"),Rl("wide"===o||"short"===o||"narrow"===o,"sStyle is only allowed to be set with 'wide', 'short' or 'narrow'"),a=e+"-"+o,0!==t&&-2!==t&&2!==t||(r=this._get("dateFields",a,"relative-type-"+t)),r||(r=this._get("dateFields",a,"relativeTime-type-"+(i?"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){Rl("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"),Rl("wide"===t||"short"===t||"narrow"===t,"sStyle is only allowed to be set with 'wide', 'short' or 'narrow'");var i=-1===["era","weekday","zone"].indexOf(e)?e+"-"+t:e;return this._get("dateFields",i,"displayName")},getRelativeYear:function(e,t){return this.getRelativePattern("year",e,t)},getDecimalFormat:function(e,t,i){var o,r;switch(e){case"long":r=this._get("decimalFormat-long");break;default:r=this._get("decimalFormat-short")}if(r){var a=t+"-"+i;(o=r[a])||(o=r[a=t+"-other"])}return o},getCurrencyFormat:function(e,t,i){var o,r=this._get("currencyFormat-"+e);if(!r){if("sap-short"===e)throw new Error('Failed to get CLDR data for property "currencyFormat-sap-short"');r=this._get("currencyFormat-short")}if(r){var a=t+"-"+i;(o=r[a])||(o=r[a=t+"-other"])}return o},getListFormat:function(e,t){var i=this._get("listPattern-"+(e||"standard")+"-"+(t||"wide"));return i||{}},getResolvedUnitFormat:function(e){return e=this.getUnitFromMapping(e)||e,this.getUnitFormat(e)},getUnitFormat:function(e){return this._get("units","short",e)},getUnitFormats:function(){return this._getMerged("units","short")},getUnitFromMapping:function(e){return this._get("unitMappings",e)},getEras:function(e,t){Rl("wide"==e||"abbreviated"==e||"narrow"==e,"sWidth must be wide, abbreviate or narrow");var i=this._get(Bu(t),"era-"+e),o=[];for(var r in i)o[parseInt(r)]=i[r];return o},getEraDates:function(e){var t=this._get("eras-"+e.toLowerCase()),i=[];for(var o in t)i[parseInt(o)]=t[o];return i},getCalendarWeek:function(e,t){Rl("wide"==e||"narrow"==e,"sStyle must be wide or narrow");var i="date.week.calendarweek."+e;return xl.getLibraryResourceBundle("sap.ui.core",this.oLocale.toString()).getText(i,t)},firstDayStartsFirstWeek:function(){return"FIRSTDAY_STARTS_FIRSTWEEK"===this._get("weekData-algorithm")},getPreferredCalendarType:function(){var e,t,i,o=this._get("calendarPreference"),r=o?o.split(" "):[];for(i=0;i<r.length;i++)for(t in e=r[i].split("-")[0],eu)if(e===t.toLowerCase())return t;return eu.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=this._get("plurals");for(var i in"number"==typeof e&&(e=e.toString()),this._pluralTest||(this._pluralTest={}),t){var o=this._pluralTest[i];if(o||(o=this._parsePluralRule(t[i]),this._pluralTest[i]=o),o(e))return i}return"other"},_parsePluralRule:function(e){var t,i=",",o=0;function r(e){return t[o]===e&&(o++,!0)}function a(){var e=t[o];return o++,e}t=e.split(" ");var n=function e(){var t,o;return t=function e(){var t,o;if(t=function(){var e,t,o;if(e=function(){var e;if(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};throw new Error("Unknown operand: "+a())}(),r("%")){var t=parseInt(a());return function(i){return e(i)%t}}return e}(),r("="))o=!0;else{if(!r("!="))throw new Error("Expected '=' or '!='");o=!1}return t=function(){var e,t,o,r=[];return a().split(i).forEach((function(i){if(1===(e=i.split("..")).length)r.push(parseInt(i));else{t=parseInt(e[0]),o=parseInt(e[1]);for(var a=t;a<=o;a++)r.push(a)}})),function(e){return r}}(),o?function(i){return t(i).indexOf(e(i))>=0}:function(i){return-1===t(i).indexOf(e(i))}}(),r("and"))return o=e(),function(e){return t(e)&&o(e)};return t}(),r("or")?(o=e(),function(e){return t(e)||o(e)}):t}();if(o!=t.length)throw new Error("Not completely parsed");return function(e){var t,i,o,r,a=e.indexOf(".");return-1===a?(t=e,i="",o=""):(t=e.substr(0,a),o=(i=e.substr(a+1)).replace(/0+$/,"")),r={n:parseFloat(e),i:parseInt(t),v:i.length,w:o.length,f:parseInt(i),t:parseInt(o)},n(r)}}}),ku={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}},xu={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}},Cu={iw:"he",ji:"yi"},Su=function(){var e,t=iu._cldrLocales,i={};if(t)for(e=0;e<t.length;e++)i[t[e]]=!0;return i}(),Tu={};function Bu(e){return e||(e=xl.getConfiguration().getCalendarType()),"ca-"+e.toLowerCase()}var Iu=wu.extend("sap.ui.core.CustomLocaleData",{constructor:function(e){wu.apply(this,arguments),this.mCustomData=xl.getConfiguration().getFormatSettings().getCustomLocaleData()},_get:function(){var e,t=Array.prototype.slice.call(arguments);0==t[0].indexOf("ca-")&&t[0]==Bu()&&(t=t.slice(1)),e=t.join("-");var i=this.mCustomData[e];return null==i&&null==(i=this._getDeep(this.mCustomData,arguments))&&(i=this._getDeep(this.mData,arguments)),i},_getMerged:function(){var e=this._getDeep(this.mData,arguments),t=this._getDeep(this.mCustomData,arguments);return Ql({},e,t)}});wu.getInstance=function(e){return e.hasPrivateUseSubtag("sapufmt")?new Iu(e):new wu(e)};var $u=new Map,Du=function(e){if(!$u.has(e))throw new Error("Required calendar type: "+e+" not loaded.");return $u.get(e)},Au=function(e,t){$u.set(e,t)},Fu=jl.extend("sap.ui.core.date.UniversalDate",{constructor:function(){var e=Fu.getClass();return this.createDate(e,arguments)}});Fu.UTC=function(){var e=Fu.getClass();return e.UTC.apply(e,arguments)},Fu.now=function(){return Date.now()},Fu.prototype.createDate=function(e,t){switch(t.length){case 0:return new e;case 1:return new e(t[0]instanceof Date?t[0].getTime():t[0]);case 2:return new e(t[0],t[1]);case 3:return new e(t[0],t[1],t[2]);case 4:return new e(t[0],t[1],t[2],t[3]);case 5:return new e(t[0],t[1],t[2],t[3],t[4]);case 6:return new e(t[0],t[1],t[2],t[3],t[4],t[5]);case 7:return new e(t[0],t[1],t[2],t[3],t[4],t[5],t[6])}},Fu.getInstance=function(e,t){var i,o;return e instanceof Fu?e=e.getJSDate():e||(e=new Date),t||(t=xl.getConfiguration().getCalendarType()),i=Fu.getClass(t),(o=Object.create(i.prototype)).oDate=e,o.sCalendarType=t,o},Fu.getClass=function(e){return e||(e=xl.getConfiguration().getCalendarType()),Du(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){Fu.prototype[e]=function(){return this.oDate[e].apply(this.oDate,arguments)}})),Fu.prototype.getJSDate=function(){return this.oDate},Fu.prototype.getCalendarType=function(){return this.sCalendarType},Fu.prototype.getEra=function(){return Fu.getEraByDate(this.sCalendarType,this.oDate.getFullYear(),this.oDate.getMonth(),this.oDate.getDate())},Fu.prototype.setEra=function(e){},Fu.prototype.getUTCEra=function(){return Fu.getEraByDate(this.sCalendarType,this.oDate.getUTCFullYear(),this.oDate.getUTCMonth(),this.oDate.getUTCDate())},Fu.prototype.setUTCEra=function(e){},Fu.prototype.getWeek=function(){return Fu.getWeekByDate(this.sCalendarType,this.getFullYear(),this.getMonth(),this.getDate())},Fu.prototype.setWeek=function(e){var t=Fu.getFirstDateOfWeek(this.sCalendarType,e.year||this.getFullYear(),e.week);this.setFullYear(t.year,t.month,t.day)},Fu.prototype.getUTCWeek=function(){return Fu.getWeekByDate(this.sCalendarType,this.getUTCFullYear(),this.getUTCMonth(),this.getUTCDate())},Fu.prototype.setUTCWeek=function(e){var t=Fu.getFirstDateOfWeek(this.sCalendarType,e.year||this.getFullYear(),e.week);this.setUTCFullYear(t.year,t.month,t.day)},Fu.prototype.getQuarter=function(){return Math.floor(this.getMonth()/3)},Fu.prototype.getUTCQuarter=function(){return Math.floor(this.getUTCMonth()/3)},Fu.prototype.getDayPeriod=function(){return this.getHours()<12?0:1},Fu.prototype.getUTCDayPeriod=function(){return this.getUTCHours()<12?0:1},Fu.prototype.getTimezoneShort=function(){if(this.oDate.getTimezoneShort)return this.oDate.getTimezoneShort()},Fu.prototype.getTimezoneLong=function(){if(this.oDate.getTimezoneLong)return this.oDate.getTimezoneLong()};function Eu(e,t){for(var i=xl.getConfiguration().getFormatSettings().getFormatLocale(),o=wu.getInstance(i),r=o.getMinimalDaysInFirstWeek(),a=o.getFirstDayOfWeek(),n=new e(e.UTC(t,0,1)),s=7;n.getUTCDay()!==a;)n.setUTCDate(n.getUTCDate()-1),s--;return s<r&&n.setUTCDate(n.getUTCDate()+7),n}function Mu(e,t){return Math.floor((t.valueOf()-e.valueOf())/6048e5)}Fu.getWeekByDate=function(e,t,i,o){var r,a,n,s,l=xl.getConfiguration().getFormatSettings().getFormatLocale(),u=wu.getInstance(l),d=this.getClass(e),c=Eu(d,t),_=new d(d.UTC(t,i,o));return u.firstDayStartsFirstWeek()?r=Mu(c,_):(n=t+1,s=Eu(d,a=t-1),_>=Eu(d,n)?(t=n,r=0):_<c?(t=a,r=Mu(s,_)):r=Mu(c,_)),{year:t,week:r}},Fu.getFirstDateOfWeek=function(e,t,i){var o=xl.getConfiguration().getFormatSettings().getFormatLocale(),r=wu.getInstance(o),a=this.getClass(e),n=Eu(a,t),s=new a(n.valueOf()+6048e5*i);return r.firstDayStartsFirstWeek()&&0===i&&n.getUTCFullYear()<t?{year:t,month:0,day:1}:{year:s.getUTCFullYear(),month:s.getUTCMonth(),day:s.getUTCDate()}};var Pu={};function Lu(e){var t=xl.getConfiguration().getFormatSettings().getFormatLocale(),i=wu.getInstance(t);if(!(o=Pu[e])){var o;(o=i.getEraDates(e))[0]||(o[0]={_start:"1-1-1"});for(var r=0;r<o.length;r++){var a=o[r];a&&(a._start&&(a._startInfo=Nu(a._start)),a._end&&(a._endInfo=Nu(a._end)))}Pu[e]=o}return o}function Nu(e){var t,i,o,r=e.split("-");return""==r[0]?(t=-parseInt(r[1]),i=parseInt(r[2])-1,o=parseInt(r[3])):(t=parseInt(r[0]),i=parseInt(r[1])-1,o=parseInt(r[2])),{timestamp:new Date(0).setUTCFullYear(t,i,o),year:t,month:i,day:o}}Fu.getEraByDate=function(e,t,i,o){for(var r,a=Lu(e),n=new Date(0).setUTCFullYear(t,i,o),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}},Fu.getCurrentEra=function(e){var t=new Date;return this.getEraByDate(e,t.getFullYear(),t.getMonth(),t.getDate())},Fu.getEraStartDate=function(e,t){var i=Lu(e),o=i[t]||i[0];if(o._start)return o._startInfo};class zu{constructor(){let e,t,i,o=arguments;switch(o.length){case 0:return t=new Date,this.constructor(t.getFullYear(),t.getMonth(),t.getDate());case 1:case 2:if(!(o[0]instanceof zu))throw new Error("Invalid arguments: the first argument must be of type sap.ui.unified.calendar.CalendarDate.");i=o[1]?o[1]:o[0]._oUDate.sCalendarType,e=new Date(o[0].valueOf()),e.setFullYear(e.getUTCFullYear(),e.getUTCMonth(),e.getUTCDate()),e.setHours(e.getUTCHours(),e.getUTCMinutes(),e.getUTCSeconds(),e.getUTCMilliseconds()),this._oUDate=Ou(e,i);break;case 3:case 4:Uu(o[0],`Invalid year: ${o[0]}`),Uu(o[1],`Invalid month: ${o[1]}`),Uu(o[2],`Invalid date: ${o[2]}`),e=new Date(0,0,1),e.setFullYear(o[0],o[1],o[2]),o[3]&&(i=o[3]),this._oUDate=Ou(e,i);break;default:throw new Error(`Invalid arguments. Accepted arguments are: 1) oCalendarDate, (optional)calendarTypeor 2) year, month, date, (optional) calendarType${o}`)}}getYear(){return this._oUDate.getUTCFullYear()}setYear(e){return Uu(e,`Invalid year: ${e}`),this._oUDate.setUTCFullYear(e),this}getMonth(){return this._oUDate.getUTCMonth()}setMonth(e,t){return Uu(e,`Invalid month: ${e}`),t||0===t?(Uu(t,`Invalid date: ${t}`),this._oUDate.setUTCMonth(e,t)):this._oUDate.setUTCMonth(e),this}getDate(){return this._oUDate.getUTCDate()}setDate(e){return Uu(e,`Invalid date: ${e}`),this._oUDate.setUTCDate(e),this}getDay(){return this._oUDate.getUTCDay()}getCalendarType(){return this._oUDate.sCalendarType}isBefore(e){return Ru(e),this.valueOf()<e.valueOf()}isAfter(e){return Ru(e),this.valueOf()>e.valueOf()}isSameOrBefore(e){return Ru(e),this.valueOf()<=e.valueOf()}isSameOrAfter(e){return Ru(e),this.valueOf()>=e.valueOf()}isSame(e){return Ru(e),this.valueOf()===e.valueOf()}toLocalJSDate(){const e=new Date(this._oUDate.getTime());return e.setFullYear(e.getUTCFullYear(),e.getUTCMonth(),e.getUTCDate()),e.setHours(0,0,0,0),e}toUTCJSDate(){const e=new Date(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(e,t){if(!(i=e)||"[object Date]"!==Object.prototype.toString.call(i)||isNaN(i))throw new Error(`Date parameter must be a JavaScript Date object: [${e}].`);var i;return new zu(e.getFullYear(),e.getMonth(),e.getDate(),t)}static fromTimestamp(e,t){const i=new zu(0,0,1);return i._oUDate=Fu.getInstance(new Date(e),t),i}}function Ou(e,t){return t?Fu.getInstance(Hu(e),t):new Fu(Hu(e).getTime())}function Hu(e){const t=new Date(Date.UTC(0,0,1));return t.setUTCFullYear(e.getFullYear(),e.getMonth(),e.getDate()),t}function Ru(e){if(!(e instanceof zu))throw new Error(`Invalid calendar date: [${e}]. Expected: sap.ui.unified.calendar.CalendarDate`)}function Uu(e,t){if(void 0===e||e===1/0||isNaN(e))throw t}const Vu=(e,t,i,o=null,r=null)=>{const a=new zu(e);if("day"===i)a.setDate(e.getDate()+t);else if("month"===i){a.setMonth(e.getMonth()+t);const i=-1===t&&a.getMonth()===e.getMonth(),o=1===t&&a.getMonth()-e.getMonth()>1;(i||o)&&a.setDate(0)}else a.setYear(e.getYear()+t),a.getMonth()!==e.getMonth()&&a.setDate(0);return o&&a.valueOf()<o.valueOf()?new zu(o):r&&a.valueOf()>r.valueOf()?new zu(r):a},ju=e=>zu.fromLocalJSDate(new Date,e).valueOf()/1e3,Wu="M409.5 52c43 0 77 33 77 76v307c0 43-34 76-77 76h-307c-43 0-76-33-76-76V128c0-43 33-76 76-76h52V26c0-15 10-26 25-26s26 11 26 26v26h102V26c0-15 10-26 25-26 16 0 26 11 26 26v26h51zm-307 51c-15 0-25 10-25 25v77h358v-77c0-15-11-25-26-25h-51v25c0 15-10 26-26 26-15 0-25-11-25-26v-25h-102v25c0 15-11 26-26 26s-25-11-25-26v-25h-52zm307 357c15 0 26-10 26-25V256h-358v179c0 15 10 25 25 25h307zm-153-166c21 0 38 17 38 39 0 21-17 38-38 38s-39-17-39-38c0-22 18-39 39-39zm102 0c21 0 38 17 38 39 0 21-17 38-38 38s-38-17-38-38c0-22 17-39 38-39zm-204 0c21 0 38 17 38 39 0 21-17 38-38 38-22 0-39-17-39-38 0-22 17-39 39-39z";Ar("appointment-2",{pathData:Wu,ltr:!1,collection:"SAP-icons-v5",packageName:"@ui5/webcomponents-icons"});var qu={pathData:Wu};const Yu="M32 481V65q0-14 9.5-23T64 33h64V1h32v32h192V1h32v32h64q14 0 23 9t9 23v416q0 14-9 23t-23 9H64q-13 0-22.5-9T32 481zm416 0V129H64v352h384zM256 193q14 0 23 9t9 23-9 23-23 9-23-9-9-23 9-23 23-9zM128 321q14 0 23 9t9 23-9 23-23 9-23-9-9-23 9-23 23-9zm256-128q14 0 23 9t9 23-9 23-23 9-23-9-9-23 9-23 23-9zm0 128q14 0 23 9t9 23-9 23-23 9-23-9-9-23 9-23 23-9zm-128 0q14 0 23 9t9 23-9 23-23 9-23-9-9-23 9-23 23-9zM96 225q0-14 9-23t23-9 23 9 9 23-9 23-23 9-23-9-9-23zM384 97V65h-32v32h32zM128 65v32h32V65h-32z";Ar("appointment-2",{pathData:Yu,ltr:!1,collection:"SAP-icons",packageName:"@ui5/webcomponents-icons"});var Gu={pathData:Yu};me("sap_horizon");var Xu=function(e,t,i,o,r){if("boolean"==typeof i&&(o=i,i=void 0),r||(r=0),i||(i=10),r>i)return $l.warning("deepEqual comparison exceeded maximum recursion depth of "+i+". Treating values as unequal"),!1;if(e===t||Number.isNaN(e)&&Number.isNaN(t))return!0;if(Array.isArray(e)&&Array.isArray(t)){if(!o&&e.length!==t.length)return!1;if(e.length>t.length)return!1;for(var a=0;a<e.length;a++)if(!Xu(e[a],t[a],i,o,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(!o&&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(!Xu(e[a],t[a],i,o,r+1))return!1;return!0}return!1},Zu=/('')|'([^']+(?:''[^']*)*)(?:'|$)|\{([0-9]+(?:\s*,[^{}]*)?)\}|[{}]/g,Ju=function(){throw new Error},Ku={};Ju.oDateInfo={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,i){return e.getDatePattern(t,i)},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"]},Ju.oDateTimeInfo={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,i){var o=t.indexOf("/");return o>0?e.getCombinedDateTimePattern(t.substr(0,o),t.substr(o+1),i):e.getCombinedDateTimePattern(t,t,i)},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"]},Ju.oTimeInfo={oDefaultFormatOptions:{style:"medium",relativeScale:"auto",relativeStyle:"wide"},aFallbackFormatOptions:[{style:"short"},{style:"medium"},{pattern:"HH:mm:ss"},{pattern:"HHmmss"}],getPattern:function(e,t,i){return e.getTimePattern(t,i)},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"]},Ju.getInstance=function(e,t){return this.getDateInstance(e,t)},Ju.getDateInstance=function(e,t){return this.createInstance(e,t,this.oDateInfo)},Ju.getDateTimeInstance=function(e,t){return this.createInstance(e,t,this.oDateTimeInfo)},Ju.getTimeInstance=function(e,t){return this.createInstance(e,t,this.oTimeInfo)},Ju.createInstance=function(e,t,i){var o=Object.create(this.prototype);if(e instanceof iu&&(t=e,e=void 0),t||(t=xl.getConfiguration().getFormatSettings().getFormatLocale()),o.oLocale=t,o.oLocaleData=wu.getInstance(t),o.oFormatOptions=Ql({},i.oDefaultFormatOptions,e),o.oFormatOptions.calendarType||(o.oFormatOptions.calendarType=xl.getConfiguration().getCalendarType()),o.oFormatOptions.pattern||(o.oFormatOptions.format?o.oFormatOptions.pattern=o.oLocaleData.getCustomDateTimePattern(o.oFormatOptions.format,o.oFormatOptions.calendarType):o.oFormatOptions.pattern=i.getPattern(o.oLocaleData,o.oFormatOptions.style,o.oFormatOptions.calendarType)),o.oFormatOptions.interval){o.oFormatOptions.format?(o.intervalPatterns=o.oLocaleData.getCustomIntervalPattern(o.oFormatOptions.format,null,o.oFormatOptions.calendarType),"string"==typeof o.intervalPatterns&&(o.intervalPatterns=[o.intervalPatterns]),o.intervalPatterns.push(o.oLocaleData.getCustomDateTimePattern(o.oFormatOptions.format,o.oFormatOptions.calendarType))):o.intervalPatterns=[o.oLocaleData.getCombinedIntervalPattern(o.oFormatOptions.pattern,o.oFormatOptions.calendarType),o.oFormatOptions.pattern];var r=function(e){var t=e.oLocaleData.getIntervalPattern("",e.oFormatOptions.calendarType);return(t=t.replace(/[^\{\}01 ]/,"-")).replace(/\{(0|1)\}/g,e.oFormatOptions.pattern)}(o);o.intervalPatterns.push(r)}if(!o.oFormatOptions.fallback){i.oFallbackFormats||(i.oFallbackFormats={});var a,n,s=t.toString(),l=o.oFormatOptions.calendarType,u=s+"-"+l;o.oFormatOptions.pattern&&i.bPatternFallbackWithoutDelimiter&&(u=u+"-"+o.oFormatOptions.pattern),o.oFormatOptions.interval&&(u+="-interval");var d=i.oFallbackFormats[u]?Object.assign({},i.oFallbackFormats[u]):void 0;d||(n=i.aFallbackFormatOptions,i.bShortFallbackFormatOptions&&(a=i.getPattern(o.oLocaleData,"short"),n=n.concat(Ju._createFallbackOptionsWithoutDelimiter(a))),o.oFormatOptions.pattern&&i.bPatternFallbackWithoutDelimiter&&(n=Ju._createFallbackOptionsWithoutDelimiter(o.oFormatOptions.pattern).concat(n)),d=Ju._createFallbackFormat(n,l,t,i,o.oFormatOptions.interval)),o.aFallbackFormats=d}return o.oRequiredParts=i.oRequiredParts,o.aRelativeScales=i.aRelativeScales,o.aRelativeParseScales=i.aRelativeParseScales,o.aIntervalCompareFields=i.aIntervalCompareFields,o.init(),o},Ju.prototype.init=function(){var e=this.oFormatOptions.calendarType;this.aMonthsAbbrev=this.oLocaleData.getMonths("abbreviated",e),this.aMonthsWide=this.oLocaleData.getMonths("wide",e),this.aMonthsNarrow=this.oLocaleData.getMonths("narrow",e),this.aMonthsAbbrevSt=this.oLocaleData.getMonthsStandAlone("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.aDayPeriods=this.oLocaleData.getDayPeriods("abbreviated",e),this.aFormatArray=this.parseCldrDatePattern(this.oFormatOptions.pattern),this.sAllowedCharacters=this.getAllowedCharacters(this.aFormatArray)},Ju._createFallbackFormat=function(e,t,i,o,r){return e.map((function(e){var a=Object.assign({},e);r&&(a.interval=!0),a.calendarType=t,a.fallback=!0;var n=Ju.createInstance(a,i,o);return n.bIsFallback=!0,n}))},Ju._createFallbackOptionsWithoutDelimiter=function(e){var t=/d+/g,i="dd",o=/M+/g,r="MM",a={regex:/[yU]+/g,replace:["yyyy","yy"]};return e=(e=(e=e.replace(/[^dMyGU]/g,"")).replace(t,i)).replace(o,r),a.replace.map((function(t){return{pattern:e.replace(a.regex,t),strictParsing:!0}}))};var Qu={isNumber:function(e){return e>=48&&e<=57},findNumbers:function(e,t){for(var i=0;i<t&&this.isNumber(e.charCodeAt(i));)i++;return"string"!=typeof e&&(e=e.toString()),e.substr(0,i)},findEntry:function(e,t){for(var i=-1,o=0,r=0;r<t.length;r++)t[r]&&t[r].length>o&&0===e.indexOf(t[r])&&(i=r,o=t[r].length);return{index:i,value:-1===i?null:t[i]}},parseTZ:function(e,t){var i,o=0,r="+"==e.charAt(0)?-1:1;o++,i=this.findNumbers(e.substr(o),2);var a=parseInt(i);o+=2,t&&o++;var n=0;return(i=this.findNumbers(e.substr(o),2))&&(o+=2,n=parseInt(i)),{length:o,tzDiff:(n+60*a)*r}},checkValid:function(e,t,i){if(e in i.oRequiredParts&&t)return!1}};Ju.prototype.oSymbols={"":{name:"text",format:function(e,t,i,o){return e.value},parse:function(e,t,i,o){for(var r,a=!0,n=0,s=0;s<t.value.length;s++){if(" "===(r=t.value.charAt(s)))for(;" "===e.charAt(n);)n++;else"-~‐‑‒–—﹘﹣-~".includes(r)?("-~‐‑‒–—﹘﹣-~".includes(e.charAt(n))||(a=!1),n++):(e.charAt(n)!==r&&(a=!1),n++);if(!a)break}if(a)return{length:n};var l=!1;return o.index<o.formatArray.length-1&&(l=o.formatArray[o.index+1].type in i.oRequiredParts),{valid:Qu.checkValid(t.type,l,i)}}},G:{name:"era",format:function(e,t,i,o){var r=i?t.getUTCEra():t.getEra();return e.digits<=3?o.aErasAbbrev[r]:4===e.digits?o.aErasWide[r]:o.aErasNarrow[r]},parse:function(e,t,i,o){for(var r=[i.aErasWide,i.aErasAbbrev,i.aErasNarrow],a=0;a<r.length;a++){var n=r[a],s=Qu.findEntry(e,n);if(-1!==s.index)return{era:s.index,length:s.value.length}}return{era:i.aErasWide.length-1,valid:Qu.checkValid(t.type,!0,i)}}},y:{name:"year",format:function(e,t,i,o){var r=i?t.getUTCFullYear():t.getFullYear(),a=String(r),n=o.oFormatOptions.calendarType;return 2==e.digits&&a.length>2&&(a=a.substr(a.length-2)),n!=eu.Japanese&&1==e.digits&&r<100&&(a=a.padStart(4,"0")),a.padStart(e.digits,"0")},parse:function(e,t,i,o){var r,a=i.oFormatOptions.calendarType;r=1==t.digits?Qu.findNumbers(e,4):2==t.digits?Qu.findNumbers(e,2):Qu.findNumbers(e,t.digits);var n=parseInt(r);if(a!=eu.Japanese&&r.length<=2){var s=Fu.getInstance(new Date,a).getFullYear(),l=Math.floor(s/100),u=100*l+n-s;n+=u<-70?100*(l+1):u<30?100*l:100*(l-1)}return{length:r.length,valid:Qu.checkValid(t.type,""===r,i),year:n}}},Y:{name:"weekYear",format:function(e,t,i,o){var r=(i?t.getUTCWeek():t.getWeek()).year,a=String(r),n=o.oFormatOptions.calendarType;return 2==e.digits&&a.length>2&&(a=a.substr(a.length-2)),n!=eu.Japanese&&1==e.digits&&r<100&&(a=a.padStart(4,"0")),a.padStart(e.digits,"0")},parse:function(e,t,i,o){var r,a=i.oFormatOptions.calendarType;r=1==t.digits?Qu.findNumbers(e,4):2==t.digits?Qu.findNumbers(e,2):Qu.findNumbers(e,t.digits);var n,s=parseInt(r);if(a!=eu.Japanese&&r.length<=2){var l=Fu.getInstance(new Date,a).getFullYear(),u=Math.floor(l/100),d=100*u+n-l;n+=d<-70?100*(u+1):d<30?100*u:100*(u-1)}return{length:r.length,valid:Qu.checkValid(t.type,""===r,i),year:s,weekYear:n}}},M:{name:"month",format:function(e,t,i,o){var r=i?t.getUTCMonth():t.getMonth();return 3==e.digits?o.aMonthsAbbrev[r]:4==e.digits?o.aMonthsWide[r]:e.digits>4?o.aMonthsNarrow[r]:String(r+1).padStart(e.digits,"0")},parse:function(e,t,i,o){var r,a,n,s=[i.aMonthsWide,i.aMonthsWideSt,i.aMonthsAbbrev,i.aMonthsAbbrevSt,i.aMonthsNarrow,i.aMonthsNarrowSt];if(t.digits<3)n=Qu.findNumbers(e,Math.max(t.digits,2)),r=Qu.checkValid(t.type,""===n,i),a=parseInt(n)-1,o.strict&&(a>11||a<0)&&(r=!1);else{for(var l=0;l<s.length;l++){var u=s[l],d=Qu.findEntry(e,u);if(-1!==d.index)return{month:d.index,length:d.value.length}}r=Qu.checkValid(t.type,!0,i)}return{month:a,length:n?n.length:0,valid:r}}},L:{name:"monthStandalone",format:function(e,t,i,o){var r=i?t.getUTCMonth():t.getMonth();return 3==e.digits?o.aMonthsAbbrevSt[r]:4==e.digits?o.aMonthsWideSt[r]:e.digits>4?o.aMonthsNarrowSt[r]:String(r+1).padStart(e.digits,"0")},parse:function(e,t,i,o){var r,a,n,s=[i.aMonthsWide,i.aMonthsWideSt,i.aMonthsAbbrev,i.aMonthsAbbrevSt,i.aMonthsNarrow,i.aMonthsNarrowSt];if(t.digits<3)n=Qu.findNumbers(e,Math.max(t.digits,2)),r=Qu.checkValid(t.type,""===n,i),a=parseInt(n)-1,o.strict&&(a>11||a<0)&&(r=!1);else{for(var l=0;l<s.length;l++){var u=s[l],d=Qu.findEntry(e,u);if(-1!==d.index)return{month:d.index,length:d.value.length}}r=Qu.checkValid(t.type,!0,i)}return{month:a,length:n?n.length:0,valid:r}}},w:{name:"weekInYear",format:function(e,t,i,o){var r=(i?t.getUTCWeek():t.getWeek()).week,a=String(r+1);return a=e.digits<3?a.padStart(e.digits,"0"):o.oLocaleData.getCalendarWeek(3===e.digits?"narrow":"wide",a.padStart(2,"0"))},parse:function(e,t,i,o){var r,a,n,s=0;if(t.digits<3)s=(a=Qu.findNumbers(e,2)).length,n=parseInt(a)-1,r=Qu.checkValid(t.type,!a,i);else{a=(a=i.oLocaleData.getCalendarWeek(3===t.digits?"narrow":"wide")).replace("{0}","[0-9]+");var l=new RegExp(a).exec(e);l?(s=l[0].length,n=parseInt(l[0])-1):r=Qu.checkValid(t.type,!0,i)}return{length:s,valid:r,week:n}}},W:{name:"weekInMonth",format:function(e,t,i,o){return""},parse:function(){return{}}},D:{name:"dayInYear",format:function(e,t,i,o){},parse:function(){return{}}},d:{name:"day",format:function(e,t,i,o){var r=i?t.getUTCDate():t.getDate();return String(r).padStart(e.digits,"0")},parse:function(e,t,i,o){var r=Qu.findNumbers(e,Math.max(t.digits,2)),a=Qu.checkValid(t.type,""===r,i),n=parseInt(r);return o.strict&&(n>31||n<1)&&(a=!1),{day:n,length:r.length,valid:a}}},Q:{name:"quarter",format:function(e,t,i,o){var r=i?t.getUTCQuarter():t.getQuarter();return 3==e.digits?o.aQuartersAbbrev[r]:4==e.digits?o.aQuartersWide[r]:e.digits>4?o.aQuartersNarrow[r]:String(r+1).padStart(e.digits,"0")},parse:function(e,t,i,o){var r,a,n,s=[i.aQuartersWide,i.aQuartersWideSt,i.aQuartersAbbrev,i.aQuartersAbbrevSt,i.aQuartersNarrow,i.aQuartersNarrowSt];if(t.digits<3)n=Qu.findNumbers(e,Math.max(t.digits,2)),r=Qu.checkValid(t.type,""===n,i),a=parseInt(n)-1,o.strict&&a>3&&(r=!1);else{for(var l=0;l<s.length;l++){var u=s[l],d=Qu.findEntry(e,u);if(-1!==d.index)return{quarter:d.index,length:d.value.length}}r=Qu.checkValid(t.type,!0,i)}return{length:n?n.length:0,quarter:a,valid:r}}},q:{name:"quarterStandalone",format:function(e,t,i,o){var r=i?t.getUTCQuarter():t.getQuarter();return 3==e.digits?o.aQuartersAbbrevSt[r]:4==e.digits?o.aQuartersWideSt[r]:e.digits>4?o.aQuartersNarrowSt[r]:String(r+1).padStart(e.digits,"0")},parse:function(e,t,i,o){var r,a,n,s=[i.aQuartersWide,i.aQuartersWideSt,i.aQuartersAbbrev,i.aQuartersAbbrevSt,i.aQuartersNarrow,i.aQuartersNarrowSt];if(t.digits<3)n=Qu.findNumbers(e,Math.max(t.digits,2)),r=Qu.checkValid(t.type,""===n,i),a=parseInt(n)-1,o.strict&&a>3&&(r=!1);else{for(var l=0;l<s.length;l++){var u=s[l],d=Qu.findEntry(e,u);if(-1!==d.index)return{quarter:d.index,length:d.value.length}}r=Qu.checkValid(t.type,!0,i)}return{length:n?n.length:0,quarter:a,valid:r}}},F:{name:"dayOfWeekInMonth",format:function(e,t,i,o){return""},parse:function(){return{}}},E:{name:"dayNameInWeek",format:function(e,t,i,o){var r=i?t.getUTCDay():t.getDay();return e.digits<4?o.aDaysAbbrev[r]:4==e.digits?o.aDaysWide[r]:5==e.digits?o.aDaysNarrow[r]:o.aDaysShort[r]},parse:function(e,t,i,o){for(var r=[i.aDaysWide,i.aDaysWideSt,i.aDaysAbbrev,i.aDaysAbbrevSt,i.aDaysShort,i.aDaysShortSt,i.aDaysNarrow,i.aDaysNarrowSt],a=0;a<r.length;a++){var n=r[a],s=Qu.findEntry(e,n);if(-1!==s.index)return{dayOfWeek:s.index,length:s.value.length}}}},c:{name:"dayNameInWeekStandalone",format:function(e,t,i,o){var r=i?t.getUTCDay():t.getDay();return e.digits<4?o.aDaysAbbrevSt[r]:4==e.digits?o.aDaysWideSt[r]:5==e.digits?o.aDaysNarrowSt[r]:o.aDaysShortSt[r]},parse:function(e,t,i,o){for(var r=[i.aDaysWide,i.aDaysWideSt,i.aDaysAbbrev,i.aDaysAbbrevSt,i.aDaysShort,i.aDaysShortSt,i.aDaysNarrow,i.aDaysNarrowSt],a=0;a<r.length;a++){var n=r[a],s=Qu.findEntry(e,n);if(-1!==s.index)return{day:s.index,length:s.value.length}}}},u:{name:"dayNumberOfWeek",format:function(e,t,i,o){var r=i?t.getUTCDay():t.getDay();return o._adaptDayOfWeek(r)},parse:function(e,t,i,o){var r=Qu.findNumbers(e,t.digits);return{dayNumberOfWeek:parseInt(r),length:r.length}}},a:{name:"amPmMarker",format:function(e,t,i,o){var r=i?t.getUTCDayPeriod():t.getDayPeriod();return o.aDayPeriods[r]},parse:function(e,t,i,o){var r,a,n=i.aDayPeriods[0],s=i.aDayPeriods[1],l=e.match(/[aApP](?:\.)?[\x20\xA0]?[mM](?:\.)?/),u=l&&0===l.index;return u&&(e=l[0],n=n.replace(/[\x20\xA0]/g,""),s=s.replace(/[\x20\xA0]/g,""),e=e.replace(/[\x20\xA0]/g,""),n=n.replace(/\./g,"").toLowerCase(),s=s.replace(/\./g,"").toLowerCase(),e=e.replace(/\./g,"").toLowerCase()),0===e.indexOf(n)?(r=!1,a=u?l[0].length:n.length):0===e.indexOf(s)&&(r=!0,a=u?l[0].length:s.length),{pm:r,length:a}}},H:{name:"hour0_23",format:function(e,t,i,o){var r=i?t.getUTCHours():t.getHours();return String(r).padStart(e.digits,"0")},parse:function(e,t,i,o){var r,a=Qu.findNumbers(e,Math.max(t.digits,2)),n=parseInt(a);return r=Qu.checkValid(t.type,""===a,i),o.strict&&n>23&&(r=!1),{hour:n,length:a.length,valid:r}}},k:{name:"hour1_24",format:function(e,t,i,o){var r=i?t.getUTCHours():t.getHours();return(0===r?"24":String(r)).padStart(e.digits,"0")},parse:function(e,t,i,o){var r,a=Qu.findNumbers(e,Math.max(t.digits,2)),n=parseInt(a);return r=Qu.checkValid(t.type,""===a,i),24==n&&(n=0),o.strict&&n>23&&(r=!1),{hour:n,length:a.length,valid:r}}},K:{name:"hour0_11",format:function(e,t,i,o){var r=i?t.getUTCHours():t.getHours();return String(r>11?r-12:r).padStart(e.digits,"0")},parse:function(e,t,i,o){var r,a=Qu.findNumbers(e,Math.max(t.digits,2)),n=parseInt(a);return r=Qu.checkValid(t.type,""===a,i),o.strict&&n>11&&(r=!1),{hour:n,length:a.length,valid:r}}},h:{name:"hour1_12",format:function(e,t,i,o){var r=i?t.getUTCHours():t.getHours();return(r>12?String(r-12):0==r?"12":String(r)).padStart(e.digits,"0")},parse:function(e,t,i,o){var r=o.dateValue.pm,a=Qu.findNumbers(e,Math.max(t.digits,2)),n=parseInt(a),s=Qu.checkValid(t.type,""===a,i);return 12==n&&(n=0,r=void 0===r||r),o.strict&&n>11&&(s=!1),{hour:n,length:a.length,pm:r,valid:s}}},m:{name:"minute",format:function(e,t,i,o){var r=i?t.getUTCMinutes():t.getMinutes();return String(r).padStart(e.digits,"0")},parse:function(e,t,i,o){var r,a=Qu.findNumbers(e,Math.max(t.digits,2)),n=parseInt(a);return r=Qu.checkValid(t.type,""===a,i),o.strict&&n>59&&(r=!1),{length:a.length,minute:n,valid:r}}},s:{name:"second",format:function(e,t,i,o){var r=i?t.getUTCSeconds():t.getSeconds();return String(r).padStart(e.digits,"0")},parse:function(e,t,i,o){var r,a=Qu.findNumbers(e,Math.max(t.digits,2)),n=parseInt(a);return r=Qu.checkValid(t.type,""===a,i),o.strict&&n>59&&(r=!1),{length:a.length,second:n,valid:r}}},S:{name:"fractionalsecond",format:function(e,t,i,o){var r=i?t.getUTCMilliseconds():t.getMilliseconds(),a=String(r).padStart(3,"0");return a=(a=a.substr(0,e.digits)).padEnd(e.digits,"0")},parse:function(e,t,i,o){var r=Qu.findNumbers(e,t.digits),a=r.length;return r=(r=r.substr(0,3)).padEnd(3,"0"),{length:a,millisecond:parseInt(r)}}},z:{name:"timezoneGeneral",format:function(e,t,i,o){if(e.digits>3&&t.getTimezoneLong&&t.getTimezoneLong())return t.getTimezoneLong();if(t.getTimezoneShort&&t.getTimezoneShort())return t.getTimezoneShort();var r="GMT",a=Math.abs(t.getTimezoneOffset()),n=t.getTimezoneOffset()>0,s=Math.floor(a/60),l=a%60;return i||0==a?r+="Z":(r+=n?"-":"+",r+=String(s).padStart(2,"0"),r+=":",r+=String(l).padStart(2,"0")),r},parse:function(e,t,i,o){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=Qu.parseTZ(e.substr(a),!0);a+=s.length,r=s.tzDiff}return{length:a,tzDiff:r}}},Z:{name:"timezoneRFC822",format:function(e,t,i,o){var r=Math.abs(t.getTimezoneOffset()),a=t.getTimezoneOffset()>0,n=Math.floor(r/60),s=r%60,l="";return i||(l+=a?"-":"+",l+=String(n).padStart(2,"0"),l+=String(s).padStart(2,"0")),l},parse:function(e,t,i,o){return Qu.parseTZ(e,!1)}},X:{name:"timezoneISO8601",format:function(e,t,i,o){var r=Math.abs(t.getTimezoneOffset()),a=t.getTimezoneOffset()>0,n=Math.floor(r/60),s=r%60,l="";return i||0==r?l+="Z":(l+=a?"-":"+",l+=String(n).padStart(2,"0"),(e.digits>1||s>0)&&(3!==e.digits&&5!==e.digits||(l+=":"),l+=String(s).padStart(2,"0"))),l},parse:function(e,t,i,o){return"Z"===e.charAt(0)?{length:1,tzDiff:0}:Qu.parseTZ(e,3===t.digits||5===t.digits)}}},Ju.prototype._format=function(e,t){if(this.oFormatOptions.relative){var i=this.formatRelative(e,t,this.oFormatOptions.relativeRange);if(i)return i}for(var o,r,a,n=this.oFormatOptions.calendarType,s=Fu.getInstance(e,n),l=[],u=0;u<this.aFormatArray.length;u++)a=(o=this.aFormatArray[u]).symbol||"",l.push(this.oSymbols[a].format(o,s,t,this));return r=l.join(""),xl.getConfiguration().getOriginInfo()&&((r=new String(r)).originInfo={source:"Common Locale Data Repository",locale:this.oLocale.toString(),style:this.oFormatOptions.style,pattern:this.oFormatOptions.pattern}),r},Ju.prototype.format=function(e,t){var i,o=this.oFormatOptions.calendarType;if(void 0===t&&(t=this.oFormatOptions.UTC),Array.isArray(e)){if(!this.oFormatOptions.interval)return $l.error("Non-interval DateFormat can't format more than one date instance."),"";if(2!==e.length)return $l.error("Interval DateFormat can only format with 2 date instances but "+e.length+" is given."),"";if(this.oFormatOptions.singleIntervalValue){if(null===e[0])return $l.error("First date instance which is passed to the interval DateFormat shouldn't be null."),"";null===e[1]&&(i=this._format(e[0],t))}if(void 0===i){if(!e.every((function(e){return e&&!isNaN(e.getTime())})))return $l.error("At least one date instance which is passed to the interval DateFormat isn't valid."),"";i=this._formatInterval(e,t)}}else{if(!e||isNaN(e.getTime()))return $l.error("The given date instance isn't valid."),"";if(this.oFormatOptions.interval)return $l.error("Interval DateFormat expects an array with two dates for the first argument but only one date is given."),"";i=this._format(e,t)}return o==eu.Japanese&&"ja"===this.oLocale.getLanguage()&&(i=i.replace(/(^|[^\d])1年/g,"$1元年")),i},Ju.prototype._formatInterval=function(e,t){var i,o,r,a,n,s=this.oFormatOptions.calendarType,l=Fu.getInstance(e[0],s),u=Fu.getInstance(e[1],s),d=[],c=this._getGreatestDiffField([l,u],t);if(!c)return this._format(e[0],t);a=this.oFormatOptions.format?this.oLocaleData.getCustomIntervalPattern(this.oFormatOptions.format,c,s):this.oLocaleData.getCombinedIntervalPattern(this.oFormatOptions.pattern,s),n=this.parseCldrDatePattern(a),i=l;for(var _=0;_<n.length;_++)r=(o=n[_]).symbol||"",o.repeat&&(i=u),d.push(this.oSymbols[r].format(o,i,t,this));return d.join("")};var ed={Era:"Era",FullYear:"Year",Quarter:"Quarter",Month:"Month",Week:"Week",Date:"Day",DayPeriod:"DayPeriod",Hours:"Hour",Minutes:"Minute",Seconds:"Second"};Ju.prototype._getGreatestDiffField=function(e,t){var i=!1,o={};return this.aIntervalCompareFields.forEach((function(r){var a="get"+(t?"UTC":"")+r,n=ed[r],s=e[0][a].apply(e[0]),l=e[1][a].apply(e[1]);Xu(s,l)||(i=!0,o[n]=!0)})),i?o:null},Ju.prototype._parse=function(e,t,i,o){for(var r,a,n,s=0,l={valid:!0},u={formatArray:t,dateValue:l,strict:o},d=0;d<t.length&&(a=e.substr(s),r=t[d],u.index=d,n=this.oSymbols[r.symbol||""].parse(a,r,this,u)||{},l=Ql(l,n),!1!==n.valid);d++)s+=n.length||0;return l.index=s,l.pm&&(l.hour+=12),void 0===l.dayNumberOfWeek&&void 0!==l.dayOfWeek&&(l.dayNumberOfWeek=this._adaptDayOfWeek(l.dayOfWeek)),void 0!==l.quarter&&void 0===l.month&&void 0===l.day&&(l.month=3*l.quarter,l.day=1),l},Ju.prototype._parseInterval=function(e,t,i,o){var r,a,n;return this.intervalPatterns.some(function(t){var s=this.parseCldrDatePattern(t);a=void 0;for(var l=0;l<s.length;l++)if(s[l].repeat){a=l;break}if(void 0===a){if((0===(n=this._parse(e,s,i,o)).index||n.index<e.length)&&(n.valid=!1),!1===n.valid)return;return r=[n,n],!0}if(r=[],!1!==(n=this._parse(e,s.slice(0,a),i,o)).valid){r.push(n);var u=n.index;if((0===(n=this._parse(e.substring(u),s.slice(a),i,o)).index||n.index+u<e.length)&&(n.valid=!1),!1!==n.valid)return r.push(n),!0}}.bind(this)),r};var td=function(e,t,i,o){var r,a="number"==typeof e.year?e.year:1970;return e.valid&&(i||void 0!==e.tzDiff?((r=Fu.getInstance(new Date(0),t)).setUTCEra(e.era||Fu.getCurrentEra(t)),r.setUTCFullYear(a),r.setUTCMonth(e.month||0),r.setUTCDate(e.day||1),r.setUTCHours(e.hour||0),r.setUTCMinutes(e.minute||0),r.setUTCSeconds(e.second||0),r.setUTCMilliseconds(e.millisecond||0),o&&(e.day||1)!==r.getUTCDate()?(e.valid=!1,r=void 0):(e.tzDiff&&r.setUTCMinutes((e.minute||0)+e.tzDiff),void 0===e.week||void 0!==e.month&&void 0!==e.day||(r.setUTCWeek({year:e.weekYear||e.year,week:e.week}),void 0!==e.dayNumberOfWeek&&r.setUTCDate(r.getUTCDate()+e.dayNumberOfWeek-1)))):((r=Fu.getInstance(new Date(1970,0,1,0,0,0),t)).setEra(e.era||Fu.getCurrentEra(t)),r.setFullYear(a),r.setMonth(e.month||0),r.setDate(e.day||1),r.setHours(e.hour||0),r.setMinutes(e.minute||0),r.setSeconds(e.second||0),r.setMilliseconds(e.millisecond||0),o&&(e.day||1)!==r.getDate()?(e.valid=!1,r=void 0):void 0===e.week||void 0!==e.month&&void 0!==e.day||(r.setWeek({year:e.weekYear||e.year,week:e.week}),void 0!==e.dayNumberOfWeek&&r.setDate(r.getDate()+e.dayNumberOfWeek-1))),e.valid)?r=r.getJSDate():null};function id(e,t){if(e===t)return e;var i={};return Object.keys(e).forEach((function(t){i[t]=e[t]})),Object.keys(t).forEach((function(e){i.hasOwnProperty(e)||(i[e]=t[e])})),i}function od(e,t){for(var i=["FullYear","Month","Date","Hours","Minutes","Seconds","Milliseconds"],o=new Date(e.getTime()),r=t;r<i.length;r++)o["set"+i[t]].apply(o,[0]);return o}Ju.prototype.parse=function(e,t,i){var o;e=null==e?"":String(e).trim();var r,a,n=this.oFormatOptions.calendarType;if(void 0===t&&(t=this.oFormatOptions.UTC),void 0===i&&(i=this.oFormatOptions.strictParsing),n==eu.Japanese&&"ja"===this.oLocale.getLanguage()&&(e=e.replace(/元年/g,"1年")),this.oFormatOptions.interval){var s,l,u=this._parseInterval(e,n,t,i);if(u&&2==u.length){var d=id(u[0],u[1]),c=id(u[1],u[0]);if(s=td(d,n,t,i),l=td(c,n,t,i),s&&l){if(this.oFormatOptions.singleIntervalValue&&s.getTime()===l.getTime())return[s,null];var _=(r=l,!(s.getTime()>r.getTime()));return i&&!_?($l.error("StrictParsing: Invalid date range. The given end date is before the start date."),[null,null]):[s,l]}}}else{var h=this.parseRelative(e,t);if(h)return h;if((0===(o=this._parse(e,this.aFormatArray,t,i)).index||o.index<e.length)&&(o.valid=!1),h=td(o,n,t,i))return h}return this.bIsFallback?this.oFormatOptions.interval?[null,null]:null:(this.aFallbackFormats.every((function(o){return a=o.parse(e,t,i),Array.isArray(a)?!(a[0]&&a[1]):!a})),a)},Ju.prototype.parseCldrDatePattern=function(e){if(Ku[e])return Ku[e];var t,i=[],o=!1,r=null,a="",n="",s={},l=!1;for(t=0;t<e.length;t++){var u,d,c,_=e.charAt(t);if(o){if("'"==_)if(d=e.charAt(t-1),c=e.charAt(t-2),u=e.charAt(t+1),"'"==d&&"'"!=c)o=!1;else{if("'"!=u){o=!1;continue}t+=1}"text"==a?r.value+=_:(r={type:"text",value:_},i.push(r),a="text")}else"'"==_?o=!0:this.oSymbols[_]?a==(n=this.oSymbols[_].name)?r.digits++:(r={type:n,symbol:_,digits:1},i.push(r),a=n,l||(s[n]?(r.repeat=!0,l=!0):s[n]=!0)):"text"==a?r.value+=_:(r={type:"text",value:_},i.push(r),a="text")}return Ku[e]=i,i},Ju.prototype.parseRelative=function(e,t){var i,o,r;if(!e)return null;i=this.oLocaleData.getRelativePatterns(this.aRelativeParseScales,this.oFormatOptions.relativeStyle);for(var a=0;a<i.length;a++)if(o=i[a],r=new RegExp("^\\s*"+o.pattern.replace(/\{0\}/,"(\\d+)")+"\\s*$","i").exec(e))return void 0!==o.value?n(o.value,o.scale):n(parseInt(r[1])*o.sign,o.scale);function n(e,i){var o,r,a=new Date;switch(o=t?a.getTime():Date.UTC(a.getFullYear(),a.getMonth(),a.getDate(),a.getHours(),a.getMinutes(),a.getSeconds(),a.getMilliseconds()),r=new Date(o),i){case"second":r.setUTCSeconds(r.getUTCSeconds()+e);break;case"minute":r.setUTCMinutes(r.getUTCMinutes()+e);break;case"hour":r.setUTCHours(r.getUTCHours()+e);break;case"day":r.setUTCDate(r.getUTCDate()+e);break;case"week":r.setUTCDate(r.getUTCDate()+7*e);break;case"month":r.setUTCMonth(r.getUTCMonth()+e);break;case"quarter":r.setUTCMonth(r.getUTCMonth()+3*e);break;case"year":r.setUTCFullYear(r.getUTCFullYear()+e)}return t?r:new Date(r.getUTCFullYear(),r.getUTCMonth(),r.getUTCDate(),r.getUTCHours(),r.getUTCMinutes(),r.getUTCSeconds(),r.getUTCMilliseconds())}},Ju.prototype.formatRelative=function(e,t,i){var o,r,a,n=new Date,s=this.oFormatOptions.relativeScale||"day";return a=(e.getTime()-n.getTime())/1e3,"auto"==this.oFormatOptions.relativeScale&&(s=this._getScale(a,this.aRelativeScales)),i||(i=this._mRanges[s]),"year"!=s&&"month"!=s&&"day"!=s||(n=new Date(Date.UTC(n.getFullYear(),n.getMonth(),n.getDate())),o=new Date(0),t?o.setUTCFullYear(e.getUTCFullYear(),e.getUTCMonth(),e.getUTCDate()):o.setUTCFullYear(e.getFullYear(),e.getMonth(),e.getDate()),e=o),r=this._getDifference(s,[n,e]),"auto"!=this.oFormatOptions.relativeScale&&(r<i[0]||r>i[1])?null:function(e,t){return Rl("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(Zu,(function(e,i,o,r,a){if(i)return"'";if(o)return o.replace(/''/g,"'");if(r)return String(t[parseInt(r)]);throw new Error("formatMessage: pattern syntax error at pos. "+a)}))}(this.oLocaleData.getRelativePattern(s,r,a>0,this.oFormatOptions.relativeStyle),[Math.abs(r)])},Ju.prototype._mRanges={second:[-60,60],minute:[-60,60],hour:[-24,24],day:[-6,6],week:[-4,4],month:[-12,12],year:[-10,10]},Ju.prototype._mScales={second:1,minute:60,hour:3600,day:86400,week:604800,month:2592e3,quarter:7776e3,year:31536e3},Ju.prototype._getScale=function(e,t){var i,o;e=Math.abs(e);for(var r=0;r<t.length;r++)if(o=t[r],e>=this._mScales[o]){i=o;break}return i||(i=t[t.length-1]),i};var rd={year:function(e,t){return t.getFullYear()-e.getFullYear()},month:function(e,t){return t.getMonth()-e.getMonth()+12*this.year(e,t)},week:function(e,t,i){var o=i._adaptDayOfWeek(e.getDay()),r=i._adaptDayOfWeek(t.getDay());return e=od(e,3),((t=od(t,3)).getTime()-e.getTime()-(r-o)*i._mScales.day*1e3)/(1e3*i._mScales.week)},day:function(e,t,i){return e=od(e,3),((t=od(t,3)).getTime()-e.getTime())/(1e3*i._mScales.day)},hour:function(e,t,i){return e=od(e,4),((t=od(t,4)).getTime()-e.getTime())/(1e3*i._mScales.hour)},minute:function(e,t,i){return e=od(e,5),((t=od(t,5)).getTime()-e.getTime())/(1e3*i._mScales.minute)},second:function(e,t,i){return e=od(e,6),((t=od(t,6)).getTime()-e.getTime())/(1e3*i._mScales.second)}};Ju.prototype._adaptDayOfWeek=function(e){var t=e-(wu.getInstance(xl.getConfiguration().getFormatSettings().getFormatLocale()).getFirstDayOfWeek()-1);return t<=0&&(t+=7),t},Ju.prototype._getDifference=function(e,t){var i=t[0],o=t[1];return Math.round(rd[e](i,o,this))},Ju.prototype.getAllowedCharacters=function(e){if(this.oFormatOptions.relative)return"";for(var t,i="",o=!1,r=!1,a=0;a<e.length;a++)switch((t=e[a]).type){case"text":i.indexOf(t.value)<0&&(i+=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":o||(i+="0123456789",o=!0);break;case"month":case"monthStandalone":t.digits<3?o||(i+="0123456789",o=!0):r=!0;break;default:r=!0}return r&&(i=""),i};const ad=new Map,nd=e=>(ad.has(e)||ad.set(e,wu.getInstance(e)),ad.get(e)),sd=new Map,ld=e=>{const t=`max ${e}`;if(!sd.has(t)){const i=new zu(1,0,1,e);i.setYear(9999),i.setMonth(11);const o=new zu(i,e);o.setDate(1),o.setMonth(o.getMonth()+1,0),i.setDate(o.getDate()),sd.set(t,i)}return sd.get(t)},ud={languageAware:!0,properties:{primaryCalendarType:{type:fl},secondaryCalendarType:{type:fl},minDate:{type:String},maxDate:{type:String},formatPattern:{type:String}}};class dd extends Ft{static get metadata(){return ud}static get render(){return Ni}constructor(){super()}get _primaryCalendarType(){const e=nd(No());return this.primaryCalendarType||bl()||e.getPreferredCalendarType()}get _minDate(){return this.minDate&&this.getFormat().parse(this.minDate)?this._getCalendarDateFromString(this.minDate):(e=>{const t=`min ${e}`;if(!sd.has(t)){const i=new zu(1,0,1,e);i.setYear(1),i.setMonth(0),i.setDate(1),sd.set(t,i)}return sd.get(t)})(this._primaryCalendarType)}get _maxDate(){return this.maxDate&&this.getFormat().parse(this.maxDate)?this._getCalendarDateFromString(this.maxDate):ld(this._primaryCalendarType)}get _formatPattern(){return this.formatPattern||"medium"}get _isPattern(){return"medium"!==this._formatPattern&&"short"!==this._formatPattern&&"long"!==this._formatPattern}_getCalendarDateFromString(e){const t=this.getFormat().parse(e);if(t)return zu.fromLocalJSDate(t,this._primaryCalendarType)}_getTimeStampFromString(e){const t=this._getCalendarDateFromString(e);if(t)return t.toUTCJSDate().valueOf()}_getStringFromTimestamp(e){const t=new Date(e);return this.getFormat().format(t,!0)}getFormat(){let e;return e=this._isPattern?Ju.getInstance({pattern:this._formatPattern,calendarType:this._primaryCalendarType}):Ju.getInstance({style:this._formatPattern,calendarType:this._primaryCalendarType}),e}static async onDefine(){[dd.i18nBundle]=await Promise.all([er("@ui5/webcomponents"),vu(No().getLanguage(),No().getRegion(),No().getScript())])}}const cd=(e,t,i)=>vi`${e._isPhone?_d(e,t,i):vd(e)}`,_d=(e,t,i)=>vi`<${zi("ui5-dialog",t,i)} ?with-padding=${e.withPadding} stretch _disable-initial-focus @ui5-before-open="${Mi(e._propagateDialogEvent)}" @ui5-after-open="${Mi(e._afterDialogOpen)}" @ui5-before-close="${Mi(e._propagateDialogEvent)}" @ui5-after-close="${Mi(e._afterDialogClose)}">${e._hideHeader?void 0:hd(e,t,i)}<slot></slot><slot slot="footer" name="footer"></slot></${zi("ui5-dialog",t,i)}>`,hd=(e,t,i)=>vi`${e.header.length?pd():gd(e,t,i)}`,pd=(e,t,i)=>vi`<slot slot="header" name="header"></slot>`,gd=(e,t,i)=>vi`<header class="${Fi(e.classes.header)}">${e.headerText?md(e,t,i):void 0}${e._hideCloseButton?void 0:fd(e,t,i)}</header>`,md=(e,t,i)=>vi`<${zi("ui5-title",t,i)} level="H2" class="ui5-popup-header-text ui5-responsive-popover-header-text">${Mi(e.headerText)}</${zi("ui5-title",t,i)}>`,fd=(e,t,i)=>vi`<${zi("ui5-button",t,i)} icon="decline" design="Transparent" aria-label="${Mi(e._closeDialogAriaLabel)}" @click="${e.close}"></${zi("ui5-button",t,i)}>`,vd=(e,t,i)=>vi`<section style="${Ei(e.styles.root)}" class="${Fi(e.classes.root)}" role="dialog" aria-modal="${Mi(e._ariaModal)}" aria-label="${Mi(e._ariaLabel)}" aria-labelledby="${Mi(e._ariaLabelledBy)}" dir="${Mi(e.effectiveDir)}" @keydown=${e._onkeydown} @focusout=${e._onfocusout} @mouseup=${e._onmouseup} @mousedown=${e._onmousedown}><span class="first-fe" data-ui5-focus-trap tabindex="0" @focusin=${e.forwardToLast}></span><span class="ui5-popover-arrow" style="${Ei(e.styles.arrow)}"></span>${e._displayHeader?bd(e):void 0}<div style="${Ei(e.styles.content)}" class="${Fi(e.classes.content)}" @scroll="${e._scroll}"><slot></slot></div>${e._displayFooter?kd(e):void 0}<span class="last-fe" data-ui5-focus-trap tabindex="0" @focusin=${e.forwardToFirst}></span></section>`,bd=(e,t,i)=>vi`<header class="ui5-popup-header-root" id="ui5-popup-header">${e.header.length?yd():wd(e)}</header>`,yd=(e,t,i)=>vi`<slot name="header"></slot>`,wd=(e,t,i)=>vi`<h2 class="ui5-popup-header-text">${Mi(e.headerText)}</h2>`,kd=(e,t,i)=>vi`${e.footer.length?xd():void 0}`,xd=(e,t,i)=>vi`<footer class="ui5-popup-footer-root"><slot name="footer"></slot></footer>`,Cd="M386.5 305c6-5 13-8 19-8 7 0 14 3 19 8 5 6 8 12 8 19s-3 13-8 19l-161 161c-6 5-12 8-19 8s-13-3-19-8c-5-5-8-12-8-18 0-7 3-14 8-20zm38-134c5 5 8 12 8 19 0 6-3 13-8 18l-296 296c-5 5-12 8-18 8-7 0-14-3-19-8-6-5-8-12-8-19s2-13 8-19l295-295c6-6 13-8 19-8 7 0 14 2 19 8z";Ar("resize-corner",{pathData:Cd,ltr:!1,collection:"SAP-icons-v5",packageName:"@ui5/webcomponents-icons"});var Sd={pathData:Cd};const Td="M384 224v32q0 12-10 22L182 470q-10 10-22 10h-32zM224 480l160-160v32q0 12-10 22l-96 96q-10 10-22 10h-32zm160-64v32q0 12-10 22t-22 10h-32z";Ar("resize-corner",{pathData:Td,ltr:!1,collection:"SAP-icons",packageName:"@ui5/webcomponents-icons"});var Bd={pathData:Td};me("sap_horizon");const Id=(e,t,i)=>vi`<section style="${Ei(e.styles.root)}" class="${Fi(e.classes.root)}" role="dialog" aria-modal="${Mi(e._ariaModal)}" aria-label="${Mi(e._ariaLabel)}" aria-labelledby="${Mi(e._ariaLabelledBy)}" dir="${Mi(e.effectiveDir)}" @keydown=${e._onkeydown} @focusout=${e._onfocusout} @mouseup=${e._onmouseup} @mousedown=${e._onmousedown}><span class="first-fe" data-ui5-focus-trap tabindex="0" @focusin=${e.forwardToLast}></span>${e._displayHeader?$d(e):void 0}<div style="${Ei(e.styles.content)}" class="${Fi(e.classes.content)}" @scroll="${e._scroll}"><slot></slot></div>${e.footer.length?Fd():void 0}${e.resizable?Ed(e,t,i):void 0}<span class="last-fe" data-ui5-focus-trap tabindex="0" @focusin=${e.forwardToFirst}></span></section> `,$d=(e,t,i)=>vi`<header class="ui5-popup-header-root" id="ui5-popup-header" tabindex="${Mi(e._headerTabIndex)}" @keydown="${e._onDragOrResizeKeyDown}" @mousedown="${e._onDragMouseDown}">${e.header.length?Dd():Ad(e)}</header>`,Dd=(e,t,i)=>vi`<slot name="header"></slot>`,Ad=(e,t,i)=>vi`<h2 id="ui5-popup-header-text" class="ui5-popup-header-text">${Mi(e.headerText)}</h2>`,Fd=(e,t,i)=>vi`<footer class="ui5-popup-footer-root"><slot name="footer"></slot></footer>`,Ed=(e,t,i)=>vi`<${zi("ui5-icon",t,i)} name="resize-corner" dir="${Mi(e.effectiveDir)}" class="ui5-popup-resize-handle" @mousedown="${e._onResizeMouseDown}"></${zi("ui5-icon",t,i)}>`;te("@ui5/webcomponents-theming","sap_fiori_3",()=>zr),te("@ui5/webcomponents","sap_fiori_3",()=>Or);var Md={packageName:"@ui5/webcomponents",fileName:"themesDialog.css",content:":host{min-width:20rem;min-height:6rem;max-height:94%;max-width:90%;flex-direction:column;box-shadow:var(--sapContent_Shadow3)}:host([stretch]){width:90%;height:94%}:host([stretch][on-phone]){width:100%;height:100%;max-height:100%;max-width:100%}.ui5-popup-header-root{background:var(--sapPageHeader_Background)}:host([draggable]) .ui5-popup-header-root,:host([draggable]) ::slotted([slot=header]){cursor:move}:host([draggable]) .ui5-popup-header-root *{cursor:auto}.ui5-popup-header-root:focus{outline:var(--_ui5_dialog_outline);border-radius:var(--_ui5_dialog_header_border_radius);outline-offset:var(--_ui5_dialog_header_focus_offset)}.ui5-popup-root{display:flex;flex-direction:column;max-width:100vw}: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:var(--_ui5_dialog_resize_handle_bottom);right:var(--_ui5_dialog_resize_handle_right);cursor:se-resize;color:var(--_ui5_dialog_resize_handle_color)}.ui5-popup-resize-handle[dir=rtl]{left:-.25rem;right:unset;cursor:sw-resize}"};const Pd={tag:"ui5-dialog",slots:{header:{type:HTMLElement},footer:{type:HTMLElement}},properties:{headerText:{type:String},accessibleName:{type:String},stretch:{type:Boolean},draggable:{type:Boolean},resizable:{type:Boolean},onPhone:{type:Boolean},onDesktop:{type:Boolean}}};class Ld extends Yn{constructor(){super(),this._screenResizeHandler=this._center.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)}static get metadata(){return Pd}static get dependencies(){return[Ur]}static get template(){return Id}static get styles(){return[hs,ps,Md]}static _isHeader(e){return e.classList.contains("ui5-popup-header-root")||"header"===e.getAttribute("slot")}async show(e=!1){await super._open(e)}get isModal(){return!0}get shouldHideBackdrop(){return!1}get _ariaLabelledBy(){let e;return""===this.headerText||this.accessibleName||(e="ui5-popup-header-text"),e}get _ariaLabel(){let e;return this.header.length>0&&this.accessibleName&&(e=this.accessibleName),this.accessibleName?this.accessibleName:e}get _ariaModal(){return!0}get _displayProp(){return"flex"}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}_show(){super._show(),this._center()}onBeforeRendering(){this._isRTL="rtl"===this.effectiveDir,this.onPhone=yr(),this.onDesktop=wr(),this._detachResizeHandlers()}onAfterRendering(){this._attachResizeHandlers()}onExitDOM(){super.onExitDOM(),this._detachResizeHandlers()}_attachResizeHandlers(){un.register(this,this._screenResizeHandler),un.register(document.body,this._screenResizeHandler),this._resizeHandlersAttached=!0}_detachResizeHandlers(){this._resizeHandlersAttached&&(un.deregister(this,this._screenResizeHandler),un.deregister(document.body,this._screenResizeHandler),this._resizeHandlersAttached=!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`})}_revertSize(){Object.assign(this.style,{top:"",left:"",width:"",height:""}),this.removeEventListener("ui5-before-close",this._revertSize)}_onDragMouseDown(e){if(!this._movable||!this.draggable||!Ld._isHeader(e.target))return;e.preventDefault();const{top:t,left:i}=this.getBoundingClientRect(),{width:o,height:r}=window.getComputedStyle(this);Object.assign(this.style,{top:`${t}px`,left:`${i}px`,width:`${Math.round(100*Number.parseFloat(o))/100}px`,height:`${Math.round(100*Number.parseFloat(r))/100}px`}),this._x=e.clientX,this._y=e.clientY,this._attachMouseDragHandlers()}_onDragMouseMove(e){e.preventDefault();const t=this._x-e.clientX,i=this._y-e.clientY,{left:o,top:r}=this.getBoundingClientRect();Object.assign(this.style,{left:`${Math.floor(o-t)}px`,top:`${Math.floor(r-i)}px`}),this._x=e.clientX,this._y=e.clientY}_onDragMouseUp(){this._x=null,this._y=null,this._detachMouseDragHandlers()}_onDragOrResizeKeyDown(e){this._movable&&Ld._isHeader(e.target)&&(this.draggable&&[no,so,ro,ao].some(t=>t(e))?this._dragWithEvent(e):this.resizable&&[lo,uo,co,_o].some(t=>t(e))&&this._resizeWithEvent(e))}_dragWithEvent(e){const{top:t,left:i,width:o,height:r}=this.getBoundingClientRect();let a,n;switch(!0){case no(e):a=t-16,n="top";break;case so(e):a=t+16,n="top";break;case ro(e):a=i-16,n="left";break;case ao(e):a=i+16,n="left"}a=Tn(a,0,"left"===n?window.innerWidth-o:window.innerHeight-r),this.style[n]=`${a}px`}_resizeWithEvent(e){this._detachResizeHandlers(),this.addEventListener("ui5-before-close",this._revertSize);const{top:t,left:i}=this.getBoundingClientRect(),o=window.getComputedStyle(this),r=Number.parseFloat(o.minWidth),a=Number.parseFloat(o.minHeight),n=window.innerWidth-i,s=window.innerHeight-t;let l=Number.parseFloat(o.width),u=Number.parseFloat(o.height);switch(!0){case lo(e):u-=16;break;case uo(e):u+=16;break;case co(e):l-=16;break;case _o(e):l+=16}l=Tn(l,r,n),u=Tn(u,a,s),Object.assign(this.style,{width:`${l}px`,height:`${u}px`})}_attachMouseDragHandlers(){this._detachResizeHandlers(),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:i}=this.getBoundingClientRect(),{width:o,height:r,minWidth:a,minHeight:n}=window.getComputedStyle(this);this._initialX=e.clientX,this._initialY=e.clientY,this._initialWidth=Number.parseFloat(o),this._initialHeight=Number.parseFloat(r),this._initialTop=t,this._initialLeft=i,this._minWidth=Number.parseFloat(a),this._minHeight=Number.parseFloat(n),Object.assign(this.style,{top:`${t}px`,left:`${i}px`}),this._attachMouseResizeHandlers()}_onResizeMouseMove(e){const{clientX:t,clientY:i}=e;let o,r;this._isRTL?(o=Tn(this._initialWidth-(t-this._initialX),this._minWidth,this._initialLeft+this._initialWidth),r=Tn(this._initialLeft+(t-this._initialX),0,this._initialX+this._initialWidth-this._minWidth)):o=Tn(this._initialWidth+(t-this._initialX),this._minWidth,window.innerWidth-this._initialLeft);const a=Tn(this._initialHeight+(i-this._initialY),this._minHeight,window.innerHeight-this._initialTop);Object.assign(this.style,{height:`${a}px`,width:`${o}px`,left:r?`${r}px`:void 0})}_onResizeMouseUp(){this._initialX=null,this._initialY=null,this._initialWidth=null,this._initialHeight=null,this._initialTop=null,this._initialLeft=null,this._minWidth=null,this._minHeight=null,this._detachMouseResizeHandlers()}_attachMouseResizeHandlers(){this._detachResizeHandlers(),window.addEventListener("mousemove",this._resizeMouseMoveHandler),window.addEventListener("mouseup",this._resizeMouseUpHandler),this.addEventListener("ui5-before-close",this._revertSize)}_detachMouseResizeHandlers(){window.removeEventListener("mousemove",this._resizeMouseMoveHandler),window.removeEventListener("mouseup",this._resizeMouseUpHandler)}}Ld.define();const Nd={H1:"H1",H2:"H2",H3:"H3",H4:"H4",H5:"H5",H6:"H6"};class zd extends Pe{static isValid(e){return!!Nd[e]}}zd.generateTypeAccessors(Nd);const Od=(e,t,i)=>vi`${e.h1?Hd(e):void 0}${e.h2?Rd(e):void 0}${e.h3?Ud(e):void 0}${e.h4?Vd(e):void 0}${e.h5?jd(e):void 0}${e.h6?Wd(e):void 0}`,Hd=(e,t,i)=>vi`<h1 class="ui5-title-root"><span id="${Mi(e._id)}-inner"><slot></slot></span></h1>`,Rd=(e,t,i)=>vi`<h2 class="ui5-title-root"><span id="${Mi(e._id)}-inner"><slot></slot></span></h2>`,Ud=(e,t,i)=>vi`<h3 class="ui5-title-root"><span id="${Mi(e._id)}-inner"><slot></slot></span></h3>`,Vd=(e,t,i)=>vi`<h4 class="ui5-title-root"><span id="${Mi(e._id)}-inner"><slot></slot></span></h4>`,jd=(e,t,i)=>vi`<h5 class="ui5-title-root"><span id="${Mi(e._id)}-inner"><slot></slot></span></h5>`,Wd=(e,t,i)=>vi`<h6 class="ui5-title-root"><span id="${Mi(e._id)}-inner"><slot></slot></span></h6>`;te("@ui5/webcomponents-theming","sap_fiori_3",()=>zr),te("@ui5/webcomponents","sap_fiori_3",()=>Or);var qd={packageName:"@ui5/webcomponents",fileName:"themesTitle.css",content:':host(:not([hidden])){display:block;cursor:text}:host{max-width:100%;color:var(--sapGroup_TitleTextColor);font-size:var(--ui5_title_level_2Size);font-family:"72override",var(--sapFontFamily);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;white-space:nowrap;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([wrapping-type=Normal]) .ui5-title-root{white-space:pre-line}:host([level=H1]){font-size:var(--ui5_title_level_1Size)}:host([level=H2]){font-size:var(--ui5_title_level_2Size)}:host([level=H3]){font-size:var(--ui5_title_level_3Size)}:host([level=H4]){font-size:var(--ui5_title_level_4Size)}:host([level=H5]){font-size:var(--ui5_title_level_5Size)}:host([level=H6]){font-size:var(--ui5_title_level_6Size)}'};const Yd={tag:"ui5-title",properties:{wrappingType:{type:Wa,defaultValue:Wa.None},level:{type:zd,defaultValue:zd.H2}},slots:{default:{type:Node}}};class Gd extends Ft{static get metadata(){return Yd}static get render(){return Ni}static get template(){return Od}static get styles(){return qd}get normalizedLevel(){return this.level.toLowerCase()}get h1(){return"h1"===this.normalizedLevel}get h2(){return"h2"===this.normalizedLevel}get h3(){return"h3"===this.normalizedLevel}get h4(){return"h4"===this.normalizedLevel}get h5(){return"h5"===this.normalizedLevel}get h6(){return"h6"===this.normalizedLevel}}Gd.define(),te("@ui5/webcomponents-theming","sap_fiori_3",()=>zr),te("@ui5/webcomponents","sap_fiori_3",()=>Or);var Xd={packageName:"@ui5/webcomponents",fileName:"themesResponsivePopover.css",content:":host{--_ui5_input_width:100%;min-width:6.25rem;min-height:2rem}:host(:not([with-padding])){--_ui5_popup_content_padding:0}:host([opened]){display:inline-block}.ui5-responsive-popover-header{height:var(--_ui5-responsive_popover_header_height);display:flex;justify-content:space-between;align-items:center;padding:0 1rem;box-shadow:var(--sapContent_HeaderShadow)}:host [dir=rtl] .ui5-responsive-popover-header{padding:0 1rem 0 0}.ui5-responsive-popover-header-text{width:calc(100% - var(--_ui5_button_base_min_width))}.ui5-responsive-popover-header-no-title{justify-content:flex-end}"};const Zd={tag:"ui5-responsive-popover",properties:{withPadding:{type:Boolean},contentOnlyOnDesktop:{type:Boolean},_hideHeader:{type:Boolean},_hideCloseButton:{type:Boolean}}};class Jd extends fs{constructor(){super()}static get metadata(){return Zd}static get styles(){return[fs.styles,Xd]}get classes(){const e=super.classes;return e.header={"ui5-responsive-popover-header":!0,"ui5-responsive-popover-header-no-title":!this.headerText},e}static get template(){return cd}static get dependencies(){return[Na,Ld,Gd]}async showAt(e,t=!1){yr()?(this.style.display="contents",this.style.zIndex=xe(),await this._dialog.show(t)):await super.showAt(e,t)}close(e=!1,t=!1,i=!1){yr()?this._dialog.close(e,t,i):super.close(e,t,i)}toggle(e){if(this.isOpen())return this.close();this.showAt(e)}isOpen(){return yr()?this._dialog.isOpen():super.isOpen()}get _dialog(){return this.shadowRoot.querySelector("[ui5-dialog]")}get _isPhone(){return yr()}get _displayHeader(){return(this._isPhone||!this.contentOnlyOnDesktop)&&super._displayHeader}get _displayFooter(){return this._isPhone||!this.contentOnlyOnDesktop}get _closeDialogAriaLabel(){return Jd.i18nBundle.getText(da)}_afterDialogOpen(e){this.opened=!0,this._propagateDialogEvent(e)}_afterDialogClose(e){this.opened=!1,this._propagateDialogEvent(e)}_propagateDialogEvent(e){const t=e.type.replace("ui5-","");this.fireEvent(t,e.detail)}static async onDefine(){Jd.i18nBundle=await er("@ui5/webcomponents")}}Jd.define();const Kd={tag:"ui5-date",properties:{value:{type:String}}};class Qd extends Ft{static get metadata(){return Kd}}Qd.define();const ec={properties:{timestamp:{type:dn}}};class tc extends dd{static get metadata(){return ec}get _minTimestamp(){return this._minDate.valueOf()/1e3}get _maxTimestamp(){return this._maxDate.valueOf()/1e3}get _timestamp(){let e=void 0!==this.timestamp?this.timestamp:ju(this._primaryCalendarType);return(e<this._minTimestamp||e>this._maxTimestamp)&&(e=this._minTimestamp),e}get _localDate(){return new Date(1e3*this._timestamp)}get _calendarDate(){return zu.fromTimestamp(this._localDate.getTime(),this._primaryCalendarType)}_safelySetTimestamp(e){const t=this._minDate.valueOf()/1e3,i=this._maxDate.valueOf()/1e3;e<t&&(e=t),e>i&&(e=i),this.timestamp=e}_safelyModifyTimestampBy(e,t){const i=Vu(this._calendarDate,e,t);this._safelySetTimestamp(i.valueOf()/1e3)}_getTimestampFromDom(e){const t=e.getAttribute("data-sap-timestamp");return parseInt(t)}}const ic="M237.5 256l103 102c6 6 9 14 9 22s-3 15-9 22c-6 6-14 9-22 9s-15-3-22-9l-124-124c-6-7-9-14-9-22s3-16 9-22l124-124c7-6 14-9 22-9s16 3 22 9 9 14 9 22-3 15-9 22z";Ar("slim-arrow-left",{pathData:ic,ltr:!1,collection:"SAP-icons-v5",packageName:"@ui5/webcomponents-icons"});var oc={pathData:ic};const rc="M351.5 421q12 12 0 23-5 5-11 5t-11-5l-166-165q-9-10-9-23t9-23l165-164q5-5 11.5-5t11.5 5 5 11-5 11l-159 159q-6 6 0 12z";Ar("slim-arrow-left",{pathData:rc,ltr:!1,collection:"SAP-icons",packageName:"@ui5/webcomponents-icons"});var ac={pathData:rc};me("sap_horizon");const nc="M275.5 256l-103-102c-6-7-9-14-9-22s3-16 9-22c7-6 14-9 22-9s16 3 22 9l124 124c6 6 9 14 9 22s-3 15-9 22l-124 124c-6 6-14 9-22 9s-15-3-22-9c-6-7-9-14-9-22s3-16 9-22z";Ar("slim-arrow-right",{pathData:nc,ltr:!1,collection:"SAP-icons-v5",packageName:"@ui5/webcomponents-icons"});var sc={pathData:nc};const lc="M357.5 233q10 10 10 23t-10 23l-165 165q-12 11-23 0t0-23l160-159q6-6 0-12l-159-159q-5-5-5-11t5-11 11-5 11 5z";Ar("slim-arrow-right",{pathData:lc,ltr:!1,collection:"SAP-icons",packageName:"@ui5/webcomponents-icons"});var uc={pathData:lc};me("sap_horizon");const dc=(e,t,i)=>vi`<div class="ui5-calheader-root" dir="${Mi(e.effectiveDir)}"><div data-ui5-cal-header-btn-prev class="${Fi(e.classes.prevButton)}" @mousedown=${e.onPrevButtonClick} title="${Mi(e._prevButtonText)}"><${zi("ui5-icon",t,i)} class="ui5-calheader-arrowicon" name="slim-arrow-left"></${zi("ui5-icon",t,i)}></div><div class="ui5-calheader-midcontainer"><div data-ui5-cal-header-btn-month class="ui5-calheader-arrowbtn ui5-calheader-middlebtn" ?hidden="${e.isMonthButtonHidden}" tabindex="0" aria-label="${Mi(e.accInfo.ariaLabelMonthButton)}" @click=${e.onMonthButtonClick} @keydown=${e.onMonthButtonKeyDown} @keyup=${e.onMonthButtonKeyUp}><span>${Mi(e._monthButtonText)}</span>${e.hasSecondaryCalendarType?cc(e):void 0}</div><div data-ui5-cal-header-btn-year class="ui5-calheader-arrowbtn ui5-calheader-middlebtn" ?hidden="${e.isYearButtonHidden}" tabindex="0" @click=${e.onYearButtonClick} @keydown=${e.onYearButtonKeyDown} @keyup=${e.onYearButtonKeyUp}><span>${Mi(e._yearButtonText)}</span>${e.hasSecondaryCalendarType?_c(e):void 0}</div></div><div data-ui5-cal-header-btn-next class="${Fi(e.classes.nextButton)}" @mousedown=${e.onNextButtonClick} title=${Mi(e._nextButtonText)}><${zi("ui5-icon",t,i)} class="ui5-calheader-arrowicon" name="slim-arrow-right"></${zi("ui5-icon",t,i)}></div></div>`,cc=(e,t,i)=>vi`<span class="ui5-calheader-btn-sectext">${Mi(e._secondMonthButtonText)}</span>`,_c=(e,t,i)=>vi`<span class="ui5-calheader-btn-sectext">${Mi(e._secondYearButtonText)}</span>`;te("@ui5/webcomponents-theming","sap_fiori_3",()=>zr),te("@ui5/webcomponents","sap_fiori_3",()=>Or);var hc={packageName:"@ui5/webcomponents",fileName:"themesCalendarHeader.css",content:':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_TextColor);cursor:pointer;overflow:hidden;white-space:nowrap;padding:0;font-size:var(--sapFontSize)}.ui5-calheader-arrowbtn.ui5-calheader-arrowbtn-disabled,.ui5-calheader-arrowbtn.ui5-calheader-arrowbtn-disabled:active,.ui5-calheader-arrowbtn.ui5-calheader-arrowbtn-disabled:focus,.ui5-calheader-arrowbtn.ui5-calheader-arrowbtn-disabled:hover{pointer-events:none;opacity:.4;outline:none;background-color:var(--sapButton_Lite_Background);color:var(--sapButton_TextColor)}[hidden].ui5-calheader-arrowbtn.ui5-calheader-middlebtn{display:none}.ui5-calheader-arrowbtn:focus{outline:none}.ui5-calheader-arrowbtn:hover{background-color:var(--sapButton_Hover_Background);color:var(--sapButton_Hover_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(--_ui5_calendar_header_button_background_color)}.ui5-calheader-middlebtn{flex-direction:column;align-items:center;justify-content:center}.ui5-calheader-btn-sectext{color:var(--sapNeutralElementColor);font-size:.625rem}.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-right:.5rem}.ui5-calheader-middlebtn{font-family:"72override",var(--sapFontFamily);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;-ms-user-select:none;user-select:none}.ui5-calheader-middlebtn: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{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{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{border-color:var(--sapContent_ContrastFocusColor)}[dir=rtl] .ui5-calheader-root-midcontainer .ui5-calheader-middlebtn:first-child{margin-left:.5rem;margin-right:0}'};const pc={tag:"ui5-calendar-header",languageAware:!0,properties:{timestamp:{type:dn},primaryCalendarType:{type:fl},secondaryCalendarType:{type:fl},buttonTextForSecondaryCalendarType:{type:Object},isNextButtonDisabled:{type:Boolean},isPrevButtonDisabled:{type:Boolean},isMonthButtonHidden:{type:Boolean},_monthButtonText:{type:String},_yearButtonText:{type:String},isYearButtonHidden:{type:Boolean}},events:{"previous-press":{},"next-press":{},"show-month-press":{},"show-year-press":{}}};class gc extends Ft{static get metadata(){return pc}static get render(){return Ni}static get template(){return dc}static get styles(){return hc}static get dependencies(){return[Ur]}static async onDefine(){gc.i18nBundle=await er("@ui5/webcomponents")}constructor(){super()}onBeforeRendering(){this._prevButtonText=gc.i18nBundle.getText(Ta),this._nextButtonText=gc.i18nBundle.getText(Sa),this.hasSecondaryCalendarType&&(this._secondMonthButtonText=this.buttonTextForSecondaryCalendarType.monthButtonText,this._secondYearButtonText=this.buttonTextForSecondaryCalendarType.yearButtonText)}onPrevButtonClick(e){this.fireEvent("previous-press",e)}onNextButtonClick(e){this.fireEvent("next-press",e)}onMonthButtonClick(e){this.fireEvent("show-month-press",e)}onMonthButtonKeyDown(e){io(e)&&e.preventDefault(),eo(e)&&this.fireEvent("show-month-press",e)}onMonthButtonKeyUp(e){io(e)&&(e.preventDefault(),this.fireEvent("show-month-press",e))}onYearButtonClick(e){this.fireEvent("show-year-press",e)}onYearButtonKeyDown(e){io(e)&&e.preventDefault(),eo(e)&&this.fireEvent("show-year-press",e)}onYearButtonKeyUp(e){io(e)&&(e.preventDefault(),this.fireEvent("show-year-press",e))}get hasSecondaryCalendarType(){return!!this.secondaryCalendarType}get classes(){return{prevButton:{"ui5-calheader-arrowbtn":!0,"ui5-calheader-arrowbtn-disabled":this.isPrevButtonDisabled},nextButton:{"ui5-calheader-arrowbtn":!0,"ui5-calheader-arrowbtn-disabled":this.isNextButtonDisabled}}}get accInfo(){return{ariaLabelMonthButton:this.hasSecondaryCalendarType?`${this._monthButtonText}, ${this.buttonTextForSecondaryCalendarType.info}`:`${this._monthButtonText}`}}}let mc;gc.define();const fc=()=>(void 0===mc&&(Z(),mc=Y.formatSettings),mc.firstDayOfWeek),vc=(e,t,i,o,r)=>{let a=0,n=0;const s=Number.isInteger(e)?e:r.getFirstDayOfWeek();if(o&&"en"===o.getLanguage()&&"US"===o.getRegion()){const e=new Fu(t.getTime());e.setUTCFullYear(i,0,1),n=e.getUTCDay();const o=new Fu(t.getTime());o.setUTCDate(o.getUTCDate()-o.getUTCDay()+n),a=Math.round((o.getTime()-e.getTime())/864e5/7)+1}else{const e=new Fu(t.getTime());e.setUTCDate(e.getUTCDate()-s),n=e.getUTCDay(),e.setUTCDate(e.getUTCDate()-n+4);const i=new Fu(e.getTime());i.setUTCMonth(0,1),n=i.getUTCDay();let o=0;n>4&&(o=7);const r=new Fu(i.getTime());r.setUTCDate(1-n+4+o),a=Math.round((e.getTime()-r.getTime())/864e5/7)+1}return a},bc={Single:"Single",Multiple:"Multiple",Range:"Range"};class yc extends Pe{static isValid(e){return!!bc[e]}}yc.generateTypeAccessors(bc);const wc=(e,t,i)=>vi`<div class="ui5-dp-root" style="${Ei(e.styles.wrapper)}" @keydown=${e._onkeydown} @keyup=${e._onkeyup} @click=${e._onclick} @mouseover=${e._onmouseover} @focusin=${e._onfocusin} @focusout=${e._onfocusout}><div id="${Mi(e._id)}-content" class="ui5-dp-content" role="grid" aria-roledescription="${Mi(e.ariaRoledescription)}"><div role="row" class="ui5-dp-days-names-container">${Ai(e._dayNames,(e,t)=>e._id||t,(e,t)=>kc(e))}</div>${Ai(e._weeks,(e,t)=>e._id||t,(e,t)=>xc(e))}</div></div>`,kc=(e,t,i,o,r)=>vi`<div role="columnheader" aria-label="${Mi(e.name)}" class="${Mi(e.classes)}">${Mi(e.ultraShortName)}</div>`,xc=(e,t,i,o,r)=>vi`${e.length?Cc(e):Dc()}`,Cc=(e,t,i,o,r)=>vi`<div class="ui5-dp-weeks-row" role="row">${Ai(e,(e,t)=>e._id||t,(e,t)=>Sc(e))}</div>`,Sc=(e,t,i,o,r)=>vi`${e.timestamp?Tc(e):Ic(e)}`,Tc=(e,t,i,o,r)=>vi`<div tabindex="${Mi(e._tabIndex)}" ?data-sap-focus-ref="${e.focusRef}" data-sap-timestamp="${Mi(e.timestamp)}" role="gridcell" aria-selected="${Mi(e.ariaSelected)}" aria-label="${Mi(e.ariaLabel)}" aria-disabled="${Mi(e.ariaDisabled)}" class="${Mi(e.classes)}"><span class="ui5-dp-daytext" data-sap-timestamp="${Mi(e.timestamp)}">${Mi(e.day)}</span>${e._isSecondaryCalendarType?Bc(e):void 0}</div>`,Bc=(e,t,i,o,r)=>vi`<span class="ui5-dp-daytext ui5-dp-daysectext">${Mi(e.secondDay)}</span>`,Ic=(e,t,i,o,r)=>vi`${e.isHidden?void 0:$c(e)}`,$c=(e,t,i,o,r)=>vi`<div class="ui5-dp-weekname-container" role="rowheader" aria-label="Calendar Week ${Mi(e.weekNum)}"><span class="ui5-dp-weekname">${Mi(e.weekNum)}</span></div>`,Dc=(e,t,i,o,r)=>vi`<div class="sapWCEmptyWeek"></div>`;te("@ui5/webcomponents-theming","sap_fiori_3",()=>zr),te("@ui5/webcomponents","sap_fiori_3",()=>Or);var Ac={packageName:"@ui5/webcomponents",fileName:"themesDayPicker.css",content:':host(:not([hidden])){display:block}:host{height:100%;width:100%}:host([hide-week-numbers]) .ui5-dp-content{flex-basis:100%}:host([secondary-calendar-type]) .ui5-dp-item{flex-direction:column;justify-content:var(--_ui5_day_picker_item_justify_content)}:host([secondary-calendar-type]) .ui5-dp-daytext{height:1.575rem;padding:.575rem 0 0 0}:host([secondary-calendar-type]) .ui5-dp-daysectext{font-size:.625rem;height:1rem;padding:0 .375rem .375rem 50%}.ui5-dp-dayname,.ui5-dp-item,.ui5-dp-weekname{width:var(--_ui5_day_picker_item_width);height:var(--_ui5_day_picker_item_height);margin-top:var(--_ui5_daypicker_item_margin);margin-right:var(--_ui5_daypicker_item_margin);font-family:"72override",var(--sapFontFamily);border-radius:var(--_ui5_daypicker_item_border_radius)}.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:"72override",var(--sapFontFamily)}.ui5-dp-days-names-container{display:flex;height:var(--_ui5_daypicker_daynames_container_height)}.ui5-dp-weeknumber-container{padding-top:var(--_ui5_daypicker_weeknumbers_container_padding_top);flex-basis:12.5%}.ui5-dp-dayname,.ui5-dp-item,.ui5-dp-weekname,.ui5-dp-weekname-container{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;-ms-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)}.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--weeekend{background:var(--sapLegend_NonWorkingBackground)}.ui5-dp-item.ui5-dp-item--disabled{pointer-events:none;opacity:.5}.ui5-dp-item.ui5-dp-item--weeekend:hover{background:var(--sapList_Hover_Background)}.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--weeekend.ui5-dp-item--othermonth:hover{color:var(--_ui5_daypicker_item_othermonth_hover_color);background:var(--sapList_Hover_Background)}.ui5-dp-item:focus:after{content:"";width:var(--_ui5_daypicker_item_width_focus_after);height:var(--_ui5_daypicker_item_height_focus_after);border:var(--_ui5_daypicker_item_border_focus_after);position:absolute;top:var(--_ui5_daypicker_item_outline_offset);left:var(--_ui5_daypicker_item_outline_offset);outline:var(--_ui5_daypicker_item_outline_focus_after);border-radius:var(--_ui5_daypicker_item_border_radius_focus_after);outline-offset:-.1875rem}.ui5-dp-item.ui5-dp-item--now{border:var(--_ui5_daypicker_item_now_border);padding:.0625rem;box-shadow:inset 0 0 0 .0625rem var(--_ui5_daypicker_item_selected_border_color);outline:var(--_ui5_daypicker_item_now_outline);outline-offset:var(--_ui5_daypicker_item_now_outline_offset)}.ui5-dp-item.ui5-dp-item--now.ui5-dp-item--selected{box-shadow:var(--_ui5_daypicker_item_now_box_shadow)}:host([secondary-calendar-type]) .ui5-dp-item.ui5-dp-item--now .ui5-dp-daytext{height:1.387rem;padding-top:.387rem}:host([secondary-calendar-type]) .ui5-dp-item.ui5-dp-item--now .ui5-dp-daysectext{height:.812rem;padding-top:0;padding-bottom:.187rem}.ui5-dp-item.ui5-dp-item--selected{background:var(--sapContent_Selected_Background);box-shadow:var(--_ui5_daypicker_item_selected_box_shadow);font-weight:var(--_ui5_daypicker_item_selected_between_text_font)}.ui5-dp-item.ui5-dp-item--selected.ui5-dp-item.ui5-dp-item--now .ui5-dp-daytext{outline:var(--_ui5_daypicker_item_selected_text_outline);outline-offset:-.3125rem;border-radius:.5rem;font-weight:var(--_ui5_daypicker_item_selected_between_text_font)}.ui5-dp-item.ui5-dp-item--selected .ui5-dp-daytext{background:var(--_ui5_daypicker_item_selected_background);color:var(--sapContent_Selected_TextColor)}.ui5-dp-item.ui5-dp-item--selected:hover .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{width:var(--_ui5_daypicker_item_now_focus_after_width);height:var(--_ui5_daypicker_item_now_focus_after_height);top:var(--_ui5_daypicker_item_now_outline_offset_focus_after);left:var(--_ui5_daypicker_item_now_outline_offset_focus_after);outline:var(--_ui5_daypicker_item_outline_focus_after);border-radius:var(--_ui5_daypicker_item_border_radius_focus_after);outline-offset:-.3125rem}.ui5-dp-item.ui5-dp-item--selected.ui5-dp-item--now:focus:after{width:var(--_ui5_daypicker_item_now_selected_focus_after_width);height:var(--_ui5_daypicker_item_now_selected_focus_after_height);border-color:var(--sapContent_ContrastFocusColor);top:var(--_ui5_daypicker_item_now_selected_outline_offset);left:var(--_ui5_daypicker_item_now_selected_outline_offset);outline-offset:-.1875rem}.ui5-dp-item.ui5-dp-item--selected:hover{background:var(--sapContent_Selected_Hover_Background);color:var(--sapContent_ContrastTextColor)}.ui5-dp-item.ui5-dp-item--selected:focus:after{border-color:var(--sapContent_ContrastFocusColor)}.ui5-dp-items-container{outline:none}.ui5-dp-item.ui5-dp-item--selected-between .ui5-dp-daytext,.ui5-dp-item[hovered] .ui5-dp-daytext{background-color:var(--_ui5_daypicker_item_selected_between_text_background);color:var(--sapTextColor);font-weight:var(--_ui5_daypicker_item_selected_between_text_font)}.ui5-dp-item.ui5-dp-item--selected-between,.ui5-dp-item[hovered]{border:1px solid var(--sapContent_Selected_Background);border-radius:var(--_ui5_daypicker_item_selected_between_border);background:var(--_ui5_daypicker_item_selected_between_background);box-shadow:var(--_ui5_daypicker_item_selected_box_shadow)}.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{outline-offset:-.3125rem;border:2px solid var(--sapLegend_CurrentDateTime);outline-color:var(--sapSelectedColor)}.ui5-dp-item.ui5-dp-item--now.ui5-dp-item--selected.ui5-dp-item--withsecondtype:focus:after{outline-offset:-.1875rem;border-radius:.1875rem}.ui5-dp-item.ui5-dp-item--now.ui5-dp-item--selected.ui5-dp-item--withsecondtype .ui5-dp-daytext{outline:none}'};const Fc={tag:"ui5-daypicker",properties:{selectedDates:{type:dn,multiple:!0,compareValues:!0},selectionMode:{type:yc,defaultValue:yc.Single},hideWeekNumbers:{type:Boolean},_weeks:{type:Object,multiple:!0},_dayNames:{type:Object,multiple:!0},_hidden:{type:Boolean,noAttribute:!0},_secondTimestamp:{type:String}},events:{change:{},navigate:{}}},Ec=(e,t,i)=>e>Math.min(t,i)&&e<Math.max(t,i);class Mc extends tc{static get metadata(){return Fc}static get template(){return wc}static get styles(){return Ac}onBeforeRendering(){const e=nd(No());this._buildWeeks(e),this._buildDayNames(e)}_buildWeeks(e){if(this._hidden)return;this._weeks=[];const t=this._getFirstDayOfWeek(),i=e.getMonths("wide",this._primaryCalendarType),o=this.hasSecondaryCalendarType&&e.getMonths("wide",this.secondaryCalendarType),r=Mc.i18nBundle.getText(Ia),a=Mc.i18nBundle.getText($a),n=this._getFirstDay(),s=zu.fromLocalJSDate(new Date,this._primaryCalendarType),l=this._calendarDate,u=this._minDate,d=this._maxDate,c=this.hasSecondaryCalendarType&&this._getSecondaryDay(n);let _=[];for(let h=0;h<42;h++){const h=n.valueOf()/1e3;let p=n.getDay()-t;p<0&&(p+=7);const g=n.getMonth()===l.getMonth()&&n.getDate()===l.getDate(),m=this._isDaySelected(h),f=this._isDayInsideSelectionRange(h),v=n.getMonth()!==l.getMonth(),b=this._isWeekend(n),y=n.valueOf()<u.valueOf()||n.valueOf()>d.valueOf(),w=n.isSame(s),k=n.getDay()===t,x=b?`${r} `:"",C=w?`${a} `:"",S=this.hasSecondaryCalendarType?`${C}${x}${i[n.getMonth()]} ${n.getDate()}, ${n.getYear()}; ${o[c.getMonth()]} ${c.getDate()}, ${c.getYear()}`:`${C}${x}${i[n.getMonth()]} ${n.getDate()}, ${n.getYear()}`,T={timestamp:h.toString(),focusRef:g,_tabIndex:g?"0":"-1",selected:m,day:n.getDate(),secondDay:this.hasSecondaryCalendarType&&c.getDate(),_isSecondaryCalendarType:this.hasSecondaryCalendarType,classes:`ui5-dp-item ui5-dp-wday${p}`,ariaLabel:S,ariaSelected:m?"true":"false",ariaDisabled:v?"true":void 0,disabled:y};k&&(T.classes+=" ui5-dp-firstday"),m&&(T.classes+=" ui5-dp-item--selected"),f&&(T.classes+=" ui5-dp-item--selected-between"),w&&(T.classes+=" ui5-dp-item--now"),v&&(T.classes+=" ui5-dp-item--othermonth"),b&&(T.classes+=" ui5-dp-item--weeekend"),y&&(T.classes+=" ui5-dp-item--disabled"),this.hasSecondaryCalendarType&&(T.classes+=" ui5-dp-item--withsecondtype"),_.push(T),6===p&&_.unshift({weekNum:vc(fc(),n.toUTCJSDate(),n.getYear(),No(),e),isHidden:this.shouldHideWeekNumbers}),8===_.length&&(this._weeks.push(_),_=[]),n.setDate(n.getDate()+1),this.hasSecondaryCalendarType&&c.setDate(c.getDate()+1)}}_buildDayNames(e){if(this._hidden)return;let t;const i=e.getDays("wide",this._primaryCalendarType),o=e.getDays("abbreviated",this._primaryCalendarType);let r;this._dayNames=[],this._dayNames.push({classes:"ui5-dp-dayname",name:Mc.i18nBundle.getText(Ba)});for(let e=0;e<7;e++)t=e+this._getFirstDayOfWeek(),t>6&&(t-=7),r={name:i[t],ultraShortName:o[t],classes:"ui5-dp-dayname"},this._dayNames.push(r);this._dayNames[1].classes+=" ui5-dp-firstday",this.shouldHideWeekNumbers&&this._dayNames.shift()}onAfterRendering(){this._autoFocus&&!this._hidden&&this.focus()}_onfocusin(){this._autoFocus=!0}_onfocusout(){this._autoFocus=!1}_isDaySelected(e){return this.selectionMode===yc.Single?e===this.selectedDates[0]:this.selectedDates.includes(e)}_isDayInsideSelectionRange(e){return!(this.selectionMode!==yc.Range||!this.selectedDates.length)&&(1===this.selectedDates.length&&this._secondTimestamp?Ec(e,this.selectedDates[0],this._secondTimestamp):Ec(e,this.selectedDates[0],this.selectedDates[1]))}_selectDate(e,t){const i=e.target;if(!this._isDayPressed(i))return;const o=this._getTimestampFromDom(i);this._safelySetTimestamp(o),this._updateSecondTimestamp(),this.selectionMode===yc.Single?this.selectedDates=[o]:this.selectionMode===yc.Multiple?this.selectedDates.length>0&&t?this._multipleSelection(o):this._toggleTimestampInSelection(o):this.selectedDates=1===this.selectedDates.length?[...this.selectedDates,o]:[o],this.fireEvent("change",{timestamp:this.timestamp,dates:this.selectedDates})}_selectWeek(e){this._weeks.forEach(e=>{if(-1!==e.findIndex(e=>{const t=zu.fromTimestamp(1e3*parseInt(e.timestamp));return t.getMonth()===this._calendarDate.getMonth()&&t.getDate()===this._calendarDate.getDate()})){e.some(e=>e.timestamp&&!this.selectedDates.includes(parseInt(e.timestamp)))?e.filter(e=>e.timestamp).forEach(e=>{this._addTimestampToSelection(parseInt(e.timestamp))}):e.filter(e=>e.timestamp).forEach(e=>{this._removeTimestampFromSelection(parseInt(e.timestamp))})}}),this.fireEvent("change",{timestamp:this.timestamp,dates:this.selectedDates})}_toggleTimestampInSelection(e){this.selectedDates.includes(e)?this._removeTimestampFromSelection(e):this._addTimestampToSelection(e)}_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),i=Math.max(...this.selectedDates);let o,r,a=!1;if(e<t)o=e,r=t;else if(e>=t&&e<=i){Math.abs(e-t)<Math.abs(e-i)?(o=e,r=i):(o=t,r=e),a=!0}else o=i,r=e;const n=zu.fromTimestamp(1e3*o),s=zu.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===yc.Range&&1===this.selectedDates.length&&(this._secondTimestamp=this._getTimestampFromDom(t))}_onkeydown(e){let t=!0;if(eo(e)||to(e))this._selectDate(e,to(e));else if(io(e)||oo(e))e.preventDefault();else if(ro(e))this._modifyTimestampBy(-1,"day");else if(ao(e))this._modifyTimestampBy(1,"day");else if(no(e))this._modifyTimestampBy(-7,"day");else if(so(e))this._modifyTimestampBy(7,"day");else if(yo(e))this._modifyTimestampBy(-1,"month");else if(wo(e))this._modifyTimestampBy(1,"month");else if(ko(e)||(e=>(e.key?"PageUp"===e.key:e.keyCode===ji)&&Ao(e,!1,!0,!1))(e))this._modifyTimestampBy(-1,"year");else if(xo(e)||(e=>(e.key?"PageDown"===e.key:e.keyCode===Wi)&&Ao(e,!1,!0,!1))(e))this._modifyTimestampBy(1,"year");else if(Co(e))this._modifyTimestampBy(-10,"year");else if(So(e))this._modifyTimestampBy(10,"year");else if(ho(e)||po(e))this._onHomeOrEnd(ho(e));else if(go(e)){const e=new zu(this._calendarDate,this._primaryCalendarType);e.setDate(1),this._setTimestamp(e.valueOf()/1e3)}else if(mo(e)){const e=new zu(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){io(e)||oo(e)&&this.selectionMode!==yc.Multiple?this._selectDate(e,!1):oo(e)&&this._selectWeek(e)}_onclick(e){this._selectDate(e,e.shiftKey)}_onHomeOrEnd(e){this._weeks.forEach(t=>{if(-1!==t.findIndex(e=>{const t=zu.fromTimestamp(1e3*parseInt(e.timestamp));return t.getMonth()===this._calendarDate.getMonth()&&t.getDate()===this._calendarDate.getDate()})){const i=e?1:7;this._setTimestamp(parseInt(t[i].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")}_showNextPage(){this._modifyTimestampBy(1,"month")}_modifyTimestampBy(e,t){this._safelyModifyTimestampBy(e,t),this._updateSecondTimestamp(),this.fireEvent("navigate",{timestamp:this.timestamp})}_setTimestamp(e){this._safelySetTimestamp(e),this._updateSecondTimestamp(),this.fireEvent("navigate",{timestamp:this.timestamp})}_updateSecondTimestamp(){this.selectionMode===yc.Range&&1===this.selectedDates.length&&(this._secondTimestamp=this.timestamp)}get shouldHideWeekNumbers(){return this._primaryCalendarType!==fl.Gregorian||this.hideWeekNumbers}get hasSecondaryCalendarType(){return!!this.secondaryCalendarType}_isWeekend(e){const t=nd(No()),i=e.getDay(),o=t.getWeekendStart(),r=t.getWeekendEnd();return i>=o&&i<=r||r<o&&(i>=o||i<=r)}_isDayPressed(e){const t=e.parentNode;return e.className.indexOf("ui5-dp-item")>-1||t&&t.classList&&t.classList.contains("ui5-dp-item")}_getSecondaryDay(e){return new zu(e,this.secondaryCalendarType)}_getFirstDay(){let e;const t=this._getFirstDayOfWeek(),i=new zu(this._calendarDate,this._primaryCalendarType);return i.setDate(1),e=i.getDay()-t,e<0&&(e=7+e),e>0&&i.setDate(1-e),i}_getFirstDayOfWeek(){const e=nd(No()),t=fc();return Number.isInteger(t)?t:e.getFirstDayOfWeek()}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`}}Mc.define();const Pc=(e,t,i)=>vi`<div class="ui5-mp-root" role="grid" aria-readonly="false" aria-multiselectable="false" @keydown=${e._onkeydown} @keyup=${e._onkeyup} @click=${e._selectMonth} @focusin=${e._onfocusin}>${Ai(e._months,(e,t)=>e._id||t,(e,t)=>Lc(e))}</div>`,Lc=(e,t,i,o,r)=>vi`<div class="ui5-mp-quarter">${Ai(e,(e,t)=>e._id||t,(e,t)=>Nc(e))}</div>`,Nc=(e,t,i,o,r)=>vi`<div data-sap-timestamp=${Mi(e.timestamp)} tabindex=${Mi(e._tabIndex)} ?data-sap-focus-ref="${e.focusRef}" class="${Mi(e.classes)}" role="gridcell" aria-selected="${Mi(e.ariaSelected)}">${Mi(e.name)}</div>`;te("@ui5/webcomponents-theming","sap_fiori_3",()=>zr),te("@ui5/webcomponents","sap_fiori_3",()=>Or);var zc={packageName:"@ui5/webcomponents",fileName:"themesMonthPicker.css",content:':host(:not([hidden])){display:block}:host{width:100%;height:100%}.ui5-mp-root{padding:2rem 0 1rem 0;display:flex;flex-direction:column;font-family:"72override",var(--sapFontFamily);font-size:var(--sapFontSize);justify-content:center;align-items:center}.ui5-mp-item{display:flex;width:calc(33.333% - .125rem);height:var(--_ui5_month_picker_item_height);color:var(--sapTextColor);background-color:var(--sapLegend_WorkingBackground);align-items:center;justify-content:center;margin:var(--_ui5_monthpicker_item_margin);box-sizing:border-box;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:default;outline:none;position:relative;border:var(--_ui5_monthpicker_item_border);border-radius:var(--_ui5_monthpicker_item_border_radius)}.ui5-mp-item:hover{background-color:var(--sapList_Hover_Background)}.ui5-mp-item.ui5-mp-item--selected{box-shadow:var(--_ui5_monthpicker_item_selected_box_shadow);font-weight:var(--_ui5_monthpicker_item_selected_font_wieght);background-color:var(--_ui5_monthpicker_item_selected_background_color);color:var(--_ui5_monthpicker_item_selected_text_color)}.ui5-mp-item.ui5-mp-item--disabled{pointer-events:none;opacity:.5}.ui5-mp-item.ui5-mp-item--selected:focus{background-color:var(--sapContent_Selected_Background)}.ui5-mp-item.ui5-mp-item--selected:focus:after{border-color:var(--sapContent_ContrastFocusColor)}.ui5-mp-item.ui5-mp-item--selected:hover{background-color:var(--_ui5_monthpicker_item_selected_hover_color)}.ui5-mp-item:focus:after{content:"";position:absolute;width:var(--_ui5_monthpicker_item_focus_after_width);height:var(--_ui5_monthpicker_item_focus_after_height);border:var(--_ui5_monthpicker_item_focus_after_border);top:var(--_ui5_monthpicker_item_focus_after_offset);left:var(--_ui5_monthpicker_item_focus_after_offset);border-radius:var(--_ui5_monthpicker_item_focus_after_border_radius);outline:var(--_ui5_monthpicker_item_focus_after_outline)}.ui5-mp-quarter{display:flex;justify-content:center;align-items:center;width:100%}'};const Oc={tag:"ui5-monthpicker",properties:{selectedDates:{type:dn,multiple:!0,compareValues:!0},_months:{type:Object,multiple:!0},_hidden:{type:Boolean,noAttribute:!0}},events:{change:{},navigate:{}}};class Hc extends tc{static get metadata(){return Oc}static get template(){return Pc}static get styles(){return zc}onBeforeRendering(){this._buildMonths()}_buildMonths(){if(this._hidden)return;const e=nd(No()).getMonths("wide",this._primaryCalendarType),t=[],i=this._calendarDate,o=this._minDate,r=this._maxDate,a=new zu(i,this._primaryCalendarType);let n;for(let s=0;s<12;s++){a.setMonth(s),n=a.valueOf()/1e3;const l=this.selectedDates.some(e=>{const t=zu.fromTimestamp(1e3*e,this._primaryCalendarType);return t.getYear()===a.getYear()&&t.getMonth()===a.getMonth()}),u=a.getMonth()===i.getMonth(),d=this._isOutOfSelectableRange(a,o,r),c={timestamp:n.toString(),focusRef:u,_tabIndex:u?"0":"-1",selected:l,ariaSelected:l?"true":"false",name:e[s],disabled:d,classes:"ui5-mp-item"};l&&(c.classes+=" ui5-mp-item--selected"),d&&(c.classes+=" ui5-mp-item--disabled");const _=parseInt(s/3);t[_]?t[_].push(c):t[_]=[c]}this._months=t}onAfterRendering(){this._hidden||this.focus()}_onkeydown(e){let t=!0;eo(e)?this._selectMonth(e):io(e)?e.preventDefault():ro(e)?this._modifyTimestampBy(-1):ao(e)?this._modifyTimestampBy(1):no(e)?this._modifyTimestampBy(-3):so(e)?this._modifyTimestampBy(3):yo(e)?this._modifyTimestampBy(-12):wo(e)?this._modifyTimestampBy(12):ho(e)||po(e)?this._onHomeOrEnd(ho(e)):go(e)?this._setTimestamp(parseInt(this._months[0][0].timestamp)):mo(e)?this._setTimestamp(parseInt(this._months[3][2].timestamp)):t=!1,t&&e.preventDefault()}_onHomeOrEnd(e){this._months.forEach(t=>{if(-1!==t.findIndex(e=>zu.fromTimestamp(1e3*parseInt(e.timestamp)).getMonth()===this._calendarDate.getMonth())){const i=e?0:2;this._setTimestamp(parseInt(t[i].timestamp))}})}_setTimestamp(e){this._safelySetTimestamp(e),this.fireEvent("navigate",{timestamp:this.timestamp})}_modifyTimestampBy(e){this._safelyModifyTimestampBy(e,"month"),this.fireEvent("navigate",{timestamp:this.timestamp})}_onkeyup(e){io(e)&&this._selectMonth(e)}_selectMonth(e){if(e.preventDefault(),e.target.className.indexOf("ui5-mp-item")>-1){const t=this._getTimestampFromDom(e.target);this._safelySetTimestamp(t),this.fireEvent("change",{timestamp:this.timestamp})}}_hasPreviousPage(){return this._calendarDate.getYear()!==this._minDate.getYear()}_hasNextPage(){return this._calendarDate.getYear()!==this._maxDate.getYear()}_showPreviousPage(){this._modifyTimestampBy(-12)}_showNextPage(){this._modifyTimestampBy(12)}_isOutOfSelectableRange(e,t,i){const o=e.getMonth(),r=e.getYear(),a=t.getYear(),n=t.getMonth(),s=i.getYear(),l=i.getMonth();return r<a||r===a&&o<n||r>s||r===s&&o>l}}Hc.define();const Rc=(e,t,i)=>vi`<div class="ui5-yp-root" role="grid" aria-readonly="false" aria-multiselectable="false" @keydown=${e._onkeydown} @keyup=${e._onkeyup} @click=${e._selectYear} @focusin=${e._onfocusin}>${Ai(e._years,(e,t)=>e._id||t,(e,t)=>Uc(e))}</div>`,Uc=(e,t,i,o,r)=>vi`<div class="ui5-yp-interval-container">${Ai(e,(e,t)=>e._id||t,(e,t)=>Vc(e))}</div>`,Vc=(e,t,i,o,r)=>vi`<div data-sap-timestamp="${Mi(e.timestamp)}" tabindex="${Mi(e._tabIndex)}" ?data-sap-focus-ref="${e.focusRef}" class="${Mi(e.classes)}" role="gridcell" aria-selected="${Mi(e.ariaSelected)}">${Mi(e.year)}</div>`;te("@ui5/webcomponents-theming","sap_fiori_3",()=>zr),te("@ui5/webcomponents","sap_fiori_3",()=>Or);var jc={packageName:"@ui5/webcomponents",fileName:"themesYearPicker.css",content:':host(:not([hidden])){display:block}:host{width:100%;height:100%}.ui5-yp-root{padding:2rem 0 1rem 0;display:flex;flex-direction:column;font-family:"72override",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(--sapTextColor);background-color:var(--sapLegend_WorkingBackground);align-items:center;justify-content:center;box-sizing:border-box;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:default;outline:none;position:relative;border:var(--_ui5_yearpicker_item_border);border-radius:var(--_ui5_yearpicker_item_border_radius)}.ui5-yp-item:hover{background-color:var(--sapList_Hover_Background)}.ui5-yp-item.ui5-yp-item--selected{background-color:var(--_ui5_yearpicker_item_selected_background_color);color:var(--_ui5_yearpicker_item_selected_text_color);box-shadow:var(--_ui5_yearpicker_item_selected_box_shadow);font-weight:700}.ui5-yp-item.ui5-yp-item--disabled{pointer-events:none;opacity:.5}.ui5-yp-item.ui5-yp-item--selected:focus{background-color:var(--_ui5_yearpicker_item_selected_focus)}.ui5-yp-item.ui5-yp-item--selected:focus:after{border-color:var(--sapContent_ContrastFocusColor)}.ui5-yp-item.ui5-yp-item--selected:hover{background-color:var(--_ui5_yearpicker_item_selected_hover_color)}.ui5-yp-item:focus:after{content:"";position:absolute;width:var(--_ui5_yearpicker_item_focus_after_width);height:var(--_ui5_yearpicker_item_focus_after_height);border:var(--_ui5_yearpicker_item_focus_after_border);top:var(--_ui5_yearpicker_item_focus_after_offset);left:var(--_ui5_yearpicker_item_focus_after_offset);border-radius:var(--_ui5_yearpicker_item_focus_after_border_radius);outline:var(--_ui5_yearpicker_item_focus_after_outline)}'};const Wc={tag:"ui5-yearpicker",properties:{selectedDates:{type:dn,multiple:!0,compareValues:!0},_years:{type:Object,multiple:!0},_hidden:{type:Boolean,noAttribute:!0}},events:{change:{},navigate:{}}};class qc extends tc{static get metadata(){return Wc}static get styles(){return jc}static get template(){return Rc}onBeforeRendering(){this._buildYears()}_buildYears(){if(this._hidden)return;const e=Ju.getDateInstance({format:"y",calendarType:this._primaryCalendarType},No());this._calculateFirstYear(),this._lastYear=this._firstYear+20-1;const t=this._calendarDate,i=this._minDate,o=this._maxDate,r=new zu(t,this._primaryCalendarType);r.setYear(this._firstYear);const a=[];let n;for(let s=0;s<20;s++){n=r.valueOf()/1e3;const l=this.selectedDates.some(e=>zu.fromTimestamp(1e3*e,this._primaryCalendarType).getYear()===r.getYear()),u=r.getYear()===t.getYear(),d=r.getYear()<i.getYear()||r.getYear()>o.getYear(),c={timestamp:n.toString(),_tabIndex:u?"0":"-1",focusRef:u,selected:l,ariaSelected:l?"true":"false",year:e.format(r.toLocalJSDate()),disabled:d,classes:"ui5-yp-item"};l&&(c.classes+=" ui5-yp-item--selected"),d&&(c.classes+=" ui5-yp-item--disabled");const _=parseInt(s/4);a[_]?a[_].push(c):a[_]=[c],r.setYear(r.getYear()+1)}this._years=a}_calculateFirstYear(){const e=ld(this._primaryCalendarType).getYear(),t=this._calendarDate.getYear();this._firstYear||(this._firstYear=t-10),t<this._firstYear?this._firstYear-=20:t>=this._firstYear+20&&(this._firstYear+=20),Math.abs(this._firstYear-t)>=20&&(this._firstYear=t-10),this._firstYear=Math.max(this._firstYear,this._minDate.getYear()),this._firstYear=Math.min(this._firstYear,this._maxDate.getYear()),this._firstYear>e-20+1&&(this._firstYear=e-20+1)}onAfterRendering(){this._hidden||this.focus()}_onkeydown(e){let t=!0;eo(e)?this._selectYear(e):io(e)?e.preventDefault():ro(e)?this._modifyTimestampBy(-1):ao(e)?this._modifyTimestampBy(1):no(e)?this._modifyTimestampBy(-4):so(e)?this._modifyTimestampBy(4):yo(e)?this._modifyTimestampBy(-20):wo(e)?this._modifyTimestampBy(20):ho(e)||po(e)?this._onHomeOrEnd(ho(e)):go(e)?this._setTimestamp(parseInt(this._years[0][0].timestamp)):mo(e)?this._setTimestamp(parseInt(this._years[4][3].timestamp)):t=!1,t&&e.preventDefault()}_onHomeOrEnd(e){this._years.forEach(t=>{if(-1!==t.findIndex(e=>zu.fromTimestamp(1e3*parseInt(e.timestamp)).getYear()===this._calendarDate.getYear())){const i=e?0:3;this._setTimestamp(parseInt(t[i].timestamp))}})}_setTimestamp(e){this._safelySetTimestamp(e),this.fireEvent("navigate",{timestamp:this.timestamp})}_modifyTimestampBy(e){this._safelyModifyTimestampBy(e,"year"),this.fireEvent("navigate",{timestamp:this.timestamp})}_onkeyup(e){io(e)&&this._selectYear(e)}_selectYear(e){if(e.preventDefault(),e.target.className.indexOf("ui5-yp-item")>-1){const t=this._getTimestampFromDom(e.target);this._safelySetTimestamp(t),this.fireEvent("change",{timestamp:this.timestamp})}}_hasPreviousPage(){return this._firstYear>this._minDate.getYear()}_hasNextPage(){return this._firstYear+20-1<this._maxDate.getYear()}_showPreviousPage(){this._modifyTimestampBy(-20)}_showNextPage(){this._modifyTimestampBy(20)}}qc.define();var Yc=Fu.extend("sap.ui.core.date.Gregorian",{constructor:function(){this.oDate=this.createDate(Date,arguments),this.sCalendarType=eu.Gregorian}});Yc.UTC=function(){return Date.UTC.apply(Date,arguments)},Yc.now=function(){return Date.now()},Au(eu.Gregorian,Yc);const Gc=(e,t,i)=>vi`<div class="ui5-cal-root" @keydown=${e._onkeydown}><div id="${Mi(e._id)}-content" class="ui5-cal-content"><${zi("ui5-daypicker",t,i)} id="${Mi(e._id)}-daypicker" ?hidden="${e._isDayPickerHidden}" format-pattern="${Mi(e._formatPattern)}" .selectedDates="${Mi(e._selectedDatesTimestamps)}" ._hidden="${Mi(e._isDayPickerHidden)}" .primaryCalendarType="${Mi(e._primaryCalendarType)}" .secondaryCalendarType="${Mi(e.secondaryCalendarType)}" .selectionMode="${Mi(e.selectionMode)}" .minDate="${Mi(e.minDate)}" .maxDate="${Mi(e.maxDate)}" timestamp="${Mi(e._timestamp)}" ?hide-week-numbers="${e.hideWeekNumbers}" @ui5-change="${Mi(e.onSelectedDatesChange)}" @ui5-navigate="${Mi(e.onNavigate)}"></${zi("ui5-daypicker",t,i)}><${zi("ui5-monthpicker",t,i)} id="${Mi(e._id)}-MP" ?hidden="${e._isMonthPickerHidden}" format-pattern="${Mi(e._formatPattern)}" .selectedDates="${Mi(e._selectedDatesTimestamps)}" ._hidden="${Mi(e._isMonthPickerHidden)}" .primaryCalendarType="${Mi(e._primaryCalendarType)}" .minDate="${Mi(e.minDate)}" .maxDate="${Mi(e.maxDate)}" timestamp="${Mi(e._timestamp)}" @ui5-change="${Mi(e.onSelectedMonthChange)}" @ui5-navigate="${Mi(e.onNavigate)}"></${zi("ui5-monthpicker",t,i)}><${zi("ui5-yearpicker",t,i)} id="${Mi(e._id)}-YP" ?hidden="${e._isYearPickerHidden}" format-pattern="${Mi(e._formatPattern)}" .selectedDates="${Mi(e._selectedDatesTimestamps)}" ._hidden="${Mi(e._isYearPickerHidden)}" .primaryCalendarType="${Mi(e._primaryCalendarType)}" .minDate="${Mi(e.minDate)}" .maxDate="${Mi(e.maxDate)}" timestamp="${Mi(e._timestamp)}" @ui5-change="${Mi(e.onSelectedYearChange)}" @ui5-navigate="${Mi(e.onNavigate)}"></${zi("ui5-yearpicker",t,i)}></div><!-- Positioned above the content due to flex-direction:column-reverse, but physically here for tab order to work --><${zi("ui5-calendar-header",t,i)} id="${Mi(e._id)}-head" .primaryCalendarType="${Mi(e._primaryCalendarType)}" .secondaryCalendarType="${Mi(e.secondaryCalendarType)}" .buttonTextForSecondaryCalendarType="${Mi(e.secondaryCalendarTypeButtonText)}" timestamp="${Mi(e._timestamp)}" .isPrevButtonDisabled="${Mi(e._previousButtonDisabled)}" .isNextButtonDisabled="${Mi(e._nextButtonDisabled)}" .isMonthButtonHidden="${Mi(e._isHeaderMonthButtonHidden)}" ._monthButtonText="${Mi(e._headerMonthButtonText)}" ._yearButtonText="${Mi(e._headerYearButtonText)}" @ui5-previous-press="${Mi(e.onHeaderPreviousPress)}" @ui5-next-press="${Mi(e.onHeaderNextPress)}" @ui5-show-month-press="${Mi(e.onHeaderShowMonthPress)}" @ui5-show-year-press="${Mi(e.onHeaderShowYearPress)}"></${zi("ui5-calendar-header",t,i)}></div>`;te("@ui5/webcomponents-theming","sap_fiori_3",()=>zr),te("@ui5/webcomponents","sap_fiori_3",()=>Or);var Xc={packageName:"@ui5/webcomponents",fileName:"themesCalendar.css",content:":host(:not([hidden])){display:inline-block}.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_padding);display:flex;flex-direction:column-reverse;justify-content:flex-end}.ui5-cal-root [ui5-calendar-header]{height:var(--_ui5_calendar_header_height)}"};const Zc={tag:"ui5-calendar",properties:{selectionMode:{type:yc,defaultValue:yc.Single},hideWeekNumbers:{type:Boolean},_currentPicker:{type:String,defaultValue:"day"},_previousButtonDisabled:{type:Boolean},_nextButtonDisabled:{type:Boolean},_headerMonthButtonText:{type:String},_headerYearButtonText:{type:String}},managedSlots:!0,slots:{default:{propertyName:"dates",type:HTMLElement,invalidateOnChildChange:!0}},events:{"selected-dates-change":{detail:{dates:{type:Array},values:{type:Array}}},"show-month-press":{},"show-year-press":{}}};class Jc extends tc{static get metadata(){return Zc}static get template(){return Gc}static get styles(){return Xc}get _selectedDatesTimestamps(){return this.dates.map(e=>{const t=e.value;return t&&this.getFormat().parse(t)?this._getTimeStampFromString(t)/1e3:void 0}).filter(e=>!!e)}_setSelectedDates(e){const t=e.map(e=>this.getFormat().format(new Date(1e3*e),!0)),i=[...this.dates].map(e=>e.value);this.dates.filter(e=>!t.includes(e.value)).forEach(e=>{this.removeChild(e)}),t.filter(e=>!i.includes(e)).forEach(e=>{const t=document.createElement("ui5-date");t.value=e,this.appendChild(t)})}async onAfterRendering(){await b(),this._previousButtonDisabled=!this._currentPickerDOM._hasPreviousPage(),this._nextButtonDisabled=!this._currentPickerDOM._hasNextPage();const e=Ju.getDateInstance({format:"y",calendarType:this.primaryCalendarType}),t=nd(No());if(this._headerMonthButtonText=t.getMonths("wide",this.primaryCalendarType)[this._calendarDate.getMonth()],"year"===this._currentPicker){const t=new zu(this._calendarDate,this._primaryCalendarType),i=new zu(this._calendarDate,this._primaryCalendarType);t.setYear(this._currentPickerDOM._firstYear),i.setYear(this._currentPickerDOM._lastYear),this._headerYearButtonText=`${e.format(t.toLocalJSDate(),!0)} - ${e.format(i.toLocalJSDate(),!0)}`}else this._headerYearButtonText=String(e.format(this._localDate,!0))}onHeaderShowMonthPress(e){this._currentPickerDOM._autoFocus=!1,this._currentPicker="month",this.fireEvent("show-month-press",e)}onHeaderShowYearPress(e){this._currentPickerDOM._autoFocus=!1,this._currentPicker="year",this.fireEvent("show-year-press",e)}get _currentPickerDOM(){return this.shadowRoot.querySelector(`[ui5-${this._currentPicker}picker]`)}onHeaderPreviousPress(){this._currentPickerDOM._showPreviousPage()}onHeaderNextPress(){this._currentPickerDOM._showNextPage()}get secondaryCalendarTypeButtonText(){if(!this.secondaryCalendarType)return;const e=new Date(1e3*this._timestamp),t=Ju.getDateInstance({format:"y",calendarType:this.secondaryCalendarType}),i=this._getDisplayedSecondaryMonthText();return{yearButtonText:t.format(e,!0),monthButtonText:i.text,monthButtonInfo:i.info}}_getDisplayedSecondaryMonthText(){const e=this._getDisplayedSecondaryMonths(),t=nd(No()),i=t.getIntervalPattern(),o=nd(No()).getMonthsStandAlone("abbreviated",this.secondaryCalendarType),r=nd(No()).getMonthsStandAlone("wide",this.secondaryCalendarType);return e.startMonth===e.endMonth?{text:t.getMonths("abbreviated",this.secondaryCalendarType)[e.startMonth],textInfo:t.getMonths("wide",this.secondaryCalendarType)[e.startMonth]}:{text:i.replace(/\{0\}/,o[e.startMonth]).replace(/\{1\}/,o[e.endMonth]),textInfo:i.replace(/\{0\}/,r[e.startMonth]).replace(/\{1\}/,r[e.endMonth])}}_getDisplayedSecondaryMonths(){const e=new Date(1e3*this._timestamp);let t=zu.fromLocalJSDate(e,this._primaryCalendarType);t.setDate(1),t=new zu(t,this.secondaryCalendarType);const i=t.getMonth();let o=zu.fromLocalJSDate(e,this._primaryCalendarType);return o.setDate(this._getDaysInMonth(o)),o=new zu(o,this.secondaryCalendarType),{startMonth:i,endMonth:o.getMonth()}}_getDaysInMonth(e){const t=new zu(e);return t.setDate(1),t.setMonth(t.getMonth()+1),t.setDate(0),t.getDate()}get _isHeaderMonthButtonHidden(){return"month"===this._currentPicker||"year"===this._currentPicker}get _isDayPickerHidden(){return"day"!==this._currentPicker}get _isMonthPickerHidden(){return"month"!==this._currentPicker}get _isYearPickerHidden(){return"year"!==this._currentPicker}onSelectedDatesChange(e){const t=e.detail.timestamp,i=e.detail.dates,o=i.map(e=>{const t=zu.fromTimestamp(1e3*e,this._primaryCalendarType);return this.getFormat().format(t.toUTCJSDate(),!0)});this.timestamp=t,!this.fireEvent("selected-dates-change",{timestamp:t,dates:[...i],values:o},!0)||this._setSelectedDates(i)}onSelectedMonthChange(e){this.timestamp=e.detail.timestamp,this._currentPicker="day",this._currentPickerDOM._autoFocus=!0}onSelectedYearChange(e){this.timestamp=e.detail.timestamp,this._currentPicker="day",this._currentPickerDOM._autoFocus=!0}onNavigate(e){this.timestamp=e.detail.timestamp}_onkeydown(e){Bo(e)&&"month"!==this._currentPicker&&(this._currentPicker="month"),(e=>(e.key?"F4"===e.key:e.keyCode===Qi)&&Ao(e,!1,!1,!0))(e)&&"year"!==this._currentPicker&&(this._currentPicker="year")}get selectedDates(){return this._selectedDatesTimestamps}set selectedDates(e){this._setSelectedDates(e)}static get dependencies(){return[Qd,gc,Mc,Hc,qc]}}Jc.define();const Kc=(e,t,i)=>vi`<div class="ui5-date-picker-root" style="${Ei(e.styles.main)}"><!-- INPUT --><${zi("ui5-input",t,i)} id="${Mi(e._id)}-inner" class="ui5-date-picker-input" placeholder="${Mi(e._placeholder)}" type="${Mi(e.type)}" value="${Mi(e.value)}" ?disabled="${e.disabled}" ?required="${e.required}" ?readonly="${e.readonly}" value-state="${Mi(e.valueState)}" data-sap-focus-ref ._inputAccInfo ="${Mi(e.accInfo)}" @ui5-change="${Mi(e._onInputChange)}" @ui5-input="${Mi(e._onInputInput)}" @ui5-submit="${Mi(e._onInputSubmit)}" @keydown="${e._onkeydown}">${e.valueStateMessage.length?Qc():void 0}${e.readonly?void 0:e_(e,t,i)}</${zi("ui5-input",t,i)}><slot name="formSupport"></slot></div>`,Qc=(e,t,i)=>vi`<slot name="valueStateMessage" slot="valueStateMessage"></slot>`,e_=(e,t,i)=>vi`<${zi("ui5-icon",t,i)} slot="icon" name="${Mi(e.openIconName)}" tabindex="-1" accessible-name="${Mi(e.openIconTitle)}" show-tooltip @click="${e.togglePicker}" input-icon ?pressed="${e._isPickerOpen}" dir="${Mi(e.effectiveDir)}"></${zi("ui5-icon",t,i)}>`,t_=(e,t,i)=>vi`<${zi("ui5-responsive-popover",t,i)} id="${Mi(e._id)}-responsive-popover" allow-target-overlap stay-open-on-scroll placement-type="Bottom" horizontal-align="Left" ?disable-scrolling="${e._isIE}" hide-arrow with-padding ?_hide-header=${Mi(e._shouldHideHeader)} @keydown="${e._onkeydown}" @ui5-after-close="${Mi(e.onResponsivePopoverAfterClose)}">${e.showHeader?i_(e,t,i):void 0}<${zi("ui5-calendar",t,i)} id="${Mi(e._id)}-calendar" primary-calendar-type="${Mi(e._primaryCalendarType)}" secondary-calendar-type="${Mi(e.secondaryCalendarType)}" format-pattern="${Mi(e._formatPattern)}" timestamp="${Mi(e._calendarTimestamp)}" .selectionMode="${Mi(e._calendarSelectionMode)}" .minDate="${Mi(e.minDate)}" .maxDate="${Mi(e.maxDate)}" @ui5-selected-dates-change="${Mi(e.onSelectedDatesChange)}" @ui5-show-month-press="${Mi(e.onHeaderShowMonthPress)}" @ui5-show-year-press="${Mi(e.onHeaderShowYearPress)}" ?hide-week-numbers="${e.hideWeekNumbers}" ._currentPicker="${Mi(e._calendarCurrentPicker)}">${Ai(e._calendarSelectedDates,(e,t)=>e._id||t,(o,r)=>o_(o,r,e,t,i))}</${zi("ui5-calendar",t,i)}>${e.showFooter?r_():void 0}</${zi("ui5-responsive-popover",t,i)}> `,i_=(e,t,i)=>vi`<div slot="header" class="ui5-responsive-popover-header"><div class="row"><span>${Mi(e._headerTitleText)}</span><${zi("ui5-button",t,i)} class="ui5-responsive-popover-close-btn" icon="decline" design="Transparent" @click="${e.closePicker}"></${zi("ui5-button",t,i)}></div></div>`,o_=(e,t,i,o,r)=>vi`<${zi("ui5-date",o,r)} value="${Mi(e)}"></${zi("ui5-date",o,r)}>`,r_=(e,t,i)=>vi``;te("@ui5/webcomponents-theming","sap_fiori_3",()=>zr),te("@ui5/webcomponents","sap_fiori_3",()=>Or);var a_={packageName:"@ui5/webcomponents",fileName:"themesDatePicker.css",content:".ui5-hidden-text{position:absolute;clip:rect(1px,1px,1px,1px);user-select:none;left:-1000px;top:-1000px;pointer-events:none;font-size:0}[input-icon]{color:var(--_ui5_input_icon_color);cursor:pointer;outline:none;padding:var(--_ui5_input_icon_padding);margin-right:var(--_ui5_input_icon_margin);border-left:var(--_ui5_input_icon_border);min-width:1rem;min-height:1rem;border-radius:var(--_ui5_input_icon_border_radius);align-self:center}[input-icon][pressed]{background:var(--_ui5_input_icon_pressed_bg);box-shadow:var(--_ui5_input_icon_box_shadow);color:var(--_ui5_input_icon_pressed_color)}[input-icon]:active{background-color:var(--sapButton_Active_Background);box-shadow:var(--_ui5_input_icon_box_shadow);color:var(--_ui5_input_icon_pressed_color)}[input-icon]:not([pressed]):not(:active):hover{background:var(--_ui5_input_icon_hover_bg);box-shadow:var(--_ui5_input_icon_box_shadow)}[input-icon]:hover{border-left:var(--_ui5_select_hover_icon_left_border);box-shadow:var(--_ui5_input_icon_box_shadow)}[input-icon][dir=rtl]:hover{border-left:none;border-right:var(--_ui5_select_hover_icon_left_border)}[input-icon][dir=rtl]{border-left:none;margin-right:0;margin-left:var(--_ui5_input_icon_margin);border-right:var(--_ui5_input_icon_border)}:host(:not([hidden])){display:inline-block;line-height:normal;letter-spacing:normal;word-spacing:normal}:host{color:var(--sapField_TextColor);background-color:var(--sapField_Background);border-radius:var(--_ui5-datepicker_border_radius)}:host([value-state=Error]){background-color:var(--sapField_InvalidBackground)}:host(:not([disabled]):not([readonly]):active){background:var(--_ui5-datepicker-hover-background)}:host(:not([disabled]):not([readonly]):hover){background:var(--_ui5-datepicker-hover-background)}:host .ui5-date-picker-input{width:100%;min-width:12.5625rem;color:inherit;background-color:inherit;line-height:inherit;letter-spacing:inherit;word-spacing:inherit}:host(:not([disabled]):not([readonly])) .ui5-date-picker-input[focused]{background-color:var(--_ui5-datepicker-hover-background)}[slot=icon]{border-top-right-radius:var(--_ui5-datepicker_icon_border_radius);border-bottom-right-radius:var(--_ui5-datepicker_icon_border_radius)}"};te("@ui5/webcomponents-theming","sap_fiori_3",()=>zr),te("@ui5/webcomponents","sap_fiori_3",()=>Or);var n_={packageName:"@ui5/webcomponents",fileName:"themesDatePickerPopover.css",content:"[ui5-calendar]{width:100%;display:flex;justify-content:center}"};const s_={tag:"ui5-date-picker",altTag:"ui5-datepicker",managedSlots:!0,properties:{value:{type:String},valueState:{type:Oa,defaultValue:Oa.None},required:{type:Boolean},disabled:{type:Boolean},readonly:{type:Boolean},placeholder:{type:String,defaultValue:void 0},name:{type:String},hideWeekNumbers:{type:Boolean},accessibleName:{type:String},accessibleNameRef:{type:String,defaultValue:""},_isPickerOpen:{type:Boolean,noAttribute:!0},_respPopoverConfig:{type:Object},_calendarCurrentPicker:{type:String,defaultValue:"day"}},slots:{valueStateMessage:{type:HTMLElement},formSupport:{type:HTMLElement}},events:{change:{details:{value:{type:String},valid:{type:Boolean}}},input:{details:{value:{type:String},valid:{type:Boolean}}}}};class l_ extends dd{static get metadata(){return s_}static get template(){return Kc}static get staticAreaTemplate(){return t_}static get styles(){return a_}static get staticAreaStyles(){return[qs,n_]}onResponsivePopoverAfterClose(){this._isPickerOpen=!1,yr()?this.blur():this._getInput().focus()}onBeforeRendering(){["minDate","maxDate"].forEach(e=>{this[e]&&!this.isValid(this[e])&&console.warn(`Invalid value for property "${e}": ${this[e]} is not compatible with the configured format pattern: "${this._displayFormat}"`)});const e=A("FormSupport");e?e.syncNativeHiddenInput(this):this.name&&console.warn('In order for the "name" property to have effect, you should also: import "@ui5/webcomponents/dist/features/InputElementsFormSupport.js";'),this.liveValue=this.value}get _calendarSelectionMode(){return"Single"}get _calendarTimestamp(){if(this.value&&this._checkValueValidity(this.value)){return(e=>(e||(e=(new Date).getTime()),(e-e%864e5)/1e3))(this.dateValueUTC.getTime())}return ju(this._primaryCalendarType)}get _calendarSelectedDates(){return this.value&&this._checkValueValidity(this.value)?[this.value]:[]}_onkeydown(e){To(e)&&(e.preventDefault(),this.isOpen()&&Bo(e)||this._toggleAndFocusInput()),this.isOpen()||(Co(e)?(e.preventDefault(),this._modifyDateValue(1,"year")):ko(e)?(e.preventDefault(),this._modifyDateValue(1,"month")):yo(e)?(e.preventDefault(),this._modifyDateValue(1,"day")):So(e)?(e.preventDefault(),this._modifyDateValue(-1,"year")):xo(e)?(e.preventDefault(),this._modifyDateValue(-1,"month")):wo(e)&&(e.preventDefault(),this._modifyDateValue(-1,"day")))}_modifyDateValue(e,t){if(!this.dateValue)return;const i=Vu(zu.fromLocalJSDate(this.dateValue),e,t,this._minDate,this._maxDate),o=this.formatValue(i.toUTCJSDate());this._updateValueAndFireEvents(o,!0,["change","value-changed"])}_updateValueAndFireEvents(e,t,i,o=!0){const r=this._checkValueValidity(e);r&&t&&(e=this.normalizeValue(e));let a=!0;this.liveValue=e,i.forEach(t=>{this.fireEvent(t,{value:e,valid:r},!0)||(a=!1)}),a&&o&&(this.value=e,this._updateValueState())}_updateValueState(){const e=this._checkValueValidity(this.value);e?e&&this.valueState===Oa.Error&&(this.valueState=Oa.None):this.valueState=Oa.Error}_toggleAndFocusInput(){this.togglePicker(),this._getInput().focus()}_getInput(){return this.shadowRoot.querySelector("[ui5-input]")}_onInputSubmit(e){}_onInputChange(e){this._updateValueAndFireEvents(e.target.value,!0,["change","value-changed"])}async _onInputInput(e){this._updateValueAndFireEvents(e.target.value,!1,["input"],!1)}_checkValueValidity(e){return""===e||this.isValid(e)&&this.isInValidRange(e)}_click(e){yr()&&(this.responsivePopover.showAt(this),e.preventDefault())}isValid(e=""){return""===e||!!this.getFormat().parse(e)}isInValidRange(e=""){if(""===e)return!0;const t=this._getCalendarDateFromString(e);return t.valueOf()>=this._minDate.valueOf()&&t.valueOf()<=this._maxDate.valueOf()}normalizeValue(e){return""===e?e:this.getFormat().format(this.getFormat().parse(e,!0),!0)}get _displayFormat(){return this.getFormat().oFormatOptions.pattern}get _placeholder(){return void 0!==this.placeholder?this.placeholder:this._displayFormat}get _headerTitleText(){return l_.i18nBundle.getText(Kr)}get phone(){return yr()}get showHeader(){return this.phone}get showFooter(){return this.phone}get _isIE(){return fr()}get accInfo(){return{ariaRoledescription:this.dateAriaDescription,ariaHasPopup:"true",ariaAutoComplete:"none",role:"combobox",ariaControls:`${this._id}-responsive-popover`,ariaExpanded:this.isOpen(),ariaRequired:this.required,ariaLabel:cn(this)}}get openIconTitle(){return l_.i18nBundle.getText(Gr)}get openIconName(){return"appointment-2"}get dateAriaDescription(){return l_.i18nBundle.getText(Xr)}get _shouldHideHeader(){return!1}async _respPopover(){return(await this.getStaticAreaItemDomRef()).querySelector("[ui5-responsive-popover]")}_canOpenPicker(){return!this.disabled&&!this.readonly}onSelectedDatesChange(e){e.preventDefault();const t=e.detail.values&&e.detail.values[0];this._updateValueAndFireEvents(t,!0,["change","value-changed"]),this.closePicker()}onHeaderShowMonthPress(){this._calendarCurrentPicker="month"}onHeaderShowYearPress(){this._calendarCurrentPicker="year"}formatValue(e){return this.getFormat().format(e)}closePicker(){this.responsivePopover.close()}async openPicker(){this._isPickerOpen=!0,this._calendarCurrentPicker="day",this.responsivePopover=await this._respPopover(),this.responsivePopover.showAt(this)}togglePicker(){this.isOpen()?this.closePicker():this._canOpenPicker()&&this.openPicker()}isOpen(){return!!this._isPickerOpen}get dateValue(){return this.liveValue?this.getFormat().parse(this.liveValue):this.getFormat().parse(this.value)}get dateValueUTC(){return this.liveValue?this.getFormat().parse(this.liveValue,!0):this.getFormat().parse(this.value)}get styles(){return{main:{width:"100%"}}}get type(){return Sn.Text}static get dependencies(){return[Ur,Jd,Jc,Qd,Js,Na]}}l_.define();const u_="M256.5 103c15 0 25 11 25 26v120l72 95c7 10 5 28-5 35-11 8-29 5-36-5l-77-102c-2-5-5-10-5-15V129c0-15 10-26 26-26zm0-102c140 0 255 115 255 256 0 140-115 255-255 255-16 0-26-10-26-25 0-16 10-26 26-26 112 0 204-92 204-204 0-113-92-205-204-205-105 0-192 79-202 182-3 12-16 23-28 23-16-3-26-16-23-28 15-128 122-228 253-228zm-103 307c16 0 26 10 26 25 0 16-10 26-26 26h-127c-16 0-26-10-26-26 0-15 10-25 26-25h127zm0 76c16 0 26 11 26 26s-10 26-26 26h-127c-16 0-26-11-26-26s10-26 26-26h127zm0 77c16 0 26 10 26 26 0 15-10 25-26 25h-127c-16 0-26-10-26-25 0-16 10-26 26-26h127z";Ar("time-entry-request",{pathData:u_,ltr:!1,collection:"SAP-icons-v5",packageName:"@ui5/webcomponents-icons"});var d_={pathData:u_};const c_="M416 272q0 16-16 16H224V144q0-16 16-16t16 16v112h144q16 0 16 16zM256 0q53 0 99.5 20T437 75t55 81.5 20 99.5q0 49-17.5 92.5T447 426t-71 56-88 28v-32q40-6 75.5-25.5t61-49T465 336t15-80q0-46-17.5-87t-48-71.5-71.5-48T256 32q-38 0-72.5 12T121 77.5t-49 51T41 192H8q11-41 34.5-76.5t56-61 72.5-40T256 0zM144 480q16 0 16 16 0 6-4.5 11t-11.5 5H16q-6 0-11-5t-5-11q0-7 5-11.5t11-4.5h128zm0-64q16 0 16 16 0 6-4.5 11t-11.5 5H16q-6 0-11-5t-5-11q0-7 5-11.5t11-4.5h128zm0-64q16 0 16 16 0 6-4.5 11t-11.5 5H16q-6 0-11-5t-5-11q0-7 5-11.5t11-4.5h128z";Ar("time-entry-request",{pathData:c_,ltr:!1,collection:"SAP-icons",packageName:"@ui5/webcomponents-icons"});var __={pathData:c_};me("sap_horizon");const h_=(e,t,i)=>vi`<div id="${Mi(e._id)}" class="ui5-time-picker-root"><${zi("ui5-input",t,i)} id="${Mi(e._id)}-inner" value="${Mi(e.value)}" placeholder="${Mi(e._placeholder)}" ?disabled="${e.disabled}" ?readonly="${e.readonly}" value-state="${Mi(e.valueState)}" ._inputAccInfo="${Mi(e.accInfo)}" data-sap-focus-ref @click="${e._handleInputClick}" @ui5-change="${Mi(e._handleInputChange)}" @ui5-input="${Mi(e._handleInputLiveChange)}" class="ui5-time-picker-input" @keydown="${e._onkeydown}">${e.valueStateMessage.length?p_():void 0}${e.readonly?void 0:g_(e,t,i)}</${zi("ui5-input",t,i)}></div>`,p_=(e,t,i)=>vi`<slot name="valueStateMessage" slot="valueStateMessage"></slot>`,g_=(e,t,i)=>vi`<${zi("ui5-icon",t,i)} slot="icon" name="${Mi(e.openIconName)}" tabindex="-1" show-tooltip @click="${e.togglePicker}" input-icon ?pressed="${e._isPickerOpen}" class="ui5-time-picker-input-icon-button"></${zi("ui5-icon",t,i)}>`,m_=(e,t,i)=>vi`<${zi("ui5-responsive-popover",t,i)} id="${Mi(e._id)}-responsive-popover" class="ui5-time-picker-popover" placement-type="Bottom" horizontal-align="Left" allow-target-overlap _hide-header hide-arrow stay-open-on-scroll @ui5-after-close="${Mi(e.onResponsivePopoverAfterClose)}" @wheel="${e._handleWheel}" @keydown="${e._onkeydown}"><${zi("ui5-time-selection",t,i)} id="${Mi(e._id)}-time-sel" value="${Mi(e._timeSelectionValue)}" format-pattern="${Mi(e._formatPattern)}" .hideHours="${Mi(e.hideHours)}" .hideMinutes="${Mi(e.hideMinutes)}" .hideSeconds="${Mi(e.hideSeconds)}" .minutesStep="${Mi(e.minutesStep)}" .secondsStep="${Mi(e.secondsStep)}" .maxHours="${Mi(e.maxHours)}" .maxMinutes="${Mi(e.maxMinutes)}" .maxSeconds="${Mi(e.maxSeconds)}" @ui5-change="${Mi(e.onTimeSelectionChange)}"></${zi("ui5-time-selection",t,i)}><div slot="footer" class="ui5-time-picker-footer" @keydown=${e._onfooterkeydown}><${zi("ui5-button",t,i)} id="submit" design="Emphasized" @click="${e.submitPickers}">${Mi(e.submitButtonLabel)}</${zi("ui5-button",t,i)}><${zi("ui5-button",t,i)} id="close" design="Transparent" @click="${e.closePicker}">${Mi(e.cancelButtonLabel)}</${zi("ui5-button",t,i)}></div></${zi("ui5-responsive-popover",t,i)}>`,f_=(e,t,i)=>vi`<div class="${Fi(e.classes.root)}" tabindex="-1" @keydown=${e._onkeydown} @focusin="${e._onfocusin}" @focusout="${e._onfocusout}">${e._hasHoursSlider?v_(e,t,i):void 0}${e._hasMinutesSlider?b_(e,t,i):void 0}${e._hasSecondsSlider?y_(e,t,i):void 0}${e._hasPeriodsSlider?w_(e,t,i):void 0}</div>`,v_=(e,t,i)=>vi`<${zi("ui5-wheelslider",t,i)} label = "${Mi(e.hoursSliderTitle)}" ._items="${Mi(e.hoursArray)}" data-sap-focus-ref ?expanded="${e._hoursSliderFocused}" value="${Mi(e._hours)}" @ui5-select="${Mi(e.onHoursChange)}" @click="${e.selectSlider}" @focusin="${e.selectSlider}" data-sap-slider="hours" ?cyclic="${e._isCyclic}"></${zi("ui5-wheelslider",t,i)}>`,b_=(e,t,i)=>vi`<${zi("ui5-wheelslider",t,i)} label = "${Mi(e.minutesSliderTitle)}" ._items="${Mi(e.minutesArray)}" ?expanded="${e._minutesSliderFocused}" value="${Mi(e._minutes)}" @ui5-select="${Mi(e.onMinutesChange)}" @click="${e.selectSlider}" @focusin="${e.selectSlider}" data-sap-slider="minutes" ?cyclic="${e._isCyclic}"></${zi("ui5-wheelslider",t,i)}>`,y_=(e,t,i)=>vi`<${zi("ui5-wheelslider",t,i)} label = "${Mi(e.secondsSliderTitle)}" ._items="${Mi(e.secondsArray)}" ?expanded="${e._secondsSliderFocused}" value="${Mi(e._seconds)}" @ui5-select="${Mi(e.onSecondsChange)}" @click="${e.selectSlider}" @focusin="${e.selectSlider}" data-sap-slider="seconds" ?cyclic="${e._isCyclic}"></${zi("ui5-wheelslider",t,i)}>`,w_=(e,t,i)=>vi`<${zi("ui5-wheelslider",t,i)} label = "${Mi(e.periodSliderTitle)}" ._items="${Mi(e.periodsArray)}" ?expanded="${e._periodSliderFocused}" value="${Mi(e._period)}" @ui5-select="${Mi(e.onPeriodChange)}" @click="${e.selectSlider}" @focusin="${e.selectSlider}" data-sap-slider="periods"></${zi("ui5-wheelslider",t,i)}>`,k_="M258.5 237l-102 103c-6 6-14 9-22 9s-15-3-22-9c-6-7-9-14-9-22s3-16 9-22l124-124c7-6 14-9 22-9s16 3 22 9l124 124c6 6 9 14 9 22s-3 15-9 22c-6 6-14 9-22 9s-15-3-22-9z";Ar("navigation-up-arrow",{pathData:k_,ltr:!1,collection:"SAP-icons-v5",packageName:"@ui5/webcomponents-icons"});var x_={pathData:k_};const C_="M86.5 380q-9 9-22.5 9t-22.5-9q-10-10-10-23t10-23l193-197q4-2 5-3 2-1 2.5-1.5t2.5-1.5q6-2 11-2 2 0 3 .5t2 .5q4 0 6 1t3.5 2 3.5 2q1 1 1.5 1t1.5 1 2 1l192 196q10 10 10 23t-10 23q-9 9-22.5 9t-22.5-9l-154-155q-16-10-32 0z";Ar("navigation-up-arrow",{pathData:C_,ltr:!1,collection:"SAP-icons",packageName:"@ui5/webcomponents-icons"});var S_={pathData:C_};me("sap_horizon");const T_="M258.5 275l102-103c7-6 14-9 22-9s16 3 22 9c6 7 9 14 9 22s-3 15-9 22l-124 124c-6 6-14 9-22 9s-15-3-22-9l-124-124c-6-7-9-14-9-22s3-15 9-22c7-6 14-9 22-9s16 3 22 9z";Ar("navigation-down-arrow",{pathData:T_,ltr:!1,collection:"SAP-icons-v5",packageName:"@ui5/webcomponents-icons"});var B_={pathData:T_};const I_="M425.5 137q9-9 22.5-9t22.5 9q10 10 10 23t-10 23l-193 197q-4 2-5 3-2 1-2.5 1.5t-2.5 1.5q-6 2-11 2-2 0-3-.5t-2-.5q-4 0-6-1t-3.5-2-3.5-2q-1-1-1.5-1t-1.5-1-2-1l-192-196q-10-10-10-23t10-23q9-9 22.5-9t22.5 9l154 155q16 10 32 0z";Ar("navigation-down-arrow",{pathData:I_,ltr:!1,collection:"SAP-icons",packageName:"@ui5/webcomponents-icons"});var $_={pathData:I_};me("sap_horizon");const D_=new WeakMap;class A_{static get tasks(){return D_}static enqueue(e,t){D_.has(e)||D_.set(e,[]),D_.get(e).push(t)}static run(e,t){return D_.has(e)||D_.set(e,[]),t().then(()=>{const t=D_.get(e);if(t.length>0)return A_.run(e,t.shift());D_.delete(e)})}static push(e,t){D_.get(e)?A_.enqueue(e,t):A_.run(e,t)}}var F_={defaultDuration:400,element:document.createElement("DIV"),identity:()=>{}},E_=({element:e=F_.element,duration:t=F_.duration,progress:i=F_.identity,dx:o=0,dy:r=0})=>{let a,n;return(({beforeStart:e=F_.identity,duration:t=F_.defaultDuration,element:i=F_.element,progress:o=F_.identity})=>{let r,a,n,s=null,l=!1;const u=new Promise((e,i)=>{n=i=>{s=s||i;const a=i-s;if(a<=t){o(1-(t-a)/t),r=!l&&requestAnimationFrame(n)}else o(1),e()},a=()=>{l=!0,cancelAnimationFrame(r),i(new Error("animation stopped"))}}).catch(e=>e);return A_.push(i,()=>(e(),requestAnimationFrame(n),new Promise(e=>{u.then(()=>e())}))),{promise:()=>u,stop:()=>a}})({beforeStart:()=>{a=e.scrollLeft,n=e.scrollTop},duration:t,element:e,progress:t=>{i(t),e.scrollLeft=a+t*o,e.scrollTop=n+t*r}})};const M_=mr()?"touchend":"mouseup";class P_ extends e{constructor(e){super(),this.containerComponent=e,this.mouseMove=this.ontouchmove.bind(this),this.mouseUp=this.ontouchend.bind(this),this.touchStart=this.ontouchstart.bind(this),this.supportsTouch=mr(),this.cachedValue={},this.startX=0,this.startY=0,this.supportsTouch?(e.addEventListener("touchstart",this.touchStart,{passive:!0}),e.addEventListener("touchmove",this.mouseMove,{passive:!0}),e.addEventListener("touchend",this.mouseUp,{passive:!0})):e.addEventListener("mousedown",this.touchStart,{passive:!0})}set scrollContainer(e){this._container=e}get scrollContainer(){return this._container}async scrollTo(e,t,i=0,o=0){let r=this.scrollContainer.clientHeight>0&&this.scrollContainer.clientWidth>0;for(;!r&&i>0;)await new Promise(e=>{setTimeout(()=>{r=this.scrollContainer.clientHeight>0&&this.scrollContainer.clientWidth>0,i--,e()},o)});this._container.scrollLeft=e,this._container.scrollTop=t}move(e,t,i){return i?(this._container.scrollLeft+=e,void(this._container.scrollTop+=t)):E_({element:this._container,dx:e,dy:t})}getScrollLeft(){return this._container.scrollLeft}getScrollTop(){return this._container.scrollTop}_isTouchInside(e){const t=this._container.getBoundingClientRect(),i=this.supportsTouch?e.clientX:e.x,o=this.supportsTouch?e.clientY:e.y;return i>=t.left&&i<=t.right&&o>=t.top&&o<=t.bottom}ontouchstart(e){const t=this.supportsTouch?e.touches[0]:null;this.supportsTouch?(this.startX=t.pageX,this.startY=t.pageY):(document.addEventListener("mouseup",this.mouseUp,{passive:!0}),document.addEventListener("mousemove",this.mouseMove,{passive:!0})),this._prevDragX=this.supportsTouch?t.pageX:e.x,this._prevDragY=this.supportsTouch?t.pageY:e.y,this._canScroll=this._isTouchInside(this.supportsTouch?t:e)}ontouchmove(e){if(!this._canScroll)return;const t=this._container,i=this.supportsTouch?e.touches[0]:null,o=this.supportsTouch?i.pageX:e.x,r=this.supportsTouch?i.pageY:e.y;t.scrollLeft+=this._prevDragX-o,t.scrollTop+=this._prevDragY-r,this.fireEvent("scroll",{isLeft:o>this._prevDragX,isRight:o<this._prevDragX}),this.cachedValue.dragX=this._prevDragX,this.cachedValue.dragY=this._prevDragY,this._prevDragX=o,this._prevDragY=r}ontouchend(e){if(this.supportsTouch){const t=Math.abs(e.changedTouches[0].pageX-this.startX),i=Math.abs(e.changedTouches[0].pageY-this.startY);if(t<10&&i<10)return}if(!this._canScroll)return;const t=this._container,i=this.supportsTouch?e.changedTouches[0].pageX:e.x,o=this.supportsTouch?e.changedTouches[0].pageY:e.y;t.scrollLeft+=this._prevDragX-i,t.scrollTop+=this._prevDragY-o;const r=i===this._prevDragX?this.cachedValue.dragX:i;this.fireEvent(M_,{isLeft:r<this._prevDragX,isRight:r>this._prevDragX}),this._prevDragX=i,this._prevDragY=o,this.supportsTouch||(document.removeEventListener("mousemove",this.mouseMove,{passive:!0}),document.removeEventListener("mouseup",this.mouseUp))}}const L_=(e,t,i)=>vi`<div id="${Mi(e._id)}" ?disabled= "${Mi(e.disabled)}" value = "${Mi(e.value)}" label = "${Mi(e.label)}" @click = ${Mi(e._onclick)} @keydown=${e._onkeydown} class = "${Fi(e.classes.root)}" data-sap-focus-ref tabindex="0" @wheel="${e._handleWheel}"><div class="ui5-wheelslider-header-block"><div id="${Mi(e._id)}--label" class="ui5-wheelslider-label">${Mi(e.label)}</div><div class="ui5-wheelslider-invisible-text"></div><${zi("ui5-button",t,i)} class="ui5-wheelslider-arrow" icon="navigation-up-arrow" @click=${e._onArrowUp} tabindex="-1"></${zi("ui5-button",t,i)}></div><div id="${Mi(e._id)}--inner" class="ui5-wheelslider-inner"><div id="${Mi(e._id)}--selection-frame" class="ui5-wheelslider-selection-frame"></div><div id="${Mi(e._id)}--wrapper" class="ui5-wheelslider-wrapper">${e.expanded?N_(e):O_(e)}</div></div><div class="ui5-wheelslider-footer-block"><${zi("ui5-button",t,i)} class="ui5-wheelslider-arrow" icon="navigation-down-arrow" @click=${e._onArrowDown} tabindex="-1"></${zi("ui5-button",t,i)}></div></div>`,N_=(e,t,i)=>vi`<ul id="${Mi(e._id)}--items-list" role="listbox" aria-label="${Mi(e.label)}">${Ai(e._itemsToShow,(e,t)=>e._id||t,(e,t)=>z_(e,t))}</ul>`,z_=(e,t,i,o,r)=>vi`<li class="ui5-wheelslider-item" data-item-index="${t}" role="option" aria-selected="${Mi(e.selected)}">${Mi(e.value)}</li>`,O_=(e,t,i)=>vi`<ul id="${Mi(e._id)}--items-list" role="listbox" aria-label="${Mi(e.label)}"><li class="ui5-wheelslider-item" role="option" aria-selected="true">${Mi(e.value)}</li></ul>`;te("@ui5/webcomponents-theming","sap_fiori_3",()=>zr),te("@ui5/webcomponents","sap_fiori_3",()=>Or);var H_={packageName:"@ui5/webcomponents",fileName:"themesWheelSlider.css",content:'.ui5-wheelslider-root{overflow:hidden;height:100%;vertical-align:middle;text-align:center;box-sizing:border-box;font-family:"72override",var(--sapFontFamily);justify-content:space-between;flex-direction:column;display:inline-flex;width:var(--_ui5_wheelslider_item_width)}.ui5-wheelslider-root .ui5-wheelslider-label{box-sizing:border-box;height:2rem;line-height:2rem;width:var(--_ui5_wheelslider_item_width);font-size:var(--sapFontSmallSize);color:var(--_ui5_wheelslider_label_text_color);text-align:center;vertical-align:middle;visibility:hidden}.ui5-wheelslider-root .ui5-wheelslider-arrow{visibility:hidden;box-sizing:border-box;height:1.5rem;user-select:none;outline:none}:host([expanded]) .ui5-wheelslider-arrow{visibility:var(--_ui5_wheelslider_arrows_visibility);box-sizing:border-box;border-color:transparent;cursor:pointer}:host([expanded]) .ui5-wheelslider-arrow:hover{visibility:var(--_ui5_wheelslider_arrows_visibility);box-sizing:border-box;border-color:inherit;cursor:pointer}.ui5-wheelslider-root .ui5-wheelslider-inner{position:relative;overflow:hidden;height:100%;box-sizing:border-box;user-select:none;list-style:none;margin-top:0}:host([expanded]) .ui5-wheelslider-inner{margin-top:0}.ui5-wheelslider-root .ui5-wheelslider-inner .ui5-wheelslider-item{height:var(--_ui5_wheelslider_item_height);line-height:var(--_ui5_wheelslider_item_height);width:var(--_ui5_wheelslider_item_width);box-sizing:border-box;background:var(--_ui5_wheelslider_selected_item_background_color);border:.625px solid var(--_ui5_wheelslider_item_border_color);font-size:var(--_ui5_wheelslider_item_text_size);color:var(--_ui5_wheelslider_collapsed_item_text_color);text-align:center;border-radius:var(--_ui_wheelslider_item_border_radius);cursor:pointer}.ui5-wheelslider-root .ui5-wheelslider-inner .ui5-wheelslider-item:hover{background:var(--_ui_wheelslider_item_hover_color);border-color:var(--_ui5_wheelslider_item_hovered_border_color)}.ui5-wheelslider-root .ui5-wheelslider-inner .ui5-wheelslider-item:focus{outline:1px dotted #000;outline-offset:-3px}.ui5-wheelslider-root .ui5-wheelslider-inner .ui5-wheelslider-selection-frame{width:var(--_ui5_wheelslider_item_width);height:var(--_ui5_wheelslider_item_height);position:absolute;box-sizing:border-box;visibility:hidden;z-index:1}.ui5-wheelslider-root .ui5-wheelslider-inner .ui5-wheelslider-wrapper>ul{transition:all .4s;margin:0;padding:0;position:absolute;top:var(--_ui5_wheelslider_selection_frame_margin_top);height:3000px;cursor:pointer;list-style-type:none}.ui5-wheelslider-root.ui5-phone .ui5-wheelslider-inner .ui5-wheelslider-wrapper>ul{top:var(--_ui5_wheelslider_mobile_selection_frame_margin_top)}:host([expanded]) .ui5-wheelslider-inner .ui5-wheelslider-wrapper>ul{list-style-type:none;top:0;padding-top:calc(var(--_ui5_wheelslider_item_height)*2)}:host([expanded]) .ui5-wheelslider-root.ui5-phone .ui5-wheelslider-inner .ui5-wheelslider-wrapper>ul{list-style-type:none;top:0;padding-top:calc(var(--_ui5_wheelslider_item_height)*4)}.ui5-wheelslider-root .ui5-wheelslider-inner .ui5-wheelslider-wrapper{height:var(--_ui5_wheelslider_height);position:relative;overflow:hidden;outline:none}.ui5-wheelslider-root.ui5-phone .ui5-wheelslider-inner .ui5-wheelslider-wrapper{height:var(--_ui5_wheelslider_mobile_height)}:host([expanded]){height:100%;cursor:default;margin:0;justify-content:space-between;flex-direction:column;display:inline-flex}:host([expanded]) .ui5-wheelslider-label{display:block;visibility:visible}.ui5-wheelslider-root .ui5-wheelslider-inner{max-height:100%;height:var(--_ui5_wheelslider_height)}.ui5-wheelslider-root.ui5-phone .ui5-wheelslider-inner{height:var(--_ui5_wheelslider_mobile_height)}:host([expanded]) .ui5-wheelslider-inner .ui5-wheelslider-item{background:var(--_ui5_wheelslider_item_background_color);color:var(--_ui5_wheelslider_item_text_color);border:1px solid var(--_ui5_wheelslider_item_expanded_border_color);border-radius:var(--_ui_wheelslider_item_border_radius);offset-position:auto;cursor:auto}:host([expanded]) .ui5-wheelslider-inner .ui5-wheelslider-item:hover{background:var(--_ui_wheelslider_item_expanded_hover_color);border-color:var(--_ui5_wheelslider_item_hovered_border_color)}:host([expanded]) .ui5-wheelslider-inner .ui5-wheelslider-item:active{background:var(--_ui5_wheelslider_active_item_background_color);color:var(--_ui5_wheelslider_active_item_text_color)}:host([expanded]) .ui5-wheelslider-inner .ui5-wheelslider-item:focus{outline:1px dotted #000;outline-offset:-3px}:host([expanded]) .ui5-wheelslider-inner .ui5-wheelslider-selection-frame{visibility:visible;-webkit-box-shadow:inset 0 0 0 2px var(--_ui5_wheelslider_selection_frame_color);-moz-box-shadow:inset 0 0 0 2px var(--_ui5_wheelslider_selection_frame_color);box-shadow:inset 0 0 0 2px var(--_ui5_wheelslider_selection_frame_color);border-radius:var(--_ui_wheelslider_item_border_radius);margin-top:var(--_ui5_wheelslider_selection_frame_margin_top)}:host([expanded]) .ui5-wheelslider-root.ui5-phone .ui5-wheelslider-inner .ui5-wheelslider-selection-frame{margin-top:var(--_ui5_wheelslider_mobile_selection_frame_margin_top)}:host([expanded]) .ui5-wheelslider-inner .ui5-wheelslider-selection-frame:hover+.ui5-wheelslider-wrapper ul>li.ui5-wheelslider-item[aria-selected=true]{background:var(--_ui_wheelslider_item_expanded_hover_color)}:host([expanded]) .ui5-wheelslider-inner .ui5-wheelslider-selection-frame:active+ul>li.ui5-wheelslider-item[aria-selected=true]{background:var(--_ui5_wheelslider_selected_item_background_color);color:#d3d3d3}.ui5-wheelslider-root:focus{outline:none}'};const R_={tag:"ui5-wheelslider",properties:{disabled:{type:Boolean},value:{type:String,defaultValue:"0"},label:{type:String,defaultValue:""},expanded:{type:Boolean},_items:{type:String,multiple:!0,compareValues:!0},_itemsToShow:{type:Object,multiple:!0},cyclic:{type:Boolean}},slots:{},events:{expand:{},collapse:{},select:{detail:{value:{type:String}}}}};class U_ extends Ft{static get metadata(){return R_}static get render(){return Ni}static get styles(){return H_}static get template(){return L_}constructor(){super(),this._currentElementIndex=0,this._itemsToShow=[],this._scroller=new P_(this),this._scroller.attachEvent("scroll",this._updateScrolling.bind(this)),this._scroller.attachEvent("mouseup",this._handleScrollTouchEnd.bind(this)),this._scroller.attachEvent("touchend",this._handleScrollTouchEnd.bind(this))}onBeforeRendering(){if(!this.expanded&&this.cyclic){const e=this._currentElementIndex%this._items.length;this._currentElementIndex=this._timesMultipliedOnCyclic()/2*this._items.length+e}this.value||(this.value=this._items[0]),this._buildItemsToShow()}static get dependencies(){return[Na]}onAfterRendering(){if(this._scroller.scrollContainer||(this._scroller.scrollContainer=this.shadowRoot.querySelector(`#${this._id}--wrapper`)),this.expanded||this._scroller.scrollTo(0,0),this.expanded){const e=this.shadowRoot.querySelectorAll(".ui5-wheelslider-item");for(let t=0;t<e.length;t++)if(e[t].textContent===this.value)return this._selectElementByIndex(Number(e[t].dataset.itemIndex)+this._getCurrentRepetition()*this._items.length),!0;this._selectElement(e[0])}}get classes(){return{root:{"ui5-wheelslider-root":!0,"ui5-phone":yr()}}}expandSlider(){this.expanded=!0,this.fireEvent("expand",{})}collapseSlider(){this.expanded=!1,this.fireEvent("collapse",{})}get _itemCellHeight(){const e="compact"===rt(document.body)?32:46;if(this.shadowRoot.querySelectorAll(".ui5-wheelslider-item").length){const t=getComputedStyle(this.shadowRoot.querySelector(".ui5-wheelslider-item")).getPropertyValue("--_ui5_wheelslider_item_height").replace("px","");return Number(t)||e}return e}_updateScrolling(){const e=this._itemCellHeight,t=this._scroller.scrollContainer.scrollTop;let i;if(t&&(i=Math.round(t/e),this.value!==this._itemsToShow[i].value)){if(this.cyclic){const e=this._handleArrayBorderReached(i);i!==e&&(i=e)}this.value=this._itemsToShow[i].value,this._currentElementIndex=i}}_handleScrollTouchEnd(){this.expanded&&this._selectElementByIndex(this._currentElementIndex)}_selectElement(e){e&&this._items.indexOf(e.textContent)>-1&&(this._currentElementIndex=Number(e.dataset.itemIndex),this._selectElementByIndex(this._currentElementIndex))}_getCurrentRepetition(){return this._currentElementIndex?Math.floor(this._currentElementIndex/this._items.length):0}_selectElementByIndex(e){let t=e;const i=this._itemsToShow.length,o=this._itemCellHeight*t;this.cyclic&&(t=this._handleArrayBorderReached(t)),t<i&&t>-1&&(this._scroller.scrollTo(0,o,5,100),this._currentElementIndex=t,this.value=this._items[t-this._getCurrentRepetition()*this._items.length],this.fireEvent("select",{value:this.value}))}_timesMultipliedOnCyclic(){const e=Math.round(70/this._items.length);return Math.max(3,e)}_buildItemsToShow(){let e=this._items;if(this.cyclic&&e.length<this._items.length*this._timesMultipliedOnCyclic())for(let t=0;t<this._timesMultipliedOnCyclic();t++)e=e.concat(this._items);this._itemsToShow=e.map(e=>({value:e,selected:e===this.value}))}_handleArrayBorderReached(e){const t=this._itemsToShow.length;let i=e;return 7>i?i+=2*this._items.length:i>t-7&&(i-=2*this._items.length),i}_handleWheel(e){e&&(e.stopPropagation(),e.preventDefault(),e.timeStamp!==this._prevWheelTimestamp&&this.expanded&&(e.deltaY>0?this._itemUp():e.deltaY<0&&this._itemDown(),this._prevWheelTimestamp=e.timeStamp))}_onclick(e){e.target.classList.contains("ui5-wheelslider-item")&&(this.expanded?(this.value=e.target.textContent,this._selectElement(e.target),this.fireEvent("select",{value:this.value})):this.expanded=!0)}_onArrowDown(e){e.preventDefault(),this._itemDown()}_onArrowUp(e){e.preventDefault(),this._itemUp()}_itemDown(){const e=this._currentElementIndex+1;this._selectElementByIndex(e)}_itemUp(){const e=this._currentElementIndex-1;this._selectElementByIndex(e)}_onkeydown(e){this.expanded&&(no(e)&&this._onArrowUp(e),so(e)&&this._onArrowDown(e),wo(e)&&this._selectLimitCell(e,!1),yo(e)&&this._selectLimitCell(e,!0))}_selectLimitCell(e,t){e.preventDefault();const i=this.cyclic?this._items.length:0;t?this._selectElementByIndex(this._items.length-1+i):this._selectElementByIndex(i)}}U_.define();const V_=(e,t=1)=>{const i=[];for(let o=0;o<e;o++)if(o%t==0){let e=o.toString();1===e.length&&(e=`0${e}`),i.push(e)}return i};te("@ui5/webcomponents-theming","sap_fiori_3",()=>zr),te("@ui5/webcomponents","sap_fiori_3",()=>Or);var j_={packageName:"@ui5/webcomponents",fileName:"themesTimeSelection.css",content:":host(:not([hidden])){display:inline-block;min-width:18rem}.ui5-time-selection-root{width:100%;height:100%;display:flex;justify-content:center;align-items:stretch;direction:ltr;box-sizing:border-box}.ui5-time-selection-root.ui5-phone{height:90vh}[ui5-wheelslider]{padding-left:.25rem;padding-right:.25rem}"};const W_={tag:"ui5-time-selection",languageAware:!0,managedSlots:!0,properties:{value:{type:String,defaultValue:void 0},formatPattern:{type:String},hideHours:{type:Boolean},hideMinutes:{type:Boolean},hideSeconds:{type:Boolean},maxHours:{type:dn},maxMinutes:{type:dn},maxSeconds:{type:dn},secondsStep:{type:dn,defaultValue:1},minutesStep:{type:dn,defaultValue:1},_currentSlider:{type:String,defaultValue:"hours"}},events:{change:{},sliderChange:{}}};class q_ extends Ft{static get metadata(){return W_}static get render(){return Ni}static get styles(){return j_}static get template(){return f_}static get dependencies(){return[U_]}static async onDefine(){[q_.i18nBundle]=await Promise.all([er("@ui5/webcomponents"),vu(No().getLanguage(),No().getRegion(),No().getScript())])}constructor(){super()}get _hoursConfiguration(){const e=this.getFormat().aFormatArray.find(e=>e.type.startsWith("hour"));return(e=>{const t={};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 _neededSliders(){return((e,t)=>{const i=[!1,!1,!1,!1];for(let o=0;o<e.length;o++)0!==t.maxHour&&(i[0]=!0),0!==t.maxHour&&t.isTwelveHoursFormat&&(i[0]=!0),"minute"===e[o].type&&(i[1]=!0),"second"===e[o].type&&(i[2]=!0),"amPmMarker"===e[o].type&&(i[3]=!0);return i})(this.getFormat().aFormatArray,this._hoursConfiguration)}get _hasHoursSlider(){return this._neededSliders[0]&&!this.hideHours}get _hasMinutesSlider(){return this._neededSliders[1]&&!this.hideMinutes}get _hasSecondsSlider(){return this._neededSliders[2]&&!this.hideSeconds}get _hasPeriodsSlider(){return this._neededSliders[3]}get secondsArray(){return e=this.maxSeconds?this.maxSeconds+1:void 0,t=this.secondsStep,V_(e||60,t);var e,t}get minutesArray(){return e=this.maxMinutes?this.maxMinutes+1:void 0,t=this.minutesStep,V_(e||60,t);var e,t}get hoursArray(){return((e,t)=>{let i=[];if(i=e.isTwelveHoursFormat?V_(t||12,1):V_(t||24,1),1===e.minHour)for(let e=0;e<i.length;e++){const t=1*i[e]+1;1===t.toString().length?i[e]=`0${t.toString()}`:i[e]=t.toString()}return i})(this._hoursConfiguration,this.maxHours?this.maxHours+1:void 0)}get periodsArray(){return this.getFormat().aDayPeriods.map(e=>e.toUpperCase())}get _hoursSliderFocused(){return"hours"===this._currentSlider}get _minutesSliderFocused(){return"minutes"===this._currentSlider}get _secondsSliderFocused(){return"seconds"===this._currentSlider}get _periodSliderFocused(){return"periods"===this._currentSlider}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&&(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(){if(!this._hoursConfiguration.isTwelveHoursFormat)return;let e;const t=this.validDateValue;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}setValue(e){const t=this.formatValue(e);this.isValid(t)&&(this.value=this.normalizeValue(t),this.fireEvent("change",{value:this.value,valid:!0}))}onHoursChange(e){let t=e.detail.value;this._hoursConfiguration.isTwelveHoursFormat&&(this._period===this.periodsArray[0]&&(t="12"===t?0:t),this._period===this.periodsArray[1]&&(t="12"===t?t:1*t+12));const i=this.validDateValue;i.setHours(t),this.setValue(i)}onMinutesChange(e){const t=e.detail.value,i=this.validDateValue;i.setMinutes(t),this.setValue(i)}onSecondsChange(e){const t=e.detail.value,i=this.validDateValue;i.setSeconds(t),this.setValue(i)}onPeriodChange(e){const t=e.detail.value,i=this.validDateValue;t===this.periodsArray[0]&&i.getHours()>=12&&i.setHours(i.getHours()-12),t===this.periodsArray[1]&&i.getHours()<12&&i.setHours(i.getHours()+12),this.setValue(i)}isValid(e){return""===e||this.getFormat().parse(e)}normalizeValue(e){return""===e?e:this.getFormat().format(this.getFormat().parse(e))}get _formatPattern(){const e=this.formatPattern,t=!!e.match(/H/i),i=!e||!t,o=nd(No());return i?o.getCombinedDateTimePattern("medium","medium",this._primaryCalendarType):e}get _isPattern(){return"medium"!==this._formatPattern&&"short"!==this._formatPattern&&"long"!==this._formatPattern}selectSlider(e){this._setCurrentSlider(e.target.closest("[ui5-wheelslider]").getAttribute("data-sap-slider"))}_setCurrentSlider(e){this._currentSlider!==e&&(this._currentSlider=e,this.fireEvent("slider-change",{slider:e}))}get _currentSliderDOM(){return this.shadowRoot.querySelector(`[data-sap-slider="${this._currentSlider}"]`)}get _activeSliders(){return["hours","minutes","seconds","periods"].filter(e=>{return this[`_has${t=e,t.substr(0,1).toUpperCase()+t.substr(1)}Slider`];var t})}_onfocusin(e){this._currentSlider||this._setCurrentSlider(this._activeSliders[0]),e.target===e.currentTarget&&this._currentSliderDOM.focus()}_onfocusout(e){this.shadowRoot.contains(e.relatedTarget)||this._setCurrentSlider("")}async _onkeydown(e){if(!ro(e)&&!ao(e))return;e.preventDefault();const t=this._activeSliders,i=e.target.closest("[ui5-wheelslider]").getAttribute("data-sap-slider");let o=t.indexOf(i);ro(e)?o=0===o?t.length-1:o-1:ao(e)&&(o=o===t.length-1?0:o+1),this._setCurrentSlider(t[o]),this._currentSliderDOM.focus()}_handleWheel(e){e.preventDefault()}getFormat(){let e;return e=this._isPattern?Ju.getInstance({pattern:this._formatPattern}):Ju.getInstance({style:this._formatPattern}),e}formatValue(e){return this.getFormat().format(e)}get dateValue(){return this.value?this.getFormat().parse(this.value):new Date}get validDateValue(){return this.isValid(this.value)?this.dateValue:new Date}get hoursSliderTitle(){return q_.i18nBundle.getText(pa)}get minutesSliderTitle(){return q_.i18nBundle.getText(ga)}get secondsSliderTitle(){return q_.i18nBundle.getText(ma)}get periodSliderTitle(){return q_.i18nBundle.getText(fa)}get _isCyclic(){return!fr()}get classes(){return{root:{"ui5-time-selection-root":!0,"ui5-phone":yr()}}}}q_.define(),te("@ui5/webcomponents-theming","sap_fiori_3",()=>zr),te("@ui5/webcomponents","sap_fiori_3",()=>Or);var Y_={packageName:"@ui5/webcomponents",fileName:"themesTimePicker.css",content:".ui5-hidden-text{position:absolute;clip:rect(1px,1px,1px,1px);user-select:none;left:-1000px;top:-1000px;pointer-events:none;font-size:0}[input-icon]{color:var(--_ui5_input_icon_color);cursor:pointer;outline:none;padding:var(--_ui5_input_icon_padding);margin-right:var(--_ui5_input_icon_margin);border-left:var(--_ui5_input_icon_border);min-width:1rem;min-height:1rem;border-radius:var(--_ui5_input_icon_border_radius);align-self:center}[input-icon][pressed]{background:var(--_ui5_input_icon_pressed_bg);box-shadow:var(--_ui5_input_icon_box_shadow);color:var(--_ui5_input_icon_pressed_color)}[input-icon]:active{background-color:var(--sapButton_Active_Background);box-shadow:var(--_ui5_input_icon_box_shadow);color:var(--_ui5_input_icon_pressed_color)}[input-icon]:not([pressed]):not(:active):hover{background:var(--_ui5_input_icon_hover_bg);box-shadow:var(--_ui5_input_icon_box_shadow)}[input-icon]:hover{border-left:var(--_ui5_select_hover_icon_left_border);box-shadow:var(--_ui5_input_icon_box_shadow)}[input-icon][dir=rtl]:hover{border-left:none;border-right:var(--_ui5_select_hover_icon_left_border)}[input-icon][dir=rtl]{border-left:none;margin-right:0;margin-left:var(--_ui5_input_icon_margin);border-right:var(--_ui5_input_icon_border)}:host(:not([hidden])){display:inline-block}:host{color:var(--sapField_TextColor);background-color:var(--sapField_Background);border-radius:var(--_ui5-time_picker_border_radius)}:host([value-state=Error]){background-color:var(--sapField_InvalidBackground)}:host(:not([disabled]):hover){background:var(--sapField_Hover_Background)}:host .ui5-time-picker-input{width:100%;color:inherit;background-color:inherit}.ui5-time-picker-input-icon-button{border-left:.0625rem solid transparent}.ui5-time-picker-input-icon-button:hover{cursor:pointer;border-left:var(--_ui5_time_picker_border);background:var(--sapButton_Hover_Background)}.ui5-time-picker-input-icon-button:active{background-color:var(--sapButton_Active_Background);color:var(--sapButton_Active_TextColor)}.ui5-time-picker-input-icon-button[pressed]{background-color:var(--sapButton_Active_Background);color:var(--sapButton_Active_TextColor)}"};te("@ui5/webcomponents-theming","sap_fiori_3",()=>zr),te("@ui5/webcomponents","sap_fiori_3",()=>Or);var G_={packageName:"@ui5/webcomponents",fileName:"themesTimePickerPopover.css",content:".ui5-time-picker-footer{height:fit-content;display:flex;justify-content:flex-end;width:100%}.ui5-time-picker-footer>[ui5-button]{margin:1%;min-width:20%}"};const X_={languageAware:!0,managedSlots:!0,properties:{value:{type:String,defaultValue:void 0},valueState:{type:Oa,defaultValue:Oa.None},disabled:{type:Boolean},readonly:{type:Boolean},_isPickerOpen:{type:Boolean,noAttribute:!0}},slots:{valueStateMessage:{type:HTMLElement}},events:{change:{},input:{}}};class Z_ extends Ft{static get metadata(){return X_}static get render(){return Ni}static get styles(){return Y_}static get staticAreaTemplate(){return m_}static get template(){return h_}static get dependencies(){return[Ur,Jd,q_,Js,Na]}static async onDefine(){[Z_.i18nBundle]=await Promise.all([er("@ui5/webcomponents"),vu(No().getLanguage(),No().getRegion(),No().getScript())])}static get staticAreaStyles(){return[qs,G_]}constructor(){super()}get _placeholder(){}get _formatPattern(){}get _effectiveValue(){return this.value}get _timeSelectionValue(){return this.tempValue}onTimeSelectionChange(e){this.tempValue=e.detail.value}submitPickers(){this._updateValueAndFireEvents(this.tempValue,!0,["change","value-changed"]),this.closePicker()}onResponsivePopoverAfterClose(){this._isPickerOpen=!1}async _handleInputClick(){if(this._isPickerOpen)return;const e=await this._getInputField();e&&e.select()}_updateValueAndFireEvents(e,t,i){if(e===this.value)return;const o=this.isValid(e);o&&t&&(e=this.normalizeValue(e)),this.value="",this.value=e,this.tempValue=e,this._updateValueState(),i.forEach(t=>{this.fireEvent(t,{value:e,valid:o})})}_updateValueState(){const e=this.isValid(this.value);e?e&&this.valueState===Oa.Error&&(this.valueState=Oa.None):this.valueState=Oa.Error}async _handleInputChange(e){this._updateValueAndFireEvents(e.target.value,!0,["change","value-changed"])}async _handleInputLiveChange(e){this._updateValueAndFireEvents(e.target.value,!1,["input"])}async closePicker(){(await this._getPopover()).close(),this._isPickerOpen=!1}async openPicker(){this.tempValue=this.value&&this.isValid(this.value)?this.value:this.getFormat().format(new Date),(await this._getPopover()).showAt(this),this._isPickerOpen=!0}togglePicker(){this.isOpen()?this.closePicker():this._canOpenPicker()&&this.openPicker()}isOpen(){return!!this._isPickerOpen}_canOpenPicker(){return!this.disabled&&!this.readonly}async _getPopover(){return(await this.getStaticAreaItemDomRef()).querySelector("[ui5-responsive-popover]")}_getInput(){return this.shadowRoot.querySelector("[ui5-input]")}_getInputField(){const e=this._getInput();return e&&e.getInputDOMRef()}_onkeydown(e){To(e)&&(e.preventDefault(),this.togglePicker()),this.isOpen()||(Co(e)?(e.preventDefault(),this._modifyValueBy(1,"second")):ko(e)?(e.preventDefault(),this._modifyValueBy(1,"minute")):yo(e)?(e.preventDefault(),this._modifyValueBy(1,"hour")):So(e)?(e.preventDefault(),this._modifyValueBy(-1,"second")):xo(e)?(e.preventDefault(),this._modifyValueBy(-1,"minute")):wo(e)&&(e.preventDefault(),this._modifyValueBy(-1,"hour")))}get _isPattern(){return"medium"!==this._formatPattern&&"short"!==this._formatPattern&&"long"!==this._formatPattern}getFormat(){let e;return e=this._isPattern?Ju.getInstance({pattern:this._formatPattern}):Ju.getInstance({style:this._formatPattern}),e}formatValue(e){return this.getFormat().format(e)}isValid(e){return""===e||this.getFormat().parse(e)}normalizeValue(e){return""===e?e:this.getFormat().format(this.getFormat().parse(e))}_modifyValueBy(e,t){const i=this.getFormat().parse(this._effectiveValue);if(!i)return;"hour"===t?i.setHours(i.getHours()+e):"minute"===t?i.setMinutes(i.getMinutes()+e):"second"===t&&i.setSeconds(i.getSeconds()+e);const o=this.formatValue(i);this._updateValueAndFireEvents(o,!0,["change","value-changed"])}_handleWheel(e){e.preventDefault()}get submitButtonLabel(){return Z_.i18nBundle.getText(va)}get cancelButtonLabel(){return Z_.i18nBundle.getText(ba)}get openIconName(){return"time-entry-request"}}const J_={tag:"ui5-time-picker",altTag:"ui5-timepicker",properties:{placeholder:{type:String,defaultValue:void 0},formatPattern:{type:String}}};class K_ extends Z_{static get metadata(){return J_}get _formatPattern(){const e=!!this.formatPattern.match(/H/i),t=!this.formatPattern||!e,i=nd(No());return t?i.getTimePattern("medium"):this.formatPattern}get _displayFormat(){return this.getFormat().oFormatOptions.pattern}get _placeholder(){return void 0!==this.placeholder?this.placeholder:this._displayFormat}get dateValue(){return this.getFormat().parse(this._effectiveValue)}get accInfo(){return{ariaRoledescription:this.dateAriaDescription,ariaHasPopup:"dialog",ariaAutoComplete:"none",role:"combobox",ariaControls:`${this._id}-responsive-popover`,ariaExpanded:this.isOpen()}}get dateAriaDescription(){return K_.i18nBundle.getText(ya)}}K_.define();class Q_{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).push(e)):this.createGroup(e,t),this.updateTabOrder(t)}static removeFromGroup(e,t){if(!this.hasGroup(t))return;const i=this.getGroup(t),o=this.getCheckedRadioFromGroup(t);i.forEach((t,i,o)=>{if(e._id===t._id)return o.splice(i,1)}),o===e&&this.checkedRadios.set(t,null),i.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 i=this.getGroup(t),o=i.length,r=i.indexOf(e);if(o<=1)return;const a=this._nextSelectable(r,i);this.updateSelectionInGroup(a,t)}static updateTabOrder(e){if(!this.hasGroup(e))return;const t=this.getGroup(e),i=t.some(e=>e.checked);t.filter(e=>!e.disabled).forEach((e,t)=>{e._tabIndex=i?e.checked?"0":"-1":0===t?"0":"-1"})}static selectPreviousItem(e,t){const i=this.getGroup(t),o=i.length,r=i.indexOf(e);if(o<=1)return;const a=this._previousSelectable(r,i);this.updateSelectionInGroup(a,t)}static selectItem(e,t){this.updateSelectionInGroup(e,t),this.updateTabOrder(t)}static updateSelectionInGroup(e,t){const i=this.getCheckedRadioFromGroup(t);this._deselectRadio(i),this._selectRadio(e),this.checkedRadios.set(t,e)}static _deselectRadio(e){e&&(e.checked=!1)}static _selectRadio(e){e&&(e.focus(),e.checked=!0,e._checked=!0,e.fireEvent("change"))}static _nextSelectable(e,t){let i=null;if(e===t.length-1){if(t[0].disabled||t[0].readonly)return this._nextSelectable(1,t);i=t[0]}else{if(t[e+1].disabled||t[e+1].readonly)return this._nextSelectable(e+1,t);i=t[e+1]}return i}static _previousSelectable(e,t){const i=t.length;let o=null;if(0===e){if(t[i-1].disabled||t[i-1].readonly)return this._previousSelectable(i-1,t);o=t[i-1]}else{if(t[e-1].disabled||t[e-1].readonly)return this._previousSelectable(e-1,t);o=t[e-1]}return o}static enforceSingleSelection(e,t){const i=this.getCheckedRadioFromGroup(t);e.checked?i?e!==i&&(this._deselectRadio(i),this.checkedRadios.set(t,e)):this.checkedRadios.set(t,e):e===i&&this.checkedRadios.set(t,null),this.updateTabOrder(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}}const eh=(e,t,i)=>vi`<div class="ui5-radio-root ${Fi(e.classes.main)}" role="radio" aria-checked="${Mi(e.checked)}" aria-readonly="${Mi(e.ariaReadonly)}" aria-disabled="${Mi(e.ariaDisabled)}" aria-label="${Mi(e.ariaLabelText)}" aria-describedby="${Mi(e.ariaDescribedBy)}" tabindex="${Mi(e.tabIndex)}" dir="${Mi(e.effectiveDir)}" @click="${e._onclick}" @keydown="${e._onkeydown}" @keyup="${e._onkeyup}" @mousedown="${e._onmousedown}" @mouseup="${e._onmouseup}" @focusout="${e._onfocusout}"><div class='ui5-radio-inner ${Fi(e.classes.inner)}'><svg class="ui5-radio-svg" focusable="false" aria-hidden="true">${oh()}</svg><input type='radio' ?checked="${e.checked}" ?readonly="${e.readonly}" ?disabled="${e.disabled}" name="${Mi(e.name)}" data-sap-no-tab-ref/></div>${e.text?th(e,t,i):void 0}${e.hasValueState?ih(e):void 0}</div>`,th=(e,t,i)=>vi`<${zi("ui5-label",t,i)} id="${Mi(e._id)}-label" class="ui5-radio-label" for="${Mi(e._id)}" wrapping-type="${Mi(e.wrappingType)}">${Mi(e.text)}</${zi("ui5-label",t,i)}>`,ih=(e,t,i)=>vi`<span id="${Mi(e._id)}-descr" class="ui5-hidden-text">${Mi(e.valueStateText)}</span>`,oh=(e,t,i)=>bi`<circle class="ui5-radio-svg-outer" cx="50%" cy="50%" r="50%" /><circle class="ui5-radio-svg-inner" cx="50%" cy="50%" r="22%" />`;te("@ui5/webcomponents-theming","sap_fiori_3",()=>zr),te("@ui5/webcomponents","sap_fiori_3",()=>Or);var rh={packageName:"@ui5/webcomponents",fileName:"themesRadioButton.css",content:'.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_radio_button_min_width);max-width:100%;text-overflow:ellipsis;overflow:hidden;color:var(--_ui5_radio_button_color);cursor:pointer;border-radius:var(--_ui5_radio_button_border_radius);transition:var(--_ui5_radio_button_transition)}:host([checked]){color:var(--_ui5_radio_button_checked_fill)}:host([checked]) .ui5-radio-svg-inner{fill:currentColor}: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])) .ui5-radio-root:focus:before{content:"";display:var(--_ui5_radio_button_focus_outline);position:absolute;top:var(--_ui5_radio_button_focus_dist);bottom:var(--_ui5_radio_button_focus_dist);left:var(--_ui5_radio_button_focus_dist);right: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([disabled])[readonly]) .ui5-radio-root:focus:before{border:var(--_ui5_radio_button_border_width) var(--_ui5_radio_button_border_readonly_focus_style) var(--sapContent_FocusColor)}:host(:not([disabled])) .ui5-radio-root:focus{border-radius:var(--_ui5_radio_button_border_radius);border:var(--_ui5_radio_button_focus_border)}:host(:not([disabled]):hover){background:var(--_ui5_radio_button_hover_background);box-shadow:var(--_ui5_radio_button_hover_shadow)}:host(:not([active]):not([value-state=Error]):not([value-state=Warning])) .ui5-radio-root:hover .ui5-radio-inner--hoverable .ui5-radio-svg-outer{fill:var(--_ui5_radio_button_hover_fill);stroke:var(--_ui5_radio_button_outer_ring_hover_color)}:host(:not([value-state=Error]):not([value-state=Warning])[checked]) .ui5-radio-root:hover .ui5-radio-inner--hoverable .ui5-radio-svg-outer{fill:var(--_ui5_radio_button_hover_fill);stroke:var(--_ui5_radio_button_outer_ring_checked_hover_color)}:host([active][checked]:not([value-state])) .ui5-radio-svg-outer{stroke:var(--_ui5_radio_button_outer_ring_checked_hover_color)}:host([active]:not([checked]):not([value-state])) .ui5-radio-svg-outer{stroke:var(--_ui5_radio_button_outer_ring_active_color)}:host([text]) .ui5-radio-root:focus:before{right:0}:host([text]) .ui5-radio-inner{padding:var(--_ui5_radio_button_outer_ring_padding_with_label)}:host([checked][readonly]) .ui5-radio-svg-inner{fill:var(--sapContent_NonInteractiveIconColor)}:host([readonly]) .ui5-radio-root .ui5-radio-svg-outer{fill:var(--sapField_ReadOnly_Background);stroke:var(--sapField_ReadOnly_BorderColor)}:host([value-state=Error]) .ui5-radio-svg-outer,:host([value-state=Warning]) .ui5-radio-svg-outer{stroke-width:2}:host([value-state=Error][checked]) .ui5-radio-svg-inner{fill:var(--_ui5_radio_button_checked_error_fill)}:host([value-state=Error]) .ui5-radio-root:hover .ui5-radio-inner.ui5-radio-inner--hoverable:hover .ui5-radio-svg-outer,:host([value-state=Error]) .ui5-radio-svg-outer{stroke:var(--sapField_InvalidColor);fill:var(--sapField_InvalidBackground)}:host([value-state=Warning][checked]) .ui5-radio-svg-inner{fill:var(--_ui5_radio_button_checked_warning_fill)}:host([value-state=Warning]) .ui5-radio-root:hover .ui5-radio-inner.ui5-radio-inner--hoverable:hover .ui5-radio-svg-outer,:host([value-state=Warning]) .ui5-radio-svg-outer{stroke:var(--sapField_WarningColor);fill:var(--sapField_WarningBackground)}:host([value-state=Error]) .ui5-radio-root,:host([value-state=Information]) .ui5-radio-root,:host([value-state=Warning]) .ui5-radio-root{stroke-dasharray:var(--_ui5_radio_button_warning_error_border_dash)}.ui5-radio-root{height:var(--_ui5_radio_button_height);position:relative;display:inline-flex;flex-wrap:nowrap;outline:none;max-width:100%;width:var(--_ui5_radio_button_inner_width);box-sizing:border-box;border:var(--_ui5_radio_button_border);border-radius:var(--_ui5_radio_button_border_radius);transition:var(--_ui5_radio_button_transition);cursor:pointer}.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:focus{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-right:var(--_ui5_radio_button_label_offset);vertical-align:top;cursor:default;max-width:100%;text-overflow:ellipsis;overflow:hidden;pointer-events:none;color:var(--_ui5_radio_button_label_color)}:host([wrapping-type=Normal][text]) .ui5-radio-root{height:auto}:host([wrapping-type=Normal][text]) [ui5-label].ui5-radio-label{padding:var(--_ui5_radio_button_label_side_padding) 0;word-break:break-all}.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}.ui5-radio-svg-inner,.ui5-radio-svg-outer{flex-shrink:0}:host([text]) [dir=rtl].ui5-radio-root:focus:before{left:0;right:var(--_ui5_radio_button_rtl_focus_right)}[dir=rtl] .ui5-radio-inner{padding:var(--_ui5_radio_button_outer_ring_padding_rtl)}[dir=rtl] [ui5-label].ui5-radio-label{padding-left:var(--_ui5_radio_button_label_offset);padding-right:0}:host(.ui5-li-singlesel-radiobtn) .ui5-radio-root .ui5-radio-inner .ui5-radio-svg-outer{fill:var(--sapList_Background)}'};let ah=!1,nh=null;const sh={tag:"ui5-radio-button",altTag:"ui5-radiobutton",languageAware:!0,properties:{disabled:{type:Boolean},readonly:{type:Boolean},checked:{type:Boolean},text:{type:String},valueState:{defaultValue:Oa.None,type:Oa},name:{type:String},value:{type:String},wrappingType:{type:Wa,defaultValue:Wa.None},accessibleName:{type:String},_tabIndex:{type:String,defaultValue:"-1",noAttribute:!0},active:{type:Boolean}},slots:{formSupport:{type:HTMLElement}},events:{change:{}}};class lh extends Ft{constructor(){super(),this._deactivate=()=>{nh&&(nh.active=!1)},ah||(document.addEventListener("mouseup",this._deactivate),ah=!0)}static get metadata(){return sh}static get render(){return Ni}static get template(){return eh}static get styles(){return rh}static get dependencies(){return[Xa]}static async onDefine(){lh.i18nBundle=await er("@ui5/webcomponents")}onBeforeRendering(){this.syncGroup(),this._enableFormSupport()}syncGroup(){const e=this._name,t=this.name,i=this._checked,o=this.checked;t!==e?(e&&Q_.removeFromGroup(this,e),t&&Q_.addToGroup(this,t)):t&&Q_.enforceSingleSelection(this,t),this.name&&o!==i&&Q_.updateTabOrder(this.name),this._name=this.name,this._checked=this.checked}_enableFormSupport(){const e=A("FormSupport");e?e.syncNativeHiddenInput(this,(e,t)=>{t.disabled=e.disabled||!e.checked,t.value=e.checked?e.value:""}):this.value&&console.warn('In order for the "value" property to have effect, you should also: import "@ui5/webcomponents/dist/features/InputElementsFormSupport.js";')}_onclick(){return this.toggle()}_handleDown(e){const t=this.name;t&&(e.preventDefault(),Q_.selectNextItem(this,t))}_handleUp(e){const t=this.name;t&&(e.preventDefault(),Q_.selectPreviousItem(this,t))}_onkeydown(e){return io(e)?(this.active=!0,e.preventDefault()):eo(e)?(this.active=!0,this.toggle()):((so(e)||ao(e))&&this._handleDown(e),void((no(e)||ro(e))&&this._handleUp(e)))}_onkeyup(e){io(e)&&this.toggle(),this.active=!1}_onmousedown(){this.active=!0,nh=this}_onmouseup(){this.active=!1}_onfocusout(){this.active=!1}toggle(){return this.canToggle()?this.name?(Q_.selectItem(this,this.name),this):(this.checked=!this.checked,this.fireEvent("change"),this):this}canToggle(){return!(this.disabled||this.readonly||this.checked)}valueStateTextMappings(){return{Error:lh.i18nBundle.getText(wa),Warning:lh.i18nBundle.getText(ka)}}get classes(){return{main:{},inner:{"ui5-radio-inner--hoverable":!this.disabled&&!this.readonly&&wr()}}}get ariaReadonly(){return this.readonly?"true":void 0}get ariaDisabled(){return this.disabled?"true":void 0}get ariaLabelText(){return[this.text,this.accessibleName].filter(Boolean).join(" ")}get ariaDescribedBy(){return this.hasValueState?`${this._id}-descr`:void 0}get hasValueState(){return this.valueState!==Oa.None}get valueStateText(){return this.valueStateTextMappings()[this.valueState]}get tabIndex(){const e=this.getAttribute("tabindex");return this.disabled?"-1":this.name?this._tabIndex:e||"0"}get strokeWidth(){return"None"===this.valueState?"1":"2"}}lh.define();const uh=(e,t,i)=>vi`<div class="ui5-textarea-root" style="${Ei(e.styles.main)}" ?aria-invalid="${e.ariaInvalid}" @focusin="${e._onfocusin}" @focusout="${e._onfocusout}">${e.growing?dh(e):void 0}<textarea id="${Mi(e._id)}-inner" class="ui5-textarea-inner" placeholder="${Mi(e.placeholder)}" ?disabled="${e.disabled}" ?readonly="${e.readonly}" aria-label="${Mi(e.ariaLabelText)}" aria-describedby="${Mi(e.ariaDescribedBy)}" aria-required="${Mi(e.required)}" maxlength="${Mi(e._exceededTextProps.calcedMaxLength)}" .value="${Mi(e.value)}" @input="${e._oninput}" @change="${e._onchange}" @keyup="${e._onkeyup}" @keydown="${e._onkeydown}" data-sap-focus-ref part="textarea"></textarea>${e.showExceededText?_h(e):void 0}${e.hasValueState?hh(e):void 0}<slot name="formSupport"></slot></div> `,dh=(e,t,i)=>vi`<div id="${Mi(e._id)}-mirror" style="${Ei(e.styles.mirror)}" class="ui5-textarea-mirror" aria-hidden="true">${Ai(e._mirrorText,(e,t)=>e._id||t,(e,t)=>ch(e))}</div>`,ch=(e,t,i,o,r)=>vi`${Mi(e.text)}<br />`,_h=(e,t,i)=>vi`<span class="ui5-textarea-exceeded-text">${Mi(e._exceededTextProps.exceededText)}</span>`,hh=(e,t,i)=>vi`<span id="${Mi(e._id)}-valueStateDesc" class="ui5-hidden-text">${Mi(e.ariaValueStateHiddenText)}</span>`,ph=(e,t,i)=>vi`${e.displayValueStateMessagePopover?gh(e,t,i):void 0}`,gh=(e,t,i)=>vi`<${zi("ui5-popover",t,i)} skip-registry-update prevent-focus-restore no-padding hide-arrow _disable-initial-focus class="ui5-valuestatemessage-popover" style="${Ei(e.styles.valueStateMsgPopover)}" placement-type="Bottom" horizontal-align="Left"><div slot="header" class="ui5-valuestatemessage-root ${Fi(e.classes.valueStateMsg)}"><${zi("ui5-icon",t,i)} class="ui5-input-value-state-message-icon" name="${Mi(e._valueStateMessageIcon)}"></${zi("ui5-icon",t,i)}>${e.hasCustomValueState?mh(e):vh(e)}</div></${zi("ui5-popover",t,i)}>`,mh=(e,t,i)=>vi`${Ai(e.valueStateMessageText,(e,t)=>e._id||t,(e,t)=>fh(e))}`,fh=(e,t,i,o,r)=>vi`${Mi(e)}`,vh=(e,t,i)=>vi`${Mi(e.valueStateText)}`;te("@ui5/webcomponents-theming","sap_fiori_3",()=>zr),te("@ui5/webcomponents","sap_fiori_3",()=>Or);var bh={packageName:"@ui5/webcomponents",fileName:"themesTextArea.css",content:'.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{width:100%;color:var(--sapField_TextColor);font-size:var(--sapFontSize);font-family:"72override",var(--sapFontFamily);font-style:normal;border-color:var(--sapField_BorderColor);border-radius:var(--sapField_BorderCornerRadius);box-sizing:border-box;line-height:1.4;letter-spacing:normal;word-spacing:normal}:host([disabled]){opacity:var(--_ui5_input_disabled_opacity);cursor:default;pointer-events:none;border-color:var(--sapField_ReadOnly_BorderColor);-webkit-text-fill-color:var(--sapContent_DisabledTextColor);color:var(--sapContent_DisabledTextColor)}:host([disabled]) .ui5-textarea-inner{background:var(--sapField_ReadOnly_Background)}:host([focused]) .ui5-textarea-inner{outline:var(--_ui5_textarea_focus_outline);outline-offset:-3px}:host([focused]:not([exceeding])) .ui5-textarea-inner{background-color:var(--sapField_Focus_Background);background-image:none;box-shadow:var(--_ui5_textarea_focus_box_shadow)}:host(:not([value-state]):not([exceeding]):not([readonly]):not([focused]):hover) .ui5-textarea-inner{box-shadow:var(--_ui5_textarea_hover_box_shadow);background-image:var(--_ui5_textarea_background_image);background-size:100% var(--sapField_BorderWidth);background-repeat:repeat-x;background-position:bottom}:host([exceeding]) .ui5-textarea-inner,:host([value-state]:not([value-state=None])[focused]) .ui5-textarea-inner{outline:var(--_ui5_textarea_value_state_focus_outline);outline-offset:-4px}.ui5-textarea-root{height:100%;min-height:var(--_ui5_input_height);display:inline-flex;vertical-align:top;outline:none;box-sizing:border-box;border-radius:inherit;border-color:inherit}.ui5-textarea-inner{width:100%;height:100%;margin:0;padding:var(--_ui5_textarea_padding);box-sizing:border-box;color:inherit;font-size:inherit;font-family:inherit;font-style:inherit;-webkit-appearance:none;-moz-appearance:textfield;overflow:auto;resize:none;border-color:inherit;border-radius:inherit;background-color:var(--sapField_Background);border-width:var(--_ui5_textarea_inner_border_width);border-style:solid;line-height:inherit;letter-spacing:inherit;word-spacing:inherit;background-image:var(--_ui5_textarea_background_image);background-size:100% var(--sapField_BorderWidth);background-repeat:repeat-x;background-position:bottom}:host([growing]) .ui5-textarea-root{position:relative}:host([growing]) .ui5-textarea-inner{position:absolute;top:0;left:0}.ui5-textarea-mirror{line-height:1.4;visibility:hidden;width:100%;word-break:break-all;padding:var(--_ui5_textarea_padding);font-size:var(--sapFontSize);font-family:"72override",var(--sapFontFamily);white-space:pre-wrap;box-sizing:border-box}:host([readonly]){border-color:var(--sapField_ReadOnly_BorderColor)}:host([readonly]) .ui5-textarea-root .ui5-textarea-inner{background:var(--sapField_ReadOnly_Background)}:host([show-exceeded-text]) .ui5-textarea-root{flex-direction:column}.ui5-textarea-inner::-webkit-input-placeholder{font-style:var(--_ui5_textarea_placeholder_font_style);color:var(--sapField_PlaceholderTextColor)}.ui5-textarea-inner::-moz-placeholder{font-style:var(--_ui5_textarea_placeholder_font_style);color:var(--sapField_PlaceholderTextColor)}.ui5-textarea-inner:-ms-input-placeholder{font-style:var(--_ui5_textarea_placeholder_font_style);color:var(--sapField_PlaceholderTextColor)}.ui5-textarea-inner:-moz-placeholder{font-style:italic;color:var(--sapField_PlaceholderTextColor)}:host(:not([value-state]):not([exceeding]):not([readonly]):hover){border-color:var(--sapField_Hover_BorderColor)}:host(:not([value-state]):not([exceeding]):not([readonly]):hover) .ui5-textarea-inner{background-color:var(--sapField_Hover_Background)}:host([exceeding]) .ui5-textarea-inner,:host([value-state]:not([value-state=None])) .ui5-textarea-inner{border-width:var(--_ui5_textarea_state_border_width)}:host([value-state=Error]) .ui5-textarea-inner,:host([value-state=Warning]) .ui5-textarea-inner{font-style:var(--_ui5_input_error_warning_font_style)}:host([exceeding]) .ui5-textarea-inner,:host([value-state=Warning]:not([readonly])) .ui5-textarea-inner{background-image:var(--_ui5_textarea_warning_background_image);background-size:100% var(--sapField_WarningBorderWidth);background-repeat:repeat-x;background-position:bottom}:host([exceeding]:not([focused]):hover) .ui5-textarea-inner,:host([value-state=Warning]:not([exceeding]):not([readonly]):not([focused]):hover) .ui5-textarea-inner{box-shadow:var(--sapContent_Critical_Shadow);background-color:var(--sapField_Hover_Background)}:host([exceeding][focused]) .ui5-textarea-inner,:host([value-state=Warning][focused]:not([exceeding]):not([readonly])) .ui5-textarea-inner{background-image:none;box-shadow:var(--_ui5_textarea_value_state_warning_focus_box_shadow);background-color:var(--sapField_Hover_Background)}:host([value-state=Error]:not([readonly])) .ui5-textarea-inner{font-weight:var(--_ui5_input_error_font_weight);background-image:var(--_ui5_textarea_error_background_image);background-size:100% var(--sapField_InvalidBorderWidth);background-repeat:repeat-x;background-position:bottom}:host([value-state=Error]:not([exceeding]):not([readonly]):not([focused]):hover) .ui5-textarea-inner{box-shadow:var(--sapContent_Negative_Shadow);background-color:var(--sapField_Hover_Background)}:host([value-state=Error][focused]:not([exceeding]):not([readonly])) .ui5-textarea-inner{background-image:none;box-shadow:var(--_ui5_textarea_value_state_error_focus_box_shadow);background-color:var(--sapField_Hover_Background)}:host([value-state=Information]:not([readonly])) .ui5-textarea-inner{background-image:var(--_ui5_textarea_information_background_image);background-size:100% var(--sapField_InformationBorderWidth);background-repeat:repeat-x;background-position:bottom}:host([value-state=Information]:not([exceeding]):not([readonly]):not([focused]):hover) .ui5-textarea-inner{box-shadow:var(--sapContent_Informative_Shadow);background-color:var(--sapField_Hover_Background)}:host([value-state=Information][focused]:not([exceeding]):not([readonly])) .ui5-textarea-inner{background-image:none;box-shadow:var(--_ui5_textarea_focus_box_shadow);background-color:var(--sapField_Hover_Background)}:host([value-state=Success]:not([readonly])) .ui5-textarea-inner{background-image:var(--_ui_textarea_success_background_image);background-size:100% var(--sapField_SuccessBorderWidth);background-repeat:repeat-x;background-position:bottom}:host([value-state=Success]:not([exceeding]):not([readonly]):not([focused]):hover) .ui5-textarea-inner{box-shadow:var(--sapContent_Positive_Shadow);background-color:var(--sapField_Hover_Background)}:host([value-state=Success][focused]:not([exceeding]):not([readonly])) .ui5-textarea-inner{background-image:none;box-shadow:var(--_ui5_textarea_value_state_success_focus_box_shadow);background-color:var(--sapField_Hover_Background)}:host([value-state=Error]:not([readonly])){border-color:var(--sapField_InvalidColor)}:host([value-state=Error]:not([readonly])) .ui5-textarea-inner{background-color:var(--sapField_InvalidBackground)}:host([value-state=Error]:not([readonly]):not([disabled])) .ui5-textarea-inner,:host([value-state=Information]:not([readonly]):not([disabled])) .ui5-textarea-inner,:host([value-state=Warning]:not([readonly]):not([disabled])) .ui5-textarea-inner{border-style:var(--_ui5_input_error_warning_border_style)}:host([exceeding]),:host([value-state=Warning]:not([readonly])){border-color:var(--sapField_WarningColor)}:host([exceeding]) .ui5-textarea-inner,:host([value-state=Warning]:not([readonly])) .ui5-textarea-inner{background-color:var(--sapField_WarningBackground)}:host([value-state=Success]:not([readonly]):not([exceeding])){border-color:var(--sapField_SuccessColor)}:host([value-state=Success]:not([readonly]):not([exceeding])) .ui5-textarea-inner{background-color:var(--sapField_SuccessBackground);border-width:var(--_ui5_textarea_success_border_width)}:host([value-state=Information]:not([readonly]):not([exceeding])){border-color:var(--sapField_InformationColor)}:host([value-state=Information]:not([readonly]):not([exceeding])) .ui5-textarea-inner{background-color:var(--sapField_InformationBackground);border-width:var(--_ui5_textarea_state_border_width)}.ui5-textarea-exceeded-text{overflow:hidden;align-self:flex-end;padding:.125rem .125rem .5rem;color:var(--sapContent_LabelColor);font-family:"72override",var(--sapFontFamily);font-size:var(--sapFontSmallSize)}'};const yh={tag:"ui5-textarea",languageAware:!0,managedSlots:!0,properties:{value:{type:String},disabled:{type:Boolean},readonly:{type:Boolean},required:{type:Boolean},placeholder:{type:String},valueState:{type:Oa,defaultValue:Oa.None},rows:{type:dn,defaultValue:0},maxlength:{type:dn,defaultValue:null},showExceededText:{type:Boolean},growing:{type:Boolean},growingMaxLines:{type:dn,defaultValue:0},name:{type:String},accessibleName:{type:String},accessibleNameRef:{type:String},focused:{type:Boolean},exceeding:{type:Boolean},_mirrorText:{type:Object,multiple:!0,defaultValue:""},_maxHeight:{type:String,noAttribute:!0},_width:{type:dn}},slots:{valueStateMessage:{type:HTMLElement},formSupport:{type:HTMLElement}},events:{change:{},input:{}}};class wh extends Ft{static get metadata(){return yh}static get styles(){return bh}static get render(){return Ni}static get template(){return uh}static get staticAreaTemplate(){return ph}static get staticAreaStyles(){return Ys}constructor(){super(),this._firstRendering=!0,this._openValueStateMsgPopover=!1,this._fnOnResize=this._onResize.bind(this)}onEnterDOM(){un.register(this,this._fnOnResize)}onExitDOM(){un.deregister(this,this._fnOnResize)}onBeforeRendering(){this._exceededTextProps=this._calcExceededText(),this._mirrorText=this._tokenizeText(this.value),this.exceeding=this._exceededTextProps.leftCharactersCount<0,this.growingMaxLines&&(this._maxHeight=`${1.4*this.growingMaxLines*14+9}px`);const e=A("FormSupport");e?e.syncNativeHiddenInput(this):this.name&&console.warn('In order for the "name" property to have effect, you should also: import "@ui5/webcomponents/dist/features/InputElementsFormSupport.js";')}onAfterRendering(){this.toggleValueStateMessage(this.openValueStateMsgPopover),this._firstRendering=!1}getInputDomRef(){return this.getDomRef().querySelector("textarea")}_onkeydown(e){if(this._keyDown=!0,fo(e)){const e=this.getInputDomRef();this.value=this.previousValue,e.value=this.value,this.fireEvent("input")}}_onkeyup(){this._keyDown=!1}_onfocusin(){this.focused=!0,this._openValueStateMsgPopover=!0,this.previousValue=this.getInputDomRef().value}_onfocusout(e){const t=e.relatedTarget&&e.relatedTarget.shadowRoot&&e.relatedTarget.shadowRoot.querySelector(".ui5-valuestatemessage-root");this.focused=!1,t||(this._openValueStateMsgPopover=!1)}_onchange(){this.fireEvent("change",{})}_oninput(e){const t=this.getInputDomRef(),i=t.value===this.value&&fr()&&!this._keyDown&&!!this.placeholder;e.target===t&&e.stopImmediatePropagation(),i||(this.value=t.value,this.fireEvent("input",{}),this.fireEvent("value-changed"))}_onResize(){this.displayValueStateMessagePopover&&(this._width=this.offsetWidth)}toggleValueStateMessage(e){e?this.openPopover():this.closePopover()}async openPopover(){this.popover=await this._getPopover(),this.popover&&this.popover.showAt(this.shadowRoot.querySelector(".ui5-textarea-inner"))}async closePopover(){this.popover=await this._getPopover(),this.popover&&this.popover.close()}async _getPopover(){return(await this.getStaticAreaItemDomRef()).querySelector("[ui5-popover]")}_tokenizeText(e){const t=e.replace(/&/gm,"&").replace(/"/gm,""").replace(/'/gm,"'").replace(/</gm,"<").replace(/>/gm,">").split("\n");return t.length<this.rows?this._mapTokenizedTextToObject([...t,...Array(this.rows-t.length).fill("")]):this._mapTokenizedTextToObject(t)}_mapTokenizedTextToObject(e){return e.map((t,i)=>({text:t,last:i===e.length-1}))}_calcExceededText(){let e,t,i;if(this.showExceededText){const e=this.maxlength||0;e&&(i=e-this.value.length,t=i>=0?wh.i18nBundle.getText(_a,i):wh.i18nBundle.getText(ha,Math.abs(i)))}else e=this.maxlength;return{exceededText:t,leftCharactersCount:i,calcedMaxLength:e}}get classes(){return{valueStateMsg:{"ui5-valuestatemessage--error":this.valueState===Oa.Error,"ui5-valuestatemessage--warning":this.valueState===Oa.Warning||this.exceeding,"ui5-valuestatemessage--information":this.valueState===Oa.Information}}}get styles(){return{mirror:{"max-height":this._maxHeight},main:{width:"100%",height:this.rows&&!this.growing?`${22.4*this.rows}px`:"100%"},focusDiv:{height:this.showExceededText?"calc(100% - 26px)":"100%","max-height":this._maxHeight},valueStateMsgPopover:{"max-width":`${this._width}px`}}}get tabIndex(){return this.disabled?void 0:"0"}get ariaLabelText(){const e=cn(this);return this.showExceededText?e?`${e} ${this._exceededTextProps.exceededText}`:this._exceededTextProps.exceededText:e}get ariaDescribedBy(){return this.hasValueState?`${this._id}-valueStateDesc`:void 0}get ariaValueStateHiddenText(){if(this.hasValueState)return this.hasCustomValueState?this.valueStateMessageText.map(e=>e.textContent).join(" "):this.valueStateText}get ariaInvalid(){return"Error"===this.valueState?"true":void 0}get openValueStateMsgPopover(){return!this._firstRendering&&this._openValueStateMsgPopover&&this.displayValueStateMessagePopover}get displayValueStateMessagePopover(){return this.hasCustomValueState||this.hasValueState||this.exceeding}get hasCustomValueState(){return!!this.valueStateMessage.length&&this.hasValueState}get hasValueState(){return this.valueState===Oa.Error||this.valueState===Oa.Warning||this.valueState===Oa.Information}get valueStateMessageText(){return this.valueStateMessage.map(e=>e.cloneNode(!0))}get valueStateText(){return this.valueState!==Oa.Error&&this.exceeding?this.valueStateTextMappings()[Oa.Warning]:this.valueStateTextMappings()[this.valueState]}get _valueStateMessageIcon(){return this.valueState!==Oa.None?{Error:"error",Warning:"alert",Success:"sys-enter-2",Information:"information"}[this.valueState]:""}valueStateTextMappings(){return{Information:wh.i18nBundle.getText(xa),Error:wh.i18nBundle.getText(wa),Warning:wh.i18nBundle.getText(ka)}}static get dependencies(){return[fs]}static async onDefine(){wh.i18nBundle=await er("@ui5/webcomponents")}}wh.define();const kh={Polite:"Polite",Assertive:"Assertive"};let xh,Ch;var Sh;(class extends Pe{static isValid(e){return!!kh[e]}}).generateTypeAccessors(kh),Sh=()=>{if(xh&&Ch)return;const e="position: absolute;\n\tclip: rect(1px,1px,1px,1px);\n\tuser-select: none;\n\tleft: -1000px;\n\ttop: -1000px;\n\tpointer-events: none;";xh=document.createElement("span"),Ch=document.createElement("span"),xh.classList.add("ui5-invisiblemessage-polite"),Ch.classList.add("ui5-invisiblemessage-assertive"),xh.setAttribute("aria-live","polite"),Ch.setAttribute("aria-live","assertive"),xh.setAttribute("role","alert"),Ch.setAttribute("role","alert"),xh.style.cssText=e,Ch.style.cssText=e,k("ui5-static-area").appendChild(xh),k("ui5-static-area").appendChild(Ch)},Ee.attachEvent("boot",Sh);const Th="M258.5 275l102-103c6-6 14-9 22-9s15 3 22 9c6 7 9 14 9 22s-3 16-9 22l-124 124c-6 6-14 9-22 9s-15-3-22-9l-124-124c-6-6-9-14-9-22s3-15 9-22c7-6 14-9 22-9s16 3 22 9z";Ar("slim-arrow-down",{pathData:Th,ltr:!1,collection:"SAP-icons-v5",packageName:"@ui5/webcomponents-icons"});var Bh={pathData:Th};const Ih="M420.5 187q11-12 23 0 5 5 5 11t-5 11l-165 165q-10 9-23 9t-22-9l-166-165q-5-5-5-11.5t5-11.5 11.5-5 11.5 5l160 160q5 6 11 0z";Ar("slim-arrow-down",{pathData:Ih,ltr:!1,collection:"SAP-icons",packageName:"@ui5/webcomponents-icons"});var $h={pathData:Ih};me("sap_horizon");const Dh={tag:"ui5-option",managedSlots:!0,properties:{selected:{type:Boolean},disabled:{type:Boolean},icon:{type:String,defaultValue:null},value:{type:String},_focused:{type:Boolean}},slots:{default:{type:Node}},events:{}};class Ah extends Ft{static get metadata(){return Dh}get stableDomRef(){return`${this._id}-stable-dom-ref`}}Ah.define();const Fh="Auto",Eh="Vertical",Mh="Horizontal",Ph="Static",Lh="Cyclic";class Nh{constructor(e,t={}){this._setRootComponent(e),this._initOptions(t)}_setRootComponent(e){if(!e.isUI5Element)throw new Error("The root web component must be a UI5 Element instance");this.rootWebComponent=e,this.rootWebComponent.addEventListener("keydown",this._onkeydown.bind(this)),this.rootWebComponent._onComponentStateFinalized=()=>{this._init()}}_initOptions(e){if("function"!=typeof e.getItemsCallback)throw new Error("getItemsCallback is required");this._getItems=e.getItemsCallback,this._currentIndex=e.currentIndex||0,this._rowSize=e.rowSize||1,this._behavior=e.behavior||Ph,this._navigationMode=e.navigationMode||Fh,this._affectedPropertiesNames=e.affectedPropertiesNames||[],this._skipItemsSize=e.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._tabIndex=t===this._currentIndex?"0":"-1"})}_onkeydown(e){if(!this._canNavigate())return;const t=this._navigationMode===Mh||this._navigationMode===Fh,i=this._navigationMode===Eh||this._navigationMode===Fh;if(no(e)&&i)this._handleUp();else if(so(e)&&i)this._handleDown();else if(ro(e)&&t)this._handleLeft();else if(ao(e)&&t)this._handleRight();else if(ho(e))this._handleHome();else if(po(e))this._handleEnd();else if(yo(e))this._handlePageUp();else{if(!wo(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===Lh){const t=this._currentIndex%this._rowSize;let i=(0===t?this._rowSize-1:t-1)+(Math.ceil(e/this._rowSize)-1)*this._rowSize;i>e-1&&(i-=this._rowSize),this._currentIndex=i}else this._currentIndex=0}_handleDown(){const e=this._getItems().length;if(this._currentIndex+this._rowSize<e)this._currentIndex+=this._rowSize;else if(this._behavior===Lh){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===Lh&&(this._currentIndex=e-1)}_handleRight(){const e=this._getItems().length;this._currentIndex<e-1?this._currentIndex+=1:this._behavior===Lh&&(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-=this._currentIndex),this._currentIndex+1>this._skipItemsSize?this._currentIndex-=this._skipItemsSize:this._currentIndex-=this._currentIndex}_handlePageDownFlat(){null===this._skipItemsSize&&(this._currentIndex=this._getItems().length-1),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]._tabIndex=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=fe();return e&&e===t}_getCurrentItem(){const e=this._getItems();if(!e.length)return null;for(;this._currentIndex>=e.length;)this._currentIndex-=this._rowSize;this._currentIndex<0&&(this._currentIndex=0);const t=e[this._currentIndex];if(t){if(t.isUI5Element)return t.getFocusDomRef();if(this.rootWebComponent.getDomRef())return this.rootWebComponent.getDomRef().querySelector(`#${t.id}`)}}}const zh=(e,t)=>{const i=t||[];return e?(Array.from(e).forEach(e=>{if(e.nodeType!==Node.TEXT_NODE&&e.nodeType!==Node.COMMENT_NODE&&!e.hasAttribute("data-sap-no-tab-ref")){if(e.shadowRoot){const t=e.shadowRoot.children;e=Array.from(t).find(e=>"STYLE"!==e.tagName)}(e=>{if(!e)return!1;const t=e.nodeName.toLowerCase();if(e.hasAttribute("data-sap-no-tab-ref"))return!1;if(Bn(e))return!1;const i=e.getAttribute("tabindex");return null!=i?parseInt(i)>=0:"a"===t||/input|select|textarea|button|object/.test(t)?!e.disabled:void 0})(e)&&i.push(e),"SLOT"===e.tagName?zh(e.assignedNodes(),i):zh(e.children,i)}}),i):i};let Oh=null;const Hh={None:"None",SingleSelect:"SingleSelect",SingleSelectBegin:"SingleSelectBegin",SingleSelectEnd:"SingleSelectEnd",SingleSelectAuto:"SingleSelectAuto",MultiSelect:"MultiSelect",Delete:"Delete"};class Rh extends Pe{static isValid(e){return!!Hh[e]}}Rh.generateTypeAccessors(Hh);const Uh={Button:"Button",Scroll:"Scroll",None:"None"};class Vh extends Pe{static isValid(e){return!!Uh[e]}}Vh.generateTypeAccessors(Uh);class jh extends Vh{}const Wh={All:"All",Inner:"Inner",None:"None"};class qh extends Pe{static isValid(e){return!!Wh[e]}}qh.generateTypeAccessors(Wh);const Yh={Small:"Small",Medium:"Medium",Large:"Large"};class Gh extends Pe{static isValid(e){return!!Yh[e]}}Gh.generateTypeAccessors(Yh);const Xh=(e,t,i)=>vi`<div class="${Fi(e.classes.root)}">${e._isBusy?Zh(e,t,i):void 0}<slot></slot>${e.active?Kh(e):void 0}</div>`,Zh=(e,t,i)=>vi`<div class="ui5-busy-indicator-busy-area" title="${Mi(e.ariaTitle)}" tabindex="0" role="progressbar" aria-valuemin="0" aria-valuemax="100" aria-valuetext="Busy" aria-labelledby="${Mi(e.labelId)}" data-sap-focus-ref><div class="ui5-busy-indicator-circles-wrapper"><div class="ui5-busy-indicator-circle circle-animation-0"></div><div class="ui5-busy-indicator-circle circle-animation-1"></div><div class="ui5-busy-indicator-circle circle-animation-2"></div></div>${e.text?Jh(e,t,i):void 0}</div>`,Jh=(e,t,i)=>vi`<${zi("ui5-label",t,i)} id="${Mi(e._id)}-label" class="ui5-busy-indicator-text">${Mi(e.text)}</${zi("ui5-label",t,i)}>`,Kh=(e,t,i)=>vi`<span data-ui5-focus-redirect tabindex="0" @focusin="${e._redirectFocus}"></span>`;te("@ui5/webcomponents-theming","sap_fiori_3",()=>zr),te("@ui5/webcomponents","sap_fiori_3",()=>Or);var Qh={packageName:"@ui5/webcomponents",fileName:"themesBusyIndicator.css",content:':host(:not([hidden])){display:inline-block}:host([active]){color:var(--_ui5_busy_indicator_color)}:host([active]) :not(.ui5-busy-indicator-root--ie) ::slotted(:not([class^=ui5-busy-indicator-])){opacity:.6}:host([active]) .ui5-busy-indicator-root--ie ::slotted(:not([class^=ui5-busy-indicator-])){opacity:.95}:host([size=Small]) .ui5-busy-indicator-root{min-width:1.5rem;min-height:.5rem}:host([size=Small][text]:not([text=""])) .ui5-busy-indicator-root{min-height:1.75rem}:host([size=Small]) .ui5-busy-indicator-circle{width:.5rem;height:.5rem}:host(:not([size])) .ui5-busy-indicator-root,:host([size=Medium]) .ui5-busy-indicator-root{min-width:3rem;min-height:1rem}:host(:not([size])[text]:not([text=""])) .ui5-busy-indicator-root,:host([size=Medium][text]:not([text=""])) .ui5-busy-indicator-root{min-height:2.25rem}:host(:not([size])) .ui5-busy-indicator-circle,:host([size=Medium]) .ui5-busy-indicator-circle{width:1rem;height:1rem}:host([size=Large]) .ui5-busy-indicator-root{min-width:6rem;min-height:2rem}:host([size=Large][text]:not([text=""])) .ui5-busy-indicator-root{min-height:3.25rem}:host([size=Large]) .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}.ui5-busy-indicator-busy-area{position:absolute;z-index:99;left:0;right:0;top:0;bottom:0;display:flex;justify-content:center;align-items:center;background-color:inherit;flex-direction:column}.ui5-busy-indicator-busy-area:focus{outline:var(--_ui5_busy_indicator_focus_outline);outline-offset:-2px;border-radius:var(--_ui5_busy_indicator_focus_border_radius)}.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 cubic-bezier(.32,.06,.85,1.11) infinite}.circle-animation-1{animation:grow 1.6s cubic-bezier(.32,.06,.85,1.11) infinite;animation-delay:.2s}.circle-animation-2{animation:grow 1.6s cubic-bezier(.32,.06,.85,1.11) infinite;animation-delay:.4s}.ui5-busy-indicator-text{width:100%;margin-top:.25rem;text-align:center}@keyframes grow{0%,50%,to{-webkit-transform:scale(.5);-moz-transform:scale(.5);-ms-transform:scale(.5);transform:scale(.5)}25%{-webkit-transform:scale(1);-moz-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}}'};const ep={tag:"ui5-busy-indicator",altTag:"ui5-busyindicator",languageAware:!0,slots:{default:{type:Node}},properties:{text:{type:String},size:{type:Gh,defaultValue:Gh.Medium},active:{type:Boolean},delay:{type:dn,defaultValue:1e3},_isBusy:{type:Boolean,noAttribute:!0}}};class tp extends Ft{constructor(){super(),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})}onExitDOM(){this._busyTimeoutId&&(clearTimeout(this._busyTimeoutId),delete this._busyTimeoutId),this.removeEventListener("keydown",this._keydownHandler,!0),this.removeEventListener("keyup",this._preventEventHandler,!0)}static get metadata(){return ep}static get styles(){return Qh}static get render(){return Ni}static get template(){return Xh}static get dependencies(){return[Xa]}static async onDefine(){tp.i18nBundle=await er("@ui5/webcomponents")}get ariaTitle(){return tp.i18nBundle.getText(jr)}get labelId(){return this.text?`${this._id}-label`:void 0}get classes(){return{root:{"ui5-busy-indicator-root":!0,"ui5-busy-indicator-root--ie":fr()}}}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.active&&(e.stopImmediatePropagation(),vo(e)&&(this.focusForward=!0,this.shadowRoot.querySelector("[data-ui5-focus-redirect]").focus(),this.focusForward=!1))}_preventEvent(e){this.active&&e.stopImmediatePropagation()}_redirectFocus(e){this.focusForward||(e.preventDefault(),this.shadowRoot.querySelector(".ui5-busy-indicator-busy-area").focus())}}tp.define();const ip=(e,t,i)=>vi`<div class="ui5-list-root" @focusin="${e._onfocusin}" @keydown="${e._onkeydown}"><div class="ui5-list-scroll-container"><!-- header -->${e.header.length?op():void 0}${e.shouldRenderH1?rp(e):void 0}${e.hasData?ap(e):void 0}<span id="${Mi(e._id)}-modeLabel" class="ui5-hidden-text">${Mi(e.ariaLabelModeText)}</span><ul id="${Mi(e._id)}-listUl" class="ui5-list-ul" role="${Mi(e.accessibleRole)}" aria-label="${Mi(e.ariaLabelTxt)}" aria-labelledby="${Mi(e.ariaLabelledBy)}"><slot></slot>${e.showNoDataText?np(e):void 0}</ul>${e.growsWithButton?sp(e):void 0}${e.footerText?lp(e):void 0}${e.hasData?up(e):void 0}<span tabindex="-1" aria-hidden="true" class="ui5-list-end-marker"></span></div>${e.busy?dp(e,t,i):void 0}</div> `,op=(e,t,i)=>vi`<slot name="header" />`,rp=(e,t,i)=>vi`<header id="${Mi(e.headerID)}" class="ui5-list-header">${Mi(e.headerText)}</header>`,ap=(e,t,i)=>vi`<div id="${Mi(e._id)}-before" tabindex="0" class="ui5-list-focusarea"></div>`,np=(e,t,i)=>vi`<li id="${Mi(e._id)}-nodata" class="ui5-list-nodata" tabindex="${Mi(e.noDataTabIndex)}"><div id="${Mi(e._id)}-nodata-text" class="ui5-list-nodata-text">${Mi(e.noDataText)}</div></li>`,sp=(e,t,i)=>vi`<div growing-button><div tabindex="0" role="button" aria-labelledby="${Mi(e._id)}-growingButton-text" ?active="${e._loadMoreActive}" @click="${e._onLoadMoreClick}" @keydown="${e._onLoadMoreKeydown}" @keyup="${e._onLoadMoreKeyup}" @mousedown="${e._onLoadMoreMousedown}" @mouseup="${e._onLoadMoreMouseup}" growing-button-inner><span id="${Mi(e._id)}-growingButton-text" growing-button-text>${Mi(e._growingButtonText)}</span></div></div>`,lp=(e,t,i)=>vi`<footer id="${Mi(e._id)}-footer" class="ui5-list-footer">${Mi(e.footerText)}</footer>`,up=(e,t,i)=>vi`<div id="${Mi(e._id)}-after" tabindex="0" class="ui5-list-focusarea"></div>`,dp=(e,t,i)=>vi`<div class="ui5-list-busy-row"><${zi("ui5-busy-indicator",t,i)} delay="${Mi(e.busyDelay)}" active size="Medium" class="ui5-list-busy-ind" style="${Ei(e.styles.busyInd)}" data-sap-focus-ref></${zi("ui5-busy-indicator",t,i)}></div>`;te("@ui5/webcomponents-theming","sap_fiori_3",()=>zr),te("@ui5/webcomponents","sap_fiori_3",()=>Or);var cp={packageName:"@ui5/webcomponents",fileName:"themesList.css",content:'.ui5-hidden-text{position:absolute;clip:rect(1px,1px,1px,1px);user-select:none;left:-1000px;top:-1000px;pointer-events:none;font-size:0}[growing-button]{display:flex;align-items:center;padding:var(--_ui5_load_more_padding);border-top:1px solid var(--sapList_BorderColor);box-sizing:border-box;cursor:pointer;outline:none}[growing-button-inner]{display:flex;align-items:center;justify-content:center;flex-direction:column;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}[growing-button-inner]:focus{outline:var(--_ui5_load_more_outline_width) var(--sapContent_FocusStyle) var(--sapContent_FocusColor);outline-offset:-.125rem;border-color:transparent}[growing-button-inner]:hover{background-color:var(--sapList_Hover_Background)}[growing-button-inner]:active,[growing-button-inner][active]{background-color:var(--sapList_Active_Background);border-color:var(--sapList_Active_Background)}[growing-button-inner]:active>*,[growing-button-inner][active]>*{color:var(--sapList_Active_TextColor)}[growing-button-subtext],[growing-button-text]{width:100%;text-align:center;font-family:"72override",var(--sapFontFamily);white-space:nowrap;overflow:hidden;text-overflow:ellipsis;box-sizing:border-box}[growing-button-text]{height:var(--_ui5_load_more_text_height);padding:.875rem 1rem 0 1rem;font-size:var(--_ui5_load_more_text_font_size);font-weight:700}[growing-button-subtext]{font-size:var(--sapFontSize);padding:var(--_ui5_load_more_desc_padding)}:host(:not([hidden])){display:block;max-width:100%;width:100%}:host([indent]) .ui5-list-root{padding:2rem}:host([separators=None]) .ui5-list-nodata{border-bottom:0}:host([busy]){opacity:.72}:host([busy]) .ui5-list-busy-row{position:absolute;left:0;right:0;bottom:0;top:0;outline:none}:host([busy]) .ui5-list-busy-ind{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);z-index:1}.ui5-list-root{width:100%;height:100%;position:relative;box-sizing:border-box}.ui5-list-scroll-container{overflow:auto;height: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:"72override",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:"72override",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;height:var(--_ui5_list_no_data_height);font-size:var(--sapFontSize)}.ui5-list-nodata-text{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}'};const _p={tag:"ui5-list",managedSlots:!0,slots:{header:{type:HTMLElement},default:{propertyName:"items",type:HTMLElement}},properties:{headerText:{type:String},footerText:{type:String},indent:{type:Boolean},mode:{type:Rh,defaultValue:Rh.None},noDataText:{type:String},separators:{type:qh,defaultValue:qh.All},growing:{type:jh,defaultValue:jh.None},busy:{type:Boolean},busyDelay:{type:dn,defaultValue:1e3},accessibleName:{type:String},accessibleNameRef:{type:String,defaultValue:""},accessibleRole:{type:String,defaultValue:"list"},_inViewport:{type:Boolean},_loadMoreActive:{type:Boolean}},events:{"item-click":{detail:{item:{type:HTMLElement}}},"item-close":{detail:{item:{type:HTMLElement}}},"item-toggle":{detail:{item:{type:HTMLElement}}},"item-delete":{detail:{item:{type:HTMLElement}}},"selection-change":{detail:{selectedItems:{type:Array},previouslySelectedItems:{type:Array},selectionComponentPressed:{type:Boolean}}},"load-more":{}}};class hp extends Ft{static get metadata(){return _p}static get render(){return Ni}static get template(){return ip}static get styles(){return cp}static async onDefine(){hp.i18nBundle=await er("@ui5/webcomponents")}static get dependencies(){return[tp]}constructor(){super(),this.initItemNavigation(),this._previouslyFocusedItem=null,this._forwardingFocus=!1,this._previouslySelectedItem=null,this.resizeListenerAttached=!1,this.listEndObserved=!1,this.addEventListener("ui5-_press",this.onItemPress.bind(this)),this.addEventListener("ui5-close",this.onItemClose.bind(this)),this.addEventListener("ui5-toggle",this.onItemToggle.bind(this)),this.addEventListener("ui5-_focused",this.onItemFocused.bind(this)),this.addEventListener("ui5-_forward-after",this.onForwardAfter.bind(this)),this.addEventListener("ui5-_forward-before",this.onForwardBefore.bind(this)),this.addEventListener("ui5-_selection-requested",this.onSelectionRequested.bind(this)),this.addEventListener("ui5-_focus-requested",this.focusUploadCollectionItem.bind(this)),this._handleResize=this.checkListInViewport.bind(this),this.initialIntersection=!0}onExitDOM(){this.unobserveListEnd(),this.resizeListenerAttached=!1,un.deregister(this.getDomRef(),this._handleResize)}onBeforeRendering(){this.prepareListItems()}onAfterRendering(){this.growsOnScroll?this.observeListEnd():this.listEndObserved&&this.unobserveListEnd(),this.grows&&(this.checkListInViewport(),this.attachForResize())}attachForResize(){this.resizeListenerAttached||(this.resizeListenerAttached=!0,un.register(this.getDomRef(),this._handleResize))}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 hasData(){return 0!==this.getSlottedNodes("items").length}get showNoDataText(){return!this.hasData&&this.noDataText}get isDelete(){return this.mode===Rh.Delete}get isSingleSelect(){return[Rh.SingleSelect,Rh.SingleSelectBegin,Rh.SingleSelectEnd,Rh.SingleSelectAuto].includes(this.mode)}get isMultiSelect(){return this.mode===Rh.MultiSelect}get ariaLabelledBy(){if(this.accessibleNameRef||this.accessibleName)return;const e=[];return(this.isMultiSelect||this.isSingleSelect||this.isDelete)&&e.push(this.modeLabelID),this.shouldRenderH1&&e.push(this.headerID),e.length?e.join(" "):void 0}get ariaLabelTxt(){return cn(this)}get ariaLabelModeText(){return this.isMultiSelect?hp.i18nBundle.getText(la):this.isSingleSelect?hp.i18nBundle.getText(sa):this.isDelete?hp.i18nBundle.getText(ua):void 0}get grows(){return this.growing!==jh.None}get growsOnScroll(){return this.growing===jh.Scroll&&!fr()}get growsWithButton(){return fr()?this.grows:this.growing===jh.Button}get _growingButtonText(){return hp.i18nBundle.getText(ca)}get busyIndPosition(){return fr()||!this.grows||this._inViewport?"absolute":"sticky"}get styles(){return{busyInd:{position:this.busyIndPosition}}}initItemNavigation(){this._itemNavigation=new Nh(this,{skipItemsSize:10,navigationMode:Eh,getItemsCallback:()=>this.getEnabledItems()})}prepareListItems(){const e=this.getSlottedNodes("items");e.forEach((t,i)=>{const o=i===e.length-1,r=this.separators===qh.All||this.separators===qh.Inner&&!o;t._mode=this.mode,t.hasBorder=r}),this._previouslySelectedItem=null}async observeListEnd(){this.listEndObserved||(await b(),this.getIntersectionObserver().observe(this.listEndDOM),this.listEndObserved=!0)}unobserveListEnd(){this.growingIntersectionObserver&&(this.growingIntersectionObserver.disconnect(),this.growingIntersectionObserver=null,this.listEndObserved=!1)}onInteresection(e){this.initialIntersection?this.initialIntersection=!1:e.forEach(e=>{var t,i;e.isIntersecting&&(t=this.loadMore.bind(this),i=250,clearTimeout(Oh),Oh=setTimeout(()=>{Oh=null,t()},i))})}onSelectionRequested(e){const t=this.getSelectedItems();let i=!1;this._selectionRequested=!0,this[`handle${this.mode}`]&&(i=this[`handle${this.mode}`](e.detail.item,e.detail.selected)),i&&this.fireEvent("selection-change",{selectedItems:this.getSelectedItems(),previouslySelectedItems:t,selectionComponentPressed:e.detail.selectionComponentPressed,key:e.detail.key})}handleSingleSelect(e){return!e.selected&&(this.deselectSelectedItems(),e.selected=!0,!0)}handleSingleSelectBegin(e){return this.handleSingleSelect(e)}handleSingleSelectEnd(e){return this.handleSingleSelect(e)}handleSingleSelectAuto(e){return this.handleSingleSelect(e)}handleMultiSelect(e,t){return e.selected=t,!0}handleDelete(e){this.fireEvent("item-delete",{item:e})}deselectSelectedItems(){this.getSelectedItems().forEach(e=>{e.selected=!1})}getSelectedItems(){return this.getSlottedNodes("items").filter(e=>e.selected)}getEnabledItems(){return this.getSlottedNodes("items").filter(e=>!e.disabled)}_onkeydown(e){vo(e)&&this._handleTabNext(e)}_onLoadMoreKeydown(e){io(e)&&(e.preventDefault(),this._loadMoreActive=!0),eo(e)&&(this._onLoadMoreClick(),this._loadMoreActive=!0),vo(e)&&(this.setPreviouslyFocusedItem(e.target),this.focusAfterElement())}_onLoadMoreKeyup(e){io(e)&&this._onLoadMoreClick(),this._loadMoreActive=!1}_onLoadMoreMousedown(){this._loadMoreActive=!0}_onLoadMoreMouseup(){this._loadMoreActive=!1}_onLoadMoreClick(){this.loadMore()}checkListInViewport(){this._inViewport=(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)})(this.getDomRef())}loadMore(){this.fireEvent("load-more")}_handleTabNext(e){let t;const i=this.getNormalizedTarget(e.target);this.headerToolbar&&(t=this.getHeaderToolbarLastTabbableElement()),t&&t===i&&(this.getFirstItem(e=>e.selected&&!e.disabled)?this.focusFirstSelectedItem():this.getPreviouslyFocusedItem()?this.focusPreviouslyFocusedItem():this.focusFirstItem(),e.stopImmediatePropagation(),e.preventDefault())}_onfocusin(e){if(this.isForwardElement(this.getNormalizedTarget(e.target))){if(!this.getPreviouslyFocusedItem())return this.getFirstItem(e=>e.selected&&!e.disabled)?this.focusFirstSelectedItem():this.focusFirstItem(),void e.stopImmediatePropagation();this.getForwardingFocus()||(this.getFirstItem(e=>e.selected&&!e.disabled)?this.focusFirstSelectedItem():this.focusPreviouslyFocusedItem(),e.stopImmediatePropagation()),this.setForwardingFocus(!1)}else e.stopImmediatePropagation()}isForwardElement(e){const t=e.id,i=this.getAfterElement(),o=this.getBeforeElement();return!!(this._id===t||o&&o.id===t)||i&&i.id===t}onItemFocused(e){const t=e.target;this._itemNavigation.setCurrentItem(t),this.fireEvent("item-focused",{item:t}),this.mode===Rh.SingleSelectAuto&&this.onSelectionRequested({detail:{item:t,selectionComponentPressed:!1,selected:!0,key:e.detail.key}})}onItemPress(e){const t=e.detail.item;this._selectionRequested||this.mode===Rh.Delete||(this._selectionRequested=!0,this.onSelectionRequested({detail:{item:t,selectionComponentPressed:!1,selected:!t.selected,key:e.detail.key}})),this.fireEvent("item-press",{item:t}),this.fireEvent("item-click",{item:t}),this._selectionRequested=!1}onItemClose(e){this.fireEvent("item-close",{item:e.detail.item})}onItemToggle(e){this.fireEvent("item-toggle",{item:e.detail.item})}onForwardBefore(e){this.setPreviouslyFocusedItem(e.target),this.focusBeforeElement(),e.stopImmediatePropagation()}onForwardAfter(e){this.setPreviouslyFocusedItem(e.target),this.growsWithButton||this.focusAfterElement()}focusBeforeElement(){this.setForwardingFocus(!0),this.getBeforeElement().focus()}focusAfterElement(){this.setForwardingFocus(!0),this.getAfterElement().focus()}focusFirstItem(){const e=this.getFirstItem(e=>!e.disabled);e&&e.focus()}focusPreviouslyFocusedItem(){const e=this.getPreviouslyFocusedItem();e&&e.focus()}focusFirstSelectedItem(){const e=this.getFirstItem(e=>e.selected&&!e.disabled);e&&e.focus()}focusItem(e){this._itemNavigation.setCurrentItem(e),e.focus()}focusUploadCollectionItem(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.getSlottedNodes("items");let i=null;if(!e)return!!t.length&&t[0];for(let o=0;o<t.length;o++)if(e(t[o])){i=t[o];break}return i}getAfterElement(){return this._afterElement||(this._afterElement=this.shadowRoot.querySelector(`#${this._id}-after`)),this._afterElement}getBeforeElement(){return this._beforeElement||(this._beforeElement=this.shadowRoot.querySelector(`#${this._id}-before`)),this._beforeElement}getHeaderToolbarLastTabbableElement(){return(e=>{const t=zh(e.children);return t.length?t[t.length-1]:null})(this.headerToolbar.getDomRef())||this.headerToolbar.getDomRef()}getNormalizedTarget(e){let t=e;return e.shadowRoot&&e.shadowRoot.activeElement&&(t=e.shadowRoot.activeElement),t}getIntersectionObserver(){return this.growingIntersectionObserver||(this.growingIntersectionObserver=new IntersectionObserver(this.onInteresection.bind(this),{root:null,rootMargin:"0px",threshold:1})),this.growingIntersectionObserver}}hp.define();const pp="M503 94c12 12 12 29 0 40l-85 85-284 285c-6 6-12 8-20 8H28c-17 0-28-11-28-28v-85c0-9 3-15 9-20L293 94l85-85c12-11 29-11 40 0zM114 444l244-244-45-46L68 399zm284-284l46-46-46-45-45 45z";Ar("edit",{pathData:pp,ltr:!1,collection:"SAP-icons-v5",packageName:"@ui5/webcomponents-icons"});var gp={pathData:pp};const mp="M475 104q5 7 5 12 0 6-5 11L150 453q-4 4-8 4L32 480l22-110q0-5 4-9L384 36q4-4 11-4t11 4zm-121 99l-46-45L84 381l46 46zm87-88l-46-44-64 64 45 45z";Ar("edit",{pathData:mp,ltr:!1,collection:"SAP-icons",packageName:"@ui5/webcomponents-icons"});var fp={pathData:mp};me("sap_horizon");const vp={Inactive:"Inactive",Active:"Active",Detail:"Detail"};class bp extends Pe{static isValid(e){return!!vp[e]}}bp.generateTypeAccessors(vp),te("@ui5/webcomponents-theming","sap_fiori_3",()=>zr),te("@ui5/webcomponents","sap_fiori_3",()=>Or);var yp={packageName:"@ui5/webcomponents",fileName:"themesListItemBase.css",content:':host(:not([hidden])){display:block}:host{height:var(--_ui5_list_item_base_height);background:var(--ui5-listitem-background-color);box-sizing:border-box;border-bottom:1px solid transparent}:host([selected]){background:var(--sapList_SelectionBackgroundColor)}:host([has-border]){border-bottom:var(--ui5-listitem-border-bottom)}:host([selected]){border-bottom:var(--ui5-listitem-selected-border-bottom)}:host([selected][has-border]){border-bottom:var(--ui5-listitem-selected-border-bottom)}.ui5-li-root{position:relative;display:flex;align-items:center;width:100%;height:100%;padding:0 1rem 0 1rem;box-sizing:border-box}:host([focused]) .ui5-li-root.ui5-li--focusable{outline:none}:host([focused]) .ui5-li-root.ui5-li--focusable:after{content:"";border:var(--sapContent_FocusWidth) var(--sapContent_FocusStyle) var(--sapContent_FocusColor);position:absolute;top:0;right:0;bottom:0;left:0;pointer-events:none}:host([focused]) .ui5-li-content:focus:after{content:"";border:var(--sapContent_FocusWidth) var(--sapContent_FocusStyle) var(--sapContent_FocusColor);position:absolute;top:0;right:0;bottom:0;left:0;pointer-events:none}:host([active][focused]) .ui5-li-root.ui5-li--focusable:after{border-color:var(--ui5-listitem-active-border-color)}:host([disabled]){opacity:var(--_ui5-listitembase_disabled_opacity);pointer-events:none}.ui5-li-content{max-width:100%;min-height:1px;font-family:"72override",var(--sapFontFamily);pointer-events:none}'};const wp={properties:{selected:{type:Boolean},hasBorder:{type:Boolean},_tabIndex:{type:String,defaultValue:"-1",noAttribute:!0},disabled:{type:Boolean},focused:{type:Boolean}},events:{_focused:{},"_forward-after":{},"_forward-before":{}}};class kp extends Ft{static get metadata(){return wp}static get render(){return Ni}static get styles(){return yp}_onfocusin(e){"button"!==e.isMarked&&"link"!==e.isMarked&&(this.focused=!0,this.fireEvent("_focused",e))}_onfocusout(e){this.focused=!1}_onkeydown(e){return vo(e)?this._handleTabNext(e):bo(e)?this._handleTabPrevious(e):void 0}_onkeyup(){}_handleTabNext(e){const t=e.target;this.shouldForwardTabAfter(t)&&this.fireEvent("_forward-after",{item:t})}_handleTabPrevious(e){const t=e.target;if(this.shouldForwardTabBefore(t)){const i=e;i.item=t,this.fireEvent("_forward-before",i)}}shouldForwardTabAfter(e){const t=(i=this.getDomRef(),zh(i.children));var i;return e.getFocusDomRef&&(e=e.getFocusDomRef()),!t.length||t[t.length-1]===e}shouldForwardTabBefore(e){return this.getDomRef()===e}get classes(){return{main:{"ui5-li-root":!0,"ui5-li--focusable":!this.disabled}}}get ariaDisabled(){return this.disabled?"true":void 0}get tabIndex(){return this.disabled?-1:this.selected?0:this._tabIndex}}te("@ui5/webcomponents-theming","sap_fiori_3",()=>zr),te("@ui5/webcomponents","sap_fiori_3",()=>Or);var xp={packageName:"@ui5/webcomponents",fileName:"themesListItem.css",content:".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([actionable]:not([disabled])){cursor:pointer}:host([selected][actionable]:not([active]):hover){background:var(--sapList_Hover_SelectionBackground)}:host([active][actionable]),:host([selected][active][actionable]){background:var(--sapList_Active_Background)}:host([actionable]:not([active]):not([selected]):hover){background:var(--sapList_Hover_Background)}:host([active][actionable]) .ui5-li-root.ui5-li--focusable .ui5-li-content:focus,:host([active][actionable]) .ui5-li-root.ui5-li--focusable:focus{outline-color:var(--sapContent_ContrastFocusColor)}:host([active][actionable]) .ui5-li-root .ui5-li-icon{color:var(--sapList_Active_TextColor)}:host([active][actionable]) .ui5-li-additional-text,:host([active][actionable]) .ui5-li-desc,:host([active][actionable]) .ui5-li-title{color:var(--sapList_Active_TextColor)}:host([additional-text-state=Warning]) .ui5-li-additional-text{color:var(--sapCriticalTextColor)}:host([additional-text-state=Success]) .ui5-li-additional-text{color:var(--sapPositiveTextColor)}:host([additional-text-state=Error]) .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([image]) .ui5-li-content{height:3rem}:host([description]) .ui5-li-root{padding:1rem}:host([description]) .ui5-li-content{height:3rem}:host([has-title][description]) .ui5-li-title{padding-bottom:.375rem}.ui5-li-text-wrapper{display:flex;flex-direction:column;flex:auto;min-width:1px;line-height:normal}:host([description]) .ui5-li-text-wrapper{height:100%;justify-content:space-between;padding:.125rem 0}.ui5-li-description-info-wrapper{display:flex;justify-content:space-between}.ui5-li-title{color:var(--sapTextColor);font-size:var(--_ui5_list_item_title_size)}.ui5-li-additional-text,.ui5-li-desc,.ui5-li-title{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.ui5-li-desc{color:var(--sapContent_LabelColor);font-size:var(--sapFontSize)}.ui5-li-additional-text{margin:0 .25rem;color:var(--sapNeutralTextColor);font-size:.875rem;min-width:3.75rem;text-align:right;max-width:40%}:host([description]) .ui5-li-additional-text{align-self:flex-end}.ui5-li-img{width:var(--_ui5_list_item_img_size);min-width:var(--_ui5_list_item_img_size);height:var(--_ui5_list_item_img_size);min-height:var(--_ui5_list_item_img_size);margin:var(--_ui5_list_item_img_margin);border-radius:.25rem}.ui5-li-img-inner{object-fit:contain}.ui5-li-icon{min-width:var(--_ui5_list_item_icon_size);min-height:var(--_ui5_list_item_icon_size);color:var(--sapContent_NonInteractiveIconColor);padding-right:.5rem}.ui5-li-content{display:flex;align-items:center;flex:auto;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;pointer-events:none}.ui5-li-deletebtn,.ui5-li-detailbtn{display:flex;align-items:center}.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([_mode=SingleSelectBegin]) .ui5-li-root{padding-right:1rem;padding-left:0}:host([_mode=MultiSelect]) .ui5-li-root{padding-right:1rem;padding-left:0}:host([_mode=SingleSelectEnd]) .ui5-li-root{padding-right:0;padding-left:1rem}:host [ui5-checkbox].ui5-li-singlesel-radiobtn{margin-right:var(--_ui5_list_item_cb_margin_right)}:host [dir=rtl] .ui5-li-icon{padding-left:.5rem;padding-right:0}:host [dir=rtl] .ui5-li-img{margin:.5rem 0 .5rem .75rem}[dir=rtl] .ui5-li-additional-text{text-align:left}:host([_mode=SingleSelectBegin]) [dir=rtl].ui5-li-root{padding-right:0;padding-left:1rem}:host([_mode=MultiSelect]) [dir=rtl].ui5-li-root{padding-right:0;padding-left:1rem}:host([_mode=SingleSelectEnd]) [dir=rtl].ui5-li-root{padding-right:1rem;padding-left:0}"};const Cp={languageAware:!0,properties:{type:{type:bp,defaultValue:bp.Active},active:{type:Boolean},title:{type:String},actionable:{type:Boolean},role:{type:String,defaultValue:"listitem"},_mode:{type:Rh,defaultValue:Rh.None}},events:{"detail-click":{},_press:{},_focused:{},"_selection-requested":{}}};class Sp extends kp{static get metadata(){return Cp}static get styles(){return[kp.styles,xp]}static get dependencies(){return[Na,lh,an]}constructor(){super(),this.deactivateByKey=e=>{eo(e)&&this.deactivate()},this.deactivate=()=>{this.active&&(this.active=!1)}}onBeforeRendering(...e){this.actionable=this.type===bp.Active&&this._mode!==Rh.Delete}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){super._onkeydown(e);const t=this.type===bp.Active;io(e)&&e.preventDefault(),(io(e)||eo(e))&&t&&this.activate(),eo(e)&&this.fireItemPress(e)}_onkeyup(e){(io(e)||eo(e))&&this.deactivate(),io(e)&&this.fireItemPress(e),this.modeDelete&&(e=>(e.key?"Delete"===e.key:e.keyCode===Ki)&&!$o(e))(e)&&this.onDelete()}_onmousedown(e){"button"!==e.isMarked&&this.activate()}_onmouseup(e){"button"!==e.isMarked&&this.deactivate()}_ontouchstart(e){this._onmousedown(e)}_ontouchend(e){this._onmouseup(e)}_onfocusout(){super._onfocusout(),this.deactivate()}_onclick(e){"button"!==e.isMarked&&this.fireItemPress(e)}onMultiSelectionComponentPress(e){this.isInactive||this.fireEvent("_selection-requested",{item:this,selected:e.target.checked,selectionComponentPressed:!0})}onSingleSelectionComponentPress(e){this.isInactive||this.fireEvent("_selection-requested",{item:this,selected:!e.target.selected,selectionComponentPressed:!0})}activate(){this.type===bp.Active&&(this.active=!0)}onDelete(e){this.fireEvent("_selection-requested",{item:this,selectionComponentPressed:!1})}onDetailClick(e){this.fireEvent("detail-click",{item:this,selected:this.selected})}fireItemPress(e){this.isInactive||this.fireEvent("_press",{item:this,selected:this.selected,key:e.key})}get isInactive(){return this.type===bp.Inactive||this.type===bp.Detail}get placeSelectionElementBefore(){return this._mode===Rh.MultiSelect||this._mode===Rh.SingleSelectBegin}get placeSelectionElementAfter(){return!this.placeSelectionElementBefore&&(this._mode===Rh.SingleSelectEnd||this._mode===Rh.Delete)}get modeSingleSelect(){return[Rh.SingleSelectBegin,Rh.SingleSelectEnd,Rh.SingleSelect].includes(this._mode)}get modeMultiSelect(){return this._mode===Rh.MultiSelect}get modeDelete(){return this._mode===Rh.Delete}get renderDeleteButton(){return this.modeDelete}get disableDeleteButton(){return!1}get typeDetail(){return this.type===bp.Detail}get typeActive(){return this.type===bp.Active}get ariaSelected(){if(this.modeMultiSelect||this.modeSingleSelect)return this.selected}get ariaSelectedText(){let e;return void 0!==this.ariaSelected&&(e=this.ariaSelected?Sp.i18nBundle.getText(oa):Sp.i18nBundle.getText(ra)),e}get deleteText(){return Sp.i18nBundle.getText(Zr)}get _accInfo(){return{role:this.role,ariaExpanded:void 0,ariaLevel:void 0,ariaLabel:Sp.i18nBundle.getText(aa),ariaLabelRadioButton:Sp.i18nBundle.getText(na),ariaSelectedText:this.ariaSelectedText}}static async onDefine(){Sp.i18nBundle=await er("@ui5/webcomponents")}}const Tp=(e,t,i)=>vi`<div class="ui5-avatar-root" tabindex="${Mi(e.tabindex)}" data-sap-focus-ref @keyup=${e._onkeyup} @keydown=${e._onkeydown} @focusout=${e._onfocusout} @focusin=${e._onfocusin} @click=${e._onclick} role="${Mi(e._role)}" aria-haspopup="${Mi(e._ariaHasPopup)}">${e.hasImage?Bp():Ip(e,t,i)}</div>`,Bp=(e,t,i)=>vi`<slot></slot>`,Ip=(e,t,i)=>vi`${e.icon?$p(e,t,i):Dp(e)}`,$p=(e,t,i)=>vi`<${zi("ui5-icon",t,i)} class="ui5-avatar-icon" name="${Mi(e.icon)}" accessible-name="${Mi(e.accessibleNameText)}"></${zi("ui5-icon",t,i)}>`,Dp=(e,t,i)=>vi`${e.initials?Ap(e):void 0}`,Ap=(e,t,i)=>vi`<span class="ui5-avatar-initials">${Mi(e.validInitials)}</span>`;te("@ui5/webcomponents-theming","sap_fiori_3",()=>zr),te("@ui5/webcomponents","sap_fiori_3",()=>Or);var Fp={packageName:"@ui5/webcomponents",fileName:"themesAvatar.css",content:":host(:not([hidden])){display:inline-block;box-sizing:border-box}:host(:not([hidden]).ui5_hovered){opacity:.7}:host([focused]){outline:var(--_ui5_avatar_outline);outline-offset:var(--_ui5_avatar_focus_offset)}:host([interactive]){cursor:pointer}:host{height:3rem;width:3rem;border-radius:50%;border:var(--ui5-avatar-initials-border);outline:none;color:var(--ui5-avatar-initials-color)}:host([shape=Square]),:host([shape=Square]) ::slotted(*){border-radius:.25rem}:host([shape=Square]) .ui5-avatar-root{border-radius:inherit}:host([shape=Square]) .ui5-avatar-img{border-radius:inherit}:host([_size=XS]),:host([size=XS]){height:2rem;width:2rem;min-height:2rem;min-width:2rem;font-size:var(--_ui5_avatar_fontsize_XS)}:host([_size=S]),:host([size=S]){min-height:3rem;min-width:3rem;font-size:var(--_ui5_avatar_fontsize_S)}:host([_size=M]),:host([size=M]){min-height:4rem;min-width:4rem;font-size:var(--_ui5_avatar_fontsize_M)}:host([_size=L]),:host([size=L]){min-height:5rem;min-width:5rem;font-size:var(--_ui5_avatar_fontsize_L)}:host([_size=XL]),:host([size=XL]){min-height:7rem;min-width:7rem;font-size:var(--_ui5_avatar_fontsize_XL)}:host .ui5-avatar-icon{height:1.5rem;width:1.5rem;color:inherit}:host([_size=XS]) .ui5-avatar-icon,:host([size=XS]) .ui5-avatar-icon{height:1rem;width:1rem}:host([_size=S]) .ui5-avatar-icon,:host([size=S]) .ui5-avatar-icon{height:1.5rem;width:1.5rem}:host([_size=M]) .ui5-avatar-icon,:host([size=M]) .ui5-avatar-icon{height:2rem;width:2rem}:host([_size=L]) .ui5-avatar-icon,:host([size=L]) .ui5-avatar-icon{height:2.5rem;width:2.5rem}:host([_size=XL]) .ui5-avatar-icon,:host([size=XL]) .ui5-avatar-icon{height:3rem;width:3rem}::slotted(*){border-radius:50%;width:100%;height:100%}:host(:not([_has-image])),:host(:not([color-scheme])),:host([_color-scheme=Accent6]),:host([color-scheme=Accent6]){background-color:var(--ui5-avatar-accent6);color:var(--ui5-avatar-accent6-color)}:host([_color-scheme=Accent1]),:host([color-scheme=Accent1]){background-color:var(--ui5-avatar-accent1);color:var(--ui5-avatar-accent1-color)}:host([_color-scheme=Accent2]),:host([color-scheme=Accent2]){background-color:var(--ui5-avatar-accent2);color:var(--ui5-avatar-accent2-color)}:host([_color-scheme=Accent3]),:host([color-scheme=Accent3]){background-color:var(--ui5-avatar-accent3);color:var(--ui5-avatar-accent3-color)}:host([_color-scheme=Accent4]),:host([color-scheme=Accent4]){background-color:var(--ui5-avatar-accent4);color:var(--ui5-avatar-accent4-color)}:host([_color-scheme=Accent5]),:host([color-scheme=Accent5]){background-color:var(--ui5-avatar-accent5);color:var(--ui5-avatar-accent5-color)}:host([_color-scheme=Accent7]),:host([color-scheme=Accent7]){background-color:var(--ui5-avatar-accent7);color:var(--ui5-avatar-accent7-color)}:host([_color-scheme=Accent8]),:host([color-scheme=Accent8]){background-color:var(--ui5-avatar-accent8);color:var(--ui5-avatar-accent8-color)}:host([_color-scheme=Accent9]),:host([color-scheme=Accent9]){background-color:var(--ui5-avatar-accent9);color:var(--ui5-avatar-accent9-color)}:host([_color-scheme=Accent10]),:host([color-scheme=Accent10]){background-color:var(--ui5-avatar-accent10);color:var(--ui5-avatar-accent10-color)}:host([_color-scheme=Placeholder]),:host([color-scheme=Placeholder]){background-color:var(--ui5-avatar-placeholder);color:var(--ui5-avatar-placeholder-color)}:host([_has-image]){background-color:transparent}:host([image-fit-type=Contain]) .ui5-avatar-img{background-size:contain}.ui5-avatar-root{display:flex;align-items:center;justify-content:center;outline:none}.ui5-avatar-img,.ui5-avatar-root{height:100%;width:100%;border-radius:50%}.ui5-avatar-img{background-repeat:no-repeat;background-position:50%;background-size:cover}.ui5-avatar-initials{color:inherit}::slotted(*){pointer-events:none}"};const Ep={XS:"XS",S:"S",M:"M",L:"L",XL:"XL"};class Mp extends Pe{static isValid(e){return!!Ep[e]}}Mp.generateTypeAccessors(Ep);const Pp={Circle:"Circle",Square:"Square"};class Lp extends Pe{static isValid(e){return!!Pp[e]}}Lp.generateTypeAccessors(Pp);const Np={Accent1:"Accent1",Accent2:"Accent2",Accent3:"Accent3",Accent4:"Accent4",Accent5:"Accent5",Accent6:"Accent6",Accent7:"Accent7",Accent8:"Accent8",Accent9:"Accent9",Accent10:"Accent10",Placeholder:"Placeholder"};class zp extends Pe{static isValid(e){return!!Np[e]}}zp.generateTypeAccessors(Np);const Op={tag:"ui5-avatar",languageAware:!0,managedSlots:!0,properties:{interactive:{type:Boolean},focused:{type:Boolean},icon:{type:String},initials:{type:String},shape:{type:Lp,defaultValue:Lp.Circle},size:{type:Mp,defaultValue:Mp.S},_size:{type:String,defaultValue:Mp.S},colorScheme:{type:zp,defaultValue:zp.Accent6},_colorScheme:{type:String,defaultValue:zp.Accent6},accessibleName:{type:String},ariaHaspopup:{type:String},_tabIndex:{type:String,noAttribute:!0},_hasImage:{type:Boolean}},slots:{default:{propertyName:"image",type:HTMLElement}},events:{click:{}}};class Hp extends Ft{static get metadata(){return Op}static get render(){return Ni}static get styles(){return Fp}static get template(){return Tp}static get dependencies(){return[Ur]}static async onDefine(){Hp.i18nBundle=await er("@ui5/webcomponents")}get tabindex(){return this._tabIndex||(this.interactive?"0":"-1")}get _effectiveSize(){return this.getAttribute("size")||this._size}get _effectiveBackgroundColor(){return this.getAttribute("_color-scheme")||this._colorScheme}get _role(){return this.interactive?"button":void 0}get _ariaHasPopup(){return this._getAriaHasPopup()}get validInitials(){return this.initials&&/^[a-zA-Z]{1,2}$/.test(this.initials)?this.initials:null}get accessibleNameText(){return this.accessibleName?this.accessibleName:Hp.i18nBundle.getText(Vr)||void 0}get hasImage(){return this._hasImage=!!this.image.length,this._hasImage}onBeforeRendering(){this._onclick=this.interactive?this._onClickHandler.bind(this):void 0}_onClickHandler(e){e.stopPropagation(),this.fireEvent("click")}_onkeydown(e){this.interactive&&(eo(e)&&this.fireEvent("click"),io(e)&&e.preventDefault())}_onkeyup(e){this.interactive&&!e.shiftKey&&io(e)&&this.fireEvent("click")}_onfocusout(){this.focused=!1}_onfocusin(){this.interactive&&(this.focused=!0)}_getAriaHasPopup(){if(this.interactive&&""!==this.ariaHaspopup)return this.ariaHaspopup}}Hp.define();const Rp=(e,t,i)=>vi`<li part="native-li" tabindex="${Mi(e.tabIndex)}" class="${Fi(e.classes.main)}" dir="${Mi(e.effectiveDir)}" @focusin="${e._onfocusin}" @focusout="${e._onfocusout}" @keyup="${e._onkeyup}" @keydown="${e._onkeydown}" @mouseup="${e._onmouseup}" @mousedown="${e._onmousedown}" @touchstart="${e._ontouchstart}" @touchend="${e._ontouchend}" @click="${e._onclick}" role="${Mi(e._accInfo.role)}" aria-expanded="${Mi(e._accInfo.ariaExpanded)}" title="${Mi(e.title)}" aria-level="${Mi(e._accInfo.ariaLevel)}" aria-posinset="${Mi(e._accInfo.posinset)}" aria-setsize="${Mi(e._accInfo.setsize)}" aria-describedby="${Mi(e._id)}-invisibleText-describedby" aria-labelledby="${Mi(e._id)}-invisibleText ${Mi(e._id)}-content" aria-disabled="${Mi(e.ariaDisabled)}">${e.placeSelectionElementBefore?Up(e,t,i):void 0}<div id="${Mi(e._id)}-content" class="ui5-li-content">${e.displayImage?qp(e,t,i):void 0}${e.displayIconBegin?Yp(e,t,i):void 0}<div class="ui5-li-text-wrapper"><span part="title" class="ui5-li-title"><slot></slot></span>${e.description?Gp(e):void 0}${e.typeActive?void 0:Zp(e)}</div>${e.description?void 0:Jp(e)}</div>${e.displayIconEnd?Qp(e,t,i):void 0}${e.typeDetail?eg(e,t,i):void 0}${e.placeSelectionElementAfter?tg(e,t,i):void 0}<span id="${Mi(e._id)}-invisibleText" class="ui5-hidden-text">${Mi(e._accInfo.listItemAriaLabel)}${Mi(e.accessibleName)}</span><span id="${Mi(e._id)}-invisibleText-describedby" class="ui5-hidden-text">${Mi(e._accInfo.ariaSelectedText)}</span></li> `,Up=(e,t,i)=>vi`${e.modeSingleSelect?Vp(e,t,i):void 0}${e.modeMultiSelect?jp(e,t,i):void 0}${e.renderDeleteButton?Wp(e,t,i):void 0}`,Vp=(e,t,i)=>vi`<${zi("ui5-radio-button",t,i)} ?disabled="${e.isInactive}" accessible-name="${Mi(e._accInfo.ariaLabelRadioButton)}" tabindex="-1" id="${Mi(e._id)}-singleSelectionElement" class="ui5-li-singlesel-radiobtn" ?checked="${e.selected}" @click="${e.onSingleSelectionComponentPress}"></${zi("ui5-radio-button",t,i)}>`,jp=(e,t,i)=>vi`<${zi("ui5-checkbox",t,i)} ?disabled="${e.isInactive}" tabindex="-1" id="${Mi(e._id)}-multiSelectionElement" class="ui5-li-multisel-cb" ?checked="${e.selected}" aria-label="${Mi(e._accInfo.ariaLabel)}" @click="${e.onMultiSelectionComponentPress}"></${zi("ui5-checkbox",t,i)}>`,Wp=(e,t,i)=>vi`<div class="ui5-li-deletebtn"><${zi("ui5-button",t,i)} tabindex="-1" data-sap-no-tab-ref id="${Mi(e._id)}-deleteSelectionElement" design="Transparent" icon="decline" ?disabled="${e.disableDeleteButton}" @click="${e.onDelete}" title="${Mi(e.deleteText)}"></${zi("ui5-button",t,i)}></div>`,qp=(e,t,i)=>vi`<${zi("ui5-avatar",t,i)} shape="Square" class="ui5-li-img"><img src="${Mi(e.image)}" class="ui5-li-img-inner" /></${zi("ui5-avatar",t,i)}>`,Yp=(e,t,i)=>vi`<${zi("ui5-icon",t,i)} part="icon" name="${Mi(e.icon)}" class="ui5-li-icon"></${zi("ui5-icon",t,i)}>`,Gp=(e,t,i)=>vi`<div class="ui5-li-description-info-wrapper"><span part="description" class="ui5-li-desc">${Mi(e.description)}</span>${e.additionalText?Xp(e):void 0}</div>`,Xp=(e,t,i)=>vi`<span part="additional-text" class="ui5-li-additional-text">${Mi(e.additionalText)}</span>`,Zp=(e,t,i)=>vi`<span class="ui5-hidden-text">${Mi(e.type)}</span>`,Jp=(e,t,i)=>vi`${e.additionalText?Kp(e):void 0}`,Kp=(e,t,i)=>vi`<span part="additional-text" class="ui5-li-additional-text">${Mi(e.additionalText)}</span>`,Qp=(e,t,i)=>vi`<${zi("ui5-icon",t,i)} part="icon" name="${Mi(e.icon)}" class="ui5-li-icon"></${zi("ui5-icon",t,i)}>`,eg=(e,t,i)=>vi`<div class="ui5-li-detailbtn"><${zi("ui5-button",t,i)} design="Transparent" icon="edit" @click="${e.onDetailClick}"></${zi("ui5-button",t,i)}></div>`,tg=(e,t,i)=>vi`${e.modeSingleSelect?ig(e,t,i):void 0}${e.modeMultiSelect?og(e,t,i):void 0}${e.renderDeleteButton?rg(e,t,i):void 0}`,ig=(e,t,i)=>vi`<${zi("ui5-radio-button",t,i)} ?disabled="${e.isInactive}" accessible-name="${Mi(e._accInfo.ariaLabelRadioButton)}" tabindex="-1" id="${Mi(e._id)}-singleSelectionElement" class="ui5-li-singlesel-radiobtn" ?checked="${e.selected}" @click="${e.onSingleSelectionComponentPress}"></${zi("ui5-radio-button",t,i)}>`,og=(e,t,i)=>vi`<${zi("ui5-checkbox",t,i)} ?disabled="${e.isInactive}" tabindex="-1" id="${Mi(e._id)}-multiSelectionElement" class="ui5-li-multisel-cb" ?checked="${e.selected}" aria-label="${Mi(e._accInfo.ariaLabel)}" @click="${e.onMultiSelectionComponentPress}"></${zi("ui5-checkbox",t,i)}>`,rg=(e,t,i)=>vi`<div class="ui5-li-deletebtn"><${zi("ui5-button",t,i)} tabindex="-1" data-sap-no-tab-ref id="${Mi(e._id)}-deleteSelectionElement" design="Transparent" icon="decline" ?disabled="${e.disableDeleteButton}" @click="${e.onDelete}" title="${Mi(e.deleteText)}"></${zi("ui5-button",t,i)}></div>`,ag={tag:"ui5-li",properties:{description:{type:String},icon:{type:String},iconEnd:{type:Boolean},image:{type:String},additionalText:{type:String},additionalTextState:{type:Oa,defaultValue:Oa.None},accessibleName:{type:String},hasTitle:{type:Boolean}},slots:{default:{type:Node}}};class ng extends Sp{static get template(){return Rp}static get metadata(){return ag}onBeforeRendering(...e){super.onBeforeRendering(...e),this.hasTitle=!!this.textContent}get displayImage(){return!!this.image}get displayIconBegin(){return this.icon&&!this.iconEnd}get displayIconEnd(){return this.icon&&this.iconEnd}static get dependencies(){return[...Sp.dependencies,Ur,Hp]}}ng.define();const sg=(e,t,i)=>vi`<div class="ui5-select-root" dir="${Mi(e.effectiveDir)}" id="${Mi(e._id)}-select" @click="${e._onclick}">${e.selectedOptionIcon?lg(e,t,i):void 0}<div class="ui5-select-label-root" data-sap-focus-ref tabindex="${Mi(e.tabIndex)}" role="combobox" aria-haspopup="listbox" aria-label="${Mi(e.ariaLabelText)}" aria-describedby="${Mi(e.valueStateTextId)}" aria-disabled="${Mi(e.isDisabled)}" aria-required="${Mi(e.required)}" aria-expanded="${Mi(e._isPickerOpen)}" @keydown="${e._onkeydown}" @keypress="${e._handleKeyboardNavigation}" @keyup="${e._onkeyup}" @focusin="${e._onfocusin}" @focusout="${e._onfocusout}">${Mi(e._text)}</div><${zi("ui5-icon",t,i)} name="slim-arrow-down" input-icon ?pressed="${e._iconPressed}" dir="${Mi(e.effectiveDir)}"></${zi("ui5-icon",t,i)}>${e.hasValueState?ug(e):void 0}<slot name="formSupport"></slot></div>`,lg=(e,t,i)=>vi`<${zi("ui5-icon",t,i)} aria-hidden="true" class="ui5-select-option-icon" name="${Mi(e.selectedOptionIcon)}" dir="${Mi(e.effectiveDir)}"></${zi("ui5-icon",t,i)}>`,ug=(e,t,i)=>vi`<span id="${Mi(e._id)}-valueStateDesc" class="ui5-hidden-text">${Mi(e.valueStateText)}</span>`,dg=(e,t,i)=>vi`${e.options?cg(e,t,i):void 0}${e.shouldOpenValueStateMessagePopover?xg(e,t,i):void 0}`,cg=(e,t,i)=>vi`<${zi("ui5-responsive-popover",t,i)} hide-arrow _disable-initial-focus placement-type="Bottom" class="ui5-select-popover ${Fi(e.classes.popover)}" horizontal-align="Stretch" @ui5-after-open="${Mi(e._afterOpen)}" @ui5-before-open="${Mi(e._beforeOpen)}" @ui5-after-close="${Mi(e._afterClose)}" @keydown="${e._onkeydown}">${e._isPhone?_g(e,t,i):void 0}${e._isPhone?void 0:fg(e,t,i)}<${zi("ui5-list",t,i)} mode="SingleSelectAuto" separators="None" @mousedown="${e._itemMousedown}" @ui5-item-press="${Mi(e._handleItemPress)}">${Ai(e._syncedOptions,(e,t)=>e._id||t,(o,r)=>kg(o,r,e,t,i))}</${zi("ui5-list",t,i)}></${zi("ui5-responsive-popover",t,i)}>`,_g=(e,t,i)=>vi`<div slot="header" class="ui5-responsive-popover-header"><div class="row"><span>${Mi(e._headerTitleText)}</span><${zi("ui5-button",t,i)} class="ui5-responsive-popover-close-btn" icon="decline" design="Transparent" @click="${e._toggleRespPopover}"></${zi("ui5-button",t,i)}></div>${e.hasValueStateText?hg(e):void 0}</div>`,hg=(e,t,i)=>vi`<div class="${Fi(e.classes.popoverValueState)} row ui5-select-value-state-dialog-header">${e.shouldDisplayDefaultValueStateMessage?pg(e):gg(e)}</div>`,pg=(e,t,i)=>vi`${Mi(e.valueStateText)}`,gg=(e,t,i)=>vi`${Ai(e.valueStateMessageText,(e,t)=>e._id||t,(e,t)=>mg(e))}`,mg=(e,t,i,o,r)=>vi`${Mi(e)}`,fg=(e,t,i)=>vi`${e.hasValueStateText?vg(e,t,i):void 0}`,vg=(e,t,i)=>vi`<div slot="header" class="${Fi(e.classes.popoverValueState)}" style=${Ei(e.styles.responsivePopoverHeader)}><${zi("ui5-icon",t,i)} class="ui5-input-value-state-message-icon" name="${Mi(e._valueStateMessageInputIcon)}"></${zi("ui5-icon",t,i)}>${e.shouldDisplayDefaultValueStateMessage?bg(e):yg(e)}</div>`,bg=(e,t,i)=>vi`${Mi(e.valueStateText)}`,yg=(e,t,i)=>vi`${Ai(e.valueStateMessageText,(e,t)=>e._id||t,(e,t)=>wg(e))}`,wg=(e,t,i,o,r)=>vi`${Mi(e)}`,kg=(e,t,i,o,r)=>vi`<${zi("ui5-li",o,r)} id="${Mi(e.id)}-li" icon="${Mi(e.icon)}" ?selected="${e.selected}" ?focused="${e._focused}" ?aria-selected="${e.selected}" data-ui5-stable="${Mi(e.stableDomRef)}">${Mi(e.textContent)}</${zi("ui5-li",o,r)}>`,xg=(e,t,i)=>vi`<${zi("ui5-popover",t,i)} skip-registry-update _disable-initial-focus prevent-focus-restore no-padding hide-arrow class="ui5-valuestatemessage-popover" placement-type="Bottom" horizontal-align="Left"><div slot="header" class="${Fi(e.classes.popoverValueState)}" style="${Ei(e.styles.popoverHeader)}"><${zi("ui5-icon",t,i)} class="ui5-input-value-state-message-icon" name="${Mi(e._valueStateMessageInputIcon)}"></${zi("ui5-icon",t,i)}>${e.shouldDisplayDefaultValueStateMessage?Cg(e):Sg(e)}</div></${zi("ui5-popover",t,i)}>`,Cg=(e,t,i)=>vi`${Mi(e.valueStateText)}`,Sg=(e,t,i)=>vi`${Ai(e.valueStateMessageText,(e,t)=>e._id||t,(e,t)=>Tg(e))}`,Tg=(e,t,i,o,r)=>vi`${Mi(e)}`;te("@ui5/webcomponents-theming","sap_fiori_3",()=>zr),te("@ui5/webcomponents","sap_fiori_3",()=>Or);var Bg={packageName:"@ui5/webcomponents",fileName:"themesSelect.css",content:'[input-icon]{color:var(--_ui5_input_icon_color);cursor:pointer;outline:none;padding:var(--_ui5_input_icon_padding);margin-right:var(--_ui5_input_icon_margin);border-left:var(--_ui5_input_icon_border);min-width:1rem;min-height:1rem;border-radius:var(--_ui5_input_icon_border_radius);align-self:center}[input-icon][pressed]{background:var(--_ui5_input_icon_pressed_bg);box-shadow:var(--_ui5_input_icon_box_shadow);color:var(--_ui5_input_icon_pressed_color)}[input-icon]:active{background-color:var(--sapButton_Active_Background);box-shadow:var(--_ui5_input_icon_box_shadow);color:var(--_ui5_input_icon_pressed_color)}[input-icon]:not([pressed]):not(:active):hover{background:var(--_ui5_input_icon_hover_bg);box-shadow:var(--_ui5_input_icon_box_shadow)}[input-icon]:hover{border-left:var(--_ui5_select_hover_icon_left_border);box-shadow:var(--_ui5_input_icon_box_shadow)}[input-icon][dir=rtl]:hover{border-left:none;border-right:var(--_ui5_select_hover_icon_left_border)}[input-icon][dir=rtl]{border-left:none;margin-right:0;margin-left:var(--_ui5_input_icon_margin);border-right:var(--_ui5_input_icon_border)}.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{width:var(--_ui5_input_width);min-width:var(--_ui5_input_width);height:var(--_ui5_input_height);color:var(--sapField_TextColor);font-size:var(--sapFontSize);font-family:"72override",var(--sapFontFamily);font-style:normal;background-color:var(--_ui5-input-background-color);border:var(--_ui5-input-border);border-radius:var(--_ui5-input-border-radius);box-sizing:border-box;line-height:normal;letter-spacing:normal;word-spacing:normal;text-align:start;transition:var(--_ui5-input-transition);background-image:var(--_ui5-input-background-image);background-size:100% var(--sapField_BorderWidth);background-repeat:repeat-x;background-position:bottom}:host([focused]){border-color:var(--_ui5-input-focused-border-color);background-color:var(--sapField_Focus_Background);outline:var(--_ui5-input-focus-outline);outline-offset:var(--_ui5-input-focus-outline-offset);box-shadow:var(--_ui5-input-focus-box-shadow)}.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)}:host([value-state]:not([value-state=None])[focused]){outline:var(--_ui5-input-value-state-outline);outline-offset:var(--_ui5-input-value-state-outline-offset)}.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}: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;min-width:inherit;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)}.ui5-input-readonly-icon{display:var(--_ui5_input_readonly_icon_display);padding:var(--_ui5_input_icon_padding);margin-right:.125rem;align-self:center}.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}[inner-input]::-webkit-input-placeholder{font-style:var(--_ui5-input-placeholder-style);color:var(--_ui5-input-placeholder-color);padding-right:.125rem}:host([disabled]) [inner-input]::-moz-placeholder{visibility:hidden}:host([readonly]) [inner-input]::-moz-placeholder{visibility:hidden}[inner-input]::-moz-placeholder{font-style:var(--_ui5-input-placeholder-style);color:var(--sapField_PlaceholderTextColor);padding-right:.125rem}:host([disabled]) [inner-input]:-ms-input-placeholder{visibility:hidden}:host([readonly]) [inner-input]:-ms-input-placeholder{visibility:hidden}[inner-input]:-ms-input-placeholder{font-style:italic;color:var(--sapField_PlaceholderTextColor);padding-right:.125rem}:host([value-state=Error]) [inner-input]::-webkit-input-placeholder{color:var(--_ui5-input-value-state-error-border-botom-color)}:host([value-state=Error]) [inner-input]::-moz-placeholder{color:var(--_ui5-input-value-state-error-border-botom-color)}:host([value-state=Warning]) [inner-input]::-webkit-input-placeholder{color:var(--_ui5-input-value-state-warning-border-botom-color)}:host([value-state=Warning]) [inner-input]::-moz-placeholder{color:var(--_ui5-input-value-state-warning-border-botom-color)}:host([value-state=Success]) [inner-input]::-webkit-input-placeholder{color:var(--_ui5-input-value-state-success-border-botom-color)}:host([value-state=Success]) [inner-input]::-moz-placeholder{color:var(--_ui5-input-value-state-success-border-botom-color)}:host([value-state=Information]) [inner-input]::-webkit-input-placeholder{color:var(--_ui5-input-value-success-information-border-botom-color)}:host([value-state=Information]) [inner-input]::-moz-placeholder{color:var(--_ui5-input-value-success-information-border-botom-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}:host([readonly]){border-color:var(--_ui5_input_readonly_border_color);background:var(--_ui5-input-readonly-background)}:host(:not([value-state]):not([readonly]):hover){background-color:var(--sapField_Hover_Background);box-shadow:var(--_ui5-input-hover-box-shadow);background-image:var(--_ui5-input-background-image);background-size:100% var(--sapField_BorderWidth);background-repeat:repeat-x;background-position:bottom}:host(:not([value-state]):not([readonly])[focused]:hover),:host([value-state=None]:not([readonly])[focused]:hover){border-color:var(--_ui5-input-focused-border-color);box-shadow:var(--_ui5-input-focus-box-shadow)}:host(:not([value-state]):not([readonly]):hover){border:var(--_ui5-input-hover-border)}:host([focused]) .ui5-input-root:before{content:none}:host([value-state=None]:not([readonly]):hover){background-color:var(--sapField_Hover_Background);border:var(--_ui5-input-hover-border);box-shadow:var(--_ui5-input-hover-box-shadow)}:host([value-state]:not([value-state=None])){border-width:var(--_ui5_input_state_border_width)}:host([value-state=Error]) [inner-input],:host([value-state=Warning]) [inner-input]{font-style:var(--_ui5_input_error_warning_font_style)}:host([value-state=Error]) [inner-input]{font-weight:var(--_ui5_input_error_font_weight)}:host([value-state=Error]:not([readonly])){background-color:var(--sapField_InvalidBackground);border-color:var(--_ui5-input-value-state-error-border-color);background-image:var(--_ui5-input-error-background-image);background-size:100% var(--sapField_InvalidBorderWidth);background-repeat:repeat-x;background-position:bottom}:host([value-state=Error][focused]:not([readonly])){background-color:var(--_ui5-input-focused-value-state-error-background);border-color:var(--_ui5-input-focused-value-state-error-border-color);box-shadow:var(--_ui5-input-value-state-error-focus-box-shadow)}:host([value-state=Error]:not([readonly])) .ui5-input-root:before{background-color:var(--_ui5-input-value-state-error-border-botom-color)}:host([value-state=Error]:not([readonly]):not([focused]):hover){background-color:var(--sapField_Hover_Background);box-shadow:var(--_ui5-input-value-state-error-hover-box-shadow)}:host([value-state=Error]:not([readonly]):not([disabled])),:host([value-state=Information]:not([readonly]):not([disabled])),:host([value-state=Warning]:not([readonly]):not([disabled])){border-style:var(--_ui5_input_error_warning_border_style)}:host([value-state=Warning]:not([readonly])){background-color:var(--sapField_WarningBackground);border-color:var(--_ui5-input-value-state-warning-border-color);background-image:var(--_ui5-input-warning-background-image);background-size:100% var(--sapField_WarningBorderWidth);background-repeat:repeat-x;background-position:bottom}:host([value-state=Warning][focused]:not([readonly])){background-color:var(--_ui5-input-focused-value-state-warning-background);border-color:var(--_ui5-input-focused-value-state-warning-border-color);box-shadow:var(--_ui5-input-value-state-warning-focus-box-shadow)}:host([value-state=Warning]:not([readonly])) .ui5-input-root:before{background-color:var(--_ui5-input-value-state-warning-border-botom-color)}:host([value-state=Warning]:not([readonly]):not([focused]):hover){background-color:var(--sapField_Hover_Background);box-shadow:var(--_ui5-input-value-state-warning-hover-box-shadow)}:host([value-state=Success]:not([readonly])){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);background-image:var(--_ui5-input-success-background-image);background-size:100% var(--sapField_SuccessBorderWidth);background-repeat:repeat-x;background-position:bottom}:host([value-state=Success][focused]:not([readonly])){background-color:var(--_ui5-input-focused-value-state-success-background);border-color:var(--_ui5-input-focused-value-state-success-border-color);box-shadow:var(--_ui5-input-value-state-success-focus-box-shadow)}:host([value-state=Success]:not([readonly])) .ui5-input-root:before{background-color:var(--_ui5-input-value-state-success-border-botom-color)}:host([value-state=Success]:not([readonly]):not([focused]):hover){background-color:var(--sapField_Hover_Background);box-shadow:var(--_ui5-input-value-state-success-hover-box-shadow)}:host([value-state=Information]:not([readonly])){background-color:var(--sapField_InformationBackground);border-color:var(--_ui5-input-value-state-information-border-color);border-width:var(--_ui5-input-information_border_width);background-image:var(--_ui5-input-information-background-image);background-size:100% var(--sapField_InformationBorderWidth);background-repeat:repeat-x;background-position:bottom}:host([value-state=Information][focused]:not([readonly])){background-color:var(--_ui5-input-focused-value-state-information-background);border-color:var(--_ui5-input-focused-value-state-information-border-color);box-shadow:var(--_ui5-input-focus-box-shadow)}: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){background-color:var(--sapField_Hover_Background);box-shadow:var(--_ui5-input-value-state-information-hover-box-shadow)}[inner-input]::-ms-clear{height:0;width:0}.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]){padding:var(--_ui5_input_icon_padding)}[inner-input]::-webkit-inner-spin-button,[inner-input]::-webkit-outer-spin-button{-webkit-appearance:inherit;margin:inherit}.ui5-select-root{width:100%;height:100%;display:flex;outline:none;cursor:pointer;overflow:hidden}.ui5-select-label-root{flex-shrink:1;flex-grow:1;align-self:center;min-width:1rem;padding-left:.5rem;cursor:pointer;outline:none;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;color:var(--_ui5_select_label_olor);font-family:"72override",var(--sapFontFamily);font-size:var(--sapFontSize);font-weight:400}.ui5-select-option-icon{padding-left:.5rem;color:var(--sapField_TextColor);align-self:center}:host [dir=rtl].ui5-select-root .ui5-select-label-root{padding-left:0;padding-right:.5rem}:host [dir=rtl] .ui5-select-option-icon{padding-right:.5rem;padding-left:0}:host(:not([disabled])){cursor:pointer}:host([focused][opened]),:host([value-state]:not([value-state=None])[focused][opened]){outline:none}'};te("@ui5/webcomponents-theming","sap_fiori_3",()=>zr),te("@ui5/webcomponents","sap_fiori_3",()=>Or);var Ig={packageName:"@ui5/webcomponents",fileName:"themesSelectPopover.css",content:".ui5-select-popover:not(.ui5-valuestatemessage-popover) [ui5-li]:first-child::part(native-li):after{border-top-left-radius:var(--_ui5_select_option_focus_border_radius);border-top-right-radius:var(--_ui5_select_option_focus_border_radius)}.ui5-select-popover [ui5-li]:last-child::part(native-li):after{border-bottom-left-radius:var(--_ui5_select_option_focus_border_radius);border-bottom-right-radius:var(--_ui5_select_option_focus_border_radius)}"};const $g={tag:"ui5-select",languageAware:!0,managedSlots:!0,slots:{default:{propertyName:"options",type:HTMLElement,invalidateOnChildChange:!0},valueStateMessage:{type:HTMLElement},formSupport:{type:HTMLElement}},properties:{disabled:{type:Boolean},name:{type:String},valueState:{type:Oa,defaultValue:Oa.None},required:{type:Boolean},accessibleName:{type:String},accessibleNameRef:{type:String,defaultValue:""},_text:{type:String,noAttribute:!0},_iconPressed:{type:Boolean,noAttribute:!0},opened:{type:Boolean},_listWidth:{type:dn,defaultValue:0,noAttribute:!0},focused:{type:Boolean}},events:{change:{detail:{selectedOption:{}}}}};class Dg extends Ft{static get metadata(){return $g}static get render(){return Ni}static get template(){return sg}static get staticAreaTemplate(){return dg}static get styles(){return Bg}static get staticAreaStyles(){return[qs,Ys,Ig]}constructor(){super(),this._syncedOptions=[],this._selectedIndex=-1,this._selectedIndexBeforeOpen=-1,this._escapePressed=!1,this._lastSelectedOption=null,this._typedChars="",this._typingTimeoutID=-1}onBeforeRendering(){this._syncSelection(),this._enableFormSupport()}onAfterRendering(){this.toggleValueStatePopover(this.shouldOpenValueStateMessagePopover),this._isPickerOpen&&(this._listWidth||(this._listWidth=this.responsivePopover.offsetWidth)),this._attachRealDomRefs()}_onfocusin(){this.focused=!0}_onfocusout(){this.focused=!1}get _isPickerOpen(){return!!this.responsivePopover&&this.responsivePopover.opened}async _respPopover(){return(await this.getStaticAreaItemDomRef()).querySelector("[ui5-responsive-popover]")}get selectedOption(){return this._filteredItems.find(e=>e.selected)}async _toggleRespPopover(){this._iconPressed=!0,this.responsivePopover=await this._respPopover(),this.disabled||(this._isPickerOpen?this.responsivePopover.close():this.responsivePopover.showAt(this))}async _attachRealDomRefs(){this.responsivePopover=await this._respPopover(),this.options.forEach(e=>{e._getRealDomRef=()=>this.responsivePopover.querySelector(`*[data-ui5-stable=${e.stableDomRef}]`)})}_syncSelection(){let e=-1,t=-1;const i=this._filteredItems,o=i.map((i,o)=>((i.selected||i.textContent===this.value)&&(e=o),-1===t&&(t=o),i.selected=!1,i._focused=!1,{selected:!1,_focused:!1,icon:i.icon,value:i.value,textContent:i.textContent,id:i._id,stableDomRef:i.stableDomRef}));e>-1&&!o[e].disabled?(o[e].selected=!0,o[e]._focused=!0,i[e].selected=!0,i[e]._focused=!0,this._text=o[e].textContent,this._selectedIndex=e):(this._text="",this._selectedIndex=-1,o[t]&&(o[t].selected=!0,o[t]._focused=!0,i[t].selected=!0,i[t]._focused=!0,this._selectedIndex=t,this._text=i[t].textContent)),this._syncedOptions=o}_enableFormSupport(){const e=A("FormSupport");e?e.syncNativeHiddenInput(this,(e,t)=>{t.disabled=e.disabled,t.value=e._currentlySelectedOption?e._currentlySelectedOption.value:""}):this.name&&console.warn('In order for the "name" property to have effect, you should also: import "@ui5/webcomponents/dist/features/InputElementsFormSupport.js";')}_onkeydown(e){(vo(e)||bo(e))&&this.responsivePopover&&this.responsivePopover.opened&&this.responsivePopover.close(),To(e)?(e.preventDefault(),this._toggleRespPopover()):io(e)?e.preventDefault():fo(e)&&this._isPickerOpen?this._escapePressed=!0:ho(e)?this._handleHomeKey(e):po(e)?this._handleEndKey(e):eo(e)?this._handleSelectionChange():(no(e)||so(e))&&this._handleArrowNavigation(e)}_handleKeyboardNavigation(e){if(eo(e))return;const t=e.key.toLowerCase();this._typedChars+=t;const i=/^(.)\1+$/i.test(this._typedChars)?t:this._typedChars;clearTimeout(this._typingTimeoutID),this._typingTimeoutID=setTimeout(()=>{this._typedChars="",this._typingTimeoutID=-1},1e3),this._selectTypedItem(i)}_selectTypedItem(e){const t=this._selectedIndex,i=this._searchNextItemByText(e);if(i){const e=this._getSelectedItemIndex(i);this._changeSelectedItem(this._selectedIndex,e),t!==this._selectedIndex&&this.itemSelectionAnnounce()}}_searchNextItemByText(e){let t=this._filteredItems.slice(0);const i=t.splice(this._selectedIndex+1,t.length-this._selectedIndex),o=t.splice(0,t.length-1);return t=i.concat(o),t.find(t=>t.textContent.toLowerCase().startsWith(e))}_handleHomeKey(e){e.preventDefault(),this._changeSelectedItem(this._selectedIndex,0)}_handleEndKey(e){const t=this._filteredItems.length-1;e.preventDefault(),this._changeSelectedItem(this._selectedIndex,t)}_onkeyup(e){io(e)&&(this._isPickerOpen?this._handleSelectionChange():this._toggleRespPopover())}_getSelectedItemIndex(e){return[].indexOf.call(e.parentElement.children,e)}_select(e){this._filteredItems[this._selectedIndex].selected=!1,this._selectedIndex=e,this._filteredItems[e].selected=!0}_handleItemPress(e){const t=e.detail.item,i=this._getSelectedItemIndex(t);this._handleSelectionChange(i)}_itemMousedown(e){e.preventDefault()}_onclick(e){this.getFocusDomRef().focus(),this._toggleRespPopover()}_handleSelectionChange(e=this._selectedIndex){this._select(e),this._toggleRespPopover()}_handleArrowNavigation(e){let t=-1;const i=this._selectedIndex,o=so(e);e.preventDefault(),t=o?this._getNextOptionIndex():this._getPreviousOptionIndex(),this._changeSelectedItem(this._selectedIndex,t),i!==this._selectedIndex&&this.itemSelectionAnnounce()}_changeSelectedItem(e,t){const i=this._filteredItems;i[e].selected=!1,i[e]._focused=!1,i[t].selected=!0,i[t]._focused=!0,this._selectedIndex=t,this._isPickerOpen||this._fireChangeEvent(i[t])}_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._filteredItems[this._selectedIndex]}_afterOpen(){this.opened=!0}_afterClose(){this.opened=!1,this._iconPressed=!1,this._listWidth=0,this._escapePressed?(this._select(this._selectedIndexBeforeOpen),this._escapePressed=!1):this._lastSelectedOption!==this._filteredItems[this._selectedIndex]&&(this._fireChangeEvent(this._filteredItems[this._selectedIndex]),this._lastSelectedOption=this._filteredItems[this._selectedIndex])}_fireChangeEvent(e){this.fireEvent("change",{selectedOption:e}),this.selectedItem=e.textContent,this.fireEvent("selected-item-changed")}get valueStateTextMappings(){return{Success:Dg.i18nBundle.getText(Ca),Information:Dg.i18nBundle.getText(xa),Error:Dg.i18nBundle.getText(wa),Warning:Dg.i18nBundle.getText(ka)}}get valueStateText(){return this.valueStateTextMappings[this.valueState]}get hasValueState(){return this.valueState!==Oa.None}get valueStateTextId(){return this.hasValueState?`${this._id}-valueStateDesc`:void 0}get isDisabled(){return this.disabled||void 0}get _headerTitleText(){return Dg.i18nBundle.getText(Kr)}get _currentSelectedItem(){return this.shadowRoot.querySelector(`#${this._filteredItems[this._selectedIndex]._id}-li`)}get _currentlySelectedOption(){return this._filteredItems[this._selectedIndex]}get tabIndex(){return this.disabled||this.responsivePopover&&this.responsivePopover.opened?"-1":"0"}get _valueStateMessageInputIcon(){return this.valueState!==Oa.None?{Error:"error",Warning:"alert",Success:"sys-enter-2",Information:"information"}[this.valueState]:""}get classes(){return{popoverValueState:{"ui5-valuestatemessage-root":!0,"ui5-valuestatemessage--success":this.valueState===Oa.Success,"ui5-valuestatemessage--error":this.valueState===Oa.Error,"ui5-valuestatemessage--warning":this.valueState===Oa.Warning,"ui5-valuestatemessage--information":this.valueState===Oa.Information},popover:{"ui5-valuestatemessage-popover":this.hasValueState}}}get styles(){return{popoverHeader:{"max-width":`${this.offsetWidth}px`},responsivePopoverHeader:{display:this._filteredItems.length&&0===this._listWidth?"none":"inline-block",width:`${this._filteredItems.length?this._listWidth:this.offsetWidth}px`}}}get ariaLabelText(){return cn(this)}get valueStateMessageText(){return this.getSlottedNodes("valueStateMessage").map(e=>e.cloneNode(!0))}get shouldDisplayDefaultValueStateMessage(){return!this.valueStateMessage.length&&this.hasValueStateText}get hasValueStateText(){return this.hasValueState&&this.valueState!==Oa.Success}get shouldOpenValueStateMessagePopover(){return this.focused&&this.hasValueStateText&&!this._iconPressed&&!this._isPickerOpen&&!this._isPhone}get _isPhone(){return yr()}get _filteredItems(){return this.options.filter(e=>!e.disabled)}itemSelectionAnnounce(){let e;const t=this._filteredItems.length,i=Dg.i18nBundle.getText(ia,this._selectedIndex+1,t);this.focused&&this._currentlySelectedOption&&(e=`${this._currentlySelectedOption.textContent} ${this._isPickerOpen?i:""}`,((e,t)=>{const i=t===kh.Assertive?Ch:xh;i.textContent="",i.textContent=e,t!==kh.Assertive&&t!==kh.Polite&&console.warn('You have entered an invalid mode. Valid values are: "Polite" and "Assertive". The framework will automatically set the mode to "Polite".')})(e,"Polite"))}async openValueStatePopover(){this.popover=await this._getPopover(),this.popover&&this.popover.showAt(this)}closeValueStatePopover(){this.popover&&this.popover.close()}toggleValueStatePopover(e){e?this.openValueStatePopover():this.closeValueStatePopover()}get selectedOptionIcon(){return this.selectedOption&&this.selectedOption.icon}async _getPopover(){return(await this.getStaticAreaItemDomRef()).querySelector("[ui5-popover]")}static get dependencies(){return[Ah,Xa,Jd,fs,hp,ng,Ur,Na]}static async onDefine(){Dg.i18nBundle=await er("@ui5/webcomponents")}}Dg.define();const Ag=(e,t)=>{t.disabled=e.disabled,t.value=e.value};D("FormSupport",class{static syncNativeHiddenInput(e,t){const i=!!e.name;let o=e.querySelector("input[type=hidden][data-ui5-form-support]");i&&!o&&(o=document.createElement("input"),o.type="hidden",o.setAttribute("data-ui5-form-support",""),o.slot="formSupport",e.appendChild(o)),!i&&o&&e.removeChild(o),i&&(o.name=e.name,(t||Ag)(e,o))}static syncNativeFileInput(e,t,i){const o=!!e.name;let r=e.querySelector(`input[type=${e._type||"hidden"}][data-ui5-form-support]`);o&&!r&&(r=document.createElement("input"),r.type=e._type,r.setAttribute("data-ui5-form-support",""),r.slot="formSupport",r.style.position="absolute",r.style.top="0",r.style.left="0",r.style.width="100%",r.style.height="100%",r.style.opacity="0",e.multiple&&(r.multiple=!0),r.addEventListener("change",i),e.appendChild(r)),!o&&r&&e.removeChild(r),o&&(r.name=e.name,(t||Ag)(e,r))}static triggerFormSubmit(e){if(!e.submits)return;let t=e.parentElement;for(;t&&"form"!==t.tagName.toLowerCase();)t=t.parentElement;t?t.submit():console.error(`${e} is not within a form. Please add it in a form.`)}});const Fg=async e=>{const t=await(async e=>{switch(e){case"ar":return(await import("./ar-3d86671f.js")).default;case"ar_EG":return(await import("./ar_EG-bec371f8.js")).default;case"ar_SA":return(await import("./ar_SA-013516b9.js")).default;case"bg":return(await import("./bg-c8a3d631.js")).default;case"ca":return(await import("./ca-432aede8.js")).default;case"cs":return(await import("./cs-cb494530.js")).default;case"da":return(await import("./da-b8216f78.js")).default;case"de":return(await import("./de-db7ee200.js")).default;case"de_AT":return(await import("./de_AT-16212e69.js")).default;case"de_CH":return(await import("./de_CH-b2e7405d.js")).default;case"el":return(await import("./el-bc8ea43c.js")).default;case"el_CY":return(await import("./el_CY-32899bf5.js")).default;case"en":return(await import("./en-852a3c47.js")).default;case"en_AU":return(await import("./en_AU-5ac22cc4.js")).default;case"en_GB":return(await import("./en_GB-06fb3326.js")).default;case"en_HK":return(await import("./en_HK-8e388c7e.js")).default;case"en_IE":return(await import("./en_IE-31301e64.js")).default;case"en_IN":return(await import("./en_IN-a8cac790.js")).default;case"en_NZ":return(await import("./en_NZ-1ac8fca7.js")).default;case"en_PG":return(await import("./en_PG-90ae5ac9.js")).default;case"en_SG":return(await import("./en_SG-f783b9e0.js")).default;case"en_ZA":return(await import("./en_ZA-a4a6c2af.js")).default;case"es":return(await import("./es-2987b3bf.js")).default;case"es_AR":return(await import("./es_AR-c9568bef.js")).default;case"es_BO":return(await import("./es_BO-f80d4cab.js")).default;case"es_CL":return(await import("./es_CL-e69a20cc.js")).default;case"es_CO":return(await import("./es_CO-8ed671f5.js")).default;case"es_MX":return(await import("./es_MX-ca227fd9.js")).default;case"es_PE":return(await import("./es_PE-313ad09c.js")).default;case"es_UY":return(await import("./es_UY-3145d111.js")).default;case"es_VE":return(await import("./es_VE-9855c07f.js")).default;case"et":return(await import("./et-c8b012d9.js")).default;case"fa":return(await import("./fa-270906e4.js")).default;case"fi":return(await import("./fi-5cb24937.js")).default;case"fr":return(await import("./fr-f90c8dbe.js")).default;case"fr_BE":return(await import("./fr_BE-0a0b1e89.js")).default;case"fr_CA":return(await import("./fr_CA-69115871.js")).default;case"fr_CH":return(await import("./fr_CH-67cec36a.js")).default;case"fr_LU":return(await import("./fr_LU-41d18384.js")).default;case"he":return(await import("./he-c7dd8770.js")).default;case"hi":return(await import("./hi-02d890ff.js")).default;case"hr":return(await import("./hr-ce839bd8.js")).default;case"hu":return(await import("./hu-8894ff20.js")).default;case"id":return(await import("./id-4e1f336f.js")).default;case"it":return(await import("./it-2f7ca2cc.js")).default;case"it_CH":return(await import("./it_CH-96f6448e.js")).default;case"ja":return(await import("./ja-b852efec.js")).default;case"kk":return(await import("./kk-4d418f87.js")).default;case"ko":return(await import("./ko-580a2045.js")).default;case"lt":return(await import("./lt-ee0f5d04.js")).default;case"lv":return(await import("./lv-b18d4611.js")).default;case"ms":return(await import("./ms-97288878.js")).default;case"nb":return(await import("./nb-d77ab65a.js")).default;case"nl":return(await import("./nl-624d50c1.js")).default;case"nl_BE":return(await import("./nl_BE-ae42d671.js")).default;case"pl":return(await import("./pl-e69ff58a.js")).default;case"pt":return(await import("./pt-b6593b86.js")).default;case"pt_PT":return(await import("./pt_PT-6f58c38d.js")).default;case"ro":return(await import("./ro-cf279a8d.js")).default;case"ru":return(await import("./ru-a41bc6ce.js")).default;case"ru_UA":return(await import("./ru_UA-60325a6e.js")).default;case"sk":return(await import("./sk-a3e7e927.js")).default;case"sl":return(await import("./sl-0d949839.js")).default;case"sr":return(await import("./sr-d3b5a8a9.js")).default;case"sv":return(await import("./sv-704380a3.js")).default;case"th":return(await import("./th-a3f0b98a.js")).default;case"tr":return(await import("./tr-a75c54c5.js")).default;case"uk":return(await import("./uk-2ea9760e.js")).default;case"vi":return(await import("./vi-0ee42fc7.js")).default;case"zh_CN":return(await import("./zh_CN-9347b38b.js")).default;case"zh_HK":return(await import("./zh_HK-402bf471.js")).default;case"zh_SG":return(await import("./zh_SG-decc6172.js")).default;case"zh_TW":return(await import("./zh_TW-22e4094b.js")).default;default:throw"unknown locale"}})(e);if("string"==typeof t&&t.endsWith(".json"))throw new Error('[LocaleData] Invalid bundling detected - dynamic JSON imports bundled as URLs. Switch to inlining JSON files from the build or use \'import ".../Assets-static.js"\'. Check the "Assets" documentation for more information.');return t};["ar","ar_EG","ar_SA","bg","ca","cs","da","de","de_AT","de_CH","el","el_CY","en","en_AU","en_GB","en_HK","en_IE","en_IN","en_NZ","en_PG","en_SG","en_ZA","es","es_AR","es_BO","es_CL","es_CO","es_MX","es_PE","es_UY","es_VE","et","fa","fi","fr","fr_BE","fr_CA","fr_CH","fr_LU","he","hi","hr","hu","id","it","it_CH","ja","kk","ko","lt","lv","ms","nb","nl","nl_BE","pl","pt","pt_PT","ro","ru","ru_UA","sk","sl","sr","sv","th","tr","uk","vi","zh_CN","zh_HK","zh_SG","zh_TW"].forEach(e=>bu(e,Fg));const Eg=async e=>{const t=await(async e=>{switch(e){case"sap_belize":return(await import("./parameters-bundle.css-4809f843.js")).default;case"sap_belize_hcb":return(await import("./parameters-bundle.css-0c3377c5.js")).default;case"sap_belize_hcw":return(await import("./parameters-bundle.css-bfa33d93.js")).default;case"sap_fiori_3":return(await import("./parameters-bundle.css-dec4feca.js")).default;case"sap_fiori_3_dark":return(await import("./parameters-bundle.css-fb5a25ab.js")).default;case"sap_fiori_3_hcb":return(await import("./parameters-bundle.css-55e683ed.js")).default;case"sap_fiori_3_hcw":return(await import("./parameters-bundle.css-324b2fcc.js")).default;case"sap_horizon":return(await import("./parameters-bundle.css-7f593c6e.js")).default;case"sap_horizon_exp":return(await import("./parameters-bundle.css-ab3e8649.js")).default;default:throw"unknown theme"}})(e);if("string"==typeof t&&t.endsWith(".json"))throw new Error('[themes] Invalid bundling detected - dynamic JSON imports bundled as URLs. Switch to inlining JSON files from the build or use \'import ".../Assets-static.js"\'. Check the "Assets" documentation for more information.');return t};["sap_belize","sap_belize_hcb","sap_belize_hcw","sap_fiori_3","sap_fiori_3_dark","sap_fiori_3_hcb","sap_fiori_3_hcw","sap_horizon","sap_horizon_exp"].forEach(e=>te("@ui5/webcomponents-theming",e,Eg));const Mg=async e=>{const t=await(async e=>{switch(e){case"ar":return(await import("./messagebundle_ar-f6792d81.js")).default;case"bg":return(await import("./messagebundle_bg-884d46bd.js")).default;case"ca":return(await import("./messagebundle_ca-5b6cc3e2.js")).default;case"cs":return(await import("./messagebundle_cs-c7ed5c29.js")).default;case"cy":return(await import("./messagebundle_cy-9889d6f0.js")).default;case"da":return(await import("./messagebundle_da-53593542.js")).default;case"de":return(await import("./messagebundle_de-eb501c07.js")).default;case"el":return(await import("./messagebundle_el-45d1c326.js")).default;case"en":return(await import("./messagebundle_en-3bc10a88.js")).default;case"en_GB":return(await import("./messagebundle_en_GB-a4723c29.js")).default;case"en_US_sappsd":return(await import("./messagebundle_en_US_sappsd-9cf5ba75.js")).default;case"en_US_saprigi":return(await import("./messagebundle_en_US_saprigi-00c865df.js")).default;case"en_US_saptrc":return(await import("./messagebundle_en_US_saptrc-ae1a6e4a.js")).default;case"es":return(await import("./messagebundle_es-288d5c23.js")).default;case"es_MX":return(await import("./messagebundle_es_MX-4f1305df.js")).default;case"et":return(await import("./messagebundle_et-a0061a71.js")).default;case"fi":return(await import("./messagebundle_fi-27edc9b8.js")).default;case"fr":return(await import("./messagebundle_fr-6265990a.js")).default;case"fr_CA":return(await import("./messagebundle_fr_CA-c0eae649.js")).default;case"hi":return(await import("./messagebundle_hi-c4029409.js")).default;case"hr":return(await import("./messagebundle_hr-49952683.js")).default;case"hu":return(await import("./messagebundle_hu-9eaeaf2e.js")).default;case"in":return(await import("./messagebundle_in-69efcc93.js")).default;case"it":return(await import("./messagebundle_it-0b408aea.js")).default;case"iw":return(await import("./messagebundle_iw-6db571be.js")).default;case"ja":return(await import("./messagebundle_ja-9c40042d.js")).default;case"kk":return(await import("./messagebundle_kk-b620a07a.js")).default;case"ko":return(await import("./messagebundle_ko-4be67a77.js")).default;case"lt":return(await import("./messagebundle_lt-daa86622.js")).default;case"lv":return(await import("./messagebundle_lv-54381557.js")).default;case"ms":return(await import("./messagebundle_ms-536227b5.js")).default;case"nl":return(await import("./messagebundle_nl-56e48e33.js")).default;case"no":return(await import("./messagebundle_no-eecb1eec.js")).default;case"pl":return(await import("./messagebundle_pl-bd30a402.js")).default;case"pt":return(await import("./messagebundle_pt-026877c7.js")).default;case"pt_PT":return(await import("./messagebundle_pt_PT-a24258d4.js")).default;case"ro":return(await import("./messagebundle_ro-0dbe572d.js")).default;case"ru":return(await import("./messagebundle_ru-4291aa7d.js")).default;case"sh":return(await import("./messagebundle_sh-4047dcd1.js")).default;case"sk":return(await import("./messagebundle_sk-fd3049d8.js")).default;case"sl":return(await import("./messagebundle_sl-586b310b.js")).default;case"sv":return(await import("./messagebundle_sv-1796a5d2.js")).default;case"th":return(await import("./messagebundle_th-63398540.js")).default;case"tr":return(await import("./messagebundle_tr-f32e601b.js")).default;case"uk":return(await import("./messagebundle_uk-70daf763.js")).default;case"vi":return(await import("./messagebundle_vi-3f36f453.js")).default;case"zh_CN":return(await import("./messagebundle_zh_CN-2420a6e9.js")).default;case"zh_TW":return(await import("./messagebundle_zh_TW-91e89b06.js")).default;default:throw"unknown locale"}})(e);if("string"==typeof t&&t.endsWith(".json"))throw new Error('[i18n] Invalid bundling detected - dynamic JSON imports bundled as URLs. Switch to inlining JSON files from the build or use \'import ".../Assets-static.js"\'. Check the "Assets" documentation for more information.');return t};["ar","bg","ca","cs","cy","da","de","el","en","en_GB","en_US_sappsd","en_US_saprigi","en_US_saptrc","es","es_MX","et","fi","fr","fr_CA","hi","hr","hu","in","it","iw","ja","kk","ko","lt","lv","ms","nl","no","pl","pt","pt_PT","ro","ru","sh","sk","sl","sv","th","tr","uk","vi","zh_CN","zh_TW"].forEach(e=>{Yo("@ui5/webcomponents-icons",e,Mg)});const Pg=async e=>{const t=await(async e=>{switch(e){case"sap_belize":return(await import("./parameters-bundle.css-16ed5ab0.js")).default;case"sap_belize_hcb":return(await import("./parameters-bundle.css-2b80e11c.js")).default;case"sap_belize_hcw":return(await import("./parameters-bundle.css-7bc1fa16.js")).default;case"sap_fiori_3":return(await import("./parameters-bundle.css-55dcf53d.js")).default;case"sap_fiori_3_dark":return(await import("./parameters-bundle.css-826107f5.js")).default;case"sap_fiori_3_hcb":return(await import("./parameters-bundle.css-5bc2c0de.js")).default;case"sap_fiori_3_hcw":return(await import("./parameters-bundle.css-5338149e.js")).default;case"sap_horizon":return(await import("./parameters-bundle.css-a003a2e2.js")).default;case"sap_horizon_exp":return(await import("./parameters-bundle.css-8b95ce95.js")).default;default:throw"unknown theme"}})(e);if("string"==typeof t&&t.endsWith(".json"))throw new Error('[themes] Invalid bundling detected - dynamic JSON imports bundled as URLs. Switch to inlining JSON files from the build or use \'import ".../Assets-static.js"\'. Check the "Assets" documentation for more information.');return t};["sap_belize","sap_belize_hcb","sap_belize_hcw","sap_fiori_3","sap_fiori_3_dark","sap_fiori_3_hcb","sap_fiori_3_hcw","sap_horizon","sap_horizon_exp"].forEach(e=>te("@ui5/webcomponents",e,Pg));const Lg=async e=>{const t=await(async e=>{switch(e){case"ar":return(await import("./messagebundle_ar-8f9ad94e.js")).default;case"bg":return(await import("./messagebundle_bg-39f4bd50.js")).default;case"ca":return(await import("./messagebundle_ca-d12c1ceb.js")).default;case"cs":return(await import("./messagebundle_cs-307b7f69.js")).default;case"cy":return(await import("./messagebundle_cy-0f578e7e.js")).default;case"da":return(await import("./messagebundle_da-6bb7d77b.js")).default;case"de":return(await import("./messagebundle_de-0376c479.js")).default;case"el":return(await import("./messagebundle_el-e1955d32.js")).default;case"en":return(await import("./messagebundle_en-e41c44ec.js")).default;case"en_GB":return(await import("./messagebundle_en_GB-963f5beb.js")).default;case"en_US_sappsd":return(await import("./messagebundle_en_US_sappsd-10d3b264.js")).default;case"en_US_saprigi":return(await import("./messagebundle_en_US_saprigi-8a51ede2.js")).default;case"en_US_saptrc":return(await import("./messagebundle_en_US_saptrc-ac48007a.js")).default;case"es":return(await import("./messagebundle_es-1fe90167.js")).default;case"es_MX":return(await import("./messagebundle_es_MX-b984b6dc.js")).default;case"et":return(await import("./messagebundle_et-c96b504c.js")).default;case"fi":return(await import("./messagebundle_fi-c943134b.js")).default;case"fr":return(await import("./messagebundle_fr-16c1c577.js")).default;case"fr_CA":return(await import("./messagebundle_fr_CA-60f6fce4.js")).default;case"hi":return(await import("./messagebundle_hi-3c753818.js")).default;case"hr":return(await import("./messagebundle_hr-f5eadd90.js")).default;case"hu":return(await import("./messagebundle_hu-d57d2bfc.js")).default;case"in":return(await import("./messagebundle_in-5f15c5a1.js")).default;case"it":return(await import("./messagebundle_it-51d189db.js")).default;case"iw":return(await import("./messagebundle_iw-71f66463.js")).default;case"ja":return(await import("./messagebundle_ja-5b3dd502.js")).default;case"kk":return(await import("./messagebundle_kk-c393c4a9.js")).default;case"ko":return(await import("./messagebundle_ko-632e4f9f.js")).default;case"lt":return(await import("./messagebundle_lt-56b41ac8.js")).default;case"lv":return(await import("./messagebundle_lv-c58db769.js")).default;case"ms":return(await import("./messagebundle_ms-54fe878e.js")).default;case"nl":return(await import("./messagebundle_nl-71b1c190.js")).default;case"no":return(await import("./messagebundle_no-5ae816d9.js")).default;case"pl":return(await import("./messagebundle_pl-dd8107e1.js")).default;case"pt":return(await import("./messagebundle_pt-9e9f924f.js")).default;case"pt_PT":return(await import("./messagebundle_pt_PT-2c6cce63.js")).default;case"ro":return(await import("./messagebundle_ro-767b0e99.js")).default;case"ru":return(await import("./messagebundle_ru-b3537542.js")).default;case"sh":return(await import("./messagebundle_sh-806e8ca0.js")).default;case"sk":return(await import("./messagebundle_sk-57daf6b1.js")).default;case"sl":return(await import("./messagebundle_sl-71a84189.js")).default;case"sv":return(await import("./messagebundle_sv-d6d000eb.js")).default;case"th":return(await import("./messagebundle_th-79715cf0.js")).default;case"tr":return(await import("./messagebundle_tr-c378e505.js")).default;case"uk":return(await import("./messagebundle_uk-99b5589a.js")).default;case"vi":return(await import("./messagebundle_vi-c9a9277d.js")).default;case"zh_CN":return(await import("./messagebundle_zh_CN-748178a2.js")).default;case"zh_TW":return(await import("./messagebundle_zh_TW-ffef9f6e.js")).default;default:throw"unknown locale"}})(e);if("string"==typeof t&&t.endsWith(".json"))throw new Error('[i18n] Invalid bundling detected - dynamic JSON imports bundled as URLs. Switch to inlining JSON files from the build or use \'import ".../Assets-static.js"\'. Check the "Assets" documentation for more information.');return t};["ar","bg","ca","cs","cy","da","de","el","en","en_GB","en_US_sappsd","en_US_saprigi","en_US_saptrc","es","es_MX","et","fi","fr","fr_CA","hi","hr","hu","in","it","iw","ja","kk","ko","lt","lv","ms","nl","no","pl","pt","pt_PT","ro","ru","sh","sk","sl","sv","th","tr","uk","vi","zh_CN","zh_TW"].forEach(e=>{Yo("@ui5/webcomponents",e,Lg)});var Ng=Fu.extend("sap.ui.core.date.Buddhist",{constructor:function(){var e=arguments;e.length>1&&(e=Hg(e)),this.oDate=this.createDate(Date,e),this.sCalendarType=eu.Buddhist}});function zg(e){var t=Fu.getEraStartDate(eu.Buddhist,0).year,i=e.year-t+1;return e.year<1941&&e.month<3&&(i-=1),null===e.year&&(i=void 0),{year:i,month:e.month,day:e.day}}function Og(e){var t=Fu.getEraStartDate(eu.Buddhist,0).year,i=e.year+t-1;return i<1941&&e.month<3&&(i+=1),null===e.year&&(i=void 0),{year:i,month:e.month,day:e.day}}function Hg(e){var t;return t=Og({year:e[0],month:e[1],day:void 0!==e[2]?e[2]:1}),e[0]=t.year,e}Ng.UTC=function(){var e=Hg(arguments);return Date.UTC.apply(Date,e)},Ng.now=function(){return Date.now()},Ng.prototype._getBuddhist=function(){return zg({year:this.oDate.getFullYear(),month:this.oDate.getMonth(),day:this.oDate.getDate()})},Ng.prototype._setBuddhist=function(e){var t=Og(e);return this.oDate.setFullYear(t.year,t.month,t.day)},Ng.prototype._getUTCBuddhist=function(){return zg({year:this.oDate.getUTCFullYear(),month:this.oDate.getUTCMonth(),day:this.oDate.getUTCDate()})},Ng.prototype._setUTCBuddhist=function(e){var t=Og(e);return this.oDate.setUTCFullYear(t.year,t.month,t.day)},Ng.prototype.getYear=function(){return this._getBuddhist().year},Ng.prototype.getFullYear=function(){return this._getBuddhist().year},Ng.prototype.getUTCFullYear=function(){return this._getUTCBuddhist().year},Ng.prototype.setYear=function(e){var t=this._getBuddhist();return t.year=e,this._setBuddhist(t)},Ng.prototype.setFullYear=function(e,t,i){var o=this._getBuddhist();return o.year=e,void 0!==t&&(o.month=t),void 0!==i&&(o.day=i),this._setBuddhist(o)},Ng.prototype.setUTCFullYear=function(e,t,i){var o=this._getUTCBuddhist();return o.year=e,void 0!==t&&(o.month=t),void 0!==i&&(o.day=i),this._setUTCBuddhist(o)},Ng.prototype.getWeek=function(){return Fu.getWeekByDate(this.sCalendarType,this.oDate.getFullYear(),this.getMonth(),this.getDate())},Ng.prototype.getUTCWeek=function(){return Fu.getWeekByDate(this.sCalendarType,this.oDate.getUTCFullYear(),this.getUTCMonth(),this.getUTCDate())},Au(eu.Buddhist,Ng);var Rg=Fu.extend("sap.ui.core.date.Islamic",{constructor:function(){var e=arguments;e.length>1&&(e=qg(e)),this.oDate=this.createDate(Date,e),this.sCalendarType=eu.Islamic}});Rg.UTC=function(){var e=qg(arguments);return Date.UTC.apply(Date,e)},Rg.now=function(){return Date.now()};var Ug=null,Vg=["A","B"];function jg(e){var t,i,o,r,a,n,s,l=e.year,u=e.month,d=e.day;if(n=0,u+1>2&&(n=Kg(l)?-1:-2),s=1721424.5+365*(l-1)+Math.floor((l-1)/4)+-Math.floor((l-1)/100)+Math.floor((l-1)/400)+Math.floor((367*(u+1)-362)/12+n+d),a=(s=Math.floor(s)+.5)-1948439.5,(r=Math.floor(a/29.530588853))<0)(i=r%12)<0&&(i+=12),o=a-Zg(t=Math.floor(r/12)+1,i)+1;else{for(r++;Xg(r)>a;)r--;o=a-Xg(12*((t=Math.floor(r/12)+1)-1)+(i=r%12))+1}return{day:o,month:i,year:t}}function Wg(e){var t,i,o,r,a,n=e.year,s=e.month,l=e.day+(n<1?Zg(n,s):Xg(12*(n-1)+s))+1948439.5-1,u=Math.floor(l-.5)+.5,d=u-1721425.5,c=Math.floor(d/146097),_=Jg(d,146097),h=Math.floor(_/36524),p=Jg(_,36524),g=Math.floor(p/1461),m=Jg(p,1461),f=Math.floor(m/365),v=400*c+100*h+4*g+f;return 4!=h&&4!=f&&v++,i=u-(1721425.5+365*(v-1)+Math.floor((v-1)/4)-Math.floor((v-1)/100)+Math.floor((v-1)/400)),r=0,r=u<1721424.5+365*(v-1)+Math.floor((v-1)/4)-Math.floor((v-1)/100)+Math.floor((v-1)/400)+Math.floor(739/12+(Kg(v)?-1:-2)+1)?0:Kg(v)?1:2,t=Math.floor((12*(i+r)+373)/367),o=1721424.5+365*(v-1)+Math.floor((v-1)/4)-Math.floor((v-1)/100)+Math.floor((v-1)/400),a=0,t>2&&(a=Kg(v)?-1:-2),{day:u-(o+=Math.floor((367*t-362)/12+a+1))+1,month:t-1,year:v}}function qg(e){var t,i=Array.prototype.slice.call(e);return t=Wg({year:e[0],month:e[1],day:void 0!==e[2]?e[2]:1}),i[0]=t.year,i[1]=t.month,i[2]=t.day,i}function Yg(){var e,t,i;Ug={},e=xl.getConfiguration().getFormatSettings().getLegacyDateFormat(),i=e,e=-1!==Vg.indexOf(i)?e:"A",(t=(t=xl.getConfiguration().getFormatSettings().getLegacyDateCalendarCustomizing())||[]).length?(t.forEach((function(t){if(t.dateFormat===e){var i=Gg(t.gregDate),o=(new Date(Date.UTC(i.year,i.month-1,i.day)).getTime()- -425215872e5)/864e5,r=12*((i=Gg(t.islamicMonthStart)).year-1)+i.month-1;Ug[r]=o}})),$l.info("Working with date format: ["+e+"] and customization: "+JSON.stringify(t))):$l.warning("No calendar customizations.")}function Gg(e){return{year:parseInt(e.substr(0,4)),month:parseInt(e.substr(4,2)),day:parseInt(e.substr(6,2))}}function Xg(e){Ug||Yg();var t=Ug[e];t||(t=Zg(Math.floor(e/12)+1,e%12));return t}function Zg(e,t){return Math.ceil(29.5*t)+354*(e-1)+Math.floor((3+11*e)/30)}function Jg(e,t){return e-t*Math.floor(e/t)}function Kg(e){return!(e%400&&(e%4||!(e%100)))}Rg.prototype._getIslamic=function(){return jg({day:this.oDate.getDate(),month:this.oDate.getMonth(),year:this.oDate.getFullYear()})},Rg.prototype._setIslamic=function(e){var t=Wg(e);return this.oDate.setFullYear(t.year,t.month,t.day)},Rg.prototype._getUTCIslamic=function(){return jg({day:this.oDate.getUTCDate(),month:this.oDate.getUTCMonth(),year:this.oDate.getUTCFullYear()})},Rg.prototype._setUTCIslamic=function(e){var t=Wg(e);return this.oDate.setUTCFullYear(t.year,t.month,t.day)},Rg.prototype.getDate=function(e){return this._getIslamic().day},Rg.prototype.getMonth=function(){return this._getIslamic().month},Rg.prototype.getYear=function(){return this._getIslamic().year-1400},Rg.prototype.getFullYear=function(){return this._getIslamic().year},Rg.prototype.setDate=function(e){var t=this._getIslamic();return t.day=e,this._setIslamic(t)},Rg.prototype.setMonth=function(e,t){var i=this._getIslamic();return i.month=e,void 0!==t&&(i.day=t),this._setIslamic(i)},Rg.prototype.setYear=function(e){var t=this._getIslamic();return t.year=e+1400,this._setIslamic(t)},Rg.prototype.setFullYear=function(e,t,i){var o=this._getIslamic();return o.year=e,void 0!==t&&(o.month=t),void 0!==i&&(o.day=i),this._setIslamic(o)},Rg.prototype.getUTCDate=function(e){return this._getUTCIslamic().day},Rg.prototype.getUTCMonth=function(){return this._getUTCIslamic().month},Rg.prototype.getUTCFullYear=function(){return this._getUTCIslamic().year},Rg.prototype.setUTCDate=function(e){var t=this._getUTCIslamic();return t.day=e,this._setUTCIslamic(t)},Rg.prototype.setUTCMonth=function(e,t){var i=this._getUTCIslamic();return i.month=e,void 0!==t&&(i.day=t),this._setUTCIslamic(i)},Rg.prototype.setUTCFullYear=function(e,t,i){var o=this._getUTCIslamic();return o.year=e,void 0!==t&&(o.month=t),void 0!==i&&(o.day=i),this._setUTCIslamic(o)},Au(eu.Islamic,Rg);var Qg=Fu.extend("sap.ui.core.date.Japanese",{constructor:function(){var e=arguments;e.length>1&&(e=im(e)),this.oDate=this.createDate(Date,e),this.sCalendarType=eu.Japanese}});function em(e){var t=Fu.getEraByDate(eu.Japanese,e.year,e.month,e.day),i=Fu.getEraStartDate(eu.Japanese,t).year;return{era:t,year:e.year-i+1,month:e.month,day:e.day}}function tm(e){return{year:Fu.getEraStartDate(eu.Japanese,e.era).year+e.year-1,month:e.month,day:e.day}}function im(e){var t,i=e[0];if("number"==typeof i){if(i>=100)return e;i=[Fu.getCurrentEra(eu.Japanese),i]}else Array.isArray(i)||(i=[]);return t=tm({era:i[0],year:i[1],month:e[1],day:void 0!==e[2]?e[2]:1}),e[0]=t.year,e}Qg.UTC=function(){var e=im(arguments);return Date.UTC.apply(Date,e)},Qg.now=function(){return Date.now()},Qg.prototype._getJapanese=function(){return em({year:this.oDate.getFullYear(),month:this.oDate.getMonth(),day:this.oDate.getDate()})},Qg.prototype._setJapanese=function(e){var t=tm(e);return this.oDate.setFullYear(t.year,t.month,t.day)},Qg.prototype._getUTCJapanese=function(){return em({year:this.oDate.getUTCFullYear(),month:this.oDate.getUTCMonth(),day:this.oDate.getUTCDate()})},Qg.prototype._setUTCJapanese=function(e){var t=tm(e);return this.oDate.setUTCFullYear(t.year,t.month,t.day)},Qg.prototype.getYear=function(){return this._getJapanese().year},Qg.prototype.getFullYear=function(){return this._getJapanese().year},Qg.prototype.getEra=function(){return this._getJapanese().era},Qg.prototype.getUTCFullYear=function(){return this._getUTCJapanese().year},Qg.prototype.getUTCEra=function(){return this._getUTCJapanese().era},Qg.prototype.setYear=function(e){var t=this._getJapanese();return t.year=e,this._setJapanese(t)},Qg.prototype.setFullYear=function(e,t,i){var o=this._getJapanese();return o.year=e,void 0!==t&&(o.month=t),void 0!==i&&(o.day=i),this._setJapanese(o)},Qg.prototype.setEra=function(e,t,i,o){var r=em(Fu.getEraStartDate(eu.Japanese,e));return void 0!==t&&(r.year=t),void 0!==i&&(r.month=i),void 0!==o&&(r.day=o),this._setJapanese(r)},Qg.prototype.setUTCFullYear=function(e,t,i){var o=this._getUTCJapanese();return o.year=e,void 0!==t&&(o.month=t),void 0!==i&&(o.day=i),this._setUTCJapanese(o)},Qg.prototype.setUTCEra=function(e,t,i,o){var r=em(Fu.getEraStartDate(eu.Japanese,e));return void 0!==t&&(r.year=t),void 0!==i&&(r.month=i),void 0!==o&&(r.day=o),this._setUTCJapanese(r)},Qg.prototype.getWeek=function(){return Fu.getWeekByDate(this.sCalendarType,this.oDate.getFullYear(),this.getMonth(),this.getDate())},Qg.prototype.getUTCWeek=function(){return Fu.getWeekByDate(this.sCalendarType,this.oDate.getUTCFullYear(),this.getUTCMonth(),this.getUTCDate())},Au(eu.Japanese,Qg);var om=Fu.extend("sap.ui.core.date.Persian",{constructor:function(){var e=arguments;e.length>1&&(e=nm(e)),this.oDate=this.createDate(Date,e),this.sCalendarType=eu.Persian}});om.UTC=function(){var e=nm(arguments);return Date.UTC.apply(Date,e)},om.now=function(){return Date.now()};function rm(e){return function(e){var t,i,o,r=um(e).year,a=r-621,n=sm(a),s=lm(r,3,n.march);if((o=e-s)>=0){if(o<=185)return i=1+dm(o,31),t=cm(o,31)+1,{year:a,month:i-1,day:t};o-=186}else a-=1,o+=179,1===n.leap&&(o+=1);return i=7+dm(o,30),t=cm(o,30)+1,{year:a,month:i-1,day:t}}(lm(e.year,e.month+1,e.day))}function am(e){return um(function(e,t,i){for(;t<1;)t+=12,e--;for(;t>12;)t-=12,e++;var o=sm(e);return lm(o.gy,3,o.march)+31*(t-1)-dm(t,7)*(t-7)+i-1}(e.year,e.month+1,e.day))}function nm(e){var t,i=Array.prototype.slice.call(e);return"number"!=typeof e[0]||"number"!=typeof e[1]||void 0!==e[2]&&"number"!=typeof e[2]?(i[0]=NaN,i[1]=NaN,i[2]=NaN,i):(t=am({year:e[0],month:e[1],day:void 0!==e[2]?e[2]:1}),i[0]=t.year,i[1]=t.month,i[2]=t.day,i)}function sm(e){var t,i,o,r,a,n,s=[-61,9,38,199,426,686,756,818,1111,1181,1210,1635,2060,2097,2192,2262,2324,2394,2456,3178],l=s.length,u=e+621,d=-14,c=s[0];for(n=1;n<l&&(i=(t=s[n])-c,!(e<t));n+=1)d=d+8*dm(i,33)+dm(cm(i,33),4),c=t;return d=d+8*dm(a=e-c,33)+dm(cm(a,33)+3,4),4===cm(i,33)&&i-a==4&&(d+=1),r=20+d-(dm(u,4)-dm(3*(dm(u,100)+1),4)-150),i-a<6&&(a=a-i+33*dm(i+4,33)),-1===(o=cm(cm(a+1,33)-1,4))&&(o=4),{leap:o,gy:u,march:r}}function lm(e,t,i){var o=dm(1461*(e+dm(t-8,6)+100100),4)+dm(153*cm(t+9,12)+2,5)+i-34840408;return o=o-dm(3*dm(e+100100+dm(t-8,6),100),4)+752}function um(e){var t,i,o,r;return t=(t=4*e+139361631)+4*dm(3*dm(4*e+183187720,146097),4)-3908,i=5*dm(cm(t,1461),4)+308,o=dm(cm(i,153),5)+1,r=cm(dm(i,153),12)+1,{year:dm(t,1461)-100100+dm(8-r,6),month:r-1,day:o}}function dm(e,t){return~~(e/t)}function cm(e,t){return e-~~(e/t)*t}om.prototype._getPersian=function(){return rm({day:this.oDate.getDate(),month:this.oDate.getMonth(),year:this.oDate.getFullYear()})},om.prototype._setPersian=function(e){var t=am(e);return this.oDate.setFullYear(t.year,t.month,t.day)},om.prototype._getUTCPersian=function(){return rm({day:this.oDate.getUTCDate(),month:this.oDate.getUTCMonth(),year:this.oDate.getUTCFullYear()})},om.prototype._setUTCPersian=function(e){var t=am(e);return this.oDate.setUTCFullYear(t.year,t.month,t.day)},om.prototype.getDate=function(e){return this._getPersian().day},om.prototype.getMonth=function(){return this._getPersian().month},om.prototype.getYear=function(){return this._getPersian().year-1300},om.prototype.getFullYear=function(){return this._getPersian().year},om.prototype.setDate=function(e){var t=this._getPersian();return t.day=e,this._setPersian(t)},om.prototype.setMonth=function(e,t){var i=this._getPersian();return i.month=e,void 0!==t&&(i.day=t),this._setPersian(i)},om.prototype.setYear=function(e){var t=this._getPersian();return t.year=e+1300,this._setPersian(t)},om.prototype.setFullYear=function(e,t,i){var o=this._getPersian();return o.year=e,void 0!==t&&(o.month=t),void 0!==i&&(o.day=i),this._setPersian(o)},om.prototype.getUTCDate=function(e){return this._getUTCPersian().day},om.prototype.getUTCMonth=function(){return this._getUTCPersian().month},om.prototype.getUTCFullYear=function(){return this._getUTCPersian().year},om.prototype.setUTCDate=function(e){var t=this._getUTCPersian();return t.day=e,this._setUTCPersian(t)},om.prototype.setUTCMonth=function(e,t){var i=this._getUTCPersian();return i.month=e,void 0!==t&&(i.day=t),this._setUTCPersian(i)},om.prototype.setUTCFullYear=function(e,t,i){var o=this._getUTCPersian();return o.year=e,void 0!==t&&(o.month=t),void 0!==i&&(o.day=i),this._setUTCPersian(o)},Au(eu.Persian,om);
|
|
121
46
|
//# sourceMappingURL=bundle.esm.js.map
|