@openui5/sap.ui.webc.main 1.94.0 → 1.97.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 +12 -12
- package/THIRDPARTY.txt +21 -17
- package/package.json +3 -3
- package/src/sap/ui/webc/main/.library +1 -1
- package/src/sap/ui/webc/main/Avatar.js +17 -27
- package/src/sap/ui/webc/main/AvatarGroup.js +4 -20
- package/src/sap/ui/webc/main/Badge.js +1 -1
- package/src/sap/ui/webc/main/Breadcrumbs.js +128 -0
- package/src/sap/ui/webc/main/BreadcrumbsItem.js +98 -0
- package/src/sap/ui/webc/main/BusyIndicator.js +9 -1
- package/src/sap/ui/webc/main/Button.js +14 -4
- package/src/sap/ui/webc/main/Calendar.js +15 -5
- package/src/sap/ui/webc/main/CalendarDate.js +1 -1
- package/src/sap/ui/webc/main/Card.js +20 -64
- package/src/sap/ui/webc/main/CardHeader.js +127 -0
- package/src/sap/ui/webc/main/Carousel.js +13 -25
- package/src/sap/ui/webc/main/CheckBox.js +14 -7
- package/src/sap/ui/webc/main/ColorPalette.js +7 -28
- package/src/sap/ui/webc/main/ColorPaletteItem.js +1 -1
- package/src/sap/ui/webc/main/ColorPalettePopover.js +112 -0
- package/src/sap/ui/webc/main/ColorPicker.js +6 -4
- package/src/sap/ui/webc/main/ComboBox.js +25 -20
- package/src/sap/ui/webc/main/ComboBoxGroupItem.js +58 -0
- package/src/sap/ui/webc/main/ComboBoxItem.js +1 -1
- package/src/sap/ui/webc/main/CustomListItem.js +4 -2
- package/src/sap/ui/webc/main/DatePicker.js +65 -7
- package/src/sap/ui/webc/main/DateRangePicker.js +68 -10
- package/src/sap/ui/webc/main/DateTimePicker.js +64 -8
- package/src/sap/ui/webc/main/Dialog.js +15 -12
- package/src/sap/ui/webc/main/FileUploader.js +2 -2
- package/src/sap/ui/webc/main/GroupHeaderListItem.js +1 -1
- package/src/sap/ui/webc/main/Icon.js +1 -1
- package/src/sap/ui/webc/main/Input.js +27 -29
- package/src/sap/ui/webc/main/Label.js +2 -2
- package/src/sap/ui/webc/main/Link.js +13 -3
- package/src/sap/ui/webc/main/List.js +38 -3
- package/src/sap/ui/webc/main/MessageStrip.js +5 -3
- package/src/sap/ui/webc/main/MultiComboBox.js +13 -9
- package/src/sap/ui/webc/main/MultiComboBoxItem.js +1 -1
- package/src/sap/ui/webc/main/MultiInput.js +30 -30
- package/src/sap/ui/webc/main/Option.js +1 -1
- package/src/sap/ui/webc/main/Panel.js +16 -5
- package/src/sap/ui/webc/main/Popover.js +21 -8
- package/src/sap/ui/webc/main/ProgressIndicator.js +14 -1
- package/src/sap/ui/webc/main/RadioButton.js +28 -21
- package/src/sap/ui/webc/main/RangeSlider.js +21 -19
- package/src/sap/ui/webc/main/RatingIndicator.js +15 -6
- package/src/sap/ui/webc/main/ResponsivePopover.js +22 -17
- package/src/sap/ui/webc/main/SegmentedButton.js +15 -15
- package/src/sap/ui/webc/main/SegmentedButtonItem.js +135 -0
- package/src/sap/ui/webc/main/Select.js +16 -1
- package/src/sap/ui/webc/main/Slider.js +26 -22
- package/src/sap/ui/webc/main/StandardListItem.js +4 -2
- package/src/sap/ui/webc/main/StepInput.js +19 -2
- package/src/sap/ui/webc/main/SuggestionGroupItem.js +58 -0
- package/src/sap/ui/webc/main/SuggestionItem.js +2 -12
- package/src/sap/ui/webc/main/Switch.js +8 -6
- package/src/sap/ui/webc/main/Tab.js +1 -1
- package/src/sap/ui/webc/main/TabContainer.js +1 -1
- package/src/sap/ui/webc/main/TabSeparator.js +1 -1
- package/src/sap/ui/webc/main/Table.js +12 -2
- package/src/sap/ui/webc/main/TableCell.js +1 -1
- package/src/sap/ui/webc/main/TableColumn.js +1 -1
- package/src/sap/ui/webc/main/TableGroupRow.js +69 -0
- package/src/sap/ui/webc/main/TableRow.js +5 -5
- package/src/sap/ui/webc/main/TextArea.js +26 -7
- package/src/sap/ui/webc/main/TimePicker.js +9 -5
- 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 +14 -4
- package/src/sap/ui/webc/main/Token.js +5 -3
- package/src/sap/ui/webc/main/Tree.js +29 -1
- package/src/sap/ui/webc/main/TreeItem.js +1 -1
- package/src/sap/ui/webc/main/library.js +123 -33
- package/src/sap/ui/webc/main/thirdparty/Assets.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/Avatar.js +20 -26
- package/src/sap/ui/webc/main/thirdparty/AvatarGroup.js +21 -14
- package/src/sap/ui/webc/main/thirdparty/Badge.js +22 -11
- package/src/sap/ui/webc/main/thirdparty/Breadcrumbs.js +334 -0
- package/src/sap/ui/webc/main/thirdparty/BreadcrumbsItem.js +41 -0
- package/src/sap/ui/webc/main/thirdparty/BusyIndicator.js +32 -4
- package/src/sap/ui/webc/main/thirdparty/Button.js +5 -13
- package/src/sap/ui/webc/main/thirdparty/Calendar.js +85 -6
- package/src/sap/ui/webc/main/thirdparty/CalendarHeader.js +50 -17
- package/src/sap/ui/webc/main/thirdparty/Card.js +15 -118
- package/src/sap/ui/webc/main/thirdparty/CardHeader.js +146 -0
- package/src/sap/ui/webc/main/thirdparty/Carousel.js +97 -43
- package/src/sap/ui/webc/main/thirdparty/CheckBox.js +35 -34
- package/src/sap/ui/webc/main/thirdparty/ColorPalette.js +174 -22
- package/src/sap/ui/webc/main/thirdparty/ColorPaletteItem.js +14 -7
- package/src/sap/ui/webc/main/thirdparty/ColorPalettePopover.js +110 -0
- package/src/sap/ui/webc/main/thirdparty/ColorPicker.js +11 -7
- package/src/sap/ui/webc/main/thirdparty/ComboBox.js +215 -106
- package/src/sap/ui/webc/main/thirdparty/ComboBoxGroupItem.js +39 -0
- package/src/sap/ui/webc/main/thirdparty/DateComponentBase.js +5 -3
- package/src/sap/ui/webc/main/thirdparty/DatePicker.js +47 -17
- package/src/sap/ui/webc/main/thirdparty/DateRangePicker.js +17 -18
- package/src/sap/ui/webc/main/thirdparty/DateTimePicker.js +7 -7
- package/src/sap/ui/webc/main/thirdparty/DayPicker.js +31 -7
- package/src/sap/ui/webc/main/thirdparty/Dialog.js +126 -34
- package/src/sap/ui/webc/main/thirdparty/DurationPicker.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/FileUploader.js +15 -10
- package/src/sap/ui/webc/main/thirdparty/GroupHeaderListItem.js +5 -8
- package/src/sap/ui/webc/main/thirdparty/Icon.js +31 -12
- package/src/sap/ui/webc/main/thirdparty/Input.js +85 -43
- package/src/sap/ui/webc/main/thirdparty/Interfaces.js +4 -0
- package/src/sap/ui/webc/main/thirdparty/Link.js +46 -9
- package/src/sap/ui/webc/main/thirdparty/List.js +52 -16
- package/src/sap/ui/webc/main/thirdparty/ListItem.js +19 -8
- package/src/sap/ui/webc/main/thirdparty/MessageStrip.js +2 -3
- package/src/sap/ui/webc/main/thirdparty/MultiComboBox.js +193 -62
- package/src/sap/ui/webc/main/thirdparty/MultiInput.js +1 -2
- package/src/sap/ui/webc/main/thirdparty/Panel.js +9 -7
- package/src/sap/ui/webc/main/thirdparty/Popover.js +59 -38
- package/src/sap/ui/webc/main/thirdparty/Popup.js +47 -27
- package/src/sap/ui/webc/main/thirdparty/ProgressIndicator.js +8 -7
- package/src/sap/ui/webc/main/thirdparty/RadioButton.js +53 -23
- package/src/sap/ui/webc/main/thirdparty/RadioButtonGroup.js +31 -31
- package/src/sap/ui/webc/main/thirdparty/RangeSlider.js +6 -7
- package/src/sap/ui/webc/main/thirdparty/RatingIndicator.js +7 -8
- package/src/sap/ui/webc/main/thirdparty/ResponsivePopover.js +11 -26
- package/src/sap/ui/webc/main/thirdparty/SegmentedButton.js +66 -41
- package/src/sap/ui/webc/main/thirdparty/SegmentedButtonItem.js +39 -0
- package/src/sap/ui/webc/main/thirdparty/Select.js +103 -66
- package/src/sap/ui/webc/main/thirdparty/Slider.js +2 -3
- package/src/sap/ui/webc/main/thirdparty/SliderBase.js +4 -9
- package/src/sap/ui/webc/main/thirdparty/StepInput.js +12 -8
- package/src/sap/ui/webc/main/thirdparty/SuggestionGroupItem.js +36 -0
- package/src/sap/ui/webc/main/thirdparty/SuggestionItem.js +1 -5
- package/src/sap/ui/webc/main/thirdparty/SuggestionListItem.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/Switch.js +5 -6
- package/src/sap/ui/webc/main/thirdparty/Tab.js +12 -2
- package/src/sap/ui/webc/main/thirdparty/TabContainer.js +13 -6
- package/src/sap/ui/webc/main/thirdparty/Table.js +16 -7
- package/src/sap/ui/webc/main/thirdparty/TableGroupRow.js +88 -0
- package/src/sap/ui/webc/main/thirdparty/TableRow.js +11 -9
- package/src/sap/ui/webc/main/thirdparty/TextArea.js +14 -13
- package/src/sap/ui/webc/main/thirdparty/TimePicker.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/TimePickerBase.js +10 -7
- package/src/sap/ui/webc/main/thirdparty/TimeSelection.js +8 -9
- package/src/sap/ui/webc/main/thirdparty/Toast.js +5 -0
- package/src/sap/ui/webc/main/thirdparty/ToggleButton.js +8 -1
- package/src/sap/ui/webc/main/thirdparty/Token.js +2 -6
- package/src/sap/ui/webc/main/thirdparty/Tokenizer.js +13 -15
- package/src/sap/ui/webc/main/thirdparty/Tree.js +18 -0
- package/src/sap/ui/webc/main/thirdparty/TreeItem.js +3 -0
- package/src/sap/ui/webc/main/thirdparty/TreeListItem.js +12 -15
- package/src/sap/ui/webc/main/thirdparty/WheelSlider.js +6 -6
- package/src/sap/ui/webc/main/thirdparty/YearPicker.js +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/Avatar.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/AvatarGroup.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/Badge.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/Breadcrumbs.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/BreadcrumbsPopover.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/BrowserScrollbar.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/BusyIndicator.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/Button.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/Button.ie11.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/Calendar.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/CalendarHeader.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/Card.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/CardHeader.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/Carousel.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/CheckBox.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/ColorPalette.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/ColorPaletteItem.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/ColorPalettePopover.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/ColorPaletteStaticArea.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/ColorPicker.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/ComboBox.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/ComboBoxPopover.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/CustomListItem.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/DatePicker.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/DatePickerPopover.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/DateRangePicker.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/DateTimePicker.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/DateTimePickerPopover.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/DayPicker.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/Dialog.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/FileUploader.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/GroupHeaderListItem.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/GrowingButton.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/Icon.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/Input.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/InputIcon.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/InvisibleTextStyles.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/Label.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/Link.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/List.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/ListItem.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/ListItemBase.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/MessageStrip.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/MonthPicker.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/MultiComboBox.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/MultiInput.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/Panel.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/Popover.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/Popup.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/PopupGlobal.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/PopupStaticAreaStyles.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/PopupsCommon.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/ProgressIndicator.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/RadioButton.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/RatingIndicator.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/ResponsivePopover.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/ResponsivePopoverCommon.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/SegmentedButton.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/Select.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/SelectPopover.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/SliderBase.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/StepInput.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/Suggestions.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/Switch.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/Tab.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/TabContainer.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/TabInOverflow.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/TabInStrip.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/Table.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/TableCell.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/TableColumn.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/TableGroupRow.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/TableRow.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/TapHighlightColor.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/TextArea.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/TimePicker.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/TimePickerPopover.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/TimeSelection.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/Title.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/Toast.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/ToggleButton.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/ToggleButton.ie11.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/Token.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/Tokenizer.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/Tree.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/TreeListItem.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/ValueStateMessage.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/WheelSlider.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/YearPicker.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/sap_belize/parameters-bundle.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/sap_belize_hcb/parameters-bundle.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/sap_belize_hcw/parameters-bundle.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/sap_fiori_3/parameters-bundle.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/sap_fiori_3_dark/parameters-bundle.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/sap_fiori_3_hcb/parameters-bundle.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/sap_fiori_3_hcw/parameters-bundle.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/sap_horizon/parameters-bundle.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/sap_horizon_exp/parameters-bundle.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/features/ColorPaletteMoreColors.js +6 -6
- package/src/sap/ui/webc/main/thirdparty/features/InputSuggestions.js +30 -17
- package/src/sap/ui/webc/main/thirdparty/generated/i18n/i18n-defaults.js +15 -1
- package/src/sap/ui/webc/main/thirdparty/generated/json-imports/Themes.js +10 -8
- package/src/sap/ui/webc/main/thirdparty/generated/json-imports/i18n.js +47 -47
- package/src/sap/ui/webc/main/thirdparty/generated/templates/AvatarGroupTemplate.lit.js +5 -14
- package/src/sap/ui/webc/main/thirdparty/generated/templates/AvatarTemplate.lit.js +8 -17
- package/src/sap/ui/webc/main/thirdparty/generated/templates/BadgeTemplate.lit.js +4 -14
- package/src/sap/ui/webc/main/thirdparty/generated/templates/BreadcrumbsPopoverTemplate.lit.js +8 -0
- package/src/sap/ui/webc/main/thirdparty/generated/templates/BreadcrumbsTemplate.lit.js +9 -0
- package/src/sap/ui/webc/main/thirdparty/generated/templates/BusyIndicatorTemplate.lit.js +6 -15
- package/src/sap/ui/webc/main/thirdparty/generated/templates/ButtonTemplate.lit.js +5 -14
- package/src/sap/ui/webc/main/thirdparty/generated/templates/CalendarHeaderTemplate.lit.js +5 -12
- package/src/sap/ui/webc/main/thirdparty/generated/templates/CalendarTemplate.lit.js +3 -12
- package/src/sap/ui/webc/main/thirdparty/generated/templates/CardHeaderTemplate.lit.js +12 -0
- package/src/sap/ui/webc/main/thirdparty/generated/templates/CardTemplate.lit.js +4 -18
- package/src/sap/ui/webc/main/thirdparty/generated/templates/CarouselTemplate.lit.js +12 -21
- package/src/sap/ui/webc/main/thirdparty/generated/templates/CheckBoxTemplate.lit.js +6 -15
- package/src/sap/ui/webc/main/thirdparty/generated/templates/ColorPaletteDialogTemplate.lit.js +3 -12
- package/src/sap/ui/webc/main/thirdparty/generated/templates/ColorPaletteItemTemplate.lit.js +3 -12
- package/src/sap/ui/webc/main/thirdparty/generated/templates/ColorPalettePopoverTemplate.lit.js +8 -0
- package/src/sap/ui/webc/main/thirdparty/generated/templates/ColorPaletteTemplate.lit.js +8 -16
- package/src/sap/ui/webc/main/thirdparty/generated/templates/ColorPickerTemplate.lit.js +3 -12
- package/src/sap/ui/webc/main/thirdparty/generated/templates/ComboBoxPopoverTemplate.lit.js +19 -26
- package/src/sap/ui/webc/main/thirdparty/generated/templates/ComboBoxTemplate.lit.js +6 -15
- package/src/sap/ui/webc/main/thirdparty/generated/templates/CustomListItemTemplate.lit.js +12 -21
- package/src/sap/ui/webc/main/thirdparty/generated/templates/DatePickerPopoverTemplate.lit.js +6 -15
- package/src/sap/ui/webc/main/thirdparty/generated/templates/DatePickerTemplate.lit.js +5 -14
- package/src/sap/ui/webc/main/thirdparty/generated/templates/DateTimePickerPopoverTemplate.lit.js +8 -17
- package/src/sap/ui/webc/main/thirdparty/generated/templates/DayPickerTemplate.lit.js +12 -20
- package/src/sap/ui/webc/main/thirdparty/generated/templates/DialogTemplate.lit.js +8 -17
- package/src/sap/ui/webc/main/thirdparty/generated/templates/FileUploaderPopoverTemplate.lit.js +6 -15
- package/src/sap/ui/webc/main/thirdparty/generated/templates/FileUploaderTemplate.lit.js +6 -15
- package/src/sap/ui/webc/main/thirdparty/generated/templates/GroupHeaderListItemTemplate.lit.js +3 -12
- package/src/sap/ui/webc/main/thirdparty/generated/templates/IconTemplate.lit.js +5 -14
- package/src/sap/ui/webc/main/thirdparty/generated/templates/InputPopoverTemplate.lit.js +23 -32
- package/src/sap/ui/webc/main/thirdparty/generated/templates/InputTemplate.lit.js +7 -16
- package/src/sap/ui/webc/main/thirdparty/generated/templates/LabelTemplate.lit.js +3 -12
- package/src/sap/ui/webc/main/thirdparty/generated/templates/LinkTemplate.lit.js +4 -13
- package/src/sap/ui/webc/main/thirdparty/generated/templates/ListItemTemplate.lit.js +12 -21
- package/src/sap/ui/webc/main/thirdparty/generated/templates/ListTemplate.lit.js +13 -22
- package/src/sap/ui/webc/main/thirdparty/generated/templates/MessageStripTemplate.lit.js +7 -16
- package/src/sap/ui/webc/main/thirdparty/generated/templates/MonthPickerTemplate.lit.js +5 -14
- package/src/sap/ui/webc/main/thirdparty/generated/templates/MultiComboBoxPopoverTemplate.lit.js +22 -28
- package/src/sap/ui/webc/main/thirdparty/generated/templates/MultiComboBoxTemplate.lit.js +8 -17
- package/src/sap/ui/webc/main/thirdparty/generated/templates/MultiInputTemplate.lit.js +13 -22
- package/src/sap/ui/webc/main/thirdparty/generated/templates/PanelTemplate.lit.js +8 -17
- package/src/sap/ui/webc/main/thirdparty/generated/templates/PopoverTemplate.lit.js +8 -17
- package/src/sap/ui/webc/main/thirdparty/generated/templates/PopupBlockLayerTemplate.lit.js +3 -8
- package/src/sap/ui/webc/main/thirdparty/generated/templates/PopupTemplate.lit.js +3 -12
- package/src/sap/ui/webc/main/thirdparty/generated/templates/ProgressIndicatorTemplate.lit.js +13 -18
- package/src/sap/ui/webc/main/thirdparty/generated/templates/RadioButtonTemplate.lit.js +6 -15
- package/src/sap/ui/webc/main/thirdparty/generated/templates/RangeSliderTemplate.lit.js +9 -18
- package/src/sap/ui/webc/main/thirdparty/generated/templates/RatingIndicatorTemplate.lit.js +12 -19
- package/src/sap/ui/webc/main/thirdparty/generated/templates/ResponsivePopoverTemplate.lit.js +15 -23
- package/src/sap/ui/webc/main/thirdparty/generated/templates/SegmentedButtonItemTemplate.lit.js +8 -0
- package/src/sap/ui/webc/main/thirdparty/generated/templates/SegmentedButtonTemplate.lit.js +3 -12
- package/src/sap/ui/webc/main/thirdparty/generated/templates/SelectPopoverTemplate.lit.js +19 -28
- package/src/sap/ui/webc/main/thirdparty/generated/templates/SelectTemplate.lit.js +5 -14
- package/src/sap/ui/webc/main/thirdparty/generated/templates/SliderBaseTemplate.lit.js +7 -16
- package/src/sap/ui/webc/main/thirdparty/generated/templates/SliderTemplate.lit.js +8 -17
- package/src/sap/ui/webc/main/thirdparty/generated/templates/StandardListItemTemplate.lit.js +20 -29
- package/src/sap/ui/webc/main/thirdparty/generated/templates/StepInputTemplate.lit.js +4 -13
- package/src/sap/ui/webc/main/thirdparty/generated/templates/SuggestionListItemTemplate.lit.js +23 -32
- package/src/sap/ui/webc/main/thirdparty/generated/templates/SwitchTemplate.lit.js +5 -14
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TabContainerPopoverTemplate.lit.js +5 -14
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TabContainerTemplate.lit.js +15 -24
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TabInOverflowTemplate.lit.js +5 -14
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TabInStripTemplate.lit.js +7 -18
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TabSeparatorTemplate.lit.js +3 -12
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TabTemplate.lit.js +3 -12
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TableCellTemplate.lit.js +3 -8
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TableColumnTemplate.lit.js +3 -12
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TableGroupRowTemplate.lit.js +7 -0
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TableRowTemplate.lit.js +13 -22
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TableTemplate.lit.js +12 -21
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TextAreaPopoverTemplate.lit.js +7 -16
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TextAreaTemplate.lit.js +7 -16
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TimePickerPopoverTemplate.lit.js +3 -12
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TimePickerTemplate.lit.js +5 -14
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TimeSelectionTemplate.lit.js +7 -16
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TitleTemplate.lit.js +9 -18
- package/src/sap/ui/webc/main/thirdparty/generated/templates/ToastTemplate.lit.js +4 -12
- package/src/sap/ui/webc/main/thirdparty/generated/templates/ToggleButtonTemplate.lit.js +5 -14
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TokenTemplate.lit.js +6 -15
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TokenizerPopoverTemplate.lit.js +8 -17
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TokenizerTemplate.lit.js +5 -14
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TreeListItemTemplate.lit.js +17 -26
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TreeTemplate.lit.js +4 -13
- package/src/sap/ui/webc/main/thirdparty/generated/templates/WheelSliderTemplate.lit.js +6 -15
- package/src/sap/ui/webc/main/thirdparty/generated/templates/YearPickerTemplate.lit.js +5 -14
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Avatar.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/AvatarGroup.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Badge.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Breadcrumbs.css.js +13 -0
- package/src/sap/ui/webc/main/thirdparty/generated/themes/BreadcrumbsPopover.css.js +13 -0
- package/src/sap/ui/webc/main/thirdparty/generated/themes/BrowserScrollbar.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/BusyIndicator.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Button.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Button.ie11.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Calendar.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/CalendarHeader.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Card.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/CardHeader.css.js +13 -0
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Carousel.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/CheckBox.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/ColorPalette.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/ColorPaletteItem.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/ColorPalettePopover.css.js +13 -0
- package/src/sap/ui/webc/main/thirdparty/generated/themes/ColorPaletteStaticArea.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/ColorPicker.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/ComboBox.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/ComboBoxPopover.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/CustomListItem.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/DatePicker.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/DatePickerPopover.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/DateRangePicker.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/DateTimePicker.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/DateTimePickerPopover.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/DayPicker.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Dialog.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/FileUploader.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/GroupHeaderListItem.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/GrowingButton.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Icon.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Input.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/InputIcon.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/InvisibleTextStyles.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Label.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Link.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/List.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/ListItem.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/ListItemBase.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/MessageStrip.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/MonthPicker.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/MultiComboBox.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/MultiInput.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Panel.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Popover.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Popup.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/PopupGlobal.css.js +13 -0
- package/src/sap/ui/webc/main/thirdparty/generated/themes/PopupStaticAreaStyles.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/PopupsCommon.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/ProgressIndicator.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/RadioButton.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/RatingIndicator.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/ResponsivePopover.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/ResponsivePopoverCommon.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/SegmentedButton.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Select.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/SelectPopover.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/SliderBase.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/StepInput.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Suggestions.css.js +13 -0
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Switch.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Tab.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/TabContainer.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/TabInOverflow.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/TabInStrip.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Table.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/TableCell.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/TableColumn.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/TableGroupRow.css.js +13 -0
- package/src/sap/ui/webc/main/thirdparty/generated/themes/TableRow.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/TapHighlightColor.css.js +13 -0
- package/src/sap/ui/webc/main/thirdparty/generated/themes/TextArea.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/TimePicker.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/TimePickerPopover.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/TimeSelection.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Title.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Toast.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/ToggleButton.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/ToggleButton.ie11.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Token.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Tokenizer.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Tree.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/TreeListItem.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/ValueStateMessage.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/WheelSlider.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/YearPicker.css.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/sap_belize/parameters-bundle.css.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/themes/sap_belize_hcb/parameters-bundle.css.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/themes/sap_belize_hcw/parameters-bundle.css.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/themes/sap_fiori_3/parameters-bundle.css.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/themes/sap_fiori_3_dark/parameters-bundle.css.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/themes/sap_fiori_3_hcb/parameters-bundle.css.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/themes/sap_fiori_3_hcw/parameters-bundle.css.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/themes/sap_horizon/parameters-bundle.css.js +7 -0
- package/src/sap/ui/webc/main/thirdparty/generated/themes/sap_horizon_exp/parameters-bundle.css.js +7 -0
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_ar-23b6aec9.js → messagebundle_ar-f610ffe9.js} +15 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_bg-b642f80f.js → messagebundle_bg-e372ad7a.js} +15 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_ca-20fa76b6.js → messagebundle_ca-64403819.js} +15 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_cs-f636c9f4.js → messagebundle_cs-f5276d1f.js} +15 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_cy-668048df.js → messagebundle_cy-5b51959f.js} +15 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_da-ab0def1e.js → messagebundle_da-3f0c542a.js} +15 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_de-0bf4dd1a.js → messagebundle_de-ff52e292.js} +15 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_el-4962a11e.js → messagebundle_el-8a8f0e04.js} +15 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_en-d45f8908.js → messagebundle_en-39f79920.js} +15 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_en_GB-22be6c54.js → messagebundle_en_GB-9a6995bc.js} +15 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_en_US_sappsd-43f65212.js → messagebundle_en_US_sappsd-1cd6f946.js} +15 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_en_US_saprigi-12f3828e.js → messagebundle_en_US_saprigi-88214efb.js} +15 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_en_US_saptrc-e9d14fae.js → messagebundle_en_US_saptrc-d8b4cc37.js} +15 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_es-357e1c36.js → messagebundle_es-4e7804b3.js} +15 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_es_MX-8e0d2258.js → messagebundle_es_MX-5d55637e.js} +16 -2
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_et-5a1ea785.js → messagebundle_et-d019447e.js} +15 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_fi-25a76e5c.js → messagebundle_fi-115f5a0c.js} +15 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_fr-48f2bd02.js → messagebundle_fr-f4458a8c.js} +15 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_fr_CA-6e11af7d.js → messagebundle_fr_CA-d3ac2579.js} +15 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_hi-b8e55814.js → messagebundle_hi-3dbf5206.js} +15 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_hr-b2f08f08.js → messagebundle_hr-3112e358.js} +15 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_hu-81e9b34e.js → messagebundle_hu-90f77b24.js} +15 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_it-98262baf.js → messagebundle_it-4fd2c566.js} +15 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_iw-29c5b67e.js → messagebundle_iw-ff53b57b.js} +15 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_ja-16deb9b7.js → messagebundle_ja-050a69c3.js} +15 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_kk-bc7929b4.js → messagebundle_kk-597a9724.js} +15 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_ko-331e5063.js → messagebundle_ko-d840efd8.js} +15 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_lt-5708d85e.js → messagebundle_lt-d15c1526.js} +15 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_lv-ce9a2b90.js → messagebundle_lv-539ad33e.js} +15 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_ms-b991460e.js → messagebundle_ms-98b3e6dd.js} +15 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_nl-89ee9f6c.js → messagebundle_nl-5c52e887.js} +15 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_no-1db10706.js → messagebundle_no-04ee2aaf.js} +15 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_pl-49ee2166.js → messagebundle_pl-6da30702.js} +15 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_pt-e1f22029.js → messagebundle_pt-71f281c3.js} +15 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_pt_PT-19024d29.js → messagebundle_pt_PT-6d966418.js} +15 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_ro-9e2d0cd1.js → messagebundle_ro-e76a9c5d.js} +15 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_ru-9f439834.js → messagebundle_ru-dc34dd79.js} +15 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_sh-3fe24f0e.js → messagebundle_sh-f2171ee6.js} +15 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_sk-275cf4ec.js → messagebundle_sk-5c10a3c8.js} +15 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_sl-f774c011.js → messagebundle_sl-14cff3cf.js} +15 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_sv-716ad2e9.js → messagebundle_sv-44a9e5d4.js} +15 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_th-503e18e9.js → messagebundle_th-6cbca7a8.js} +15 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_tr-1db67daa.js → messagebundle_tr-00ce0f94.js} +15 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_uk-58f2adad.js → messagebundle_uk-bf2de1c7.js} +15 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_vi-f523cd98.js → messagebundle_vi-a0de6aa8.js} +15 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_zh_CN-761506cb.js → messagebundle_zh_CN-7cbf9197.js} +15 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_zh_TW-591c0661.js → messagebundle_zh_TW-53705d5b.js} +15 -1
- package/src/sap/ui/webc/main/thirdparty/parameters-bundle.css-0f28e359.js +13 -0
- package/src/sap/ui/webc/main/thirdparty/parameters-bundle.css-1ee56435.js +13 -0
- package/src/sap/ui/webc/main/thirdparty/parameters-bundle.css-4d4cd873.js +13 -0
- package/src/sap/ui/webc/main/thirdparty/parameters-bundle.css-5bdedee7.js +13 -0
- package/src/sap/ui/webc/main/thirdparty/parameters-bundle.css-60d672db.js +13 -0
- package/src/sap/ui/webc/main/thirdparty/parameters-bundle.css-793a420b.js +13 -0
- package/src/sap/ui/webc/main/thirdparty/parameters-bundle.css-7c549d8f.js +13 -0
- package/src/sap/ui/webc/main/thirdparty/parameters-bundle.css-7e5617d6.js +13 -0
- package/src/sap/ui/webc/main/thirdparty/parameters-bundle.css-e75a0bfb.js +13 -0
- package/src/sap/ui/webc/main/thirdparty/popup-utils/OpenedPopupsRegistry.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/popup-utils/PopoverRegistry.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/types/{AvatarFitType.js → BreadcrumbsDesign.js} +7 -7
- package/src/sap/ui/webc/main/thirdparty/types/BreadcrumbsSeparatorStyle.js +24 -0
- package/src/sap/ui/webc/main/thirdparty/types/ButtonDesign.js +1 -0
- package/ui5.yaml +1 -1
- package/src/sap/ui/webc/main/DurationPicker.js +0 -271
- package/src/sap/ui/webc/main/thirdparty/parameters-bundle.css-39cac16d.js +0 -9
- package/src/sap/ui/webc/main/thirdparty/parameters-bundle.css-4ca42a34.js +0 -9
- package/src/sap/ui/webc/main/thirdparty/parameters-bundle.css-6fc1faf3.js +0 -9
- package/src/sap/ui/webc/main/thirdparty/parameters-bundle.css-94dc708f.js +0 -9
- package/src/sap/ui/webc/main/thirdparty/parameters-bundle.css-cb1a26d8.js +0 -9
- package/src/sap/ui/webc/main/thirdparty/parameters-bundle.css-d2d877b5.js +0 -9
- package/src/sap/ui/webc/main/thirdparty/parameters-bundle.css-e914e4ca.js +0 -9
package/.reuse/dep5
CHANGED
|
@@ -309,7 +309,7 @@ License: MIT
|
|
|
309
309
|
Comment: these files belong to: lodash
|
|
310
310
|
|
|
311
311
|
Files: src/sap.ui.core/src/sap/ui/thirdparty/hyphenopoly/*
|
|
312
|
-
Copyright:
|
|
312
|
+
Copyright: 2021 Mathias Nater
|
|
313
313
|
License: MIT
|
|
314
314
|
Comment: these files belong to: Hyphenopoly
|
|
315
315
|
|
|
@@ -347,11 +347,6 @@ Copyright: 2013 Ariya Hidayat and other contributors
|
|
|
347
347
|
License: BSD-2-Clause
|
|
348
348
|
Comment: these files belong to: Esprima
|
|
349
349
|
|
|
350
|
-
Files: src/sap.ui.documentation/src/sap/ui/documentation/sdk/thirdparty/google-code-prettify/*
|
|
351
|
-
Copyright: 2006 Google Inc.
|
|
352
|
-
License: Apache-2.0
|
|
353
|
-
Comment: these files belong to: google-code-prettify
|
|
354
|
-
|
|
355
350
|
Files: src/sap.ui.documentation/src/sap/ui/documentation/sdk/thirdparty/highlight.js/*
|
|
356
351
|
Copyright: 2006-2020, Ivan Sagalaev
|
|
357
352
|
License: BSD-3-Clause
|
|
@@ -405,6 +400,11 @@ Copyright: 2014 Vitaly Puzrin, Alex Kocharin
|
|
|
405
400
|
License: MIT
|
|
406
401
|
Comment: these files belong to: Markdown-it
|
|
407
402
|
|
|
403
|
+
Files: src/sap.ui.integration/test/sap/ui/integration/demokit/cardExplorer/webapp/thirdparty/ajv/ajv.min.js
|
|
404
|
+
Copyright: 2015-2017 Evgeny Poberezkin
|
|
405
|
+
License: MIT
|
|
406
|
+
Comment: these files belong to: ajv
|
|
407
|
+
|
|
408
408
|
|
|
409
409
|
# Library: sap.ui.mdc:
|
|
410
410
|
|
|
@@ -418,7 +418,7 @@ Comment: these files contain content from SAP and BooleanExpressionEvaluator: Bo
|
|
|
418
418
|
|
|
419
419
|
# Library: sap.ui.webc.common:
|
|
420
420
|
|
|
421
|
-
Files: src/sap.ui.webc.common/src/sap/ui/webc/common/thirdparty/base/*.* src/sap.ui.webc.common/src/sap/ui/webc/common/thirdparty/
|
|
421
|
+
Files: src/sap.ui.webc.common/src/sap/ui/webc/common/thirdparty/base/*.* src/sap.ui.webc.common/src/sap/ui/webc/common/thirdparty/theming/*.* src/sap.ui.webc.common/src/sap/ui/webc/common/thirdparty/localization/*.* src/sap.ui.webc.common/src/sap/ui/webc/common/thirdparty/icons/*.* src/sap.ui.webc.common/src/sap/ui/webc/common/thirdparty/icons-tnt/*.* src/sap.ui.webc.common/src/sap/ui/webc/common/thirdparty/icons-business-suite/*.*
|
|
422
422
|
Copyright: SAP
|
|
423
423
|
License: Apache-2.0
|
|
424
424
|
Comment: these files belong to: UI5 Web Components
|
|
@@ -452,11 +452,6 @@ Copyright: 2009-2014, Alexis Sellier <self@cloudhead.net>
|
|
|
452
452
|
License: Apache-2.0
|
|
453
453
|
Comment: these files belong to: LESS
|
|
454
454
|
|
|
455
|
-
Files: ../test/sap/ui/integration/demokit/cardExplorer/webapp/thirdparty/ajv/ajv.min.js
|
|
456
|
-
Copyright: 2015-2017 Evgeny Poberezkin
|
|
457
|
-
License: MIT
|
|
458
|
-
Comment: these files belong to: ajv
|
|
459
|
-
|
|
460
455
|
Files: lib/jsdoc/ui5/plugin.js
|
|
461
456
|
Copyright:
|
|
462
457
|
2009-2021 SAP SE or an SAP affiliate company and OpenUI5 contributors
|
|
@@ -464,3 +459,8 @@ Copyright:
|
|
|
464
459
|
License: Apache-2.0
|
|
465
460
|
Comment: these files contain content from SAP and JSDoc 3: plugin.js is overall written by SAP, but contains code taken from JSDoc 3.6.7 (see the respective comments)
|
|
466
461
|
|
|
462
|
+
Files: src/sap.ui.core/src/sap/ui/core/themes/base/base.less src/themelib_sap_belize/src/sap/ui/core/themes/*/base.less src/themelib_sap_fiori_3/src/sap/ui/core/themes/*/base.less src/themelib_sap_horizon/src/sap/ui/core/themes/*/base.less
|
|
463
|
+
Copyright: SAP SE or an SAP affiliate company and Theming Base Content contributors
|
|
464
|
+
License: Apache-2.0
|
|
465
|
+
Comment: these files belong to: SAP Theming Base Content
|
|
466
|
+
|
package/THIRDPARTY.txt
CHANGED
|
@@ -6,7 +6,7 @@ The full text of all referenced licenses is appended at the end of this file.
|
|
|
6
6
|
|
|
7
7
|
Library: sap.ui.codeeditor:
|
|
8
8
|
|
|
9
|
-
Component: Ace (Ajax.org Cloud9 Editor), version: 1.4.
|
|
9
|
+
Component: Ace (Ajax.org Cloud9 Editor), version: 1.4.13
|
|
10
10
|
Copyright: 2010, Ajax.org B.V.
|
|
11
11
|
License: BSD-3-Clause
|
|
12
12
|
License Text: https://github.com/SAP/openui5/blob/master/LICENSES/BSD-3-Clause.txt
|
|
@@ -197,7 +197,7 @@ License: BSD-3-Clause
|
|
|
197
197
|
License Text: https://github.com/SAP/openui5/blob/master/LICENSES/BSD-3-Clause.txt
|
|
198
198
|
Contained in: src/sap.ui.core/src/sap/ui/thirdparty/sinon-qunit.js
|
|
199
199
|
|
|
200
|
-
Component: URI.js, version: 1.19.
|
|
200
|
+
Component: URI.js, version: 1.19.7
|
|
201
201
|
Copyright: Rodney Rehm
|
|
202
202
|
License: MIT
|
|
203
203
|
License Text: https://github.com/SAP/openui5/blob/master/LICENSES/MIT.txt
|
|
@@ -279,8 +279,8 @@ License: MIT
|
|
|
279
279
|
License Text: https://github.com/SAP/openui5/blob/master/LICENSES/MIT.txt
|
|
280
280
|
Contained in: src/sap.ui.core/src/sap/ui/base/util/restricted/_/lodash.custom.js
|
|
281
281
|
|
|
282
|
-
Component: Hyphenopoly, version:
|
|
283
|
-
Copyright:
|
|
282
|
+
Component: Hyphenopoly, version: 3.4.0
|
|
283
|
+
Copyright: 2021 Mathias Nater
|
|
284
284
|
License: MIT
|
|
285
285
|
License Text: https://github.com/SAP/openui5/blob/master/LICENSES/MIT.txt
|
|
286
286
|
Contained in: src/sap.ui.core/src/sap/ui/thirdparty/hyphenopoly/*
|
|
@@ -324,12 +324,6 @@ License: BSD-2-Clause
|
|
|
324
324
|
License Text: https://github.com/SAP/openui5/blob/master/LICENSES/BSD-2-Clause.txt
|
|
325
325
|
Contained in: src/sap.ui.documentation/src/sap/ui/documentation/sdk/thirdparty/esprima.js
|
|
326
326
|
|
|
327
|
-
Component: google-code-prettify, version: 20130304
|
|
328
|
-
Copyright: 2006 Google Inc.
|
|
329
|
-
License: Apache-2.0
|
|
330
|
-
License Text: https://github.com/SAP/openui5/blob/master/LICENSES/Apache-2.0.txt
|
|
331
|
-
Contained in: src/sap.ui.documentation/src/sap/ui/documentation/sdk/thirdparty/google-code-prettify/*
|
|
332
|
-
|
|
333
327
|
Component: highlight.js, version: 10.4.1
|
|
334
328
|
Copyright: 2006-2020, Ivan Sagalaev
|
|
335
329
|
License: BSD-3-Clause
|
|
@@ -395,6 +389,12 @@ License: MIT
|
|
|
395
389
|
License Text: https://github.com/SAP/openui5/blob/master/LICENSES/MIT.txt
|
|
396
390
|
Contained in: src/sap.ui.integration/src/sap/ui/integration/thirdparty/markdown-it.js
|
|
397
391
|
|
|
392
|
+
Component: ajv, version: 6.12.3
|
|
393
|
+
Copyright: 2015-2017 Evgeny Poberezkin
|
|
394
|
+
License: MIT
|
|
395
|
+
License Text: https://github.com/SAP/openui5/blob/master/LICENSES/MIT.txt
|
|
396
|
+
Contained in: src/sap.ui.integration/test/sap/ui/integration/demokit/cardExplorer/webapp/thirdparty/ajv/ajv.min.js
|
|
397
|
+
|
|
398
398
|
|
|
399
399
|
Library: sap.ui.mdc:
|
|
400
400
|
|
|
@@ -412,10 +412,11 @@ Copyright: SAP
|
|
|
412
412
|
License: Apache-2.0
|
|
413
413
|
License Text: https://github.com/SAP/openui5/blob/master/LICENSES/Apache-2.0.txt
|
|
414
414
|
Contained in: src/sap.ui.webc.common/src/sap/ui/webc/common/thirdparty/base/*.*
|
|
415
|
-
src/sap.ui.webc.common/src/sap/ui/webc/common/thirdparty/
|
|
415
|
+
src/sap.ui.webc.common/src/sap/ui/webc/common/thirdparty/theming/*.*
|
|
416
416
|
src/sap.ui.webc.common/src/sap/ui/webc/common/thirdparty/localization/*.*
|
|
417
417
|
src/sap.ui.webc.common/src/sap/ui/webc/common/thirdparty/icons/*.*
|
|
418
418
|
src/sap.ui.webc.common/src/sap/ui/webc/common/thirdparty/icons-tnt/*.*
|
|
419
|
+
src/sap.ui.webc.common/src/sap/ui/webc/common/thirdparty/icons-business-suite/*.*
|
|
419
420
|
|
|
420
421
|
Component: lit-html, version: 1.4.1
|
|
421
422
|
Copyright: Google LLC
|
|
@@ -450,18 +451,21 @@ License: Apache-2.0
|
|
|
450
451
|
License Text: https://github.com/SAP/openui5/blob/master/LICENSES/Apache-2.0.txt
|
|
451
452
|
Contained in: src/testsuite-utils/src/main/resources/META-INF/less/less.js
|
|
452
453
|
|
|
453
|
-
Component: ajv, version: 6.12.3
|
|
454
|
-
Copyright: 2015-2017 Evgeny Poberezkin
|
|
455
|
-
License: MIT
|
|
456
|
-
License Text: https://github.com/SAP/openui5/blob/master/LICENSES/MIT.txt
|
|
457
|
-
Contained in: ../test/sap/ui/integration/demokit/cardExplorer/webapp/thirdparty/ajv/ajv.min.js
|
|
458
|
-
|
|
459
454
|
Component: JSDoc 3, version: 3.6.7
|
|
460
455
|
Copyright: 2011-present Michael Mathews micmath@gmail.com and the contributors to JSDoc
|
|
461
456
|
License: Apache-2.0
|
|
462
457
|
License Text: https://github.com/SAP/openui5/blob/master/LICENSES/Apache-2.0.txt
|
|
463
458
|
Contained in: lib/jsdoc/ui5/plugin.js
|
|
464
459
|
|
|
460
|
+
Component: SAP Theming Base Content, version: 11.1.34
|
|
461
|
+
Copyright: SAP SE or an SAP affiliate company and Theming Base Content contributors
|
|
462
|
+
License: Apache-2.0
|
|
463
|
+
License Text: https://github.com/SAP/openui5/blob/master/LICENSES/Apache-2.0.txt
|
|
464
|
+
Contained in: src/sap.ui.core/src/sap/ui/core/themes/base/base.less
|
|
465
|
+
src/themelib_sap_belize/src/sap/ui/core/themes/*/base.less
|
|
466
|
+
src/themelib_sap_fiori_3/src/sap/ui/core/themes/*/base.less
|
|
467
|
+
src/themelib_sap_horizon/src/sap/ui/core/themes/*/base.less
|
|
468
|
+
|
|
465
469
|
|
|
466
470
|
ALL LICENSE TEXTS:
|
|
467
471
|
==================
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@openui5/sap.ui.webc.main",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.97.0",
|
|
4
4
|
"description": "OpenUI5 UI Library sap.ui.webc.main",
|
|
5
5
|
"author": "SAP SE (https://www.sap.com)",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
"url": "https://github.com/SAP/openui5.git"
|
|
17
17
|
},
|
|
18
18
|
"dependencies": {
|
|
19
|
-
"@openui5/sap.ui.core": "1.
|
|
20
|
-
"@openui5/sap.ui.webc.common": "1.
|
|
19
|
+
"@openui5/sap.ui.core": "1.97.0",
|
|
20
|
+
"@openui5/sap.ui.webc.common": "1.97.0"
|
|
21
21
|
}
|
|
22
22
|
}
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
<name>sap.ui.webc.main</name>
|
|
5
5
|
<vendor>SAP SE</vendor>
|
|
6
|
-
<version>1.
|
|
6
|
+
<version>1.97.0</version>
|
|
7
7
|
<copyright>OpenUI5
|
|
8
8
|
* (c) Copyright 2009-2021 SAP SE or an SAP affiliate company.
|
|
9
9
|
* Licensed under the Apache License, Version 2.0 - see LICENSE.txt.</copyright>
|
|
@@ -13,7 +13,6 @@ sap.ui.define([
|
|
|
13
13
|
"use strict";
|
|
14
14
|
|
|
15
15
|
var AvatarColorScheme = library.AvatarColorScheme;
|
|
16
|
-
var AvatarFitType = library.AvatarFitType;
|
|
17
16
|
var AvatarShape = library.AvatarShape;
|
|
18
17
|
var AvatarSize = library.AvatarSize;
|
|
19
18
|
|
|
@@ -39,12 +38,12 @@ sap.ui.define([
|
|
|
39
38
|
*
|
|
40
39
|
* <ul>
|
|
41
40
|
* <li>[SPACE, ENTER, RETURN] - Fires the <code>click</code> event if the <code>interactive</code> property is set to true.</li>
|
|
42
|
-
* <li>[SHIFT] - If [SPACE]
|
|
41
|
+
* <li>[SHIFT] - If [SPACE] is pressed, pressing [SHIFT] releases the component without triggering the click event.</li>
|
|
43
42
|
* </ul> <br>
|
|
44
43
|
* <br>
|
|
45
44
|
*
|
|
46
45
|
* @author SAP SE
|
|
47
|
-
* @version 1.
|
|
46
|
+
* @version 1.97.0
|
|
48
47
|
*
|
|
49
48
|
* @constructor
|
|
50
49
|
* @public
|
|
@@ -72,7 +71,7 @@ sap.ui.define([
|
|
|
72
71
|
},
|
|
73
72
|
|
|
74
73
|
/**
|
|
75
|
-
* Defines the background color of the
|
|
74
|
+
* Defines the background color of the desired image. <br>
|
|
76
75
|
* <br>
|
|
77
76
|
* Available options are:
|
|
78
77
|
* <ul>
|
|
@@ -96,7 +95,7 @@ sap.ui.define([
|
|
|
96
95
|
|
|
97
96
|
/**
|
|
98
97
|
* Defines the name of the UI5 Icon, that would be displayed. <br>
|
|
99
|
-
* <b>Note:</b> If <code>image</code> is
|
|
98
|
+
* <b>Note:</b> If <code>image</code> slot is provided, the property would be ignored. <br>
|
|
100
99
|
* <b>Note:</b> You should import the desired icon first, then use its name as "icon". <br>
|
|
101
100
|
* <br>
|
|
102
101
|
* import "@ui5/webcomponents-icons/dist/{icon_name}.js" <br>
|
|
@@ -109,28 +108,6 @@ sap.ui.define([
|
|
|
109
108
|
defaultValue: ""
|
|
110
109
|
},
|
|
111
110
|
|
|
112
|
-
/**
|
|
113
|
-
* Defines the source path to the desired image.
|
|
114
|
-
*/
|
|
115
|
-
image: {
|
|
116
|
-
type: "string",
|
|
117
|
-
defaultValue: ""
|
|
118
|
-
},
|
|
119
|
-
|
|
120
|
-
/**
|
|
121
|
-
* Defines the fit type of the desired image. <br>
|
|
122
|
-
* <br>
|
|
123
|
-
* Available options are:
|
|
124
|
-
* <ul>
|
|
125
|
-
* <li><code>Cover</code></li>
|
|
126
|
-
* <li><code>Contain</code></li>
|
|
127
|
-
* </ul>
|
|
128
|
-
*/
|
|
129
|
-
imageFitType: {
|
|
130
|
-
type: "sap.ui.webc.main.AvatarFitType",
|
|
131
|
-
defaultValue: AvatarFitType.Cover
|
|
132
|
-
},
|
|
133
|
-
|
|
134
111
|
/**
|
|
135
112
|
* Defines the displayed initials. <br>
|
|
136
113
|
* Up to two Latin letters can be displayed as initials.
|
|
@@ -178,6 +155,19 @@ sap.ui.define([
|
|
|
178
155
|
type: "sap.ui.webc.main.AvatarSize",
|
|
179
156
|
defaultValue: AvatarSize.S
|
|
180
157
|
}
|
|
158
|
+
},
|
|
159
|
+
defaultAggregation: "content",
|
|
160
|
+
aggregations: {
|
|
161
|
+
|
|
162
|
+
/**
|
|
163
|
+
* Receives the desired <code><img></code> tag
|
|
164
|
+
*
|
|
165
|
+
* <b>Note:</b> If you experience flickering of the provided image, you can hide the component until it is being defined with the following CSS: <br /> <br /> <code> ui5-avatar:not(:defined) { <br /> visibility: hidden; <br /> } <br /> </code>
|
|
166
|
+
*/
|
|
167
|
+
content: {
|
|
168
|
+
type: "sap.ui.core.Control",
|
|
169
|
+
multiple: false
|
|
170
|
+
}
|
|
181
171
|
}
|
|
182
172
|
}
|
|
183
173
|
});
|
|
@@ -13,7 +13,6 @@ sap.ui.define([
|
|
|
13
13
|
"use strict";
|
|
14
14
|
|
|
15
15
|
var AvatarGroupType = library.AvatarGroupType;
|
|
16
|
-
var AvatarSize = library.AvatarSize;
|
|
17
16
|
|
|
18
17
|
/**
|
|
19
18
|
* Constructor for a new <code>AvatarGroup</code>.
|
|
@@ -74,7 +73,7 @@ sap.ui.define([
|
|
|
74
73
|
* </ul> <br>
|
|
75
74
|
*
|
|
76
75
|
* @author SAP SE
|
|
77
|
-
* @version 1.
|
|
76
|
+
* @version 1.97.0
|
|
78
77
|
*
|
|
79
78
|
* @constructor
|
|
80
79
|
* @public
|
|
@@ -89,23 +88,6 @@ sap.ui.define([
|
|
|
89
88
|
tag: "ui5-avatar-group-ui5",
|
|
90
89
|
properties: {
|
|
91
90
|
|
|
92
|
-
/**
|
|
93
|
-
* Defines predefined size of the <code>sap.ui.webc.main.Avatar</code>. <br>
|
|
94
|
-
* <br>
|
|
95
|
-
* Available options are:
|
|
96
|
-
* <ul>
|
|
97
|
-
* <li><code>XS</code></li>
|
|
98
|
-
* <li><code>S</code></li>
|
|
99
|
-
* <li><code>M</code></li>
|
|
100
|
-
* <li><code>L</code></li>
|
|
101
|
-
* <li><code>XL</code></li>
|
|
102
|
-
* </ul>
|
|
103
|
-
*/
|
|
104
|
-
avatarSize: {
|
|
105
|
-
type: "sap.ui.webc.main.AvatarSize",
|
|
106
|
-
defaultValue: AvatarSize.S
|
|
107
|
-
},
|
|
108
|
-
|
|
109
91
|
/**
|
|
110
92
|
* Defines the mode of the <code>AvatarGroup</code>. <br>
|
|
111
93
|
* <br>
|
|
@@ -170,7 +152,9 @@ sap.ui.define([
|
|
|
170
152
|
/**
|
|
171
153
|
* Fired when the count of visible <code>sap.ui.webc.main.Avatar</code> elements in the component has changed
|
|
172
154
|
*/
|
|
173
|
-
overflow: {
|
|
155
|
+
overflow: {
|
|
156
|
+
parameters: {}
|
|
157
|
+
}
|
|
174
158
|
},
|
|
175
159
|
getters: ["colorScheme", "hiddenItems"]
|
|
176
160
|
}
|
|
@@ -0,0 +1,128 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* OpenUI5
|
|
3
|
+
* (c) Copyright 2009-2021 SAP SE or an SAP affiliate company.
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
// Provides control sap.ui.webc.main.Breadcrumbs.
|
|
8
|
+
sap.ui.define([
|
|
9
|
+
"sap/ui/webc/common/WebComponent",
|
|
10
|
+
"./library",
|
|
11
|
+
"./thirdparty/Breadcrumbs"
|
|
12
|
+
], function(WebComponent, library) {
|
|
13
|
+
"use strict";
|
|
14
|
+
|
|
15
|
+
var BreadcrumbsDesign = library.BreadcrumbsDesign;
|
|
16
|
+
var BreadcrumbsSeparatorStyle = library.BreadcrumbsSeparatorStyle;
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
* Constructor for a new <code>Breadcrumbs</code>.
|
|
20
|
+
*
|
|
21
|
+
* @param {string} [sId] ID for the new control, generated automatically if no ID is given
|
|
22
|
+
* @param {object} [mSettings] Initial settings for the new control
|
|
23
|
+
*
|
|
24
|
+
* @extends sap.ui.webc.common.WebComponent
|
|
25
|
+
* @class
|
|
26
|
+
*
|
|
27
|
+
* <h3>Overview</h3> Enables users to navigate between items by providing a list of links to previous steps in the user's navigation path. It helps the user to be aware of their location within the application and allows faster navigation. <br>
|
|
28
|
+
* <br>
|
|
29
|
+
* The last three steps can be accessed as links directly, while the remaining links prior to them are available in a drop-down menu. <br>
|
|
30
|
+
* <br>
|
|
31
|
+
* You can choose the type of separator to be used from a number of predefined options.
|
|
32
|
+
*
|
|
33
|
+
* <h3>Keyboard Handling</h3> The <code>sap.ui.webc.main.Breadcrumbs</code> provides advanced keyboard handling. <br>
|
|
34
|
+
*
|
|
35
|
+
* <ul>
|
|
36
|
+
* <li>[F4, ALT+UP, ALT+DOWN, SPACE, ENTER] - If the dropdown arrow is focused - opens/closes the drop-down.</li>
|
|
37
|
+
* <li>[SPACE, ENTER] - Activates the focused item and triggers the <code>item-click</code> event.</li>
|
|
38
|
+
* <li>[ESC] - Closes the drop-down.</li>
|
|
39
|
+
* <li>[LEFT] - If the drop-down is closed - navigates one item to the left.</li>
|
|
40
|
+
* <li>[RIGHT] - If the drop-down is closed - navigates one item to the right.</li>
|
|
41
|
+
* <li>[UP] - If the drop-down is open - moves focus to the next item.</li>
|
|
42
|
+
* <li>[DOWN] - If the drop-down is open - moves focus to the previous item.</li>
|
|
43
|
+
* <li>[HOME] - Navigates to the first item.</li>
|
|
44
|
+
* <li>[END] - Navigates to the last item.</li>
|
|
45
|
+
* </ul> <br>
|
|
46
|
+
*
|
|
47
|
+
* @author SAP SE
|
|
48
|
+
* @version 1.97.0
|
|
49
|
+
*
|
|
50
|
+
* @constructor
|
|
51
|
+
* @public
|
|
52
|
+
* @since 1.95.0
|
|
53
|
+
* @experimental Since 1.95.0 This control is experimental and its API might change significantly.
|
|
54
|
+
* @alias sap.ui.webc.main.Breadcrumbs
|
|
55
|
+
* @ui5-metamodel This control/element also will be described in the UI5 (legacy) designtime metamodel
|
|
56
|
+
*/
|
|
57
|
+
var Breadcrumbs = WebComponent.extend("sap.ui.webc.main.Breadcrumbs", {
|
|
58
|
+
metadata: {
|
|
59
|
+
library: "sap.ui.webc.main",
|
|
60
|
+
tag: "ui5-breadcrumbs-ui5",
|
|
61
|
+
properties: {
|
|
62
|
+
|
|
63
|
+
/**
|
|
64
|
+
* Defines the visual indication and behavior of the breadcrumbs. Available options are <code>Standard</code> (by default) and <code>NoCurrentPage</code>. <br>
|
|
65
|
+
* <br>
|
|
66
|
+
* <b>Note:</b> The <code>Standard</code> breadcrumbs show the current page as the last item in the trail. The last item contains only plain text and is not a link.
|
|
67
|
+
*/
|
|
68
|
+
design: {
|
|
69
|
+
type: "sap.ui.webc.main.BreadcrumbsDesign",
|
|
70
|
+
defaultValue: BreadcrumbsDesign.Standard
|
|
71
|
+
},
|
|
72
|
+
|
|
73
|
+
/**
|
|
74
|
+
* Determines the visual style of the separator between the breadcrumb items.
|
|
75
|
+
*
|
|
76
|
+
* <br>
|
|
77
|
+
* <br>
|
|
78
|
+
* Available options are:
|
|
79
|
+
* <ul>
|
|
80
|
+
* <li><code>Slash</code></li>
|
|
81
|
+
* <li><code>BackSlash</code></li>
|
|
82
|
+
* <li><code>DoubleBackSlash</code></li>
|
|
83
|
+
* <li><code>DoubleGreaterThan</code></li>
|
|
84
|
+
* <li><code>DoubleSlash</code></li>
|
|
85
|
+
* <li><code>GreaterThan</code></li>
|
|
86
|
+
* </ul>
|
|
87
|
+
*/
|
|
88
|
+
separatorStyle: {
|
|
89
|
+
type: "sap.ui.webc.main.BreadcrumbsSeparatorStyle",
|
|
90
|
+
defaultValue: BreadcrumbsSeparatorStyle.Slash
|
|
91
|
+
}
|
|
92
|
+
},
|
|
93
|
+
defaultAggregation: "items",
|
|
94
|
+
aggregations: {
|
|
95
|
+
|
|
96
|
+
/**
|
|
97
|
+
* Defines the component items.
|
|
98
|
+
*
|
|
99
|
+
* <br>
|
|
100
|
+
* <br>
|
|
101
|
+
* <b>Note:</b> Use the <code>sap.ui.webc.main.BreadcrumbsItem</code> component to define the desired items.
|
|
102
|
+
*/
|
|
103
|
+
items: {
|
|
104
|
+
type: "sap.ui.webc.main.IBreadcrumbsItem",
|
|
105
|
+
multiple: true
|
|
106
|
+
}
|
|
107
|
+
},
|
|
108
|
+
events: {
|
|
109
|
+
|
|
110
|
+
/**
|
|
111
|
+
* Fires when a <code>BreadcrumbsItem</code> is clicked.
|
|
112
|
+
*/
|
|
113
|
+
itemClick: {
|
|
114
|
+
parameters: {
|
|
115
|
+
/**
|
|
116
|
+
* The clicked item.
|
|
117
|
+
*/
|
|
118
|
+
item: {
|
|
119
|
+
type: "HTMLElement"
|
|
120
|
+
}
|
|
121
|
+
}
|
|
122
|
+
}
|
|
123
|
+
}
|
|
124
|
+
}
|
|
125
|
+
});
|
|
126
|
+
|
|
127
|
+
return Breadcrumbs;
|
|
128
|
+
});
|
|
@@ -0,0 +1,98 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* OpenUI5
|
|
3
|
+
* (c) Copyright 2009-2021 SAP SE or an SAP affiliate company.
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
// Provides control sap.ui.webc.main.BreadcrumbsItem.
|
|
8
|
+
sap.ui.define([
|
|
9
|
+
"sap/ui/webc/common/WebComponent",
|
|
10
|
+
"./library",
|
|
11
|
+
"./thirdparty/BreadcrumbsItem"
|
|
12
|
+
], function(WebComponent, library) {
|
|
13
|
+
"use strict";
|
|
14
|
+
|
|
15
|
+
/**
|
|
16
|
+
* Constructor for a new <code>BreadcrumbsItem</code>.
|
|
17
|
+
*
|
|
18
|
+
* @param {string} [sId] ID for the new control, generated automatically if no ID is given
|
|
19
|
+
* @param {object} [mSettings] Initial settings for the new control
|
|
20
|
+
*
|
|
21
|
+
* @extends sap.ui.webc.common.WebComponent
|
|
22
|
+
* @class
|
|
23
|
+
*
|
|
24
|
+
* <h3>Overview</h3>
|
|
25
|
+
*
|
|
26
|
+
* The <code>sap.ui.webc.main.BreadcrumbsItem</code> component defines the content of an item in <code>ui5-breadcumbs</code>.
|
|
27
|
+
*
|
|
28
|
+
* @author SAP SE
|
|
29
|
+
* @version 1.97.0
|
|
30
|
+
*
|
|
31
|
+
* @constructor
|
|
32
|
+
* @public
|
|
33
|
+
* @since 1.95.0
|
|
34
|
+
* @experimental Since 1.95.0 This control is experimental and its API might change significantly.
|
|
35
|
+
* @alias sap.ui.webc.main.BreadcrumbsItem
|
|
36
|
+
* @implements sap.ui.webc.main.IBreadcrumbsItem
|
|
37
|
+
* @ui5-metamodel This control/element also will be described in the UI5 (legacy) designtime metamodel
|
|
38
|
+
*/
|
|
39
|
+
var BreadcrumbsItem = WebComponent.extend("sap.ui.webc.main.BreadcrumbsItem", {
|
|
40
|
+
metadata: {
|
|
41
|
+
library: "sap.ui.webc.main",
|
|
42
|
+
tag: "ui5-breadcrumbs-item-ui5",
|
|
43
|
+
interfaces: [
|
|
44
|
+
"sap.ui.webc.main.IBreadcrumbsItem"
|
|
45
|
+
],
|
|
46
|
+
properties: {
|
|
47
|
+
|
|
48
|
+
/**
|
|
49
|
+
* Defines the accessible aria name of the item.
|
|
50
|
+
*/
|
|
51
|
+
accessibleName: {
|
|
52
|
+
type: "string",
|
|
53
|
+
defaultValue: undefined
|
|
54
|
+
},
|
|
55
|
+
|
|
56
|
+
/**
|
|
57
|
+
* Defines the link href. <br>
|
|
58
|
+
* <br>
|
|
59
|
+
* <b>Note:</b> Standard hyperlink behavior is supported.
|
|
60
|
+
*/
|
|
61
|
+
href: {
|
|
62
|
+
type: "string",
|
|
63
|
+
defaultValue: ""
|
|
64
|
+
},
|
|
65
|
+
|
|
66
|
+
/**
|
|
67
|
+
* Defines the link target. <br>
|
|
68
|
+
* <br>
|
|
69
|
+
* Available options are:
|
|
70
|
+
* <ul>
|
|
71
|
+
* <li><code>_self</code></li>
|
|
72
|
+
* <li><code>_top</code></li>
|
|
73
|
+
* <li><code>_blank</code></li>
|
|
74
|
+
* <li><code>_parent</code></li>
|
|
75
|
+
* <li><code>_search</code></li>
|
|
76
|
+
* </ul> <br>
|
|
77
|
+
* <br>
|
|
78
|
+
* <b>Note:<b> This property must only be used when the <code>href</code> property is set.
|
|
79
|
+
*/
|
|
80
|
+
target: {
|
|
81
|
+
type: "string",
|
|
82
|
+
defaultValue: undefined
|
|
83
|
+
},
|
|
84
|
+
|
|
85
|
+
/**
|
|
86
|
+
* Defines the content of the control
|
|
87
|
+
*/
|
|
88
|
+
text: {
|
|
89
|
+
type: "string",
|
|
90
|
+
defaultValue: "",
|
|
91
|
+
mapping: "textContent"
|
|
92
|
+
}
|
|
93
|
+
}
|
|
94
|
+
}
|
|
95
|
+
});
|
|
96
|
+
|
|
97
|
+
return BreadcrumbsItem;
|
|
98
|
+
});
|
|
@@ -46,7 +46,7 @@ sap.ui.define([
|
|
|
46
46
|
* </ul>
|
|
47
47
|
*
|
|
48
48
|
* @author SAP SE
|
|
49
|
-
* @version 1.
|
|
49
|
+
* @version 1.97.0
|
|
50
50
|
*
|
|
51
51
|
* @constructor
|
|
52
52
|
* @public
|
|
@@ -69,6 +69,14 @@ sap.ui.define([
|
|
|
69
69
|
defaultValue: false
|
|
70
70
|
},
|
|
71
71
|
|
|
72
|
+
/**
|
|
73
|
+
* Defines the delay in milliseconds, after which the busy indicator will be visible on the screen.
|
|
74
|
+
*/
|
|
75
|
+
delay: {
|
|
76
|
+
type: "int",
|
|
77
|
+
defaultValue: 1000
|
|
78
|
+
},
|
|
79
|
+
|
|
72
80
|
/**
|
|
73
81
|
* Defines whether the control will be rendered as a block or inline HTML element
|
|
74
82
|
*/
|
|
@@ -46,7 +46,7 @@ sap.ui.define([
|
|
|
46
46
|
* </ul>
|
|
47
47
|
*
|
|
48
48
|
* @author SAP SE
|
|
49
|
-
* @version 1.
|
|
49
|
+
* @version 1.97.0
|
|
50
50
|
*
|
|
51
51
|
* @constructor
|
|
52
52
|
* @public
|
|
@@ -65,12 +65,19 @@ sap.ui.define([
|
|
|
65
65
|
],
|
|
66
66
|
properties: {
|
|
67
67
|
|
|
68
|
+
/**
|
|
69
|
+
* Sets the accessible aria name of the component.
|
|
70
|
+
*/
|
|
71
|
+
accessibleName: {
|
|
72
|
+
type: "string"
|
|
73
|
+
},
|
|
74
|
+
|
|
68
75
|
/**
|
|
69
76
|
* Defines the component design.
|
|
70
77
|
*
|
|
71
78
|
* <br>
|
|
72
79
|
* <br>
|
|
73
|
-
* <b>
|
|
80
|
+
* <b>The available values are:</b>
|
|
74
81
|
*
|
|
75
82
|
*
|
|
76
83
|
* <ul>
|
|
@@ -79,6 +86,7 @@ sap.ui.define([
|
|
|
79
86
|
* <li><code>Positive</code></li>
|
|
80
87
|
* <li><code>Negative</code></li>
|
|
81
88
|
* <li><code>Transparent</code></li>
|
|
89
|
+
* <li><code>Attention</code></li>
|
|
82
90
|
* </ul>
|
|
83
91
|
*/
|
|
84
92
|
design: {
|
|
@@ -87,7 +95,7 @@ sap.ui.define([
|
|
|
87
95
|
},
|
|
88
96
|
|
|
89
97
|
/**
|
|
90
|
-
* Defines whether the component is disabled
|
|
98
|
+
* Defines whether the component is disabled. A disabled component can't be pressed or focused, and it is not in the tab chain.
|
|
91
99
|
*/
|
|
92
100
|
disabled: {
|
|
93
101
|
type: "boolean",
|
|
@@ -160,7 +168,9 @@ sap.ui.define([
|
|
|
160
168
|
* <br>
|
|
161
169
|
* <b>Note:</b> The event will not be fired if the <code>disabled</code> property is set to <code>true</code>.
|
|
162
170
|
*/
|
|
163
|
-
click: {
|
|
171
|
+
click: {
|
|
172
|
+
parameters: {}
|
|
173
|
+
}
|
|
164
174
|
}
|
|
165
175
|
}
|
|
166
176
|
});
|