@openui5/sap.ui.webc.main 1.115.1 → 1.116.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 +0 -5
- package/THIRDPARTY.txt +1 -7
- package/package.json +3 -3
- package/src/sap/ui/webc/main/.library +1 -1
- package/src/sap/ui/webc/main/Avatar.js +23 -3
- package/src/sap/ui/webc/main/AvatarGroup.js +1 -1
- package/src/sap/ui/webc/main/Badge.js +2 -2
- package/src/sap/ui/webc/main/Breadcrumbs.js +1 -1
- package/src/sap/ui/webc/main/BreadcrumbsItem.js +3 -3
- package/src/sap/ui/webc/main/BusyIndicator.js +1 -1
- package/src/sap/ui/webc/main/Button.js +4 -3
- package/src/sap/ui/webc/main/Calendar.js +6 -2
- package/src/sap/ui/webc/main/CalendarDate.js +2 -2
- package/src/sap/ui/webc/main/Card.js +3 -7
- package/src/sap/ui/webc/main/CardHeader.js +7 -2
- package/src/sap/ui/webc/main/Carousel.js +49 -4
- package/src/sap/ui/webc/main/CheckBox.js +14 -4
- package/src/sap/ui/webc/main/ColorPalette.js +1 -1
- package/src/sap/ui/webc/main/ColorPaletteItem.js +1 -1
- package/src/sap/ui/webc/main/ColorPalettePopover.js +1 -1
- package/src/sap/ui/webc/main/ColorPicker.js +1 -1
- package/src/sap/ui/webc/main/ComboBox.js +11 -8
- package/src/sap/ui/webc/main/ComboBoxGroupItem.js +1 -1
- package/src/sap/ui/webc/main/ComboBoxItem.js +1 -1
- package/src/sap/ui/webc/main/CustomListItem.js +19 -3
- package/src/sap/ui/webc/main/DatePicker.js +7 -2
- package/src/sap/ui/webc/main/DateRangePicker.js +9 -3
- package/src/sap/ui/webc/main/DateTimePicker.js +8 -3
- package/src/sap/ui/webc/main/Dialog.js +37 -6
- package/src/sap/ui/webc/main/FileUploader.js +1 -1
- package/src/sap/ui/webc/main/GroupHeaderListItem.js +1 -1
- package/src/sap/ui/webc/main/Icon.js +42 -2
- package/src/sap/ui/webc/main/Input.js +2 -2
- package/src/sap/ui/webc/main/Label.js +7 -3
- package/src/sap/ui/webc/main/Link.js +12 -2
- package/src/sap/ui/webc/main/List.js +2 -1
- package/src/sap/ui/webc/main/Menu.js +87 -3
- package/src/sap/ui/webc/main/MenuItem.js +34 -1
- package/src/sap/ui/webc/main/MessageStrip.js +1 -1
- package/src/sap/ui/webc/main/MultiComboBox.js +8 -7
- package/src/sap/ui/webc/main/MultiComboBoxGroupItem.js +1 -1
- package/src/sap/ui/webc/main/MultiComboBoxItem.js +1 -1
- package/src/sap/ui/webc/main/MultiInput.js +4 -4
- package/src/sap/ui/webc/main/Option.js +1 -1
- package/src/sap/ui/webc/main/Panel.js +3 -3
- package/src/sap/ui/webc/main/Popover.js +18 -4
- package/src/sap/ui/webc/main/ProgressIndicator.js +1 -1
- package/src/sap/ui/webc/main/RadioButton.js +17 -1
- package/src/sap/ui/webc/main/RangeSlider.js +12 -2
- package/src/sap/ui/webc/main/RatingIndicator.js +2 -2
- package/src/sap/ui/webc/main/ResponsivePopover.js +18 -4
- package/src/sap/ui/webc/main/SegmentedButton.js +40 -5
- package/src/sap/ui/webc/main/SegmentedButtonItem.js +4 -3
- package/src/sap/ui/webc/main/Select.js +20 -4
- package/src/sap/ui/webc/main/Slider.js +2 -2
- package/src/sap/ui/webc/main/SplitButton.js +7 -7
- package/src/sap/ui/webc/main/StandardListItem.js +31 -4
- package/src/sap/ui/webc/main/StepInput.js +2 -2
- package/src/sap/ui/webc/main/SuggestionGroupItem.js +1 -1
- package/src/sap/ui/webc/main/SuggestionItem.js +2 -2
- package/src/sap/ui/webc/main/Switch.js +2 -2
- package/src/sap/ui/webc/main/Tab.js +3 -3
- package/src/sap/ui/webc/main/TabContainer.js +40 -4
- package/src/sap/ui/webc/main/TabSeparator.js +10 -2
- package/src/sap/ui/webc/main/Table.js +2 -2
- package/src/sap/ui/webc/main/TableCell.js +1 -1
- package/src/sap/ui/webc/main/TableColumn.js +21 -1
- package/src/sap/ui/webc/main/TableGroupRow.js +1 -1
- package/src/sap/ui/webc/main/TableRow.js +9 -1
- package/src/sap/ui/webc/main/TextArea.js +2 -3
- package/src/sap/ui/webc/main/TimePicker.js +31 -3
- 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 +4 -3
- package/src/sap/ui/webc/main/Token.js +6 -4
- package/src/sap/ui/webc/main/Tree.js +31 -2
- package/src/sap/ui/webc/main/TreeItem.js +63 -10
- package/src/sap/ui/webc/main/TreeItemCustom.js +205 -0
- package/src/sap/ui/webc/main/changeHandler/ChangeLinkTarget.js +1 -1
- package/src/sap/ui/webc/main/library.js +348 -70
- package/src/sap/ui/webc/main/thirdparty/Avatar.js +130 -232
- package/src/sap/ui/webc/main/thirdparty/AvatarGroup.js +109 -184
- package/src/sap/ui/webc/main/thirdparty/Badge.js +40 -86
- package/src/sap/ui/webc/main/thirdparty/Breadcrumbs.js +152 -202
- package/src/sap/ui/webc/main/thirdparty/BreadcrumbsItem.js +27 -78
- package/src/sap/ui/webc/main/thirdparty/BusyIndicator.js +46 -115
- package/src/sap/ui/webc/main/thirdparty/Button.js +123 -287
- package/src/sap/ui/webc/main/thirdparty/Calendar.js +146 -197
- package/src/sap/ui/webc/main/thirdparty/CalendarDate.js +16 -26
- package/src/sap/ui/webc/main/thirdparty/CalendarHeader.js +78 -113
- package/src/sap/ui/webc/main/thirdparty/CalendarPart.js +16 -27
- package/src/sap/ui/webc/main/thirdparty/Card.js +43 -92
- package/src/sap/ui/webc/main/thirdparty/CardHeader.js +69 -129
- package/src/sap/ui/webc/main/thirdparty/Carousel.js +167 -229
- package/src/sap/ui/webc/main/thirdparty/CheckBox.js +103 -244
- package/src/sap/ui/webc/main/thirdparty/ColorPalette.js +122 -173
- package/src/sap/ui/webc/main/thirdparty/ColorPaletteItem.js +41 -77
- package/src/sap/ui/webc/main/thirdparty/ColorPalettePopover.js +62 -105
- package/src/sap/ui/webc/main/thirdparty/ColorPicker.js +138 -244
- package/src/sap/ui/webc/main/thirdparty/ComboBox.js +297 -419
- package/src/sap/ui/webc/main/thirdparty/ComboBoxGroupItem.js +20 -41
- package/src/sap/ui/webc/main/thirdparty/ComboBoxItem.js +30 -37
- package/src/sap/ui/webc/main/thirdparty/CustomListItem.js +33 -54
- package/src/sap/ui/webc/main/thirdparty/DateComponentBase.js +59 -76
- package/src/sap/ui/webc/main/thirdparty/DatePicker.js +207 -334
- package/src/sap/ui/webc/main/thirdparty/DateRangePicker.js +56 -72
- package/src/sap/ui/webc/main/thirdparty/DateTimePicker.js +63 -111
- package/src/sap/ui/webc/main/thirdparty/DayPicker.js +147 -212
- package/src/sap/ui/webc/main/thirdparty/Dialog.js +162 -183
- package/src/sap/ui/webc/main/thirdparty/FileUploader.js +101 -242
- package/src/sap/ui/webc/main/thirdparty/GroupHeaderListItem.js +25 -58
- package/src/sap/ui/webc/main/thirdparty/Icon.js +103 -193
- package/src/sap/ui/webc/main/thirdparty/Input.js +453 -717
- package/src/sap/ui/webc/main/thirdparty/Interfaces.js +51 -61
- package/src/sap/ui/webc/main/thirdparty/Label.js +49 -108
- package/src/sap/ui/webc/main/thirdparty/Link.js +104 -247
- package/src/sap/ui/webc/main/thirdparty/List.js +303 -468
- package/src/sap/ui/webc/main/thirdparty/ListItem.js +126 -166
- package/src/sap/ui/webc/main/thirdparty/ListItemBase.js +64 -104
- package/src/sap/ui/webc/main/thirdparty/Menu.js +264 -200
- package/src/sap/ui/webc/main/thirdparty/MenuItem.js +66 -117
- package/src/sap/ui/webc/main/thirdparty/MessageStrip.js +70 -141
- package/src/sap/ui/webc/main/thirdparty/MonthPicker.js +100 -103
- package/src/sap/ui/webc/main/thirdparty/MultiComboBox.js +381 -496
- package/src/sap/ui/webc/main/thirdparty/MultiComboBoxGroupItem.js +20 -34
- package/src/sap/ui/webc/main/thirdparty/MultiComboBoxItem.js +19 -26
- package/src/sap/ui/webc/main/thirdparty/MultiInput.js +127 -137
- package/src/sap/ui/webc/main/thirdparty/Option.js +40 -107
- package/src/sap/ui/webc/main/thirdparty/Panel.js +102 -214
- package/src/sap/ui/webc/main/thirdparty/Popover.js +141 -274
- package/src/sap/ui/webc/main/thirdparty/Popup.js +155 -250
- package/src/sap/ui/webc/main/thirdparty/ProgressIndicator.js +41 -109
- package/src/sap/ui/webc/main/thirdparty/RadioButton.js +111 -263
- package/src/sap/ui/webc/main/thirdparty/RadioButtonGroup.js +32 -13
- package/src/sap/ui/webc/main/thirdparty/RangeSlider.js +208 -208
- package/src/sap/ui/webc/main/thirdparty/RatingIndicator.js +79 -146
- package/src/sap/ui/webc/main/thirdparty/ResponsivePopover.js +70 -81
- package/src/sap/ui/webc/main/thirdparty/SegmentedButton.js +141 -126
- package/src/sap/ui/webc/main/thirdparty/SegmentedButtonItem.js +41 -73
- package/src/sap/ui/webc/main/thirdparty/Select.js +186 -285
- package/src/sap/ui/webc/main/thirdparty/Slider.js +84 -80
- package/src/sap/ui/webc/main/thirdparty/SliderBase.js +151 -326
- package/src/sap/ui/webc/main/thirdparty/SplitButton.js +111 -240
- package/src/sap/ui/webc/main/thirdparty/StandardListItem.js +50 -142
- package/src/sap/ui/webc/main/thirdparty/StepInput.js +137 -309
- package/src/sap/ui/webc/main/thirdparty/SuggestionGroupItem.js +22 -35
- package/src/sap/ui/webc/main/thirdparty/SuggestionItem.js +37 -114
- package/src/sap/ui/webc/main/thirdparty/SuggestionListItem.js +29 -37
- package/src/sap/ui/webc/main/thirdparty/Switch.js +63 -146
- package/src/sap/ui/webc/main/thirdparty/Tab.js +126 -168
- package/src/sap/ui/webc/main/thirdparty/TabContainer.js +344 -453
- package/src/sap/ui/webc/main/thirdparty/TabSeparator.js +35 -26
- package/src/sap/ui/webc/main/thirdparty/Table.js +319 -489
- package/src/sap/ui/webc/main/thirdparty/TableCell.js +41 -50
- package/src/sap/ui/webc/main/thirdparty/TableColumn.js +38 -88
- package/src/sap/ui/webc/main/thirdparty/TableGroupRow.js +50 -90
- package/src/sap/ui/webc/main/thirdparty/TableRow.js +137 -174
- package/src/sap/ui/webc/main/thirdparty/TextArea.js +162 -358
- package/src/sap/ui/webc/main/thirdparty/TimePicker.js +24 -52
- package/src/sap/ui/webc/main/thirdparty/TimePickerBase.js +116 -159
- package/src/sap/ui/webc/main/thirdparty/TimeSelection.js +121 -167
- package/src/sap/ui/webc/main/thirdparty/Title.js +38 -71
- package/src/sap/ui/webc/main/thirdparty/Toast.js +41 -110
- package/src/sap/ui/webc/main/thirdparty/ToggleButton.js +25 -39
- package/src/sap/ui/webc/main/thirdparty/Token.js +86 -143
- package/src/sap/ui/webc/main/thirdparty/Tokenizer.js +256 -202
- package/src/sap/ui/webc/main/thirdparty/Tree.js +227 -302
- package/src/sap/ui/webc/main/thirdparty/TreeItem.js +42 -156
- package/src/sap/ui/webc/main/thirdparty/TreeItemBase.js +256 -0
- package/src/sap/ui/webc/main/thirdparty/TreeItemCustom.js +80 -0
- package/src/sap/ui/webc/main/thirdparty/TreeList.js +51 -0
- package/src/sap/ui/webc/main/thirdparty/WheelSlider.js +75 -120
- package/src/sap/ui/webc/main/thirdparty/YearPicker.js +135 -124
- package/src/sap/ui/webc/main/thirdparty/css/themes/Avatar.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/AvatarGroup.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/Badge.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/Breadcrumbs.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/BreadcrumbsPopover.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/BrowserScrollbar.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/BusyIndicator.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/Button.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/Calendar.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/CalendarHeader.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/Card.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/CardHeader.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/Carousel.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/CheckBox.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/ColorPalette.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/ColorPaletteItem.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/ColorPalettePopover.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/ColorPaletteStaticArea.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/ColorPicker.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/ComboBox.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/ComboBoxPopover.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/CustomListItem.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/DatePicker.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/DatePickerPopover.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/DateRangePicker.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/DateTimePicker.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/DateTimePickerPopover.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/DayPicker.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/Dialog.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/FileUploader.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/FormComponents.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/GroupHeaderListItem.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/GrowingButton.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/Icon.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/Input.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/InputIcon.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/InvisibleTextStyles.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/Label.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/Link.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/List.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/ListItem.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/ListItemBase.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/Menu.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/MessageStrip.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/MonthPicker.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/MultiComboBox.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/MultiInput.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/Panel.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/Popover.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/Popup.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/PopupStaticAreaStyles.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/PopupsCommon.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/ProgressIndicator.css +3 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/RadioButton.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/RangeSlider.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/RatingIndicator.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/ResponsivePopover.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/ResponsivePopoverCommon.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/SegmentedButton.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/Select.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/SelectPopover.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/SliderBase.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/SplitButton.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/StepInput.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/Suggestions.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/Switch.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/Tab.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/TabContainer.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/TabInOverflow.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/TabInStrip.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/TabSemanticIcon.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/TabSeparatorInOverflow.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/TabSeparatorInStrip.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/Table.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/TableCell.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/TableColumn.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/TableGroupRow.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/TableRow.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/TextArea.css +2 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/TimePicker.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/TimePickerPopover.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/TimeSelection.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/Title.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/Toast.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/ToggleButton.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/Token.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/Tokenizer.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/Tree.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/TreeItem.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/ValueStateMessage.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/WheelSlider.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/YearPicker.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/sap_belize/parameters-bundle.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/sap_belize_hcb/parameters-bundle.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/sap_belize_hcw/parameters-bundle.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/sap_fiori_3/parameters-bundle.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/sap_fiori_3_dark/parameters-bundle.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/sap_fiori_3_hcb/parameters-bundle.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/sap_fiori_3_hcw/parameters-bundle.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/sap_horizon/parameters-bundle.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/sap_horizon_dark/parameters-bundle.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/sap_horizon_exp/parameters-bundle.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/sap_horizon_hcb/parameters-bundle.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/sap_horizon_hcw/parameters-bundle.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/custom-elements.json.js +1 -0
- package/src/sap/ui/webc/main/thirdparty/features/InputElementsFormSupport.js +25 -10
- package/src/sap/ui/webc/main/thirdparty/features/InputSuggestions.js +70 -72
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_ar.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_bg.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_ca.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_cs.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_cy.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_da.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_de.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_el.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_en.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_en_GB.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_en_US_sappsd.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_en_US_saprigi.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_en_US_saptrc.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_es.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_es_MX.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_et.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_fi.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_fr.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_fr_CA.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_hi.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_hr.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_hu.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_it.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_iw.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_ja.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_kk.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_ko.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_lt.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_lv.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_ms.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_nl.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_no.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_pl.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_pt.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_pt_PT.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_ro.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_ru.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_sh.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_sk.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_sl.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_sv.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_th.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_tr.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_uk.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_vi.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_zh_CN.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_zh_TW.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/themes/sap_belize/parameters-bundle.css.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/themes/sap_belize_hcb/parameters-bundle.css.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/themes/sap_belize_hcw/parameters-bundle.css.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/themes/sap_fiori_3/parameters-bundle.css.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/themes/sap_fiori_3_dark/parameters-bundle.css.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/themes/sap_fiori_3_hcb/parameters-bundle.css.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/themes/sap_fiori_3_hcw/parameters-bundle.css.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/themes/sap_horizon/parameters-bundle.css.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/themes/sap_horizon_dark/parameters-bundle.css.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/themes/sap_horizon_exp/parameters-bundle.css.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/themes/sap_horizon_hcb/parameters-bundle.css.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/themes/sap_horizon_hcw/parameters-bundle.css.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/i18n/i18n-defaults.js +108 -23
- package/src/sap/ui/webc/main/thirdparty/generated/templates/AvatarGroupTemplate.lit.js +9 -3
- package/src/sap/ui/webc/main/thirdparty/generated/templates/AvatarTemplate.lit.js +15 -6
- package/src/sap/ui/webc/main/thirdparty/generated/templates/BadgeTemplate.lit.js +6 -2
- package/src/sap/ui/webc/main/thirdparty/generated/templates/BreadcrumbsPopoverTemplate.lit.js +6 -2
- package/src/sap/ui/webc/main/thirdparty/generated/templates/BreadcrumbsTemplate.lit.js +9 -3
- package/src/sap/ui/webc/main/thirdparty/generated/templates/BusyIndicatorTemplate.lit.js +12 -4
- package/src/sap/ui/webc/main/thirdparty/generated/templates/ButtonTemplate.lit.js +9 -3
- package/src/sap/ui/webc/main/thirdparty/generated/templates/CalendarHeaderTemplate.lit.js +9 -3
- package/src/sap/ui/webc/main/thirdparty/generated/templates/CalendarTemplate.lit.js +3 -1
- package/src/sap/ui/webc/main/thirdparty/generated/templates/CardHeaderTemplate.lit.js +18 -6
- package/src/sap/ui/webc/main/thirdparty/generated/templates/CardTemplate.lit.js +6 -2
- package/src/sap/ui/webc/main/thirdparty/generated/templates/CarouselTemplate.lit.js +30 -10
- package/src/sap/ui/webc/main/thirdparty/generated/templates/CheckBoxTemplate.lit.js +12 -4
- package/src/sap/ui/webc/main/thirdparty/generated/templates/ColorPaletteDialogTemplate.lit.js +3 -1
- package/src/sap/ui/webc/main/thirdparty/generated/templates/ColorPaletteItemTemplate.lit.js +3 -1
- package/src/sap/ui/webc/main/thirdparty/generated/templates/ColorPalettePopoverTemplate.lit.js +6 -2
- package/src/sap/ui/webc/main/thirdparty/generated/templates/ColorPaletteTemplate.lit.js +18 -6
- package/src/sap/ui/webc/main/thirdparty/generated/templates/ColorPickerTemplate.lit.js +3 -1
- package/src/sap/ui/webc/main/thirdparty/generated/templates/ComboBoxPopoverTemplate.lit.js +57 -17
- package/src/sap/ui/webc/main/thirdparty/generated/templates/ComboBoxTemplate.lit.js +12 -4
- package/src/sap/ui/webc/main/thirdparty/generated/templates/CustomListItemTemplate.lit.js +48 -10
- package/src/sap/ui/webc/main/thirdparty/generated/templates/DatePickerPopoverTemplate.lit.js +12 -4
- package/src/sap/ui/webc/main/thirdparty/generated/templates/DatePickerTemplate.lit.js +9 -3
- package/src/sap/ui/webc/main/thirdparty/generated/templates/DateTimePickerPopoverTemplate.lit.js +18 -6
- package/src/sap/ui/webc/main/thirdparty/generated/templates/DayPickerTemplate.lit.js +30 -10
- package/src/sap/ui/webc/main/thirdparty/generated/templates/DialogTemplate.lit.js +36 -6
- package/src/sap/ui/webc/main/thirdparty/generated/templates/FileUploaderPopoverTemplate.lit.js +15 -5
- package/src/sap/ui/webc/main/thirdparty/generated/templates/FileUploaderTemplate.lit.js +12 -4
- package/src/sap/ui/webc/main/thirdparty/generated/templates/GroupHeaderListItemTemplate.lit.js +3 -1
- package/src/sap/ui/webc/main/thirdparty/generated/templates/IconTemplate.lit.js +16 -3
- package/src/sap/ui/webc/main/thirdparty/generated/templates/InputPopoverTemplate.lit.js +63 -21
- package/src/sap/ui/webc/main/thirdparty/generated/templates/InputTemplate.lit.js +18 -6
- package/src/sap/ui/webc/main/thirdparty/generated/templates/LabelTemplate.lit.js +3 -1
- package/src/sap/ui/webc/main/thirdparty/generated/templates/LinkTemplate.lit.js +6 -2
- package/src/sap/ui/webc/main/thirdparty/generated/templates/ListItemTemplate.lit.js +48 -10
- package/src/sap/ui/webc/main/thirdparty/generated/templates/ListTemplate.lit.js +27 -9
- package/src/sap/ui/webc/main/thirdparty/generated/templates/MenuTemplate.lit.js +33 -9
- package/src/sap/ui/webc/main/thirdparty/generated/templates/MessageStripTemplate.lit.js +15 -5
- package/src/sap/ui/webc/main/thirdparty/generated/templates/MonthPickerTemplate.lit.js +12 -3
- package/src/sap/ui/webc/main/thirdparty/generated/templates/MultiComboBoxPopoverTemplate.lit.js +72 -24
- package/src/sap/ui/webc/main/thirdparty/generated/templates/MultiComboBoxTemplate.lit.js +18 -6
- package/src/sap/ui/webc/main/thirdparty/generated/templates/MultiInputTemplate.lit.js +30 -10
- package/src/sap/ui/webc/main/thirdparty/generated/templates/PanelTemplate.lit.js +21 -6
- package/src/sap/ui/webc/main/thirdparty/generated/templates/PopoverTemplate.lit.js +18 -6
- package/src/sap/ui/webc/main/thirdparty/generated/templates/PopupBlockLayerTemplate.lit.js +3 -1
- package/src/sap/ui/webc/main/thirdparty/generated/templates/PopupTemplate.lit.js +3 -1
- package/src/sap/ui/webc/main/thirdparty/generated/templates/ProgressIndicatorTemplate.lit.js +33 -11
- package/src/sap/ui/webc/main/thirdparty/generated/templates/RadioButtonTemplate.lit.js +13 -4
- package/src/sap/ui/webc/main/thirdparty/generated/templates/RangeSliderTemplate.lit.js +30 -10
- package/src/sap/ui/webc/main/thirdparty/generated/templates/RatingIndicatorTemplate.lit.js +30 -10
- package/src/sap/ui/webc/main/thirdparty/generated/templates/ResponsivePopoverTemplate.lit.js +39 -13
- package/src/sap/ui/webc/main/thirdparty/generated/templates/SegmentedButtonItemTemplate.lit.js +6 -2
- package/src/sap/ui/webc/main/thirdparty/generated/templates/SegmentedButtonTemplate.lit.js +3 -1
- package/src/sap/ui/webc/main/thirdparty/generated/templates/SelectPopoverTemplate.lit.js +51 -17
- package/src/sap/ui/webc/main/thirdparty/generated/templates/SelectTemplate.lit.js +9 -3
- package/src/sap/ui/webc/main/thirdparty/generated/templates/SliderBaseTemplate.lit.js +24 -8
- package/src/sap/ui/webc/main/thirdparty/generated/templates/SliderTemplate.lit.js +27 -9
- package/src/sap/ui/webc/main/thirdparty/generated/templates/SplitButtonTemplate.lit.js +6 -1
- package/src/sap/ui/webc/main/thirdparty/generated/templates/StandardListItemTemplate.lit.js +78 -18
- package/src/sap/ui/webc/main/thirdparty/generated/templates/StepInputTemplate.lit.js +12 -4
- package/src/sap/ui/webc/main/thirdparty/generated/templates/SuggestionListItemTemplate.lit.js +87 -21
- package/src/sap/ui/webc/main/thirdparty/generated/templates/SwitchTemplate.lit.js +15 -5
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TabContainerPopoverTemplate.lit.js +6 -2
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TabContainerTemplate.lit.js +33 -10
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TabInOverflowTemplate.lit.js +18 -5
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TabInStripTemplate.lit.js +24 -8
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TabSeparatorInOverflowTemplate.lit.js +3 -1
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TabSeparatorInStripTemplate.lit.js +3 -1
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TabTemplate.lit.js +6 -2
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TableCellTemplate.lit.js +3 -1
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TableColumnTemplate.lit.js +3 -1
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TableGroupRowTemplate.lit.js +3 -1
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TableRowTemplate.lit.js +36 -9
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TableTemplate.lit.js +33 -10
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TextAreaPopoverTemplate.lit.js +15 -5
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TextAreaTemplate.lit.js +15 -5
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TimePickerPopoverTemplate.lit.js +3 -1
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TimePickerTemplate.lit.js +9 -3
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TimeSelectionTemplate.lit.js +15 -5
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TitleTemplate.lit.js +21 -7
- package/src/sap/ui/webc/main/thirdparty/generated/templates/ToastTemplate.lit.js +6 -2
- package/src/sap/ui/webc/main/thirdparty/generated/templates/ToggleButtonTemplate.lit.js +9 -3
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TokenTemplate.lit.js +12 -4
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TokenizerPopoverTemplate.lit.js +18 -6
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TokenizerTemplate.lit.js +9 -3
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TreeItemBaseTemplate.lit.js +72 -0
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TreeItemCustomTemplate.lit.js +72 -0
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TreeItemTemplate.lit.js +78 -0
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TreeTemplate.lit.js +6 -2
- package/src/sap/ui/webc/main/thirdparty/generated/templates/WheelSliderTemplate.lit.js +12 -4
- package/src/sap/ui/webc/main/thirdparty/generated/templates/YearPickerTemplate.lit.js +12 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Avatar.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/AvatarGroup.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Badge.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Breadcrumbs.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/BreadcrumbsPopover.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/BrowserScrollbar.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/BusyIndicator.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Button.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Calendar.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/CalendarHeader.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Card.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/CardHeader.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Carousel.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/CheckBox.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/ColorPalette.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/ColorPaletteItem.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/ColorPalettePopover.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/ColorPaletteStaticArea.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/ColorPicker.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/ComboBox.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/ComboBoxPopover.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/CustomListItem.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/DatePicker.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/DatePickerPopover.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/DateRangePicker.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/DateTimePicker.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/DateTimePickerPopover.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/DayPicker.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Dialog.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/FileUploader.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/FormComponents.css.js +20 -0
- package/src/sap/ui/webc/main/thirdparty/generated/themes/GroupHeaderListItem.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/GrowingButton.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Icon.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Input.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/InputIcon.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/InvisibleTextStyles.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Label.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Link.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/List.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/ListItem.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/ListItemBase.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Menu.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/MessageStrip.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/MonthPicker.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/MultiComboBox.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/MultiComboBoxPopover.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/MultiInput.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Panel.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Popover.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Popup.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/PopupGlobal.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/PopupStaticAreaStyles.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/PopupsCommon.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/ProgressIndicator.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/RadioButton.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/RangeSlider.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/RatingIndicator.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/ResponsivePopover.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/ResponsivePopoverCommon.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/SegmentedButton.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Select.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/SelectPopover.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/SliderBase.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/SplitButton.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/StepInput.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Suggestions.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Switch.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Tab.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/TabContainer.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/TabInOverflow.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/TabInStrip.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/TabSemanticIcon.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/TabSeparatorInOverflow.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/TabSeparatorInStrip.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Table.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/TableCell.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/TableColumn.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/TableGroupRow.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/TableRow.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/TapHighlightColor.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/TextArea.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/TimePicker.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/TimePickerPopover.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/TimeSelection.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Title.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Toast.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/ToggleButton.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Token.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Tokenizer.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/TokenizerPopover.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Tree.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/TreeItem.css.js +20 -0
- package/src/sap/ui/webc/main/thirdparty/generated/themes/ValueStateMessage.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/WheelSlider.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/YearPicker.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/sap_belize/parameters-bundle.css.js +3 -2
- package/src/sap/ui/webc/main/thirdparty/generated/themes/sap_belize_hcb/parameters-bundle.css.js +3 -2
- package/src/sap/ui/webc/main/thirdparty/generated/themes/sap_belize_hcw/parameters-bundle.css.js +3 -2
- package/src/sap/ui/webc/main/thirdparty/generated/themes/sap_fiori_3/parameters-bundle.css.js +3 -2
- package/src/sap/ui/webc/main/thirdparty/generated/themes/sap_fiori_3_dark/parameters-bundle.css.js +3 -2
- package/src/sap/ui/webc/main/thirdparty/generated/themes/sap_fiori_3_hcb/parameters-bundle.css.js +3 -2
- package/src/sap/ui/webc/main/thirdparty/generated/themes/sap_fiori_3_hcw/parameters-bundle.css.js +3 -2
- package/src/sap/ui/webc/main/thirdparty/generated/themes/sap_horizon/parameters-bundle.css.js +3 -2
- package/src/sap/ui/webc/main/thirdparty/generated/themes/sap_horizon_dark/parameters-bundle.css.js +3 -2
- package/src/sap/ui/webc/main/thirdparty/generated/themes/sap_horizon_exp/parameters-bundle.css.js +3 -2
- package/src/sap/ui/webc/main/thirdparty/generated/themes/sap_horizon_hcb/parameters-bundle.css.js +3 -2
- package/src/sap/ui/webc/main/thirdparty/generated/themes/sap_horizon_hcw/parameters-bundle.css.js +3 -2
- package/src/sap/ui/webc/main/thirdparty/popup-utils/OpenedPopupsRegistry.js +16 -1
- package/src/sap/ui/webc/main/thirdparty/popup-utils/PopoverRegistry.js +36 -21
- package/src/sap/ui/webc/main/thirdparty/timepicker-utils/TimeSlider.js +6 -3
- package/src/sap/ui/webc/main/thirdparty/types/AvatarColorScheme.js +21 -34
- package/src/sap/ui/webc/main/thirdparty/types/AvatarGroupType.js +13 -26
- package/src/sap/ui/webc/main/thirdparty/types/AvatarShape.js +11 -24
- package/src/sap/ui/webc/main/thirdparty/types/AvatarSize.js +19 -32
- package/src/sap/ui/webc/main/thirdparty/types/BackgroundDesign.js +40 -0
- package/src/sap/ui/webc/main/thirdparty/types/BorderDesign.js +34 -0
- package/src/sap/ui/webc/main/thirdparty/types/BreadcrumbsDesign.js +12 -24
- package/src/sap/ui/webc/main/thirdparty/types/BreadcrumbsSeparatorStyle.js +17 -29
- package/src/sap/ui/webc/main/thirdparty/types/BusyIndicatorSize.js +13 -25
- package/src/sap/ui/webc/main/thirdparty/types/ButtonDesign.js +16 -28
- package/src/sap/ui/webc/main/thirdparty/types/CalendarPickersMode.js +40 -0
- package/src/sap/ui/webc/main/thirdparty/types/CalendarSelectionMode.js +13 -25
- package/src/sap/ui/webc/main/thirdparty/types/CarouselArrowsPlacement.js +12 -24
- package/src/sap/ui/webc/main/thirdparty/types/CarouselPageIndicatorStyle.js +35 -0
- package/src/sap/ui/webc/main/thirdparty/types/ComboBoxFilter.js +46 -0
- package/src/sap/ui/webc/main/thirdparty/types/HasPopup.js +14 -27
- package/src/sap/ui/webc/main/thirdparty/types/IconDesign.js +70 -0
- package/src/sap/ui/webc/main/thirdparty/types/InputType.js +16 -28
- package/src/sap/ui/webc/main/thirdparty/types/LinkDesign.js +13 -25
- package/src/sap/ui/webc/main/thirdparty/types/ListGrowingMode.js +15 -27
- package/src/sap/ui/webc/main/thirdparty/types/ListItemType.js +19 -25
- package/src/sap/ui/webc/main/thirdparty/types/ListMode.js +17 -29
- package/src/sap/ui/webc/main/thirdparty/types/ListSeparators.js +14 -26
- package/src/sap/ui/webc/main/thirdparty/types/MessageStripDesign.js +14 -26
- package/src/sap/ui/webc/main/thirdparty/types/PanelAccessibleRole.js +19 -28
- package/src/sap/ui/webc/main/thirdparty/types/PopoverHorizontalAlign.js +18 -30
- package/src/sap/ui/webc/main/thirdparty/types/PopoverPlacementType.js +14 -26
- package/src/sap/ui/webc/main/thirdparty/types/PopoverVerticalAlign.js +14 -26
- package/src/sap/ui/webc/main/thirdparty/types/PopupAccessibleRole.js +40 -0
- package/src/sap/ui/webc/main/thirdparty/types/Priority.js +13 -26
- package/src/sap/ui/webc/main/thirdparty/types/SegmentedButtonMode.js +34 -0
- package/src/sap/ui/webc/main/thirdparty/types/SemanticColor.js +15 -27
- package/src/sap/ui/webc/main/thirdparty/types/SwitchDesign.js +12 -24
- package/src/sap/ui/webc/main/thirdparty/types/TabContainerBackgroundDesign.js +40 -0
- package/src/sap/ui/webc/main/thirdparty/types/TabContainerTabsPlacement.js +12 -24
- package/src/sap/ui/webc/main/thirdparty/types/TabLayout.js +14 -26
- package/src/sap/ui/webc/main/thirdparty/types/TableColumnPopinDisplay.js +34 -0
- package/src/sap/ui/webc/main/thirdparty/types/TableGrowingMode.js +17 -29
- package/src/sap/ui/webc/main/thirdparty/types/TableMode.js +13 -25
- package/src/sap/ui/webc/main/thirdparty/types/TableRowType.js +12 -24
- package/src/sap/ui/webc/main/thirdparty/types/TabsOverflowMode.js +12 -24
- package/src/sap/ui/webc/main/thirdparty/types/TitleLevel.js +16 -28
- package/src/sap/ui/webc/main/thirdparty/types/ToastPlacement.js +28 -40
- package/src/sap/ui/webc/main/thirdparty/types/WrappingType.js +11 -24
- package/ui5.yaml +15 -2
- package/src/sap/ui/webc/main/thirdparty/DurationPicker.js +0 -300
- package/src/sap/ui/webc/main/thirdparty/TreeListItem.js +0 -316
- package/src/sap/ui/webc/main/thirdparty/css/themes/TreeListItem.css +0 -1
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TreeListItemTemplate.lit.js +0 -27
- package/src/sap/ui/webc/main/thirdparty/generated/themes/TreeListItem.css.js +0 -19
- package/src/sap/ui/webc/main/thirdparty/types/GrowingMode.js +0 -53
@@ -1,4 +1,4 @@
|
|
1
|
-
sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/UI5Element", "sap/ui/webc/common/thirdparty/base/
|
1
|
+
sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/UI5Element", "sap/ui/webc/common/thirdparty/base/decorators/customElement", "sap/ui/webc/common/thirdparty/base/decorators/property", "sap/ui/webc/common/thirdparty/base/decorators/event", "sap/ui/webc/common/thirdparty/base/decorators/slot", "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/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/icons/error", "sap/ui/webc/common/thirdparty/icons/alert", "sap/ui/webc/common/thirdparty/icons/sys-enter-2", "sap/ui/webc/common/thirdparty/icons/information", "sap/ui/webc/common/thirdparty/base/Device", "sap/ui/webc/common/thirdparty/base/i18nBundle", "sap/ui/webc/common/thirdparty/icons/decline", "sap/ui/webc/common/thirdparty/base/types/Integer", "sap/ui/webc/common/thirdparty/base/types/InvisibleMessageMode", "./List", "./generated/i18n/i18n-defaults", "./Option", "./Label", "./ResponsivePopover", "./Popover", "./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 (_exports, _UI5Element, _customElement, _property, _event, _slot, _LitRenderer, _Keys, _InvisibleMessage, _FeaturesRegistry, _AriaLabelHelper, _ValueState, _slimArrowDown, _error, _alert, _sysEnter, _information, _Device, _i18nBundle, _decline, _Integer, _InvisibleMessageMode, _List, _i18nDefaults, _Option, _Label, _ResponsivePopover, _Popover, _StandardListItem, _Icon, _Button, _SelectTemplate, _SelectPopoverTemplate, _Select, _ResponsivePopoverCommon, _ValueStateMessage, _SelectPopover) {
|
2
2
|
"use strict";
|
3
3
|
|
4
4
|
Object.defineProperty(_exports, "__esModule", {
|
@@ -6,15 +6,20 @@ sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/UI5Element", "sap/
|
|
6
6
|
});
|
7
7
|
_exports.default = void 0;
|
8
8
|
_UI5Element = _interopRequireDefault(_UI5Element);
|
9
|
+
_customElement = _interopRequireDefault(_customElement);
|
10
|
+
_property = _interopRequireDefault(_property);
|
11
|
+
_event = _interopRequireDefault(_event);
|
12
|
+
_slot = _interopRequireDefault(_slot);
|
9
13
|
_LitRenderer = _interopRequireDefault(_LitRenderer);
|
10
14
|
_InvisibleMessage = _interopRequireDefault(_InvisibleMessage);
|
11
|
-
_Integer = _interopRequireDefault(_Integer);
|
12
15
|
_ValueState = _interopRequireDefault(_ValueState);
|
16
|
+
_Integer = _interopRequireDefault(_Integer);
|
17
|
+
_InvisibleMessageMode = _interopRequireDefault(_InvisibleMessageMode);
|
18
|
+
_List = _interopRequireDefault(_List);
|
13
19
|
_Option = _interopRequireDefault(_Option);
|
14
20
|
_Label = _interopRequireDefault(_Label);
|
15
21
|
_ResponsivePopover = _interopRequireDefault(_ResponsivePopover);
|
16
22
|
_Popover = _interopRequireDefault(_Popover);
|
17
|
-
_List = _interopRequireDefault(_List);
|
18
23
|
_StandardListItem = _interopRequireDefault(_StandardListItem);
|
19
24
|
_Icon = _interopRequireDefault(_Icon);
|
20
25
|
_Button = _interopRequireDefault(_Button);
|
@@ -25,192 +30,14 @@ sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/UI5Element", "sap/
|
|
25
30
|
_ValueStateMessage = _interopRequireDefault(_ValueStateMessage);
|
26
31
|
_SelectPopover = _interopRequireDefault(_SelectPopover);
|
27
32
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
*/
|
35
|
-
const metadata = {
|
36
|
-
tag: "ui5-select",
|
37
|
-
languageAware: true,
|
38
|
-
managedSlots: true,
|
39
|
-
slots: /** @lends sap.ui.webcomponents.main.Select.prototype */{
|
40
|
-
/**
|
41
|
-
* Defines the component options.
|
42
|
-
*
|
43
|
-
* <br><br>
|
44
|
-
* <b>Note:</b> Only one selected option is allowed.
|
45
|
-
* If more than one option is defined as selected, the last one would be considered as the selected one.
|
46
|
-
*
|
47
|
-
* <br><br>
|
48
|
-
* <b>Note:</b> Use the <code>ui5-option</code> component to define the desired options.
|
49
|
-
* @type {sap.ui.webcomponents.main.ISelectOption[]}
|
50
|
-
* @slot options
|
51
|
-
* @public
|
52
|
-
*/
|
53
|
-
"default": {
|
54
|
-
propertyName: "options",
|
55
|
-
type: HTMLElement,
|
56
|
-
invalidateOnChildChange: true
|
57
|
-
},
|
58
|
-
/**
|
59
|
-
* Defines the value state message that will be displayed as pop up under the component.
|
60
|
-
* <br><br>
|
61
|
-
*
|
62
|
-
* <b>Note:</b> If not specified, a default text (in the respective language) will be displayed.
|
63
|
-
* <br>
|
64
|
-
* <b>Note:</b> The <code>valueStateMessage</code> would be displayed,
|
65
|
-
* when the component is in <code>Information</code>, <code>Warning</code> or <code>Error</code> value state.
|
66
|
-
* @type {HTMLElement[]}
|
67
|
-
* @since 1.0.0-rc.9
|
68
|
-
* @slot
|
69
|
-
* @public
|
70
|
-
*/
|
71
|
-
valueStateMessage: {
|
72
|
-
type: HTMLElement
|
73
|
-
},
|
74
|
-
/**
|
75
|
-
* The slot is used to render native <code>input</code> HTML element within Light DOM to enable form submit,
|
76
|
-
* when <code>name</code> property is set.
|
77
|
-
* @type {HTMLElement[]}
|
78
|
-
* @slot
|
79
|
-
* @private
|
80
|
-
*/
|
81
|
-
formSupport: {
|
82
|
-
type: HTMLElement
|
83
|
-
}
|
84
|
-
},
|
85
|
-
properties: /** @lends sap.ui.webcomponents.main.Select.prototype */{
|
86
|
-
/**
|
87
|
-
* Defines whether the component is in disabled state.
|
88
|
-
* <br><br>
|
89
|
-
* <b>Note:</b> A disabled component is noninteractive.
|
90
|
-
*
|
91
|
-
* @type {boolean}
|
92
|
-
* @defaultvalue false
|
93
|
-
* @public
|
94
|
-
*/
|
95
|
-
disabled: {
|
96
|
-
type: Boolean
|
97
|
-
},
|
98
|
-
/**
|
99
|
-
* Determines the name with which the component will be submitted in an HTML form.
|
100
|
-
* The value of the component will be the value of the currently selected <code>ui5-option</code>.
|
101
|
-
*
|
102
|
-
* <br><br>
|
103
|
-
* <b>Important:</b> For the <code>name</code> property to have effect, you must add the following import to your project:
|
104
|
-
* <code>import "@ui5/webcomponents/dist/features/InputElementsFormSupport.js";</code>
|
105
|
-
*
|
106
|
-
* <br><br>
|
107
|
-
* <b>Note:</b> When set, a native <code>input</code> HTML element
|
108
|
-
* will be created inside the <code>ui5-select</code> so that it can be submitted as
|
109
|
-
* part of an HTML form. Do not use this property unless you need to submit a form.
|
110
|
-
*
|
111
|
-
* @type {string}
|
112
|
-
* @defaultvalue ""
|
113
|
-
* @public
|
114
|
-
*/
|
115
|
-
name: {
|
116
|
-
type: String
|
117
|
-
},
|
118
|
-
/**
|
119
|
-
* Defines the value state of the component.
|
120
|
-
* <br><br>
|
121
|
-
* Available options are:
|
122
|
-
* <ul>
|
123
|
-
* <li><code>None</code></li>
|
124
|
-
* <li><code>Error</code></li>
|
125
|
-
* <li><code>Warning</code></li>
|
126
|
-
* <li><code>Success</code></li>
|
127
|
-
* <li><code>Information</code></li>
|
128
|
-
* </ul>
|
129
|
-
*
|
130
|
-
* @type {ValueState}
|
131
|
-
* @defaultvalue "None"
|
132
|
-
* @public
|
133
|
-
*/
|
134
|
-
valueState: {
|
135
|
-
type: _ValueState.default,
|
136
|
-
defaultValue: _ValueState.default.None
|
137
|
-
},
|
138
|
-
/**
|
139
|
-
* Defines whether the component is required.
|
140
|
-
*
|
141
|
-
* @since 1.0.0-rc.9
|
142
|
-
* @type {boolean}
|
143
|
-
* @defaultvalue false
|
144
|
-
* @public
|
145
|
-
*/
|
146
|
-
required: {
|
147
|
-
type: Boolean
|
148
|
-
},
|
149
|
-
/**
|
150
|
-
* Defines the accessible aria name of the component.
|
151
|
-
*
|
152
|
-
* @type {string}
|
153
|
-
* @since 1.0.0-rc.9
|
154
|
-
* @public
|
155
|
-
* @since 1.0.0-rc.15
|
156
|
-
*/
|
157
|
-
accessibleName: {
|
158
|
-
type: String
|
159
|
-
},
|
160
|
-
/**
|
161
|
-
* Receives id(or many ids) of the elements that label the select.
|
162
|
-
*
|
163
|
-
* @type {string}
|
164
|
-
* @defaultvalue ""
|
165
|
-
* @public
|
166
|
-
* @since 1.0.0-rc.15
|
167
|
-
*/
|
168
|
-
accessibleNameRef: {
|
169
|
-
type: String,
|
170
|
-
defaultValue: ""
|
171
|
-
},
|
172
|
-
_text: {
|
173
|
-
type: String,
|
174
|
-
noAttribute: true
|
175
|
-
},
|
176
|
-
_iconPressed: {
|
177
|
-
type: Boolean,
|
178
|
-
noAttribute: true
|
179
|
-
},
|
180
|
-
/**
|
181
|
-
* @private
|
182
|
-
*/
|
183
|
-
opened: {
|
184
|
-
type: Boolean
|
185
|
-
},
|
186
|
-
_listWidth: {
|
187
|
-
type: _Integer.default,
|
188
|
-
defaultValue: 0,
|
189
|
-
noAttribute: true
|
190
|
-
},
|
191
|
-
/**
|
192
|
-
* @private
|
193
|
-
*/
|
194
|
-
focused: {
|
195
|
-
type: Boolean
|
196
|
-
}
|
197
|
-
},
|
198
|
-
events: /** @lends sap.ui.webcomponents.main.Select.prototype */{
|
199
|
-
/**
|
200
|
-
* Fired when the selected option changes.
|
201
|
-
*
|
202
|
-
* @event
|
203
|
-
* @param {HTMLElement} selectedOption the selected option.
|
204
|
-
* @public
|
205
|
-
*/
|
206
|
-
change: {
|
207
|
-
detail: {
|
208
|
-
selectedOption: {}
|
209
|
-
}
|
210
|
-
}
|
211
|
-
}
|
33
|
+
var __decorate = void 0 && (void 0).__decorate || function (decorators, target, key, desc) {
|
34
|
+
var c = arguments.length,
|
35
|
+
r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc,
|
36
|
+
d;
|
37
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
38
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
212
39
|
};
|
213
|
-
|
40
|
+
var Select_1;
|
214
41
|
/**
|
215
42
|
* @class
|
216
43
|
*
|
@@ -237,32 +64,14 @@ sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/UI5Element", "sap/
|
|
237
64
|
* <code>import "@ui5/webcomponents/dist/Option";</code> (comes with <code>ui5-select</code>)
|
238
65
|
* @constructor
|
239
66
|
* @author SAP SE
|
240
|
-
* @alias sap.ui.
|
241
|
-
* @extends sap.ui.
|
67
|
+
* @alias sap.ui.webc.main.Select
|
68
|
+
* @extends sap.ui.webc.base.UI5Element
|
242
69
|
* @tagname ui5-select
|
243
|
-
* @appenddocs Option
|
70
|
+
* @appenddocs sap.ui.webc.main.Option
|
244
71
|
* @public
|
245
72
|
* @since 0.8.0
|
246
73
|
*/
|
247
|
-
class Select extends _UI5Element.default {
|
248
|
-
static get metadata() {
|
249
|
-
return metadata;
|
250
|
-
}
|
251
|
-
static get render() {
|
252
|
-
return _LitRenderer.default;
|
253
|
-
}
|
254
|
-
static get template() {
|
255
|
-
return _SelectTemplate.default;
|
256
|
-
}
|
257
|
-
static get staticAreaTemplate() {
|
258
|
-
return _SelectPopoverTemplate.default;
|
259
|
-
}
|
260
|
-
static get styles() {
|
261
|
-
return _Select.default;
|
262
|
-
}
|
263
|
-
static get staticAreaStyles() {
|
264
|
-
return [_ResponsivePopoverCommon.default, _ValueStateMessage.default, _SelectPopover.default];
|
265
|
-
}
|
74
|
+
let Select = Select_1 = class Select extends _UI5Element.default {
|
266
75
|
constructor() {
|
267
76
|
super();
|
268
77
|
this._syncedOptions = [];
|
@@ -271,11 +80,11 @@ sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/UI5Element", "sap/
|
|
271
80
|
this._escapePressed = false;
|
272
81
|
this._lastSelectedOption = null;
|
273
82
|
this._typedChars = "";
|
274
|
-
this._typingTimeoutID = -1;
|
275
83
|
}
|
276
84
|
onBeforeRendering() {
|
277
85
|
this._syncSelection();
|
278
86
|
this._enableFormSupport();
|
87
|
+
this.style.setProperty("--_ui5-input-icons-count", `${this.iconsCount}`);
|
279
88
|
}
|
280
89
|
onAfterRendering() {
|
281
90
|
this.toggleValueStatePopover(this.shouldOpenValueStateMessagePopover);
|
@@ -299,11 +108,11 @@ sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/UI5Element", "sap/
|
|
299
108
|
const staticAreaItem = await this.getStaticAreaItemDomRef();
|
300
109
|
return staticAreaItem.querySelector("[ui5-responsive-popover]");
|
301
110
|
}
|
302
|
-
|
303
111
|
/**
|
304
|
-
* Currently selected option.
|
112
|
+
* Currently selected <code>ui5-option</code> element.
|
305
113
|
* @readonly
|
306
|
-
* @type {
|
114
|
+
* @type {sap.ui.webc.main.ISelectOption}
|
115
|
+
* @name sap.ui.webc.main.Select.prototype.selectedOption
|
307
116
|
* @public
|
308
117
|
*/
|
309
118
|
get selectedOption() {
|
@@ -353,7 +162,7 @@ sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/UI5Element", "sap/
|
|
353
162
|
stableDomRef: opt.stableDomRef
|
354
163
|
};
|
355
164
|
});
|
356
|
-
if (lastSelectedOptionIndex > -1
|
165
|
+
if (lastSelectedOptionIndex > -1) {
|
357
166
|
syncOpts[lastSelectedOptionIndex].selected = true;
|
358
167
|
syncOpts[lastSelectedOptionIndex]._focused = true;
|
359
168
|
options[lastSelectedOptionIndex].selected = true;
|
@@ -375,50 +184,49 @@ sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/UI5Element", "sap/
|
|
375
184
|
this._syncedOptions = syncOpts;
|
376
185
|
}
|
377
186
|
_enableFormSupport() {
|
378
|
-
const
|
379
|
-
if (
|
380
|
-
|
381
|
-
|
382
|
-
nativeInput.
|
187
|
+
const formSupport = (0, _FeaturesRegistry.getFeature)("FormSupport");
|
188
|
+
if (formSupport) {
|
189
|
+
formSupport.syncNativeHiddenInput(this, (element, nativeInput) => {
|
190
|
+
const selectElement = element;
|
191
|
+
nativeInput.disabled = !!element.disabled;
|
192
|
+
nativeInput.value = selectElement._currentlySelectedOption ? selectElement._currentlySelectedOption.value : "";
|
383
193
|
});
|
384
194
|
} else if (this.name) {
|
385
195
|
console.warn(`In order for the "name" property to have effect, you should also: import "@ui5/webcomponents/dist/features/InputElementsFormSupport.js";`); // eslint-disable-line
|
386
196
|
}
|
387
197
|
}
|
388
198
|
|
389
|
-
_onkeydown(
|
390
|
-
const isTab = (0, _Keys.isTabNext)(
|
199
|
+
_onkeydown(e) {
|
200
|
+
const isTab = (0, _Keys.isTabNext)(e) || (0, _Keys.isTabPrevious)(e);
|
391
201
|
if (isTab && this.responsivePopover && this.responsivePopover.opened) {
|
392
202
|
this.responsivePopover.close();
|
393
203
|
}
|
394
|
-
if ((0, _Keys.isShow)(
|
395
|
-
|
204
|
+
if ((0, _Keys.isShow)(e)) {
|
205
|
+
e.preventDefault();
|
396
206
|
this._toggleRespPopover();
|
397
|
-
} else if ((0, _Keys.isSpace)(
|
398
|
-
|
399
|
-
} else if ((0, _Keys.isEscape)(
|
207
|
+
} else if ((0, _Keys.isSpace)(e)) {
|
208
|
+
e.preventDefault();
|
209
|
+
} else if ((0, _Keys.isEscape)(e) && this._isPickerOpen) {
|
400
210
|
this._escapePressed = true;
|
401
|
-
} else if ((0, _Keys.isHome)(
|
402
|
-
this._handleHomeKey(
|
403
|
-
} else if ((0, _Keys.isEnd)(
|
404
|
-
this._handleEndKey(
|
405
|
-
} else if ((0, _Keys.isEnter)(
|
211
|
+
} else if ((0, _Keys.isHome)(e)) {
|
212
|
+
this._handleHomeKey(e);
|
213
|
+
} else if ((0, _Keys.isEnd)(e)) {
|
214
|
+
this._handleEndKey(e);
|
215
|
+
} else if ((0, _Keys.isEnter)(e)) {
|
406
216
|
this._handleSelectionChange();
|
407
|
-
} else if ((0, _Keys.isUp)(
|
408
|
-
this._handleArrowNavigation(
|
217
|
+
} else if ((0, _Keys.isUp)(e) || (0, _Keys.isDown)(e)) {
|
218
|
+
this._handleArrowNavigation(e);
|
409
219
|
}
|
410
220
|
}
|
411
|
-
_handleKeyboardNavigation(
|
412
|
-
if ((0, _Keys.isEnter)(
|
221
|
+
_handleKeyboardNavigation(e) {
|
222
|
+
if ((0, _Keys.isEnter)(e)) {
|
413
223
|
return;
|
414
224
|
}
|
415
|
-
const typedCharacter =
|
225
|
+
const typedCharacter = e.key.toLowerCase();
|
416
226
|
this._typedChars += typedCharacter;
|
417
|
-
|
418
227
|
// We check if we have more than one characters and they are all duplicate, we set the
|
419
228
|
// text to be the last input character (typedCharacter). If not, we set the text to be
|
420
229
|
// the whole input string.
|
421
|
-
|
422
230
|
const text = /^(.)\1+$/i.test(this._typedChars) ? typedCharacter : this._typedChars;
|
423
231
|
clearTimeout(this._typingTimeoutID);
|
424
232
|
this._typingTimeoutID = setTimeout(() => {
|
@@ -443,19 +251,19 @@ sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/UI5Element", "sap/
|
|
443
251
|
const optionsAfterSelected = orderedOptions.splice(this._selectedIndex + 1, orderedOptions.length - this._selectedIndex);
|
444
252
|
const optionsBeforeSelected = orderedOptions.splice(0, orderedOptions.length - 1);
|
445
253
|
orderedOptions = optionsAfterSelected.concat(optionsBeforeSelected);
|
446
|
-
return orderedOptions.find(option => option.textContent.toLowerCase().startsWith(text));
|
254
|
+
return orderedOptions.find(option => (option.textContent || "").toLowerCase().startsWith(text));
|
447
255
|
}
|
448
|
-
_handleHomeKey(
|
449
|
-
|
256
|
+
_handleHomeKey(e) {
|
257
|
+
e.preventDefault();
|
450
258
|
this._changeSelectedItem(this._selectedIndex, 0);
|
451
259
|
}
|
452
|
-
_handleEndKey(
|
260
|
+
_handleEndKey(e) {
|
453
261
|
const lastIndex = this._filteredItems.length - 1;
|
454
|
-
|
262
|
+
e.preventDefault();
|
455
263
|
this._changeSelectedItem(this._selectedIndex, lastIndex);
|
456
264
|
}
|
457
|
-
_onkeyup(
|
458
|
-
if ((0, _Keys.isSpace)(
|
265
|
+
_onkeyup(e) {
|
266
|
+
if ((0, _Keys.isSpace)(e)) {
|
459
267
|
if (this._isPickerOpen) {
|
460
268
|
this._handleSelectionChange();
|
461
269
|
} else {
|
@@ -471,25 +279,23 @@ sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/UI5Element", "sap/
|
|
471
279
|
this._selectedIndex = index;
|
472
280
|
this._filteredItems[index].selected = true;
|
473
281
|
}
|
474
|
-
|
475
282
|
/**
|
476
283
|
* The user clicked on an item from the list
|
477
284
|
* @private
|
478
285
|
*/
|
479
|
-
_handleItemPress(
|
480
|
-
const item =
|
286
|
+
_handleItemPress(e) {
|
287
|
+
const item = e.detail.item;
|
481
288
|
const selectedItemIndex = this._getSelectedItemIndex(item);
|
482
289
|
this._handleSelectionChange(selectedItemIndex);
|
483
290
|
}
|
484
|
-
_itemMousedown(
|
291
|
+
_itemMousedown(e) {
|
485
292
|
// prevent actual focus of items
|
486
|
-
|
293
|
+
e.preventDefault();
|
487
294
|
}
|
488
|
-
_onclick(
|
295
|
+
_onclick() {
|
489
296
|
this.getFocusDomRef().focus();
|
490
297
|
this._toggleRespPopover();
|
491
298
|
}
|
492
|
-
|
493
299
|
/**
|
494
300
|
* The user selected an item with Enter or Space
|
495
301
|
* @private
|
@@ -498,11 +304,11 @@ sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/UI5Element", "sap/
|
|
498
304
|
this._select(index);
|
499
305
|
this._toggleRespPopover();
|
500
306
|
}
|
501
|
-
_handleArrowNavigation(
|
307
|
+
_handleArrowNavigation(e) {
|
502
308
|
let nextIndex = -1;
|
503
309
|
const currentIndex = this._selectedIndex;
|
504
|
-
const isDownKey = (0, _Keys.isDown)(
|
505
|
-
|
310
|
+
const isDownKey = (0, _Keys.isDown)(e);
|
311
|
+
e.preventDefault();
|
506
312
|
if (isDownKey) {
|
507
313
|
nextIndex = this._getNextOptionIndex();
|
508
314
|
} else {
|
@@ -537,14 +343,14 @@ sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/UI5Element", "sap/
|
|
537
343
|
_beforeOpen() {
|
538
344
|
this._selectedIndexBeforeOpen = this._selectedIndex;
|
539
345
|
this._lastSelectedOption = this._filteredItems[this._selectedIndex];
|
540
|
-
this.focused = false;
|
541
346
|
}
|
542
347
|
_afterOpen() {
|
543
348
|
this.opened = true;
|
349
|
+
this.fireEvent("open");
|
350
|
+
this.itemSelectionAnnounce();
|
544
351
|
}
|
545
352
|
_afterClose() {
|
546
353
|
this.opened = false;
|
547
|
-
this.focused = true;
|
548
354
|
this._iconPressed = false;
|
549
355
|
this._listWidth = 0;
|
550
356
|
if (this._escapePressed) {
|
@@ -554,26 +360,50 @@ sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/UI5Element", "sap/
|
|
554
360
|
this._fireChangeEvent(this._filteredItems[this._selectedIndex]);
|
555
361
|
this._lastSelectedOption = this._filteredItems[this._selectedIndex];
|
556
362
|
}
|
363
|
+
this.fireEvent("close");
|
557
364
|
}
|
558
365
|
_fireChangeEvent(selectedOption) {
|
559
|
-
this.fireEvent("change", {
|
366
|
+
const changePrevented = !this.fireEvent("change", {
|
560
367
|
selectedOption
|
561
|
-
});
|
562
|
-
|
368
|
+
}, true);
|
563
369
|
// Angular two way data binding
|
564
370
|
this.selectedItem = selectedOption.textContent;
|
565
371
|
this.fireEvent("selected-item-changed");
|
372
|
+
if (changePrevented) {
|
373
|
+
this.selectedItem = this._lastSelectedOption.textContent;
|
374
|
+
this._select(this._selectedIndexBeforeOpen);
|
375
|
+
}
|
566
376
|
}
|
567
377
|
get valueStateTextMappings() {
|
568
378
|
return {
|
569
|
-
|
570
|
-
|
571
|
-
|
572
|
-
|
379
|
+
[_ValueState.default.Success]: Select_1.i18nBundle.getText(_i18nDefaults.VALUE_STATE_SUCCESS),
|
380
|
+
[_ValueState.default.Information]: Select_1.i18nBundle.getText(_i18nDefaults.VALUE_STATE_INFORMATION),
|
381
|
+
[_ValueState.default.Error]: Select_1.i18nBundle.getText(_i18nDefaults.VALUE_STATE_ERROR),
|
382
|
+
[_ValueState.default.Warning]: Select_1.i18nBundle.getText(_i18nDefaults.VALUE_STATE_WARNING)
|
383
|
+
};
|
384
|
+
}
|
385
|
+
get valueStateTypeMappings() {
|
386
|
+
return {
|
387
|
+
[_ValueState.default.Success]: Select_1.i18nBundle.getText(_i18nDefaults.VALUE_STATE_TYPE_SUCCESS),
|
388
|
+
[_ValueState.default.Information]: Select_1.i18nBundle.getText(_i18nDefaults.VALUE_STATE_TYPE_INFORMATION),
|
389
|
+
[_ValueState.default.Error]: Select_1.i18nBundle.getText(_i18nDefaults.VALUE_STATE_TYPE_ERROR),
|
390
|
+
[_ValueState.default.Warning]: Select_1.i18nBundle.getText(_i18nDefaults.VALUE_STATE_TYPE_WARNING)
|
573
391
|
};
|
574
392
|
}
|
575
393
|
get valueStateText() {
|
576
|
-
|
394
|
+
let valueStateText;
|
395
|
+
if (this.shouldDisplayDefaultValueStateMessage) {
|
396
|
+
valueStateText = this.valueStateDefaultText;
|
397
|
+
} else {
|
398
|
+
valueStateText = this.valueStateMessageText.map(el => el.textContent).join(" ");
|
399
|
+
}
|
400
|
+
return `${this.valueStateTypeText} ${valueStateText}`;
|
401
|
+
}
|
402
|
+
get valueStateDefaultText() {
|
403
|
+
return this.valueState !== _ValueState.default.None ? this.valueStateTextMappings[this.valueState] : "";
|
404
|
+
}
|
405
|
+
get valueStateTypeText() {
|
406
|
+
return this.valueState !== _ValueState.default.None ? this.valueStateTypeMappings[this.valueState] : "";
|
577
407
|
}
|
578
408
|
get hasValueState() {
|
579
409
|
return this.valueState !== _ValueState.default.None;
|
@@ -585,19 +415,15 @@ sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/UI5Element", "sap/
|
|
585
415
|
return this.disabled || undefined;
|
586
416
|
}
|
587
417
|
get _headerTitleText() {
|
588
|
-
return
|
589
|
-
}
|
590
|
-
get _currentSelectedItem() {
|
591
|
-
return this.shadowRoot.querySelector(`#${this._filteredItems[this._selectedIndex]._id}-li`);
|
418
|
+
return Select_1.i18nBundle.getText(_i18nDefaults.INPUT_SUGGESTIONS_TITLE);
|
592
419
|
}
|
593
420
|
get _currentlySelectedOption() {
|
594
421
|
return this._filteredItems[this._selectedIndex];
|
595
422
|
}
|
596
|
-
get
|
423
|
+
get _effectiveTabIndex() {
|
597
424
|
return this.disabled || this.responsivePopover // Handles focus on Tab/Shift + Tab when the popover is opened
|
598
425
|
&& this.responsivePopover.opened ? "-1" : "0";
|
599
426
|
}
|
600
|
-
|
601
427
|
/**
|
602
428
|
* This method is relevant for sap_horizon theme only
|
603
429
|
*/
|
@@ -610,6 +436,9 @@ sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/UI5Element", "sap/
|
|
610
436
|
};
|
611
437
|
return this.valueState !== _ValueState.default.None ? iconPerValueState[this.valueState] : "";
|
612
438
|
}
|
439
|
+
get iconsCount() {
|
440
|
+
return this.selectedOptionIcon ? 2 : 1;
|
441
|
+
}
|
613
442
|
get classes() {
|
614
443
|
return {
|
615
444
|
popoverValueState: {
|
@@ -645,7 +474,7 @@ sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/UI5Element", "sap/
|
|
645
474
|
return this.getSlottedNodes("valueStateMessage").map(el => el.cloneNode(true));
|
646
475
|
}
|
647
476
|
get shouldDisplayDefaultValueStateMessage() {
|
648
|
-
return !this.
|
477
|
+
return !this.valueStateMessageText.length && this.hasValueStateText;
|
649
478
|
}
|
650
479
|
get hasValueStateText() {
|
651
480
|
return this.hasValueState && this.valueState !== _ValueState.default.Success;
|
@@ -654,7 +483,7 @@ sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/UI5Element", "sap/
|
|
654
483
|
return this.focused && this.hasValueStateText && !this._iconPressed && !this._isPickerOpen && !this._isPhone;
|
655
484
|
}
|
656
485
|
get _ariaRoleDescription() {
|
657
|
-
return
|
486
|
+
return Select_1.i18nBundle.getText(_i18nDefaults.SELECT_ROLE_DESCRIPTION);
|
658
487
|
}
|
659
488
|
get _isPhone() {
|
660
489
|
return (0, _Device.isPhone)();
|
@@ -665,20 +494,20 @@ sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/UI5Element", "sap/
|
|
665
494
|
itemSelectionAnnounce() {
|
666
495
|
let text;
|
667
496
|
const optionsCount = this._filteredItems.length;
|
668
|
-
const itemPositionText =
|
497
|
+
const itemPositionText = Select_1.i18nBundle.getText(_i18nDefaults.LIST_ITEM_POSITION, this._selectedIndex + 1, optionsCount);
|
669
498
|
if (this.focused && this._currentlySelectedOption) {
|
670
499
|
text = `${this._currentlySelectedOption.textContent} ${this._isPickerOpen ? itemPositionText : ""}`;
|
671
|
-
(0, _InvisibleMessage.default)(text,
|
500
|
+
(0, _InvisibleMessage.default)(text, _InvisibleMessageMode.default.Polite);
|
672
501
|
}
|
673
502
|
}
|
674
503
|
async openValueStatePopover() {
|
675
|
-
this.
|
676
|
-
if (this.
|
677
|
-
this.
|
504
|
+
this.valueStatePopover = await this._getPopover();
|
505
|
+
if (this.valueStatePopover) {
|
506
|
+
this.valueStatePopover.showAt(this);
|
678
507
|
}
|
679
508
|
}
|
680
509
|
closeValueStatePopover() {
|
681
|
-
this.
|
510
|
+
this.valueStatePopover && this.valueStatePopover.close();
|
682
511
|
}
|
683
512
|
toggleValueStatePopover(open) {
|
684
513
|
if (open) {
|
@@ -694,13 +523,85 @@ sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/UI5Element", "sap/
|
|
694
523
|
const staticAreaItem = await this.getStaticAreaItemDomRef();
|
695
524
|
return staticAreaItem.querySelector("[ui5-popover]");
|
696
525
|
}
|
697
|
-
static get dependencies() {
|
698
|
-
return [_Option.default, _Label.default, _ResponsivePopover.default, _Popover.default, _List.default, _StandardListItem.default, _Icon.default, _Button.default];
|
699
|
-
}
|
700
526
|
static async onDefine() {
|
701
|
-
|
527
|
+
Select_1.i18nBundle = await (0, _i18nBundle.getI18nBundle)("@ui5/webcomponents");
|
702
528
|
}
|
703
|
-
}
|
529
|
+
};
|
530
|
+
__decorate([(0, _property.default)({
|
531
|
+
type: Boolean
|
532
|
+
})], Select.prototype, "disabled", void 0);
|
533
|
+
__decorate([(0, _property.default)()], Select.prototype, "name", void 0);
|
534
|
+
__decorate([(0, _property.default)({
|
535
|
+
type: _ValueState.default,
|
536
|
+
defaultValue: _ValueState.default.None
|
537
|
+
})], Select.prototype, "valueState", void 0);
|
538
|
+
__decorate([(0, _property.default)({
|
539
|
+
type: Boolean
|
540
|
+
})], Select.prototype, "required", void 0);
|
541
|
+
__decorate([(0, _property.default)()], Select.prototype, "accessibleName", void 0);
|
542
|
+
__decorate([(0, _property.default)()], Select.prototype, "accessibleNameRef", void 0);
|
543
|
+
__decorate([(0, _property.default)({
|
544
|
+
type: String,
|
545
|
+
noAttribute: true
|
546
|
+
})], Select.prototype, "_text", void 0);
|
547
|
+
__decorate([(0, _property.default)({
|
548
|
+
type: Boolean,
|
549
|
+
noAttribute: true
|
550
|
+
})], Select.prototype, "_iconPressed", void 0);
|
551
|
+
__decorate([(0, _property.default)({
|
552
|
+
type: Boolean
|
553
|
+
})], Select.prototype, "opened", void 0);
|
554
|
+
__decorate([(0, _property.default)({
|
555
|
+
validator: _Integer.default,
|
556
|
+
defaultValue: 0,
|
557
|
+
noAttribute: true
|
558
|
+
})], Select.prototype, "_listWidth", void 0);
|
559
|
+
__decorate([(0, _property.default)({
|
560
|
+
type: Boolean
|
561
|
+
})], Select.prototype, "focused", void 0);
|
562
|
+
__decorate([(0, _slot.default)({
|
563
|
+
"default": true,
|
564
|
+
type: HTMLElement,
|
565
|
+
invalidateOnChildChange: true
|
566
|
+
})], Select.prototype, "options", void 0);
|
567
|
+
__decorate([(0, _slot.default)()], Select.prototype, "formSupport", void 0);
|
568
|
+
__decorate([(0, _slot.default)()], Select.prototype, "valueStateMessage", void 0);
|
569
|
+
Select = Select_1 = __decorate([(0, _customElement.default)({
|
570
|
+
tag: "ui5-select",
|
571
|
+
languageAware: true,
|
572
|
+
renderer: _LitRenderer.default,
|
573
|
+
template: _SelectTemplate.default,
|
574
|
+
staticAreaTemplate: _SelectPopoverTemplate.default,
|
575
|
+
styles: _Select.default,
|
576
|
+
staticAreaStyles: [_ResponsivePopoverCommon.default, _ValueStateMessage.default, _SelectPopover.default],
|
577
|
+
dependencies: [_Option.default, _Label.default, _ResponsivePopover.default, _Popover.default, _List.default, _StandardListItem.default, _Icon.default, _Button.default]
|
578
|
+
})
|
579
|
+
/**
|
580
|
+
* Fired when the selected option changes.
|
581
|
+
*
|
582
|
+
* @event sap.ui.webc.main.Select#change
|
583
|
+
* @allowPreventDefault
|
584
|
+
* @param {HTMLElement} selectedOption the selected option.
|
585
|
+
* @public
|
586
|
+
*/, (0, _event.default)("change", {
|
587
|
+
detail: {
|
588
|
+
selectedOption: {
|
589
|
+
type: HTMLElement
|
590
|
+
}
|
591
|
+
}
|
592
|
+
})
|
593
|
+
/**
|
594
|
+
* Fired after the component's dropdown menu opens.
|
595
|
+
*
|
596
|
+
* @event sap.ui.webc.main.Select#open
|
597
|
+
* @public
|
598
|
+
*/, (0, _event.default)("open")
|
599
|
+
/**
|
600
|
+
* Fired after the component's dropdown menu closes.
|
601
|
+
*
|
602
|
+
* @event sap.ui.webc.main.Select#close
|
603
|
+
* @public
|
604
|
+
*/, (0, _event.default)("close")], Select);
|
704
605
|
Select.define();
|
705
606
|
var _default = Select;
|
706
607
|
_exports.default = _default;
|