@openui5/sap.ui.webc.main 1.115.0 → 1.116.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.reuse/dep5 +0 -5
- package/THIRDPARTY.txt +1 -7
- package/package.json +3 -3
- package/src/sap/ui/webc/main/.library +1 -1
- package/src/sap/ui/webc/main/Avatar.js +23 -3
- package/src/sap/ui/webc/main/AvatarGroup.js +1 -1
- package/src/sap/ui/webc/main/Badge.js +2 -2
- package/src/sap/ui/webc/main/Breadcrumbs.js +1 -1
- package/src/sap/ui/webc/main/BreadcrumbsItem.js +3 -3
- package/src/sap/ui/webc/main/BusyIndicator.js +1 -1
- package/src/sap/ui/webc/main/Button.js +4 -3
- package/src/sap/ui/webc/main/Calendar.js +6 -2
- package/src/sap/ui/webc/main/CalendarDate.js +2 -2
- package/src/sap/ui/webc/main/Card.js +3 -7
- package/src/sap/ui/webc/main/CardHeader.js +7 -2
- package/src/sap/ui/webc/main/Carousel.js +49 -4
- package/src/sap/ui/webc/main/CheckBox.js +14 -4
- package/src/sap/ui/webc/main/ColorPalette.js +1 -1
- package/src/sap/ui/webc/main/ColorPaletteItem.js +1 -1
- package/src/sap/ui/webc/main/ColorPalettePopover.js +1 -1
- package/src/sap/ui/webc/main/ColorPicker.js +1 -1
- package/src/sap/ui/webc/main/ComboBox.js +11 -8
- package/src/sap/ui/webc/main/ComboBoxGroupItem.js +1 -1
- package/src/sap/ui/webc/main/ComboBoxItem.js +1 -1
- package/src/sap/ui/webc/main/CustomListItem.js +19 -3
- package/src/sap/ui/webc/main/DatePicker.js +7 -2
- package/src/sap/ui/webc/main/DateRangePicker.js +9 -3
- package/src/sap/ui/webc/main/DateTimePicker.js +8 -3
- package/src/sap/ui/webc/main/Dialog.js +37 -6
- package/src/sap/ui/webc/main/FileUploader.js +1 -1
- package/src/sap/ui/webc/main/GroupHeaderListItem.js +1 -1
- package/src/sap/ui/webc/main/Icon.js +42 -2
- package/src/sap/ui/webc/main/Input.js +2 -2
- package/src/sap/ui/webc/main/Label.js +7 -3
- package/src/sap/ui/webc/main/Link.js +12 -2
- package/src/sap/ui/webc/main/List.js +2 -1
- package/src/sap/ui/webc/main/Menu.js +87 -3
- package/src/sap/ui/webc/main/MenuItem.js +34 -1
- package/src/sap/ui/webc/main/MessageStrip.js +1 -1
- package/src/sap/ui/webc/main/MultiComboBox.js +8 -7
- package/src/sap/ui/webc/main/MultiComboBoxGroupItem.js +1 -1
- package/src/sap/ui/webc/main/MultiComboBoxItem.js +1 -1
- package/src/sap/ui/webc/main/MultiInput.js +4 -4
- package/src/sap/ui/webc/main/Option.js +1 -1
- package/src/sap/ui/webc/main/Panel.js +3 -3
- package/src/sap/ui/webc/main/Popover.js +18 -4
- package/src/sap/ui/webc/main/ProgressIndicator.js +1 -1
- package/src/sap/ui/webc/main/RadioButton.js +17 -1
- package/src/sap/ui/webc/main/RangeSlider.js +12 -2
- package/src/sap/ui/webc/main/RatingIndicator.js +2 -2
- package/src/sap/ui/webc/main/ResponsivePopover.js +18 -4
- package/src/sap/ui/webc/main/SegmentedButton.js +40 -5
- package/src/sap/ui/webc/main/SegmentedButtonItem.js +4 -3
- package/src/sap/ui/webc/main/Select.js +20 -4
- package/src/sap/ui/webc/main/Slider.js +2 -2
- package/src/sap/ui/webc/main/SplitButton.js +7 -7
- package/src/sap/ui/webc/main/StandardListItem.js +31 -4
- package/src/sap/ui/webc/main/StepInput.js +2 -2
- package/src/sap/ui/webc/main/SuggestionGroupItem.js +1 -1
- package/src/sap/ui/webc/main/SuggestionItem.js +2 -2
- package/src/sap/ui/webc/main/Switch.js +2 -2
- package/src/sap/ui/webc/main/Tab.js +3 -3
- package/src/sap/ui/webc/main/TabContainer.js +40 -4
- package/src/sap/ui/webc/main/TabSeparator.js +10 -2
- package/src/sap/ui/webc/main/Table.js +2 -2
- package/src/sap/ui/webc/main/TableCell.js +1 -1
- package/src/sap/ui/webc/main/TableColumn.js +21 -1
- package/src/sap/ui/webc/main/TableGroupRow.js +1 -1
- package/src/sap/ui/webc/main/TableRow.js +9 -1
- package/src/sap/ui/webc/main/TextArea.js +2 -3
- package/src/sap/ui/webc/main/TimePicker.js +31 -3
- package/src/sap/ui/webc/main/Title.js +1 -1
- package/src/sap/ui/webc/main/Toast.js +1 -1
- package/src/sap/ui/webc/main/ToggleButton.js +4 -3
- package/src/sap/ui/webc/main/Token.js +6 -4
- package/src/sap/ui/webc/main/Tree.js +31 -2
- package/src/sap/ui/webc/main/TreeItem.js +63 -10
- package/src/sap/ui/webc/main/TreeItemCustom.js +205 -0
- package/src/sap/ui/webc/main/changeHandler/ChangeLinkTarget.js +1 -1
- package/src/sap/ui/webc/main/library.js +348 -70
- package/src/sap/ui/webc/main/thirdparty/Avatar.js +130 -232
- package/src/sap/ui/webc/main/thirdparty/AvatarGroup.js +109 -184
- package/src/sap/ui/webc/main/thirdparty/Badge.js +40 -86
- package/src/sap/ui/webc/main/thirdparty/Breadcrumbs.js +152 -202
- package/src/sap/ui/webc/main/thirdparty/BreadcrumbsItem.js +27 -78
- package/src/sap/ui/webc/main/thirdparty/BusyIndicator.js +46 -115
- package/src/sap/ui/webc/main/thirdparty/Button.js +123 -287
- package/src/sap/ui/webc/main/thirdparty/Calendar.js +146 -197
- package/src/sap/ui/webc/main/thirdparty/CalendarDate.js +16 -26
- package/src/sap/ui/webc/main/thirdparty/CalendarHeader.js +78 -113
- package/src/sap/ui/webc/main/thirdparty/CalendarPart.js +16 -27
- package/src/sap/ui/webc/main/thirdparty/Card.js +43 -92
- package/src/sap/ui/webc/main/thirdparty/CardHeader.js +69 -129
- package/src/sap/ui/webc/main/thirdparty/Carousel.js +167 -229
- package/src/sap/ui/webc/main/thirdparty/CheckBox.js +103 -244
- package/src/sap/ui/webc/main/thirdparty/ColorPalette.js +122 -173
- package/src/sap/ui/webc/main/thirdparty/ColorPaletteItem.js +41 -77
- package/src/sap/ui/webc/main/thirdparty/ColorPalettePopover.js +62 -105
- package/src/sap/ui/webc/main/thirdparty/ColorPicker.js +138 -244
- package/src/sap/ui/webc/main/thirdparty/ComboBox.js +297 -419
- package/src/sap/ui/webc/main/thirdparty/ComboBoxGroupItem.js +20 -41
- package/src/sap/ui/webc/main/thirdparty/ComboBoxItem.js +30 -37
- package/src/sap/ui/webc/main/thirdparty/CustomListItem.js +33 -54
- package/src/sap/ui/webc/main/thirdparty/DateComponentBase.js +59 -76
- package/src/sap/ui/webc/main/thirdparty/DatePicker.js +207 -334
- package/src/sap/ui/webc/main/thirdparty/DateRangePicker.js +56 -72
- package/src/sap/ui/webc/main/thirdparty/DateTimePicker.js +63 -111
- package/src/sap/ui/webc/main/thirdparty/DayPicker.js +147 -212
- package/src/sap/ui/webc/main/thirdparty/Dialog.js +162 -183
- package/src/sap/ui/webc/main/thirdparty/FileUploader.js +101 -242
- package/src/sap/ui/webc/main/thirdparty/GroupHeaderListItem.js +25 -58
- package/src/sap/ui/webc/main/thirdparty/Icon.js +103 -193
- package/src/sap/ui/webc/main/thirdparty/Input.js +453 -717
- package/src/sap/ui/webc/main/thirdparty/Interfaces.js +51 -61
- package/src/sap/ui/webc/main/thirdparty/Label.js +49 -108
- package/src/sap/ui/webc/main/thirdparty/Link.js +104 -247
- package/src/sap/ui/webc/main/thirdparty/List.js +303 -468
- package/src/sap/ui/webc/main/thirdparty/ListItem.js +126 -166
- package/src/sap/ui/webc/main/thirdparty/ListItemBase.js +64 -104
- package/src/sap/ui/webc/main/thirdparty/Menu.js +264 -200
- package/src/sap/ui/webc/main/thirdparty/MenuItem.js +66 -117
- package/src/sap/ui/webc/main/thirdparty/MessageStrip.js +70 -141
- package/src/sap/ui/webc/main/thirdparty/MonthPicker.js +100 -103
- package/src/sap/ui/webc/main/thirdparty/MultiComboBox.js +381 -496
- package/src/sap/ui/webc/main/thirdparty/MultiComboBoxGroupItem.js +20 -34
- package/src/sap/ui/webc/main/thirdparty/MultiComboBoxItem.js +19 -26
- package/src/sap/ui/webc/main/thirdparty/MultiInput.js +127 -137
- package/src/sap/ui/webc/main/thirdparty/Option.js +40 -107
- package/src/sap/ui/webc/main/thirdparty/Panel.js +102 -214
- package/src/sap/ui/webc/main/thirdparty/Popover.js +141 -274
- package/src/sap/ui/webc/main/thirdparty/Popup.js +155 -250
- package/src/sap/ui/webc/main/thirdparty/ProgressIndicator.js +41 -109
- package/src/sap/ui/webc/main/thirdparty/RadioButton.js +111 -263
- package/src/sap/ui/webc/main/thirdparty/RadioButtonGroup.js +32 -13
- package/src/sap/ui/webc/main/thirdparty/RangeSlider.js +208 -208
- package/src/sap/ui/webc/main/thirdparty/RatingIndicator.js +79 -146
- package/src/sap/ui/webc/main/thirdparty/ResponsivePopover.js +70 -81
- package/src/sap/ui/webc/main/thirdparty/SegmentedButton.js +141 -126
- package/src/sap/ui/webc/main/thirdparty/SegmentedButtonItem.js +41 -73
- package/src/sap/ui/webc/main/thirdparty/Select.js +186 -285
- package/src/sap/ui/webc/main/thirdparty/Slider.js +84 -80
- package/src/sap/ui/webc/main/thirdparty/SliderBase.js +151 -326
- package/src/sap/ui/webc/main/thirdparty/SplitButton.js +111 -240
- package/src/sap/ui/webc/main/thirdparty/StandardListItem.js +50 -142
- package/src/sap/ui/webc/main/thirdparty/StepInput.js +137 -309
- package/src/sap/ui/webc/main/thirdparty/SuggestionGroupItem.js +22 -35
- package/src/sap/ui/webc/main/thirdparty/SuggestionItem.js +37 -114
- package/src/sap/ui/webc/main/thirdparty/SuggestionListItem.js +29 -37
- package/src/sap/ui/webc/main/thirdparty/Switch.js +63 -146
- package/src/sap/ui/webc/main/thirdparty/Tab.js +126 -168
- package/src/sap/ui/webc/main/thirdparty/TabContainer.js +344 -453
- package/src/sap/ui/webc/main/thirdparty/TabSeparator.js +35 -26
- package/src/sap/ui/webc/main/thirdparty/Table.js +319 -489
- package/src/sap/ui/webc/main/thirdparty/TableCell.js +41 -50
- package/src/sap/ui/webc/main/thirdparty/TableColumn.js +38 -88
- package/src/sap/ui/webc/main/thirdparty/TableGroupRow.js +50 -90
- package/src/sap/ui/webc/main/thirdparty/TableRow.js +137 -174
- package/src/sap/ui/webc/main/thirdparty/TextArea.js +162 -358
- package/src/sap/ui/webc/main/thirdparty/TimePicker.js +24 -52
- package/src/sap/ui/webc/main/thirdparty/TimePickerBase.js +116 -159
- package/src/sap/ui/webc/main/thirdparty/TimeSelection.js +121 -167
- package/src/sap/ui/webc/main/thirdparty/Title.js +38 -71
- package/src/sap/ui/webc/main/thirdparty/Toast.js +41 -110
- package/src/sap/ui/webc/main/thirdparty/ToggleButton.js +25 -39
- package/src/sap/ui/webc/main/thirdparty/Token.js +86 -143
- package/src/sap/ui/webc/main/thirdparty/Tokenizer.js +256 -202
- package/src/sap/ui/webc/main/thirdparty/Tree.js +227 -302
- package/src/sap/ui/webc/main/thirdparty/TreeItem.js +42 -156
- package/src/sap/ui/webc/main/thirdparty/TreeItemBase.js +256 -0
- package/src/sap/ui/webc/main/thirdparty/TreeItemCustom.js +80 -0
- package/src/sap/ui/webc/main/thirdparty/TreeList.js +51 -0
- package/src/sap/ui/webc/main/thirdparty/WheelSlider.js +75 -120
- package/src/sap/ui/webc/main/thirdparty/YearPicker.js +135 -124
- package/src/sap/ui/webc/main/thirdparty/css/themes/Avatar.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/AvatarGroup.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/Badge.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/Breadcrumbs.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/BreadcrumbsPopover.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/BrowserScrollbar.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/BusyIndicator.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/Button.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/Calendar.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/CalendarHeader.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/Card.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/CardHeader.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/Carousel.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/CheckBox.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/ColorPalette.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/ColorPaletteItem.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/ColorPalettePopover.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/ColorPaletteStaticArea.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/ColorPicker.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/ComboBox.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/ComboBoxPopover.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/CustomListItem.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/DatePicker.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/DatePickerPopover.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/DateRangePicker.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/DateTimePicker.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/DateTimePickerPopover.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/DayPicker.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/Dialog.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/FileUploader.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/FormComponents.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/GroupHeaderListItem.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/GrowingButton.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/Icon.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/Input.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/InputIcon.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/InvisibleTextStyles.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/Label.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/Link.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/List.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/ListItem.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/ListItemBase.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/Menu.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/MessageStrip.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/MonthPicker.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/MultiComboBox.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/MultiInput.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/Panel.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/Popover.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/Popup.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/PopupStaticAreaStyles.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/PopupsCommon.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/ProgressIndicator.css +3 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/RadioButton.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/RangeSlider.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/RatingIndicator.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/ResponsivePopover.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/ResponsivePopoverCommon.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/SegmentedButton.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/Select.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/SelectPopover.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/SliderBase.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/SplitButton.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/StepInput.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/Suggestions.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/Switch.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/Tab.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/TabContainer.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/TabInOverflow.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/TabInStrip.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/TabSemanticIcon.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/TabSeparatorInOverflow.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/TabSeparatorInStrip.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/Table.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/TableCell.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/TableColumn.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/TableGroupRow.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/TableRow.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/TextArea.css +2 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/TimePicker.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/TimePickerPopover.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/TimeSelection.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/Title.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/Toast.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/ToggleButton.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/Token.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/Tokenizer.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/Tree.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/TreeItem.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/ValueStateMessage.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/WheelSlider.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/YearPicker.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/sap_belize/parameters-bundle.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/sap_belize_hcb/parameters-bundle.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/sap_belize_hcw/parameters-bundle.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/sap_fiori_3/parameters-bundle.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/sap_fiori_3_dark/parameters-bundle.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/sap_fiori_3_hcb/parameters-bundle.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/sap_fiori_3_hcw/parameters-bundle.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/sap_horizon/parameters-bundle.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/sap_horizon_dark/parameters-bundle.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/sap_horizon_exp/parameters-bundle.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/sap_horizon_hcb/parameters-bundle.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/sap_horizon_hcw/parameters-bundle.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/custom-elements.json.js +1 -0
- package/src/sap/ui/webc/main/thirdparty/features/InputElementsFormSupport.js +25 -10
- package/src/sap/ui/webc/main/thirdparty/features/InputSuggestions.js +70 -72
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_ar.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_bg.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_ca.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_cs.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_cy.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_da.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_de.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_el.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_en.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_en_GB.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_en_US_sappsd.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_en_US_saprigi.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_en_US_saptrc.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_es.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_es_MX.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_et.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_fi.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_fr.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_fr_CA.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_hi.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_hr.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_hu.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_it.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_iw.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_ja.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_kk.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_ko.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_lt.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_lv.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_ms.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_nl.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_no.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_pl.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_pt.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_pt_PT.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_ro.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_ru.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_sh.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_sk.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_sl.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_sv.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_th.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_tr.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_uk.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_vi.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_zh_CN.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_zh_TW.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/themes/sap_belize/parameters-bundle.css.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/themes/sap_belize_hcb/parameters-bundle.css.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/themes/sap_belize_hcw/parameters-bundle.css.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/themes/sap_fiori_3/parameters-bundle.css.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/themes/sap_fiori_3_dark/parameters-bundle.css.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/themes/sap_fiori_3_hcb/parameters-bundle.css.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/themes/sap_fiori_3_hcw/parameters-bundle.css.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/themes/sap_horizon/parameters-bundle.css.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/themes/sap_horizon_dark/parameters-bundle.css.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/themes/sap_horizon_exp/parameters-bundle.css.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/themes/sap_horizon_hcb/parameters-bundle.css.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/assets/themes/sap_horizon_hcw/parameters-bundle.css.json.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/i18n/i18n-defaults.js +108 -23
- package/src/sap/ui/webc/main/thirdparty/generated/templates/AvatarGroupTemplate.lit.js +9 -3
- package/src/sap/ui/webc/main/thirdparty/generated/templates/AvatarTemplate.lit.js +15 -6
- package/src/sap/ui/webc/main/thirdparty/generated/templates/BadgeTemplate.lit.js +6 -2
- package/src/sap/ui/webc/main/thirdparty/generated/templates/BreadcrumbsPopoverTemplate.lit.js +6 -2
- package/src/sap/ui/webc/main/thirdparty/generated/templates/BreadcrumbsTemplate.lit.js +9 -3
- package/src/sap/ui/webc/main/thirdparty/generated/templates/BusyIndicatorTemplate.lit.js +12 -4
- package/src/sap/ui/webc/main/thirdparty/generated/templates/ButtonTemplate.lit.js +9 -3
- package/src/sap/ui/webc/main/thirdparty/generated/templates/CalendarHeaderTemplate.lit.js +9 -3
- package/src/sap/ui/webc/main/thirdparty/generated/templates/CalendarTemplate.lit.js +3 -1
- package/src/sap/ui/webc/main/thirdparty/generated/templates/CardHeaderTemplate.lit.js +18 -6
- package/src/sap/ui/webc/main/thirdparty/generated/templates/CardTemplate.lit.js +6 -2
- package/src/sap/ui/webc/main/thirdparty/generated/templates/CarouselTemplate.lit.js +30 -10
- package/src/sap/ui/webc/main/thirdparty/generated/templates/CheckBoxTemplate.lit.js +12 -4
- package/src/sap/ui/webc/main/thirdparty/generated/templates/ColorPaletteDialogTemplate.lit.js +3 -1
- package/src/sap/ui/webc/main/thirdparty/generated/templates/ColorPaletteItemTemplate.lit.js +3 -1
- package/src/sap/ui/webc/main/thirdparty/generated/templates/ColorPalettePopoverTemplate.lit.js +6 -2
- package/src/sap/ui/webc/main/thirdparty/generated/templates/ColorPaletteTemplate.lit.js +18 -6
- package/src/sap/ui/webc/main/thirdparty/generated/templates/ColorPickerTemplate.lit.js +3 -1
- package/src/sap/ui/webc/main/thirdparty/generated/templates/ComboBoxPopoverTemplate.lit.js +57 -17
- package/src/sap/ui/webc/main/thirdparty/generated/templates/ComboBoxTemplate.lit.js +12 -4
- package/src/sap/ui/webc/main/thirdparty/generated/templates/CustomListItemTemplate.lit.js +48 -10
- package/src/sap/ui/webc/main/thirdparty/generated/templates/DatePickerPopoverTemplate.lit.js +12 -4
- package/src/sap/ui/webc/main/thirdparty/generated/templates/DatePickerTemplate.lit.js +9 -3
- package/src/sap/ui/webc/main/thirdparty/generated/templates/DateTimePickerPopoverTemplate.lit.js +18 -6
- package/src/sap/ui/webc/main/thirdparty/generated/templates/DayPickerTemplate.lit.js +30 -10
- package/src/sap/ui/webc/main/thirdparty/generated/templates/DialogTemplate.lit.js +36 -6
- package/src/sap/ui/webc/main/thirdparty/generated/templates/FileUploaderPopoverTemplate.lit.js +15 -5
- package/src/sap/ui/webc/main/thirdparty/generated/templates/FileUploaderTemplate.lit.js +12 -4
- package/src/sap/ui/webc/main/thirdparty/generated/templates/GroupHeaderListItemTemplate.lit.js +3 -1
- package/src/sap/ui/webc/main/thirdparty/generated/templates/IconTemplate.lit.js +16 -3
- package/src/sap/ui/webc/main/thirdparty/generated/templates/InputPopoverTemplate.lit.js +63 -21
- package/src/sap/ui/webc/main/thirdparty/generated/templates/InputTemplate.lit.js +18 -6
- package/src/sap/ui/webc/main/thirdparty/generated/templates/LabelTemplate.lit.js +3 -1
- package/src/sap/ui/webc/main/thirdparty/generated/templates/LinkTemplate.lit.js +6 -2
- package/src/sap/ui/webc/main/thirdparty/generated/templates/ListItemTemplate.lit.js +48 -10
- package/src/sap/ui/webc/main/thirdparty/generated/templates/ListTemplate.lit.js +27 -9
- package/src/sap/ui/webc/main/thirdparty/generated/templates/MenuTemplate.lit.js +33 -9
- package/src/sap/ui/webc/main/thirdparty/generated/templates/MessageStripTemplate.lit.js +15 -5
- package/src/sap/ui/webc/main/thirdparty/generated/templates/MonthPickerTemplate.lit.js +12 -3
- package/src/sap/ui/webc/main/thirdparty/generated/templates/MultiComboBoxPopoverTemplate.lit.js +72 -24
- package/src/sap/ui/webc/main/thirdparty/generated/templates/MultiComboBoxTemplate.lit.js +18 -6
- package/src/sap/ui/webc/main/thirdparty/generated/templates/MultiInputTemplate.lit.js +30 -10
- package/src/sap/ui/webc/main/thirdparty/generated/templates/PanelTemplate.lit.js +21 -6
- package/src/sap/ui/webc/main/thirdparty/generated/templates/PopoverTemplate.lit.js +18 -6
- package/src/sap/ui/webc/main/thirdparty/generated/templates/PopupBlockLayerTemplate.lit.js +3 -1
- package/src/sap/ui/webc/main/thirdparty/generated/templates/PopupTemplate.lit.js +3 -1
- package/src/sap/ui/webc/main/thirdparty/generated/templates/ProgressIndicatorTemplate.lit.js +33 -11
- package/src/sap/ui/webc/main/thirdparty/generated/templates/RadioButtonTemplate.lit.js +13 -4
- package/src/sap/ui/webc/main/thirdparty/generated/templates/RangeSliderTemplate.lit.js +30 -10
- package/src/sap/ui/webc/main/thirdparty/generated/templates/RatingIndicatorTemplate.lit.js +30 -10
- package/src/sap/ui/webc/main/thirdparty/generated/templates/ResponsivePopoverTemplate.lit.js +39 -13
- package/src/sap/ui/webc/main/thirdparty/generated/templates/SegmentedButtonItemTemplate.lit.js +6 -2
- package/src/sap/ui/webc/main/thirdparty/generated/templates/SegmentedButtonTemplate.lit.js +3 -1
- package/src/sap/ui/webc/main/thirdparty/generated/templates/SelectPopoverTemplate.lit.js +51 -17
- package/src/sap/ui/webc/main/thirdparty/generated/templates/SelectTemplate.lit.js +9 -3
- package/src/sap/ui/webc/main/thirdparty/generated/templates/SliderBaseTemplate.lit.js +24 -8
- package/src/sap/ui/webc/main/thirdparty/generated/templates/SliderTemplate.lit.js +27 -9
- package/src/sap/ui/webc/main/thirdparty/generated/templates/SplitButtonTemplate.lit.js +6 -1
- package/src/sap/ui/webc/main/thirdparty/generated/templates/StandardListItemTemplate.lit.js +78 -18
- package/src/sap/ui/webc/main/thirdparty/generated/templates/StepInputTemplate.lit.js +12 -4
- package/src/sap/ui/webc/main/thirdparty/generated/templates/SuggestionListItemTemplate.lit.js +87 -21
- package/src/sap/ui/webc/main/thirdparty/generated/templates/SwitchTemplate.lit.js +15 -5
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TabContainerPopoverTemplate.lit.js +6 -2
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TabContainerTemplate.lit.js +33 -10
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TabInOverflowTemplate.lit.js +18 -5
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TabInStripTemplate.lit.js +24 -8
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TabSeparatorInOverflowTemplate.lit.js +3 -1
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TabSeparatorInStripTemplate.lit.js +3 -1
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TabTemplate.lit.js +6 -2
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TableCellTemplate.lit.js +3 -1
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TableColumnTemplate.lit.js +3 -1
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TableGroupRowTemplate.lit.js +3 -1
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TableRowTemplate.lit.js +36 -9
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TableTemplate.lit.js +33 -10
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TextAreaPopoverTemplate.lit.js +15 -5
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TextAreaTemplate.lit.js +15 -5
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TimePickerPopoverTemplate.lit.js +3 -1
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TimePickerTemplate.lit.js +9 -3
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TimeSelectionTemplate.lit.js +15 -5
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TitleTemplate.lit.js +21 -7
- package/src/sap/ui/webc/main/thirdparty/generated/templates/ToastTemplate.lit.js +6 -2
- package/src/sap/ui/webc/main/thirdparty/generated/templates/ToggleButtonTemplate.lit.js +9 -3
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TokenTemplate.lit.js +12 -4
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TokenizerPopoverTemplate.lit.js +18 -6
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TokenizerTemplate.lit.js +9 -3
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TreeItemBaseTemplate.lit.js +72 -0
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TreeItemCustomTemplate.lit.js +72 -0
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TreeItemTemplate.lit.js +78 -0
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TreeTemplate.lit.js +6 -2
- package/src/sap/ui/webc/main/thirdparty/generated/templates/WheelSliderTemplate.lit.js +12 -4
- package/src/sap/ui/webc/main/thirdparty/generated/templates/YearPickerTemplate.lit.js +12 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Avatar.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/AvatarGroup.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Badge.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Breadcrumbs.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/BreadcrumbsPopover.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/BrowserScrollbar.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/BusyIndicator.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Button.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Calendar.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/CalendarHeader.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Card.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/CardHeader.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Carousel.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/CheckBox.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/ColorPalette.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/ColorPaletteItem.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/ColorPalettePopover.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/ColorPaletteStaticArea.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/ColorPicker.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/ComboBox.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/ComboBoxPopover.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/CustomListItem.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/DatePicker.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/DatePickerPopover.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/DateRangePicker.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/DateTimePicker.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/DateTimePickerPopover.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/DayPicker.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Dialog.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/FileUploader.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/FormComponents.css.js +20 -0
- package/src/sap/ui/webc/main/thirdparty/generated/themes/GroupHeaderListItem.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/GrowingButton.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Icon.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Input.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/InputIcon.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/InvisibleTextStyles.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Label.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Link.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/List.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/ListItem.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/ListItemBase.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Menu.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/MessageStrip.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/MonthPicker.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/MultiComboBox.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/MultiComboBoxPopover.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/MultiInput.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Panel.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Popover.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Popup.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/PopupGlobal.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/PopupStaticAreaStyles.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/PopupsCommon.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/ProgressIndicator.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/RadioButton.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/RangeSlider.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/RatingIndicator.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/ResponsivePopover.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/ResponsivePopoverCommon.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/SegmentedButton.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Select.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/SelectPopover.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/SliderBase.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/SplitButton.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/StepInput.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Suggestions.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Switch.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Tab.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/TabContainer.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/TabInOverflow.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/TabInStrip.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/TabSemanticIcon.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/TabSeparatorInOverflow.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/TabSeparatorInStrip.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Table.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/TableCell.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/TableColumn.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/TableGroupRow.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/TableRow.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/TapHighlightColor.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/TextArea.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/TimePicker.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/TimePickerPopover.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/TimeSelection.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Title.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Toast.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/ToggleButton.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Token.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Tokenizer.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/TokenizerPopover.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Tree.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/TreeItem.css.js +20 -0
- package/src/sap/ui/webc/main/thirdparty/generated/themes/ValueStateMessage.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/WheelSlider.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/YearPicker.css.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/themes/sap_belize/parameters-bundle.css.js +3 -2
- package/src/sap/ui/webc/main/thirdparty/generated/themes/sap_belize_hcb/parameters-bundle.css.js +3 -2
- package/src/sap/ui/webc/main/thirdparty/generated/themes/sap_belize_hcw/parameters-bundle.css.js +3 -2
- package/src/sap/ui/webc/main/thirdparty/generated/themes/sap_fiori_3/parameters-bundle.css.js +3 -2
- package/src/sap/ui/webc/main/thirdparty/generated/themes/sap_fiori_3_dark/parameters-bundle.css.js +3 -2
- package/src/sap/ui/webc/main/thirdparty/generated/themes/sap_fiori_3_hcb/parameters-bundle.css.js +3 -2
- package/src/sap/ui/webc/main/thirdparty/generated/themes/sap_fiori_3_hcw/parameters-bundle.css.js +3 -2
- package/src/sap/ui/webc/main/thirdparty/generated/themes/sap_horizon/parameters-bundle.css.js +3 -2
- package/src/sap/ui/webc/main/thirdparty/generated/themes/sap_horizon_dark/parameters-bundle.css.js +3 -2
- package/src/sap/ui/webc/main/thirdparty/generated/themes/sap_horizon_exp/parameters-bundle.css.js +3 -2
- package/src/sap/ui/webc/main/thirdparty/generated/themes/sap_horizon_hcb/parameters-bundle.css.js +3 -2
- package/src/sap/ui/webc/main/thirdparty/generated/themes/sap_horizon_hcw/parameters-bundle.css.js +3 -2
- package/src/sap/ui/webc/main/thirdparty/popup-utils/OpenedPopupsRegistry.js +16 -1
- package/src/sap/ui/webc/main/thirdparty/popup-utils/PopoverRegistry.js +36 -21
- package/src/sap/ui/webc/main/thirdparty/timepicker-utils/TimeSlider.js +6 -3
- package/src/sap/ui/webc/main/thirdparty/types/AvatarColorScheme.js +21 -34
- package/src/sap/ui/webc/main/thirdparty/types/AvatarGroupType.js +13 -26
- package/src/sap/ui/webc/main/thirdparty/types/AvatarShape.js +11 -24
- package/src/sap/ui/webc/main/thirdparty/types/AvatarSize.js +19 -32
- package/src/sap/ui/webc/main/thirdparty/types/BackgroundDesign.js +40 -0
- package/src/sap/ui/webc/main/thirdparty/types/BorderDesign.js +34 -0
- package/src/sap/ui/webc/main/thirdparty/types/BreadcrumbsDesign.js +12 -24
- package/src/sap/ui/webc/main/thirdparty/types/BreadcrumbsSeparatorStyle.js +17 -29
- package/src/sap/ui/webc/main/thirdparty/types/BusyIndicatorSize.js +13 -25
- package/src/sap/ui/webc/main/thirdparty/types/ButtonDesign.js +16 -28
- package/src/sap/ui/webc/main/thirdparty/types/CalendarPickersMode.js +40 -0
- package/src/sap/ui/webc/main/thirdparty/types/CalendarSelectionMode.js +13 -25
- package/src/sap/ui/webc/main/thirdparty/types/CarouselArrowsPlacement.js +12 -24
- package/src/sap/ui/webc/main/thirdparty/types/CarouselPageIndicatorStyle.js +35 -0
- package/src/sap/ui/webc/main/thirdparty/types/ComboBoxFilter.js +46 -0
- package/src/sap/ui/webc/main/thirdparty/types/HasPopup.js +14 -27
- package/src/sap/ui/webc/main/thirdparty/types/IconDesign.js +70 -0
- package/src/sap/ui/webc/main/thirdparty/types/InputType.js +16 -28
- package/src/sap/ui/webc/main/thirdparty/types/LinkDesign.js +13 -25
- package/src/sap/ui/webc/main/thirdparty/types/ListGrowingMode.js +15 -27
- package/src/sap/ui/webc/main/thirdparty/types/ListItemType.js +19 -25
- package/src/sap/ui/webc/main/thirdparty/types/ListMode.js +17 -29
- package/src/sap/ui/webc/main/thirdparty/types/ListSeparators.js +14 -26
- package/src/sap/ui/webc/main/thirdparty/types/MessageStripDesign.js +14 -26
- package/src/sap/ui/webc/main/thirdparty/types/PanelAccessibleRole.js +19 -28
- package/src/sap/ui/webc/main/thirdparty/types/PopoverHorizontalAlign.js +18 -30
- package/src/sap/ui/webc/main/thirdparty/types/PopoverPlacementType.js +14 -26
- package/src/sap/ui/webc/main/thirdparty/types/PopoverVerticalAlign.js +14 -26
- package/src/sap/ui/webc/main/thirdparty/types/PopupAccessibleRole.js +40 -0
- package/src/sap/ui/webc/main/thirdparty/types/Priority.js +13 -26
- package/src/sap/ui/webc/main/thirdparty/types/SegmentedButtonMode.js +34 -0
- package/src/sap/ui/webc/main/thirdparty/types/SemanticColor.js +15 -27
- package/src/sap/ui/webc/main/thirdparty/types/SwitchDesign.js +12 -24
- package/src/sap/ui/webc/main/thirdparty/types/TabContainerBackgroundDesign.js +40 -0
- package/src/sap/ui/webc/main/thirdparty/types/TabContainerTabsPlacement.js +12 -24
- package/src/sap/ui/webc/main/thirdparty/types/TabLayout.js +14 -26
- package/src/sap/ui/webc/main/thirdparty/types/TableColumnPopinDisplay.js +34 -0
- package/src/sap/ui/webc/main/thirdparty/types/TableGrowingMode.js +17 -29
- package/src/sap/ui/webc/main/thirdparty/types/TableMode.js +13 -25
- package/src/sap/ui/webc/main/thirdparty/types/TableRowType.js +12 -24
- package/src/sap/ui/webc/main/thirdparty/types/TabsOverflowMode.js +12 -24
- package/src/sap/ui/webc/main/thirdparty/types/TitleLevel.js +16 -28
- package/src/sap/ui/webc/main/thirdparty/types/ToastPlacement.js +28 -40
- package/src/sap/ui/webc/main/thirdparty/types/WrappingType.js +11 -24
- package/ui5.yaml +15 -2
- package/src/sap/ui/webc/main/thirdparty/DurationPicker.js +0 -300
- package/src/sap/ui/webc/main/thirdparty/TreeListItem.js +0 -316
- package/src/sap/ui/webc/main/thirdparty/css/themes/TreeListItem.css +0 -1
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TreeListItemTemplate.lit.js +0 -27
- package/src/sap/ui/webc/main/thirdparty/generated/themes/TreeListItem.css.js +0 -19
- package/src/sap/ui/webc/main/thirdparty/types/GrowingMode.js +0 -53
@@ -1,171 +1,34 @@
|
|
1
|
-
sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/Render", "sap/ui/webc/common/thirdparty/base/renderer/LitRenderer", "sap/ui/webc/common/thirdparty/base/UI5Element", "sap/ui/webc/common/thirdparty/base/Device", "sap/ui/webc/common/thirdparty/base/util/FocusableElements", "sap/ui/webc/common/thirdparty/base/util/AriaLabelHelper", "sap/ui/webc/common/thirdparty/base/ManagedStyles", "sap/ui/webc/common/thirdparty/base/Keys", "sap/ui/webc/common/thirdparty/base/util/PopupUtils", "sap/ui/webc/common/thirdparty/base/delegate/ResizeHandler", "sap/ui/webc/common/thirdparty/base/MediaRange", "./generated/templates/PopupTemplate.lit", "./generated/templates/PopupBlockLayerTemplate.lit", "./popup-utils/OpenedPopupsRegistry", "./generated/themes/Popup.css", "./generated/themes/PopupStaticAreaStyles.css", "./generated/themes/PopupGlobal.css"], function (_exports, _Render, _LitRenderer, _UI5Element, _Device, _FocusableElements, _AriaLabelHelper, _ManagedStyles, _Keys, _PopupUtils, _ResizeHandler, _MediaRange, _PopupTemplate, _PopupBlockLayerTemplate, _OpenedPopupsRegistry, _Popup, _PopupStaticAreaStyles, _PopupGlobal) {
|
1
|
+
sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/decorators/customElement", "sap/ui/webc/common/thirdparty/base/Render", "sap/ui/webc/common/thirdparty/base/decorators/event", "sap/ui/webc/common/thirdparty/base/decorators/slot", "sap/ui/webc/common/thirdparty/base/decorators/property", "sap/ui/webc/common/thirdparty/base/renderer/LitRenderer", "sap/ui/webc/common/thirdparty/base/UI5Element", "sap/ui/webc/common/thirdparty/base/Device", "sap/ui/webc/common/thirdparty/base/util/FocusableElements", "sap/ui/webc/common/thirdparty/base/util/AriaLabelHelper", "sap/ui/webc/common/thirdparty/base/util/getEffectiveScrollbarStyle", "sap/ui/webc/common/thirdparty/base/ManagedStyles", "sap/ui/webc/common/thirdparty/base/Keys", "sap/ui/webc/common/thirdparty/base/util/PopupUtils", "sap/ui/webc/common/thirdparty/base/delegate/ResizeHandler", "sap/ui/webc/common/thirdparty/base/MediaRange", "./generated/templates/PopupTemplate.lit", "./generated/templates/PopupBlockLayerTemplate.lit", "./types/PopupAccessibleRole", "./popup-utils/OpenedPopupsRegistry", "./generated/themes/Popup.css", "./generated/themes/PopupStaticAreaStyles.css", "./generated/themes/PopupGlobal.css"], function (_exports, _customElement, _Render, _event, _slot, _property, _LitRenderer, _UI5Element, _Device, _FocusableElements, _AriaLabelHelper, _getEffectiveScrollbarStyle, _ManagedStyles, _Keys, _PopupUtils, _ResizeHandler, _MediaRange, _PopupTemplate, _PopupBlockLayerTemplate, _PopupAccessibleRole, _OpenedPopupsRegistry, _Popup, _PopupStaticAreaStyles, _PopupGlobal) {
|
2
2
|
"use strict";
|
3
3
|
|
4
4
|
Object.defineProperty(_exports, "__esModule", {
|
5
5
|
value: true
|
6
6
|
});
|
7
7
|
_exports.default = void 0;
|
8
|
+
_customElement = _interopRequireDefault(_customElement);
|
9
|
+
_event = _interopRequireDefault(_event);
|
10
|
+
_slot = _interopRequireDefault(_slot);
|
11
|
+
_property = _interopRequireDefault(_property);
|
8
12
|
_LitRenderer = _interopRequireDefault(_LitRenderer);
|
9
13
|
_UI5Element = _interopRequireDefault(_UI5Element);
|
14
|
+
_getEffectiveScrollbarStyle = _interopRequireDefault(_getEffectiveScrollbarStyle);
|
10
15
|
_ResizeHandler = _interopRequireDefault(_ResizeHandler);
|
11
16
|
_MediaRange = _interopRequireDefault(_MediaRange);
|
12
17
|
_PopupTemplate = _interopRequireDefault(_PopupTemplate);
|
13
18
|
_PopupBlockLayerTemplate = _interopRequireDefault(_PopupBlockLayerTemplate);
|
19
|
+
_PopupAccessibleRole = _interopRequireDefault(_PopupAccessibleRole);
|
14
20
|
_Popup = _interopRequireDefault(_Popup);
|
15
21
|
_PopupStaticAreaStyles = _interopRequireDefault(_PopupStaticAreaStyles);
|
16
22
|
_PopupGlobal = _interopRequireDefault(_PopupGlobal);
|
17
23
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
managedSlots: true,
|
25
|
-
slots: /** @lends sap.ui.webcomponents.main.Popup.prototype */{
|
26
|
-
/**
|
27
|
-
* Defines the content of the Popup.
|
28
|
-
* @type {HTMLElement[]}
|
29
|
-
* @slot content
|
30
|
-
* @public
|
31
|
-
*/
|
32
|
-
"default": {
|
33
|
-
type: HTMLElement,
|
34
|
-
propertyName: "content"
|
35
|
-
}
|
36
|
-
},
|
37
|
-
properties: /** @lends sap.ui.webcomponents.main.Popup.prototype */{
|
38
|
-
/**
|
39
|
-
* Defines the ID of the HTML Element, which will get the initial focus.
|
40
|
-
*
|
41
|
-
* @type {string}
|
42
|
-
* @defaultvalue ""
|
43
|
-
* @public
|
44
|
-
*/
|
45
|
-
initialFocus: {
|
46
|
-
type: String
|
47
|
-
},
|
48
|
-
/**
|
49
|
-
* Defines if the focus should be returned to the previously focused element,
|
50
|
-
* when the popup closes.
|
51
|
-
* @type {boolean}
|
52
|
-
* @defaultvalue false
|
53
|
-
* @public
|
54
|
-
* @since 1.0.0-rc.8
|
55
|
-
*/
|
56
|
-
preventFocusRestore: {
|
57
|
-
type: Boolean
|
58
|
-
},
|
59
|
-
/**
|
60
|
-
* Indicates if the element is open
|
61
|
-
* @public
|
62
|
-
* @type {boolean}
|
63
|
-
* @defaultvalue false
|
64
|
-
* @since 1.2.0
|
65
|
-
*/
|
66
|
-
open: {
|
67
|
-
type: Boolean
|
68
|
-
},
|
69
|
-
/**
|
70
|
-
* Indicates if the element is already open
|
71
|
-
* @private
|
72
|
-
* @type {boolean}
|
73
|
-
* @defaultvalue false
|
74
|
-
*/
|
75
|
-
opened: {
|
76
|
-
type: Boolean,
|
77
|
-
noAttribute: true
|
78
|
-
},
|
79
|
-
/**
|
80
|
-
* Defines the accessible name of the component.
|
81
|
-
*
|
82
|
-
* @type {string}
|
83
|
-
* @defaultvalue ""
|
84
|
-
* @public
|
85
|
-
* @since 1.0.0-rc.15
|
86
|
-
*/
|
87
|
-
accessibleName: {
|
88
|
-
type: String,
|
89
|
-
defaultValue: undefined
|
90
|
-
},
|
91
|
-
/**
|
92
|
-
* Defines the IDs of the elements that label the component.
|
93
|
-
*
|
94
|
-
* @type {string}
|
95
|
-
* @defaultvalue ""
|
96
|
-
* @public
|
97
|
-
* @since 1.1.0
|
98
|
-
*/
|
99
|
-
accessibleNameRef: {
|
100
|
-
type: String,
|
101
|
-
defaultValue: ""
|
102
|
-
},
|
103
|
-
/**
|
104
|
-
* Defines the current media query size.
|
105
|
-
*
|
106
|
-
* @type {string}
|
107
|
-
* @private
|
108
|
-
*/
|
109
|
-
mediaRange: {
|
110
|
-
type: String
|
111
|
-
},
|
112
|
-
/**
|
113
|
-
* @private
|
114
|
-
*/
|
115
|
-
_disableInitialFocus: {
|
116
|
-
type: Boolean
|
117
|
-
},
|
118
|
-
_blockLayerHidden: {
|
119
|
-
type: Boolean
|
120
|
-
}
|
121
|
-
},
|
122
|
-
events: /** @lends sap.ui.webcomponents.main.Popup.prototype */{
|
123
|
-
/**
|
124
|
-
* Fired before the component is opened. This event can be cancelled, which will prevent the popup from opening. <b>This event does not bubble.</b>
|
125
|
-
*
|
126
|
-
* @public
|
127
|
-
* @event sap.ui.webcomponents.main.Popup#before-open
|
128
|
-
* @allowPreventDefault
|
129
|
-
*/
|
130
|
-
"before-open": {},
|
131
|
-
/**
|
132
|
-
* Fired after the component is opened. <b>This event does not bubble.</b>
|
133
|
-
*
|
134
|
-
* @public
|
135
|
-
* @event sap.ui.webcomponents.main.Popup#after-open
|
136
|
-
*/
|
137
|
-
"after-open": {},
|
138
|
-
/**
|
139
|
-
* Fired before the component is closed. This event can be cancelled, which will prevent the popup from closing. <b>This event does not bubble.</b>
|
140
|
-
*
|
141
|
-
* @public
|
142
|
-
* @event sap.ui.webcomponents.main.Popup#before-close
|
143
|
-
* @allowPreventDefault
|
144
|
-
* @param {boolean} escPressed Indicates that <code>ESC</code> key has triggered the event.
|
145
|
-
*/
|
146
|
-
"before-close": {
|
147
|
-
detail: {
|
148
|
-
escPressed: {
|
149
|
-
type: Boolean
|
150
|
-
}
|
151
|
-
}
|
152
|
-
},
|
153
|
-
/**
|
154
|
-
* Fired after the component is closed. <b>This event does not bubble.</b>
|
155
|
-
*
|
156
|
-
* @public
|
157
|
-
* @event sap.ui.webcomponents.main.Popup#after-close
|
158
|
-
*/
|
159
|
-
"after-close": {},
|
160
|
-
/**
|
161
|
-
* Fired whenever the popup content area is scrolled
|
162
|
-
*
|
163
|
-
* @private
|
164
|
-
* @event sap.ui.webcomponents.main.Popup#scroll
|
165
|
-
*/
|
166
|
-
"scroll": {}
|
167
|
-
}
|
24
|
+
var __decorate = void 0 && (void 0).__decorate || function (decorators, target, key, desc) {
|
25
|
+
var c = arguments.length,
|
26
|
+
r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc,
|
27
|
+
d;
|
28
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
29
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
168
30
|
};
|
31
|
+
var Popup_1;
|
169
32
|
const createBlockingStyle = () => {
|
170
33
|
if (!(0, _ManagedStyles.hasStyle)("data-ui5-popup-scroll-blocker")) {
|
171
34
|
(0, _ManagedStyles.createStyle)(_PopupGlobal.default, "data-ui5-popup-scroll-blocker");
|
@@ -173,7 +36,6 @@ sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/Render", "sap/ui/w
|
|
173
36
|
};
|
174
37
|
createBlockingStyle();
|
175
38
|
const pageScrollingBlockers = new Set();
|
176
|
-
|
177
39
|
/**
|
178
40
|
* @class
|
179
41
|
* <h3 class="comment-api-title">Overview</h3>
|
@@ -203,42 +65,24 @@ sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/Render", "sap/ui/w
|
|
203
65
|
*
|
204
66
|
* @constructor
|
205
67
|
* @author SAP SE
|
206
|
-
* @alias sap.ui.
|
207
|
-
* @extends sap.ui.
|
68
|
+
* @alias sap.ui.webc.main.Popup
|
69
|
+
* @extends sap.ui.webc.base.UI5Element
|
208
70
|
* @public
|
209
71
|
*/
|
210
|
-
class Popup extends _UI5Element.default {
|
72
|
+
let Popup = Popup_1 = class Popup extends _UI5Element.default {
|
211
73
|
constructor() {
|
212
74
|
super();
|
213
75
|
this._resizeHandler = this._resize.bind(this);
|
214
76
|
}
|
215
|
-
|
216
|
-
|
217
|
-
}
|
218
|
-
static get render() {
|
219
|
-
return _LitRenderer.default;
|
220
|
-
}
|
221
|
-
static get styles() {
|
222
|
-
return _Popup.default;
|
223
|
-
}
|
224
|
-
static get template() {
|
225
|
-
return _PopupTemplate.default;
|
226
|
-
}
|
227
|
-
static get staticAreaTemplate() {
|
228
|
-
return _PopupBlockLayerTemplate.default;
|
229
|
-
}
|
230
|
-
static get staticAreaStyles() {
|
231
|
-
return _PopupStaticAreaStyles.default;
|
77
|
+
onBeforeRendering() {
|
78
|
+
this._blockLayerHidden = !this.isOpen() || !this.isTopModalPopup;
|
232
79
|
}
|
233
80
|
onEnterDOM() {
|
234
|
-
if (!this.isOpen()) {
|
235
|
-
this._blockLayerHidden = true;
|
236
|
-
}
|
237
81
|
_ResizeHandler.default.register(this, this._resizeHandler);
|
238
82
|
}
|
239
83
|
onExitDOM() {
|
240
84
|
if (this.isOpen()) {
|
241
|
-
|
85
|
+
Popup_1.unblockPageScrolling(this);
|
242
86
|
this._removeOpenedPopup();
|
243
87
|
}
|
244
88
|
_ResizeHandler.default.deregister(this, this._resizeHandler);
|
@@ -249,14 +93,12 @@ sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/Render", "sap/ui/w
|
|
249
93
|
_resize() {
|
250
94
|
this.mediaRange = _MediaRange.default.getCurrentRange(_MediaRange.default.RANGESETS.RANGE_4STEPS, this.getDomRef().offsetWidth);
|
251
95
|
}
|
252
|
-
|
253
96
|
/**
|
254
97
|
* Prevents the user from interacting with the content under the block layer
|
255
98
|
*/
|
256
|
-
_preventBlockLayerFocus(
|
257
|
-
|
99
|
+
_preventBlockLayerFocus(e) {
|
100
|
+
e.preventDefault();
|
258
101
|
}
|
259
|
-
|
260
102
|
/**
|
261
103
|
* Temporarily removes scrollbars from the html element
|
262
104
|
* @protected
|
@@ -268,7 +110,6 @@ sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/Render", "sap/ui/w
|
|
268
110
|
}
|
269
111
|
document.documentElement.classList.add("ui5-popup-scroll-blocker");
|
270
112
|
}
|
271
|
-
|
272
113
|
/**
|
273
114
|
* Restores scrollbars on the html element, if needed
|
274
115
|
* @protected
|
@@ -287,7 +128,10 @@ sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/Render", "sap/ui/w
|
|
287
128
|
});
|
288
129
|
}
|
289
130
|
_onkeydown(e) {
|
290
|
-
|
131
|
+
const isTabOutAttempt = e.target === this._root && (0, _Keys.isTabPrevious)(e);
|
132
|
+
// if the popup is closed, focus is already moved, so Enter keydown may result in click on the newly focused element
|
133
|
+
const isEnterOnClosedPopupChild = (0, _Keys.isEnter)(e) && !this.isOpen();
|
134
|
+
if (isTabOutAttempt || isEnterOnClosedPopupChild) {
|
291
135
|
e.preventDefault();
|
292
136
|
}
|
293
137
|
}
|
@@ -299,7 +143,10 @@ sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/Render", "sap/ui/w
|
|
299
143
|
}
|
300
144
|
}
|
301
145
|
_onmousedown(e) {
|
302
|
-
|
146
|
+
if (!(0, _Device.isSafari)()) {
|
147
|
+
// Remove when adopting native dialog
|
148
|
+
this._root.removeAttribute("tabindex");
|
149
|
+
}
|
303
150
|
if (this.shadowRoot.contains(e.target)) {
|
304
151
|
this._shouldFocusRoot = true;
|
305
152
|
} else {
|
@@ -307,7 +154,10 @@ sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/Render", "sap/ui/w
|
|
307
154
|
}
|
308
155
|
}
|
309
156
|
_onmouseup() {
|
310
|
-
|
157
|
+
if (!(0, _Device.isSafari)()) {
|
158
|
+
// Remove when adopting native dialog
|
159
|
+
this._root.tabIndex = -1;
|
160
|
+
}
|
311
161
|
if (this._shouldFocusRoot) {
|
312
162
|
if ((0, _Device.isChrome)()) {
|
313
163
|
this._root.focus();
|
@@ -315,7 +165,6 @@ sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/Render", "sap/ui/w
|
|
315
165
|
this._shouldFocusRoot = false;
|
316
166
|
}
|
317
167
|
}
|
318
|
-
|
319
168
|
/**
|
320
169
|
* Focus trapping
|
321
170
|
* @private
|
@@ -323,12 +172,13 @@ sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/Render", "sap/ui/w
|
|
323
172
|
async forwardToFirst() {
|
324
173
|
const firstFocusable = await (0, _FocusableElements.getFirstFocusableElement)(this);
|
325
174
|
if (firstFocusable) {
|
326
|
-
firstFocusable.focus(
|
175
|
+
firstFocusable.focus({
|
176
|
+
focusVisible: true
|
177
|
+
});
|
327
178
|
} else {
|
328
179
|
this._root.focus();
|
329
180
|
}
|
330
181
|
}
|
331
|
-
|
332
182
|
/**
|
333
183
|
* Focus trapping
|
334
184
|
* @private
|
@@ -336,12 +186,13 @@ sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/Render", "sap/ui/w
|
|
336
186
|
async forwardToLast() {
|
337
187
|
const lastFocusable = await (0, _FocusableElements.getLastFocusableElement)(this);
|
338
188
|
if (lastFocusable) {
|
339
|
-
lastFocusable.focus(
|
189
|
+
lastFocusable.focus({
|
190
|
+
focusVisible: true
|
191
|
+
});
|
340
192
|
} else {
|
341
193
|
this._root.focus();
|
342
194
|
}
|
343
195
|
}
|
344
|
-
|
345
196
|
/**
|
346
197
|
* Use this method to focus the element denoted by "initialFocus", if provided, or the first focusable element otherwise.
|
347
198
|
* @protected
|
@@ -349,38 +200,43 @@ sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/Render", "sap/ui/w
|
|
349
200
|
async applyInitialFocus() {
|
350
201
|
await this.applyFocus();
|
351
202
|
}
|
352
|
-
|
353
203
|
/**
|
354
204
|
* Focuses the element denoted by <code>initialFocus</code>, if provided,
|
355
205
|
* or the first focusable element otherwise.
|
356
206
|
* @public
|
207
|
+
* @method
|
208
|
+
* @name sap.ui.webc.main.Popup#applyFocus
|
357
209
|
* @async
|
358
210
|
* @returns {Promise} Promise that resolves when the focus is applied
|
359
211
|
*/
|
360
212
|
async applyFocus() {
|
361
213
|
await this._waitForDomRef();
|
214
|
+
if (this.getRootNode() === this) {
|
215
|
+
return;
|
216
|
+
}
|
362
217
|
const element = this.getRootNode().getElementById(this.initialFocus) || document.getElementById(this.initialFocus) || (await (0, _FocusableElements.getFirstFocusableElement)(this)) || this._root; // in case of no focusable content focus the root
|
363
|
-
|
364
218
|
if (element) {
|
365
219
|
if (element === this._root) {
|
366
220
|
element.tabIndex = -1;
|
367
221
|
}
|
368
|
-
element.focus(
|
222
|
+
element.focus({
|
223
|
+
focusVisible: true
|
224
|
+
});
|
369
225
|
}
|
370
226
|
}
|
371
|
-
|
372
227
|
/**
|
373
228
|
* Tells if the component is opened
|
374
229
|
* @public
|
230
|
+
* @method
|
231
|
+
* @name sap.ui.webc.main.Popup#isOpen
|
375
232
|
* @returns {boolean}
|
376
233
|
*/
|
377
234
|
isOpen() {
|
378
235
|
return this.opened;
|
379
236
|
}
|
380
237
|
isFocusWithin() {
|
381
|
-
return (0, _PopupUtils.isFocusedElementWithinNode)(this.
|
238
|
+
return (0, _PopupUtils.isFocusedElementWithinNode)(this._root);
|
382
239
|
}
|
383
|
-
|
384
240
|
/**
|
385
241
|
* Shows the block layer (for modal popups only) and sets the correct z-index for the purpose of popup stacking
|
386
242
|
* @protected
|
@@ -394,22 +250,21 @@ sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/Render", "sap/ui/w
|
|
394
250
|
// create static area item ref for block layer
|
395
251
|
this.getStaticAreaItemDomRef();
|
396
252
|
this._blockLayerHidden = false;
|
397
|
-
|
253
|
+
Popup_1.blockPageScrolling(this);
|
398
254
|
}
|
399
255
|
this._zIndex = (0, _PopupUtils.getNextZIndex)();
|
400
|
-
this.style.zIndex = this._zIndex;
|
256
|
+
this.style.zIndex = this._zIndex?.toString() || "";
|
401
257
|
this._focusedElementBeforeOpen = (0, _PopupUtils.getFocusedElement)();
|
402
258
|
this._show();
|
403
|
-
if (!this._disableInitialFocus && !preventInitialFocus) {
|
404
|
-
this.applyInitialFocus();
|
405
|
-
}
|
406
259
|
this._addOpenedPopup();
|
407
260
|
this.opened = true;
|
408
261
|
this.open = true;
|
409
262
|
await (0, _Render.renderFinished)();
|
263
|
+
if (!this._disableInitialFocus && !preventInitialFocus) {
|
264
|
+
await this.applyInitialFocus();
|
265
|
+
}
|
410
266
|
this.fireEvent("after-open", {}, false, false);
|
411
267
|
}
|
412
|
-
|
413
268
|
/**
|
414
269
|
* Adds the popup to the "opened popups registry"
|
415
270
|
* @protected
|
@@ -417,10 +272,12 @@ sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/Render", "sap/ui/w
|
|
417
272
|
_addOpenedPopup() {
|
418
273
|
(0, _OpenedPopupsRegistry.addOpenedPopup)(this);
|
419
274
|
}
|
420
|
-
|
421
275
|
/**
|
422
|
-
*
|
276
|
+
* Closes the popup.
|
423
277
|
* @public
|
278
|
+
* @method
|
279
|
+
* @name sap.ui.webc.main.Popup#close
|
280
|
+
* @returns {void}
|
424
281
|
*/
|
425
282
|
close(escPressed = false, preventRegistryUpdate = false, preventFocusRestore = false) {
|
426
283
|
if (!this.opened) {
|
@@ -434,7 +291,7 @@ sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/Render", "sap/ui/w
|
|
434
291
|
}
|
435
292
|
if (this.isModal) {
|
436
293
|
this._blockLayerHidden = true;
|
437
|
-
|
294
|
+
Popup_1.unblockPageScrolling(this);
|
438
295
|
}
|
439
296
|
this.hide();
|
440
297
|
this.opened = false;
|
@@ -447,7 +304,6 @@ sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/Render", "sap/ui/w
|
|
447
304
|
}
|
448
305
|
this.fireEvent("after-close", {}, false, false);
|
449
306
|
}
|
450
|
-
|
451
307
|
/**
|
452
308
|
* Removes the popup from the "opened popups registry"
|
453
309
|
* @protected
|
@@ -455,7 +311,6 @@ sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/Render", "sap/ui/w
|
|
455
311
|
_removeOpenedPopup() {
|
456
312
|
(0, _OpenedPopupsRegistry.removeOpenedPopup)(this);
|
457
313
|
}
|
458
|
-
|
459
314
|
/**
|
460
315
|
* Returns the focus to the previously focused element
|
461
316
|
* @protected
|
@@ -464,10 +319,11 @@ sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/Render", "sap/ui/w
|
|
464
319
|
if (!this._focusedElementBeforeOpen) {
|
465
320
|
return;
|
466
321
|
}
|
467
|
-
this._focusedElementBeforeOpen.focus(
|
322
|
+
this._focusedElementBeforeOpen.focus({
|
323
|
+
focusVisible: true
|
324
|
+
});
|
468
325
|
this._focusedElementBeforeOpen = null;
|
469
326
|
}
|
470
|
-
|
471
327
|
/**
|
472
328
|
* Sets "block" display to the popup. The property can be overriden by derivatives of Popup.
|
473
329
|
* @protected
|
@@ -475,7 +331,6 @@ sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/Render", "sap/ui/w
|
|
475
331
|
_show() {
|
476
332
|
this.style.display = this._displayProp;
|
477
333
|
}
|
478
|
-
|
479
334
|
/**
|
480
335
|
* Sets "none" display to the popup
|
481
336
|
* @protected
|
@@ -483,46 +338,9 @@ sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/Render", "sap/ui/w
|
|
483
338
|
hide() {
|
484
339
|
this.style.display = "none";
|
485
340
|
}
|
486
|
-
|
487
|
-
/**
|
488
|
-
* Implement this getter with relevant logic regarding the modality of the popup (e.g. based on a public property)
|
489
|
-
*
|
490
|
-
* @protected
|
491
|
-
* @abstract
|
492
|
-
* @returns {boolean}
|
493
|
-
*/
|
494
|
-
get isModal() {} // eslint-disable-line
|
495
|
-
|
496
|
-
/**
|
497
|
-
* Implement this getter with relevant logic in order to hide the block layer (f.e. based on a public property)
|
498
|
-
*
|
499
|
-
* @protected
|
500
|
-
* @abstract
|
501
|
-
* @returns {boolean}
|
502
|
-
*/
|
503
|
-
get shouldHideBackdrop() {} // eslint-disable-line
|
504
|
-
|
505
|
-
/**
|
506
|
-
* Return the ID of an element in the shadow DOM that is going to label this popup
|
507
|
-
*
|
508
|
-
* @protected
|
509
|
-
* @abstract
|
510
|
-
* @returns {string}
|
511
|
-
*/
|
512
|
-
get _ariaLabelledBy() {} // eslint-disable-line
|
513
|
-
|
514
|
-
/**
|
515
|
-
* Return the value for aria-modal for this popup
|
516
|
-
*
|
517
|
-
* @protected
|
518
|
-
* @abstract
|
519
|
-
* @returns {string}
|
520
|
-
*/
|
521
|
-
get _ariaModal() {} // eslint-disable-line
|
522
|
-
|
523
341
|
/**
|
524
342
|
* Ensures ariaLabel is never null or empty string
|
525
|
-
* @returns {string|undefined}
|
343
|
+
* @returns {string | undefined}
|
526
344
|
* @protected
|
527
345
|
*/
|
528
346
|
get _ariaLabel() {
|
@@ -531,6 +349,12 @@ sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/Render", "sap/ui/w
|
|
531
349
|
get _root() {
|
532
350
|
return this.shadowRoot.querySelector(".ui5-popup-root");
|
533
351
|
}
|
352
|
+
get _role() {
|
353
|
+
return this.accessibleRole === _PopupAccessibleRole.default.None ? undefined : this.accessibleRole.toLowerCase();
|
354
|
+
}
|
355
|
+
get _ariaModal() {
|
356
|
+
return this.accessibleRole === _PopupAccessibleRole.default.None ? undefined : "true";
|
357
|
+
}
|
534
358
|
get contentDOM() {
|
535
359
|
return this.shadowRoot.querySelector(".ui5-popup-content");
|
536
360
|
}
|
@@ -539,21 +363,102 @@ sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/Render", "sap/ui/w
|
|
539
363
|
root: {},
|
540
364
|
content: {},
|
541
365
|
blockLayer: {
|
542
|
-
"zIndex": this._zIndex - 1
|
366
|
+
"zIndex": this._zIndex ? this._zIndex - 1 : ""
|
543
367
|
}
|
544
368
|
};
|
545
369
|
}
|
546
370
|
get classes() {
|
547
371
|
return {
|
548
372
|
root: {
|
549
|
-
"ui5-popup-root": true
|
373
|
+
"ui5-popup-root": true,
|
374
|
+
"ui5-content-native-scrollbars": (0, _getEffectiveScrollbarStyle.default)()
|
550
375
|
},
|
551
376
|
content: {
|
552
377
|
"ui5-popup-content": true
|
553
378
|
}
|
554
379
|
};
|
555
380
|
}
|
556
|
-
}
|
381
|
+
};
|
382
|
+
__decorate([(0, _property.default)()], Popup.prototype, "initialFocus", void 0);
|
383
|
+
__decorate([(0, _property.default)({
|
384
|
+
type: Boolean
|
385
|
+
})], Popup.prototype, "preventFocusRestore", void 0);
|
386
|
+
__decorate([(0, _property.default)({
|
387
|
+
type: Boolean
|
388
|
+
})], Popup.prototype, "open", void 0);
|
389
|
+
__decorate([(0, _property.default)({
|
390
|
+
type: Boolean,
|
391
|
+
noAttribute: true
|
392
|
+
})], Popup.prototype, "opened", void 0);
|
393
|
+
__decorate([(0, _property.default)({
|
394
|
+
defaultValue: undefined
|
395
|
+
})], Popup.prototype, "accessibleName", void 0);
|
396
|
+
__decorate([(0, _property.default)({
|
397
|
+
defaultValue: ""
|
398
|
+
})], Popup.prototype, "accessibleNameRef", void 0);
|
399
|
+
__decorate([(0, _property.default)({
|
400
|
+
type: _PopupAccessibleRole.default,
|
401
|
+
defaultValue: _PopupAccessibleRole.default.Dialog
|
402
|
+
})], Popup.prototype, "accessibleRole", void 0);
|
403
|
+
__decorate([(0, _property.default)()], Popup.prototype, "mediaRange", void 0);
|
404
|
+
__decorate([(0, _property.default)({
|
405
|
+
type: Boolean
|
406
|
+
})], Popup.prototype, "_disableInitialFocus", void 0);
|
407
|
+
__decorate([(0, _property.default)({
|
408
|
+
type: Boolean
|
409
|
+
})], Popup.prototype, "_blockLayerHidden", void 0);
|
410
|
+
__decorate([(0, _property.default)({
|
411
|
+
type: Boolean,
|
412
|
+
noAttribute: true
|
413
|
+
})], Popup.prototype, "isTopModalPopup", void 0);
|
414
|
+
__decorate([(0, _slot.default)({
|
415
|
+
type: HTMLElement,
|
416
|
+
"default": true
|
417
|
+
})], Popup.prototype, "content", void 0);
|
418
|
+
Popup = Popup_1 = __decorate([(0, _customElement.default)({
|
419
|
+
renderer: _LitRenderer.default,
|
420
|
+
styles: _Popup.default,
|
421
|
+
template: _PopupTemplate.default,
|
422
|
+
staticAreaTemplate: _PopupBlockLayerTemplate.default,
|
423
|
+
staticAreaStyles: _PopupStaticAreaStyles.default
|
424
|
+
})
|
425
|
+
/**
|
426
|
+
* Fired before the component is opened. This event can be cancelled, which will prevent the popup from opening. <b>This event does not bubble.</b>
|
427
|
+
*
|
428
|
+
* @public
|
429
|
+
* @event sap.ui.webc.main.Popup#before-open
|
430
|
+
* @allowPreventDefault
|
431
|
+
*/, (0, _event.default)("before-open")
|
432
|
+
/**
|
433
|
+
* Fired after the component is opened. <b>This event does not bubble.</b>
|
434
|
+
*
|
435
|
+
* @public
|
436
|
+
* @event sap.ui.webc.main.Popup#after-open
|
437
|
+
*/, (0, _event.default)("after-open")
|
438
|
+
/**
|
439
|
+
* Fired before the component is closed. This event can be cancelled, which will prevent the popup from closing. <b>This event does not bubble.</b>
|
440
|
+
*
|
441
|
+
* @public
|
442
|
+
* @event sap.ui.webc.main.Popup#before-close
|
443
|
+
* @allowPreventDefault
|
444
|
+
* @param {boolean} escPressed Indicates that <code>ESC</code> key has triggered the event.
|
445
|
+
*/, (0, _event.default)("before-close", {
|
446
|
+
escPressed: {
|
447
|
+
type: Boolean
|
448
|
+
}
|
449
|
+
})
|
450
|
+
/**
|
451
|
+
* Fired after the component is closed. <b>This event does not bubble.</b>
|
452
|
+
*
|
453
|
+
* @public
|
454
|
+
* @event sap.ui.webc.main.Popup#after-close
|
455
|
+
*/, (0, _event.default)("after-close")
|
456
|
+
/**
|
457
|
+
* Fired whenever the popup content area is scrolled
|
458
|
+
*
|
459
|
+
* @private
|
460
|
+
* @event sap.ui.webc.main.Popup#scroll
|
461
|
+
*/, (0, _event.default)("scroll")], Popup);
|
557
462
|
var _default = Popup;
|
558
463
|
_exports.default = _default;
|
559
464
|
});
|