@openui5/sap.ui.webc.main 1.96.5 → 1.99.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/webc/main/.library +1 -1
- package/src/sap/ui/webc/main/Avatar.js +5 -2
- package/src/sap/ui/webc/main/AvatarGroup.js +4 -1
- package/src/sap/ui/webc/main/Badge.js +4 -1
- package/src/sap/ui/webc/main/Breadcrumbs.js +8 -4
- package/src/sap/ui/webc/main/BreadcrumbsItem.js +6 -3
- package/src/sap/ui/webc/main/BusyIndicator.js +4 -1
- package/src/sap/ui/webc/main/Button.js +51 -3
- package/src/sap/ui/webc/main/Calendar.js +8 -4
- package/src/sap/ui/webc/main/CalendarDate.js +4 -1
- package/src/sap/ui/webc/main/Card.js +27 -1
- package/src/sap/ui/webc/main/CardHeader.js +6 -3
- package/src/sap/ui/webc/main/Carousel.js +8 -2
- package/src/sap/ui/webc/main/CheckBox.js +49 -1
- package/src/sap/ui/webc/main/ColorPalette.js +7 -4
- package/src/sap/ui/webc/main/ColorPaletteItem.js +4 -1
- package/src/sap/ui/webc/main/ColorPalettePopover.js +132 -0
- package/src/sap/ui/webc/main/ColorPicker.js +6 -3
- package/src/sap/ui/webc/main/ComboBox.js +39 -14
- package/src/sap/ui/webc/main/ComboBoxGroupItem.js +6 -3
- package/src/sap/ui/webc/main/ComboBoxItem.js +4 -1
- package/src/sap/ui/webc/main/CustomListItem.js +4 -1
- package/src/sap/ui/webc/main/DatePicker.js +24 -14
- package/src/sap/ui/webc/main/DateRangePicker.js +30 -13
- package/src/sap/ui/webc/main/DateTimePicker.js +22 -14
- package/src/sap/ui/webc/main/Dialog.js +20 -2
- package/src/sap/ui/webc/main/FileUploader.js +5 -2
- package/src/sap/ui/webc/main/GroupHeaderListItem.js +4 -1
- package/src/sap/ui/webc/main/Icon.js +20 -3
- package/src/sap/ui/webc/main/Input.js +58 -35
- package/src/sap/ui/webc/main/Label.js +30 -13
- package/src/sap/ui/webc/main/Link.js +45 -6
- package/src/sap/ui/webc/main/List.js +29 -18
- package/src/sap/ui/webc/main/MessageStrip.js +8 -3
- package/src/sap/ui/webc/main/MultiComboBox.js +15 -10
- package/src/sap/ui/webc/main/MultiComboBoxItem.js +4 -1
- package/src/sap/ui/webc/main/MultiInput.js +42 -35
- package/src/sap/ui/webc/main/Option.js +4 -1
- package/src/sap/ui/webc/main/Panel.js +10 -4
- package/src/sap/ui/webc/main/Popover.js +20 -2
- package/src/sap/ui/webc/main/ProgressIndicator.js +26 -1
- package/src/sap/ui/webc/main/RadioButton.js +41 -1
- package/src/sap/ui/webc/main/RangeSlider.js +20 -18
- package/src/sap/ui/webc/main/RatingIndicator.js +22 -5
- package/src/sap/ui/webc/main/ResponsivePopover.js +20 -2
- package/src/sap/ui/webc/main/SegmentedButton.js +33 -1
- package/src/sap/ui/webc/main/SegmentedButtonItem.js +52 -4
- package/src/sap/ui/webc/main/Select.js +28 -19
- package/src/sap/ui/webc/main/Slider.js +34 -21
- package/src/sap/ui/webc/main/SplitButton.js +156 -0
- package/src/sap/ui/webc/main/StandardListItem.js +4 -1
- package/src/sap/ui/webc/main/StepInput.js +28 -9
- package/src/sap/ui/webc/main/SuggestionGroupItem.js +6 -3
- package/src/sap/ui/webc/main/SuggestionItem.js +5 -2
- package/src/sap/ui/webc/main/Switch.js +23 -5
- package/src/sap/ui/webc/main/Tab.js +14 -3
- package/src/sap/ui/webc/main/TabContainer.js +36 -10
- package/src/sap/ui/webc/main/TabSeparator.js +4 -1
- package/src/sap/ui/webc/main/Table.js +21 -3
- package/src/sap/ui/webc/main/TableCell.js +4 -1
- package/src/sap/ui/webc/main/TableColumn.js +4 -1
- package/src/sap/ui/webc/main/TableGroupRow.js +7 -4
- package/src/sap/ui/webc/main/TableRow.js +8 -5
- package/src/sap/ui/webc/main/TextArea.js +23 -13
- package/src/sap/ui/webc/main/TimePicker.js +6 -3
- package/src/sap/ui/webc/main/Title.js +4 -1
- package/src/sap/ui/webc/main/Toast.js +4 -1
- package/src/sap/ui/webc/main/ToggleButton.js +51 -3
- package/src/sap/ui/webc/main/Token.js +5 -2
- package/src/sap/ui/webc/main/Tree.js +32 -1
- package/src/sap/ui/webc/main/TreeItem.js +20 -1
- package/src/sap/ui/webc/main/designtime/Input.designtime.js +26 -0
- package/src/sap/ui/webc/main/designtime/MultiInput.designtime.js +27 -0
- package/src/sap/ui/webc/main/designtime/RangeSlider.designtime.js +26 -0
- package/src/sap/ui/webc/main/designtime/RatingIndicator.designtime.js +26 -0
- package/src/sap/ui/webc/main/designtime/Slider.designtime.js +25 -0
- package/src/sap/ui/webc/main/designtime/library.designtime.js +12 -0
- package/src/sap/ui/webc/main/designtime/messagebundle.properties +32 -0
- package/src/sap/ui/webc/main/designtime/messagebundle_ar.properties +24 -0
- package/src/sap/ui/webc/main/designtime/messagebundle_bg.properties +24 -0
- package/src/sap/ui/webc/main/designtime/messagebundle_ca.properties +24 -0
- package/src/sap/ui/webc/main/designtime/messagebundle_cs.properties +24 -0
- package/src/sap/ui/webc/main/designtime/messagebundle_cy.properties +24 -0
- package/src/sap/ui/webc/main/designtime/messagebundle_da.properties +24 -0
- package/src/sap/ui/webc/main/designtime/messagebundle_de.properties +24 -0
- package/src/sap/ui/webc/main/designtime/messagebundle_el.properties +24 -0
- package/src/sap/ui/webc/main/designtime/messagebundle_en.properties +24 -0
- package/src/sap/ui/webc/main/designtime/messagebundle_en_GB.properties +24 -0
- package/src/sap/ui/webc/main/designtime/messagebundle_en_US_sappsd.properties +24 -0
- package/src/sap/ui/webc/main/designtime/messagebundle_en_US_saprigi.properties +24 -0
- package/src/sap/ui/webc/main/designtime/messagebundle_en_US_saptrc.properties +24 -0
- package/src/sap/ui/webc/main/designtime/messagebundle_es.properties +24 -0
- package/src/sap/ui/webc/main/designtime/messagebundle_es_MX.properties +24 -0
- package/src/sap/ui/webc/main/designtime/messagebundle_et.properties +24 -0
- package/src/sap/ui/webc/main/designtime/messagebundle_fi.properties +24 -0
- package/src/sap/ui/webc/main/designtime/messagebundle_fr.properties +24 -0
- package/src/sap/ui/webc/main/designtime/messagebundle_fr_CA.properties +24 -0
- package/src/sap/ui/webc/main/designtime/messagebundle_hi.properties +24 -0
- package/src/sap/ui/webc/main/designtime/messagebundle_hr.properties +24 -0
- package/src/sap/ui/webc/main/designtime/messagebundle_hu.properties +24 -0
- package/src/sap/ui/webc/main/designtime/messagebundle_id.properties +24 -0
- package/src/sap/ui/webc/main/designtime/messagebundle_it.properties +24 -0
- package/src/sap/ui/webc/main/designtime/messagebundle_iw.properties +24 -0
- package/src/sap/ui/webc/main/designtime/messagebundle_ja.properties +24 -0
- package/src/sap/ui/webc/main/designtime/messagebundle_kk.properties +24 -0
- package/src/sap/ui/webc/main/designtime/messagebundle_ko.properties +24 -0
- package/src/sap/ui/webc/main/designtime/messagebundle_lt.properties +24 -0
- package/src/sap/ui/webc/main/designtime/messagebundle_lv.properties +24 -0
- package/src/sap/ui/webc/main/designtime/messagebundle_ms.properties +24 -0
- package/src/sap/ui/webc/main/designtime/messagebundle_nl.properties +24 -0
- package/src/sap/ui/webc/main/designtime/messagebundle_no.properties +24 -0
- package/src/sap/ui/webc/main/designtime/messagebundle_pl.properties +24 -0
- package/src/sap/ui/webc/main/designtime/messagebundle_pt.properties +24 -0
- package/src/sap/ui/webc/main/designtime/messagebundle_pt_PT.properties +24 -0
- package/src/sap/ui/webc/main/designtime/messagebundle_ro.properties +24 -0
- package/src/sap/ui/webc/main/designtime/messagebundle_ru.properties +24 -0
- package/src/sap/ui/webc/main/designtime/messagebundle_sh.properties +24 -0
- package/src/sap/ui/webc/main/designtime/messagebundle_sk.properties +24 -0
- package/src/sap/ui/webc/main/designtime/messagebundle_sl.properties +24 -0
- package/src/sap/ui/webc/main/designtime/messagebundle_sv.properties +24 -0
- package/src/sap/ui/webc/main/designtime/messagebundle_th.properties +24 -0
- package/src/sap/ui/webc/main/designtime/messagebundle_tr.properties +24 -0
- package/src/sap/ui/webc/main/designtime/messagebundle_uk.properties +24 -0
- package/src/sap/ui/webc/main/designtime/messagebundle_vi.properties +24 -0
- package/src/sap/ui/webc/main/designtime/messagebundle_zh_CN.properties +24 -0
- package/src/sap/ui/webc/main/designtime/messagebundle_zh_TW.properties +24 -0
- package/src/sap/ui/webc/main/library.config.js +3 -0
- package/src/sap/ui/webc/main/library.js +112 -13
- package/src/sap/ui/webc/main/thirdparty/Assets.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/Avatar.js +8 -11
- package/src/sap/ui/webc/main/thirdparty/AvatarGroup.js +8 -9
- package/src/sap/ui/webc/main/thirdparty/Badge.js +11 -6
- package/src/sap/ui/webc/main/thirdparty/Breadcrumbs.js +28 -13
- package/src/sap/ui/webc/main/thirdparty/BreadcrumbsItem.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/BusyIndicator.js +4 -6
- package/src/sap/ui/webc/main/thirdparty/Button.js +15 -17
- package/src/sap/ui/webc/main/thirdparty/Calendar.js +74 -2
- package/src/sap/ui/webc/main/thirdparty/CalendarHeader.js +17 -55
- package/src/sap/ui/webc/main/thirdparty/Card.js +13 -9
- package/src/sap/ui/webc/main/thirdparty/CardHeader.js +16 -11
- package/src/sap/ui/webc/main/thirdparty/Carousel.js +9 -7
- package/src/sap/ui/webc/main/thirdparty/CheckBox.js +49 -8
- package/src/sap/ui/webc/main/thirdparty/ColorPalette.js +163 -14
- package/src/sap/ui/webc/main/thirdparty/ColorPaletteItem.js +14 -4
- package/src/sap/ui/webc/main/thirdparty/ColorPalettePopover.js +118 -0
- package/src/sap/ui/webc/main/thirdparty/ColorPicker.js +10 -1
- package/src/sap/ui/webc/main/thirdparty/ComboBox.js +209 -65
- package/src/sap/ui/webc/main/thirdparty/DateComponentBase.js +8 -11
- package/src/sap/ui/webc/main/thirdparty/DatePicker.js +9 -3
- package/src/sap/ui/webc/main/thirdparty/DateRangePicker.js +7 -1
- package/src/sap/ui/webc/main/thirdparty/DateTimePicker.js +7 -6
- package/src/sap/ui/webc/main/thirdparty/DayPicker.js +12 -4
- package/src/sap/ui/webc/main/thirdparty/Dialog.js +15 -15
- package/src/sap/ui/webc/main/thirdparty/DurationPicker.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/FileUploader.js +25 -13
- package/src/sap/ui/webc/main/thirdparty/GroupHeaderListItem.js +5 -8
- package/src/sap/ui/webc/main/thirdparty/Icon.js +23 -17
- package/src/sap/ui/webc/main/thirdparty/Input.js +191 -60
- package/src/sap/ui/webc/main/thirdparty/Link.js +7 -9
- package/src/sap/ui/webc/main/thirdparty/List.js +46 -15
- package/src/sap/ui/webc/main/thirdparty/ListItem.js +13 -8
- package/src/sap/ui/webc/main/thirdparty/MessageStrip.js +24 -12
- package/src/sap/ui/webc/main/thirdparty/MultiComboBox.js +211 -62
- package/src/sap/ui/webc/main/thirdparty/MultiComboBoxItem.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/MultiInput.js +40 -9
- package/src/sap/ui/webc/main/thirdparty/Option.js +6 -3
- package/src/sap/ui/webc/main/thirdparty/Panel.js +7 -8
- package/src/sap/ui/webc/main/thirdparty/Popover.js +91 -57
- package/src/sap/ui/webc/main/thirdparty/Popup.js +19 -26
- package/src/sap/ui/webc/main/thirdparty/ProgressIndicator.js +8 -7
- package/src/sap/ui/webc/main/thirdparty/RadioButton.js +39 -8
- package/src/sap/ui/webc/main/thirdparty/RangeSlider.js +7 -8
- package/src/sap/ui/webc/main/thirdparty/RatingIndicator.js +23 -11
- package/src/sap/ui/webc/main/thirdparty/ResponsivePopover.js +6 -23
- package/src/sap/ui/webc/main/thirdparty/SegmentedButton.js +10 -5
- package/src/sap/ui/webc/main/thirdparty/SegmentedButtonItem.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/Select.js +74 -48
- package/src/sap/ui/webc/main/thirdparty/Slider.js +2 -3
- package/src/sap/ui/webc/main/thirdparty/SliderBase.js +7 -9
- package/src/sap/ui/webc/main/thirdparty/SplitButton.js +196 -0
- package/src/sap/ui/webc/main/thirdparty/StepInput.js +8 -10
- package/src/sap/ui/webc/main/thirdparty/Switch.js +16 -7
- package/src/sap/ui/webc/main/thirdparty/Tab.js +25 -9
- package/src/sap/ui/webc/main/thirdparty/TabContainer.js +334 -95
- package/src/sap/ui/webc/main/thirdparty/TabSeparator.js +26 -3
- package/src/sap/ui/webc/main/thirdparty/Table.js +169 -10
- package/src/sap/ui/webc/main/thirdparty/TableColumn.js +0 -3
- package/src/sap/ui/webc/main/thirdparty/TableGroupRow.js +5 -3
- package/src/sap/ui/webc/main/thirdparty/TableRow.js +57 -12
- package/src/sap/ui/webc/main/thirdparty/TextArea.js +28 -14
- package/src/sap/ui/webc/main/thirdparty/TimePicker.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/TimePickerBase.js +9 -6
- package/src/sap/ui/webc/main/thirdparty/TimeSelection.js +8 -9
- package/src/sap/ui/webc/main/thirdparty/Toast.js +5 -0
- package/src/sap/ui/webc/main/thirdparty/ToggleButton.js +4 -1
- package/src/sap/ui/webc/main/thirdparty/Token.js +13 -7
- package/src/sap/ui/webc/main/thirdparty/Tokenizer.js +106 -20
- package/src/sap/ui/webc/main/thirdparty/Tree.js +18 -0
- package/src/sap/ui/webc/main/thirdparty/TreeItem.js +3 -0
- package/src/sap/ui/webc/main/thirdparty/TreeListItem.js +18 -15
- package/src/sap/ui/webc/main/thirdparty/WheelSlider.js +9 -9
- package/src/sap/ui/webc/main/thirdparty/YearPicker.js +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/Avatar.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/AvatarGroup.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/Badge.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/Breadcrumbs.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/BreadcrumbsPopover.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/BrowserScrollbar.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/BusyIndicator.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/Button.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/Button.ie11.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/Calendar.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/CalendarHeader.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/Card.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/CardHeader.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/Carousel.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/CheckBox.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/ColorPalette.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/ColorPaletteItem.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/ColorPalettePopover.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/ColorPaletteStaticArea.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/ColorPicker.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/ComboBox.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/ComboBoxPopover.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/CustomListItem.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/DatePicker.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/DatePickerPopover.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/DateRangePicker.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/DateTimePicker.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/DateTimePickerPopover.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/DayPicker.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/Dialog.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/FileUploader.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/GroupHeaderListItem.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/GrowingButton.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/Icon.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/Input.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/InputIcon.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/InvisibleTextStyles.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/Label.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/Link.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/List.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/ListItem.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/ListItemBase.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/MessageStrip.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/MonthPicker.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/MultiComboBox.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/MultiInput.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/Panel.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/Popover.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/Popup.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/PopupGlobal.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/PopupStaticAreaStyles.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/PopupsCommon.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/ProgressIndicator.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/RadioButton.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/RatingIndicator.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/ResponsivePopover.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/ResponsivePopoverCommon.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/SegmentedButton.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/Select.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/SelectPopover.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/SliderBase.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/SplitButton.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/StepInput.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/Suggestions.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/Switch.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/Tab.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/TabContainer.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/TabInOverflow.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/TabInStrip.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/TabSeparatorInOverflow.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/TabSeparatorInStrip.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/Table.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/TableCell.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/TableColumn.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/TableGroupRow.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/TableRow.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/TapHighlightColor.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/TextArea.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/TimePicker.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/TimePickerPopover.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/TimeSelection.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/Title.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/Toast.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/ToggleButton.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/ToggleButton.ie11.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/Token.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/Tokenizer.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/Tree.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/TreeListItem.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/ValueStateMessage.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/WheelSlider.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/YearPicker.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/sap_belize/parameters-bundle.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/sap_belize_hcb/parameters-bundle.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/sap_belize_hcw/parameters-bundle.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/sap_fiori_3/parameters-bundle.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/sap_fiori_3_dark/parameters-bundle.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/sap_fiori_3_hcb/parameters-bundle.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/sap_fiori_3_hcw/parameters-bundle.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/sap_horizon/parameters-bundle.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/sap_horizon_exp/parameters-bundle.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/features/ColorPaletteMoreColors.js +6 -6
- package/src/sap/ui/webc/main/thirdparty/features/InputSuggestions.js +161 -44
- package/src/sap/ui/webc/main/thirdparty/generated/i18n/i18n-defaults.js +16 -1
- package/src/sap/ui/webc/main/thirdparty/generated/json-imports/Themes.js +10 -8
- package/src/sap/ui/webc/main/thirdparty/generated/json-imports/i18n.js +47 -47
- package/src/sap/ui/webc/main/thirdparty/generated/templates/AvatarGroupTemplate.lit.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/templates/BadgeTemplate.lit.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/templates/BreadcrumbsPopoverTemplate.lit.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/templates/BreadcrumbsTemplate.lit.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/templates/BusyIndicatorTemplate.lit.js +2 -2
- package/src/sap/ui/webc/main/thirdparty/generated/templates/ButtonTemplate.lit.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/templates/CalendarTemplate.lit.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/templates/CardHeaderTemplate.lit.js +2 -2
- package/src/sap/ui/webc/main/thirdparty/generated/templates/CardTemplate.lit.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/templates/CarouselTemplate.lit.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/templates/CheckBoxTemplate.lit.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/templates/ColorPaletteItemTemplate.lit.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/templates/ColorPalettePopoverTemplate.lit.js +8 -0
- package/src/sap/ui/webc/main/thirdparty/generated/templates/ColorPaletteTemplate.lit.js +6 -5
- package/src/sap/ui/webc/main/thirdparty/generated/templates/ColorPickerTemplate.lit.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/templates/ComboBoxPopoverTemplate.lit.js +4 -4
- package/src/sap/ui/webc/main/thirdparty/generated/templates/ComboBoxTemplate.lit.js +4 -3
- package/src/sap/ui/webc/main/thirdparty/generated/templates/CustomListItemTemplate.lit.js +5 -5
- package/src/sap/ui/webc/main/thirdparty/generated/templates/DatePickerPopoverTemplate.lit.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/templates/DateTimePickerPopoverTemplate.lit.js +2 -2
- package/src/sap/ui/webc/main/thirdparty/generated/templates/DayPickerTemplate.lit.js +2 -2
- package/src/sap/ui/webc/main/thirdparty/generated/templates/DialogTemplate.lit.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/templates/FileUploaderPopoverTemplate.lit.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/templates/FileUploaderTemplate.lit.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/templates/GroupHeaderListItemTemplate.lit.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/templates/InputPopoverTemplate.lit.js +6 -6
- package/src/sap/ui/webc/main/thirdparty/generated/templates/InputTemplate.lit.js +7 -5
- package/src/sap/ui/webc/main/thirdparty/generated/templates/LinkTemplate.lit.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/templates/ListItemTemplate.lit.js +5 -5
- package/src/sap/ui/webc/main/thirdparty/generated/templates/ListTemplate.lit.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/templates/MessageStripTemplate.lit.js +4 -4
- package/src/sap/ui/webc/main/thirdparty/generated/templates/MultiComboBoxPopoverTemplate.lit.js +14 -11
- package/src/sap/ui/webc/main/thirdparty/generated/templates/MultiComboBoxTemplate.lit.js +4 -3
- package/src/sap/ui/webc/main/thirdparty/generated/templates/MultiInputTemplate.lit.js +8 -6
- package/src/sap/ui/webc/main/thirdparty/generated/templates/PanelTemplate.lit.js +2 -2
- package/src/sap/ui/webc/main/thirdparty/generated/templates/PopupBlockLayerTemplate.lit.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/templates/ProgressIndicatorTemplate.lit.js +9 -5
- package/src/sap/ui/webc/main/thirdparty/generated/templates/RadioButtonTemplate.lit.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/templates/RangeSliderTemplate.lit.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/templates/RatingIndicatorTemplate.lit.js +6 -4
- package/src/sap/ui/webc/main/thirdparty/generated/templates/ResponsivePopoverTemplate.lit.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/templates/SegmentedButtonItemTemplate.lit.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/templates/SegmentedButtonTemplate.lit.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/templates/SelectPopoverTemplate.lit.js +5 -5
- package/src/sap/ui/webc/main/thirdparty/generated/templates/SelectTemplate.lit.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/templates/SliderBaseTemplate.lit.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/templates/SliderTemplate.lit.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/templates/SplitButtonTemplate.lit.js +7 -0
- package/src/sap/ui/webc/main/thirdparty/generated/templates/StandardListItemTemplate.lit.js +5 -5
- package/src/sap/ui/webc/main/thirdparty/generated/templates/StepInputTemplate.lit.js +4 -2
- package/src/sap/ui/webc/main/thirdparty/generated/templates/SuggestionListItemTemplate.lit.js +5 -5
- package/src/sap/ui/webc/main/thirdparty/generated/templates/SwitchTemplate.lit.js +4 -2
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TabContainerPopoverTemplate.lit.js +4 -2
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TabContainerTemplate.lit.js +9 -10
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TabInOverflowTemplate.lit.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TabInStripTemplate.lit.js +2 -4
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TabSeparatorInOverflowTemplate.lit.js +7 -0
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TabSeparatorInStripTemplate.lit.js +7 -0
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TableGroupRowTemplate.lit.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TableRowTemplate.lit.js +2 -2
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TableTemplate.lit.js +4 -4
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TextAreaPopoverTemplate.lit.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TimePickerPopoverTemplate.lit.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TimePickerTemplate.lit.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TimeSelectionTemplate.lit.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/templates/ToastTemplate.lit.js +2 -1
- package/src/sap/ui/webc/main/thirdparty/generated/templates/ToggleButtonTemplate.lit.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TokenTemplate.lit.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TreeListItemTemplate.lit.js +5 -5
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TreeTemplate.lit.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/templates/WheelSliderTemplate.lit.js +2 -2
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Avatar.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/AvatarGroup.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Badge.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Breadcrumbs.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/BreadcrumbsPopover.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/BrowserScrollbar.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/BusyIndicator.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Button.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Button.ie11.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Calendar.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/CalendarHeader.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Card.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/CardHeader.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Carousel.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/CheckBox.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/ColorPalette.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/ColorPaletteItem.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/ColorPalettePopover.css.js +13 -0
- package/src/sap/ui/webc/main/thirdparty/generated/themes/ColorPaletteStaticArea.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/ColorPicker.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/ComboBox.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/ComboBoxPopover.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/CustomListItem.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/DatePicker.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/DatePickerPopover.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/DateRangePicker.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/DateTimePicker.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/DateTimePickerPopover.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/DayPicker.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Dialog.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/FileUploader.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/GroupHeaderListItem.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/GrowingButton.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Icon.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Input.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/InputIcon.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/InvisibleTextStyles.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Label.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Link.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/List.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/ListItem.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/ListItemBase.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/MessageStrip.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/MonthPicker.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/MultiComboBox.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/MultiInput.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Panel.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Popover.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Popup.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/PopupGlobal.css.js +13 -0
- package/src/sap/ui/webc/main/thirdparty/generated/themes/PopupStaticAreaStyles.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/PopupsCommon.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/ProgressIndicator.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/RadioButton.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/RatingIndicator.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/ResponsivePopover.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/ResponsivePopoverCommon.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/SegmentedButton.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Select.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/SelectPopover.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/SliderBase.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/SplitButton.css.js +13 -0
- package/src/sap/ui/webc/main/thirdparty/generated/themes/StepInput.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Suggestions.css.js +13 -0
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Switch.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Tab.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/TabContainer.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/TabInOverflow.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/TabInStrip.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/TabSeparatorInOverflow.css.js +13 -0
- package/src/sap/ui/webc/main/thirdparty/generated/themes/TabSeparatorInStrip.css.js +13 -0
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Table.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/TableCell.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/TableColumn.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/TableGroupRow.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/TableRow.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/TapHighlightColor.css.js +13 -0
- package/src/sap/ui/webc/main/thirdparty/generated/themes/TextArea.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/TimePicker.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/TimePickerPopover.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/TimeSelection.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Title.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Toast.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/ToggleButton.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/ToggleButton.ie11.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Token.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Tokenizer.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Tree.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/TreeListItem.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/ValueStateMessage.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/WheelSlider.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/YearPicker.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/sap_belize/parameters-bundle.css.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/themes/sap_belize_hcb/parameters-bundle.css.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/themes/sap_belize_hcw/parameters-bundle.css.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/themes/sap_fiori_3/parameters-bundle.css.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/themes/sap_fiori_3_dark/parameters-bundle.css.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/themes/sap_fiori_3_hcb/parameters-bundle.css.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/themes/sap_fiori_3_hcw/parameters-bundle.css.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/themes/sap_horizon/parameters-bundle.css.js +7 -0
- package/src/sap/ui/webc/main/thirdparty/generated/themes/sap_horizon_exp/parameters-bundle.css.js +7 -0
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_ar-7754de1c.js → messagebundle_ar-7d8b4442.js} +17 -2
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_bg-041345aa.js → messagebundle_bg-9ad96f98.js} +17 -2
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_ca-df38eb0b.js → messagebundle_ca-f1555bd9.js} +17 -2
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_cs-51d17321.js → messagebundle_cs-ef8aa726.js} +17 -2
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_cy-cc129f0c.js → messagebundle_cy-990b67d4.js} +17 -2
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_da-bc87b599.js → messagebundle_da-10ddad8e.js} +17 -2
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_de-518b0a75.js → messagebundle_de-3df474de.js} +17 -2
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_el-9686b145.js → messagebundle_el-26906c8d.js} +17 -2
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_en-57ad19b6.js → messagebundle_en-f820b936.js} +17 -2
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_en_GB-588d53e3.js → messagebundle_en_GB-2d06b0a2.js} +17 -2
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_en_US_sappsd-e370df7b.js → messagebundle_en_US_sappsd-5a02ac90.js} +17 -2
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_en_US_saprigi-adf0ddb3.js → messagebundle_en_US_saprigi-789390fa.js} +20 -2
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_en_US_saptrc-261422e2.js → messagebundle_en_US_saptrc-b8adcdb7.js} +17 -2
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_es-ec258b44.js → messagebundle_es-fb48a8d9.js} +17 -2
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_es_MX-5f113e73.js → messagebundle_es_MX-1649847d.js} +18 -3
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_et-901c732b.js → messagebundle_et-21441666.js} +17 -2
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_fi-0a2a6323.js → messagebundle_fi-a7a6ed50.js} +18 -3
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_fr-5df8899a.js → messagebundle_fr-7d25aa37.js} +17 -2
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_fr_CA-0de6a568.js → messagebundle_fr_CA-f0885bcd.js} +17 -2
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_hi-13e67957.js → messagebundle_hi-4ff3dc19.js} +17 -2
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_hr-93fbc1d1.js → messagebundle_hr-27ea5966.js} +17 -2
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_hu-dd94c35e.js → messagebundle_hu-4e7efab2.js} +17 -2
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_it-0c46ce25.js → messagebundle_it-05136e9a.js} +17 -2
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_iw-946df0a2.js → messagebundle_iw-e57af9b5.js} +17 -2
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_ja-9cb333bb.js → messagebundle_ja-548e66ac.js} +19 -4
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_kk-239d7820.js → messagebundle_kk-9a532b4c.js} +17 -2
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_ko-6f09e984.js → messagebundle_ko-85246117.js} +17 -2
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_lt-2d4f9935.js → messagebundle_lt-fd1ed9a8.js} +17 -2
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_lv-d73bf0c0.js → messagebundle_lv-528ee0b5.js} +17 -2
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_ms-9b4b2929.js → messagebundle_ms-ab977639.js} +17 -2
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_nl-55193168.js → messagebundle_nl-6ef0aca9.js} +17 -2
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_no-7f4a6832.js → messagebundle_no-598c70b3.js} +17 -2
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_pl-89c36a34.js → messagebundle_pl-3c6bd3f7.js} +17 -2
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_pt-b87f9645.js → messagebundle_pt-a38c9a95.js} +17 -2
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_pt_PT-0e8230b0.js → messagebundle_pt_PT-6216e41a.js} +17 -2
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_ro-83e7f44d.js → messagebundle_ro-4efbaf89.js} +17 -2
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_ru-befd37d0.js → messagebundle_ru-c8cc395e.js} +17 -2
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_sh-4edec182.js → messagebundle_sh-a18343ab.js} +17 -2
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_sk-29160489.js → messagebundle_sk-cbb7b742.js} +17 -2
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_sl-fd9ba370.js → messagebundle_sl-39b012e5.js} +17 -2
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_sv-57bfda52.js → messagebundle_sv-68d03f9d.js} +17 -2
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_th-184c45a0.js → messagebundle_th-e0f152c1.js} +16 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_tr-d5781fbb.js → messagebundle_tr-10848533.js} +17 -2
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_uk-e49bb47f.js → messagebundle_uk-64f282f3.js} +17 -2
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_vi-ce27847a.js → messagebundle_vi-c6d60018.js} +17 -2
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_zh_CN-bdbfb1bd.js → messagebundle_zh_CN-3be28696.js} +17 -2
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_zh_TW-ca1de535.js → messagebundle_zh_TW-229e0d2b.js} +16 -1
- package/src/sap/ui/webc/main/thirdparty/parameters-bundle.css-87f538cb.js +13 -0
- package/src/sap/ui/webc/main/thirdparty/parameters-bundle.css-91761a3a.js +13 -0
- package/src/sap/ui/webc/main/thirdparty/parameters-bundle.css-9a20ee88.js +13 -0
- package/src/sap/ui/webc/main/thirdparty/parameters-bundle.css-ae75ba99.js +13 -0
- package/src/sap/ui/webc/main/thirdparty/parameters-bundle.css-b27de009.js +13 -0
- package/src/sap/ui/webc/main/thirdparty/parameters-bundle.css-ba83be15.js +13 -0
- package/src/sap/ui/webc/main/thirdparty/parameters-bundle.css-c6c72cae.js +13 -0
- package/src/sap/ui/webc/main/thirdparty/parameters-bundle.css-dc4174de.js +13 -0
- package/src/sap/ui/webc/main/thirdparty/parameters-bundle.css-dd344116.js +13 -0
- package/src/sap/ui/webc/main/thirdparty/types/HasPopup.js +23 -0
- package/src/sap/ui/webc/main/thirdparty/types/TabsOverflowMode.js +20 -0
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TabSeparatorTemplate.lit.js +0 -7
- package/src/sap/ui/webc/main/thirdparty/parameters-bundle.css-09f8e92d.js +0 -9
- package/src/sap/ui/webc/main/thirdparty/parameters-bundle.css-19666884.js +0 -9
- package/src/sap/ui/webc/main/thirdparty/parameters-bundle.css-8e7c6ad9.js +0 -9
- package/src/sap/ui/webc/main/thirdparty/parameters-bundle.css-cb713657.js +0 -9
- package/src/sap/ui/webc/main/thirdparty/parameters-bundle.css-dd8f2f47.js +0 -9
- package/src/sap/ui/webc/main/thirdparty/parameters-bundle.css-e3a31f8e.js +0 -9
- package/src/sap/ui/webc/main/thirdparty/parameters-bundle.css-e44b2b84.js +0 -9
|
@@ -1,12 +1,8 @@
|
|
|
1
1
|
sap.ui.define(['sap/ui/webc/common/thirdparty/base/Device', 'sap/ui/webc/common/thirdparty/base/i18nBundle', 'sap/ui/webc/common/thirdparty/base/util/PopupUtils', './generated/i18n/i18n-defaults', './generated/templates/ResponsivePopoverTemplate.lit', './Popover', './Dialog', './Button', './Title', 'sap/ui/webc/common/thirdparty/icons/decline', './generated/themes/ResponsivePopover.css'], function (Device, i18nBundle, PopupUtils, i18nDefaults, ResponsivePopoverTemplate_lit, Popover, Dialog, Button, Title, decline, ResponsivePopover_css) { 'use strict';
|
|
2
2
|
|
|
3
|
-
const POPOVER_MIN_WIDTH = 100;
|
|
4
3
|
const metadata = {
|
|
5
4
|
tag: "ui5-responsive-popover",
|
|
6
5
|
properties: {
|
|
7
|
-
noStretch: {
|
|
8
|
-
type: Boolean,
|
|
9
|
-
},
|
|
10
6
|
withPadding: {
|
|
11
7
|
type: Boolean,
|
|
12
8
|
},
|
|
@@ -24,7 +20,6 @@ sap.ui.define(['sap/ui/webc/common/thirdparty/base/Device', 'sap/ui/webc/common/
|
|
|
24
20
|
class ResponsivePopover extends Popover {
|
|
25
21
|
constructor() {
|
|
26
22
|
super();
|
|
27
|
-
this.i18nBundle = i18nBundle.getI18nBundle("@ui5/webcomponents");
|
|
28
23
|
}
|
|
29
24
|
static get metadata() {
|
|
30
25
|
return metadata;
|
|
@@ -45,31 +40,26 @@ sap.ui.define(['sap/ui/webc/common/thirdparty/base/Device', 'sap/ui/webc/common/
|
|
|
45
40
|
}
|
|
46
41
|
static get dependencies() {
|
|
47
42
|
return [
|
|
43
|
+
...Popover.dependencies,
|
|
48
44
|
Button,
|
|
49
45
|
Dialog,
|
|
50
46
|
Title,
|
|
51
47
|
];
|
|
52
48
|
}
|
|
53
49
|
async showAt(opener, preventInitialFocus = false) {
|
|
54
|
-
this.style.display = this._isPhone ? "contents" : "";
|
|
55
|
-
if (this.isOpen() || (this._dialog && this._dialog.isOpen())) {
|
|
56
|
-
return;
|
|
57
|
-
}
|
|
58
50
|
if (!Device.isPhone()) {
|
|
59
|
-
if (!this.noStretch) {
|
|
60
|
-
this._minWidth = Math.max(POPOVER_MIN_WIDTH, opener.getBoundingClientRect().width);
|
|
61
|
-
}
|
|
62
51
|
await super.showAt(opener, preventInitialFocus);
|
|
63
52
|
} else {
|
|
53
|
+
this.style.display = "contents";
|
|
64
54
|
this.style.zIndex = PopupUtils.getNextZIndex();
|
|
65
|
-
await this._dialog.show();
|
|
55
|
+
await this._dialog.show(preventInitialFocus);
|
|
66
56
|
}
|
|
67
57
|
}
|
|
68
58
|
close(escPressed = false, preventRegistryUpdate = false, preventFocusRestore = false) {
|
|
69
59
|
if (!Device.isPhone()) {
|
|
70
60
|
super.close(escPressed, preventRegistryUpdate, preventFocusRestore);
|
|
71
61
|
} else {
|
|
72
|
-
this._dialog.close();
|
|
62
|
+
this._dialog.close(escPressed, preventRegistryUpdate, preventFocusRestore);
|
|
73
63
|
}
|
|
74
64
|
}
|
|
75
65
|
toggle(opener) {
|
|
@@ -81,13 +71,6 @@ sap.ui.define(['sap/ui/webc/common/thirdparty/base/Device', 'sap/ui/webc/common/
|
|
|
81
71
|
isOpen() {
|
|
82
72
|
return Device.isPhone() ? this._dialog.isOpen() : super.isOpen();
|
|
83
73
|
}
|
|
84
|
-
get styles() {
|
|
85
|
-
const popoverStyles = super.styles;
|
|
86
|
-
popoverStyles.root = {
|
|
87
|
-
"min-width": `${this._minWidth}px`,
|
|
88
|
-
};
|
|
89
|
-
return popoverStyles;
|
|
90
|
-
}
|
|
91
74
|
get _dialog() {
|
|
92
75
|
return this.shadowRoot.querySelector("[ui5-dialog]");
|
|
93
76
|
}
|
|
@@ -101,7 +84,7 @@ sap.ui.define(['sap/ui/webc/common/thirdparty/base/Device', 'sap/ui/webc/common/
|
|
|
101
84
|
return this._isPhone || !this.contentOnlyOnDesktop;
|
|
102
85
|
}
|
|
103
86
|
get _closeDialogAriaLabel() {
|
|
104
|
-
return
|
|
87
|
+
return ResponsivePopover.i18nBundle.getText(i18nDefaults.RESPONSIVE_POPOVER_CLOSE_DIALOG_BUTTON);
|
|
105
88
|
}
|
|
106
89
|
_afterDialogOpen(event) {
|
|
107
90
|
this.opened = true;
|
|
@@ -116,7 +99,7 @@ sap.ui.define(['sap/ui/webc/common/thirdparty/base/Device', 'sap/ui/webc/common/
|
|
|
116
99
|
this.fireEvent(type, event.detail);
|
|
117
100
|
}
|
|
118
101
|
static async onDefine() {
|
|
119
|
-
await i18nBundle.
|
|
102
|
+
ResponsivePopover.i18nBundle = await i18nBundle.getI18nBundle("@ui5/webcomponents");
|
|
120
103
|
}
|
|
121
104
|
}
|
|
122
105
|
ResponsivePopover.define();
|
|
@@ -11,7 +11,12 @@ sap.ui.define(['sap/ui/webc/common/thirdparty/base/UI5Element', 'sap/ui/webc/com
|
|
|
11
11
|
tag: "ui5-segmented-button",
|
|
12
12
|
altTag: "ui5-segmentedbutton",
|
|
13
13
|
languageAware: true,
|
|
14
|
-
properties: {
|
|
14
|
+
properties: {
|
|
15
|
+
accessibleName: {
|
|
16
|
+
type: String,
|
|
17
|
+
defaultValue: undefined,
|
|
18
|
+
},
|
|
19
|
+
},
|
|
15
20
|
managedSlots: true,
|
|
16
21
|
slots: {
|
|
17
22
|
"default": {
|
|
@@ -44,7 +49,7 @@ sap.ui.define(['sap/ui/webc/common/thirdparty/base/UI5Element', 'sap/ui/webc/com
|
|
|
44
49
|
return [SegmentedButtonItem];
|
|
45
50
|
}
|
|
46
51
|
static async onDefine() {
|
|
47
|
-
await i18nBundle.
|
|
52
|
+
SegmentedButton.i18nBundle = await i18nBundle.getI18nBundle("@ui5/webcomponents");
|
|
48
53
|
}
|
|
49
54
|
constructor() {
|
|
50
55
|
super();
|
|
@@ -55,7 +60,6 @@ sap.ui.define(['sap/ui/webc/common/thirdparty/base/UI5Element', 'sap/ui/webc/com
|
|
|
55
60
|
this.percentageWidthSet = false;
|
|
56
61
|
this.hasPreviouslyFocusedItem = false;
|
|
57
62
|
this._handleResizeBound = this._doLayout.bind(this);
|
|
58
|
-
this.i18nBundle = i18nBundle.getI18nBundle("@ui5/webcomponents");
|
|
59
63
|
}
|
|
60
64
|
onEnterDOM() {
|
|
61
65
|
ResizeHandler__default.register(this.parentNode, this._handleResizeBound);
|
|
@@ -121,6 +125,7 @@ sap.ui.define(['sap/ui/webc/common/thirdparty/base/UI5Element', 'sap/ui/webc/com
|
|
|
121
125
|
}
|
|
122
126
|
_onclick(event) {
|
|
123
127
|
this._selectItem(event);
|
|
128
|
+
this.selectedItem.focus();
|
|
124
129
|
}
|
|
125
130
|
_onkeydown(event) {
|
|
126
131
|
if (Keys.isEnter(event)) {
|
|
@@ -167,10 +172,10 @@ sap.ui.define(['sap/ui/webc/common/thirdparty/base/UI5Element', 'sap/ui/webc/com
|
|
|
167
172
|
return this._selectedItem;
|
|
168
173
|
}
|
|
169
174
|
get ariaDescribedBy() {
|
|
170
|
-
return
|
|
175
|
+
return SegmentedButton.i18nBundle.getText(i18nDefaults.SEGMENTEDBUTTON_ARIA_DESCRIBEDBY);
|
|
171
176
|
}
|
|
172
177
|
get ariaDescription() {
|
|
173
|
-
return
|
|
178
|
+
return SegmentedButton.i18nBundle.getText(i18nDefaults.SEGMENTEDBUTTON_ARIA_DESCRIPTION);
|
|
174
179
|
}
|
|
175
180
|
}
|
|
176
181
|
SegmentedButton.define();
|
|
@@ -29,7 +29,7 @@ sap.ui.define(['./generated/templates/SegmentedButtonItemTemplate.lit', './Toggl
|
|
|
29
29
|
return SegmentedButtonItemTemplate_lit;
|
|
30
30
|
}
|
|
31
31
|
get ariaDescription() {
|
|
32
|
-
return
|
|
32
|
+
return SegmentedButtonItem.i18nBundle.getText(i18nDefaults.SEGMENTEDBUTTONITEM_ARIA_DESCRIPTION);
|
|
33
33
|
}
|
|
34
34
|
}
|
|
35
35
|
SegmentedButtonItem.define();
|
|
@@ -1,9 +1,10 @@
|
|
|
1
|
-
sap.ui.define(['sap/ui/webc/common/thirdparty/base/UI5Element', 'sap/ui/webc/common/thirdparty/base/renderer/LitRenderer', 'sap/ui/webc/common/thirdparty/base/Keys', 'sap/ui/webc/common/thirdparty/base/types/Integer', 'sap/ui/webc/common/thirdparty/base/FeaturesRegistry', 'sap/ui/webc/common/thirdparty/base/util/AriaLabelHelper', 'sap/ui/webc/common/thirdparty/base/types/ValueState', 'sap/ui/webc/common/thirdparty/icons/slim-arrow-down', 'sap/ui/webc/common/thirdparty/base/Device', 'sap/ui/webc/common/thirdparty/base/i18nBundle', 'sap/ui/webc/common/thirdparty/icons/decline', './generated/i18n/i18n-defaults', './Option', './Label', './ResponsivePopover', './Popover', './List', './StandardListItem', './Icon', './Button', './generated/templates/SelectTemplate.lit', './generated/templates/SelectPopoverTemplate.lit', './generated/themes/Select.css', './generated/themes/ResponsivePopoverCommon.css', './generated/themes/ValueStateMessage.css', './generated/themes/SelectPopover.css'], function (UI5Element, litRender, Keys, Integer, FeaturesRegistry, AriaLabelHelper, ValueState, slimArrowDown, Device, i18nBundle, decline, i18nDefaults, Option, Label, ResponsivePopover, Popover, List, StandardListItem, Icon, Button, SelectTemplate_lit, SelectPopoverTemplate_lit, Select_css, ResponsivePopoverCommon_css, ValueStateMessage_css, SelectPopover_css) { 'use strict';
|
|
1
|
+
sap.ui.define(['sap/ui/webc/common/thirdparty/base/UI5Element', 'sap/ui/webc/common/thirdparty/base/renderer/LitRenderer', 'sap/ui/webc/common/thirdparty/base/Keys', 'sap/ui/webc/common/thirdparty/base/util/InvisibleMessage', 'sap/ui/webc/common/thirdparty/base/types/Integer', 'sap/ui/webc/common/thirdparty/base/FeaturesRegistry', 'sap/ui/webc/common/thirdparty/base/util/AriaLabelHelper', 'sap/ui/webc/common/thirdparty/base/types/ValueState', 'sap/ui/webc/common/thirdparty/icons/slim-arrow-down', 'sap/ui/webc/common/thirdparty/base/Device', 'sap/ui/webc/common/thirdparty/base/i18nBundle', 'sap/ui/webc/common/thirdparty/icons/decline', './generated/i18n/i18n-defaults', './Option', './Label', './ResponsivePopover', './Popover', './List', './StandardListItem', './Icon', './Button', './generated/templates/SelectTemplate.lit', './generated/templates/SelectPopoverTemplate.lit', './generated/themes/Select.css', './generated/themes/ResponsivePopoverCommon.css', './generated/themes/ValueStateMessage.css', './generated/themes/SelectPopover.css'], function (UI5Element, litRender, Keys, announce, Integer, FeaturesRegistry, AriaLabelHelper, ValueState, slimArrowDown, Device, i18nBundle, decline, i18nDefaults, Option, Label, ResponsivePopover, Popover, List, StandardListItem, Icon, Button, SelectTemplate_lit, SelectPopoverTemplate_lit, Select_css, ResponsivePopoverCommon_css, ValueStateMessage_css, SelectPopover_css) { 'use strict';
|
|
2
2
|
|
|
3
3
|
function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e['default'] : e; }
|
|
4
4
|
|
|
5
5
|
var UI5Element__default = /*#__PURE__*/_interopDefaultLegacy(UI5Element);
|
|
6
6
|
var litRender__default = /*#__PURE__*/_interopDefaultLegacy(litRender);
|
|
7
|
+
var announce__default = /*#__PURE__*/_interopDefaultLegacy(announce);
|
|
7
8
|
var Integer__default = /*#__PURE__*/_interopDefaultLegacy(Integer);
|
|
8
9
|
var ValueState__default = /*#__PURE__*/_interopDefaultLegacy(ValueState);
|
|
9
10
|
|
|
@@ -101,7 +102,6 @@ sap.ui.define(['sap/ui/webc/common/thirdparty/base/UI5Element', 'sap/ui/webc/com
|
|
|
101
102
|
this._lastSelectedOption = null;
|
|
102
103
|
this._typedChars = "";
|
|
103
104
|
this._typingTimeoutID = -1;
|
|
104
|
-
this.i18nBundle = i18nBundle.getI18nBundle("@ui5/webcomponents");
|
|
105
105
|
}
|
|
106
106
|
onBeforeRendering() {
|
|
107
107
|
this._syncSelection();
|
|
@@ -114,13 +114,13 @@ sap.ui.define(['sap/ui/webc/common/thirdparty/base/UI5Element', 'sap/ui/webc/com
|
|
|
114
114
|
this._listWidth = this.responsivePopover.offsetWidth;
|
|
115
115
|
}
|
|
116
116
|
}
|
|
117
|
+
this._attachRealDomRefs();
|
|
117
118
|
}
|
|
118
119
|
_onfocusin() {
|
|
119
120
|
this.focused = true;
|
|
120
121
|
}
|
|
121
122
|
_onfocusout() {
|
|
122
123
|
this.focused = false;
|
|
123
|
-
this.itemSelectionAnnounce();
|
|
124
124
|
}
|
|
125
125
|
get _isPickerOpen() {
|
|
126
126
|
return !!this.responsivePopover && this.responsivePopover.opened;
|
|
@@ -130,7 +130,7 @@ sap.ui.define(['sap/ui/webc/common/thirdparty/base/UI5Element', 'sap/ui/webc/com
|
|
|
130
130
|
return staticAreaItem.querySelector("[ui5-responsive-popover]");
|
|
131
131
|
}
|
|
132
132
|
get selectedOption() {
|
|
133
|
-
return this.
|
|
133
|
+
return this._filteredItems.find(option => option.selected);
|
|
134
134
|
}
|
|
135
135
|
async _toggleRespPopover() {
|
|
136
136
|
this._iconPressed = true;
|
|
@@ -144,14 +144,21 @@ sap.ui.define(['sap/ui/webc/common/thirdparty/base/UI5Element', 'sap/ui/webc/com
|
|
|
144
144
|
this.responsivePopover.showAt(this);
|
|
145
145
|
}
|
|
146
146
|
}
|
|
147
|
+
async _attachRealDomRefs() {
|
|
148
|
+
this.responsivePopover = await this._respPopover();
|
|
149
|
+
this.options.forEach(option => {
|
|
150
|
+
option._getRealDomRef = () => this.responsivePopover.querySelector(`*[data-ui5-stable=${option.stableDomRef}]`);
|
|
151
|
+
});
|
|
152
|
+
}
|
|
147
153
|
_syncSelection() {
|
|
148
154
|
let lastSelectedOptionIndex = -1,
|
|
149
155
|
firstEnabledOptionIndex = -1;
|
|
150
|
-
const
|
|
156
|
+
const options = this._filteredItems;
|
|
157
|
+
const syncOpts = options.map((opt, index) => {
|
|
151
158
|
if (opt.selected || opt.textContent === this.value) {
|
|
152
159
|
lastSelectedOptionIndex = index;
|
|
153
160
|
}
|
|
154
|
-
if (
|
|
161
|
+
if (firstEnabledOptionIndex === -1) {
|
|
155
162
|
firstEnabledOptionIndex = index;
|
|
156
163
|
}
|
|
157
164
|
opt.selected = false;
|
|
@@ -159,34 +166,34 @@ sap.ui.define(['sap/ui/webc/common/thirdparty/base/UI5Element', 'sap/ui/webc/com
|
|
|
159
166
|
return {
|
|
160
167
|
selected: false,
|
|
161
168
|
_focused: false,
|
|
162
|
-
disabled: opt.disabled,
|
|
163
169
|
icon: opt.icon,
|
|
164
170
|
value: opt.value,
|
|
165
171
|
textContent: opt.textContent,
|
|
172
|
+
title: opt.title,
|
|
166
173
|
id: opt._id,
|
|
167
174
|
stableDomRef: opt.stableDomRef,
|
|
168
175
|
};
|
|
169
176
|
});
|
|
170
|
-
if (lastSelectedOptionIndex > -1 && !
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
this._text =
|
|
177
|
+
if (lastSelectedOptionIndex > -1 && !syncOpts[lastSelectedOptionIndex].disabled) {
|
|
178
|
+
syncOpts[lastSelectedOptionIndex].selected = true;
|
|
179
|
+
syncOpts[lastSelectedOptionIndex]._focused = true;
|
|
180
|
+
options[lastSelectedOptionIndex].selected = true;
|
|
181
|
+
options[lastSelectedOptionIndex]._focused = true;
|
|
182
|
+
this._text = syncOpts[lastSelectedOptionIndex].textContent;
|
|
176
183
|
this._selectedIndex = lastSelectedOptionIndex;
|
|
177
184
|
} else {
|
|
178
185
|
this._text = "";
|
|
179
186
|
this._selectedIndex = -1;
|
|
180
|
-
if (
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
187
|
+
if (syncOpts[firstEnabledOptionIndex]) {
|
|
188
|
+
syncOpts[firstEnabledOptionIndex].selected = true;
|
|
189
|
+
syncOpts[firstEnabledOptionIndex]._focused = true;
|
|
190
|
+
options[firstEnabledOptionIndex].selected = true;
|
|
191
|
+
options[firstEnabledOptionIndex]._focused = true;
|
|
185
192
|
this._selectedIndex = firstEnabledOptionIndex;
|
|
186
|
-
this._text =
|
|
193
|
+
this._text = options[firstEnabledOptionIndex].textContent;
|
|
187
194
|
}
|
|
188
195
|
}
|
|
189
|
-
this._syncedOptions =
|
|
196
|
+
this._syncedOptions = syncOpts;
|
|
190
197
|
}
|
|
191
198
|
_enableFormSupport() {
|
|
192
199
|
const FormSupport = FeaturesRegistry.getFeature("FormSupport");
|
|
@@ -247,7 +254,7 @@ sap.ui.define(['sap/ui/webc/common/thirdparty/base/UI5Element', 'sap/ui/webc/com
|
|
|
247
254
|
}
|
|
248
255
|
}
|
|
249
256
|
_searchNextItemByText(text) {
|
|
250
|
-
let orderedOptions = this.
|
|
257
|
+
let orderedOptions = this._filteredItems.slice(0);
|
|
251
258
|
const optionsAfterSelected = orderedOptions.splice(this._selectedIndex + 1, orderedOptions.length - this._selectedIndex);
|
|
252
259
|
const optionsBeforeSelected = orderedOptions.splice(0, orderedOptions.length - 1);
|
|
253
260
|
orderedOptions = optionsAfterSelected.concat(optionsBeforeSelected);
|
|
@@ -258,7 +265,7 @@ sap.ui.define(['sap/ui/webc/common/thirdparty/base/UI5Element', 'sap/ui/webc/com
|
|
|
258
265
|
this._changeSelectedItem(this._selectedIndex, 0);
|
|
259
266
|
}
|
|
260
267
|
_handleEndKey(event) {
|
|
261
|
-
const lastIndex = this.
|
|
268
|
+
const lastIndex = this._filteredItems.length - 1;
|
|
262
269
|
event.preventDefault();
|
|
263
270
|
this._changeSelectedItem(this._selectedIndex, lastIndex);
|
|
264
271
|
}
|
|
@@ -275,12 +282,12 @@ sap.ui.define(['sap/ui/webc/common/thirdparty/base/UI5Element', 'sap/ui/webc/com
|
|
|
275
282
|
return [].indexOf.call(item.parentElement.children, item);
|
|
276
283
|
}
|
|
277
284
|
_select(index) {
|
|
278
|
-
this.
|
|
285
|
+
this._filteredItems[this._selectedIndex].selected = false;
|
|
279
286
|
this._selectedIndex = index;
|
|
280
|
-
this.
|
|
287
|
+
this._filteredItems[index].selected = true;
|
|
281
288
|
}
|
|
282
289
|
_handleItemPress(event) {
|
|
283
|
-
const item = event.detail.
|
|
290
|
+
const item = event.detail.selectedItems[0];
|
|
284
291
|
const selectedItemIndex = this._getSelectedItemIndex(item);
|
|
285
292
|
this._handleSelectionChange(selectedItemIndex);
|
|
286
293
|
}
|
|
@@ -311,13 +318,14 @@ sap.ui.define(['sap/ui/webc/common/thirdparty/base/UI5Element', 'sap/ui/webc/com
|
|
|
311
318
|
}
|
|
312
319
|
}
|
|
313
320
|
_changeSelectedItem(oldIndex, newIndex) {
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
321
|
+
const options = this._filteredItems;
|
|
322
|
+
options[oldIndex].selected = false;
|
|
323
|
+
options[oldIndex]._focused = false;
|
|
324
|
+
options[newIndex].selected = true;
|
|
325
|
+
options[newIndex]._focused = true;
|
|
318
326
|
this._selectedIndex = newIndex;
|
|
319
327
|
if (!this._isPickerOpen) {
|
|
320
|
-
this._fireChangeEvent(
|
|
328
|
+
this._fireChangeEvent(options[newIndex]);
|
|
321
329
|
}
|
|
322
330
|
}
|
|
323
331
|
_getNextOptionIndex() {
|
|
@@ -328,7 +336,7 @@ sap.ui.define(['sap/ui/webc/common/thirdparty/base/UI5Element', 'sap/ui/webc/com
|
|
|
328
336
|
}
|
|
329
337
|
_beforeOpen() {
|
|
330
338
|
this._selectedIndexBeforeOpen = this._selectedIndex;
|
|
331
|
-
this._lastSelectedOption = this.
|
|
339
|
+
this._lastSelectedOption = this._filteredItems[this._selectedIndex];
|
|
332
340
|
}
|
|
333
341
|
_afterOpen() {
|
|
334
342
|
this.opened = true;
|
|
@@ -340,9 +348,9 @@ sap.ui.define(['sap/ui/webc/common/thirdparty/base/UI5Element', 'sap/ui/webc/com
|
|
|
340
348
|
if (this._escapePressed) {
|
|
341
349
|
this._select(this._selectedIndexBeforeOpen);
|
|
342
350
|
this._escapePressed = false;
|
|
343
|
-
} else if (this._lastSelectedOption !== this.
|
|
344
|
-
this._fireChangeEvent(this.
|
|
345
|
-
this._lastSelectedOption = this.
|
|
351
|
+
} else if (this._lastSelectedOption !== this._filteredItems[this._selectedIndex]) {
|
|
352
|
+
this._fireChangeEvent(this._filteredItems[this._selectedIndex]);
|
|
353
|
+
this._lastSelectedOption = this._filteredItems[this._selectedIndex];
|
|
346
354
|
}
|
|
347
355
|
}
|
|
348
356
|
_fireChangeEvent(selectedOption) {
|
|
@@ -351,12 +359,11 @@ sap.ui.define(['sap/ui/webc/common/thirdparty/base/UI5Element', 'sap/ui/webc/com
|
|
|
351
359
|
this.fireEvent("selected-item-changed");
|
|
352
360
|
}
|
|
353
361
|
get valueStateTextMappings() {
|
|
354
|
-
const i18nBundle = this.i18nBundle;
|
|
355
362
|
return {
|
|
356
|
-
"Success": i18nBundle.getText(i18nDefaults.VALUE_STATE_SUCCESS),
|
|
357
|
-
"Information": i18nBundle.getText(i18nDefaults.VALUE_STATE_INFORMATION),
|
|
358
|
-
"Error": i18nBundle.getText(i18nDefaults.VALUE_STATE_ERROR),
|
|
359
|
-
"Warning": i18nBundle.getText(i18nDefaults.VALUE_STATE_WARNING),
|
|
363
|
+
"Success": Select.i18nBundle.getText(i18nDefaults.VALUE_STATE_SUCCESS),
|
|
364
|
+
"Information": Select.i18nBundle.getText(i18nDefaults.VALUE_STATE_INFORMATION),
|
|
365
|
+
"Error": Select.i18nBundle.getText(i18nDefaults.VALUE_STATE_ERROR),
|
|
366
|
+
"Warning": Select.i18nBundle.getText(i18nDefaults.VALUE_STATE_WARNING),
|
|
360
367
|
};
|
|
361
368
|
}
|
|
362
369
|
get valueStateText() {
|
|
@@ -372,19 +379,28 @@ sap.ui.define(['sap/ui/webc/common/thirdparty/base/UI5Element', 'sap/ui/webc/com
|
|
|
372
379
|
return this.disabled || undefined;
|
|
373
380
|
}
|
|
374
381
|
get _headerTitleText() {
|
|
375
|
-
return
|
|
382
|
+
return Select.i18nBundle.getText(i18nDefaults.INPUT_SUGGESTIONS_TITLE);
|
|
376
383
|
}
|
|
377
384
|
get _currentSelectedItem() {
|
|
378
|
-
return this.shadowRoot.querySelector(`#${this.
|
|
385
|
+
return this.shadowRoot.querySelector(`#${this._filteredItems[this._selectedIndex]._id}-li`);
|
|
379
386
|
}
|
|
380
387
|
get _currentlySelectedOption() {
|
|
381
|
-
return this.
|
|
388
|
+
return this._filteredItems[this._selectedIndex];
|
|
382
389
|
}
|
|
383
390
|
get tabIndex() {
|
|
384
391
|
return this.disabled
|
|
385
392
|
|| (this.responsivePopover
|
|
386
393
|
&& this.responsivePopover.opened) ? "-1" : "0";
|
|
387
394
|
}
|
|
395
|
+
get _valueStateMessageInputIcon() {
|
|
396
|
+
const iconPerValueState = {
|
|
397
|
+
Error: "error",
|
|
398
|
+
Warning: "alert",
|
|
399
|
+
Success: "sys-enter-2",
|
|
400
|
+
Information: "information",
|
|
401
|
+
};
|
|
402
|
+
return this.valueState !== ValueState__default.None ? iconPerValueState[this.valueState] : "";
|
|
403
|
+
}
|
|
388
404
|
get classes() {
|
|
389
405
|
return {
|
|
390
406
|
popoverValueState: {
|
|
@@ -394,6 +410,9 @@ sap.ui.define(['sap/ui/webc/common/thirdparty/base/UI5Element', 'sap/ui/webc/com
|
|
|
394
410
|
"ui5-valuestatemessage--warning": this.valueState === ValueState__default.Warning,
|
|
395
411
|
"ui5-valuestatemessage--information": this.valueState === ValueState__default.Information,
|
|
396
412
|
},
|
|
413
|
+
popover: {
|
|
414
|
+
"ui5-select-popover-valuestate": this.hasValueState,
|
|
415
|
+
},
|
|
397
416
|
};
|
|
398
417
|
}
|
|
399
418
|
get styles() {
|
|
@@ -402,8 +421,8 @@ sap.ui.define(['sap/ui/webc/common/thirdparty/base/UI5Element', 'sap/ui/webc/com
|
|
|
402
421
|
"max-width": `${this.offsetWidth}px`,
|
|
403
422
|
},
|
|
404
423
|
responsivePopoverHeader: {
|
|
405
|
-
"display": this.
|
|
406
|
-
"width": `${this.
|
|
424
|
+
"display": this._filteredItems.length && this._listWidth === 0 ? "none" : "inline-block",
|
|
425
|
+
"width": `${this._filteredItems.length ? this._listWidth : this.offsetWidth}px`,
|
|
407
426
|
},
|
|
408
427
|
};
|
|
409
428
|
}
|
|
@@ -426,12 +445,16 @@ sap.ui.define(['sap/ui/webc/common/thirdparty/base/UI5Element', 'sap/ui/webc/com
|
|
|
426
445
|
get _isPhone() {
|
|
427
446
|
return Device.isPhone();
|
|
428
447
|
}
|
|
448
|
+
get _filteredItems() {
|
|
449
|
+
return this.options.filter(option => !option.disabled);
|
|
450
|
+
}
|
|
429
451
|
itemSelectionAnnounce() {
|
|
430
|
-
|
|
452
|
+
let text;
|
|
453
|
+
const optionsCount = this._filteredItems.length;
|
|
454
|
+
const itemPositionText = Select.i18nBundle.getText(i18nDefaults.LIST_ITEM_POSITION, this._selectedIndex + 1, optionsCount);
|
|
431
455
|
if (this.focused && this._currentlySelectedOption) {
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
invisibleText.textContent = "";
|
|
456
|
+
text = `${this._currentlySelectedOption.textContent} ${this._isPickerOpen ? itemPositionText : ""}`;
|
|
457
|
+
announce__default(text, "Polite");
|
|
435
458
|
}
|
|
436
459
|
}
|
|
437
460
|
async openValueStatePopover() {
|
|
@@ -469,6 +492,9 @@ sap.ui.define(['sap/ui/webc/common/thirdparty/base/UI5Element', 'sap/ui/webc/com
|
|
|
469
492
|
Button,
|
|
470
493
|
];
|
|
471
494
|
}
|
|
495
|
+
static async onDefine() {
|
|
496
|
+
Select.i18nBundle = await i18nBundle.getI18nBundle("@ui5/webcomponents");
|
|
497
|
+
}
|
|
472
498
|
}
|
|
473
499
|
Select.define();
|
|
474
500
|
|
|
@@ -26,7 +26,6 @@ sap.ui.define(['sap/ui/webc/common/thirdparty/base/types/Float', 'sap/ui/webc/co
|
|
|
26
26
|
super();
|
|
27
27
|
this._stateStorage.value = null;
|
|
28
28
|
this._setInitialValue("value", null);
|
|
29
|
-
this.i18nBundle = i18nBundle.getI18nBundle("@ui5/webcomponents");
|
|
30
29
|
}
|
|
31
30
|
onBeforeRendering() {
|
|
32
31
|
if (!this.isCurrentStateOutdated()) {
|
|
@@ -142,10 +141,10 @@ sap.ui.define(['sap/ui/webc/common/thirdparty/base/types/Float', 'sap/ui/webc/co
|
|
|
142
141
|
return this.disabled || undefined;
|
|
143
142
|
}
|
|
144
143
|
get _ariaLabelledByText() {
|
|
145
|
-
return
|
|
144
|
+
return Slider.i18nBundle.getText(i18nDefaults.SLIDER_ARIA_DESCRIPTION);
|
|
146
145
|
}
|
|
147
146
|
static async onDefine() {
|
|
148
|
-
await i18nBundle.
|
|
147
|
+
Slider.i18nBundle = await i18nBundle.getI18nBundle("@ui5/webcomponents");
|
|
149
148
|
}
|
|
150
149
|
}
|
|
151
150
|
Slider.define();
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
sap.ui.define(['sap/ui/webc/common/thirdparty/base/UI5Element', 'sap/ui/webc/common/thirdparty/base/renderer/LitRenderer', 'sap/ui/webc/common/thirdparty/base/types/Float', 'sap/ui/webc/common/thirdparty/base/types/Integer', 'sap/ui/webc/common/thirdparty/base/delegate/ResizeHandler', 'sap/ui/webc/common/thirdparty/base/Device', 'sap/ui/webc/common/thirdparty/base/Keys', 'sap/ui/webc/common/thirdparty/base/config/Theme', './generated/themes/SliderBase.css'], function (UI5Element, litRender, Float, Integer, ResizeHandler, Device, Keys, Theme, SliderBase_css) { 'use strict';
|
|
1
|
+
sap.ui.define(['sap/ui/webc/common/thirdparty/base/UI5Element', 'sap/ui/webc/common/thirdparty/base/renderer/LitRenderer', 'sap/ui/webc/common/thirdparty/base/types/Float', 'sap/ui/webc/common/thirdparty/base/types/Integer', 'sap/ui/webc/common/thirdparty/base/delegate/ResizeHandler', 'sap/ui/webc/common/thirdparty/base/Device', 'sap/ui/webc/common/thirdparty/icons/source-code', 'sap/ui/webc/common/thirdparty/base/Keys', 'sap/ui/webc/common/thirdparty/base/config/Theme', './generated/themes/SliderBase.css'], function (UI5Element, litRender, Float, Integer, ResizeHandler, Device, sourceCode, Keys, Theme, SliderBase_css) { 'use strict';
|
|
2
2
|
|
|
3
3
|
function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e['default'] : e; }
|
|
4
4
|
|
|
@@ -82,6 +82,7 @@ sap.ui.define(['sap/ui/webc/common/thirdparty/base/UI5Element', 'sap/ui/webc/com
|
|
|
82
82
|
sap_belize: "#bfbfbf",
|
|
83
83
|
sap_belize_hcw: "#000000",
|
|
84
84
|
sap_belize_hcb: "#ffffff",
|
|
85
|
+
sap_horizon: "#89919a",
|
|
85
86
|
};
|
|
86
87
|
}
|
|
87
88
|
static get UP_EVENTS() {
|
|
@@ -123,6 +124,9 @@ sap.ui.define(['sap/ui/webc/common/thirdparty/base/UI5Element', 'sap/ui/webc/com
|
|
|
123
124
|
}
|
|
124
125
|
get classes() {
|
|
125
126
|
return {
|
|
127
|
+
root: {
|
|
128
|
+
"ui5-slider-root-phone": Device.isPhone(),
|
|
129
|
+
},
|
|
126
130
|
labelContainer: {
|
|
127
131
|
"ui5-slider-hidden-labels": this._labelsOverlapping,
|
|
128
132
|
},
|
|
@@ -211,9 +215,6 @@ sap.ui.define(['sap/ui/webc/common/thirdparty/base/UI5Element', 'sap/ui/webc/com
|
|
|
211
215
|
const directionStart = this.directionStart;
|
|
212
216
|
const step = this._effectiveStep;
|
|
213
217
|
const newValue = SliderBase.getValueFromInteraction(event, step, min, max, domRect, directionStart);
|
|
214
|
-
if (Device.isPhone() && this.showTooltip) {
|
|
215
|
-
this._tooltipVisibility = SliderBase.TOOLTIP_VISIBILITY.VISIBLE;
|
|
216
|
-
}
|
|
217
218
|
this._isUserInteraction = true;
|
|
218
219
|
this._moveEventType = !this._moveEventType ? SliderBase.MOVE_EVENT_MAP[event.type] : this._moveEventType;
|
|
219
220
|
SliderBase.UP_EVENTS.forEach(upEventType => window.addEventListener(upEventType, this._upHandler));
|
|
@@ -229,9 +230,6 @@ sap.ui.define(['sap/ui/webc/common/thirdparty/base/UI5Element', 'sap/ui/webc/com
|
|
|
229
230
|
}
|
|
230
231
|
}
|
|
231
232
|
handleUpBase(valueType) {
|
|
232
|
-
if (Device.isPhone() && this.showTooltip) {
|
|
233
|
-
this._tooltipVisibility = SliderBase.TOOLTIP_VISIBILITY.HIDDEN;
|
|
234
|
-
}
|
|
235
233
|
SliderBase.UP_EVENTS.forEach(upEventType => window.removeEventListener(upEventType, this._upHandler));
|
|
236
234
|
window.removeEventListener(this._moveEventType, this._moveHandler);
|
|
237
235
|
this._moveEventType = null;
|
|
@@ -332,8 +330,8 @@ sap.ui.define(['sap/ui/webc/common/thirdparty/base/UI5Element', 'sap/ui/webc/com
|
|
|
332
330
|
const maxStr = String(this._effectiveMax);
|
|
333
331
|
const minStr = String(this._effectiveMin);
|
|
334
332
|
const stepStr = String(this._effectiveStep);
|
|
335
|
-
const tickmarkWidth = "1px";
|
|
336
333
|
const currentTheme = Theme.getTheme();
|
|
334
|
+
const tickmarkWidth = "1px";
|
|
337
335
|
const currentColor = SliderBase.TICKMARK_COLOR_MAP[currentTheme];
|
|
338
336
|
this._tickmarksAmount = `${maxStr - minStr} / ${stepStr}`;
|
|
339
337
|
this._hiddenTickmarks = false;
|
|
@@ -366,7 +364,7 @@ sap.ui.define(['sap/ui/webc/common/thirdparty/base/UI5Element', 'sap/ui/webc/com
|
|
|
366
364
|
const currentValue = this[affectedValue];
|
|
367
365
|
const min = this._effectiveMin;
|
|
368
366
|
const max = this._effectiveMax;
|
|
369
|
-
let step = this._effectiveStep;
|
|
367
|
+
let step = this.effectiveDir === "rtl" ? -this._effectiveStep : this._effectiveStep;
|
|
370
368
|
step = isBigStep && ((max - min) / step > 10) ? (max - min) / 10 : step;
|
|
371
369
|
if (Keys.isEnd(event)) {
|
|
372
370
|
return max - currentValue;
|