@openui5/sap.ui.webc.main 1.115.0 → 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
@@ -0,0 +1,72 @@
|
|
1
|
+
sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/renderer/LitRenderer"], function (_exports, _LitRenderer) {
|
2
|
+
"use strict";
|
3
|
+
|
4
|
+
Object.defineProperty(_exports, "__esModule", {
|
5
|
+
value: true
|
6
|
+
});
|
7
|
+
_exports.default = void 0;
|
8
|
+
/* eslint no-unused-vars: 0 */
|
9
|
+
|
10
|
+
function block0(context, tags, suffix) {
|
11
|
+
return (0, _LitRenderer.html)`<div><li part="native-li" data-sap-focus-ref tabindex="${(0, _LitRenderer.ifDefined)(this._effectiveTabIndex)}" class="${(0, _LitRenderer.classMap)(this.classes.main)}" @focusin="${this._onfocusin}" @focusout="${this._onfocusout}" @keyup="${this._onkeyup}" @keydown="${this._onkeydown}" @mouseup="${this._onmouseup}" @mousedown="${this._onmousedown}" @touchstart="${this._ontouchstart}" @touchend="${this._ontouchend}" @click="${this._onclick}" role="${(0, _LitRenderer.ifDefined)(this._accInfo.role)}" aria-expanded="${(0, _LitRenderer.ifDefined)(this._accInfo.ariaExpanded)}" title="${(0, _LitRenderer.ifDefined)(this.title)}" aria-level="${(0, _LitRenderer.ifDefined)(this._accInfo.ariaLevel)}" aria-haspopup="${(0, _LitRenderer.ifDefined)(this._accInfo.ariaHaspopup)}" aria-posinset="${(0, _LitRenderer.ifDefined)(this._accInfo.posinset)}" aria-roledescription="${(0, _LitRenderer.ifDefined)(this.accessibleRoleDescription)}" aria-setsize="${(0, _LitRenderer.ifDefined)(this._accInfo.setsize)}" aria-describedby="${(0, _LitRenderer.ifDefined)(this._id)}-invisibleText-describedby" aria-labelledby="${(0, _LitRenderer.ifDefined)(this._accessibleNameRef)}" aria-disabled="${(0, _LitRenderer.ifDefined)(this._ariaDisabled)}" aria-selected="${(0, _LitRenderer.ifDefined)(this._accInfo.ariaSelected)}" aria-checked="${(0, _LitRenderer.ifDefined)(this._accInfo.ariaChecked)}" aria-owns="${(0, _LitRenderer.ifDefined)(this._accInfo.ariaOwns)}"><div class="ui5-li-tree-toggle-box" style="${(0, _LitRenderer.styleMap)(this.styles.preContent)}">${this._showToggleButtonBeginning ? block1.call(this, context, tags, suffix) : undefined}</div>${this.placeSelectionElementBefore ? block2.call(this, context, tags, suffix) : undefined}<div id="${(0, _LitRenderer.ifDefined)(this._id)}-content" class="ui5-li-content">${this.icon ? block8.call(this, context, tags, suffix) : undefined}</div>${this._showToggleButtonEnd ? block9.call(this, context, tags, suffix) : undefined}${this.typeDetail ? block10.call(this, context, tags, suffix) : undefined}${this.typeNavigation ? block11.call(this, context, tags, suffix) : undefined}${this.navigated ? block12.call(this, context, tags, suffix) : undefined}${this.placeSelectionElementAfter ? block13.call(this, context, tags, suffix) : undefined}<span id="${(0, _LitRenderer.ifDefined)(this._id)}-invisibleText" class="ui5-hidden-text">${(0, _LitRenderer.ifDefined)(this._accInfo.listItemAriaLabel)}${(0, _LitRenderer.ifDefined)(this.accessibleName)}</span><span id="${(0, _LitRenderer.ifDefined)(this._id)}-invisibleText-describedby" class="ui5-hidden-text">${(0, _LitRenderer.ifDefined)(this._accInfo.ariaSelectedText)}</span></li>${this.expanded ? block19.call(this, context, tags, suffix) : undefined}</div>`;
|
12
|
+
}
|
13
|
+
function block1(context, tags, suffix) {
|
14
|
+
return suffix ? (0, _LitRenderer.html)`<${(0, _LitRenderer.scopeTag)("ui5-icon", tags, suffix)} part="toggle-icon" class="ui5-li-tree-toggle-icon" name="${(0, _LitRenderer.ifDefined)(this._toggleIconName)}" show-tooltip accessible-name="${(0, _LitRenderer.ifDefined)(this.iconAccessibleName)}" @click="${this._toggleClick}"></${(0, _LitRenderer.scopeTag)("ui5-icon", tags, suffix)}>` : (0, _LitRenderer.html)`<ui5-icon part="toggle-icon" class="ui5-li-tree-toggle-icon" name="${(0, _LitRenderer.ifDefined)(this._toggleIconName)}" show-tooltip accessible-name="${(0, _LitRenderer.ifDefined)(this.iconAccessibleName)}" @click="${this._toggleClick}"></ui5-icon>`;
|
15
|
+
}
|
16
|
+
function block2(context, tags, suffix) {
|
17
|
+
return (0, _LitRenderer.html)`${this.modeSingleSelect ? block3.call(this, context, tags, suffix) : undefined}${this.modeMultiSelect ? block4.call(this, context, tags, suffix) : undefined}${this.renderDeleteButton ? block5.call(this, context, tags, suffix) : undefined}`;
|
18
|
+
}
|
19
|
+
function block3(context, tags, suffix) {
|
20
|
+
return suffix ? (0, _LitRenderer.html)`<${(0, _LitRenderer.scopeTag)("ui5-radio-button", tags, suffix)} ?disabled="${this.isInactive}" accessible-name="${(0, _LitRenderer.ifDefined)(this._accInfo.ariaLabelRadioButton)}" tabindex="-1" id="${(0, _LitRenderer.ifDefined)(this._id)}-singleSelectionElement" class="ui5-li-singlesel-radiobtn" ?checked="${this.selected}" @click="${this.onSingleSelectionComponentPress}"></${(0, _LitRenderer.scopeTag)("ui5-radio-button", tags, suffix)}>` : (0, _LitRenderer.html)`<ui5-radio-button ?disabled="${this.isInactive}" accessible-name="${(0, _LitRenderer.ifDefined)(this._accInfo.ariaLabelRadioButton)}" tabindex="-1" id="${(0, _LitRenderer.ifDefined)(this._id)}-singleSelectionElement" class="ui5-li-singlesel-radiobtn" ?checked="${this.selected}" @click="${this.onSingleSelectionComponentPress}"></ui5-radio-button>`;
|
21
|
+
}
|
22
|
+
function block4(context, tags, suffix) {
|
23
|
+
return suffix ? (0, _LitRenderer.html)`<${(0, _LitRenderer.scopeTag)("ui5-checkbox", tags, suffix)} ?disabled="${this.isInactive}" ?indeterminate=${this.indeterminate} tabindex="-1" id="${(0, _LitRenderer.ifDefined)(this._id)}-multiSelectionElement" class="ui5-li-multisel-cb" ?checked="${this.selected}" accessible-name="${(0, _LitRenderer.ifDefined)(this._accInfo.ariaLabel)}" @click="${this.onMultiSelectionComponentPress}"></${(0, _LitRenderer.scopeTag)("ui5-checkbox", tags, suffix)}>` : (0, _LitRenderer.html)`<ui5-checkbox ?disabled="${this.isInactive}" ?indeterminate=${this.indeterminate} tabindex="-1" id="${(0, _LitRenderer.ifDefined)(this._id)}-multiSelectionElement" class="ui5-li-multisel-cb" ?checked="${this.selected}" accessible-name="${(0, _LitRenderer.ifDefined)(this._accInfo.ariaLabel)}" @click="${this.onMultiSelectionComponentPress}"></ui5-checkbox>`;
|
24
|
+
}
|
25
|
+
function block5(context, tags, suffix) {
|
26
|
+
return (0, _LitRenderer.html)`<div class="ui5-li-deletebtn">${this.hasDeleteButtonSlot ? block6.call(this, context, tags, suffix) : block7.call(this, context, tags, suffix)}</div>`;
|
27
|
+
}
|
28
|
+
function block6(context, tags, suffix) {
|
29
|
+
return (0, _LitRenderer.html)`<slot name="deleteButton"></slot>`;
|
30
|
+
}
|
31
|
+
function block7(context, tags, suffix) {
|
32
|
+
return suffix ? (0, _LitRenderer.html)`<${(0, _LitRenderer.scopeTag)("ui5-button", tags, suffix)} tabindex="-1" data-sap-no-tab-ref id="${(0, _LitRenderer.ifDefined)(this._id)}-deleteSelectionElement" design="Transparent" icon="decline" ?disabled="${this.disableDeleteButton}" @click="${this.onDelete}" tooltip="${(0, _LitRenderer.ifDefined)(this.deleteText)}"></${(0, _LitRenderer.scopeTag)("ui5-button", tags, suffix)}>` : (0, _LitRenderer.html)`<ui5-button tabindex="-1" data-sap-no-tab-ref id="${(0, _LitRenderer.ifDefined)(this._id)}-deleteSelectionElement" design="Transparent" icon="decline" ?disabled="${this.disableDeleteButton}" @click="${this.onDelete}" tooltip="${(0, _LitRenderer.ifDefined)(this.deleteText)}"></ui5-button>`;
|
33
|
+
}
|
34
|
+
function block8(context, tags, suffix) {
|
35
|
+
return suffix ? (0, _LitRenderer.html)`<${(0, _LitRenderer.scopeTag)("ui5-icon", tags, suffix)} part="icon" name="${(0, _LitRenderer.ifDefined)(this.icon)}" class="ui5-li-icon"></${(0, _LitRenderer.scopeTag)("ui5-icon", tags, suffix)}>` : (0, _LitRenderer.html)`<ui5-icon part="icon" name="${(0, _LitRenderer.ifDefined)(this.icon)}" class="ui5-li-icon"></ui5-icon>`;
|
36
|
+
}
|
37
|
+
function block9(context, tags, suffix) {
|
38
|
+
return suffix ? (0, _LitRenderer.html)`<${(0, _LitRenderer.scopeTag)("ui5-icon", tags, suffix)} part="toggle-icon" class="ui5-li-tree-toggle-icon" name="${(0, _LitRenderer.ifDefined)(this._toggleIconName)}" @click="${this._toggleClick}"></${(0, _LitRenderer.scopeTag)("ui5-icon", tags, suffix)}>` : (0, _LitRenderer.html)`<ui5-icon part="toggle-icon" class="ui5-li-tree-toggle-icon" name="${(0, _LitRenderer.ifDefined)(this._toggleIconName)}" @click="${this._toggleClick}"></ui5-icon>`;
|
39
|
+
}
|
40
|
+
function block10(context, tags, suffix) {
|
41
|
+
return suffix ? (0, _LitRenderer.html)`<div class="ui5-li-detailbtn"><${(0, _LitRenderer.scopeTag)("ui5-button", tags, suffix)} design="Transparent" icon="edit" @click="${this.onDetailClick}"></${(0, _LitRenderer.scopeTag)("ui5-button", tags, suffix)}></div>` : (0, _LitRenderer.html)`<div class="ui5-li-detailbtn"><ui5-button design="Transparent" icon="edit" @click="${this.onDetailClick}"></ui5-button></div>`;
|
42
|
+
}
|
43
|
+
function block11(context, tags, suffix) {
|
44
|
+
return suffix ? (0, _LitRenderer.html)`<${(0, _LitRenderer.scopeTag)("ui5-icon", tags, suffix)} name ="slim-arrow-right"></${(0, _LitRenderer.scopeTag)("ui5-icon", tags, suffix)}>` : (0, _LitRenderer.html)`<ui5-icon name ="slim-arrow-right"></ui5-icon>`;
|
45
|
+
}
|
46
|
+
function block12(context, tags, suffix) {
|
47
|
+
return (0, _LitRenderer.html)`<div class="ui5-li-navigated"></div>`;
|
48
|
+
}
|
49
|
+
function block13(context, tags, suffix) {
|
50
|
+
return (0, _LitRenderer.html)`${this.modeSingleSelect ? block14.call(this, context, tags, suffix) : undefined}${this.modeMultiSelect ? block15.call(this, context, tags, suffix) : undefined}${this.renderDeleteButton ? block16.call(this, context, tags, suffix) : undefined}`;
|
51
|
+
}
|
52
|
+
function block14(context, tags, suffix) {
|
53
|
+
return suffix ? (0, _LitRenderer.html)`<${(0, _LitRenderer.scopeTag)("ui5-radio-button", tags, suffix)} ?disabled="${this.isInactive}" accessible-name="${(0, _LitRenderer.ifDefined)(this._accInfo.ariaLabelRadioButton)}" tabindex="-1" id="${(0, _LitRenderer.ifDefined)(this._id)}-singleSelectionElement" class="ui5-li-singlesel-radiobtn" ?checked="${this.selected}" @click="${this.onSingleSelectionComponentPress}"></${(0, _LitRenderer.scopeTag)("ui5-radio-button", tags, suffix)}>` : (0, _LitRenderer.html)`<ui5-radio-button ?disabled="${this.isInactive}" accessible-name="${(0, _LitRenderer.ifDefined)(this._accInfo.ariaLabelRadioButton)}" tabindex="-1" id="${(0, _LitRenderer.ifDefined)(this._id)}-singleSelectionElement" class="ui5-li-singlesel-radiobtn" ?checked="${this.selected}" @click="${this.onSingleSelectionComponentPress}"></ui5-radio-button>`;
|
54
|
+
}
|
55
|
+
function block15(context, tags, suffix) {
|
56
|
+
return suffix ? (0, _LitRenderer.html)`<${(0, _LitRenderer.scopeTag)("ui5-checkbox", tags, suffix)} ?disabled="${this.isInactive}" ?indeterminate=${this.indeterminate} tabindex="-1" id="${(0, _LitRenderer.ifDefined)(this._id)}-multiSelectionElement" class="ui5-li-multisel-cb" ?checked="${this.selected}" accessible-name="${(0, _LitRenderer.ifDefined)(this._accInfo.ariaLabel)}" @click="${this.onMultiSelectionComponentPress}"></${(0, _LitRenderer.scopeTag)("ui5-checkbox", tags, suffix)}>` : (0, _LitRenderer.html)`<ui5-checkbox ?disabled="${this.isInactive}" ?indeterminate=${this.indeterminate} tabindex="-1" id="${(0, _LitRenderer.ifDefined)(this._id)}-multiSelectionElement" class="ui5-li-multisel-cb" ?checked="${this.selected}" accessible-name="${(0, _LitRenderer.ifDefined)(this._accInfo.ariaLabel)}" @click="${this.onMultiSelectionComponentPress}"></ui5-checkbox>`;
|
57
|
+
}
|
58
|
+
function block16(context, tags, suffix) {
|
59
|
+
return (0, _LitRenderer.html)`<div class="ui5-li-deletebtn">${this.hasDeleteButtonSlot ? block17.call(this, context, tags, suffix) : block18.call(this, context, tags, suffix)}</div>`;
|
60
|
+
}
|
61
|
+
function block17(context, tags, suffix) {
|
62
|
+
return (0, _LitRenderer.html)`<slot name="deleteButton"></slot>`;
|
63
|
+
}
|
64
|
+
function block18(context, tags, suffix) {
|
65
|
+
return suffix ? (0, _LitRenderer.html)`<${(0, _LitRenderer.scopeTag)("ui5-button", tags, suffix)} tabindex="-1" data-sap-no-tab-ref id="${(0, _LitRenderer.ifDefined)(this._id)}-deleteSelectionElement" design="Transparent" icon="decline" ?disabled="${this.disableDeleteButton}" @click="${this.onDelete}" tooltip="${(0, _LitRenderer.ifDefined)(this.deleteText)}"></${(0, _LitRenderer.scopeTag)("ui5-button", tags, suffix)}>` : (0, _LitRenderer.html)`<ui5-button tabindex="-1" data-sap-no-tab-ref id="${(0, _LitRenderer.ifDefined)(this._id)}-deleteSelectionElement" design="Transparent" icon="decline" ?disabled="${this.disableDeleteButton}" @click="${this.onDelete}" tooltip="${(0, _LitRenderer.ifDefined)(this.deleteText)}"></ui5-button>`;
|
66
|
+
}
|
67
|
+
function block19(context, tags, suffix) {
|
68
|
+
return (0, _LitRenderer.html)`<ul role="group" id="${(0, _LitRenderer.ifDefined)(this._id)}-subtree" class="ui5-tree-li-subtree"><slot></slot></ul>`;
|
69
|
+
}
|
70
|
+
var _default = block0;
|
71
|
+
_exports.default = _default;
|
72
|
+
});
|
@@ -0,0 +1,72 @@
|
|
1
|
+
sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/renderer/LitRenderer"], function (_exports, _LitRenderer) {
|
2
|
+
"use strict";
|
3
|
+
|
4
|
+
Object.defineProperty(_exports, "__esModule", {
|
5
|
+
value: true
|
6
|
+
});
|
7
|
+
_exports.default = void 0;
|
8
|
+
/* eslint no-unused-vars: 0 */
|
9
|
+
|
10
|
+
function block0(context, tags, suffix) {
|
11
|
+
return (0, _LitRenderer.html)`<div><li part="native-li" data-sap-focus-ref tabindex="${(0, _LitRenderer.ifDefined)(this._effectiveTabIndex)}" class="${(0, _LitRenderer.classMap)(this.classes.main)}" @focusin="${this._onfocusin}" @focusout="${this._onfocusout}" @keyup="${this._onkeyup}" @keydown="${this._onkeydown}" @mouseup="${this._onmouseup}" @mousedown="${this._onmousedown}" @touchstart="${this._ontouchstart}" @touchend="${this._ontouchend}" @click="${this._onclick}" role="${(0, _LitRenderer.ifDefined)(this._accInfo.role)}" aria-expanded="${(0, _LitRenderer.ifDefined)(this._accInfo.ariaExpanded)}" title="${(0, _LitRenderer.ifDefined)(this.title)}" aria-level="${(0, _LitRenderer.ifDefined)(this._accInfo.ariaLevel)}" aria-haspopup="${(0, _LitRenderer.ifDefined)(this._accInfo.ariaHaspopup)}" aria-posinset="${(0, _LitRenderer.ifDefined)(this._accInfo.posinset)}" aria-roledescription="${(0, _LitRenderer.ifDefined)(this.accessibleRoleDescription)}" aria-setsize="${(0, _LitRenderer.ifDefined)(this._accInfo.setsize)}" aria-describedby="${(0, _LitRenderer.ifDefined)(this._id)}-invisibleText-describedby" aria-labelledby="${(0, _LitRenderer.ifDefined)(this._accessibleNameRef)}" aria-disabled="${(0, _LitRenderer.ifDefined)(this._ariaDisabled)}" aria-selected="${(0, _LitRenderer.ifDefined)(this._accInfo.ariaSelected)}" aria-checked="${(0, _LitRenderer.ifDefined)(this._accInfo.ariaChecked)}" aria-owns="${(0, _LitRenderer.ifDefined)(this._accInfo.ariaOwns)}"><div class="ui5-li-tree-toggle-box" style="${(0, _LitRenderer.styleMap)(this.styles.preContent)}">${this._showToggleButtonBeginning ? block1.call(this, context, tags, suffix) : undefined}</div>${this.placeSelectionElementBefore ? block2.call(this, context, tags, suffix) : undefined}<div id="${(0, _LitRenderer.ifDefined)(this._id)}-content" class="ui5-li-content">${this.icon ? block8.call(this, context, tags, suffix) : undefined}<div class="ui5-li-tree-text-wrapper"><slot name="content" slot="content"></slot></div></div>${this._showToggleButtonEnd ? block9.call(this, context, tags, suffix) : undefined}${this.typeDetail ? block10.call(this, context, tags, suffix) : undefined}${this.typeNavigation ? block11.call(this, context, tags, suffix) : undefined}${this.navigated ? block12.call(this, context, tags, suffix) : undefined}${this.placeSelectionElementAfter ? block13.call(this, context, tags, suffix) : undefined}<span id="${(0, _LitRenderer.ifDefined)(this._id)}-invisibleText" class="ui5-hidden-text">${(0, _LitRenderer.ifDefined)(this._accInfo.listItemAriaLabel)}${(0, _LitRenderer.ifDefined)(this.accessibleName)}</span><span id="${(0, _LitRenderer.ifDefined)(this._id)}-invisibleText-describedby" class="ui5-hidden-text">${(0, _LitRenderer.ifDefined)(this._accInfo.ariaSelectedText)}</span></li>${this.expanded ? block19.call(this, context, tags, suffix) : undefined}</div>`;
|
12
|
+
}
|
13
|
+
function block1(context, tags, suffix) {
|
14
|
+
return suffix ? (0, _LitRenderer.html)`<${(0, _LitRenderer.scopeTag)("ui5-icon", tags, suffix)} part="toggle-icon" class="ui5-li-tree-toggle-icon" name="${(0, _LitRenderer.ifDefined)(this._toggleIconName)}" show-tooltip accessible-name="${(0, _LitRenderer.ifDefined)(this.iconAccessibleName)}" @click="${this._toggleClick}"></${(0, _LitRenderer.scopeTag)("ui5-icon", tags, suffix)}>` : (0, _LitRenderer.html)`<ui5-icon part="toggle-icon" class="ui5-li-tree-toggle-icon" name="${(0, _LitRenderer.ifDefined)(this._toggleIconName)}" show-tooltip accessible-name="${(0, _LitRenderer.ifDefined)(this.iconAccessibleName)}" @click="${this._toggleClick}"></ui5-icon>`;
|
15
|
+
}
|
16
|
+
function block2(context, tags, suffix) {
|
17
|
+
return (0, _LitRenderer.html)`${this.modeSingleSelect ? block3.call(this, context, tags, suffix) : undefined}${this.modeMultiSelect ? block4.call(this, context, tags, suffix) : undefined}${this.renderDeleteButton ? block5.call(this, context, tags, suffix) : undefined}`;
|
18
|
+
}
|
19
|
+
function block3(context, tags, suffix) {
|
20
|
+
return suffix ? (0, _LitRenderer.html)`<${(0, _LitRenderer.scopeTag)("ui5-radio-button", tags, suffix)} ?disabled="${this.isInactive}" accessible-name="${(0, _LitRenderer.ifDefined)(this._accInfo.ariaLabelRadioButton)}" tabindex="-1" id="${(0, _LitRenderer.ifDefined)(this._id)}-singleSelectionElement" class="ui5-li-singlesel-radiobtn" ?checked="${this.selected}" @click="${this.onSingleSelectionComponentPress}"></${(0, _LitRenderer.scopeTag)("ui5-radio-button", tags, suffix)}>` : (0, _LitRenderer.html)`<ui5-radio-button ?disabled="${this.isInactive}" accessible-name="${(0, _LitRenderer.ifDefined)(this._accInfo.ariaLabelRadioButton)}" tabindex="-1" id="${(0, _LitRenderer.ifDefined)(this._id)}-singleSelectionElement" class="ui5-li-singlesel-radiobtn" ?checked="${this.selected}" @click="${this.onSingleSelectionComponentPress}"></ui5-radio-button>`;
|
21
|
+
}
|
22
|
+
function block4(context, tags, suffix) {
|
23
|
+
return suffix ? (0, _LitRenderer.html)`<${(0, _LitRenderer.scopeTag)("ui5-checkbox", tags, suffix)} ?disabled="${this.isInactive}" ?indeterminate=${this.indeterminate} tabindex="-1" id="${(0, _LitRenderer.ifDefined)(this._id)}-multiSelectionElement" class="ui5-li-multisel-cb" ?checked="${this.selected}" accessible-name="${(0, _LitRenderer.ifDefined)(this._accInfo.ariaLabel)}" @click="${this.onMultiSelectionComponentPress}"></${(0, _LitRenderer.scopeTag)("ui5-checkbox", tags, suffix)}>` : (0, _LitRenderer.html)`<ui5-checkbox ?disabled="${this.isInactive}" ?indeterminate=${this.indeterminate} tabindex="-1" id="${(0, _LitRenderer.ifDefined)(this._id)}-multiSelectionElement" class="ui5-li-multisel-cb" ?checked="${this.selected}" accessible-name="${(0, _LitRenderer.ifDefined)(this._accInfo.ariaLabel)}" @click="${this.onMultiSelectionComponentPress}"></ui5-checkbox>`;
|
24
|
+
}
|
25
|
+
function block5(context, tags, suffix) {
|
26
|
+
return (0, _LitRenderer.html)`<div class="ui5-li-deletebtn">${this.hasDeleteButtonSlot ? block6.call(this, context, tags, suffix) : block7.call(this, context, tags, suffix)}</div>`;
|
27
|
+
}
|
28
|
+
function block6(context, tags, suffix) {
|
29
|
+
return (0, _LitRenderer.html)`<slot name="deleteButton"></slot>`;
|
30
|
+
}
|
31
|
+
function block7(context, tags, suffix) {
|
32
|
+
return suffix ? (0, _LitRenderer.html)`<${(0, _LitRenderer.scopeTag)("ui5-button", tags, suffix)} tabindex="-1" data-sap-no-tab-ref id="${(0, _LitRenderer.ifDefined)(this._id)}-deleteSelectionElement" design="Transparent" icon="decline" ?disabled="${this.disableDeleteButton}" @click="${this.onDelete}" tooltip="${(0, _LitRenderer.ifDefined)(this.deleteText)}"></${(0, _LitRenderer.scopeTag)("ui5-button", tags, suffix)}>` : (0, _LitRenderer.html)`<ui5-button tabindex="-1" data-sap-no-tab-ref id="${(0, _LitRenderer.ifDefined)(this._id)}-deleteSelectionElement" design="Transparent" icon="decline" ?disabled="${this.disableDeleteButton}" @click="${this.onDelete}" tooltip="${(0, _LitRenderer.ifDefined)(this.deleteText)}"></ui5-button>`;
|
33
|
+
}
|
34
|
+
function block8(context, tags, suffix) {
|
35
|
+
return suffix ? (0, _LitRenderer.html)`<${(0, _LitRenderer.scopeTag)("ui5-icon", tags, suffix)} part="icon" name="${(0, _LitRenderer.ifDefined)(this.icon)}" class="ui5-li-icon"></${(0, _LitRenderer.scopeTag)("ui5-icon", tags, suffix)}>` : (0, _LitRenderer.html)`<ui5-icon part="icon" name="${(0, _LitRenderer.ifDefined)(this.icon)}" class="ui5-li-icon"></ui5-icon>`;
|
36
|
+
}
|
37
|
+
function block9(context, tags, suffix) {
|
38
|
+
return suffix ? (0, _LitRenderer.html)`<${(0, _LitRenderer.scopeTag)("ui5-icon", tags, suffix)} part="toggle-icon" class="ui5-li-tree-toggle-icon" name="${(0, _LitRenderer.ifDefined)(this._toggleIconName)}" @click="${this._toggleClick}"></${(0, _LitRenderer.scopeTag)("ui5-icon", tags, suffix)}>` : (0, _LitRenderer.html)`<ui5-icon part="toggle-icon" class="ui5-li-tree-toggle-icon" name="${(0, _LitRenderer.ifDefined)(this._toggleIconName)}" @click="${this._toggleClick}"></ui5-icon>`;
|
39
|
+
}
|
40
|
+
function block10(context, tags, suffix) {
|
41
|
+
return suffix ? (0, _LitRenderer.html)`<div class="ui5-li-detailbtn"><${(0, _LitRenderer.scopeTag)("ui5-button", tags, suffix)} design="Transparent" icon="edit" @click="${this.onDetailClick}"></${(0, _LitRenderer.scopeTag)("ui5-button", tags, suffix)}></div>` : (0, _LitRenderer.html)`<div class="ui5-li-detailbtn"><ui5-button design="Transparent" icon="edit" @click="${this.onDetailClick}"></ui5-button></div>`;
|
42
|
+
}
|
43
|
+
function block11(context, tags, suffix) {
|
44
|
+
return suffix ? (0, _LitRenderer.html)`<${(0, _LitRenderer.scopeTag)("ui5-icon", tags, suffix)} name ="slim-arrow-right"></${(0, _LitRenderer.scopeTag)("ui5-icon", tags, suffix)}>` : (0, _LitRenderer.html)`<ui5-icon name ="slim-arrow-right"></ui5-icon>`;
|
45
|
+
}
|
46
|
+
function block12(context, tags, suffix) {
|
47
|
+
return (0, _LitRenderer.html)`<div class="ui5-li-navigated"></div>`;
|
48
|
+
}
|
49
|
+
function block13(context, tags, suffix) {
|
50
|
+
return (0, _LitRenderer.html)`${this.modeSingleSelect ? block14.call(this, context, tags, suffix) : undefined}${this.modeMultiSelect ? block15.call(this, context, tags, suffix) : undefined}${this.renderDeleteButton ? block16.call(this, context, tags, suffix) : undefined}`;
|
51
|
+
}
|
52
|
+
function block14(context, tags, suffix) {
|
53
|
+
return suffix ? (0, _LitRenderer.html)`<${(0, _LitRenderer.scopeTag)("ui5-radio-button", tags, suffix)} ?disabled="${this.isInactive}" accessible-name="${(0, _LitRenderer.ifDefined)(this._accInfo.ariaLabelRadioButton)}" tabindex="-1" id="${(0, _LitRenderer.ifDefined)(this._id)}-singleSelectionElement" class="ui5-li-singlesel-radiobtn" ?checked="${this.selected}" @click="${this.onSingleSelectionComponentPress}"></${(0, _LitRenderer.scopeTag)("ui5-radio-button", tags, suffix)}>` : (0, _LitRenderer.html)`<ui5-radio-button ?disabled="${this.isInactive}" accessible-name="${(0, _LitRenderer.ifDefined)(this._accInfo.ariaLabelRadioButton)}" tabindex="-1" id="${(0, _LitRenderer.ifDefined)(this._id)}-singleSelectionElement" class="ui5-li-singlesel-radiobtn" ?checked="${this.selected}" @click="${this.onSingleSelectionComponentPress}"></ui5-radio-button>`;
|
54
|
+
}
|
55
|
+
function block15(context, tags, suffix) {
|
56
|
+
return suffix ? (0, _LitRenderer.html)`<${(0, _LitRenderer.scopeTag)("ui5-checkbox", tags, suffix)} ?disabled="${this.isInactive}" ?indeterminate=${this.indeterminate} tabindex="-1" id="${(0, _LitRenderer.ifDefined)(this._id)}-multiSelectionElement" class="ui5-li-multisel-cb" ?checked="${this.selected}" accessible-name="${(0, _LitRenderer.ifDefined)(this._accInfo.ariaLabel)}" @click="${this.onMultiSelectionComponentPress}"></${(0, _LitRenderer.scopeTag)("ui5-checkbox", tags, suffix)}>` : (0, _LitRenderer.html)`<ui5-checkbox ?disabled="${this.isInactive}" ?indeterminate=${this.indeterminate} tabindex="-1" id="${(0, _LitRenderer.ifDefined)(this._id)}-multiSelectionElement" class="ui5-li-multisel-cb" ?checked="${this.selected}" accessible-name="${(0, _LitRenderer.ifDefined)(this._accInfo.ariaLabel)}" @click="${this.onMultiSelectionComponentPress}"></ui5-checkbox>`;
|
57
|
+
}
|
58
|
+
function block16(context, tags, suffix) {
|
59
|
+
return (0, _LitRenderer.html)`<div class="ui5-li-deletebtn">${this.hasDeleteButtonSlot ? block17.call(this, context, tags, suffix) : block18.call(this, context, tags, suffix)}</div>`;
|
60
|
+
}
|
61
|
+
function block17(context, tags, suffix) {
|
62
|
+
return (0, _LitRenderer.html)`<slot name="deleteButton"></slot>`;
|
63
|
+
}
|
64
|
+
function block18(context, tags, suffix) {
|
65
|
+
return suffix ? (0, _LitRenderer.html)`<${(0, _LitRenderer.scopeTag)("ui5-button", tags, suffix)} tabindex="-1" data-sap-no-tab-ref id="${(0, _LitRenderer.ifDefined)(this._id)}-deleteSelectionElement" design="Transparent" icon="decline" ?disabled="${this.disableDeleteButton}" @click="${this.onDelete}" tooltip="${(0, _LitRenderer.ifDefined)(this.deleteText)}"></${(0, _LitRenderer.scopeTag)("ui5-button", tags, suffix)}>` : (0, _LitRenderer.html)`<ui5-button tabindex="-1" data-sap-no-tab-ref id="${(0, _LitRenderer.ifDefined)(this._id)}-deleteSelectionElement" design="Transparent" icon="decline" ?disabled="${this.disableDeleteButton}" @click="${this.onDelete}" tooltip="${(0, _LitRenderer.ifDefined)(this.deleteText)}"></ui5-button>`;
|
66
|
+
}
|
67
|
+
function block19(context, tags, suffix) {
|
68
|
+
return (0, _LitRenderer.html)`<ul role="group" id="${(0, _LitRenderer.ifDefined)(this._id)}-subtree" class="ui5-tree-li-subtree"><slot></slot></ul>`;
|
69
|
+
}
|
70
|
+
var _default = block0;
|
71
|
+
_exports.default = _default;
|
72
|
+
});
|
@@ -0,0 +1,78 @@
|
|
1
|
+
sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/renderer/LitRenderer"], function (_exports, _LitRenderer) {
|
2
|
+
"use strict";
|
3
|
+
|
4
|
+
Object.defineProperty(_exports, "__esModule", {
|
5
|
+
value: true
|
6
|
+
});
|
7
|
+
_exports.default = void 0;
|
8
|
+
/* eslint no-unused-vars: 0 */
|
9
|
+
|
10
|
+
function block0(context, tags, suffix) {
|
11
|
+
return (0, _LitRenderer.html)`<div><li part="native-li" data-sap-focus-ref tabindex="${(0, _LitRenderer.ifDefined)(this._effectiveTabIndex)}" class="${(0, _LitRenderer.classMap)(this.classes.main)}" @focusin="${this._onfocusin}" @focusout="${this._onfocusout}" @keyup="${this._onkeyup}" @keydown="${this._onkeydown}" @mouseup="${this._onmouseup}" @mousedown="${this._onmousedown}" @touchstart="${this._ontouchstart}" @touchend="${this._ontouchend}" @click="${this._onclick}" role="${(0, _LitRenderer.ifDefined)(this._accInfo.role)}" aria-expanded="${(0, _LitRenderer.ifDefined)(this._accInfo.ariaExpanded)}" title="${(0, _LitRenderer.ifDefined)(this.title)}" aria-level="${(0, _LitRenderer.ifDefined)(this._accInfo.ariaLevel)}" aria-haspopup="${(0, _LitRenderer.ifDefined)(this._accInfo.ariaHaspopup)}" aria-posinset="${(0, _LitRenderer.ifDefined)(this._accInfo.posinset)}" aria-roledescription="${(0, _LitRenderer.ifDefined)(this.accessibleRoleDescription)}" aria-setsize="${(0, _LitRenderer.ifDefined)(this._accInfo.setsize)}" aria-describedby="${(0, _LitRenderer.ifDefined)(this._id)}-invisibleText-describedby" aria-labelledby="${(0, _LitRenderer.ifDefined)(this._accessibleNameRef)}" aria-disabled="${(0, _LitRenderer.ifDefined)(this._ariaDisabled)}" aria-selected="${(0, _LitRenderer.ifDefined)(this._accInfo.ariaSelected)}" aria-checked="${(0, _LitRenderer.ifDefined)(this._accInfo.ariaChecked)}" aria-owns="${(0, _LitRenderer.ifDefined)(this._accInfo.ariaOwns)}"><div class="ui5-li-tree-toggle-box" style="${(0, _LitRenderer.styleMap)(this.styles.preContent)}">${this._showToggleButtonBeginning ? block1.call(this, context, tags, suffix) : undefined}</div>${this.placeSelectionElementBefore ? block2.call(this, context, tags, suffix) : undefined}<div id="${(0, _LitRenderer.ifDefined)(this._id)}-content" class="ui5-li-content">${this.icon ? block8.call(this, context, tags, suffix) : undefined}<div class="ui5-li-text-wrapper">${this._showTitle ? block9.call(this, context, tags, suffix) : undefined}</div>${this.additionalText ? block10.call(this, context, tags, suffix) : undefined}</div>${this._showToggleButtonEnd ? block11.call(this, context, tags, suffix) : undefined}${this.typeDetail ? block12.call(this, context, tags, suffix) : undefined}${this.typeNavigation ? block13.call(this, context, tags, suffix) : undefined}${this.navigated ? block14.call(this, context, tags, suffix) : undefined}${this.placeSelectionElementAfter ? block15.call(this, context, tags, suffix) : undefined}<span id="${(0, _LitRenderer.ifDefined)(this._id)}-invisibleText" class="ui5-hidden-text">${(0, _LitRenderer.ifDefined)(this._accInfo.listItemAriaLabel)}${(0, _LitRenderer.ifDefined)(this.accessibleName)}</span><span id="${(0, _LitRenderer.ifDefined)(this._id)}-invisibleText-describedby" class="ui5-hidden-text">${(0, _LitRenderer.ifDefined)(this._accInfo.ariaSelectedText)}</span></li>${this.expanded ? block21.call(this, context, tags, suffix) : undefined}</div>`;
|
12
|
+
}
|
13
|
+
function block1(context, tags, suffix) {
|
14
|
+
return suffix ? (0, _LitRenderer.html)`<${(0, _LitRenderer.scopeTag)("ui5-icon", tags, suffix)} part="toggle-icon" class="ui5-li-tree-toggle-icon" name="${(0, _LitRenderer.ifDefined)(this._toggleIconName)}" show-tooltip accessible-name="${(0, _LitRenderer.ifDefined)(this.iconAccessibleName)}" @click="${this._toggleClick}"></${(0, _LitRenderer.scopeTag)("ui5-icon", tags, suffix)}>` : (0, _LitRenderer.html)`<ui5-icon part="toggle-icon" class="ui5-li-tree-toggle-icon" name="${(0, _LitRenderer.ifDefined)(this._toggleIconName)}" show-tooltip accessible-name="${(0, _LitRenderer.ifDefined)(this.iconAccessibleName)}" @click="${this._toggleClick}"></ui5-icon>`;
|
15
|
+
}
|
16
|
+
function block2(context, tags, suffix) {
|
17
|
+
return (0, _LitRenderer.html)`${this.modeSingleSelect ? block3.call(this, context, tags, suffix) : undefined}${this.modeMultiSelect ? block4.call(this, context, tags, suffix) : undefined}${this.renderDeleteButton ? block5.call(this, context, tags, suffix) : undefined}`;
|
18
|
+
}
|
19
|
+
function block3(context, tags, suffix) {
|
20
|
+
return suffix ? (0, _LitRenderer.html)`<${(0, _LitRenderer.scopeTag)("ui5-radio-button", tags, suffix)} ?disabled="${this.isInactive}" accessible-name="${(0, _LitRenderer.ifDefined)(this._accInfo.ariaLabelRadioButton)}" tabindex="-1" id="${(0, _LitRenderer.ifDefined)(this._id)}-singleSelectionElement" class="ui5-li-singlesel-radiobtn" ?checked="${this.selected}" @click="${this.onSingleSelectionComponentPress}"></${(0, _LitRenderer.scopeTag)("ui5-radio-button", tags, suffix)}>` : (0, _LitRenderer.html)`<ui5-radio-button ?disabled="${this.isInactive}" accessible-name="${(0, _LitRenderer.ifDefined)(this._accInfo.ariaLabelRadioButton)}" tabindex="-1" id="${(0, _LitRenderer.ifDefined)(this._id)}-singleSelectionElement" class="ui5-li-singlesel-radiobtn" ?checked="${this.selected}" @click="${this.onSingleSelectionComponentPress}"></ui5-radio-button>`;
|
21
|
+
}
|
22
|
+
function block4(context, tags, suffix) {
|
23
|
+
return suffix ? (0, _LitRenderer.html)`<${(0, _LitRenderer.scopeTag)("ui5-checkbox", tags, suffix)} ?disabled="${this.isInactive}" ?indeterminate=${this.indeterminate} tabindex="-1" id="${(0, _LitRenderer.ifDefined)(this._id)}-multiSelectionElement" class="ui5-li-multisel-cb" ?checked="${this.selected}" accessible-name="${(0, _LitRenderer.ifDefined)(this._accInfo.ariaLabel)}" @click="${this.onMultiSelectionComponentPress}"></${(0, _LitRenderer.scopeTag)("ui5-checkbox", tags, suffix)}>` : (0, _LitRenderer.html)`<ui5-checkbox ?disabled="${this.isInactive}" ?indeterminate=${this.indeterminate} tabindex="-1" id="${(0, _LitRenderer.ifDefined)(this._id)}-multiSelectionElement" class="ui5-li-multisel-cb" ?checked="${this.selected}" accessible-name="${(0, _LitRenderer.ifDefined)(this._accInfo.ariaLabel)}" @click="${this.onMultiSelectionComponentPress}"></ui5-checkbox>`;
|
24
|
+
}
|
25
|
+
function block5(context, tags, suffix) {
|
26
|
+
return (0, _LitRenderer.html)`<div class="ui5-li-deletebtn">${this.hasDeleteButtonSlot ? block6.call(this, context, tags, suffix) : block7.call(this, context, tags, suffix)}</div>`;
|
27
|
+
}
|
28
|
+
function block6(context, tags, suffix) {
|
29
|
+
return (0, _LitRenderer.html)`<slot name="deleteButton"></slot>`;
|
30
|
+
}
|
31
|
+
function block7(context, tags, suffix) {
|
32
|
+
return suffix ? (0, _LitRenderer.html)`<${(0, _LitRenderer.scopeTag)("ui5-button", tags, suffix)} tabindex="-1" data-sap-no-tab-ref id="${(0, _LitRenderer.ifDefined)(this._id)}-deleteSelectionElement" design="Transparent" icon="decline" ?disabled="${this.disableDeleteButton}" @click="${this.onDelete}" tooltip="${(0, _LitRenderer.ifDefined)(this.deleteText)}"></${(0, _LitRenderer.scopeTag)("ui5-button", tags, suffix)}>` : (0, _LitRenderer.html)`<ui5-button tabindex="-1" data-sap-no-tab-ref id="${(0, _LitRenderer.ifDefined)(this._id)}-deleteSelectionElement" design="Transparent" icon="decline" ?disabled="${this.disableDeleteButton}" @click="${this.onDelete}" tooltip="${(0, _LitRenderer.ifDefined)(this.deleteText)}"></ui5-button>`;
|
33
|
+
}
|
34
|
+
function block8(context, tags, suffix) {
|
35
|
+
return suffix ? (0, _LitRenderer.html)`<${(0, _LitRenderer.scopeTag)("ui5-icon", tags, suffix)} part="icon" name="${(0, _LitRenderer.ifDefined)(this.icon)}" class="ui5-li-icon"></${(0, _LitRenderer.scopeTag)("ui5-icon", tags, suffix)}>` : (0, _LitRenderer.html)`<ui5-icon part="icon" name="${(0, _LitRenderer.ifDefined)(this.icon)}" class="ui5-li-icon"></ui5-icon>`;
|
36
|
+
}
|
37
|
+
function block9(context, tags, suffix) {
|
38
|
+
return (0, _LitRenderer.html)`<div part="title" class="ui5-li-title">${(0, _LitRenderer.ifDefined)(this.text)}</div>`;
|
39
|
+
}
|
40
|
+
function block10(context, tags, suffix) {
|
41
|
+
return (0, _LitRenderer.html)`<span part="additional-text" class="ui5-li-additional-text">${(0, _LitRenderer.ifDefined)(this.additionalText)}</span>`;
|
42
|
+
}
|
43
|
+
function block11(context, tags, suffix) {
|
44
|
+
return suffix ? (0, _LitRenderer.html)`<${(0, _LitRenderer.scopeTag)("ui5-icon", tags, suffix)} part="toggle-icon" class="ui5-li-tree-toggle-icon" name="${(0, _LitRenderer.ifDefined)(this._toggleIconName)}" @click="${this._toggleClick}"></${(0, _LitRenderer.scopeTag)("ui5-icon", tags, suffix)}>` : (0, _LitRenderer.html)`<ui5-icon part="toggle-icon" class="ui5-li-tree-toggle-icon" name="${(0, _LitRenderer.ifDefined)(this._toggleIconName)}" @click="${this._toggleClick}"></ui5-icon>`;
|
45
|
+
}
|
46
|
+
function block12(context, tags, suffix) {
|
47
|
+
return suffix ? (0, _LitRenderer.html)`<div class="ui5-li-detailbtn"><${(0, _LitRenderer.scopeTag)("ui5-button", tags, suffix)} design="Transparent" icon="edit" @click="${this.onDetailClick}"></${(0, _LitRenderer.scopeTag)("ui5-button", tags, suffix)}></div>` : (0, _LitRenderer.html)`<div class="ui5-li-detailbtn"><ui5-button design="Transparent" icon="edit" @click="${this.onDetailClick}"></ui5-button></div>`;
|
48
|
+
}
|
49
|
+
function block13(context, tags, suffix) {
|
50
|
+
return suffix ? (0, _LitRenderer.html)`<${(0, _LitRenderer.scopeTag)("ui5-icon", tags, suffix)} name ="slim-arrow-right"></${(0, _LitRenderer.scopeTag)("ui5-icon", tags, suffix)}>` : (0, _LitRenderer.html)`<ui5-icon name ="slim-arrow-right"></ui5-icon>`;
|
51
|
+
}
|
52
|
+
function block14(context, tags, suffix) {
|
53
|
+
return (0, _LitRenderer.html)`<div class="ui5-li-navigated"></div>`;
|
54
|
+
}
|
55
|
+
function block15(context, tags, suffix) {
|
56
|
+
return (0, _LitRenderer.html)`${this.modeSingleSelect ? block16.call(this, context, tags, suffix) : undefined}${this.modeMultiSelect ? block17.call(this, context, tags, suffix) : undefined}${this.renderDeleteButton ? block18.call(this, context, tags, suffix) : undefined}`;
|
57
|
+
}
|
58
|
+
function block16(context, tags, suffix) {
|
59
|
+
return suffix ? (0, _LitRenderer.html)`<${(0, _LitRenderer.scopeTag)("ui5-radio-button", tags, suffix)} ?disabled="${this.isInactive}" accessible-name="${(0, _LitRenderer.ifDefined)(this._accInfo.ariaLabelRadioButton)}" tabindex="-1" id="${(0, _LitRenderer.ifDefined)(this._id)}-singleSelectionElement" class="ui5-li-singlesel-radiobtn" ?checked="${this.selected}" @click="${this.onSingleSelectionComponentPress}"></${(0, _LitRenderer.scopeTag)("ui5-radio-button", tags, suffix)}>` : (0, _LitRenderer.html)`<ui5-radio-button ?disabled="${this.isInactive}" accessible-name="${(0, _LitRenderer.ifDefined)(this._accInfo.ariaLabelRadioButton)}" tabindex="-1" id="${(0, _LitRenderer.ifDefined)(this._id)}-singleSelectionElement" class="ui5-li-singlesel-radiobtn" ?checked="${this.selected}" @click="${this.onSingleSelectionComponentPress}"></ui5-radio-button>`;
|
60
|
+
}
|
61
|
+
function block17(context, tags, suffix) {
|
62
|
+
return suffix ? (0, _LitRenderer.html)`<${(0, _LitRenderer.scopeTag)("ui5-checkbox", tags, suffix)} ?disabled="${this.isInactive}" ?indeterminate=${this.indeterminate} tabindex="-1" id="${(0, _LitRenderer.ifDefined)(this._id)}-multiSelectionElement" class="ui5-li-multisel-cb" ?checked="${this.selected}" accessible-name="${(0, _LitRenderer.ifDefined)(this._accInfo.ariaLabel)}" @click="${this.onMultiSelectionComponentPress}"></${(0, _LitRenderer.scopeTag)("ui5-checkbox", tags, suffix)}>` : (0, _LitRenderer.html)`<ui5-checkbox ?disabled="${this.isInactive}" ?indeterminate=${this.indeterminate} tabindex="-1" id="${(0, _LitRenderer.ifDefined)(this._id)}-multiSelectionElement" class="ui5-li-multisel-cb" ?checked="${this.selected}" accessible-name="${(0, _LitRenderer.ifDefined)(this._accInfo.ariaLabel)}" @click="${this.onMultiSelectionComponentPress}"></ui5-checkbox>`;
|
63
|
+
}
|
64
|
+
function block18(context, tags, suffix) {
|
65
|
+
return (0, _LitRenderer.html)`<div class="ui5-li-deletebtn">${this.hasDeleteButtonSlot ? block19.call(this, context, tags, suffix) : block20.call(this, context, tags, suffix)}</div>`;
|
66
|
+
}
|
67
|
+
function block19(context, tags, suffix) {
|
68
|
+
return (0, _LitRenderer.html)`<slot name="deleteButton"></slot>`;
|
69
|
+
}
|
70
|
+
function block20(context, tags, suffix) {
|
71
|
+
return suffix ? (0, _LitRenderer.html)`<${(0, _LitRenderer.scopeTag)("ui5-button", tags, suffix)} tabindex="-1" data-sap-no-tab-ref id="${(0, _LitRenderer.ifDefined)(this._id)}-deleteSelectionElement" design="Transparent" icon="decline" ?disabled="${this.disableDeleteButton}" @click="${this.onDelete}" tooltip="${(0, _LitRenderer.ifDefined)(this.deleteText)}"></${(0, _LitRenderer.scopeTag)("ui5-button", tags, suffix)}>` : (0, _LitRenderer.html)`<ui5-button tabindex="-1" data-sap-no-tab-ref id="${(0, _LitRenderer.ifDefined)(this._id)}-deleteSelectionElement" design="Transparent" icon="decline" ?disabled="${this.disableDeleteButton}" @click="${this.onDelete}" tooltip="${(0, _LitRenderer.ifDefined)(this.deleteText)}"></ui5-button>`;
|
72
|
+
}
|
73
|
+
function block21(context, tags, suffix) {
|
74
|
+
return (0, _LitRenderer.html)`<ul role="group" id="${(0, _LitRenderer.ifDefined)(this._id)}-subtree" class="ui5-tree-li-subtree"><slot></slot></ul>`;
|
75
|
+
}
|
76
|
+
var _default = block0;
|
77
|
+
_exports.default = _default;
|
78
|
+
});
|
@@ -7,8 +7,12 @@ sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/renderer/LitRender
|
|
7
7
|
_exports.default = void 0;
|
8
8
|
/* eslint no-unused-vars: 0 */
|
9
9
|
|
10
|
-
|
11
|
-
|
10
|
+
function block0(context, tags, suffix) {
|
11
|
+
return suffix ? (0, _LitRenderer.html)`<${(0, _LitRenderer.scopeTag)("ui5-tree-list", tags, suffix)} .mode="${(0, _LitRenderer.ifDefined)(this.mode)}" .headerText="${(0, _LitRenderer.ifDefined)(this.headerText)}" .footerText="${(0, _LitRenderer.ifDefined)(this.footerText)}" .noDataText="${(0, _LitRenderer.ifDefined)(this.noDataText)}" .accessibleRole="${(0, _LitRenderer.ifDefined)(this._role)}" .accessibleName="${(0, _LitRenderer.ifDefined)(this._label)}" .accessibleRoleDescription="${(0, _LitRenderer.ifDefined)(this.accessibleRoleDescription)}" @ui5-item-click="${(0, _LitRenderer.ifDefined)(this._onListItemClick)}" @ui5-item-delete="${(0, _LitRenderer.ifDefined)(this._onListItemDelete)}" @ui5-selection-change="${(0, _LitRenderer.ifDefined)(this._onListSelectionChange)}" @ui5-toggle="${(0, _LitRenderer.ifDefined)(this._onListItemToggle)}" @ui5-step-in="${(0, _LitRenderer.ifDefined)(this._onListItemStepIn)}" @ui5-step-out="${(0, _LitRenderer.ifDefined)(this._onListItemStepOut)}" @mouseover="${this._onListItemMouseOver}" @mouseout="${this._onListItemMouseOut}" class="ui5-tree-root">${this._hasHeader ? block1.call(this, context, tags, suffix) : undefined}<slot></slot></${(0, _LitRenderer.scopeTag)("ui5-tree-list", tags, suffix)}>` : (0, _LitRenderer.html)`<ui5-tree-list .mode="${(0, _LitRenderer.ifDefined)(this.mode)}" .headerText="${(0, _LitRenderer.ifDefined)(this.headerText)}" .footerText="${(0, _LitRenderer.ifDefined)(this.footerText)}" .noDataText="${(0, _LitRenderer.ifDefined)(this.noDataText)}" .accessibleRole="${(0, _LitRenderer.ifDefined)(this._role)}" .accessibleName="${(0, _LitRenderer.ifDefined)(this._label)}" .accessibleRoleDescription="${(0, _LitRenderer.ifDefined)(this.accessibleRoleDescription)}" @ui5-item-click="${(0, _LitRenderer.ifDefined)(this._onListItemClick)}" @ui5-item-delete="${(0, _LitRenderer.ifDefined)(this._onListItemDelete)}" @ui5-selection-change="${(0, _LitRenderer.ifDefined)(this._onListSelectionChange)}" @ui5-toggle="${(0, _LitRenderer.ifDefined)(this._onListItemToggle)}" @ui5-step-in="${(0, _LitRenderer.ifDefined)(this._onListItemStepIn)}" @ui5-step-out="${(0, _LitRenderer.ifDefined)(this._onListItemStepOut)}" @mouseover="${this._onListItemMouseOver}" @mouseout="${this._onListItemMouseOut}" class="ui5-tree-root">${this._hasHeader ? block1.call(this, context, tags, suffix) : undefined}<slot></slot></ui5-tree-list>`;
|
12
|
+
}
|
13
|
+
function block1(context, tags, suffix) {
|
14
|
+
return (0, _LitRenderer.html)`<slot name="header" slot="header"></slot>`;
|
15
|
+
}
|
12
16
|
var _default = block0;
|
13
17
|
_exports.default = _default;
|
14
18
|
});
|
@@ -7,10 +7,18 @@ sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/renderer/LitRender
|
|
7
7
|
_exports.default = void 0;
|
8
8
|
/* eslint no-unused-vars: 0 */
|
9
9
|
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
10
|
+
function block0(context, tags, suffix) {
|
11
|
+
return suffix ? (0, _LitRenderer.html)`<div id="${(0, _LitRenderer.ifDefined)(this._id)}" ?disabled= "${(0, _LitRenderer.ifDefined)(this.disabled)}" value = "${(0, _LitRenderer.ifDefined)(this.value)}" label = "${(0, _LitRenderer.ifDefined)(this.label)}" @click = ${(0, _LitRenderer.ifDefined)(this._onclick)} @keydown=${this._onkeydown} class = "${(0, _LitRenderer.classMap)(this.classes.root)}" data-sap-focus-ref tabindex="0" @wheel="${this._handleWheel}"><div class="ui5-wheelslider-header-block"><div id="${(0, _LitRenderer.ifDefined)(this._id)}--label" class="ui5-wheelslider-label">${(0, _LitRenderer.ifDefined)(this.label)}</div><div class="ui5-wheelslider-invisible-text"></div><${(0, _LitRenderer.scopeTag)("ui5-button", tags, suffix)} class="ui5-wheelslider-arrow" icon="navigation-up-arrow" @click=${this._onArrowUp} tabindex="-1"></${(0, _LitRenderer.scopeTag)("ui5-button", tags, suffix)}></div><div id="${(0, _LitRenderer.ifDefined)(this._id)}--inner" class="ui5-wheelslider-inner"><div id="${(0, _LitRenderer.ifDefined)(this._id)}--selection-frame" class="ui5-wheelslider-selection-frame"></div><div id="${(0, _LitRenderer.ifDefined)(this._id)}--wrapper" class="ui5-wheelslider-wrapper">${this.expanded ? block1.call(this, context, tags, suffix) : block3.call(this, context, tags, suffix)}</div></div><div class="ui5-wheelslider-footer-block"><${(0, _LitRenderer.scopeTag)("ui5-button", tags, suffix)} class="ui5-wheelslider-arrow" icon="navigation-down-arrow" @click=${this._onArrowDown} tabindex="-1"></${(0, _LitRenderer.scopeTag)("ui5-button", tags, suffix)}></div></div>` : (0, _LitRenderer.html)`<div id="${(0, _LitRenderer.ifDefined)(this._id)}" ?disabled= "${(0, _LitRenderer.ifDefined)(this.disabled)}" value = "${(0, _LitRenderer.ifDefined)(this.value)}" label = "${(0, _LitRenderer.ifDefined)(this.label)}" @click = ${(0, _LitRenderer.ifDefined)(this._onclick)} @keydown=${this._onkeydown} class = "${(0, _LitRenderer.classMap)(this.classes.root)}" data-sap-focus-ref tabindex="0" @wheel="${this._handleWheel}"><div class="ui5-wheelslider-header-block"><div id="${(0, _LitRenderer.ifDefined)(this._id)}--label" class="ui5-wheelslider-label">${(0, _LitRenderer.ifDefined)(this.label)}</div><div class="ui5-wheelslider-invisible-text"></div><ui5-button class="ui5-wheelslider-arrow" icon="navigation-up-arrow" @click=${this._onArrowUp} tabindex="-1"></ui5-button></div><div id="${(0, _LitRenderer.ifDefined)(this._id)}--inner" class="ui5-wheelslider-inner"><div id="${(0, _LitRenderer.ifDefined)(this._id)}--selection-frame" class="ui5-wheelslider-selection-frame"></div><div id="${(0, _LitRenderer.ifDefined)(this._id)}--wrapper" class="ui5-wheelslider-wrapper">${this.expanded ? block1.call(this, context, tags, suffix) : block3.call(this, context, tags, suffix)}</div></div><div class="ui5-wheelslider-footer-block"><ui5-button class="ui5-wheelslider-arrow" icon="navigation-down-arrow" @click=${this._onArrowDown} tabindex="-1"></ui5-button></div></div>`;
|
12
|
+
}
|
13
|
+
function block1(context, tags, suffix) {
|
14
|
+
return (0, _LitRenderer.html)`<ul id="${(0, _LitRenderer.ifDefined)(this._id)}--items-list" role="listbox" aria-label="${(0, _LitRenderer.ifDefined)(this.label)}">${(0, _LitRenderer.repeat)(this._itemsToShow, (item, index) => item._id || index, (item, index) => block2.call(this, context, tags, suffix, item, index))}</ul>`;
|
15
|
+
}
|
16
|
+
function block2(context, tags, suffix, item, index) {
|
17
|
+
return (0, _LitRenderer.html)`<li class="ui5-wheelslider-item" data-item-index="${index}" role="option" aria-selected="${(0, _LitRenderer.ifDefined)(item.selected)}">${(0, _LitRenderer.ifDefined)(item.value)}</li>`;
|
18
|
+
}
|
19
|
+
function block3(context, tags, suffix) {
|
20
|
+
return (0, _LitRenderer.html)`<ul id="${(0, _LitRenderer.ifDefined)(this._id)}--items-list" role="listbox" aria-label="${(0, _LitRenderer.ifDefined)(this.label)}"><li class="ui5-wheelslider-item" role="option" aria-selected="true">${(0, _LitRenderer.ifDefined)(this.value)}</li></ul>`;
|
21
|
+
}
|
14
22
|
var _default = block0;
|
15
23
|
_exports.default = _default;
|
16
24
|
});
|
@@ -7,9 +7,18 @@ sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/renderer/LitRender
|
|
7
7
|
_exports.default = void 0;
|
8
8
|
/* eslint no-unused-vars: 0 */
|
9
9
|
|
10
|
-
|
11
|
-
|
12
|
-
|
10
|
+
function block0(context, tags, suffix) {
|
11
|
+
return (0, _LitRenderer.html)`<div class="ui5-yp-root" role="grid" aria-roledescription="${(0, _LitRenderer.ifDefined)(this.roleDescription)}" aria-readonly="false" aria-multiselectable="false" @keydown=${this._onkeydown} @keyup=${this._onkeyup} @click=${this._selectYear}>${(0, _LitRenderer.repeat)(this._years, (item, index) => item._id || index, (item, index) => block1.call(this, context, tags, suffix, item, index))}</div>`;
|
12
|
+
}
|
13
|
+
function block1(context, tags, suffix, item, index) {
|
14
|
+
return (0, _LitRenderer.html)`<div class="ui5-yp-interval-container">${(0, _LitRenderer.repeat)(item, (item, index) => item._id || index, (item, index) => block2.call(this, context, tags, suffix, item, index))}</div>`;
|
15
|
+
}
|
16
|
+
function block2(context, tags, suffix, item, index) {
|
17
|
+
return (0, _LitRenderer.html)`<div data-sap-timestamp="${(0, _LitRenderer.ifDefined)(item.timestamp)}" tabindex="${(0, _LitRenderer.ifDefined)(item._tabIndex)}" ?data-sap-focus-ref="${item.focusRef}" class="${(0, _LitRenderer.ifDefined)(item.classes)}" role="gridcell" aria-selected="${(0, _LitRenderer.ifDefined)(item.ariaSelected)}"><span>${(0, _LitRenderer.ifDefined)(item.year)}</span>${item.yearInSecType ? block3.call(this, context, tags, suffix, item, index) : undefined}</div>`;
|
18
|
+
}
|
19
|
+
function block3(context, tags, suffix, item, index) {
|
20
|
+
return (0, _LitRenderer.html)`<span class="ui5-yp-item-sec-type">${(0, _LitRenderer.ifDefined)(item.yearInSecType)}</span>`;
|
21
|
+
}
|
13
22
|
var _default = block0;
|
14
23
|
_exports.default = _default;
|
15
24
|
});
|
@@ -8,12 +8,13 @@ sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/asset-registries/T
|
|
8
8
|
_parametersBundle = _interopRequireDefault(_parametersBundle);
|
9
9
|
_parametersBundle2 = _interopRequireDefault(_parametersBundle2);
|
10
10
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
11
|
-
(0, _Themes.registerThemePropertiesLoader)("@ui5/webcomponents-theming", "sap_fiori_3", () => _parametersBundle.default);
|
12
|
-
(0, _Themes.registerThemePropertiesLoader)("@ui5/webcomponents", "sap_fiori_3", () => _parametersBundle2.default);
|
13
|
-
|
11
|
+
(0, _Themes.registerThemePropertiesLoader)("@ui5/webcomponents-theming", "sap_fiori_3", async () => _parametersBundle.default);
|
12
|
+
(0, _Themes.registerThemePropertiesLoader)("@ui5/webcomponents", "sap_fiori_3", async () => _parametersBundle2.default);
|
13
|
+
const styleData = {
|
14
14
|
packageName: "@ui5/webcomponents",
|
15
15
|
fileName: "themes/Avatar.css",
|
16
|
-
content: ":host(:not([hidden])){
|
16
|
+
content: ":host(:not([hidden])) {\n\tdisplay: inline-block;\n\tbox-sizing: border-box;\n\tposition: relative;\n}\n\n/*The ui5_hovered class is set by FileUploader to indicate hover state of the control*/\n\n:host(:not([hidden]).ui5_hovered) {\n\topacity: .7;\n}\n\n:host([focused]) {\n\toutline: var(--_ui5_avatar_outline);\n\toutline-offset: var(--_ui5_avatar_focus_offset);\n}\n\n:host([interactive]) {\n\tcursor: pointer;\n}\n\n:host {\n\theight: 3rem;\n\twidth: 3rem;\n\tborder-radius: 50%;\n\tborder: var(--ui5-avatar-initials-border);\n\toutline: none;\n\tcolor: var(--ui5-avatar-initials-color);\n}\n\n.ui5-avatar-root {\n\tdisplay: flex;\n\talign-items: center;\n\tjustify-content: center;\n\toutline: none;\n\theight: 100%;\n\twidth: 100%;\n}\n\n/* Sizes */\n\n:host([_size=\"XS\"]),\n:host([size=\"XS\"]) {\n\theight: 2rem;\n\twidth: 2rem;\n\tmin-height: 2rem;\n\tmin-width: 2rem;\n\tfont-size: var(--_ui5_avatar_fontsize_XS);\n}\n\n:host([_size=\"S\"]),\n:host([size=\"S\"]) {\n\tmin-height: 3rem;\n\tmin-width: 3rem;\n\tfont-size: var(--_ui5_avatar_fontsize_S);\n}\n\n:host([_size=\"M\"]),\n:host([size=\"M\"]) {\n\tmin-height: 4rem;\n\tmin-width: 4rem;\n\tfont-size: var(--_ui5_avatar_fontsize_M);\n}\n\n:host([_size=\"L\"]),\n:host([size=\"L\"]) {\n\tmin-height: 5rem;\n\tmin-width: 5rem;\n\tfont-size: var(--_ui5_avatar_fontsize_L);\n}\n\n:host([_size=\"XL\"]),\n:host([size=\"XL\"]) {\n\tmin-height: 7rem;\n\tmin-width: 7rem;\n\tfont-size: var(--_ui5_avatar_fontsize_XL);\n}\n\n/* Icon */\n\n:host .ui5-avatar-icon {\n\theight: var(--_ui5_avatar_fontsize_S);\n\twidth: var(--_ui5_avatar_fontsize_S);\n\tcolor: inherit;\n}\n\n:host([_size=\"XS\"]) .ui5-avatar-icon,\n:host([size=\"XS\"]) .ui5-avatar-icon {\n\theight: var(--_ui5_avatar_icon_XS);\n\twidth: var(--_ui5_avatar_icon_XS);\n}\n\n:host([_size=\"S\"]) .ui5-avatar-icon,\n:host([size=\"S\"]) .ui5-avatar-icon {\n\theight: var(--_ui5_avatar_icon_S);\n\twidth: var(--_ui5_avatar_icon_S);\n}\n\n:host([_size=\"M\"]) .ui5-avatar-icon,\n:host([size=\"M\"]) .ui5-avatar-icon {\n\theight: var(--_ui5_avatar_icon_M);\n\twidth: var(--_ui5_avatar_icon_M);\n}\n\n:host([_size=\"L\"]) .ui5-avatar-icon,\n:host([size=\"L\"]) .ui5-avatar-icon {\n\theight: var(--_ui5_avatar_icon_L);\n\twidth: var(--_ui5_avatar_icon_L);\n}\n\n:host([_size=\"XL\"]) .ui5-avatar-icon,\n:host([size=\"XL\"]) .ui5-avatar-icon {\n\theight: var(--_ui5_avatar_icon_XL);\n\twidth: var(--_ui5_avatar_icon_XL);\n}\n\n::slotted(*) {\n\tborder-radius: 50%;\n width: 100%;\n height: 100%;\n\tpointer-events: none;\n}\n\n/* Shapes */\n\n:host([shape=\"Square\"]) {\n\tborder-radius: var(--ui5-avatar-border-radius);\n}\n\n:host([shape=\"Square\"]) ::slotted(*) {\n\tborder-radius: calc(var(--ui5-avatar-border-radius) - var(--ui5-avatar-border-radius-img-deduction));\n}\n\n:host(:not([color-scheme])),\n:host(:not([_has-image])),\n:host([_color-scheme=\"Accent6\"]),\n:host([ui5-avatar][color-scheme=\"Accent6\"]) {\n\tbackground-color: var(--ui5-avatar-accent6);\n\tcolor: var(--ui5-avatar-accent6-color);\n\tborder-color: var(--ui5-avatar-accent6-border-color);\n}\n\n:host([_color-scheme=\"Accent1\"]),\n:host([ui5-avatar][color-scheme=\"Accent1\"]) {\n\tbackground-color: var(--ui5-avatar-accent1);\n\tcolor: var(--ui5-avatar-accent1-color);\n\tborder-color: var(--ui5-avatar-accent1-border-color);\n}\n\n:host([_color-scheme=\"Accent2\"]),\n:host([ui5-avatar][color-scheme=\"Accent2\"]) {\n\tbackground-color: var(--ui5-avatar-accent2);\n\tcolor: var(--ui5-avatar-accent2-color);\n\tborder-color: var(--ui5-avatar-accent2-border-color);\n}\n\n:host([_color-scheme=\"Accent3\"]),\n:host([ui5-avatar][color-scheme=\"Accent3\"]) {\n\tbackground-color: var(--ui5-avatar-accent3);\n\tcolor: var(--ui5-avatar-accent3-color);\n\tborder-color: var(--ui5-avatar-accent3-border-color);\n}\n\n:host([_color-scheme=\"Accent4\"]),\n:host([ui5-avatar][color-scheme=\"Accent4\"]) {\n\tbackground-color: var(--ui5-avatar-accent4);\n\tcolor: var(--ui5-avatar-accent4-color);\n\tborder-color: var(--ui5-avatar-accent4-border-color);\n}\n\n:host([_color-scheme=\"Accent5\"]),\n:host([ui5-avatar][color-scheme=\"Accent5\"]) {\n\tbackground-color: var(--ui5-avatar-accent5);\n\tcolor: var(--ui5-avatar-accent5-color);\n\tborder-color: var(--ui5-avatar-accent5-border-color);\n}\n\n:host([_color-scheme=\"Accent7\"]),\n:host([ui5-avatar][color-scheme=\"Accent7\"]) {\n\tbackground-color: var(--ui5-avatar-accent7);\n\tcolor: var(--ui5-avatar-accent7-color);\n\tborder-color: var(--ui5-avatar-accent7-border-color);\n}\n\n:host([_color-scheme=\"Accent8\"]),\n:host([ui5-avatar][color-scheme=\"Accent8\"]) {\n\tbackground-color: var(--ui5-avatar-accent8);\n\tcolor: var(--ui5-avatar-accent8-color);\n\tborder-color: var(--ui5-avatar-accent8-border-color);\n}\n\n:host([_color-scheme=\"Accent9\"]),\n:host([ui5-avatar][color-scheme=\"Accent9\"]) {\n\tbackground-color: var(--ui5-avatar-accent9);\n\tcolor: var(--ui5-avatar-accent9-color);\n\tborder-color: var(--ui5-avatar-accent9-border-color);\n}\n\n:host([_color-scheme=\"Accent10\"]),\n:host([ui5-avatar][color-scheme=\"Accent10\"]) {\n\tbackground-color: var(--ui5-avatar-accent10);\n\tcolor: var(--ui5-avatar-accent10-color);\n\tborder-color: var(--ui5-avatar-accent10-border-color);\n}\n\n:host([_color-scheme=\"Placeholder\"]),\n:host([ui5-avatar][color-scheme=\"Placeholder\"]) {\n\tbackground-color: var(--ui5-avatar-placeholder);\n\tcolor: var(--ui5-avatar-placeholder-color);\n\tborder-color: var(--ui5-avatar-placeholder-border-color);\n}\n\n:host([_has-image]) {\n\tbackground-color: transparent;\n\tvertical-align: middle;\n}\n\n.ui5-avatar-initials {\n\tcolor: inherit;\n}\n\n.ui5-avatar-icon ~ .ui5-avatar-initials,\n.ui5-avatar-icon ~ .ui5-avatar-icon-fallback {\n\tdisplay: none;\n}\n\n.ui5-avatar-initials:not(.ui5-avatar-initials-hidden) + .ui5-avatar-icon-fallback {\n\tdisplay: none;\n}\n\n.ui5-avatar-initials-hidden {\n\tposition: absolute;\n\tvisibility: hidden;\n\tz-index: 0;\n\tpointer-events: none;\n}\n\n/* Slotted Badge */\n\n::slotted([slot=\"badge\"]) {\n\tposition: absolute;\n\tbottom: 0;\n\tright: 0;\n\twidth: 1.125rem;\n\theight: 1.125rem;\n\tbackground: var(--sapButton_Emphasized_Background);\n\tborder: var(--sapButton_Emphasized_Background);\n\tborder-radius: 1rem;\n\tcolor: var(--sapContent_BadgeTextColor);\n\tjustify-content: center;\n\tfont-family: \"72override\", var(--sapFontFamily);\n\tfont-size: var(--sapFontSmallSize);\n}\n\n::slotted([ui5-badge][slot=\"badge\"]) {\n\tpadding: 0.1875rem;\n}\n\n:host([_size=\"L\"]) ::slotted([slot=\"badge\"]),\n:host([size=\"L\"]) ::slotted([slot=\"badge\"]) {\n\twidth: 1.25rem;\n\theight: 1.25rem;\n}\n\n:host([_size=\"XL\"]) ::slotted([slot=\"badge\"]),\n:host([size=\"XL\"]) ::slotted([slot=\"badge\"]) {\n\tpadding: 0.375rem;\n\twidth: 1.75rem;\n\theight: 1.75rem;\n}\n\n:host([shape=\"Square\"]) ::slotted([slot=\"badge\"]) {\n\tbottom: -0.125rem;\n\tright: -0.125rem;\n}\n\n:host([_size=\"L\"][shape=\"Square\"]) ::slotted([slot=\"badge\"]),\n:host([size=\"L\"][shape=\"Square\"]) ::slotted([slot=\"badge\"]) {\n\tbottom: -0.1875rem;\n\tright: -0.1875rem;\n}\n\n:host([_size=\"XL\"][shape=\"Square\"]) ::slotted([slot=\"badge\"]),\n:host([size=\"XL\"][shape=\"Square\"]) ::slotted([slot=\"badge\"]) {\n\tbottom: -0.25rem;\n\tright: -0.25rem;\n}"
|
17
17
|
};
|
18
|
+
var _default = styleData;
|
18
19
|
_exports.default = _default;
|
19
20
|
});
|
@@ -8,12 +8,13 @@ sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/asset-registries/T
|
|
8
8
|
_parametersBundle = _interopRequireDefault(_parametersBundle);
|
9
9
|
_parametersBundle2 = _interopRequireDefault(_parametersBundle2);
|
10
10
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
11
|
-
(0, _Themes.registerThemePropertiesLoader)("@ui5/webcomponents-theming", "sap_fiori_3", () => _parametersBundle.default);
|
12
|
-
(0, _Themes.registerThemePropertiesLoader)("@ui5/webcomponents", "sap_fiori_3", () => _parametersBundle2.default);
|
13
|
-
|
11
|
+
(0, _Themes.registerThemePropertiesLoader)("@ui5/webcomponents-theming", "sap_fiori_3", async () => _parametersBundle.default);
|
12
|
+
(0, _Themes.registerThemePropertiesLoader)("@ui5/webcomponents", "sap_fiori_3", async () => _parametersBundle2.default);
|
13
|
+
const styleData = {
|
14
14
|
packageName: "@ui5/webcomponents",
|
15
15
|
fileName: "themes/AvatarGroup.css",
|
16
|
-
content: ":host{-webkit-tap-highlight-color:rgba(0,0,0,0)}:host(:not([hidden])){
|
16
|
+
content: ":host {\n\t-webkit-tap-highlight-color: rgba(0,0,0,0);\n}\n\n:host(:not([hidden])) {\n\tdisplay: block;\n\twidth: 100%;\n}\n\n:host {\n\t--_ui5_button_focused_border: var(--_ui5_avatar_group_button_focus_border);\n}\n\n.ui5-avatar-group-items:focus {\n\toutline: none;\n}\n\n:host([type=\"Group\"]) .ui5-avatar-group-items:focus {\n\toutline: var(--_ui5_avatar_outline);\n\toutline-offset: var(--_ui5_avatar_focus_offset);\n\tborder-radius: var(--_ui5_avatar_group_focus_border_radius);\n}\n\n.ui5-avatar-group-root {\n\tdisplay: flex;\n}\n\n.ui5-avatar-group-items {\n\twhite-space: nowrap;\n\tposition: relative;\n\tdisplay: inline-flex;\n}\n\n:host([type=\"Group\"]) .ui5-avatar-group-items {\n\tcursor: pointer;\n}\n\n:host([type=\"Group\"]) ::slotted([ui5-button]),\n:host([type=\"Group\"]) ::slotted([ui5-avatar]) {\n\tpointer-events: none;\n}\n\n::slotted([ui5-button]:not([hidden])),\n.ui5-avatar-group-overflow-btn:not([hidden]) {\n\t--_ui5_button_base_padding: 0;\n\tborder-radius: 50%;\n\tdisplay: inline-flex;\n\ttext-overflow: initial;\n\tz-index: 0; /* prevent last visible avatar from covering half of the button */\n}\n\n::slotted([ui5-button][focused]),\n.ui5-avatar-group-overflow-btn[focused] {\n\toutline: var(--_ui5_avatar_outline);\n\toutline-offset: var(--_ui5_avatar_focus_offset);\n}\n\n.ui5-avatar-group-overflow-btn.ui5-avatar-group-overflow-btn-xs {\n\theight: 2rem;\n\twidth: 2rem;\n\tmin-width: 2rem;\n\tfont-size: .75rem;\n}\n\n::slotted([ui5-button]),\n.ui5-avatar-group-overflow-btn.ui5-avatar-group-overflow-btn-s {\n\theight: 3rem;\n\twidth: 3rem;\n\tmin-width: 3rem;\n\tfont-size: 1.125rem;\n}\n\n.ui5-avatar-group-overflow-btn.ui5-avatar-group-overflow-btn-m {\n\theight: 4rem;\n\twidth: 4rem;\n\tmin-width: 4rem;\n\tfont-size: 1.625rem;\n}\n\n.ui5-avatar-group-overflow-btn.ui5-avatar-group-overflow-btn-l {\n\theight: 5rem;\n\twidth: 5rem;\n\tmin-width: 5rem;\n\tfont-size: 2rem;\n}\n\n.ui5-avatar-group-overflow-btn.ui5-avatar-group-overflow-btn-xl {\n\theight: 7rem;\n\twidth: 7rem;\n\tmin-width: 7rem;\n\tfont-size: 2.75rem;\n}"
|
17
17
|
};
|
18
|
+
var _default = styleData;
|
18
19
|
_exports.default = _default;
|
19
20
|
});
|
@@ -8,12 +8,13 @@ sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/asset-registries/T
|
|
8
8
|
_parametersBundle = _interopRequireDefault(_parametersBundle);
|
9
9
|
_parametersBundle2 = _interopRequireDefault(_parametersBundle2);
|
10
10
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
11
|
-
(0, _Themes.registerThemePropertiesLoader)("@ui5/webcomponents-theming", "sap_fiori_3", () => _parametersBundle.default);
|
12
|
-
(0, _Themes.registerThemePropertiesLoader)("@ui5/webcomponents", "sap_fiori_3", () => _parametersBundle2.default);
|
13
|
-
|
11
|
+
(0, _Themes.registerThemePropertiesLoader)("@ui5/webcomponents-theming", "sap_fiori_3", async () => _parametersBundle.default);
|
12
|
+
(0, _Themes.registerThemePropertiesLoader)("@ui5/webcomponents", "sap_fiori_3", async () => _parametersBundle2.default);
|
13
|
+
const styleData = {
|
14
14
|
packageName: "@ui5/webcomponents",
|
15
15
|
fileName: "themes/Badge.css",
|
16
|
-
content: ".ui5-hidden-text{
|
16
|
+
content: ".ui5-hidden-text {\n\tposition: absolute;\n\tclip: rect(1px,1px,1px,1px);\n\tuser-select: none;\n\tleft: -1000px; /* ensure the invisible texts are never part of the viewport */\n\ttop: -1000px;\n\tpointer-events: none;\n\tfont-size: 0;\n}\n\n:host(:not([hidden])) {\n\tdisplay: inline-block;\n\tvertical-align: top;\n\theight: 1rem;\n\tmin-width: 1.125em;\n\tmax-width: 100%;\n\tpadding: 0 0.3125em;\n\tcolor: var(--sapAccentColor1);\n\tbackground: var(--sapLegendBackgroundColor1);\n\tborder: 0.0625em solid;\n\tborder-radius: 0.5rem;\n\tbox-sizing: border-box;\n\tfont-family: \"72override\", var(--sapFontFamily);\n\tfont-weight: bold;\n\ttext-align: center;\n\tletter-spacing: 0.0125em;\n}\n\n:host([color-scheme]:hover),\n:host(:not([color-scheme]):hover) {\n\tcursor: var(--_ui5-badge-cursor);\n}\n\n.ui5-badge-root {\n\tdisplay: flex;\n\talign-items: center;\n\twidth: 100%;\n\theight: 100%;\n\tbox-sizing: border-box;\n\tpointer-events: none;\n}\n\n.ui5-badge-text {\n\twidth: 100%;\n\toverflow: hidden;\n\twhite-space: nowrap;\n\tfont-weight: inherit;\n\ttext-overflow: ellipsis;\n\tline-height: 1;\n\ttext-transform: uppercase;\n\tletter-spacing: inherit;\n\tfont-size: 0.75em; /* origin from --sapFontSmallSize (0.75rem) */\n}\n\n:host(:hover) .ui5-badge-text {\n\tcursor: var(--_ui5-badge-cursor);\n}\n\n:host([_icon-only]) {\n\tpadding: 0 0.1875em;\n}\n\n::slotted([ui5-icon]) {\n\twidth: 0.75em;\n\theight: 0.75em;\n\tmin-width: 0.75em;\n\tmin-height: 0.75em;\n\tcolor: inherit;\n}\n\n:host([_has-icon]) .ui5-badge-text {\n\tpadding-inline-start: 0.125rem;\n}\n\n/* Scheme 1 */\n\n:host([color-scheme=\"1\"]) {\n\tbackground-color: var(--ui5-badge-color-scheme-1-background);\n\tborder-color: var(--ui5-badge-color-scheme-1-border);\n\tcolor: var(--ui5-badge-color-scheme-1-color);\n}\n\n/* Scheme 2 */\n\n:host([color-scheme=\"2\"]) {\n\tbackground-color: var(--ui5-badge-color-scheme-2-background);\n\tborder-color: var(--ui5-badge-color-scheme-2-border);\n\tcolor: var(--ui5-badge-color-scheme-2-color);\n}\n\n/* Scheme 3 */\n\n:host([color-scheme=\"3\"]) {\n\tbackground-color: var(--ui5-badge-color-scheme-3-background);\n\tborder-color: var(--ui5-badge-color-scheme-3-border);\n\tcolor: var(--ui5-badge-color-scheme-3-color);\n}\n\n/* Scheme 4 */\n\n:host([color-scheme=\"4\"]) {\n\tbackground-color: var(--ui5-badge-color-scheme-4-background);\n\tborder-color: var(--ui5-badge-color-scheme-4-border);\n\tcolor: var(--ui5-badge-color-scheme-4-color);\n}\n\n/* Scheme 5 */\n\n:host([color-scheme=\"5\"]) {\n\tbackground-color: var(--ui5-badge-color-scheme-5-background);\n\tborder-color: var(--ui5-badge-color-scheme-5-border);\n\tcolor: var(--ui5-badge-color-scheme-5-color);\n}\n\n/* Scheme 6 */\n\n:host([color-scheme=\"6\"]) {\n\tbackground-color: var(--ui5-badge-color-scheme-6-background);\n\tborder-color: var(--ui5-badge-color-scheme-6-border);\n\tcolor: var(--ui5-badge-color-scheme-6-color);\n}\n\n/* Scheme 7 */\n\n:host([color-scheme=\"7\"]) {\n\tbackground-color: var(--ui5-badge-color-scheme-7-background);\n\tborder-color: var(--ui5-badge-color-scheme-7-border);\n\tcolor: var(--ui5-badge-color-scheme-7-color);\n}\n\n/* Scheme 8 */\n\n:host([color-scheme=\"8\"]) {\n\tbackground-color: var(--ui5-badge-color-scheme-8-background);\n\tborder-color: var(--ui5-badge-color-scheme-8-border);\n\tcolor: var(--ui5-badge-color-scheme-8-color);\n}\n\n/* Scheme 9 */\n\n:host([color-scheme=\"9\"]) {\n\tbackground-color: var(--ui5-badge-color-scheme-9-background);\n\tborder-color: var(--ui5-badge-color-scheme-9-border);\n\tcolor: var(--ui5-badge-color-scheme-9-color);\n}\n\n/* Scheme 10 */\n\n:host([color-scheme=\"10\"]) {\n\tbackground-color: var(--ui5-badge-color-scheme-10-background);\n\tborder-color: var(--ui5-badge-color-scheme-10-border);\n\tcolor: var(--ui5-badge-color-scheme-10-color);\n}\n\n/* ---Slotted Badges--- */\n\n/* [ui5-avatar] - Badge icon styles */\n\n/* Make icon take full width minus padding.\n [ui5-avatar] is the only component using an icon for badge,\n therefore no additional scoping is needed. */\n\n:host([slot=\"badge\"]) ::slotted([ui5-icon][slot=\"icon\"]) {\n\twidth: 100%;\n\theight: 100%;\n\tmin-width: 100%;\n\tmin-height: 100%;\n}"
|
17
17
|
};
|
18
|
+
var _default = styleData;
|
18
19
|
_exports.default = _default;
|
19
20
|
});
|
@@ -8,12 +8,13 @@ sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/asset-registries/T
|
|
8
8
|
_parametersBundle = _interopRequireDefault(_parametersBundle);
|
9
9
|
_parametersBundle2 = _interopRequireDefault(_parametersBundle2);
|
10
10
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
11
|
-
(0, _Themes.registerThemePropertiesLoader)("@ui5/webcomponents-theming", "sap_fiori_3", () => _parametersBundle.default);
|
12
|
-
(0, _Themes.registerThemePropertiesLoader)("@ui5/webcomponents", "sap_fiori_3", () => _parametersBundle2.default);
|
13
|
-
|
11
|
+
(0, _Themes.registerThemePropertiesLoader)("@ui5/webcomponents-theming", "sap_fiori_3", async () => _parametersBundle.default);
|
12
|
+
(0, _Themes.registerThemePropertiesLoader)("@ui5/webcomponents", "sap_fiori_3", async () => _parametersBundle2.default);
|
13
|
+
const styleData = {
|
14
14
|
packageName: "@ui5/webcomponents",
|
15
15
|
fileName: "themes/Breadcrumbs.css",
|
16
|
-
content: ".ui5-breadcrumbs-root{white-space:nowrap
|
16
|
+
content: ":host(:not([hidden])) {\n\tdisplay: block;\n\twidth: 100%;\n}\n\n.ui5-breadcrumbs-root {\n white-space: nowrap;\n outline: none;\n margin: 0 0 0.5rem 0;\n}\n\n.ui5-breadcrumbs-root > ol {\n margin: 0;\n padding: 0;\n list-style-type: none;\n display: -webkit-box;\n display: -webkit-flex;\n display: flex;\n}\n\n.ui5-breadcrumbs-root > ol > li {\n display: inline;\n}\n\n.ui5-breadcrumbs-current-location {\n min-width: 1%;\n -webkit-flex: 1;\n -webkit-box-flex: 1;\n flex: 1 1 auto;\n /* Fix extra height in ul -> li element */\n font-size: 0;\n align-self: center;\n}\n\n.ui5-breadcrumbs-current-location > span:focus {\n outline: var(--sapContent_FocusWidth) var(--sapContent_FocusStyle) var(--sapContent_FocusColor);\n border-radius: var(--_ui5_breadcrumbs_current_location_focus_border_radius);\n}\n\n.ui5-breadcrumbs-dropdown-arrow-link-wrapper[hidden] {\n display: none\n}\n\n.ui5-breadcrumbs-dropdown-arrow-link-wrapper [ui5-icon] {\n width: var(--sapFontSize);\n height: var(--sapFontSize);\n padding-left: .675rem;\n vertical-align: text-top;\n color: var(--sapLinkColor);\n}\n\n.ui5-breadcrumbs-dropdown-arrow-link-wrapper [ui5-link][focused] [ui5-icon] {\n color: var(--_ui5_link_focus_color);\n}\n\n.ui5-breadcrumbs-dropdown-arrow-link-wrapper [ui5-icon]::before {\n content: \"...\";\n vertical-align: middle;\n position: absolute;\n left: 0;\n bottom: 0;\n}\n\n/* underline icon on hover */\n\n.ui5-breadcrumbs-dropdown-arrow-link-wrapper [ui5-link][focused] [ui5-icon]::after,\n.ui5-breadcrumbs-dropdown-arrow-link-wrapper:hover [ui5-icon]::after {\n content: \"\";\n position: absolute;\n border-bottom: 0.0625rem solid;\n top: 0;\n left: 0;\n bottom: 1px;\n right: 0;\n}\n\n/* links separator */\n\nli:not(.ui5-breadcrumbs-current-location)::after {\n content: \"/\"; /* default separator is \"Slash\" */\n padding: 0 .25rem;\n cursor: auto;\n color: var(--sapContent_LabelColor);\n display: inline-block;\n font-family: \"72override\",var(--sapFontFamily);\n font-size: var(--sapFontSize);\n}\n\n.ui5-breadcrumbs-popover-footer {\n display: flex;\n justify-content: flex-end;\n width: 100%;\n}\n\n/* separator styles */\n\n:host([separator-style=\"BackSlash\"]) li:not(.ui5-breadcrumbs-current-location)::after {\n content: \"\\\\\";\n}\n\n:host([separator-style=\"DoubleBackSlash\"]) li:not(.ui5-breadcrumbs-current-location)::after {\n content: \"\\\\\\\\\";\n}\n\n:host([separator-style=\"DoubleGreaterThan\"]) li:not(.ui5-breadcrumbs-current-location)::after {\n content: \">>\";\n}\n\n:host([separator-style=\"DoubleSlash\"]) li:not(.ui5-breadcrumbs-current-location)::after {\n content: \"//\";\n}\n\n:host([separator-style=\"GreaterThan\"]) li:not(.ui5-breadcrumbs-current-location)::after {\n content: \">\";\n}\n"
|
17
17
|
};
|
18
|
+
var _default = styleData;
|
18
19
|
_exports.default = _default;
|
19
20
|
});
|
@@ -8,12 +8,13 @@ sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/asset-registries/T
|
|
8
8
|
_parametersBundle = _interopRequireDefault(_parametersBundle);
|
9
9
|
_parametersBundle2 = _interopRequireDefault(_parametersBundle2);
|
10
10
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
11
|
-
(0, _Themes.registerThemePropertiesLoader)("@ui5/webcomponents-theming", "sap_fiori_3", () => _parametersBundle.default);
|
12
|
-
(0, _Themes.registerThemePropertiesLoader)("@ui5/webcomponents", "sap_fiori_3", () => _parametersBundle2.default);
|
13
|
-
|
11
|
+
(0, _Themes.registerThemePropertiesLoader)("@ui5/webcomponents-theming", "sap_fiori_3", async () => _parametersBundle.default);
|
12
|
+
(0, _Themes.registerThemePropertiesLoader)("@ui5/webcomponents", "sap_fiori_3", async () => _parametersBundle2.default);
|
13
|
+
const styleData = {
|
14
14
|
packageName: "@ui5/webcomponents",
|
15
15
|
fileName: "themes/BreadcrumbsPopover.css",
|
16
|
-
content: ".ui5-breadcrumbs-popover::part(content){padding:0}.ui5-breadcrumbs-popover-footer{display:flex
|
16
|
+
content: ".ui5-breadcrumbs-popover::part(content) {\r\n padding: 0;\r\n}\r\n\r\n.ui5-breadcrumbs-popover-footer {\r\n display: flex;\r\n justify-content: flex-end;\r\n width: 100%;\r\n padding-right: 0.5rem;\r\n\talign-items: center;\r\n}\r\n"
|
17
17
|
};
|
18
|
+
var _default = styleData;
|
18
19
|
_exports.default = _default;
|
19
20
|
});
|