@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,185 +1,71 @@
|
|
1
|
-
sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/
|
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/types/ValueState", "./TreeItemBase", "./generated/templates/TreeItemTemplate.lit", "./generated/themes/TreeItem.css"], function (_exports, _customElement, _property, _ValueState, _TreeItemBase, _TreeItemTemplate, _TreeItem) {
|
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
|
-
|
8
|
+
_customElement = _interopRequireDefault(_customElement);
|
9
|
+
_property = _interopRequireDefault(_property);
|
9
10
|
_ValueState = _interopRequireDefault(_ValueState);
|
11
|
+
_TreeItemBase = _interopRequireDefault(_TreeItemBase);
|
12
|
+
_TreeItemTemplate = _interopRequireDefault(_TreeItemTemplate);
|
13
|
+
_TreeItem = _interopRequireDefault(_TreeItem);
|
10
14
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
/**
|
18
|
-
* Defines the text of the tree item.
|
19
|
-
*
|
20
|
-
* @public
|
21
|
-
* @type {string}
|
22
|
-
* @defaultValue ""
|
23
|
-
*/
|
24
|
-
text: {
|
25
|
-
type: String
|
26
|
-
},
|
27
|
-
/**
|
28
|
-
* Defines whether the tree node is expanded or collapsed. Only has visual effect for tree nodes with children.
|
29
|
-
*
|
30
|
-
* @type {boolean}
|
31
|
-
* @defaultvalue false
|
32
|
-
* @public
|
33
|
-
*/
|
34
|
-
expanded: {
|
35
|
-
type: Boolean
|
36
|
-
},
|
37
|
-
/**
|
38
|
-
* Defines whether the selection of a tree node is displayed as partially selected.
|
39
|
-
* <br><br>
|
40
|
-
* <b>Note:</b> The indeterminate state can be set only programatically and can’t be achieved by user
|
41
|
-
* interaction, meaning that the resulting visual state depends on the values of the <code>indeterminate</code>
|
42
|
-
* and <code>selected</code> properties:
|
43
|
-
* <ul>
|
44
|
-
* <li> If a tree node has both <code>selected</code> and <code>indeterminate</code> set to <code>true</code>, it is displayed as partially selected.
|
45
|
-
* <li> If a tree node has <code>selected</code> set to <code>true</code> and <code>indeterminate</code> set to <code>false</code>, it is displayed as selected.
|
46
|
-
* <li> If a tree node has <code>selected</code> set to <code>false</code>, it is displayed as not selected regardless of the value of the <code>indeterminate</code> property.
|
47
|
-
* </ul>
|
48
|
-
* <br>
|
49
|
-
* <b>Note:</b> This property takes effect only when the <code>ui5-tree</code> is in <code>MultiSelect</code> mode.
|
50
|
-
* @type {boolean}
|
51
|
-
* @defaultvalue false
|
52
|
-
* @public
|
53
|
-
* @since 1.1.0
|
54
|
-
*/
|
55
|
-
indeterminate: {
|
56
|
-
type: Boolean
|
57
|
-
},
|
58
|
-
/**
|
59
|
-
* Defines whether the tree node has children, even if currently no other tree nodes are slotted inside.
|
60
|
-
* <br>
|
61
|
-
* <i>Note:</i> This property is useful for showing big tree structures where not all nodes are initially loaded due to performance reasons.
|
62
|
-
* Set this to <code>true</code> for nodes you intend to load lazily, when the user clicks the expand button.
|
63
|
-
* It is not necessary to set this property otherwise. If a tree item has children, the expand button will be displayed anyway.
|
64
|
-
*
|
65
|
-
* @type {boolean}
|
66
|
-
* @defaultvalue false
|
67
|
-
* @public
|
68
|
-
*/
|
69
|
-
hasChildren: {
|
70
|
-
type: Boolean
|
71
|
-
},
|
72
|
-
/**
|
73
|
-
* Defines whether the tree node is selected by the user. Only has effect if the <code>ui5-tree</code> is in one of the
|
74
|
-
* following modes: in <code>SingleSelect</code>, <code>SingleSelectBegin</code>, <code>SingleSelectEnd</code> and <code>MultiSelect</code>.
|
75
|
-
*
|
76
|
-
* @type {boolean}
|
77
|
-
* @defaultvalue false
|
78
|
-
* @public
|
79
|
-
*/
|
80
|
-
selected: {
|
81
|
-
type: Boolean
|
82
|
-
},
|
83
|
-
/**
|
84
|
-
* If set, an icon will be displayed before the text, representing the tree item.
|
85
|
-
*
|
86
|
-
* @public
|
87
|
-
* @type {string}
|
88
|
-
* @defaultValue ""
|
89
|
-
*/
|
90
|
-
icon: {
|
91
|
-
type: String
|
92
|
-
},
|
93
|
-
/**
|
94
|
-
* Defines the <code>additionalText</code>, displayed in the end of the tree item.
|
95
|
-
* @type {string}
|
96
|
-
* @public
|
97
|
-
* @since 1.0.0-rc.15
|
98
|
-
*/
|
99
|
-
additionalText: {
|
100
|
-
type: String
|
101
|
-
},
|
102
|
-
/**
|
103
|
-
* Defines the state of the <code>additionalText</code>.
|
104
|
-
* <br>
|
105
|
-
* Available options are: <code>"None"</code> (by default), <code>"Success"</code>, <code>"Warning"</code>, <code>"Information"</code> and <code>"Erorr"</code>.
|
106
|
-
* @type {ValueState}
|
107
|
-
* @defaultvalue "None"
|
108
|
-
* @public
|
109
|
-
* @since 1.0.0-rc.15
|
110
|
-
*/
|
111
|
-
additionalTextState: {
|
112
|
-
type: _ValueState.default,
|
113
|
-
defaultValue: _ValueState.default.None
|
114
|
-
},
|
115
|
-
/**
|
116
|
-
* Defines the tooltip of the component.
|
117
|
-
* @type {string}
|
118
|
-
* @defaultvalue ""
|
119
|
-
* @private
|
120
|
-
* @since 1.0.0-rc.15
|
121
|
-
*/
|
122
|
-
title: {
|
123
|
-
type: String
|
124
|
-
}
|
125
|
-
},
|
126
|
-
managedSlots: true,
|
127
|
-
slots: /** @lends sap.ui.webcomponents.main.TreeItem.prototype */{
|
128
|
-
/**
|
129
|
-
* Defines the items of this component.
|
130
|
-
*
|
131
|
-
* @type {sap.ui.webcomponents.main.ITreeItem[]}
|
132
|
-
* @slot items
|
133
|
-
* @public
|
134
|
-
*/
|
135
|
-
"default": {
|
136
|
-
propertyName: "items",
|
137
|
-
type: HTMLElement,
|
138
|
-
invalidateOnChildChange: true
|
139
|
-
}
|
140
|
-
}
|
15
|
+
var __decorate = void 0 && (void 0).__decorate || function (decorators, target, key, desc) {
|
16
|
+
var c = arguments.length,
|
17
|
+
r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc,
|
18
|
+
d;
|
19
|
+
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;
|
20
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
141
21
|
};
|
142
|
-
|
143
22
|
/**
|
144
23
|
* @class
|
145
|
-
*
|
146
24
|
* <h3 class="comment-api-title">Overview</h3>
|
25
|
+
* The <code>ui5-tree-item</code> represents a node in a tree structure, shown as a <code>ui5-list</code>.
|
26
|
+
* <br>
|
147
27
|
* This is the item to use inside a <code>ui5-tree</code>.
|
148
28
|
* You can represent an arbitrary tree structure by recursively nesting tree items.
|
149
29
|
*
|
150
|
-
* <h3>
|
151
|
-
*
|
152
|
-
*
|
153
|
-
* <
|
30
|
+
* <h3>CSS Shadow Parts</h3>
|
31
|
+
*
|
32
|
+
* <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.
|
33
|
+
* <br>
|
34
|
+
* The <code>ui5-tree-item</code> exposes the following CSS Shadow Parts:
|
35
|
+
* <ul>
|
36
|
+
* <li>title - Used to style the title of the tree list item</li>
|
37
|
+
* <li>additionalText - Used to style the additionalText of the tree list item</li>
|
38
|
+
* <li>icon - Used to style the icon of the tree list item</li>
|
39
|
+
* </ul>
|
154
40
|
*
|
155
41
|
* <h3>ES6 Module Import</h3>
|
156
42
|
* <code>import "@ui5/webcomponents/dist/TreeItem.js";</code>
|
157
43
|
*
|
158
44
|
* @constructor
|
159
45
|
* @author SAP SE
|
160
|
-
* @alias sap.ui.
|
161
|
-
* @extends
|
46
|
+
* @alias sap.ui.webc.main.TreeItem
|
47
|
+
* @extends sap.ui.webc.main.TreeItemBase
|
162
48
|
* @tagname ui5-tree-item
|
163
49
|
* @public
|
164
|
-
* @implements sap.ui.
|
50
|
+
* @implements sap.ui.webc.main.ITreeItem
|
165
51
|
* @since 1.0.0-rc.8
|
166
52
|
*/
|
167
|
-
class TreeItem extends
|
168
|
-
|
169
|
-
return
|
170
|
-
}
|
171
|
-
get requiresToggleButton() {
|
172
|
-
return this.hasChildren || this.items.length > 0;
|
173
|
-
}
|
174
|
-
|
175
|
-
/**
|
176
|
-
* Call this method to manually switch the <code>expanded</code> state of a tree item.
|
177
|
-
* @public
|
178
|
-
*/
|
179
|
-
toggle() {
|
180
|
-
this.expanded = !this.expanded;
|
53
|
+
let TreeItem = class TreeItem extends _TreeItemBase.default {
|
54
|
+
get _showTitle() {
|
55
|
+
return this.text.length && !this._minimal;
|
181
56
|
}
|
182
|
-
}
|
57
|
+
};
|
58
|
+
__decorate([(0, _property.default)()], TreeItem.prototype, "text", void 0);
|
59
|
+
__decorate([(0, _property.default)()], TreeItem.prototype, "additionalText", void 0);
|
60
|
+
__decorate([(0, _property.default)({
|
61
|
+
type: _ValueState.default,
|
62
|
+
defaultValue: _ValueState.default.None
|
63
|
+
})], TreeItem.prototype, "additionalTextState", void 0);
|
64
|
+
TreeItem = __decorate([(0, _customElement.default)({
|
65
|
+
tag: "ui5-tree-item",
|
66
|
+
template: _TreeItemTemplate.default,
|
67
|
+
styles: [_TreeItemBase.default.styles, _TreeItem.default]
|
68
|
+
})], TreeItem);
|
183
69
|
TreeItem.define();
|
184
70
|
var _default = TreeItem;
|
185
71
|
_exports.default = _default;
|
@@ -0,0 +1,256 @@
|
|
1
|
+
sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/decorators/property", "sap/ui/webc/common/thirdparty/base/decorators/customElement", "sap/ui/webc/common/thirdparty/base/decorators/slot", "sap/ui/webc/common/thirdparty/base/decorators/event", "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/types/ValueState", "./ListItem", "./Icon", "sap/ui/webc/common/thirdparty/icons/navigation-right-arrow", "sap/ui/webc/common/thirdparty/icons/navigation-down-arrow", "./generated/i18n/i18n-defaults", "./generated/templates/TreeItemBaseTemplate.lit", "./generated/themes/TreeItem.css", "./types/HasPopup"], function (_exports, _property, _customElement, _slot, _event, _Integer, _Keys, _i18nBundle, _ValueState, _ListItem, _Icon, _navigationRightArrow, _navigationDownArrow, _i18nDefaults, _TreeItemBaseTemplate, _TreeItem, _HasPopup) {
|
2
|
+
"use strict";
|
3
|
+
|
4
|
+
Object.defineProperty(_exports, "__esModule", {
|
5
|
+
value: true
|
6
|
+
});
|
7
|
+
_exports.default = void 0;
|
8
|
+
_property = _interopRequireDefault(_property);
|
9
|
+
_customElement = _interopRequireDefault(_customElement);
|
10
|
+
_slot = _interopRequireDefault(_slot);
|
11
|
+
_event = _interopRequireDefault(_event);
|
12
|
+
_Integer = _interopRequireDefault(_Integer);
|
13
|
+
_ValueState = _interopRequireDefault(_ValueState);
|
14
|
+
_ListItem = _interopRequireDefault(_ListItem);
|
15
|
+
_Icon = _interopRequireDefault(_Icon);
|
16
|
+
_TreeItemBaseTemplate = _interopRequireDefault(_TreeItemBaseTemplate);
|
17
|
+
_TreeItem = _interopRequireDefault(_TreeItem);
|
18
|
+
_HasPopup = _interopRequireDefault(_HasPopup);
|
19
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
20
|
+
var __decorate = void 0 && (void 0).__decorate || function (decorators, target, key, desc) {
|
21
|
+
var c = arguments.length,
|
22
|
+
r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc,
|
23
|
+
d;
|
24
|
+
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;
|
25
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
26
|
+
};
|
27
|
+
var TreeItemBase_1;
|
28
|
+
/**
|
29
|
+
* A class to serve as a foundation
|
30
|
+
* for the <code>TreeItem</code> and <code>TreeItemCustom</code> classes.
|
31
|
+
*
|
32
|
+
* @abstract
|
33
|
+
* @constructor
|
34
|
+
* @author SAP SE
|
35
|
+
* @alias sap.ui.webc.main.TreeItemBase
|
36
|
+
* @extends sap.ui.webc.main.ListItem
|
37
|
+
* @public
|
38
|
+
*/
|
39
|
+
let TreeItemBase = TreeItemBase_1 = class TreeItemBase extends _ListItem.default {
|
40
|
+
onBeforeRendering() {
|
41
|
+
this.actionable = false;
|
42
|
+
this.showToggleButton = this.requiresToggleButton;
|
43
|
+
}
|
44
|
+
get classes() {
|
45
|
+
const allClasses = super.classes;
|
46
|
+
allClasses.main["ui5-li-root-tree"] = true;
|
47
|
+
return allClasses;
|
48
|
+
}
|
49
|
+
get styles() {
|
50
|
+
return {
|
51
|
+
preContent: {
|
52
|
+
"padding-inline-start": `calc(var(--_ui5-tree-indent-step) * ${this.effectiveLevel})`
|
53
|
+
}
|
54
|
+
};
|
55
|
+
}
|
56
|
+
get requiresToggleButton() {
|
57
|
+
return !this._fixed ? this.hasChildren || this.items.length > 0 : false;
|
58
|
+
}
|
59
|
+
get effectiveLevel() {
|
60
|
+
return this.level - 1;
|
61
|
+
}
|
62
|
+
get hasParent() {
|
63
|
+
return this.level > 1;
|
64
|
+
}
|
65
|
+
get _toggleIconName() {
|
66
|
+
return this.expanded ? "navigation-down-arrow" : "navigation-right-arrow";
|
67
|
+
}
|
68
|
+
get _showToggleButtonBeginning() {
|
69
|
+
return this.showToggleButton && !this._minimal && !this._toggleButtonEnd;
|
70
|
+
}
|
71
|
+
get _showToggleButtonEnd() {
|
72
|
+
return this.showToggleButton && !this._minimal && this._toggleButtonEnd;
|
73
|
+
}
|
74
|
+
get _ariaLabel() {
|
75
|
+
return this.accessibleRoleDescription ? undefined : TreeItemBase_1.i18nBundle.getText(_i18nDefaults.TREE_ITEM_ARIA_LABEL);
|
76
|
+
}
|
77
|
+
get _accInfo() {
|
78
|
+
const accInfoSettings = {
|
79
|
+
role: this._minimal ? "menuitemradio" : "treeitem",
|
80
|
+
ariaExpanded: this.showToggleButton && !this._minimal ? this.expanded : undefined,
|
81
|
+
ariaLevel: this._minimal ? undefined : this.level,
|
82
|
+
posinset: this._posinset,
|
83
|
+
setsize: this._setsize,
|
84
|
+
ariaSelectedText: this.ariaSelectedText,
|
85
|
+
listItemAriaLabel: !this.accessibleName ? this._ariaLabel : undefined,
|
86
|
+
ariaOwns: this.expanded ? `${this._id}-subtree` : undefined,
|
87
|
+
ariaHaspopup: this.ariaHaspopup || undefined,
|
88
|
+
ariaChecked: false,
|
89
|
+
ariaSelected: false
|
90
|
+
};
|
91
|
+
if (this._minimal) {
|
92
|
+
accInfoSettings.ariaChecked = this.selected;
|
93
|
+
} else {
|
94
|
+
accInfoSettings.ariaSelected = this.selected;
|
95
|
+
}
|
96
|
+
return {
|
97
|
+
...super._accInfo,
|
98
|
+
...accInfoSettings
|
99
|
+
};
|
100
|
+
}
|
101
|
+
/**
|
102
|
+
* Used to duck-type TreeItem elements without using instanceof
|
103
|
+
* @returns {boolean}
|
104
|
+
* @protected
|
105
|
+
*/
|
106
|
+
get isTreeItem() {
|
107
|
+
return true;
|
108
|
+
}
|
109
|
+
/**
|
110
|
+
* Call this method to manually switch the <code>expanded</code> state of a tree item.
|
111
|
+
* @public
|
112
|
+
* @method
|
113
|
+
* @name sap.ui.webc.main.TreeItemBase#toggle
|
114
|
+
*/
|
115
|
+
toggle() {
|
116
|
+
this.expanded = !this.expanded;
|
117
|
+
}
|
118
|
+
_toggleClick(e) {
|
119
|
+
e.stopPropagation();
|
120
|
+
this.fireEvent("toggle", {
|
121
|
+
item: this
|
122
|
+
});
|
123
|
+
}
|
124
|
+
_onkeydown(e) {
|
125
|
+
super._onkeydown(e);
|
126
|
+
if (!this._fixed && this.showToggleButton && (0, _Keys.isRight)(e)) {
|
127
|
+
if (!this.expanded) {
|
128
|
+
this.fireEvent("toggle", {
|
129
|
+
item: this
|
130
|
+
});
|
131
|
+
} else {
|
132
|
+
this.fireEvent("step-in", {
|
133
|
+
item: this
|
134
|
+
});
|
135
|
+
}
|
136
|
+
}
|
137
|
+
if (!this._fixed && (0, _Keys.isLeft)(e)) {
|
138
|
+
if (this.expanded) {
|
139
|
+
this.fireEvent("toggle", {
|
140
|
+
item: this
|
141
|
+
});
|
142
|
+
} else if (this.hasParent) {
|
143
|
+
this.fireEvent("step-out", {
|
144
|
+
item: this
|
145
|
+
});
|
146
|
+
}
|
147
|
+
}
|
148
|
+
}
|
149
|
+
get iconAccessibleName() {
|
150
|
+
return this.expanded ? TreeItemBase_1.i18nBundle.getText(_i18nDefaults.TREE_ITEM_COLLAPSE_NODE) : TreeItemBase_1.i18nBundle.getText(_i18nDefaults.TREE_ITEM_EXPAND_NODE);
|
151
|
+
}
|
152
|
+
static async onDefine() {
|
153
|
+
[TreeItemBase_1.i18nBundle] = await Promise.all([(0, _i18nBundle.getI18nBundle)("@ui5/webcomponents"), super.onDefine()]);
|
154
|
+
}
|
155
|
+
};
|
156
|
+
__decorate([(0, _property.default)({
|
157
|
+
validator: _Integer.default,
|
158
|
+
defaultValue: 1
|
159
|
+
})], TreeItemBase.prototype, "level", void 0);
|
160
|
+
__decorate([(0, _property.default)()], TreeItemBase.prototype, "icon", void 0);
|
161
|
+
__decorate([(0, _property.default)({
|
162
|
+
type: Boolean
|
163
|
+
})], TreeItemBase.prototype, "showToggleButton", void 0);
|
164
|
+
__decorate([(0, _property.default)({
|
165
|
+
type: Boolean
|
166
|
+
})], TreeItemBase.prototype, "expanded", void 0);
|
167
|
+
__decorate([(0, _property.default)({
|
168
|
+
type: Boolean
|
169
|
+
})], TreeItemBase.prototype, "indeterminate", void 0);
|
170
|
+
__decorate([(0, _property.default)({
|
171
|
+
type: Boolean
|
172
|
+
})], TreeItemBase.prototype, "hasChildren", void 0);
|
173
|
+
__decorate([(0, _property.default)({
|
174
|
+
type: _ValueState.default,
|
175
|
+
defaultValue: _ValueState.default.None
|
176
|
+
})], TreeItemBase.prototype, "additionalTextState", void 0);
|
177
|
+
__decorate([(0, _property.default)()], TreeItemBase.prototype, "accessibleName", void 0);
|
178
|
+
__decorate([(0, _property.default)({
|
179
|
+
type: Boolean
|
180
|
+
})], TreeItemBase.prototype, "_toggleButtonEnd", void 0);
|
181
|
+
__decorate([(0, _property.default)({
|
182
|
+
type: Boolean
|
183
|
+
})], TreeItemBase.prototype, "_minimal", void 0);
|
184
|
+
__decorate([(0, _property.default)({
|
185
|
+
validator: _Integer.default,
|
186
|
+
defaultValue: 1,
|
187
|
+
noAttribute: true
|
188
|
+
})], TreeItemBase.prototype, "_setsize", void 0);
|
189
|
+
__decorate([(0, _property.default)({
|
190
|
+
validator: _Integer.default,
|
191
|
+
defaultValue: 1,
|
192
|
+
noAttribute: true
|
193
|
+
})], TreeItemBase.prototype, "_posinset", void 0);
|
194
|
+
__decorate([(0, _property.default)({
|
195
|
+
type: String,
|
196
|
+
defaultValue: undefined,
|
197
|
+
noAttribute: true
|
198
|
+
})], TreeItemBase.prototype, "accessibleRoleDescription", void 0);
|
199
|
+
__decorate([(0, _property.default)({
|
200
|
+
type: Boolean
|
201
|
+
})], TreeItemBase.prototype, "_fixed", void 0);
|
202
|
+
__decorate([(0, _property.default)({
|
203
|
+
type: _HasPopup.default,
|
204
|
+
noAttribute: true
|
205
|
+
})], TreeItemBase.prototype, "ariaHaspopup", void 0);
|
206
|
+
__decorate([(0, _slot.default)({
|
207
|
+
type: HTMLElement,
|
208
|
+
"default": true
|
209
|
+
})], TreeItemBase.prototype, "items", void 0);
|
210
|
+
TreeItemBase = TreeItemBase_1 = __decorate([(0, _customElement.default)({
|
211
|
+
languageAware: true,
|
212
|
+
template: _TreeItemBaseTemplate.default,
|
213
|
+
styles: [_ListItem.default.styles, _TreeItem.default],
|
214
|
+
dependencies: [..._ListItem.default.dependencies, _Icon.default]
|
215
|
+
})
|
216
|
+
/**
|
217
|
+
* Fired when the user interacts with the expand/collapse button of the tree list item.
|
218
|
+
* @event
|
219
|
+
* @param {HTMLElement} item the toggled item.
|
220
|
+
* @protected
|
221
|
+
*/, (0, _event.default)("toggle", {
|
222
|
+
detail: {
|
223
|
+
item: {
|
224
|
+
type: HTMLElement
|
225
|
+
}
|
226
|
+
}
|
227
|
+
})
|
228
|
+
/**
|
229
|
+
* Fired when the user drills down into the tree hierarchy by pressing the right arrow on the tree node.
|
230
|
+
*
|
231
|
+
* @event sap.ui.webc.main.TreeItemBase#step-in
|
232
|
+
* @param {HTMLElement} item the item on which right arrow was pressed.
|
233
|
+
* @protected
|
234
|
+
*/, (0, _event.default)("step-in", {
|
235
|
+
detail: {
|
236
|
+
item: {
|
237
|
+
type: HTMLElement
|
238
|
+
}
|
239
|
+
}
|
240
|
+
})
|
241
|
+
/**
|
242
|
+
* Fired when the user goes up the tree hierarchy by pressing the left arrow on the tree node.
|
243
|
+
*
|
244
|
+
* @event sap.ui.webc.main.TreeItemBase#step-out
|
245
|
+
* @param {HTMLElement} item the item on which left arrow was pressed.
|
246
|
+
* @protected
|
247
|
+
*/, (0, _event.default)("step-out", {
|
248
|
+
detail: {
|
249
|
+
item: {
|
250
|
+
type: HTMLElement
|
251
|
+
}
|
252
|
+
}
|
253
|
+
})], TreeItemBase);
|
254
|
+
var _default = TreeItemBase;
|
255
|
+
_exports.default = _default;
|
256
|
+
});
|
@@ -0,0 +1,80 @@
|
|
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", "./TreeItemBase", "./generated/templates/TreeItemCustomTemplate.lit", "./generated/themes/TreeItem.css"], function (_exports, _customElement, _property, _slot, _TreeItemBase, _TreeItemCustomTemplate, _TreeItem) {
|
2
|
+
"use strict";
|
3
|
+
|
4
|
+
Object.defineProperty(_exports, "__esModule", {
|
5
|
+
value: true
|
6
|
+
});
|
7
|
+
_exports.default = void 0;
|
8
|
+
_customElement = _interopRequireDefault(_customElement);
|
9
|
+
_property = _interopRequireDefault(_property);
|
10
|
+
_slot = _interopRequireDefault(_slot);
|
11
|
+
_TreeItemBase = _interopRequireDefault(_TreeItemBase);
|
12
|
+
_TreeItemCustomTemplate = _interopRequireDefault(_TreeItemCustomTemplate);
|
13
|
+
_TreeItem = _interopRequireDefault(_TreeItem);
|
14
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
15
|
+
var __decorate = void 0 && (void 0).__decorate || function (decorators, target, key, desc) {
|
16
|
+
var c = arguments.length,
|
17
|
+
r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc,
|
18
|
+
d;
|
19
|
+
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;
|
20
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
21
|
+
};
|
22
|
+
/**
|
23
|
+
* @class
|
24
|
+
* The <code>ui5-tree-item-custom</code> represents a node in a tree structure, shown as a <code>ui5-list</code>.
|
25
|
+
* <br>
|
26
|
+
* This is the item to use inside a <code>ui5-tree</code>.
|
27
|
+
* You can represent an arbitrary tree structure by recursively nesting tree items.
|
28
|
+
*
|
29
|
+
* You can use this item to put any custom content inside the tree item.
|
30
|
+
*
|
31
|
+
* <h3>CSS Shadow Parts</h3>
|
32
|
+
*
|
33
|
+
* <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.
|
34
|
+
* <br>
|
35
|
+
* The <code>ui5-tree-item-custom</code> exposes the following CSS Shadow Parts:
|
36
|
+
* <ul>
|
37
|
+
* <li>title - Used to style the title of the tree list item</li>
|
38
|
+
* <li>additionalText - Used to style the additionalText of the tree list item</li>
|
39
|
+
* <li>icon - Used to style the icon of the tree list item</li>
|
40
|
+
* </ul>
|
41
|
+
*
|
42
|
+
* <h3>ES6 Module Import</h3>
|
43
|
+
* <code>import "@ui5/webcomponents/dist/TreeItemCustom.js";</code>
|
44
|
+
*
|
45
|
+
* @constructor
|
46
|
+
* @author SAP SE
|
47
|
+
* @alias sap.ui.webc.main.TreeItemCustom
|
48
|
+
* @extends sap.ui.webc.main.TreeItemBase
|
49
|
+
* @tagname ui5-tree-item-custom
|
50
|
+
* @public
|
51
|
+
* @implements sap.ui.webc.main.ITreeItem
|
52
|
+
* @since 1.9.2
|
53
|
+
*/
|
54
|
+
let TreeItemCustom = class TreeItemCustom extends _TreeItemBase.default {
|
55
|
+
/**
|
56
|
+
* @override
|
57
|
+
*/
|
58
|
+
get placeSelectionElementBefore() {
|
59
|
+
return !this.hideSelectionElement && super.placeSelectionElementBefore;
|
60
|
+
}
|
61
|
+
/**
|
62
|
+
* @override
|
63
|
+
*/
|
64
|
+
get placeSelectionElementAfter() {
|
65
|
+
return !this.hideSelectionElement && super.placeSelectionElementAfter;
|
66
|
+
}
|
67
|
+
};
|
68
|
+
__decorate([(0, _property.default)({
|
69
|
+
type: Boolean
|
70
|
+
})], TreeItemCustom.prototype, "hideSelectionElement", void 0);
|
71
|
+
__decorate([(0, _slot.default)()], TreeItemCustom.prototype, "content", void 0);
|
72
|
+
TreeItemCustom = __decorate([(0, _customElement.default)({
|
73
|
+
tag: "ui5-tree-item-custom",
|
74
|
+
template: _TreeItemCustomTemplate.default,
|
75
|
+
styles: [_TreeItemBase.default.styles, _TreeItem.default]
|
76
|
+
})], TreeItemCustom);
|
77
|
+
TreeItemCustom.define();
|
78
|
+
var _default = TreeItemCustom;
|
79
|
+
_exports.default = _default;
|
80
|
+
});
|
@@ -0,0 +1,51 @@
|
|
1
|
+
sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/decorators/customElement", "./List"], function (_exports, _customElement, _List) {
|
2
|
+
"use strict";
|
3
|
+
|
4
|
+
Object.defineProperty(_exports, "__esModule", {
|
5
|
+
value: true
|
6
|
+
});
|
7
|
+
_exports.default = void 0;
|
8
|
+
_customElement = _interopRequireDefault(_customElement);
|
9
|
+
_List = _interopRequireDefault(_List);
|
10
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
11
|
+
var __decorate = void 0 && (void 0).__decorate || function (decorators, target, key, desc) {
|
12
|
+
var c = arguments.length,
|
13
|
+
r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc,
|
14
|
+
d;
|
15
|
+
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;
|
16
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
17
|
+
};
|
18
|
+
let TreeList = class TreeList extends _List.default {
|
19
|
+
/*
|
20
|
+
* @override
|
21
|
+
*/
|
22
|
+
getItems(includeCollapsed = false) {
|
23
|
+
const slottedItems = this.getSlottedNodes("items");
|
24
|
+
const flatItems = [];
|
25
|
+
flattenTree(slottedItems, flatItems, includeCollapsed);
|
26
|
+
return flatItems;
|
27
|
+
}
|
28
|
+
getItemsForProcessing() {
|
29
|
+
return this.getItems(true);
|
30
|
+
}
|
31
|
+
};
|
32
|
+
TreeList = __decorate([(0, _customElement.default)("ui5-tree-list")], TreeList);
|
33
|
+
/*
|
34
|
+
* Converts a tree structure into a flat array
|
35
|
+
*
|
36
|
+
* @param {Array} treeItems
|
37
|
+
* @param {Array} result
|
38
|
+
* @param {Boolean} includeCollapsed
|
39
|
+
*/
|
40
|
+
const flattenTree = (items, result, includeCollapsed = false) => {
|
41
|
+
items.forEach(item => {
|
42
|
+
result.push(item);
|
43
|
+
if ((item.expanded || includeCollapsed) && item.items) {
|
44
|
+
flattenTree(item.items, result, includeCollapsed);
|
45
|
+
}
|
46
|
+
});
|
47
|
+
};
|
48
|
+
TreeList.define();
|
49
|
+
var _default = TreeList;
|
50
|
+
_exports.default = _default;
|
51
|
+
});
|