@openui5/sap.ui.webc.main 1.115.1 → 1.116.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.reuse/dep5 +0 -5
- package/THIRDPARTY.txt +1 -7
- package/package.json +3 -3
- package/src/sap/ui/webc/main/.library +1 -1
- package/src/sap/ui/webc/main/Avatar.js +23 -3
- package/src/sap/ui/webc/main/AvatarGroup.js +1 -1
- package/src/sap/ui/webc/main/Badge.js +2 -2
- package/src/sap/ui/webc/main/Breadcrumbs.js +1 -1
- package/src/sap/ui/webc/main/BreadcrumbsItem.js +3 -3
- package/src/sap/ui/webc/main/BusyIndicator.js +1 -1
- package/src/sap/ui/webc/main/Button.js +4 -3
- package/src/sap/ui/webc/main/Calendar.js +6 -2
- package/src/sap/ui/webc/main/CalendarDate.js +2 -2
- package/src/sap/ui/webc/main/Card.js +3 -7
- package/src/sap/ui/webc/main/CardHeader.js +7 -2
- package/src/sap/ui/webc/main/Carousel.js +49 -4
- package/src/sap/ui/webc/main/CheckBox.js +14 -4
- package/src/sap/ui/webc/main/ColorPalette.js +1 -1
- package/src/sap/ui/webc/main/ColorPaletteItem.js +1 -1
- package/src/sap/ui/webc/main/ColorPalettePopover.js +1 -1
- package/src/sap/ui/webc/main/ColorPicker.js +1 -1
- package/src/sap/ui/webc/main/ComboBox.js +11 -8
- package/src/sap/ui/webc/main/ComboBoxGroupItem.js +1 -1
- package/src/sap/ui/webc/main/ComboBoxItem.js +1 -1
- package/src/sap/ui/webc/main/CustomListItem.js +19 -3
- package/src/sap/ui/webc/main/DatePicker.js +7 -2
- package/src/sap/ui/webc/main/DateRangePicker.js +9 -3
- package/src/sap/ui/webc/main/DateTimePicker.js +8 -3
- package/src/sap/ui/webc/main/Dialog.js +37 -6
- package/src/sap/ui/webc/main/FileUploader.js +1 -1
- package/src/sap/ui/webc/main/GroupHeaderListItem.js +1 -1
- package/src/sap/ui/webc/main/Icon.js +42 -2
- package/src/sap/ui/webc/main/Input.js +2 -2
- package/src/sap/ui/webc/main/Label.js +7 -3
- package/src/sap/ui/webc/main/Link.js +12 -2
- package/src/sap/ui/webc/main/List.js +2 -1
- package/src/sap/ui/webc/main/Menu.js +87 -3
- package/src/sap/ui/webc/main/MenuItem.js +34 -1
- package/src/sap/ui/webc/main/MessageStrip.js +1 -1
- package/src/sap/ui/webc/main/MultiComboBox.js +8 -7
- package/src/sap/ui/webc/main/MultiComboBoxGroupItem.js +1 -1
- package/src/sap/ui/webc/main/MultiComboBoxItem.js +1 -1
- package/src/sap/ui/webc/main/MultiInput.js +4 -4
- package/src/sap/ui/webc/main/Option.js +1 -1
- package/src/sap/ui/webc/main/Panel.js +3 -3
- package/src/sap/ui/webc/main/Popover.js +18 -4
- package/src/sap/ui/webc/main/ProgressIndicator.js +1 -1
- package/src/sap/ui/webc/main/RadioButton.js +17 -1
- package/src/sap/ui/webc/main/RangeSlider.js +12 -2
- package/src/sap/ui/webc/main/RatingIndicator.js +2 -2
- package/src/sap/ui/webc/main/ResponsivePopover.js +18 -4
- package/src/sap/ui/webc/main/SegmentedButton.js +40 -5
- package/src/sap/ui/webc/main/SegmentedButtonItem.js +4 -3
- package/src/sap/ui/webc/main/Select.js +20 -4
- package/src/sap/ui/webc/main/Slider.js +2 -2
- package/src/sap/ui/webc/main/SplitButton.js +7 -7
- package/src/sap/ui/webc/main/StandardListItem.js +31 -4
- package/src/sap/ui/webc/main/StepInput.js +2 -2
- package/src/sap/ui/webc/main/SuggestionGroupItem.js +1 -1
- package/src/sap/ui/webc/main/SuggestionItem.js +2 -2
- package/src/sap/ui/webc/main/Switch.js +2 -2
- package/src/sap/ui/webc/main/Tab.js +3 -3
- package/src/sap/ui/webc/main/TabContainer.js +40 -4
- package/src/sap/ui/webc/main/TabSeparator.js +10 -2
- package/src/sap/ui/webc/main/Table.js +2 -2
- package/src/sap/ui/webc/main/TableCell.js +1 -1
- package/src/sap/ui/webc/main/TableColumn.js +21 -1
- package/src/sap/ui/webc/main/TableGroupRow.js +1 -1
- package/src/sap/ui/webc/main/TableRow.js +9 -1
- package/src/sap/ui/webc/main/TextArea.js +2 -3
- package/src/sap/ui/webc/main/TimePicker.js +31 -3
- package/src/sap/ui/webc/main/Title.js +1 -1
- package/src/sap/ui/webc/main/Toast.js +1 -1
- package/src/sap/ui/webc/main/ToggleButton.js +4 -3
- package/src/sap/ui/webc/main/Token.js +6 -4
- package/src/sap/ui/webc/main/Tree.js +31 -2
- package/src/sap/ui/webc/main/TreeItem.js +63 -10
- package/src/sap/ui/webc/main/TreeItemCustom.js +205 -0
- package/src/sap/ui/webc/main/changeHandler/ChangeLinkTarget.js +1 -1
- package/src/sap/ui/webc/main/library.js +348 -70
- package/src/sap/ui/webc/main/thirdparty/Avatar.js +130 -232
- package/src/sap/ui/webc/main/thirdparty/AvatarGroup.js +109 -184
- package/src/sap/ui/webc/main/thirdparty/Badge.js +40 -86
- package/src/sap/ui/webc/main/thirdparty/Breadcrumbs.js +152 -202
- package/src/sap/ui/webc/main/thirdparty/BreadcrumbsItem.js +27 -78
- package/src/sap/ui/webc/main/thirdparty/BusyIndicator.js +46 -115
- package/src/sap/ui/webc/main/thirdparty/Button.js +123 -287
- package/src/sap/ui/webc/main/thirdparty/Calendar.js +146 -197
- package/src/sap/ui/webc/main/thirdparty/CalendarDate.js +16 -26
- package/src/sap/ui/webc/main/thirdparty/CalendarHeader.js +78 -113
- package/src/sap/ui/webc/main/thirdparty/CalendarPart.js +16 -27
- package/src/sap/ui/webc/main/thirdparty/Card.js +43 -92
- package/src/sap/ui/webc/main/thirdparty/CardHeader.js +69 -129
- package/src/sap/ui/webc/main/thirdparty/Carousel.js +167 -229
- package/src/sap/ui/webc/main/thirdparty/CheckBox.js +103 -244
- package/src/sap/ui/webc/main/thirdparty/ColorPalette.js +122 -173
- package/src/sap/ui/webc/main/thirdparty/ColorPaletteItem.js +41 -77
- package/src/sap/ui/webc/main/thirdparty/ColorPalettePopover.js +62 -105
- package/src/sap/ui/webc/main/thirdparty/ColorPicker.js +138 -244
- package/src/sap/ui/webc/main/thirdparty/ComboBox.js +297 -419
- package/src/sap/ui/webc/main/thirdparty/ComboBoxGroupItem.js +20 -41
- package/src/sap/ui/webc/main/thirdparty/ComboBoxItem.js +30 -37
- package/src/sap/ui/webc/main/thirdparty/CustomListItem.js +33 -54
- package/src/sap/ui/webc/main/thirdparty/DateComponentBase.js +59 -76
- package/src/sap/ui/webc/main/thirdparty/DatePicker.js +207 -334
- package/src/sap/ui/webc/main/thirdparty/DateRangePicker.js +56 -72
- package/src/sap/ui/webc/main/thirdparty/DateTimePicker.js +63 -111
- package/src/sap/ui/webc/main/thirdparty/DayPicker.js +147 -212
- package/src/sap/ui/webc/main/thirdparty/Dialog.js +162 -183
- package/src/sap/ui/webc/main/thirdparty/FileUploader.js +101 -242
- package/src/sap/ui/webc/main/thirdparty/GroupHeaderListItem.js +25 -58
- package/src/sap/ui/webc/main/thirdparty/Icon.js +103 -193
- package/src/sap/ui/webc/main/thirdparty/Input.js +453 -717
- package/src/sap/ui/webc/main/thirdparty/Interfaces.js +51 -61
- package/src/sap/ui/webc/main/thirdparty/Label.js +49 -108
- package/src/sap/ui/webc/main/thirdparty/Link.js +104 -247
- package/src/sap/ui/webc/main/thirdparty/List.js +303 -468
- package/src/sap/ui/webc/main/thirdparty/ListItem.js +126 -166
- package/src/sap/ui/webc/main/thirdparty/ListItemBase.js +64 -104
- package/src/sap/ui/webc/main/thirdparty/Menu.js +264 -200
- package/src/sap/ui/webc/main/thirdparty/MenuItem.js +66 -117
- package/src/sap/ui/webc/main/thirdparty/MessageStrip.js +70 -141
- package/src/sap/ui/webc/main/thirdparty/MonthPicker.js +100 -103
- package/src/sap/ui/webc/main/thirdparty/MultiComboBox.js +381 -496
- package/src/sap/ui/webc/main/thirdparty/MultiComboBoxGroupItem.js +20 -34
- package/src/sap/ui/webc/main/thirdparty/MultiComboBoxItem.js +19 -26
- package/src/sap/ui/webc/main/thirdparty/MultiInput.js +127 -137
- package/src/sap/ui/webc/main/thirdparty/Option.js +40 -107
- package/src/sap/ui/webc/main/thirdparty/Panel.js +102 -214
- package/src/sap/ui/webc/main/thirdparty/Popover.js +141 -274
- package/src/sap/ui/webc/main/thirdparty/Popup.js +155 -250
- package/src/sap/ui/webc/main/thirdparty/ProgressIndicator.js +41 -109
- package/src/sap/ui/webc/main/thirdparty/RadioButton.js +111 -263
- package/src/sap/ui/webc/main/thirdparty/RadioButtonGroup.js +32 -13
- package/src/sap/ui/webc/main/thirdparty/RangeSlider.js +208 -208
- package/src/sap/ui/webc/main/thirdparty/RatingIndicator.js +79 -146
- package/src/sap/ui/webc/main/thirdparty/ResponsivePopover.js +70 -81
- package/src/sap/ui/webc/main/thirdparty/SegmentedButton.js +141 -126
- package/src/sap/ui/webc/main/thirdparty/SegmentedButtonItem.js +41 -73
- package/src/sap/ui/webc/main/thirdparty/Select.js +186 -285
- package/src/sap/ui/webc/main/thirdparty/Slider.js +84 -80
- package/src/sap/ui/webc/main/thirdparty/SliderBase.js +151 -326
- package/src/sap/ui/webc/main/thirdparty/SplitButton.js +111 -240
- package/src/sap/ui/webc/main/thirdparty/StandardListItem.js +50 -142
- package/src/sap/ui/webc/main/thirdparty/StepInput.js +137 -309
- package/src/sap/ui/webc/main/thirdparty/SuggestionGroupItem.js +22 -35
- package/src/sap/ui/webc/main/thirdparty/SuggestionItem.js +37 -114
- package/src/sap/ui/webc/main/thirdparty/SuggestionListItem.js +29 -37
- package/src/sap/ui/webc/main/thirdparty/Switch.js +63 -146
- package/src/sap/ui/webc/main/thirdparty/Tab.js +126 -168
- package/src/sap/ui/webc/main/thirdparty/TabContainer.js +344 -453
- package/src/sap/ui/webc/main/thirdparty/TabSeparator.js +35 -26
- package/src/sap/ui/webc/main/thirdparty/Table.js +319 -489
- package/src/sap/ui/webc/main/thirdparty/TableCell.js +41 -50
- package/src/sap/ui/webc/main/thirdparty/TableColumn.js +38 -88
- package/src/sap/ui/webc/main/thirdparty/TableGroupRow.js +50 -90
- package/src/sap/ui/webc/main/thirdparty/TableRow.js +137 -174
- package/src/sap/ui/webc/main/thirdparty/TextArea.js +162 -358
- package/src/sap/ui/webc/main/thirdparty/TimePicker.js +24 -52
- package/src/sap/ui/webc/main/thirdparty/TimePickerBase.js +116 -159
- package/src/sap/ui/webc/main/thirdparty/TimeSelection.js +121 -167
- package/src/sap/ui/webc/main/thirdparty/Title.js +38 -71
- package/src/sap/ui/webc/main/thirdparty/Toast.js +41 -110
- package/src/sap/ui/webc/main/thirdparty/ToggleButton.js +25 -39
- package/src/sap/ui/webc/main/thirdparty/Token.js +86 -143
- package/src/sap/ui/webc/main/thirdparty/Tokenizer.js +256 -202
- package/src/sap/ui/webc/main/thirdparty/Tree.js +227 -302
- package/src/sap/ui/webc/main/thirdparty/TreeItem.js +42 -156
- package/src/sap/ui/webc/main/thirdparty/TreeItemBase.js +256 -0
- package/src/sap/ui/webc/main/thirdparty/TreeItemCustom.js +80 -0
- package/src/sap/ui/webc/main/thirdparty/TreeList.js +51 -0
- package/src/sap/ui/webc/main/thirdparty/WheelSlider.js +75 -120
- package/src/sap/ui/webc/main/thirdparty/YearPicker.js +135 -124
- package/src/sap/ui/webc/main/thirdparty/css/themes/Avatar.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/AvatarGroup.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/Badge.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/Breadcrumbs.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/BreadcrumbsPopover.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/BrowserScrollbar.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/BusyIndicator.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/Button.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/Calendar.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/CalendarHeader.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/Card.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/CardHeader.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/Carousel.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/CheckBox.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/ColorPalette.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/ColorPaletteItem.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/ColorPalettePopover.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/ColorPaletteStaticArea.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/ColorPicker.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/ComboBox.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/ComboBoxPopover.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/CustomListItem.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/DatePicker.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/DatePickerPopover.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/DateRangePicker.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/DateTimePicker.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/DateTimePickerPopover.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/DayPicker.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/Dialog.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/FileUploader.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/FormComponents.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/GroupHeaderListItem.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/GrowingButton.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/Icon.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/Input.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/InputIcon.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/InvisibleTextStyles.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/Label.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/Link.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/List.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/ListItem.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/ListItemBase.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/Menu.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/MessageStrip.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/MonthPicker.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/MultiComboBox.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/MultiInput.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/Panel.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/Popover.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/Popup.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/PopupStaticAreaStyles.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/PopupsCommon.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/ProgressIndicator.css +3 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/RadioButton.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/RangeSlider.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/RatingIndicator.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/ResponsivePopover.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/ResponsivePopoverCommon.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/SegmentedButton.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/Select.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/SelectPopover.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/SliderBase.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/SplitButton.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/StepInput.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/Suggestions.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/Switch.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/Tab.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/TabContainer.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/TabInOverflow.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/TabInStrip.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/TabSemanticIcon.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/TabSeparatorInOverflow.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/TabSeparatorInStrip.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/Table.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/TableCell.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/TableColumn.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/TableGroupRow.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/TableRow.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/TextArea.css +2 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/TimePicker.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/TimePickerPopover.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/TimeSelection.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/Title.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/Toast.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/ToggleButton.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/Token.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/Tokenizer.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/Tree.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/TreeItem.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/ValueStateMessage.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/WheelSlider.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/YearPicker.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/sap_belize/parameters-bundle.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/sap_belize_hcb/parameters-bundle.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/sap_belize_hcw/parameters-bundle.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/sap_fiori_3/parameters-bundle.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/sap_fiori_3_dark/parameters-bundle.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/sap_fiori_3_hcb/parameters-bundle.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/sap_fiori_3_hcw/parameters-bundle.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/sap_horizon/parameters-bundle.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/sap_horizon_dark/parameters-bundle.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/sap_horizon_exp/parameters-bundle.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/sap_horizon_hcb/parameters-bundle.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/sap_horizon_hcw/parameters-bundle.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/custom-elements.json.js +1 -0
- package/src/sap/ui/webc/main/thirdparty/features/InputElementsFormSupport.js +25 -10
- package/src/sap/ui/webc/main/thirdparty/features/InputSuggestions.js +70 -72
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_ar.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_bg.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_ca.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_cs.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_cy.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_da.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_de.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_el.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_en.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_en_GB.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_en_US_sappsd.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_en_US_saprigi.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_en_US_saptrc.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_es.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_es_MX.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_et.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_fi.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_fr.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_fr_CA.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_hi.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_hr.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_hu.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_it.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_iw.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_ja.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_kk.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_ko.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_lt.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_lv.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_ms.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_nl.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_no.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_pl.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_pt.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_pt_PT.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_ro.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_ru.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_sh.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_sk.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_sl.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_sv.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_th.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_tr.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_uk.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_vi.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_zh_CN.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_zh_TW.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/themes/sap_belize/parameters-bundle.css.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/themes/sap_belize_hcb/parameters-bundle.css.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/themes/sap_belize_hcw/parameters-bundle.css.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/themes/sap_fiori_3/parameters-bundle.css.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/themes/sap_fiori_3_dark/parameters-bundle.css.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/themes/sap_fiori_3_hcb/parameters-bundle.css.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/themes/sap_fiori_3_hcw/parameters-bundle.css.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/themes/sap_horizon/parameters-bundle.css.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/themes/sap_horizon_dark/parameters-bundle.css.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/themes/sap_horizon_exp/parameters-bundle.css.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/themes/sap_horizon_hcb/parameters-bundle.css.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/themes/sap_horizon_hcw/parameters-bundle.css.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/i18n/i18n-defaults.js +108 -23
- package/src/sap/ui/webc/main/thirdparty/generated/templates/AvatarGroupTemplate.lit.js +9 -3
- package/src/sap/ui/webc/main/thirdparty/generated/templates/AvatarTemplate.lit.js +15 -6
- package/src/sap/ui/webc/main/thirdparty/generated/templates/BadgeTemplate.lit.js +6 -2
- package/src/sap/ui/webc/main/thirdparty/generated/templates/BreadcrumbsPopoverTemplate.lit.js +6 -2
- package/src/sap/ui/webc/main/thirdparty/generated/templates/BreadcrumbsTemplate.lit.js +9 -3
- package/src/sap/ui/webc/main/thirdparty/generated/templates/BusyIndicatorTemplate.lit.js +12 -4
- package/src/sap/ui/webc/main/thirdparty/generated/templates/ButtonTemplate.lit.js +9 -3
- package/src/sap/ui/webc/main/thirdparty/generated/templates/CalendarHeaderTemplate.lit.js +9 -3
- package/src/sap/ui/webc/main/thirdparty/generated/templates/CalendarTemplate.lit.js +3 -1
- package/src/sap/ui/webc/main/thirdparty/generated/templates/CardHeaderTemplate.lit.js +18 -6
- package/src/sap/ui/webc/main/thirdparty/generated/templates/CardTemplate.lit.js +6 -2
- package/src/sap/ui/webc/main/thirdparty/generated/templates/CarouselTemplate.lit.js +30 -10
- package/src/sap/ui/webc/main/thirdparty/generated/templates/CheckBoxTemplate.lit.js +12 -4
- package/src/sap/ui/webc/main/thirdparty/generated/templates/ColorPaletteDialogTemplate.lit.js +3 -1
- package/src/sap/ui/webc/main/thirdparty/generated/templates/ColorPaletteItemTemplate.lit.js +3 -1
- package/src/sap/ui/webc/main/thirdparty/generated/templates/ColorPalettePopoverTemplate.lit.js +6 -2
- package/src/sap/ui/webc/main/thirdparty/generated/templates/ColorPaletteTemplate.lit.js +18 -6
- package/src/sap/ui/webc/main/thirdparty/generated/templates/ColorPickerTemplate.lit.js +3 -1
- package/src/sap/ui/webc/main/thirdparty/generated/templates/ComboBoxPopoverTemplate.lit.js +57 -17
- package/src/sap/ui/webc/main/thirdparty/generated/templates/ComboBoxTemplate.lit.js +12 -4
- package/src/sap/ui/webc/main/thirdparty/generated/templates/CustomListItemTemplate.lit.js +48 -10
- package/src/sap/ui/webc/main/thirdparty/generated/templates/DatePickerPopoverTemplate.lit.js +12 -4
- package/src/sap/ui/webc/main/thirdparty/generated/templates/DatePickerTemplate.lit.js +9 -3
- package/src/sap/ui/webc/main/thirdparty/generated/templates/DateTimePickerPopoverTemplate.lit.js +18 -6
- package/src/sap/ui/webc/main/thirdparty/generated/templates/DayPickerTemplate.lit.js +30 -10
- package/src/sap/ui/webc/main/thirdparty/generated/templates/DialogTemplate.lit.js +36 -6
- package/src/sap/ui/webc/main/thirdparty/generated/templates/FileUploaderPopoverTemplate.lit.js +15 -5
- package/src/sap/ui/webc/main/thirdparty/generated/templates/FileUploaderTemplate.lit.js +12 -4
- package/src/sap/ui/webc/main/thirdparty/generated/templates/GroupHeaderListItemTemplate.lit.js +3 -1
- package/src/sap/ui/webc/main/thirdparty/generated/templates/IconTemplate.lit.js +16 -3
- package/src/sap/ui/webc/main/thirdparty/generated/templates/InputPopoverTemplate.lit.js +63 -21
- package/src/sap/ui/webc/main/thirdparty/generated/templates/InputTemplate.lit.js +18 -6
- package/src/sap/ui/webc/main/thirdparty/generated/templates/LabelTemplate.lit.js +3 -1
- package/src/sap/ui/webc/main/thirdparty/generated/templates/LinkTemplate.lit.js +6 -2
- package/src/sap/ui/webc/main/thirdparty/generated/templates/ListItemTemplate.lit.js +48 -10
- package/src/sap/ui/webc/main/thirdparty/generated/templates/ListTemplate.lit.js +27 -9
- package/src/sap/ui/webc/main/thirdparty/generated/templates/MenuTemplate.lit.js +33 -9
- package/src/sap/ui/webc/main/thirdparty/generated/templates/MessageStripTemplate.lit.js +15 -5
- package/src/sap/ui/webc/main/thirdparty/generated/templates/MonthPickerTemplate.lit.js +12 -3
- package/src/sap/ui/webc/main/thirdparty/generated/templates/MultiComboBoxPopoverTemplate.lit.js +72 -24
- package/src/sap/ui/webc/main/thirdparty/generated/templates/MultiComboBoxTemplate.lit.js +18 -6
- package/src/sap/ui/webc/main/thirdparty/generated/templates/MultiInputTemplate.lit.js +30 -10
- package/src/sap/ui/webc/main/thirdparty/generated/templates/PanelTemplate.lit.js +21 -6
- package/src/sap/ui/webc/main/thirdparty/generated/templates/PopoverTemplate.lit.js +18 -6
- package/src/sap/ui/webc/main/thirdparty/generated/templates/PopupBlockLayerTemplate.lit.js +3 -1
- package/src/sap/ui/webc/main/thirdparty/generated/templates/PopupTemplate.lit.js +3 -1
- package/src/sap/ui/webc/main/thirdparty/generated/templates/ProgressIndicatorTemplate.lit.js +33 -11
- package/src/sap/ui/webc/main/thirdparty/generated/templates/RadioButtonTemplate.lit.js +13 -4
- package/src/sap/ui/webc/main/thirdparty/generated/templates/RangeSliderTemplate.lit.js +30 -10
- package/src/sap/ui/webc/main/thirdparty/generated/templates/RatingIndicatorTemplate.lit.js +30 -10
- package/src/sap/ui/webc/main/thirdparty/generated/templates/ResponsivePopoverTemplate.lit.js +39 -13
- package/src/sap/ui/webc/main/thirdparty/generated/templates/SegmentedButtonItemTemplate.lit.js +6 -2
- package/src/sap/ui/webc/main/thirdparty/generated/templates/SegmentedButtonTemplate.lit.js +3 -1
- package/src/sap/ui/webc/main/thirdparty/generated/templates/SelectPopoverTemplate.lit.js +51 -17
- package/src/sap/ui/webc/main/thirdparty/generated/templates/SelectTemplate.lit.js +9 -3
- package/src/sap/ui/webc/main/thirdparty/generated/templates/SliderBaseTemplate.lit.js +24 -8
- package/src/sap/ui/webc/main/thirdparty/generated/templates/SliderTemplate.lit.js +27 -9
- package/src/sap/ui/webc/main/thirdparty/generated/templates/SplitButtonTemplate.lit.js +6 -1
- package/src/sap/ui/webc/main/thirdparty/generated/templates/StandardListItemTemplate.lit.js +78 -18
- package/src/sap/ui/webc/main/thirdparty/generated/templates/StepInputTemplate.lit.js +12 -4
- package/src/sap/ui/webc/main/thirdparty/generated/templates/SuggestionListItemTemplate.lit.js +87 -21
- package/src/sap/ui/webc/main/thirdparty/generated/templates/SwitchTemplate.lit.js +15 -5
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TabContainerPopoverTemplate.lit.js +6 -2
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TabContainerTemplate.lit.js +33 -10
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TabInOverflowTemplate.lit.js +18 -5
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TabInStripTemplate.lit.js +24 -8
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TabSeparatorInOverflowTemplate.lit.js +3 -1
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TabSeparatorInStripTemplate.lit.js +3 -1
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TabTemplate.lit.js +6 -2
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TableCellTemplate.lit.js +3 -1
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TableColumnTemplate.lit.js +3 -1
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TableGroupRowTemplate.lit.js +3 -1
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TableRowTemplate.lit.js +36 -9
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TableTemplate.lit.js +33 -10
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TextAreaPopoverTemplate.lit.js +15 -5
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TextAreaTemplate.lit.js +15 -5
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TimePickerPopoverTemplate.lit.js +3 -1
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TimePickerTemplate.lit.js +9 -3
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TimeSelectionTemplate.lit.js +15 -5
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TitleTemplate.lit.js +21 -7
- package/src/sap/ui/webc/main/thirdparty/generated/templates/ToastTemplate.lit.js +6 -2
- package/src/sap/ui/webc/main/thirdparty/generated/templates/ToggleButtonTemplate.lit.js +9 -3
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TokenTemplate.lit.js +12 -4
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TokenizerPopoverTemplate.lit.js +18 -6
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TokenizerTemplate.lit.js +9 -3
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TreeItemBaseTemplate.lit.js +72 -0
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TreeItemCustomTemplate.lit.js +72 -0
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TreeItemTemplate.lit.js +78 -0
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TreeTemplate.lit.js +6 -2
- package/src/sap/ui/webc/main/thirdparty/generated/templates/WheelSliderTemplate.lit.js +12 -4
- package/src/sap/ui/webc/main/thirdparty/generated/templates/YearPickerTemplate.lit.js +12 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Avatar.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/AvatarGroup.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Badge.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Breadcrumbs.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/BreadcrumbsPopover.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/BrowserScrollbar.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/BusyIndicator.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Button.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Calendar.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/CalendarHeader.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Card.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/CardHeader.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Carousel.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/CheckBox.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/ColorPalette.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/ColorPaletteItem.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/ColorPalettePopover.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/ColorPaletteStaticArea.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/ColorPicker.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/ComboBox.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/ComboBoxPopover.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/CustomListItem.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/DatePicker.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/DatePickerPopover.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/DateRangePicker.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/DateTimePicker.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/DateTimePickerPopover.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/DayPicker.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Dialog.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/FileUploader.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/FormComponents.css.js +20 -0
- package/src/sap/ui/webc/main/thirdparty/generated/themes/GroupHeaderListItem.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/GrowingButton.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Icon.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Input.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/InputIcon.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/InvisibleTextStyles.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Label.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Link.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/List.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/ListItem.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/ListItemBase.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Menu.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/MessageStrip.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/MonthPicker.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/MultiComboBox.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/MultiComboBoxPopover.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/MultiInput.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Panel.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Popover.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Popup.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/PopupGlobal.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/PopupStaticAreaStyles.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/PopupsCommon.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/ProgressIndicator.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/RadioButton.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/RangeSlider.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/RatingIndicator.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/ResponsivePopover.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/ResponsivePopoverCommon.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/SegmentedButton.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Select.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/SelectPopover.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/SliderBase.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/SplitButton.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/StepInput.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Suggestions.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Switch.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Tab.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/TabContainer.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/TabInOverflow.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/TabInStrip.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/TabSemanticIcon.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/TabSeparatorInOverflow.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/TabSeparatorInStrip.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Table.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/TableCell.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/TableColumn.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/TableGroupRow.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/TableRow.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/TapHighlightColor.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/TextArea.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/TimePicker.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/TimePickerPopover.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/TimeSelection.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Title.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Toast.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/ToggleButton.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Token.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Tokenizer.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/TokenizerPopover.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Tree.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/TreeItem.css.js +20 -0
- package/src/sap/ui/webc/main/thirdparty/generated/themes/ValueStateMessage.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/WheelSlider.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/YearPicker.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/sap_belize/parameters-bundle.css.js +3 -2
- package/src/sap/ui/webc/main/thirdparty/generated/themes/sap_belize_hcb/parameters-bundle.css.js +3 -2
- package/src/sap/ui/webc/main/thirdparty/generated/themes/sap_belize_hcw/parameters-bundle.css.js +3 -2
- package/src/sap/ui/webc/main/thirdparty/generated/themes/sap_fiori_3/parameters-bundle.css.js +3 -2
- package/src/sap/ui/webc/main/thirdparty/generated/themes/sap_fiori_3_dark/parameters-bundle.css.js +3 -2
- package/src/sap/ui/webc/main/thirdparty/generated/themes/sap_fiori_3_hcb/parameters-bundle.css.js +3 -2
- package/src/sap/ui/webc/main/thirdparty/generated/themes/sap_fiori_3_hcw/parameters-bundle.css.js +3 -2
- package/src/sap/ui/webc/main/thirdparty/generated/themes/sap_horizon/parameters-bundle.css.js +3 -2
- package/src/sap/ui/webc/main/thirdparty/generated/themes/sap_horizon_dark/parameters-bundle.css.js +3 -2
- package/src/sap/ui/webc/main/thirdparty/generated/themes/sap_horizon_exp/parameters-bundle.css.js +3 -2
- package/src/sap/ui/webc/main/thirdparty/generated/themes/sap_horizon_hcb/parameters-bundle.css.js +3 -2
- package/src/sap/ui/webc/main/thirdparty/generated/themes/sap_horizon_hcw/parameters-bundle.css.js +3 -2
- package/src/sap/ui/webc/main/thirdparty/popup-utils/OpenedPopupsRegistry.js +16 -1
- package/src/sap/ui/webc/main/thirdparty/popup-utils/PopoverRegistry.js +36 -21
- package/src/sap/ui/webc/main/thirdparty/timepicker-utils/TimeSlider.js +6 -3
- package/src/sap/ui/webc/main/thirdparty/types/AvatarColorScheme.js +21 -34
- package/src/sap/ui/webc/main/thirdparty/types/AvatarGroupType.js +13 -26
- package/src/sap/ui/webc/main/thirdparty/types/AvatarShape.js +11 -24
- package/src/sap/ui/webc/main/thirdparty/types/AvatarSize.js +19 -32
- package/src/sap/ui/webc/main/thirdparty/types/BackgroundDesign.js +40 -0
- package/src/sap/ui/webc/main/thirdparty/types/BorderDesign.js +34 -0
- package/src/sap/ui/webc/main/thirdparty/types/BreadcrumbsDesign.js +12 -24
- package/src/sap/ui/webc/main/thirdparty/types/BreadcrumbsSeparatorStyle.js +17 -29
- package/src/sap/ui/webc/main/thirdparty/types/BusyIndicatorSize.js +13 -25
- package/src/sap/ui/webc/main/thirdparty/types/ButtonDesign.js +16 -28
- package/src/sap/ui/webc/main/thirdparty/types/CalendarPickersMode.js +40 -0
- package/src/sap/ui/webc/main/thirdparty/types/CalendarSelectionMode.js +13 -25
- package/src/sap/ui/webc/main/thirdparty/types/CarouselArrowsPlacement.js +12 -24
- package/src/sap/ui/webc/main/thirdparty/types/CarouselPageIndicatorStyle.js +35 -0
- package/src/sap/ui/webc/main/thirdparty/types/ComboBoxFilter.js +46 -0
- package/src/sap/ui/webc/main/thirdparty/types/HasPopup.js +14 -27
- package/src/sap/ui/webc/main/thirdparty/types/IconDesign.js +70 -0
- package/src/sap/ui/webc/main/thirdparty/types/InputType.js +16 -28
- package/src/sap/ui/webc/main/thirdparty/types/LinkDesign.js +13 -25
- package/src/sap/ui/webc/main/thirdparty/types/ListGrowingMode.js +15 -27
- package/src/sap/ui/webc/main/thirdparty/types/ListItemType.js +19 -25
- package/src/sap/ui/webc/main/thirdparty/types/ListMode.js +17 -29
- package/src/sap/ui/webc/main/thirdparty/types/ListSeparators.js +14 -26
- package/src/sap/ui/webc/main/thirdparty/types/MessageStripDesign.js +14 -26
- package/src/sap/ui/webc/main/thirdparty/types/PanelAccessibleRole.js +19 -28
- package/src/sap/ui/webc/main/thirdparty/types/PopoverHorizontalAlign.js +18 -30
- package/src/sap/ui/webc/main/thirdparty/types/PopoverPlacementType.js +14 -26
- package/src/sap/ui/webc/main/thirdparty/types/PopoverVerticalAlign.js +14 -26
- package/src/sap/ui/webc/main/thirdparty/types/PopupAccessibleRole.js +40 -0
- package/src/sap/ui/webc/main/thirdparty/types/Priority.js +13 -26
- package/src/sap/ui/webc/main/thirdparty/types/SegmentedButtonMode.js +34 -0
- package/src/sap/ui/webc/main/thirdparty/types/SemanticColor.js +15 -27
- package/src/sap/ui/webc/main/thirdparty/types/SwitchDesign.js +12 -24
- package/src/sap/ui/webc/main/thirdparty/types/TabContainerBackgroundDesign.js +40 -0
- package/src/sap/ui/webc/main/thirdparty/types/TabContainerTabsPlacement.js +12 -24
- package/src/sap/ui/webc/main/thirdparty/types/TabLayout.js +14 -26
- package/src/sap/ui/webc/main/thirdparty/types/TableColumnPopinDisplay.js +34 -0
- package/src/sap/ui/webc/main/thirdparty/types/TableGrowingMode.js +17 -29
- package/src/sap/ui/webc/main/thirdparty/types/TableMode.js +13 -25
- package/src/sap/ui/webc/main/thirdparty/types/TableRowType.js +12 -24
- package/src/sap/ui/webc/main/thirdparty/types/TabsOverflowMode.js +12 -24
- package/src/sap/ui/webc/main/thirdparty/types/TitleLevel.js +16 -28
- package/src/sap/ui/webc/main/thirdparty/types/ToastPlacement.js +28 -40
- package/src/sap/ui/webc/main/thirdparty/types/WrappingType.js +11 -24
- package/ui5.yaml +15 -2
- package/src/sap/ui/webc/main/thirdparty/DurationPicker.js +0 -300
- package/src/sap/ui/webc/main/thirdparty/TreeListItem.js +0 -316
- package/src/sap/ui/webc/main/thirdparty/css/themes/TreeListItem.css +0 -1
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TreeListItemTemplate.lit.js +0 -27
- package/src/sap/ui/webc/main/thirdparty/generated/themes/TreeListItem.css.js +0 -19
- package/src/sap/ui/webc/main/thirdparty/types/GrowingMode.js +0 -53
@@ -4,8 +4,8 @@ sap.ui.define(["exports"], function (_exports) {
|
|
4
4
|
Object.defineProperty(_exports, "__esModule", {
|
5
5
|
value: true
|
6
6
|
});
|
7
|
-
_exports.
|
8
|
-
_exports.VALUE_STATE_WARNING = _exports.VALUE_STATE_SUCCESS = _exports.VALUE_STATE_INFORMATION = _exports.VALUE_STATE_ERROR_ALREADY_SELECTED = _exports.VALUE_STATE_ERROR = _exports.TREE_ITEM_EXPAND_NODE = _exports.TREE_ITEM_COLLAPSE_NODE = _exports.TREE_ITEM_ARIA_LABEL = _exports.TOKEN_ARIA_DELETABLE = _exports.TOKENIZER_POPOVER_REMOVE = _exports.TOKENIZER_ARIA_LABEL = _exports.TOKENIZER_ARIA_CONTAIN_TOKEN = _exports.TOKENIZER_ARIA_CONTAIN_SEVERAL_TOKENS = _exports.TOKENIZER_ARIA_CONTAIN_ONE_TOKEN = _exports.TIMEPICKER_SUBMIT_BUTTON = _exports.TIMEPICKER_SECONDS_LABEL = _exports.
|
7
|
+
_exports.SELECT_OPTIONS = _exports.SEGMENTEDBUTTON_ARIA_DESCRIPTION = _exports.SEGMENTEDBUTTON_ARIA_DESCRIBEDBY = _exports.SEGMENTEDBUTTONITEM_ARIA_DESCRIPTION = _exports.RESPONSIVE_POPOVER_CLOSE_DIALOG_BUTTON = _exports.RATING_INDICATOR_TOOLTIP_TEXT = _exports.RATING_INDICATOR_TEXT = _exports.RANGE_SLIDER_START_HANDLE_DESCRIPTION = _exports.RANGE_SLIDER_END_HANDLE_DESCRIPTION = _exports.RANGE_SLIDER_ARIA_DESCRIPTION = _exports.PANEL_ICON = _exports.MULTIINPUT_SHOW_MORE_TOKENS = _exports.MULTIINPUT_ROLEDESCRIPTION_TEXT = _exports.MULTICOMBOBOX_DIALOG_OK_BUTTON = _exports.MONTH_PICKER_DESCRIPTION = _exports.MESSAGE_STRIP_WARNING = _exports.MESSAGE_STRIP_SUCCESS = _exports.MESSAGE_STRIP_INFORMATION = _exports.MESSAGE_STRIP_ERROR = _exports.MESSAGE_STRIP_CLOSE_BUTTON = _exports.MESSAGE_STRIP_CLOSABLE = _exports.MENU_CLOSE_BUTTON_ARIA_LABEL = _exports.MENU_BACK_BUTTON_ARIA_LABEL = _exports.LOAD_MORE_TEXT = _exports.LIST_ITEM_SELECTED = _exports.LIST_ITEM_POSITION = _exports.LIST_ITEM_NOT_SELECTED = _exports.LIST_ITEM_GROUP_HEADER = _exports.LINK_SUBTLE = _exports.LINK_EMPHASIZED = _exports.LABEL_COLON = _exports.INPUT_SUGGESTIONS_TITLE = _exports.INPUT_SUGGESTIONS_ONE_HIT = _exports.INPUT_SUGGESTIONS_NO_HIT = _exports.INPUT_SUGGESTIONS_MORE_HITS = _exports.INPUT_SUGGESTIONS = _exports.GROUP_HEADER_TEXT = _exports.FILEUPLOAD_BROWSE = _exports.FILEUPLOADER_TITLE = _exports.DIALOG_HEADER_ARIA_ROLE_DESCRIPTION = _exports.DIALOG_HEADER_ARIA_DESCRIBEDBY_RESIZABLE = _exports.DIALOG_HEADER_ARIA_DESCRIBEDBY_DRAGGABLE_RESIZABLE = _exports.DIALOG_HEADER_ARIA_DESCRIBEDBY_DRAGGABLE = _exports.DELETE = _exports.DAY_PICKER_WEEK_NUMBER_TEXT = _exports.DAY_PICKER_TODAY = _exports.DAY_PICKER_NON_WORKING_DAY = _exports.DATETIME_PICKER_TIME_BUTTON = _exports.DATETIME_PICKER_DATE_BUTTON = _exports.DATETIME_DESCRIPTION = _exports.DATERANGE_DESCRIPTION = _exports.DATEPICKER_OPEN_ICON_TITLE = _exports.DATEPICKER_DATE_DESCRIPTION = _exports.COLOR_PALETTE_MORE_COLORS_TEXT = _exports.COLOR_PALETTE_DIALOG_TITLE = _exports.COLOR_PALETTE_DIALOG_OK_BUTTON = _exports.COLOR_PALETTE_DIALOG_CANCEL_BUTTON = _exports.COLORPICKER_RED = _exports.COLORPICKER_HUE_SLIDER = _exports.COLORPICKER_HEX = _exports.COLORPICKER_GREEN = _exports.COLORPICKER_BLUE = _exports.COLORPICKER_ALPHA_SLIDER = _exports.COLORPICKER_ALPHA = _exports.COLORPALETTE_POPOVER_TITLE = _exports.COLORPALETTE_CONTAINER_LABEL = _exports.COLORPALETTE_COLOR_LABEL = _exports.CAROUSEL_PREVIOUS_ARROW_TEXT = _exports.CAROUSEL_OF_TEXT = _exports.CAROUSEL_NEXT_ARROW_TEXT = _exports.CAROUSEL_DOT_TEXT = _exports.CALENDAR_HEADER_PREVIOUS_BUTTON = _exports.CALENDAR_HEADER_NEXT_BUTTON = _exports.BUTTON_ARIA_TYPE_REJECT = _exports.BUTTON_ARIA_TYPE_EMPHASIZED = _exports.BUTTON_ARIA_TYPE_ACCEPT = _exports.BUSY_INDICATOR_TITLE = _exports.BREADCRUMB_ITEM_POS = _exports.BREADCRUMBS_OVERFLOW_ARIA_LABEL = _exports.BREADCRUMBS_CANCEL_BUTTON = _exports.BREADCRUMBS_ARIA_LABEL = _exports.BADGE_DESCRIPTION = _exports.AVATAR_TOOLTIP = _exports.AVATAR_GROUP_SHOW_COMPLETE_LIST_LABEL = _exports.AVATAR_GROUP_MOVE = _exports.AVATAR_GROUP_DISPLAYED_HIDDEN_LABEL = _exports.AVATAR_GROUP_ARIA_LABEL_INDIVIDUAL = _exports.AVATAR_GROUP_ARIA_LABEL_GROUP = _exports.ARIA_ROLEDESCRIPTION_INTERACTIVE_CARD_HEADER = _exports.ARIA_ROLEDESCRIPTION_CARD_HEADER = _exports.ARIA_ROLEDESCRIPTION_CARD = _exports.ARIA_LABEL_SELECT_ALL_CHECKBOX = _exports.ARIA_LABEL_ROW_SELECTION = _exports.ARIA_LABEL_LIST_SELECTABLE = _exports.ARIA_LABEL_LIST_MULTISELECTABLE = _exports.ARIA_LABEL_LIST_ITEM_RADIO_BUTTON = _exports.ARIA_LABEL_LIST_ITEM_CHECKBOX = _exports.ARIA_LABEL_LIST_DELETABLE = _exports.ARIA_LABEL_EMPTY_CELL = _exports.ARIA_LABEL_CARD_CONTENT = void 0;
|
8
|
+
_exports.YEAR_PICKER_DESCRIPTION = _exports.VALUE_STATE_WARNING = _exports.VALUE_STATE_TYPE_WARNING = _exports.VALUE_STATE_TYPE_SUCCESS = _exports.VALUE_STATE_TYPE_INFORMATION = _exports.VALUE_STATE_TYPE_ERROR = _exports.VALUE_STATE_SUCCESS = _exports.VALUE_STATE_INFORMATION = _exports.VALUE_STATE_ERROR_ALREADY_SELECTED = _exports.VALUE_STATE_ERROR = _exports.TREE_ITEM_EXPAND_NODE = _exports.TREE_ITEM_COLLAPSE_NODE = _exports.TREE_ITEM_ARIA_LABEL = _exports.TOKEN_ARIA_DELETABLE = _exports.TOKENIZER_POPOVER_REMOVE = _exports.TOKENIZER_ARIA_LABEL = _exports.TOKENIZER_ARIA_CONTAIN_TOKEN = _exports.TOKENIZER_ARIA_CONTAIN_SEVERAL_TOKENS = _exports.TOKENIZER_ARIA_CONTAIN_ONE_TOKEN = _exports.TIMEPICKER_SUBMIT_BUTTON = _exports.TIMEPICKER_SECONDS_LABEL = _exports.TIMEPICKER_MINUTES_LABEL = _exports.TIMEPICKER_INPUT_DESCRIPTION = _exports.TIMEPICKER_HOURS_LABEL = _exports.TIMEPICKER_CANCEL_BUTTON = _exports.TEXTAREA_CHARACTERS_LEFT = _exports.TEXTAREA_CHARACTERS_EXCEEDED = _exports.TAB_SPLIT_ROLE_DESCRIPTION = _exports.TAB_ARIA_DESIGN_POSITIVE = _exports.TAB_ARIA_DESIGN_NEUTRAL = _exports.TAB_ARIA_DESIGN_NEGATIVE = _exports.TAB_ARIA_DESIGN_CRITICAL = _exports.TABLE_ROW_POSITION = _exports.TABLE_HEADER_ROW_INFORMATION = _exports.TABLE_GROUP_ROW_ARIA_LABEL = _exports.TABCONTAINER_SUBTABS_DESCRIPTION = _exports.TABCONTAINER_PREVIOUS_ICON_ACC_NAME = _exports.TABCONTAINER_POPOVER_CANCEL_BUTTON = _exports.TABCONTAINER_OVERFLOW_MENU_TITLE = _exports.TABCONTAINER_NEXT_ICON_ACC_NAME = _exports.TABCONTAINER_END_OVERFLOW = _exports.STEPINPUT_INC_ICON_TITLE = _exports.STEPINPUT_DEC_ICON_TITLE = _exports.SPLIT_BUTTON_KEYBOARD_HINT = _exports.SPLIT_BUTTON_DESCRIPTION = _exports.SLIDER_ARIA_DESCRIPTION = _exports.SELECT_ROLE_DESCRIPTION = void 0;
|
9
9
|
const ARIA_LABEL_CARD_CONTENT = {
|
10
10
|
key: "ARIA_LABEL_CARD_CONTENT",
|
11
11
|
defaultText: "Card Content"
|
@@ -123,7 +123,7 @@ sap.ui.define(["exports"], function (_exports) {
|
|
123
123
|
_exports.CAROUSEL_NEXT_ARROW_TEXT = CAROUSEL_NEXT_ARROW_TEXT;
|
124
124
|
const COLORPALETTE_CONTAINER_LABEL = {
|
125
125
|
key: "COLORPALETTE_CONTAINER_LABEL",
|
126
|
-
defaultText: "Color
|
126
|
+
defaultText: "Color palette - Predefined colors"
|
127
127
|
};
|
128
128
|
_exports.COLORPALETTE_CONTAINER_LABEL = COLORPALETTE_CONTAINER_LABEL;
|
129
129
|
const COLORPALETTE_POPOVER_TITLE = {
|
@@ -233,7 +233,7 @@ sap.ui.define(["exports"], function (_exports) {
|
|
233
233
|
_exports.GROUP_HEADER_TEXT = GROUP_HEADER_TEXT;
|
234
234
|
const SELECT_ROLE_DESCRIPTION = {
|
235
235
|
key: "SELECT_ROLE_DESCRIPTION",
|
236
|
-
defaultText: "
|
236
|
+
defaultText: "Listbox"
|
237
237
|
};
|
238
238
|
_exports.SELECT_ROLE_DESCRIPTION = SELECT_ROLE_DESCRIPTION;
|
239
239
|
const SELECT_OPTIONS = {
|
@@ -243,7 +243,7 @@ sap.ui.define(["exports"], function (_exports) {
|
|
243
243
|
_exports.SELECT_OPTIONS = SELECT_OPTIONS;
|
244
244
|
const INPUT_SUGGESTIONS = {
|
245
245
|
key: "INPUT_SUGGESTIONS",
|
246
|
-
defaultText: "Suggestions
|
246
|
+
defaultText: "Suggestions available"
|
247
247
|
};
|
248
248
|
_exports.INPUT_SUGGESTIONS = INPUT_SUGGESTIONS;
|
249
249
|
const INPUT_SUGGESTIONS_TITLE = {
|
@@ -291,9 +291,14 @@ sap.ui.define(["exports"], function (_exports) {
|
|
291
291
|
defaultText: "Not Selected"
|
292
292
|
};
|
293
293
|
_exports.LIST_ITEM_NOT_SELECTED = LIST_ITEM_NOT_SELECTED;
|
294
|
+
const LIST_ITEM_GROUP_HEADER = {
|
295
|
+
key: "LIST_ITEM_GROUP_HEADER",
|
296
|
+
defaultText: "Group Header"
|
297
|
+
};
|
298
|
+
_exports.LIST_ITEM_GROUP_HEADER = LIST_ITEM_GROUP_HEADER;
|
294
299
|
const ARIA_LABEL_LIST_ITEM_CHECKBOX = {
|
295
300
|
key: "ARIA_LABEL_LIST_ITEM_CHECKBOX",
|
296
|
-
defaultText: "Multiple Selection
|
301
|
+
defaultText: "Multiple Selection mode."
|
297
302
|
};
|
298
303
|
_exports.ARIA_LABEL_LIST_ITEM_CHECKBOX = ARIA_LABEL_LIST_ITEM_CHECKBOX;
|
299
304
|
const ARIA_LABEL_LIST_ITEM_RADIO_BUTTON = {
|
@@ -426,11 +431,11 @@ sap.ui.define(["exports"], function (_exports) {
|
|
426
431
|
defaultText: "More"
|
427
432
|
};
|
428
433
|
_exports.LOAD_MORE_TEXT = LOAD_MORE_TEXT;
|
429
|
-
const
|
430
|
-
key: "
|
431
|
-
defaultText: "Header Row"
|
434
|
+
const TABLE_HEADER_ROW_INFORMATION = {
|
435
|
+
key: "TABLE_HEADER_ROW_INFORMATION",
|
436
|
+
defaultText: "Header Row 1 of {0}"
|
432
437
|
};
|
433
|
-
_exports.
|
438
|
+
_exports.TABLE_HEADER_ROW_INFORMATION = TABLE_HEADER_ROW_INFORMATION;
|
434
439
|
const TABLE_ROW_POSITION = {
|
435
440
|
key: "TABLE_ROW_POSITION",
|
436
441
|
defaultText: "{0} of {1}"
|
@@ -438,12 +443,12 @@ sap.ui.define(["exports"], function (_exports) {
|
|
438
443
|
_exports.TABLE_ROW_POSITION = TABLE_ROW_POSITION;
|
439
444
|
const TABLE_GROUP_ROW_ARIA_LABEL = {
|
440
445
|
key: "TABLE_GROUP_ROW_ARIA_LABEL",
|
441
|
-
defaultText: "Group
|
446
|
+
defaultText: "Group header row."
|
442
447
|
};
|
443
448
|
_exports.TABLE_GROUP_ROW_ARIA_LABEL = TABLE_GROUP_ROW_ARIA_LABEL;
|
444
449
|
const ARIA_LABEL_ROW_SELECTION = {
|
445
450
|
key: "ARIA_LABEL_ROW_SELECTION",
|
446
|
-
defaultText: "Item
|
451
|
+
defaultText: "Item selection"
|
447
452
|
};
|
448
453
|
_exports.ARIA_LABEL_ROW_SELECTION = ARIA_LABEL_ROW_SELECTION;
|
449
454
|
const ARIA_LABEL_SELECT_ALL_CHECKBOX = {
|
@@ -451,6 +456,36 @@ sap.ui.define(["exports"], function (_exports) {
|
|
451
456
|
defaultText: "Select All Rows"
|
452
457
|
};
|
453
458
|
_exports.ARIA_LABEL_SELECT_ALL_CHECKBOX = ARIA_LABEL_SELECT_ALL_CHECKBOX;
|
459
|
+
const ARIA_LABEL_EMPTY_CELL = {
|
460
|
+
key: "ARIA_LABEL_EMPTY_CELL",
|
461
|
+
defaultText: "Empty"
|
462
|
+
};
|
463
|
+
_exports.ARIA_LABEL_EMPTY_CELL = ARIA_LABEL_EMPTY_CELL;
|
464
|
+
const TAB_ARIA_DESIGN_POSITIVE = {
|
465
|
+
key: "TAB_ARIA_DESIGN_POSITIVE",
|
466
|
+
defaultText: "Positive"
|
467
|
+
};
|
468
|
+
_exports.TAB_ARIA_DESIGN_POSITIVE = TAB_ARIA_DESIGN_POSITIVE;
|
469
|
+
const TAB_ARIA_DESIGN_NEGATIVE = {
|
470
|
+
key: "TAB_ARIA_DESIGN_NEGATIVE",
|
471
|
+
defaultText: "Negative"
|
472
|
+
};
|
473
|
+
_exports.TAB_ARIA_DESIGN_NEGATIVE = TAB_ARIA_DESIGN_NEGATIVE;
|
474
|
+
const TAB_ARIA_DESIGN_CRITICAL = {
|
475
|
+
key: "TAB_ARIA_DESIGN_CRITICAL",
|
476
|
+
defaultText: "Critical"
|
477
|
+
};
|
478
|
+
_exports.TAB_ARIA_DESIGN_CRITICAL = TAB_ARIA_DESIGN_CRITICAL;
|
479
|
+
const TAB_ARIA_DESIGN_NEUTRAL = {
|
480
|
+
key: "TAB_ARIA_DESIGN_NEUTRAL",
|
481
|
+
defaultText: "Neutral"
|
482
|
+
};
|
483
|
+
_exports.TAB_ARIA_DESIGN_NEUTRAL = TAB_ARIA_DESIGN_NEUTRAL;
|
484
|
+
const TAB_SPLIT_ROLE_DESCRIPTION = {
|
485
|
+
key: "TAB_SPLIT_ROLE_DESCRIPTION",
|
486
|
+
defaultText: "Tab with subitems"
|
487
|
+
};
|
488
|
+
_exports.TAB_SPLIT_ROLE_DESCRIPTION = TAB_SPLIT_ROLE_DESCRIPTION;
|
454
489
|
const TABCONTAINER_NEXT_ICON_ACC_NAME = {
|
455
490
|
key: "TABCONTAINER_NEXT_ICON_ACC_NAME",
|
456
491
|
defaultText: "Next"
|
@@ -476,6 +511,11 @@ sap.ui.define(["exports"], function (_exports) {
|
|
476
511
|
defaultText: "Cancel"
|
477
512
|
};
|
478
513
|
_exports.TABCONTAINER_POPOVER_CANCEL_BUTTON = TABCONTAINER_POPOVER_CANCEL_BUTTON;
|
514
|
+
const TABCONTAINER_SUBTABS_DESCRIPTION = {
|
515
|
+
key: "TABCONTAINER_SUBTABS_DESCRIPTION",
|
516
|
+
defaultText: "Press down arrow key to open subitems menu"
|
517
|
+
};
|
518
|
+
_exports.TABCONTAINER_SUBTABS_DESCRIPTION = TABCONTAINER_SUBTABS_DESCRIPTION;
|
479
519
|
const TEXTAREA_CHARACTERS_LEFT = {
|
480
520
|
key: "TEXTAREA_CHARACTERS_LEFT",
|
481
521
|
defaultText: "{0} characters remaining"
|
@@ -501,11 +541,6 @@ sap.ui.define(["exports"], function (_exports) {
|
|
501
541
|
defaultText: "Seconds"
|
502
542
|
};
|
503
543
|
_exports.TIMEPICKER_SECONDS_LABEL = TIMEPICKER_SECONDS_LABEL;
|
504
|
-
const TIMEPICKER_PERIODS_LABEL = {
|
505
|
-
key: "TIMEPICKER_PERIODS_LABEL",
|
506
|
-
defaultText: "AM/PM"
|
507
|
-
};
|
508
|
-
_exports.TIMEPICKER_PERIODS_LABEL = TIMEPICKER_PERIODS_LABEL;
|
509
544
|
const TIMEPICKER_SUBMIT_BUTTON = {
|
510
545
|
key: "TIMEPICKER_SUBMIT_BUTTON",
|
511
546
|
defaultText: "OK"
|
@@ -521,11 +556,6 @@ sap.ui.define(["exports"], function (_exports) {
|
|
521
556
|
defaultText: "Time Input"
|
522
557
|
};
|
523
558
|
_exports.TIMEPICKER_INPUT_DESCRIPTION = TIMEPICKER_INPUT_DESCRIPTION;
|
524
|
-
const DURATION_INPUT_DESCRIPTION = {
|
525
|
-
key: "DURATION_INPUT_DESCRIPTION",
|
526
|
-
defaultText: "Duration Input"
|
527
|
-
};
|
528
|
-
_exports.DURATION_INPUT_DESCRIPTION = DURATION_INPUT_DESCRIPTION;
|
529
559
|
const DATETIME_PICKER_DATE_BUTTON = {
|
530
560
|
key: "DATETIME_PICKER_DATE_BUTTON",
|
531
561
|
defaultText: "Date"
|
@@ -581,6 +611,26 @@ sap.ui.define(["exports"], function (_exports) {
|
|
581
611
|
defaultText: "Collapse Node"
|
582
612
|
};
|
583
613
|
_exports.TREE_ITEM_COLLAPSE_NODE = TREE_ITEM_COLLAPSE_NODE;
|
614
|
+
const VALUE_STATE_TYPE_ERROR = {
|
615
|
+
key: "VALUE_STATE_TYPE_ERROR",
|
616
|
+
defaultText: "Value State Error"
|
617
|
+
};
|
618
|
+
_exports.VALUE_STATE_TYPE_ERROR = VALUE_STATE_TYPE_ERROR;
|
619
|
+
const VALUE_STATE_TYPE_WARNING = {
|
620
|
+
key: "VALUE_STATE_TYPE_WARNING",
|
621
|
+
defaultText: "Value State Warning"
|
622
|
+
};
|
623
|
+
_exports.VALUE_STATE_TYPE_WARNING = VALUE_STATE_TYPE_WARNING;
|
624
|
+
const VALUE_STATE_TYPE_SUCCESS = {
|
625
|
+
key: "VALUE_STATE_TYPE_SUCCESS",
|
626
|
+
defaultText: "Value State Success"
|
627
|
+
};
|
628
|
+
_exports.VALUE_STATE_TYPE_SUCCESS = VALUE_STATE_TYPE_SUCCESS;
|
629
|
+
const VALUE_STATE_TYPE_INFORMATION = {
|
630
|
+
key: "VALUE_STATE_TYPE_INFORMATION",
|
631
|
+
defaultText: "Value State Information"
|
632
|
+
};
|
633
|
+
_exports.VALUE_STATE_TYPE_INFORMATION = VALUE_STATE_TYPE_INFORMATION;
|
584
634
|
const VALUE_STATE_ERROR = {
|
585
635
|
key: "VALUE_STATE_ERROR",
|
586
636
|
defaultText: "Invalid entry"
|
@@ -613,7 +663,7 @@ sap.ui.define(["exports"], function (_exports) {
|
|
613
663
|
_exports.CALENDAR_HEADER_PREVIOUS_BUTTON = CALENDAR_HEADER_PREVIOUS_BUTTON;
|
614
664
|
const DAY_PICKER_WEEK_NUMBER_TEXT = {
|
615
665
|
key: "DAY_PICKER_WEEK_NUMBER_TEXT",
|
616
|
-
defaultText: "Week
|
666
|
+
defaultText: "Week number"
|
617
667
|
};
|
618
668
|
_exports.DAY_PICKER_WEEK_NUMBER_TEXT = DAY_PICKER_WEEK_NUMBER_TEXT;
|
619
669
|
const DAY_PICKER_NON_WORKING_DAY = {
|
@@ -626,6 +676,16 @@ sap.ui.define(["exports"], function (_exports) {
|
|
626
676
|
defaultText: "Today"
|
627
677
|
};
|
628
678
|
_exports.DAY_PICKER_TODAY = DAY_PICKER_TODAY;
|
679
|
+
const MONTH_PICKER_DESCRIPTION = {
|
680
|
+
key: "MONTH_PICKER_DESCRIPTION",
|
681
|
+
defaultText: "Month Picker"
|
682
|
+
};
|
683
|
+
_exports.MONTH_PICKER_DESCRIPTION = MONTH_PICKER_DESCRIPTION;
|
684
|
+
const YEAR_PICKER_DESCRIPTION = {
|
685
|
+
key: "YEAR_PICKER_DESCRIPTION",
|
686
|
+
defaultText: "Year Picker"
|
687
|
+
};
|
688
|
+
_exports.YEAR_PICKER_DESCRIPTION = YEAR_PICKER_DESCRIPTION;
|
629
689
|
const STEPINPUT_DEC_ICON_TITLE = {
|
630
690
|
key: "STEPINPUT_DEC_ICON_TITLE",
|
631
691
|
defaultText: "Decrease"
|
@@ -656,4 +716,29 @@ sap.ui.define(["exports"], function (_exports) {
|
|
656
716
|
defaultText: "Decline"
|
657
717
|
};
|
658
718
|
_exports.MENU_CLOSE_BUTTON_ARIA_LABEL = MENU_CLOSE_BUTTON_ARIA_LABEL;
|
719
|
+
const DIALOG_HEADER_ARIA_ROLE_DESCRIPTION = {
|
720
|
+
key: "DIALOG_HEADER_ARIA_ROLE_DESCRIPTION",
|
721
|
+
defaultText: "Interactive Header"
|
722
|
+
};
|
723
|
+
_exports.DIALOG_HEADER_ARIA_ROLE_DESCRIPTION = DIALOG_HEADER_ARIA_ROLE_DESCRIPTION;
|
724
|
+
const DIALOG_HEADER_ARIA_DESCRIBEDBY_RESIZABLE = {
|
725
|
+
key: "DIALOG_HEADER_ARIA_DESCRIBEDBY_RESIZABLE",
|
726
|
+
defaultText: "Use Shift+Arrow keys to resize"
|
727
|
+
};
|
728
|
+
_exports.DIALOG_HEADER_ARIA_DESCRIBEDBY_RESIZABLE = DIALOG_HEADER_ARIA_DESCRIBEDBY_RESIZABLE;
|
729
|
+
const DIALOG_HEADER_ARIA_DESCRIBEDBY_DRAGGABLE = {
|
730
|
+
key: "DIALOG_HEADER_ARIA_DESCRIBEDBY_DRAGGABLE",
|
731
|
+
defaultText: "Use Arrow keys to move"
|
732
|
+
};
|
733
|
+
_exports.DIALOG_HEADER_ARIA_DESCRIBEDBY_DRAGGABLE = DIALOG_HEADER_ARIA_DESCRIBEDBY_DRAGGABLE;
|
734
|
+
const DIALOG_HEADER_ARIA_DESCRIBEDBY_DRAGGABLE_RESIZABLE = {
|
735
|
+
key: "DIALOG_HEADER_ARIA_DESCRIBEDBY_DRAGGABLE_RESIZABLE",
|
736
|
+
defaultText: "Use Arrow keys to move, Shift+Arrow keys to resize"
|
737
|
+
};
|
738
|
+
_exports.DIALOG_HEADER_ARIA_DESCRIBEDBY_DRAGGABLE_RESIZABLE = DIALOG_HEADER_ARIA_DESCRIBEDBY_DRAGGABLE_RESIZABLE;
|
739
|
+
const LABEL_COLON = {
|
740
|
+
key: "LABEL_COLON",
|
741
|
+
defaultText: ":"
|
742
|
+
};
|
743
|
+
_exports.LABEL_COLON = LABEL_COLON;
|
659
744
|
});
|
@@ -7,9 +7,15 @@ 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-avatar-group-root"><div class="ui5-avatar-group-items" @keyup="${this._onkeyup}" @keydown="${this._onkeydown}" @focusin="${this._onfocusin}" tabindex="${(0, _LitRenderer.ifDefined)(this._groupTabIndex)}" @click="${this._onClick}" @ui5-click="${(0, _LitRenderer.ifDefined)(this._onUI5Click)}" aria-label="${(0, _LitRenderer.ifDefined)(this._ariaLabelText)}" role="${(0, _LitRenderer.ifDefined)(this._role)}" aria-haspopup="${(0, _LitRenderer.ifDefined)(this._containerAriaHasPopup)}"><slot></slot>${this._customOverflowButton ? block1.call(this, context, tags, suffix) : block2.call(this, context, tags, suffix)}</div></div>`;
|
12
|
+
}
|
13
|
+
function block1(context, tags, suffix) {
|
14
|
+
return (0, _LitRenderer.html)`<slot name="overflowButton"></slot>`;
|
15
|
+
}
|
16
|
+
function block2(context, tags, suffix) {
|
17
|
+
return suffix ? (0, _LitRenderer.html)`<${(0, _LitRenderer.scopeTag)("ui5-button", tags, suffix)} .accessibilityAttributes="${(0, _LitRenderer.ifDefined)(this._overflowButtonAccAttributes)}" aria-label="${(0, _LitRenderer.ifDefined)(this._overflowButtonAriaLabelText)}" ?hidden="${this._overflowBtnHidden}" ?non-interactive=${this._isGroup} class="${(0, _LitRenderer.classMap)(this.classes.overflowButton)}">${(0, _LitRenderer.ifDefined)(this._overflowButtonText)}</${(0, _LitRenderer.scopeTag)("ui5-button", tags, suffix)}>` : (0, _LitRenderer.html)`<ui5-button .accessibilityAttributes="${(0, _LitRenderer.ifDefined)(this._overflowButtonAccAttributes)}" aria-label="${(0, _LitRenderer.ifDefined)(this._overflowButtonAriaLabelText)}" ?hidden="${this._overflowBtnHidden}" ?non-interactive=${this._isGroup} class="${(0, _LitRenderer.classMap)(this.classes.overflowButton)}">${(0, _LitRenderer.ifDefined)(this._overflowButtonText)}</ui5-button>`;
|
18
|
+
}
|
13
19
|
var _default = block0;
|
14
20
|
_exports.default = _default;
|
15
21
|
});
|
@@ -7,12 +7,21 @@ 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
|
-
|
14
|
-
|
15
|
-
|
10
|
+
function block0(context, tags, suffix) {
|
11
|
+
return (0, _LitRenderer.html)`<div class="ui5-avatar-root" tabindex="${(0, _LitRenderer.ifDefined)(this.tabindex)}" data-sap-focus-ref @keyup=${this._onkeyup} @keydown=${this._onkeydown} @focusout=${this._onfocusout} @focusin=${this._onfocusin} @click=${this._onclick} role="${(0, _LitRenderer.ifDefined)(this._role)}" aria-haspopup="${(0, _LitRenderer.ifDefined)(this._ariaHasPopup)}" aria-label="${(0, _LitRenderer.ifDefined)(this.accessibleNameText)}">${this.hasImage ? block1.call(this, context, tags, suffix) : block2.call(this, context, tags, suffix)}<slot name="badge"></slot></div>`;
|
12
|
+
}
|
13
|
+
function block1(context, tags, suffix) {
|
14
|
+
return (0, _LitRenderer.html)`<slot></slot>`;
|
15
|
+
}
|
16
|
+
function block2(context, tags, suffix) {
|
17
|
+
return (0, _LitRenderer.html)`${this.icon ? block3.call(this, context, tags, suffix) : undefined}${this.initials ? block4.call(this, context, tags, suffix) : undefined}`;
|
18
|
+
}
|
19
|
+
function block3(context, tags, suffix) {
|
20
|
+
return suffix ? (0, _LitRenderer.html)`<${(0, _LitRenderer.scopeTag)("ui5-icon", tags, suffix)} class="ui5-avatar-icon" name="${(0, _LitRenderer.ifDefined)(this.icon)}"></${(0, _LitRenderer.scopeTag)("ui5-icon", tags, suffix)}>` : (0, _LitRenderer.html)`<ui5-icon class="ui5-avatar-icon" name="${(0, _LitRenderer.ifDefined)(this.icon)}"></ui5-icon>`;
|
21
|
+
}
|
22
|
+
function block4(context, tags, suffix) {
|
23
|
+
return suffix ? (0, _LitRenderer.html)`<span class="ui5-avatar-initials">${(0, _LitRenderer.ifDefined)(this.validInitials)}</span><${(0, _LitRenderer.scopeTag)("ui5-icon", tags, suffix)} class="ui5-avatar-icon ui5-avatar-icon-fallback" name="employee"></${(0, _LitRenderer.scopeTag)("ui5-icon", tags, suffix)}>` : (0, _LitRenderer.html)`<span class="ui5-avatar-initials">${(0, _LitRenderer.ifDefined)(this.validInitials)}</span><ui5-icon class="ui5-avatar-icon ui5-avatar-icon-fallback" name="employee"></ui5-icon>`;
|
24
|
+
}
|
16
25
|
var _default = block0;
|
17
26
|
_exports.default = _default;
|
18
27
|
});
|
@@ -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 (0, _LitRenderer.html)`<div class="ui5-badge-root"><slot name="icon"></slot>${this.hasText ? block1.call(this, context, tags, suffix) : undefined}<span class="ui5-hidden-text">${(0, _LitRenderer.ifDefined)(this.badgeDescription)}</span></div>`;
|
12
|
+
}
|
13
|
+
function block1(context, tags, suffix) {
|
14
|
+
return (0, _LitRenderer.html)`<label class="ui5-badge-text"><bdi><slot></slot></bdi></label>`;
|
15
|
+
}
|
12
16
|
var _default = block0;
|
13
17
|
_exports.default = _default;
|
14
18
|
});
|
package/src/sap/ui/webc/main/thirdparty/generated/templates/BreadcrumbsPopoverTemplate.lit.js
CHANGED
@@ -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-responsive-popover", tags, suffix)} class="ui5-breadcrumbs-popover" hide-arrow content-only-on-desktop placement-type="Bottom" horizontal-align="Left" _hide-header @keydown="${this._onkeydown}"><${(0, _LitRenderer.scopeTag)("ui5-list", tags, suffix)} mode="SingleSelect" separators="None" @ui5-selection-change="${(0, _LitRenderer.ifDefined)(this._onOverflowListItemSelect)}">${(0, _LitRenderer.repeat)(this._overflowItemsData, (item, index) => item._id || index, (item, index) => block1.call(this, context, tags, suffix, item, index))}</${(0, _LitRenderer.scopeTag)("ui5-list", tags, suffix)}><div slot="footer" class="ui5-breadcrumbs-popover-footer"><${(0, _LitRenderer.scopeTag)("ui5-button", tags, suffix)} design="Transparent" @click="${this._closeRespPopover}">${(0, _LitRenderer.ifDefined)(this._cancelButtonText)}</${(0, _LitRenderer.scopeTag)("ui5-button", tags, suffix)}></div></${(0, _LitRenderer.scopeTag)("ui5-responsive-popover", tags, suffix)}>` : (0, _LitRenderer.html)`<ui5-responsive-popover class="ui5-breadcrumbs-popover" hide-arrow content-only-on-desktop placement-type="Bottom" horizontal-align="Left" _hide-header @keydown="${this._onkeydown}"><ui5-list mode="SingleSelect" separators="None" @ui5-selection-change="${(0, _LitRenderer.ifDefined)(this._onOverflowListItemSelect)}">${(0, _LitRenderer.repeat)(this._overflowItemsData, (item, index) => item._id || index, (item, index) => block1.call(this, context, tags, suffix, item, index))}</ui5-list><div slot="footer" class="ui5-breadcrumbs-popover-footer"><ui5-button design="Transparent" @click="${this._closeRespPopover}">${(0, _LitRenderer.ifDefined)(this._cancelButtonText)}</ui5-button></div></ui5-responsive-popover>`;
|
12
|
+
}
|
13
|
+
function block1(context, tags, suffix, item, index) {
|
14
|
+
return suffix ? (0, _LitRenderer.html)`<${(0, _LitRenderer.scopeTag)("ui5-li", tags, suffix)} id="${(0, _LitRenderer.ifDefined)(item._id)}-li" accessible-name="${(0, _LitRenderer.ifDefined)(item.accessibleName)}" data-ui5-stable="${(0, _LitRenderer.ifDefined)(item.stableDomRef)}">${(0, _LitRenderer.ifDefined)(item.textContent)}</${(0, _LitRenderer.scopeTag)("ui5-li", tags, suffix)}>` : (0, _LitRenderer.html)`<ui5-li id="${(0, _LitRenderer.ifDefined)(item._id)}-li" accessible-name="${(0, _LitRenderer.ifDefined)(item.accessibleName)}" data-ui5-stable="${(0, _LitRenderer.ifDefined)(item.stableDomRef)}">${(0, _LitRenderer.ifDefined)(item.textContent)}</ui5-li>`;
|
15
|
+
}
|
12
16
|
var _default = block0;
|
13
17
|
_exports.default = _default;
|
14
18
|
});
|
@@ -7,9 +7,15 @@ 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 suffix ? (0, _LitRenderer.html)`<nav class="ui5-breadcrumbs-root" aria-label="${(0, _LitRenderer.ifDefined)(this._accessibleNameText)}"><ol @focusin="${this._onfocusin}" @keydown="${this._onkeydown}" @keyup="${this._onkeyup}"><li class="ui5-breadcrumbs-dropdown-arrow-link-wrapper" ?hidden="${this._isOverflowEmpty}"><${(0, _LitRenderer.scopeTag)("ui5-link", tags, suffix)} @ui5-click="${(0, _LitRenderer.ifDefined)(this._openRespPopover)}" accessible-role="button" aria-label="${(0, _LitRenderer.ifDefined)(this._dropdownArrowAccessibleNameText)}" aria-haspopup="${(0, _LitRenderer.ifDefined)(this._ariaHasPopup)}"><${(0, _LitRenderer.scopeTag)("ui5-icon", tags, suffix)} name="slim-arrow-down" title="${(0, _LitRenderer.ifDefined)(this._dropdownArrowAccessibleNameText)}"></${(0, _LitRenderer.scopeTag)("ui5-icon", tags, suffix)}></${(0, _LitRenderer.scopeTag)("ui5-link", tags, suffix)}></li>${(0, _LitRenderer.repeat)(this._linksData, (item, index) => item._id || index, (item, index) => block1.call(this, context, tags, suffix, item, index))}${this._endsWithCurrentLocationLabel ? block2.call(this, context, tags, suffix) : undefined}</ol></nav>` : (0, _LitRenderer.html)`<nav class="ui5-breadcrumbs-root" aria-label="${(0, _LitRenderer.ifDefined)(this._accessibleNameText)}"><ol @focusin="${this._onfocusin}" @keydown="${this._onkeydown}" @keyup="${this._onkeyup}"><li class="ui5-breadcrumbs-dropdown-arrow-link-wrapper" ?hidden="${this._isOverflowEmpty}"><ui5-link @ui5-click="${(0, _LitRenderer.ifDefined)(this._openRespPopover)}" accessible-role="button" aria-label="${(0, _LitRenderer.ifDefined)(this._dropdownArrowAccessibleNameText)}" aria-haspopup="${(0, _LitRenderer.ifDefined)(this._ariaHasPopup)}"><ui5-icon name="slim-arrow-down" title="${(0, _LitRenderer.ifDefined)(this._dropdownArrowAccessibleNameText)}"></ui5-icon></ui5-link></li>${(0, _LitRenderer.repeat)(this._linksData, (item, index) => item._id || index, (item, index) => block1.call(this, context, tags, suffix, item, index))}${this._endsWithCurrentLocationLabel ? block2.call(this, context, tags, suffix) : undefined}</ol></nav>`;
|
12
|
+
}
|
13
|
+
function block1(context, tags, suffix, item, index) {
|
14
|
+
return suffix ? (0, _LitRenderer.html)`<li class="ui5-breadcrumbs-link-wrapper" id="${(0, _LitRenderer.ifDefined)(item._id)}-link-wrapper"><${(0, _LitRenderer.scopeTag)("ui5-link", tags, suffix)} @ui5-click="${(0, _LitRenderer.ifDefined)(this._onLinkPress)}" href="${(0, _LitRenderer.ifDefined)(item.href)}" target="${(0, _LitRenderer.ifDefined)(item.target)}" id="${(0, _LitRenderer.ifDefined)(item._id)}-link" accessible-name="${(0, _LitRenderer.ifDefined)(item._accessibleNameText)}" data-ui5-stable="${(0, _LitRenderer.ifDefined)(item.stableDomRef)}">${(0, _LitRenderer.ifDefined)(item.innerText)}</${(0, _LitRenderer.scopeTag)("ui5-link", tags, suffix)}></li>` : (0, _LitRenderer.html)`<li class="ui5-breadcrumbs-link-wrapper" id="${(0, _LitRenderer.ifDefined)(item._id)}-link-wrapper"><ui5-link @ui5-click="${(0, _LitRenderer.ifDefined)(this._onLinkPress)}" href="${(0, _LitRenderer.ifDefined)(item.href)}" target="${(0, _LitRenderer.ifDefined)(item.target)}" id="${(0, _LitRenderer.ifDefined)(item._id)}-link" accessible-name="${(0, _LitRenderer.ifDefined)(item._accessibleNameText)}" data-ui5-stable="${(0, _LitRenderer.ifDefined)(item.stableDomRef)}">${(0, _LitRenderer.ifDefined)(item.innerText)}</ui5-link></li>`;
|
15
|
+
}
|
16
|
+
function block2(context, tags, suffix) {
|
17
|
+
return suffix ? (0, _LitRenderer.html)`<li class="ui5-breadcrumbs-current-location" @click="${this._onLabelPress}"><span aria-current="page" aria-label="${(0, _LitRenderer.ifDefined)(this._currentLocationAccName)}" role="link" id="${(0, _LitRenderer.ifDefined)(this._id)}-labelWrapper"><${(0, _LitRenderer.scopeTag)("ui5-label", tags, suffix)}>${(0, _LitRenderer.ifDefined)(this._currentLocationText)}</${(0, _LitRenderer.scopeTag)("ui5-label", tags, suffix)}></span></li>` : (0, _LitRenderer.html)`<li class="ui5-breadcrumbs-current-location" @click="${this._onLabelPress}"><span aria-current="page" aria-label="${(0, _LitRenderer.ifDefined)(this._currentLocationAccName)}" role="link" id="${(0, _LitRenderer.ifDefined)(this._id)}-labelWrapper"><ui5-label>${(0, _LitRenderer.ifDefined)(this._currentLocationText)}</ui5-label></span></li>`;
|
18
|
+
}
|
13
19
|
var _default = block0;
|
14
20
|
_exports.default = _default;
|
15
21
|
});
|
@@ -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 (0, _LitRenderer.html)`<div class="${(0, _LitRenderer.classMap)(this.classes.root)}">${this._isBusy ? block1.call(this, context, tags, suffix) : undefined}<slot></slot>${this._isBusy ? block3.call(this, context, tags, suffix) : undefined}</div>`;
|
12
|
+
}
|
13
|
+
function block1(context, tags, suffix) {
|
14
|
+
return (0, _LitRenderer.html)`<div class="ui5-busy-indicator-busy-area" title="${(0, _LitRenderer.ifDefined)(this.ariaTitle)}" tabindex="0" role="progressbar" aria-valuemin="0" aria-valuemax="100" aria-valuetext="Busy" aria-labelledby="${(0, _LitRenderer.ifDefined)(this.labelId)}" data-sap-focus-ref><div class="ui5-busy-indicator-circles-wrapper"><div class="ui5-busy-indicator-circle circle-animation-0"></div><div class="ui5-busy-indicator-circle circle-animation-1"></div><div class="ui5-busy-indicator-circle circle-animation-2"></div></div>${this.text ? block2.call(this, context, tags, suffix) : undefined}</div>`;
|
15
|
+
}
|
16
|
+
function block2(context, tags, suffix) {
|
17
|
+
return suffix ? (0, _LitRenderer.html)`<${(0, _LitRenderer.scopeTag)("ui5-label", tags, suffix)} id="${(0, _LitRenderer.ifDefined)(this._id)}-label" class="ui5-busy-indicator-text">${(0, _LitRenderer.ifDefined)(this.text)}</${(0, _LitRenderer.scopeTag)("ui5-label", tags, suffix)}>` : (0, _LitRenderer.html)`<ui5-label id="${(0, _LitRenderer.ifDefined)(this._id)}-label" class="ui5-busy-indicator-text">${(0, _LitRenderer.ifDefined)(this.text)}</ui5-label>`;
|
18
|
+
}
|
19
|
+
function block3(context, tags, suffix) {
|
20
|
+
return (0, _LitRenderer.html)`<span data-ui5-focus-redirect tabindex="0" @focusin="${this._redirectFocus}"></span>`;
|
21
|
+
}
|
14
22
|
var _default = block0;
|
15
23
|
_exports.default = _default;
|
16
24
|
});
|
@@ -7,9 +7,15 @@ 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)`<button type="button" class="ui5-button-root" ?disabled="${this.disabled}" data-sap-focus-ref @focusout=${this._onfocusout} @focusin=${this._onfocusin} @click=${this._onclick} @mousedown=${this._onmousedown} @mouseup=${this._onmouseup} @keydown=${this._onkeydown} @keyup=${this._onkeyup} @touchstart="${this._ontouchstart}" @touchend="${this._ontouchend}" tabindex=${(0, _LitRenderer.ifDefined)(this.tabIndexValue)} aria-expanded="${(0, _LitRenderer.ifDefined)(this.accessibilityAttributes.expanded)}" aria-controls="${(0, _LitRenderer.ifDefined)(this.accessibilityAttributes.controls)}" aria-haspopup="${(0, _LitRenderer.ifDefined)(this.accessibilityAttributes.hasPopup)}" aria-label="${(0, _LitRenderer.ifDefined)(this.ariaLabelText)}" title="${(0, _LitRenderer.ifDefined)(this.buttonTitle)}" part="button">${this.icon ? block1.call(this, context, tags, suffix) : undefined}<span id="${(0, _LitRenderer.ifDefined)(this._id)}-content" class="ui5-button-text"><bdi><slot></slot></bdi></span>${this.hasButtonType ? block2.call(this, context, tags, suffix) : undefined}</button> `;
|
12
|
+
}
|
13
|
+
function block1(context, tags, suffix) {
|
14
|
+
return suffix ? (0, _LitRenderer.html)`<${(0, _LitRenderer.scopeTag)("ui5-icon", tags, suffix)} class="ui5-button-icon" name="${(0, _LitRenderer.ifDefined)(this.icon)}" accessible-role="${(0, _LitRenderer.ifDefined)(this.iconRole)}" part="icon" ?show-tooltip=${this.showIconTooltip}></${(0, _LitRenderer.scopeTag)("ui5-icon", tags, suffix)}>` : (0, _LitRenderer.html)`<ui5-icon class="ui5-button-icon" name="${(0, _LitRenderer.ifDefined)(this.icon)}" accessible-role="${(0, _LitRenderer.ifDefined)(this.iconRole)}" part="icon" ?show-tooltip=${this.showIconTooltip}></ui5-icon>`;
|
15
|
+
}
|
16
|
+
function block2(context, tags, suffix) {
|
17
|
+
return (0, _LitRenderer.html)`<span class="ui5-hidden-text">${(0, _LitRenderer.ifDefined)(this.buttonTypeText)}</span>`;
|
18
|
+
}
|
13
19
|
var _default = block0;
|
14
20
|
_exports.default = _default;
|
15
21
|
});
|
@@ -7,9 +7,15 @@ 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 suffix ? (0, _LitRenderer.html)`<div class="ui5-calheader-root"><div data-ui5-cal-header-btn-prev class="${(0, _LitRenderer.classMap)(this.classes.prevButton)}" role="button" @mousedown=${this.onPrevButtonClick} title="${(0, _LitRenderer.ifDefined)(this._prevButtonText)}"><${(0, _LitRenderer.scopeTag)("ui5-icon", tags, suffix)} class="ui5-calheader-arrowicon" name="slim-arrow-left"></${(0, _LitRenderer.scopeTag)("ui5-icon", tags, suffix)}></div><div class="ui5-calheader-midcontainer"><div data-ui5-cal-header-btn-month class="ui5-calheader-arrowbtn ui5-calheader-middlebtn" ?hidden="${this.isMonthButtonHidden}" tabindex="0" role="button" aria-label="${(0, _LitRenderer.ifDefined)(this.accInfo.ariaLabelMonthButton)}" @click=${this.onMonthButtonClick} @keydown=${this.onMonthButtonKeyDown} @keyup=${this.onMonthButtonKeyUp}><span>${(0, _LitRenderer.ifDefined)(this._monthButtonText)}</span>${this.hasSecondaryCalendarType ? block1.call(this, context, tags, suffix) : undefined}</div><div data-ui5-cal-header-btn-year class="ui5-calheader-arrowbtn ui5-calheader-middlebtn" ?hidden="${this.isYearButtonHidden}" tabindex="0" role="button" @click=${this.onYearButtonClick} @keydown=${this.onYearButtonKeyDown} @keyup=${this.onYearButtonKeyUp}><span>${(0, _LitRenderer.ifDefined)(this._yearButtonText)}</span>${this.hasSecondaryCalendarType ? block2.call(this, context, tags, suffix) : undefined}</div></div><div data-ui5-cal-header-btn-next class="${(0, _LitRenderer.classMap)(this.classes.nextButton)}" role="button" @mousedown=${this.onNextButtonClick} title=${(0, _LitRenderer.ifDefined)(this._nextButtonText)}><${(0, _LitRenderer.scopeTag)("ui5-icon", tags, suffix)} class="ui5-calheader-arrowicon" name="slim-arrow-right"></${(0, _LitRenderer.scopeTag)("ui5-icon", tags, suffix)}></div></div>` : (0, _LitRenderer.html)`<div class="ui5-calheader-root"><div data-ui5-cal-header-btn-prev class="${(0, _LitRenderer.classMap)(this.classes.prevButton)}" role="button" @mousedown=${this.onPrevButtonClick} title="${(0, _LitRenderer.ifDefined)(this._prevButtonText)}"><ui5-icon class="ui5-calheader-arrowicon" name="slim-arrow-left"></ui5-icon></div><div class="ui5-calheader-midcontainer"><div data-ui5-cal-header-btn-month class="ui5-calheader-arrowbtn ui5-calheader-middlebtn" ?hidden="${this.isMonthButtonHidden}" tabindex="0" role="button" aria-label="${(0, _LitRenderer.ifDefined)(this.accInfo.ariaLabelMonthButton)}" @click=${this.onMonthButtonClick} @keydown=${this.onMonthButtonKeyDown} @keyup=${this.onMonthButtonKeyUp}><span>${(0, _LitRenderer.ifDefined)(this._monthButtonText)}</span>${this.hasSecondaryCalendarType ? block1.call(this, context, tags, suffix) : undefined}</div><div data-ui5-cal-header-btn-year class="ui5-calheader-arrowbtn ui5-calheader-middlebtn" ?hidden="${this.isYearButtonHidden}" tabindex="0" role="button" @click=${this.onYearButtonClick} @keydown=${this.onYearButtonKeyDown} @keyup=${this.onYearButtonKeyUp}><span>${(0, _LitRenderer.ifDefined)(this._yearButtonText)}</span>${this.hasSecondaryCalendarType ? block2.call(this, context, tags, suffix) : undefined}</div></div><div data-ui5-cal-header-btn-next class="${(0, _LitRenderer.classMap)(this.classes.nextButton)}" role="button" @mousedown=${this.onNextButtonClick} title=${(0, _LitRenderer.ifDefined)(this._nextButtonText)}><ui5-icon class="ui5-calheader-arrowicon" name="slim-arrow-right"></ui5-icon></div></div>`;
|
12
|
+
}
|
13
|
+
function block1(context, tags, suffix) {
|
14
|
+
return (0, _LitRenderer.html)`<span class="ui5-calheader-btn-sectext">${(0, _LitRenderer.ifDefined)(this._secondMonthButtonText)}</span>`;
|
15
|
+
}
|
16
|
+
function block2(context, tags, suffix) {
|
17
|
+
return (0, _LitRenderer.html)`<span class="ui5-calheader-btn-sectext">${(0, _LitRenderer.ifDefined)(this._yearButtonTextSecType)}</span>`;
|
18
|
+
}
|
13
19
|
var _default = block0;
|
14
20
|
_exports.default = _default;
|
15
21
|
});
|
@@ -7,7 +7,9 @@ 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
|
-
|
10
|
+
function block0(context, tags, suffix) {
|
11
|
+
return suffix ? (0, _LitRenderer.html)`<div class="ui5-cal-root" @keydown=${this._onkeydown}><div id="${(0, _LitRenderer.ifDefined)(this._id)}-content" class="ui5-cal-content"><${(0, _LitRenderer.scopeTag)("ui5-daypicker", tags, suffix)} id="${(0, _LitRenderer.ifDefined)(this._id)}-daypicker" ?hidden="${this._isDayPickerHidden}" format-pattern="${(0, _LitRenderer.ifDefined)(this._formatPattern)}" .selectedDates="${(0, _LitRenderer.ifDefined)(this._selectedDatesTimestamps)}" ._hidden="${(0, _LitRenderer.ifDefined)(this._isDayPickerHidden)}" .primaryCalendarType="${(0, _LitRenderer.ifDefined)(this._primaryCalendarType)}" .secondaryCalendarType="${(0, _LitRenderer.ifDefined)(this.secondaryCalendarType)}" .selectionMode="${(0, _LitRenderer.ifDefined)(this.selectionMode)}" .minDate="${(0, _LitRenderer.ifDefined)(this.minDate)}" .maxDate="${(0, _LitRenderer.ifDefined)(this.maxDate)}" timestamp="${(0, _LitRenderer.ifDefined)(this._timestamp)}" ?hide-week-numbers="${this.hideWeekNumbers}" @ui5-change="${(0, _LitRenderer.ifDefined)(this.onSelectedDatesChange)}" @ui5-navigate="${(0, _LitRenderer.ifDefined)(this.onNavigate)}"></${(0, _LitRenderer.scopeTag)("ui5-daypicker", tags, suffix)}><${(0, _LitRenderer.scopeTag)("ui5-monthpicker", tags, suffix)} id="${(0, _LitRenderer.ifDefined)(this._id)}-MP" ?hidden="${this._isMonthPickerHidden}" format-pattern="${(0, _LitRenderer.ifDefined)(this._formatPattern)}" .selectedDates="${(0, _LitRenderer.ifDefined)(this._selectedDatesTimestamps)}" ._hidden="${(0, _LitRenderer.ifDefined)(this._isMonthPickerHidden)}" .primaryCalendarType="${(0, _LitRenderer.ifDefined)(this._primaryCalendarType)}" .secondaryCalendarType="${(0, _LitRenderer.ifDefined)(this.secondaryCalendarType)}" .minDate="${(0, _LitRenderer.ifDefined)(this.minDate)}" .maxDate="${(0, _LitRenderer.ifDefined)(this.maxDate)}" timestamp="${(0, _LitRenderer.ifDefined)(this._timestamp)}" @ui5-change="${(0, _LitRenderer.ifDefined)(this.onSelectedMonthChange)}" @ui5-navigate="${(0, _LitRenderer.ifDefined)(this.onNavigate)}"></${(0, _LitRenderer.scopeTag)("ui5-monthpicker", tags, suffix)}><${(0, _LitRenderer.scopeTag)("ui5-yearpicker", tags, suffix)} id="${(0, _LitRenderer.ifDefined)(this._id)}-YP" ?hidden="${this._isYearPickerHidden}" format-pattern="${(0, _LitRenderer.ifDefined)(this._formatPattern)}" .selectedDates="${(0, _LitRenderer.ifDefined)(this._selectedDatesTimestamps)}" ._hidden="${(0, _LitRenderer.ifDefined)(this._isYearPickerHidden)}" .primaryCalendarType="${(0, _LitRenderer.ifDefined)(this._primaryCalendarType)}" .secondaryCalendarType="${(0, _LitRenderer.ifDefined)(this.secondaryCalendarType)}" .minDate="${(0, _LitRenderer.ifDefined)(this.minDate)}" .maxDate="${(0, _LitRenderer.ifDefined)(this.maxDate)}" timestamp="${(0, _LitRenderer.ifDefined)(this._timestamp)}" @ui5-change="${(0, _LitRenderer.ifDefined)(this.onSelectedYearChange)}" @ui5-navigate="${(0, _LitRenderer.ifDefined)(this.onNavigate)}"></${(0, _LitRenderer.scopeTag)("ui5-yearpicker", tags, suffix)}></div><${(0, _LitRenderer.scopeTag)("ui5-calendar-header", tags, suffix)} id="${(0, _LitRenderer.ifDefined)(this._id)}-head" .primaryCalendarType="${(0, _LitRenderer.ifDefined)(this._primaryCalendarType)}" .secondaryCalendarType="${(0, _LitRenderer.ifDefined)(this.secondaryCalendarType)}" .buttonTextForSecondaryCalendarType="${(0, _LitRenderer.ifDefined)(this.secondaryCalendarTypeButtonText)}" timestamp="${(0, _LitRenderer.ifDefined)(this._timestamp)}" .isPrevButtonDisabled="${(0, _LitRenderer.ifDefined)(this._previousButtonDisabled)}" .isNextButtonDisabled="${(0, _LitRenderer.ifDefined)(this._nextButtonDisabled)}" .isMonthButtonHidden="${(0, _LitRenderer.ifDefined)(this._isHeaderMonthButtonHidden)}" ._monthButtonText="${(0, _LitRenderer.ifDefined)(this._headerMonthButtonText)}" ._yearButtonText="${(0, _LitRenderer.ifDefined)(this._headerYearButtonText)}" ._yearButtonTextSecType="${(0, _LitRenderer.ifDefined)(this._headerYearButtonTextSecType)}" @ui5-previous-press="${(0, _LitRenderer.ifDefined)(this.onHeaderPreviousPress)}" @ui5-next-press="${(0, _LitRenderer.ifDefined)(this.onHeaderNextPress)}" @ui5-show-month-press="${(0, _LitRenderer.ifDefined)(this.onHeaderShowMonthPress)}" @ui5-show-year-press="${(0, _LitRenderer.ifDefined)(this.onHeaderShowYearPress)}"></${(0, _LitRenderer.scopeTag)("ui5-calendar-header", tags, suffix)}></div>` : (0, _LitRenderer.html)`<div class="ui5-cal-root" @keydown=${this._onkeydown}><div id="${(0, _LitRenderer.ifDefined)(this._id)}-content" class="ui5-cal-content"><ui5-daypicker id="${(0, _LitRenderer.ifDefined)(this._id)}-daypicker" ?hidden="${this._isDayPickerHidden}" format-pattern="${(0, _LitRenderer.ifDefined)(this._formatPattern)}" .selectedDates="${(0, _LitRenderer.ifDefined)(this._selectedDatesTimestamps)}" ._hidden="${(0, _LitRenderer.ifDefined)(this._isDayPickerHidden)}" .primaryCalendarType="${(0, _LitRenderer.ifDefined)(this._primaryCalendarType)}" .secondaryCalendarType="${(0, _LitRenderer.ifDefined)(this.secondaryCalendarType)}" .selectionMode="${(0, _LitRenderer.ifDefined)(this.selectionMode)}" .minDate="${(0, _LitRenderer.ifDefined)(this.minDate)}" .maxDate="${(0, _LitRenderer.ifDefined)(this.maxDate)}" timestamp="${(0, _LitRenderer.ifDefined)(this._timestamp)}" ?hide-week-numbers="${this.hideWeekNumbers}" @ui5-change="${(0, _LitRenderer.ifDefined)(this.onSelectedDatesChange)}" @ui5-navigate="${(0, _LitRenderer.ifDefined)(this.onNavigate)}"></ui5-daypicker><ui5-monthpicker id="${(0, _LitRenderer.ifDefined)(this._id)}-MP" ?hidden="${this._isMonthPickerHidden}" format-pattern="${(0, _LitRenderer.ifDefined)(this._formatPattern)}" .selectedDates="${(0, _LitRenderer.ifDefined)(this._selectedDatesTimestamps)}" ._hidden="${(0, _LitRenderer.ifDefined)(this._isMonthPickerHidden)}" .primaryCalendarType="${(0, _LitRenderer.ifDefined)(this._primaryCalendarType)}" .secondaryCalendarType="${(0, _LitRenderer.ifDefined)(this.secondaryCalendarType)}" .minDate="${(0, _LitRenderer.ifDefined)(this.minDate)}" .maxDate="${(0, _LitRenderer.ifDefined)(this.maxDate)}" timestamp="${(0, _LitRenderer.ifDefined)(this._timestamp)}" @ui5-change="${(0, _LitRenderer.ifDefined)(this.onSelectedMonthChange)}" @ui5-navigate="${(0, _LitRenderer.ifDefined)(this.onNavigate)}"></ui5-monthpicker><ui5-yearpicker id="${(0, _LitRenderer.ifDefined)(this._id)}-YP" ?hidden="${this._isYearPickerHidden}" format-pattern="${(0, _LitRenderer.ifDefined)(this._formatPattern)}" .selectedDates="${(0, _LitRenderer.ifDefined)(this._selectedDatesTimestamps)}" ._hidden="${(0, _LitRenderer.ifDefined)(this._isYearPickerHidden)}" .primaryCalendarType="${(0, _LitRenderer.ifDefined)(this._primaryCalendarType)}" .secondaryCalendarType="${(0, _LitRenderer.ifDefined)(this.secondaryCalendarType)}" .minDate="${(0, _LitRenderer.ifDefined)(this.minDate)}" .maxDate="${(0, _LitRenderer.ifDefined)(this.maxDate)}" timestamp="${(0, _LitRenderer.ifDefined)(this._timestamp)}" @ui5-change="${(0, _LitRenderer.ifDefined)(this.onSelectedYearChange)}" @ui5-navigate="${(0, _LitRenderer.ifDefined)(this.onNavigate)}"></ui5-yearpicker></div><ui5-calendar-header id="${(0, _LitRenderer.ifDefined)(this._id)}-head" .primaryCalendarType="${(0, _LitRenderer.ifDefined)(this._primaryCalendarType)}" .secondaryCalendarType="${(0, _LitRenderer.ifDefined)(this.secondaryCalendarType)}" .buttonTextForSecondaryCalendarType="${(0, _LitRenderer.ifDefined)(this.secondaryCalendarTypeButtonText)}" timestamp="${(0, _LitRenderer.ifDefined)(this._timestamp)}" .isPrevButtonDisabled="${(0, _LitRenderer.ifDefined)(this._previousButtonDisabled)}" .isNextButtonDisabled="${(0, _LitRenderer.ifDefined)(this._nextButtonDisabled)}" .isMonthButtonHidden="${(0, _LitRenderer.ifDefined)(this._isHeaderMonthButtonHidden)}" ._monthButtonText="${(0, _LitRenderer.ifDefined)(this._headerMonthButtonText)}" ._yearButtonText="${(0, _LitRenderer.ifDefined)(this._headerYearButtonText)}" ._yearButtonTextSecType="${(0, _LitRenderer.ifDefined)(this._headerYearButtonTextSecType)}" @ui5-previous-press="${(0, _LitRenderer.ifDefined)(this.onHeaderPreviousPress)}" @ui5-next-press="${(0, _LitRenderer.ifDefined)(this.onHeaderNextPress)}" @ui5-show-month-press="${(0, _LitRenderer.ifDefined)(this.onHeaderShowMonthPress)}" @ui5-show-year-press="${(0, _LitRenderer.ifDefined)(this.onHeaderShowYearPress)}"></ui5-calendar-header></div>`;
|
12
|
+
}
|
11
13
|
var _default = block0;
|
12
14
|
_exports.default = _default;
|
13
15
|
});
|
@@ -7,12 +7,24 @@ 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
|
-
|
14
|
-
|
15
|
-
|
10
|
+
function block0(context, tags, suffix) {
|
11
|
+
return (0, _LitRenderer.html)`<div id="${(0, _LitRenderer.ifDefined)(this._id)}--header" class="${(0, _LitRenderer.classMap)(this.classes.root)}" role="group" aria-roledescription="${(0, _LitRenderer.ifDefined)(this.ariaRoleDescription)}" @click="${this._click}" @keydown="${this._keydown}" @keyup="${this._keyup}" part="root"><div class="ui5-card-header-focusable-element" aria-labelledby="${(0, _LitRenderer.ifDefined)(this.ariaLabelledBy)}" role="${(0, _LitRenderer.ifDefined)(this.ariaRoleFocusableElement)}" data-sap-focus-ref tabindex="0">${this.hasAvatar ? block1.call(this, context, tags, suffix) : undefined}<div class="ui5-card-header-text"><div class="ui5-card-header-first-line">${this.titleText ? block2.call(this, context, tags, suffix) : undefined}${this.status ? block3.call(this, context, tags, suffix) : undefined}</div>${this.subtitleText ? block4.call(this, context, tags, suffix) : undefined}</div></div>${this.hasAction ? block5.call(this, context, tags, suffix) : undefined}</div></div>`;
|
12
|
+
}
|
13
|
+
function block1(context, tags, suffix) {
|
14
|
+
return (0, _LitRenderer.html)`<div id="${(0, _LitRenderer.ifDefined)(this._id)}-avatar" class="ui5-card-header-avatar" aria-label="${(0, _LitRenderer.ifDefined)(this.ariaCardAvatarLabel)}"><slot name="avatar"></slot></div>`;
|
15
|
+
}
|
16
|
+
function block2(context, tags, suffix) {
|
17
|
+
return (0, _LitRenderer.html)`<div id="${(0, _LitRenderer.ifDefined)(this._id)}-title" class="ui5-card-header-title" part="title" role="heading" aria-level="3">${(0, _LitRenderer.ifDefined)(this.titleText)}</div>`;
|
18
|
+
}
|
19
|
+
function block3(context, tags, suffix) {
|
20
|
+
return (0, _LitRenderer.html)`<div class="ui5-card-header-status"><span id="${(0, _LitRenderer.ifDefined)(this._id)}-status" part="status" dir="auto">${(0, _LitRenderer.ifDefined)(this.status)}</span></div>`;
|
21
|
+
}
|
22
|
+
function block4(context, tags, suffix) {
|
23
|
+
return (0, _LitRenderer.html)`<div id="${(0, _LitRenderer.ifDefined)(this._id)}-subtitle" class="ui5-card-header-subtitle" part="subtitle">${(0, _LitRenderer.ifDefined)(this.subtitleText)}</div>`;
|
24
|
+
}
|
25
|
+
function block5(context, tags, suffix) {
|
26
|
+
return (0, _LitRenderer.html)`<div class="ui5-card-header-action" @focusin="${this._actionsFocusin}" @focusout="${this._actionsFocusout}"><slot name="action"></slot></div>`;
|
27
|
+
}
|
16
28
|
var _default = block0;
|
17
29
|
_exports.default = _default;
|
18
30
|
});
|