@openui5/sap.ui.webc.main 1.93.3 → 1.96.2
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 +6 -11
- package/THIRDPARTY.txt +10 -16
- package/package.json +3 -3
- package/src/sap/ui/webc/main/.library +1 -1
- package/src/sap/ui/webc/main/Avatar.js +16 -26
- 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 +12 -2
- package/src/sap/ui/webc/main/Calendar.js +12 -2
- package/src/sap/ui/webc/main/CalendarDate.js +1 -1
- package/src/sap/ui/webc/main/Card.js +11 -71
- 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 +6 -27
- package/src/sap/ui/webc/main/ColorPaletteItem.js +1 -1
- package/src/sap/ui/webc/main/ColorPicker.js +4 -2
- package/src/sap/ui/webc/main/ComboBox.js +22 -17
- 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 +61 -3
- package/src/sap/ui/webc/main/DateRangePicker.js +66 -8
- package/src/sap/ui/webc/main/DateTimePicker.js +61 -3
- package/src/sap/ui/webc/main/Dialog.js +15 -12
- 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 +1 -1
- package/src/sap/ui/webc/main/Input.js +23 -4
- package/src/sap/ui/webc/main/Label.js +1 -1
- package/src/sap/ui/webc/main/Link.js +12 -2
- package/src/sap/ui/webc/main/List.js +38 -2
- package/src/sap/ui/webc/main/MessageStrip.js +4 -2
- package/src/sap/ui/webc/main/MultiComboBox.js +10 -4
- package/src/sap/ui/webc/main/MultiComboBoxItem.js +1 -1
- package/src/sap/ui/webc/main/MultiInput.js +26 -5
- package/src/sap/ui/webc/main/Option.js +1 -1
- package/src/sap/ui/webc/main/Panel.js +12 -2
- package/src/sap/ui/webc/main/Popover.js +21 -8
- package/src/sap/ui/webc/main/ProgressIndicator.js +1 -1
- package/src/sap/ui/webc/main/RadioButton.js +28 -21
- package/src/sap/ui/webc/main/RangeSlider.js +7 -3
- package/src/sap/ui/webc/main/RatingIndicator.js +12 -3
- 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 +7 -3
- 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 +1 -11
- package/src/sap/ui/webc/main/Switch.js +4 -2
- 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 +1 -1
- package/src/sap/ui/webc/main/TextArea.js +22 -3
- package/src/sap/ui/webc/main/TimePicker.js +7 -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 +12 -2
- package/src/sap/ui/webc/main/Token.js +4 -2
- package/src/sap/ui/webc/main/Tree.js +1 -1
- package/src/sap/ui/webc/main/TreeItem.js +1 -1
- package/src/sap/ui/webc/main/library.js +117 -31
- package/src/sap/ui/webc/main/thirdparty/Avatar.js +12 -15
- package/src/sap/ui/webc/main/thirdparty/AvatarGroup.js +15 -7
- package/src/sap/ui/webc/main/thirdparty/Badge.js +11 -5
- package/src/sap/ui/webc/main/thirdparty/Breadcrumbs.js +332 -0
- package/src/sap/ui/webc/main/thirdparty/BreadcrumbsItem.js +41 -0
- package/src/sap/ui/webc/main/thirdparty/BusyIndicator.js +30 -1
- package/src/sap/ui/webc/main/thirdparty/Button.js +2 -9
- package/src/sap/ui/webc/main/thirdparty/Calendar.js +12 -4
- package/src/sap/ui/webc/main/thirdparty/CalendarHeader.js +73 -2
- package/src/sap/ui/webc/main/thirdparty/Card.js +8 -115
- package/src/sap/ui/webc/main/thirdparty/CardHeader.js +141 -0
- package/src/sap/ui/webc/main/thirdparty/Carousel.js +89 -36
- package/src/sap/ui/webc/main/thirdparty/CheckBox.js +5 -29
- package/src/sap/ui/webc/main/thirdparty/ColorPalette.js +13 -10
- package/src/sap/ui/webc/main/thirdparty/ColorPaletteItem.js +0 -3
- package/src/sap/ui/webc/main/thirdparty/ColorPicker.js +1 -6
- package/src/sap/ui/webc/main/thirdparty/ComboBox.js +85 -65
- package/src/sap/ui/webc/main/thirdparty/ComboBoxGroupItem.js +39 -0
- package/src/sap/ui/webc/main/thirdparty/DateComponentBase.js +3 -0
- package/src/sap/ui/webc/main/thirdparty/DatePicker.js +44 -14
- package/src/sap/ui/webc/main/thirdparty/DateRangePicker.js +16 -17
- package/src/sap/ui/webc/main/thirdparty/DateTimePicker.js +0 -1
- package/src/sap/ui/webc/main/thirdparty/DayPicker.js +23 -4
- package/src/sap/ui/webc/main/thirdparty/Dialog.js +117 -32
- package/src/sap/ui/webc/main/thirdparty/FileUploader.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/Icon.js +17 -1
- package/src/sap/ui/webc/main/thirdparty/Input.js +18 -5
- package/src/sap/ui/webc/main/thirdparty/Interfaces.js +4 -0
- package/src/sap/ui/webc/main/thirdparty/Link.js +44 -6
- package/src/sap/ui/webc/main/thirdparty/List.js +12 -5
- package/src/sap/ui/webc/main/thirdparty/ListItem.js +6 -0
- package/src/sap/ui/webc/main/thirdparty/MultiComboBox.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/MultiInput.js +0 -1
- package/src/sap/ui/webc/main/thirdparty/Panel.js +7 -4
- package/src/sap/ui/webc/main/thirdparty/Popover.js +8 -8
- package/src/sap/ui/webc/main/thirdparty/Popup.js +39 -8
- package/src/sap/ui/webc/main/thirdparty/RadioButton.js +18 -16
- package/src/sap/ui/webc/main/thirdparty/RadioButtonGroup.js +31 -31
- package/src/sap/ui/webc/main/thirdparty/RatingIndicator.js +4 -4
- package/src/sap/ui/webc/main/thirdparty/ResponsivePopover.js +7 -4
- package/src/sap/ui/webc/main/thirdparty/SegmentedButton.js +63 -38
- package/src/sap/ui/webc/main/thirdparty/SegmentedButtonItem.js +39 -0
- package/src/sap/ui/webc/main/thirdparty/Select.js +51 -20
- package/src/sap/ui/webc/main/thirdparty/StepInput.js +9 -4
- 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/TabContainer.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/Table.js +9 -2
- package/src/sap/ui/webc/main/thirdparty/TableGroupRow.js +89 -0
- package/src/sap/ui/webc/main/thirdparty/TableRow.js +7 -1
- package/src/sap/ui/webc/main/thirdparty/TextArea.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/TimePickerBase.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/ToggleButton.js +8 -1
- package/src/sap/ui/webc/main/thirdparty/Tokenizer.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/TreeItem.js +3 -0
- package/src/sap/ui/webc/main/thirdparty/WheelSlider.js +6 -6
- package/src/sap/ui/webc/main/thirdparty/features/InputSuggestions.js +11 -3
- package/src/sap/ui/webc/main/thirdparty/generated/i18n/i18n-defaults.js +8 -1
- package/src/sap/ui/webc/main/thirdparty/generated/json-imports/Themes.js +7 -7
- 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/ColorPaletteTemplate.lit.js +7 -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 +19 -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 +9 -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 +8 -17
- 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 +9 -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 +3 -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 +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/themes/AvatarGroup.css.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Badge.css.js +1 -1
- 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/Button.css.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/themes/CalendarHeader.css.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Card.css.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/themes/CardHeader.css.js +13 -0
- package/src/sap/ui/webc/main/thirdparty/generated/themes/CheckBox.css.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/themes/ColorPaletteItem.css.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/themes/ComboBox.css.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/themes/CustomListItem.css.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/themes/DayPicker.css.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Dialog.css.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/themes/FileUploader.css.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/themes/GroupHeaderListItem.css.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Input.css.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Link.css.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/themes/ListItem.css.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/themes/MultiComboBox.css.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Popover.css.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/themes/PopupsCommon.css.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/themes/RadioButton.css.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/themes/ResponsivePopoverCommon.css.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/themes/SegmentedButton.css.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Select.css.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/themes/StepInput.css.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/themes/TableCell.css.js +1 -1
- 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 +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/themes/TextArea.css.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Tokenizer.css.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/themes/TreeListItem.css.js +1 -1
- 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/{messagebundle_ar-23b6aec9.js → messagebundle_ar-7754de1c.js} +8 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_bg-b642f80f.js → messagebundle_bg-041345aa.js} +8 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_ca-20fa76b6.js → messagebundle_ca-df38eb0b.js} +8 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_cs-f636c9f4.js → messagebundle_cs-51d17321.js} +8 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_cy-668048df.js → messagebundle_cy-cc129f0c.js} +8 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_da-ab0def1e.js → messagebundle_da-bc87b599.js} +8 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_de-0bf4dd1a.js → messagebundle_de-518b0a75.js} +8 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_el-4962a11e.js → messagebundle_el-9686b145.js} +8 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_en-d45f8908.js → messagebundle_en-57ad19b6.js} +8 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_en_GB-22be6c54.js → messagebundle_en_GB-588d53e3.js} +8 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_en_US_sappsd-43f65212.js → messagebundle_en_US_sappsd-e370df7b.js} +8 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_en_US_saprigi-12f3828e.js → messagebundle_en_US_saprigi-adf0ddb3.js} +5 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_en_US_saptrc-e9d14fae.js → messagebundle_en_US_saptrc-261422e2.js} +8 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_es-357e1c36.js → messagebundle_es-ec258b44.js} +8 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_es_MX-8e0d2258.js → messagebundle_es_MX-5f113e73.js} +8 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_et-5a1ea785.js → messagebundle_et-901c732b.js} +8 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_fi-25a76e5c.js → messagebundle_fi-0a2a6323.js} +8 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_fr-48f2bd02.js → messagebundle_fr-5df8899a.js} +8 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_fr_CA-6e11af7d.js → messagebundle_fr_CA-0de6a568.js} +8 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_hi-b8e55814.js → messagebundle_hi-13e67957.js} +8 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_hr-b2f08f08.js → messagebundle_hr-93fbc1d1.js} +8 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_hu-81e9b34e.js → messagebundle_hu-dd94c35e.js} +8 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_it-98262baf.js → messagebundle_it-0c46ce25.js} +8 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_iw-29c5b67e.js → messagebundle_iw-946df0a2.js} +8 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_ja-16deb9b7.js → messagebundle_ja-9cb333bb.js} +8 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_kk-bc7929b4.js → messagebundle_kk-239d7820.js} +8 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_ko-331e5063.js → messagebundle_ko-6f09e984.js} +8 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_lt-5708d85e.js → messagebundle_lt-2d4f9935.js} +8 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_lv-ce9a2b90.js → messagebundle_lv-d73bf0c0.js} +8 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_ms-b991460e.js → messagebundle_ms-9b4b2929.js} +8 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_nl-89ee9f6c.js → messagebundle_nl-55193168.js} +8 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_no-1db10706.js → messagebundle_no-7f4a6832.js} +8 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_pl-49ee2166.js → messagebundle_pl-89c36a34.js} +8 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_pt-e1f22029.js → messagebundle_pt-b87f9645.js} +8 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_pt_PT-19024d29.js → messagebundle_pt_PT-0e8230b0.js} +8 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_ro-9e2d0cd1.js → messagebundle_ro-83e7f44d.js} +8 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_ru-9f439834.js → messagebundle_ru-befd37d0.js} +8 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_sh-3fe24f0e.js → messagebundle_sh-4edec182.js} +8 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_sk-275cf4ec.js → messagebundle_sk-29160489.js} +8 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_sl-f774c011.js → messagebundle_sl-fd9ba370.js} +8 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_sv-716ad2e9.js → messagebundle_sv-57bfda52.js} +8 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_th-503e18e9.js → messagebundle_th-184c45a0.js} +8 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_tr-1db67daa.js → messagebundle_tr-d5781fbb.js} +8 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_uk-58f2adad.js → messagebundle_uk-e49bb47f.js} +8 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_vi-f523cd98.js → messagebundle_vi-ce27847a.js} +8 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_zh_CN-761506cb.js → messagebundle_zh_CN-bdbfb1bd.js} +8 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_zh_TW-591c0661.js → messagebundle_zh_TW-ca1de535.js} +8 -1
- package/src/sap/ui/webc/main/thirdparty/parameters-bundle.css-09f8e92d.js +9 -0
- package/src/sap/ui/webc/main/thirdparty/parameters-bundle.css-19666884.js +9 -0
- package/src/sap/ui/webc/main/thirdparty/parameters-bundle.css-8e7c6ad9.js +9 -0
- package/src/sap/ui/webc/main/thirdparty/parameters-bundle.css-cb713657.js +9 -0
- package/src/sap/ui/webc/main/thirdparty/parameters-bundle.css-dd8f2f47.js +9 -0
- package/src/sap/ui/webc/main/thirdparty/parameters-bundle.css-e3a31f8e.js +9 -0
- package/src/sap/ui/webc/main/thirdparty/parameters-bundle.css-e44b2b84.js +9 -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
|
@@ -23,22 +23,16 @@ sap.ui.define([
|
|
|
23
23
|
*
|
|
24
24
|
* <h3>Overview</h3>
|
|
25
25
|
*
|
|
26
|
-
* The <code>sap.ui.webc.main.Card</code> is a component that represents information in the form of a tile with separate header and content areas. The content area of a <code>sap.ui.webc.main.Card</code> can be arbitrary HTML content. The header can be used through
|
|
26
|
+
* The <code>sap.ui.webc.main.Card</code> is a component that represents information in the form of a tile with separate header and content areas. The content area of a <code>sap.ui.webc.main.Card</code> can be arbitrary HTML content. The header can be used through slot <code>header</code>. For which there is a <code>sap.ui.webc.main.CardHeader</code> component to achieve the card look and fill.
|
|
27
27
|
*
|
|
28
|
-
*
|
|
28
|
+
* Note: We recommend the usage of <code>sap.ui.webc.main.CardHeader</code> for the header slot, so advantage can be taken for keyboard handling, styling and accessibility.
|
|
29
29
|
*
|
|
30
30
|
* <h3>CSS Shadow Parts</h3>
|
|
31
31
|
*
|
|
32
|
-
* <ui5-link target="_blank" href="https://developer.mozilla.org/en-US/docs/Web/CSS/::part">CSS Shadow Parts</ui5-link> allow developers to style elements inside the Shadow DOM.
|
|
33
|
-
* The <code>sap.ui.webc.main.Card</code> exposes the following CSS Shadow Parts:
|
|
34
|
-
* <ul>
|
|
35
|
-
* <li>title - Used to style the title of the card</li>
|
|
36
|
-
* <li>subtitle - Used to style the subtitle of the card</li>
|
|
37
|
-
* <li>status - Used to style the status of the card</li>
|
|
38
|
-
* </ul>
|
|
32
|
+
* <ui5-link target="_blank" href="https://developer.mozilla.org/en-US/docs/Web/CSS/::part">CSS Shadow Parts</ui5-link> allow developers to style elements inside the Shadow DOM.
|
|
39
33
|
*
|
|
40
34
|
* @author SAP SE
|
|
41
|
-
* @version 1.
|
|
35
|
+
* @version 1.96.2
|
|
42
36
|
*
|
|
43
37
|
* @constructor
|
|
44
38
|
* @public
|
|
@@ -53,14 +47,6 @@ sap.ui.define([
|
|
|
53
47
|
tag: "ui5-card-ui5",
|
|
54
48
|
properties: {
|
|
55
49
|
|
|
56
|
-
/**
|
|
57
|
-
* Defines if the component header would be interactive, e.g gets hover effect, gets focused and <code>headerPress</code> event is fired, when it is pressed.
|
|
58
|
-
*/
|
|
59
|
-
headerInteractive: {
|
|
60
|
-
type: "boolean",
|
|
61
|
-
defaultValue: false
|
|
62
|
-
},
|
|
63
|
-
|
|
64
50
|
/**
|
|
65
51
|
* Defines the height of the control
|
|
66
52
|
*/
|
|
@@ -70,32 +56,6 @@ sap.ui.define([
|
|
|
70
56
|
mapping: "style"
|
|
71
57
|
},
|
|
72
58
|
|
|
73
|
-
/**
|
|
74
|
-
* Defines the status displayed in the component header. <br>
|
|
75
|
-
* <br>
|
|
76
|
-
* <b>Note:</b> If the <code>action</code> slot is set, the <code>status</code> will not be displayed, you can either have <code>action</code>, or <code>status</code>.
|
|
77
|
-
*/
|
|
78
|
-
status: {
|
|
79
|
-
type: "string",
|
|
80
|
-
defaultValue: ""
|
|
81
|
-
},
|
|
82
|
-
|
|
83
|
-
/**
|
|
84
|
-
* Defines the subtitle displayed in the component header.
|
|
85
|
-
*/
|
|
86
|
-
subtitleText: {
|
|
87
|
-
type: "string",
|
|
88
|
-
defaultValue: ""
|
|
89
|
-
},
|
|
90
|
-
|
|
91
|
-
/**
|
|
92
|
-
* Defines the title displayed in the component header.
|
|
93
|
-
*/
|
|
94
|
-
titleText: {
|
|
95
|
-
type: "string",
|
|
96
|
-
defaultValue: ""
|
|
97
|
-
},
|
|
98
|
-
|
|
99
59
|
/**
|
|
100
60
|
* Defines the width of the control
|
|
101
61
|
*/
|
|
@@ -109,43 +69,23 @@ sap.ui.define([
|
|
|
109
69
|
aggregations: {
|
|
110
70
|
|
|
111
71
|
/**
|
|
112
|
-
* Defines
|
|
113
|
-
* <br>
|
|
114
|
-
* <b>Note:</b> If set, the <code>status</code> text will not be displayed, you can either have <code>action</code>, or <code>status</code>.
|
|
72
|
+
* Defines the content of the component.
|
|
115
73
|
*/
|
|
116
|
-
|
|
74
|
+
content: {
|
|
117
75
|
type: "sap.ui.core.Control",
|
|
118
|
-
multiple: true
|
|
119
|
-
slot: "action"
|
|
76
|
+
multiple: true
|
|
120
77
|
},
|
|
121
78
|
|
|
122
79
|
/**
|
|
123
|
-
* Defines the
|
|
80
|
+
* Defines the header of the component. <br>
|
|
124
81
|
* <br>
|
|
125
|
-
* <b>Note:</b>
|
|
82
|
+
* <b>Note:</b> Use <code>sap.ui.webc.main.CardHeader</code> for the intended design.
|
|
126
83
|
*/
|
|
127
|
-
|
|
84
|
+
header: {
|
|
128
85
|
type: "sap.ui.core.Control",
|
|
129
86
|
multiple: true,
|
|
130
|
-
slot: "
|
|
131
|
-
},
|
|
132
|
-
|
|
133
|
-
/**
|
|
134
|
-
* Defines the content of the component.
|
|
135
|
-
*/
|
|
136
|
-
content: {
|
|
137
|
-
type: "sap.ui.core.Control",
|
|
138
|
-
multiple: true
|
|
87
|
+
slot: "header"
|
|
139
88
|
}
|
|
140
|
-
},
|
|
141
|
-
events: {
|
|
142
|
-
|
|
143
|
-
/**
|
|
144
|
-
* Fired when the component header is activated by mouse/tap or by using the Enter or Space key. <br>
|
|
145
|
-
* <br>
|
|
146
|
-
* <b>Note:</b> The event would be fired only if the <code>headerInteractive</code> property is set to true.
|
|
147
|
-
*/
|
|
148
|
-
headerClick: {}
|
|
149
89
|
}
|
|
150
90
|
}
|
|
151
91
|
});
|
|
@@ -0,0 +1,127 @@
|
|
|
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.CardHeader.
|
|
8
|
+
sap.ui.define([
|
|
9
|
+
"sap/ui/webc/common/WebComponent",
|
|
10
|
+
"./library",
|
|
11
|
+
"./thirdparty/CardHeader"
|
|
12
|
+
], function(WebComponent, library) {
|
|
13
|
+
"use strict";
|
|
14
|
+
|
|
15
|
+
/**
|
|
16
|
+
* Constructor for a new <code>CardHeader</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.CardHeader</code> is a component, meant to be used as a header of the <code>sap.ui.webc.main.Card</code> component. It displays valuable information, that can be defined with several properties, such as: <code>titleText</code>, <code>subtitleText</code>, <code>status</code> and two slots: <code>avatar</code> and <code>action</code>.
|
|
27
|
+
*
|
|
28
|
+
* <h3>Keyboard handling</h3> In case you enable <code>interactive</code> property, you can press the <code>sap.ui.webc.main.CardHeader</code> by Space and Enter keys.
|
|
29
|
+
*
|
|
30
|
+
* <h3>CSS Shadow Parts</h3>
|
|
31
|
+
*
|
|
32
|
+
* <ui5-link target="_blank" href="https://developer.mozilla.org/en-US/docs/Web/CSS/::part">CSS Shadow Parts</ui5-link> allow developers to style elements inside the Shadow DOM. <br>
|
|
33
|
+
* The <code>sap.ui.webc.main.Card</code> exposes the following CSS Shadow Parts:
|
|
34
|
+
* <ul>
|
|
35
|
+
* <li>title - Used to style the title of the CardHeader</li>
|
|
36
|
+
* <li>subtitle - Used to style the subtitle of the CardHeader</li>
|
|
37
|
+
* <li>status - Used to style the status of the CardHeader</li>
|
|
38
|
+
* </ul>
|
|
39
|
+
*
|
|
40
|
+
* @author SAP SE
|
|
41
|
+
* @version 1.96.2
|
|
42
|
+
*
|
|
43
|
+
* @constructor
|
|
44
|
+
* @public
|
|
45
|
+
* @since 1.92.0
|
|
46
|
+
* @experimental Since 1.92.0 This control is experimental and its API might change significantly.
|
|
47
|
+
* @alias sap.ui.webc.main.CardHeader
|
|
48
|
+
* @ui5-metamodel This control/element also will be described in the UI5 (legacy) designtime metamodel
|
|
49
|
+
*/
|
|
50
|
+
var CardHeader = WebComponent.extend("sap.ui.webc.main.CardHeader", {
|
|
51
|
+
metadata: {
|
|
52
|
+
library: "sap.ui.webc.main",
|
|
53
|
+
tag: "ui5-card-header-ui5",
|
|
54
|
+
properties: {
|
|
55
|
+
|
|
56
|
+
/**
|
|
57
|
+
* Defines if the component would be interactive, e.g gets hover effect, gets focus outline and <code>click</code> event is fired, when pressed.
|
|
58
|
+
*/
|
|
59
|
+
interactive: {
|
|
60
|
+
type: "boolean",
|
|
61
|
+
defaultValue: false
|
|
62
|
+
},
|
|
63
|
+
|
|
64
|
+
/**
|
|
65
|
+
* Defines the status text. <br>
|
|
66
|
+
* <br>
|
|
67
|
+
* <b>Note:</b> If the <code>action</code> slot is set, the <code>status</code> will not be displayed, you can either have <code>action</code>, or <code>status</code>.
|
|
68
|
+
*/
|
|
69
|
+
status: {
|
|
70
|
+
type: "string",
|
|
71
|
+
defaultValue: ""
|
|
72
|
+
},
|
|
73
|
+
|
|
74
|
+
/**
|
|
75
|
+
* Defines the subtitle text.
|
|
76
|
+
*/
|
|
77
|
+
subtitleText: {
|
|
78
|
+
type: "string",
|
|
79
|
+
defaultValue: ""
|
|
80
|
+
},
|
|
81
|
+
|
|
82
|
+
/**
|
|
83
|
+
* Defines the title text.
|
|
84
|
+
*/
|
|
85
|
+
titleText: {
|
|
86
|
+
type: "string",
|
|
87
|
+
defaultValue: ""
|
|
88
|
+
}
|
|
89
|
+
},
|
|
90
|
+
aggregations: {
|
|
91
|
+
|
|
92
|
+
/**
|
|
93
|
+
* Defines an action, displayed in the right most part of the header. <br>
|
|
94
|
+
* <br>
|
|
95
|
+
* <b>Note:</b> If set, the <code>status</code> text will not be displayed, you can either have <code>action</code>, or <code>status</code>.
|
|
96
|
+
*/
|
|
97
|
+
action: {
|
|
98
|
+
type: "sap.ui.core.Control",
|
|
99
|
+
multiple: true,
|
|
100
|
+
slot: "action"
|
|
101
|
+
},
|
|
102
|
+
|
|
103
|
+
/**
|
|
104
|
+
* Defines an avatar image, displayed in the left most part of the header.
|
|
105
|
+
*/
|
|
106
|
+
avatar: {
|
|
107
|
+
type: "sap.ui.core.Control",
|
|
108
|
+
multiple: true,
|
|
109
|
+
slot: "avatar"
|
|
110
|
+
}
|
|
111
|
+
},
|
|
112
|
+
events: {
|
|
113
|
+
|
|
114
|
+
/**
|
|
115
|
+
* Fired when the component is activated by mouse/tap or by using the Enter or Space key. <br>
|
|
116
|
+
* <br>
|
|
117
|
+
* <b>Note:</b> The event would be fired only if the <code>interactive</code> property is set to true.
|
|
118
|
+
*/
|
|
119
|
+
click: {
|
|
120
|
+
parameters: {}
|
|
121
|
+
}
|
|
122
|
+
}
|
|
123
|
+
}
|
|
124
|
+
});
|
|
125
|
+
|
|
126
|
+
return CardHeader;
|
|
127
|
+
});
|
|
@@ -58,7 +58,7 @@ sap.ui.define([
|
|
|
58
58
|
* </ul>
|
|
59
59
|
*
|
|
60
60
|
* @author SAP SE
|
|
61
|
-
* @version 1.
|
|
61
|
+
* @version 1.96.2
|
|
62
62
|
*
|
|
63
63
|
* @constructor
|
|
64
64
|
* @public
|
|
@@ -115,14 +115,6 @@ sap.ui.define([
|
|
|
115
115
|
defaultValue: false
|
|
116
116
|
},
|
|
117
117
|
|
|
118
|
-
/**
|
|
119
|
-
* Defines when the <code>load-more</code> event is fired. If not applied the event will not be fired.
|
|
120
|
-
*/
|
|
121
|
-
infiniteScrollOffset: {
|
|
122
|
-
type: "int",
|
|
123
|
-
defaultValue: 1
|
|
124
|
-
},
|
|
125
|
-
|
|
126
118
|
/**
|
|
127
119
|
* Defines the number of items per page on large size (more than 1024px). One item per page shown by default.
|
|
128
120
|
*/
|
|
@@ -145,14 +137,6 @@ sap.ui.define([
|
|
|
145
137
|
itemsPerPageS: {
|
|
146
138
|
type: "int",
|
|
147
139
|
defaultValue: 1
|
|
148
|
-
},
|
|
149
|
-
|
|
150
|
-
/**
|
|
151
|
-
* Defines the index of the initially selected item.
|
|
152
|
-
*/
|
|
153
|
-
selectedIndex: {
|
|
154
|
-
type: "int",
|
|
155
|
-
defaultValue: 0
|
|
156
140
|
}
|
|
157
141
|
},
|
|
158
142
|
defaultAggregation: "content",
|
|
@@ -169,26 +153,30 @@ sap.ui.define([
|
|
|
169
153
|
events: {
|
|
170
154
|
|
|
171
155
|
/**
|
|
172
|
-
* Fired
|
|
173
|
-
*/
|
|
174
|
-
loadMore: {},
|
|
175
|
-
|
|
176
|
-
/**
|
|
177
|
-
* Fired whenever the <code>selectedIndex</code> changes due to user interaction, when the user clicks on the navigation arrows or while resizing, based on the <code>items-per-page-l</code>, <code>items-per-page-m</code> and <code>items-per-page-s</code> properties.
|
|
156
|
+
* Fired whenever the page changes due to user interaction, when the user clicks on the navigation arrows or while resizing, based on the <code>items-per-page-l</code>, <code>items-per-page-m</code> and <code>items-per-page-s</code> properties.
|
|
178
157
|
*/
|
|
179
158
|
navigate: {
|
|
180
159
|
parameters: {
|
|
181
160
|
/**
|
|
182
|
-
* the current
|
|
161
|
+
* the current selected index
|
|
183
162
|
*/
|
|
184
163
|
selectedIndex: {
|
|
185
164
|
type: "int"
|
|
186
165
|
}
|
|
187
166
|
}
|
|
188
167
|
}
|
|
189
|
-
}
|
|
168
|
+
},
|
|
169
|
+
methods: ["navigateTo"]
|
|
190
170
|
}
|
|
191
171
|
});
|
|
192
172
|
|
|
173
|
+
/**
|
|
174
|
+
* Changes the currently displayed page.
|
|
175
|
+
* @param {int} itemIndex The index of the target page
|
|
176
|
+
* @public
|
|
177
|
+
* @name sap.ui.webc.main.Carousel#navigateTo
|
|
178
|
+
* @function
|
|
179
|
+
*/
|
|
180
|
+
|
|
193
181
|
return Carousel;
|
|
194
182
|
});
|
|
@@ -14,6 +14,7 @@ sap.ui.define([
|
|
|
14
14
|
"use strict";
|
|
15
15
|
|
|
16
16
|
var ValueState = coreLibrary.ValueState;
|
|
17
|
+
var WrappingType = library.WrappingType;
|
|
17
18
|
|
|
18
19
|
/**
|
|
19
20
|
* Constructor for a new <code>CheckBox</code>.
|
|
@@ -34,7 +35,7 @@ sap.ui.define([
|
|
|
34
35
|
*
|
|
35
36
|
* <h3>Usage</h3>
|
|
36
37
|
*
|
|
37
|
-
* You can define the checkbox text with via the <code>text</code> property. If the text exceeds the available width, it is truncated by default. In case you prefer text to wrap,
|
|
38
|
+
* You can define the checkbox text with via the <code>text</code> property. If the text exceeds the available width, it is truncated by default. In case you prefer text to wrap, set the <code>wrappingType</code> property to "Normal". The touchable area for toggling the <code>sap.ui.webc.main.CheckBox</code> ends where the text ends. <br>
|
|
38
39
|
* <br>
|
|
39
40
|
* You can disable the <code>sap.ui.webc.main.CheckBox</code> by setting the <code>disabled</code> property to <code>true</code>, or use the <code>sap.ui.webc.main.CheckBox</code> in read-only mode by setting the <code>readonly</code> property to <code>true</code>.
|
|
40
41
|
*
|
|
@@ -49,7 +50,7 @@ sap.ui.define([
|
|
|
49
50
|
* <br>
|
|
50
51
|
*
|
|
51
52
|
* @author SAP SE
|
|
52
|
-
* @version 1.
|
|
53
|
+
* @version 1.96.2
|
|
53
54
|
*
|
|
54
55
|
* @constructor
|
|
55
56
|
* @public
|
|
@@ -154,11 +155,15 @@ sap.ui.define([
|
|
|
154
155
|
/**
|
|
155
156
|
* Defines whether the component text wraps when there is not enough space. <br>
|
|
156
157
|
* <br>
|
|
157
|
-
*
|
|
158
|
+
* Available options are:
|
|
159
|
+
* <ul>
|
|
160
|
+
* <li><code>None</code> - The text will be truncated with an ellipsis.</li>
|
|
161
|
+
* <li><code>Normal</code> - The text will wrap. The words will not be broken based on hyphenation.</li>
|
|
162
|
+
* </ul>
|
|
158
163
|
*/
|
|
159
|
-
|
|
160
|
-
type: "
|
|
161
|
-
defaultValue:
|
|
164
|
+
wrappingType: {
|
|
165
|
+
type: "sap.ui.webc.main.WrappingType",
|
|
166
|
+
defaultValue: WrappingType.None
|
|
162
167
|
}
|
|
163
168
|
},
|
|
164
169
|
events: {
|
|
@@ -166,7 +171,9 @@ sap.ui.define([
|
|
|
166
171
|
/**
|
|
167
172
|
* Fired when the component checked state changes.
|
|
168
173
|
*/
|
|
169
|
-
change: {
|
|
174
|
+
change: {
|
|
175
|
+
parameters: {}
|
|
176
|
+
}
|
|
170
177
|
}
|
|
171
178
|
}
|
|
172
179
|
});
|
|
@@ -21,12 +21,14 @@ sap.ui.define([
|
|
|
21
21
|
* @extends sap.ui.webc.common.WebComponent
|
|
22
22
|
* @class
|
|
23
23
|
*
|
|
24
|
-
* <h3>Overview</h3> The ColorPalette provides the users with a range of predefined colors. The colors are fixed and do not change with the theme.
|
|
24
|
+
* <h3>Overview</h3> The ColorPalette provides the users with a range of predefined colors. The colors are fixed and do not change with the theme.
|
|
25
25
|
*
|
|
26
|
-
* <h3>Usage</h3>
|
|
26
|
+
* <h3>Usage</h3>
|
|
27
|
+
*
|
|
28
|
+
* The Colorpalette is meant for users that needs to select a color from a predefined set. To define the colors, use the <code>sap.ui.webc.main.ColorPaletteItem</code> component inside the default slot of the <code>sap.ui.webc.main.ColorPalette</code>.
|
|
27
29
|
*
|
|
28
30
|
* @author SAP SE
|
|
29
|
-
* @version 1.
|
|
31
|
+
* @version 1.96.2
|
|
30
32
|
*
|
|
31
33
|
* @constructor
|
|
32
34
|
* @public
|
|
@@ -39,29 +41,6 @@ sap.ui.define([
|
|
|
39
41
|
metadata: {
|
|
40
42
|
library: "sap.ui.webc.main",
|
|
41
43
|
tag: "ui5-color-palette-ui5",
|
|
42
|
-
properties: {
|
|
43
|
-
|
|
44
|
-
/**
|
|
45
|
-
* Defines whether the user can choose a custom color from a color picker <b>Note:</b> In order to use this property you need to import the following module: <code>"@ui5/webcomponents/dist/features/ColorPaletteMoreColors.js"</code>
|
|
46
|
-
*/
|
|
47
|
-
showMoreColors: {
|
|
48
|
-
type: "boolean"
|
|
49
|
-
},
|
|
50
|
-
|
|
51
|
-
/**
|
|
52
|
-
* Defines whether the user can see the last used colors in the bottom of the component
|
|
53
|
-
*/
|
|
54
|
-
showRecentColors: {
|
|
55
|
-
type: "boolean"
|
|
56
|
-
},
|
|
57
|
-
|
|
58
|
-
/**
|
|
59
|
-
* The selected color.
|
|
60
|
-
*/
|
|
61
|
-
value: {
|
|
62
|
-
type: "sap.ui.core.CSSColor"
|
|
63
|
-
}
|
|
64
|
-
},
|
|
65
44
|
defaultAggregation: "colors",
|
|
66
45
|
aggregations: {
|
|
67
46
|
|
|
@@ -78,7 +57,7 @@ sap.ui.define([
|
|
|
78
57
|
/**
|
|
79
58
|
* Fired when the user selects a color.
|
|
80
59
|
*/
|
|
81
|
-
|
|
60
|
+
itemClick: {
|
|
82
61
|
parameters: {
|
|
83
62
|
/**
|
|
84
63
|
* the selected color
|
|
@@ -35,7 +35,7 @@ sap.ui.define([
|
|
|
35
35
|
* </ul>
|
|
36
36
|
*
|
|
37
37
|
* @author SAP SE
|
|
38
|
-
* @version 1.
|
|
38
|
+
* @version 1.96.2
|
|
39
39
|
*
|
|
40
40
|
* @constructor
|
|
41
41
|
* @public
|
|
@@ -64,7 +64,9 @@ sap.ui.define([
|
|
|
64
64
|
/**
|
|
65
65
|
* Fired when the the selected color is changed
|
|
66
66
|
*/
|
|
67
|
-
change: {
|
|
67
|
+
change: {
|
|
68
|
+
parameters: {}
|
|
69
|
+
}
|
|
68
70
|
}
|
|
69
71
|
}
|
|
70
72
|
});
|
|
@@ -41,7 +41,7 @@ sap.ui.define([
|
|
|
41
41
|
* <h4>Picker</h4> If the <code>sap.ui.webc.main.ComboBox</code> is focused, you can open or close the drop-down by pressing <code>F4</code>, <code>ALT+UP</code> or <code>ALT+DOWN</code> keys. <br>
|
|
42
42
|
*
|
|
43
43
|
* @author SAP SE
|
|
44
|
-
* @version 1.
|
|
44
|
+
* @version 1.96.2
|
|
45
45
|
*
|
|
46
46
|
* @constructor
|
|
47
47
|
* @public
|
|
@@ -56,6 +56,21 @@ sap.ui.define([
|
|
|
56
56
|
tag: "ui5-combobox-ui5",
|
|
57
57
|
properties: {
|
|
58
58
|
|
|
59
|
+
/**
|
|
60
|
+
* Sets the accessible aria name of the component.
|
|
61
|
+
*/
|
|
62
|
+
accessibleName: {
|
|
63
|
+
type: "string"
|
|
64
|
+
},
|
|
65
|
+
|
|
66
|
+
/**
|
|
67
|
+
* Receives id(or many ids) of the elements that label the combo box
|
|
68
|
+
*/
|
|
69
|
+
accessibleNameRef: {
|
|
70
|
+
type: "string",
|
|
71
|
+
defaultValue: ""
|
|
72
|
+
},
|
|
73
|
+
|
|
59
74
|
/**
|
|
60
75
|
* Defines whether the component is in disabled state. <br>
|
|
61
76
|
* <br>
|
|
@@ -74,20 +89,6 @@ sap.ui.define([
|
|
|
74
89
|
defaultValue: "StartsWithPerTerm"
|
|
75
90
|
},
|
|
76
91
|
|
|
77
|
-
/**
|
|
78
|
-
* Defines the "live" value of the component. <br>
|
|
79
|
-
* <br>
|
|
80
|
-
* <b>Note:</b> The property is updated upon typing.
|
|
81
|
-
*
|
|
82
|
-
* <br>
|
|
83
|
-
* <br>
|
|
84
|
-
* <b>Note:</b> Initially the filter value is synced with value.
|
|
85
|
-
*/
|
|
86
|
-
filterValue: {
|
|
87
|
-
type: "string",
|
|
88
|
-
defaultValue: ""
|
|
89
|
-
},
|
|
90
|
-
|
|
91
92
|
/**
|
|
92
93
|
* Indicates whether a loading indicator should be shown in the picker.
|
|
93
94
|
*/
|
|
@@ -198,14 +199,18 @@ sap.ui.define([
|
|
|
198
199
|
/**
|
|
199
200
|
* Fired when the input operation has finished by pressing Enter, focusout or an item is selected.
|
|
200
201
|
*/
|
|
201
|
-
change: {
|
|
202
|
+
change: {
|
|
203
|
+
parameters: {}
|
|
204
|
+
},
|
|
202
205
|
|
|
203
206
|
/**
|
|
204
207
|
* Fired when typing in input. <br>
|
|
205
208
|
* <br>
|
|
206
209
|
* <b>Note:</b> filterValue property is updated, input is changed.
|
|
207
210
|
*/
|
|
208
|
-
input: {
|
|
211
|
+
input: {
|
|
212
|
+
parameters: {}
|
|
213
|
+
},
|
|
209
214
|
|
|
210
215
|
/**
|
|
211
216
|
* Fired when selection is changed by user interaction
|
|
@@ -0,0 +1,58 @@
|
|
|
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.ComboBoxGroupItem.
|
|
8
|
+
sap.ui.define([
|
|
9
|
+
"sap/ui/webc/common/WebComponent",
|
|
10
|
+
"./library",
|
|
11
|
+
"./thirdparty/ComboBoxGroupItem"
|
|
12
|
+
], function(WebComponent, library) {
|
|
13
|
+
"use strict";
|
|
14
|
+
|
|
15
|
+
/**
|
|
16
|
+
* Constructor for a new <code>ComboBoxGroupItem</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
|
+
* The <code>ui5-combobox-group-item</code> is type of suggestion item, that can be used to split the <code>sap.ui.webc.main.ComboBox</code> suggestions into groups.
|
|
25
|
+
*
|
|
26
|
+
* @author SAP SE
|
|
27
|
+
* @version 1.96.2
|
|
28
|
+
*
|
|
29
|
+
* @constructor
|
|
30
|
+
* @public
|
|
31
|
+
* @since 1.92.0
|
|
32
|
+
* @experimental Since 1.92.0 This control is experimental and its API might change significantly.
|
|
33
|
+
* @alias sap.ui.webc.main.ComboBoxGroupItem
|
|
34
|
+
* @implements sap.ui.webc.main.IComboBoxItem
|
|
35
|
+
* @ui5-metamodel This control/element also will be described in the UI5 (legacy) designtime metamodel
|
|
36
|
+
*/
|
|
37
|
+
var ComboBoxGroupItem = WebComponent.extend("sap.ui.webc.main.ComboBoxGroupItem", {
|
|
38
|
+
metadata: {
|
|
39
|
+
library: "sap.ui.webc.main",
|
|
40
|
+
tag: "ui5-cb-group-item-ui5",
|
|
41
|
+
interfaces: [
|
|
42
|
+
"sap.ui.webc.main.IComboBoxItem"
|
|
43
|
+
],
|
|
44
|
+
properties: {
|
|
45
|
+
|
|
46
|
+
/**
|
|
47
|
+
* Defines the text of the component.
|
|
48
|
+
*/
|
|
49
|
+
text: {
|
|
50
|
+
type: "string",
|
|
51
|
+
defaultValue: ""
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
});
|
|
56
|
+
|
|
57
|
+
return ComboBoxGroupItem;
|
|
58
|
+
});
|
|
@@ -28,7 +28,7 @@ sap.ui.define([
|
|
|
28
28
|
* The component accepts arbitrary HTML content to allow full customization.
|
|
29
29
|
*
|
|
30
30
|
* @author SAP SE
|
|
31
|
-
* @version 1.
|
|
31
|
+
* @version 1.96.2
|
|
32
32
|
*
|
|
33
33
|
* @constructor
|
|
34
34
|
* @public
|
|
@@ -89,7 +89,9 @@ sap.ui.define([
|
|
|
89
89
|
/**
|
|
90
90
|
* Fired when the user clicks on the detail button when type is <code>Detail</code>.
|
|
91
91
|
*/
|
|
92
|
-
detailClick: {
|
|
92
|
+
detailClick: {
|
|
93
|
+
parameters: {}
|
|
94
|
+
}
|
|
93
95
|
}
|
|
94
96
|
}
|
|
95
97
|
});
|