@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,212 +0,0 @@
|
|
|
1
|
-
!function(){"use strict";
|
|
2
|
-
/*!
|
|
3
|
-
* css-vars-ponyfill
|
|
4
|
-
* v2.1.2
|
|
5
|
-
* https://jhildenbiddle.github.io/css-vars-ponyfill/
|
|
6
|
-
* (c) 2018-2019 John Hildenbiddle <http://hildenbiddle.com>
|
|
7
|
-
* MIT license
|
|
8
|
-
*/function e(){return(e=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}function t(e){return function(e){if(Array.isArray(e)){for(var t=0,r=new Array(e.length);t<e.length;t++)r[t]=e[t];return r}}(e)||function(e){if(Symbol.iterator in Object(e)||"[object Arguments]"===Object.prototype.toString.call(e))return Array.from(e)}(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance")}
|
|
9
|
-
/*!
|
|
10
|
-
* get-css-data
|
|
11
|
-
* v1.6.3
|
|
12
|
-
* https://github.com/jhildenbiddle/get-css-data
|
|
13
|
-
* (c) 2018-2019 John Hildenbiddle <http://hildenbiddle.com>
|
|
14
|
-
* MIT license
|
|
15
|
-
*/()}function r(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},r={mimeType:t.mimeType||null,onBeforeSend:t.onBeforeSend||Function.prototype,onSuccess:t.onSuccess||Function.prototype,onError:t.onError||Function.prototype,onComplete:t.onComplete||Function.prototype},n=Array.isArray(e)?e:[e],i=Array.apply(null,Array(n.length)).map((function(e){return null}));function o(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"",t="<"===e.trim().charAt(0);return!t}function a(e,t){r.onError(e,n[t],t)}function s(e,t){var o=r.onSuccess(e,n[t],t);e=!1===o?"":o||e,i[t]=e,-1===i.indexOf(null)&&r.onComplete(i)}var u=document.createElement("a");n.forEach((function(e,t){if(u.setAttribute("href",e),u.href=String(u.href),Boolean(document.all&&!window.atob)&&u.host.split(":")[0]!==location.host.split(":")[0]){if(u.protocol===location.protocol){var n=new XDomainRequest;n.open("GET",e),n.timeout=0,n.onprogress=Function.prototype,n.ontimeout=Function.prototype,n.onload=function(){o(n.responseText)?s(n.responseText,t):a(n,t)},n.onerror=function(e){a(n,t)},setTimeout((function(){n.send()}),0)}else console.warn("Internet Explorer 9 Cross-Origin (CORS) requests must use the same protocol (".concat(e,")")),a(null,t)}else{var i=new XMLHttpRequest;i.open("GET",e),r.mimeType&&i.overrideMimeType&&i.overrideMimeType(r.mimeType),r.onBeforeSend(i,e,t),i.onreadystatechange=function(){4===i.readyState&&(200===i.status&&o(i.responseText)?s(i.responseText,t):a(i,t))},i.send()}}))}
|
|
16
|
-
/**
|
|
17
|
-
* Gets CSS data from <style> and <link> nodes (including @imports), then
|
|
18
|
-
* returns data in order processed by DOM. Allows specifying nodes to
|
|
19
|
-
* include/exclude and filtering CSS data using RegEx.
|
|
20
|
-
*
|
|
21
|
-
* @preserve
|
|
22
|
-
* @param {object} [options] The options object
|
|
23
|
-
* @param {object} [options.rootElement=document] Root element to traverse for
|
|
24
|
-
* <link> and <style> nodes.
|
|
25
|
-
* @param {string} [options.include] CSS selector matching <link> and <style>
|
|
26
|
-
* nodes to include
|
|
27
|
-
* @param {string} [options.exclude] CSS selector matching <link> and <style>
|
|
28
|
-
* nodes to exclude
|
|
29
|
-
* @param {object} [options.filter] Regular expression used to filter node CSS
|
|
30
|
-
* data. Each block of CSS data is tested against the filter,
|
|
31
|
-
* and only matching data is included.
|
|
32
|
-
* @param {object} [options.useCSSOM=false] Determines if CSS data will be
|
|
33
|
-
* collected from a stylesheet's runtime values instead of its
|
|
34
|
-
* text content. This is required to get accurate CSS data
|
|
35
|
-
* when a stylesheet has been modified using the deleteRule()
|
|
36
|
-
* or insertRule() methods because these modifications will
|
|
37
|
-
* not be reflected in the stylesheet's text content.
|
|
38
|
-
* @param {function} [options.onBeforeSend] Callback before XHR is sent. Passes
|
|
39
|
-
* 1) the XHR object, 2) source node reference, and 3) the
|
|
40
|
-
* source URL as arguments.
|
|
41
|
-
* @param {function} [options.onSuccess] Callback on each CSS node read. Passes
|
|
42
|
-
* 1) CSS text, 2) source node reference, and 3) the source
|
|
43
|
-
* URL as arguments.
|
|
44
|
-
* @param {function} [options.onError] Callback on each error. Passes 1) the XHR
|
|
45
|
-
* object for inspection, 2) soure node reference, and 3) the
|
|
46
|
-
* source URL that failed (either a <link> href or an @import)
|
|
47
|
-
* as arguments
|
|
48
|
-
* @param {function} [options.onComplete] Callback after all nodes have been
|
|
49
|
-
* processed. Passes 1) concatenated CSS text, 2) an array of
|
|
50
|
-
* CSS text in DOM order, and 3) an array of nodes in DOM
|
|
51
|
-
* order as arguments.
|
|
52
|
-
*
|
|
53
|
-
* @example
|
|
54
|
-
*
|
|
55
|
-
* getCssData({
|
|
56
|
-
* rootElement: document,
|
|
57
|
-
* include : 'style,link[rel="stylesheet"]',
|
|
58
|
-
* exclude : '[href="skip.css"]',
|
|
59
|
-
* filter : /red/,
|
|
60
|
-
* useCSSOM : false,
|
|
61
|
-
* onBeforeSend(xhr, node, url) {
|
|
62
|
-
* // ...
|
|
63
|
-
* }
|
|
64
|
-
* onSuccess(cssText, node, url) {
|
|
65
|
-
* // ...
|
|
66
|
-
* }
|
|
67
|
-
* onError(xhr, node, url) {
|
|
68
|
-
* // ...
|
|
69
|
-
* },
|
|
70
|
-
* onComplete(cssText, cssArray, nodeArray) {
|
|
71
|
-
* // ...
|
|
72
|
-
* }
|
|
73
|
-
* });
|
|
74
|
-
*/function n(e){var t=/\/\*[\s\S]+?\*\//g,n=/(?:@import\s*)(?:url\(\s*)?(?:['"])([^'"]*)(?:['"])(?:\s*\))?(?:[^;]*;)/g,o={rootElement:e.rootElement||document,include:e.include||'style,link[rel="stylesheet"]',exclude:e.exclude||null,filter:e.filter||null,useCSSOM:e.useCSSOM||!1,onBeforeSend:e.onBeforeSend||Function.prototype,onSuccess:e.onSuccess||Function.prototype,onError:e.onError||Function.prototype,onComplete:e.onComplete||Function.prototype},a=Array.apply(null,o.rootElement.querySelectorAll(o.include)).filter((function(e){return t=e,r=o.exclude,!(t.matches||t.matchesSelector||t.webkitMatchesSelector||t.mozMatchesSelector||t.msMatchesSelector||t.oMatchesSelector).call(t,r);var t,r})),s=Array.apply(null,Array(a.length)).map((function(e){return null}));function u(){if(-1===s.indexOf(null)){var e=s.join("");o.onComplete(e,s,a)}}function l(e,t,n,i){var a=o.onSuccess(e,n,i);(function e(t,n,i,a){var s=arguments.length>4&&void 0!==arguments[4]?arguments[4]:[],u=arguments.length>5&&void 0!==arguments[5]?arguments[5]:[],l=c(t,i,u);l.rules.length?r(l.absoluteUrls,{onBeforeSend:function(e,t,r){o.onBeforeSend(e,n,t)},onSuccess:function(e,t,r){var i=o.onSuccess(e,n,t),a=c(e=!1===i?"":i||e,t,u);return a.rules.forEach((function(t,r){e=e.replace(t,a.absoluteRules[r])})),e},onError:function(r,o,c){s.push({xhr:r,url:o}),u.push(l.rules[c]),e(t,n,i,a,s,u)},onComplete:function(r){r.forEach((function(e,r){t=t.replace(l.rules[r],e)})),e(t,n,i,a,s,u)}}):a(t,s)})(e=void 0!==a&&!1===Boolean(a)?"":a||e,n,i,(function(e,r){null===s[t]&&(r.forEach((function(e){return o.onError(e.xhr,n,e.url)})),!o.filter||o.filter.test(e)?s[t]=e:s[t]="",u())}))}function c(e,r){var o=arguments.length>2&&void 0!==arguments[2]?arguments[2]:[],a={};return a.rules=(e.replace(t,"").match(n)||[]).filter((function(e){return-1===o.indexOf(e)})),a.urls=a.rules.map((function(e){return e.replace(n,"$1")})),a.absoluteUrls=a.urls.map((function(e){return i(e,r)})),a.absoluteRules=a.rules.map((function(e,t){var n=a.urls[t],o=i(a.absoluteUrls[t],r);return e.replace(n,o)})),a}a.length?a.forEach((function(e,t){var n=e.getAttribute("href"),a=e.getAttribute("rel"),c="LINK"===e.nodeName&&n&&a&&"stylesheet"===a.toLowerCase(),d="STYLE"===e.nodeName;if(c)r(n,{mimeType:"text/css",onBeforeSend:function(t,r,n){o.onBeforeSend(t,e,r)},onSuccess:function(r,o,a){var s=i(n,location.href);l(r,t,e,s)},onError:function(r,n,i){s[t]="",o.onError(r,e,n),u()}});else if(d){var h=e.textContent;o.useCSSOM&&(h=Array.apply(null,e.sheet.cssRules).map((function(e){return e.cssText})).join("")),l(h,t,e,location.href)}else s[t]="",u()})):o.onComplete("",[])}function i(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:location.href,r=document.implementation.createHTMLDocument(""),n=r.createElement("base"),i=r.createElement("a");return r.head.appendChild(n),r.body.appendChild(i),n.href=t,i.href=e,i.href}var o=a;function a(e,t,r){e instanceof RegExp&&(e=s(e,r)),t instanceof RegExp&&(t=s(t,r));var n=u(e,t,r);return n&&{start:n[0],end:n[1],pre:r.slice(0,n[0]),body:r.slice(n[0]+e.length,n[1]),post:r.slice(n[1]+t.length)}}function s(e,t){var r=t.match(e);return r?r[0]:null}function u(e,t,r){var n,i,o,a,s,u=r.indexOf(e),l=r.indexOf(t,u+1),c=u;if(u>=0&&l>0){for(n=[],o=r.length;c>=0&&!s;)c==u?(n.push(c),u=r.indexOf(e,c+1)):1==n.length?s=[n.pop(),l]:((i=n.pop())<o&&(o=i,a=l),l=r.indexOf(t,c+1)),c=u<l&&u>=0?u:l;n.length&&(s=[o,a])}return s}function l(t){var r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},n={preserveStatic:!0,removeComments:!1},i=e({},n,r),a=[];function s(e){throw new Error("CSS parse error: ".concat(e))}function u(e){var r=e.exec(t);if(r)return t=t.slice(r[0].length),r}function l(){return u(/^{\s*/)}function c(){return u(/^}/)}function d(){u(/^\s*/)}function h(){if(d(),"/"===t[0]&&"*"===t[1]){for(var e=2;t[e]&&("*"!==t[e]||"/"!==t[e+1]);)e++;if(!t[e])return s("end of comment is missing");var r=t.slice(2,e);return t=t.slice(e+2),{type:"comment",comment:r}}}function p(){for(var e,t=[];e=h();)t.push(e);return i.removeComments?[]:t}function _(){for(d();"}"===t[0];)s("extra closing bracket");var e=u(/^(("(?:\\"|[^"])*"|'(?:\\'|[^'])*'|[^{])+)/);if(e)return e[0].trim().replace(/\/\*([^*]|[\r\n]|(\*+([^*\/]|[\r\n])))*\*\/+/g,"").replace(/"(?:\\"|[^"])*"|'(?:\\'|[^'])*'/g,(function(e){return e.replace(/,/g,"")})).split(/\s*(?![^(]*\)),\s*/).map((function(e){return e.replace(/\u200C/g,",")}))}function f(){u(/^([;\s]*)+/);var e=/\/\*[^*]*\*+([^\/*][^*]*\*+)*\//g,t=u(/^(\*?[-#\/*\\\w]+(\[[0-9a-z_-]+\])?)\s*/);if(t){if(t=t[0].trim(),!u(/^:\s*/))return s("property missing ':'");var r=u(/^((?:\/\*.*?\*\/|'(?:\\'|.)*?'|"(?:\\"|.)*?"|\((\s*'(?:\\'|.)*?'|"(?:\\"|.)*?"|[^)]*?)\s*\)|[^};])+)/),n={type:"declaration",property:t.replace(e,""),value:r?r[0].replace(e,"").trim():""};return u(/^[;\s]*/),n}}function m(){if(!l())return s("missing '{'");for(var e,t=p();e=f();)t.push(e),t=t.concat(p());return c()?t:s("missing '}'")}function g(){d();for(var e,t=[];e=u(/^((\d+\.\d+|\.\d+|\d+)%?|[a-z]+)\s*/);)t.push(e[1]),u(/^,\s*/);if(t.length)return{type:"keyframe",values:t,declarations:m()}}function v(){var e=u(/^@([-\w]+)?keyframes\s*/);if(e){var t=e[1];if(!(e=u(/^([-\w]+)\s*/)))return s("@keyframes missing name");var r,n=e[1];if(!l())return s("@keyframes missing '{'");for(var i=p();r=g();)i.push(r),i=i.concat(p());return c()?{type:"keyframes",name:n,vendor:t,keyframes:i}:s("@keyframes missing '}'")}}function y(){if(u(/^@page */))return{type:"page",selectors:_()||[],declarations:m()}}function b(){if(u(/^@font-face\s*/))return{type:"font-face",declarations:m()}}function k(){var e=u(/^@supports *([^{]+)/);if(e)return{type:"supports",supports:e[1].trim(),rules:I()}}function w(){if(u(/^@host\s*/))return{type:"host",rules:I()}}function x(){var e=u(/^@media([^{]+)*/);if(e)return{type:"media",media:(e[1]||"").trim(),rules:I()}}function S(){var e=u(/^@custom-media\s+(--[^\s]+)\s*([^{;]+);/);if(e)return{type:"custom-media",name:e[1].trim(),media:e[2].trim()}}function C(){var e=u(/^@([-\w]+)?document *([^{]+)/);if(e)return{type:"document",document:e[2].trim(),vendor:e[1]?e[1].trim():null,rules:I()}}function T(){var e=u(/^@(import|charset|namespace)\s*([^;]+);/);if(e)return{type:e[1],name:e[2].trim()}}function P(){if(d(),"@"===t[0]){var e=v()||k()||w()||x()||S()||y()||C()||b()||T();if(e&&!i.preserveStatic){var r=!1;if(e.declarations)r=e.declarations.some((function(e){return/var\(/.test(e.value)}));else r=(e.keyframes||e.rules||[]).some((function(e){return(e.declarations||[]).some((function(e){return/var\(/.test(e.value)}))}));return r?e:{}}return e}}function D(){if(!i.preserveStatic){var e=o("{","}",t);if(e){var r=/:(?:root|host)(?![.:#(])/.test(e.pre)&&/--\S*\s*:/.test(e.body),n=/var\(/.test(e.body);if(!r&&!n)return t=t.slice(e.end+1),{}}}var a=_()||[],u=i.preserveStatic?m():m().filter((function(e){var t=a.some((function(e){return/:(?:root|host)(?![.:#(])/.test(e)}))&&/^--\S/.test(e.property),r=/var\(/.test(e.value);return t||r}));return a.length||s("selector missing"),{type:"rule",selectors:a,declarations:u}}function I(e){if(!e&&!l())return s("missing '{'");for(var r,n=p();t.length&&(e||"}"!==t[0])&&(r=P()||D());)r.type&&n.push(r),n=n.concat(p());return e||c()?n:s("missing '}'")}return{type:"stylesheet",stylesheet:{rules:I(!0),errors:a}}}function c(t){var r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},n={parseHost:!1,store:{},onWarning:function(){}},i=e({},n,r),o=new RegExp(":".concat(i.parseHost?"host":"root","(?![.:#(])"));return"string"==typeof t&&(t=l(t,i)),t.stylesheet.rules.forEach((function(e){"rule"===e.type&&e.selectors.some((function(e){return o.test(e)}))&&e.declarations.forEach((function(e,t){var r=e.property,n=e.value;r&&0===r.indexOf("--")&&(i.store[r]=n)}))})),i.store}function d(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"",r=arguments.length>2?arguments[2]:void 0,n={charset:function(e){return"@charset "+e.name+";"},comment:function(e){return 0===e.comment.indexOf("__CSSVARSPONYFILL")?"/*"+e.comment+"*/":""},"custom-media":function(e){return"@custom-media "+e.name+" "+e.media+";"},declaration:function(e){return e.property+":"+e.value+";"},document:function(e){return"@"+(e.vendor||"")+"document "+e.document+"{"+i(e.rules)+"}"},"font-face":function(e){return"@font-face{"+i(e.declarations)+"}"},host:function(e){return"@host{"+i(e.rules)+"}"},import:function(e){return"@import "+e.name+";"},keyframe:function(e){return e.values.join(",")+"{"+i(e.declarations)+"}"},keyframes:function(e){return"@"+(e.vendor||"")+"keyframes "+e.name+"{"+i(e.keyframes)+"}"},media:function(e){return"@media "+e.media+"{"+i(e.rules)+"}"},namespace:function(e){return"@namespace "+e.name+";"},page:function(e){return"@page "+(e.selectors.length?e.selectors.join(", "):"")+"{"+i(e.declarations)+"}"},rule:function(e){var t=e.declarations;if(t.length)return e.selectors.join(",")+"{"+i(t)+"}"},supports:function(e){return"@supports "+e.supports+"{"+i(e.rules)+"}"}};function i(e){for(var i="",o=0;o<e.length;o++){var a=e[o];r&&r(a);var s=n[a.type](a);s&&(i+=s,s.length&&a.selectors&&(i+=t))}return i}return i(e.stylesheet.rules)}function h(e,t){e.rules.forEach((function(r){r.rules?h(r,t):r.keyframes?r.keyframes.forEach((function(e){"keyframe"===e.type&&t(e.declarations,r)})):r.declarations&&t(r.declarations,e)}))}a.range=u;function p(t){var r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},n={preserveStatic:!0,preserveVars:!1,variables:{},onWarning:function(){}},i=e({},n,r);return"string"==typeof t&&(t=l(t,i)),h(t.stylesheet,(function(e,t){for(var r=0;r<e.length;r++){var n=e[r],o=n.type,a=n.property,s=n.value;if("declaration"===o)if(i.preserveVars||!a||0!==a.indexOf("--")){if(-1!==s.indexOf("var(")){var u=f(s,i);u!==n.value&&(u=_(u),i.preserveVars?(e.splice(r,0,{type:o,property:a,value:u}),r++):n.value=u)}}else e.splice(r,1),r--}})),d(t)}function _(e){return(e.match(/calc\(([^)]+)\)/g)||[]).forEach((function(t){var r="calc".concat(t.split("calc").join(""));e=e.replace(t,r)})),e}function f(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},r=arguments.length>2?arguments[2]:void 0;if(-1===e.indexOf("var("))return e;var n=o("(",")",e);function i(e){var n=e.split(",")[0].replace(/[\s\n\t]/g,""),i=(e.match(/(?:\s*,\s*){1}(.*)?/)||[])[1],o=Object.prototype.hasOwnProperty.call(t.variables,n)?String(t.variables[n]):void 0,a=o||(i?String(i):void 0),s=r||e;return o||t.onWarning('variable "'.concat(n,'" is undefined')),a&&"undefined"!==a&&a.length>0?f(a,t,s):"var(".concat(s,")")}if(n){if("var"===n.pre.slice(-3)){var a=0===n.body.trim().length;return a?(t.onWarning("var() must contain a non-whitespace string"),e):n.pre.slice(0,-3)+i(n.body)+f(n.post,t)}return n.pre+"(".concat(f(n.body,t),")")+f(n.post,t)}return-1!==e.indexOf("var(")&&t.onWarning('missing closing ")" in the value "'.concat(e,'"')),e}var m="undefined"!=typeof window,g=m&&window.CSS&&window.CSS.supports&&window.CSS.supports("(--a: 0)"),v={group:0,job:0},y={rootElement:m?document:null,shadowDOM:!1,include:"style,link[rel=stylesheet]",exclude:"",variables:{},onlyLegacy:!0,preserveStatic:!0,preserveVars:!1,silent:!1,updateDOM:!0,updateURLs:!0,watch:null,onBeforeSend:function(){},onWarning:function(){},onError:function(){},onSuccess:function(){},onComplete:function(){}},b={cssComments:/\/\*[\s\S]+?\*\//g,cssKeyframes:/@(?:-\w*-)?keyframes/,cssMediaQueries:/@media[^{]+\{([\s\S]+?})\s*}/g,cssUrls:/url\((?!['"]?(?:data|http|\/\/):)['"]?([^'")]*)['"]?\)/g,cssVarDeclRules:/(?::(?:root|host)(?![.:#(])[\s,]*[^{]*{\s*[^}]*})/g,cssVarDecls:/(?:[\s;]*)(-{2}\w[\w-]*)(?:\s*:\s*)([^;]*);/g,cssVarFunc:/var\(\s*--[\w-]/,cssVars:/(?:(?::(?:root|host)(?![.:#(])[\s,]*[^{]*{\s*[^;]*;*\s*)|(?:var\(\s*))(--[^:)]+)(?:\s*[:)])/},k={dom:{},job:{},user:{}},w=!1,x=null,S=0,C=null,T=!1;
|
|
75
|
-
/**
|
|
76
|
-
* Fetches, parses, and transforms CSS custom properties from specified
|
|
77
|
-
* <style> and <link> elements into static values, then appends a new <style>
|
|
78
|
-
* element with static values to the DOM to provide CSS custom property
|
|
79
|
-
* compatibility for legacy browsers. Also provides a single interface for
|
|
80
|
-
* live updates of runtime values in both modern and legacy browsers.
|
|
81
|
-
*
|
|
82
|
-
* @preserve
|
|
83
|
-
* @param {object} [options] Options object
|
|
84
|
-
* @param {object} [options.rootElement=document] Root element to traverse for
|
|
85
|
-
* <link> and <style> nodes
|
|
86
|
-
* @param {boolean} [options.shadowDOM=false] Determines if shadow DOM <link>
|
|
87
|
-
* and <style> nodes will be processed.
|
|
88
|
-
* @param {string} [options.include="style,link[rel=stylesheet]"] CSS selector
|
|
89
|
-
* matching <link re="stylesheet"> and <style> nodes to
|
|
90
|
-
* process
|
|
91
|
-
* @param {string} [options.exclude] CSS selector matching <link
|
|
92
|
-
* rel="stylehseet"> and <style> nodes to exclude from those
|
|
93
|
-
* matches by options.include
|
|
94
|
-
* @param {object} [options.variables] A map of custom property name/value
|
|
95
|
-
* pairs. Property names can omit or include the leading
|
|
96
|
-
* double-hyphen (—), and values specified will override
|
|
97
|
-
* previous values
|
|
98
|
-
* @param {boolean} [options.onlyLegacy=true] Determines if the ponyfill will
|
|
99
|
-
* only generate legacy-compatible CSS in browsers that lack
|
|
100
|
-
* native support (i.e., legacy browsers)
|
|
101
|
-
* @param {boolean} [options.preserveStatic=true] Determines if CSS
|
|
102
|
-
* declarations that do not reference a custom property will
|
|
103
|
-
* be preserved in the transformed CSS
|
|
104
|
-
* @param {boolean} [options.preserveVars=false] Determines if CSS custom
|
|
105
|
-
* property declarations will be preserved in the transformed
|
|
106
|
-
* CSS
|
|
107
|
-
* @param {boolean} [options.silent=false] Determines if warning and error
|
|
108
|
-
* messages will be displayed on the console
|
|
109
|
-
* @param {boolean} [options.updateDOM=true] Determines if the ponyfill will
|
|
110
|
-
* update the DOM after processing CSS custom properties
|
|
111
|
-
* @param {boolean} [options.updateURLs=true] Determines if the ponyfill will
|
|
112
|
-
* convert relative url() paths to absolute urls
|
|
113
|
-
* @param {boolean} [options.watch=false] Determines if a MutationObserver will
|
|
114
|
-
* be created that will execute the ponyfill when a <link> or
|
|
115
|
-
* <style> DOM mutation is observed
|
|
116
|
-
* @param {function} [options.onBeforeSend] Callback before XHR is sent. Passes
|
|
117
|
-
* 1) the XHR object, 2) source node reference, and 3) the
|
|
118
|
-
* source URL as arguments
|
|
119
|
-
* @param {function} [options.onWarning] Callback after each CSS parsing warning
|
|
120
|
-
* has occurred. Passes 1) a warning message as an argument.
|
|
121
|
-
* @param {function} [options.onError] Callback after a CSS parsing error has
|
|
122
|
-
* occurred or an XHR request has failed. Passes 1) an error
|
|
123
|
-
* message, and 2) source node reference, 3) xhr, and 4 url as
|
|
124
|
-
* arguments.
|
|
125
|
-
* @param {function} [options.onSuccess] Callback after CSS data has been
|
|
126
|
-
* collected from each node and before CSS custom properties
|
|
127
|
-
* have been transformed. Allows modifying the CSS data before
|
|
128
|
-
* it is transformed by returning any string value (or false
|
|
129
|
-
* to skip). Passes 1) CSS text, 2) source node reference, and
|
|
130
|
-
* 3) the source URL as arguments.
|
|
131
|
-
* @param {function} [options.onComplete] Callback after all CSS has been
|
|
132
|
-
* processed, legacy-compatible CSS has been generated, and
|
|
133
|
-
* (optionally) the DOM has been updated. Passes 1) a CSS
|
|
134
|
-
* string with CSS variable values resolved, 2) an array of
|
|
135
|
-
* output <style> node references that have been appended to
|
|
136
|
-
* the DOM, 3) an object containing all custom properies names
|
|
137
|
-
* and values, and 4) the ponyfill execution time in
|
|
138
|
-
* milliseconds.
|
|
139
|
-
*
|
|
140
|
-
* @example
|
|
141
|
-
*
|
|
142
|
-
* cssVars({
|
|
143
|
-
* rootElement : document,
|
|
144
|
-
* shadowDOM : false,
|
|
145
|
-
* include : 'style,link[rel="stylesheet"]',
|
|
146
|
-
* exclude : '',
|
|
147
|
-
* variables : {},
|
|
148
|
-
* onlyLegacy : true,
|
|
149
|
-
* preserveStatic: true,
|
|
150
|
-
* preserveVars : false,
|
|
151
|
-
* silent : false,
|
|
152
|
-
* updateDOM : true,
|
|
153
|
-
* updateURLs : true,
|
|
154
|
-
* watch : false,
|
|
155
|
-
* onBeforeSend(xhr, node, url) {},
|
|
156
|
-
* onWarning(message) {},
|
|
157
|
-
* onError(message, node, xhr, url) {},
|
|
158
|
-
* onSuccess(cssText, node, url) {},
|
|
159
|
-
* onComplete(cssText, styleNode, cssVariables, benchmark) {}
|
|
160
|
-
* });
|
|
161
|
-
*/
|
|
162
|
-
function P(){var r=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},i="cssVars(): ",o=e({},y,r);function a(e,t,r,n){!o.silent&&window.console&&console.error("".concat(i).concat(e,"\n"),t),o.onError(e,t,r,n)}function s(e){!o.silent&&window.console&&console.warn("".concat(i).concat(e)),o.onWarning(e)}if(m){if(o.watch)return o.watch=y.watch,D(o),void P(o);if(!1===o.watch&&x&&(x.disconnect(),x=null),!o.__benchmark){if(w===o.rootElement)return void I(r);if(o.__benchmark=O(),o.exclude=[x?'[data-cssvars]:not([data-cssvars=""])':'[data-cssvars="out"]',o.exclude].filter((function(e){return e})).join(","),o.variables=B(o.variables),!x){var u=Array.apply(null,o.rootElement.querySelectorAll('[data-cssvars="out"]'));if(u.forEach((function(e){var t=e.getAttribute("data-cssvars-group");(t?o.rootElement.querySelector('[data-cssvars="src"][data-cssvars-group="'.concat(t,'"]')):null)||e.parentNode.removeChild(e)})),S){var h=o.rootElement.querySelectorAll('[data-cssvars]:not([data-cssvars="out"])');h.length<S&&(S=h.length,k.dom={})}}}if("loading"!==document.readyState)if(g&&o.onlyLegacy){if(o.updateDOM){var _=o.rootElement.host||(o.rootElement===document?document.documentElement:o.rootElement);Object.keys(o.variables).forEach((function(e){_.style.setProperty(e,o.variables[e])}))}}else!T&&(o.shadowDOM||o.rootElement.shadowRoot||o.rootElement.host)?n({rootElement:y.rootElement,include:y.include,exclude:o.exclude,onSuccess:function(e,t,r){return(e=((e=e.replace(b.cssComments,"").replace(b.cssMediaQueries,"")).match(b.cssVarDeclRules)||[]).join(""))||!1},onComplete:function(e,t,r){c(e,{store:k.dom,onWarning:s}),T=!0,P(o)}}):(w=o.rootElement,n({rootElement:o.rootElement,include:o.include,exclude:o.exclude,onBeforeSend:o.onBeforeSend,onError:function(e,t,r){var n=e.responseURL||F(r,location.href),i=e.statusText?"(".concat(e.statusText,")"):"Unspecified Error"+(0===e.status?" (possibly CORS related)":"");a("CSS XHR Error: ".concat(n," ").concat(e.status," ").concat(i),t,e,n)},onSuccess:function(e,t,r){var n=o.onSuccess(e,t,r);return e=void 0!==n&&!1===Boolean(n)?"":n||e,o.updateURLs&&(e=E(e,r)),e},onComplete:function(r,n){var i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:[],u={},h=o.updateDOM?k.dom:Object.keys(k.job).length?k.job:k.job=JSON.parse(JSON.stringify(k.dom)),_=!1;if(i.forEach((function(e,t){if(b.cssVars.test(n[t]))try{var r=l(n[t],{preserveStatic:o.preserveStatic,removeComments:!0});c(r,{parseHost:Boolean(o.rootElement.host),store:u,onWarning:s}),e.__cssVars={tree:r}}catch(t){a(t.message,e)}})),o.updateDOM&&e(k.user,o.variables),e(u,o.variables),_=Boolean((document.querySelector("[data-cssvars]")||Object.keys(k.dom).length)&&Object.keys(u).some((function(e){return u[e]!==h[e]}))),e(h,k.user,u),_)A(o.rootElement),P(o);else{var f=[],m=[],g=!1;if(k.job={},o.updateDOM&&v.job++,i.forEach((function(t){var r=!t.__cssVars;if(t.__cssVars)try{p(t.__cssVars.tree,e({},o,{variables:h,onWarning:s}));var n=d(t.__cssVars.tree);if(o.updateDOM){if(t.getAttribute("data-cssvars")||t.setAttribute("data-cssvars","src"),n.length){var i=t.getAttribute("data-cssvars-group")||++v.group,u=n.replace(/\s/g,""),l=o.rootElement.querySelector('[data-cssvars="out"][data-cssvars-group="'.concat(i,'"]'))||document.createElement("style");g=g||b.cssKeyframes.test(n),l.hasAttribute("data-cssvars")||l.setAttribute("data-cssvars","out"),u===t.textContent.replace(/\s/g,"")?(r=!0,l&&l.parentNode&&(t.removeAttribute("data-cssvars-group"),l.parentNode.removeChild(l))):u!==l.textContent.replace(/\s/g,"")&&([t,l].forEach((function(e){e.setAttribute("data-cssvars-job",v.job),e.setAttribute("data-cssvars-group",i)})),l.textContent=n,f.push(n),m.push(l),l.parentNode||t.parentNode.insertBefore(l,t.nextSibling))}}else t.textContent.replace(/\s/g,"")!==n&&f.push(n)}catch(e){a(e.message,t)}r&&t.setAttribute("data-cssvars","skip"),t.hasAttribute("data-cssvars-job")||t.setAttribute("data-cssvars-job",v.job)})),S=o.rootElement.querySelectorAll('[data-cssvars]:not([data-cssvars="out"])').length,o.shadowDOM)for(var y,x=[o.rootElement].concat(t(o.rootElement.querySelectorAll("*"))),C=0;y=x[C];++C)if(y.shadowRoot&&y.shadowRoot.querySelector("style")){var T=e({},o,{rootElement:y.shadowRoot});P(T)}o.updateDOM&&g&&M(o.rootElement),w=!1,o.onComplete(f.join(""),m,JSON.parse(JSON.stringify(h)),O()-o.__benchmark)}}}));else document.addEventListener("DOMContentLoaded",(function e(t){P(r),document.removeEventListener("DOMContentLoaded",e)}))}}function D(e){function t(e){return"LINK"===e.tagName&&-1!==(e.getAttribute("rel")||"").indexOf("stylesheet")&&!e.disabled}window.MutationObserver&&(x&&(x.disconnect(),x=null),(x=new MutationObserver((function(r){r.some((function(r){var n,i=!1;return"attributes"===r.type?i=t(r.target):"childList"===r.type&&(n=r.addedNodes,i=Array.apply(null,n).some((function(e){var r=1===e.nodeType&&e.hasAttribute("data-cssvars"),n=function(e){return"STYLE"===e.tagName&&!e.disabled}(e)&&b.cssVars.test(e.textContent);return!r&&(t(e)||n)}))||function(t){return Array.apply(null,t).some((function(t){var r=1===t.nodeType,n=r&&"out"===t.getAttribute("data-cssvars"),i=r&&"src"===t.getAttribute("data-cssvars"),o=i;if(i||n){var a=t.getAttribute("data-cssvars-group"),s=e.rootElement.querySelector('[data-cssvars-group="'.concat(a,'"]'));i&&(A(e.rootElement),k.dom={}),s&&s.parentNode.removeChild(s)}return o}))}(r.removedNodes)),i}))&&P(e)}))).observe(document.documentElement,{attributes:!0,attributeFilter:["disabled","href"],childList:!0,subtree:!0}))}function I(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:100;clearTimeout(C),C=setTimeout((function(){e.__benchmark=null,P(e)}),t)}function M(e){var t=["animation-name","-moz-animation-name","-webkit-animation-name"].filter((function(e){return getComputedStyle(document.body)[e]}))[0];if(t){for(var r=e.getElementsByTagName("*"),n=[],i=0,o=r.length;i<o;i++){var a=r[i];"none"!==getComputedStyle(a)[t]&&(a.style[t]+="__CSSVARSPONYFILL-KEYFRAMES__",n.push(a))}document.body.offsetHeight;for(var s=0,u=n.length;s<u;s++){var l=n[s].style;l[t]=l[t].replace("__CSSVARSPONYFILL-KEYFRAMES__","")}}}function E(e,t){return(e.replace(b.cssComments,"").match(b.cssUrls)||[]).forEach((function(r){var n=r.replace(b.cssUrls,"$1"),i=F(n,t);e=e.replace(r,r.replace(n,i))})),e}function B(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=/^-{2}/;return Object.keys(e).reduce((function(r,n){return r[t.test(n)?n:"--".concat(n.replace(/^-+/,""))]=e[n],r}),{})}function F(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:location.href,r=document.implementation.createHTMLDocument(""),n=r.createElement("base"),i=r.createElement("a");return r.head.appendChild(n),r.body.appendChild(i),n.href=t,i.href=e,i.href}function O(){return m&&(window.performance||{}).now?window.performance.now():(new Date).getTime()}function A(e){Array.apply(null,e.querySelectorAll('[data-cssvars="skip"],[data-cssvars="src"]')).forEach((function(e){return e.setAttribute("data-cssvars","")}))}if(P.reset=function(){for(var e in w=!1,x&&(x.disconnect(),x=null),S=0,C=null,T=!1,k)k[e]={}},String.prototype.startsWith||function(){var e={}.toString;Object.defineProperty(String.prototype,"startsWith",{value:function(t){if(null==this)throw TypeError();var r=String(this);if(t&&"[object RegExp]"==e.call(t))throw TypeError();var n=r.length,i=String(t),o=i.length,a=arguments.length>1?arguments[1]:void 0,s=a?Number(a):0;s!=s&&(s=0);var u=Math.min(Math.max(s,0),n);if(o+u>n)return!1;for(var l=-1;++l<o;)if(r.charCodeAt(u+l)!=i.charCodeAt(l))return!1;return!0},configurable:!0,writable:!0})}(),String.prototype.endsWith||function(){var e={}.toString;Object.defineProperty(String.prototype,"endsWith",{value:function(t){if(null==this)throw TypeError();var r=String(this);if(t&&"[object RegExp]"==e.call(t))throw TypeError();var n=r.length,i=String(t),o=i.length,a=n;if(arguments.length>1){var s=arguments[1];void 0!==s&&(a=s?Number(s):0)!=a&&(a=0)}var u=Math.min(Math.max(a,0),n),l=u-o;if(l<0)return!1;for(var c=-1;++c<o;)if(r.charCodeAt(l+c)!=i.charCodeAt(c))return!1;return!0},configurable:!0,writable:!0})}(),String.prototype.includes||function(){var e={}.toString,t="".indexOf;Object.defineProperty(String.prototype,"includes",{value:function(r){if(null==this)throw TypeError();var n=String(this);if(r&&"[object RegExp]"==e.call(r))throw TypeError();var i=n.length,o=String(r),a=o.length,s=arguments.length>1?arguments[1]:void 0,u=s?Number(s):0;u!=u&&(u=0);var l=Math.min(Math.max(u,0),i);return!(a+l>i)&&-1!=t.call(n,o,u)},configurable:!0,writable:!0})}(),String.prototype.repeat||Object.defineProperty(String.prototype,"repeat",{value:function(e){if(null==this)throw TypeError();var t=String(this),r=e?Number(e):0;if(r!=r&&(r=0),r<0||r==1/0)throw RangeError();for(var n="";r;)r%2==1&&(n+=t),r>1&&(t+=t),r>>=1;return n},configurable:!0,writable:!0}),String.prototype.padStart||(String.prototype.padStart=function(e,t){return e>>=0,t=String(void 0!==t?t:" "),this.length>e?String(this):((e-=this.length)>t.length&&(t+=t.repeat(e/t.length)),t.slice(0,e)+String(this))}),String.prototype.padEnd||(String.prototype.padEnd=function(e,t){return e>>=0,t=String(void 0!==t?t:" "),this.length>e?String(this):((e-=this.length)>t.length&&(t+=t.repeat(e/t.length)),String(this)+t.slice(0,e))}),Object.entries||(Object.entries=function(e){for(var t=Object.keys(e),r=t.length,n=new Array(r);r--;)n[r]=[t[r],e[t[r]]];return n}),Array.prototype.fill||Object.defineProperty(Array.prototype,"fill",{value:function(e){if(null==this)throw new TypeError("this is null or not defined");for(var t=Object(this),r=t.length>>>0,n=arguments[1],i=n>>0,o=i<0?Math.max(r+i,0):Math.min(i,r),a=arguments[2],s=void 0===a?r:a>>0,u=s<0?Math.max(r+s,0):Math.min(s,r);o<u;)t[o]=e,o++;return t}}),Array.prototype.find||Object.defineProperty(Array.prototype,"find",{value:function(e){if(null==this)throw TypeError('"this" is null or not defined');var t=Object(this),r=t.length>>>0;if("function"!=typeof e)throw TypeError("predicate must be a function");for(var n=arguments[1],i=0;i<r;){var o=t[i];if(e.call(n,o,i,t))return o;i++}},configurable:!0,writable:!0}),Array.prototype.includes||Object.defineProperty(Array.prototype,"includes",{value:function(e,t){if(null==this)throw new TypeError('"this" is null or not defined');var r=Object(this),n=r.length>>>0;if(0===n)return!1;var i,o,a=0|t,s=Math.max(a>=0?a:n-Math.abs(a),0);for(;s<n;){if((i=r[s])===(o=e)||"number"==typeof i&&"number"==typeof o&&isNaN(i)&&isNaN(o))return!0;s++}return!1}}),Map.prototype.keys||(Map.prototype.keys=function(){var e=[];return this.forEach((function(t,r){e.push(r)})),e}),Number.isInteger=Number.isInteger||function(e){return"number"==typeof e&&isFinite(e)&&Math.floor(e)===e},Number.isNaN=Number.isNaN||window.isNaN,Number.parseInt=Number.parseInt||window.parseInt,Element&&!Element.prototype.matches){var N=Element.prototype;N.matches=N.matchesSelector||N.mozMatchesSelector||N.msMatchesSelector||N.oMatchesSelector||N.webkitMatchesSelector}if(Element.prototype.closest||(Element.prototype.closest=function(e){var t=this;if(!document.documentElement.contains(t))return null;do{if(t.matches(e))return t;t=t.parentElement||t.parentNode}while(null!==t&&1===t.nodeType);return null}),!window.WeakSet){var L=function(e){this.name="__st"+(1e9*Math.random()>>>0)+R+++"__",e&&e.forEach&&e.forEach(this.add,this)},R=Date.now()%1e9,z=L.prototype;z.add=function(e){var t=this.name;return e[t]||Object.defineProperty(e,t,{value:!0,writable:!0}),this},z.delete=function(e){return!!e[this.name]&&(e[this.name]=void 0,!0)},z.has=function(e){return!!e[this.name]},window.WeakSet=L}function H(e){return(H="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function U(e,t,r,n,i,o,a){try{var s=e[o](a),u=s.value}catch(e){return void r(e)}s.done?t(u):Promise.resolve(u).then(n,i)}function j(e){return function(){var t=this,r=arguments;return new Promise((function(n,i){var o=e.apply(t,r);function a(e){U(o,n,i,a,s,"next",e)}function s(e){U(o,n,i,a,s,"throw",e)}a(void 0)}))}}function V(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function W(e,t){for(var r=0;r<t.length;r++){var n=t[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}function Y(e,t,r){return t&&W(e.prototype,t),r&&W(e,r),e}function q(e,t,r){return t in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}function G(e,t){var r=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),r.push.apply(r,n)}return r}function J(e){for(var t=1;t<arguments.length;t++){var r=null!=arguments[t]?arguments[t]:{};t%2?G(Object(r),!0).forEach((function(t){q(e,t,r[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(r)):G(Object(r)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(r,t))}))}return e}function X(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&K(e,t)}function Q(e){return(Q=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}function K(e,t){return(K=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}function Z(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Date.prototype.toString.call(Reflect.construct(Date,[],(function(){}))),!0}catch(e){return!1}}function $(e,t,r){return($=Z()?Reflect.construct:function(e,t,r){var n=[null];n.push.apply(n,t);var i=new(Function.bind.apply(e,n));return r&&K(i,r.prototype),i}).apply(null,arguments)}function ee(e){var t="function"==typeof Map?new Map:void 0;return(ee=function(e){if(null===e||(r=e,-1===Function.toString.call(r).indexOf("[native code]")))return e;var r;if("function"!=typeof e)throw new TypeError("Super expression must either be null or a function");if(void 0!==t){if(t.has(e))return t.get(e);t.set(e,n)}function n(){return $(e,arguments,Q(this).constructor)}return n.prototype=Object.create(e.prototype,{constructor:{value:n,enumerable:!1,writable:!0,configurable:!0}}),K(n,e)})(e)}function te(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function re(e,t){return!t||"object"!=typeof t&&"function"!=typeof t?te(e):t}function ne(e){var t=Z();return function(){var r,n=Q(e);if(t){var i=Q(this).constructor;r=Reflect.construct(n,arguments,i)}else r=n.apply(this,arguments);return re(this,r)}}function ie(e,t,r){return(ie="undefined"!=typeof Reflect&&Reflect.get?Reflect.get:function(e,t,r){var n=function(e,t){for(;!Object.prototype.hasOwnProperty.call(e,t)&&null!==(e=Q(e)););return e}(e,t);if(n){var i=Object.getOwnPropertyDescriptor(n,t);return i.get?i.get.call(r):i.value}})(e,t,r||e)}function oe(e,t){return t||(t=e.slice(0)),Object.freeze(Object.defineProperties(e,{raw:{value:Object.freeze(t)}}))}function ae(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){if("undefined"==typeof Symbol||!(Symbol.iterator in Object(e)))return;var r=[],n=!0,i=!1,o=void 0;try{for(var a,s=e[Symbol.iterator]();!(n=(a=s.next()).done)&&(r.push(a.value),!t||r.length!==t);n=!0);}catch(e){i=!0,o=e}finally{try{n||null==s.return||s.return()}finally{if(i)throw o}}return r}(e,t)||ue(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function se(e){return function(e){if(Array.isArray(e))return le(e)}(e)||function(e){if("undefined"!=typeof Symbol&&Symbol.iterator in Object(e))return Array.from(e)}(e)||ue(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function ue(e,t){if(e){if("string"==typeof e)return le(e,t);var r=Object.prototype.toString.call(e).slice(8,-1);return"Object"===r&&e.constructor&&(r=e.constructor.name),"Map"===r||"Set"===r?Array.from(e):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?le(e,t):void 0}}function le(e,t){(null==t||t>e.length)&&(t=e.length);for(var r=0,n=new Array(t);r<t;r++)n[r]=e[r];return n}function ce(e,t){var r;if("undefined"==typeof Symbol||null==e[Symbol.iterator]){if(Array.isArray(e)||(r=ue(e))||t&&e&&"number"==typeof e.length){r&&(e=r);var n=0,i=function(){};return{s:i,n:function(){return n>=e.length?{done:!0}:{done:!1,value:e[n++]}},e:function(e){throw e},f:i}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var o,a=!0,s=!1;return{s:function(){r=e[Symbol.iterator]()},n:function(){var e=r.next();return a=e.done,e},e:function(e){s=!0,o=e},f:function(){try{a||null==r.return||r.return()}finally{if(s)throw o}}}}window.fetch||(window.fetch=function(e,t){return t=t||{},new Promise((function(r,n){var i=new XMLHttpRequest;for(var o in i.open(t.method||"get",e,!0),t.headers)i.setRequestHeader(o,t.headers[o]);function a(){var e,t=[],r=[],n={};return i.getAllResponseHeaders().replace(/^(.*?):[^\S\n]*([\s\S]*?)$/gm,(function(i,o,a){t.push(o=o.toLowerCase()),r.push([o,a]),n[o]=(e=n[o])?e+","+a:a})),{ok:2==(i.status/100|0),status:i.status,statusText:i.statusText,url:i.responseURL,clone:a,text:function(){return Promise.resolve(i.responseText)},json:function(){return Promise.resolve(i.responseText).then(JSON.parse)},blob:function(){return Promise.resolve(new Blob([i.response]))},headers:{keys:function(){return t},entries:function(){return r},get:function(e){return n[e.toLowerCase()]},has:function(e){return e.toLowerCase()in n}}}}i.withCredentials="include"==t.credentials,i.onload=function(){r(a())},i.onerror=n,i.send(t.body||null)}))}),function(e){var t=Object.prototype,r=t.hasOwnProperty,n="function"==typeof Symbol?Symbol:{},i=n.iterator||"@@iterator",o=n.asyncIterator||"@@asyncIterator",a=n.toStringTag||"@@toStringTag",s="object"===("undefined"==typeof module?"undefined":H(module)),u=e.regeneratorRuntime;if(u)s&&(module.exports=u);else{(u=e.regeneratorRuntime=s?module.exports:{}).wrap=_;var l={},c={};c[i]=function(){return this};var d=Object.getPrototypeOf,h=d&&d(d(C([])));h&&h!==t&&r.call(h,i)&&(c=h);var p=v.prototype=m.prototype=Object.create(c);g.prototype=p.constructor=v,v.constructor=g,v[a]=g.displayName="GeneratorFunction",u.isGeneratorFunction=function(e){var t="function"==typeof e&&e.constructor;return!!t&&(t===g||"GeneratorFunction"===(t.displayName||t.name))},u.mark=function(e){return Object.setPrototypeOf?Object.setPrototypeOf(e,v):(e.__proto__=v,a in e||(e[a]="GeneratorFunction")),e.prototype=Object.create(p),e},u.awrap=function(e){return{__await:e}},y(b.prototype),b.prototype[o]=function(){return this},u.AsyncIterator=b,u.async=function(e,t,r,n){var i=new b(_(e,t,r,n));return u.isGeneratorFunction(t)?i:i.next().then((function(e){return e.done?e.value:i.next()}))},y(p),p[a]="Generator",p[i]=function(){return this},p.toString=function(){return"[object Generator]"},u.keys=function(e){var t=[];for(var r in e)t.push(r);return t.reverse(),function r(){for(;t.length;){var n=t.pop();if(n in e)return r.value=n,r.done=!1,r}return r.done=!0,r}},u.values=C,S.prototype={constructor:S,reset:function(e){if(this.prev=0,this.next=0,this.sent=this._sent=void 0,this.done=!1,this.delegate=null,this.method="next",this.arg=void 0,this.tryEntries.forEach(x),!e)for(var t in this)"t"===t.charAt(0)&&r.call(this,t)&&!isNaN(+t.slice(1))&&(this[t]=void 0)},stop:function(){this.done=!0;var e=this.tryEntries[0].completion;if("throw"===e.type)throw e.arg;return this.rval},dispatchException:function(e){if(this.done)throw e;var t=this;function n(r,n){return a.type="throw",a.arg=e,t.next=r,n&&(t.method="next",t.arg=void 0),!!n}for(var i=this.tryEntries.length-1;i>=0;--i){var o=this.tryEntries[i],a=o.completion;if("root"===o.tryLoc)return n("end");if(o.tryLoc<=this.prev){var s=r.call(o,"catchLoc"),u=r.call(o,"finallyLoc");if(s&&u){if(this.prev<o.catchLoc)return n(o.catchLoc,!0);if(this.prev<o.finallyLoc)return n(o.finallyLoc)}else if(s){if(this.prev<o.catchLoc)return n(o.catchLoc,!0)}else{if(!u)throw new Error("try statement without catch or finally");if(this.prev<o.finallyLoc)return n(o.finallyLoc)}}}},abrupt:function(e,t){for(var n=this.tryEntries.length-1;n>=0;--n){var i=this.tryEntries[n];if(i.tryLoc<=this.prev&&r.call(i,"finallyLoc")&&this.prev<i.finallyLoc){var o=i;break}}o&&("break"===e||"continue"===e)&&o.tryLoc<=t&&t<=o.finallyLoc&&(o=null);var a=o?o.completion:{};return a.type=e,a.arg=t,o?(this.method="next",this.next=o.finallyLoc,l):this.complete(a)},complete:function(e,t){if("throw"===e.type)throw e.arg;return"break"===e.type||"continue"===e.type?this.next=e.arg:"return"===e.type?(this.rval=this.arg=e.arg,this.method="return",this.next="end"):"normal"===e.type&&t&&(this.next=t),l},finish:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var r=this.tryEntries[t];if(r.finallyLoc===e)return this.complete(r.completion,r.afterLoc),x(r),l}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var r=this.tryEntries[t];if(r.tryLoc===e){var n=r.completion;if("throw"===n.type){var i=n.arg;x(r)}return i}}throw new Error("illegal catch attempt")},delegateYield:function(e,t,r){return this.delegate={iterator:C(e),resultName:t,nextLoc:r},"next"===this.method&&(this.arg=void 0),l}}}function _(e,t,r,n){var i=t&&t.prototype instanceof m?t:m,o=Object.create(i.prototype),a=new S(n||[]);return o._invoke=function(e,t,r){var n="suspendedStart";return function(i,o){if("executing"===n)throw new Error("Generator is already running");if("completed"===n){if("throw"===i)throw o;return T()}for(r.method=i,r.arg=o;;){var a=r.delegate;if(a){var s=k(a,r);if(s){if(s===l)continue;return s}}if("next"===r.method)r.sent=r._sent=r.arg;else if("throw"===r.method){if("suspendedStart"===n)throw n="completed",r.arg;r.dispatchException(r.arg)}else"return"===r.method&&r.abrupt("return",r.arg);n="executing";var u=f(e,t,r);if("normal"===u.type){if(n=r.done?"completed":"suspendedYield",u.arg===l)continue;return{value:u.arg,done:r.done}}"throw"===u.type&&(n="completed",r.method="throw",r.arg=u.arg)}}}(e,r,a),o}function f(e,t,r){try{return{type:"normal",arg:e.call(t,r)}}catch(e){return{type:"throw",arg:e}}}function m(){}function g(){}function v(){}function y(e){["next","throw","return"].forEach((function(t){e[t]=function(e){return this._invoke(t,e)}}))}function b(e){var t;this._invoke=function(n,i){function o(){return new Promise((function(t,o){!function t(n,i,o,a){var s=f(e[n],e,i);if("throw"!==s.type){var u=s.arg,l=u.value;return l&&"object"===H(l)&&r.call(l,"__await")?Promise.resolve(l.__await).then((function(e){t("next",e,o,a)}),(function(e){t("throw",e,o,a)})):Promise.resolve(l).then((function(e){u.value=e,o(u)}),(function(e){return t("throw",e,o,a)}))}a(s.arg)}(n,i,t,o)}))}return t=t?t.then(o,o):o()}}function k(e,t){var r=e.iterator[t.method];if(void 0===r){if(t.delegate=null,"throw"===t.method){if(e.iterator.return&&(t.method="return",t.arg=void 0,k(e,t),"throw"===t.method))return l;t.method="throw",t.arg=new TypeError("The iterator does not provide a 'throw' method")}return l}var n=f(r,e.iterator,t.arg);if("throw"===n.type)return t.method="throw",t.arg=n.arg,t.delegate=null,l;var i=n.arg;return i?i.done?(t[e.resultName]=i.value,t.next=e.nextLoc,"return"!==t.method&&(t.method="next",t.arg=void 0),t.delegate=null,l):i:(t.method="throw",t.arg=new TypeError("iterator result is not an object"),t.delegate=null,l)}function w(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function x(e){var t=e.completion||{};t.type="normal",delete t.arg,e.completion=t}function S(e){this.tryEntries=[{tryLoc:"root"}],e.forEach(w,this),this.reset(!0)}function C(e){if(e){var t=e[i];if(t)return t.call(e);if("function"==typeof e.next)return e;if(!isNaN(e.length)){var n=-1,o=function t(){for(;++n<e.length;)if(r.call(e,n))return t.value=e[n],t.done=!1,t;return t.value=void 0,t.done=!0,t};return o.next=o}}return{next:T}}function T(){return{value:void 0,done:!0}}}(function(){return this||"object"===("undefined"==typeof self?"undefined":H(self))&&self}()||Function("return this")()),
|
|
163
|
-
/**
|
|
164
|
-
*
|
|
165
|
-
*
|
|
166
|
-
* @author Jerry Bendy <jerry@icewingcc.com>
|
|
167
|
-
* @licence MIT
|
|
168
|
-
*
|
|
169
|
-
*/
|
|
170
|
-
function(e){var t,r=e.URLSearchParams&&e.URLSearchParams.prototype.get?e.URLSearchParams:null,n=r&&"a=1"===new r({a:1}).toString(),i=r&&"+"===new r("s=%2B").get("s"),o=!r||((t=new r).append("s"," &"),"s=+%26"===t.toString()),a=c.prototype,s=!(!e.Symbol||!e.Symbol.iterator);if(!(r&&n&&i&&o)){a.append=function(e,t){f(this.__URLSearchParams__,e,t)},a.delete=function(e){delete this.__URLSearchParams__[e]},a.get=function(e){var t=this.__URLSearchParams__;return e in t?t[e][0]:null},a.getAll=function(e){var t=this.__URLSearchParams__;return e in t?t[e].slice(0):[]},a.has=function(e){return e in this.__URLSearchParams__},a.set=function(e,t){this.__URLSearchParams__[e]=[""+t]},a.toString=function(){var e,t,r,n,i=this.__URLSearchParams__,o=[];for(t in i)for(r=d(t),e=0,n=i[t];e<n.length;e++)o.push(r+"="+d(n[e]));return o.join("&")};var u=!!i&&r&&!n&&e.Proxy;Object.defineProperty(e,"URLSearchParams",{value:u?new Proxy(r,{construct:function(e,t){return new e(new c(t[0]).toString())}}):c});var l=e.URLSearchParams.prototype;l.polyfill=!0,l.forEach=l.forEach||function(e,t){var r=_(this.toString());Object.getOwnPropertyNames(r).forEach((function(n){r[n].forEach((function(r){e.call(t,r,n,this)}),this)}),this)},l.sort=l.sort||function(){var e,t,r,n=_(this.toString()),i=[];for(e in n)i.push(e);for(i.sort(),t=0;t<i.length;t++)this.delete(i[t]);for(t=0;t<i.length;t++){var o=i[t],a=n[o];for(r=0;r<a.length;r++)this.append(o,a[r])}},l.keys=l.keys||function(){var e=[];return this.forEach((function(t,r){e.push(r)})),p(e)},l.values=l.values||function(){var e=[];return this.forEach((function(t){e.push(t)})),p(e)},l.entries=l.entries||function(){var e=[];return this.forEach((function(t,r){e.push([r,t])})),p(e)},s&&(l[e.Symbol.iterator]=l[e.Symbol.iterator]||l.entries)}function c(e){((e=e||"")instanceof URLSearchParams||e instanceof c)&&(e=e.toString()),this.__URLSearchParams__=_(e)}function d(e){var t={"!":"%21","'":"%27","(":"%28",")":"%29","~":"%7E","%20":"+","%00":"\0"};return encodeURIComponent(e).replace(/[!'\(\)~]|%20|%00/g,(function(e){return t[e]}))}function h(e){return decodeURIComponent(e.replace(/\+/g," "))}function p(t){var r={next:function(){var e=t.shift();return{done:void 0===e,value:e}}};return s&&(r[e.Symbol.iterator]=function(){return r}),r}function _(e){var t={};if("object"===H(e))for(var r in e)e.hasOwnProperty(r)&&f(t,r,e[r]);else{0===e.indexOf("?")&&(e=e.slice(1));for(var n=e.split("&"),i=0;i<n.length;i++){var o=n[i],a=o.indexOf("=");-1<a?f(t,h(o.slice(0,a)),h(o.slice(a+1))):o&&f(t,h(o),"")}}return t}function f(e,t,r){var n="string"==typeof r?r:null!=r&&"function"==typeof r.toString?r.toString():JSON.stringify(r);t in e?e[t].push(n):e[t]=[n]}}("undefined"!=typeof global?global:window);!function(){if(window.ShadyDOM){var e=Object.getOwnPropertyDescriptor(Node.prototype,"nodeValue");Object.defineProperty(Node.prototype,"nodeValue",{get:function(){return e.get.apply(this)},set:function(t){e.set.apply(this,arguments);var r=this.parentNode;r instanceof HTMLElement&&r.isUI5Element&&r._processChildren()}})}}(),window.CSSVarsPonyfill={cssVars:P};var de={},he={},pe=he.hasOwnProperty,_e=he.toString,fe=pe.toString,me=fe.call(Object),ge=function(e){var t,r;return!(!e||"[object Object]"!==_e.call(e))&&(!(t=Object.getPrototypeOf(e))||"function"==typeof(r=pe.call(t,"constructor")&&t.constructor)&&fe.call(r)===me)},ve=Object.create(null),ye=function e(){var t,r,n,i,o,a,s=arguments[2]||{},u=3,l=arguments.length,c=arguments[0]||!1,d=arguments[1]?void 0:ve;for("object"!==H(s)&&"function"!=typeof s&&(s={});u<l;u++)if(null!=(o=arguments[u]))for(i in o)t=s[i],n=o[i],"__proto__"!==i&&s!==n&&(c&&n&&(ge(n)||(r=Array.isArray(n)))?(r?(r=!1,a=t&&Array.isArray(t)?t:[]):a=t&&ge(t)?t:{},s[i]=e(c,arguments[1],a,n)):n!==d&&(s[i]=n));return s},be=function(){var e=[!0,!1];return e.push.apply(e,arguments),ye.apply(null,e)},ke=new Map,we=function(e){return ke.get(e)},xe={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"]},Se={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,Ce={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,Te=xe.default,Pe=xe.all,De=!1,Ie={animationMode:"full",theme:Se,rtl:null,language:null,calendarType:null,noConflict:!1,formatSettings:{}},Me=new Map;Me.set("true",!0),Me.set("false",!1);var Ee,Be,Fe=function(){De||(!function(){var e,t=document.querySelector("[data-ui5-config]")||document.querySelector("[data-id='sap-ui-config']");if(t){try{e=JSON.parse(t.innerHTML)}catch(e){console.warn("Incorrect data-sap-ui-config format. Please use JSON")}e&&(Ie=be(Ie,e))}}(),new URLSearchParams(window.location.search).forEach((function(e,t){if(t.startsWith("sap-ui")){var r=e.toLowerCase(),n=t.split("sap-ui-")[1];Me.has(e)&&(e=Me.get(r)),Ie[n]=e}})),function(){var e=we("OpenUI5Support");if(e&&e.isLoaded()){var t=e.getConfigurationSettingsObject();Ie=be(Ie,t)}}(),De=!0)},Oe=new Map,Ae=new Map,Ne=new Map,Le=function(){var e=j(regeneratorRuntime.mark((function e(t){var r;return regeneratorRuntime.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return Oe.get(t)||Oe.set(t,fetch(t)),e.next=3,Oe.get(t);case 3:return r=e.sent,Ne.get(t)||Ne.set(t,r.text()),e.abrupt("return",Ne.get(t));case 6:case"end":return e.stop()}}),e)})));return function(t){return e.apply(this,arguments)}}(),Re=function(){var e=j(regeneratorRuntime.mark((function e(t){var r;return regeneratorRuntime.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return Oe.get(t)||Oe.set(t,fetch(t)),e.next=3,Oe.get(t);case 3:return r=e.sent,Ae.get(t)||Ae.set(t,r.json()),e.abrupt("return",Ae.get(t));case 6:case"end":return e.stop()}}),e)})));return function(t){return e.apply(this,arguments)}}(),ze=new Map,He=new Map,Ue=new Set,je=new Set,Ve=function(e,t,r){r._?He.set("".concat(e,"_").concat(t),r._):r.includes(":root")||""===r?He.set("".concat(e,"_").concat(t),r):ze.set("".concat(e,"_").concat(t),r),Ue.add(e),je.add(t)},We=function(){var e=j(regeneratorRuntime.mark((function e(t,r){var n,i,o,a;return regeneratorRuntime.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if(void 0===(n=He.get("".concat(t,"_").concat(r)))){e.next=3;break}return e.abrupt("return",n);case 3:if(je.has(r)){e.next=7;break}return i=se(je.values()).join(", "),console.warn("You have requested a non-registered theme - falling back to ".concat(Se,". Registered themes are: ").concat(i)),e.abrupt("return",He.get("".concat(t,"_").concat(Se)));case 7:return e.next=9,Ye(t,r);case 9:return o=e.sent,a=o._||o,He.set("".concat(t,"_").concat(r),a),e.abrupt("return",a);case 13:case"end":return e.stop()}}),e)})));return function(t,r){return e.apply(this,arguments)}}(),Ye=function(){var e=j(regeneratorRuntime.mark((function e(t,r){var n;return regeneratorRuntime.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if(n=ze.get("".concat(t,"_").concat(r))){e.next=3;break}throw new Error("You have to import the ".concat(t,"/dist/Assets.js module to switch to additional themes"));case 3:return!n.startsWith("/")&&window.sap&&window.sap.ui&&(n="".concat(window.sap.ui.require.toUrl(""),"/").concat(n)),e.abrupt("return",".css"===(o=void 0,(o=(i=n).lastIndexOf("."))<1?"":i.slice(o))?Le(n):Re(n));case 5:case"end":return e.stop()}var i,o}),e)})));return function(t,r){return e.apply(this,arguments)}}(),qe=function(){return Ue},Ge=function(e){return je.has(e)},Je=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},r=document.createElement("style");return r.type="text/css",Object.entries(t).forEach((function(e){return r.setAttribute.apply(r,se(e))})),r.textContent=e,document.head.appendChild(r),r},Xe=function(e,t){var r=document.head.querySelector('style[data-ui5-theme-properties="'.concat(t,'"]'));r?r.textContent=e||"":Je(e,{"data-ui5-theme-properties":t})},Qe=function(){var e=function(){var e=document.querySelector(".sapThemeMetaData-Base-baseLib");if(e)return getComputedStyle(e).backgroundImage;(e=document.createElement("span")).style.display="none",e.classList.add("sapThemeMetaData-Base-baseLib"),document.body.appendChild(e);var t=getComputedStyle(e).backgroundImage;return document.body.removeChild(e),t}();if(e&&"none"!==e)return function(e){var t,r;try{t=e.Path.match(/\.([^.]+)\.css_variables$/)[1],r=e.Extends[0]}catch(t){return void console.warn("Malformed theme metadata Object",e)}return{themeName:t,baseThemeName:r}}(function(e){var t=/\(["']?data:text\/plain;utf-8,(.*?)['"]?\)$/i.exec(e);if(t&&t.length>=2){var r=t[1];if("{"!==(r=r.replace(/\\"/g,'"')).charAt(0)&&"}"!==r.charAt(r.length-1))try{r=decodeURIComponent(r)}catch(e){return void console.warn("Malformed theme metadata string, unable to decodeURIComponent")}try{return JSON.parse(r)}catch(e){console.warn("Malformed theme metadata string, unable to parse JSON")}}}(e))},Ke=function(){return!!window.CSSVarsPonyfill},Ze=function(){Ee=void 0,window.CSSVarsPonyfill.cssVars({rootElement:document.head,silent:!0})},$e="@ui5/webcomponents-theme-base",et=function(){var e=j(regeneratorRuntime.mark((function e(t){var r;return regeneratorRuntime.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if(qe().has($e)){e.next=2;break}return e.abrupt("return");case 2:return e.next=4,We($e,t);case 4:r=e.sent,Xe(r,$e);case 6:case"end":return e.stop()}}),e)})));return function(t){return e.apply(this,arguments)}}(),tt=function(){var e=j(regeneratorRuntime.mark((function e(t){return regeneratorRuntime.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:qe().forEach(function(){var e=j(regeneratorRuntime.mark((function e(r){var n;return regeneratorRuntime.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if(r!==$e){e.next=2;break}return e.abrupt("return");case 2:return e.next=4,We(r,t);case 4:n=e.sent,Xe(n,r);case 6:case"end":return e.stop()}}),e)})));return function(t){return e.apply(this,arguments)}}());case 2:case"end":return e.stop()}}),e)})));return function(t){return e.apply(this,arguments)}}(),rt=function(){var e=Qe();if(e)return e;var t=we("OpenUI5Support");if(t&&t.cssVariablesLoaded())return{themeName:t.getConfigurationSettingsObject().theme}},nt=function(){var e=j(regeneratorRuntime.mark((function e(t){var r,n;return regeneratorRuntime.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if((r=rt())&&t===r.themeName){e.next=6;break}return e.next=4,et(t);case 4:e.next=7;break;case 6:i=void 0,(i=document.head.querySelector('style[data-ui5-theme-properties="'.concat($e,'"]')))&&i.parentElement.removeChild(i);case 7:return n=Ge(t)?t:r&&r.baseThemeName,e.next=10,tt(n);case 10:Ke()&&Ze();case 11:case"end":return e.stop()}var i}),e)})));return function(t){return e.apply(this,arguments)}}(),it=function(){return void 0===Be&&(Fe(),Be=Ie.theme),Be},ot=function(){var e=j(regeneratorRuntime.mark((function e(t){return regeneratorRuntime.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if(Be!==t){e.next=2;break}return e.abrupt("return");case 2:return Be=t,e.next=5,nt(Be);case 5:case"end":return e.stop()}}),e)})));return function(t){return e.apply(this,arguments)}}();!function(e,t){if(!(arguments.length<=2)&&arguments.length-2)throw new Error("addCustomCSS no longer accepts theme specific CSS. new signature is `addCustomCSS(tag, css)`");de[e]||(de[e]=[]),de[e].push(t)}("ui5-select","\n\t.ui5-select-root ui5-li:first-child {\n\t\tdisplay: none;\n\t}\n");var at=getComputedStyle(document.documentElement);if(sap&&sap.ui&&sap.ui.getCore&&(!!at.getPropertyValue("--sapFontFamily")||!!at.getPropertyValue("--sapBrandColor")||!!at.getPropertyValue("--sapBaseColor"))){var st=sap.ui.getCore().getConfiguration().getTheme();ot(st)}var ut=window.sap,lt=ut&&ut.ui&&"function"==typeof ut.ui.getCore&&ut.ui.getCore();!function(e,t){ke.set(e,t)}("OpenUI5Support",{isLoaded:function(){return!!lt},init:function(){return lt?new Promise((function(e){lt.attachInit((function(){ut.ui.require(["sap/ui/core/LocaleData"],e)}))})):Promise.resolve()},getConfigurationSettingsObject:function(){if(lt){var e=lt.getConfiguration(),t=ut.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:function(){if(lt){var e=lt.getConfiguration();return ut.ui.require("sap/ui/core/LocaleData").getInstance(e.getLocale())._get()}},attachListeners:function(){var e;lt&&(e=lt.getConfiguration(),lt.attachThemeChanged(j(regeneratorRuntime.mark((function t(){return regeneratorRuntime.wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return t.next=2,ot(e.getTheme());case 2:case"end":return t.stop()}}),t)})))))},cssVariablesLoaded:function(){if(lt){var e=se(document.head.children).find((function(e){return"sap-ui-theme-sap.ui.core"===e.id}));if(e)return!!e.href.match(/\/css(-|_)variables\.css/)}}});var ct,dt,ht,pt,_t,ft,mt,gt,vt=function(){var e=navigator.languages;return e&&e[0]||navigator.language||navigator.userLanguage||navigator.browserLanguage||Ce},yt=function(){function e(){V(this,e),this._eventRegistry={}}return Y(e,[{key:"attachEvent",value:function(e,t){var r=this._eventRegistry,n=r[e];Array.isArray(n)||(r[e]=[],n=r[e]),n.push({function:t})}},{key:"detachEvent",value:function(e,t){var r=this._eventRegistry,n=r[e];n&&0===(n=n.filter((function(e){return e.function!==t}))).length&&delete r[e]}},{key:"fireEvent",value:function(e,t){var r=this,n=this._eventRegistry[e];return n?n.map((function(e){return e.function.call(r,t)})):[]}},{key:"isHandlerAttached",value:function(e,t){var r=this._eventRegistry[e];if(!r)return!1;for(var n=0;n<r.length;n++){if(r[n].function===t)return!0}return!1}},{key:"hasListeners",value:function(e){return!!this._eventRegistry[e]}}]),e}(),bt=new yt,kt=function(){function e(){V(this,e),this.list=[],this.lookup=new Set}return Y(e,[{key:"add",value:function(e){this.lookup.has(e)||(this.list.push(e),this.lookup.add(e))}},{key:"remove",value:function(e){this.lookup.has(e)&&(this.list=this.list.filter((function(t){return t!==e})),this.lookup.delete(e))}},{key:"shift",value:function(){var e=this.list.shift();if(e)return this.lookup.delete(e),e}},{key:"isEmpty",value:function(){return 0===this.list.length}},{key:"isAdded",value:function(e){return this.lookup.has(e)}},{key:"process",value:function(e){var t,r=new Map;for(t=this.shift();t;){var n=r.get(t)||0;if(n>10)throw new Error("Web component processed too many times this task, max allowed is: ".concat(10));e(t),r.set(t,n+1),t=this.shift()}}}]),e}(),wt=function(e){var t=[];return e.forEach((function(e){t.push(e)})),t},xt=new Set,St=new Set,Ct=function(e){xt.add(e)},Tt=function(e){return xt.has(e)},Pt=function(e){St.add(e),ct||(ct=setTimeout((function(){Dt(),ct=void 0}),1e3))},Dt=function(){console.warn("The following tags have already been defined by a different UI5 Web Components version: ".concat(wt(St).join(", "))),St.clear()},It=new Set,Mt=new Set,Et=new kt,Bt=function(){function e(){throw V(this,e),new Error("Static class")}var t,r,n;return Y(e,null,[{key:"renderDeferred",value:(n=j(regeneratorRuntime.mark((function t(r){return regeneratorRuntime.wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return Et.add(r),t.next=3,e.scheduleRenderTask();case 3:case"end":return t.stop()}}),t)}))),function(e){return n.apply(this,arguments)})},{key:"renderImmediately",value:function(e){e._render()}},{key:"cancelRender",value:function(e){Et.remove(e)}},{key:"scheduleRenderTask",value:(r=j(regeneratorRuntime.mark((function t(){return regeneratorRuntime.wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return _t||(_t=new Promise((function(t){window.requestAnimationFrame((function(){Et.process((function(e){return e._render()})),_t=null,t(),pt||(pt=setTimeout((function(){pt=void 0,Et.isEmpty()&&e._resolveTaskPromise()}),200))}))}))),t.next=3,_t;case 3:case"end":return t.stop()}}),t)}))),function(){return r.apply(this,arguments)})},{key:"whenDOMUpdated",value:function(){return dt||(dt=new Promise((function(e){ht=e,window.requestAnimationFrame((function(){Et.isEmpty()&&(dt=void 0,e())}))})))}},{key:"whenAllCustomElementsAreDefined",value:function(){var e=wt(xt).map((function(e){return customElements.whenDefined(e)}));return Promise.all(e)}},{key:"whenFinished",value:(t=j(regeneratorRuntime.mark((function t(){return regeneratorRuntime.wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return t.next=2,e.whenAllCustomElementsAreDefined();case 2:return t.next=4,e.whenDOMUpdated();case 4:case"end":return t.stop()}}),t)}))),function(){return t.apply(this,arguments)})},{key:"_resolveTaskPromise",value:function(){Et.isEmpty()&&ht&&(ht.call(this),ht=void 0,dt=void 0)}},{key:"register",value:function(e){Mt.add(e)}},{key:"deregister",value:function(e){Mt.delete(e)}},{key:"reRenderAllUI5Elements",value:function(t){Mt.forEach((function(r){var n,i=(n=r.constructor,It.has(n)),o=r.constructor.getMetadata().isLanguageAware();(!t||t.rtlAware&&i||t.languageAware&&o)&&e.renderDeferred(r)}))}}]),e}(),Ft=function(){return void 0===ft&&(Fe(),ft=Ie.language),ft},Ot=/^((?:[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,At=function(){function e(t){V(this,e);var r=Ot.exec(t.replace(/_/g,"-"));if(null===r)throw new Error("The given language ".concat(t," does not adhere to BCP-47."));this.sLocaleId=t,this.sLanguage=r[1]||null,this.sScript=r[2]||null,this.sRegion=r[3]||null,this.sVariant=r[4]&&r[4].slice(1)||null,this.sExtension=r[5]&&r[5].slice(1)||null,this.sPrivateUse=r[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())}return Y(e,[{key:"getLanguage",value:function(){return this.sLanguage}},{key:"getScript",value:function(){return this.sScript}},{key:"getRegion",value:function(){return this.sRegion}},{key:"getVariant",value:function(){return this.sVariant}},{key:"getVariantSubtags",value:function(){return this.sVariant?this.sVariant.split("-"):[]}},{key:"getExtension",value:function(){return this.sExtension}},{key:"getExtensionSubtags",value:function(){return this.sExtension?this.sExtension.slice(2).split("-"):[]}},{key:"getPrivateUse",value:function(){return this.sPrivateUse}},{key:"getPrivateUseSubtags",value:function(){return this.sPrivateUse?this.sPrivateUse.slice(2).split("-"):[]}},{key:"hasPrivateUseSubtag",value:function(e){return this.getPrivateUseSubtags().indexOf(e)>=0}},{key:"toString",value: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("-")}}]),e}(),Nt=function(e){try{if(e&&"string"==typeof e)return new At(e)}catch(e){}},Lt=function(e){return e?Nt(e):Ft()?new At(Ft()):Nt(vt())},Rt=/^((?:[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,zt=/(?:^|-)(saptrc|sappsd)(?:-|$)/i,Ht={he:"iw",yi:"ji",id:"in",sr:"sh"},Ut=function(e){var t;if(!e)return Te;if("string"==typeof e&&(t=Rt.exec(e.replace(/_/g,"-")))){var r=t[1].toLowerCase(),n=t[3]?t[3].toUpperCase():void 0,i=t[2]?t[2].toLowerCase():void 0,o=t[4]?t[4].slice(1):void 0,a=t[6];return r=Ht[r]||r,a&&(t=zt.exec(a))||o&&(t=zt.exec(o))?"en_US_".concat(t[1].toLowerCase()):("zh"!==r||n||("hans"===i?n="CN":"hant"===i&&(n="TW")),r+(n?"_"+n+(o?"_"+o.replace("-","_"):""):""))}},jt=function(e){if(!e)return Te;if("zh_HK"===e)return"zh_TW";var t=e.lastIndexOf("_");return t>=0?e.slice(0,t):e!==Te?Te:""},Vt=new Map,Wt=new Map,Yt=function(e,t){Vt.set(e,t)},qt=function(e){return Vt.get(e)},Gt=function(e,t){var r=Wt.get(e)||{};Wt.set(e,Object.assign({},r,t))},Jt=function(){var e=j(regeneratorRuntime.mark((function e(t){var r,n,i,o,a,s,u,l,c;return regeneratorRuntime.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if(r=Wt.get(t)){e.next=4;break}return console.warn("Message bundle assets are not configured. Falling back to English texts."," You need to import ".concat(t,"/dist/Assets.js with a build tool that supports JSON imports.")),e.abrupt("return");case 4:for(n=Lt().getLanguage(),i=Lt().getRegion(),o=Ut(n+(i?"-".concat(i):""));o!==Ce&&!r[o];)o=jt(o);if(r[o]){e.next=11;break}return Yt(t,null),e.abrupt("return");case 11:if("object"!==H(a=r[o])){e.next=15;break}return Yt(t,a),e.abrupt("return");case 15:return!a.startsWith("/")&&window.sap&&window.sap.ui&&(a="".concat(window.sap.ui.require.toUrl(""),"/").concat(a)),e.next=18,Le(a);case 18:if(!(s=e.sent).startsWith("{")){e.next=23;break}u=JSON.parse,e.next=27;break;case 23:if(l=we("PropertiesFormatSupport")){e.next=26;break}throw new Error('In order to support .properties files, please: import "@ui5/webcomponents-base/dist/features/PropertiesFormatSupport.js";');case 26:u=l.parser;case 27:c=u(s),Yt(t,c);case 29:case"end":return e.stop()}}),e)})));return function(t){return e.apply(this,arguments)}}();mt=function(){var e=se(Vt.keys());return Promise.all(e.map(Jt))},bt.attachEvent("languageChange",mt);var Xt=function(e,t,r){if(!e)return e;function n(e,t){return function(){var n=e[t].apply(e,arguments);return r?this:(typeof n.getInterface === "function")?n.getInterface():n}}if(gt=gt,!t)return{};for(var i,o=0,a=t.length;o<a;o++)e[i=t[o]]&&"function"!=typeof e[i]||(this[i]=n(e,i))},Qt={},Kt=window;function Zt(e){return Array.isArray(e)?e.slice():e.split(".")}Qt.create=function(e,t){for(var r=t||Kt,n=Zt(e),i=0;i<n.length;i++){var o=n[i];if(null===r[o]||void 0!==r[o]&&"object"!==H(r[o])&&"function"!=typeof r[o])throw new Error("Could not set object-path for '"+n.join(".")+"', path segment '"+o+"' already exists.");r[o]=r[o]||{},r=r[o]}return r},Qt.get=function(e,t){for(var r=t||Kt,n=Zt(e),i=n.pop(),o=0;o<n.length&&r;o++)r=r[n[o]];return r?r[i]:void 0},Qt.set=function(e,t,r){r=r||Kt;var n=Zt(e),i=n.pop();Qt.create(n,r)[i]=t};var $t,er="undefined"!=typeof window&&window.performance&&performance.now&&performance.timing?($t=performance.timing.navigationStart,function(){return $t+performance.now()}):Date.now,tr={Level:{NONE:-1,FATAL:0,ERROR:1,WARNING:2,INFO:3,DEBUG:4,TRACE:5,ALL:6}},rr=[],nr={"":tr.Level.ERROR},ir=3e3,or=null,ar=!1;function sr(e,t){return("000"+String(e)).slice(-t)}function ur(e){return!e||isNaN(nr[e])?nr[""]:nr[e]}function lr(){var e=rr.length;if(e){var t=Math.min(e,Math.floor(.7*ir));or&&or.onDiscardLogEntries(rr.slice(0,e-t)),rr=t?rr.slice(-t,e):[]}}function cr(){return or||(or={listeners:[],onLogEntry:function(e){for(var t=0;t<or.listeners.length;t++)or.listeners[t].onLogEntry&&or.listeners[t].onLogEntry(e)},onDiscardLogEntries:function(e){for(var t=0;t<or.listeners.length;t++)or.listeners[t].onDiscardLogEntries&&or.listeners[t].onDiscardLogEntries(e)},attach:function(e,t){t&&(or.listeners.push(t),t.onAttachToLog&&t.onAttachToLog(e))},detach:function(e,t){for(var r=0;r<or.listeners.length;r++)if(or.listeners[r]===t)return t.onDetachFromLog&&t.onDetachFromLog(e),void or.listeners.splice(r,1)}}),or}function dr(e,t,r,n,i){if(i||n||"function"!=typeof r||(i=r,r=""),i||"function"!=typeof n||(i=n,n=""),e<=ur(n=n||void 0)){var o=er(),a=new Date(o),s=Math.floor(1e3*(o-Math.floor(o))),u={time:sr(a.getHours(),2)+":"+sr(a.getMinutes(),2)+":"+sr(a.getSeconds(),2)+"."+sr(a.getMilliseconds(),3)+sr(s,3),date:sr(a.getFullYear(),4)+"-"+sr(a.getMonth()+1,2)+"-"+sr(a.getDate(),2),timestamp:o,level:e,message:String(t||""),details:String(r||""),component:String(n||"")};if(ar&&"function"==typeof i&&(u.supportInfo=i()),ir&&(rr.length>=ir&&lr(),rr.push(u)),or&&or.onLogEntry(u),console){var l=r instanceof Error,c=u.date+" "+u.time+" "+u.message+" - "+u.details+" "+u.component;switch(e){case tr.Level.FATAL:case tr.Level.ERROR:l?console.error(c,"\n",r):console.error(c);break;case tr.Level.WARNING:l?console.warn(c,"\n",r):console.warn(c);break;case tr.Level.INFO:console.info?l?console.info(c,"\n",r):console.info(c):l?console.log(c,"\n",r):console.log(c);break;case tr.Level.DEBUG:console.debug?l?console.debug(c,"\n",r):console.debug(c):l?console.log(c,"\n",r):console.log(c);break;case tr.Level.TRACE:console.trace?l?console.trace(c,"\n",r):console.trace(c):l?console.log(c,"\n",r):console.log(c)}console.info&&u.supportInfo&&console.info(u.supportInfo)}return u}}function hr(e){this.fatal=function(t,r,n,i){return tr.fatal(t,r,n||e,i),this},this.error=function(t,r,n,i){return tr.error(t,r,n||e,i),this},this.warning=function(t,r,n,i){return tr.warning(t,r,n||e,i),this},this.info=function(t,r,n,i){return tr.info(t,r,n||e,i),this},this.debug=function(t,r,n,i){return tr.debug(t,r,n||e,i),this},this.trace=function(t,r,n,i){return tr.trace(t,r,n||e,i),this},this.setLevel=function(t,r){return tr.setLevel(t,r||e),this},this.getLevel=function(t){return tr.getLevel(t||e)},this.isLoggable=function(t,r){return tr.isLoggable(t,r||e)}}tr.fatal=function(e,t,r,n){dr(tr.Level.FATAL,e,t,r,n)},tr.error=function(e,t,r,n){dr(tr.Level.ERROR,e,t,r,n)},tr.warning=function(e,t,r,n){dr(tr.Level.WARNING,e,t,r,n)},tr.info=function(e,t,r,n){dr(tr.Level.INFO,e,t,r,n)},tr.debug=function(e,t,r,n){dr(tr.Level.DEBUG,e,t,r,n)},tr.trace=function(e,t,r,n){dr(tr.Level.TRACE,e,t,r,n)},tr.setLevel=function(e,t,r){var n;(t=t||"",r&&null!=nr[t])||(nr[t]=e,Object.keys(tr.Level).forEach((function(t){tr.Level[t]===e&&(n=t)})),dr(tr.Level.INFO,"Changing log level "+(t?"for '"+t+"' ":"")+"to "+n,"","sap.base.log"))},tr.getLevel=function(e){return ur(e||void 0)},tr.isLoggable=function(e,t){return(null==e?tr.Level.DEBUG:e)<=ur(t||void 0)},tr.logSupportInfo=function(e){ar=e},tr.getLogEntries=function(){return rr.slice()},tr.getLogEntriesLimit=function(){return ir},tr.setLogEntriesLimit=function(e){if(e<0)throw new Error("The log entries limit needs to be greater than or equal to 0!");ir=e,rr.length>=ir&&lr()},tr.addLogListener=function(e){cr().attach(this,e)},tr.removeLogListener=function(e){cr().detach(this,e)},tr.getLogger=function(e,t){return isNaN(t)||null!=nr[e]||(nr[e]=t),new hr(e)};var pr=function(e,t){if(!e){var r="function"==typeof t?t():t;console&&console.assert?console.assert(e,r):tr.debug("[Assertions] "+r)}},_r=function(e){pr(e instanceof Array,"uniqueSort: input parameter must be an Array");var t=e.length;if(t>1){e.sort();for(var r=0,n=1;n<t;n++)e[n]!==e[r]&&(e[++r]=e[n]);++r<t&&e.splice(r,t-r)}return e},fr=function(e,t){if(pr("string"==typeof e&&e,"Metadata: sClassName must be a non-empty string"),pr("object"===H(t),"Metadata: oClassInfo must be empty or an object"),t&&"object"===H(t.metadata)||((t={metadata:t||{},constructor:Qt.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)};fr.prototype.extend=function(e){this.applySettings(e),this.afterApplySettings()},fr.prototype.applySettings=function(e){var t,r=e.metadata;if(r.baseType){var n=Qt.get(r.baseType);"function"!=typeof n&&tr.fatal("base class '"+r.baseType+"' does not exist"),n.getMetadata?(this._oParent=n.getMetadata(),pr(n===n.getMetadata().getClass(),"Metadata: oParentClass must match the class in the parent metadata")):this._oParent=new fr(r.baseType,{})}else this._oParent=void 0;for(var i in this._bAbstract=!!r.abstract,this._bFinal=!!r.final,this._sStereotype=r.stereotype||(this._oParent?this._oParent._sStereotype:"object"),this._bDeprecated=!!r.deprecated,this._aInterfaces=r.interfaces||[],this._aPublicMethods=r.publicMethods||[],this._bInterfacesUnique=!1,t=this._oClass.prototype,e)"metadata"!==i&&"constructor"!==i&&(t[i]=e[i],i.match(/^_|^on|^init$|^exit$/)||this._aPublicMethods.push(i))},fr.prototype.afterApplySettings=function(){this._oParent?(this._aAllPublicMethods=this._oParent._aAllPublicMethods.concat(this._aPublicMethods),this._bInterfacesUnique=!1):this._aAllPublicMethods=this._aPublicMethods},fr.prototype.getStereotype=function(){return this._sStereotype},fr.prototype.getName=function(){return this._sClassName},fr.prototype.getClass=function(){return this._oClass},fr.prototype.getParent=function(){return this._oParent},fr.prototype._dedupInterfaces=function(){this._bInterfacesUnique||(_r(this._aInterfaces),_r(this._aPublicMethods),_r(this._aAllPublicMethods),this._bInterfacesUnique=!0)},fr.prototype.getPublicMethods=function(){return this._dedupInterfaces(),this._aPublicMethods},fr.prototype.getAllPublicMethods=function(){return this._dedupInterfaces(),this._aAllPublicMethods},fr.prototype.getInterfaces=function(){return this._dedupInterfaces(),this._aInterfaces},fr.prototype.isInstanceOf=function(e){if(this._oParent&&this._oParent.isInstanceOf(e))return!0;for(var t=this._aInterfaces,r=0,n=t.length;r<n;r++)if(t[r]===e)return!0;return!1};Object.defineProperty(fr.prototype,"_mImplementedTypes",{get:function(){if(this===fr.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,r=t.length;r-- >0;)e[t[r]]||(e[t[r]]=!0);return Object.defineProperty(this,"_mImplementedTypes",{value:Object.freeze(e),writable:!1,configurable:!1}),e},configurable:!0}),fr.prototype.isA=function(e){var t=this._mImplementedTypes;if(Array.isArray(e)){for(var r=0;r<e.length;r++)if(e[r]in t)return!0;return!1}return e in t},fr.prototype.isAbstract=function(){return this._bAbstract},fr.prototype.isFinal=function(){return this._bFinal},fr.prototype.isDeprecated=function(){return this._bDeprecated},fr.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},fr.createClass=function(e,t,r,n){"string"==typeof e&&(n=r,r=t,t=e,e=null),pr(!e||"function"==typeof e),pr("string"==typeof t&&!!t),pr(!r||"object"===H(r)),pr(!n||"function"==typeof n),"function"==typeof(n=n||fr).preprocessClassInfo&&(r=n.preprocessClassInfo(r)),(r=r||{}).metadata=r.metadata||{},r.hasOwnProperty("constructor")||(r.constructor=void 0);var i=r.constructor;pr(!i||"function"==typeof i),e?(i||(i=r.metadata.deprecated?function(){tr.warning("Usage of deprecated class: "+t),e.apply(this,arguments)}:function(){e.apply(this,arguments)}),i.prototype=Object.create(e.prototype),i.prototype.constructor=i,r.metadata.baseType=e.getMetadata().getName()):(i=i||function(){},delete r.metadata.baseType),r.constructor=i,Qt.set(t,i);var o=new n(t,r);return i.getMetadata=i.prototype.getMetadata=function(){return o},i.getMetadata().isFinal()||(i.extend=function(e,t,r){return fr.createClass(i,e,t,r||n)}),i};var mr=fr.createClass("sap.ui.base.Object",{constructor:function(){if(!(this instanceof mr))throw Error('Cannot instantiate object: "new" is missing!')}});mr.prototype.destroy=function(){},mr.prototype.getInterface=function(){var e=new Xt(this,this.getMetadata().getAllPublicMethods());return this.getInterface=function(){return e},e},mr.defineClass=function(e,t,r){var n=new(r||fr)(e,t),i=n.getClass();return i.getMetadata=i.prototype.getMetadata=function(){return n},n.isFinal()||(i.extend=function(e,t,n){return fr.createClass(i,e,t,n||r)}),tr.debug("defined class '"+e+"'"+(n.getParent()?" as subclass of "+n.getParent().getName():"")),n},mr.prototype.isA=function(e){return this.getMetadata().isA(e)},mr.isA=function(e,t){return e instanceof mr&&e.isA(t)};var gr=/^((?:[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,vr=mr.extend("sap.ui.core.Locale",{constructor:function(e){mr.apply(this);var t=gr.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 pr(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=yr[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()}}),yr={iw:"he",ji:"yi",in:"id",sh:"sr"};function br(e){var t=/\$([-a-z0-9A-Z._]+)(?::([^$]*))?\$/.exec(e);return t&&t[2]?t[2].split(/,/):null}var kr=br("$cldr-rtl-locales:ar,fa,he$")||[];vr._cldrLocales=br("$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$"),vr._coreI18nLocales=br("$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$"),vr._impliesRTL=function(e){var t=e instanceof vr?e:new vr(e),r=t.getLanguage()||"";r=r&&yr[r]||r;var n=t.getRegion()||"";return!!(n&&kr.indexOf(r+"_"+n)>=0)||kr.indexOf(r)>=0};var wr={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"};vr._cldrLocales.push("cy"),Pe.push("cy"),Gt("@ui5/webcomponents",wr);var xr,Sr,Cr='\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('.concat("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(').concat("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(').concat("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(').concat("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(').concat("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(').concat("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(').concat("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(').concat("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'),Tr=function(){if(!document.querySelector("head>style[data-ui5-font-face]")){var e=we("OpenUI5Support");e&&e.isLoaded()||Je(Cr,{"data-ui5-font-face":""})}},Pr=function(){function e(){V(this,e)}return Y(e,null,[{key:"isValid",value:function(e){}},{key:"generataTypeAcessors",value:function(e){var t=this;Object.keys(e).forEach((function(r){Object.defineProperty(t,r,{get:function(){return e[r]}})}))}}]),e}(),Dr=new Map,Ir=new Map,Mr=function(e){if(!Dr.has(e)){var t=Br(e.split("-"));Dr.set(e,t)}return Dr.get(e)},Er=function(e){if(!Ir.has(e)){var t=e.replace(/([a-z])([A-Z])/g,"$1-$2").toLowerCase();Ir.set(e,t)}return Ir.get(e)},Br=function(e){return e.map((function(e,t){return 0===t?e.toLowerCase():e.charAt(0).toUpperCase()+e.slice(1).toLowerCase()})).join("")},Fr=function(e){return e&&e instanceof HTMLElement&&"slot"===e.localName},Or=function(){function e(t){V(this,e),this.metadata=t}return Y(e,[{key:"getTag",value:function(){return this.metadata.tag}},{key:"getAltTag",value:function(){return this.metadata.altTag}},{key:"hasAttribute",value:function(e){var t=this.getProperties()[e];return t.type!==Object&&!t.noAttribute}},{key:"getPropertiesList",value:function(){return Object.keys(this.getProperties())}},{key:"getAttributesList",value:function(){return this.getPropertiesList().filter(this.hasAttribute,this).map(Er)}},{key:"getSlots",value:function(){return this.metadata.slots||{}}},{key:"canSlotText",value:function(){var e=this.getSlots().default;return e&&e.type===Node}},{key:"hasSlots",value:function(){return!!Object.entries(this.getSlots()).length}},{key:"hasIndividualSlots",value:function(){return this.slotsAreManaged()&&Object.entries(this.getSlots()).some((function(e){var t=ae(e,2);t[0];return t[1].individualSlots}))}},{key:"slotsAreManaged",value:function(){return!!this.metadata.managedSlots}},{key:"getProperties",value:function(){return this.metadata.properties||{}}},{key:"getEvents",value:function(){return this.metadata.events||{}}},{key:"isLanguageAware",value:function(){return!!this.metadata.languageAware}}],[{key:"validatePropertyValue",value:function(e,t){return t.multiple?e.map((function(e){return Ar(e,t)})):Ar(e,t)}},{key:"validateSlotValue",value:function(e,t){return Nr(e,t)}}]),e}(),Ar=function(e,t){var r=t.type;return r===Boolean?"boolean"==typeof e&&e:r===String?"string"==typeof e||null==e?e:e.toString():r===Object?"object"===H(e)?e:t.defaultValue:function(e,t){var r=arguments.length>2&&void 0!==arguments[2]&&arguments[2];if("function"!=typeof e||"function"!=typeof t)return!1;if(r&&e===t)return!0;var n=e;do{n=Object.getPrototypeOf(n)}while(null!==n&&n!==t);return n===t}(r,Pr)?r.isValid(e)?e:t.defaultValue:void 0},Nr=function(e,t){if(null===e)return e;return function(e){return Fr(e)?e.assignedNodes({flatten:!0}).filter((function(e){return e instanceof HTMLElement})):[e]}(e).forEach((function(e){if(!(e instanceof t.type))throw new Error("".concat(e," is not of type ").concat(t.type))})),e},Lr=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:document.body,r=document.querySelector(e);return r||(r=document.createElement(e),t.insertBefore(r,t.firstChild))},Rr=function(){return Lr("ui5-static-area")},zr=function(e){X(r,e);var t=ne(r);function r(){return V(this,r),t.call(this)}return Y(r,[{key:"destroy",value:function(){var e=document.querySelector(this.tagName.toLowerCase());e.parentElement.removeChild(e)}},{key:"isUI5Element",get:function(){return!0}}]),r}(ee(HTMLElement));customElements.get("ui5-static-area")||customElements.define("ui5-static-area",zr);var Hr=function(){function e(t){V(this,e),this.ui5ElementContext=t,this._rendered=!1}var t;return Y(e,[{key:"isRendered",value:function(){return this._rendered}},{key:"_updateFragment",value:function(){var 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),Rr().appendChild(this.staticAreaItemDomRef),this._rendered=!0),this.ui5ElementContext.constructor.render(e,this.staticAreaItemDomRef.shadowRoot,t,{eventContext:this.ui5ElementContext})}},{key:"_removeFragmentFromStaticArea",value:function(){if(this.staticAreaItemDomRef){var e=Rr();e.removeChild(this.staticAreaItemDomRef),this.staticAreaItemDomRef=null,e.childElementCount<1&&Rr().destroy()}}},{key:"_updateContentDensity",value:function(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")))}},{key:"getDomRef",value:(t=j(regeneratorRuntime.mark((function e(){return regeneratorRuntime.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return this._rendered&&this.staticAreaItemDomRef||this._updateFragment(),e.next=3,Bt.whenDOMUpdated();case 3:return e.abrupt("return",this.staticAreaItemDomRef.shadowRoot);case 4:case"end":return e.stop()}}),e,this)}))),function(){return t.apply(this,arguments)})}]),e}(),Ur=function(e){X(r,e);var t=ne(r);function r(){return V(this,r),t.call(this)}return Y(r,[{key:"isUI5Element",get:function(){return!0}}]),r}(ee(HTMLElement));customElements.get("ui5-static-area-item")||customElements.define("ui5-static-area-item",Ur);var jr,Vr=window,Wr=new WeakMap,Yr=function(){function e(){throw V(this,e),new Error("Static class")}return Y(e,null,[{key:"observeDOMNode",value:function(e,t,r){var n=Wr.get(e);if(n)throw new Error("A mutation/ShadyDOM observer is already assigned to this node.");Vr.ShadyDOM?n=Vr.ShadyDOM.observeChildren(e,t):(n=new MutationObserver(t)).observe(e,r),Wr.set(e,n)}},{key:"unobserveDOMNode",value:function(e){var t=Wr.get(e);t&&(t instanceof MutationObserver?t.disconnect():Vr.ShadyDOM.unobserveChildren(t),Wr.delete(e))}}]),e}(),qr=["value-changed"],Gr=function(){return void 0===jr&&(Fe(),jr=Ie.noConflict),jr},Jr=function(e){var t=Gr();return!function(e){return qr.includes(e)}(e)&&(!0===t||!function(e){var t=Gr();return!(t.events&&t.events.includes&&t.events.includes(e))}(e))},Xr=function(e){var t=/\$([-a-z0-9A-Z._]+)(?::([^$]*))?\$/.exec(e);return t&&t[2]?t[2].split(/,/):null},Qr={iw:"he",ji:"yi",in:"id",sh:"sr"},Kr=Xr("$cldr-rtl-locales:ar,fa,he$")||[],Zr=function(){var e=(Fe(),Ie.rtl);return null!==e?!!e:function(e){return e=e&&Qr[e]||e,Kr.indexOf(e)>=0}(Ft()||vt())},$r=function(e){var t=function(e){return de[e]?de[e].join(""):""}(e.getMetadata().getTag())||"",r=e.styles;return Array.isArray(r)&&(r=r.join(" ")),"".concat(r," ").concat(t)},en=new Map,tn=function(e,t,r,n){var i=r+t.length,o=e.charAt(i),a=e.substring(0,r)+n;if("("===o){var s=function(e,t){for(var r=1,n=t+1;n<e.length;n++){var i=e.charAt(n);if("("===i?r++:")"===i&&r--,0===r)return n}}(e,i);return a+e.substring(i+1,s)+e.substring(s+1)}return a+e.substring(i)},rn=function(e,t){return(e=function(e,t,r){for(var n=e.indexOf(t);-1!==n;)n=(e=tn(e,t,n,r)).indexOf(t);return e}(e=e.trim(),"::slotted","")).startsWith(":host")?tn(e,":host",0,t):e.match(/^[@0-9]/)||"to"===e||"to{"===e||e.match(new RegExp("^".concat(t,"[^a-zA-Z0-9-]")))?e:"".concat(t," ").concat(e)},nn=function(e,t){e=(e=e.replace(/\n/g," ")).replace(/([{}])/g,"$1\n");var r="";return e.split("\n").forEach((function(e){if(e.match(/{$/)){var n=e.split(",");e=n.map((function(e){return rn(e,t)})).join(",")}r="".concat(r).concat(e)})),r},on=new Set,an=function(e){var t=e.getMetadata().getTag();if(!on.has(t)){var r=$r(e);r=nn(r,t);var n=function(e){var t=e.staticAreaStyles;return Array.isArray(t)&&(t=t.join(" ")),t}(e);n&&(n=nn(n,"ui5-static-area-item"),r="".concat(r," ").concat(n)),Je(r,{"data-ui5-element-styles":t,disabled:"disabled"}),Ke()&&(Ee||(Ee=window.setTimeout(Ze,0))),on.add(t)}},sn=function(e){X(r,e);var t=ne(r);function r(){return V(this,r),t.apply(this,arguments)}return Y(r,null,[{key:"isValid",value:function(e){return Number.isInteger(e)}}]),r}(Pr),un=function(e){X(r,e);var t=ne(r);function r(){return V(this,r),t.apply(this,arguments)}return Y(r,null,[{key:"isValid",value:function(e){return Number(e)===e}}]),r}(Pr),ln=["disabled","title","hidden"],cn=function(e){return!(!ln.includes(e)&&!e.startsWith("aria"))||![HTMLElement,Element,Node].some((function(t){return t.prototype.hasOwnProperty(e)}))},dn={events:{"_property-change":{}}},hn=0,pn=new Map,_n=function(e){X(s,e);var t,r,n,i,o,a=ne(s);function s(){var e,t;return V(this,s),(e=a.call(this))._initializeState(),e._upgradeAllProperties(),e._initializeContainers(),e._upToDate=!1,e._inDOM=!1,e._fullyConnected=!1,e._domRefReadyPromise=new Promise((function(e){t=e})),e._domRefReadyPromise._deferredResolve=t,e._monitoredChildProps=new Map,e._firePropertyChange=!1,e._shouldInvalidateParent=!1,e}return Y(s,[{key:"_initializeContainers",value:function(){var e=this.constructor._needsShadowDOM(),t=this.constructor._needsStaticArea();if(e&&(this.attachShadow({mode:"open"}),window.ShadyDOM&&an(this.constructor),document.adoptedStyleSheets)){var r=function(e){var t=e.getMetadata().getTag(),r=$r(e);if(en.has(t))return en.get(t);var n=new CSSStyleSheet;return n.replaceSync(r),en.set(t,n),n}(this.constructor);this.shadowRoot.adoptedStyleSheets=[r]}t&&(this.staticAreaItem=new Hr(this))}},{key:"connectedCallback",value:(o=j(regeneratorRuntime.mark((function e(){var t,r;return regeneratorRuntime.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if(t=this.constructor._needsShadowDOM(),r=this.constructor.getMetadata().slotsAreManaged(),this._inDOM=!0,!r){e.next=7;break}return this._startObservingDOMChildren(),e.next=7,this._processChildren();case 7:if(!t){e.next=18;break}if(this.shadowRoot){e.next=11;break}return e.next=11,Promise.resolve();case 11:if(this._inDOM){e.next=13;break}return e.abrupt("return");case 13:Bt.register(this),Bt.renderImmediately(this),this._domRefReadyPromise._deferredResolve(),this._fullyConnected=!0,"function"==typeof this.onEnterDOM&&this.onEnterDOM();case 18:case"end":return e.stop()}}),e,this)}))),function(){return o.apply(this,arguments)})},{key:"disconnectedCallback",value:function(){var e=this.constructor._needsShadowDOM(),t=this.constructor._needsStaticArea(),r=this.constructor.getMetadata().slotsAreManaged();this._inDOM=!1,r&&this._stopObservingDOMChildren(),e&&(Bt.deregister(this),this._fullyConnected&&("function"==typeof this.onExitDOM&&this.onExitDOM(),this._fullyConnected=!1)),t&&this.staticAreaItem._removeFragmentFromStaticArea(),Bt.cancelRender(this)}},{key:"_startObservingDOMChildren",value:function(){if(this.constructor.getMetadata().hasSlots()){var e={childList:!0,subtree:this.constructor.getMetadata().canSlotText(),characterData:!0};Yr.observeDOMNode(this,this._processChildren.bind(this),e)}}},{key:"_stopObservingDOMChildren",value:function(){Yr.unobserveDOMNode(this)}},{key:"_processChildren",value:(i=j(regeneratorRuntime.mark((function e(){return regeneratorRuntime.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if(!this.constructor.getMetadata().hasSlots()){e.next=4;break}return e.next=4,this._updateSlots();case 4:case"end":return e.stop()}}),e,this)}))),function(){return i.apply(this,arguments)})},{key:"_updateSlots",value:(n=j(regeneratorRuntime.mark((function e(){var t,r,n,i,o,a,s,u,l,c,d,h=this;return regeneratorRuntime.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:for(t=this.constructor.getMetadata().getSlots(),r=this.constructor.getMetadata().canSlotText(),n=Array.from(r?this.childNodes:this.children),i=0,o=Object.entries(t);i<o.length;i++)a=ae(o[i],2),s=a[0],u=a[1],this._clearSlot(s,u);return l=new Map,c=new Map,d=n.map(function(){var e=j(regeneratorRuntime.mark((function e(r,n){var i,o,a,s,u,d,p,_;return regeneratorRuntime.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if(i=h.constructor._getSlotName(r),void 0!==(o=t[i])){e.next=6;break}return a=Object.keys(t).join(", "),console.warn("Unknown slotName: ".concat(i,", ignoring"),r,"Valid values are: ".concat(a)),e.abrupt("return");case 6:if(o.individualSlots&&(s=(l.get(i)||0)+1,l.set(i,s),r._individualSlot="".concat(i,"-").concat(s)),!(r instanceof HTMLElement)){e.next=19;break}if(!(u=r.localName).includes("-")){e.next=19;break}if(window.customElements.get(u)){e.next=18;break}return d=window.customElements.whenDefined(u),(p=pn.get(u))||(p=new Promise((function(e){return setTimeout(e,1e3)})),pn.set(u,p)),e.next=18,Promise.race([d,p]);case 18:window.customElements.upgrade(r);case 19:(r=h.constructor.getMetadata().constructor.validateSlotValue(r,o)).isUI5Element&&o.listenFor&&h._attachChildPropertyUpdated(r,o.listenFor),r.isUI5Element&&o.invalidateParent&&(r._shouldInvalidateParent=!0),Fr(r)&&h._attachSlotChange(r),_=o.propertyName||i,c.has(_)?c.get(_).push({child:r,idx:n}):c.set(_,[{child:r,idx:n}]);case 25:case"end":return e.stop()}}),e)})));return function(t,r){return e.apply(this,arguments)}}()),e.next=9,Promise.all(d);case 9:c.forEach((function(e,t){h._state[t]=e.sort((function(e,t){return e.idx-t.idx})).map((function(e){return e.child}))})),this._invalidate("slots");case 11:case"end":return e.stop()}}),e,this)}))),function(){return n.apply(this,arguments)})},{key:"_clearSlot",value:function(e,t){var r=this,n=t.propertyName||e,i=this._state[n];Array.isArray(i)||(i=[i]),i.forEach((function(e){e&&e.isUI5Element&&(r._detachChildPropertyUpdated(e),e._shouldInvalidateParent=!1),Fr(e)&&r._detachSlotChange(e)})),this._state[n]=[],this._invalidate(n,[])}},{key:"attributeChangedCallback",value:function(e,t,r){var n=this.constructor.getMetadata().getProperties(),i=e.replace(/^ui5-/,""),o=Mr(i);if(n.hasOwnProperty(o)){var a=n[o].type;a===Boolean&&(r=null!==r),a===sn&&(r=parseInt(r)),a===un&&(r=parseFloat(r)),this[o]=r}}},{key:"_updateAttribute",value:function(e,t){if(this.constructor.getMetadata().hasAttribute(e)&&"object"!==H(t)){var r=Er(e),n=this.getAttribute(r);"boolean"==typeof t?!0===t&&null===n?this.setAttribute(r,""):!1===t&&null!==n&&this.removeAttribute(r):n!==t&&this.setAttribute(r,t)}}},{key:"_upgradeProperty",value:function(e){if(this.hasOwnProperty(e)){var t=this[e];delete this[e],this[e]=t}}},{key:"_upgradeAllProperties",value:function(){this.constructor.getMetadata().getPropertiesList().forEach(this._upgradeProperty,this)}},{key:"_initializeState",value:function(){var e=this.constructor._getDefaultState();this._state=Object.assign({},e)}},{key:"_attachChildPropertyUpdated",value:function(e,t){var r=e.constructor.getMetadata(),n=this.constructor._getSlotName(e),i=r.getProperties(),o=[],a=[];Array.isArray(t)?o=t:(o=Array.isArray(t.props)?t.props:Object.keys(i),a=Array.isArray(t.exclude)?t.exclude:[]),this._monitoredChildProps.has(n)||this._monitoredChildProps.set(n,{observedProps:o,notObservedProps:a}),e.addEventListener("_property-change",this._invalidateParentOnPropertyUpdate),e._firePropertyChange=!0}},{key:"_detachChildPropertyUpdated",value:function(e){e.removeEventListener("_property-change",this._invalidateParentOnPropertyUpdate),e._firePropertyChange=!1}},{key:"_propertyChange",value:function(e,t){this._updateAttribute(e,t),this._firePropertyChange&&this.dispatchEvent(new CustomEvent("_property-change",{detail:{name:e,newValue:t},composed:!1,bubbles:!0}))}},{key:"_invalidateParentOnPropertyUpdate",value:function(e){var t=this.parentNode;if(t){var r=t.constructor._getSlotName(this),n=t._monitoredChildProps.get(r);if(n){var i=n.observedProps,o=n.notObservedProps;i.includes(e.detail.name)&&!o.includes(e.detail.name)&&t._invalidate("_parent_",this)}}}},{key:"_attachSlotChange",value:function(e){var t=this;this._invalidateOnSlotChange||(this._invalidateOnSlotChange=function(){t._invalidate("slotchange")}),e.addEventListener("slotchange",this._invalidateOnSlotChange)}},{key:"_detachSlotChange",value:function(e){e.removeEventListener("slotchange",this._invalidateOnSlotChange)}},{key:"_invalidate",value:function(){this._shouldInvalidateParent&&this.parentNode._invalidate(),this._upToDate&&this.getDomRef()&&!this._suppressInvalidation&&(this._upToDate=!1,Bt.renderDeferred(this))}},{key:"_render",value:function(){var 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()}},{key:"_updateShadowRoot",value:function(){if(this.constructor._needsShadowDOM()){var e,t=this.constructor.template(this);document.adoptedStyleSheets||window.ShadyDOM||(e=$r(this.constructor)),this.constructor.render(t,this.shadowRoot,e,{eventContext:this})}}},{key:"_assignIndividualSlotsToChildren",value:function(){Array.from(this.children).forEach((function(e){e._individualSlot&&e.setAttribute("slot",e._individualSlot)}))}},{key:"_waitForDomRef",value:function(){return this._domRefReadyPromise}},{key:"getDomRef",value:function(){if(this.shadowRoot&&0!==this.shadowRoot.children.length)return 1===this.shadowRoot.children.length?this.shadowRoot.children[0]:this.shadowRoot.children[1]}},{key:"getFocusDomRef",value:function(){var e=this.getDomRef();if(e)return e.querySelector("[data-sap-focus-ref]")||e}},{key:"getStableDomRef",value:function(e){return this.getDomRef().querySelector("[data-ui5-stable=".concat(e,"]"))}},{key:"focus",value:(r=j(regeneratorRuntime.mark((function e(){var t;return regeneratorRuntime.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,this._waitForDomRef();case 2:(t=this.getFocusDomRef())&&"function"==typeof t.focus&&t.focus();case 4:case"end":return e.stop()}}),e,this)}))),function(){return r.apply(this,arguments)})},{key:"fireEvent",value:function(e,t){var r=arguments.length>2&&void 0!==arguments[2]&&arguments[2],n=!(arguments.length>3&&void 0!==arguments[3])||arguments[3],i=this._fireEvent(e,t,r,n),o=Mr(e);return o!==e?i&&this._fireEvent(o,t,r):i}},{key:"_fireEvent",value:function(e,t){var r=arguments.length>2&&void 0!==arguments[2]&&arguments[2],n=!(arguments.length>3&&void 0!==arguments[3])||arguments[3],i=!0,o=new CustomEvent("ui5-".concat(e),{detail:t,composed:!1,bubbles:n,cancelable:r});if(i=this.dispatchEvent(o),Jr(e))return i;var a=new CustomEvent(e,{detail:t,composed:!1,bubbles:n,cancelable:r}),s=this.dispatchEvent(a);return s&&i}},{key:"getSlottedNodes",value:function(e){return this[e].reduce((function(e,t){return Fr(t)?e.concat(t.assignedNodes({flatten:!0}).filter((function(e){return e instanceof HTMLElement}))):e.concat([t])}),[])}},{key:"updateStaticAreaItemContentDensity",value:function(){this.staticAreaItem&&this.staticAreaItem._updateContentDensity(this.isCompact)}},{key:"_shouldUpdateFragment",value:function(){return this.constructor._needsStaticArea()&&this.staticAreaItem.isRendered()}},{key:"getStaticAreaItemDomRef",value:function(){return this.staticAreaItem.getDomRef()}},{key:"_id",get:function(){return this.__id||(this.__id="ui5wc_".concat(++hn)),this.__id}},{key:"isCompact",get:function(){return"compact"===getComputedStyle(this).getPropertyValue("--_ui5_content_density")}},{key:"effectiveDir",get:function(){var e;e=this.constructor,It.add(e);var t=window.document,r=["ltr","rtl"],n=getComputedStyle(this).getPropertyValue("--_ui5_dir");return r.includes(n)?n:r.includes(this.dir)?this.dir:r.includes(t.documentElement.dir)?t.documentElement.dir:r.includes(t.body.dir)?t.body.dir:Zr()?"rtl":void 0}},{key:"isUI5Element",get:function(){return!0}}],[{key:"_getSlotName",value:function(e){if(!(e instanceof HTMLElement))return"default";var t=e.getAttribute("slot");if(t){var r=t.match(/^(.+?)-\d+$/);return r?r[1]:t}return"default"}},{key:"_needsShadowDOM",value:function(){return!!this.template}},{key:"_needsStaticArea",value:function(){return"function"==typeof this.staticAreaTemplate}},{key:"_getDefaultState",value:function(){if(this._defaultState)return this._defaultState;var e=this.getMetadata(),t={},r=e.slotsAreManaged(),n=e.getProperties();for(var i in n){var o=n[i].type,a=n[i].defaultValue;o===Boolean?(t[i]=!1,void 0!==a&&console.warn("The 'defaultValue' metadata key is ignored for all booleans properties, they would be initialized with 'false' by default")):n[i].multiple?t[i]=[]:t[i]=o===Object?"defaultValue"in n[i]?n[i].defaultValue:{}:o===String?"defaultValue"in n[i]?n[i].defaultValue:"":a}if(r)for(var s=e.getSlots(),u=0,l=Object.entries(s);u<l.length;u++){var c=ae(l[u],2),d=c[0];t[c[1].propertyName||d]=[]}return this._defaultState=t,t}},{key:"_generateAccessors",value:function(){for(var e=this.prototype,t=this.getMetadata().slotsAreManaged(),r=this.getMetadata().getProperties(),n=function(){var t=ae(o[i],2),r=t[0],n=t[1];if(!cn(r))throw new Error('"'.concat(r,'" is not a valid property name. Use a name that does not collide with DOM APIs'));if(n.type===Boolean&&n.defaultValue)throw new Error('Cannot set a default value for property "'.concat(r,'". All booleans are false by default.'));if(n.type===Array)throw new Error('Wrong type for property "'.concat(r,'". Properties cannot be of type Array - use "multiple: true" and set "type" to the single value type, such as "String", "Object", etc...'));if(n.type===Object&&n.defaultValue)throw new Error('Cannot set a default value for property "'.concat(r,'". All properties of type "Object" are empty objects by default.'));if(n.multiple&&n.defaultValue)throw new Error('Cannot set a default value for property "'.concat(r,'". All multiple properties are empty arrays by default.'));Object.defineProperty(e,r,{get:function(){if(void 0!==this._state[r])return this._state[r];var e=n.defaultValue;return n.type!==Boolean&&(n.type===String?e:n.multiple?[]:e)},set:function(e){e=this.constructor.getMetadata().constructor.validatePropertyValue(e,n),this._state[r]!==e&&(this._state[r]=e,this._invalidate(r,e),this._propertyChange(r,e))}})},i=0,o=Object.entries(r);i<o.length;i++)n();if(t)for(var a=this.getMetadata().getSlots(),s=function(){var t=ae(l[u],2),r=t[0],n=t[1];if(!cn(r))throw new Error('"'.concat(r,'" is not a valid property name. Use a name that does not collide with DOM APIs'));var i=n.propertyName||r;Object.defineProperty(e,i,{get:function(){return void 0!==this._state[i]?this._state[i]:[]},set:function(){throw new Error("Cannot set slots directly, use the DOM APIs")}})},u=0,l=Object.entries(a);u<l.length;u++)s()}},{key:"define",value:(t=j(regeneratorRuntime.mark((function e(){var t,r,n,i,o;return regeneratorRuntime.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,Sr||(Sr=new Promise(function(){var e=j(regeneratorRuntime.mark((function e(t){var r;return regeneratorRuntime.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if(!(r=we("OpenUI5Support"))){e.next=4;break}return e.next=4,r.init();case 4:return e.next=6,new Promise((function(e){document.body?e():document.addEventListener("DOMContentLoaded",(function(){e()}))}));case 6:return e.next=8,nt(it());case 8:return r&&r.attachListeners(),Tr(),document.querySelector("head>style[data-ui5-system-css-vars]")||Je('\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":""}),e.next=13,xr||(xr=new Promise((function(e){window.WebComponents&&!window.WebComponents.ready&&window.WebComponents.waitFor?window.WebComponents.waitFor((function(){e()})):e()})));case 13:t();case 14:case"end":return e.stop()}}),e)})));return function(t){return e.apply(this,arguments)}}()));case 2:if(!this.onDefine){e.next=5;break}return e.next=5,this.onDefine();case 5:return t=this.getMetadata().getTag(),r=this.getMetadata().getAltTag(),n=Tt(t),(i=customElements.get(t))&&!n?Pt(t):i||(this._generateAccessors(),Ct(t),window.customElements.define(t,this),r&&!customElements.get(r)&&(o=function(e){X(r,e);var t=ne(r);function r(){return V(this,r),t.apply(this,arguments)}return r}(this),Ct(r),window.customElements.define(r,o))),e.abrupt("return",this);case 11:case"end":return e.stop()}}),e,this)}))),function(){return t.apply(this,arguments)})},{key:"getMetadata",value:function(){if(this.hasOwnProperty("_metadata"))return this._metadata;for(var e=[this.metadata],t=this;t!==s;)t=Object.getPrototypeOf(t),e.unshift(t.metadata);var r=be.apply(void 0,[{}].concat(e));return this._metadata=new Or(r),this._metadata}},{key:"observedAttributes",get:function(){return this.getMetadata().getAttributesList()}},{key:"metadata",get:function(){return dn}},{key:"styles",get:function(){return""}},{key:"staticAreaStyles",get:function(){return""}}]),s}(ee(HTMLElement)),fn=new WeakMap,mn=function(e){return function(){var t=e.apply(void 0,arguments);return fn.set(t,!0),t}},gn=function(e){return"function"==typeof e&&fn.has(e)},vn=void 0!==window.customElements&&void 0!==window.customElements.polyfillWrapFlushCallback,yn=function(e,t){for(var r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:null,n=arguments.length>3&&void 0!==arguments[3]?arguments[3]:null;t!==r;){var i=t.nextSibling;e.insertBefore(t,n),t=i}},bn=function(e,t){for(var r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:null;t!==r;){var n=t.nextSibling;e.removeChild(t),t=n}},kn={},wn={},xn="{{lit-".concat(String(Math.random()).slice(2),"}}"),Sn="\x3c!--".concat(xn,"--\x3e"),Cn=new RegExp("".concat(xn,"|").concat(Sn)),Tn=function e(t,r){V(this,e),this.parts=[],this.element=r;for(var n=[],i=[],o=document.createTreeWalker(r.content,133,null,!1),a=0,s=-1,u=0,l=t.strings,c=t.values.length;u<c;){var d=o.nextNode();if(null!==d){if(s++,1===d.nodeType){if(d.hasAttributes()){for(var h=d.attributes,p=h.length,_=0,f=0;f<p;f++)Pn(h[f].name,"$lit$")&&_++;for(;_-- >0;){var m=l[u],g=Mn.exec(m)[2],v=g.toLowerCase()+"$lit$",y=d.getAttribute(v);d.removeAttribute(v);var b=y.split(Cn);this.parts.push({type:"attribute",index:s,name:g,strings:b}),u+=b.length-1}}"TEMPLATE"===d.tagName&&(i.push(d),o.currentNode=d.content)}else if(3===d.nodeType){var k=d.data;if(k.indexOf(xn)>=0){for(var w=d.parentNode,x=k.split(Cn),S=x.length-1,C=0;C<S;C++){var T=void 0,P=x[C];if(""===P)T=In();else{var D=Mn.exec(P);null!==D&&Pn(D[2],"$lit$")&&(P=P.slice(0,D.index)+D[1]+D[2].slice(0,-"$lit$".length)+D[3]),T=document.createTextNode(P)}w.insertBefore(T,d),this.parts.push({type:"node",index:++s})}""===x[S]?(w.insertBefore(In(),d),n.push(d)):d.data=x[S],u+=S}}else if(8===d.nodeType)if(d.data===xn){var I=d.parentNode;null!==d.previousSibling&&s!==a||(s++,I.insertBefore(In(),d)),a=s,this.parts.push({type:"node",index:s}),null===d.nextSibling?d.data="":(n.push(d),s--),u++}else for(var M=-1;-1!==(M=d.data.indexOf(xn,M+1));)this.parts.push({type:"node",index:-1}),u++}else o.currentNode=i.pop()}for(var E=0,B=n;E<B.length;E++){var F=B[E];F.parentNode.removeChild(F)}},Pn=function(e,t){var r=e.length-t.length;return r>=0&&e.slice(r)===t},Dn=function(e){return-1!==e.index},In=function(){return document.createComment("")},Mn=/([ \x09\x0a\x0c\x0d])([^\0-\x1F\x7F-\x9F "'>=/]+)([ \x09\x0a\x0c\x0d]*=[ \x09\x0a\x0c\x0d]*(?:[^ \x09\x0a\x0c\x0d"'`<>=]*|"[^"]*|'[^']*))$/,En=function(){function e(t,r,n){V(this,e),this.__parts=[],this.template=t,this.processor=r,this.options=n}return Y(e,[{key:"update",value:function(e){var t,r=0,n=ce(this.__parts);try{for(n.s();!(t=n.n()).done;){var i=t.value;void 0!==i&&i.setValue(e[r]),r++}}catch(e){n.e(e)}finally{n.f()}var o,a=ce(this.__parts);try{for(a.s();!(o=a.n()).done;){var s=o.value;void 0!==s&&s.commit()}}catch(e){a.e(e)}finally{a.f()}}},{key:"_clone",value:function(){for(var e,t=vn?this.template.element.content.cloneNode(!0):document.importNode(this.template.element.content,!0),r=[],n=this.template.parts,i=document.createTreeWalker(t,133,null,!1),o=0,a=0,s=i.nextNode();o<n.length;)if(e=n[o],Dn(e)){for(;a<e.index;)a++,"TEMPLATE"===s.nodeName&&(r.push(s),i.currentNode=s.content),null===(s=i.nextNode())&&(i.currentNode=r.pop(),s=i.nextNode());if("node"===e.type){var u=this.processor.handleTextExpression(this.options);u.insertAfterNode(s.previousSibling),this.__parts.push(u)}else{var l;(l=this.__parts).push.apply(l,se(this.processor.handleAttributeExpressions(s,e.name,e.strings,this.options)))}o++}else this.__parts.push(void 0),o++;return vn&&(document.adoptNode(t),customElements.upgrade(t)),t}}]),e}(),Bn=" ".concat(xn," "),Fn=function(){function e(t,r,n,i){V(this,e),this.strings=t,this.values=r,this.type=n,this.processor=i}return Y(e,[{key:"getHTML",value:function(){for(var e=this.strings.length-1,t="",r=!1,n=0;n<e;n++){var i=this.strings[n],o=i.lastIndexOf("\x3c!--");r=(o>-1||r)&&-1===i.indexOf("--\x3e",o+1);var a=Mn.exec(i);t+=null===a?i+(r?Bn:Sn):i.substr(0,a.index)+a[1]+a[2]+"$lit$"+a[3]+xn}return t+=this.strings[e]}},{key:"getTemplateElement",value:function(){var e=document.createElement("template");return e.innerHTML=this.getHTML(),e}}]),e}(),On=function(e){X(r,e);var t=ne(r);function r(){return V(this,r),t.apply(this,arguments)}return Y(r,[{key:"getHTML",value:function(){return"<svg>".concat(ie(Q(r.prototype),"getHTML",this).call(this),"</svg>")}},{key:"getTemplateElement",value:function(){var e=ie(Q(r.prototype),"getTemplateElement",this).call(this),t=e.content,n=t.firstChild;return t.removeChild(n),yn(t,n.firstChild),e}}]),r}(Fn),An=function(e){return null===e||!("object"===H(e)||"function"==typeof e)},Nn=function(e){return Array.isArray(e)||!(!e||!e[Symbol.iterator])},Ln=function(){function e(t,r,n){V(this,e),this.dirty=!0,this.element=t,this.name=r,this.strings=n,this.parts=[];for(var i=0;i<n.length-1;i++)this.parts[i]=this._createPart()}return Y(e,[{key:"_createPart",value:function(){return new Rn(this)}},{key:"_getValue",value:function(){for(var e=this.strings,t=e.length-1,r="",n=0;n<t;n++){r+=e[n];var i=this.parts[n];if(void 0!==i){var o=i.value;if(An(o)||!Nn(o))r+="string"==typeof o?o:String(o);else{var a,s=ce(o);try{for(s.s();!(a=s.n()).done;){var u=a.value;r+="string"==typeof u?u:String(u)}}catch(e){s.e(e)}finally{s.f()}}}}return r+=e[t]}},{key:"commit",value:function(){this.dirty&&(this.dirty=!1,this.element.setAttribute(this.name,this._getValue()))}}]),e}(),Rn=function(){function e(t){V(this,e),this.value=void 0,this.committer=t}return Y(e,[{key:"setValue",value:function(e){e===kn||An(e)&&e===this.value||(this.value=e,gn(e)||(this.committer.dirty=!0))}},{key:"commit",value:function(){for(;gn(this.value);){var e=this.value;this.value=kn,e(this)}this.value!==kn&&this.committer.commit()}}]),e}(),zn=function(){function e(t){V(this,e),this.value=void 0,this.__pendingValue=void 0,this.options=t}return Y(e,[{key:"appendInto",value:function(e){this.startNode=e.appendChild(In()),this.endNode=e.appendChild(In())}},{key:"insertAfterNode",value:function(e){this.startNode=e,this.endNode=e.nextSibling}},{key:"appendIntoPart",value:function(e){e.__insert(this.startNode=In()),e.__insert(this.endNode=In())}},{key:"insertAfterPart",value:function(e){e.__insert(this.startNode=In()),this.endNode=e.endNode,e.endNode=this.startNode}},{key:"setValue",value:function(e){this.__pendingValue=e}},{key:"commit",value:function(){for(;gn(this.__pendingValue);){var e=this.__pendingValue;this.__pendingValue=kn,e(this)}var t=this.__pendingValue;t!==kn&&(An(t)?t!==this.value&&this.__commitText(t):t instanceof Fn?this.__commitTemplateResult(t):t instanceof Node?this.__commitNode(t):Nn(t)?this.__commitIterable(t):t===wn?(this.value=wn,this.clear()):this.__commitText(t))}},{key:"__insert",value:function(e){this.endNode.parentNode.insertBefore(e,this.endNode)}},{key:"__commitNode",value:function(e){this.value!==e&&(this.clear(),this.__insert(e),this.value=e)}},{key:"__commitText",value:function(e){var t=this.startNode.nextSibling,r="string"==typeof(e=null==e?"":e)?e:String(e);t===this.endNode.previousSibling&&3===t.nodeType?t.data=r:this.__commitNode(document.createTextNode(r)),this.value=e}},{key:"__commitTemplateResult",value:function(e){var t=this.options.templateFactory(e);if(this.value instanceof En&&this.value.template===t)this.value.update(e.values);else{var r=new En(t,e.processor,this.options),n=r._clone();r.update(e.values),this.__commitNode(n),this.value=r}}},{key:"__commitIterable",value:function(t){Array.isArray(this.value)||(this.value=[],this.clear());var r,n,i=this.value,o=0,a=ce(t);try{for(a.s();!(n=a.n()).done;){var s=n.value;void 0===(r=i[o])&&(r=new e(this.options),i.push(r),0===o?r.appendIntoPart(this):r.insertAfterPart(i[o-1])),r.setValue(s),r.commit(),o++}}catch(e){a.e(e)}finally{a.f()}o<i.length&&(i.length=o,this.clear(r&&r.endNode))}},{key:"clear",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:this.startNode;bn(this.startNode.parentNode,e.nextSibling,this.endNode)}}]),e}(),Hn=function(){function e(t,r,n){if(V(this,e),this.value=void 0,this.__pendingValue=void 0,2!==n.length||""!==n[0]||""!==n[1])throw new Error("Boolean attributes can only contain a single expression");this.element=t,this.name=r,this.strings=n}return Y(e,[{key:"setValue",value:function(e){this.__pendingValue=e}},{key:"commit",value:function(){for(;gn(this.__pendingValue);){var e=this.__pendingValue;this.__pendingValue=kn,e(this)}if(this.__pendingValue!==kn){var t=!!this.__pendingValue;this.value!==t&&(t?this.element.setAttribute(this.name,""):this.element.removeAttribute(this.name),this.value=t),this.__pendingValue=kn}}}]),e}(),Un=function(e){X(r,e);var t=ne(r);function r(e,n,i){var o;return V(this,r),(o=t.call(this,e,n,i)).single=2===i.length&&""===i[0]&&""===i[1],o}return Y(r,[{key:"_createPart",value:function(){return new jn(this)}},{key:"_getValue",value:function(){return this.single?this.parts[0].value:ie(Q(r.prototype),"_getValue",this).call(this)}},{key:"commit",value:function(){this.dirty&&(this.dirty=!1,this.element[this.name]=this._getValue())}}]),r}(Ln),jn=function(e){X(r,e);var t=ne(r);function r(){return V(this,r),t.apply(this,arguments)}return r}(Rn),Vn=!1;try{var Wn={get capture(){return Vn=!0,!1}};window.addEventListener("test",Wn,Wn),window.removeEventListener("test",Wn,Wn)}catch(e){}var Yn=function(){function e(t,r,n){var i=this;V(this,e),this.value=void 0,this.__pendingValue=void 0,this.element=t,this.eventName=r,this.eventContext=n,this.__boundHandleEvent=function(e){return i.handleEvent(e)}}return Y(e,[{key:"setValue",value:function(e){this.__pendingValue=e}},{key:"commit",value:function(){for(;gn(this.__pendingValue);){var e=this.__pendingValue;this.__pendingValue=kn,e(this)}if(this.__pendingValue!==kn){var t=this.__pendingValue,r=this.value,n=null==t||null!=r&&(t.capture!==r.capture||t.once!==r.once||t.passive!==r.passive),i=null!=t&&(null==r||n);n&&this.element.removeEventListener(this.eventName,this.__boundHandleEvent,this.__options),i&&(this.__options=qn(t),this.element.addEventListener(this.eventName,this.__boundHandleEvent,this.__options)),this.value=t,this.__pendingValue=kn}}},{key:"handleEvent",value:function(e){"function"==typeof this.value?this.value.call(this.eventContext||this.element,e):this.value.handleEvent(e)}}]),e}(),qn=function(e){return e&&(Vn?{capture:e.capture,passive:e.passive,once:e.once}:e.capture)},Gn=new(function(){function e(){V(this,e)}return Y(e,[{key:"handleAttributeExpressions",value:function(e,t,r,n){var i=t[0];return"."===i?new Un(e,t.slice(1),r).parts:"@"===i?[new Yn(e,t.slice(1),n.eventContext)]:"?"===i?[new Hn(e,t.slice(1),r)]:new Ln(e,t,r).parts}},{key:"handleTextExpression",value:function(e){return new zn(e)}}]),e}());
|
|
171
|
-
/**
|
|
172
|
-
* @license
|
|
173
|
-
* Copyright (c) 2017 The Polymer Project Authors. All rights reserved.
|
|
174
|
-
* This code may only be used under the BSD style license found at
|
|
175
|
-
* http://polymer.github.io/LICENSE.txt
|
|
176
|
-
* The complete set of authors may be found at
|
|
177
|
-
* http://polymer.github.io/AUTHORS.txt
|
|
178
|
-
* The complete set of contributors may be found at
|
|
179
|
-
* http://polymer.github.io/CONTRIBUTORS.txt
|
|
180
|
-
* Code distributed by Google as part of the polymer project is also
|
|
181
|
-
* subject to an additional IP rights grant found at
|
|
182
|
-
* http://polymer.github.io/PATENTS.txt
|
|
183
|
-
*/
|
|
184
|
-
function Jn(e){var t=Xn.get(e.type);void 0===t&&(t={stringsArray:new WeakMap,keyString:new Map},Xn.set(e.type,t));var r=t.stringsArray.get(e.strings);if(void 0!==r)return r;var n=e.strings.join(xn);return void 0===(r=t.keyString.get(n))&&(r=new Tn(e,e.getTemplateElement()),t.keyString.set(n,r)),t.stringsArray.set(e.strings,r),r}var Xn=new Map,Qn=new WeakMap,Kn=function(e,t,r){var n=Qn.get(t);void 0===n&&(bn(t,t.firstChild),Qn.set(t,n=new zn(Object.assign({templateFactory:Jn},r))),n.appendInto(t)),n.setValue(e),n.commit()};
|
|
185
|
-
/**
|
|
186
|
-
* @license
|
|
187
|
-
* Copyright (c) 2017 The Polymer Project Authors. All rights reserved.
|
|
188
|
-
* This code may only be used under the BSD style license found at
|
|
189
|
-
* http://polymer.github.io/LICENSE.txt
|
|
190
|
-
* The complete set of authors may be found at
|
|
191
|
-
* http://polymer.github.io/AUTHORS.txt
|
|
192
|
-
* The complete set of contributors may be found at
|
|
193
|
-
* http://polymer.github.io/CONTRIBUTORS.txt
|
|
194
|
-
* Code distributed by Google as part of the polymer project is also
|
|
195
|
-
* subject to an additional IP rights grant found at
|
|
196
|
-
* http://polymer.github.io/PATENTS.txt
|
|
197
|
-
*/
|
|
198
|
-
/**
|
|
199
|
-
* @license
|
|
200
|
-
* Copyright (c) 2017 The Polymer Project Authors. All rights reserved.
|
|
201
|
-
* This code may only be used under the BSD style license found at
|
|
202
|
-
* http://polymer.github.io/LICENSE.txt
|
|
203
|
-
* The complete set of authors may be found at
|
|
204
|
-
* http://polymer.github.io/AUTHORS.txt
|
|
205
|
-
* The complete set of contributors may be found at
|
|
206
|
-
* http://polymer.github.io/CONTRIBUTORS.txt
|
|
207
|
-
* Code distributed by Google as part of the polymer project is also
|
|
208
|
-
* subject to an additional IP rights grant found at
|
|
209
|
-
* http://polymer.github.io/PATENTS.txt
|
|
210
|
-
*/
|
|
211
|
-
(window.litHtmlVersions||(window.litHtmlVersions=[])).push("1.1.2");var Zn=function(e){for(var t=arguments.length,r=new Array(t>1?t-1:0),n=1;n<t;n++)r[n-1]=arguments[n];return new Fn(e,r,"html",Gn)},$n=function(e){for(var t=arguments.length,r=new Array(t>1?t-1:0),n=1;n<t;n++)r[n-1]=arguments[n];return new On(e,r,"svg",Gn)},ei=function(e,t){var r=e.startNode.parentNode,n=void 0===t?e.endNode:t.startNode,i=r.insertBefore(In(),n);r.insertBefore(In(),n);var o=new zn(e.options);return o.insertAfterNode(i),o},ti=function(e,t){return e.setValue(t),e.commit(),e},ri=function(e,t,r){var n=e.startNode.parentNode,i=r?r.startNode:e.endNode,o=t.endNode.nextSibling;o!==i&&yn(n,t.startNode,o,i)},ni=function(e){bn(e.startNode.parentNode,e.startNode,e.endNode.nextSibling)},ii=function(e,t,r){for(var n=new Map,i=t;i<=r;i++)n.set(e[i],i);return n},oi=new WeakMap,ai=new WeakMap,si=mn((function(e,t,r){var n;return void 0===r?r=t:void 0!==t&&(n=t),function(t){if(!(t instanceof zn))throw new Error("repeat can only be used in text bindings");var i,o,a,s=oi.get(t)||[],u=ai.get(t)||[],l=[],c=[],d=[],h=0,p=ce(e);try{for(p.s();!(i=p.n()).done;){var _=i.value;d[h]=n?n(_,h):h,c[h]=r(_,h),h++}}catch(e){p.e(e)}finally{p.f()}for(var f=0,m=s.length-1,g=0,v=c.length-1;f<=m&&g<=v;)if(null===s[f])f++;else if(null===s[m])m--;else if(u[f]===d[g])l[g]=ti(s[f],c[g]),f++,g++;else if(u[m]===d[v])l[v]=ti(s[m],c[v]),m--,v--;else if(u[f]===d[v])l[v]=ti(s[f],c[v]),ri(t,s[f],l[v+1]),f++,v--;else if(u[m]===d[g])l[g]=ti(s[m],c[g]),ri(t,s[m],s[f]),m--,g++;else if(void 0===o&&(o=ii(d,g,v),a=ii(u,f,m)),o.has(u[f]))if(o.has(u[m])){var y=a.get(d[g]),b=void 0!==y?s[y]:null;if(null===b){var k=ei(t,s[f]);ti(k,c[g]),l[g]=k}else l[g]=ti(b,c[g]),ri(t,b,s[f]),s[y]=null;g++}else ni(s[m]),m--;else ni(s[f]),f++;for(;g<=v;){var w=ei(t,l[v+1]);ti(w,c[g]),l[g++]=w}for(;f<=m;){var x=s[f++];null!==x&&ni(x)}oi.set(t,l),ai.set(t,d)}})),ui=new WeakMap,li=mn((function(e){return function(t){if(!(t instanceof Rn)||t instanceof jn||"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.");var r=t.committer,n=r.element;ui.has(t)||(n.className=r.strings.join(" "));var i=n.classList,o=ui.get(t);for(var a in o)a in e||i.remove(a);for(var s in e){var u=e[s];if(!o||u!==o[s])i[u?"add":"remove"](s)}ui.set(t,e)}})),ci=new WeakMap,di=mn((function(e){return function(t){if(!(t instanceof Rn)||t instanceof jn||"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.");var r=t.committer,n=r.element.style;ci.has(t)||(n.cssText=r.strings.join(" "));var i=ci.get(t);for(var o in i)o in e||(-1===o.indexOf("-")?n[o]=null:n.removeProperty(o));for(var a in e)-1===a.indexOf("-")?n[a]=e[a]:n.setProperty(a,e[a]);ci.set(t,e)}})),hi=new WeakMap,pi=mn((function(e){return function(t){if(!(t instanceof zn))throw new Error("unsafeHTML can only be used in text bindings");var r=hi.get(t);if(void 0===r||!An(e)||e!==r.value||t.value!==r.fragment){var n=document.createElement("template");n.innerHTML=e;var i=document.importNode(n.content,!0);t.setValue(i),hi.set(t,{value:e,fragment:i})}}}));function _i(){var e=oe(["<style>","</style>",""]);return _i=function(){return e},e}var fi=function(e,t,r){var n=arguments.length>3&&void 0!==arguments[3]?arguments[3]:{},i=n.eventContext;r&&(e=Zn(_i(),r,e)),Kn(e,t,{eventContext:i})},mi=9,gi=13,vi=27,yi=32,bi=35,ki=36,wi=37,xi=38,Si=39,Ci=40,Ti=115,Pi=function(e){return(e.key?"Enter"===e.key:e.keyCode===gi)&&!zi(e)},Di=function(e){return(e.key?"Spacebar"===e.key||" "===e.key:e.keyCode===yi)&&!zi(e)},Ii=function(e){return(e.key?"ArrowLeft"===e.key||"Left"===e.key:e.keyCode===wi)&&!zi(e)},Mi=function(e){return(e.key?"ArrowRight"===e.key||"Right"===e.key:e.keyCode===Si)&&!zi(e)},Ei=function(e){return(e.key?"ArrowUp"===e.key||"Up"===e.key:e.keyCode===xi)&&!zi(e)},Bi=function(e){return(e.key?"ArrowDown"===e.key||"Down"===e.key:e.keyCode===Ci)&&!zi(e)},Fi=function(e){return(e.key?"Escape"===e.key||"Esc"===e.key:e.keyCode===vi)&&!zi(e)},Oi=function(e){return(e.key?"Tab"===e.key:e.keyCode===mi)&&!zi(e)},Ai=function(e){return(e.key?"Tab"===e.key:e.keyCode===mi)&&Ui(e,!1,!1,!0)},Ni=function(e){return e.key?Li(e)||Ri(e):e.keyCode===Ti&&!zi(e)||e.keyCode===Ci&&Ui(e,!1,!0,!1)},Li=function(e){return"F4"===e.key&&!zi(e)},Ri=function(e){return("ArrowDown"===e.key||"Down"===e.key||"ArrowUp"===e.key||"Up"===e.key)&&Ui(e,!1,!0,!1)},zi=function(e){return e.shiftKey||e.altKey||Hi(e)},Hi=function(e){return!(!e.metaKey&&!e.ctrlKey)},Ui=function(e,t,r,n){return e.shiftKey===n&&e.altKey===r&&Hi(e)===t},ji=/('')|'([^']+(?:''[^']*)*)(?:'|$)|\{([0-9]+(?:\s*,[^{}]*)?)\}|[{}]/g,Vi=function(e,t){return t=t||[],e.replace(ji,(function(e,r,n,i,o){if(r)return"'";if(n)return n.replace(/''/g,"'");if(i)return String(t[parseInt(i)]);throw new Error("[i18n]: pattern syntax error at pos ".concat(o))}))},Wi=new Map,Yi=function(){function e(t){V(this,e),this.packageName=t}return Y(e,[{key:"getText",value:function(e){if("string"==typeof e&&(e={key:e,defaultText:e}),!e||!e.key)return"";for(var t=qt(this.packageName),r=t&&t[e.key]?t[e.key]:e.defaultText||e.key,n=arguments.length,i=new Array(n>1?n-1:0),o=1;o<n;o++)i[o-1]=arguments[o];return Vi(r,i)}}]),e}(),qi=function(e){if(Wi.has(e))return Wi.get(e);var t=new Yi(e);return Wi.set(e,t),t},Gi=function(e){if(!e.ariaLabelledby)return e.ariaLabel?e.ariaLabel:void 0;var t=e.ariaLabelledby.split(" "),r=function(e){if(!(e instanceof HTMLElement))throw new Error("Argument node should be of type HTMLElement");for(var t=[HTMLHtmlElement,HTMLIFrameElement],r=!0,n=!0;e;){if("[object ShadowRoot]"===e.toString()){if(r&&(r=!1),!n&&!r)return e}else if(e.tagName&&e.tagName.indexOf("-")>-1){if(!n)return e;n=!1}else if(t.indexOf(e.constructor)>-1)return e;e=e.parentNode||e.host}}(e),n="";return t.forEach((function(e,i){var o=r.querySelector("[id='".concat(e,"']"));n+="".concat(o?o.textContent:""),i<t.length-1&&(n+=" ")})),n},Ji={Default:"Default",Positive:"Positive",Negative:"Negative",Transparent:"Transparent",Emphasized:"Emphasized"},Xi=function(e){X(r,e);var t=ne(r);function r(){return V(this,r),t.apply(this,arguments)}return Y(r,null,[{key:"isValid",value:function(e){return!!Ji[e]}}]),r}(Pr);Xi.generataTypeAcessors(Ji);var Qi=mn((function(e){return function(t){if(void 0===e&&t instanceof Rn){if(e!==t.value){var r=t.committer.name;t.committer.element.removeAttribute(r)}}else t.committer&&t.committer.element&&t.committer.element.getAttribute(t.committer.name)===e?t.setValue(kn):t.setValue(e)}}));function Ki(){var e=oe(['<span class="ui5-hidden-text">',"</span>"]);return Ki=function(){return e},e}function Zi(){var e=oe(['<ui5-icon class="ui5-button-icon" name="','" show-tooltip=',"></ui5-icon>"]);return Zi=function(){return e},e}function $i(){var e=oe(['<button type="button" class="ui5-button-root" ?disabled="','" data-sap-focus-ref dir="','" @focusout='," @focusin="," @click="," @mousedown="," @mouseup="," @keydown="," @keyup="," tabindex=",' aria-expanded="','" aria-controls="','" aria-haspopup="','" aria-label="','" title="','" part="button">','<span id="','-content" class="ui5-button-text"><bdi><slot></slot></bdi></span>',"</button> "]);return $i=function(){return e},e}var eo=function(e){return Zn($i(),e.disabled,Qi(e.effectiveDir),e._onfocusout,e._onfocusin,e._onclick,e._onmousedown,e._onmouseup,e._onkeydown,e._onkeyup,Qi(e.tabIndexValue),Qi(e.accInfo.ariaExpanded),Qi(e.accInfo.ariaControls),Qi(e.accInfo.ariaHaspopup),Qi(e.ariaLabelText),Qi(e.accInfo.title),e.icon?to(e):void 0,Qi(e._id),e.hasButtonType?ro(e):void 0)},to=function(e){return Zn(Zi(),Qi(e.icon),Qi(e.iconOnly))},ro=function(e){return Zn(Ki(),Qi(e.buttonTypeText))},no=function(e,t){for(var r=e.split("."),n=Lr("ui5-shared-resources",document.head),i=0;i<r.length;i++){var o=r[i],a=i===r.length-1;Object.prototype.hasOwnProperty.call(n,o)||(n[o]=a?t:{}),n=n[o]}return n},io=no("SVGIcons.registry",new Map),oo=no("SVGIcons.promises",new Map),ao=function(e,t){if(e.startsWith("sap-icon://")){var r=ae((e=e.replace("sap-icon://","")).split("/").reverse(),2);e=r[0],t=r[1]}return"".concat(t=t||"SAP-icons",":").concat(e)},so=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},r=t.pathData,n=t.ltr,i=t.accData,o=t.collection,a=ao(e,o);io.set(a,{pathData:r,ltr:n,accData:i})},uo=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"SAP-icons",r=ao(e,t);return io.get(r)},lo=function(){var e=j(regeneratorRuntime.mark((function e(t){var r,n,i,o=arguments;return regeneratorRuntime.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return r=o.length>1&&void 0!==o[1]?o[1]:"SAP-icons",n=ao(t,r),oo.has(r)||oo.set(r,Promise.resolve("ICON_NOT_FOUND")),e.next=5,oo.get(r);case 5:if("ICON_NOT_FOUND"!==(i=e.sent)){e.next=8;break}return e.abrupt("return",i);case 8:return e.abrupt("return",io.get(n));case 9:case"end":return e.stop()}}),e)})));return function(t){return e.apply(this,arguments)}}();function co(){var e=oe(["",'<g role="presentation"><path transform="translate(0, 512) scale(1, -1)" d="','"/></g>']);return co=function(){return e},e}function ho(){var e=oe(['<title id="','-tooltip">',"</title>"]);return ho=function(){return e},e}function po(){var e=oe(['<svg class="ui5-icon-root" tabindex="','" dir="','" viewBox="0 0 512 512" role="','" focusable="false" preserveAspectRatio="xMidYMid meet" aria-label="','" xmlns="http://www.w3.org/2000/svg" @focusin='," @focusout="," @keydown="," @keyup="," @click=",">","</svg>"]);return po=function(){return e},e}var _o=function(e){return Zn(po(),Qi(e.tabIndex),Qi(e._dir),Qi(e.role),Qi(e.accessibleNameText),e._onfocusin,e._onfocusout,e._onkeydown,e._onkeyup,e._onclick,fo(e))},fo=function(e){return $n(co(),e.hasIconTooltip?function(e){return $n(ho(),Qi(e._id),Qi(e.accessibleNameText))}(e):void 0,Qi(e.pathData))},mo=':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;}',go=":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}";Ve("@ui5/webcomponents-theme-base","sap_fiori_3",mo),Ve("@ui5/webcomponents","sap_fiori_3",go);var vo={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:{}}},yo=function(e){X(o,e);var t,r,n,i=ne(o);function o(){var e;return V(this,o),(e=i.call(this)).i18nBundle=qi("@ui5/webcomponents"),e}return Y(o,[{key:"_onfocusin",value:function(e){this.interactive&&(this.focused=!0)}},{key:"_onfocusout",value:function(e){this.focused=!1}},{key:"_onkeydown",value:function(e){this.interactive&&Pi(e)&&this.fireEvent("click")}},{key:"_onkeyup",value:function(e){this.interactive&&Di(e)&&this.fireEvent("click")}},{key:"_onclick",value:function(e){this.interactive&&(e.preventDefault(),this.fireEvent("click"))}},{key:"onBeforeRendering",value:(n=j(regeneratorRuntime.mark((function e(){var t,r;return regeneratorRuntime.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if(t=this.name){e.next=3;break}return e.abrupt("return",console.warn("Icon name property is required",this));case 3:if(r=uo(t)){e.next=8;break}return e.next=7,lo(t);case 7:r=e.sent;case 8:if("ICON_NOT_FOUND"!==r){e.next=11;break}return this.invalid=!0,e.abrupt("return",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/'.concat(t.replace("sap-icon://",""),'.js", or setup a JSON build step and import "@ui5/webcomponents-icons/dist/Assets.js".')));case 11:if(r){e.next=14;break}return this.invalid=!0,e.abrupt("return",console.warn("Required icon is not registered. Invalid icon name: ".concat(this.name)));case 14:this.pathData=r.pathData,this.accData=r.accData,this.ltr=r.ltr;case 17:case"end":return e.stop()}}),e,this)}))),function(){return n.apply(this,arguments)})},{key:"onEnterDOM",value:(r=j(regeneratorRuntime.mark((function e(){var t=this;return regeneratorRuntime.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:setTimeout((function(){t.constructor.removeGlobalStyle()}),0);case 1:case"end":return e.stop()}}),e)}))),function(){return r.apply(this,arguments)})},{key:"_dir",get:function(){if(this.effectiveDir)return this.ltr?"ltr":this.effectiveDir}},{key:"tabIndex",get:function(){return this.interactive?"0":"-1"}},{key:"role",get:function(){return this.interactive?"button":this.accessibleNameText?"img":"presentation"}},{key:"hasIconTooltip",get:function(){return this.showTooltip&&this.accessibleNameText}},{key:"accessibleNameText",get:function(){return this.accessibleName?this.accessibleName:this.i18nBundle.getText(this.accData)||void 0}}],[{key:"onDefine",value:(t=j(regeneratorRuntime.mark((function e(){return regeneratorRuntime.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return this.createGlobalStyle(),e.next=3,Jt("@ui5/webcomponents");case 3:case"end":return e.stop()}}),e,this)}))),function(){return t.apply(this,arguments)})},{key:"createGlobalStyle",value:function(){window.ShadyDOM&&(document.head.querySelector("style[data-ui5-icon-global]")||Je("ui5-icon { display: none !important; }",{"data-ui5-icon-global":""}))}},{key:"removeGlobalStyle",value:function(){if(window.ShadyDOM){var e=document.head.querySelector("style[data-ui5-icon-global]");e&&document.head.removeChild(e)}}},{key:"metadata",get:function(){return vo}},{key:"render",get:function(){return fi}},{key:"template",get:function(){return _o}},{key:"styles",get:function(){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}"}}]),o}(_n);yo.define();var bo={key:"BUSY_INDICATOR_TITLE",defaultText:"Please wait"},ko={key:"BUTTON_ARIA_TYPE_ACCEPT",defaultText:"Positive Action"},wo={key:"BUTTON_ARIA_TYPE_REJECT",defaultText:"Negative Action"},xo={key:"BUTTON_ARIA_TYPE_EMPHASIZED",defaultText:"Emphasized"},So={key:"DATEPICKER_DATE_ACC_TEXT",defaultText:"Date"},Co={key:"DATEPICKER_OPEN_ICON_TITLE",defaultText:"Open Picker"},To={key:"DELETE",defaultText:"Delete"},Po={key:"INPUT_SUGGESTIONS",defaultText:"Suggestions Available"},Do={key:"INPUT_SUGGESTIONS_TITLE",defaultText:"Select"},Io={key:"INPUT_SUGGESTIONS_ONE_HIT",defaultText:"1 result available"},Mo={key:"INPUT_SUGGESTIONS_MORE_HITS",defaultText:"{0} results are available"},Eo={key:"INPUT_SUGGESTIONS_NO_HIT",defaultText:"No results"},Bo={key:"ARIA_LABEL_LIST_ITEM_CHECKBOX",defaultText:"Multiple Selection Mode"},Fo={key:"TEXTAREA_CHARACTERS_LEFT",defaultText:"{0} characters remaining"},Oo={key:"TEXTAREA_CHARACTERS_EXCEEDED",defaultText:"{0} characters over limit"},Ao={key:"TIMEPICKER_HOURS_LABEL",defaultText:"Hours"},No={key:"TIMEPICKER_MINUTES_LABEL",defaultText:"Minutes"},Lo={key:"TIMEPICKER_SECONDS_LABEL",defaultText:"Seconds"},Ro={key:"TIMEPICKER_PERIODS_LABEL",defaultText:"AM/PM"},zo={key:"TIMEPICKER_SUBMIT_BUTTON",defaultText:"OK"},Ho={key:"TIMEPICKER_CANCEL_BUTTON",defaultText:"Cancel"},Uo={key:"VALUE_STATE_ERROR",defaultText:"Invalid entry"},jo={key:"VALUE_STATE_WARNING",defaultText:"Warning issued"},Vo={key:"VALUE_STATE_INFORMATION",defaultText:"Informative entry"},Wo={key:"VALUE_STATE_SUCCESS",defaultText:"Entry successfully validated"};Ve("@ui5/webcomponents-theme-base","sap_fiori_3",mo),Ve("@ui5/webcomponents","sap_fiori_3",go);var Yo=!1,qo=null,Go={tag:"ui5-button",languageAware:!0,properties:{design:{type:Xi,defaultValue:Xi.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:{}}},Jo=function(e){X(n,e);var t,r=ne(n);function n(){var e;return V(this,n),(e=r.call(this))._deactivate=function(){qo&&(qo.active=!1)},Yo||(document.addEventListener("mouseup",e._deactivate),Yo=!0),e.i18nBundle=qi("@ui5/webcomponents"),e}return Y(n,null,[{key:"metadata",get:function(){return Go}},{key:"styles",get:function(){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}'}},{key:"render",get:function(){return fi}},{key:"template",get:function(){return eo}}]),Y(n,[{key:"onBeforeRendering",value:function(){var e=we("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}},{key:"_onclick",value:function(e){e.isMarked="button";var t=we("FormSupport");t&&t.triggerFormSubmit(this)}},{key:"_onmousedown",value:function(e){e.isMarked="button",this.active=!0,qo=this}},{key:"_onmouseup",value:function(e){e.isMarked="button"}},{key:"_onkeydown",value:function(e){e.isMarked="button",(Di(e)||Pi(e))&&(this.active=!0)}},{key:"_onkeyup",value:function(e){(Di(e)||Pi(e))&&(this.active=!1)}},{key:"_onfocusout",value:function(e){this.active=!1,this.focused=!1}},{key:"_onfocusin",value:function(e){e.isMarked="button",this.focused=!0}},{key:"hasButtonType",get:function(){return this.design!==Xi.Default&&this.design!==Xi.Transparent}},{key:"isIconOnly",get:function(){return!Array.from(this.childNodes).filter((function(e){return e.nodeType!==Node.COMMENT_NODE})).length}},{key:"accInfo",get:function(){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}}},{key:"ariaLabelText",get:function(){return Gi(this)}},{key:"buttonTypeText",get:function(){return this.i18nBundle.getText(n.typeTextMappings()[this.design])}},{key:"tabIndexValue",get:function(){var e=this.getAttribute("tabindex");return e||(this.nonFocusable?"-1":this._tabIndex)}}],[{key:"typeTextMappings",value:function(){return{Positive:ko,Negative:wo,Emphasized:xo}}},{key:"onDefine",value:(t=j(regeneratorRuntime.mark((function e(){return regeneratorRuntime.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,Promise.all([yo.define(),Jt("@ui5/webcomponents")]);case 2:case"end":return e.stop()}}),e)}))),function(){return t.apply(this,arguments)})}]),n}(_n);Jo.define();var Xo={},Qo={WINDOWS:"win",MACINTOSH:"mac",IOS:"iOS",ANDROID:"Android"},Ko=function(){return function(){var e,t,r=navigator.userAgent;if(e=/\(([a-zA-Z ]+);\s(?:[U]?[;]?)([\D]+)((?:[\d._]*))(?:.*[)][^\d]*)([\d.]*)\s/,t=r.match(e)){if(t[0].match(/iPhone|iPad|iPod/))return t[3]=t[3].replace(/_/g,"."),{name:Qo.IOS,versionStr:t[3]};if(t[2].match(/Android/))return t[2]=t[2].replace(/\s/g,""),{name:Qo.ANDROID,versionStr:t[3]}}if(e=/\((Android)[\s]?([\d][.\d]*)?;.*Firefox\/[\d][.\d]*/,t=r.match(e))return{name:Qo.ANDROID,versionStr:3===t.length?t[2]:""}}()||function(){var e=navigator.platform;if(-1!==e.indexOf("Win")){var t=navigator.userAgent.match(/Windows NT (\d+).(\d)/i);return{name:Qo.WINDOWS,versionStr:t[1]}}return-1!==e.indexOf("Mac")?{name:Qo.MACINTOSH,versionStr:""}:null}()},Zo={INTERNET_EXPLORER:"ie",EDGE:"ed",FIREFOX:"ff",CHROME:"cr",SAFARI:"sf",ANDROID:"an"},$o=function(){var e,t,r,n=function(){var 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)||[],r={browser:t[1]||"",version:t[2]||"0"};return r[r.browser]=!0,r}(),i=navigator.userAgent,o=window.navigator;if(n.mozilla)e=/Mobile/,i.match(/Firefox\/(\d+\.\d+)/)?(r=parseFloat(RegExp.$1),t={name:Zo.FIREFOX,versionStr:"".concat(r),version:r,mozilla:!0,mobile:e.test(i)}):t={mobile:e.test(i),mozilla:!0,version:-1};else if(n.webkit){var a,s=i.toLowerCase().match(/webkit[/]([\d.]+)/);s&&(a=s[1]),e=/Mobile/;var u=i.match(/(Chrome|CriOS)\/(\d+\.\d+).\d+/),l=i.match(/FxiOS\/(\d+\.\d+)/),c=i.match(/Android .+ Version\/(\d+\.\d+)/);if(u||l||c){var d,h,p;u?(d=Zo.CHROME,p=e.test(i),h=parseFloat(u[2])):l?(d=Zo.FIREFOX,p=!0,h=parseFloat(l[1])):c&&(d=Zo.ANDROID,p=e.test(i),h=parseFloat(c[1])),t={name:d,mobile:p,versionStr:"".concat(h),version:h,webkit:!0,webkitVersion:a}}else{var _=/(Version|PhantomJS)\/(\d+\.\d+).*Safari/,f=o.standalone;if(_.test(i)){var m=_.exec(i);r=parseFloat(m[2]),t={name:Zo.SAFARI,versionStr:"".concat(r),fullscreen:!1,webview:!1,version:r,mobile:e.test(i),webkit:!0,webkitVersion:a,phantomJS:"PhantomJS"===m[1]}}else t=!/iPhone|iPad|iPod/.test(i)||/CriOS/.test(i)||/FxiOS/.test(i)||!0!==f&&!1!==f?{mobile:e.test(i),webkit:!0,webkitVersion:a,version:-1}:{name:Zo.SAFARI,version:-1,fullscreen:f,webview:!f,mobile:e.test(i),webkit:!0,webkitVersion:a}}}else n.msie||n.trident?(r=parseFloat(n.version),t={name:Zo.INTERNET_EXPLORER,versionStr:"".concat(r),version:r,msie:!0,mobile:!1}):n.edge?(r=parseFloat(n.version),t={name:Zo.EDGE,versionStr:"".concat(r),version:r,edge:!0}):t={name:"",versionStr:"",version:-1,mobile:!1};return t},ea=function(){Xo.browser=$o(),Xo.browser.BROWSER=Zo,Xo.browser.name&&Object.keys(Zo).forEach((function(e){Zo[e]===Xo.browser.name&&(Xo.browser[e.toLowerCase()]=!0)}))},ta=function(){return Xo.browser||ea(),!!Xo.browser.msie},ra=function(){Xo.support||(Xo.browser||ea(),Xo.support={},Xo.support.touch=!!("ontouchstart"in window||navigator.maxTouchPoints>0||window.DocumentTouch&&document instanceof window.DocumentTouch))},na={TABLET:"tablet",PHONE:"phone",DESKTOP:"desktop",COMBI:"combi"},ia=function(){var e=navigator.userAgent;if(Xo.os.name===Xo.os.OS.IOS)return/ipad/i.test(e);if(Xo.support||ra(),Xo.support.touch){if(Xo.os.windows&&Xo.os.version>=8)return!0;if(Xo.browser.chrome&&Xo.os.android&&Xo.os.version>=4.4)return!/Mobile Safari\/[.0-9]+/.test(e);var t=window.devicePixelRatio?window.devicePixelRatio:1;return Xo.os.android&&Xo.browser.webkit&&parseFloat(Xo.browser.webkitVersion)>537.1&&(t=1),Math.min(window.screen.width/t,window.screen.height/t)>=600}var r=/(?=android)(?=.*mobile)/i.test(e);return Xo.browser.msie&&-1!==e.indexOf("Touch")||Xo.os.android&&!r},oa=function(){var e,t,r;ra(),Xo.os||(Xo.os=Ko()||{},Xo.os.OS=Qo,Xo.os.version=Xo.os.versionStr?parseFloat(Xo.os.versionStr):-1,Xo.os.name&&Object.keys(Qo).forEach((function(e){Qo[e]===Xo.os.name&&(Xo.os[e.toLowerCase()]=!0)}))),Xo.system={},Xo.system=(e=ia(),t=Xo.os.windows&&Xo.os.version>=8,(r={}).tablet=!(!Xo.support.touch&&!t||!e),r.phone=!(!Xo.os.windows_phone&&!Xo.support.touch||e),r.desktop=!((r.tablet||r.phone)&&!t),r.combi=r.desktop&&r.tablet,r.SYSTEMTYPE=na,r),(Xo.system.tablet||Xo.system.phone)&&(Xo.browser.mobile=!0)},aa=function(){return Xo.system||oa(),Xo.system.desktop},sa=function(){return Xo.system||oa(),Xo.system.phone},ua={None:"None",Success:"Success",Warning:"Warning",Error:"Error",Information:"Information"},la=function(e){X(r,e);var t=ne(r);function r(){return V(this,r),t.apply(this,arguments)}return Y(r,null,[{key:"isValid",value:function(e){return!!ua[e]}}]),r}(Pr);la.generataTypeAcessors(ua);function ca(){var e=oe(['<label class="ui5-label-root" dir="','" @click=',' for="','"><span class="ui5-label-text-wrapper"><bdi id="','-bdi"><slot></slot></bdi></span><span class="ui5-label-required-colon"></span></label>']);return ca=function(){return e},e}so("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});var da=function(e){return Zn(ca(),Qi(e.effectiveDir),e._onclick,Qi(e.for),Qi(e._id))};Ve("@ui5/webcomponents-theme-base","sap_fiori_3",mo),Ve("@ui5/webcomponents","sap_fiori_3",go);var ha={tag:"ui5-label",properties:{required:{type:Boolean},wrap:{type:Boolean},showColon:{type:Boolean},for:{type:String}},slots:{default:{type:Node}}},pa=function(e){X(r,e);var t=ne(r);function r(){return V(this,r),t.apply(this,arguments)}return Y(r,[{key:"_onclick",value:function(){var e=document.getElementById(this.for);e&&e.focus()}}],[{key:"metadata",get:function(){return ha}},{key:"render",get:function(){return fi}},{key:"template",get:function(){return da}},{key:"styles",get:function(){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}'}}]),r}(_n);function _a(){var e=oe(['<span id="','-descr" class="ui5-hidden-text">',"</span>"]);return _a=function(){return e},e}function fa(){var e=oe(['<ui5-label id="','-label" class="ui5-checkbox-label" ?wrap="','">',"</ui5-label>"]);return fa=function(){return e},e}function ma(){var e=oe(['<ui5-icon name="accept" class="ui5-checkbox-icon"></ui5-icon>']);return ma=function(){return e},e}function ga(){var e=oe(['<div class="ui5-checkbox-root ','" role="checkbox" aria-checked="','" aria-readonly="','" aria-disabled="','" aria-label="','" aria-labelledby="','" aria-describedby="','" tabindex="','" @keydown="','" @keyup="','" @click="','" dir="','"><div id="','-CbBg" class="ui5-checkbox-inner">','<input id="',"-CB\" type='checkbox' ?checked=\"",'" ?readonly="','" ?disabled="','" data-sap-no-tab-ref/></div>',"",'<slot name="formSupport"></slot></div>']);return ga=function(){return e},e}pa.define();var va=function(e){return Zn(ga(),li(e.classes.main),Qi(e.checked),Qi(e.ariaReadonly),Qi(e.ariaDisabled),Qi(e.ariaLabel),Qi(e.ariaLabelledBy),Qi(e.ariaDescribedBy),Qi(e.tabIndex),e._onkeydown,e._onkeyup,e._onclick,Qi(e.effectiveDir),Qi(e._id),e.checked?ya():void 0,Qi(e._id),e.checked,e.readonly,e.disabled,e._label.text?ba(e):void 0,e.hasValueState?ka(e):void 0)},ya=function(e){return Zn(ma())},ba=function(e){return Zn(fa(),Qi(e._id),e._label.wrap,Qi(e._label.text))},ka=function(e){return Zn(_a(),Qi(e._id),Qi(e.valueStateText))};Ve("@ui5/webcomponents-theme-base","sap_fiori_3",mo),Ve("@ui5/webcomponents","sap_fiori_3",go);var wa={tag:"ui5-checkbox",languageAware:!0,properties:{disabled:{type:Boolean},readonly:{type:Boolean},checked:{type:Boolean},text:{type:String},valueState:{type:la,defaultValue:la.None},wrap:{type:Boolean},name:{type:String},ariaLabel:{type:String,defaultValue:void 0},_label:{type:Object}},events:{change:{}}};(function(e){X(n,e);var t,r=ne(n);function n(){var e;return V(this,n),(e=r.call(this))._label={},e.i18nBundle=qi("@ui5/webcomponents"),e}return Y(n,null,[{key:"metadata",get:function(){return wa}},{key:"render",get:function(){return fi}},{key:"template",get:function(){return va}},{key:"styles",get:function(){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)}'}}]),Y(n,[{key:"onBeforeRendering",value:function(){this.syncLabel(),this._enableFormSupport()}},{key:"syncLabel",value:function(){this._label=Object.assign({},this._label),this._label.text=this.text,this._label.wrap=this.wrap,this._label.textDirection=this.textDirection}},{key:"_enableFormSupport",value:function(){var e=we("FormSupport");e?e.syncNativeHiddenInput(this,(function(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";')}},{key:"_onclick",value:function(){this.toggle()}},{key:"_onkeydown",value:function(e){Di(e)&&e.preventDefault(),Pi(e)&&this.toggle()}},{key:"_onkeyup",value:function(e){Di(e)&&this.toggle()}},{key:"toggle",value:function(){return this.canToggle()&&(this.checked=!this.checked,this.fireEvent("change"),this.fireEvent("value-changed")),this}},{key:"canToggle",value:function(){return!(this.disabled||this.readonly)}},{key:"valueStateTextMappings",value:function(){var e=this.i18nBundle;return{Error:e.getText(Uo),Warning:e.getText(jo)}}},{key:"classes",get:function(){return{main:{"ui5-checkbox--hoverable":!this.disabled&&!this.readonly&&aa()}}}},{key:"ariaReadonly",get:function(){return this.readonly?"true":void 0}},{key:"ariaDisabled",get:function(){return this.disabled?"true":void 0}},{key:"ariaLabelledBy",get:function(){return this.text?"".concat(this._id,"-label"):void 0}},{key:"ariaDescribedBy",get:function(){return this.hasValueState?"".concat(this._id,"-descr"):void 0}},{key:"hasValueState",get:function(){return this.valueState!==la.None}},{key:"valueStateText",get:function(){return this.valueStateTextMappings()[this.valueState]}},{key:"tabIndex",get:function(){var e=this.getAttribute("tabindex");return this.disabled?void 0:e||"0"}}],[{key:"onDefine",value:(t=j(regeneratorRuntime.mark((function e(){return regeneratorRuntime.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,Promise.all([pa.define(),yo.define(),Jt("@ui5/webcomponents")]);case 2:case"end":return e.stop()}}),e)}))),function(){return t.apply(this,arguments)})}]),n})(_n).define();var xa=function(){function e(){V(this,e)}return Y(e,null,[{key:"initialize",value:function(){e.resizeObserver=new window.ResizeObserver((function(t){t.forEach((function(t){e.observedObjects.get(t.target).forEach((function(e){return e()}))}))})),e.observedObjects=new Map}},{key:"attachListener",value:function(t,r){var n=e.observedObjects,i=n.get(t)||[];i.length||e.resizeObserver.observe(t),n.set(t,[].concat(se(i),[r]))}},{key:"detachListener",value:function(t,r){var n=e.observedObjects.get(t)||[],i=n.filter((function(e){return e!==r}));!n.length||n.length===i.length&&0!==n.length||(e.observedObjects.set(t,i),i.length||e.resizeObserver.unobserve(t))}}]),e}(),Sa=function(){function e(){V(this,e)}return Y(e,null,[{key:"initialize",value:function(){e.initialized=!1,e.resizeInterval=void 0,e.resizeListeners=new Map}},{key:"attachListener",value:function(t,r){var n=e.resizeListeners.get(t),i=n?n.callbacks:[];e.resizeListeners.set(t,{width:t?t.offsetWidth:0,height:t?t.offsetHeight:0,callbacks:i.concat(r)}),e.initListener()}},{key:"initListener",value:function(){e.resizeListeners.size>0&&!e.initialized&&(e.resizeInterval=setInterval(e.checkListeners.bind(e),300))}},{key:"checkListeners",value:function(){e.resizeListeners.forEach((function(t,r){(e.checkSizes(t,r)||t&&!t._hasBeenRendered)&&(e.updateSizes(t,r.offsetWidth,r.offsetHeight),t.callbacks.forEach((function(e){return e()})),t._hasBeenRendered=!0)}))}},{key:"updateSizes",value:function(e,t,r){e.width=t,e.height=r}},{key:"checkSizes",value:function(e,t){var r=e.height,n=e.width,i=t.offsetHeight,o=t.offsetWidth;return r!==i||n!==o}},{key:"detachListener",value:function(t,r){var n=e.resizeListeners.get(t),i=n?n.callbacks:[],o=i.filter((function(e){return e!==r}));!n||i.length===o.length&&0!==i.length||(e.resizeListeners.set(t,Object.assign(n,{callbacks:o})),o.length||(n.callbacks=null,e.resizeListeners.delete(t)),0===e.resizeListeners.size&&(e.initialized=!1,clearInterval(e.resizeInterval)))}}]),e}(),Ca=function(){function e(){V(this,e)}return Y(e,null,[{key:"initialize",value:function(){e.Implementation=window.ResizeObserver?xa:Sa,e.Implementation.initialize()}},{key:"attachListener",value:function(t,r){e.Implementation.attachListener.call(e.Implementation,t,r)}},{key:"detachListener",value:function(t,r){e.Implementation.detachListener.call(e.Implementation,t,r)}},{key:"register",value:function(t,r){t.isUI5Element&&(t=t.getDomRef()),e.attachListener(t,r)}},{key:"deregister",value:function(t,r){t.isUI5Element&&(t=t.getDomRef()),e.detachListener(t,r)}}]),e}();Ca.initialize();so("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});var Ta={Text:"Text",Email:"Email",Number:"Number",Password:"Password",Tel:"Tel",URL:"URL"},Pa=function(e){X(r,e);var t=ne(r);function r(){return V(this,r),t.apply(this,arguments)}return Y(r,null,[{key:"isValid",value:function(e){return!!Ta[e]}}]),r}(Pr);Pa.generataTypeAcessors(Ta);var Da=function(e){return"SLOT"!==e.nodeName&&(e.offsetWidth<=0&&e.offsetHeight<=0||"hidden"===e.style.visibility)},Ia=/^(?:a|area)$/i,Ma=/^(?:input|select|textarea|button)$/i,Ea=function(e){if(e.disabled)return!1;var t=e.getAttribute("tabindex");return null!=t?parseInt(t)>=0:Ma.test(e.nodeName)||Ia.test(e.nodeName)&&e.href},Ba=function(e){return e.hasAttribute("data-ui5-focus-trap")},Fa=function(e){return!e||Da(e)?null:Oa(e,!0)},Oa=function e(t,r){var n,i;if(t.shadowRoot)n=r?t.shadowRoot.firstChild:t.shadowRoot.lastChild;else if(t.assignedNodes&&t.assignedNodes()){var o=t.assignedNodes();n=r?o[0]:o[o.length-1]}else n=r?t.firstChild:t.lastChild;for(;n;){var a=n;if(!(n=n.isUI5Element?n.getFocusDomRef():n))return null;if(1===n.nodeType&&!Da(n)&&!Ba(n)){if(Ea(n))return n&&"function"==typeof n.focus?n:null;if(i=e(n,r))return i&&"function"==typeof i.focus?i:null}n=r?a.nextSibling:a.previousSibling}return null};function Aa(){var e=oe(['<section style="','" class="','" role="dialog" aria-modal="','" aria-label="','" aria-labelledby="','"><span class="first-fe" data-ui5-focus-trap tabindex="0" @focusin=','></span><div style="','" class="','" @scroll="','"><slot></slot></div><span class="last-fe" data-ui5-focus-trap tabindex="0" @focusin=',"></span></section> "]);return Aa=function(){return e},e}var Na=function(e){return Zn(Aa(),di(e.styles.root),li(e.classes.root),Qi(e._ariaModal),Qi(e._ariaLabel),Qi(e._ariaLabelledBy),e.forwardToLast,di(e.styles.content),li(e.classes.content),e._scroll,e.forwardToFirst)};function La(){var e=oe(['<div class="ui5-block-layer" ?hidden=',' style="','"></div>']);return La=function(){return e},e}var Ra=function(e){return Zn(La(),e._blockLayerHidden,di(e.styles.blockLayer))},za=100,Ha=function(){for(var e=document.activeElement;e.shadowRoot&&e.shadowRoot.activeElement;)e=e.shadowRoot.activeElement;return e&&"function"==typeof e.focus?e:null},Ua=function e(t,r){var n=t;if(n.shadowRoot&&(n=Array.from(n.shadowRoot.children).find((function(e){return"style"!==e.localName}))),n===r)return!0;var i="slot"===n.localName?n.assignedNodes():n.children;return i?Array.from(i).some((function(t){return e(t,r)})):void 0},ja=function(e,t){var r,n;if(e.touches){var i=e.touches[0];r=i.clientX,n=i.clientY}else r=e.clientX,n=e.clientY;return function(e,t,r){return e>=r.left&&e<=r.right&&t>=r.top&&t<=r.bottom}(r,n,t)},Va=function(){return za+=2},Wa=[],Ya=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:[];Wa.includes(e)||Wa.push({instance:e,parentPopovers:t}),1===Wa.length&&Ja()},qa=function(e){(Wa=Wa.filter((function(t){return t!==e.instance}))).length||Xa()},Ga=function(e){Wa.length&&Fi(e)&&Wa.pop().instance.close(!0)},Ja=function(){document.addEventListener("keydown",Ga)},Xa=function(){document.removeEventListener("keydown",Ga)};Ve("@ui5/webcomponents-theme-base","sap_fiori_3",mo),Ve("@ui5/webcomponents","sap_fiori_3",go);Ve("@ui5/webcomponents-theme-base","sap_fiori_3",mo),Ve("@ui5/webcomponents","sap_fiori_3",go);var Qa={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":{}}},Ka=!1;Ka||(Je("\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":""}),Ka=!0);var Za=function(e){X(r,e);var t=ne(r);function r(){return V(this,r),t.apply(this,arguments)}return Y(r,[{key:"_scroll",value:function(e){this.fireEvent("scroll",{scrollTop:e.target.scrollTop,targetRef:e.target})}},{key:"forwardToFirst",value:function(){var e=Fa(this);e&&e.focus()}},{key:"forwardToLast",value:function(){var e,t=!(e=this)||Da(e)?null:Oa(e,!1);t&&t.focus()}},{key:"applyInitialFocus",value:function(){this.applyFocus()}},{key:"applyFocus",value:function(){var e=this.getRootNode().getElementById(this.initialFocus)||document.getElementById(this.initialFocus)||Fa(this);e&&e.focus()}},{key:"isOpen",value:function(){return this.opened}},{key:"isFocusWithin",value:function(){return e=this.shadowRoot.querySelector(".ui5-popup-root"),!!(t=Ha())&&Ua(e,t);var e,t}},{key:"open",value:function(e){!this.fireEvent("before-open",{},!0,!1)||(this.isModal&&(this.getStaticAreaItemDomRef(),this._blockLayerHidden=!1,r.blockBodyScrolling()),this._zIndex=Va(),this.style.zIndex=this._zIndex,this._focusedElementBeforeOpen=Ha(),this.show(),this._disableInitialFocus||e||this.applyInitialFocus(),this._addOpenedPopup(),this.opened=!0,this.fireEvent("after-open",{},!1,!1))}},{key:"_addOpenedPopup",value:function(){Ya(this)}},{key:"close",value:function(){var e=arguments.length>0&&void 0!==arguments[0]&&arguments[0],t=arguments.length>1&&void 0!==arguments[1]&&arguments[1],n=arguments.length>2&&void 0!==arguments[2]&&arguments[2];if(this.opened){var i=!this.fireEvent("before-close",{escPressed:e},!0,!1);i||(this.isModal&&(this._blockLayerHidden=!0,r.unblockBodyScrolling()),this.hide(),this.opened=!1,t||this._removeOpenedPopup(),this.preventFocusRestore||n||this.resetFocus(),this.fireEvent("after-close",{},!1,!1))}}},{key:"_removeOpenedPopup",value:function(){qa(this)}},{key:"resetFocus",value:function(){this._focusedElementBeforeOpen&&(this._focusedElementBeforeOpen.focus(),this._focusedElementBeforeOpen=null)}},{key:"show",value:function(){this.style.display="block"}},{key:"hide",value:function(){this.style.display="none"}},{key:"onExitDOM",value:function(){this.isOpen()&&(r.unblockBodyScrolling(),this._removeOpenedPopup())}},{key:"isModal",get:function(){}},{key:"_ariaLabelledBy",get:function(){}},{key:"_ariaModal",get:function(){}},{key:"_ariaLabel",get:function(){return this.ariaLabel||void 0}},{key:"styles",get:function(){return{root:{},content:{},blockLayer:{zIndex:this._zIndex-1}}}},{key:"classes",get:function(){return{root:{},content:{}}}}],[{key:"blockBodyScrolling",value:function(){document.body.style.top="-".concat(window.pageYOffset,"px"),document.body.classList.add("ui5-popup-scroll-blocker")}},{key:"unblockBodyScrolling",value:function(){document.body.classList.remove("ui5-popup-scroll-blocker"),window.scrollTo(0,-parseFloat(document.body.style.top)),document.body.style.top=""}},{key:"metadata",get:function(){return Qa}},{key:"render",get:function(){return fi}},{key:"styles",get:function(){return":host{min-width:1px;display:none;position:fixed}"}},{key:"template",get:function(){return Na}},{key:"staticAreaTemplate",get:function(){return Ra}},{key:"staticAreaStyles",get:function(){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}"}}]),r}(_n),$a={Left:"Left",Right:"Right",Top:"Top",Bottom:"Bottom"},es=function(e){X(r,e);var t=ne(r);function r(){return V(this,r),t.apply(this,arguments)}return Y(r,null,[{key:"isValid",value:function(e){return!!$a[e]}}]),r}(Pr);es.generataTypeAcessors($a);var ts={Center:"Center",Top:"Top",Bottom:"Bottom",Stretch:"Stretch"},rs=function(e){X(r,e);var t=ne(r);function r(){return V(this,r),t.apply(this,arguments)}return Y(r,null,[{key:"isValid",value:function(e){return!!ts[e]}}]),r}(Pr);rs.generataTypeAcessors(ts);var ns={Center:"Center",Left:"Left",Right:"Right",Stretch:"Stretch"},is=function(e){X(r,e);var t=ne(r);function r(){return V(this,r),t.apply(this,arguments)}return Y(r,null,[{key:"isValid",value:function(e){return!!ns[e]}}]),r}(Pr);is.generataTypeAcessors(ns);var os=null,as=[],ss=function(e){as.forEach((function(e){e.instance.reposition()}))},us=function(e){var t=se(Wa),r=t[t.length-1].instance.openBy;if(0!==t.length&&r)for(var n=t.length-1;-1!==n;n--){var i=t[n].instance;if(i.isModal||i.isOpenerClicked(e))return;if(ja(e,i.getBoundingClientRect()))break;i.close()}},ls=function(e){var t,r=ds(e);Ya(e,r),as.push({instance:e,parentPopovers:r}),(t=e)&&t.shadowRoot.addEventListener("scroll",ss,!0),1===as.length&&(document.body.addEventListener("scroll",ss,!0),document.addEventListener("mousedown",us),os=setInterval((function(){ss()}),300))},cs=function(e){for(var t,r=[e],n=0;n<as.length;n++){var i=as[n].parentPopovers.indexOf(e);as[n].parentPopovers.length>0&&i>-1&&r.push(as[n].instance)}for(var o=r.length-1;o>=0;o--)for(var a=0;a<as.length;a++){var s=void 0;if(r[o]===as[a].instance&&(s=a),s>=0)qa(as[s].instance),(t=as[s].instance)&&t.shadowRoot.removeEventListener("scroll",ss),as.splice(s,1)[0].instance.close(!1,!0)}as.length||(document.body.removeEventListener("scroll",ss,!0),document.removeEventListener("mousedown",us),clearInterval(os))},ds=function(e){for(var t=e.parentNode,r=[];t.parentNode;){for(var n=0;n<as.length;n++)t&&t===as[n].instance&&r.push(t);t=t.parentNode}return r};function hs(){var e=oe(['<footer class="ui5-popup-footer-root"><slot name="footer"></slot></footer>']);return hs=function(){return e},e}function ps(){var e=oe(["",""]);return ps=function(){return e},e}function _s(){var e=oe(['<h2 class="ui5-popup-header-text">',"</h2>"]);return _s=function(){return e},e}function fs(){var e=oe(['<slot name="header"></slot>']);return fs=function(){return e},e}function ms(){var e=oe(['<header class="ui5-popup-header-root" id="ui5-popup-header">',"</header>"]);return ms=function(){return e},e}function gs(){var e=oe(['<section style="','" class="','" role="dialog" aria-modal="','" aria-label="','" aria-labelledby="','"><span class="first-fe" data-ui5-focus-trap tabindex="0" @focusin=','></span><span class="ui5-popover-arrow" style="','"></span>','<div style="','" class="','" @scroll="','"><slot></slot></div>','<span class="last-fe" data-ui5-focus-trap tabindex="0" @focusin=',"></span></section> "]);return gs=function(){return e},e}var vs=function(e){return Zn(gs(),di(e.styles.root),li(e.classes.root),Qi(e._ariaModal),Qi(e._ariaLabel),Qi(e._ariaLabelledBy),e.forwardToLast,di(e.styles.arrow),e._displayHeader?ys(e):void 0,di(e.styles.content),li(e.classes.content),e._scroll,e._displayFooter?ws(e):void 0,e.forwardToFirst)},ys=function(e){return Zn(ms(),e.header.length?bs():ks(e))},bs=function(e){return Zn(fs())},ks=function(e){return Zn(_s(),Qi(e.headerText))},ws=function(e){return Zn(ps(),e.footer.length?xs():void 0)},xs=function(e){return Zn(hs())};Ve("@ui5/webcomponents-theme-base","sap_fiori_3",mo),Ve("@ui5/webcomponents","sap_fiori_3",go);var Ss=":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}";Ve("@ui5/webcomponents-theme-base","sap_fiori_3",mo),Ve("@ui5/webcomponents","sap_fiori_3",go);var Cs={tag:"ui5-popover",properties:{headerText:{type:String},placementType:{type:es,defaultValue:es.Right},horizontalAlign:{type:is,defaultValue:is.Center},verticalAlign:{type:rs,defaultValue:rs.Center},modal:{type:Boolean},noArrow:{type:Boolean},allowTargetOverlap:{type:Boolean},arrowTranslateX:{type:sn,defaultValue:0,noAttribute:!0},arrowTranslateY:{type:sn,defaultValue:0,noAttribute:!0},actualPlacementType:{type:es,defaultValue:es.Right},_maxContentHeight:{type:sn}},managedSlots:!0,slots:{header:{type:HTMLElement},footer:{type:HTMLElement}},events:{}},Ts=function(e){X(r,e);var t=ne(r);function r(){return V(this,r),t.apply(this,arguments)}return Y(r,[{key:"isOpenerClicked",value:function(e){var t=e.target;return t===this._opener||t.getFocusDomRef&&t.getFocusDomRef()===this._opener}},{key:"openBy",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]&&arguments[1];e&&!this.opened&&(this._opener=e,ie(Q(r.prototype),"open",this).call(this,t))}},{key:"_addOpenedPopup",value:function(){ls(this)}},{key:"_removeOpenedPopup",value:function(){cs(this)}},{key:"shouldCloseDueToOverflow",value:function(e,t){var r={Right:t.right,Left:t.left,Top:t.top,Bottom:t.bottom},n=function e(t){var r=t.parentElement||t.getRootNode&&t.getRootNode().host;return r.openBy&&r.isUI5Element||r.open&&r.isUI5Element||r===document.documentElement?r:e(r)}(this._opener),i=!1,o=!1;if(n.openBy){var a=n.contentDOM.getBoundingClientRect();i=t.top>a.top+a.height,o=t.top+t.height<a.top}return r[e]<0||r[e]+32>n.innerHeight||i||o}},{key:"shouldCloseDueToNoOpener",value:function(e){return 0===e.top&&0===e.bottom&&0===e.left&&0===e.right}},{key:"reposition",value:function(){this.show()}},{key:"show",value:function(){var e,t=this.popoverSize,n=this._opener.getBoundingClientRect();e=this.shouldCloseDueToNoOpener(n)&&this.isFocusWithin()?this._oldPlacement:this.calcPlacement(n,t);var i=this.horizontalAlign===is.Stretch;if(this._preventRepositionAndClose)return this.close();if(this._oldPlacement&&this._oldPlacement.left===e.left&&this._oldPlacement.top===e.top&&i)return ie(Q(r.prototype),"show",this).call(this),void(this.style.width=this._width);this._oldPlacement=e;var o=0===this._left,a=0===this._top;this.actualPlacementType=e.placementType,this.arrowTranslateX=o?e.arrowX-r.MIN_OFFSET:e.arrowX,this.arrowTranslateY=a?e.arrowY-r.MIN_OFFSET:e.arrowY,this.style.left="".concat(o?r.MIN_OFFSET:this._left,"px"),this.style.top="".concat(a?r.MIN_OFFSET:this._top,"px"),ie(Q(r.prototype),"show",this).call(this),i&&this._width&&(this.style.width=this._width)}},{key:"calcPlacement",value:function(e,t){var r=0,n=0,i=this.allowTargetOverlap,o=document.documentElement.clientWidth,a=document.documentElement.clientHeight,s=a,u="",l="",c=this.getActualPlacementType(e,t);this._preventRepositionAndClose=this.shouldCloseDueToNoOpener(e)||this.shouldCloseDueToOverflow(c,e);var d=c===es.Top||c===es.Bottom;this.horizontalAlign===is.Stretch&&d?(t.width=e.width,u="".concat(e.width,"px")):this.verticalAlign!==rs.Stretch||d||(t.height=e.height,l="".concat(e.height,"px")),this._width=u,this._height=l;var h=this.noArrow?0:8;switch(c){case es.Top:r=this.getVerticalLeft(e,t),n=Math.max(e.top-t.height-h,0),i||(s=e.top-h);break;case es.Bottom:r=this.getVerticalLeft(e,t),i?n=Math.max(Math.min(e.bottom+h,a-t.height),0):(n=e.bottom+h,s=a-e.bottom-h);break;case es.Left:r=Math.max(e.left-t.width-h,0),n=this.getHorizontalTop(e,t);break;case es.Right:r=i?Math.max(Math.min(e.left+e.width+h,o-t.width),0):e.left+e.width+h,n=this.getHorizontalTop(e,t)}d?t.width>o||r<0?r=0:r+t.width>o&&(r-=r+t.width-o):t.height>a||n<0?n=0:n+t.height>a&&(n-=n+t.height-a);var p=Math.round(s);if(this.header.length||this.headerText){var _=this.shadowRoot.querySelector(".ui5-popup-header-root")||this.shadowRoot.querySelector(".ui5-popup-header-text");_&&(p=Math.round(s-_.offsetHeight))}this._maxContentHeight=p;var f=d?e.left+e.width/2-r-t.width/2:0,m=d?0:e.top+e.height/2-n-t.height/2;return(void 0===this._left||Math.abs(this._left-r)>1.5)&&(this._left=Math.round(r)),(void 0===this._top||Math.abs(this._top-n)>1.5)&&(this._top=Math.round(n)),{arrowX:Math.round(f),arrowY:Math.round(m),top:this._top,left:this._left,placementType:c}}},{key:"fallbackPlacement",value:function(e,t,r,n){return r.left>n.width?es.Left:e-r.right>r.left?es.Right:t-r.bottom>n.height?es.Bottom:t-r.bottom<r.top?es.Top:void 0}},{key:"getActualPlacementType",value:function(e,t){var r=this.placementType,n=r,i=document.documentElement.clientWidth,o=document.documentElement.clientHeight;switch(r){case es.Top:e.top<t.height&&e.top<o-e.bottom&&(n=es.Bottom);break;case es.Bottom:o-e.bottom<t.height&&o-e.bottom<e.top&&(n=es.Top);break;case es.Left:e.left<t.width&&(n=this.fallbackPlacement(i,o,e,t)||r);break;case es.Right:i-e.right<t.width&&(n=this.fallbackPlacement(i,o,e,t)||r)}return n}},{key:"getVerticalLeft",value:function(e,t){var r;switch(this.horizontalAlign){case is.Center:case is.Stretch:r=e.left-(t.width-e.width)/2;break;case is.Left:r=e.left;break;case is.Right:r=e.right-t.width}return r}},{key:"getHorizontalTop",value:function(e,t){var r;switch(this.verticalAlign){case rs.Center:case rs.Stretch:r=e.top-(t.height-e.height)/2;break;case rs.Top:r=e.top;break;case rs.Bottom:r=e.bottom-t.height}return r}},{key:"popoverSize",get:function(){var e,t,r=this.getBoundingClientRect();return this.opened?{width:e=r.width,height:t=r.height}:(this.style.visibility="hidden",this.style.display="block",e=(r=this.getBoundingClientRect()).width,t=r.height,this.hide(),this.style.visibility="visible",{width:e,height:t})}},{key:"contentDOM",get:function(){return this.shadowRoot.querySelector(".ui5-popup-content")}},{key:"arrowDOM",get:function(){return this.shadowRoot.querySelector(".ui5-popover-arrow")}},{key:"isModal",get:function(){return this.modal}},{key:"_ariaLabelledBy",get:function(){return this.ariaLabel?void 0:"ui5-popup-header"}},{key:"_ariaModal",get:function(){return!0}},{key:"styles",get:function(){return J(J({},ie(Q(r.prototype),"styles",this)),{},{content:{"max-height":"".concat(this._maxContentHeight,"px")},arrow:{transform:"translate(".concat(this.arrowTranslateX,"px, ").concat(this.arrowTranslateY,"px)")}})}},{key:"classes",get:function(){return{root:{"ui5-popup-root":!0},content:{"ui5-popup-content":!0}}}},{key:"_displayHeader",get:function(){return!0}},{key:"_displayFooter",get:function(){return!0}}],[{key:"metadata",get:function(){return Cs}},{key:"styles",get:function(){return[Ss,'.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}']}},{key:"template",get:function(){return vs}},{key:"MIN_OFFSET",get:function(){return 10}}]),r}(Za);function Ps(){var e=oe(['<span id="','-valueStateDesc" class="ui5-hidden-text">',"</span>"]);return Ps=function(){return e},e}function Ds(){var e=oe(['<span id="','-descr" class="ui5-hidden-text">',"</span>"]);return Ds=function(){return e},e}function Is(){var e=oe(['<span id="','-suggestionsText" class="ui5-hidden-text">','</span><span id="','-selectionText" class="ui5-hidden-text" aria-live="polite" role="status"></span><span id="','-suggestionsCount" class="ui5-hidden-text" aria-live="polite">',"</span>"]);return Is=function(){return e},e}function Ms(){var e=oe(['<div class="ui5-input-icon-root"><slot name="icon"></slot></div>']);return Ms=function(){return e},e}function Es(){var e=oe(['<div class="ui5-input-root" @focusin="','" @focusout="','"><div class="ui5-input-content"><input id="','-inner" class="ui5-input-inner" type="','" inner-input ?disabled="','" ?readonly="','" ?required="','" .value="','" placeholder="','" maxlength="','" role="','" aria-owns="','" ?aria-invalid="','" aria-haspopup="','" aria-describedby="','" aria-autocomplete="','" aria-expanded="','" aria-label="','" @input="','" @change="','" @keydown="','" @keyup="','" @click=',' data-sap-no-tab-ref data-sap-focus-ref step="','" />',"","","",'</div><slot name="formSupport"></slot></div>']);return Es=function(){return e},e}Ts.define();var Bs=function(e){return Zn(Es(),e._onfocusin,e._onfocusout,Qi(e._id),Qi(e.inputType),e.disabled,e._readonly,e.required,Qi(e.value),Qi(e.placeholder),Qi(e.maxlength),Qi(e.accInfo.input.role),Qi(e.accInfo.input.ariaOwns),e.accInfo.input.ariaInvalid,Qi(e.accInfo.input.ariaHasPopup),Qi(e.accInfo.input.ariaDescribedBy),Qi(e.accInfo.input.ariaAutoComplete),Qi(e.accInfo.input.ariaExpanded),Qi(e.accInfo.input.ariaLabel),e._handleInput,e._handleChange,e._onkeydown,e._onkeyup,e._click,Qi(e.step),e.icon.length?Fs():void 0,e.showSuggestions?Os(e):void 0,e.accInfo.input.ariaDescription?As(e):void 0,e.hasValueState?Ns(e):void 0)},Fs=function(e){return Zn(Ms())},Os=function(e){return Zn(Is(),Qi(e._id),Qi(e.suggestionsText),Qi(e._id),Qi(e._id),Qi(e.availableSuggestionsCount))},As=function(e){return Zn(Ds(),Qi(e._id),Qi(e.accInfo.input.ariaDescription))},Ns=function(e){return Zn(Ps(),Qi(e._id),Qi(e.valueStateText))};function Ls(){var e=oe(["",""]);return Ls=function(){return e},e}function Rs(){var e=oe(["",""]);return Rs=function(){return e},e}function zs(){var e=oe(["",""]);return zs=function(){return e},e}function Hs(){var e=oe(['<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 ','" style="','">',"</div></ui5-popover>"]);return Hs=function(){return e},e}function Us(){var e=oe(['<div slot="footer" class="ui5-responsive-popover-footer"><ui5-button design="Transparent" @click="','">OK</ui5-button></div>']);return Us=function(){return e},e}function js(){var e=oe(['<span slot="richDescription">',"</span>"]);return js=function(){return e},e}function Vs(){var e=oe(['<ui5-li-suggestion-item image="','" icon="','" info="','" type="','" info-state="','" @ui5-_item-press="','" data-ui5-key="','">',"","</ui5-li-suggestion-item>"]);return Vs=function(){return e},e}function Ws(){var e=oe(['<ui5-li-groupheader data-ui5-key="','">',"</ui5-li-groupheader>"]);return Ws=function(){return e},e}function Ys(){var e=oe(["",""]);return Ys=function(){return e},e}function qs(){var e=oe(["",""]);return qs=function(){return e},e}function Gs(){var e=oe(["",""]);return Gs=function(){return e},e}function Js(){var e=oe(["",""]);return Js=function(){return e},e}function Xs(){var e=oe(['<div slot="header" class="ui5-responsive-popover-header ','" style=',">","</div>"]);return Xs=function(){return e},e}function Qs(){var e=oe(["",""]);return Qs=function(){return e},e}function Ks(){var e=oe(["",""]);return Ks=function(){return e},e}function Zs(){var e=oe(["",""]);return Zs=function(){return e},e}function $s(){var e=oe(["",""]);return $s=function(){return e},e}function eu(){var e=oe(['<div class="row ','" style="','">',"</div>"]);return eu=function(){return e},e}function tu(){var e=oe(['<div slot="header" class="ui5-responsive-popover-header"><div class="row"><span>','</span><ui5-button class="ui5-responsive-popover-close-btn" icon="decline" design="Transparent" @click="','"></ui5-button></div><div class="row"><div class="input-root-phone"><input class="ui5-input-inner-phone" type="','" .value="','" inner-input placeholder="','" @input="','" @change="','" /></div></div>',"</div>"]);return tu=function(){return e},e}function ru(){var e=oe(['<ui5-responsive-popover no-arrow _disable-initial-focus placement-type="Bottom" horizontal-align="Left" style="','" @ui5-after-open="','" @ui5-after-close="','" @scroll="','">',"",'<ui5-list separators="','">',"</ui5-list>","</ui5-responsive-popover>"]);return ru=function(){return e},e}function nu(){var e=oe(["",""," "]);return nu=function(){return e},e}var iu=function(e){return Zn(nu(),e.showSuggestions?ou(e):void 0,e.hasValueStateMessage?ku(e):void 0)},ou=function(e){return Zn(ru(),di(e.styles.suggestionsPopover),Qi(e._afterOpenPopover),Qi(e._afterClosePopover),e._scroll,e._isPhone?au(e):void 0,e._isPhone?void 0:du(e),Qi(e.suggestionSeparators),si(e.suggestionsTexts,(function(e,t){return e._id||t}),(function(e,t){return mu(e)})),e._isPhone?bu(e):void 0)},au=function(e){return Zn(tu(),Qi(e._headerTitleText),e._closeRespPopover,Qi(e.inputType),Qi(e.value),Qi(e.placeholder),e._handleInput,e._handleChange,e.hasValueStateMessage?su(e):void 0)},su=function(e){return Zn(eu(),li(e.classes.popoverValueState),di(e.styles.suggestionPopoverHeader),e.shouldDisplayDefaultValueStateMessage?uu(e):lu(e))},uu=function(e){return Zn($s(),Qi(e.valueStateText))},lu=function(e){return Zn(Zs(),si(e.valueStateMessageText,(function(e,t){return e._id||t}),(function(e,t){return cu(e)})))},cu=function(e,t,r){return Zn(Ks(),Qi(e))},du=function(e){return Zn(Qs(),e.hasValueStateMessage?hu(e):void 0)},hu=function(e){return Zn(Xs(),li(e.classes.popoverValueState),di(e.styles.suggestionPopoverHeader),e.shouldDisplayDefaultValueStateMessage?pu(e):_u(e))},pu=function(e){return Zn(Js(),Qi(e.valueStateText))},_u=function(e){return Zn(Gs(),si(e.valueStateMessageText,(function(e,t){return e._id||t}),(function(e,t){return fu(e)})))},fu=function(e,t,r){return Zn(qs(),Qi(e))},mu=function(e,t,r){return Zn(Ys(),e.group?gu(e):vu(e))},gu=function(e,t,r){return Zn(Ws(),Qi(e.key),pi(e.text))},vu=function(e,t,r){return Zn(Vs(),Qi(e.image),Qi(e.icon),Qi(e.info),Qi(e.type),Qi(e.infoState),Qi(e.fnOnSuggestionItemPress),Qi(e.key),pi(e.text),e.description?yu(e):void 0)},yu=function(e,t,r){return Zn(js(),pi(e.description))},bu=function(e){return Zn(Us(),e._closeRespPopover)},ku=function(e){return Zn(Hs(),li(e.classes.popoverValueState),di(e.styles.popoverHeader),e.shouldDisplayDefaultValueStateMessage?wu(e):xu(e))},wu=function(e){return Zn(zs(),Qi(e.valueStateText))},xu=function(e){return Zn(Rs(),si(e.valueStateMessageText,(function(e,t){return e._id||t}),(function(e,t){return Su(e)})))},Su=function(e,t,r){return Zn(Ls(),Qi(e))};Ve("@ui5/webcomponents-theme-base","sap_fiori_3",mo),Ve("@ui5/webcomponents","sap_fiori_3",go);Ve("@ui5/webcomponents-theme-base","sap_fiori_3",mo),Ve("@ui5/webcomponents","sap_fiori_3",go);var Cu=".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}";Ve("@ui5/webcomponents-theme-base","sap_fiori_3",mo),Ve("@ui5/webcomponents","sap_fiori_3",go);var Tu=".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)}",Pu={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:Pa,defaultValue:Pa.Text},value:{type:String},valueState:{type:la,defaultValue:la.None},name:{type:String},showSuggestions:{type:Boolean},maxlength:{type:sn},ariaLabel:{type:String},ariaLabelledby:{type:String,defaultValue:""},focused:{type:Boolean},_input:{type:Object},_inputAccInfo:{type:Object},_wrapperAccInfo:{type:Object},_inputWidth:{type:sn},_listWidth:{type:sn},_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:sn},scrollContainer:{type:HTMLElement}}}}},Du=function(e){X(c,e);var t,r,n,i,o,a,s,u,l=ne(c);function c(){var e;return V(this,c),(e=l.call(this)).hasSuggestionItemSelected=!1,e.valueBeforeItemSelection="",e.previousValue=void 0,e.firstRendering=!0,e.highlightValue="",e.EVENT_SUBMIT="submit",e.EVENT_CHANGE="change",e.EVENT_INPUT="input",e.EVENT_SUGGESTION_ITEM_SELECT="suggestion-item-select",e.ACTION_ENTER="enter",e.ACTION_USER_INPUT="input",e.suggestionsTexts=[],e.i18nBundle=qi("@ui5/webcomponents"),e._handleResizeBound=e._handleResize.bind(te(e)),e}return Y(c,null,[{key:"metadata",get:function(){return Pu}},{key:"render",get:function(){return fi}},{key:"template",get:function(){return Bs}},{key:"staticAreaTemplate",get:function(){return iu}},{key:"styles",get:function(){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)}"}},{key:"staticAreaStyles",get:function(){return[Cu,Tu]}}]),Y(c,[{key:"onEnterDOM",value:function(){Ca.register(this,this._handleResizeBound)}},{key:"onExitDOM",value:function(){Ca.deregister(this,this._handleResizeBound)}},{key:"onBeforeRendering",value:function(){this.showSuggestions&&(this.enableSuggestions(),this.suggestionsTexts=this.Suggestions.defaultSlotProperties(this.highlightValue));var e=we("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";')}},{key:"onAfterRendering",value:function(){var e=this;if(!this.firstRendering&&!sa()&&this.Suggestions){var t=this.shouldOpenSuggestions();this.updateStaticAreaItemContentDensity(),this.Suggestions.toggle(t,{preventFocusRestore:!this.hasSuggestionItemSelected}),Bt.whenFinished().then(j(regeneratorRuntime.mark((function t(){return regeneratorRuntime.wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return t.next=2,e.Suggestions._getListWidth();case 2:e._listWidth=t.sent;case 3:case"end":return t.stop()}}),t)})))),!sa()&&t&&this.inputDomRef&&this.inputDomRef.focus()}!this.firstRendering&&this.hasValueStateMessage&&this.toggle(this.shouldDisplayOnlyValueStateMessage),this.firstRendering=!1}},{key:"_onkeydown",value:function(e){return Ei(e)?this._handleUp(e):Bi(e)?this._handleDown(e):Di(e)?this._handleSpace(e):Pi(e)?this._handleEnter(e):void(this._keyDown=!0)}},{key:"_onkeyup",value:function(e){this._keyDown=!1}},{key:"_handleUp",value:function(e){this.Suggestions&&this.Suggestions.isOpened()&&this.Suggestions.onUp(e)}},{key:"_handleDown",value:function(e){this.Suggestions&&this.Suggestions.isOpened()&&this.Suggestions.onDown(e)}},{key:"_handleSpace",value:function(e){this.Suggestions&&this.Suggestions.onSpace(e)}},{key:"_handleEnter",value:function(e){!(!this.Suggestions||!this.Suggestions.onEnter(e))||this.fireEventByAction(this.ACTION_ENTER)}},{key:"_onfocusin",value:(u=j(regeneratorRuntime.mark((function e(t){return regeneratorRuntime.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return this.focused=!0,this.previousValue=this.value,e.next=4,this.getInputDOMRef();case 4:this._inputIconFocused=t.target&&t.target===this.querySelector("ui5-icon");case 5:case"end":return e.stop()}}),e,this)}))),function(e){return u.apply(this,arguments)})},{key:"_onfocusout",value:function(e){var t=this.Suggestions&&e.relatedTarget&&e.relatedTarget.shadowRoot&&e.relatedTarget.shadowRoot.contains(this.Suggestions.responsivePopover),r=e.relatedTarget&&e.relatedTarget.shadowRoot&&e.relatedTarget.shadowRoot.querySelector(".ui5-valuestatemessage-root");if(t||r)e.stopImmediatePropagation();else{var n=e.relatedTarget;n&&n.classList.contains(this._id)||(this.popover&&this.popover.close(),this.previousValue="",this.focused=!1)}}},{key:"_click",value:function(e){sa()&&!this.readonly&&this.Suggestions&&(this.updateStaticAreaItemContentDensity(),this.Suggestions.open(this),this.isRespPopoverOpen=!0)}},{key:"_handleChange",value:function(e){this.fireEvent(this.EVENT_CHANGE)}},{key:"_scroll",value:function(e){var t=e.detail;this.fireEvent("suggestion-scroll",{scrollTop:t.scrollTop,scrollContainer:t.targetRef})}},{key:"_handleInput",value:(s=j(regeneratorRuntime.mark((function e(t){return regeneratorRuntime.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,this.getInputDOMRef();case 2:t.target===this.inputDomRef&&t.stopImmediatePropagation(),!(this.inputDomRef.value===this.value&&ta()&&!this._keyDown&&this.placeholder)&&this.fireEventByAction(this.ACTION_USER_INPUT),this.hasSuggestionItemSelected=!1,this.Suggestions&&this.Suggestions.updateSelectedItemPosition(null);case 7:case"end":return e.stop()}}),e,this)}))),function(e){return s.apply(this,arguments)})},{key:"_handleResize",value:function(){this._inputWidth=this.offsetWidth}},{key:"_closeRespPopover",value:function(){this.Suggestions.close()}},{key:"_afterOpenPopover",value:(a=j(regeneratorRuntime.mark((function e(){return regeneratorRuntime.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if(!sa()){e.next=4;break}return e.next=3,this.getInputDOMRef();case 3:this.inputDomRef.focus();case 4:case"end":return e.stop()}}),e,this)}))),function(){return a.apply(this,arguments)})},{key:"_afterClosePopover",value:function(){this.announceSelectedItem(),sa()&&this.blur()}},{key:"toggle",value:function(e){e&&!this.isRespPopoverOpen?this.openPopover():this.closePopover()}},{key:"isOpen",value:function(){return!!this._isPopoverOpen}},{key:"openPopover",value:(o=j(regeneratorRuntime.mark((function e(){return regeneratorRuntime.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,this._getPopover();case 2:this.popover=e.sent,this.popover&&(this._isPopoverOpen=!0,this.popover.openBy(this));case 4:case"end":return e.stop()}}),e,this)}))),function(){return o.apply(this,arguments)})},{key:"closePopover",value:function(){this.isOpen()&&(this._isPopoverOpen=!1,this.popover&&this.popover.close())}},{key:"_getPopover",value:(i=j(regeneratorRuntime.mark((function e(){var t;return regeneratorRuntime.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,this.getStaticAreaItemDomRef();case 2:return t=e.sent,e.abrupt("return",t.querySelector("ui5-popover"));case 4:case"end":return e.stop()}}),e,this)}))),function(){return i.apply(this,arguments)})},{key:"enableSuggestions",value:function(){if(this.Suggestions)this.Suggestions.highlight=this.highlight;else{var e=we("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)}}},{key:"shouldOpenSuggestions",value:function(){return!(!(this.suggestionItems.length&&this.focused&&this.showSuggestions)||this.hasSuggestionItemSelected)}},{key:"selectSuggestion",value:function(e,t){if(!e.group){var r=e.text||e.textContent,n=t?this.valueBeforeItemSelection!==r:this.value!==r;this.hasSuggestionItemSelected=!0,this.fireEvent(this.EVENT_SUGGESTION_ITEM_SELECT,{item:e}),n&&(this.value=r,this.valueBeforeItemSelection=r,this.fireEvent(this.EVENT_INPUT),this.fireEvent(this.EVENT_CHANGE))}}},{key:"previewSuggestion",value:function(e){this.valueBeforeItemSelection=this.value,this.updateValueOnPreview(e),this.announceSelectedItem(),this._previewItem=e}},{key:"updateValueOnPreview",value:function(e){var t="Inactive"===e.type||e.group?"":e.effectiveTitle||e.textContent;this.value=t}},{key:"fireEventByAction",value:(n=j(regeneratorRuntime.mark((function e(t){var r,n,i,o,a,s;return regeneratorRuntime.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,this.getInputDOMRef();case 2:if(!this.disabled&&!this.readonly){e.next=4;break}return e.abrupt("return");case 4:return r=this.getInputValue(),n=t===this.ACTION_ENTER,i=t===this.ACTION_USER_INPUT,e.next=9,this.getInputDOMRef();case 9:if(o=e.sent,a=o.selectionStart,this.value=r,this.highlightValue=r,Xo.browser||ea(),Xo.browser.safari&&setTimeout((function(){o.selectionStart=a,o.selectionEnd=a}),0),!i){e.next=18;break}return this.fireEvent(this.EVENT_INPUT),this.fireEvent("value-changed"),e.abrupt("return");case 18:n&&this.fireEvent(this.EVENT_SUBMIT),s=void 0!==this.previousValue&&this.previousValue!==this.value,ta()&&n&&s&&this.fireEvent(this.EVENT_CHANGE);case 21:case"end":return e.stop()}}),e,this)}))),function(e){return n.apply(this,arguments)})},{key:"getInputValue",value:function(){return this.getDomRef()?this.inputDomRef.value:""}},{key:"getInputDOMRef",value:(r=j(regeneratorRuntime.mark((function e(){var t;return regeneratorRuntime.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if(!sa()||!this.Suggestions){e.next=4;break}return e.next=3,this.Suggestions._respPopover();case 3:t=this.Suggestions&&this.Suggestions.responsivePopover.querySelector(".ui5-input-inner-phone");case 4:return t||(t=this.getDomRef().querySelector("#".concat(this.getInputId()))),this.inputDomRef=t,e.abrupt("return",this.inputDomRef);case 7:case"end":return e.stop()}}),e,this)}))),function(){return r.apply(this,arguments)})},{key:"getLabelableElementId",value:function(){return this.getInputId()}},{key:"getSuggestionByListItem",value:function(e){var t=parseInt(e.getAttribute("data-ui5-key"));return this.suggestionItems[t]}},{key:"isSuggestionsScrollable",value:function(){return this.Suggestions?this.Suggestions._isScrollable():Promise.resolve(!1)}},{key:"getInputId",value:function(){return"".concat(this._id,"-inner")}},{key:"onItemFocused",value:function(){}},{key:"onItemMouseOver",value:function(e){var t=e.target,r=this.getSuggestionByListItem(t);r&&r.fireEvent("mouseover",{item:r,targetRef:t})}},{key:"onItemMouseOut",value:function(e){var t=e.target,r=this.getSuggestionByListItem(t);r&&r.fireEvent("mouseout",{item:r,targetRef:t})}},{key:"onItemSelected",value:function(e,t){this.selectSuggestion(e,t)}},{key:"onItemPreviewed",value:function(e){this.previewSuggestion(e),this.fireEvent("suggestion-item-preview",{item:this.getSuggestionByListItem(e),targetRef:e})}},{key:"onOpen",value:function(){}},{key:"onClose",value:function(){}},{key:"valueStateTextMappings",value:function(){var e=this.i18nBundle;return{Success:e.getText(Wo),Information:e.getText(Vo),Error:e.getText(Uo),Warning:e.getText(jo)}}},{key:"announceSelectedItem",value:function(){var e=this.shadowRoot.querySelector("#".concat(this._id,"-selectionText"));this.Suggestions&&this.Suggestions._isItemOnTarget()?e.textContent=this.itemSelectionAnnounce:e.textContent=""}},{key:"previewItem",get:function(){return this._previewItem?this.getSuggestionByListItem(this._previewItem):null}},{key:"_readonly",get:function(){return this.readonly&&!this.disabled}},{key:"_headerTitleText",get:function(){return this.i18nBundle.getText(Do)}},{key:"inputType",get:function(){return this.type.toLowerCase()}},{key:"suggestionsTextId",get:function(){return this.showSuggestions?"".concat(this._id,"-suggestionsText"):""}},{key:"valueStateTextId",get:function(){return this.hasValueState?"".concat(this._id,"-valueStateDesc"):""}},{key:"accInfo",get:function(){var e=this.showSuggestions?"true":void 0,t=this.showSuggestions?"list":void 0;return{wrapper:{},input:{ariaDescribedBy:this._inputAccInfo.ariaDescribedBy?"".concat(this.suggestionsTextId," ").concat(this.valueStateTextId," ").concat(this._id,"-suggestionsCount ").concat(this._inputAccInfo.ariaDescribedBy).trim():"".concat(this.suggestionsTextId," ").concat(this.valueStateTextId," ").concat(this._id,"-suggestionsCount").trim(),ariaInvalid:this.valueState===la.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:Gi(this)}}}},{key:"itemSelectionAnnounce",get:function(){return this.Suggestions?this.Suggestions.itemSelectionAnnounce:void 0}},{key:"classes",get:function(){return{popoverValueState:{"ui5-valuestatemessage-root":!0,"ui5-valuestatemessage--success":this.valueState===la.Success,"ui5-valuestatemessage--error":this.valueState===la.Error,"ui5-valuestatemessage--warning":this.valueState===la.Warning,"ui5-valuestatemessage--information":this.valueState===la.Information}}}},{key:"styles",get:function(){return{popoverHeader:{width:"".concat(this._inputWidth,"px")},suggestionPopoverHeader:{display:0===this._listWidth?"none":"inline-block",width:"".concat(this._listWidth,"px"),padding:"0.5625rem 1rem"},suggestionsPopover:{"max-width":"".concat(this._inputWidth,"px")}}}},{key:"suggestionSeparators",get:function(){return"None"}},{key:"valueStateMessageText",get:function(){return this.getSlottedNodes("valueStateMessage").map((function(e){return e.cloneNode(!0)}))}},{key:"shouldDisplayOnlyValueStateMessage",get:function(){return this.hasValueStateMessage&&!this.shouldOpenSuggestions()&&this.focused}},{key:"shouldDisplayDefaultValueStateMessage",get:function(){return!this.valueStateMessage.length&&this.hasValueStateMessage}},{key:"hasValueState",get:function(){return this.valueState!==la.None}},{key:"hasValueStateMessage",get:function(){return this.hasValueState&&this.valueState!==la.Success&&(!this._inputIconFocused||this._isPhone&&this.Suggestions)}},{key:"valueStateText",get:function(){return this.valueStateTextMappings()[this.valueState]}},{key:"suggestionsText",get:function(){return this.i18nBundle.getText(Po)}},{key:"availableSuggestionsCount",get:function(){if(this.showSuggestions)switch(this.suggestionsTexts.length){case 0:return this.i18nBundle.getText(Eo);case 1:return this.i18nBundle.getText(Io);default:return this.i18nBundle.getText(Mo,this.suggestionsTexts.length)}}},{key:"step",get:function(){return this.type===Pa.Number?"any":void 0}},{key:"_isPhone",get:function(){return sa()}}],[{key:"onDefine",value:(t=j(regeneratorRuntime.mark((function e(){return regeneratorRuntime.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,Promise.all([Ts.define(),Jt("@ui5/webcomponents")]);case 2:case"end":return e.stop()}}),e)}))),function(){return t.apply(this,arguments)})}]),c}(_n);Du.define();var Iu,Mu=new Map,Eu={},Bu={},Fu=function(e){return"https://ui5.sap.com/1.60.2/resources/sap/ui/core/cldr/".concat(e,".json")},Ou={iw:"he",ji:"yi",in:"id",sh:"sr"},Au=function(e,t,r){"no"===(e=e&&Ou[e]||e)&&(e="nb"),"zh"!==e||t||("Hans"===r?t="CN":"Hant"===r&&(t="TW"));var n="".concat(e,"_").concat(t);return Pe.includes(n)||(n=e),Pe.includes(n)||(n=Te),n},Nu=function(e,t){Mu.set(e,t)},Lu=function(){var e=j(regeneratorRuntime.mark((function e(t,r,n){var i,o,a,s,u;return regeneratorRuntime.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if(Fu&&Pe.filter((function(e){return!Eu[e]&&!Bu[e]})).forEach((function(e){Bu[e]=Fu(e)})),i=Au(t,r,n),o=Eu[i],a=Bu[i],s=we("OpenUI5Support"),!o&&s&&(o=s.getLocaleDataObject()),!o){e.next=10;break}Nu("sap/ui/core/cldr/".concat(i,".json"),o),e.next=15;break;case 10:if(!a){e.next=15;break}return e.next=13,Re(a);case 13:u=e.sent,Nu("sap/ui/core/cldr/".concat(i,".json"),u);case 15:case"end":return e.stop()}}),e)})));return function(t,r,n){return e.apply(this,arguments)}}(),Ru={Gregorian:"Gregorian",Islamic:"Islamic",Japanese:"Japanese",Buddhist:"Buddhist",Persian:"Persian"},zu=function(e){X(r,e);var t=ne(r);function r(){return V(this,r),t.apply(this,arguments)}return Y(r,null,[{key:"isValid",value:function(e){return!!Ru[e]}}]),r}(Pr);zu.generataTypeAcessors(Ru);var Hu=function(){return void 0===Iu&&(Fe(),Iu=Ie.calendarType),zu.isValid(Iu)?Iu:zu.Gregorian},Uu=function(){},ju={getFormatLocale:Lt,getLegacyDateFormat:Uu,getLegacyDateCalendarCustomizing:Uu,getCustomLocaleData:Uu},Vu={getLanguage:Ft,getCalendarType:Hu,getSupportedLanguages:function(){return Xr("$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:Uu,getFormatSettings:function(){return ju}},Wu={getConfiguration:function(){return Vu},getLibraryResourceBundle:void 0,getFormatSettings:function(){return ju}},Yu={},qu=Yu.hasOwnProperty,Gu=Yu.toString,Ju=qu.toString,Xu=Ju.call(Object),Qu=function(e){var t,r;return!(!e||"[object Object]"!==Gu.call(e))&&(!(t=Object.getPrototypeOf(e))||"function"==typeof(r=qu.call(t,"constructor")&&t.constructor)&&Ju.call(r)===Xu)},Ku=Object.create(null),Zu=function e(){var t,r,n,i,o,a,s=arguments[2]||{},u=3,l=arguments.length,c=arguments[0]||!1,d=arguments[1]?void 0:Ku;for("object"!==H(s)&&"function"!=typeof s&&(s={});u<l;u++)if(null!=(o=arguments[u]))for(i in o)t=s[i],n=o[i],"__proto__"!==i&&s!==n&&(c&&n&&(Qu(n)||(r=Array.isArray(n)))?(r?(r=!1,a=t&&Array.isArray(t)?t:[]):a=t&&Qu(t)?t:{},s[i]=e(c,arguments[1],a,n)):n!==d&&(s[i]=n));return s},$u=function(){var e=[!1,!0];return e.push.apply(e,arguments),Zu.apply(null,e)},el={Gregorian:"Gregorian",Islamic:"Islamic",Japanese:"Japanese",Persian:"Persian",Buddhist:"Buddhist"},tl=function(e){var t=Mu.get(e);if(t)return t;var r=e.match(/sap\/ui\/core\/cldr\/(\w+)\.json/);if(r)throw new Error("CLDR data for locale ".concat(r[1]," is not loaded!"));throw new Error("Unknown module ".concat(e))},rl=mr.extend("sap.ui.core.LocaleData",{constructor:function(e){this.oLocale=e,mr.apply(this),this.mData=function(e){var t,r=e.getLanguage()||"",n=e.getScript()||"",i=e.getRegion()||"";function o(e){if(!(ul[e]||sl&&!0!==sl[e])){var t=ul[e]=tl("sap/ui/core/cldr/"+e+".json",{dataType:"json",failOnError:!1});t&&t.__fallbackLocale&&(!function e(t,r){var n,i,o;if(r)for(n in r)r.hasOwnProperty(n)&&(i=t[n],o=r[n],void 0===i?t[n]=o:null===i?delete t[n]:"object"===H(i)&&"object"===H(o)&&e(i,o))}(t,o(t.__fallbackLocale)),delete t.__fallbackLocale)}return ul[e]}"no"===(r=r&&al[r]||r)&&(r="nb");"zh"!==r||i||("Hans"===n?i="CN":"Hant"===n&&(i="TW"));var a=r+"_"+i;r&&i&&(t=o(a));!t&&r&&(t=o(r));return ul[a]=t||ol,ul[a]}(e)},_get:function(){return this._getDeep(this.mData,arguments)},_getMerged:function(){return this._get.apply(this,arguments)},_getDeep:function(e,t){for(var r=e,n=0;n<t.length&&void 0!==(r=r[t[n]]);n++);return r},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 pr("narrow"==e||"abbreviated"==e||"wide"==e,"sWidth must be narrow, abbreviated or wide"),this._get(ll(t),"months","format",e)},getMonthsStandAlone:function(e,t){return pr("narrow"==e||"abbreviated"==e||"wide"==e,"sWidth must be narrow, abbreviated or wide"),this._get(ll(t),"months","stand-alone",e)},getDays:function(e,t){return pr("narrow"==e||"abbreviated"==e||"wide"==e||"short"==e,"sWidth must be narrow, abbreviate, wide or short"),this._get(ll(t),"days","format",e)},getDaysStandAlone:function(e,t){return pr("narrow"==e||"abbreviated"==e||"wide"==e||"short"==e,"sWidth must be narrow, abbreviated, wide or short"),this._get(ll(t),"days","stand-alone",e)},getQuarters:function(e,t){return pr("narrow"==e||"abbreviated"==e||"wide"==e,"sWidth must be narrow, abbreviated or wide"),this._get(ll(t),"quarters","format",e)},getQuartersStandAlone:function(e,t){return pr("narrow"==e||"abbreviated"==e||"wide"==e,"sWidth must be narrow, abbreviated or wide"),this._get(ll(t),"quarters","stand-alone",e)},getDayPeriods:function(e,t){return pr("narrow"==e||"abbreviated"==e||"wide"==e,"sWidth must be narrow, abbreviated or wide"),this._get(ll(t),"dayPeriods","format",e)},getDayPeriodsStandAlone:function(e,t){return pr("narrow"==e||"abbreviated"==e||"wide"==e,"sWidth must be narrow, abbreviated or wide"),this._get(ll(t),"dayPeriods","stand-alone",e)},getDatePattern:function(e,t){return pr("short"==e||"medium"==e||"long"==e||"full"==e,"sStyle must be short, medium, long or full"),this._get(ll(t),"dateFormats",e)},getTimePattern:function(e,t){return pr("short"==e||"medium"==e||"long"==e||"full"==e,"sStyle must be short, medium, long or full"),this._get(ll(t),"timeFormats",e)},getDateTimePattern:function(e,t){return pr("short"==e||"medium"==e||"long"==e||"full"==e,"sStyle must be short, medium, long or full"),this._get(ll(t),"dateTimeFormats",e)},getCombinedDateTimePattern:function(e,t,r){pr("short"==e||"medium"==e||"long"==e||"full"==e,"sStyle must be short, medium, long or full"),pr("short"==t||"medium"==t||"long"==t||"full"==t,"sStyle must be short, medium, long or full");var n=this.getDateTimePattern(e,r),i=this.getDatePattern(e,r),o=this.getTimePattern(t,r);return n.replace("{0}",o).replace("{1}",i)},getCustomDateTimePattern:function(e,t){var r=this._get(ll(t),"dateTimeFormats","availableFormats");return this._getFormatPattern(e,r,t)},getIntervalPattern:function(e,t){var r,n,i,o,a,s=this._get(ll(t),"dateTimeFormats","intervalFormats");return e&&(n=(r=e.split("-"))[0],i=r[1],(o=s[n])&&(a=o[i]))?a:s.intervalFormatFallback},getCombinedIntervalPattern:function(e,t){return this._get(ll(t),"dateTimeFormats","intervalFormats").intervalFormatFallback.replace(/\{(0|1)\}/g,e)},getCustomIntervalPattern:function(e,t,r){var n=this._get(ll(r),"dateTimeFormats","intervalFormats");return this._getFormatPattern(e,n,r,t)},_getFormatPattern:function(e,t,r,n){var i,o,a;if(n?"string"==typeof n&&("j"!=n&&"J"!=n||(n=this.getPreferredHourSymbol()),a=t[e],i=a&&a[n]):i=t[e],i){if("object"!==H(i))return i;o=Object.keys(i).map((function(e){return i[e]}))}return o||(o=this._createFormatPattern(e,t,r,n)),o&&1===o.length?o[0]:o},_createFormatPattern:function(e,t,r,n){var i,o,a,s,u,l,c,d,h,p,_,f=this._parseSkeletonFormat(e),m=this._findBestMatch(f,e,t),g=/^([GyYqQMLwWEecdD]+)([hHkKjJmszZvVOXx]+)$/;if(n){if("string"==typeof n)(h=il[n]?il[n].group:"")&&(p=nl[h].index>f[f.length-1].index),d=n;else{for(p=!0,"y"===f[0].symbol&&m&&m.pattern.G&&(s=il.G,u=nl[s.group],f.splice(0,0,{symbol:"G",group:s.group,match:s.match,index:u.index,field:u.field,length:1})),_=f.length-1;_>=0;_--)if(n[(o=f[_]).group]){p=!1;break}for(_=0;_<f.length;_++)if(n[(o=f[_]).group]){d=o.symbol;break}"h"!=d&&"K"!=d||!n.DayPeriod||(d="a")}if(p)return[this.getCustomDateTimePattern(e,r)];m&&0===m.missingTokens.length&&(l=m.pattern[d])&&m.distance>0&&(l=this._expandFields(l,m.patternTokens,f)),l||(a=this._get(ll(r),"dateTimeFormats","availableFormats"),g.test(e)&&"ahHkKjJms".indexOf(d)>=0?l=this._getMixedFormatPattern(e,a,r,n):(c=this._getFormatPattern(e,a,r),l=this.getCombinedIntervalPattern(c,r))),i=[l]}else if(m){if("string"==typeof m.pattern)i=[m.pattern];else if("object"===H(m.pattern))for(var v in i=[],m.pattern)l=m.pattern[v],i.push(l);m.distance>0&&(m.missingTokens.length>0?g.test(e)?i=[this._getMixedFormatPattern(e,t,r)]:(i=this._expandFields(i,m.patternTokens,f),i=this._appendItems(i,m.missingTokens,r)):i=this._expandFields(i,m.patternTokens,f))}else i=[l=e];return e.indexOf("J")>=0&&i.forEach((function(e,t){i[t]=e.replace(/ ?[abB](?=([^']*'[^']*')*[^']*)$/g,"")})),i},_parseSkeletonFormat:function(e){for(var t,r,n,i=[],o={index:-1},a=0;a<e.length;a++)if("j"!=(t=e.charAt(a))&&"J"!=t||(t=this.getPreferredHourSymbol()),t!=o.symbol){if(r=il[t],n=nl[r.group],"Other"==r.group||n.diffOnly)throw new Error("Symbol '"+t+"' is not allowed in skeleton format '"+e+"'");if(n.index<=o.index)throw new Error("Symbol '"+t+"' at wrong position or duplicate in skeleton format '"+e+"'");o={symbol:t,group:r.group,match:r.match,index:n.index,field:n.field,length:1},i.push(o)}else o.length++;return i},_findBestMatch:function(e,t,r){var n,i,o,a,s,u,l,c,d,h,p={distance:1e4,firstDiffPos:-1};for(var _ in r)if(!("intervalFormatFallback"===_||_.indexOf("B")>-1||(n=this._parseSkeletonFormat(_),u=0,i=[],l=!0,e.length<n.length))){s=0,c=e.length;for(var f=0;f<e.length;f++){if(o=e[f],a=n[s],c===e.length&&(c=f),a){if(d=il[o.symbol],h=il[a.symbol],o.symbol===a.symbol){o.length===a.length?c===f&&(c=e.length):(o.length<d.numericCeiling?a.length<h.numericCeiling:a.length>=h.numericCeiling)?u+=Math.abs(o.length-a.length):u+=5,s++;continue}if(o.match==a.match){u+=Math.abs(o.length-a.length)+10,s++;continue}}i.push(o),u+=50-f}s<n.length&&(l=!1),l&&(u<p.distance||u===p.distance&&c>p.firstDiffPos)&&(p.distance=u,p.firstDiffPos=c,p.missingTokens=i,p.pattern=r[_],p.patternTokens=n)}if(p.pattern)return p},_expandFields:function(e,t,r){var n="string"==typeof e,i=(n?[e]:e).map((function(e){var n,i,o,a,s,u,l,c,d={},h={},p="",_=!1,f=0;for(r.forEach((function(e){d[e.group]=e})),t.forEach((function(e){h[e.group]=e}));f<e.length;){if(c=e.charAt(f),_)p+=c,"'"==c&&(_=!1);else if((l=il[c])&&d[l.group]&&h[l.group]){for(s=d[l.group],u=h[l.group],n=s.length,o=u.length,i=1;e.charAt(f+1)==c;)f++,i++;a=n===o||(n<l.numericCeiling?i>=l.numericCeiling:i<l.numericCeiling)?i:Math.max(i,n);for(var m=0;m<a;m++)p+=c}else p+=c,"'"==c&&(_=!0);f++}return p}));return n?i[0]:i},_appendItems:function(e,t,r){var n=this._get(ll(r),"dateTimeFormats","appendItems");return e.forEach(function(r,i){var o,a,s;t.forEach(function(t){a=n[t.group],o="'"+this.getDisplayName(t.field)+"'",s="";for(var u=0;u<t.length;u++)s+=t.symbol;e[i]=a.replace(/\{0\}/,r).replace(/\{1\}/,s).replace(/\{2\}/,o)}.bind(this))}.bind(this)),e},_getMixedFormatPattern:function(e,t,r,n){var i,o,a,s,u,l;return o=(i=/^([GyYqQMLwWEecdD]+)([hHkKjJmszZvVOXx]+)$/.exec(e))[1],a=i[2],u=this._getFormatPattern(o,t,r),l=n?this.getCustomIntervalPattern(a,n,r):this._getFormatPattern(a,t,r),s=/MMMM|LLLL/.test(o)?/E|e|c/.test(o)?"full":"long":/MMM|LLL/.test(o)?"medium":"short",this.getDateTimePattern(s,r).replace(/\{1\}/,u).replace(/\{0\}/,l)},getNumberSymbol:function(e){return pr("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 pr("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 pr("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 r=this._get("currencyDigits",e);return null==r&&null==(r=this._get("currencyDigits","DEFAULT"))&&(r=2),r},getCurrencySymbol:function(e){var t=this.getCurrencySymbols();return t&&t[e]||e},getCurrencyCodeBySymbol:function(e){var t,r=this._get("currencySymbols");for(t in r)if(r[t]===e)return t;return e},getCurrencySymbols:function(){var e,t=this._get("currency"),r={};for(var n in t)e=t[n].isoCode,t[n].symbol?r[n]=t[n].symbol:e&&(r[n]=this._get("currencySymbols")[e]);return Object.assign({},this._get("currencySymbols"),r)},getUnitDisplayName:function(e){var t=this.getUnitFormat(e);return t&&t.displayName||""},getRelativePatterns:function(e,t){void 0===t&&(t="wide"),pr("wide"===t||"short"===t||"narrow"===t,"sStyle is only allowed to be set with 'wide', 'short' or 'narrow'");var r,n,i,o,a=[],s=this.getPluralCategories();return e||(e=["year","month","week","day","hour","minute","second"]),e.forEach(function(e){for(var u in r=this._get("dateFields",e+"-"+t))0===u.indexOf("relative-type-")?(i=parseInt(u.substr(14)),a.push({scale:e,value:i,pattern:r[u]})):0==u.indexOf("relativeTime-type-")&&(n=r[u],o="past"===u.substr(18)?-1:1,s.forEach((function(t){a.push({scale:e,sign:o,pattern:n["relativeTimePattern-count-"+t]})})))}.bind(this)),a},getRelativePattern:function(e,t,r,n){var i,o;return"string"==typeof r&&(n=r,r=void 0),void 0===r&&(r=t>0),void 0===n&&(n="wide"),pr("wide"===n||"short"===n||"narrow"===n,"sStyle is only allowed to be set with 'wide', 'short' or 'narrow'"),o=e+"-"+n,0!==t&&-2!==t&&2!==t||(i=this._get("dateFields",o,"relative-type-"+t)),i||(i=this._get("dateFields",o,"relativeTime-type-"+(r?"future":"past"))["relativeTimePattern-count-"+this.getPluralCategory(Math.abs(t).toString())]),i},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){pr("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"),pr("wide"===t||"short"===t||"narrow"===t,"sStyle is only allowed to be set with 'wide', 'short' or 'narrow'");var r=-1===["era","weekday","zone"].indexOf(e)?e+"-"+t:e;return this._get("dateFields",r,"displayName")},getRelativeYear:function(e,t){return this.getRelativePattern("year",e,t)},getDecimalFormat:function(e,t,r){var n,i;switch(e){case"long":i=this._get("decimalFormat-long");break;default:i=this._get("decimalFormat-short")}if(i){var o=t+"-"+r;(n=i[o])||(n=i[o=t+"-other"])}return n},getCurrencyFormat:function(e,t,r){var n,i=this._get("currencyFormat-"+e);if(!i){if("sap-short"===e)throw new Error('Failed to get CLDR data for property "currencyFormat-sap-short"');i=this._get("currencyFormat-short")}if(i){var o=t+"-"+r;(n=i[o])||(n=i[o=t+"-other"])}return n},getListFormat:function(e,t){var r=this._get("listPattern-"+(e||"standard")+"-"+(t||"wide"));return r||{}},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){pr("wide"==e||"abbreviated"==e||"narrow"==e,"sWidth must be wide, abbreviate or narrow");var r=this._get(ll(t),"era-"+e),n=[];for(var i in r)n[parseInt(i)]=r[i];return n},getEraDates:function(e){var t=this._get("eras-"+e.toLowerCase()),r=[];for(var n in t)r[parseInt(n)]=t[n];return r},getCalendarWeek:function(e,t){pr("wide"==e||"narrow"==e,"sStyle must be wide or narrow");var r="date.week.calendarweek."+e;return Wu.getLibraryResourceBundle("sap.ui.core",this.oLocale.toString()).getText(r,t)},getPreferredCalendarType:function(){var e,t,r,n=this._get("calendarPreference"),i=n?n.split(" "):[];for(r=0;r<i.length;r++)for(t in e=i[r].split("-")[0],el)if(e===t.toLowerCase())return t;return el.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 r in"number"==typeof e&&(e=e.toString()),this._pluralTest||(this._pluralTest={}),t){var n=this._pluralTest[r];if(n||(n=this._parsePluralRule(t[r]),this._pluralTest[r]=n),n(e))return r}return"other"},_parsePluralRule:function(e){var t,r=",",n=0;function i(e){return t[n]===e&&(n++,!0)}function o(){var e=t[n];return n++,e}t=e.split(" ");var a=function e(){var t,n;return t=function e(){var t,n;if(t=function(){var e,t,n;if(e=function(){var e;if(e=function(){if(i("n"))return function(e){return e.n};if(i("i"))return function(e){return e.i};if(i("f"))return function(e){return e.f};if(i("t"))return function(e){return e.t};if(i("v"))return function(e){return e.v};if(i("w"))return function(e){return e.w};throw new Error("Unknown operand: "+o())}(),i("%")){var t=parseInt(o());return function(r){return e(r)%t}}return e}(),i("="))n=!0;else{if(!i("!="))throw new Error("Expected '=' or '!='");n=!1}return t=function(){var e,t,n,i=[];return o().split(r).forEach((function(r){if(1===(e=r.split("..")).length)i.push(parseInt(r));else{t=parseInt(e[0]),n=parseInt(e[1]);for(var o=t;o<=n;o++)i.push(o)}})),function(e){return i}}(),n?function(r){return t(r).indexOf(e(r))>=0}:function(r){return-1===t(r).indexOf(e(r))}}(),i("and"))return n=e(),function(e){return t(e)&&n(e)};return t}(),i("or")?(n=e(),function(e){return t(e)||n(e)}):t}();if(n!=t.length)throw new Error("Not completely parsed");return function(e){var t,r,n,i,o=e.indexOf(".");return-1===o?(t=e,r="",n=""):(t=e.substr(0,o),n=(r=e.substr(o+1)).replace(/0+$/,"")),i={n:parseFloat(e),i:parseInt(t),v:r.length,w:n.length,f:parseInt(r),t:parseInt(n)},a(i)}}}),nl={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}},il={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}},ol={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"}}}},al={iw:"he",ji:"yi",in:"id",sh:"sr"},sl=function(){var e,t=vr._cldrLocales,r={};if(t)for(e=0;e<t.length;e++)r[t[e]]=!0;return r}(),ul={};function ll(e){return e||(e=Wu.getConfiguration().getCalendarType()),"ca-"+e.toLowerCase()}var cl=rl.extend("sap.ui.core.CustomLocaleData",{constructor:function(e){rl.apply(this,arguments),this.mCustomData=Wu.getConfiguration().getFormatSettings().getCustomLocaleData()},_get:function(){var e,t=Array.prototype.slice.call(arguments);0==t[0].indexOf("ca-")&&t[0]==ll()&&(t=t.slice(1)),e=t.join("-");var r=this.mCustomData[e];return null==r&&null==(r=this._getDeep(this.mCustomData,arguments))&&(r=this._getDeep(this.mData,arguments)),r},_getMerged:function(){var e=this._getDeep(this.mData,arguments),t=this._getDeep(this.mCustomData,arguments);return $u({},e,t)}});rl.getInstance=function(e){return e.hasPrivateUseSubtag("sapufmt")?new cl(e):new rl(e)};var dl=new Map,hl=function(e){if(!dl.has(e))throw new Error("Required calendar type: "+e+" not loaded.");return dl.get(e)},pl=function(e,t){dl.set(e,t)},_l=mr.extend("sap.ui.core.date.UniversalDate",{constructor:function(){var e=_l.getClass();return this.createDate(e,arguments)}});_l.UTC=function(){var e=_l.getClass();return e.UTC.apply(e,arguments)},_l.now=function(){return Date.now()},_l.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])}},_l.getInstance=function(e,t){var r,n;return e instanceof _l&&(e=e.getJSDate()),t||(t=Wu.getConfiguration().getCalendarType()),r=_l.getClass(t),(n=Object.create(r.prototype)).oDate=e,n.sCalendarType=t,n},_l.getClass=function(e){return e||(e=Wu.getConfiguration().getCalendarType()),hl(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){_l.prototype[e]=function(){return this.oDate[e].apply(this.oDate,arguments)}})),_l.prototype.getJSDate=function(){return this.oDate},_l.prototype.getCalendarType=function(){return this.sCalendarType},_l.prototype.getEra=function(){return _l.getEraByDate(this.sCalendarType,this.oDate.getFullYear(),this.oDate.getMonth(),this.oDate.getDate())},_l.prototype.setEra=function(e){},_l.prototype.getUTCEra=function(){return _l.getEraByDate(this.sCalendarType,this.oDate.getUTCFullYear(),this.oDate.getUTCMonth(),this.oDate.getUTCDate())},_l.prototype.setUTCEra=function(e){},_l.prototype.getWeek=function(){return _l.getWeekByDate(this.sCalendarType,this.getFullYear(),this.getMonth(),this.getDate())},_l.prototype.setWeek=function(e){var t=_l.getFirstDateOfWeek(this.sCalendarType,e.year||this.getFullYear(),e.week);this.setFullYear(t.year,t.month,t.day)},_l.prototype.getUTCWeek=function(){return _l.getWeekByDate(this.sCalendarType,this.getUTCFullYear(),this.getUTCMonth(),this.getUTCDate())},_l.prototype.setUTCWeek=function(e){var t=_l.getFirstDateOfWeek(this.sCalendarType,e.year||this.getFullYear(),e.week);this.setUTCFullYear(t.year,t.month,t.day)},_l.prototype.getQuarter=function(){return Math.floor(this.getMonth()/3)},_l.prototype.getUTCQuarter=function(){return Math.floor(this.getUTCMonth()/3)},_l.prototype.getDayPeriod=function(){return this.getHours()<12?0:1},_l.prototype.getUTCDayPeriod=function(){return this.getUTCHours()<12?0:1},_l.prototype.getTimezoneShort=function(){if(this.oDate.getTimezoneShort)return this.oDate.getTimezoneShort()},_l.prototype.getTimezoneLong=function(){if(this.oDate.getTimezoneLong)return this.oDate.getTimezoneLong()};function fl(e,t){for(var r=Wu.getConfiguration().getFormatSettings().getFormatLocale(),n=rl.getInstance(r),i=n.getMinimalDaysInFirstWeek(),o=n.getFirstDayOfWeek(),a=new e(e.UTC(t,0,1)),s=7;a.getUTCDay()!==o;)a.setUTCDate(a.getUTCDate()-1),s--;return s<i&&a.setUTCDate(a.getUTCDate()+7),a}function ml(e,t){return Math.floor((t.valueOf()-e.valueOf())/6048e5)}_l.getWeekByDate=function(e,t,r,n){var i,o,a,s,u=Wu.getConfiguration().getFormatSettings().getFormatLocale(),l=this.getClass(e),c=fl(l,t),d=new l(l.UTC(t,r,n));return"US"===u.getRegion()?i=ml(c,d):(a=t+1,s=fl(l,o=t-1),d>=fl(l,a)?(t=a,i=0):d<c?(t=o,i=ml(s,d)):i=ml(c,d)),{year:t,week:i}},_l.getFirstDateOfWeek=function(e,t,r){var n=Wu.getConfiguration().getFormatSettings().getFormatLocale(),i=this.getClass(e),o=fl(i,t),a=new i(o.valueOf()+6048e5*r);return"US"===n.getRegion()&&0===r&&o.getUTCFullYear()<t?{year:t,month:0,day:1}:{year:a.getUTCFullYear(),month:a.getUTCMonth(),day:a.getUTCDate()}};var gl={};function vl(e){var t=Wu.getConfiguration().getFormatSettings().getFormatLocale(),r=rl.getInstance(t);if(!(n=gl[e])){var n;(n=r.getEraDates(e))[0]||(n[0]={_start:"1-1-1"});for(var i=0;i<n.length;i++){var o=n[i];o&&(o._start&&(o._startInfo=yl(o._start)),o._end&&(o._endInfo=yl(o._end)))}gl[e]=n}return n}function yl(e){var t,r,n,i=e.split("-");return""==i[0]?(t=-parseInt(i[1]),r=parseInt(i[2])-1,n=parseInt(i[3])):(t=parseInt(i[0]),r=parseInt(i[1])-1,n=parseInt(i[2])),{timestamp:new Date(0).setUTCFullYear(t,r,n),year:t,month:r,day:n}}_l.getEraByDate=function(e,t,r,n){for(var i,o=vl(e),a=new Date(0).setUTCFullYear(t,r,n),s=o.length-1;s>=0;s--)if(i=o[s]){if(i._start&&a>=i._startInfo.timestamp)return s;if(i._end&&a<i._endInfo.timestamp)return s}},_l.getCurrentEra=function(e){var t=new Date;return this.getEraByDate(e,t.getFullYear(),t.getMonth(),t.getDate())},_l.getEraStartDate=function(e,t){var r=vl(e),n=r[t]||r[0];if(n._start)return n._startInfo};var bl=/('')|'([^']+(?:''[^']*)*)(?:'|$)|\{([0-9]+(?:\s*,[^{}]*)?)\}|[{}]/g,kl=function(){throw new Error},wl={};kl.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,r){return e.getDatePattern(t,r)},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"]},kl.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,r){var n=t.indexOf("/");return n>0?e.getCombinedDateTimePattern(t.substr(0,n),t.substr(n+1),r):e.getCombinedDateTimePattern(t,t,r)},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"]},kl.oTimeInfo={oDefaultFormatOptions:{style:"medium",relativeScale:"auto",relativeStyle:"wide"},aFallbackFormatOptions:[{style:"short"},{style:"medium"},{pattern:"HH:mm:ss"},{pattern:"HHmmss"}],getPattern:function(e,t,r){return e.getTimePattern(t,r)},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"]},kl.getInstance=function(e,t){return this.getDateInstance(e,t)},kl.getDateInstance=function(e,t){return this.createInstance(e,t,this.oDateInfo)},kl.getDateTimeInstance=function(e,t){return this.createInstance(e,t,this.oDateTimeInfo)},kl.getTimeInstance=function(e,t){return this.createInstance(e,t,this.oTimeInfo)},kl.createInstance=function(e,t,r){var n=Object.create(this.prototype);if(e instanceof vr&&(t=e,e=void 0),t||(t=Wu.getConfiguration().getFormatSettings().getFormatLocale()),n.oLocale=t,n.oLocaleData=rl.getInstance(t),n.oFormatOptions=$u({},r.oDefaultFormatOptions,e),n.oFormatOptions.calendarType||(n.oFormatOptions.calendarType=Wu.getConfiguration().getCalendarType()),n.oFormatOptions.pattern||(n.oFormatOptions.format?n.oFormatOptions.pattern=n.oLocaleData.getCustomDateTimePattern(n.oFormatOptions.format,n.oFormatOptions.calendarType):n.oFormatOptions.pattern=r.getPattern(n.oLocaleData,n.oFormatOptions.style,n.oFormatOptions.calendarType)),n.oFormatOptions.interval){n.oFormatOptions.format?(n.intervalPatterns=n.oLocaleData.getCustomIntervalPattern(n.oFormatOptions.format,null,n.oFormatOptions.calendarType),"string"==typeof n.intervalPatterns&&(n.intervalPatterns=[n.intervalPatterns]),n.intervalPatterns.push(n.oLocaleData.getCustomDateTimePattern(n.oFormatOptions.format,n.oFormatOptions.calendarType))):n.intervalPatterns=[n.oLocaleData.getCombinedIntervalPattern(n.oFormatOptions.pattern,n.oFormatOptions.calendarType),n.oFormatOptions.pattern];var i=function(e){var t=e.oLocaleData.getIntervalPattern("",e.oFormatOptions.calendarType);return(t=t.replace(/[^\{\}01 ]/,"-")).replace(/\{(0|1)\}/g,e.oFormatOptions.pattern)}(n);n.intervalPatterns.push(i)}if(!n.oFormatOptions.fallback){r.oFallbackFormats||(r.oFallbackFormats={});var o,a,s=t.toString(),u=n.oFormatOptions.calendarType,l=s+"-"+u;n.oFormatOptions.pattern&&r.bPatternFallbackWithoutDelimiter&&(l=l+"-"+n.oFormatOptions.pattern),n.oFormatOptions.interval&&(l+="-interval");var c=r.oFallbackFormats[l]?Object.assign({},r.oFallbackFormats[l]):void 0;c||(a=r.aFallbackFormatOptions,r.bShortFallbackFormatOptions&&(o=r.getPattern(n.oLocaleData,"short"),a=a.concat(kl._createFallbackOptionsWithoutDelimiter(o))),n.oFormatOptions.pattern&&r.bPatternFallbackWithoutDelimiter&&(a=kl._createFallbackOptionsWithoutDelimiter(n.oFormatOptions.pattern).concat(a)),c=kl._createFallbackFormat(a,u,t,r,n.oFormatOptions.interval)),n.aFallbackFormats=c}return n.oRequiredParts=r.oRequiredParts,n.aRelativeScales=r.aRelativeScales,n.aRelativeParseScales=r.aRelativeParseScales,n.aIntervalCompareFields=r.aIntervalCompareFields,n.init(),n},kl.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)},kl._createFallbackFormat=function(e,t,r,n,i){return e.map((function(e){var o=Object.assign({},e);i&&(o.interval=!0),o.calendarType=t,o.fallback=!0;var a=kl.createInstance(o,r,n);return a.bIsFallback=!0,a}))},kl._createFallbackOptionsWithoutDelimiter=function(e){var t=/d+/g,r="dd",n=/M+/g,i="MM",o={regex:/[yU]+/g,replace:["yyyy","yy"]};return e=(e=(e=e.replace(/[^dMyGU]/g,"")).replace(t,r)).replace(n,i),o.replace.map((function(t){return{pattern:e.replace(o.regex,t),strictParsing:!0}}))};var xl={isNumber:function(e){return e>=48&&e<=57},findNumbers:function(e,t){for(var r=0;r<t&&this.isNumber(e.charCodeAt(r));)r++;return"string"!=typeof e&&(e=e.toString()),e.substr(0,r)},findEntry:function(e,t){for(var r=-1,n=0,i=0;i<t.length;i++)t[i]&&t[i].length>n&&0===e.indexOf(t[i])&&(r=i,n=t[i].length);return{index:r,value:-1===r?null:t[r]}},parseTZ:function(e,t){var r,n=0,i="+"==e.charAt(0)?-1:1;n++,r=this.findNumbers(e.substr(n),2);var o=parseInt(r);return n+=2,t&&n++,r=this.findNumbers(e.substr(n),2),{length:n+=2,tzDiff:(parseInt(r)+60*o)*i}},checkValid:function(e,t,r){if(e in r.oRequiredParts&&t)return!1}};kl.prototype.oSymbols={"":{name:"text",format:function(e,t,r,n){return e.value},parse:function(e,t,r,n){for(var i,o=!0,a=0,s=0;s<t.value.length;s++){if(" "===(i=t.value.charAt(s)))for(;" "===e.charAt(a);)a++;else"-~‐‑‒–—﹘﹣-~".includes(i)?("-~‐‑‒–—﹘﹣-~".includes(e.charAt(a))||(o=!1),a++):(e.charAt(a)!==i&&(o=!1),a++);if(!o)break}if(o)return{length:a};var u=!1;return n.index<n.formatArray.length-1&&(u=n.formatArray[n.index+1].type in r.oRequiredParts),{valid:xl.checkValid(t.type,u,r)}}},G:{name:"era",format:function(e,t,r,n){var i=r?t.getUTCEra():t.getEra();return e.digits<=3?n.aErasAbbrev[i]:4===e.digits?n.aErasWide[i]:n.aErasNarrow[i]},parse:function(e,t,r,n){for(var i=[r.aErasWide,r.aErasAbbrev,r.aErasNarrow],o=0;o<i.length;o++){var a=i[o],s=xl.findEntry(e,a);if(-1!==s.index)return{era:s.index,length:s.value.length}}return{era:r.aErasWide.length-1,valid:xl.checkValid(t.type,!0,r)}}},y:{name:"year",format:function(e,t,r,n){var i=r?t.getUTCFullYear():t.getFullYear(),o=String(i),a=n.oFormatOptions.calendarType;return 2==e.digits&&o.length>2&&(o=o.substr(o.length-2)),a!=el.Japanese&&1==e.digits&&i<100&&(o=o.padStart(4,"0")),o.padStart(e.digits,"0")},parse:function(e,t,r,n){var i,o=r.oFormatOptions.calendarType;i=1==t.digits?xl.findNumbers(e,4):2==t.digits?xl.findNumbers(e,2):xl.findNumbers(e,t.digits);var a=parseInt(i);if(o!=el.Japanese&&i.length<=2){var s=_l.getInstance(new Date,o).getFullYear(),u=Math.floor(s/100),l=100*u+a-s;a+=l<-70?100*(u+1):l<30?100*u:100*(u-1)}return{length:i.length,valid:xl.checkValid(t.type,""===i,r),year:a}}},Y:{name:"weekYear",format:function(e,t,r,n){var i=(r?t.getUTCWeek():t.getWeek()).year,o=String(i),a=n.oFormatOptions.calendarType;return 2==e.digits&&o.length>2&&(o=o.substr(o.length-2)),a!=el.Japanese&&1==e.digits&&i<100&&(o=o.padStart(4,"0")),o.padStart(e.digits,"0")},parse:function(e,t,r,n){var i,o=r.oFormatOptions.calendarType;i=1==t.digits?xl.findNumbers(e,4):2==t.digits?xl.findNumbers(e,2):xl.findNumbers(e,t.digits);var a,s=parseInt(i);if(o!=el.Japanese&&i.length<=2){var u=_l.getInstance(new Date,o).getFullYear(),l=Math.floor(u/100),c=100*l+a-u;a+=c<-70?100*(l+1):c<30?100*l:100*(l-1)}return{length:i.length,valid:xl.checkValid(t.type,""===i,r),year:s,weekYear:a}}},M:{name:"month",format:function(e,t,r,n){var i=r?t.getUTCMonth():t.getMonth();return 3==e.digits?n.aMonthsAbbrev[i]:4==e.digits?n.aMonthsWide[i]:e.digits>4?n.aMonthsNarrow[i]:String(i+1).padStart(e.digits,"0")},parse:function(e,t,r,n){var i,o,a,s=[r.aMonthsWide,r.aMonthsWideSt,r.aMonthsAbbrev,r.aMonthsAbbrevSt,r.aMonthsNarrow,r.aMonthsNarrowSt];if(t.digits<3)a=xl.findNumbers(e,Math.max(t.digits,2)),i=xl.checkValid(t.type,""===a,r),o=parseInt(a)-1,n.strict&&(o>11||o<0)&&(i=!1);else{for(var u=0;u<s.length;u++){var l=s[u],c=xl.findEntry(e,l);if(-1!==c.index)return{month:c.index,length:c.value.length}}i=xl.checkValid(t.type,!0,r)}return{month:o,length:a?a.length:0,valid:i}}},L:{name:"monthStandalone",format:function(e,t,r,n){var i=r?t.getUTCMonth():t.getMonth();return 3==e.digits?n.aMonthsAbbrevSt[i]:4==e.digits?n.aMonthsWideSt[i]:e.digits>4?n.aMonthsNarrowSt[i]:String(i+1).padStart(e.digits,"0")},parse:function(e,t,r,n){var i,o,a,s=[r.aMonthsWide,r.aMonthsWideSt,r.aMonthsAbbrev,r.aMonthsAbbrevSt,r.aMonthsNarrow,r.aMonthsNarrowSt];if(t.digits<3)a=xl.findNumbers(e,Math.max(t.digits,2)),i=xl.checkValid(t.type,""===a,r),o=parseInt(a)-1,n.strict&&(o>11||o<0)&&(i=!1);else{for(var u=0;u<s.length;u++){var l=s[u],c=xl.findEntry(e,l);if(-1!==c.index)return{month:c.index,length:c.value.length}}i=xl.checkValid(t.type,!0,r)}return{month:o,length:a?a.length:0,valid:i}}},w:{name:"weekInYear",format:function(e,t,r,n){var i=(r?t.getUTCWeek():t.getWeek()).week,o=String(i+1);return o=e.digits<3?o.padStart(e.digits,"0"):n.oLocaleData.getCalendarWeek(3===e.digits?"narrow":"wide",o.padStart(2,"0"))},parse:function(e,t,r,n){var i,o,a,s=0;if(t.digits<3)s=(o=xl.findNumbers(e,2)).length,a=parseInt(o)-1,i=xl.checkValid(t.type,!o,r);else{o=(o=r.oLocaleData.getCalendarWeek(3===t.digits?"narrow":"wide")).replace("{0}","[0-9]+");var u=new RegExp(o).exec(e);u?(s=u[0].length,a=parseInt(u[0])-1):i=xl.checkValid(t.type,!0,r)}return{length:s,valid:i,week:a}}},W:{name:"weekInMonth",format:function(e,t,r,n){return""},parse:function(){return{}}},D:{name:"dayInYear",format:function(e,t,r,n){},parse:function(){return{}}},d:{name:"day",format:function(e,t,r,n){var i=r?t.getUTCDate():t.getDate();return String(i).padStart(e.digits,"0")},parse:function(e,t,r,n){var i=xl.findNumbers(e,Math.max(t.digits,2)),o=xl.checkValid(t.type,""===i,r),a=parseInt(i);return n.strict&&(a>31||a<1)&&(o=!1),{day:a,length:i.length,valid:o}}},Q:{name:"quarter",format:function(e,t,r,n){var i=r?t.getUTCQuarter():t.getQuarter();return 3==e.digits?n.aQuartersAbbrev[i]:4==e.digits?n.aQuartersWide[i]:e.digits>4?n.aQuartersNarrow[i]:String(i+1).padStart(e.digits,"0")},parse:function(e,t,r,n){var i,o,a,s=[r.aQuartersWide,r.aQuartersWideSt,r.aQuartersAbbrev,r.aQuartersAbbrevSt,r.aQuartersNarrow,r.aQuartersNarrowSt];if(t.digits<3)a=xl.findNumbers(e,Math.max(t.digits,2)),i=xl.checkValid(t.type,""===a,r),o=parseInt(a)-1,n.strict&&o>3&&(i=!1);else{for(var u=0;u<s.length;u++){var l=s[u],c=xl.findEntry(e,l);if(-1!==c.index)return{quarter:c.index,length:c.value.length}}i=xl.checkValid(t.type,!0,r)}return{length:a?a.length:0,quarter:o,valid:i}}},q:{name:"quarterStandalone",format:function(e,t,r,n){var i=r?t.getUTCQuarter():t.getQuarter();return 3==e.digits?n.aQuartersAbbrevSt[i]:4==e.digits?n.aQuartersWideSt[i]:e.digits>4?n.aQuartersNarrowSt[i]:String(i+1).padStart(e.digits,"0")},parse:function(e,t,r,n){var i,o,a,s=[r.aQuartersWide,r.aQuartersWideSt,r.aQuartersAbbrev,r.aQuartersAbbrevSt,r.aQuartersNarrow,r.aQuartersNarrowSt];if(t.digits<3)a=xl.findNumbers(e,Math.max(t.digits,2)),i=xl.checkValid(t.type,""===a,r),o=parseInt(a)-1,n.strict&&o>3&&(i=!1);else{for(var u=0;u<s.length;u++){var l=s[u],c=xl.findEntry(e,l);if(-1!==c.index)return{quarter:c.index,length:c.value.length}}i=xl.checkValid(t.type,!0,r)}return{length:a?a.length:0,quarter:o,valid:i}}},F:{name:"dayOfWeekInMonth",format:function(e,t,r,n){return""},parse:function(){return{}}},E:{name:"dayNameInWeek",format:function(e,t,r,n){var i=r?t.getUTCDay():t.getDay();return e.digits<4?n.aDaysAbbrev[i]:4==e.digits?n.aDaysWide[i]:5==e.digits?n.aDaysNarrow[i]:n.aDaysShort[i]},parse:function(e,t,r,n){for(var i=[r.aDaysWide,r.aDaysWideSt,r.aDaysAbbrev,r.aDaysAbbrevSt,r.aDaysShort,r.aDaysShortSt,r.aDaysNarrow,r.aDaysNarrowSt],o=0;o<i.length;o++){var a=i[o],s=xl.findEntry(e,a);if(-1!==s.index)return{dayOfWeek:s.index,length:s.value.length}}}},c:{name:"dayNameInWeekStandalone",format:function(e,t,r,n){var i=r?t.getUTCDay():t.getDay();return e.digits<4?n.aDaysAbbrevSt[i]:4==e.digits?n.aDaysWideSt[i]:5==e.digits?n.aDaysNarrowSt[i]:n.aDaysShortSt[i]},parse:function(e,t,r,n){for(var i=[r.aDaysWide,r.aDaysWideSt,r.aDaysAbbrev,r.aDaysAbbrevSt,r.aDaysShort,r.aDaysShortSt,r.aDaysNarrow,r.aDaysNarrowSt],o=0;o<i.length;o++){var a=i[o],s=xl.findEntry(e,a);if(-1!==s.index)return{day:s.index,length:s.value.length}}}},u:{name:"dayNumberOfWeek",format:function(e,t,r,n){var i=r?t.getUTCDay():t.getDay();return n._adaptDayOfWeek(i)},parse:function(e,t,r,n){var i=xl.findNumbers(e,t.digits);return{dayNumberOfWeek:parseInt(i),length:i.length}}},a:{name:"amPmMarker",format:function(e,t,r,n){var i=r?t.getUTCDayPeriod():t.getDayPeriod();return n.aDayPeriods[i]},parse:function(e,t,r,n){var i,o,a=r.aDayPeriods[0],s=r.aDayPeriods[1],u=e.match(/[aApP](?:\.)?[mM](?:\.)?/),l=u&&0===u.index;return l&&(e=u[0].replace(/\./g,"").toLowerCase()+e.substring(u[0].length),a=a.replace(/\./g,"").toLowerCase(),s=s.replace(/\./g,"").toLowerCase()),0===e.indexOf(a)?(i=!1,o=l?u[0].length:a.length):0===e.indexOf(s)&&(i=!0,o=l?u[0].length:s.length),{pm:i,length:o}}},H:{name:"hour0_23",format:function(e,t,r,n){var i=r?t.getUTCHours():t.getHours();return String(i).padStart(e.digits,"0")},parse:function(e,t,r,n){var i,o=xl.findNumbers(e,Math.max(t.digits,2)),a=parseInt(o);return i=xl.checkValid(t.type,""===o,r),n.strict&&a>23&&(i=!1),{hour:a,length:o.length,valid:i}}},k:{name:"hour1_24",format:function(e,t,r,n){var i=r?t.getUTCHours():t.getHours();return(0===i?"24":String(i)).padStart(e.digits,"0")},parse:function(e,t,r,n){var i,o=xl.findNumbers(e,Math.max(t.digits,2)),a=parseInt(o);return i=xl.checkValid(t.type,""===o,r),24==a&&(a=0),n.strict&&a>23&&(i=!1),{hour:a,length:o.length,valid:i}}},K:{name:"hour0_11",format:function(e,t,r,n){var i=r?t.getUTCHours():t.getHours();return String(i>11?i-12:i).padStart(e.digits,"0")},parse:function(e,t,r,n){var i,o=xl.findNumbers(e,Math.max(t.digits,2)),a=parseInt(o);return i=xl.checkValid(t.type,""===o,r),n.strict&&a>11&&(i=!1),{hour:a,length:o.length,valid:i}}},h:{name:"hour1_12",format:function(e,t,r,n){var i=r?t.getUTCHours():t.getHours();return(i>12?String(i-12):0==i?"12":String(i)).padStart(e.digits,"0")},parse:function(e,t,r,n){var i=n.dateValue.pm,o=xl.findNumbers(e,Math.max(t.digits,2)),a=parseInt(o),s=xl.checkValid(t.type,""===o,r);return 12==a&&(a=0,i=void 0===i||i),n.strict&&a>11&&(s=!1),{hour:a,length:o.length,pm:i,valid:s}}},m:{name:"minute",format:function(e,t,r,n){var i=r?t.getUTCMinutes():t.getMinutes();return String(i).padStart(e.digits,"0")},parse:function(e,t,r,n){var i,o=xl.findNumbers(e,Math.max(t.digits,2)),a=parseInt(o);return i=xl.checkValid(t.type,""===o,r),n.strict&&a>59&&(i=!1),{length:o.length,minute:a,valid:i}}},s:{name:"second",format:function(e,t,r,n){var i=r?t.getUTCSeconds():t.getSeconds();return String(i).padStart(e.digits,"0")},parse:function(e,t,r,n){var i,o=xl.findNumbers(e,Math.max(t.digits,2)),a=parseInt(o);return i=xl.checkValid(t.type,""===o,r),n.strict&&a>59&&(i=!1),{length:o.length,second:a,valid:i}}},S:{name:"fractionalsecond",format:function(e,t,r,n){var i=r?t.getUTCMilliseconds():t.getMilliseconds(),o=String(i).padStart(3,"0");return o=(o=o.substr(0,e.digits)).padEnd(e.digits,"0")},parse:function(e,t,r,n){var i=xl.findNumbers(e,t.digits),o=i.length;return i=(i=i.substr(0,3)).padEnd(3,"0"),{length:o,millisecond:parseInt(i)}}},z:{name:"timezoneGeneral",format:function(e,t,r,n){if(e.digits>3&&t.getTimezoneLong())return t.getTimezoneLong();if(t.getTimezoneShort())return t.getTimezoneShort();var i="GMT",o=Math.abs(t.getTimezoneOffset()),a=t.getTimezoneOffset()>0,s=Math.floor(o/60),u=o%60;return r||0==o?i+="Z":(i+=a?"-":"+",i+=String(s).padStart(2,"0"),i+=":",i+=String(u).padStart(2,"0")),i},parse:function(e,t,r,n){var i,o=0,a=e.substring(0,3);if("GMT"===a||"UTC"===a)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,i=0}if("Z"!=e.charAt(0)){var s=xl.parseTZ(e.substr(o),!0);o+=s.length,i=s.tzDiff}return{length:o,tzDiff:i}}},Z:{name:"timezoneRFC822",format:function(e,t,r,n){var i=Math.abs(t.getTimezoneOffset()),o=t.getTimezoneOffset()>0,a=Math.floor(i/60),s=i%60,u="";return r||0==i||(u+=o?"-":"+",u+=String(a).padStart(2,"0"),u+=String(s).padStart(2,"0")),u},parse:function(e,t,r,n){return xl.parseTZ(e,!1)}},X:{name:"timezoneISO8601",format:function(e,t,r,n){var i=Math.abs(t.getTimezoneOffset()),o=t.getTimezoneOffset()>0,a=Math.floor(i/60),s=i%60,u="";return r||0==i?u+="Z":(u+=o?"-":"+",u+=String(a).padStart(2,"0"),u+=":",u+=String(s).padStart(2,"0")),u},parse:function(e,t,r,n){return"Z"==e.charAt(0)?{length:1,tzDiff:0}:xl.parseTZ(e,!0)}}},kl.prototype._format=function(e,t){if(this.oFormatOptions.relative){var r=this.formatRelative(e,t,this.oFormatOptions.relativeRange);if(r)return r}for(var n,i,o,a=this.oFormatOptions.calendarType,s=_l.getInstance(e,a),u=[],l=0;l<this.aFormatArray.length;l++)o=(n=this.aFormatArray[l]).symbol||"",u.push(this.oSymbols[o].format(n,s,t,this));return i=u.join(""),Wu.getConfiguration().getOriginInfo()&&((i=new String(i)).originInfo={source:"Common Locale Data Repository",locale:this.oLocale.toString(),style:this.oFormatOptions.style,pattern:this.oFormatOptions.pattern}),i},kl.prototype.format=function(e,t){var r,n=this.oFormatOptions.calendarType;if(void 0===t&&(t=this.oFormatOptions.UTC),Array.isArray(e)){if(!this.oFormatOptions.interval)return tr.error("Non-interval DateFormat can't format more than one date instance."),"";if(2!==e.length)return tr.error("Interval DateFormat can only format with 2 date instances but "+e.length+" is given."),"";if(this.oFormatOptions.singleIntervalValue){if(null===e[0])return tr.error("First date instance which is passed to the interval DateFormat shouldn't be null."),"";null===e[1]&&(r=this._format(e[0],t))}if(void 0===r){if(!e.every((function(e){return e&&!isNaN(e.getTime())})))return tr.error("At least one date instance which is passed to the interval DateFormat isn't valid."),"";r=this._formatInterval(e,t)}}else{if(!e||isNaN(e.getTime()))return tr.error("The given date instance isn't valid."),"";if(this.oFormatOptions.interval)return tr.error("Interval DateFormat expects an array with two dates for the first argument but only one date is given."),"";r=this._format(e,t)}return n==el.Japanese&&"ja"===this.oLocale.getLanguage()&&(r=r.replace(/(^|[^\d])1年/g,"$1元年")),r},kl.prototype._formatInterval=function(e,t){var r,n,i,o,a,s=this.oFormatOptions.calendarType,u=_l.getInstance(e[0],s),l=_l.getInstance(e[1],s),c=[],d=this._getGreatestDiffField([u,l],t);if(!d)return this._format(e[0],t);o=this.oFormatOptions.format?this.oLocaleData.getCustomIntervalPattern(this.oFormatOptions.format,d,s):this.oLocaleData.getCombinedIntervalPattern(this.oFormatOptions.pattern,s),a=this.parseCldrDatePattern(o),r=u;for(var h=0;h<a.length;h++)i=(n=a[h]).symbol||"",n.repeat&&(r=l),c.push(this.oSymbols[i].format(n,r,t,this));return c.join("")};var Sl={Era:"Era",FullYear:"Year",Quarter:"Quarter",Month:"Month",Week:"Week",Date:"Day",DayPeriod:"DayPeriod",Hours:"Hour",Minutes:"Minute",Seconds:"Second"};kl.prototype._getGreatestDiffField=function(e,t){var r=!1,n={};return this.aIntervalCompareFields.forEach((function(i){var o="get"+(t?"UTC":"")+i,a=Sl[i];(function e(t,r,n,i,o){if("boolean"==typeof n&&(i=n,n=void 0),o||(o=0),n||(n=10),o>n)return tr.warning("deepEqual comparison exceeded maximum recursion depth of "+n+". Treating values as unequal"),!1;if(t===r)return!0;if("number"==typeof t&&"number"==typeof r&&isNaN(t)&&isNaN(r))return!0;if(Array.isArray(t)&&Array.isArray(r)){if(!i&&t.length!==r.length)return!1;if(t.length>r.length)return!1;for(var a=0;a<t.length;a++)if(!e(t[a],r[a],n,i,o+1))return!1;return!0}if("object"==H(t)&&"object"==H(r)){if(!t||!r)return!1;if(t.constructor!==r.constructor)return!1;if(!i&&Object.keys(t).length!==Object.keys(r).length)return!1;if(t instanceof Node)return t.isEqualNode(r);if(t instanceof Date)return t.valueOf()===r.valueOf();for(var a in t)if(!e(t[a],r[a],n,i,o+1))return!1;return!0}return!1})(e[0][o].apply(e[0]),e[1][o].apply(e[1]))||(r=!0,n[a]=!0)})),r?n:null},kl.prototype._parse=function(e,t,r,n){for(var i,o,a,s=0,u={valid:!0},l={formatArray:t,dateValue:u,strict:n},c=0;c<t.length&&(o=e.substr(s),i=t[c],l.index=c,a=this.oSymbols[i.symbol||""].parse(o,i,this,l)||{},u=$u(u,a),!1!==a.valid);c++)s+=a.length||0;return u.index=s,u.pm&&(u.hour+=12),void 0===u.dayNumberOfWeek&&void 0!==u.dayOfWeek&&(u.dayNumberOfWeek=this._adaptDayOfWeek(u.dayOfWeek)),void 0!==u.quarter&&void 0===u.month&&void 0===u.day&&(u.month=3*u.quarter,u.day=1),u},kl.prototype._parseInterval=function(e,t,r,n){var i,o,a;return this.intervalPatterns.some(function(t){var s=this.parseCldrDatePattern(t);o=void 0;for(var u=0;u<s.length;u++)if(s[u].repeat){o=u;break}if(void 0===o){if((0===(a=this._parse(e,s,r,n)).index||a.index<e.length)&&(a.valid=!1),!1===a.valid)return;return i=[a,a],!0}if(i=[],!1!==(a=this._parse(e,s.slice(0,o),r,n)).valid){i.push(a);var l=a.index;if((0===(a=this._parse(e.substring(l),s.slice(o),r,n)).index||a.index+l<e.length)&&(a.valid=!1),!1!==a.valid)return i.push(a),!0}}.bind(this)),i};var Cl=function(e,t,r,n){var i,o="number"==typeof e.year?e.year:1970;return e.valid&&(r||void 0!==e.tzDiff?((i=_l.getInstance(new Date(0),t)).setUTCEra(e.era||_l.getCurrentEra(t)),i.setUTCFullYear(o),i.setUTCMonth(e.month||0),i.setUTCDate(e.day||1),i.setUTCHours(e.hour||0),i.setUTCMinutes(e.minute||0),i.setUTCSeconds(e.second||0),i.setUTCMilliseconds(e.millisecond||0),n&&(e.day||1)!==i.getUTCDate()?(e.valid=!1,i=void 0):(e.tzDiff&&i.setUTCMinutes((e.minute||0)+e.tzDiff),void 0===e.week||void 0!==e.month&&void 0!==e.day||(i.setUTCWeek({year:e.weekYear||e.year,week:e.week}),void 0!==e.dayNumberOfWeek&&i.setUTCDate(i.getUTCDate()+e.dayNumberOfWeek-1)))):((i=_l.getInstance(new Date(1970,0,1,0,0,0),t)).setEra(e.era||_l.getCurrentEra(t)),i.setFullYear(o),i.setMonth(e.month||0),i.setDate(e.day||1),i.setHours(e.hour||0),i.setMinutes(e.minute||0),i.setSeconds(e.second||0),i.setMilliseconds(e.millisecond||0),n&&(e.day||1)!==i.getDate()?(e.valid=!1,i=void 0):void 0===e.week||void 0!==e.month&&void 0!==e.day||(i.setWeek({year:e.weekYear||e.year,week:e.week}),void 0!==e.dayNumberOfWeek&&i.setDate(i.getDate()+e.dayNumberOfWeek-1))),e.valid)?i=i.getJSDate():null};function Tl(e,t){if(e===t)return e;var r={};return Object.keys(e).forEach((function(t){r[t]=e[t]})),Object.keys(t).forEach((function(e){r.hasOwnProperty(e)||(r[e]=t[e])})),r}function Pl(e,t){for(var r=["FullYear","Month","Date","Hours","Minutes","Seconds","Milliseconds"],n=t;n<r.length;n++)e["set"+r[t]].apply(e,[0])}kl.prototype.parse=function(e,t,r){var n;e=null==e?"":String(e).trim();var i,o,a=this.oFormatOptions.calendarType;if(void 0===t&&(t=this.oFormatOptions.UTC),void 0===r&&(r=this.oFormatOptions.strictParsing),a==el.Japanese&&"ja"===this.oLocale.getLanguage()&&(e=e.replace(/元年/g,"1年")),this.oFormatOptions.interval){var s,u,l=this._parseInterval(e,a,t,r);if(l&&2==l.length){var c=Tl(l[0],l[1]),d=Tl(l[1],l[0]);if(s=Cl(c,a,t,r),u=Cl(d,a,t,r),s&&u){if(this.oFormatOptions.singleIntervalValue&&s.getTime()===u.getTime())return[s,null];var h=(i=u,!(s.getTime()>i.getTime()));return r&&!h?(tr.error("StrictParsing: Invalid date range. The given end date is before the start date."),[null,null]):[s,u]}}}else{var p=this.parseRelative(e,t);if(p)return p;if((0===(n=this._parse(e,this.aFormatArray,t,r)).index||n.index<e.length)&&(n.valid=!1),p=Cl(n,a,t,r))return p}return this.bIsFallback?this.oFormatOptions.interval?[null,null]:null:(this.aFallbackFormats.every((function(n){return o=n.parse(e,t,r),Array.isArray(o)?!(o[0]&&o[1]):!o})),o)},kl.prototype.parseCldrDatePattern=function(e){if(wl[e])return wl[e];var t,r=[],n=!1,i=null,o="",a="",s={},u=!1;for(t=0;t<e.length;t++){var l,c,d,h=e.charAt(t);if(n){if("'"==h)if(c=e.charAt(t-1),d=e.charAt(t-2),l=e.charAt(t+1),"'"==c&&"'"!=d)n=!1;else{if("'"!=l){n=!1;continue}t+=1}"text"==o?i.value+=h:(i={type:"text",value:h},r.push(i),o="text")}else"'"==h?n=!0:this.oSymbols[h]?o==(a=this.oSymbols[h].name)?i.digits++:(i={type:a,symbol:h,digits:1},r.push(i),o=a,u||(s[a]?(i.repeat=!0,u=!0):s[a]=!0)):"text"==o?i.value+=h:(i={type:"text",value:h},r.push(i),o="text")}return wl[e]=r,r},kl.prototype.parseRelative=function(e,t){var r,n,i;if(!e)return null;r=this.oLocaleData.getRelativePatterns(this.aRelativeParseScales,this.oFormatOptions.relativeStyle);for(var o=0;o<r.length;o++)if(n=r[o],i=new RegExp("^\\s*"+n.pattern.replace(/\{0\}/,"(\\d+)")+"\\s*$","i").exec(e))return void 0!==n.value?a(n.value,n.scale):a(parseInt(i[1])*n.sign,n.scale);function a(e,r){var n,i,o=new Date;switch(n=t?o.getTime():Date.UTC(o.getFullYear(),o.getMonth(),o.getDate(),o.getHours(),o.getMinutes(),o.getSeconds(),o.getMilliseconds()),i=new Date(n),r){case"second":i.setUTCSeconds(i.getUTCSeconds()+e);break;case"minute":i.setUTCMinutes(i.getUTCMinutes()+e);break;case"hour":i.setUTCHours(i.getUTCHours()+e);break;case"day":i.setUTCDate(i.getUTCDate()+e);break;case"week":i.setUTCDate(i.getUTCDate()+7*e);break;case"month":i.setUTCMonth(i.getUTCMonth()+e);break;case"quarter":i.setUTCMonth(i.getUTCMonth()+3*e);break;case"year":i.setUTCFullYear(i.getUTCFullYear()+e)}return t?i:new Date(i.getUTCFullYear(),i.getUTCMonth(),i.getUTCDate(),i.getUTCHours(),i.getUTCMinutes(),i.getUTCSeconds(),i.getUTCMilliseconds())}},kl.prototype.formatRelative=function(e,t,r){var n,i,o,a=new Date,s=this.oFormatOptions.relativeScale||"day";return o=(e.getTime()-a.getTime())/1e3,"auto"==this.oFormatOptions.relativeScale&&(s=this._getScale(o,this.aRelativeScales)),r||(r=this._mRanges[s]),"year"!=s&&"month"!=s&&"day"!=s||(a=new Date(Date.UTC(a.getFullYear(),a.getMonth(),a.getDate())),n=new Date(0),t?n.setUTCFullYear(e.getUTCFullYear(),e.getUTCMonth(),e.getUTCDate()):n.setUTCFullYear(e.getFullYear(),e.getMonth(),e.getDate()),e=n),i=this._getDifference(s,[a,e]),"auto"!=this.oFormatOptions.relativeScale&&(i<r[0]||i>r[1])?null:function(e,t){return pr("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(bl,(function(e,r,n,i,o){if(r)return"'";if(n)return n.replace(/''/g,"'");if(i)return String(t[parseInt(i)]);throw new Error("formatMessage: pattern syntax error at pos. "+o)}))}(this.oLocaleData.getRelativePattern(s,i,o>0,this.oFormatOptions.relativeStyle),[Math.abs(i)])},kl.prototype._mRanges={second:[-60,60],minute:[-60,60],hour:[-24,24],day:[-6,6],week:[-4,4],month:[-12,12],year:[-10,10]},kl.prototype._mScales={second:1,minute:60,hour:3600,day:86400,week:604800,month:2592e3,quarter:7776e3,year:31536e3},kl.prototype._getScale=function(e,t){var r,n;e=Math.abs(e);for(var i=0;i<t.length;i++)if(n=t[i],e>=this._mScales[n]){r=n;break}return r||(r=t[t.length-1]),r};var Dl={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,r){var n=r._adaptDayOfWeek(e.getDay()),i=r._adaptDayOfWeek(t.getDay());return Pl(e,3),Pl(t,3),(t.getTime()-e.getTime()-(i-n)*r._mScales.day*1e3)/(1e3*r._mScales.week)},day:function(e,t,r){return Pl(e,3),Pl(t,3),(t.getTime()-e.getTime())/(1e3*r._mScales.day)},hour:function(e,t,r){return Pl(e,4),Pl(t,4),(t.getTime()-e.getTime())/(1e3*r._mScales.hour)},minute:function(e,t,r){return Pl(e,5),Pl(t,5),(t.getTime()-e.getTime())/(1e3*r._mScales.minute)},second:function(e,t,r){return Pl(e,6),Pl(t,6),(t.getTime()-e.getTime())/(1e3*r._mScales.second)}};kl.prototype._adaptDayOfWeek=function(e){var t=e-(rl.getInstance(Wu.getConfiguration().getFormatSettings().getFormatLocale()).getFirstDayOfWeek()-1);return t<=0&&(t+=7),t},kl.prototype._getDifference=function(e,t){var r=t[0],n=t[1];return Math.round(Dl[e](r,n,this))},kl.prototype.getAllowedCharacters=function(e){if(this.oFormatOptions.relative)return"";for(var t,r="",n=!1,i=!1,o=0;o<e.length;o++)switch((t=e[o]).type){case"text":r.indexOf(t.value)<0&&(r+=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":n||(r+="0123456789",n=!0);break;case"month":case"monthStandalone":t.digits<3?n||(r+="0123456789",n=!0):i=!0;break;default:i=!0}return i&&(r=""),r};var Il=function(){function e(){V(this,e);var t,r,n,i=arguments;switch(i.length){case 0:return r=new Date,this.constructor(r.getFullYear(),r.getMonth(),r.getDate());case 1:case 2:if(!(i[0]instanceof e))throw new Error("Invalid arguments: the first argument must be of type sap.ui.unified.calendar.CalendarDate.");n=i[1]?i[1]:i[0]._oUDate.sCalendarType,(t=new Date(i[0].valueOf())).setFullYear(t.getUTCFullYear(),t.getUTCMonth(),t.getUTCDate()),t.setHours(t.getUTCHours(),t.getUTCMinutes(),t.getUTCSeconds(),t.getUTCMilliseconds()),this._oUDate=Ml(t,n);break;case 3:case 4:Fl(i[0],"Invalid year: ".concat(i[0])),Fl(i[1],"Invalid month: ".concat(i[1])),Fl(i[2],"Invalid date: ".concat(i[2])),(t=new Date(0,0,1)).setFullYear(i[0],i[1],i[2]),i[3]&&(n=i[3]),this._oUDate=Ml(t,n);break;default:throw new Error("".concat("Invalid arguments. Accepted arguments are: 1) oCalendarDate, (optional)calendarTypeor 2) year, month, date, (optional) calendarType").concat(i))}}return Y(e,[{key:"getYear",value:function(){return this._oUDate.getUTCFullYear()}},{key:"setYear",value:function(e){return Fl(e,"Invalid year: ".concat(e)),this._oUDate.setUTCFullYear(e),this}},{key:"getMonth",value:function(){return this._oUDate.getUTCMonth()}},{key:"setMonth",value:function(e,t){return Fl(e,"Invalid month: ".concat(e)),t||0===t?(Fl(t,"Invalid date: ".concat(t)),this._oUDate.setUTCMonth(e,t)):this._oUDate.setUTCMonth(e),this}},{key:"getDate",value:function(){return this._oUDate.getUTCDate()}},{key:"setDate",value:function(e){return Fl(e,"Invalid date: ".concat(e)),this._oUDate.setUTCDate(e),this}},{key:"getDay",value:function(){return this._oUDate.getUTCDay()}},{key:"getCalendarType",value:function(){return this._oUDate.sCalendarType}},{key:"isBefore",value:function(e){return Bl(e),this.valueOf()<e.valueOf()}},{key:"isAfter",value:function(e){return Bl(e),this.valueOf()>e.valueOf()}},{key:"isSameOrBefore",value:function(e){return Bl(e),this.valueOf()<=e.valueOf()}},{key:"isSameOrAfter",value:function(e){return Bl(e),this.valueOf()>=e.valueOf()}},{key:"isSame",value:function(e){return Bl(e),this.valueOf()===e.valueOf()}},{key:"toLocalJSDate",value:function(){var e=new Date(this._oUDate.getTime());return e.setFullYear(e.getUTCFullYear(),e.getUTCMonth(),e.getUTCDate()),e.setHours(0,0,0,0),e}},{key:"toUTCJSDate",value:function(){var e=new Date(this._oUDate.getTime());return e.setUTCHours(0,0,0,0),e}},{key:"toString",value:function(){return"".concat(this._oUDate.sCalendarType,": ").concat(this.getYear(),"/").concat(this.getMonth()+1,"/").concat(this.getDate())}},{key:"valueOf",value:function(){return this._oUDate.getTime()}}],[{key:"fromLocalJSDate",value:function(t,r){if(!(n=t)||"[object Date]"!==Object.prototype.toString.call(n)||isNaN(n))throw new Error("Date parameter must be a JavaScript Date object: [".concat(t,"]."));var n;return new e(t.getFullYear(),t.getMonth(),t.getDate(),r)}},{key:"fromTimestamp",value:function(t,r){var n=new e(0,0,1);return n._oUDate=_l.getInstance(new Date(t),r),n}}]),e}();function Ml(e,t){return t?_l.getInstance(El(e),t):new _l(El(e).getTime())}function El(e){var t=new Date(Date.UTC(0,0,1));return t.setUTCFullYear(e.getFullYear(),e.getMonth(),e.getDate()),t}function Bl(e){if(!(e instanceof Il))throw new Error("Invalid calendar date: [".concat(e,"]. Expected: sap.ui.unified.calendar.CalendarDate"))}function Fl(e,t){if(void 0===e||e===1/0||isNaN(e))throw t}function Ol(){var e=oe(['<footer class="ui5-popup-footer-root"><slot name="footer"></slot></footer>']);return Ol=function(){return e},e}function Al(){var e=oe(["",""]);return Al=function(){return e},e}function Nl(){var e=oe(['<h2 class="ui5-popup-header-text">',"</h2>"]);return Nl=function(){return e},e}function Ll(){var e=oe(['<slot name="header"></slot>']);return Ll=function(){return e},e}function Rl(){var e=oe(['<header class="ui5-popup-header-root" id="ui5-popup-header">',"</header>"]);return Rl=function(){return e},e}function zl(){var e=oe(['<section style="','" class="','" role="dialog" aria-modal="','" aria-label="','" aria-labelledby="','"><span class="first-fe" data-ui5-focus-trap tabindex="0" @focusin=','></span><span class="ui5-popover-arrow" style="','"></span>','<div style="','" class="','" @scroll="','"><slot></slot></div>','<span class="last-fe" data-ui5-focus-trap tabindex="0" @focusin=',"></span></section>"]);return zl=function(){return e},e}function Hl(){var e=oe(['<header class="ui5-responsive-popover-header"><ui5-title level="H5" class="ui5-responsive-popover-header-text">','</ui5-title><ui5-button icon="decline" design="Transparent" @click="','"></ui5-button></header>']);return Hl=function(){return e},e}function Ul(){var e=oe(['<slot slot="header" name="header"></slot>']);return Ul=function(){return e},e}function jl(){var e=oe(["",""]);return jl=function(){return e},e}function Vl(){var e=oe(["<ui5-dialog ?with-padding=",' stretch _disable-initial-focus @ui5-before-open="','" @ui5-after-open="','" @ui5-before-close="','" @ui5-after-close="','">','<slot></slot><slot slot="footer" name="footer"></slot></ui5-dialog>']);return Vl=function(){return e},e}function Wl(){var e=oe(["",""]);return Wl=function(){return e},e}so("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});var Yl=function(e){return Zn(Wl(),e._isPhone?ql(e):Ql(e))},ql=function(e){return Zn(Vl(),e.withPadding,Qi(e._propagateDialogEvent),Qi(e._afterDialogOpen),Qi(e._propagateDialogEvent),Qi(e._afterDialogClose),e._hideHeader?void 0:Gl(e))},Gl=function(e){return Zn(jl(),e.header.length?Jl():Xl(e))},Jl=function(e){return Zn(Ul())},Xl=function(e){return Zn(Hl(),Qi(e.headerText),e.close)},Ql=function(e){return Zn(zl(),di(e.styles.root),li(e.classes.root),Qi(e._ariaModal),Qi(e._ariaLabel),Qi(e._ariaLabelledBy),e.forwardToLast,di(e.styles.arrow),e._displayHeader?Kl(e):void 0,di(e.styles.content),li(e.classes.content),e._scroll,e._displayFooter?ec(e):void 0,e.forwardToFirst)},Kl=function(e){return Zn(Rl(),e.header.length?Zl():$l(e))},Zl=function(e){return Zn(Ll())},$l=function(e){return Zn(Nl(),Qi(e.headerText))},ec=function(e){return Zn(Al(),e.footer.length?tc():void 0)},tc=function(e){return Zn(Ol())};function rc(){var e=oe(['<footer class="ui5-popup-footer-root"><slot name="footer"></slot></footer>']);return rc=function(){return e},e}function nc(){var e=oe(['<h2 class="ui5-popup-header-text">',"</h2>"]);return nc=function(){return e},e}function ic(){var e=oe(['<slot name="header"></slot>']);return ic=function(){return e},e}function oc(){var e=oe(['<section style="','" class="','" role="dialog" aria-modal="','" aria-label="','" aria-labelledby="','"><span class="first-fe" data-ui5-focus-trap tabindex="0" @focusin=','></span><header class="ui5-popup-header-root" id="ui5-popup-header">','</header><div style="','" class="','" @scroll="','"><slot></slot></div>','<span class="last-fe" data-ui5-focus-trap tabindex="0" @focusin=',"></span></section> "]);return oc=function(){return e},e}var ac=function(e){return Zn(oc(),di(e.styles.root),li(e.classes.root),Qi(e._ariaModal),Qi(e._ariaLabel),Qi(e._ariaLabelledBy),e.forwardToLast,e.header.length?sc():uc(e),di(e.styles.content),li(e.classes.content),e._scroll,e.footer.length?lc():void 0,e.forwardToFirst)},sc=function(e){return Zn(ic())},uc=function(e){return Zn(nc(),Qi(e.headerText))},lc=function(e){return Zn(rc())};Ve("@ui5/webcomponents-theme-base","sap_fiori_3",mo),Ve("@ui5/webcomponents","sap_fiori_3",go);var cc={tag:"ui5-dialog",slots:{header:{type:HTMLElement},footer:{type:HTMLElement}},properties:{headerText:{type:String},stretch:{type:Boolean},onPhone:{type:Boolean}}},dc=function(e){X(r,e);var t=ne(r);function r(){return V(this,r),t.apply(this,arguments)}return Y(r,[{key:"onBeforeRendering",value:function(){this.onPhone=sa()}},{key:"isModal",get:function(){return!0}},{key:"_ariaLabelledBy",get:function(){return this.ariaLabel?void 0:"ui5-popup-header"}},{key:"_ariaModal",get:function(){return!0}},{key:"classes",get:function(){return{root:{"ui5-popup-root":!0},content:{"ui5-popup-content":!0}}}}],[{key:"metadata",get:function(){return cc}},{key:"template",get:function(){return ac}},{key:"styles",get:function(){return[Ss,":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}"]}}]),r}(Za);dc.define();var hc={H1:"H1",H2:"H2",H3:"H3",H4:"H4",H5:"H5",H6:"H6"},pc=function(e){X(r,e);var t=ne(r);function r(){return V(this,r),t.apply(this,arguments)}return Y(r,null,[{key:"isValid",value:function(e){return!!hc[e]}}]),r}(Pr);function _c(){var e=oe(['<h6 class="ui5-title-root"><span id="','-inner"><slot></slot></span></h6>']);return _c=function(){return e},e}function fc(){var e=oe(['<h5 class="ui5-title-root"><span id="','-inner"><slot></slot></span></h5>']);return fc=function(){return e},e}function mc(){var e=oe(['<h4 class="ui5-title-root"><span id="','-inner"><slot></slot></span></h4>']);return mc=function(){return e},e}function gc(){var e=oe(['<h3 class="ui5-title-root"><span id="','-inner"><slot></slot></span></h3>']);return gc=function(){return e},e}function vc(){var e=oe(['<h2 class="ui5-title-root"><span id="','-inner"><slot></slot></span></h2>']);return vc=function(){return e},e}function yc(){var e=oe(['<h1 class="ui5-title-root"><span id="','-inner"><slot></slot></span></h1>']);return yc=function(){return e},e}function bc(){var e=oe(["","","","","","",""]);return bc=function(){return e},e}pc.generataTypeAcessors(hc);var kc=function(e){return Zn(bc(),e.h1?wc(e):void 0,e.h2?xc(e):void 0,e.h3?Sc(e):void 0,e.h4?Cc(e):void 0,e.h5?Tc(e):void 0,e.h6?Pc(e):void 0)},wc=function(e){return Zn(yc(),Qi(e._id))},xc=function(e){return Zn(vc(),Qi(e._id))},Sc=function(e){return Zn(gc(),Qi(e._id))},Cc=function(e){return Zn(mc(),Qi(e._id))},Tc=function(e){return Zn(fc(),Qi(e._id))},Pc=function(e){return Zn(_c(),Qi(e._id))};Ve("@ui5/webcomponents-theme-base","sap_fiori_3",mo),Ve("@ui5/webcomponents","sap_fiori_3",go);var Dc={tag:"ui5-title",properties:{wrap:{type:Boolean},level:{type:pc,defaultValue:pc.H2}},slots:{default:{type:Node}}},Ic=function(e){X(r,e);var t=ne(r);function r(){return V(this,r),t.apply(this,arguments)}return Y(r,[{key:"normalizedLevel",get:function(){return this.level.toLowerCase()}},{key:"h1",get:function(){return"h1"===this.normalizedLevel}},{key:"h2",get:function(){return"h2"===this.normalizedLevel}},{key:"h3",get:function(){return"h3"===this.normalizedLevel}},{key:"h4",get:function(){return"h4"===this.normalizedLevel}},{key:"h5",get:function(){return"h5"===this.normalizedLevel}},{key:"h6",get:function(){return"h6"===this.normalizedLevel}}],[{key:"metadata",get:function(){return Dc}},{key:"render",get:function(){return fi}},{key:"template",get:function(){return kc}},{key:"styles",get:function(){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)}"}}]),r}(_n);Ic.define(),Ve("@ui5/webcomponents-theme-base","sap_fiori_3",mo),Ve("@ui5/webcomponents","sap_fiori_3",go);var Mc={tag:"ui5-responsive-popover",properties:{noStretch:{type:Boolean},withPadding:{type:Boolean},contentOnlyOnDesktop:{type:Boolean},_hideHeader:{type:Boolean}}},Ec=function(e){X(n,e);var t,r=ne(n);function n(){return V(this,n),r.apply(this,arguments)}return Y(n,[{key:"open",value:function(e){this.style.display=this._isPhone?"contents":"",this.isOpen()||this._dialog&&this._dialog.isOpen()||(sa()?(this.style.zIndex=Va(),this._dialog.open()):(this.noStretch||(this._minWidth=Math.max(100,e.getBoundingClientRect().width)),this.openBy(e)))}},{key:"close",value:function(){var e=arguments.length>0&&void 0!==arguments[0]&&arguments[0],t=arguments.length>1&&void 0!==arguments[1]&&arguments[1],r=arguments.length>2&&void 0!==arguments[2]&&arguments[2];sa()?this._dialog.close():ie(Q(n.prototype),"close",this).call(this,e,t,r)}},{key:"toggle",value:function(e){if(this.isOpen())return this.close();this.open(e)}},{key:"isOpen",value:function(){return sa()?this._dialog.isOpen():ie(Q(n.prototype),"isOpen",this).call(this)}},{key:"_afterDialogOpen",value:function(e){this.opened=!0,this._propagateDialogEvent(e)}},{key:"_afterDialogClose",value:function(e){this.opened=!1,this._propagateDialogEvent(e)}},{key:"_propagateDialogEvent",value:function(e){var t=e.type.replace("ui5-","");this.fireEvent(t,e.detail)}},{key:"styles",get:function(){var e=ie(Q(n.prototype),"styles",this);return e.root={"min-width":"".concat(this._minWidth,"px")},e}},{key:"_dialog",get:function(){return this.shadowRoot.querySelector("ui5-dialog")}},{key:"_isPhone",get:function(){return sa()}},{key:"_displayHeader",get:function(){return this._isPhone||!this.contentOnlyOnDesktop}},{key:"_displayFooter",get:function(){return this._isPhone||!this.contentOnlyOnDesktop}}],[{key:"onDefine",value:(t=j(regeneratorRuntime.mark((function e(){return regeneratorRuntime.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,Promise.all([Jo.define(),dc.define(),Ic.define()]);case 2:case"end":return e.stop()}}),e)}))),function(){return t.apply(this,arguments)})},{key:"metadata",get:function(){return Mc}},{key:"styles",get:function(){return[].concat(se(Ts.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))}"])}},{key:"template",get:function(){return Yl}}]),n}(Ts);Ec.define();so("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});function Bc(){var e=oe(['<div class="ui5-calheader-root" dir="','" @keydown=','><div id="','-btnPrev" class="','" @click=',' data-sap-cal-head-button="Prev"><ui5-icon class="ui5-calheader-arrowicon" name="','"></ui5-icon></div><div class="ui5-calheader-midcontainer"><div id="','-btn1" class="ui5-calheader-arrowbtn ui5-calheader-middlebtn" type="','" tabindex="0" @click=',' data-sap-show-picker="Month">','</div><div id="','-btn2" class="ui5-calheader-arrowbtn ui5-calheader-middlebtn" type="','" tabindex="0" @click=',' data-sap-show-picker="Year">','</div></div><div class="','" @click=',' id="','-btnNext" data-sap-cal-head-button="Next"><ui5-icon class="ui5-calheader-arrowicon" name="','"></ui5-icon></div></div>']);return Bc=function(){return e},e}so("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});var Fc=function(e){return Zn(Bc(),Qi(e.effectiveDir),e._onkeydown,Qi(e._id),Qi(e._btnPrev.classes),e._handlePrevPress,Qi(e._btnPrev.icon),Qi(e._id),Qi(e._btn1.type),e._showMonthPicker,Qi(e._btn1.text),Qi(e._id),Qi(e._btn2.type),e._showYearPicker,Qi(e._btn2.text),Qi(e._btnNext.classes),e._handleNextPress,Qi(e._id),Qi(e._btnNext.icon))};Ve("@ui5/webcomponents-theme-base","sap_fiori_3",mo),Ve("@ui5/webcomponents","sap_fiori_3",go);var Oc,Ac={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":{}}},Nc=function(e){X(n,e);var t,r=ne(n);function n(){var e;return V(this,n),(e=r.call(this))._btnPrev={},e._btnPrev.icon="slim-arrow-left",e._btnNext={},e._btnNext.icon="slim-arrow-right",e._btn1={},e._btn1.type=Xi.Transparent,e._btn2={},e._btn2.type=Xi.Transparent,e}return Y(n,null,[{key:"metadata",get:function(){return Ac}},{key:"render",get:function(){return fi}},{key:"template",get:function(){return Fc}},{key:"styles",get:function(){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}'}}]),Y(n,[{key:"onBeforeRendering",value:function(){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")}},{key:"_handlePrevPress",value:function(e){this.fireEvent("previous-press",e)}},{key:"_handleNextPress",value:function(e){this.fireEvent("next-press",e)}},{key:"_showMonthPicker",value:function(e){this.fireEvent("show-month-press",e)}},{key:"_showYearPicker",value:function(e){this.fireEvent("show-year-press",e)}},{key:"_onkeydown",value:function(e){if(Di(e)||Pi(e)){var t=e.target.getAttribute("data-sap-show-picker");t&&this["_show".concat(t,"Picker")]()}}}],[{key:"onDefine",value:(t=j(regeneratorRuntime.mark((function e(){return regeneratorRuntime.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.t0=Promise,e.next=3,Jo.define();case 3:return e.t1=e.sent,e.next=6,yo.define();case 6:return e.t2=e.sent,e.t3=[e.t1,e.t2],e.next=10,e.t0.all.call(e.t0,e.t3);case 10:case"end":return e.stop()}}),e)}))),function(){return t.apply(this,arguments)})}]),n}(_n);Nc.define();var Lc=function(){return void 0===Oc&&(Fe(),Oc=Ie.formatSettings),Oc.firstDayOfWeek},Rc="Auto",zc="Vertical",Hc="Horizontal",Uc="Static",jc="Cyclic",Vc="Paging",Wc=function(e){X(n,e);var t,r=ne(n);function n(e){var t,i=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};V(this,n),(t=r.call(this)).currentIndex=i.currentIndex||0,t.rowSize=i.rowSize||1,t.behavior=i.behavior||Uc,t.hasNextPage=!0,t.hasPrevPage=!0;var o=i.navigationMode,a=!o||o===Rc;return t.horizontalNavigationOn=a||o===Hc,t.verticalNavigationOn=a||o===zc,t.pageSize=i.pageSize,t.rootWebComponent=e,t.rootWebComponent.addEventListener("keydown",t.onkeydown.bind(te(t))),t.rootWebComponent._onComponentStateFinalized=function(){t._init()},t}return Y(n,[{key:"_init",value:function(){var e=this;this._getItems().forEach((function(t,r){t._tabIndex=r===e.currentIndex?"0":"-1"}))}},{key:"_horizontalNavigationOn",value:function(){return this.horizontalNavigationOn}},{key:"_verticalNavigationOn",value:function(){return this.verticalNavigationOn}},{key:"_onKeyPress",value:(t=j(regeneratorRuntime.mark((function e(t){return regeneratorRuntime.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return this.currentIndex>=this._getItems().length?this.onOverflowBottomEdge():this.currentIndex<0&&this.onOverflowTopEdge(),t.preventDefault(),e.next=4,Bt.whenFinished();case 4:this.update(),this.focusCurrent();case 6:case"end":return e.stop()}}),e,this)}))),function(e){return t.apply(this,arguments)})},{key:"onkeydown",value:function(e){return Ei(e)&&this._verticalNavigationOn()?this._handleUp(e):Bi(e)&&this._verticalNavigationOn()?this._handleDown(e):Ii(e)&&this._horizontalNavigationOn()?this._handleLeft(e):Mi(e)&&this._horizontalNavigationOn()?this._handleRight(e):function(e){return(e.key?"Home"===e.key:e.keyCode===ki)&&!zi(e)}(e)?this._handleHome(e):function(e){return(e.key?"End"===e.key:e.keyCode===bi)&&!zi(e)}(e)?this._handleEnd(e):void 0}},{key:"_handleUp",value:function(e){this._canNavigate()&&(this.currentIndex-=this.rowSize,this._onKeyPress(e))}},{key:"_handleDown",value:function(e){this._canNavigate()&&(this.currentIndex+=this.rowSize,this._onKeyPress(e))}},{key:"_handleLeft",value:function(e){this._canNavigate()&&(this.currentIndex-=1,this._onKeyPress(e))}},{key:"_handleRight",value:function(e){this._canNavigate()&&(this.currentIndex+=1,this._onKeyPress(e))}},{key:"_handleHome",value:function(e){if(this._canNavigate()){var t=this.rowSize>1?this.rowSize:this._getItems().length;this.currentIndex-=this.currentIndex%t,this._onKeyPress(e)}}},{key:"_handleEnd",value:function(e){if(this._canNavigate()){var t=this.rowSize>1?this.rowSize:this._getItems().length;this.currentIndex+=t-1-this.currentIndex%t,this._onKeyPress(e)}}},{key:"update",value:function(e){var t=this._getItems();if(e&&(this.currentIndex=this._getItems().indexOf(e)),t[this.currentIndex]&&(!t[this.currentIndex]._tabIndex||"0"!==t[this.currentIndex]._tabIndex)){for(var r=t.slice(0),n=0;n<r.length;n++)r[n]._tabIndex=n===this.currentIndex?"0":"-1";this.rootWebComponent._invalidate()}}},{key:"focusCurrent",value:function(){var e=this._getCurrentItem();e&&e.focus()}},{key:"_canNavigate",value:function(){for(var e=this._getCurrentItem(),t=document.activeElement;t.shadowRoot&&t.shadowRoot.activeElement;)t=t.shadowRoot.activeElement;return e&&e===t}},{key:"_getCurrentItem",value:function(){var e=this._getItems();if(!e.length)return null;for(;this.currentIndex>=e.length;)this.currentIndex-=this.rowSize;this.currentIndex<0&&(this.currentIndex=0);var t=e[this.currentIndex];if(t){if(t.isUI5Element)return t.getFocusDomRef();if(this.rootWebComponent.getDomRef())return this.rootWebComponent.getDomRef().querySelector("#".concat(t.id))}}},{key:"onOverflowBottomEdge",value:function(){var e=this._getItems(),t=this.currentIndex-e.length;this.behavior!==jc?(this.behavior===Vc?this._handleNextPage():this.currentIndex=e.length-1,this.fireEvent(n.BORDER_REACH,{start:!1,end:!0,offset:t})):this.currentIndex=0}},{key:"onOverflowTopEdge",value:function(){var e=this._getItems(),t=this.currentIndex+this.rowSize;this.behavior!==jc?(this.behavior===Vc?this._handlePrevPage():this.currentIndex=0,this.fireEvent(n.BORDER_REACH,{start:!0,end:!1,offset:t})):this.currentIndex=e.length-1}},{key:"_handleNextPage",value:function(){this.fireEvent(n.PAGE_BOTTOM);var e=this._getItems();this.hasNextPage?this.currentIndex-=this.pageSize:this.currentIndex=e.length-1}},{key:"_handlePrevPage",value:function(){this.fireEvent(n.PAGE_TOP),this.hasPrevPage?this.currentIndex=this.pageSize+this.currentIndex:this.currentIndex=0}},{key:"getItemsCallback",set:function(e){this._getItems=e}},{key:"current",set:function(e){this.currentIndex=e}}]),n}(yt);Wc.PAGE_TOP="PageTop",Wc.PAGE_BOTTOM="PageBottom",Wc.BORDER_REACH="_borderReach";var Yc=function(e,t,r,n,i){var o=0,a=0,s=Number.isInteger(e)?e:i.getFirstDayOfWeek();if(n&&"en"===n.getLanguage()&&"US"===n.getRegion()){var u=new _l(t.getTime());u.setUTCFullYear(r,0,1),a=u.getUTCDay();var l=new _l(t.getTime());l.setUTCDate(l.getUTCDate()-l.getUTCDay()+a),o=Math.round((l.getTime()-u.getTime())/864e5/7)+1}else{var c=new _l(t.getTime());c.setUTCDate(c.getUTCDate()-s),a=c.getUTCDay(),c.setUTCDate(c.getUTCDate()-a+4);var d=new _l(c.getTime());d.setUTCMonth(0,1);var h=0;(a=d.getUTCDay())>4&&(h=7);var p=new _l(d.getTime());p.setUTCDate(1-a+4+h),o=Math.round((c.getTime()-p.getTime())/864e5/7)+1}return o};function qc(){var e=oe(['<div class="sapWCEmptyWeek"></div>']);return qc=function(){return e},e}function Gc(){var e=oe(['<div id="','" tabindex="','" data-sap-timestamp="','" data-sap-index="','" role="gridcell" aria-selected="','" class="','"><span class="ui5-dp-daytext" data-sap-timestamp="','" data-sap-index="','">',"</span></div>"]);return Gc=function(){return e},e}function Jc(){var e=oe(['<div style="display: flex;" @mouseover="','" @keydown="','">',"</div>"]);return Jc=function(){return e},e}function Xc(){var e=oe(["",""]);return Xc=function(){return e},e}function Qc(){var e=oe(["<div id=",' role="columnheader" aria-label="','" class="','">',"</div>"]);return Qc=function(){return e},e}function Kc(){var e=oe(['<div class="ui5-dp-weekname-container"><span class="ui5-dp-weekname">',"</span></div>"]);return Kc=function(){return e},e}function Zc(){var e=oe(['<div class="ui5-dp-weeknumber-container">',"</div>"]);return Zc=function(){return e},e}function $c(){var e=oe(['<div class="ui5-dp-root" style="','" @keydown='," @mousedown="," @mouseup=",">",'<div id="','-content" class="ui5-dp-content"><div role="row" class="ui5-dp-days-names-container">','</div><div id="','-days" class="ui5-dp-items-container" tabindex="-1">',"</div></div></div>"]);return $c=function(){return e},e}var ed=function(e){return Zn($c(),di(e.styles.wrapper),e._onkeydown,e._onmousedown,e._onmouseup,e._hideWeekNumbers?void 0:td(e),Qi(e._id),si(e._dayNames,(function(e,t){return e._id||t}),(function(e,t){return nd(e)})),Qi(e._id),si(e._weeks,(function(e,t){return e._id||t}),(function(t,r){return id(t,r,e)})))},td=function(e){return Zn(Zc(),si(e._weekNumbers,(function(e,t){return e._id||t}),(function(e,t){return rd(e)})))},rd=function(e,t,r){return Zn(Kc(),Qi(e))},nd=function(e,t,r){return Zn(Qc(),Qi(e.id),Qi(e.name),Qi(e.classes),Qi(e.ultraShortName))},id=function(e,t,r){return Zn(Xc(),e.length?od(e,t,r):sd())},od=function(e,t,r){return Zn(Jc(),r._onitemmouseover,r._onitemkeydown,si(e,(function(e,t){return e._id||t}),(function(e,t){return ad(e)})))},ad=function(e,t,r){return Zn(Gc(),Qi(e.id),Qi(e._tabIndex),Qi(e.timestamp),Qi(e._index),Qi(e.selected),Qi(e.classes),Qi(e.timestamp),Qi(e._index),Qi(e.iDay))},sd=function(e,t,r){return Zn(qc())};Ve("@ui5/webcomponents-theme-base","sap_fiori_3",mo),Ve("@ui5/webcomponents","sap_fiori_3",go);var ud=function(e,t){var r,n=Il.fromTimestamp(e).toLocalJSDate(),i=Il.fromTimestamp(t).toLocalJSDate();return r=12*(i.getFullYear()-n.getFullYear()),r-=n.getMonth(),r+=i.getMonth()},ld={tag:"ui5-daypicker",properties:{timestamp:{type:sn},primaryCalendarType:{type:zu},selectedDates:{type:sn,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:{}}},cd=function(e){X(n,e);var t,r=ne(n);function n(){var e;return V(this,n),(e=r.call(this))._oLocale=Lt(),e._oLocaleData=new rl(e._oLocale),e._itemNav=new Wc(te(e),{rowSize:7,pageSize:42,behavior:Vc}),e._itemNav.getItemsCallback=function(){return this.focusableDays}.bind(te(e)),e._itemNav.attachEvent(Wc.BORDER_REACH,e._handleItemNavigationBorderReach.bind(te(e))),e._itemNav.attachEvent("PageBottom",e._handleMonthBottomOverflow.bind(te(e))),e._itemNav.attachEvent("PageTop",e._handleMonthTopOverflow.bind(te(e))),e}return Y(n,null,[{key:"metadata",get:function(){return ld}},{key:"render",get:function(){return fi}},{key:"template",get:function(){return ed}},{key:"styles",get:function(){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)}'}}]),Y(n,[{key:"onBeforeRendering",value:function(){var e,t,r,n=-1,i=!1,o=0,a=this._getVisibleDays(this._calendarDate);this._weeks=[];var s,u=[];this._weekNumbers=[],this.minDate&&(this._minDateObject=new Date(this._minDate)),this.maxDate&&(this._maxDateObject=new Date(this._maxDate));for(var l=0;l<a.length;l++){e=a[l],r=e.valueOf()/1e3,(s=e.getDay()-this._getFirstDayOfWeek())<0&&(s+=7),t={timestamp:r.toString(),selected:this._selectedDates.some((function(e){return e===r})),selectedBetween:this._selectedDates.slice(1,this._selectedDates.length-1).some((function(e){return e===r})),iDay:e.getDate(),_index:l.toString(),classes:"ui5-dp-item ui5-dp-wday".concat(s)};var c=Yc(Lc(),e.toUTCJSDate(),e.getYear(),this._oLocale,this._oLocaleData);n!==c&&(this._weekNumbers.push(c),n=c);var d=e.isSame(Il.fromLocalJSDate(new Date,this._primaryCalendarType));u.push(t),e.getDay()===this._getFirstDayOfWeek()&&(t.classes+=" ui5-dp-firstday"),t.selected&&(t.classes+=" ui5-dp-item--selected",i=!0),t.selectedBetween&&(t.classes+=" ui5-dp-item--selected-between"),d&&(t.classes+=" ui5-dp-item--now",o=l),e.getMonth()!==this._month&&(t.classes+=" ui5-dp-item--othermonth"),t.id="".concat(this._id,"-").concat(r),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")&&a.length-1!==l||(this._weeks.push(u),u=[])}for(;this._weeks.length<6;)this._weeks.push([]);!i&&o&&0===this._itemNav.current&&(this._itemNav.current=o);var h,p=this._oLocaleData.getDays("wide",this._primaryCalendarType),_=this._oLocaleData.getDays("abbreviated",this._primaryCalendarType).map((function(e){return e}));this._dayNames=[];for(var f=0;f<7;f++)(s=f+this._getFirstDayOfWeek())>6&&(s-=7),h={id:"".concat(this._id,"-WH").concat(f.toString()),name:p[s],ultraShortName:_[s],classes:"ui5-dp-dayname"},this._dayNames.push(h);this._dayNames[0].classes+=" ui5-dp-firstday",this._hideWeekNumbers=this.shouldHideWeekNumbers}},{key:"onAfterRendering",value:function(){1===this.selectedDates.length&&this.fireEvent("daypickerrendered",{focusedItemIndex:this._itemNav.currentIndex})}},{key:"_onmousedown",value:function(e){var t=this,r=e.target;if(this._isDayPressed(r)){for(var n=parseInt(r.getAttribute("data-sap-timestamp")),i=0;i<this._weeks.length;i++)for(var o=0;o<this._weeks[i].length;o++){if(parseInt(this._weeks[i][o].timestamp)===n)if("break"===function(){var e=parseInt(r.getAttribute("data-sap-index"));if(t.minDate||t.maxDate){var n=t.focusableDays.find((function(t){return parseInt(t._index)===e}));e=n?t.focusableDays.indexOf(n):e}return t._itemNav.current=e,t._itemNav.update(),"break"}())break}this.targetDate=n}}},{key:"_onmouseup",value:function(e){var t=this._isDayPressed(e.target);this.targetDate&&(this._modifySelectionAndNotifySubscribers(this.targetDate,e.ctrlKey),this.targetDate=null),t||this._itemNav.focusCurrent()}},{key:"_onitemmouseover",value:function(e){1===this.selectedDates.length&&this.fireEvent("item-mouseover",e)}},{key:"_onitemkeydown",value:function(e){1===this.selectedDates.length&&this.fireEvent("item-keydown",e)}},{key:"_onkeydown",value:function(e){return Pi(e)?this._handleEnter(e):Di(e)?this._handleSpace(e):void 0}},{key:"_handleEnter",value:function(e){if(e.preventDefault(),e.target.className.indexOf("ui5-dp-item")>-1){var t=parseInt(e.target.getAttribute("data-sap-timestamp"));this._modifySelectionAndNotifySubscribers(t,e.ctrlKey)}}},{key:"_handleSpace",value:function(e){if(e.preventDefault(),e.target.className.indexOf("ui5-dp-item")>-1){var t=parseInt(e.target.getAttribute("data-sap-timestamp"));this._modifySelectionAndNotifySubscribers(t,e.ctrlKey)}}},{key:"_modifySelectionAndNotifySubscribers",value:function(e,t){this.selectedDates=t?[].concat(se(this._selectedDates),[e]):[e],this.fireEvent("change",{dates:se(this._selectedDates)})}},{key:"_handleMonthBottomOverflow",value:function(e){this._itemNav.hasNextPage=this._hasNextMonth()}},{key:"_handleMonthTopOverflow",value:function(e){this._itemNav.hasPrevPage=this._hasPrevMonth()}},{key:"_hasNextMonth",value:function(){var e=this._month+1,t=this._year;if(e>11&&(e=0,t++),t>9999&&0===e)return!1;if(!this.maxDate)return!0;var r=this._calendarDate;r.setDate(r.getDate()),r.setYear(t),r.setMonth(e);var n=ud(r.valueOf(),this._maxDate);if(n<0)return!1;var i=this.focusableDays[this.focusableDays.length-1].iDay;return 0!==n||Il.fromTimestamp(this._maxDate).toLocalJSDate().getDate()!==i}},{key:"_hasPrevMonth",value:function(){var e=this._month-1,t=this._year;if(e<0&&(e=11,t--),t<1&&11===e)return!1;if(!this.minDate)return!0;var r=this._calendarDate;r.setDate(r.getDate()),r.setYear(t),r.setMonth(e);var n=ud(this._minDate,r.valueOf());return!(this.minDate&&n<0)}},{key:"_handleItemNavigationBorderReach",value:function(e){var t,r,n,i,o=this._month,a=this._year;e.end?(t=o<11?o+1:0,r=o<11?a:a+1,n=(i=new Date(1e3*this._weeks[this._weeks.length-1][e.offset].timestamp)).getMonth()===t?i.getDate():i.getDate()+7):e.start&&(t=o>0?o-1:11,r=o>0?a:a-1,n=(i=new Date(1e3*this._weeks[0][e.offset].timestamp)).getMonth()===t?i.getDate():i.getDate()-7);var s=this._calendarDate;s.setDate(n),s.setYear(r),s.setMonth(t),s.getYear()<1||s.getYear()>9999||this._isOutOfSelectableRange(s._oUDate.oDate)||this.fireEvent("navigate",{timestamp:s.valueOf()/1e3})}},{key:"_isWeekend",value:function(e){var t=e.getDay(),r=this._oLocaleData.getWeekendStart(),n=this._oLocaleData.getWeekendEnd();return t>=r&&t<=n||n<r&&(t>=r||t<=n)}},{key:"_isDayPressed",value:function(e){var t=e.parentNode;return e.className.indexOf("ui5-dp-item")>-1||t&&e.parentNode.classList.contains("ui5-dp-item")}},{key:"_isOutOfSelectableRange",value:function(e){var t=e._oUDate?e.toLocalJSDate():Il.fromTimestamp(e).toLocalJSDate();return t>this._maxDateObject||t<this._minDateObject}},{key:"getFormat",value:function(){return this._isPattern?this._oDateFormat=kl.getInstance({pattern:this._formatPattern,calendarType:this._primaryCalendarType}):this._oDateFormat=kl.getInstance({style:this._formatPattern,calendarType:this._primaryCalendarType}),this._oDateFormat}},{key:"_getVisibleDays",value:function(e,t){var r,n,i,o=[];if(!e)return o;var a=this._getFirstDayOfWeek(),s=new Il(e,this._primaryCalendarType);s.setDate(1),(n=s.getDay()-a)<0&&(n=7+n),n>0&&s.setDate(1-n);for(var u=new Il(s),l=0;l<42;l++)i=u.getYear(),r=new Il(u,this._primaryCalendarType),t&&i<1?(r._bBeforeFirstYear=!0,o.push(r)):i>=1&&i<=9999&&o.push(r),u.setDate(u.getDate()+1);return o}},{key:"_getFirstDayOfWeek",value:function(){var e=Lc();return Number.isInteger(e)?e:this._oLocaleData.getFirstDayOfWeek()}},{key:"shouldHideWeekNumbers",get:function(){return this._primaryCalendarType!==zu.Gregorian||this.hideWeekNumbers}},{key:"_timestamp",get:function(){return void 0!==this.timestamp?this.timestamp:Math.floor((new Date).getTime()/1e3)}},{key:"_localDate",get:function(){return new Date(1e3*this._timestamp)}},{key:"_calendarDate",get:function(){return Il.fromTimestamp(this._localDate.getTime(),this._primaryCalendarType)}},{key:"_formatPattern",get:function(){return this.formatPattern||"medium"}},{key:"_month",get:function(){return this._calendarDate.getMonth()}},{key:"_year",get:function(){return this._calendarDate.getYear()}},{key:"_currentCalendarDate",get:function(){return Il.fromTimestamp((new Date).getTime(),this._primaryCalendarType)}},{key:"_selectedDates",get:function(){return this.selectedDates||[]}},{key:"_primaryCalendarType",get:function(){return this.primaryCalendarType||Hu()||rl.getInstance(Lt()).getPreferredCalendarType()}},{key:"focusableDays",get:function(){for(var e,t=[],r=0;r<this._weeks.length;r++){var n=this._weeks[r].filter((function(e){return!e.disabled}));t.push(n)}return(e=[]).concat.apply(e,t)}},{key:"_maxDate",get:function(){if(this.maxDate){var e=new Date(this.getFormat().parse(this.maxDate).getFullYear(),this.getFormat().parse(this.maxDate).getMonth(),this.getFormat().parse(this.maxDate).getDate());return Il.fromTimestamp(e.getTime(),this._primaryCalendarType).valueOf()}return this.maxDate}},{key:"_minDate",get:function(){if(this.minDate){var e=new Date(this.getFormat().parse(this.minDate).getFullYear(),this.getFormat().parse(this.minDate).getMonth(),this.getFormat().parse(this.minDate).getDate());return Il.fromTimestamp(e.getTime(),this._primaryCalendarType).valueOf()}return this.minDate}},{key:"_isPattern",get:function(){return"medium"!==this._formatPattern&&"short"!==this._formatPattern&&"long"!==this._formatPattern}},{key:"styles",get:function(){return{wrapper:{display:this._hidden?"none":"flex"},main:{width:"100%"}}}}],[{key:"onDefine",value:(t=j(regeneratorRuntime.mark((function e(){return regeneratorRuntime.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,Promise.all([Lu(Lt().getLanguage(),Lt().getRegion(),Lt().getScript())]);case 2:case"end":return e.stop()}}),e)}))),function(){return t.apply(this,arguments)})}]),n}(_n);function dd(){var e=oe(['<div id="','" data-sap-timestamp='," tabindex=",' class="','" role="gridcell" aria-selected="false">',"</div>"]);return dd=function(){return e},e}function hd(){var e=oe(['<div class="ui5-mp-quarter">',"</div>"]);return hd=function(){return e},e}function pd(){var e=oe(['<div class="ui5-mp-root" role="grid" aria-readonly="false" aria-multiselectable="false" style="','" @keydown='," @click=",">","</div>"]);return pd=function(){return e},e}cd.define();var _d=function(e){return Zn(pd(),di(e.styles.main),e._onkeydown,e._onclick,si(e._quarters,(function(e,t){return e._id||t}),(function(e,t){return fd(e)})))},fd=function(e,t,r){return Zn(hd(),si(e,(function(e,t){return e._id||t}),(function(e,t){return md(e)})))},md=function(e,t,r){return Zn(dd(),Qi(e.id),Qi(e.timestamp),Qi(e._tabIndex),Qi(e.classes),Qi(e.name))};Ve("@ui5/webcomponents-theme-base","sap_fiori_3",mo),Ve("@ui5/webcomponents","sap_fiori_3",go);var gd={tag:"ui5-monthpicker",properties:{timestamp:{type:sn},primaryCalendarType:{type:zu},minDate:{type:String},maxDate:{type:String},_quarters:{type:Object,multiple:!0},_hidden:{type:Boolean,noAttribute:!0},formatPattern:{type:String}},events:{change:{}}},vd=function(e){X(r,e);var t=ne(r);function r(){var e;return V(this,r),(e=t.call(this))._oLocale=Lt(),e._oLocaleData=new rl(e._oLocale),e._itemNav=new Wc(te(e),{pageSize:12,rowSize:3,behavior:Vc}),e._itemNav.getItemsCallback=function(){for(var e,t=[],r=0;r<this._quarters.length;r++){var n=this._quarters[r].filter((function(e){return!e.disabled}));t.push(n)}return(e=[]).concat.apply(e,t)}.bind(te(e)),e._itemNav.setItemsCallback=function(e){this._quarters=e}.bind(te(e)),e}return Y(r,null,[{key:"metadata",get:function(){return gd}},{key:"render",get:function(){return fi}},{key:"template",get:function(){return _d}},{key:"styles",get:function(){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%}'}}]),Y(r,[{key:"onBeforeRendering",value:function(){for(var e=[],t=Il.fromTimestamp((new Date).getTime(),this._primaryCalendarType),r=0;r<12;r++){t.setMonth(r);var n={timestamp:(t.valueOf()/1e3).toString(),id:"".concat(this._id,"-m").concat(r),name:this._oLocaleData.getMonths("wide",this._primaryCalendarType)[r],classes:"ui5-mp-item"};this._month===r&&(n.classes+=" ui5-mp-item--selected"),(this.minDate||this.maxDate)&&this._isOutOfSelectableRange(r)&&(n.classes+=" ui5-mp-item--disabled",n.disabled=!0);var i=parseInt(r/3);e[i]?e[i].push(n):e[i]=[n]}this._quarters=e}},{key:"onAfterRendering",value:function(){this._itemNav.focusCurrent()}},{key:"_onclick",value:function(e){if(e.target.className.indexOf("ui5-mp-item")>-1){var t=this.getTimestampFromDOM(e.target);this.timestamp=t,this._itemNav.current=this._month,this.fireEvent("change",{timestamp:t})}}},{key:"_onkeydown",value:function(e){(Di(e)||Pi(e))&&this._activateMonth(e)}},{key:"_activateMonth",value:function(e){if(e.preventDefault(),e.target.className.indexOf("ui5-mp-item")>-1){var t=this.getTimestampFromDOM(e.target);this.timestamp=t,this.fireEvent("change",{timestamp:t})}}},{key:"_isOutOfSelectableRange",value:function(e){var t=this._localDate.getFullYear(),r=new Date(this._minDate),n=new Date(this._maxDate),i=r&&(t===r.getFullYear()&&e<r.getMonth()||t<r.getFullYear());return n&&(t===n.getFullYear()&&e>n.getMonth()||t>n.getFullYear())||i}},{key:"getFormat",value:function(){return this._isPattern?this._oDateFormat=kl.getInstance({pattern:this._formatPattern,calendarType:this._primaryCalendarType}):this._oDateFormat=kl.getInstance({style:this._formatPattern,calendarType:this._primaryCalendarType}),this._oDateFormat}},{key:"getTimestampFromDOM",value:function(e){var t=e.getAttribute("data-sap-timestamp");return parseInt(t)}},{key:"_timestamp",get:function(){return void 0!==this.timestamp?this.timestamp:Math.floor((new Date).getTime()/1e3)}},{key:"_localDate",get:function(){return new Date(1e3*this._timestamp)}},{key:"_calendarDate",get:function(){return Il.fromTimestamp(this._localDate.getTime(),this._primaryCalendarType)}},{key:"_month",get:function(){return this._calendarDate.getMonth()}},{key:"_primaryCalendarType",get:function(){return this.primaryCalendarType||Hu()||rl.getInstance(Lt()).getPreferredCalendarType()}},{key:"_isPattern",get:function(){return"medium"!==this._formatPattern&&"short"!==this._formatPattern&&"long"!==this._formatPattern}},{key:"_maxDate",get:function(){if(this.maxDate){var e=new Date(this.getFormat().parse(this.maxDate).getFullYear(),this.getFormat().parse(this.maxDate).getMonth(),this.getFormat().parse(this.maxDate).getDate());return Il.fromTimestamp(e.getTime(),this._primaryCalendarType).valueOf()}return this.maxDate}},{key:"_minDate",get:function(){if(this.minDate){var e=new Date(this.getFormat().parse(this.minDate).getFullYear(),this.getFormat().parse(this.minDate).getMonth(),this.getFormat().parse(this.minDate).getDate());return Il.fromTimestamp(e.getTime(),this._primaryCalendarType).valueOf()}return this.minDate}},{key:"_formatPattern",get:function(){return this.formatPattern||"medium"}},{key:"styles",get:function(){return{main:{display:this._hidden?"none":""}}}}]),r}(_n);function yd(){var e=oe(['<div id="','" tabindex="','" data-sap-timestamp="','" class="','" role="gridcell" aria-selected="false">',"</div>"]);return yd=function(){return e},e}function bd(){var e=oe(['<div class="ui5-yp-interval-container">',"</div>"]);return bd=function(){return e},e}function kd(){var e=oe(['<div class="ui5-yp-root" role="grid" aria-readonly="false" aria-multiselectable="false" style="','" @keydown='," @click=",">","</div>"]);return kd=function(){return e},e}vd.define();var wd=function(e){return Zn(kd(),di(e.styles.main),e._onkeydown,e._onclick,si(e._yearIntervals,(function(e,t){return e._id||t}),(function(e,t){return xd(e)})))},xd=function(e,t,r){return Zn(bd(),si(e,(function(e,t){return e._id||t}),(function(e,t){return Sd(e)})))},Sd=function(e,t,r){return Zn(yd(),Qi(e.id),Qi(e._tabIndex),Qi(e.timestamp),Qi(e.classes),Qi(e.year))};Ve("@ui5/webcomponents-theme-base","sap_fiori_3",mo),Ve("@ui5/webcomponents","sap_fiori_3",go);var Cd={tag:"ui5-yearpicker",properties:{timestamp:{type:sn},primaryCalendarType:{type:zu},minDate:{type:String},maxDate:{type:String,defaultValue:void 0},_selectedYear:{type:sn,noAttribute:!0},_yearIntervals:{type:Object,multiple:!0},_hidden:{type:Boolean,noAttribute:!0},formatPattern:{type:String}},events:{change:{}}},Td=function(e){X(r,e);var t=ne(r);function r(){var e;return V(this,r),(e=t.call(this))._oLocale=Lt(),e._itemNav=new Wc(te(e),{pageSize:20,rowSize:4,behavior:Vc}),e._itemNav.getItemsCallback=function(){for(var e,t=[],r=0;r<this._yearIntervals.length;r++){var n=this._yearIntervals[r].filter((function(e){return!e.disabled}));t.push(n)}return(e=[]).concat.apply(e,t)}.bind(te(e)),e._itemNav.attachEvent(Wc.BORDER_REACH,e._handleItemNavigationBorderReach.bind(te(e))),e._yearIntervals=[],e}return Y(r,null,[{key:"metadata",get:function(){return Cd}},{key:"styles",get:function(){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)}'}},{key:"render",get:function(){return fi}},{key:"template",get:function(){return wd}}]),Y(r,[{key:"onBeforeRendering",value:function(){var e=kl.getDateInstance({format:"y",calendarType:this._primaryCalendarType},this._oLocale),t=this._calendarDate;t.setMonth(0),t.setDate(1),t.getYear()-r._MIDDLE_ITEM_INDEX-1>r._MAX_YEAR-r._ITEMS_COUNT?t.setYear(r._MAX_YEAR-r._ITEMS_COUNT):t.getYear()-r._MIDDLE_ITEM_INDEX-1<r._MIN_YEAR?t.setYear(r._MIN_YEAR-1):t.setYear(t.getYear()-r._MIDDLE_ITEM_INDEX-1);var n,i=[];void 0===this._selectedYear&&(this._selectedYear=this._year);for(var o=0;o<r._ITEMS_COUNT;o++){var a=parseInt(o/4);i[a]||(i[a]=[]),t.setYear(t.getYear()+1);var s={timestamp:(n=t.valueOf()/1e3).toString(),id:"".concat(this._id,"-y").concat(n),year:e.format(t.toLocalJSDate()),classes:"ui5-yp-item"};t.getYear()===this._selectedYear&&(s.classes+=" ui5-yp-item--selected"),(this.minDate||this.maxDate)&&this._isOutOfSelectableRange(t.getYear())&&(s.classes+=" ui5-yp-item--disabled",s.disabled=!0),i[a]&&i[a].push(s)}this._yearIntervals=i}},{key:"onAfterRendering",value:function(){this._itemNav.focusCurrent()}},{key:"_onclick",value:function(e){if(e.target.className.indexOf("ui5-yp-item")>-1){var t=this.getTimestampFromDom(e.target);this.timestamp=t,this._selectedYear=this._year,this._itemNav.current=r._MIDDLE_ITEM_INDEX,this.fireEvent("change",{timestamp:t})}}},{key:"getTimestampFromDom",value:function(e){var t=e.getAttribute("data-sap-timestamp");return parseInt(t)}},{key:"_onkeydown",value:function(e){return Pi(e)?this._handleEnter(e):Di(e)?this._handleSpace(e):void 0}},{key:"_handleEnter",value:function(e){if(e.preventDefault(),e.target.className.indexOf("ui5-yp-item")>-1){var t=this.getTimestampFromDom(e.target);this.timestamp=t,this._selectedYear=this._year,this._itemNav.current=r._MIDDLE_ITEM_INDEX,this.fireEvent("change",{timestamp:t})}}},{key:"_handleSpace",value:function(e){if(e.preventDefault(),e.target.className.indexOf("ui5-yp-item")>-1){var t=this.getTimestampFromDom(e.target);this._selectedYear=Il.fromTimestamp(1e3*t,this._primaryCalendarType).getYear()}}},{key:"_handleItemNavigationBorderReach",value:function(e){var t=this._calendarDate;if(t.setMonth(0),t.setDate(1),e.end)t.setYear(t.getYear()+r._ITEMS_COUNT);else if(e.start){if(t.getYear()-r._MIDDLE_ITEM_INDEX<r._MIN_YEAR)return;t.setYear(t.getYear()-r._ITEMS_COUNT)}t.getYear()-r._MIDDLE_ITEM_INDEX>r._MAX_YEAR||this._isOutOfSelectableRange(t.getYear()-r._MIDDLE_ITEM_INDEX)&&this._isOutOfSelectableRange(t.getYear()+r._MIDDLE_ITEM_INDEX)||this._isOutOfSelectableRange(t.getYear()-r._MIDDLE_ITEM_INDEX)&&this._isOutOfSelectableRange(t.getYear()+r._MIDDLE_ITEM_INDEX)||(this.timestamp=t.valueOf()/1e3)}},{key:"_isOutOfSelectableRange",value:function(e){var t=new Date(this._minDate),r=new Date(this._maxDate),n=t&&e<t.getFullYear(),i=r&&e>r.getFullYear();return n||i}},{key:"getFormat",value:function(){return this._isPattern?this._oDateFormat=kl.getInstance({pattern:this._formatPattern,calendarType:this._primaryCalendarType}):this._oDateFormat=kl.getInstance({style:this._formatPattern,calendarType:this._primaryCalendarType}),this._oDateFormat}},{key:"_timestamp",get:function(){return void 0!==this.timestamp?this.timestamp:Math.floor((new Date).getTime()/1e3)}},{key:"_localDate",get:function(){return new Date(1e3*this._timestamp)}},{key:"_calendarDate",get:function(){return Il.fromTimestamp(this._localDate.getTime(),this._primaryCalendarType)}},{key:"_year",get:function(){return this._calendarDate.getYear()}},{key:"_primaryCalendarType",get:function(){return this.primaryCalendarType||Hu()||rl.getInstance(Lt()).getPreferredCalendarType()}},{key:"_isPattern",get:function(){return"medium"!==this._formatPattern&&"short"!==this._formatPattern&&"long"!==this._formatPattern}},{key:"_formatPattern",get:function(){return this.formatPattern||"medium"}},{key:"_maxDate",get:function(){if(this.maxDate){var e=new Date(this.getFormat().parse(this.maxDate).getFullYear(),this.getFormat().parse(this.maxDate).getMonth(),this.getFormat().parse(this.maxDate).getDate());return Il.fromTimestamp(e.getTime(),this._primaryCalendarType).valueOf()}return this.maxDate}},{key:"_minDate",get:function(){if(this.minDate){var e=new Date(this.getFormat().parse(this.minDate).getFullYear(),this.getFormat().parse(this.minDate).getMonth(),this.getFormat().parse(this.minDate).getDate());return Il.fromTimestamp(e.getTime(),this._primaryCalendarType).valueOf()}return this.minDate}},{key:"styles",get:function(){return{main:{display:this._hidden?"none":""}}}}]),r}(_n);Td._ITEMS_COUNT=20,Td._MIDDLE_ITEM_INDEX=7,Td._MAX_YEAR=9999,Td._MIN_YEAR=1,Td.define();var Pd=_l.extend("sap.ui.core.date.Gregorian",{constructor:function(){this.oDate=this.createDate(Date,arguments),this.sCalendarType=el.Gregorian}});function Dd(){var e=oe(['<div class="','" style="','"><ui5-calendar-header id="','-head" month-text="','" year-text="','" .primaryCalendarType="','" @ui5-previous-press="','" @ui5-next-press="','" @ui5-show-month-press="','" @ui5-show-year-press="','" ._isNextButtonDisabled="','" ._isPrevButtonDisabled="','"></ui5-calendar-header><div id="','-content"><ui5-daypicker id="','-daypicker" class="','" format-pattern="','" .selectedDates="','" ._hidden="','" .primaryCalendarType="','" .minDate="','" .maxDate="','" timestamp="','" @ui5-change="','" @ui5-navigate="','" ?hide-week-numbers="','"></ui5-daypicker><ui5-monthpicker id="','-MP" class="','" format-pattern="','" ._hidden="','" .primaryCalendarType="','" .minDate="','" .maxDate="','" timestamp="','" @ui5-change="','"></ui5-monthpicker><ui5-yearpicker id="','-YP" class="','" format-pattern="','" ._hidden="','" .primaryCalendarType="','" .minDate="','" .maxDate="','" timestamp="','" ._selectedYear="','" @ui5-change="','"></ui5-yearpicker></div></div>']);return Dd=function(){return e},e}Pd.UTC=function(){return Date.UTC.apply(Date,arguments)},Pd.now=function(){return Date.now()},pl(el.Gregorian,Pd);var Id=function(e){return Zn(Dd(),li(e.classes.main),di(e.styles.main),Qi(e._id),Qi(e._header.monthText),Qi(e._header.yearText),Qi(e._oMonth.primaryCalendarType),Qi(e._header.onPressPrevious),Qi(e._header.onPressNext),Qi(e._header.onBtn1Press),Qi(e._header.onBtn2Press),Qi(e._header._isNextButtonDisabled),Qi(e._header._isPrevButtonDisabled),Qi(e._id),Qi(e._id),li(e.classes.dayPicker),Qi(e._oMonth.formatPattern),Qi(e._oMonth.selectedDates),Qi(e._oMonth._hidden),Qi(e._oMonth.primaryCalendarType),Qi(e._oMonth.minDate),Qi(e._oMonth.maxDate),Qi(e._oMonth.timestamp),Qi(e._oMonth.onSelectedDatesChange),Qi(e._oMonth.onNavigate),e.hideWeekNumbers,Qi(e._id),li(e.classes.monthPicker),Qi(e._oMonth.formatPattern),Qi(e._monthPicker._hidden),Qi(e._oMonth.primaryCalendarType),Qi(e._oMonth.minDate),Qi(e._oMonth.maxDate),Qi(e._monthPicker.timestamp),Qi(e._monthPicker.onSelectedMonthChange),Qi(e._id),li(e.classes.yearPicker),Qi(e._oMonth.formatPattern),Qi(e._yearPicker._hidden),Qi(e._oMonth.primaryCalendarType),Qi(e._oMonth.minDate),Qi(e._oMonth.maxDate),Qi(e._yearPicker.timestamp),Qi(e._yearPicker._selectedYear),Qi(e._yearPicker.onSelectedYearChange))};Ve("@ui5/webcomponents-theme-base","sap_fiori_3",mo),Ve("@ui5/webcomponents","sap_fiori_3",go);var Md={tag:"ui5-calendar",properties:{timestamp:{type:sn},primaryCalendarType:{type:zu},selectedDates:{type:sn,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}}},Ed=function(e){X(n,e);var t,r=ne(n);function n(){var e;return V(this,n),(e=r.call(this))._oLocale=Lt(),e._oLocaleData=new rl(e._oLocale),e._header={},e._header.onPressPrevious=e._handlePrevious.bind(te(e)),e._header.onPressNext=e._handleNext.bind(te(e)),e._header.onBtn1Press=e._handleMonthButtonPress.bind(te(e)),e._header.onBtn2Press=e._handleYearButtonPress.bind(te(e)),e._oMonth={},e._oMonth.onSelectedDatesChange=e._handleSelectedDatesChange.bind(te(e)),e._oMonth.onNavigate=e._handleMonthNavigate.bind(te(e)),e._monthPicker={},e._monthPicker._hidden=!0,e._monthPicker.onSelectedMonthChange=e._handleSelectedMonthChange.bind(te(e)),e._yearPicker={},e._yearPicker._hidden=!0,e._yearPicker.onSelectedYearChange=e._handleSelectedYearChange.bind(te(e)),e._isShiftingYears=!1,e}return Y(n,null,[{key:"metadata",get:function(){return Md}},{key:"render",get:function(){return fi}},{key:"template",get:function(){return Id}},{key:"styles",get:function(){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}"}}]),Y(n,[{key:"onBeforeRendering",value:function(){var e,t=kl.getDateInstance({format:"y",calendarType:this._primaryCalendarType}),r=this.minDate&&this.getFormat().parse(this.minDate),n=this.maxDate&&this.getFormat().parse(this.maxDate),i=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=se(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=t.format(this._localDate),e=this.timestamp&&Il.fromTimestamp(1e3*this.timestamp).getMonth(),i=this.timestamp&&Il.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&&r.getMonth()===e&&r.getFullYear()===i?this._header._isPrevButtonDisabled=!0:this._header._isPrevButtonDisabled=!1,this.maxDate&&n.getMonth()===e&&n.getFullYear()===i?this._header._isNextButtonDisabled=!0:this._header._isNextButtonDisabled=!1),this._yearPicker._hidden||(i=this._yearPicker.timestamp&&Il.fromTimestamp(1e3*this._yearPicker.timestamp).getYear(),this.minDate&&i-r.getFullYear()<1?this._header._isPrevButtonDisabled=!0:this._header._isPrevButtonDisabled=!1,this.maxDate&&n.getFullYear()-i<1?this._header._isNextButtonDisabled=!0:this._header._isNextButtonDisabled=!1)}},{key:"_handleSelectedDatesChange",value:function(e){this.selectedDates=se(e.detail.dates),this.fireEvent("selected-dates-change",{dates:e.detail.dates})}},{key:"_handleMonthNavigate",value:function(e){this.timestamp=e.detail.timestamp}},{key:"_handleSelectedMonthChange",value:function(e){var t=this._calendarDate,r=Il.fromTimestamp(1e3*e.detail.timestamp,this._primaryCalendarType).getMonth();t.setMonth(r),this.timestamp=t.valueOf()/1e3,this._hideMonthPicker(),this._focusFirstDayOfMonth(t)}},{key:"_focusFirstDayOfMonth",value:function(e){var t=-1,r=this.shadowRoot.querySelector("ui5-daypicker");r._getVisibleDays(e).forEach((function(e,r){1===e.getDate()&&-1===t&&(t=r)})),r._itemNav.currentIndex=t,r._itemNav.focusCurrent()}},{key:"_handleSelectedYearChange",value:function(e){var t=Il.fromTimestamp(1e3*e.detail.timestamp,this._primaryCalendarType);t.setMonth(0),t.setDate(1),this.timestamp=t.valueOf()/1e3,this._hideYearPicker(),this._focusFirstDayOfMonth(t)}},{key:"_handleMonthButtonPress",value:function(){this._hideYearPicker(),this["_".concat(this._monthPicker._hidden?"show":"hide","MonthPicker")]()}},{key:"_handleYearButtonPress",value:function(){this._hideMonthPicker(),this["_".concat(this._yearPicker._hidden?"show":"hide","YearPicker")]()}},{key:"_handlePrevious",value:function(){this._monthPicker._hidden&&this._yearPicker._hidden?this._showPrevMonth():this._monthPicker._hidden&&!this._yearPicker._hidden?this._showPrevPageYears():!this._monthPicker._hidden&&this._yearPicker._hidden&&this._showPrevYear()}},{key:"_handleNext",value:function(){this._monthPicker._hidden&&this._yearPicker._hidden?this._showNextMonth():this._monthPicker._hidden&&!this._yearPicker._hidden?this._showNextPageYears():!this._monthPicker._hidden&&this._yearPicker._hidden&&this._showNextYear()}},{key:"_showNextMonth",value:function(){var e=this._calendarDate;e.setDate(1),e.setMonth(e.getMonth()+1),e.getYear()>Td._MAX_YEAR||this.isInValidRange(e.toLocalJSDate().valueOf())&&(this._focusFirstDayOfMonth(e),this.timestamp=e.valueOf()/1e3)}},{key:"_showPrevMonth",value:function(){var e=this._month-1,t=this._calendarDate.getYear(),r=this.shadowRoot.querySelector("ui5-daypicker"),n=r._calendarDate.setMonth(r._calendarDate.getMonth()),i=r._calendarDate.setMonth(r._calendarDate.getMonth()-1);n.setDate(-1);var o=-1;if(this.isInValidRange(n.toLocalJSDate().valueOf())){r._getVisibleDays(i).forEach((function(e,t){var r=n.getDate()===e.getDate(),i=n.getMonth()===e.getMonth();r&&i&&(o=t+1)}));if(-1!==o){var a=r.shadowRoot.querySelector(".ui5-dp-items-container").children[parseInt(o/7)].children[o%7];r._itemNav.current=o,a.focus()}e>11&&(e=0,t=this._calendarDate.getYear()+1),e<0&&(e=11,t=this._calendarDate.getYear()-1);var s=this._calendarDate;s.setYear(t),s.setMonth(e),s.getYear()<Td._MIN_YEAR||(this.timestamp=s.valueOf()/1e3)}}},{key:"_showNextYear",value:function(){if(this._calendarDate.getYear()!==Td._MAX_YEAR){var e=this._calendarDate;e.setYear(this._calendarDate.getYear()+1),this.timestamp=e.valueOf()/1e3}}},{key:"_showPrevYear",value:function(){if(this._calendarDate.getYear()!==Td._MIN_YEAR){var e=this._calendarDate;e.setYear(this._calendarDate.getYear()-1),this.timestamp=e.valueOf()/1e3}}},{key:"_showNextPageYears",value:function(){this._isYearInRange(this._yearPicker.timestamp,Td._ITEMS_COUNT-Td._MIDDLE_ITEM_INDEX,Td._MIN_YEAR,Td._MAX_YEAR)&&(this.minDate&&!this._isYearInRange(this._yearPicker.timestamp,Td._ITEMS_COUNT-Td._MIDDLE_ITEM_INDEX,this.getFormat().parse(this.minDate).getFullYear(),Td._MAX_YEAR)||this.maxDate&&!this._isYearInRange(this._yearPicker.timestamp,Td._ITEMS_COUNT-Td._MIDDLE_ITEM_INDEX,Td._MIN_YEAR,this.getFormat().parse(this.maxDate).getFullYear())||(this._yearPicker=Object.assign({},this._yearPicker,{timestamp:this._yearPicker.timestamp+31536e3*Td._ITEMS_COUNT}),this._isShiftingYears=!0))}},{key:"_showPrevPageYears",value:function(){this._isYearInRange(this._yearPicker.timestamp,-Td._MIDDLE_ITEM_INDEX-1,Td._MIN_YEAR,Td._MAX_YEAR)&&(this.minDate&&!this._isYearInRange(this._yearPicker.timestamp,-Td._MIDDLE_ITEM_INDEX-1,this.getFormat().parse(this.minDate).getFullYear(),Td._MAX_YEAR)||this.maxDate&&!this._isYearInRange(this._yearPicker.timestamp,-Td._MIDDLE_ITEM_INDEX-1,Td._MIN_YEAR,this.getFormat().parse(this.maxDate).getFullYear())||(this._yearPicker=Object.assign({},this._yearPicker,{timestamp:this._yearPicker.timestamp-31536e3*Td._ITEMS_COUNT}),this._isShiftingYears=!0))}},{key:"_showMonthPicker",value:function(){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;var e=this.shadowRoot.querySelector(".ui5-cal-root").getBoundingClientRect();this._calendarWidth=e.width.toString(),this._calendarHeight=e.height.toString()}},{key:"_showYearPicker",value:function(){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;var e=this.shadowRoot.querySelector(".ui5-cal-root").getBoundingClientRect();this._calendarWidth=e.width.toString(),this._calendarHeight=e.height.toString()}},{key:"_hideMonthPicker",value:function(){this._monthPicker=Object.assign({},this._monthPicker),this._oMonth=Object.assign({},this._oMonth),this._monthPicker._hidden=!0,this._oMonth._hidden=!1}},{key:"_hideYearPicker",value:function(){this._yearPicker=Object.assign({},this._yearPicker),this._oMonth=Object.assign({},this._oMonth),this._yearPicker._hidden=!0,this._oMonth._hidden=!1}},{key:"_isYearInRange",value:function(e,t,r,n){if(e){var i=Il.fromTimestamp(1e3*e,this._primaryCalendarType);return i.setMonth(0),i.setDate(1),i.setYear(i.getYear()+t),i.getYear()>=r&&i.getYear()<=n}}},{key:"isInValidRange",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"",t=Il.fromTimestamp(e).toLocalJSDate(),r=this._minDate&&new Date(this._minDate),n=this._maxDate&&new Date(this._maxDate);if(r&&n){if(r<=t&&n>=t)return!0}else if(r&&!n){if(r<=t)return!0}else if(n&&!r){if(n>=t)return!0}else if(!n&&!r)return!0;return!1}},{key:"getFormat",value:function(){return this._isPattern?this._oDateFormat=kl.getInstance({pattern:this._formatPattern,calendarType:this._primaryCalendarType}):this._oDateFormat=kl.getInstance({style:this._formatPattern,calendarType:this._primaryCalendarType}),this._oDateFormat}},{key:"_timestamp",get:function(){return void 0!==this.timestamp?this.timestamp:Math.floor((new Date).getTime()/1e3)}},{key:"_localDate",get:function(){return new Date(1e3*this._timestamp)}},{key:"_calendarDate",get:function(){return Il.fromTimestamp(this._localDate.getTime(),this._primaryCalendarType)}},{key:"_month",get:function(){return this._calendarDate.getMonth()}},{key:"_primaryCalendarType",get:function(){return this.primaryCalendarType||Hu()||rl.getInstance(Lt()).getPreferredCalendarType()}},{key:"_formatPattern",get:function(){return this.formatPattern||"medium"}},{key:"_isPattern",get:function(){return"medium"!==this._formatPattern&&"short"!==this._formatPattern&&"long"!==this._formatPattern}},{key:"_selectedDates",get:function(){return this.selectedDates||[]}},{key:"_maxDate",get:function(){if(this.maxDate){var e=new Date(this.getFormat().parse(this.maxDate).getFullYear(),this.getFormat().parse(this.maxDate).getMonth(),this.getFormat().parse(this.maxDate).getDate());return Il.fromTimestamp(e.getTime(),this._primaryCalendarType).valueOf()}return this.maxDate}},{key:"_minDate",get:function(){if(this.minDate){var e=new Date(this.getFormat().parse(this.minDate).getFullYear(),this.getFormat().parse(this.minDate).getMonth(),this.getFormat().parse(this.minDate).getDate());return Il.fromTimestamp(e.getTime(),this._primaryCalendarType).valueOf()}return this.minDate}},{key:"classes",get:function(){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}}}},{key:"styles",get:function(){return{main:{height:"".concat(this._calendarHeight?"".concat(this._calendarHeight,"px"):"auto"),width:"".concat(this._calendarWidth?"".concat(this._calendarWidth,"px"):"auto")}}}}],[{key:"onDefine",value:(t=j(regeneratorRuntime.mark((function e(){return regeneratorRuntime.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,Promise.all([Lu(Lt().getLanguage(),Lt().getRegion(),Lt().getScript()),Nc.define(),cd.define(),vd.define(),Td.define()]);case 2:case"end":return e.stop()}}),e)}))),function(){return t.apply(this,arguments)})}]),n}(_n);function Bd(){var e=oe(['<ui5-icon slot="icon" name="','" tabindex="-1" accessible-name="','" show-tooltip @click="','" input-icon ?pressed="','" dir="','"></ui5-icon>']);return Bd=function(){return e},e}function Fd(){var e=oe(['<slot name="valueStateMessage" slot="valueStateMessage"></slot>']);return Fd=function(){return e},e}function Od(){var e=oe(['<div class="ui5-date-picker-root" style="','" @keydown=','>\x3c!-- INPUT --\x3e<ui5-input id="','-inner" class="ui5-date-picker-input" placeholder="','" type="','" value="','" ?disabled="','" ?readonly="','" value-state="','" @ui5-change="','" @ui5-input="','" data-sap-focus-ref ._inputAccInfo ="','">',"",'</ui5-input><slot name="formSupport"></slot></div>']);return Od=function(){return e},e}Ed.define();var Ad=function(e){return Zn(Od(),di(e.styles.main),e._onkeydown,Qi(e._id),Qi(e._placeholder),Qi(e.type),Qi(e.value),e.disabled,e.readonly,Qi(e.valueState),Qi(e._handleInputChange),Qi(e._handleInputLiveChange),Qi(e.accInfo),e.valueStateMessage.length?Nd():void 0,e.readonly?void 0:Ld(e))},Nd=function(e){return Zn(Fd())},Ld=function(e){return Zn(Bd(),Qi(e.openIconName),Qi(e.openIconTitle),e.togglePicker,e._isPickerOpen,Qi(e.effectiveDir))};function Rd(){var e=oe([""]);return Rd=function(){return e},e}function zd(){var e=oe(['<div slot="header" class="ui5-responsive-popover-header"><div class="row"><span>','</span><ui5-button class="ui5-responsive-popover-close-btn" icon="decline" design="Transparent" @click="','"></ui5-button></div></div>']);return zd=function(){return e},e}function Hd(){var e=oe(['<ui5-responsive-popover id="','-responsive-popover" allow-target-overlap="','" stay-open-on-scroll="','" placement-type="Bottom" horizontal-align="Left" no-arrow with-padding no-stretch ?_hide-header=',' @keydown="','" @ui5-after-close="','" @ui5-after-open="','">','<ui5-calendar id="','-calendar" primary-calendar-type="','" format-pattern="','" timestamp="','" .selectedDates="','" .minDate="','" .maxDate="','" @ui5-selected-dates-change="','" ?hide-week-numbers="','"></ui5-calendar>',"</ui5-responsive-popover>"]);return Hd=function(){return e},e}var Ud=function(e){return Zn(Hd(),Qi(e._id),Qi(e._respPopoverConfig.allowTargetOverlap),Qi(e._respPopoverConfig.stayOpenOnScroll),Qi(e._shouldHideHeader),e._onkeydown,Qi(e._respPopoverConfig.afterClose),Qi(e._respPopoverConfig.afterOpen),e.showHeader?jd(e):void 0,Qi(e._id),Qi(e._calendar.primaryCalendarType),Qi(e._calendar.formatPattern),Qi(e._calendar.timestamp),Qi(e._calendar.selectedDates),Qi(e._calendar.minDate),Qi(e._calendar.maxDate),Qi(e._calendar.onSelectedDatesChange),e.hideWeekNumbers,e.showFooter?Vd():void 0)},jd=function(e){return Zn(zd(),Qi(e._headerTitleText),e.closePicker)},Vd=function(e){return Zn(Rd())};Ve("@ui5/webcomponents-theme-base","sap_fiori_3",mo),Ve("@ui5/webcomponents","sap_fiori_3",go);Ve("@ui5/webcomponents-theme-base","sap_fiori_3",mo),Ve("@ui5/webcomponents","sap_fiori_3",go);var Wd={tag:"ui5-date-picker",altTag:"ui5-datepicker",languageAware:!0,managedSlots:!0,properties:{value:{type:String},valueState:{type:la,defaultValue:la.None},formatPattern:{type:String},minDate:{type:String},maxDate:{type:String},primaryCalendarType:{type:zu},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:{}}},Yd=function(e){X(o,e);var t,r,n,i=ne(o);function o(){var e;return V(this,o),(e=i.call(this))._respPopoverConfig={allowTargetOverlap:!0,stayOpenOnScroll:!0,afterClose:function(){e._isPickerOpen=!1,sa()?e.blur():e._focusInputAfterClose&&(e._getInput().focus(),e._focusInputAfterClose=!1);var t=e.calendar;t&&(t._hideMonthPicker(),t._hideYearPicker())},afterOpen:function(){var t=e.calendar;if(t){var r=t.shadowRoot.querySelector("#".concat(t._id,"-daypicker")),n=r.shadowRoot.querySelector(".ui5-dp-item--selected"),i=r.shadowRoot.querySelector(".ui5-dp-item--now"),o=n||i;if(n||!e.minDate&&!e.maxDate||e.isInValidRange((new Date).getTime())||(o=e.findFirstFocusableDay(r)),e._focusInputAfterOpen)e._focusInputAfterOpen=!1,e._getInput().focus();else if(o){o.focus();var a=parseInt(o.getAttribute("data-sap-index")),s=r.focusableDays.find((function(e){return parseInt(e._index)===a}));a=s?r.focusableDays.indexOf(s):a,r._itemNav.current=a,r._itemNav.update()}}}},e._calendar={onSelectedDatesChange:e._handleCalendarChange.bind(te(e)),selectedDates:[]},e.i18nBundle=qi("@ui5/webcomponents"),e}return Y(o,null,[{key:"metadata",get:function(){return Wd}},{key:"render",get:function(){return fi}},{key:"template",get:function(){return Ad}},{key:"staticAreaTemplate",get:function(){return Ud}},{key:"styles",get:function(){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%}"}},{key:"staticAreaStyles",get:function(){return[Cu,"ui5-calendar{width:100%}"]}}]),Y(o,[{key:"findFirstFocusableDay",value:function(e){var t=new Date;if(!this.isInValidRange(t.getTime()))return Array.from(e.shadowRoot.querySelectorAll(".ui5-dp-item")).filter((function(e){return!e.classList.contains("ui5-dp-item--disabled")}))[0]}},{key:"onBeforeRendering",value:function(){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=[];var e=we("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)}},{key:"_getTimeStampFromString",value:function(e){var t=this.getFormat().parse(e);if(t){var r=new Date(t.getFullYear(),t.getMonth(),t.getDate());return Il.fromTimestamp(r.getTime(),this._primaryCalendarType).valueOf()}}},{key:"_onkeydown",value:function(e){Ni(e)&&(e.preventDefault(),this.isOpen()&&Li(e)?this.calendar._monthPicker._hidden&&this.calendar._showYearPicker():this._toggleAndFocusInput())}},{key:"_toggleAndFocusInput",value:function(){this.togglePicker(),this._getInput().focus()}},{key:"_getInput",value:function(){return this.shadowRoot.querySelector("ui5-input")}},{key:"_handleInputChange",value:function(){var e=this._getInput().getInputValue(),t=""===e||this._checkValueValidity(e);t?(e=this.normalizeValue(e),this.valueState=la.None):this.valueState=la.Error,this.value=e,this.fireEvent("change",{value:e,valid:t}),this.fireEvent("value-changed",{value:e,valid:t})}},{key:"_handleInputLiveChange",value:function(){var e=this._getInput().getInputValue(),t=""===e||this._checkValueValidity(e);this.value=e,this.fireEvent("input",{value:e,valid:t})}},{key:"_checkValueValidity",value:function(e){return this.isValid(e)&&this.isInValidRange(this._getTimeStampFromString(e))}},{key:"_click",value:function(e){sa()&&(this.responsivePopover.open(this),e.preventDefault())}},{key:"isValid",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"";return!(!e||!this.getFormat().parse(e))}},{key:"isInValidRange",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"";if(""===e)return!0;var t=new Date(e),r=this._minDate&&new Date(this._minDate),n=this._maxDate&&new Date(this._maxDate);if(r&&n){if(r<=t&&n>=t)return!0}else if(r&&!n){if(r<=t)return!0}else if(n&&!r){if(n>=t)return!0}else if(!n&&!r)return!0;return!1}},{key:"normalizeValue",value:function(e){return""===e?e:this.getFormat().format(this.getFormat().parse(e))}},{key:"getFormat",value:function(){return this._isPattern?this._oDateFormat=kl.getInstance({pattern:this._formatPattern,calendarType:this._primaryCalendarType}):this._oDateFormat=kl.getInstance({style:this._formatPattern,calendarType:this._primaryCalendarType}),this._oDateFormat}},{key:"_respPopover",value:(n=j(regeneratorRuntime.mark((function e(){var t;return regeneratorRuntime.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,this.getStaticAreaItemDomRef();case 2:return t=e.sent,e.abrupt("return",t.querySelector("ui5-responsive-popover"));case 4:case"end":return e.stop()}}),e,this)}))),function(){return n.apply(this,arguments)})},{key:"_canOpenPicker",value:function(){return!this.disabled&&!this.readonly}},{key:"_handleCalendarChange",value:function(e){var 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()}},{key:"_handleCalendarSelectedDatesChange",value:function(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=la.None:this.valueState=la.Error,!0}},{key:"_updateValueCalendarSelectedDatesChange",value:function(e){this.value=this.getFormat().format(new Date(Il.fromTimestamp(1e3*e,this._primaryCalendarType).valueOf()),!0)}},{key:"formatValue",value:function(e){return this.getFormat().format(e)}},{key:"closePicker",value:function(){this.responsivePopover.close()}},{key:"openPicker",value:(r=j(regeneratorRuntime.mark((function e(t){return regeneratorRuntime.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return this._isPickerOpen=!0,e.next=3,this._respPopover();case 3:this.responsivePopover=e.sent,this._changeCalendarSelection(),t&&t.focusInput&&(this._focusInputAfterOpen=!0),this.responsivePopover.open(this);case 7:case"end":return e.stop()}}),e,this)}))),function(e){return r.apply(this,arguments)})},{key:"togglePicker",value:function(){this.isOpen()?this.closePicker():this._canOpenPicker()&&(this.updateStaticAreaItemContentDensity(),this.openPicker())}},{key:"_changeCalendarSelection",value:function(e){if(!(this._calendarDate.getYear()<1)){var t=this._calendarDate,r=e||t.valueOf()/1e3;this._calendar=Object.assign({},this._calendar),this._calendar.timestamp=r,this.value&&(this._calendar.selectedDates=[r])}}},{key:"isOpen",value:function(){return!!this._isPickerOpen}},{key:"getSemanticTargetInfo",value:function(e){var t=qd(e),r=!1;return t&&t.className.indexOf("ui5-input-inner")>-1&&(r=!0),{isInput:r}}},{key:"validValue",get:function(){return this.isValid(this.value)?this.value:this.getFormat().format(new Date)}},{key:"calendar",get:function(){return this.responsivePopover.querySelector("#".concat(this._id,"-calendar"))}},{key:"_calendarDate",get:function(){var e=this.getFormat().parse(this.validValue,!0).getTime();return Il.fromTimestamp(e-e%864e5,this._primaryCalendarType)}},{key:"_primaryCalendarType",get:function(){return this.primaryCalendarType||Hu()||rl.getInstance(Lt()).getPreferredCalendarType()}},{key:"_formatPattern",get:function(){return this.formatPattern||"medium"}},{key:"_isPattern",get:function(){return"medium"!==this._formatPattern&&"short"!==this._formatPattern&&"long"!==this._formatPattern}},{key:"_displayFormat",get:function(){return this.getFormat().oFormatOptions.pattern}},{key:"_placeholder",get:function(){return void 0!==this.placeholder?this.placeholder:this._displayFormat}},{key:"_headerTitleText",get:function(){return this.i18nBundle.getText(Do)}},{key:"phone",get:function(){return sa()}},{key:"showHeader",get:function(){return this.phone}},{key:"showFooter",get:function(){return this.phone}},{key:"accInfo",get:function(){return{ariaDescribedBy:"".concat(this._id,"-date"),ariaHasPopup:"true",ariaAutoComplete:"none",role:"combobox",ariaOwns:"".concat(this._id,"-responsive-popover"),ariaExpanded:this.isOpen(),ariaDescription:this.dateAriaDescription}}},{key:"_maxDate",get:function(){return this.maxDate?this._getTimeStampFromString(this.maxDate):this.maxDate}},{key:"_minDate",get:function(){return this.minDate?this._getTimeStampFromString(this.minDate):this.minDate}},{key:"openIconTitle",get:function(){return this.i18nBundle.getText(Co)}},{key:"openIconName",get:function(){return"appointment-2"}},{key:"dateAriaDescription",get:function(){return this.i18nBundle.getText(So)}},{key:"_shouldHideHeader",get:function(){return!1}},{key:"dateValue",get:function(){return this.getFormat().parse(this.value)}},{key:"styles",get:function(){return{main:{width:"100%"}}}},{key:"type",get:function(){return Pa.Text}}],[{key:"onDefine",value:(t=j(regeneratorRuntime.mark((function e(){return regeneratorRuntime.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,Promise.all([Lu(Lt().getLanguage(),Lt().getRegion(),Lt().getScript()),yo.define(),Ec.define(),Ed.define(),Du.define(),Jt("@ui5/webcomponents")]);case 2:case"end":return e.stop()}}),e)}))),function(){return t.apply(this,arguments)})}]),o}(_n),qd=function(e){var t,r;return"function"==typeof e.composedPath&&(r=e.composedPath()),Array.isArray(r)&&r.length&&(t=r[0]),t};Yd.define();var Gd=9,Jd=37,Xd=38,Qd=39,Kd=40,Zd=115,$d=function(e){return(e.key?"ArrowRight"===e.key||"Right"===e.key:e.keyCode===Qd)&&!ih(e)},eh=function(e){return(e.key?"Tab"===e.key:e.keyCode===Gd)&&!ih(e)},th=function(e){return(e.key?"Tab"===e.key:e.keyCode===Gd)&&ah(e,!1,!1,!0)},rh=function(e){return"F4"===e.key&&!ih(e)},nh=function(e){return("ArrowDown"===e.key||"Down"===e.key||"ArrowUp"===e.key||"Up"===e.key)&&ah(e,!1,!0,!1)},ih=function(e){return e.shiftKey||e.altKey||oh(e)},oh=function(e){return!(!e.metaKey&&!e.ctrlKey)},ah=function(e,t,r,n){return e.shiftKey===n&&e.altKey===r&&oh(e)===t};function sh(){var e=oe(['<ui5-icon slot="icon" name="time-entry-request" tabindex="-1" show-tooltip @click="','" input-icon ?pressed="','" class="ui5-time-picker-input-icon-button"></ui5-icon>']);return sh=function(){return e},e}function uh(){var e=oe(['<slot name="valueStateMessage" slot="valueStateMessage"></slot>']);return uh=function(){return e},e}function lh(){var e=oe(['<div id="','" class="ui5-time-picker-root" @keydown="','"><ui5-input id="','-inner" value="','" placeholder="','" ?disabled="','" ?readonly="','" value-state="','" @click="','" @ui5-change="','" @ui5-input="','" class="ui5-time-picker-input">',"","</ui5-input></div>"]);return lh=function(){return e},e}so("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});var ch=function(e){return Zn(lh(),Qi(e._id),e._ontimepickerkeydown,Qi(e._id),Qi(e.value),Qi(e._placeholder),e.disabled,e.readonly,Qi(e.valueState),e._handleInputClick,Qi(e._handleInputChange),Qi(e._handleInputLiveChange),e.valueStateMessage.length?dh():void 0,e.readonly?void 0:hh(e))},dh=function(e){return Zn(uh())},hh=function(e){return Zn(sh(),e.togglePicker,e._isPickerOpen)};function ph(){var e=oe(['<ui5-wheelslider label = "','" value="AM" ._items="','" @click="','" class="ui5-time-picker-wheelslider ui5-time-picker-period-wheelslider"></ui5-wheelslider>']);return ph=function(){return e},e}function _h(){var e=oe(['<ui5-wheelslider label = "','" ._items="','" @click="','" class="ui5-time-picker-wheelslider ui5-time-picker-seconds-wheelslider" cyclic></ui5-wheelslider>']);return _h=function(){return e},e}function fh(){var e=oe(['<ui5-wheelslider label = "','" ._items="','" @click="','" class="ui5-time-picker-wheelslider ui5-time-picker-minutes-wheelslider" cyclic></ui5-wheelslider>']);return fh=function(){return e},e}function mh(){var e=oe(['<ui5-wheelslider label = "','" ._items="','" @click="','" class="ui5-time-picker-wheelslider ui5-time-picker-hours-wheelslider" cyclic></ui5-wheelslider>']);return mh=function(){return e},e}function gh(){var e=oe(['<ui5-responsive-popover id="','-responsive-popover" allow-target-overlap="','" placement-type="','" _hide-header no-arrow no-stretch horizontal-align="','" stay-open-on-scroll="','" @ui5-after-close="','" @ui5-after-open="','" class="ui5-time-picker-popover" @keydown="','" @wheel="','"><div class="','" @keydown=',' tabindex="0" @focusin="','">',"","","",'</div><div slot="footer" class="ui5-time-picker-footer" @keydown=','><ui5-button id="submit" design="Emphasized" @click="','">','</ui5-button><ui5-button id="close" design="Transparent" @click="','">',"</ui5-button></div></ui5-responsive-popover>"]);return gh=function(){return e},e}var vh=function(e){return Zn(gh(),Qi(e._id),Qi(e._respPopover.allowTargetOverlap),Qi(e._respPopover.placementType),Qi(e._respPopover.horizontalAlign),Qi(e._respPopover.stayOpenOnScroll),Qi(e._respPopover.afterClose),Qi(e._respPopover.afterOpen),e._ontimepickerpopoverkeydown,e._handleWheel,li(e.classes.container),e._oncontainerkeydown,e._onfocuscontainerin,e.shouldBuildHoursSlider?yh(e):void 0,e.shouldBuildMinutesSlider?bh(e):void 0,e.shouldBuildSecondsSlider?kh(e):void 0,e.shouldBuildPeriodsSlider?wh(e):void 0,e._onfooterkeydown,e.submitPickers,Qi(e.submitButtonLabel),e.closePicker,Qi(e.cancelButtonLabel))},yh=function(e){return Zn(mh(),Qi(e.hoursSliderTitle),Qi(e.hoursArray),e.handleSliderClicked)},bh=function(e){return Zn(fh(),Qi(e.minutesSliderTitle),Qi(e.minutesArray),e.handleSliderClicked)},kh=function(e){return Zn(_h(),Qi(e.secondsSliderTitle),Qi(e.secondsArray),e.handleSliderClicked)},wh=function(e){return Zn(ph(),Qi(e.periodSliderTitle),Qi(e.periodsArray),e.handleSliderClicked)};so("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});so("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});var xh=new WeakMap,Sh=function(){function e(){V(this,e)}return Y(e,null,[{key:"enqueue",value:function(e,t){xh.has(e)||xh.set(e,[]),xh.get(e).push(t)}},{key:"run",value:function(t,r){return xh.has(t)||xh.set(t,[]),r().then((function(){var r=xh.get(t);if(r.length>0)return e.run(t,r.shift());xh.delete(t)}))}},{key:"push",value:function(t,r){xh.get(t)?e.enqueue(t,r):e.run(t,r)}},{key:"tasks",get:function(){return xh}}]),e}(),Ch={defaultDuration:400,element:document.createElement("DIV"),identity:function(){}},Th=function(e){var t,r,n=e.element,i=void 0===n?Ch.element:n,o=e.duration,a=void 0===o?Ch.duration:o,s=e.progress,u=void 0===s?Ch.identity:s,l=e.dx,c=void 0===l?0:l,d=e.dy,h=void 0===d?0:d;return function(e){var t,r,n,i=e.beforeStart,o=void 0===i?Ch.identity:i,a=e.duration,s=void 0===a?Ch.defaultDuration:a,u=e.element,l=void 0===u?Ch.element:u,c=e.progress,d=void 0===c?Ch.identity:c,h=null,p=!1,_=new Promise((function(e,i){n=function(r){var i=r-(h=h||r);i<=s?(d(1-(s-i)/s),t=!p&&requestAnimationFrame(n)):(d(1),e())},r=function(){p=!0,cancelAnimationFrame(t),i(new Error("animation stopped"))}})).catch((function(e){return e}));return Sh.push(l,(function(){return o(),requestAnimationFrame(n),new Promise((function(e){_.then((function(){return e()}))}))})),{promise:function(){return _},stop:function(){return r}}}({beforeStart:function(){t=i.scrollLeft,r=i.scrollTop},duration:a,element:i,progress:function(e){u(e),i.scrollLeft=t+e*c,i.scrollTop=r+e*h}})},Ph=sa()?"touchend":"mouseup",Dh=function(e){X(r,e);var t=ne(r);function r(e){var n;return V(this,r),(n=t.call(this)).containerComponent=e,n.mouseMove=n.ontouchmove.bind(te(n)),n.mouseUp=n.ontouchend.bind(te(n)),n.touchStart=n.ontouchstart.bind(te(n)),n.isPhone=sa(),n.cachedValue={},n.startX=0,n.startY=0,n.isPhone?(e.addEventListener("touchstart",n.touchStart,{passive:!0}),e.addEventListener("touchmove",n.mouseMove,{passive:!0}),e.addEventListener("touchend",n.mouseUp,{passive:!0})):e.addEventListener("mousedown",n.touchStart,{passive:!0}),n}return Y(r,[{key:"scrollTo",value:function(e,t){this._container.scrollLeft=e,this._container.scrollTop=t}},{key:"move",value:function(e,t){return Th({element:this._container,dx:e,dy:t})}},{key:"getScrollLeft",value:function(){return this._container.scrollLeft}},{key:"getScrollTop",value:function(){return this._container.scrollTop}},{key:"_isTouchInside",value:function(e){var t=this._container.getBoundingClientRect(),r=this.isPhone?e.clientX:e.x,n=this.isPhone?e.clientY:e.y;return r>=t.left&&r<=t.right&&n>=t.top&&n<=t.bottom}},{key:"ontouchstart",value:function(e){var 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)}},{key:"ontouchmove",value:function(e){if(this._canScroll){var t=this._container,r=this.isPhone?e.touches[0]:null,n=this.isPhone?r.pageX:e.x,i=this.isPhone?r.pageY:e.y;t.scrollLeft+=this._prevDragX-n,t.scrollTop+=this._prevDragY-i,this.fireEvent("scroll",{isLeft:n>this._prevDragX,isRight:n<this._prevDragX}),this.cachedValue.dragX=this._prevDragX,this.cachedValue.dragY=this._prevDragY,this._prevDragX=n,this._prevDragY=i}}},{key:"ontouchend",value:function(e){if(this.isPhone){var t=Math.abs(e.changedTouches[0].pageX-this.startX),r=Math.abs(e.changedTouches[0].pageY-this.startY);if(t<10&&r<10)return}if(this._canScroll){var n=this._container,i=this.isPhone?e.changedTouches[0].pageX:e.x,o=this.isPhone?e.changedTouches[0].pageY:e.y;n.scrollLeft+=this._prevDragX-i,n.scrollTop+=this._prevDragY-o;var a=i===this._prevDragX?this.cachedValue.dragX:i;this.fireEvent(Ph,{isLeft:a<this._prevDragX,isRight:a>this._prevDragX}),this._prevDragX=i,this._prevDragY=o,this.isPhone||(document.removeEventListener("mousemove",this.mouseMove,{passive:!0}),document.removeEventListener("mouseup",this.mouseUp))}}},{key:"scrollContainer",set:function(e){this._container=e},get:function(){return this._container}}]),r}(yt);function Ih(){var e=oe(['<ul id="','--items-list"><li class="ui5-wheelslider-item" style="list-style-type: none;">',"</li></ul>"]);return Ih=function(){return e},e}function Mh(){var e=oe(['<li class="ui5-wheelslider-item" data-item-index="','" style="list-style-type: none;">',"</li>"]);return Mh=function(){return e},e}function Eh(){var e=oe(['<ul id="','--items-list">',"</ul>"]);return Eh=function(){return e},e}function Bh(){var e=oe(['<div id="','" ?disabled= "','" value = "','" label = "','" ?expanded= "','" @click = '," @keydown=",' class = "','" data-sap-focus-ref @focusin="','" @focusout="','" tabindex="0" @wheel="','"><div class="ui5-wheelslider-header-block"><div id="','--label" class="ui5-wheelslider-label">','</div><div class="ui5-wheelslider-invisible-text"></div><ui5-button class="ui5-wheelslider-arrow" icon="navigation-up-arrow" @click=',' tabindex="-1"></ui5-button></div><div id="','--inner" class="ui5-wheelslider-inner"><div id="','--selection-frame" class="ui5-wheelslider-selection-frame"></div><div id="','--wrapper" class="ui5-wheelslider-wrapper">','</div></div><div class="ui5-wheelslider-footer-block"><ui5-button class="ui5-wheelslider-arrow" icon="navigation-down-arrow" @click=',' tabindex="-1"></ui5-button></div></div>']);return Bh=function(){return e},e}var Fh=function(e){return Zn(Bh(),Qi(e._id),Qi(e.disabled),Qi(e.value),Qi(e.label),Qi(e._expanded),Qi(e._onclick),e._onkeydown,li(e.classes.root),e._onfocusin,e._onfocusout,e._handleWheel,Qi(e._id),Qi(e.label),e._onArrowUp,Qi(e._id),Qi(e._id),Qi(e._id),e._expanded?Oh(e):Nh(e),e._onArrowDown)},Oh=function(e){return Zn(Eh(),Qi(e._id),si(e._itemsToShow,(function(e,t){return e._id||t}),(function(e,t){return Ah(e,t)})))},Ah=function(e,t,r){return Zn(Mh(),t,Qi(e))},Nh=function(e){return Zn(Ih(),Qi(e._id),Qi(e.value))};Ve("@ui5/webcomponents-theme-base","sap_fiori_3",mo),Ve("@ui5/webcomponents","sap_fiori_3",go);var Lh={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}}}},Rh=function(e){X(n,e);var t,r=ne(n);function n(){var e;return V(this,n),(e=r.call(this))._currentElementIndex=0,e._itemCellHeight=0,e._itemsToShow=[],e._scroller=new Dh(te(e)),e._scroller.attachEvent("scroll",e._updateScrolling.bind(te(e))),e._scroller.attachEvent("mouseup",e._handleScrollTouchEnd.bind(te(e))),e._scroller.attachEvent("touchend",e._handleScrollTouchEnd.bind(te(e))),e}return Y(n,null,[{key:"metadata",get:function(){return Lh}},{key:"render",get:function(){return fi}},{key:"styles",get:function(){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}"}},{key:"template",get:function(){return Fh}}]),Y(n,[{key:"onBeforeRendering",value:function(){if(!this._expanded&&this.cyclic){var 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()}},{key:"onAfterRendering",value:function(){if(this._scroller.scrollContainer||(this._scroller.scrollContainer=this.shadowRoot.querySelector("#".concat(this._id,"--wrapper"))),this._expanded||this._scroller.scrollTo(0,0),this._expanded){for(var e=this.shadowRoot.querySelectorAll(".ui5-wheelslider-item"),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])}}},{key:"expandSlider",value:function(){this._expanded=!0,this.fireEvent("expand",{})}},{key:"collapseSlider",value:function(){this._expanded=!1,this.fireEvent("collapse",{})}},{key:"_updateItemCellHeight",value:function(){if(this.shadowRoot.querySelectorAll(".ui5-wheelslider-item").length){var e=getComputedStyle(this.shadowRoot.querySelector(".ui5-wheelslider-item")).getPropertyValue("--_ui5_wheelslider_item_height").replace("rem","");this._itemCellHeight=Number(e)}}},{key:"_updateScrolling",value:function(){var e,t=16*this._itemCellHeight,r=this._scroller.scrollContainer.scrollTop;if(r&&(e=Math.round(r/t),this.value!==this._itemsToShow[e])){if(this.cyclic){var n=this._handleArrayBorderReached(e);e!==n&&(e=n)}this.value=this._itemsToShow[e],this._currentElementIndex=e}}},{key:"_handleScrollTouchEnd",value:function(){this._expanded&&this._selectElementByIndex(this._currentElementIndex)}},{key:"_selectElement",value:function(e){e&&this._items.indexOf(e.textContent)>-1&&(this._currentElementIndex=Number(e.dataset.itemIndex),this._selectElementByIndex(this._currentElementIndex))}},{key:"_getCurrentRepetition",value:function(){return this._currentElementIndex?Math.floor(this._currentElementIndex/this._items.length):0}},{key:"_selectElementByIndex",value:function(e){var t=e,r=this._itemsToShow.length,n=this.isCompact?32*t:46*t;this.cyclic&&(t=this._handleArrayBorderReached(t)),t<r&&t>-1&&(this._scroller.scrollTo(0,n),this._currentElementIndex=t,this.value=this._items[t-this._getCurrentRepetition()*this._items.length],this.fireEvent("select",{value:this.value}))}},{key:"_timesMultipliedOnCyclic",value:function(){var e=Math.round(70/this._items.length);return Math.max(3,e)}},{key:"_buildItemsToShow",value:function(){if(this._itemsToShow=this._items,this.cyclic&&this._itemsToShow.length<this._items.length*this._timesMultipliedOnCyclic())for(var e=0;e<this._timesMultipliedOnCyclic();e++)this._itemsToShow=this._itemsToShow.concat(this._items)}},{key:"_handleArrayBorderReached",value:function(e){var t=this._itemsToShow.length,r=e;return 7>r?r+=2*this._items.length:r>t-7&&(r-=2*this._items.length),r}},{key:"_handleWheel",value:function(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))}},{key:"_onclick",value:function(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)}},{key:"_onArrowDown",value:function(e){e.preventDefault(),this._itemDown()}},{key:"_onArrowUp",value:function(e){e.preventDefault(),this._itemUp()}},{key:"_itemDown",value:function(){var e=this._currentElementIndex+1;this._selectElementByIndex(e)}},{key:"_itemUp",value:function(){var e=this._currentElementIndex-1;this._selectElementByIndex(e)}},{key:"_onkeydown",value:function(e){var t;this._expanded&&(((t=e).key?"ArrowUp"!==t.key&&"Up"!==t.key:t.keyCode!==Xd)||ih(t)||this._onArrowUp(e),function(e){return(e.key?"ArrowDown"===e.key||"Down"===e.key:e.keyCode===Kd)&&!ih(e)}(e)&&this._onArrowDown(e))}},{key:"_onfocusin",value:function(e){e.preventDefault(),this.expandSlider()}},{key:"_onfocusout",value:function(e){e.preventDefault(),this.collapseSlider()}},{key:"classes",get:function(){return{root:{"ui5-wheelslider-root":!0,"ui5-phone":sa()}}}}],[{key:"onDefine",value:(t=j(regeneratorRuntime.mark((function e(){return regeneratorRuntime.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,Jo.define();case 2:case"end":return e.stop()}}),e)}))),function(){return t.apply(this,arguments)})}]),n}(_n);Rh.define();var zh=function(e){for(var t=[],r=0;r<e;r++){var n=r.toString();1===n.length&&(n="0".concat(n)),t.push(n)}return t};Ve("@ui5/webcomponents-theme-base","sap_fiori_3",mo),Ve("@ui5/webcomponents","sap_fiori_3",go);Ve("@ui5/webcomponents-theme-base","sap_fiori_3",mo),Ve("@ui5/webcomponents","sap_fiori_3",go);var Hh={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:la,defaultValue:la.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:{}}};(function(e){X(c,e);var t,r,n,i,o,a,s,u,l=ne(c);function c(){var e;return V(this,c),(e=l.call(this)).prevValue=null,e._isPickerOpen=!1,e.i18nBundle=qi("@ui5/webcomponents"),e._respPopover={placementType:es.Bottom,horizontalAlign:is.Left,allowTargetOverlap:!0,stayOpenOnScroll:!0,afterClose:function(){e._isPickerOpen=!1,e.closePicker()}},e._hoursParameters={minHour:0,maxHour:0,isTwelveHoursFormat:!1},e._slidersDomRefs=[],e}return Y(c,null,[{key:"onDefine",value:(t=j(regeneratorRuntime.mark((function e(){return regeneratorRuntime.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,Promise.all([Lu(Lt().getLanguage(),Lt().getRegion(),Lt().getScript()),Ec.define(),Jt("@ui5/webcomponents"),Rh.define(),Du.define()]);case 2:case"end":return e.stop()}}),e)}))),function(){return t.apply(this,arguments)})},{key:"metadata",get:function(){return Hh}},{key:"render",get:function(){return fi}},{key:"styles",get:function(){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)}"}},{key:"staticAreaTemplate",get:function(){return vh}},{key:"template",get:function(){return ch}},{key:"staticAreaStyles",get:function(){return[Cu,".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%}"]}}]),Y(c,[{key:"onBeforeRendering",value:function(){this.formatPattern||(this.formatPattern=rl.getInstance(Lt()).getTimePattern(this.getFormat().oFormatOptions.style)),void 0===this.value&&(this.value=this.getFormat().format(new Date)),this._initHoursFormatParameters()}},{key:"_handleInputClick",value:(u=j(regeneratorRuntime.mark((function e(){var t;return regeneratorRuntime.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if(!this._isPickerOpen){e.next=2;break}return e.abrupt("return");case 2:return e.next=4,this._getInputField();case 4:(t=e.sent)&&t.select();case 6:case"end":return e.stop()}}),e,this)}))),function(){return u.apply(this,arguments)})},{key:"_handleInputChange",value:function(){var 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})}},{key:"_handleInputLiveChange",value:function(){var e=this._getInput().getInputValue(),t=this.isValid(e);this.value=e,this.setSlidersValue(),this.fireEvent("input",{value:e,valid:t})}},{key:"setSlidersValue",value:function(){var e=this._getInput()?this.getFormat().parse(this._getInput().getAttribute("value")):null,t=this.secondsSlider,r=this.minutesSlider,n=this.hoursSlider,i=this.periodsSlider;if(e){if(n){var o="";1===(o=this._hoursParameters.isTwelveHoursFormat&&e.getHours()>this._hoursParameters.maxHour?e.getHours()-12:this._hoursParameters.isTwelveHoursFormat&&e.getHours()<this._hoursParameters.minHour?e.getHours()+12:e.getHours()).toString().length?n.value="0".concat(o):n.value=o.toString()}if(r){var a=e.getMinutes();1===a.toString().length?r.value="0".concat(a):r.value=a.toString()}if(t){var s=e.getSeconds();1===s.toString().length?t.value="0".concat(s):t.value=s.toString()}this._hoursParameters.isTwelveHoursFormat&&i&&1===this._hoursParameters.minHour?i.value=e.getHours()>=this._hoursParameters.maxHour?this.periodsArray[1]:this.periodsArray[0]:this._hoursParameters.isTwelveHoursFormat&&i&&(i.value=e.getHours()>this._hoursParameters.maxHour||e.getHours()===this._hoursParameters.minHour?this.periodsArray[1]:this.periodsArray[0])}}},{key:"closePicker",value:(s=j(regeneratorRuntime.mark((function e(){var t;return regeneratorRuntime.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,this._getPopover();case 2:for(this.responsivePopover.close(),this._isPickerOpen=!1,t=0;t<this._slidersDomRefs.length;t++)this._slidersDomRefs[t].collapseSlider();case 5:case"end":return e.stop()}}),e,this)}))),function(){return s.apply(this,arguments)})},{key:"openPicker",value:(a=j(regeneratorRuntime.mark((function e(){return regeneratorRuntime.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,this._getPopover();case 2:return this.responsivePopover.open(this),this._isPickerOpen=!0,e.next=6,this.slidersDomRefs();case 6:this._slidersDomRefs=e.sent,this.setSlidersValue(),this._slidersDomRefs[0]&&this._slidersDomRefs[0].focus();case 9:case"end":return e.stop()}}),e,this)}))),function(){return a.apply(this,arguments)})},{key:"togglePicker",value:function(){this.isOpen()?(this.closePicker(),this._isPickerOpen=!1):this._canOpenPicker()&&(this.openPicker(),this._isPickerOpen=!0)}},{key:"isOpen",value:function(){return!!this._isPickerOpen}},{key:"_canOpenPicker",value:function(){return!this.disabled&&!this.readonly}},{key:"_getPopover",value:(o=j(regeneratorRuntime.mark((function e(){var t;return regeneratorRuntime.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,this.getStaticAreaItemDomRef();case 2:return t=e.sent,this.responsivePopover=t.querySelector("ui5-responsive-popover"),e.abrupt("return",this.responsivePopover);case 5:case"end":return e.stop()}}),e,this)}))),function(){return o.apply(this,arguments)})},{key:"slidersDomRefs",value:(i=j(regeneratorRuntime.mark((function e(){return regeneratorRuntime.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,this._getPopover();case 2:return e.abrupt("return",this.responsivePopover.default.length?se(this.responsivePopover.default[0].children).filter((function(e){return e.isUI5Element})):this.responsivePopover.default);case 3:case"end":return e.stop()}}),e,this)}))),function(){return i.apply(this,arguments)})},{key:"_getInput",value:function(){return this.shadowRoot.querySelector("ui5-input")}},{key:"_getInputField",value:function(){var e=this._getInput();return e&&e.getInputDOMRef()}},{key:"submitPickers",value:function(){var e=new Date,t=this.secondsSlider,r=this.minutesSlider,n=this.hoursSlider,i=this.periodsSlider,o=r?r.getAttribute("value"):"0",a=t?t.getAttribute("value"):"0",s=i?i.getAttribute("value"):this.periodsArray[0],u=this._hoursParameters.isTwelveHoursFormat,l=n?n.getAttribute("value"):this._hoursParameters.minHour.toString();u&&(s===this.periodsArray[0]&&(l="12"===l?0:l),s===this.periodsArray[1]&&(l="12"===l?l:1*l+12)),e.setHours(l),e.setMinutes(o),e.setSeconds(a),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()}},{key:"isValid",value:function(e){return""===e||!(!e||!this.getFormat().parse(e))}},{key:"normalizeValue",value:function(e){return""===e?e:this.getFormat().format(this.getFormat().parse(e))}},{key:"handleSliderClicked",value:function(e){e.target._expanded&&this.openSlider(e.target.label)}},{key:"openSlider",value:function(e){for(var t=0;t<this._slidersDomRefs.length;t++)this._slidersDomRefs[t].label!==e&&this._slidersDomRefs[t].collapseSlider()}},{key:"_onfocuscontainerin",value:(n=j(regeneratorRuntime.mark((function e(t){var r;return regeneratorRuntime.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if(t.target===t.currentTarget){e.next=2;break}return e.abrupt("return");case 2:if(r=[],!this._slidersDomRefs.length){e.next=9;break}return e.next=6,this.slidersDomRefs();case 6:r=e.sent,e.next=10;break;case 9:r=this._slidersDomRefs;case 10:r[0]&&r[0].focus();case 11:case"end":return e.stop()}}),e,this)}))),function(e){return n.apply(this,arguments)})},{key:"_oncontainerkeydown",value:(r=j(regeneratorRuntime.mark((function e(t){var r,n,i,o,a,s;return regeneratorRuntime.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if(((u=t).key?"ArrowLeft"!==u.key&&"Left"!==u.key:u.keyCode!==Jd)||ih(u)){if($d(t)){for(i=0,o=0;o<this._slidersDomRefs.length;o++)this._slidersDomRefs[o]._expanded&&(i=o);this._slidersDomRefs[i+1]?this._slidersDomRefs[i+1].focus():this._slidersDomRefs[0].focus()}}else{for(r=0,n=0;n<this._slidersDomRefs.length;n++)this._slidersDomRefs[n]._expanded&&(r=n);this._slidersDomRefs[r-1]?this._slidersDomRefs[r-1].focus():this._slidersDomRefs[this._slidersDomRefs.length-1].focus()}if(!eh(t)||t.target!==this._slidersDomRefs[this._slidersDomRefs.length-1]){e.next=9;break}return e.next=4,this._getPopover();case 4:a=e.sent,t.preventDefault(),a.querySelector(".ui5-time-picker-footer").firstElementChild.focus(),e.next=15;break;case 9:if(!th(t)||t.target!==this._slidersDomRefs[0]){e.next=15;break}return e.next=12,this._getPopover();case 12:s=e.sent,t.preventDefault(),s.querySelector(".ui5-time-picker-footer").lastElementChild.focus();case 15:case"end":return e.stop()}var u}),e,this)}))),function(e){return r.apply(this,arguments)})},{key:"_onfooterkeydown",value:function(e){eh(e)&&e.target===e.target.parentElement.lastElementChild&&(e.preventDefault(),this._slidersDomRefs[0].focus()),th(e)&&e.target===e.target.parentElement.firstElementChild&&(e.preventDefault(),this._slidersDomRefs[this._slidersDomRefs.length-1].focus())}},{key:"_ontimepickerkeydown",value:function(e){this._handleTimepickerKeysDown(e)}},{key:"_ontimepickerpopoverkeydown",value:function(e){this._handleTimepickerKeysDown(e)}},{key:"_handleTimepickerKeysDown",value:function(e){var t;((t=e).key?rh(t)||nh(t):t.keyCode===Zd&&!ih(t)||t.keyCode===Kd&&ah(t,!1,!0,!1))&&(e.preventDefault(),this.togglePicker())}},{key:"_handleWheel",value:function(e){e.preventDefault()}},{key:"getFormat",value:function(){return this._isPattern?this._oDateFormat=kl.getInstance({pattern:this._formatPattern}):this._oDateFormat=kl.getInstance({style:this._formatPattern}),this._oDateFormat}},{key:"setValue",value:function(e){this.isValid(e)?(this.value=this.normalizeValue(e),this.setSlidersValue(),this.valueState=la.None):this.valueState=la.Error}},{key:"setPrevValue",value:function(e){this.isValid(e)&&(this.prevValue=this.normalizeValue(e))}},{key:"formatValue",value:function(e){return this.getFormat().format(e)}},{key:"_getSlidersContained",value:function(){return function(e,t){for(var r=[!1,!1,!1,!1],n=0;n<e.length;n++)0!==t.maxHour&&(r[0]=!0),0!==t.maxHour&&t.isTwelveHoursFormat&&(r[0]=!0),"minute"===e[n].type&&(r[1]=!0),"second"===e[n].type&&(r[2]=!0),"amPmMarker"===e[n].type&&(r[3]=!0);return r}(this.getFormat().aFormatArray,this._hoursParameters)}},{key:"_initHoursFormatParameters",value:function(){var e=function(e){var 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}},{key:"secondsArray",get:function(){return zh(60)}},{key:"minutesArray",get:function(){return zh(60)}},{key:"hoursArray",get:function(){return function(e){var t=[];if(t=e.isTwelveHoursFormat?zh(12):zh(24),1===e.minHour)for(var r=0;r<t.length;r++){var n=1*t[r]+1;1===n.toString().length?t[r]="0".concat(n.toString()):t[r]=n.toString()}return t}(this._hoursParameters)}},{key:"periodsArray",get:function(){return this.getFormat().aDayPeriods.map((function(e){return e.toUpperCase()}))}},{key:"secondsSlider",get:function(){return this.responsivePopover&&this.responsivePopover.querySelector(".ui5-time-picker-seconds-wheelslider")}},{key:"minutesSlider",get:function(){return this.responsivePopover&&this.responsivePopover.querySelector(".ui5-time-picker-minutes-wheelslider")}},{key:"hoursSlider",get:function(){return this.responsivePopover&&this.responsivePopover.querySelector(".ui5-time-picker-hours-wheelslider")}},{key:"periodsSlider",get:function(){return this.responsivePopover&&this.responsivePopover.querySelector(".ui5-time-picker-period-wheelslider")}},{key:"_formatPattern",get:function(){return this.formatPattern||"medium"}},{key:"_isPattern",get:function(){return"medium"!==this._formatPattern&&"short"!==this._formatPattern&&"long"!==this._formatPattern}},{key:"_displayFormat",get:function(){return this.getFormat().oFormatOptions.pattern}},{key:"_placeholder",get:function(){return void 0!==this.placeholder?this.placeholder:this._displayFormat}},{key:"dateValue",get:function(){return this.getFormat().parse(this.value)}},{key:"shouldBuildHoursSlider",get:function(){return this._getSlidersContained()[0]}},{key:"shouldBuildMinutesSlider",get:function(){return this._getSlidersContained()[1]}},{key:"shouldBuildSecondsSlider",get:function(){return this._getSlidersContained()[2]}},{key:"shouldBuildPeriodsSlider",get:function(){return this._getSlidersContained()[3]}},{key:"hoursSliderTitle",get:function(){return this.i18nBundle.getText(Ao)}},{key:"minutesSliderTitle",get:function(){return this.i18nBundle.getText(No)}},{key:"secondsSliderTitle",get:function(){return this.i18nBundle.getText(Lo)}},{key:"periodSliderTitle",get:function(){return this.i18nBundle.getText(Ro)}},{key:"submitButtonLabel",get:function(){return this.i18nBundle.getText(zo)}},{key:"cancelButtonLabel",get:function(){return this.i18nBundle.getText(Ho)}},{key:"classes",get:function(){return{container:{"ui5-time-picker-sliders-container":!0,"ui5-phone":sa()}}}}]),c})(_n).define();var Uh=function(){function e(){V(this,e)}return Y(e,null,[{key:"hasGroup",value:function(e){return this.groups.has(e)}},{key:"getGroup",value:function(e){return this.groups.get(e)}},{key:"getSelectedRadioFromGroup",value:function(e){return this.selectedRadios.get(e)}},{key:"removeGroup",value:function(e){return this.selectedRadios.delete(e),this.groups.delete(e)}},{key:"addToGroup",value:function(e,t){this.hasGroup(t)?(this.enforceSingleSelection(e,t),this.getGroup(t).push(e)):this.createGroup(e,t)}},{key:"removeFromGroup",value:function(e,t){if(this.hasGroup(t)){var r=this.getGroup(t),n=this.getSelectedRadioFromGroup(t);r.forEach((function(t,r,n){if(e._id===t._id)return n.splice(r,1)})),n===e&&this.selectedRadios.set(t,null),r.length||this.removeGroup(t)}}},{key:"createGroup",value:function(e,t){e.selected&&this.selectedRadios.set(t,e),this.groups.set(t,[e])}},{key:"selectNextItem",value:function(e,t){var r=this.getGroup(t),n=r.length,i=r.indexOf(e);if(!(n<=1)){var o=this._nextSelectable(i,r);this.updateSelectionInGroup(o,t)}}},{key:"selectPreviousItem",value:function(e,t){var r=this.getGroup(t),n=r.length,i=r.indexOf(e);if(!(n<=1)){var o=this._previousSelectable(i,r);this.updateSelectionInGroup(o,t)}}},{key:"selectItem",value:function(e,t){this.updateSelectionInGroup(e,t)}},{key:"updateSelectionInGroup",value:function(e,t){var r=this.getSelectedRadioFromGroup(t);this._deselectRadio(r),this._selectRadio(e),this.selectedRadios.set(t,e)}},{key:"_deselectRadio",value:function(e){e&&(e.selected=!1)}},{key:"_selectRadio",value:function(e){e&&(e.focus(),e.selected=!0,e._selected=!0,e.fireEvent("select"))}},{key:"_nextSelectable",value:function(e,t){var r=null;if(e===t.length-1){if(t[0].disabled||t[0].readonly)return this._nextSelectable(1,t);r=t[0]}else{if(t[e+1].disabled||t[e+1].readonly)return this._nextSelectable(e+1,t);r=t[e+1]}return r}},{key:"_previousSelectable",value:function(e,t){var r=t.length,n=null;if(0===e){if(t[r-1].disabled||t[r-1].readonly)return this._previousSelectable(r-1,t);n=t[r-1]}else{if(t[e-1].disabled||t[e-1].readonly)return this._previousSelectable(e-1,t);n=t[e-1]}return n}},{key:"enforceSingleSelection",value:function(e,t){var r=this.getSelectedRadioFromGroup(t);e.selected?r?e!==r&&(this._deselectRadio(r),this.selectedRadios.set(t,e)):this.selectedRadios.set(t,e):e===r&&this.selectedRadios.set(t,null)}},{key:"groups",get:function(){return this._groups||(this._groups=new Map),this._groups}},{key:"selectedRadios",get:function(){return this._selectedRadios||(this._selectedRadios=new Map),this._selectedRadios}}]),e}();function jh(){var e=oe(['<circle class="ui5-radio-svg-outer" cx="50%" cy="50%" r="50%" /><circle class="ui5-radio-svg-inner" cx="50%" cy="50%" r="22%" />']);return jh=function(){return e},e}function Vh(){var e=oe(['<span id="','-descr" class="ui5-hidden-text">',"</span>"]);return Vh=function(){return e},e}function Wh(){var e=oe(['<ui5-label id="','-label" class="ui5-radio-label" for="','" ?wrap="','">',"</ui5-label>"]);return Wh=function(){return e},e}function Yh(){var e=oe(['<div class="ui5-radio-root ','" role="radio" aria-checked="','" aria-readonly="','" aria-disabled="','" aria-labelledby="','" aria-describedby="','" tabindex="','" dir="','" @click="','" @keydown="','" @keyup="',"\"><div class='ui5-radio-inner ",'\'><svg class="ui5-radio-svg" focusable="false" aria-hidden="true">',"</svg><input type='radio' ?checked=\"",'" ?readonly="','" ?disabled="','" name="','" data-sap-no-tab-ref/></div>',"","</div>"]);return Yh=function(){return e},e}var qh=function(e){return Zn(Yh(),li(e.classes.main),Qi(e.selected),Qi(e.ariaReadonly),Qi(e.ariaDisabled),Qi(e.ariaLabelledBy),Qi(e.ariaDescribedBy),Qi(e.tabIndex),Qi(e.effectiveDir),e._onclick,e._onkeydown,e._onkeyup,li(e.classes.inner),Xh(),e.selected,e.readonly,e.disabled,Qi(e.name),e.text?Gh(e):void 0,e.hasValueState?Jh(e):void 0)},Gh=function(e){return Zn(Wh(),Qi(e._id),Qi(e._id),e.wrap,Qi(e.text))},Jh=function(e){return Zn(Vh(),Qi(e._id),Qi(e.valueStateText))},Xh=function(e){return $n(jh())};Ve("@ui5/webcomponents-theme-base","sap_fiori_3",mo),Ve("@ui5/webcomponents","sap_fiori_3",go);var Qh={tag:"ui5-radiobutton",languageAware:!0,properties:{disabled:{type:Boolean},readonly:{type:Boolean},selected:{type:Boolean},text:{type:String},valueState:{defaultValue:la.None,type:la},name:{type:String},value:{type:String},wrap:{type:Boolean}},events:{select:{}}};function Kh(){var e=oe(['<span id="','-exceededText" class="ui5-textarea-exceeded-text">',"</span>"]);return Kh=function(){return e},e}function Zh(){var e=oe(["","<br />"]);return Zh=function(){return e},e}function $h(){var e=oe(['<div id="','-mirror" style="','" class="ui5-textarea-mirror" aria-hidden="true">',"</div>"]);return $h=function(){return e},e}function ep(){var e=oe(['<div class="ui5-textarea-root" style="','" ?aria-invalid="','" @focusin="','" @focusout="','">','<textarea id="','-inner" class="ui5-textarea-inner" placeholder="','" ?disabled="','" ?readonly="','" ?required="','" maxlength="','" aria-labelledby=',' .value="','" @input="','" @change="','" @keyup="','" @keydown="','" data-sap-focus-ref part="textarea"></textarea>','<slot name="formSupport"></slot></div> ']);return ep=function(){return e},e}(function(e){X(n,e);var t,r=ne(n);function n(){var e;return V(this,n),(e=r.call(this)).i18nBundle=qi("@ui5/webcomponents"),e}return Y(n,[{key:"onBeforeRendering",value:function(){this.syncGroup(),this._enableFormSupport()}},{key:"syncGroup",value:function(){var e=this._name,t=this.name;t!==e?(e&&Uh.removeFromGroup(this,e),t&&Uh.addToGroup(this,t)):t&&Uh.enforceSingleSelection(this,t),this._name=this.name}},{key:"_enableFormSupport",value:function(){var e=we("FormSupport");e?e.syncNativeHiddenInput(this,(function(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";')}},{key:"_onclick",value:function(){return this.toggle()}},{key:"_handleDown",value:function(e){var t=this.name;t&&(e.preventDefault(),Uh.selectNextItem(this,t))}},{key:"_handleUp",value:function(e){var t=this.name;t&&(e.preventDefault(),Uh.selectPreviousItem(this,t))}},{key:"_onkeydown",value:function(e){return Di(e)?e.preventDefault():Pi(e)?this.toggle():((Bi(e)||Mi(e))&&this._handleDown(e),void((Ei(e)||Ii(e))&&this._handleUp(e)))}},{key:"_onkeyup",value:function(e){Di(e)&&this.toggle()}},{key:"toggle",value:function(){return this.canToggle()?this.name?(Uh.selectItem(this,this.name),this):(this.selected=!this.selected,this.fireEvent("select"),this):this}},{key:"canToggle",value:function(){return!(this.disabled||this.readonly||this.selected)}},{key:"valueStateTextMappings",value:function(){var e=this.i18nBundle;return{Error:e.getText(Uo),Warning:e.getText(jo)}}},{key:"classes",get:function(){return{inner:{"ui5-radio-inner--hoverable":!this.disabled&&!this.readonly&&aa()}}}},{key:"ariaReadonly",get:function(){return this.readonly?"true":void 0}},{key:"ariaDisabled",get:function(){return this.disabled?"true":void 0}},{key:"ariaLabelledBy",get:function(){return this.text?"".concat(this._id,"-label"):void 0}},{key:"ariaDescribedBy",get:function(){return this.hasValueState?"".concat(this._id,"-descr"):void 0}},{key:"hasValueState",get:function(){return this.valueState!==la.None}},{key:"valueStateText",get:function(){return this.valueStateTextMappings()[this.valueState]}},{key:"tabIndex",get:function(){var e=this.getAttribute("tabindex");return this.disabled?"-1":this.name?this.selected?"0":"-1":e||"0"}},{key:"strokeWidth",get:function(){return"None"===this.valueState?"1":"2"}}],[{key:"onDefine",value:(t=j(regeneratorRuntime.mark((function e(){return regeneratorRuntime.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,Promise.all([pa.define(),Jt("@ui5/webcomponents")]);case 2:case"end":return e.stop()}}),e)}))),function(){return t.apply(this,arguments)})},{key:"metadata",get:function(){return Qh}},{key:"render",get:function(){return fi}},{key:"template",get:function(){return qh}},{key:"styles",get:function(){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)}'}}]),n})(_n).define();var tp=function(e){return Zn(ep(),di(e.styles.main),e.ariaInvalid,e._onfocusin,e._onfocusout,e.growing?rp(e):void 0,Qi(e._id),Qi(e.placeholder),e.disabled,e.readonly,e.required,Qi(e._exceededTextProps.calcedMaxLength),Qi(e.ariaLabelledBy),Qi(e.value),e._oninput,e._onchange,e._onkeyup,e._onkeydown,e.showExceededText?ip(e):void 0)},rp=function(e){return Zn($h(),Qi(e._id),di(e.styles.mirror),si(e._mirrorText,(function(e,t){return e._id||t}),(function(e,t){return np(e)})))},np=function(e,t,r){return Zn(Zh(),Qi(e.text))},ip=function(e){return Zn(Kh(),Qi(e._id),Qi(e._exceededTextProps.exceededText))};function op(){var e=oe(["",""]);return op=function(){return e},e}function ap(){var e=oe(["",""]);return ap=function(){return e},e}function sp(){var e=oe(["",""]);return sp=function(){return e},e}function up(){var e=oe(['<ui5-popover skip-registry-update prevent-focus-restore no-padding no-arrow _disable-initial-focus class="ui5-valuestatemessage-popover" style="','" placement-type="Bottom" horizontal-align="Left"><div slot="header" class="ui5-valuestatemessage-root ','">',"</div></ui5-popover>"]);return up=function(){return e},e}function lp(){var e=oe(["",""]);return lp=function(){return e},e}var cp=function(e){return Zn(lp(),e.displayValueStateMessagePopover?dp(e):void 0)},dp=function(e){return Zn(up(),di(e.styles.valueStateMsgPopover),li(e.classes.valueStateMsg),e.hasCustomValueState?hp(e):_p(e))},hp=function(e){return Zn(sp(),si(e.valueStateMessageText,(function(e,t){return e._id||t}),(function(e,t){return pp(e)})))},pp=function(e,t,r){return Zn(ap(),Qi(e))},_p=function(e){return Zn(op(),Qi(e.valueStateText))};Ve("@ui5/webcomponents-theme-base","sap_fiori_3",mo),Ve("@ui5/webcomponents","sap_fiori_3",go);var fp={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:la,defaultValue:la.None},rows:{type:sn,defaultValue:0},maxlength:{type:sn,defaultValue:null},showExceededText:{type:Boolean},growing:{type:Boolean},growingMaxLines:{type:sn,defaultValue:0},name:{type:String},focused:{type:Boolean},exceeding:{type:Boolean},_mirrorText:{type:Object,multiple:!0,defaultValue:""},_maxHeight:{type:String,noAttribute:!0},_width:{type:sn}},slots:{valueStateMessage:{type:HTMLElement}},events:{change:{},input:{}}};(function(e){X(a,e);var t,r,n,i,o=ne(a);function a(){var e;return V(this,a),(e=o.call(this))._firstRendering=!0,e._openValueStateMsgPopover=!1,e._fnOnResize=e._onResize.bind(te(e)),e.i18nBundle=qi("@ui5/webcomponents"),e}return Y(a,null,[{key:"metadata",get:function(){return fp}},{key:"styles",get:function(){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)}"}},{key:"render",get:function(){return fi}},{key:"template",get:function(){return tp}},{key:"staticAreaTemplate",get:function(){return cp}},{key:"staticAreaStyles",get:function(){return Tu}}]),Y(a,[{key:"onEnterDOM",value:function(){Ca.register(this,this._fnOnResize)}},{key:"onExitDOM",value:function(){Ca.deregister(this,this._fnOnResize)}},{key:"onBeforeRendering",value:function(){this._exceededTextProps=this._calcExceededText(),this._mirrorText=this._tokenizeText(this.value),this.exceeding=this._exceededTextProps.leftCharactersCount<0,this.growingMaxLines&&(this._maxHeight="".concat(1.4*this.growingMaxLines*14+9,"px"));var e=we("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";')}},{key:"onAfterRendering",value:function(){this.toggleValueStateMessage(this.openValueStateMsgPopover),this._firstRendering=!1}},{key:"getInputDomRef",value:function(){return this.getDomRef().querySelector("textarea")}},{key:"_onkeydown",value:function(){this._keyDown=!0}},{key:"_onkeyup",value:function(){this._keyDown=!1}},{key:"_onfocusin",value:function(){this.focused=!0,this._openValueStateMsgPopover=!0}},{key:"_onfocusout",value:function(){this.focused=!1,this._openValueStateMsgPopover=!1}},{key:"_onchange",value:function(){this.fireEvent("change",{})}},{key:"_oninput",value:function(e){var t=this.getInputDomRef(),r=t.value===this.value&&ta()&&!this._keyDown&&!!this.placeholder;e.target===t&&e.stopImmediatePropagation(),r||(this.value=t.value,this.fireEvent("input",{}),this.fireEvent("value-changed"))}},{key:"_onResize",value:function(){this.displayValueStateMessagePopover&&(this._width=this.offsetWidth)}},{key:"toggleValueStateMessage",value:function(e){e?this.openPopover():this.closePopover()}},{key:"openPopover",value:(i=j(regeneratorRuntime.mark((function e(){return regeneratorRuntime.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,this._getPopover();case 2:this.popover=e.sent,this.popover&&this.popover.openBy(this.shadowRoot.querySelector(".ui5-textarea-inner"));case 4:case"end":return e.stop()}}),e,this)}))),function(){return i.apply(this,arguments)})},{key:"closePopover",value:(n=j(regeneratorRuntime.mark((function e(){return regeneratorRuntime.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,this._getPopover();case 2:this.popover=e.sent,this.popover&&this.popover.close();case 4:case"end":return e.stop()}}),e,this)}))),function(){return n.apply(this,arguments)})},{key:"_getPopover",value:(r=j(regeneratorRuntime.mark((function e(){var t;return regeneratorRuntime.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,this.getStaticAreaItemDomRef();case 2:return t=e.sent,e.abrupt("return",t.querySelector("ui5-popover"));case 4:case"end":return e.stop()}}),e,this)}))),function(){return r.apply(this,arguments)})},{key:"_tokenizeText",value:function(e){var t=e.replace(/&/gm,"&").replace(/"/gm,""").replace(/'/gm,"'").replace(/</gm,"<").replace(/>/gm,">").split("\n");return t.length<this.rows?this._mapTokenizedTextToObject([].concat(se(t),se(Array(this.rows-t.length).fill("")))):this._mapTokenizedTextToObject(t)}},{key:"_mapTokenizedTextToObject",value:function(e){return e.map((function(t,r){return{text:t,last:r===e.length-1}}))}},{key:"_calcExceededText",value:function(){var e,t,r;if(this.showExceededText){var n=this.maxlength||0;n&&(t=(r=n-this.value.length)>=0?this.i18nBundle.getText(Fo,[r]):this.i18nBundle.getText(Oo,[Math.abs(r)]))}else e=this.maxlength;return{exceededText:t,leftCharactersCount:r,calcedMaxLength:e}}},{key:"valueStateTextMappings",value:function(){var e=this.i18nBundle;return{Information:e.getText(Vo),Error:e.getText(Uo),Warning:e.getText(jo)}}},{key:"classes",get:function(){return{valueStateMsg:{"ui5-valuestatemessage--error":this.valueState===la.Error,"ui5-valuestatemessage--warning":this.valueState===la.Warning||this.exceeding,"ui5-valuestatemessage--information":this.valueState===la.Information}}}},{key:"styles",get:function(){return{mirror:{"max-height":this._maxHeight},main:{width:"100%",height:this.rows&&!this.growing?"".concat(22.4*this.rows,"px"):"100%"},focusDiv:{height:this.showExceededText?"calc(100% - 26px)":"100%","max-height":this._maxHeight},valueStateMsgPopover:{"max-width":"".concat(this._width,"px")}}}},{key:"tabIndex",get:function(){return this.disabled?void 0:"0"}},{key:"ariaLabelledBy",get:function(){return this.showExceededText?"".concat(this._id,"-exceededText"):void 0}},{key:"ariaInvalid",get:function(){return"Error"===this.valueState?"true":void 0}},{key:"openValueStateMsgPopover",get:function(){return!this._firstRendering&&this._openValueStateMsgPopover&&this.displayValueStateMessagePopover}},{key:"displayValueStateMessagePopover",get:function(){return this.hasCustomValueState||this.hasValueState||this.exceeding}},{key:"hasCustomValueState",get:function(){return!!this.valueStateMessage.length&&this.hasValueState}},{key:"hasValueState",get:function(){return this.valueState===la.Error||this.valueState===la.Warning||this.valueState===la.Information}},{key:"valueStateMessageText",get:function(){return this.valueStateMessage.map((function(e){return e.cloneNode(!0)}))}},{key:"valueStateText",get:function(){return this.valueState!==la.Error&&this.exceeding?this.valueStateTextMappings()[la.Warning]:this.valueStateTextMappings()[this.valueState]}}],[{key:"onDefine",value:(t=j(regeneratorRuntime.mark((function e(){return regeneratorRuntime.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,Promise.all([Ts.define(),Jt("@ui5/webcomponents")]);case 2:case"end":return e.stop()}}),e)}))),function(){return t.apply(this,arguments)})}]),a})(_n).define();so("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});var mp={tag:"ui5-option",properties:{selected:{type:Boolean},icon:{type:String,defaultValue:null},value:{type:String}},events:{}},gp=function(e){X(r,e);var t=ne(r);function r(){return V(this,r),t.apply(this,arguments)}return Y(r,null,[{key:"metadata",get:function(){return mp}}]),r}(_n);gp.define();var vp=function e(t,r){var n=r||[];return t?(Array.from(t).forEach((function(t){if(t.nodeType!==Node.TEXT_NODE&&t.nodeType!==Node.COMMENT_NODE){if(t.shadowRoot){var r=t.shadowRoot.children;t=Array.from(r).find((function(e){return"STYLE"!==e.tagName}))}(function(e){if(!e)return!1;var t=e.nodeName.toLowerCase();if(e.hasAttribute("data-sap-no-tab-ref"))return!1;if(Da(e))return!1;if("a"===t||/input|select|textarea|button|object/.test(t))return!e.disabled;var r=e.getAttribute("tabindex");return null!=r?parseInt(r)>=0:void 0})(t)&&n.push(t),"SLOT"===t.tagName?e(t.assignedNodes(),n):e(t.children,n)}})),n):n},yp={None:"None",SingleSelect:"SingleSelect",SingleSelectBegin:"SingleSelectBegin",SingleSelectEnd:"SingleSelectEnd",SingleSelectAuto:"SingleSelectAuto",MultiSelect:"MultiSelect",Delete:"Delete"},bp=function(e){X(r,e);var t=ne(r);function r(){return V(this,r),t.apply(this,arguments)}return Y(r,null,[{key:"isValid",value:function(e){return!!yp[e]}}]),r}(Pr);bp.generataTypeAcessors(yp);var kp={All:"All",Inner:"Inner",None:"None"},wp=function(e){X(r,e);var t=ne(r);function r(){return V(this,r),t.apply(this,arguments)}return Y(r,null,[{key:"isValid",value:function(e){return!!kp[e]}}]),r}(Pr);wp.generataTypeAcessors(kp);var xp={Small:"Small",Medium:"Medium",Large:"Large"},Sp=function(e){X(r,e);var t=ne(r);function r(){return V(this,r),t.apply(this,arguments)}return Y(r,null,[{key:"isValid",value:function(e){return!!xp[e]}}]),r}(Pr);function Cp(){var e=oe(['<ui5-label class="ui5-busyindicator-text">',"</ui5-label>"]);return Cp=function(){return e},e}function Tp(){var e=oe(['<div class="ui5-busyindicator-dynamic-content" role="progressbar" aria-valuemin="0" aria-valuemax="100" title="','"><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>']);return Tp=function(){return e},e}function Pp(){var e=oe(['<div class="','"><div class="ui5-busyindicator-wrapper">',"","</div><slot></slot></div>"]);return Pp=function(){return e},e}Sp.generataTypeAcessors(xp);var Dp=function(e){return Zn(Pp(),li(e.classes.root),e.active?Ip(e):void 0,e.text?Mp(e):void 0)},Ip=function(e){return Zn(Tp(),Qi(e.ariaTitle))},Mp=function(e){return Zn(Cp(),Qi(e.text))};Ve("@ui5/webcomponents-theme-base","sap_fiori_3",mo),Ve("@ui5/webcomponents","sap_fiori_3",go);var Ep={tag:"ui5-busyindicator",languageAware:!0,slots:{default:{type:Node}},properties:{text:{type:String},size:{type:Sp,defaultValue:Sp.Medium},active:{type:Boolean}}},Bp=function(e){X(n,e);var t,r=ne(n);function n(){var e;return V(this,n),(e=r.call(this)).i18nBundle=qi("@ui5/webcomponents"),e._preventHandler=e._preventEvent.bind(te(e)),e}return Y(n,[{key:"onBeforeRendering",value:function(){this.active?this.tabIndex=-1:this.removeAttribute("tabindex")}},{key:"onEnterDOM",value:function(){this.addEventListener("keyup",this._preventHandler,{capture:!0}),this.addEventListener("keydown",this._preventHandler,{capture:!0})}},{key:"onExitDOM",value:function(){this.removeEventListener("keyup",this._preventHandler,!0),this.removeEventListener("keydown",this._preventHandler,!0)}},{key:"_preventEvent",value:function(e){this.active&&e.stopImmediatePropagation()}},{key:"ariaTitle",get:function(){return this.i18nBundle.getText(bo)}},{key:"classes",get:function(){return{root:{"ui5-busyindicator-root":!0,"ui5-busyindicator-root--ie":ta()}}}}],[{key:"onDefine",value:(t=j(regeneratorRuntime.mark((function e(){return regeneratorRuntime.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,Promise.all([Jt("@ui5/webcomponents"),pa.define()]);case 2:case"end":return e.stop()}}),e)}))),function(){return t.apply(this,arguments)})},{key:"metadata",get:function(){return Ep}},{key:"styles",get:function(){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)}}'}},{key:"render",get:function(){return fi}},{key:"template",get:function(){return Dp}}]),n}(_n);function Fp(){var e=oe(['<div class="ui5-list-busy-row"><ui5-busyindicator ?active="','" size="Medium" class="ui5-list-busy-ind"></ui5-busyindicator></div>']);return Fp=function(){return e},e}function Op(){var e=oe(['<footer id="','-footer" class="ui5-list-footer">',"</footer>"]);return Op=function(){return e},e}function Ap(){var e=oe(['<li id="','-nodata" class="ui5-list-nodata" tabindex="','" style="list-style-type: none;"><div id="','-nodata-text" class="ui5-list-nodata-text">',"</div></li>"]);return Ap=function(){return e},e}function Np(){var e=oe(['<header id="','" class="ui5-list-header">',"</header>"]);return Np=function(){return e},e}function Lp(){var e=oe(['<slot name="header" />']);return Lp=function(){return e},e}function Rp(){var e=oe(['<div class="ui5-list-root" @focusin="','" @keydown="','" @scroll="','">\x3c!-- header --\x3e',"",'<div id="','-before" tabindex="0" class="ui5-list-focusarea"></div><ul id="','-listUl" class="ui5-list-ul" role="','" aria-label="','" aria-labelledby="','" aria-multiselectable="','"><slot></slot>',"</ul>","",'<div id="','-after" tabindex="0" class="ui5-list-focusarea"></div></div>']);return Rp=function(){return e},e}Bp.define();var zp=function(e){return Zn(Rp(),e._onfocusin,e._onkeydown,e._onScroll,e.header.length?Hp():void 0,e.shouldRenderH1?Up(e):void 0,Qi(e._id),Qi(e._id),Qi(e._role),Qi(e.ariaLabelТxt),Qi(e.ariaLabelledBy),Qi(e.isMultiSelect),e.showNoDataText?jp(e):void 0,e.footerText?Vp(e):void 0,e.showBusy?Wp(e):void 0,Qi(e._id))},Hp=function(e){return Zn(Lp())},Up=function(e){return Zn(Np(),Qi(e.headerID),Qi(e.headerText))},jp=function(e){return Zn(Ap(),Qi(e._id),Qi(e.noDataTabIndex),Qi(e._id),Qi(e.noDataText))},Vp=function(e){return Zn(Op(),Qi(e._id),Qi(e.footerText))},Wp=function(e){return Zn(Fp(),e.busy)};Ve("@ui5/webcomponents-theme-base","sap_fiori_3",mo),Ve("@ui5/webcomponents","sap_fiori_3",go);var Yp={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:bp,defaultValue:bp.None},noDataText:{type:String},separators:{type:wp,defaultValue:wp.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":{}}},qp=function(e){X(n,e);var t,r=ne(n);function n(){var e;return V(this,n),(e=r.call(this)).initItemNavigation(),e._previouslyFocusedItem=null,e._forwardingFocus=!1,e._previouslySelectedItem=null,e.addEventListener("ui5-_press",e.onItemPress.bind(te(e))),e.addEventListener("ui5-close",e.onItemClose.bind(te(e))),e.addEventListener("ui5-toggle",e.onItemToggle.bind(te(e))),e.addEventListener("ui5-_focused",e.onItemFocused.bind(te(e))),e.addEventListener("ui5-_forward-after",e.onForwardAfter.bind(te(e))),e.addEventListener("ui5-_forward-before",e.onForwardBefore.bind(te(e))),e.addEventListener("ui5-_selection-requested",e.onSelectionRequested.bind(te(e))),e.addEventListener("ui5-_focus-requested",e.focusUploadCollectionItem.bind(te(e))),e}return Y(n,null,[{key:"metadata",get:function(){return Yp}},{key:"render",get:function(){return fi}},{key:"template",get:function(){return zp}},{key:"styles",get:function(){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}"}}]),Y(n,[{key:"onBeforeRendering",value:function(){this.prepareListItems()}},{key:"initItemNavigation",value:function(){var e=this;this._itemNavigation=new Wc(this,{navigationMode:zc}),this._itemNavigation.getItemsCallback=function(){return e.getSlottedNodes("items")}}},{key:"prepareListItems",value:function(){var e=this,t=this.getSlottedNodes("items");t.forEach((function(r,n){var i=n===t.length-1,o=e.separators===wp.All||e.separators===wp.Inner&&!i;r._mode=e.mode,r.hasBorder=o})),this._previouslySelectedItem=null}},{key:"onSelectionRequested",value:function(e){var t=this.getSelectedItems(),r=!1;this._selectionRequested=!0,this["handle".concat(this.mode)]&&(r=this["handle".concat(this.mode)](e.detail.item,e.detail.selected)),r&&this.fireEvent("selection-change",{selectedItems:this.getSelectedItems(),previouslySelectedItems:t,selectionComponentPressed:e.detail.selectionComponentPressed,key:e.detail.key})}},{key:"handleSingleSelect",value:function(e){return!e.selected&&(this.deselectSelectedItems(),e.selected=!0,!0)}},{key:"handleSingleSelectBegin",value:function(e){return this.handleSingleSelect(e)}},{key:"handleSingleSelectEnd",value:function(e){return this.handleSingleSelect(e)}},{key:"handleSingleSelectAuto",value:function(e){return this.handleSingleSelect(e)}},{key:"handleMultiSelect",value:function(e,t){return e.selected=t,!0}},{key:"handleDelete",value:function(e){this.fireEvent("item-delete",{item:e})}},{key:"deselectSelectedItems",value:function(){this.getSelectedItems().forEach((function(e){e.selected=!1}))}},{key:"getSelectedItems",value:function(){return this.getSlottedNodes("items").filter((function(e){return e.selected}))}},{key:"getFirstSelectedItem",value:function(){for(var e=this.getSlottedNodes("items"),t=null,r=0;r<e.length;r++)if(e[r].selected){t=e[r];break}return t}},{key:"_onkeydown",value:function(e){Oi(e)&&this._handleTabNext(e)}},{key:"_handleTabNext",value:function(e){var t,r=this.getNormalizedTarget(e.target);this.headerToolbar&&(t=this.getHeaderToolbarLastTabbableElement()),t&&t===r&&(this.getFirstSelectedItem()?this.focusFirstSelectedItem():this.getPreviouslyFocusedItem()?this.focusPreviouslyFocusedItem():this.focusFirstItem(),e.stopImmediatePropagation(),e.preventDefault())}},{key:"_onScroll",value:function(e){this.infiniteScroll&&this.debounce(this.loadMore.bind(this,e.target),250)}},{key:"_onfocusin",value:function(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()}},{key:"isForwardElement",value:function(e){var t=e.id;return this._id===t||this.getBeforeElement().id===t||this.getAfterElement().id===t}},{key:"onItemFocused",value:function(e){var t=e.target;this._itemNavigation.update(t),this.fireEvent("item-focused",{item:t}),this.mode===bp.SingleSelectAuto&&this.onSelectionRequested({detail:{item:t,selectionComponentPressed:!1,selected:!0,key:e.detail.key}})}},{key:"onItemPress",value:function(e){var t=e.detail.item;this._selectionRequested||this.mode===bp.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}},{key:"onItemClose",value:function(e){this.fireEvent("item-close",{item:e.detail.item})}},{key:"onItemToggle",value:function(e){this.fireEvent("item-toggle",{item:e.detail.item})}},{key:"onForwardBefore",value:function(e){this.setPreviouslyFocusedItem(e.target),this.focusBeforeElement()}},{key:"onForwardAfter",value:function(e){this.setPreviouslyFocusedItem(e.target),this.focusAfterElement()}},{key:"focusBeforeElement",value:function(){this.setForwardingFocus(!0),this.getBeforeElement().focus()}},{key:"focusAfterElement",value:function(){this.setForwardingFocus(!0),this.getAfterElement().focus()}},{key:"focusFirstItem",value:function(){var e=this.getFirstItem();e&&e.focus()}},{key:"focusPreviouslyFocusedItem",value:function(){var e=this.getPreviouslyFocusedItem();e&&e.focus()}},{key:"focusFirstSelectedItem",value:function(){var e=this.getFirstSelectedItem();e&&e.focus()}},{key:"focusItem",value:function(e){e.focus()}},{key:"focusUploadCollectionItem",value:function(e){var t=this;setTimeout((function(){t.setPreviouslyFocusedItem(e.target),t.focusPreviouslyFocusedItem()}),0)}},{key:"setForwardingFocus",value:function(e){this._forwardingFocus=e}},{key:"getForwardingFocus",value:function(){return this._forwardingFocus}},{key:"setPreviouslyFocusedItem",value:function(e){this._previouslyFocusedItem=e}},{key:"getPreviouslyFocusedItem",value:function(){return this._previouslyFocusedItem}},{key:"getFirstItem",value:function(){var e=this.getSlottedNodes("items");return!!e.length&&e[0]}},{key:"getAfterElement",value:function(){return this._afterElement||(this._afterElement=this.shadowRoot.querySelector("#".concat(this._id,"-after"))),this._afterElement}},{key:"getBeforeElement",value:function(){return this._beforeElement||(this._beforeElement=this.shadowRoot.querySelector("#".concat(this._id,"-before"))),this._beforeElement}},{key:"getHeaderToolbarLastTabbableElement",value:function(){return e=this.headerToolbar.getDomRef(),((t=vp(e.children)).length?t[t.length-1]:null)||this.headerToolbar.getDomRef();var e,t}},{key:"getNormalizedTarget",value:function(e){var t=e;return e.shadowRoot&&e.shadowRoot.activeElement&&(t=e.shadowRoot.activeElement),t}},{key:"loadMore",value:function(e){var t=e.scrollTop,r=e.offsetHeight,n=e.scrollHeight;this.previousScrollPosition>t?this.previousScrollPosition=t:(this.previousScrollPosition=t,n-48<=r+t&&this.fireEvent("load-more"))}},{key:"debounce",value:function(e,t){var r=this;clearTimeout(this.debounceInterval),this.debounceInterval=setTimeout((function(){r.debounceInterval=null,e()}),t)}},{key:"shouldRenderH1",get:function(){return!this.header.length&&this.headerText}},{key:"headerID",get:function(){return"".concat(this._id,"-header")}},{key:"showNoDataText",get:function(){return 0===this.items.length&&this.noDataText}},{key:"showBusy",get:function(){return this.busy||this.infiniteScroll}},{key:"isMultiSelect",get:function(){return this.mode===bp.MultiSelect}},{key:"ariaLabelledBy",get:function(){if(!this.ariaLabelledby&&!this.ariaLabel)return this.shouldRenderH1?this.headerID:void 0}},{key:"ariaLabelТxt",get:function(){return Gi(this)}}],[{key:"onDefine",value:(t=j(regeneratorRuntime.mark((function e(){return regeneratorRuntime.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,Bp.define();case 2:case"end":return e.stop()}}),e)}))),function(){return t.apply(this,arguments)})}]),n}(_n);qp.define();so("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});var Gp={Inactive:"Inactive",Active:"Active",Detail:"Detail"},Jp=function(e){X(r,e);var t=ne(r);function r(){return V(this,r),t.apply(this,arguments)}return Y(r,null,[{key:"isValid",value:function(e){return!!Gp[e]}}]),r}(Pr);Jp.generataTypeAcessors(Gp),Ve("@ui5/webcomponents-theme-base","sap_fiori_3",mo),Ve("@ui5/webcomponents","sap_fiori_3",go);var Xp={properties:{selected:{type:Boolean},hasBorder:{type:Boolean},_tabIndex:{type:String,defaultValue:"-1",noAttribute:!0},focused:{type:Boolean}},events:{_focused:{},"_forward-after":{},"_forward-before":{}}},Qp=function(e){X(r,e);var t=ne(r);function r(){return V(this,r),t.apply(this,arguments)}return Y(r,[{key:"_onfocusin",value:function(e){"button"!==e.isMarked&&"link"!==e.isMarked&&(this.focused=!0,this.fireEvent("_focused",e))}},{key:"_onfocusout",value:function(e){this.focused=!1}},{key:"_onkeydown",value:function(e){return Oi(e)?this._handleTabNext(e):Ai(e)?this._handleTabPrevious(e):void 0}},{key:"_onkeyup",value:function(){}},{key:"_handleTabNext",value:function(e){var t=e.target;this.shouldForwardTabAfter(t)&&this.fireEvent("_forward-after",{item:t})}},{key:"_handleTabPrevious",value:function(e){var t=e.target;if(this.shouldForwardTabBefore(t)){var r=e;r.item=t,this.fireEvent("_forward-before",r)}}},{key:"shouldForwardTabAfter",value:function(e){var t,r=(t=this.getDomRef(),vp(t.children));return e.getFocusDomRef&&(e=e.getFocusDomRef()),!r.length||r[r.length-1]===e}},{key:"shouldForwardTabBefore",value:function(e){return this.getDomRef()===e}},{key:"classes",get:function(){return{main:{"ui5-li-root":!0,"ui5-li--focusable":!0}}}}],[{key:"metadata",get:function(){return Xp}},{key:"render",get:function(){return fi}},{key:"styles",get:function(){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}'}}]),r}(_n);Ve("@ui5/webcomponents-theme-base","sap_fiori_3",mo),Ve("@ui5/webcomponents","sap_fiori_3",go);var Kp={languageAware:!0,properties:{type:{type:Jp,defaultValue:Jp.Active},active:{type:Boolean},actionable:{type:Boolean},_mode:{type:bp,defaultValue:bp.None,noAttribute:!0}},events:{"detail-click":{},_press:{},_focused:{},"_selection-requested":{}}},Zp=function(e){X(n,e);var t,r=ne(n);function n(){var e;return V(this,n),(e=r.call(this)).deactivateByKey=function(t){Pi(t)&&e.deactivate()},e.deactivate=function(){e.active&&(e.active=!1)},e.i18nBundle=qi("@ui5/webcomponents"),e}return Y(n,null,[{key:"metadata",get:function(){return Kp}},{key:"styles",get:function(){return[Qp.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}"]}}]),Y(n,[{key:"onBeforeRendering",value:function(){this.actionable=this.type===Jp.Active&&this._mode!==bp.Delete}},{key:"onEnterDOM",value:function(){document.addEventListener("mouseup",this.deactivate),document.addEventListener("touchend",this.deactivate),document.addEventListener("keyup",this.deactivateByKey)}},{key:"onExitDOM",value:function(){document.removeEventListener("mouseup",this.deactivate),document.removeEventListener("keyup",this.deactivateByKey),document.removeEventListener("touchend",this.deactivate)}},{key:"_onkeydown",value:function(e){ie(Q(n.prototype),"_onkeydown",this).call(this,e);var t=this.type===Jp.Active;Di(e)&&e.preventDefault(),(Di(e)||Pi(e))&&t&&this.activate(),Pi(e)&&this.fireItemPress(e)}},{key:"_onkeyup",value:function(e){(Di(e)||Pi(e))&&this.deactivate(),Di(e)&&this.fireItemPress(e)}},{key:"_onmousedown",value:function(e){"button"!==e.isMarked&&this.activate()}},{key:"_onmouseup",value:function(e){"button"!==e.isMarked&&this.deactivate()}},{key:"_ontouchstart",value:function(e){this._onmousedown(e)}},{key:"_ontouchend",value:function(e){this._onmouseup(e)}},{key:"_onfocusout",value:function(){ie(Q(n.prototype),"_onfocusout",this).call(this),this.deactivate()}},{key:"_onclick",value:function(e){"button"!==e.isMarked&&this.fireItemPress(e)}},{key:"onMultiSelectionComponentPress",value:function(e){this.isInactive||this.fireEvent("_selection-requested",{item:this,selected:e.target.checked,selectionComponentPressed:!0})}},{key:"onSingleSelectionComponentPress",value:function(e){this.isInactive||this.fireEvent("_selection-requested",{item:this,selected:!e.target.selected,selectionComponentPressed:!0})}},{key:"activate",value:function(){this.type===Jp.Active&&(this.active=!0)}},{key:"onDelete",value:function(e){this.fireEvent("_selection-requested",{item:this,selectionComponentPressed:!1})}},{key:"onDetailClick",value:function(e){this.fireEvent("detail-click",{item:this,selected:this.selected})}},{key:"fireItemPress",value:function(e){this.isInactive||this.fireEvent("_press",{item:this,selected:this.selected,key:e.key})}},{key:"isInactive",get:function(){return this.type===Jp.Inactive||this.type===Jp.Detail}},{key:"placeSelectionElementBefore",get:function(){return this._mode===bp.MultiSelect||this._mode===bp.SingleSelectBegin}},{key:"placeSelectionElementAfter",get:function(){return!this.placeSelectionElementBefore&&(this._mode===bp.SingleSelectEnd||this._mode===bp.Delete)}},{key:"modeSingleSelect",get:function(){return[bp.SingleSelectBegin,bp.SingleSelectEnd,bp.SingleSelect].includes(this._mode)}},{key:"modeMultiSelect",get:function(){return this._mode===bp.MultiSelect}},{key:"modeDelete",get:function(){return this._mode===bp.Delete}},{key:"typeDetail",get:function(){return this.type===Jp.Detail}},{key:"typeActive",get:function(){return this.type===Jp.Active}},{key:"ariaSelected",get:function(){if(this.modeMultiSelect)return this.selected}},{key:"deleteText",get:function(){return this.i18nBundle.getText(To)}},{key:"_accInfo",get:function(){return{role:"option",ariaExpanded:void 0,ariaLevel:void 0,ariaLabel:this.i18nBundle.getText(Bo)}}}],[{key:"onDefine",value:(t=j(regeneratorRuntime.mark((function e(){return regeneratorRuntime.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,Promise.all([Jt("@ui5/webcomponents")]);case 2:case"end":return e.stop()}}),e)}))),function(){return t.apply(this,arguments)})}]),n}(Qp);function $p(){var e=oe(['<div class="ui5-li-deletebtn"><ui5-button id="','-deleteSelectionElement" design="Transparent" icon="decline" @click="','" title="','"></ui5-button></div>']);return $p=function(){return e},e}function e_(){var e=oe(['<ui5-checkbox ?disabled="','" tabindex="-1" id="','-multiSelectionElement" class="ui5-li-multisel-cb" ?checked="','" aria-label="','" @click="','"></ui5-checkbox>']);return e_=function(){return e},e}function t_(){var e=oe(['<ui5-radiobutton ?disabled="','" tabindex="-1" id="','-singleSelectionElement" class="ui5-li-singlesel-radiobtn" ?selected="','" @click="','"></ui5-radiobutton>']);return t_=function(){return e},e}function r_(){var e=oe(["","","",""]);return r_=function(){return e},e}function n_(){var e=oe(['<div class="ui5-li-detailbtn"><ui5-button design="Transparent" icon="edit" @click="','"></ui5-button></div>']);return n_=function(){return e},e}function i_(){var e=oe(['<ui5-icon part="icon" name="','" class="ui5-li-icon"></ui5-icon>']);return i_=function(){return e},e}function o_(){var e=oe(['<span part="info" class="ui5-li-info">',"</span>"]);return o_=function(){return e},e}function a_(){var e=oe(['<span class="ui5-hidden-text">',"</span>"]);return a_=function(){return e},e}function s_(){var e=oe(['<span part="description" class="ui5-li-desc">',"</span>"]);return s_=function(){return e},e}function u_(){var e=oe(['<span part="title" class="ui5-li-title"><slot></slot></span>']);return u_=function(){return e},e}function l_(){var e=oe(['<ui5-icon part="icon" name="','" class="ui5-li-icon"></ui5-icon>']);return l_=function(){return e},e}function c_(){var e=oe(['<img part="img" src="','" class="ui5-li-img">']);return c_=function(){return e},e}function d_(){var e=oe(['<div class="ui5-li-deletebtn"><ui5-button id="','-deleteSelectionElement" design="Transparent" icon="decline" @click="','" title="','"></ui5-button></div>']);return d_=function(){return e},e}function h_(){var e=oe(['<ui5-checkbox ?disabled="','" tabindex="-1" id="','-multiSelectionElement" class="ui5-li-multisel-cb" ?checked="','" aria-label="','" @click="','"></ui5-checkbox>']);return h_=function(){return e},e}function p_(){var e=oe(['<ui5-radiobutton ?disabled="','" tabindex="-1" id="','-singleSelectionElement" class="ui5-li-singlesel-radiobtn" ?selected="','" @click="','"></ui5-radiobutton>']);return p_=function(){return e},e}function __(){var e=oe(["","","",""]);return __=function(){return e},e}function f_(){var e=oe(['<li tabindex="','" class="','" dir="','" @focusin="','" @focusout="','" @keyup="','" @keydown="','" @mouseup="','" @mousedown="','" @touchstart="','" @touchend="','" @click="','" aria-selected="','" role="','" aria-expanded="','" aria-level="','" style="list-style-type: none;">','<div id="','-content" class="ui5-li-content">',"",'<div class="ui5-li-title-wrapper">',"","","</div>","</div>","","","</li> "]);return f_=function(){return e},e}var m_=function(e){return Zn(f_(),Qi(e._tabIndex),li(e.classes.main),Qi(e.effectiveDir),e._onfocusin,e._onfocusout,e._onkeyup,e._onkeydown,e._onmouseup,e._onmousedown,e._ontouchstart,e._ontouchend,e._onclick,Qi(e.ariaSelected),Qi(e._accInfo.role),Qi(e._accInfo.ariaExpanded),Qi(e._accInfo.ariaLevel),e.placeSelectionElementBefore?g_(e):void 0,Qi(e._id),e.displayImage?k_(e):void 0,e.displayIconBegin?w_(e):void 0,e.textContent.length?x_():void 0,e.description?S_(e):void 0,e.typeActive?void 0:C_(e),e.info?T_(e):void 0,e.displayIconEnd?P_(e):void 0,e.typeDetail?D_(e):void 0,e.placeSelectionElementAfter?I_(e):void 0)},g_=function(e){return Zn(__(),e.modeSingleSelect?v_(e):void 0,e.modeMultiSelect?y_(e):void 0,e.modeDelete?b_(e):void 0)},v_=function(e){return Zn(p_(),e.isInactive,Qi(e._id),e.selected,e.onSingleSelectionComponentPress)},y_=function(e){return Zn(h_(),e.isInactive,Qi(e._id),e.selected,Qi(e._accInfo.ariaLabel),e.onMultiSelectionComponentPress)},b_=function(e){return Zn(d_(),Qi(e._id),e.onDelete,Qi(e.deleteText))},k_=function(e){return Zn(c_(),Qi(e.image))},w_=function(e){return Zn(l_(),Qi(e.icon))},x_=function(e){return Zn(u_())},S_=function(e){return Zn(s_(),Qi(e.description))},C_=function(e){return Zn(a_(),Qi(e.type))},T_=function(e){return Zn(o_(),Qi(e.info))},P_=function(e){return Zn(i_(),Qi(e.icon))},D_=function(e){return Zn(n_(),e.onDetailClick)},I_=function(e){return Zn(r_(),e.modeSingleSelect?M_(e):void 0,e.modeMultiSelect?E_(e):void 0,e.modeDelete?B_(e):void 0)},M_=function(e){return Zn(t_(),e.isInactive,Qi(e._id),e.selected,e.onSingleSelectionComponentPress)},E_=function(e){return Zn(e_(),e.isInactive,Qi(e._id),e.selected,Qi(e._accInfo.ariaLabel),e.onMultiSelectionComponentPress)},B_=function(e){return Zn($p(),Qi(e._id),e.onDelete,Qi(e.deleteText))},F_={tag:"ui5-li",properties:{description:{type:String},icon:{type:String},iconEnd:{type:Boolean},image:{type:String},info:{type:String},infoState:{type:la,defaultValue:la.None},hasTitle:{type:Boolean}},slots:{default:{type:Node}}},O_=function(e){X(n,e);var t,r=ne(n);function n(){return V(this,n),r.apply(this,arguments)}return Y(n,[{key:"onBeforeRendering",value:function(){for(var e,t=arguments.length,r=new Array(t),i=0;i<t;i++)r[i]=arguments[i];(e=ie(Q(n.prototype),"onBeforeRendering",this)).call.apply(e,[this].concat(r)),this.hasTitle=!!this.textContent}},{key:"displayImage",get:function(){return!!this.image}},{key:"displayIconBegin",get:function(){return this.icon&&!this.iconEnd}},{key:"displayIconEnd",get:function(){return this.icon&&this.iconEnd}}],[{key:"onDefine",value:(t=j(regeneratorRuntime.mark((function e(){return regeneratorRuntime.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,yo.define();case 2:case"end":return e.stop()}}),e)}))),function(){return t.apply(this,arguments)})},{key:"template",get:function(){return m_}},{key:"metadata",get:function(){return F_}}]),n}(Zp);function A_(){var e=oe(['<span id="','-valueStateDesc" class="ui5-hidden-text">',"</span>"]);return A_=function(){return e},e}function N_(){var e=oe(['<div class="ui5-select-root" dir="','" tabindex="','" id="','-select" role="button" aria-haspopup="listbox" aria-labelledby="','-label" aria-describedby="','" aria-disabled="','" @keydown="','" @keyup="','" @focusin="','" @focusout="','" @click="','"><div class="ui5-select-label-root"><ui5-label id="','-label" for="','-select">','</ui5-label></div><ui5-icon name="slim-arrow-down" input-icon ?pressed="','" dir="','"></ui5-icon>','<slot name="formSupport"></slot></div>']);return N_=function(){return e},e}O_.define();var L_=function(e){return Zn(N_(),Qi(e.effectiveDir),Qi(e.tabIndex),Qi(e._id),Qi(e._id),Qi(e.valueStateTextId),Qi(e.isDisabled),e._onkeydown,e._onkeyup,e._onfocusin,e._onfocusout,e._toggleRespPopover,Qi(e._id),Qi(e._id),Qi(e._text),e._iconPressed,Qi(e.effectiveDir),e.hasValueState?R_(e):void 0)},R_=function(e){return Zn(A_(),Qi(e._id),Qi(e.valueStateText))};function z_(){var e=oe(['<ui5-li ?selected="','" icon="','" id="','-li">',"</ui5-li>"]);return z_=function(){return e},e}function H_(){var e=oe(['<ui5-responsive-popover no-arrow _disable-initial-focus content-only-on-desktop placement-type="Bottom" horizontal-align="Left" @ui5-after-open="','" @ui5-before-open="','" @ui5-after-close="','" @keydown="','"><div slot="header" class="ui5-responsive-popover-header"><div class="row"><span>','</span><ui5-button class="ui5-responsive-popover-close-btn" icon="decline" design="Transparent" @click="','"></ui5-button></div></div><ui5-list mode="SingleSelectAuto" separators="None" @keydown="','" @ui5-selection-change="','" @ui5-item-press="','">',"</ui5-list></ui5-responsive-popover>"]);return H_=function(){return e},e}function U_(){var e=oe([""," "]);return U_=function(){return e},e}var j_=function(e){return Zn(U_(),e.options?V_(e):void 0)},V_=function(e){return Zn(H_(),Qi(e._applyFocusAfterOpen),Qi(e._beforeOpen),Qi(e._afterClose),e._onkeydown,Qi(e._headerTitleText),e._toggleRespPopover,e._handlePickerKeydown,Qi(e._handleSelectionChange),Qi(e._handleItemPress),si(e._syncedOptions,(function(e,t){return e._id||t}),(function(e,t){return W_(e)})))},W_=function(e,t,r){return Zn(z_(),e.selected,Qi(e.icon),Qi(e.id),Qi(e.textContent))};Ve("@ui5/webcomponents-theme-base","sap_fiori_3",mo),Ve("@ui5/webcomponents","sap_fiori_3",go);var Y_={tag:"ui5-select",languageAware:!0,managedSlots:!0,slots:{default:{propertyName:"options",type:HTMLElement,listenFor:{include:["*"]}}},properties:{disabled:{type:Boolean},name:{type:String},valueState:{type:la,defaultValue:la.None},_text:{type:String,noAttribute:!0},_iconPressed:{type:Boolean,noAttribute:!0},opened:{type:Boolean},focused:{type:Boolean}},events:{change:{detail:{selectedOption:{}}}}};(function(e){X(o,e);var t,r,n,i=ne(o);function o(){var e;return V(this,o),(e=i.call(this))._syncedOptions=[],e._selectedIndex=-1,e._selectedIndexBeforeOpen=-1,e._escapePressed=!1,e._lastSelectedOption=null,e.i18nBundle=qi("@ui5/webcomponents"),e}return Y(o,null,[{key:"metadata",get:function(){return Y_}},{key:"render",get:function(){return fi}},{key:"template",get:function(){return L_}},{key:"staticAreaTemplate",get:function(){return j_}},{key:"styles",get:function(){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}"}},{key:"staticAreaStyles",get:function(){return Cu}}]),Y(o,[{key:"onBeforeRendering",value:function(){this._syncSelection(),this._enableFormSupport()}},{key:"_onfocusin",value:function(){this.focused=!0}},{key:"_onfocusout",value:function(){this.focused=!1}},{key:"_respPopover",value:(n=j(regeneratorRuntime.mark((function e(){var t;return regeneratorRuntime.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return this._iconPressed=!0,e.next=3,this.getStaticAreaItemDomRef();case 3:return t=e.sent,e.abrupt("return",t.querySelector("ui5-responsive-popover"));case 5:case"end":return e.stop()}}),e,this)}))),function(){return n.apply(this,arguments)})},{key:"_toggleRespPopover",value:(r=j(regeneratorRuntime.mark((function e(){return regeneratorRuntime.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,this._respPopover();case 2:if(this.responsivePopover=e.sent,!this.disabled){e.next=5;break}return e.abrupt("return");case 5:this.updateStaticAreaItemContentDensity(),this._isPickerOpen?this.responsivePopover.close():this.responsivePopover.open(this);case 7:case"end":return e.stop()}}),e,this)}))),function(){return r.apply(this,arguments)})},{key:"_syncSelection",value:function(){var e=-1,t=this.options.map((function(t,r){return t.selected&&(e=r),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}},{key:"_enableFormSupport",value:function(){var e=we("FormSupport");e?e.syncNativeHiddenInput(this,(function(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";')}},{key:"_onkeydown",value:function(e){(Oi(e)||Ai(e))&&this.responsivePopover&&this.responsivePopover.opened&&this.responsivePopover.close(),Ni(e)&&(e.preventDefault(),this._toggleRespPopover()),Di(e)&&e.preventDefault(),this._isPickerOpen||this._handleArrowNavigation(e,!0)}},{key:"_onkeyup",value:function(e){Di(e)&&!this._isPickerOpen&&this._toggleRespPopover()}},{key:"_getSelectedItemIndex",value:function(e){return[].indexOf.call(e.parentElement.children,e)}},{key:"_select",value:function(e){this.options[this._selectedIndex].selected=!1,this._selectedIndex=e,this.options[e].selected=!0}},{key:"_handleItemPress",value:function(e){var t=e.detail.item,r=this._getSelectedItemIndex(t);this._select(r),this._toggleRespPopover()}},{key:"_handleSelectionChange",value:function(e){var t=e.detail.selectedItems[0],r=this._getSelectedItemIndex(t);this._select(r)}},{key:"_applyFocusAfterOpen",value:function(){if(this._currentlySelectedOption){var e=this.responsivePopover.querySelector("#".concat(this._currentlySelectedOption._id,"-li"));e.parentElement._itemNavigation.currentIndex=this._selectedIndex,e&&e.focus()}}},{key:"_handlePickerKeydown",value:function(e){Fi(e)&&this._isPickerOpen&&(this._escapePressed=!0),(Pi(e)||Di(e))&&(this._shouldClosePopover=!0)}},{key:"_handleArrowNavigation",value:function(e,t){var r=-1,n=Bi(e),i=Ei(e);(n||i)&&(e.preventDefault(),r=n?this._getNextOptionIndex():this._getPreviousOptionIndex(),this.options[this._selectedIndex].selected=!1,this.options[r].selected=!0,this._selectedIndex=-1===r?this._selectedIndex:r,t&&this._fireChangeEvent(this.options[r]))}},{key:"_getNextOptionIndex",value:function(){return this._selectedIndex===this.options.length-1?this._selectedIndex:this._selectedIndex+1}},{key:"_getPreviousOptionIndex",value:function(){return 0===this._selectedIndex?this._selectedIndex:this._selectedIndex-1}},{key:"_beforeOpen",value:function(){this._selectedIndexBeforeOpen=this._selectedIndex,this._lastSelectedOption=this.options[this._selectedIndex]}},{key:"_afterClose",value:function(){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])}},{key:"_fireChangeEvent",value:function(e){this.fireEvent("change",{selectedOption:e}),this.selectedItem=e,this.fireEvent("selected-item-changed")}},{key:"_isPickerOpen",get:function(){return this.responsivePopover&&this.responsivePopover.opened}},{key:"selectedOption",get:function(){return this.options.find((function(e){return e.selected}))}},{key:"valueStateTextMappings",get:function(){var e=this.i18nBundle;return{Success:e.getText(Wo),Information:e.getText(Vo),Error:e.getText(Uo),Warning:e.getText(jo)}}},{key:"valueStateText",get:function(){return this.valueStateTextMappings[this.valueState]}},{key:"hasValueState",get:function(){return this.valueState!==la.None}},{key:"valueStateTextId",get:function(){return this.hasValueState?"".concat(this._id,"-valueStateDesc"):void 0}},{key:"isDisabled",get:function(){return this.disabled||void 0}},{key:"_headerTitleText",get:function(){return this.i18nBundle.getText(Do)}},{key:"_currentSelectedItem",get:function(){return this.shadowRoot.querySelector("#".concat(this.options[this._selectedIndex]._id,"-li"))}},{key:"_currentlySelectedOption",get:function(){return this.options[this._selectedIndex]}},{key:"tabIndex",get:function(){return this.disabled&&this.responsivePopover&&this.responsivePopover.opened?"-1":"0"}}],[{key:"onDefine",value:(t=j(regeneratorRuntime.mark((function e(){return regeneratorRuntime.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,Promise.all([gp.define(),pa.define(),Ec.define(),qp.define(),O_.define(),yo.define()]);case 2:case"end":return e.stop()}}),e)}))),function(){return t.apply(this,arguments)})}]),o})(_n).define();var q_={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(q_).every((function(e){var t=ae(e,2);t[0];return"object"===H(t[1])}))&&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(q_).forEach((function(e){var t,r=ae(e,2),n=r[0],i=r[1];"object"===H(i)?(t=i,Eu[n]=t):function(e,t){Bu[e]=t}(n,i)}));var G_="sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css.6c6e759e0d3534d0.json",J_="sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css.dfd19a1252497415.json",X_="sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css.e2ac94de83159e1e.json",Q_="sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css.e19065174fdd4592.json",K_="sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css.966b2e43c0966351.json",Z_="sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css.8cc66e917327b7a4.json",$_=function(e){return"object"===H(e)};($_(G_)||$_(J_)||$_(X_)||$_(Q_)||$_(K_)||$_(Z_))&&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"'),Ve("@ui5/webcomponents-theme-base","sap_belize",G_),Ve("@ui5/webcomponents-theme-base","sap_belize_hcb",J_),Ve("@ui5/webcomponents-theme-base","sap_belize_hcw",X_),Ve("@ui5/webcomponents-theme-base","sap_fiori_3_dark",Q_),Ve("@ui5/webcomponents-theme-base","sap_fiori_3_hcb",K_),Ve("@ui5/webcomponents-theme-base","sap_fiori_3_hcw",Z_);var ef="sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css.97725b2cf4e77494.json",tf="sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css.52d78e00faad9126.json",rf="sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css.def3978aa5de7b11.json",nf="sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css.34f9ef46a8f6a852.json",of="sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css.d164773ecb392b28.json",af="sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css.b1bf75f0b850363c.json",sf=function(e){return"object"===H(e)};(sf(ef)||sf(tf)||sf(rf)||sf(nf)||sf(of)||sf(af))&&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"'),Ve("@ui5/webcomponents","sap_belize",ef),Ve("@ui5/webcomponents","sap_belize_hcb",tf),Ve("@ui5/webcomponents","sap_belize_hcw",rf),Ve("@ui5/webcomponents","sap_fiori_3_dark",nf),Ve("@ui5/webcomponents","sap_fiori_3_hcb",of),Ve("@ui5/webcomponents","sap_fiori_3_hcw",af);var uf={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(uf).every((function(e){var t=ae(e,2);t[0];return"object"===H(t[1])}))&&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"'),Gt("@ui5/webcomponents",uf);var lf=_l.extend("sap.ui.core.date.Buddhist",{constructor:function(){var e=arguments;e.length>1&&(e=hf(e)),this.oDate=this.createDate(Date,e),this.sCalendarType=el.Buddhist}});function cf(e){var t=_l.getEraStartDate(el.Buddhist,0).year,r=e.year-t+1;return e.year<1941&&e.month<3&&(r-=1),null===e.year&&(r=void 0),{year:r,month:e.month,day:e.day}}function df(e){var t=_l.getEraStartDate(el.Buddhist,0).year,r=e.year+t-1;return r<1941&&e.month<3&&(r+=1),null===e.year&&(r=void 0),{year:r,month:e.month,day:e.day}}function hf(e){var t;return t=df({year:e[0],month:e[1],day:void 0!==e[2]?e[2]:1}),e[0]=t.year,e}lf.UTC=function(){var e=hf(arguments);return Date.UTC.apply(Date,e)},lf.now=function(){return Date.now()},lf.prototype._getBuddhist=function(){return cf({year:this.oDate.getFullYear(),month:this.oDate.getMonth(),day:this.oDate.getDate()})},lf.prototype._setBuddhist=function(e){var t=df(e);return this.oDate.setFullYear(t.year,t.month,t.day)},lf.prototype._getUTCBuddhist=function(){return cf({year:this.oDate.getUTCFullYear(),month:this.oDate.getUTCMonth(),day:this.oDate.getUTCDate()})},lf.prototype._setUTCBuddhist=function(e){var t=df(e);return this.oDate.setUTCFullYear(t.year,t.month,t.day)},lf.prototype.getYear=function(){return this._getBuddhist().year},lf.prototype.getFullYear=function(){return this._getBuddhist().year},lf.prototype.getUTCFullYear=function(){return this._getUTCBuddhist().year},lf.prototype.setYear=function(e){var t=this._getBuddhist();return t.year=e,this._setBuddhist(t)},lf.prototype.setFullYear=function(e,t,r){var n=this._getBuddhist();return n.year=e,void 0!==t&&(n.month=t),void 0!==r&&(n.day=r),this._setBuddhist(n)},lf.prototype.setUTCFullYear=function(e,t,r){var n=this._getUTCBuddhist();return n.year=e,void 0!==t&&(n.month=t),void 0!==r&&(n.day=r),this._setUTCBuddhist(n)},lf.prototype.getWeek=function(){return _l.getWeekByDate(this.sCalendarType,this.oDate.getFullYear(),this.getMonth(),this.getDate())},lf.prototype.getUTCWeek=function(){return _l.getWeekByDate(this.sCalendarType,this.oDate.getUTCFullYear(),this.getUTCMonth(),this.getUTCDate())},pl(el.Buddhist,lf);var pf=_l.extend("sap.ui.core.date.Islamic",{constructor:function(){var e=arguments;e.length>1&&(e=vf(e)),this.oDate=this.createDate(Date,e),this.sCalendarType=el.Islamic}});pf.UTC=function(){var e=vf(arguments);return Date.UTC.apply(Date,e)},pf.now=function(){return Date.now()};var _f=null,ff=["A","B"];function mf(e){var t,r,n,i,o,a,s,u=e.year,l=e.month,c=e.day;if(a=0,l+1>2&&(a=Sf(u)?-1:-2),s=1721424.5+365*(u-1)+Math.floor((u-1)/4)+-Math.floor((u-1)/100)+Math.floor((u-1)/400)+Math.floor((367*(l+1)-362)/12+a+c),o=(s=Math.floor(s)+.5)-1948439.5,(i=Math.floor(o/29.530588853))<0)(r=i%12)<0&&(r+=12),n=o-wf(t=Math.floor(i/12)+1,r)+1;else{for(i++;kf(i)>o;)i--;n=o-kf(12*((t=Math.floor(i/12)+1)-1)+(r=i%12))+1}return{day:n,month:r,year:t}}function gf(e){var t,r,n,i,o,a=e.year,s=e.month,u=e.day+(a<1?wf(a,s):kf(12*(a-1)+s))+1948439.5-1,l=Math.floor(u-.5)+.5,c=l-1721425.5,d=Math.floor(c/146097),h=xf(c,146097),p=Math.floor(h/36524),_=xf(h,36524),f=Math.floor(_/1461),m=xf(_,1461),g=Math.floor(m/365),v=400*d+100*p+4*f+g;return 4!=p&&4!=g&&v++,r=l-(1721425.5+365*(v-1)+Math.floor((v-1)/4)-Math.floor((v-1)/100)+Math.floor((v-1)/400)),i=0,i=l<1721424.5+365*(v-1)+Math.floor((v-1)/4)-Math.floor((v-1)/100)+Math.floor((v-1)/400)+Math.floor(739/12+(Sf(v)?-1:-2)+1)?0:Sf(v)?1:2,t=Math.floor((12*(r+i)+373)/367),n=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=Sf(v)?-1:-2),{day:l-(n+=Math.floor((367*t-362)/12+o+1))+1,month:t-1,year:v}}function vf(e){var t,r=Array.prototype.slice.call(e);return t=gf({year:e[0],month:e[1],day:void 0!==e[2]?e[2]:1}),r[0]=t.year,r[1]=t.month,r[2]=t.day,r}function yf(){var e,t,r;_f={},e=Wu.getConfiguration().getFormatSettings().getLegacyDateFormat(),r=e,e=-1!==ff.indexOf(r)?e:"A",(t=(t=Wu.getConfiguration().getFormatSettings().getLegacyDateCalendarCustomizing())||[]).length?(t.forEach((function(t){if(t.dateFormat===e){var r=bf(t.gregDate),n=(new Date(Date.UTC(r.year,r.month-1,r.day)).getTime()- -425215872e5)/864e5,i=12*((r=bf(t.islamicMonthStart)).year-1)+r.month-1;_f[i]=n}})),tr.info("Working with date format: ["+e+"] and customization: "+JSON.stringify(t))):tr.warning("No calendar customizations.")}function bf(e){return{year:parseInt(e.substr(0,4)),month:parseInt(e.substr(4,2)),day:parseInt(e.substr(6,2))}}function kf(e){_f||yf();var t=_f[e];t||(t=wf(Math.floor(e/12)+1,e%12));return t}function wf(e,t){return Math.ceil(29.5*t)+354*(e-1)+Math.floor((3+11*e)/30)}function xf(e,t){return e-t*Math.floor(e/t)}function Sf(e){return!(e%400&&(e%4||!(e%100)))}pf.prototype._getIslamic=function(){return mf({day:this.oDate.getDate(),month:this.oDate.getMonth(),year:this.oDate.getFullYear()})},pf.prototype._setIslamic=function(e){var t=gf(e);return this.oDate.setFullYear(t.year,t.month,t.day)},pf.prototype._getUTCIslamic=function(){return mf({day:this.oDate.getUTCDate(),month:this.oDate.getUTCMonth(),year:this.oDate.getUTCFullYear()})},pf.prototype._setUTCIslamic=function(e){var t=gf(e);return this.oDate.setUTCFullYear(t.year,t.month,t.day)},pf.prototype.getDate=function(e){return this._getIslamic().day},pf.prototype.getMonth=function(){return this._getIslamic().month},pf.prototype.getYear=function(){return this._getIslamic().year-1400},pf.prototype.getFullYear=function(){return this._getIslamic().year},pf.prototype.setDate=function(e){var t=this._getIslamic();return t.day=e,this._setIslamic(t)},pf.prototype.setMonth=function(e,t){var r=this._getIslamic();return r.month=e,void 0!==t&&(r.day=t),this._setIslamic(r)},pf.prototype.setYear=function(e){var t=this._getIslamic();return t.year=e+1400,this._setIslamic(t)},pf.prototype.setFullYear=function(e,t,r){var n=this._getIslamic();return n.year=e,void 0!==t&&(n.month=t),void 0!==r&&(n.day=r),this._setIslamic(n)},pf.prototype.getUTCDate=function(e){return this._getUTCIslamic().day},pf.prototype.getUTCMonth=function(){return this._getUTCIslamic().month},pf.prototype.getUTCFullYear=function(){return this._getUTCIslamic().year},pf.prototype.setUTCDate=function(e){var t=this._getUTCIslamic();return t.day=e,this._setUTCIslamic(t)},pf.prototype.setUTCMonth=function(e,t){var r=this._getUTCIslamic();return r.month=e,void 0!==t&&(r.day=t),this._setUTCIslamic(r)},pf.prototype.setUTCFullYear=function(e,t,r){var n=this._getUTCIslamic();return n.year=e,void 0!==t&&(n.month=t),void 0!==r&&(n.day=r),this._setUTCIslamic(n)},pl(el.Islamic,pf);var Cf=_l.extend("sap.ui.core.date.Japanese",{constructor:function(){var e=arguments;e.length>1&&(e=Df(e)),this.oDate=this.createDate(Date,e),this.sCalendarType=el.Japanese}});function Tf(e){var t=_l.getEraByDate(el.Japanese,e.year,e.month,e.day),r=_l.getEraStartDate(el.Japanese,t).year;return{era:t,year:e.year-r+1,month:e.month,day:e.day}}function Pf(e){return{year:_l.getEraStartDate(el.Japanese,e.era).year+e.year-1,month:e.month,day:e.day}}function Df(e){var t,r=e[0];if("number"==typeof r){if(r>=100)return e;r=[_l.getCurrentEra(el.Japanese),r]}else Array.isArray(r)||(r=[]);return t=Pf({era:r[0],year:r[1],month:e[1],day:void 0!==e[2]?e[2]:1}),e[0]=t.year,e}Cf.UTC=function(){var e=Df(arguments);return Date.UTC.apply(Date,e)},Cf.now=function(){return Date.now()},Cf.prototype._getJapanese=function(){return Tf({year:this.oDate.getFullYear(),month:this.oDate.getMonth(),day:this.oDate.getDate()})},Cf.prototype._setJapanese=function(e){var t=Pf(e);return this.oDate.setFullYear(t.year,t.month,t.day)},Cf.prototype._getUTCJapanese=function(){return Tf({year:this.oDate.getUTCFullYear(),month:this.oDate.getUTCMonth(),day:this.oDate.getUTCDate()})},Cf.prototype._setUTCJapanese=function(e){var t=Pf(e);return this.oDate.setUTCFullYear(t.year,t.month,t.day)},Cf.prototype.getYear=function(){return this._getJapanese().year},Cf.prototype.getFullYear=function(){return this._getJapanese().year},Cf.prototype.getEra=function(){return this._getJapanese().era},Cf.prototype.getUTCFullYear=function(){return this._getUTCJapanese().year},Cf.prototype.getUTCEra=function(){return this._getUTCJapanese().era},Cf.prototype.setYear=function(e){var t=this._getJapanese();return t.year=e,this._setJapanese(t)},Cf.prototype.setFullYear=function(e,t,r){var n=this._getJapanese();return n.year=e,void 0!==t&&(n.month=t),void 0!==r&&(n.day=r),this._setJapanese(n)},Cf.prototype.setEra=function(e,t,r,n){var i=Tf(_l.getEraStartDate(el.Japanese,e));return void 0!==t&&(i.year=t),void 0!==r&&(i.month=r),void 0!==n&&(i.day=n),this._setJapanese(i)},Cf.prototype.setUTCFullYear=function(e,t,r){var n=this._getUTCJapanese();return n.year=e,void 0!==t&&(n.month=t),void 0!==r&&(n.day=r),this._setUTCJapanese(n)},Cf.prototype.setUTCEra=function(e,t,r,n){var i=Tf(_l.getEraStartDate(el.Japanese,e));return void 0!==t&&(i.year=t),void 0!==r&&(i.month=r),void 0!==n&&(i.day=n),this._setUTCJapanese(i)},Cf.prototype.getWeek=function(){return _l.getWeekByDate(this.sCalendarType,this.oDate.getFullYear(),this.getMonth(),this.getDate())},Cf.prototype.getUTCWeek=function(){return _l.getWeekByDate(this.sCalendarType,this.oDate.getUTCFullYear(),this.getUTCMonth(),this.getUTCDate())},pl(el.Japanese,Cf);var If=_l.extend("sap.ui.core.date.Persian",{constructor:function(){var e=arguments;e.length>1&&(e=Bf(e)),this.oDate=this.createDate(Date,e),this.sCalendarType=el.Persian}});If.UTC=function(){var e=Bf(arguments);return Date.UTC.apply(Date,e)},If.now=function(){return Date.now()};function Mf(e){return function(e){var t,r,n,i=Af(e).year,o=i-621,a=Ff(o),s=Of(i,3,a.march);if((n=e-s)>=0){if(n<=185)return r=1+Nf(n,31),t=Lf(n,31)+1,{year:o,month:r-1,day:t};n-=186}else o-=1,n+=179,1===a.leap&&(n+=1);return r=7+Nf(n,30),t=Lf(n,30)+1,{year:o,month:r-1,day:t}}(Of(e.year,e.month+1,e.day))}function Ef(e){return Af(function(e,t,r){for(;t<1;)t+=12,e--;for(;t>12;)t-=12,e++;var n=Ff(e);return Of(n.gy,3,n.march)+31*(t-1)-Nf(t,7)*(t-7)+r-1}(e.year,e.month+1,e.day))}function Bf(e){var t,r=Array.prototype.slice.call(e);return"number"!=typeof e[0]||"number"!=typeof e[1]||void 0!==e[2]&&"number"!=typeof e[2]?(r[0]=NaN,r[1]=NaN,r[2]=NaN,r):(t=Ef({year:e[0],month:e[1],day:void 0!==e[2]?e[2]:1}),r[0]=t.year,r[1]=t.month,r[2]=t.day,r)}function Ff(e){var t,r,n,i,o,a,s=[-61,9,38,199,426,686,756,818,1111,1181,1210,1635,2060,2097,2192,2262,2324,2394,2456,3178],u=s.length,l=e+621,c=-14,d=s[0];for(a=1;a<u&&(r=(t=s[a])-d,!(e<t));a+=1)c=c+8*Nf(r,33)+Nf(Lf(r,33),4),d=t;return c=c+8*Nf(o=e-d,33)+Nf(Lf(o,33)+3,4),4===Lf(r,33)&&r-o==4&&(c+=1),i=20+c-(Nf(l,4)-Nf(3*(Nf(l,100)+1),4)-150),r-o<6&&(o=o-r+33*Nf(r+4,33)),-1===(n=Lf(Lf(o+1,33)-1,4))&&(n=4),{leap:n,gy:l,march:i}}function Of(e,t,r){var n=Nf(1461*(e+Nf(t-8,6)+100100),4)+Nf(153*Lf(t+9,12)+2,5)+r-34840408;return n=n-Nf(3*Nf(e+100100+Nf(t-8,6),100),4)+752}function Af(e){var t,r,n,i;return t=(t=4*e+139361631)+4*Nf(3*Nf(4*e+183187720,146097),4)-3908,r=5*Nf(Lf(t,1461),4)+308,n=Nf(Lf(r,153),5)+1,i=Lf(Nf(r,153),12)+1,{year:Nf(t,1461)-100100+Nf(8-i,6),month:i-1,day:n}}function Nf(e,t){return~~(e/t)}function Lf(e,t){return e-~~(e/t)*t}If.prototype._getPersian=function(){return Mf({day:this.oDate.getDate(),month:this.oDate.getMonth(),year:this.oDate.getFullYear()})},If.prototype._setPersian=function(e){var t=Ef(e);return this.oDate.setFullYear(t.year,t.month,t.day)},If.prototype._getUTCPersian=function(){return Mf({day:this.oDate.getUTCDate(),month:this.oDate.getUTCMonth(),year:this.oDate.getUTCFullYear()})},If.prototype._setUTCPersian=function(e){var t=Ef(e);return this.oDate.setUTCFullYear(t.year,t.month,t.day)},If.prototype.getDate=function(e){return this._getPersian().day},If.prototype.getMonth=function(){return this._getPersian().month},If.prototype.getYear=function(){return this._getPersian().year-1300},If.prototype.getFullYear=function(){return this._getPersian().year},If.prototype.setDate=function(e){var t=this._getPersian();return t.day=e,this._setPersian(t)},If.prototype.setMonth=function(e,t){var r=this._getPersian();return r.month=e,void 0!==t&&(r.day=t),this._setPersian(r)},If.prototype.setYear=function(e){var t=this._getPersian();return t.year=e+1300,this._setPersian(t)},If.prototype.setFullYear=function(e,t,r){var n=this._getPersian();return n.year=e,void 0!==t&&(n.month=t),void 0!==r&&(n.day=r),this._setPersian(n)},If.prototype.getUTCDate=function(e){return this._getUTCPersian().day},If.prototype.getUTCMonth=function(){return this._getUTCPersian().month},If.prototype.getUTCFullYear=function(){return this._getUTCPersian().year},If.prototype.setUTCDate=function(e){var t=this._getUTCPersian();return t.day=e,this._setUTCPersian(t)},If.prototype.setUTCMonth=function(e,t){var r=this._getUTCPersian();return r.month=e,void 0!==t&&(r.day=t),this._setUTCPersian(r)},If.prototype.setUTCFullYear=function(e,t,r){var n=this._getUTCPersian();return n.year=e,void 0!==t&&(n.month=t),void 0!==r&&(n.day=r),this._setUTCPersian(n)},pl(el.Persian,If)}();
|
|
212
|
-
//# sourceMappingURL=bundle.es5.js.map
|