@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/Keys", "sap/ui/webc/common/thirdparty/base/i18nBundle", "sap/ui/webc/common/thirdparty/base/renderer/LitRenderer", "
|
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/event", "sap/ui/webc/common/thirdparty/base/decorators/property", "sap/ui/webc/common/thirdparty/base/decorators/slot", "sap/ui/webc/common/thirdparty/base/Keys", "sap/ui/webc/common/thirdparty/base/i18nBundle", "sap/ui/webc/common/thirdparty/base/MarkedEvents", "sap/ui/webc/common/thirdparty/base/renderer/LitRenderer", "sap/ui/webc/common/thirdparty/icons/slim-arrow-down", "./types/ButtonDesign", "./Button", "./generated/i18n/i18n-defaults", "./generated/templates/SplitButtonTemplate.lit", "./generated/themes/SplitButton.css"], function (_exports, _UI5Element, _customElement, _event, _property, _slot, _Keys, _i18nBundle, _MarkedEvents, _LitRenderer, _slimArrowDown, _ButtonDesign, _Button, _i18nDefaults, _SplitButtonTemplate, _SplitButton) {
|
2
2
|
"use strict";
|
3
3
|
|
4
4
|
Object.defineProperty(_exports, "__esModule", {
|
@@ -6,203 +6,24 @@ 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
|
+
_event = _interopRequireDefault(_event);
|
11
|
+
_property = _interopRequireDefault(_property);
|
12
|
+
_slot = _interopRequireDefault(_slot);
|
9
13
|
_LitRenderer = _interopRequireDefault(_LitRenderer);
|
10
|
-
_SplitButtonTemplate = _interopRequireDefault(_SplitButtonTemplate);
|
11
14
|
_ButtonDesign = _interopRequireDefault(_ButtonDesign);
|
12
15
|
_Button = _interopRequireDefault(_Button);
|
16
|
+
_SplitButtonTemplate = _interopRequireDefault(_SplitButtonTemplate);
|
13
17
|
_SplitButton = _interopRequireDefault(_SplitButton);
|
14
18
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
tag: "ui5-split-button",
|
22
|
-
managedSlots: true,
|
23
|
-
properties: /** @lends sap.ui.webcomponents.main.SplitButton.prototype */{
|
24
|
-
/**
|
25
|
-
* Defines the icon to be displayed as graphical element within the component.
|
26
|
-
* The SAP-icons font provides numerous options.
|
27
|
-
* <br><br>
|
28
|
-
* Example:
|
29
|
-
*
|
30
|
-
* See all the available icons in the <ui5-link target="_blank" href="https://openui5.hana.ondemand.com/test-resources/sap/m/demokit/iconExplorer/webapp/index.html" class="api-table-content-cell-link">Icon Explorer</ui5-link>.
|
31
|
-
*
|
32
|
-
* @type {string}
|
33
|
-
* @defaultvalue ""
|
34
|
-
* @public
|
35
|
-
*/
|
36
|
-
icon: {
|
37
|
-
type: String
|
38
|
-
},
|
39
|
-
/**
|
40
|
-
* Defines the icon to be displayed in active state as graphical element within the component.
|
41
|
-
*
|
42
|
-
* @type {string}
|
43
|
-
* @defaultvalue ""
|
44
|
-
* @public
|
45
|
-
*/
|
46
|
-
activeIcon: {
|
47
|
-
type: String
|
48
|
-
},
|
49
|
-
/**
|
50
|
-
* Defines the component design.
|
51
|
-
*
|
52
|
-
* <br><br>
|
53
|
-
* <b>The available values are:</b>
|
54
|
-
*
|
55
|
-
* <ul>
|
56
|
-
* <li><code>Default</code></li>
|
57
|
-
* <li><code>Emphasized</code></li>
|
58
|
-
* <li><code>Positive</code></li>
|
59
|
-
* <li><code>Negative</code></li>
|
60
|
-
* <li><code>Transparent</code></li>
|
61
|
-
* <li><code>Attention</code></li>
|
62
|
-
* </ul>
|
63
|
-
*
|
64
|
-
* @type {ButtonDesign}
|
65
|
-
* @defaultvalue "Default"
|
66
|
-
* @public
|
67
|
-
*/
|
68
|
-
design: {
|
69
|
-
type: _ButtonDesign.default,
|
70
|
-
defaultValue: _ButtonDesign.default.Default
|
71
|
-
},
|
72
|
-
/**
|
73
|
-
* Defines whether the component is disabled.
|
74
|
-
* A disabled component can't be pressed or
|
75
|
-
* focused, and it is not in the tab chain.
|
76
|
-
*
|
77
|
-
* @type {boolean}
|
78
|
-
* @defaultvalue false
|
79
|
-
* @public
|
80
|
-
*/
|
81
|
-
disabled: {
|
82
|
-
type: Boolean
|
83
|
-
},
|
84
|
-
/**
|
85
|
-
* Defines the accessible aria name of the component.
|
86
|
-
*
|
87
|
-
* @type {string}
|
88
|
-
* @defaultvalue: ""
|
89
|
-
* @public
|
90
|
-
*/
|
91
|
-
accessibleName: {
|
92
|
-
type: String,
|
93
|
-
defaultValue: undefined
|
94
|
-
},
|
95
|
-
/**
|
96
|
-
* Indicates if the elements is on focus
|
97
|
-
* @type {boolean}
|
98
|
-
* @defaultvalue false
|
99
|
-
* @private
|
100
|
-
*/
|
101
|
-
focused: {
|
102
|
-
type: Boolean
|
103
|
-
},
|
104
|
-
/**
|
105
|
-
* Accessibility-related properties for inner elements of the Split Button
|
106
|
-
*
|
107
|
-
* @type {Object}
|
108
|
-
* @private
|
109
|
-
*/
|
110
|
-
_splitButtonAccInfo: {
|
111
|
-
type: Object
|
112
|
-
},
|
113
|
-
/**
|
114
|
-
* Defines the tabIndex of the component.
|
115
|
-
* @type {string}
|
116
|
-
* @defaultvalue ""
|
117
|
-
* @private
|
118
|
-
*/
|
119
|
-
_tabIndex: {
|
120
|
-
type: String,
|
121
|
-
defaultValue: "0",
|
122
|
-
noAttribute: true
|
123
|
-
},
|
124
|
-
/**
|
125
|
-
* Indicates if there is Space key pressed
|
126
|
-
* @type {boolean}
|
127
|
-
* @defaultvalue false
|
128
|
-
* @private
|
129
|
-
*/
|
130
|
-
_spacePressed: {
|
131
|
-
type: Boolean,
|
132
|
-
noAttribute: true
|
133
|
-
},
|
134
|
-
/**
|
135
|
-
* Indicates if there is SHIFT or ESCAPE key pressed
|
136
|
-
* @type {boolean}
|
137
|
-
* @defaultvalue false
|
138
|
-
* @private
|
139
|
-
*/
|
140
|
-
_shiftOrEscapePressed: {
|
141
|
-
type: Boolean,
|
142
|
-
noAttribute: true
|
143
|
-
},
|
144
|
-
/**
|
145
|
-
* Defines the active state of the text button
|
146
|
-
* @type {boolean}
|
147
|
-
* @defaultvalue false
|
148
|
-
* @private
|
149
|
-
*/
|
150
|
-
_textButtonActive: {
|
151
|
-
type: Boolean,
|
152
|
-
noAttribute: true
|
153
|
-
},
|
154
|
-
/**
|
155
|
-
* Defines the icon of the text button
|
156
|
-
* @type {string}
|
157
|
-
* @defaultvalue ""
|
158
|
-
* @private
|
159
|
-
*/
|
160
|
-
_textButtonIcon: {
|
161
|
-
type: String,
|
162
|
-
noAttribute: true
|
163
|
-
},
|
164
|
-
/**
|
165
|
-
* Defines the active state of the arrow button
|
166
|
-
* @type {boolean}
|
167
|
-
* @defaultvalue false
|
168
|
-
* @private
|
169
|
-
*/
|
170
|
-
_arrowButtonActive: {
|
171
|
-
type: Boolean,
|
172
|
-
noAttribute: true
|
173
|
-
}
|
174
|
-
},
|
175
|
-
slots: /** @lends sap.ui.webcomponents.main.SplitButton.prototype */{
|
176
|
-
/**
|
177
|
-
* Defines the text of the component.
|
178
|
-
* <br><br>
|
179
|
-
* <b>Note:</b> Although this slot accepts HTML Elements, it is strongly recommended that you only use text in order to preserve the intended design.
|
180
|
-
*
|
181
|
-
* @type {Node[]}
|
182
|
-
* @slot
|
183
|
-
* @public
|
184
|
-
*/
|
185
|
-
"default": {
|
186
|
-
type: Node,
|
187
|
-
propertyName: "text"
|
188
|
-
}
|
189
|
-
},
|
190
|
-
events: /** @lends sap.ui.webcomponents.main.SplitButton.prototype */{
|
191
|
-
/**
|
192
|
-
* Fired when the user clicks on the default action.
|
193
|
-
* @event
|
194
|
-
* @public
|
195
|
-
*/
|
196
|
-
"click": {},
|
197
|
-
/**
|
198
|
-
* Fired when the user clicks on the arrow action.
|
199
|
-
* @event sap.ui.webcomponents.main.SplitButton#arrow-click
|
200
|
-
* @public
|
201
|
-
*/
|
202
|
-
"arrow-click": {}
|
203
|
-
}
|
19
|
+
var __decorate = void 0 && (void 0).__decorate || function (decorators, target, key, desc) {
|
20
|
+
var c = arguments.length,
|
21
|
+
r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc,
|
22
|
+
d;
|
23
|
+
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;
|
24
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
204
25
|
};
|
205
|
-
|
26
|
+
var SplitButton_1;
|
206
27
|
/**
|
207
28
|
* @class
|
208
29
|
*
|
@@ -234,7 +55,7 @@ sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/UI5Element", "sap/
|
|
234
55
|
* <ul>
|
235
56
|
* <li><code>Space</code> or <code>Enter</code> - triggers the default action</li>
|
236
57
|
* <li><code>Shift</code> or <code>Escape</code> - if <code>Space</code> is pressed, releases the default action button without triggering the click event.</li>
|
237
|
-
* <li><code>Arrow Down</code>, <code>Arrow Up</code>, <code>Alt</code>+<code>Arrow Down</code>, <code>Alt</code>+<code>Arrow Up</code>, or <code>F4</code> - triggers the arrow action
|
58
|
+
* <li><code>Arrow Down</code>, <code>Arrow Up</code>, <code>Alt</code>+<code>Arrow Down</code>, <code>Alt</code>+<code>Arrow Up</code>, or <code>F4</code> - triggers the arrow action</li>
|
238
59
|
* There are separate events that are fired on activating of <code>ui5-split-button</code> parts:
|
239
60
|
* <ul>
|
240
61
|
* <li><code>click</code> for the first button (default action)</li>
|
@@ -248,34 +69,19 @@ sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/UI5Element", "sap/
|
|
248
69
|
*
|
249
70
|
* @constructor
|
250
71
|
* @author SAP SE
|
251
|
-
* @alias sap.ui.
|
252
|
-
* @extends UI5Element
|
72
|
+
* @alias sap.ui.webc.main.SplitButton
|
73
|
+
* @extends sap.ui.webc.base.UI5Element
|
253
74
|
* @tagname ui5-split-button
|
254
75
|
* @public
|
255
76
|
* @since 1.1.0
|
256
77
|
*/
|
257
|
-
class SplitButton extends _UI5Element.default {
|
258
|
-
static get metadata() {
|
259
|
-
return metadata;
|
260
|
-
}
|
261
|
-
static get render() {
|
262
|
-
return _LitRenderer.default;
|
263
|
-
}
|
264
|
-
static get styles() {
|
265
|
-
return _SplitButton.default;
|
266
|
-
}
|
267
|
-
static get template() {
|
268
|
-
return _SplitButtonTemplate.default;
|
269
|
-
}
|
270
|
-
static get dependencies() {
|
271
|
-
return [_Button.default];
|
272
|
-
}
|
78
|
+
let SplitButton = SplitButton_1 = class SplitButton extends _UI5Element.default {
|
273
79
|
static async onDefine() {
|
274
|
-
|
80
|
+
SplitButton_1.i18nBundle = await (0, _i18nBundle.getI18nBundle)("@ui5/webcomponents");
|
275
81
|
}
|
276
82
|
constructor() {
|
277
83
|
super();
|
278
|
-
const handleTouchStartEvent =
|
84
|
+
const handleTouchStartEvent = () => {
|
279
85
|
this._textButtonActive = true;
|
280
86
|
this.focused = false;
|
281
87
|
this._setTabIndexValue();
|
@@ -291,64 +97,64 @@ sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/UI5Element", "sap/
|
|
291
97
|
this._tabIndex = "-1";
|
292
98
|
}
|
293
99
|
}
|
294
|
-
_onFocusOut(
|
295
|
-
if (this.disabled ||
|
100
|
+
_onFocusOut(e) {
|
101
|
+
if (this.disabled || (0, _MarkedEvents.getEventMark)(e)) {
|
296
102
|
return;
|
297
103
|
}
|
298
104
|
this._shiftOrEscapePressed = false;
|
299
105
|
this.focused = false;
|
300
106
|
this._setTabIndexValue();
|
301
107
|
}
|
302
|
-
_onFocusIn(
|
303
|
-
if (this.disabled ||
|
108
|
+
_onFocusIn(e) {
|
109
|
+
if (this.disabled || (0, _MarkedEvents.getEventMark)(e)) {
|
304
110
|
return;
|
305
111
|
}
|
306
112
|
this._shiftOrEscapePressed = false;
|
307
113
|
this.focused = true;
|
308
114
|
}
|
309
|
-
_onKeyDown(
|
310
|
-
if ((0, _Keys.isDown)(
|
311
|
-
|
115
|
+
_onKeyDown(e) {
|
116
|
+
if ((0, _Keys.isDown)(e) || (0, _Keys.isUp)(e) || (0, _Keys.isDownAlt)(e) || (0, _Keys.isUpAlt)(e) || (0, _Keys.isF4)(e)) {
|
117
|
+
e.preventDefault();
|
312
118
|
this._arrowButtonActive = true;
|
313
119
|
this._fireArrowClick();
|
314
|
-
} else if ((0, _Keys.isSpace)(
|
315
|
-
|
120
|
+
} else if ((0, _Keys.isSpace)(e) || (0, _Keys.isEnter)(e)) {
|
121
|
+
e.preventDefault();
|
316
122
|
this._textButtonActive = true;
|
317
|
-
if ((0, _Keys.isEnter)(
|
123
|
+
if ((0, _Keys.isEnter)(e)) {
|
318
124
|
this._fireClick();
|
319
125
|
} else {
|
320
126
|
this._spacePressed = true;
|
321
127
|
}
|
322
128
|
}
|
323
|
-
if (this._spacePressed && ((0, _Keys.isEscape)(
|
129
|
+
if (this._spacePressed && ((0, _Keys.isEscape)(e) || (0, _Keys.isShift)(e))) {
|
324
130
|
this._shiftOrEscapePressed = true;
|
325
131
|
this._textButtonActive = false;
|
326
132
|
}
|
327
133
|
this._setTabIndexValue();
|
328
134
|
}
|
329
|
-
_onKeyUp(
|
330
|
-
if ((0, _Keys.isDown)(
|
135
|
+
_onKeyUp(e) {
|
136
|
+
if ((0, _Keys.isDown)(e) || (0, _Keys.isUp)(e) || (0, _Keys.isDownAlt)(e) || (0, _Keys.isUpAlt)(e) || (0, _Keys.isF4)(e)) {
|
331
137
|
this._arrowButtonActive = false;
|
332
|
-
} else if ((0, _Keys.isSpace)(
|
138
|
+
} else if ((0, _Keys.isSpace)(e) || (0, _Keys.isEnter)(e)) {
|
333
139
|
this._textButtonActive = false;
|
334
|
-
if ((0, _Keys.isSpace)(
|
335
|
-
|
336
|
-
|
140
|
+
if ((0, _Keys.isSpace)(e)) {
|
141
|
+
e.preventDefault();
|
142
|
+
e.stopPropagation();
|
337
143
|
this._fireClick();
|
338
144
|
this._spacePressed = false;
|
339
145
|
}
|
340
146
|
}
|
341
147
|
this._setTabIndexValue();
|
342
148
|
}
|
343
|
-
_fireClick(
|
344
|
-
|
149
|
+
_fireClick(e) {
|
150
|
+
e?.stopPropagation();
|
345
151
|
if (!this._shiftOrEscapePressed) {
|
346
152
|
this.fireEvent("click");
|
347
153
|
}
|
348
154
|
this._shiftOrEscapePressed = false;
|
349
155
|
}
|
350
|
-
_fireArrowClick(
|
351
|
-
|
156
|
+
_fireArrowClick(e) {
|
157
|
+
e?.stopPropagation();
|
352
158
|
this.fireEvent("arrow-click");
|
353
159
|
}
|
354
160
|
_textButtonRelease() {
|
@@ -365,11 +171,14 @@ sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/UI5Element", "sap/
|
|
365
171
|
get textButtonAccText() {
|
366
172
|
return this.textContent;
|
367
173
|
}
|
174
|
+
get isTextButton() {
|
175
|
+
return !!this.textContent;
|
176
|
+
}
|
368
177
|
get textButton() {
|
369
|
-
return this.getDomRef()
|
178
|
+
return this.getDomRef()?.querySelector(".ui5-split-text-button");
|
370
179
|
}
|
371
180
|
get arrowButton() {
|
372
|
-
return this.getDomRef()
|
181
|
+
return this.getDomRef()?.querySelector(".ui5-split-arrow-button");
|
373
182
|
}
|
374
183
|
get accessibilityInfo() {
|
375
184
|
return {
|
@@ -377,14 +186,76 @@ sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/UI5Element", "sap/
|
|
377
186
|
ariaExpanded: this._splitButtonAccInfo && this._splitButtonAccInfo.ariaExpanded,
|
378
187
|
ariaHaspopup: this._splitButtonAccInfo && this._splitButtonAccInfo.ariaHaspopup,
|
379
188
|
// affects root element
|
380
|
-
description:
|
381
|
-
keyboardHint:
|
189
|
+
description: SplitButton_1.i18nBundle.getText(_i18nDefaults.SPLIT_BUTTON_DESCRIPTION),
|
190
|
+
keyboardHint: SplitButton_1.i18nBundle.getText(_i18nDefaults.SPLIT_BUTTON_KEYBOARD_HINT)
|
382
191
|
};
|
383
192
|
}
|
384
193
|
get ariaLabelText() {
|
385
|
-
return [
|
194
|
+
return [SplitButton_1.i18nBundle.getText(_i18nDefaults.SPLIT_BUTTON_DESCRIPTION), SplitButton_1.i18nBundle.getText(_i18nDefaults.SPLIT_BUTTON_KEYBOARD_HINT)].join(" ");
|
386
195
|
}
|
387
|
-
}
|
196
|
+
};
|
197
|
+
__decorate([(0, _property.default)()], SplitButton.prototype, "icon", void 0);
|
198
|
+
__decorate([(0, _property.default)()], SplitButton.prototype, "activeIcon", void 0);
|
199
|
+
__decorate([(0, _property.default)({
|
200
|
+
type: _ButtonDesign.default,
|
201
|
+
defaultValue: _ButtonDesign.default.Default
|
202
|
+
})], SplitButton.prototype, "design", void 0);
|
203
|
+
__decorate([(0, _property.default)({
|
204
|
+
type: Boolean
|
205
|
+
})], SplitButton.prototype, "disabled", void 0);
|
206
|
+
__decorate([(0, _property.default)({
|
207
|
+
defaultValue: undefined
|
208
|
+
})], SplitButton.prototype, "accessibleName", void 0);
|
209
|
+
__decorate([(0, _property.default)({
|
210
|
+
type: Boolean
|
211
|
+
})], SplitButton.prototype, "focused", void 0);
|
212
|
+
__decorate([(0, _property.default)({
|
213
|
+
type: Object
|
214
|
+
})], SplitButton.prototype, "_splitButtonAccInfo", void 0);
|
215
|
+
__decorate([(0, _property.default)({
|
216
|
+
defaultValue: "0",
|
217
|
+
noAttribute: true
|
218
|
+
})], SplitButton.prototype, "_tabIndex", void 0);
|
219
|
+
__decorate([(0, _property.default)({
|
220
|
+
type: Boolean,
|
221
|
+
noAttribute: true
|
222
|
+
})], SplitButton.prototype, "_spacePressed", void 0);
|
223
|
+
__decorate([(0, _property.default)({
|
224
|
+
type: Boolean,
|
225
|
+
noAttribute: true
|
226
|
+
})], SplitButton.prototype, "_shiftOrEscapePressed", void 0);
|
227
|
+
__decorate([(0, _property.default)({
|
228
|
+
type: Boolean,
|
229
|
+
noAttribute: true
|
230
|
+
})], SplitButton.prototype, "_textButtonActive", void 0);
|
231
|
+
__decorate([(0, _property.default)({
|
232
|
+
noAttribute: true
|
233
|
+
})], SplitButton.prototype, "_textButtonIcon", void 0);
|
234
|
+
__decorate([(0, _property.default)({
|
235
|
+
type: Boolean,
|
236
|
+
noAttribute: true
|
237
|
+
})], SplitButton.prototype, "_arrowButtonActive", void 0);
|
238
|
+
__decorate([(0, _slot.default)({
|
239
|
+
type: Node,
|
240
|
+
"default": true
|
241
|
+
})], SplitButton.prototype, "text", void 0);
|
242
|
+
SplitButton = SplitButton_1 = __decorate([(0, _customElement.default)({
|
243
|
+
tag: "ui5-split-button",
|
244
|
+
renderer: _LitRenderer.default,
|
245
|
+
styles: _SplitButton.default,
|
246
|
+
template: _SplitButtonTemplate.default,
|
247
|
+
dependencies: [_Button.default]
|
248
|
+
})
|
249
|
+
/**
|
250
|
+
* Fired when the user clicks on the default action.
|
251
|
+
* @event sap.ui.webc.main.SplitButton#click
|
252
|
+
* @public
|
253
|
+
*/, (0, _event.default)("click")
|
254
|
+
/**
|
255
|
+
* Fired when the user clicks on the arrow action.
|
256
|
+
* @event sap.ui.webc.main.SplitButton#arrow-click
|
257
|
+
* @public
|
258
|
+
*/, (0, _event.default)("arrow-click")], SplitButton);
|
388
259
|
SplitButton.define();
|
389
260
|
var _default = SplitButton;
|
390
261
|
_exports.default = _default;
|
@@ -1,10 +1,13 @@
|
|
1
|
-
sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/types/ValueState", "./ListItem", "./Icon", "./Avatar", "./types/WrappingType", "./generated/templates/StandardListItemTemplate.lit"], function (_exports, _ValueState, _ListItem, _Icon, _Avatar, _WrappingType, _StandardListItemTemplate) {
|
1
|
+
sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/decorators/customElement", "sap/ui/webc/common/thirdparty/base/decorators/property", "sap/ui/webc/common/thirdparty/base/decorators/slot", "sap/ui/webc/common/thirdparty/base/types/ValueState", "./ListItem", "./Icon", "./Avatar", "./types/WrappingType", "./generated/templates/StandardListItemTemplate.lit"], function (_exports, _customElement, _property, _slot, _ValueState, _ListItem, _Icon, _Avatar, _WrappingType, _StandardListItemTemplate) {
|
2
2
|
"use strict";
|
3
3
|
|
4
4
|
Object.defineProperty(_exports, "__esModule", {
|
5
5
|
value: true
|
6
6
|
});
|
7
7
|
_exports.default = void 0;
|
8
|
+
_customElement = _interopRequireDefault(_customElement);
|
9
|
+
_property = _interopRequireDefault(_property);
|
10
|
+
_slot = _interopRequireDefault(_slot);
|
8
11
|
_ValueState = _interopRequireDefault(_ValueState);
|
9
12
|
_ListItem = _interopRequireDefault(_ListItem);
|
10
13
|
_Icon = _interopRequireDefault(_Icon);
|
@@ -12,131 +15,13 @@ sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/types/ValueState",
|
|
12
15
|
_WrappingType = _interopRequireDefault(_WrappingType);
|
13
16
|
_StandardListItemTemplate = _interopRequireDefault(_StandardListItemTemplate);
|
14
17
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
/**
|
22
|
-
* Defines the description displayed right under the item text, if such is present.
|
23
|
-
* @type {string}
|
24
|
-
* @defaultvalue: ""
|
25
|
-
* @public
|
26
|
-
* @since 0.8.0
|
27
|
-
*/
|
28
|
-
description: {
|
29
|
-
type: String
|
30
|
-
},
|
31
|
-
/**
|
32
|
-
* Defines the <code>icon</code> source URI.
|
33
|
-
* <br><br>
|
34
|
-
* <b>Note:</b>
|
35
|
-
* SAP-icons font provides numerous built-in icons. To find all the available icons, see the
|
36
|
-
* <ui5-link target="_blank" href="https://openui5.hana.ondemand.com/test-resources/sap/m/demokit/iconExplorer/webapp/index.html" class="api-table-content-cell-link">Icon Explorer</ui5-link>.
|
37
|
-
*
|
38
|
-
* @type {string}
|
39
|
-
* @public
|
40
|
-
*/
|
41
|
-
icon: {
|
42
|
-
type: String
|
43
|
-
},
|
44
|
-
/**
|
45
|
-
* Defines whether the <code>icon</code> should be displayed in the beginning of the list item or in the end.
|
46
|
-
* <br><br>
|
47
|
-
* <b>Note:</b> If <code>image</code> is set, the <code>icon</code> would be displayed after the <code>image</code>.
|
48
|
-
*
|
49
|
-
* @type {boolean}
|
50
|
-
* @defaultvalue false
|
51
|
-
* @public
|
52
|
-
*/
|
53
|
-
iconEnd: {
|
54
|
-
type: Boolean
|
55
|
-
},
|
56
|
-
/**
|
57
|
-
* Defines the <code>image</code> source URI.
|
58
|
-
* <br><br>
|
59
|
-
* <b>Note:</b> The <code>image</code> would be displayed in the beginning of the list item.
|
60
|
-
*
|
61
|
-
* @type {string}
|
62
|
-
* @public
|
63
|
-
*/
|
64
|
-
image: {
|
65
|
-
type: String
|
66
|
-
},
|
67
|
-
/**
|
68
|
-
* Defines the <code>additionalText</code>, displayed in the end of the list item.
|
69
|
-
* @type {string}
|
70
|
-
* @public
|
71
|
-
* @since 1.0.0-rc.15
|
72
|
-
*/
|
73
|
-
additionalText: {
|
74
|
-
type: String
|
75
|
-
},
|
76
|
-
/**
|
77
|
-
* Defines the state of the <code>additionalText</code>.
|
78
|
-
* <br>
|
79
|
-
* Available options are: <code>"None"</code> (by default), <code>"Success"</code>, <code>"Warning"</code>, <code>"Information"</code> and <code>"Erorr"</code>.
|
80
|
-
* @type {ValueState}
|
81
|
-
* @defaultvalue "None"
|
82
|
-
* @public
|
83
|
-
* @since 1.0.0-rc.15
|
84
|
-
*/
|
85
|
-
additionalTextState: {
|
86
|
-
type: _ValueState.default,
|
87
|
-
defaultValue: _ValueState.default.None
|
88
|
-
},
|
89
|
-
/**
|
90
|
-
* Defines the text alternative of the component.
|
91
|
-
* Note: If not provided a default text alternative will be set, if present.
|
92
|
-
*
|
93
|
-
* @type {string}
|
94
|
-
* @defaultvalue ""
|
95
|
-
* @public
|
96
|
-
* @since 1.0.0-rc.15
|
97
|
-
*/
|
98
|
-
accessibleName: {
|
99
|
-
type: String
|
100
|
-
},
|
101
|
-
/**
|
102
|
-
* Defines if the text of the component should wrap, they truncate by default.
|
103
|
-
*
|
104
|
-
* <br><br>
|
105
|
-
* <b>Note:</b> this property takes affect only if text node is provided to default slot of the component
|
106
|
-
* @type {WrappingType}
|
107
|
-
* @defaultvalue "None"
|
108
|
-
* @private
|
109
|
-
* @since 1.5.0
|
110
|
-
*/
|
111
|
-
wrappingType: {
|
112
|
-
type: _WrappingType.default,
|
113
|
-
defaultValue: _WrappingType.default.None
|
114
|
-
},
|
115
|
-
/**
|
116
|
-
* Indicates if the list item has text content.
|
117
|
-
* @type {boolean}
|
118
|
-
* @private
|
119
|
-
*/
|
120
|
-
hasTitle: {
|
121
|
-
type: Boolean
|
122
|
-
}
|
123
|
-
},
|
124
|
-
slots: /** @lends sap.ui.webcomponents.main.StandardListItem.prototype */{
|
125
|
-
/**
|
126
|
-
* Defines the text of the component.
|
127
|
-
* <br><br>
|
128
|
-
* <b>Note:</b> Although this slot accepts HTML Elements, it is strongly recommended that you only use text in order to preserve the intended design.
|
129
|
-
*
|
130
|
-
* @type {Node[]}
|
131
|
-
* @slot
|
132
|
-
* @public
|
133
|
-
*/
|
134
|
-
"default": {
|
135
|
-
type: Node
|
136
|
-
}
|
137
|
-
}
|
18
|
+
var __decorate = void 0 && (void 0).__decorate || function (decorators, target, key, desc) {
|
19
|
+
var c = arguments.length,
|
20
|
+
r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc,
|
21
|
+
d;
|
22
|
+
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;
|
23
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
138
24
|
};
|
139
|
-
|
140
25
|
/**
|
141
26
|
* @class
|
142
27
|
* The <code>ui5-li</code> represents the simplest type of item for a <code>ui5-list</code>.
|
@@ -159,36 +44,59 @@ sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/types/ValueState",
|
|
159
44
|
*
|
160
45
|
* @constructor
|
161
46
|
* @author SAP SE
|
162
|
-
* @alias sap.ui.
|
163
|
-
* @extends ListItem
|
47
|
+
* @alias sap.ui.webc.main.StandardListItem
|
48
|
+
* @extends sap.ui.webc.main.ListItem
|
164
49
|
* @tagname ui5-li
|
165
|
-
* @implements sap.ui.
|
50
|
+
* @implements sap.ui.webc.main.IListItem
|
166
51
|
* @public
|
167
52
|
*/
|
168
|
-
class StandardListItem extends _ListItem.default {
|
169
|
-
|
170
|
-
|
171
|
-
}
|
172
|
-
static get metadata() {
|
173
|
-
return metadata;
|
174
|
-
}
|
175
|
-
onBeforeRendering(...params) {
|
176
|
-
super.onBeforeRendering(...params);
|
53
|
+
let StandardListItem = class StandardListItem extends _ListItem.default {
|
54
|
+
onBeforeRendering() {
|
55
|
+
super.onBeforeRendering();
|
177
56
|
this.hasTitle = !!this.textContent;
|
57
|
+
this._hasImageContent = this.hasImageContent;
|
178
58
|
}
|
179
59
|
get displayImage() {
|
180
60
|
return !!this.image;
|
181
61
|
}
|
182
62
|
get displayIconBegin() {
|
183
|
-
return this.icon && !this.iconEnd;
|
63
|
+
return !!(this.icon && !this.iconEnd);
|
184
64
|
}
|
185
65
|
get displayIconEnd() {
|
186
|
-
return this.icon && this.iconEnd;
|
66
|
+
return !!(this.icon && this.iconEnd);
|
187
67
|
}
|
188
|
-
|
189
|
-
return
|
68
|
+
get hasImageContent() {
|
69
|
+
return !!this.imageContent.length;
|
190
70
|
}
|
191
|
-
}
|
71
|
+
};
|
72
|
+
__decorate([(0, _property.default)()], StandardListItem.prototype, "description", void 0);
|
73
|
+
__decorate([(0, _property.default)()], StandardListItem.prototype, "icon", void 0);
|
74
|
+
__decorate([(0, _property.default)({
|
75
|
+
type: Boolean
|
76
|
+
})], StandardListItem.prototype, "iconEnd", void 0);
|
77
|
+
__decorate([(0, _property.default)()], StandardListItem.prototype, "image", void 0);
|
78
|
+
__decorate([(0, _property.default)()], StandardListItem.prototype, "additionalText", void 0);
|
79
|
+
__decorate([(0, _property.default)({
|
80
|
+
type: _ValueState.default,
|
81
|
+
defaultValue: _ValueState.default.None
|
82
|
+
})], StandardListItem.prototype, "additionalTextState", void 0);
|
83
|
+
__decorate([(0, _property.default)()], StandardListItem.prototype, "accessibleName", void 0);
|
84
|
+
__decorate([(0, _property.default)({
|
85
|
+
type: _WrappingType.default,
|
86
|
+
defaultValue: _WrappingType.default.None
|
87
|
+
})], StandardListItem.prototype, "wrappingType", void 0);
|
88
|
+
__decorate([(0, _property.default)({
|
89
|
+
type: Boolean
|
90
|
+
})], StandardListItem.prototype, "hasTitle", void 0);
|
91
|
+
__decorate([(0, _property.default)({
|
92
|
+
type: Boolean
|
93
|
+
})], StandardListItem.prototype, "_hasImageContent", void 0);
|
94
|
+
__decorate([(0, _slot.default)()], StandardListItem.prototype, "imageContent", void 0);
|
95
|
+
StandardListItem = __decorate([(0, _customElement.default)({
|
96
|
+
tag: "ui5-li",
|
97
|
+
template: _StandardListItemTemplate.default,
|
98
|
+
dependencies: [..._ListItem.default.dependencies, _Icon.default, _Avatar.default]
|
99
|
+
})], StandardListItem);
|
192
100
|
StandardListItem.define();
|
193
101
|
var _default = StandardListItem;
|
194
102
|
_exports.default = _default;
|