@openui5/sap.ui.webc.main 1.94.0 → 1.97.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 +12 -12
- package/THIRDPARTY.txt +21 -17
- package/package.json +3 -3
- package/src/sap/ui/webc/main/.library +1 -1
- package/src/sap/ui/webc/main/Avatar.js +17 -27
- package/src/sap/ui/webc/main/AvatarGroup.js +4 -20
- package/src/sap/ui/webc/main/Badge.js +1 -1
- package/src/sap/ui/webc/main/Breadcrumbs.js +128 -0
- package/src/sap/ui/webc/main/BreadcrumbsItem.js +98 -0
- package/src/sap/ui/webc/main/BusyIndicator.js +9 -1
- package/src/sap/ui/webc/main/Button.js +14 -4
- package/src/sap/ui/webc/main/Calendar.js +15 -5
- package/src/sap/ui/webc/main/CalendarDate.js +1 -1
- package/src/sap/ui/webc/main/Card.js +20 -64
- package/src/sap/ui/webc/main/CardHeader.js +127 -0
- package/src/sap/ui/webc/main/Carousel.js +13 -25
- package/src/sap/ui/webc/main/CheckBox.js +14 -7
- package/src/sap/ui/webc/main/ColorPalette.js +7 -28
- package/src/sap/ui/webc/main/ColorPaletteItem.js +1 -1
- package/src/sap/ui/webc/main/ColorPalettePopover.js +112 -0
- package/src/sap/ui/webc/main/ColorPicker.js +6 -4
- package/src/sap/ui/webc/main/ComboBox.js +25 -20
- package/src/sap/ui/webc/main/ComboBoxGroupItem.js +58 -0
- package/src/sap/ui/webc/main/ComboBoxItem.js +1 -1
- package/src/sap/ui/webc/main/CustomListItem.js +4 -2
- package/src/sap/ui/webc/main/DatePicker.js +65 -7
- package/src/sap/ui/webc/main/DateRangePicker.js +68 -10
- package/src/sap/ui/webc/main/DateTimePicker.js +64 -8
- package/src/sap/ui/webc/main/Dialog.js +15 -12
- package/src/sap/ui/webc/main/FileUploader.js +2 -2
- package/src/sap/ui/webc/main/GroupHeaderListItem.js +1 -1
- package/src/sap/ui/webc/main/Icon.js +1 -1
- package/src/sap/ui/webc/main/Input.js +27 -29
- package/src/sap/ui/webc/main/Label.js +2 -2
- package/src/sap/ui/webc/main/Link.js +13 -3
- package/src/sap/ui/webc/main/List.js +38 -3
- package/src/sap/ui/webc/main/MessageStrip.js +5 -3
- package/src/sap/ui/webc/main/MultiComboBox.js +13 -9
- package/src/sap/ui/webc/main/MultiComboBoxItem.js +1 -1
- package/src/sap/ui/webc/main/MultiInput.js +30 -30
- package/src/sap/ui/webc/main/Option.js +1 -1
- package/src/sap/ui/webc/main/Panel.js +16 -5
- package/src/sap/ui/webc/main/Popover.js +21 -8
- package/src/sap/ui/webc/main/ProgressIndicator.js +14 -1
- package/src/sap/ui/webc/main/RadioButton.js +28 -21
- package/src/sap/ui/webc/main/RangeSlider.js +21 -19
- package/src/sap/ui/webc/main/RatingIndicator.js +15 -6
- package/src/sap/ui/webc/main/ResponsivePopover.js +22 -17
- package/src/sap/ui/webc/main/SegmentedButton.js +15 -15
- package/src/sap/ui/webc/main/SegmentedButtonItem.js +135 -0
- package/src/sap/ui/webc/main/Select.js +16 -1
- package/src/sap/ui/webc/main/Slider.js +26 -22
- package/src/sap/ui/webc/main/StandardListItem.js +4 -2
- package/src/sap/ui/webc/main/StepInput.js +19 -2
- package/src/sap/ui/webc/main/SuggestionGroupItem.js +58 -0
- package/src/sap/ui/webc/main/SuggestionItem.js +2 -12
- package/src/sap/ui/webc/main/Switch.js +8 -6
- package/src/sap/ui/webc/main/Tab.js +1 -1
- package/src/sap/ui/webc/main/TabContainer.js +1 -1
- package/src/sap/ui/webc/main/TabSeparator.js +1 -1
- package/src/sap/ui/webc/main/Table.js +12 -2
- package/src/sap/ui/webc/main/TableCell.js +1 -1
- package/src/sap/ui/webc/main/TableColumn.js +1 -1
- package/src/sap/ui/webc/main/TableGroupRow.js +69 -0
- package/src/sap/ui/webc/main/TableRow.js +5 -5
- package/src/sap/ui/webc/main/TextArea.js +26 -7
- package/src/sap/ui/webc/main/TimePicker.js +9 -5
- package/src/sap/ui/webc/main/Title.js +1 -1
- package/src/sap/ui/webc/main/Toast.js +1 -1
- package/src/sap/ui/webc/main/ToggleButton.js +14 -4
- package/src/sap/ui/webc/main/Token.js +5 -3
- package/src/sap/ui/webc/main/Tree.js +29 -1
- package/src/sap/ui/webc/main/TreeItem.js +1 -1
- package/src/sap/ui/webc/main/library.js +123 -33
- package/src/sap/ui/webc/main/thirdparty/Assets.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/Avatar.js +20 -26
- package/src/sap/ui/webc/main/thirdparty/AvatarGroup.js +21 -14
- package/src/sap/ui/webc/main/thirdparty/Badge.js +22 -11
- package/src/sap/ui/webc/main/thirdparty/Breadcrumbs.js +334 -0
- package/src/sap/ui/webc/main/thirdparty/BreadcrumbsItem.js +41 -0
- package/src/sap/ui/webc/main/thirdparty/BusyIndicator.js +32 -4
- package/src/sap/ui/webc/main/thirdparty/Button.js +5 -13
- package/src/sap/ui/webc/main/thirdparty/Calendar.js +85 -6
- package/src/sap/ui/webc/main/thirdparty/CalendarHeader.js +50 -17
- package/src/sap/ui/webc/main/thirdparty/Card.js +15 -118
- package/src/sap/ui/webc/main/thirdparty/CardHeader.js +146 -0
- package/src/sap/ui/webc/main/thirdparty/Carousel.js +97 -43
- package/src/sap/ui/webc/main/thirdparty/CheckBox.js +35 -34
- package/src/sap/ui/webc/main/thirdparty/ColorPalette.js +174 -22
- package/src/sap/ui/webc/main/thirdparty/ColorPaletteItem.js +14 -7
- package/src/sap/ui/webc/main/thirdparty/ColorPalettePopover.js +110 -0
- package/src/sap/ui/webc/main/thirdparty/ColorPicker.js +11 -7
- package/src/sap/ui/webc/main/thirdparty/ComboBox.js +215 -106
- package/src/sap/ui/webc/main/thirdparty/ComboBoxGroupItem.js +39 -0
- package/src/sap/ui/webc/main/thirdparty/DateComponentBase.js +5 -3
- package/src/sap/ui/webc/main/thirdparty/DatePicker.js +47 -17
- package/src/sap/ui/webc/main/thirdparty/DateRangePicker.js +17 -18
- package/src/sap/ui/webc/main/thirdparty/DateTimePicker.js +7 -7
- package/src/sap/ui/webc/main/thirdparty/DayPicker.js +31 -7
- package/src/sap/ui/webc/main/thirdparty/Dialog.js +126 -34
- package/src/sap/ui/webc/main/thirdparty/DurationPicker.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/FileUploader.js +15 -10
- package/src/sap/ui/webc/main/thirdparty/GroupHeaderListItem.js +5 -8
- package/src/sap/ui/webc/main/thirdparty/Icon.js +31 -12
- package/src/sap/ui/webc/main/thirdparty/Input.js +85 -43
- package/src/sap/ui/webc/main/thirdparty/Interfaces.js +4 -0
- package/src/sap/ui/webc/main/thirdparty/Link.js +46 -9
- package/src/sap/ui/webc/main/thirdparty/List.js +52 -16
- package/src/sap/ui/webc/main/thirdparty/ListItem.js +19 -8
- package/src/sap/ui/webc/main/thirdparty/MessageStrip.js +2 -3
- package/src/sap/ui/webc/main/thirdparty/MultiComboBox.js +193 -62
- package/src/sap/ui/webc/main/thirdparty/MultiInput.js +1 -2
- package/src/sap/ui/webc/main/thirdparty/Panel.js +9 -7
- package/src/sap/ui/webc/main/thirdparty/Popover.js +59 -38
- package/src/sap/ui/webc/main/thirdparty/Popup.js +47 -27
- package/src/sap/ui/webc/main/thirdparty/ProgressIndicator.js +8 -7
- package/src/sap/ui/webc/main/thirdparty/RadioButton.js +53 -23
- package/src/sap/ui/webc/main/thirdparty/RadioButtonGroup.js +31 -31
- package/src/sap/ui/webc/main/thirdparty/RangeSlider.js +6 -7
- package/src/sap/ui/webc/main/thirdparty/RatingIndicator.js +7 -8
- package/src/sap/ui/webc/main/thirdparty/ResponsivePopover.js +11 -26
- package/src/sap/ui/webc/main/thirdparty/SegmentedButton.js +66 -41
- package/src/sap/ui/webc/main/thirdparty/SegmentedButtonItem.js +39 -0
- package/src/sap/ui/webc/main/thirdparty/Select.js +103 -66
- package/src/sap/ui/webc/main/thirdparty/Slider.js +2 -3
- package/src/sap/ui/webc/main/thirdparty/SliderBase.js +4 -9
- package/src/sap/ui/webc/main/thirdparty/StepInput.js +12 -8
- package/src/sap/ui/webc/main/thirdparty/SuggestionGroupItem.js +36 -0
- package/src/sap/ui/webc/main/thirdparty/SuggestionItem.js +1 -5
- package/src/sap/ui/webc/main/thirdparty/SuggestionListItem.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/Switch.js +5 -6
- package/src/sap/ui/webc/main/thirdparty/Tab.js +12 -2
- package/src/sap/ui/webc/main/thirdparty/TabContainer.js +13 -6
- package/src/sap/ui/webc/main/thirdparty/Table.js +16 -7
- package/src/sap/ui/webc/main/thirdparty/TableGroupRow.js +88 -0
- package/src/sap/ui/webc/main/thirdparty/TableRow.js +11 -9
- package/src/sap/ui/webc/main/thirdparty/TextArea.js +14 -13
- package/src/sap/ui/webc/main/thirdparty/TimePicker.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/TimePickerBase.js +10 -7
- 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 +8 -1
- package/src/sap/ui/webc/main/thirdparty/Token.js +2 -6
- package/src/sap/ui/webc/main/thirdparty/Tokenizer.js +13 -15
- 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 +12 -15
- package/src/sap/ui/webc/main/thirdparty/WheelSlider.js +6 -6
- 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/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/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 +30 -17
- package/src/sap/ui/webc/main/thirdparty/generated/i18n/i18n-defaults.js +15 -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 +5 -14
- package/src/sap/ui/webc/main/thirdparty/generated/templates/AvatarTemplate.lit.js +8 -17
- package/src/sap/ui/webc/main/thirdparty/generated/templates/BadgeTemplate.lit.js +4 -14
- package/src/sap/ui/webc/main/thirdparty/generated/templates/BreadcrumbsPopoverTemplate.lit.js +8 -0
- package/src/sap/ui/webc/main/thirdparty/generated/templates/BreadcrumbsTemplate.lit.js +9 -0
- package/src/sap/ui/webc/main/thirdparty/generated/templates/BusyIndicatorTemplate.lit.js +6 -15
- package/src/sap/ui/webc/main/thirdparty/generated/templates/ButtonTemplate.lit.js +5 -14
- package/src/sap/ui/webc/main/thirdparty/generated/templates/CalendarHeaderTemplate.lit.js +5 -12
- package/src/sap/ui/webc/main/thirdparty/generated/templates/CalendarTemplate.lit.js +3 -12
- package/src/sap/ui/webc/main/thirdparty/generated/templates/CardHeaderTemplate.lit.js +12 -0
- package/src/sap/ui/webc/main/thirdparty/generated/templates/CardTemplate.lit.js +4 -18
- package/src/sap/ui/webc/main/thirdparty/generated/templates/CarouselTemplate.lit.js +12 -21
- package/src/sap/ui/webc/main/thirdparty/generated/templates/CheckBoxTemplate.lit.js +6 -15
- package/src/sap/ui/webc/main/thirdparty/generated/templates/ColorPaletteDialogTemplate.lit.js +3 -12
- package/src/sap/ui/webc/main/thirdparty/generated/templates/ColorPaletteItemTemplate.lit.js +3 -12
- 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 +8 -16
- package/src/sap/ui/webc/main/thirdparty/generated/templates/ColorPickerTemplate.lit.js +3 -12
- package/src/sap/ui/webc/main/thirdparty/generated/templates/ComboBoxPopoverTemplate.lit.js +19 -26
- package/src/sap/ui/webc/main/thirdparty/generated/templates/ComboBoxTemplate.lit.js +6 -15
- package/src/sap/ui/webc/main/thirdparty/generated/templates/CustomListItemTemplate.lit.js +12 -21
- package/src/sap/ui/webc/main/thirdparty/generated/templates/DatePickerPopoverTemplate.lit.js +6 -15
- package/src/sap/ui/webc/main/thirdparty/generated/templates/DatePickerTemplate.lit.js +5 -14
- package/src/sap/ui/webc/main/thirdparty/generated/templates/DateTimePickerPopoverTemplate.lit.js +8 -17
- package/src/sap/ui/webc/main/thirdparty/generated/templates/DayPickerTemplate.lit.js +12 -20
- package/src/sap/ui/webc/main/thirdparty/generated/templates/DialogTemplate.lit.js +8 -17
- package/src/sap/ui/webc/main/thirdparty/generated/templates/FileUploaderPopoverTemplate.lit.js +6 -15
- package/src/sap/ui/webc/main/thirdparty/generated/templates/FileUploaderTemplate.lit.js +6 -15
- package/src/sap/ui/webc/main/thirdparty/generated/templates/GroupHeaderListItemTemplate.lit.js +3 -12
- package/src/sap/ui/webc/main/thirdparty/generated/templates/IconTemplate.lit.js +5 -14
- package/src/sap/ui/webc/main/thirdparty/generated/templates/InputPopoverTemplate.lit.js +23 -32
- package/src/sap/ui/webc/main/thirdparty/generated/templates/InputTemplate.lit.js +7 -16
- package/src/sap/ui/webc/main/thirdparty/generated/templates/LabelTemplate.lit.js +3 -12
- package/src/sap/ui/webc/main/thirdparty/generated/templates/LinkTemplate.lit.js +4 -13
- package/src/sap/ui/webc/main/thirdparty/generated/templates/ListItemTemplate.lit.js +12 -21
- package/src/sap/ui/webc/main/thirdparty/generated/templates/ListTemplate.lit.js +13 -22
- package/src/sap/ui/webc/main/thirdparty/generated/templates/MessageStripTemplate.lit.js +7 -16
- package/src/sap/ui/webc/main/thirdparty/generated/templates/MonthPickerTemplate.lit.js +5 -14
- package/src/sap/ui/webc/main/thirdparty/generated/templates/MultiComboBoxPopoverTemplate.lit.js +22 -28
- package/src/sap/ui/webc/main/thirdparty/generated/templates/MultiComboBoxTemplate.lit.js +8 -17
- package/src/sap/ui/webc/main/thirdparty/generated/templates/MultiInputTemplate.lit.js +13 -22
- package/src/sap/ui/webc/main/thirdparty/generated/templates/PanelTemplate.lit.js +8 -17
- package/src/sap/ui/webc/main/thirdparty/generated/templates/PopoverTemplate.lit.js +8 -17
- package/src/sap/ui/webc/main/thirdparty/generated/templates/PopupBlockLayerTemplate.lit.js +3 -8
- package/src/sap/ui/webc/main/thirdparty/generated/templates/PopupTemplate.lit.js +3 -12
- package/src/sap/ui/webc/main/thirdparty/generated/templates/ProgressIndicatorTemplate.lit.js +13 -18
- package/src/sap/ui/webc/main/thirdparty/generated/templates/RadioButtonTemplate.lit.js +6 -15
- package/src/sap/ui/webc/main/thirdparty/generated/templates/RangeSliderTemplate.lit.js +9 -18
- package/src/sap/ui/webc/main/thirdparty/generated/templates/RatingIndicatorTemplate.lit.js +12 -19
- package/src/sap/ui/webc/main/thirdparty/generated/templates/ResponsivePopoverTemplate.lit.js +15 -23
- package/src/sap/ui/webc/main/thirdparty/generated/templates/SegmentedButtonItemTemplate.lit.js +8 -0
- package/src/sap/ui/webc/main/thirdparty/generated/templates/SegmentedButtonTemplate.lit.js +3 -12
- package/src/sap/ui/webc/main/thirdparty/generated/templates/SelectPopoverTemplate.lit.js +19 -28
- package/src/sap/ui/webc/main/thirdparty/generated/templates/SelectTemplate.lit.js +5 -14
- package/src/sap/ui/webc/main/thirdparty/generated/templates/SliderBaseTemplate.lit.js +7 -16
- package/src/sap/ui/webc/main/thirdparty/generated/templates/SliderTemplate.lit.js +8 -17
- package/src/sap/ui/webc/main/thirdparty/generated/templates/StandardListItemTemplate.lit.js +20 -29
- package/src/sap/ui/webc/main/thirdparty/generated/templates/StepInputTemplate.lit.js +4 -13
- package/src/sap/ui/webc/main/thirdparty/generated/templates/SuggestionListItemTemplate.lit.js +23 -32
- package/src/sap/ui/webc/main/thirdparty/generated/templates/SwitchTemplate.lit.js +5 -14
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TabContainerPopoverTemplate.lit.js +5 -14
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TabContainerTemplate.lit.js +15 -24
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TabInOverflowTemplate.lit.js +5 -14
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TabInStripTemplate.lit.js +7 -18
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TabSeparatorTemplate.lit.js +3 -12
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TabTemplate.lit.js +3 -12
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TableCellTemplate.lit.js +3 -8
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TableColumnTemplate.lit.js +3 -12
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TableGroupRowTemplate.lit.js +7 -0
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TableRowTemplate.lit.js +13 -22
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TableTemplate.lit.js +12 -21
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TextAreaPopoverTemplate.lit.js +7 -16
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TextAreaTemplate.lit.js +7 -16
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TimePickerPopoverTemplate.lit.js +3 -12
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TimePickerTemplate.lit.js +5 -14
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TimeSelectionTemplate.lit.js +7 -16
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TitleTemplate.lit.js +9 -18
- package/src/sap/ui/webc/main/thirdparty/generated/templates/ToastTemplate.lit.js +4 -12
- package/src/sap/ui/webc/main/thirdparty/generated/templates/ToggleButtonTemplate.lit.js +5 -14
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TokenTemplate.lit.js +6 -15
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TokenizerPopoverTemplate.lit.js +8 -17
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TokenizerTemplate.lit.js +5 -14
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TreeListItemTemplate.lit.js +17 -26
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TreeTemplate.lit.js +4 -13
- package/src/sap/ui/webc/main/thirdparty/generated/templates/WheelSliderTemplate.lit.js +6 -15
- package/src/sap/ui/webc/main/thirdparty/generated/templates/YearPickerTemplate.lit.js +5 -14
- 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 +13 -0
- package/src/sap/ui/webc/main/thirdparty/generated/themes/BreadcrumbsPopover.css.js +13 -0
- 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 +13 -0
- 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/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/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 +13 -0
- 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-23b6aec9.js → messagebundle_ar-f610ffe9.js} +15 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_bg-b642f80f.js → messagebundle_bg-e372ad7a.js} +15 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_ca-20fa76b6.js → messagebundle_ca-64403819.js} +15 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_cs-f636c9f4.js → messagebundle_cs-f5276d1f.js} +15 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_cy-668048df.js → messagebundle_cy-5b51959f.js} +15 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_da-ab0def1e.js → messagebundle_da-3f0c542a.js} +15 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_de-0bf4dd1a.js → messagebundle_de-ff52e292.js} +15 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_el-4962a11e.js → messagebundle_el-8a8f0e04.js} +15 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_en-d45f8908.js → messagebundle_en-39f79920.js} +15 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_en_GB-22be6c54.js → messagebundle_en_GB-9a6995bc.js} +15 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_en_US_sappsd-43f65212.js → messagebundle_en_US_sappsd-1cd6f946.js} +15 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_en_US_saprigi-12f3828e.js → messagebundle_en_US_saprigi-88214efb.js} +15 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_en_US_saptrc-e9d14fae.js → messagebundle_en_US_saptrc-d8b4cc37.js} +15 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_es-357e1c36.js → messagebundle_es-4e7804b3.js} +15 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_es_MX-8e0d2258.js → messagebundle_es_MX-5d55637e.js} +16 -2
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_et-5a1ea785.js → messagebundle_et-d019447e.js} +15 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_fi-25a76e5c.js → messagebundle_fi-115f5a0c.js} +15 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_fr-48f2bd02.js → messagebundle_fr-f4458a8c.js} +15 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_fr_CA-6e11af7d.js → messagebundle_fr_CA-d3ac2579.js} +15 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_hi-b8e55814.js → messagebundle_hi-3dbf5206.js} +15 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_hr-b2f08f08.js → messagebundle_hr-3112e358.js} +15 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_hu-81e9b34e.js → messagebundle_hu-90f77b24.js} +15 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_it-98262baf.js → messagebundle_it-4fd2c566.js} +15 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_iw-29c5b67e.js → messagebundle_iw-ff53b57b.js} +15 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_ja-16deb9b7.js → messagebundle_ja-050a69c3.js} +15 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_kk-bc7929b4.js → messagebundle_kk-597a9724.js} +15 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_ko-331e5063.js → messagebundle_ko-d840efd8.js} +15 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_lt-5708d85e.js → messagebundle_lt-d15c1526.js} +15 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_lv-ce9a2b90.js → messagebundle_lv-539ad33e.js} +15 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_ms-b991460e.js → messagebundle_ms-98b3e6dd.js} +15 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_nl-89ee9f6c.js → messagebundle_nl-5c52e887.js} +15 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_no-1db10706.js → messagebundle_no-04ee2aaf.js} +15 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_pl-49ee2166.js → messagebundle_pl-6da30702.js} +15 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_pt-e1f22029.js → messagebundle_pt-71f281c3.js} +15 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_pt_PT-19024d29.js → messagebundle_pt_PT-6d966418.js} +15 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_ro-9e2d0cd1.js → messagebundle_ro-e76a9c5d.js} +15 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_ru-9f439834.js → messagebundle_ru-dc34dd79.js} +15 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_sh-3fe24f0e.js → messagebundle_sh-f2171ee6.js} +15 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_sk-275cf4ec.js → messagebundle_sk-5c10a3c8.js} +15 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_sl-f774c011.js → messagebundle_sl-14cff3cf.js} +15 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_sv-716ad2e9.js → messagebundle_sv-44a9e5d4.js} +15 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_th-503e18e9.js → messagebundle_th-6cbca7a8.js} +15 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_tr-1db67daa.js → messagebundle_tr-00ce0f94.js} +15 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_uk-58f2adad.js → messagebundle_uk-bf2de1c7.js} +15 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_vi-f523cd98.js → messagebundle_vi-a0de6aa8.js} +15 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_zh_CN-761506cb.js → messagebundle_zh_CN-7cbf9197.js} +15 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_zh_TW-591c0661.js → messagebundle_zh_TW-53705d5b.js} +15 -1
- package/src/sap/ui/webc/main/thirdparty/parameters-bundle.css-0f28e359.js +13 -0
- package/src/sap/ui/webc/main/thirdparty/parameters-bundle.css-1ee56435.js +13 -0
- package/src/sap/ui/webc/main/thirdparty/parameters-bundle.css-4d4cd873.js +13 -0
- package/src/sap/ui/webc/main/thirdparty/parameters-bundle.css-5bdedee7.js +13 -0
- package/src/sap/ui/webc/main/thirdparty/parameters-bundle.css-60d672db.js +13 -0
- package/src/sap/ui/webc/main/thirdparty/parameters-bundle.css-793a420b.js +13 -0
- package/src/sap/ui/webc/main/thirdparty/parameters-bundle.css-7c549d8f.js +13 -0
- package/src/sap/ui/webc/main/thirdparty/parameters-bundle.css-7e5617d6.js +13 -0
- package/src/sap/ui/webc/main/thirdparty/parameters-bundle.css-e75a0bfb.js +13 -0
- package/src/sap/ui/webc/main/thirdparty/popup-utils/OpenedPopupsRegistry.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/popup-utils/PopoverRegistry.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/types/{AvatarFitType.js → BreadcrumbsDesign.js} +7 -7
- package/src/sap/ui/webc/main/thirdparty/types/BreadcrumbsSeparatorStyle.js +24 -0
- package/src/sap/ui/webc/main/thirdparty/types/ButtonDesign.js +1 -0
- package/ui5.yaml +1 -1
- package/src/sap/ui/webc/main/DurationPicker.js +0 -271
- package/src/sap/ui/webc/main/thirdparty/parameters-bundle.css-39cac16d.js +0 -9
- package/src/sap/ui/webc/main/thirdparty/parameters-bundle.css-4ca42a34.js +0 -9
- package/src/sap/ui/webc/main/thirdparty/parameters-bundle.css-6fc1faf3.js +0 -9
- package/src/sap/ui/webc/main/thirdparty/parameters-bundle.css-94dc708f.js +0 -9
- package/src/sap/ui/webc/main/thirdparty/parameters-bundle.css-cb1a26d8.js +0 -9
- package/src/sap/ui/webc/main/thirdparty/parameters-bundle.css-d2d877b5.js +0 -9
- package/src/sap/ui/webc/main/thirdparty/parameters-bundle.css-e914e4ca.js +0 -9
|
@@ -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/ValueState', 'sap/ui/webc/common/thirdparty/base/Device', 'sap/ui/webc/common/thirdparty/base/types/Integer', 'sap/ui/webc/common/thirdparty/base/util/AriaLabelHelper', 'sap/ui/webc/common/thirdparty/base/util/InvisibleMessage', 'sap/ui/webc/common/thirdparty/icons/slim-arrow-down', 'sap/ui/webc/common/thirdparty/icons/decline', 'sap/ui/webc/common/thirdparty/base/i18nBundle', 'sap/ui/webc/common/thirdparty/base/Keys', './ComboBoxFilters-f59100bd', './generated/i18n/i18n-defaults', './generated/templates/ComboBoxTemplate.lit', './generated/templates/ComboBoxPopoverTemplate.lit', './generated/themes/ComboBox.css', './generated/themes/ComboBoxPopover.css', './generated/themes/ResponsivePopoverCommon.css', './generated/themes/ValueStateMessage.css', './ComboBoxItem', './Icon', './Popover', './ResponsivePopover', './List', './BusyIndicator', './Button', './StandardListItem'], function (UI5Element, litRender, ValueState, Device, Integer, AriaLabelHelper, announce, slimArrowDown, decline, i18nBundle, Keys, ComboBoxFilters, i18nDefaults, ComboBoxTemplate_lit, ComboBoxPopoverTemplate_lit, ComboBox_css, ComboBoxPopover_css, ResponsivePopoverCommon_css, ValueStateMessage_css, ComboBoxItem, Icon, Popover, ResponsivePopover, List, BusyIndicator, Button, StandardListItem) { '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/ValueState', 'sap/ui/webc/common/thirdparty/base/Device', 'sap/ui/webc/common/thirdparty/base/types/Integer', 'sap/ui/webc/common/thirdparty/base/util/AriaLabelHelper', 'sap/ui/webc/common/thirdparty/base/util/InvisibleMessage', 'sap/ui/webc/common/thirdparty/icons/slim-arrow-down', 'sap/ui/webc/common/thirdparty/icons/decline', 'sap/ui/webc/common/thirdparty/base/i18nBundle', 'sap/ui/webc/common/thirdparty/base/Keys', './ComboBoxFilters-f59100bd', './generated/i18n/i18n-defaults', './generated/templates/ComboBoxTemplate.lit', './generated/templates/ComboBoxPopoverTemplate.lit', './generated/themes/ComboBox.css', './generated/themes/ComboBoxPopover.css', './generated/themes/ResponsivePopoverCommon.css', './generated/themes/ValueStateMessage.css', './generated/themes/Suggestions.css', './ComboBoxItem', './Icon', './Popover', './ResponsivePopover', './List', './BusyIndicator', './Button', './StandardListItem', './ComboBoxGroupItem'], function (UI5Element, litRender, ValueState, Device, Integer, AriaLabelHelper, announce, slimArrowDown, decline, i18nBundle, Keys, ComboBoxFilters, i18nDefaults, ComboBoxTemplate_lit, ComboBoxPopoverTemplate_lit, ComboBox_css, ComboBoxPopover_css, ResponsivePopoverCommon_css, ValueStateMessage_css, Suggestions_css, ComboBoxItem, Icon, Popover, ResponsivePopover, List, BusyIndicator, Button, StandardListItem, ComboBoxGroupItem) { 'use strict';
|
|
2
2
|
|
|
3
3
|
function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e['default'] : e; }
|
|
4
4
|
|
|
@@ -47,11 +47,14 @@ sap.ui.define(['sap/ui/webc/common/thirdparty/base/UI5Element', 'sap/ui/webc/com
|
|
|
47
47
|
focused: {
|
|
48
48
|
type: Boolean,
|
|
49
49
|
},
|
|
50
|
-
|
|
50
|
+
_isValueStateFocused: {
|
|
51
|
+
type: Boolean,
|
|
52
|
+
},
|
|
53
|
+
accessibleName: {
|
|
51
54
|
type: String,
|
|
52
55
|
defaultValue: undefined,
|
|
53
56
|
},
|
|
54
|
-
|
|
57
|
+
accessibleNameRef: {
|
|
55
58
|
type: String,
|
|
56
59
|
defaultValue: "",
|
|
57
60
|
},
|
|
@@ -59,10 +62,6 @@ sap.ui.define(['sap/ui/webc/common/thirdparty/base/UI5Element', 'sap/ui/webc/com
|
|
|
59
62
|
type: Boolean,
|
|
60
63
|
noAttribute: true,
|
|
61
64
|
},
|
|
62
|
-
_tempValue: {
|
|
63
|
-
type: String,
|
|
64
|
-
defaultValue: "",
|
|
65
|
-
},
|
|
66
65
|
_filteredItems: {
|
|
67
66
|
type: Object,
|
|
68
67
|
},
|
|
@@ -107,7 +106,7 @@ sap.ui.define(['sap/ui/webc/common/thirdparty/base/UI5Element', 'sap/ui/webc/com
|
|
|
107
106
|
return ComboBox_css;
|
|
108
107
|
}
|
|
109
108
|
static get staticAreaStyles() {
|
|
110
|
-
return [ResponsivePopoverCommon_css, ValueStateMessage_css, ComboBoxPopover_css];
|
|
109
|
+
return [ResponsivePopoverCommon_css, ValueStateMessage_css, ComboBoxPopover_css, Suggestions_css];
|
|
111
110
|
}
|
|
112
111
|
static get template() {
|
|
113
112
|
return ComboBoxTemplate_lit;
|
|
@@ -120,40 +119,17 @@ sap.ui.define(['sap/ui/webc/common/thirdparty/base/UI5Element', 'sap/ui/webc/com
|
|
|
120
119
|
this._filteredItems = [];
|
|
121
120
|
this._initialRendering = true;
|
|
122
121
|
this._itemFocused = false;
|
|
123
|
-
this._tempFilterValue = "";
|
|
124
122
|
this._selectionChanged = false;
|
|
125
|
-
this.i18nBundle = i18nBundle.getI18nBundle("@ui5/webcomponents");
|
|
126
123
|
}
|
|
127
124
|
onBeforeRendering() {
|
|
128
|
-
let domValue;
|
|
129
125
|
if (this._initialRendering) {
|
|
130
|
-
domValue = this.value;
|
|
131
126
|
this._filteredItems = this.items;
|
|
132
|
-
} else {
|
|
133
|
-
domValue = this.filterValue;
|
|
134
|
-
}
|
|
135
|
-
if (this._autocomplete && domValue !== "") {
|
|
136
|
-
const item = this._autoCompleteValue(domValue);
|
|
137
|
-
if (!this._selectionChanged && (item && !item.selected)) {
|
|
138
|
-
this.fireEvent("selection-change", {
|
|
139
|
-
item,
|
|
140
|
-
});
|
|
141
|
-
this._selectionChanged = false;
|
|
142
|
-
}
|
|
143
|
-
} else {
|
|
144
|
-
this._tempValue = domValue;
|
|
145
127
|
}
|
|
146
128
|
if (!this._initialRendering && this.popover && document.activeElement === this && !this._filteredItems.length) {
|
|
147
129
|
this.popover.close();
|
|
148
130
|
}
|
|
149
131
|
this._selectMatchingItem();
|
|
150
|
-
if (this._isKeyNavigation && this.responsivePopover && this.responsivePopover.opened) {
|
|
151
|
-
this.focused = false;
|
|
152
|
-
} else if (this.shadowRoot.activeElement) {
|
|
153
|
-
this.focused = this.shadowRoot.activeElement.id === "ui5-combobox-input";
|
|
154
|
-
}
|
|
155
132
|
this._initialRendering = false;
|
|
156
|
-
this._isKeyNavigation = false;
|
|
157
133
|
}
|
|
158
134
|
async onAfterRendering() {
|
|
159
135
|
await this._respPopover();
|
|
@@ -162,40 +138,52 @@ sap.ui.define(['sap/ui/webc/common/thirdparty/base/UI5Element', 'sap/ui/webc/com
|
|
|
162
138
|
}
|
|
163
139
|
if (this.shouldClosePopover() && !Device.isPhone()) {
|
|
164
140
|
this.responsivePopover.close(false, false, true);
|
|
141
|
+
this._clearFocus();
|
|
142
|
+
this._itemFocused = false;
|
|
165
143
|
}
|
|
166
|
-
this._itemFocused = false;
|
|
167
144
|
this.toggleValueStatePopover(this.shouldOpenValueStateMessagePopover);
|
|
168
145
|
this.storeResponsivePopoverWidth();
|
|
146
|
+
if (Device.isSafari() && this._autocomplete && this.filterValue !== this.value) {
|
|
147
|
+
this.inner.setSelectionRange(
|
|
148
|
+
(this._isKeyNavigation ? 0 : this.filterValue.length),
|
|
149
|
+
this.value.length,
|
|
150
|
+
);
|
|
151
|
+
}
|
|
169
152
|
}
|
|
170
153
|
shouldClosePopover() {
|
|
171
|
-
return this.responsivePopover.opened && !this.focused && !this._itemFocused;
|
|
154
|
+
return this.responsivePopover.opened && !this.focused && !this._itemFocused && !this._isValueStateFocused;
|
|
172
155
|
}
|
|
173
156
|
_focusin(event) {
|
|
174
157
|
this.focused = true;
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
}
|
|
158
|
+
this._lastValue = this.value;
|
|
159
|
+
this._autocomplete = false;
|
|
178
160
|
!Device.isPhone() && event.target.setSelectionRange(0, this.value.length);
|
|
179
161
|
}
|
|
180
|
-
_focusout() {
|
|
181
|
-
|
|
182
|
-
this.
|
|
183
|
-
|
|
162
|
+
_focusout(event) {
|
|
163
|
+
const focusedOutToValueStateMessage = event.relatedTarget && event.relatedTarget.shadowRoot && event.relatedTarget.shadowRoot.querySelector(".ui5-valuestatemessage-root");
|
|
164
|
+
this._fireChangeEvent();
|
|
165
|
+
if (focusedOutToValueStateMessage) {
|
|
166
|
+
event.stopImmediatePropagation();
|
|
167
|
+
return;
|
|
168
|
+
}
|
|
169
|
+
if (!this.shadowRoot.contains(event.relatedTarget)) {
|
|
170
|
+
this.focused = false;
|
|
171
|
+
!Device.isPhone() && this._closeRespPopover(event);
|
|
172
|
+
}
|
|
184
173
|
}
|
|
185
174
|
_afterOpenPopover() {
|
|
186
175
|
this._iconPressed = true;
|
|
187
|
-
if (Device.isPhone() && this.value) {
|
|
188
|
-
this.filterValue = this.value;
|
|
189
|
-
}
|
|
190
|
-
this._clearFocus();
|
|
191
176
|
}
|
|
192
177
|
_afterClosePopover() {
|
|
193
178
|
this._iconPressed = false;
|
|
194
179
|
this._filteredItems = this.items;
|
|
195
|
-
this._tempFilterValue = "";
|
|
196
180
|
if (Device.isPhone()) {
|
|
197
181
|
this.blur();
|
|
198
182
|
}
|
|
183
|
+
if (this._selectionPerformed) {
|
|
184
|
+
this._lastValue = this.value;
|
|
185
|
+
this._selectionPerformed = false;
|
|
186
|
+
}
|
|
199
187
|
}
|
|
200
188
|
_toggleRespPopover() {
|
|
201
189
|
if (this.responsivePopover.opened) {
|
|
@@ -218,7 +206,7 @@ sap.ui.define(['sap/ui/webc/common/thirdparty/base/UI5Element', 'sap/ui/webc/com
|
|
|
218
206
|
}
|
|
219
207
|
async openValueStatePopover() {
|
|
220
208
|
this.popover = await this._getPopover();
|
|
221
|
-
this.popover && this.popover.
|
|
209
|
+
this.popover && this.popover.showAt(this);
|
|
222
210
|
}
|
|
223
211
|
async closeValueStatePopover() {
|
|
224
212
|
this.popover = await this._getPopover();
|
|
@@ -241,16 +229,28 @@ sap.ui.define(['sap/ui/webc/common/thirdparty/base/UI5Element', 'sap/ui/webc/com
|
|
|
241
229
|
const { value } = event.target;
|
|
242
230
|
if (event.target === this.inner) {
|
|
243
231
|
event.stopImmediatePropagation();
|
|
232
|
+
this.focused = true;
|
|
233
|
+
this._isValueStateFocused = false;
|
|
244
234
|
}
|
|
245
|
-
this.
|
|
246
|
-
this.
|
|
235
|
+
this._filteredItems = this._filterItems(value);
|
|
236
|
+
this.value = value;
|
|
247
237
|
this.filterValue = value;
|
|
238
|
+
this._clearFocus();
|
|
239
|
+
if (this._autocomplete) {
|
|
240
|
+
const item = this._getFirstMatchingItem(value);
|
|
241
|
+
this._applyAtomicValueAndSelection(item, value, true);
|
|
242
|
+
if (value !== "" && !this._selectionChanged && (item && !item.selected && !item.isGroupItem)) {
|
|
243
|
+
this.fireEvent("selection-change", {
|
|
244
|
+
item,
|
|
245
|
+
});
|
|
246
|
+
this._selectionChanged = false;
|
|
247
|
+
}
|
|
248
|
+
}
|
|
248
249
|
this.fireEvent("input");
|
|
249
|
-
this._filteredItems = this._filterItems(value);
|
|
250
250
|
if (Device.isPhone()) {
|
|
251
251
|
return;
|
|
252
252
|
}
|
|
253
|
-
if (!this._filteredItems.length) {
|
|
253
|
+
if (!this._filteredItems.length || value === "") {
|
|
254
254
|
this._closeRespPopover();
|
|
255
255
|
} else {
|
|
256
256
|
this._openRespPopover();
|
|
@@ -265,50 +265,128 @@ sap.ui.define(['sap/ui/webc/common/thirdparty/base/UI5Element', 'sap/ui/webc/com
|
|
|
265
265
|
return item;
|
|
266
266
|
});
|
|
267
267
|
}
|
|
268
|
-
handleArrowKeyPress(event) {
|
|
268
|
+
async handleArrowKeyPress(event) {
|
|
269
269
|
if (this.readonly || !this._filteredItems.length) {
|
|
270
270
|
return;
|
|
271
271
|
}
|
|
272
|
+
const isOpen = this.open;
|
|
272
273
|
const isArrowDown = Keys.isDown(event);
|
|
273
274
|
const isArrowUp = Keys.isUp(event);
|
|
274
275
|
const currentItem = this._filteredItems.find(item => {
|
|
275
|
-
return
|
|
276
|
+
return isOpen ? item.focused : item.selected;
|
|
276
277
|
});
|
|
277
|
-
|
|
278
|
+
const indexOfItem = this._filteredItems.indexOf(currentItem);
|
|
278
279
|
event.preventDefault();
|
|
279
|
-
if ((
|
|
280
|
+
if ((this.focused === true && isArrowUp && isOpen) || (this._filteredItems.length - 1 === indexOfItem && isArrowDown)) {
|
|
281
|
+
return;
|
|
282
|
+
}
|
|
283
|
+
this._isKeyNavigation = true;
|
|
284
|
+
if (isArrowDown) {
|
|
285
|
+
this._handleArrowDown(event, indexOfItem);
|
|
286
|
+
}
|
|
287
|
+
if (isArrowUp) {
|
|
288
|
+
this._handleArrowUp(event, indexOfItem);
|
|
289
|
+
}
|
|
290
|
+
}
|
|
291
|
+
_handleItemNavigation(event, indexOfItem, isForward) {
|
|
292
|
+
const isOpen = this.open;
|
|
293
|
+
const currentItem = this._filteredItems[indexOfItem];
|
|
294
|
+
const nextItem = isForward ? this._filteredItems[indexOfItem + 1] : this._filteredItems[indexOfItem - 1];
|
|
295
|
+
const isGroupItem = currentItem && currentItem.isGroupItem;
|
|
296
|
+
if ((!isOpen) && ((isGroupItem && !nextItem) || (!isGroupItem && !currentItem))) {
|
|
280
297
|
return;
|
|
281
298
|
}
|
|
282
299
|
this._clearFocus();
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
this.
|
|
300
|
+
if (isOpen) {
|
|
301
|
+
this._itemFocused = true;
|
|
302
|
+
this.value = isGroupItem ? this.filterValue : currentItem.text;
|
|
303
|
+
this.focused = false;
|
|
304
|
+
currentItem.focused = true;
|
|
305
|
+
} else {
|
|
306
|
+
this.focused = true;
|
|
307
|
+
this.value = isGroupItem ? nextItem.text : currentItem.text;
|
|
308
|
+
currentItem.focused = false;
|
|
287
309
|
}
|
|
288
|
-
this.
|
|
289
|
-
this.filterValue = this._filteredItems[indexOfItem].text;
|
|
290
|
-
this._isKeyNavigation = true;
|
|
291
|
-
this._itemFocused = true;
|
|
292
|
-
this.fireEvent("input");
|
|
293
|
-
this.fireEvent("selection-change", {
|
|
294
|
-
item: this._filteredItems[indexOfItem],
|
|
295
|
-
});
|
|
310
|
+
this._isValueStateFocused = false;
|
|
296
311
|
this._selectionChanged = true;
|
|
312
|
+
if (isGroupItem && isOpen) {
|
|
313
|
+
return;
|
|
314
|
+
}
|
|
315
|
+
this._announceSelectedItem(indexOfItem);
|
|
316
|
+
const item = this._getFirstMatchingItem(this.value);
|
|
317
|
+
this._applyAtomicValueAndSelection(item, "", true);
|
|
318
|
+
if ((item && !item.selected)) {
|
|
319
|
+
this.fireEvent("selection-change", {
|
|
320
|
+
item,
|
|
321
|
+
});
|
|
322
|
+
}
|
|
323
|
+
this.fireEvent("input");
|
|
324
|
+
this._fireChangeEvent();
|
|
325
|
+
}
|
|
326
|
+
_handleArrowDown(event, indexOfItem) {
|
|
327
|
+
const isOpen = this.open;
|
|
328
|
+
if (this.focused && indexOfItem === -1 && this.hasValueStateText && isOpen) {
|
|
329
|
+
this._isValueStateFocused = true;
|
|
330
|
+
this.focused = false;
|
|
331
|
+
return;
|
|
332
|
+
}
|
|
333
|
+
indexOfItem = !isOpen && this.hasValueState && indexOfItem === -1 ? 0 : indexOfItem;
|
|
334
|
+
this._handleItemNavigation(event, ++indexOfItem, true );
|
|
335
|
+
}
|
|
336
|
+
_handleArrowUp(event, indexOfItem) {
|
|
337
|
+
const isOpen = this.open;
|
|
338
|
+
if (indexOfItem === 0 && !this.hasValueStateText) {
|
|
339
|
+
this._clearFocus();
|
|
340
|
+
this.focused = true;
|
|
341
|
+
this._itemFocused = false;
|
|
342
|
+
return;
|
|
343
|
+
}
|
|
344
|
+
if (indexOfItem === 0 && this.hasValueStateText && isOpen) {
|
|
345
|
+
this._clearFocus();
|
|
346
|
+
this._itemFocused = false;
|
|
347
|
+
this._isValueStateFocused = true;
|
|
348
|
+
this._filteredItems[0].selected = false;
|
|
349
|
+
return;
|
|
350
|
+
}
|
|
351
|
+
if (this._isValueStateFocused) {
|
|
352
|
+
this.focused = true;
|
|
353
|
+
this._isValueStateFocused = false;
|
|
354
|
+
return;
|
|
355
|
+
}
|
|
356
|
+
indexOfItem = !isOpen && this.hasValueState && indexOfItem === -1 ? 0 : indexOfItem;
|
|
357
|
+
this._handleItemNavigation(event, --indexOfItem, false );
|
|
297
358
|
}
|
|
298
359
|
_keydown(event) {
|
|
299
360
|
const isArrowKey = Keys.isDown(event) || Keys.isUp(event);
|
|
300
361
|
this._autocomplete = !(Keys.isBackSpace(event) || Keys.isDelete(event));
|
|
362
|
+
this._isKeyNavigation = false;
|
|
301
363
|
if (isArrowKey) {
|
|
302
364
|
this.handleArrowKeyPress(event);
|
|
303
365
|
}
|
|
304
366
|
if (Keys.isEnter(event)) {
|
|
305
|
-
this.
|
|
367
|
+
this._fireChangeEvent();
|
|
306
368
|
this._closeRespPopover();
|
|
369
|
+
this.focused = true;
|
|
370
|
+
}
|
|
371
|
+
if (Keys.isEscape(event)) {
|
|
372
|
+
this.focused = true;
|
|
373
|
+
this.value = !this.open ? this._lastValue : this.value;
|
|
374
|
+
this._isValueStateFocused = false;
|
|
307
375
|
}
|
|
308
376
|
if (Keys.isShow(event) && !this.readonly && !this.disabled) {
|
|
309
377
|
event.preventDefault();
|
|
310
378
|
this._resetFilter();
|
|
311
379
|
this._toggleRespPopover();
|
|
380
|
+
const selectedItem = this._filteredItems.find(item => {
|
|
381
|
+
return item.selected;
|
|
382
|
+
});
|
|
383
|
+
if (selectedItem && this.open) {
|
|
384
|
+
this._itemFocused = true;
|
|
385
|
+
selectedItem.focused = true;
|
|
386
|
+
this.focused = false;
|
|
387
|
+
} else {
|
|
388
|
+
this.focused = true;
|
|
389
|
+
}
|
|
312
390
|
}
|
|
313
391
|
}
|
|
314
392
|
_click(event) {
|
|
@@ -320,59 +398,81 @@ sap.ui.define(['sap/ui/webc/common/thirdparty/base/UI5Element', 'sap/ui/webc/com
|
|
|
320
398
|
if (Device.isPhone() && event && event.target.classList.contains("ui5-responsive-popover-close-btn") && this._selectedItemText) {
|
|
321
399
|
this.value = this._selectedItemText;
|
|
322
400
|
this.filterValue = this._selectedItemText;
|
|
323
|
-
this._tempValue = this._selectedItemText;
|
|
324
401
|
}
|
|
402
|
+
this._isValueStateFocused = false;
|
|
403
|
+
this._clearFocus();
|
|
325
404
|
this.responsivePopover.close();
|
|
326
405
|
}
|
|
327
406
|
_openRespPopover() {
|
|
328
|
-
this.responsivePopover.
|
|
407
|
+
this.responsivePopover.showAt(this);
|
|
329
408
|
}
|
|
330
409
|
_filterItems(str) {
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
410
|
+
const itemsToFilter = this.items.filter(item => !item.isGroupItem);
|
|
411
|
+
const filteredItems = (ComboBoxFilters.Filters[this.filter] || ComboBoxFilters.StartsWithPerTerm)(str, itemsToFilter);
|
|
412
|
+
return this.items.filter((item, idx, allItems) => ComboBox._groupItemFilter(item, ++idx, allItems, filteredItems) || filteredItems.indexOf(item) !== -1);
|
|
413
|
+
}
|
|
414
|
+
static _groupItemFilter(item, idx, allItems, filteredItems) {
|
|
415
|
+
if (item.isGroupItem) {
|
|
416
|
+
let groupHasFilteredItems;
|
|
417
|
+
while (allItems[idx] && !allItems[idx].isGroupItem && !groupHasFilteredItems) {
|
|
418
|
+
groupHasFilteredItems = filteredItems.indexOf(allItems[idx]) !== -1;
|
|
419
|
+
idx++;
|
|
420
|
+
}
|
|
421
|
+
return groupHasFilteredItems;
|
|
341
422
|
}
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
this.inner.setSelectionRange(0, this._tempValue.length);
|
|
349
|
-
}, 0);
|
|
423
|
+
}
|
|
424
|
+
_getFirstMatchingItem(current) {
|
|
425
|
+
const currentlyFocusedItem = this.items.find(item => item.focused === true);
|
|
426
|
+
if (currentlyFocusedItem && currentlyFocusedItem.isGroupItem) {
|
|
427
|
+
this.value = this.filterValue;
|
|
428
|
+
return;
|
|
350
429
|
}
|
|
430
|
+
const matchingItems = this._startsWithMatchingItems(current).filter(item => !item.isGroupItem);
|
|
351
431
|
if (matchingItems.length) {
|
|
352
432
|
return matchingItems[0];
|
|
353
433
|
}
|
|
354
434
|
}
|
|
435
|
+
_applyAtomicValueAndSelection(item, filterValue, highlightValue) {
|
|
436
|
+
if (!item) {
|
|
437
|
+
return;
|
|
438
|
+
}
|
|
439
|
+
const value = (item && item.text) || "";
|
|
440
|
+
this.inner.value = value;
|
|
441
|
+
if (highlightValue) {
|
|
442
|
+
this.inner.setSelectionRange(filterValue.length, value.length);
|
|
443
|
+
}
|
|
444
|
+
this.value = value;
|
|
445
|
+
}
|
|
355
446
|
_selectMatchingItem() {
|
|
447
|
+
const currentlyFocusedItem = this.items.find(item => item.focused);
|
|
448
|
+
const shouldSelectionBeCleared = currentlyFocusedItem && currentlyFocusedItem.isGroupItem;
|
|
356
449
|
this._filteredItems = this._filteredItems.map(item => {
|
|
357
|
-
item.selected = (item.text === this.
|
|
450
|
+
item.selected = !item.isGroupItem && (item.text === this.value) && !shouldSelectionBeCleared;
|
|
358
451
|
return item;
|
|
359
452
|
});
|
|
360
453
|
}
|
|
361
|
-
|
|
362
|
-
if (this.value !== this.
|
|
363
|
-
this.value = this._tempValue;
|
|
454
|
+
_fireChangeEvent() {
|
|
455
|
+
if (this.value !== this._lastValue) {
|
|
364
456
|
this.fireEvent("change");
|
|
365
|
-
this.
|
|
457
|
+
this._lastValue = this.value;
|
|
366
458
|
}
|
|
367
459
|
}
|
|
460
|
+
_inputChange(event) {
|
|
461
|
+
event.preventDefault();
|
|
462
|
+
}
|
|
368
463
|
_itemMousedown(event) {
|
|
369
464
|
event.preventDefault();
|
|
370
465
|
}
|
|
371
466
|
_selectItem(event) {
|
|
372
467
|
const listItem = event.detail.item;
|
|
373
|
-
this._tempValue = listItem.mappedItem.text;
|
|
374
468
|
this._selectedItemText = listItem.mappedItem.text;
|
|
375
|
-
this.
|
|
469
|
+
this._selectionPerformed = true;
|
|
470
|
+
const sameItemSelected = this.value === this._selectedItemText;
|
|
471
|
+
const sameSelectionPerformed = this.value.toLowerCase() === this.filterValue.toLowerCase();
|
|
472
|
+
if (sameItemSelected && sameSelectionPerformed) {
|
|
473
|
+
return this._closeRespPopover();
|
|
474
|
+
}
|
|
475
|
+
this.value = this._selectedItemText;
|
|
376
476
|
if (!listItem.mappedItem.selected) {
|
|
377
477
|
this.fireEvent("selection-change", {
|
|
378
478
|
item: listItem.mappedItem,
|
|
@@ -380,25 +480,26 @@ sap.ui.define(['sap/ui/webc/common/thirdparty/base/UI5Element', 'sap/ui/webc/com
|
|
|
380
480
|
this._selectionChanged = true;
|
|
381
481
|
}
|
|
382
482
|
this._filteredItems.map(item => {
|
|
383
|
-
item.selected = (item === listItem.mappedItem);
|
|
483
|
+
item.selected = (item === listItem.mappedItem && !item.isGroupItem);
|
|
384
484
|
return item;
|
|
385
485
|
});
|
|
386
|
-
this.
|
|
486
|
+
this._fireChangeEvent();
|
|
387
487
|
this._closeRespPopover();
|
|
488
|
+
this.inner.setSelectionRange(this.value.length, this.value.length);
|
|
388
489
|
}
|
|
389
490
|
_onItemFocus(event) {
|
|
390
491
|
this._itemFocused = true;
|
|
391
492
|
}
|
|
392
|
-
|
|
393
|
-
const itemPositionText =
|
|
394
|
-
const itemSelectionText =
|
|
493
|
+
_announceSelectedItem(indexOfItem) {
|
|
494
|
+
const itemPositionText = ComboBox.i18nBundle.getText(i18nDefaults.LIST_ITEM_POSITION, indexOfItem + 1, this._filteredItems.length);
|
|
495
|
+
const itemSelectionText = ComboBox.i18nBundle.getText(i18nDefaults.LIST_ITEM_SELECTED);
|
|
395
496
|
announce__default(`${itemPositionText} ${itemSelectionText}`, "Polite");
|
|
396
497
|
}
|
|
397
498
|
get _headerTitleText() {
|
|
398
|
-
return
|
|
499
|
+
return ComboBox.i18nBundle.getText(i18nDefaults.INPUT_SUGGESTIONS_TITLE);
|
|
399
500
|
}
|
|
400
501
|
get _iconAccessibleNameText() {
|
|
401
|
-
return
|
|
502
|
+
return ComboBox.i18nBundle.getText(i18nDefaults.SELECT_OPTIONS);
|
|
402
503
|
}
|
|
403
504
|
get inner() {
|
|
404
505
|
return Device.isPhone() ? this.responsivePopover.querySelector(".ui5-input-inner-phone") : this.shadowRoot.querySelector("[inner-input]");
|
|
@@ -428,10 +529,10 @@ sap.ui.define(['sap/ui/webc/common/thirdparty/base/UI5Element', 'sap/ui/webc/com
|
|
|
428
529
|
}
|
|
429
530
|
get valueStateTextMappings() {
|
|
430
531
|
return {
|
|
431
|
-
"Success":
|
|
432
|
-
"Error":
|
|
433
|
-
"Warning":
|
|
434
|
-
"Information":
|
|
532
|
+
"Success": ComboBox.i18nBundle.getText(i18nDefaults.VALUE_STATE_SUCCESS),
|
|
533
|
+
"Error": ComboBox.i18nBundle.getText(i18nDefaults.VALUE_STATE_ERROR),
|
|
534
|
+
"Warning": ComboBox.i18nBundle.getText(i18nDefaults.VALUE_STATE_WARNING),
|
|
535
|
+
"Information": ComboBox.i18nBundle.getText(i18nDefaults.VALUE_STATE_INFORMATION),
|
|
435
536
|
};
|
|
436
537
|
}
|
|
437
538
|
get shouldOpenValueStateMessagePopover() {
|
|
@@ -463,8 +564,12 @@ sap.ui.define(['sap/ui/webc/common/thirdparty/base/UI5Element', 'sap/ui/webc/com
|
|
|
463
564
|
Button,
|
|
464
565
|
StandardListItem,
|
|
465
566
|
Popover,
|
|
567
|
+
ComboBoxGroupItem,
|
|
466
568
|
];
|
|
467
569
|
}
|
|
570
|
+
static async onDefine() {
|
|
571
|
+
ComboBox.i18nBundle = await i18nBundle.getI18nBundle("@ui5/webcomponents");
|
|
572
|
+
}
|
|
468
573
|
get styles() {
|
|
469
574
|
return {
|
|
470
575
|
popoverHeader: {
|
|
@@ -473,13 +578,17 @@ sap.ui.define(['sap/ui/webc/common/thirdparty/base/UI5Element', 'sap/ui/webc/com
|
|
|
473
578
|
suggestionPopoverHeader: {
|
|
474
579
|
"display": this._listWidth === 0 ? "none" : "inline-block",
|
|
475
580
|
"width": `${this._listWidth}px`,
|
|
476
|
-
"padding": "0.9125rem 1rem",
|
|
477
581
|
},
|
|
478
582
|
};
|
|
479
583
|
}
|
|
480
584
|
get classes() {
|
|
481
585
|
return {
|
|
586
|
+
popover: {
|
|
587
|
+
"ui5-suggestions-popover": !this.isPhone,
|
|
588
|
+
"ui5-suggestions-popover-with-value-state-header": !this.isPhone && this.hasValueStateText,
|
|
589
|
+
},
|
|
482
590
|
popoverValueState: {
|
|
591
|
+
"ui5-valuestatemessage-header": true,
|
|
483
592
|
"ui5-valuestatemessage-root": true,
|
|
484
593
|
"ui5-valuestatemessage--success": this.valueState === ValueState__default.Success,
|
|
485
594
|
"ui5-valuestatemessage--error": this.valueState === ValueState__default.Error,
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
sap.ui.define(['sap/ui/webc/common/thirdparty/base/UI5Element', './GroupHeaderListItem'], function (UI5Element, GroupHeaderListItem) { 'use strict';
|
|
2
|
+
|
|
3
|
+
function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e['default'] : e; }
|
|
4
|
+
|
|
5
|
+
var UI5Element__default = /*#__PURE__*/_interopDefaultLegacy(UI5Element);
|
|
6
|
+
|
|
7
|
+
const metadata = {
|
|
8
|
+
tag: "ui5-cb-group-item",
|
|
9
|
+
properties: {
|
|
10
|
+
text: {
|
|
11
|
+
type: String,
|
|
12
|
+
},
|
|
13
|
+
focused: {
|
|
14
|
+
type: Boolean,
|
|
15
|
+
},
|
|
16
|
+
},
|
|
17
|
+
slots: {
|
|
18
|
+
},
|
|
19
|
+
events: {
|
|
20
|
+
},
|
|
21
|
+
};
|
|
22
|
+
class ComboBoxGroupItem extends UI5Element__default {
|
|
23
|
+
static get metadata() {
|
|
24
|
+
return metadata;
|
|
25
|
+
}
|
|
26
|
+
static get dependencies() {
|
|
27
|
+
return [
|
|
28
|
+
GroupHeaderListItem,
|
|
29
|
+
];
|
|
30
|
+
}
|
|
31
|
+
get isGroupItem() {
|
|
32
|
+
return true;
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
ComboBoxGroupItem.define();
|
|
36
|
+
|
|
37
|
+
return ComboBoxGroupItem;
|
|
38
|
+
|
|
39
|
+
});
|
|
@@ -16,6 +16,9 @@ sap.ui.define(['sap/ui/webc/common/thirdparty/base/UI5Element', 'sap/ui/webc/com
|
|
|
16
16
|
primaryCalendarType: {
|
|
17
17
|
type: CalendarType__default,
|
|
18
18
|
},
|
|
19
|
+
secondaryCalendarType: {
|
|
20
|
+
type: CalendarType__default,
|
|
21
|
+
},
|
|
19
22
|
minDate: {
|
|
20
23
|
type: String,
|
|
21
24
|
},
|
|
@@ -36,7 +39,6 @@ sap.ui.define(['sap/ui/webc/common/thirdparty/base/UI5Element', 'sap/ui/webc/com
|
|
|
36
39
|
}
|
|
37
40
|
constructor() {
|
|
38
41
|
super();
|
|
39
|
-
this.i18nBundle = i18nBundle.getI18nBundle("@ui5/webcomponents");
|
|
40
42
|
}
|
|
41
43
|
get _primaryCalendarType() {
|
|
42
44
|
const localeData = getCachedLocaleDataInstance__default(getLocale__default());
|
|
@@ -86,9 +88,9 @@ sap.ui.define(['sap/ui/webc/common/thirdparty/base/UI5Element', 'sap/ui/webc/com
|
|
|
86
88
|
return dateFormat;
|
|
87
89
|
}
|
|
88
90
|
static async onDefine() {
|
|
89
|
-
await Promise.all([
|
|
91
|
+
[DateComponentBase.i18nBundle] = await Promise.all([
|
|
92
|
+
i18nBundle.getI18nBundle("@ui5/webcomponents"),
|
|
90
93
|
LocaleData.fetchCldr(getLocale__default().getLanguage(), getLocale__default().getRegion(), getLocale__default().getScript()),
|
|
91
|
-
i18nBundle.fetchI18nBundle("@ui5/webcomponents"),
|
|
92
94
|
]);
|
|
93
95
|
}
|
|
94
96
|
}
|