@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/renderer/LitRenderer", "sap/ui/webc/common/thirdparty/base/types/Integer", "sap/ui/webc/common/thirdparty/base/Keys", "sap/ui/webc/common/thirdparty/base/i18nBundle", "sap/ui/webc/common/thirdparty/base/delegate/ScrollEnablement", "sap/ui/webc/common/thirdparty/base/delegate/ResizeHandler", "sap/ui/webc/common/thirdparty/base/Render", "sap/ui/webc/common/thirdparty/base/Device", "sap/ui/webc/common/thirdparty/base/types/AnimationMode", "sap/ui/webc/common/thirdparty/base/config/AnimationMode", "./generated/i18n/i18n-defaults", "./types/CarouselArrowsPlacement", "./generated/templates/CarouselTemplate.lit", "sap/ui/webc/common/thirdparty/icons/slim-arrow-left", "sap/ui/webc/common/thirdparty/icons/slim-arrow-right", "./Button", "./Label", "./generated/themes/Carousel.css"], function (_exports, _UI5Element, _LitRenderer, _Integer, _Keys, _i18nBundle, _ScrollEnablement, _ResizeHandler, _Render, _Device, _AnimationMode, _AnimationMode2, _i18nDefaults, _CarouselArrowsPlacement, _CarouselTemplate, _slimArrowLeft, _slimArrowRight, _Button, _Label, _Carousel) {
|
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/types/Integer", "sap/ui/webc/common/thirdparty/base/Keys", "sap/ui/webc/common/thirdparty/base/i18nBundle", "sap/ui/webc/common/thirdparty/base/delegate/ScrollEnablement", "sap/ui/webc/common/thirdparty/base/delegate/ResizeHandler", "sap/ui/webc/common/thirdparty/base/Render", "sap/ui/webc/common/thirdparty/base/Device", "sap/ui/webc/common/thirdparty/base/types/AnimationMode", "sap/ui/webc/common/thirdparty/base/config/AnimationMode", "./generated/i18n/i18n-defaults", "./types/CarouselArrowsPlacement", "./types/CarouselPageIndicatorStyle", "./types/BackgroundDesign", "./types/BorderDesign", "./generated/templates/CarouselTemplate.lit", "sap/ui/webc/common/thirdparty/icons/slim-arrow-left", "sap/ui/webc/common/thirdparty/icons/slim-arrow-right", "./Button", "./Label", "./generated/themes/Carousel.css"], function (_exports, _UI5Element, _customElement, _property, _event, _slot, _LitRenderer, _Integer, _Keys, _i18nBundle, _ScrollEnablement, _ResizeHandler, _Render, _Device, _AnimationMode, _AnimationMode2, _i18nDefaults, _CarouselArrowsPlacement, _CarouselPageIndicatorStyle, _BackgroundDesign, _BorderDesign, _CarouselTemplate, _slimArrowLeft, _slimArrowRight, _Button, _Label, _Carousel) {
|
2
2
|
"use strict";
|
3
3
|
|
4
4
|
Object.defineProperty(_exports, "__esModule", {
|
@@ -6,180 +6,32 @@ 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
|
_Integer = _interopRequireDefault(_Integer);
|
11
15
|
_ScrollEnablement = _interopRequireDefault(_ScrollEnablement);
|
12
16
|
_ResizeHandler = _interopRequireDefault(_ResizeHandler);
|
13
17
|
_AnimationMode = _interopRequireDefault(_AnimationMode);
|
14
18
|
_CarouselArrowsPlacement = _interopRequireDefault(_CarouselArrowsPlacement);
|
19
|
+
_CarouselPageIndicatorStyle = _interopRequireDefault(_CarouselPageIndicatorStyle);
|
20
|
+
_BackgroundDesign = _interopRequireDefault(_BackgroundDesign);
|
21
|
+
_BorderDesign = _interopRequireDefault(_BorderDesign);
|
15
22
|
_CarouselTemplate = _interopRequireDefault(_CarouselTemplate);
|
16
23
|
_Button = _interopRequireDefault(_Button);
|
17
24
|
_Label = _interopRequireDefault(_Label);
|
18
25
|
_Carousel = _interopRequireDefault(_Carousel);
|
19
26
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
tag: "ui5-carousel",
|
27
|
-
languageAware: true,
|
28
|
-
fastNavigation: true,
|
29
|
-
properties: /** @lends sap.ui.webcomponents.main.Carousel.prototype */{
|
30
|
-
/**
|
31
|
-
* Defines whether the carousel should loop, i.e show the first page after the last page is reached and vice versa.
|
32
|
-
* @type {boolean}
|
33
|
-
* @defaultvalue false
|
34
|
-
* @public
|
35
|
-
*/
|
36
|
-
cyclic: {
|
37
|
-
type: Boolean
|
38
|
-
},
|
39
|
-
/**
|
40
|
-
* Defines the number of items per page on small size (up to 640px). One item per page shown by default.
|
41
|
-
* @type {Integer}
|
42
|
-
* @defaultvalue 1
|
43
|
-
* @public
|
44
|
-
*/
|
45
|
-
itemsPerPageS: {
|
46
|
-
type: _Integer.default,
|
47
|
-
defaultValue: 1
|
48
|
-
},
|
49
|
-
/**
|
50
|
-
* Defines the number of items per page on medium size (from 640px to 1024px). One item per page shown by default.
|
51
|
-
* @type {Integer}
|
52
|
-
* @defaultvalue 1
|
53
|
-
* @public
|
54
|
-
*/
|
55
|
-
itemsPerPageM: {
|
56
|
-
type: _Integer.default,
|
57
|
-
defaultValue: 1
|
58
|
-
},
|
59
|
-
/**
|
60
|
-
* Defines the number of items per page on large size (more than 1024px). One item per page shown by default.
|
61
|
-
* @type {Integer}
|
62
|
-
* @defaultvalue 1
|
63
|
-
* @public
|
64
|
-
*/
|
65
|
-
itemsPerPageL: {
|
66
|
-
type: _Integer.default,
|
67
|
-
defaultValue: 1
|
68
|
-
},
|
69
|
-
/**
|
70
|
-
* Defines the visibility of the navigation arrows.
|
71
|
-
* If set to true the navigation arrows will be hidden.
|
72
|
-
* <br><br>
|
73
|
-
* <b>Note:</b> The navigation arrows are never displayed on touch devices.
|
74
|
-
* In this case, the user can swipe to navigate through the items.
|
75
|
-
* @type {boolean}
|
76
|
-
* @since 1.0.0-rc.15
|
77
|
-
* @defaultvalue false
|
78
|
-
* @public
|
79
|
-
*/
|
80
|
-
hideNavigationArrows: {
|
81
|
-
type: Boolean
|
82
|
-
},
|
83
|
-
/**
|
84
|
-
* Defines the visibility of the paging indicator.
|
85
|
-
* If set to true the page indicator will be hidden.
|
86
|
-
* @type {boolean}
|
87
|
-
* @since 1.0.0-rc.15
|
88
|
-
* @defaultvalue false
|
89
|
-
* @public
|
90
|
-
*/
|
91
|
-
hidePageIndicator: {
|
92
|
-
type: Boolean
|
93
|
-
},
|
94
|
-
/**
|
95
|
-
* Defines the index of the initially selected item.
|
96
|
-
* @type {Integer}
|
97
|
-
* @defaultvalue 0
|
98
|
-
* @private
|
99
|
-
*/
|
100
|
-
_selectedIndex: {
|
101
|
-
type: _Integer.default,
|
102
|
-
defaultValue: 0
|
103
|
-
},
|
104
|
-
/**
|
105
|
-
* Defines the position of arrows.
|
106
|
-
* <br><br>
|
107
|
-
* Available options are:
|
108
|
-
* <ul>
|
109
|
-
* <li><code>Content</code></li>
|
110
|
-
* <li><code>Navigation</code></li>
|
111
|
-
* </ul>
|
112
|
-
* <br>
|
113
|
-
* When set to "Content", the arrows are placed on the sides of the current page.
|
114
|
-
* <br>
|
115
|
-
* When set to "Navigation", the arrows are placed on the sides of the page indicator.
|
116
|
-
* @type {CarouselArrowsPlacement}
|
117
|
-
* @defaultvalue "Content"
|
118
|
-
* @public
|
119
|
-
*/
|
120
|
-
arrowsPlacement: {
|
121
|
-
type: _CarouselArrowsPlacement.default,
|
122
|
-
defaultValue: _CarouselArrowsPlacement.default.Content
|
123
|
-
},
|
124
|
-
/**
|
125
|
-
* Defines the carousel width in pixels.
|
126
|
-
* @private
|
127
|
-
*/
|
128
|
-
_width: {
|
129
|
-
type: _Integer.default
|
130
|
-
},
|
131
|
-
/**
|
132
|
-
* Defines the carousel item width in pixels.
|
133
|
-
* @private
|
134
|
-
*/
|
135
|
-
_itemWidth: {
|
136
|
-
type: _Integer.default
|
137
|
-
},
|
138
|
-
/**
|
139
|
-
* If set to true navigation arrows are shown.
|
140
|
-
* @private
|
141
|
-
* @since 1.0.0-rc.15
|
142
|
-
*/
|
143
|
-
_visibleNavigationArrows: {
|
144
|
-
type: Boolean,
|
145
|
-
noAttribute: true
|
146
|
-
}
|
147
|
-
},
|
148
|
-
managedSlots: true,
|
149
|
-
slots: /** @lends sap.ui.webcomponents.main.Carousel.prototype */{
|
150
|
-
/**
|
151
|
-
* Defines the content of the component.
|
152
|
-
* @type {HTMLElement[]}
|
153
|
-
* @slot content
|
154
|
-
* @public
|
155
|
-
*/
|
156
|
-
"default": {
|
157
|
-
propertyName: "content",
|
158
|
-
type: HTMLElement,
|
159
|
-
individualSlots: true
|
160
|
-
}
|
161
|
-
},
|
162
|
-
events: /** @lends sap.ui.webcomponents.main.Carousel.prototype */{
|
163
|
-
/**
|
164
|
-
* Fired whenever the page changes due to user interaction,
|
165
|
-
* when the user clicks on the navigation arrows or while resizing,
|
166
|
-
* based on the <code>items-per-page-l</code>, <code>items-per-page-m</code> and <code>items-per-page-s</code> properties.
|
167
|
-
*
|
168
|
-
* @event
|
169
|
-
* @param {Integer} selectedIndex the current selected index
|
170
|
-
* @public
|
171
|
-
* @since 1.0.0-rc.7
|
172
|
-
*/
|
173
|
-
navigate: {
|
174
|
-
detail: {
|
175
|
-
selectedIndex: {
|
176
|
-
type: _Integer.default
|
177
|
-
}
|
178
|
-
}
|
179
|
-
}
|
180
|
-
}
|
27
|
+
var __decorate = void 0 && (void 0).__decorate || function (decorators, target, key, desc) {
|
28
|
+
var c = arguments.length,
|
29
|
+
r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc,
|
30
|
+
d;
|
31
|
+
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;
|
32
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
181
33
|
};
|
182
|
-
|
34
|
+
var Carousel_1;
|
183
35
|
/**
|
184
36
|
* @class
|
185
37
|
*
|
@@ -215,16 +67,24 @@ sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/UI5Element", "sap/
|
|
215
67
|
* When the <code>ui5-carousel</code> is focused the user can navigate between the items
|
216
68
|
* with the following keyboard shortcuts:
|
217
69
|
* <br>
|
70
|
+
* <ul>
|
71
|
+
* <li>[UP/DOWN] - Navigates to previous and next item</li>
|
72
|
+
* <li>[LEFT/RIGHT] - Navigates to previous and next item</li>
|
73
|
+
* </ul>
|
218
74
|
*
|
219
|
-
*
|
75
|
+
* <h3>Fast Navigation</h3>
|
220
76
|
* This component provides a build in fast navigation group which can be used via <code>F6 / Shift + F6</code> or <code> Ctrl + Alt(Option) + Down / Ctrl + Alt(Option) + Up</code>.
|
221
77
|
* In order to use this functionality, you need to import the following module:
|
222
78
|
* <code>import "@ui5/webcomponents-base/dist/features/F6Navigation.js"</code>
|
223
79
|
* <br><br>
|
224
80
|
*
|
81
|
+
* <h3>CSS Shadow Parts</h3>
|
82
|
+
*
|
83
|
+
* <ui5-link target="_blank" href="https://developer.mozilla.org/en-US/docs/Web/CSS/::part">CSS Shadow Parts</ui5-link> allow developers to style elements inside the Shadow DOM.
|
84
|
+
* <br>
|
85
|
+
* The <code>ui5-carousel</code> exposes the following CSS Shadow Parts:
|
225
86
|
* <ul>
|
226
|
-
* <li>
|
227
|
-
* <li>[LEFT/RIGHT] - Navigates to previous and next item</li>
|
87
|
+
* <li>content - Used to style the content of the component</li>
|
228
88
|
* </ul>
|
229
89
|
*
|
230
90
|
* <h3>ES6 Module Import</h3>
|
@@ -233,37 +93,24 @@ sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/UI5Element", "sap/
|
|
233
93
|
*
|
234
94
|
* @constructor
|
235
95
|
* @author SAP SE
|
236
|
-
* @alias sap.ui.
|
237
|
-
* @extends UI5Element
|
96
|
+
* @alias sap.ui.webc.main.Carousel
|
97
|
+
* @extends sap.ui.webc.base.UI5Element
|
238
98
|
* @tagname ui5-carousel
|
239
99
|
* @since 1.0.0-rc.6
|
240
100
|
* @public
|
241
101
|
*/
|
242
|
-
class Carousel extends _UI5Element.default {
|
243
|
-
static get metadata() {
|
244
|
-
return metadata;
|
245
|
-
}
|
246
|
-
static get render() {
|
247
|
-
return _LitRenderer.default;
|
248
|
-
}
|
249
|
-
static get styles() {
|
250
|
-
return _Carousel.default;
|
251
|
-
}
|
252
|
-
static get template() {
|
253
|
-
return _CarouselTemplate.default;
|
254
|
-
}
|
102
|
+
let Carousel = Carousel_1 = class Carousel extends _UI5Element.default {
|
255
103
|
static get pageTypeLimit() {
|
256
104
|
return 9;
|
257
105
|
}
|
258
106
|
constructor() {
|
259
107
|
super();
|
260
108
|
this._scrollEnablement = new _ScrollEnablement.default(this);
|
261
|
-
this._scrollEnablement.attachEvent("touchend",
|
262
|
-
this._updateScrolling(
|
109
|
+
this._scrollEnablement.attachEvent("touchend", e => {
|
110
|
+
this._updateScrolling(e);
|
263
111
|
});
|
264
112
|
this._onResizeBound = this._onResize.bind(this);
|
265
113
|
this._resizing = false; // indicates if the carousel is in process of resizing
|
266
|
-
|
267
114
|
this._lastFocusedElements = [];
|
268
115
|
this._orderOfLastFocusedPages = [];
|
269
116
|
}
|
@@ -291,14 +138,11 @@ sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/UI5Element", "sap/
|
|
291
138
|
}
|
292
139
|
_onResize() {
|
293
140
|
const previousItemsPerPage = this.effectiveItemsPerPage;
|
294
|
-
|
295
141
|
// Set the resizing flag to suppress animation while resizing
|
296
142
|
this._resizing = true;
|
297
|
-
|
298
143
|
// Change transitively effectiveItemsPerPage by modifying _width
|
299
144
|
this._width = this.offsetWidth;
|
300
145
|
this._itemWidth = Math.floor(this._width / this.effectiveItemsPerPage);
|
301
|
-
|
302
146
|
// Items per page did not change or the current,
|
303
147
|
// therefore page index does not need to be re-adjusted
|
304
148
|
if (this.effectiveItemsPerPage === previousItemsPerPage) {
|
@@ -311,41 +155,42 @@ sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/UI5Element", "sap/
|
|
311
155
|
});
|
312
156
|
}
|
313
157
|
}
|
314
|
-
_updateScrolling(
|
315
|
-
if (!
|
158
|
+
_updateScrolling(e) {
|
159
|
+
if (!e) {
|
316
160
|
return;
|
317
161
|
}
|
318
|
-
if (
|
162
|
+
if (e.isLeft) {
|
319
163
|
this.navigateLeft();
|
320
|
-
} else if (
|
164
|
+
} else if (e.isRight) {
|
321
165
|
this.navigateRight();
|
322
166
|
}
|
323
167
|
}
|
324
|
-
async _onkeydown(
|
325
|
-
if ((0, _Keys.isF7)(
|
326
|
-
this._handleF7Key(
|
168
|
+
async _onkeydown(e) {
|
169
|
+
if ((0, _Keys.isF7)(e)) {
|
170
|
+
this._handleF7Key(e);
|
327
171
|
return;
|
328
172
|
}
|
329
|
-
if (
|
173
|
+
if (e.target !== this.getDomRef()) {
|
330
174
|
return;
|
331
175
|
}
|
332
|
-
if ((0, _Keys.isLeft)(
|
176
|
+
if ((0, _Keys.isLeft)(e) || (0, _Keys.isDown)(e)) {
|
333
177
|
this.navigateLeft();
|
334
178
|
await (0, _Render.renderFinished)();
|
335
179
|
this.getDomRef().focus();
|
336
|
-
} else if ((0, _Keys.isRight)(
|
180
|
+
} else if ((0, _Keys.isRight)(e) || (0, _Keys.isUp)(e)) {
|
337
181
|
this.navigateRight();
|
338
182
|
await (0, _Render.renderFinished)();
|
339
183
|
this.getDomRef().focus();
|
340
184
|
}
|
341
185
|
}
|
342
|
-
_onfocusin(
|
343
|
-
|
186
|
+
_onfocusin(e) {
|
187
|
+
const target = e.target;
|
188
|
+
if (target === this.getDomRef()) {
|
344
189
|
return;
|
345
190
|
}
|
346
191
|
let pageIndex = -1;
|
347
192
|
for (let i = 0; i < this.content.length; i++) {
|
348
|
-
if (this.content[i].contains(
|
193
|
+
if (this.content[i].contains(target)) {
|
349
194
|
pageIndex = i;
|
350
195
|
break;
|
351
196
|
}
|
@@ -353,9 +198,8 @@ sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/UI5Element", "sap/
|
|
353
198
|
if (pageIndex === -1) {
|
354
199
|
return;
|
355
200
|
}
|
356
|
-
|
357
201
|
// Save reference of the last focused element for each page
|
358
|
-
this._lastFocusedElements[pageIndex] =
|
202
|
+
this._lastFocusedElements[pageIndex] = target;
|
359
203
|
const sortedPageIndex = this._orderOfLastFocusedPages.indexOf(pageIndex);
|
360
204
|
if (sortedPageIndex === -1) {
|
361
205
|
this._orderOfLastFocusedPages.unshift(pageIndex);
|
@@ -373,14 +217,17 @@ sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/UI5Element", "sap/
|
|
373
217
|
this._visibleNavigationArrows = true;
|
374
218
|
}
|
375
219
|
}
|
376
|
-
_handleF7Key(
|
220
|
+
_handleF7Key(e) {
|
377
221
|
const lastFocusedElement = this._lastFocusedElements[this._getLastFocusedActivePageIndex];
|
378
|
-
if (
|
222
|
+
if (e.target === this.getDomRef() && lastFocusedElement) {
|
379
223
|
lastFocusedElement.focus();
|
380
224
|
} else {
|
381
225
|
this.getDomRef().focus();
|
382
226
|
}
|
383
227
|
}
|
228
|
+
get _backgroundDesign() {
|
229
|
+
return this.backgroundDesign.toLowerCase();
|
230
|
+
}
|
384
231
|
get _getLastFocusedActivePageIndex() {
|
385
232
|
for (let i = 0; i < this._orderOfLastFocusedPages.length; i++) {
|
386
233
|
const pageIndex = this._orderOfLastFocusedPages[i];
|
@@ -424,26 +271,27 @@ sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/UI5Element", "sap/
|
|
424
271
|
});
|
425
272
|
}
|
426
273
|
}
|
427
|
-
_navButtonClick(
|
428
|
-
|
274
|
+
_navButtonClick(e) {
|
275
|
+
const button = e.target;
|
276
|
+
if (button.hasAttribute("arrow-forward")) {
|
429
277
|
this.navigateRight();
|
430
278
|
} else {
|
431
279
|
this.navigateLeft();
|
432
280
|
}
|
433
281
|
this.focus();
|
434
282
|
}
|
435
|
-
|
436
283
|
/**
|
437
284
|
* Changes the currently displayed page.
|
438
285
|
* @param {Integer} itemIndex The index of the target page
|
439
286
|
* @since 1.0.0-rc.15
|
287
|
+
* @method
|
288
|
+
* @name sap.ui.webc.main.Carousel#navigateTo
|
440
289
|
* @public
|
441
290
|
*/
|
442
291
|
navigateTo(itemIndex) {
|
443
292
|
this._resizing = false;
|
444
293
|
this._selectedIndex = itemIndex;
|
445
294
|
}
|
446
|
-
|
447
295
|
/**
|
448
296
|
* Assuming that all items have the same width
|
449
297
|
* @private
|
@@ -455,16 +303,19 @@ sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/UI5Element", "sap/
|
|
455
303
|
id: `${this._id}-carousel-item-${idx + 1}`,
|
456
304
|
item,
|
457
305
|
tabIndex: visible ? "0" : "-1",
|
458
|
-
posinset: idx + 1
|
459
|
-
setsize: this.content.length
|
306
|
+
posinset: `${idx + 1}`,
|
307
|
+
setsize: `${this.content.length}`,
|
460
308
|
styles: {
|
461
|
-
width: `${this._itemWidth}px`
|
309
|
+
width: `${this._itemWidth || 0}px`
|
462
310
|
},
|
463
311
|
classes: visible ? "" : "ui5-carousel-item--hidden"
|
464
312
|
};
|
465
313
|
});
|
466
314
|
}
|
467
315
|
get effectiveItemsPerPage() {
|
316
|
+
if (!this._width) {
|
317
|
+
return this.itemsPerPageL;
|
318
|
+
}
|
468
319
|
if (this._width <= 640) {
|
469
320
|
return this.itemsPerPageS;
|
470
321
|
}
|
@@ -479,7 +330,6 @@ sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/UI5Element", "sap/
|
|
479
330
|
isIndexInRange(index) {
|
480
331
|
return index >= 0 && index <= this.pagesCount - 1;
|
481
332
|
}
|
482
|
-
|
483
333
|
/**
|
484
334
|
* @private
|
485
335
|
*/
|
@@ -499,9 +349,10 @@ sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/UI5Element", "sap/
|
|
499
349
|
return this.pagesCount > 1;
|
500
350
|
}
|
501
351
|
get styles() {
|
352
|
+
const items = this._itemWidth || 0;
|
502
353
|
return {
|
503
354
|
content: {
|
504
|
-
transform: `translateX(${this._isRTL ? "" : "-"}${this._selectedIndex *
|
355
|
+
transform: `translateX(${this._isRTL ? "" : "-"}${this._selectedIndex * items}px`
|
505
356
|
}
|
506
357
|
};
|
507
358
|
}
|
@@ -519,7 +370,9 @@ sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/UI5Element", "sap/
|
|
519
370
|
},
|
520
371
|
navigation: {
|
521
372
|
"ui5-carousel-navigation-wrapper": true,
|
522
|
-
"ui5-carousel-navigation-with-buttons": this.renderNavigation && this.arrowsPlacement === _CarouselArrowsPlacement.default.Navigation && !this.hideNavigationArrows
|
373
|
+
"ui5-carousel-navigation-with-buttons": this.renderNavigation && this.arrowsPlacement === _CarouselArrowsPlacement.default.Navigation && !this.hideNavigationArrows,
|
374
|
+
[`ui5-carousel-navigation-wrapper-bg-${this.pageIndicatorBackgroundDesign.toLowerCase()}`]: true,
|
375
|
+
[`ui5-carousel-navigation-wrapper-border-${this.pageIndicatorBorderDesign.toLowerCase()}`]: true
|
523
376
|
},
|
524
377
|
navPrevButton: {
|
525
378
|
"ui5-carousel-navigation-button--hidden": !this.hasPrev
|
@@ -534,7 +387,10 @@ sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/UI5Element", "sap/
|
|
534
387
|
return items > this.effectiveItemsPerPage ? items - this.effectiveItemsPerPage + 1 : 1;
|
535
388
|
}
|
536
389
|
get isPageTypeDots() {
|
537
|
-
|
390
|
+
if (this.pageIndicatorStyle === _CarouselPageIndicatorStyle.default.Numeric) {
|
391
|
+
return false;
|
392
|
+
}
|
393
|
+
return this.pagesCount < Carousel_1.pageTypeLimit;
|
538
394
|
}
|
539
395
|
get dots() {
|
540
396
|
const dots = [];
|
@@ -542,16 +398,16 @@ sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/UI5Element", "sap/
|
|
542
398
|
for (let index = 0; index < pages; index++) {
|
543
399
|
dots.push({
|
544
400
|
active: index === this._selectedIndex,
|
545
|
-
ariaLabel:
|
401
|
+
ariaLabel: Carousel_1.i18nBundle.getText(_i18nDefaults.CAROUSEL_DOT_TEXT, index + 1, pages)
|
546
402
|
});
|
547
403
|
}
|
548
404
|
return dots;
|
549
405
|
}
|
550
|
-
get
|
551
|
-
const
|
406
|
+
get showArrows() {
|
407
|
+
const displayArrows = this._visibleNavigationArrows && this.hasManyPages && (0, _Device.isDesktop)();
|
552
408
|
return {
|
553
|
-
content: !this.hideNavigationArrows &&
|
554
|
-
navigation: !this.hideNavigationArrows &&
|
409
|
+
content: !this.hideNavigationArrows && displayArrows && this.arrowsPlacement === _CarouselArrowsPlacement.default.Content,
|
410
|
+
navigation: !this.hideNavigationArrows && displayArrows && this.arrowsPlacement === _CarouselArrowsPlacement.default.Navigation
|
555
411
|
};
|
556
412
|
}
|
557
413
|
get hasPrev() {
|
@@ -570,20 +426,20 @@ sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/UI5Element", "sap/
|
|
570
426
|
return this._isRTL ? this.pagesCount - (this.pagesCount - this._selectedIndex) + 1 : this._selectedIndex + 1;
|
571
427
|
}
|
572
428
|
get ofText() {
|
573
|
-
return
|
429
|
+
return Carousel_1.i18nBundle.getText(_i18nDefaults.CAROUSEL_OF_TEXT);
|
574
430
|
}
|
575
431
|
get ariaActiveDescendant() {
|
576
432
|
return this.content.length ? `${this._id}-carousel-item-${this._selectedIndex + 1}` : undefined;
|
577
433
|
}
|
578
434
|
get nextPageText() {
|
579
|
-
return
|
435
|
+
return Carousel_1.i18nBundle.getText(_i18nDefaults.CAROUSEL_NEXT_ARROW_TEXT);
|
580
436
|
}
|
581
437
|
get previousPageText() {
|
582
|
-
return
|
438
|
+
return Carousel_1.i18nBundle.getText(_i18nDefaults.CAROUSEL_PREVIOUS_ARROW_TEXT);
|
583
439
|
}
|
584
|
-
|
585
440
|
/**
|
586
441
|
* The indices of the currently visible items of the component.
|
442
|
+
* @public
|
587
443
|
* @readonly
|
588
444
|
* @since 1.0.0-rc.15
|
589
445
|
* @returns {Integer[]} the indices of the visible items
|
@@ -597,13 +453,95 @@ sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/UI5Element", "sap/
|
|
597
453
|
});
|
598
454
|
return visibleItemsIndices;
|
599
455
|
}
|
600
|
-
static get dependencies() {
|
601
|
-
return [_Button.default, _Label.default];
|
602
|
-
}
|
603
456
|
static async onDefine() {
|
604
|
-
|
457
|
+
Carousel_1.i18nBundle = await (0, _i18nBundle.getI18nBundle)("@ui5/webcomponents");
|
458
|
+
}
|
459
|
+
};
|
460
|
+
__decorate([(0, _property.default)({
|
461
|
+
type: Boolean
|
462
|
+
})], Carousel.prototype, "cyclic", void 0);
|
463
|
+
__decorate([(0, _property.default)({
|
464
|
+
validator: _Integer.default,
|
465
|
+
defaultValue: 1
|
466
|
+
})], Carousel.prototype, "itemsPerPageS", void 0);
|
467
|
+
__decorate([(0, _property.default)({
|
468
|
+
validator: _Integer.default,
|
469
|
+
defaultValue: 1
|
470
|
+
})], Carousel.prototype, "itemsPerPageM", void 0);
|
471
|
+
__decorate([(0, _property.default)({
|
472
|
+
validator: _Integer.default,
|
473
|
+
defaultValue: 1
|
474
|
+
})], Carousel.prototype, "itemsPerPageL", void 0);
|
475
|
+
__decorate([(0, _property.default)({
|
476
|
+
type: Boolean
|
477
|
+
})], Carousel.prototype, "hideNavigationArrows", void 0);
|
478
|
+
__decorate([(0, _property.default)({
|
479
|
+
type: Boolean
|
480
|
+
})], Carousel.prototype, "hidePageIndicator", void 0);
|
481
|
+
__decorate([(0, _property.default)({
|
482
|
+
type: _CarouselPageIndicatorStyle.default,
|
483
|
+
defaultValue: _CarouselPageIndicatorStyle.default.Default
|
484
|
+
})], Carousel.prototype, "pageIndicatorStyle", void 0);
|
485
|
+
__decorate([(0, _property.default)({
|
486
|
+
type: _BackgroundDesign.default,
|
487
|
+
defaultValue: _BackgroundDesign.default.Translucent
|
488
|
+
})], Carousel.prototype, "backgroundDesign", void 0);
|
489
|
+
__decorate([(0, _property.default)({
|
490
|
+
type: _BackgroundDesign.default,
|
491
|
+
defaultValue: _BackgroundDesign.default.Solid
|
492
|
+
})], Carousel.prototype, "pageIndicatorBackgroundDesign", void 0);
|
493
|
+
__decorate([(0, _property.default)({
|
494
|
+
type: _BorderDesign.default,
|
495
|
+
defaultValue: _BorderDesign.default.Solid
|
496
|
+
})], Carousel.prototype, "pageIndicatorBorderDesign", void 0);
|
497
|
+
__decorate([(0, _property.default)({
|
498
|
+
validator: _Integer.default,
|
499
|
+
defaultValue: 0
|
500
|
+
})], Carousel.prototype, "_selectedIndex", void 0);
|
501
|
+
__decorate([(0, _property.default)({
|
502
|
+
type: _CarouselArrowsPlacement.default,
|
503
|
+
defaultValue: _CarouselArrowsPlacement.default.Content
|
504
|
+
})], Carousel.prototype, "arrowsPlacement", void 0);
|
505
|
+
__decorate([(0, _property.default)({
|
506
|
+
validator: _Integer.default
|
507
|
+
})], Carousel.prototype, "_width", void 0);
|
508
|
+
__decorate([(0, _property.default)({
|
509
|
+
validator: _Integer.default
|
510
|
+
})], Carousel.prototype, "_itemWidth", void 0);
|
511
|
+
__decorate([(0, _property.default)({
|
512
|
+
type: Boolean,
|
513
|
+
noAttribute: true
|
514
|
+
})], Carousel.prototype, "_visibleNavigationArrows", void 0);
|
515
|
+
__decorate([(0, _slot.default)({
|
516
|
+
"default": true,
|
517
|
+
type: HTMLElement,
|
518
|
+
individualSlots: true
|
519
|
+
})], Carousel.prototype, "content", void 0);
|
520
|
+
Carousel = Carousel_1 = __decorate([(0, _customElement.default)({
|
521
|
+
tag: "ui5-carousel",
|
522
|
+
languageAware: true,
|
523
|
+
fastNavigation: true,
|
524
|
+
renderer: _LitRenderer.default,
|
525
|
+
styles: _Carousel.default,
|
526
|
+
template: _CarouselTemplate.default,
|
527
|
+
dependencies: [_Button.default, _Label.default]
|
528
|
+
})
|
529
|
+
/**
|
530
|
+
* Fired whenever the page changes due to user interaction,
|
531
|
+
* when the user clicks on the navigation arrows or while resizing,
|
532
|
+
* based on the <code>items-per-page-l</code>, <code>items-per-page-m</code> and <code>items-per-page-s</code> properties.
|
533
|
+
*
|
534
|
+
* @event sap.ui.webc.main.Carousel#navigate
|
535
|
+
* @param {Integer} selectedIndex the current selected index
|
536
|
+
* @public
|
537
|
+
* @since 1.0.0-rc.7
|
538
|
+
*/, (0, _event.default)("navigate", {
|
539
|
+
detail: {
|
540
|
+
selectedIndex: {
|
541
|
+
type: _Integer.default
|
542
|
+
}
|
605
543
|
}
|
606
|
-
}
|
544
|
+
})], Carousel);
|
607
545
|
Carousel.define();
|
608
546
|
var _default = Carousel;
|
609
547
|
_exports.default = _default;
|