@openui5/sap.ui.webc.main 1.96.5 → 1.99.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 +26 -31
- package/THIRDPARTY.txt +15 -21
- package/package.json +3 -3
- package/src/sap/ui/webc/main/.library +1 -1
- package/src/sap/ui/webc/main/Avatar.js +5 -2
- package/src/sap/ui/webc/main/AvatarGroup.js +4 -1
- package/src/sap/ui/webc/main/Badge.js +4 -1
- package/src/sap/ui/webc/main/Breadcrumbs.js +8 -4
- package/src/sap/ui/webc/main/BreadcrumbsItem.js +6 -3
- package/src/sap/ui/webc/main/BusyIndicator.js +4 -1
- package/src/sap/ui/webc/main/Button.js +51 -3
- package/src/sap/ui/webc/main/Calendar.js +8 -4
- package/src/sap/ui/webc/main/CalendarDate.js +4 -1
- package/src/sap/ui/webc/main/Card.js +27 -1
- package/src/sap/ui/webc/main/CardHeader.js +6 -3
- package/src/sap/ui/webc/main/Carousel.js +8 -2
- package/src/sap/ui/webc/main/CheckBox.js +49 -1
- package/src/sap/ui/webc/main/ColorPalette.js +7 -4
- package/src/sap/ui/webc/main/ColorPaletteItem.js +4 -1
- package/src/sap/ui/webc/main/ColorPalettePopover.js +132 -0
- package/src/sap/ui/webc/main/ColorPicker.js +6 -3
- package/src/sap/ui/webc/main/ComboBox.js +39 -14
- package/src/sap/ui/webc/main/ComboBoxGroupItem.js +6 -3
- package/src/sap/ui/webc/main/ComboBoxItem.js +4 -1
- package/src/sap/ui/webc/main/CustomListItem.js +4 -1
- package/src/sap/ui/webc/main/DatePicker.js +24 -14
- package/src/sap/ui/webc/main/DateRangePicker.js +30 -13
- package/src/sap/ui/webc/main/DateTimePicker.js +22 -14
- package/src/sap/ui/webc/main/Dialog.js +20 -2
- package/src/sap/ui/webc/main/FileUploader.js +5 -2
- package/src/sap/ui/webc/main/GroupHeaderListItem.js +4 -1
- package/src/sap/ui/webc/main/Icon.js +20 -3
- package/src/sap/ui/webc/main/Input.js +58 -35
- package/src/sap/ui/webc/main/Label.js +30 -13
- package/src/sap/ui/webc/main/Link.js +45 -6
- package/src/sap/ui/webc/main/List.js +29 -18
- package/src/sap/ui/webc/main/MessageStrip.js +8 -3
- package/src/sap/ui/webc/main/MultiComboBox.js +15 -10
- package/src/sap/ui/webc/main/MultiComboBoxItem.js +4 -1
- package/src/sap/ui/webc/main/MultiInput.js +42 -35
- package/src/sap/ui/webc/main/Option.js +4 -1
- package/src/sap/ui/webc/main/Panel.js +10 -4
- package/src/sap/ui/webc/main/Popover.js +20 -2
- package/src/sap/ui/webc/main/ProgressIndicator.js +26 -1
- package/src/sap/ui/webc/main/RadioButton.js +41 -1
- package/src/sap/ui/webc/main/RangeSlider.js +20 -18
- package/src/sap/ui/webc/main/RatingIndicator.js +22 -5
- package/src/sap/ui/webc/main/ResponsivePopover.js +20 -2
- package/src/sap/ui/webc/main/SegmentedButton.js +33 -1
- package/src/sap/ui/webc/main/SegmentedButtonItem.js +52 -4
- package/src/sap/ui/webc/main/Select.js +28 -19
- package/src/sap/ui/webc/main/Slider.js +34 -21
- package/src/sap/ui/webc/main/SplitButton.js +156 -0
- package/src/sap/ui/webc/main/StandardListItem.js +4 -1
- package/src/sap/ui/webc/main/StepInput.js +28 -9
- package/src/sap/ui/webc/main/SuggestionGroupItem.js +6 -3
- package/src/sap/ui/webc/main/SuggestionItem.js +5 -2
- package/src/sap/ui/webc/main/Switch.js +23 -5
- package/src/sap/ui/webc/main/Tab.js +14 -3
- package/src/sap/ui/webc/main/TabContainer.js +36 -10
- package/src/sap/ui/webc/main/TabSeparator.js +4 -1
- package/src/sap/ui/webc/main/Table.js +21 -3
- package/src/sap/ui/webc/main/TableCell.js +4 -1
- package/src/sap/ui/webc/main/TableColumn.js +4 -1
- package/src/sap/ui/webc/main/TableGroupRow.js +7 -4
- package/src/sap/ui/webc/main/TableRow.js +8 -5
- package/src/sap/ui/webc/main/TextArea.js +23 -13
- package/src/sap/ui/webc/main/TimePicker.js +6 -3
- package/src/sap/ui/webc/main/Title.js +4 -1
- package/src/sap/ui/webc/main/Toast.js +4 -1
- package/src/sap/ui/webc/main/ToggleButton.js +51 -3
- package/src/sap/ui/webc/main/Token.js +5 -2
- package/src/sap/ui/webc/main/Tree.js +32 -1
- package/src/sap/ui/webc/main/TreeItem.js +20 -1
- package/src/sap/ui/webc/main/designtime/Input.designtime.js +26 -0
- package/src/sap/ui/webc/main/designtime/MultiInput.designtime.js +27 -0
- package/src/sap/ui/webc/main/designtime/RangeSlider.designtime.js +26 -0
- package/src/sap/ui/webc/main/designtime/RatingIndicator.designtime.js +26 -0
- package/src/sap/ui/webc/main/designtime/Slider.designtime.js +25 -0
- package/src/sap/ui/webc/main/designtime/library.designtime.js +12 -0
- package/src/sap/ui/webc/main/designtime/messagebundle.properties +32 -0
- package/src/sap/ui/webc/main/designtime/messagebundle_ar.properties +24 -0
- package/src/sap/ui/webc/main/designtime/messagebundle_bg.properties +24 -0
- package/src/sap/ui/webc/main/designtime/messagebundle_ca.properties +24 -0
- package/src/sap/ui/webc/main/designtime/messagebundle_cs.properties +24 -0
- package/src/sap/ui/webc/main/designtime/messagebundle_cy.properties +24 -0
- package/src/sap/ui/webc/main/designtime/messagebundle_da.properties +24 -0
- package/src/sap/ui/webc/main/designtime/messagebundle_de.properties +24 -0
- package/src/sap/ui/webc/main/designtime/messagebundle_el.properties +24 -0
- package/src/sap/ui/webc/main/designtime/messagebundle_en.properties +24 -0
- package/src/sap/ui/webc/main/designtime/messagebundle_en_GB.properties +24 -0
- package/src/sap/ui/webc/main/designtime/messagebundle_en_US_sappsd.properties +24 -0
- package/src/sap/ui/webc/main/designtime/messagebundle_en_US_saprigi.properties +24 -0
- package/src/sap/ui/webc/main/designtime/messagebundle_en_US_saptrc.properties +24 -0
- package/src/sap/ui/webc/main/designtime/messagebundle_es.properties +24 -0
- package/src/sap/ui/webc/main/designtime/messagebundle_es_MX.properties +24 -0
- package/src/sap/ui/webc/main/designtime/messagebundle_et.properties +24 -0
- package/src/sap/ui/webc/main/designtime/messagebundle_fi.properties +24 -0
- package/src/sap/ui/webc/main/designtime/messagebundle_fr.properties +24 -0
- package/src/sap/ui/webc/main/designtime/messagebundle_fr_CA.properties +24 -0
- package/src/sap/ui/webc/main/designtime/messagebundle_hi.properties +24 -0
- package/src/sap/ui/webc/main/designtime/messagebundle_hr.properties +24 -0
- package/src/sap/ui/webc/main/designtime/messagebundle_hu.properties +24 -0
- package/src/sap/ui/webc/main/designtime/messagebundle_id.properties +24 -0
- package/src/sap/ui/webc/main/designtime/messagebundle_it.properties +24 -0
- package/src/sap/ui/webc/main/designtime/messagebundle_iw.properties +24 -0
- package/src/sap/ui/webc/main/designtime/messagebundle_ja.properties +24 -0
- package/src/sap/ui/webc/main/designtime/messagebundle_kk.properties +24 -0
- package/src/sap/ui/webc/main/designtime/messagebundle_ko.properties +24 -0
- package/src/sap/ui/webc/main/designtime/messagebundle_lt.properties +24 -0
- package/src/sap/ui/webc/main/designtime/messagebundle_lv.properties +24 -0
- package/src/sap/ui/webc/main/designtime/messagebundle_ms.properties +24 -0
- package/src/sap/ui/webc/main/designtime/messagebundle_nl.properties +24 -0
- package/src/sap/ui/webc/main/designtime/messagebundle_no.properties +24 -0
- package/src/sap/ui/webc/main/designtime/messagebundle_pl.properties +24 -0
- package/src/sap/ui/webc/main/designtime/messagebundle_pt.properties +24 -0
- package/src/sap/ui/webc/main/designtime/messagebundle_pt_PT.properties +24 -0
- package/src/sap/ui/webc/main/designtime/messagebundle_ro.properties +24 -0
- package/src/sap/ui/webc/main/designtime/messagebundle_ru.properties +24 -0
- package/src/sap/ui/webc/main/designtime/messagebundle_sh.properties +24 -0
- package/src/sap/ui/webc/main/designtime/messagebundle_sk.properties +24 -0
- package/src/sap/ui/webc/main/designtime/messagebundle_sl.properties +24 -0
- package/src/sap/ui/webc/main/designtime/messagebundle_sv.properties +24 -0
- package/src/sap/ui/webc/main/designtime/messagebundle_th.properties +24 -0
- package/src/sap/ui/webc/main/designtime/messagebundle_tr.properties +24 -0
- package/src/sap/ui/webc/main/designtime/messagebundle_uk.properties +24 -0
- package/src/sap/ui/webc/main/designtime/messagebundle_vi.properties +24 -0
- package/src/sap/ui/webc/main/designtime/messagebundle_zh_CN.properties +24 -0
- package/src/sap/ui/webc/main/designtime/messagebundle_zh_TW.properties +24 -0
- package/src/sap/ui/webc/main/library.config.js +3 -0
- package/src/sap/ui/webc/main/library.js +112 -13
- package/src/sap/ui/webc/main/thirdparty/Assets.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/Avatar.js +8 -11
- package/src/sap/ui/webc/main/thirdparty/AvatarGroup.js +8 -9
- package/src/sap/ui/webc/main/thirdparty/Badge.js +11 -6
- package/src/sap/ui/webc/main/thirdparty/Breadcrumbs.js +28 -13
- package/src/sap/ui/webc/main/thirdparty/BreadcrumbsItem.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/BusyIndicator.js +4 -6
- package/src/sap/ui/webc/main/thirdparty/Button.js +15 -17
- package/src/sap/ui/webc/main/thirdparty/Calendar.js +74 -2
- package/src/sap/ui/webc/main/thirdparty/CalendarHeader.js +17 -55
- package/src/sap/ui/webc/main/thirdparty/Card.js +13 -9
- package/src/sap/ui/webc/main/thirdparty/CardHeader.js +16 -11
- package/src/sap/ui/webc/main/thirdparty/Carousel.js +9 -7
- package/src/sap/ui/webc/main/thirdparty/CheckBox.js +49 -8
- package/src/sap/ui/webc/main/thirdparty/ColorPalette.js +163 -14
- package/src/sap/ui/webc/main/thirdparty/ColorPaletteItem.js +14 -4
- package/src/sap/ui/webc/main/thirdparty/ColorPalettePopover.js +118 -0
- package/src/sap/ui/webc/main/thirdparty/ColorPicker.js +10 -1
- package/src/sap/ui/webc/main/thirdparty/ComboBox.js +209 -65
- package/src/sap/ui/webc/main/thirdparty/DateComponentBase.js +8 -11
- package/src/sap/ui/webc/main/thirdparty/DatePicker.js +9 -3
- package/src/sap/ui/webc/main/thirdparty/DateRangePicker.js +7 -1
- package/src/sap/ui/webc/main/thirdparty/DateTimePicker.js +7 -6
- package/src/sap/ui/webc/main/thirdparty/DayPicker.js +12 -4
- package/src/sap/ui/webc/main/thirdparty/Dialog.js +15 -15
- package/src/sap/ui/webc/main/thirdparty/DurationPicker.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/FileUploader.js +25 -13
- package/src/sap/ui/webc/main/thirdparty/GroupHeaderListItem.js +5 -8
- package/src/sap/ui/webc/main/thirdparty/Icon.js +23 -17
- package/src/sap/ui/webc/main/thirdparty/Input.js +191 -60
- package/src/sap/ui/webc/main/thirdparty/Link.js +7 -9
- package/src/sap/ui/webc/main/thirdparty/List.js +46 -15
- package/src/sap/ui/webc/main/thirdparty/ListItem.js +13 -8
- package/src/sap/ui/webc/main/thirdparty/MessageStrip.js +24 -12
- package/src/sap/ui/webc/main/thirdparty/MultiComboBox.js +211 -62
- package/src/sap/ui/webc/main/thirdparty/MultiComboBoxItem.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/MultiInput.js +40 -9
- package/src/sap/ui/webc/main/thirdparty/Option.js +6 -3
- package/src/sap/ui/webc/main/thirdparty/Panel.js +7 -8
- package/src/sap/ui/webc/main/thirdparty/Popover.js +91 -57
- package/src/sap/ui/webc/main/thirdparty/Popup.js +19 -26
- package/src/sap/ui/webc/main/thirdparty/ProgressIndicator.js +8 -7
- package/src/sap/ui/webc/main/thirdparty/RadioButton.js +39 -8
- package/src/sap/ui/webc/main/thirdparty/RangeSlider.js +7 -8
- package/src/sap/ui/webc/main/thirdparty/RatingIndicator.js +23 -11
- package/src/sap/ui/webc/main/thirdparty/ResponsivePopover.js +6 -23
- package/src/sap/ui/webc/main/thirdparty/SegmentedButton.js +10 -5
- package/src/sap/ui/webc/main/thirdparty/SegmentedButtonItem.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/Select.js +74 -48
- package/src/sap/ui/webc/main/thirdparty/Slider.js +2 -3
- package/src/sap/ui/webc/main/thirdparty/SliderBase.js +7 -9
- package/src/sap/ui/webc/main/thirdparty/SplitButton.js +196 -0
- package/src/sap/ui/webc/main/thirdparty/StepInput.js +8 -10
- package/src/sap/ui/webc/main/thirdparty/Switch.js +16 -7
- package/src/sap/ui/webc/main/thirdparty/Tab.js +25 -9
- package/src/sap/ui/webc/main/thirdparty/TabContainer.js +334 -95
- package/src/sap/ui/webc/main/thirdparty/TabSeparator.js +26 -3
- package/src/sap/ui/webc/main/thirdparty/Table.js +169 -10
- package/src/sap/ui/webc/main/thirdparty/TableColumn.js +0 -3
- package/src/sap/ui/webc/main/thirdparty/TableGroupRow.js +5 -3
- package/src/sap/ui/webc/main/thirdparty/TableRow.js +57 -12
- package/src/sap/ui/webc/main/thirdparty/TextArea.js +28 -14
- package/src/sap/ui/webc/main/thirdparty/TimePicker.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/TimePickerBase.js +9 -6
- 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 +4 -1
- package/src/sap/ui/webc/main/thirdparty/Token.js +13 -7
- package/src/sap/ui/webc/main/thirdparty/Tokenizer.js +106 -20
- 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 +18 -15
- package/src/sap/ui/webc/main/thirdparty/WheelSlider.js +9 -9
- 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/SplitButton.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/TabSeparatorInOverflow.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/TabSeparatorInStrip.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 +161 -44
- package/src/sap/ui/webc/main/thirdparty/generated/i18n/i18n-defaults.js +16 -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 +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/templates/BadgeTemplate.lit.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/templates/BreadcrumbsPopoverTemplate.lit.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/templates/BreadcrumbsTemplate.lit.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/templates/BusyIndicatorTemplate.lit.js +2 -2
- package/src/sap/ui/webc/main/thirdparty/generated/templates/ButtonTemplate.lit.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/templates/CalendarTemplate.lit.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/templates/CardHeaderTemplate.lit.js +2 -2
- package/src/sap/ui/webc/main/thirdparty/generated/templates/CardTemplate.lit.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/templates/CarouselTemplate.lit.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/templates/CheckBoxTemplate.lit.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/templates/ColorPaletteItemTemplate.lit.js +1 -1
- 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 +6 -5
- package/src/sap/ui/webc/main/thirdparty/generated/templates/ColorPickerTemplate.lit.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/templates/ComboBoxPopoverTemplate.lit.js +4 -4
- package/src/sap/ui/webc/main/thirdparty/generated/templates/ComboBoxTemplate.lit.js +4 -3
- package/src/sap/ui/webc/main/thirdparty/generated/templates/CustomListItemTemplate.lit.js +5 -5
- package/src/sap/ui/webc/main/thirdparty/generated/templates/DatePickerPopoverTemplate.lit.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/templates/DateTimePickerPopoverTemplate.lit.js +2 -2
- package/src/sap/ui/webc/main/thirdparty/generated/templates/DayPickerTemplate.lit.js +2 -2
- package/src/sap/ui/webc/main/thirdparty/generated/templates/DialogTemplate.lit.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/templates/FileUploaderPopoverTemplate.lit.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/generated/templates/FileUploaderTemplate.lit.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/templates/GroupHeaderListItemTemplate.lit.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/templates/InputPopoverTemplate.lit.js +6 -6
- package/src/sap/ui/webc/main/thirdparty/generated/templates/InputTemplate.lit.js +7 -5
- package/src/sap/ui/webc/main/thirdparty/generated/templates/LinkTemplate.lit.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/templates/ListItemTemplate.lit.js +5 -5
- package/src/sap/ui/webc/main/thirdparty/generated/templates/ListTemplate.lit.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/templates/MessageStripTemplate.lit.js +4 -4
- package/src/sap/ui/webc/main/thirdparty/generated/templates/MultiComboBoxPopoverTemplate.lit.js +14 -11
- package/src/sap/ui/webc/main/thirdparty/generated/templates/MultiComboBoxTemplate.lit.js +4 -3
- package/src/sap/ui/webc/main/thirdparty/generated/templates/MultiInputTemplate.lit.js +8 -6
- package/src/sap/ui/webc/main/thirdparty/generated/templates/PanelTemplate.lit.js +2 -2
- package/src/sap/ui/webc/main/thirdparty/generated/templates/PopupBlockLayerTemplate.lit.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/templates/ProgressIndicatorTemplate.lit.js +9 -5
- package/src/sap/ui/webc/main/thirdparty/generated/templates/RadioButtonTemplate.lit.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/templates/RangeSliderTemplate.lit.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/templates/RatingIndicatorTemplate.lit.js +6 -4
- package/src/sap/ui/webc/main/thirdparty/generated/templates/ResponsivePopoverTemplate.lit.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/templates/SegmentedButtonItemTemplate.lit.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/templates/SegmentedButtonTemplate.lit.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/templates/SelectPopoverTemplate.lit.js +5 -5
- package/src/sap/ui/webc/main/thirdparty/generated/templates/SelectTemplate.lit.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/templates/SliderBaseTemplate.lit.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/templates/SliderTemplate.lit.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/templates/SplitButtonTemplate.lit.js +7 -0
- package/src/sap/ui/webc/main/thirdparty/generated/templates/StandardListItemTemplate.lit.js +5 -5
- package/src/sap/ui/webc/main/thirdparty/generated/templates/StepInputTemplate.lit.js +4 -2
- package/src/sap/ui/webc/main/thirdparty/generated/templates/SuggestionListItemTemplate.lit.js +5 -5
- package/src/sap/ui/webc/main/thirdparty/generated/templates/SwitchTemplate.lit.js +4 -2
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TabContainerPopoverTemplate.lit.js +4 -2
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TabContainerTemplate.lit.js +9 -10
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TabInOverflowTemplate.lit.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TabInStripTemplate.lit.js +2 -4
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TabSeparatorInOverflowTemplate.lit.js +7 -0
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TabSeparatorInStripTemplate.lit.js +7 -0
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TableGroupRowTemplate.lit.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TableRowTemplate.lit.js +2 -2
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TableTemplate.lit.js +4 -4
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TextAreaPopoverTemplate.lit.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TimePickerPopoverTemplate.lit.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TimePickerTemplate.lit.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TimeSelectionTemplate.lit.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/templates/ToastTemplate.lit.js +2 -1
- package/src/sap/ui/webc/main/thirdparty/generated/templates/ToggleButtonTemplate.lit.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TokenTemplate.lit.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TreeListItemTemplate.lit.js +5 -5
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TreeTemplate.lit.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/templates/WheelSliderTemplate.lit.js +2 -2
- 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 +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/themes/BreadcrumbsPopover.css.js +3 -3
- 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 +3 -3
- 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/SplitButton.css.js +13 -0
- 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/TabSeparatorInOverflow.css.js +13 -0
- package/src/sap/ui/webc/main/thirdparty/generated/themes/TabSeparatorInStrip.css.js +13 -0
- 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 +3 -3
- 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-7754de1c.js → messagebundle_ar-7d8b4442.js} +17 -2
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_bg-041345aa.js → messagebundle_bg-9ad96f98.js} +17 -2
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_ca-df38eb0b.js → messagebundle_ca-f1555bd9.js} +17 -2
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_cs-51d17321.js → messagebundle_cs-ef8aa726.js} +17 -2
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_cy-cc129f0c.js → messagebundle_cy-990b67d4.js} +17 -2
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_da-bc87b599.js → messagebundle_da-10ddad8e.js} +17 -2
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_de-518b0a75.js → messagebundle_de-3df474de.js} +17 -2
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_el-9686b145.js → messagebundle_el-26906c8d.js} +17 -2
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_en-57ad19b6.js → messagebundle_en-f820b936.js} +17 -2
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_en_GB-588d53e3.js → messagebundle_en_GB-2d06b0a2.js} +17 -2
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_en_US_sappsd-e370df7b.js → messagebundle_en_US_sappsd-5a02ac90.js} +17 -2
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_en_US_saprigi-adf0ddb3.js → messagebundle_en_US_saprigi-789390fa.js} +20 -2
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_en_US_saptrc-261422e2.js → messagebundle_en_US_saptrc-b8adcdb7.js} +17 -2
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_es-ec258b44.js → messagebundle_es-fb48a8d9.js} +17 -2
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_es_MX-5f113e73.js → messagebundle_es_MX-1649847d.js} +18 -3
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_et-901c732b.js → messagebundle_et-21441666.js} +17 -2
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_fi-0a2a6323.js → messagebundle_fi-a7a6ed50.js} +18 -3
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_fr-5df8899a.js → messagebundle_fr-7d25aa37.js} +17 -2
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_fr_CA-0de6a568.js → messagebundle_fr_CA-f0885bcd.js} +17 -2
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_hi-13e67957.js → messagebundle_hi-4ff3dc19.js} +17 -2
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_hr-93fbc1d1.js → messagebundle_hr-27ea5966.js} +17 -2
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_hu-dd94c35e.js → messagebundle_hu-4e7efab2.js} +17 -2
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_it-0c46ce25.js → messagebundle_it-05136e9a.js} +17 -2
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_iw-946df0a2.js → messagebundle_iw-e57af9b5.js} +17 -2
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_ja-9cb333bb.js → messagebundle_ja-548e66ac.js} +19 -4
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_kk-239d7820.js → messagebundle_kk-9a532b4c.js} +17 -2
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_ko-6f09e984.js → messagebundle_ko-85246117.js} +17 -2
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_lt-2d4f9935.js → messagebundle_lt-fd1ed9a8.js} +17 -2
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_lv-d73bf0c0.js → messagebundle_lv-528ee0b5.js} +17 -2
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_ms-9b4b2929.js → messagebundle_ms-ab977639.js} +17 -2
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_nl-55193168.js → messagebundle_nl-6ef0aca9.js} +17 -2
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_no-7f4a6832.js → messagebundle_no-598c70b3.js} +17 -2
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_pl-89c36a34.js → messagebundle_pl-3c6bd3f7.js} +17 -2
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_pt-b87f9645.js → messagebundle_pt-a38c9a95.js} +17 -2
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_pt_PT-0e8230b0.js → messagebundle_pt_PT-6216e41a.js} +17 -2
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_ro-83e7f44d.js → messagebundle_ro-4efbaf89.js} +17 -2
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_ru-befd37d0.js → messagebundle_ru-c8cc395e.js} +17 -2
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_sh-4edec182.js → messagebundle_sh-a18343ab.js} +17 -2
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_sk-29160489.js → messagebundle_sk-cbb7b742.js} +17 -2
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_sl-fd9ba370.js → messagebundle_sl-39b012e5.js} +17 -2
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_sv-57bfda52.js → messagebundle_sv-68d03f9d.js} +17 -2
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_th-184c45a0.js → messagebundle_th-e0f152c1.js} +16 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_tr-d5781fbb.js → messagebundle_tr-10848533.js} +17 -2
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_uk-e49bb47f.js → messagebundle_uk-64f282f3.js} +17 -2
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_vi-ce27847a.js → messagebundle_vi-c6d60018.js} +17 -2
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_zh_CN-bdbfb1bd.js → messagebundle_zh_CN-3be28696.js} +17 -2
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_zh_TW-ca1de535.js → messagebundle_zh_TW-229e0d2b.js} +16 -1
- package/src/sap/ui/webc/main/thirdparty/parameters-bundle.css-87f538cb.js +13 -0
- package/src/sap/ui/webc/main/thirdparty/parameters-bundle.css-91761a3a.js +13 -0
- package/src/sap/ui/webc/main/thirdparty/parameters-bundle.css-9a20ee88.js +13 -0
- package/src/sap/ui/webc/main/thirdparty/parameters-bundle.css-ae75ba99.js +13 -0
- package/src/sap/ui/webc/main/thirdparty/parameters-bundle.css-b27de009.js +13 -0
- package/src/sap/ui/webc/main/thirdparty/parameters-bundle.css-ba83be15.js +13 -0
- package/src/sap/ui/webc/main/thirdparty/parameters-bundle.css-c6c72cae.js +13 -0
- package/src/sap/ui/webc/main/thirdparty/parameters-bundle.css-dc4174de.js +13 -0
- package/src/sap/ui/webc/main/thirdparty/parameters-bundle.css-dd344116.js +13 -0
- package/src/sap/ui/webc/main/thirdparty/types/HasPopup.js +23 -0
- package/src/sap/ui/webc/main/thirdparty/types/TabsOverflowMode.js +20 -0
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TabSeparatorTemplate.lit.js +0 -7
- package/src/sap/ui/webc/main/thirdparty/parameters-bundle.css-09f8e92d.js +0 -9
- package/src/sap/ui/webc/main/thirdparty/parameters-bundle.css-19666884.js +0 -9
- package/src/sap/ui/webc/main/thirdparty/parameters-bundle.css-8e7c6ad9.js +0 -9
- package/src/sap/ui/webc/main/thirdparty/parameters-bundle.css-cb713657.js +0 -9
- package/src/sap/ui/webc/main/thirdparty/parameters-bundle.css-dd8f2f47.js +0 -9
- package/src/sap/ui/webc/main/thirdparty/parameters-bundle.css-e3a31f8e.js +0 -9
- package/src/sap/ui/webc/main/thirdparty/parameters-bundle.css-e44b2b84.js +0 -9
|
@@ -38,12 +38,12 @@ sap.ui.define([
|
|
|
38
38
|
* </ul>
|
|
39
39
|
*
|
|
40
40
|
* @author SAP SE
|
|
41
|
-
* @version 1.
|
|
41
|
+
* @version 1.99.0
|
|
42
42
|
*
|
|
43
43
|
* @constructor
|
|
44
44
|
* @public
|
|
45
|
-
* @since 1.
|
|
46
|
-
* @experimental Since 1.
|
|
45
|
+
* @since 1.95.0
|
|
46
|
+
* @experimental Since 1.95.0 This control is experimental and its API might change significantly.
|
|
47
47
|
* @alias sap.ui.webc.main.CardHeader
|
|
48
48
|
* @ui5-metamodel This control/element also will be described in the UI5 (legacy) designtime metamodel
|
|
49
49
|
*/
|
|
@@ -123,5 +123,8 @@ sap.ui.define([
|
|
|
123
123
|
}
|
|
124
124
|
});
|
|
125
125
|
|
|
126
|
+
/* CUSTOM CODE START */
|
|
127
|
+
/* CUSTOM CODE END */
|
|
128
|
+
|
|
126
129
|
return CardHeader;
|
|
127
130
|
});
|
|
@@ -48,7 +48,10 @@ sap.ui.define([
|
|
|
48
48
|
* <li>The items you want to display are uniform and very similar.</li>
|
|
49
49
|
* </ul>
|
|
50
50
|
*
|
|
51
|
-
* <h3>Keyboard Handling</h3>
|
|
51
|
+
* <h3>Keyboard Handling</h3>
|
|
52
|
+
*
|
|
53
|
+
* <h4>Basic Navigation</h4> When the <code>sap.ui.webc.main.Carousel</code> is focused the user can navigate between the items with the following keyboard shortcuts: <br>
|
|
54
|
+
*
|
|
52
55
|
*
|
|
53
56
|
*
|
|
54
57
|
*
|
|
@@ -58,7 +61,7 @@ sap.ui.define([
|
|
|
58
61
|
* </ul>
|
|
59
62
|
*
|
|
60
63
|
* @author SAP SE
|
|
61
|
-
* @version 1.
|
|
64
|
+
* @version 1.99.0
|
|
62
65
|
*
|
|
63
66
|
* @constructor
|
|
64
67
|
* @public
|
|
@@ -178,5 +181,8 @@ sap.ui.define([
|
|
|
178
181
|
* @function
|
|
179
182
|
*/
|
|
180
183
|
|
|
184
|
+
/* CUSTOM CODE START */
|
|
185
|
+
/* CUSTOM CODE END */
|
|
186
|
+
|
|
181
187
|
return Carousel;
|
|
182
188
|
});
|
|
@@ -50,21 +50,33 @@ sap.ui.define([
|
|
|
50
50
|
* <br>
|
|
51
51
|
*
|
|
52
52
|
* @author SAP SE
|
|
53
|
-
* @version 1.
|
|
53
|
+
* @version 1.99.0
|
|
54
54
|
*
|
|
55
55
|
* @constructor
|
|
56
56
|
* @public
|
|
57
57
|
* @since 1.92.0
|
|
58
58
|
* @experimental Since 1.92.0 This control is experimental and its API might change significantly.
|
|
59
59
|
* @alias sap.ui.webc.main.CheckBox
|
|
60
|
+
* @implements sap.ui.core.IFormContent
|
|
60
61
|
* @ui5-metamodel This control/element also will be described in the UI5 (legacy) designtime metamodel
|
|
61
62
|
*/
|
|
62
63
|
var CheckBox = WebComponent.extend("sap.ui.webc.main.CheckBox", {
|
|
63
64
|
metadata: {
|
|
64
65
|
library: "sap.ui.webc.main",
|
|
65
66
|
tag: "ui5-checkbox-ui5",
|
|
67
|
+
interfaces: [
|
|
68
|
+
"sap.ui.core.IFormContent"
|
|
69
|
+
],
|
|
66
70
|
properties: {
|
|
67
71
|
|
|
72
|
+
/**
|
|
73
|
+
* Sets the accessible aria name of the component.
|
|
74
|
+
*/
|
|
75
|
+
accessibleName: {
|
|
76
|
+
type: "string",
|
|
77
|
+
defaultValue: ""
|
|
78
|
+
},
|
|
79
|
+
|
|
68
80
|
/**
|
|
69
81
|
* Defines if the component is checked. <br>
|
|
70
82
|
* <br>
|
|
@@ -152,6 +164,15 @@ sap.ui.define([
|
|
|
152
164
|
defaultValue: ValueState.None
|
|
153
165
|
},
|
|
154
166
|
|
|
167
|
+
/**
|
|
168
|
+
* Defines the width of the control
|
|
169
|
+
*/
|
|
170
|
+
width: {
|
|
171
|
+
type: "sap.ui.core.CSSSize",
|
|
172
|
+
defaultValue: null,
|
|
173
|
+
mapping: "style"
|
|
174
|
+
},
|
|
175
|
+
|
|
155
176
|
/**
|
|
156
177
|
* Defines whether the component text wraps when there is not enough space. <br>
|
|
157
178
|
* <br>
|
|
@@ -166,6 +187,21 @@ sap.ui.define([
|
|
|
166
187
|
defaultValue: WrappingType.None
|
|
167
188
|
}
|
|
168
189
|
},
|
|
190
|
+
associations: {
|
|
191
|
+
|
|
192
|
+
/**
|
|
193
|
+
* Receives id(or many ids) of the controls that label this control.
|
|
194
|
+
*/
|
|
195
|
+
ariaLabelledBy: {
|
|
196
|
+
type: "sap.ui.core.Control",
|
|
197
|
+
multiple: true,
|
|
198
|
+
mapping: {
|
|
199
|
+
type: "property",
|
|
200
|
+
to: "accessibleNameRef",
|
|
201
|
+
formatter: "_getAriaLabelledByForRendering"
|
|
202
|
+
}
|
|
203
|
+
}
|
|
204
|
+
},
|
|
169
205
|
events: {
|
|
170
206
|
|
|
171
207
|
/**
|
|
@@ -178,5 +214,17 @@ sap.ui.define([
|
|
|
178
214
|
}
|
|
179
215
|
});
|
|
180
216
|
|
|
217
|
+
/* CUSTOM CODE START */
|
|
218
|
+
|
|
219
|
+
/**
|
|
220
|
+
* Checkbox without label must not be stretched in Form.
|
|
221
|
+
* @returns {boolean} True if the <code>Form</code> should not adjust the width of the CheckBox component wrapper
|
|
222
|
+
*/
|
|
223
|
+
CheckBox.prototype.getFormDoNotAdjustWidth = function() {
|
|
224
|
+
return this.getText() ? false : true;
|
|
225
|
+
};
|
|
226
|
+
|
|
227
|
+
/* CUSTOM CODE END */
|
|
228
|
+
|
|
181
229
|
return CheckBox;
|
|
182
230
|
});
|
|
@@ -21,14 +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 <code>sap.ui.webc.main.ColorPalette</code> provides the users with a range of predefined colors. The colors are fixed and do not change with the theme.
|
|
25
25
|
*
|
|
26
26
|
* <h3>Usage</h3>
|
|
27
27
|
*
|
|
28
|
-
* The
|
|
28
|
+
* The <code>sap.ui.webc.main.ColorPalette</code> is meant for users that need 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>.
|
|
29
29
|
*
|
|
30
30
|
* @author SAP SE
|
|
31
|
-
* @version 1.
|
|
31
|
+
* @version 1.99.0
|
|
32
32
|
*
|
|
33
33
|
* @constructor
|
|
34
34
|
* @public
|
|
@@ -45,7 +45,7 @@ sap.ui.define([
|
|
|
45
45
|
aggregations: {
|
|
46
46
|
|
|
47
47
|
/**
|
|
48
|
-
* Defines the <code>sap.ui.webc.main.ColorPaletteItem</code>
|
|
48
|
+
* Defines the <code>sap.ui.webc.main.ColorPaletteItem</code> elements.
|
|
49
49
|
*/
|
|
50
50
|
colors: {
|
|
51
51
|
type: "sap.ui.webc.main.IColorPaletteItem",
|
|
@@ -71,5 +71,8 @@ sap.ui.define([
|
|
|
71
71
|
}
|
|
72
72
|
});
|
|
73
73
|
|
|
74
|
+
/* CUSTOM CODE START */
|
|
75
|
+
/* CUSTOM CODE END */
|
|
76
|
+
|
|
74
77
|
return ColorPalette;
|
|
75
78
|
});
|
|
@@ -26,7 +26,7 @@ sap.ui.define([
|
|
|
26
26
|
* The <code>sap.ui.webc.main.ColorPaletteItem</code> component represents a color in the the <code>sap.ui.webc.main.ColorPalette</code>.
|
|
27
27
|
*
|
|
28
28
|
* @author SAP SE
|
|
29
|
-
* @version 1.
|
|
29
|
+
* @version 1.99.0
|
|
30
30
|
*
|
|
31
31
|
* @constructor
|
|
32
32
|
* @public
|
|
@@ -57,5 +57,8 @@ sap.ui.define([
|
|
|
57
57
|
}
|
|
58
58
|
});
|
|
59
59
|
|
|
60
|
+
/* CUSTOM CODE START */
|
|
61
|
+
/* CUSTOM CODE END */
|
|
62
|
+
|
|
60
63
|
return ColorPaletteItem;
|
|
61
64
|
});
|
|
@@ -0,0 +1,132 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* OpenUI5
|
|
3
|
+
* (c) Copyright 2009-2022 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.ColorPalettePopover.
|
|
8
|
+
sap.ui.define([
|
|
9
|
+
"sap/ui/webc/common/WebComponent",
|
|
10
|
+
"./library",
|
|
11
|
+
"./thirdparty/ColorPalettePopover"
|
|
12
|
+
], function(WebComponent, library) {
|
|
13
|
+
"use strict";
|
|
14
|
+
|
|
15
|
+
/**
|
|
16
|
+
* Constructor for a new <code>ColorPalettePopover</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> Represents a predefined range of colors for easier selection.
|
|
25
|
+
*
|
|
26
|
+
* Overview The ColorPalettePopover provides the users with a slot to predefine colors.
|
|
27
|
+
*
|
|
28
|
+
* You can customize them with the use of the colors property. You can specify a defaultColor and display a "Default color" button for the user to choose directly. You can display a "More colors..." button that opens an additional color picker for the user to choose specific colors that are not present in the predefined range.
|
|
29
|
+
*
|
|
30
|
+
* <h3>Usage</h3>
|
|
31
|
+
*
|
|
32
|
+
* The palette is intended for users, who don't want to check and remember the different values of the colors and spend large amount of time to configure the right color through the color picker.
|
|
33
|
+
*
|
|
34
|
+
* @author SAP SE
|
|
35
|
+
* @version 1.99.0
|
|
36
|
+
*
|
|
37
|
+
* @constructor
|
|
38
|
+
* @public
|
|
39
|
+
* @since 1.97.0
|
|
40
|
+
* @experimental Since 1.97.0 This control is experimental and its API might change significantly.
|
|
41
|
+
* @alias sap.ui.webc.main.ColorPalettePopover
|
|
42
|
+
* @ui5-metamodel This control/element also will be described in the UI5 (legacy) designtime metamodel
|
|
43
|
+
*/
|
|
44
|
+
var ColorPalettePopover = WebComponent.extend("sap.ui.webc.main.ColorPalettePopover", {
|
|
45
|
+
metadata: {
|
|
46
|
+
library: "sap.ui.webc.main",
|
|
47
|
+
tag: "ui5-color-palette-popover-ui5",
|
|
48
|
+
properties: {
|
|
49
|
+
|
|
50
|
+
/**
|
|
51
|
+
* Defines the default color of the component. <b>Note:</b> The default color should be a part of the ColorPalette colors</code>
|
|
52
|
+
*/
|
|
53
|
+
defaultColor: {
|
|
54
|
+
type: "sap.ui.core.CSSColor"
|
|
55
|
+
},
|
|
56
|
+
|
|
57
|
+
/**
|
|
58
|
+
* Defines whether the user can choose the default color from a button.
|
|
59
|
+
*/
|
|
60
|
+
showDefaultColor: {
|
|
61
|
+
type: "boolean",
|
|
62
|
+
defaultValue: false
|
|
63
|
+
},
|
|
64
|
+
|
|
65
|
+
/**
|
|
66
|
+
* Defines whether the user can choose a custom color from a component. <b>Note:</b> In order to use this property you need to import the following module: <code>"@ui5/webcomponents/dist/features/ColorPaletteMoreColors.js"</code>
|
|
67
|
+
*/
|
|
68
|
+
showMoreColors: {
|
|
69
|
+
type: "boolean",
|
|
70
|
+
defaultValue: false
|
|
71
|
+
},
|
|
72
|
+
|
|
73
|
+
/**
|
|
74
|
+
* Defines whether the user can see the last used colors in the bottom of the component
|
|
75
|
+
*/
|
|
76
|
+
showRecentColors: {
|
|
77
|
+
type: "boolean",
|
|
78
|
+
defaultValue: false
|
|
79
|
+
}
|
|
80
|
+
},
|
|
81
|
+
defaultAggregation: "content",
|
|
82
|
+
aggregations: {
|
|
83
|
+
|
|
84
|
+
/**
|
|
85
|
+
* Defines the content of the component.
|
|
86
|
+
*/
|
|
87
|
+
content: {
|
|
88
|
+
type: "sap.ui.core.Control",
|
|
89
|
+
multiple: true
|
|
90
|
+
}
|
|
91
|
+
},
|
|
92
|
+
events: {
|
|
93
|
+
|
|
94
|
+
/**
|
|
95
|
+
* Fired when the user selects a color.
|
|
96
|
+
*/
|
|
97
|
+
itemClick: {
|
|
98
|
+
parameters: {
|
|
99
|
+
/**
|
|
100
|
+
* the selected color
|
|
101
|
+
*/
|
|
102
|
+
color: {
|
|
103
|
+
type: "string"
|
|
104
|
+
}
|
|
105
|
+
}
|
|
106
|
+
}
|
|
107
|
+
},
|
|
108
|
+
methods: ["openPopover", "showAt"]
|
|
109
|
+
}
|
|
110
|
+
});
|
|
111
|
+
|
|
112
|
+
/**
|
|
113
|
+
* Shows the ColorPalettePopover. <b>Note:</b> The method is deprecated and will be removed in future, use <code>showAt</code> instead.
|
|
114
|
+
* @param {HTMLElement} opener the element that the popover is shown at
|
|
115
|
+
* @public
|
|
116
|
+
* @name sap.ui.webc.main.ColorPalettePopover#openPopover
|
|
117
|
+
* @function
|
|
118
|
+
*/
|
|
119
|
+
|
|
120
|
+
/**
|
|
121
|
+
* Shows the ColorPalettePopover.
|
|
122
|
+
* @param {HTMLElement} opener the element that the popover is shown at
|
|
123
|
+
* @public
|
|
124
|
+
* @name sap.ui.webc.main.ColorPalettePopover#showAt
|
|
125
|
+
* @function
|
|
126
|
+
*/
|
|
127
|
+
|
|
128
|
+
/* CUSTOM CODE START */
|
|
129
|
+
/* CUSTOM CODE END */
|
|
130
|
+
|
|
131
|
+
return ColorPalettePopover;
|
|
132
|
+
});
|
|
@@ -21,7 +21,7 @@ sap.ui.define([
|
|
|
21
21
|
* @extends sap.ui.webc.common.WebComponent
|
|
22
22
|
* @class
|
|
23
23
|
*
|
|
24
|
-
* <h3>Overview</h3> The ColorPicker allows users to choose any color and provides different input options for selecting colors.
|
|
24
|
+
* <h3>Overview</h3> The <code>sap.ui.webc.main.ColorPicker</code> allows users to choose any color and provides different input options for selecting colors.
|
|
25
25
|
*
|
|
26
26
|
* <h3>Usage</h3>
|
|
27
27
|
*
|
|
@@ -35,7 +35,7 @@ sap.ui.define([
|
|
|
35
35
|
* </ul>
|
|
36
36
|
*
|
|
37
37
|
* @author SAP SE
|
|
38
|
-
* @version 1.
|
|
38
|
+
* @version 1.99.0
|
|
39
39
|
*
|
|
40
40
|
* @constructor
|
|
41
41
|
* @public
|
|
@@ -56,7 +56,7 @@ sap.ui.define([
|
|
|
56
56
|
* <b>Note</b>: use HEX, RGB, RGBA, HSV formats or a CSS color name when modifying this property.
|
|
57
57
|
*/
|
|
58
58
|
color: {
|
|
59
|
-
type: "
|
|
59
|
+
type: "sap.ui.core.CSSColor"
|
|
60
60
|
}
|
|
61
61
|
},
|
|
62
62
|
events: {
|
|
@@ -71,5 +71,8 @@ sap.ui.define([
|
|
|
71
71
|
}
|
|
72
72
|
});
|
|
73
73
|
|
|
74
|
+
/* CUSTOM CODE START */
|
|
75
|
+
/* CUSTOM CODE END */
|
|
76
|
+
|
|
74
77
|
return ColorPicker;
|
|
75
78
|
});
|
|
@@ -28,20 +28,35 @@ sap.ui.define([
|
|
|
28
28
|
*
|
|
29
29
|
* The <code>sap.ui.webc.main.ComboBox</code> component represents a drop-down menu with a list of the available options and a text input field to narrow down the options.
|
|
30
30
|
*
|
|
31
|
-
* It is commonly used to enable users to select
|
|
31
|
+
* It is commonly used to enable users to select an option from a predefined list.
|
|
32
|
+
*
|
|
33
|
+
* <h3>Structure</h3> The <code>sap.ui.webc.main.ComboBox</code> consists of the following elements:
|
|
32
34
|
* <ul>
|
|
33
35
|
* <li> Input field - displays the selected option or a custom user entry. Users can type to narrow down the list or enter their own value.
|
|
34
36
|
* <li> Drop-down arrow - expands\collapses the option list.</li>
|
|
35
37
|
* <li> Option list - the list of available options.</li>
|
|
36
38
|
* </ul>
|
|
39
|
+
*
|
|
37
40
|
* <h3>Keyboard Handling</h3>
|
|
38
41
|
*
|
|
39
|
-
* The <code>sap.ui.webc.main.ComboBox</code> provides advanced keyboard handling.
|
|
42
|
+
* The <code>sap.ui.webc.main.ComboBox</code> provides advanced keyboard handling. <br>
|
|
43
|
+
*
|
|
40
44
|
*
|
|
41
|
-
*
|
|
45
|
+
*
|
|
46
|
+
* <ul>
|
|
47
|
+
* <li>[F4], [ALT]+[UP], or [ALT]+[DOWN] - Toggles the picker.</li>
|
|
48
|
+
* <li>[ESC] - Closes the picker, if open. If closed, cancels changes and reverts the typed in value.</li>
|
|
49
|
+
* <li>[ENTER] or [RETURN] - If picker is open, takes over the currently selected item and closes it.</li>
|
|
50
|
+
* <li>[DOWN] - Selects the next matching item in the picker.</li>
|
|
51
|
+
* <li>[UP] - Selects the previous matching item in the picker.</li>
|
|
52
|
+
* <li>[PAGEDOWN] - Moves selection down by page size (10 items by default).</li>
|
|
53
|
+
* <li>[PAGEUP] - Moves selection up by page size (10 items by default). </li>
|
|
54
|
+
* <li>[HOME] - If focus is in the ComboBox, moves cursor at the beginning of text. If focus is in the picker, selects the first item.</li>
|
|
55
|
+
* <li>[END] - If focus is in the ComboBox, moves cursor at the end of text. If focus is in the picker, selects the last item.</li>
|
|
56
|
+
* </ul>
|
|
42
57
|
*
|
|
43
58
|
* @author SAP SE
|
|
44
|
-
* @version 1.
|
|
59
|
+
* @version 1.99.0
|
|
45
60
|
*
|
|
46
61
|
* @constructor
|
|
47
62
|
* @public
|
|
@@ -63,18 +78,10 @@ sap.ui.define([
|
|
|
63
78
|
type: "string"
|
|
64
79
|
},
|
|
65
80
|
|
|
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
|
-
|
|
74
81
|
/**
|
|
75
82
|
* Defines whether the component is in disabled state. <br>
|
|
76
83
|
* <br>
|
|
77
|
-
* <b>Note:</b> A disabled component is completely
|
|
84
|
+
* <b>Note:</b> A disabled component is completely noninteractive.
|
|
78
85
|
*/
|
|
79
86
|
disabled: {
|
|
80
87
|
type: "boolean",
|
|
@@ -106,7 +113,7 @@ sap.ui.define([
|
|
|
106
113
|
},
|
|
107
114
|
|
|
108
115
|
/**
|
|
109
|
-
* Defines whether the component is
|
|
116
|
+
* Defines whether the component is read-only. <br>
|
|
110
117
|
* <br>
|
|
111
118
|
* <b>Note:</b> A read-only component is not editable, but still provides visual feedback upon user interaction.
|
|
112
119
|
*/
|
|
@@ -194,6 +201,21 @@ sap.ui.define([
|
|
|
194
201
|
multiple: true
|
|
195
202
|
}
|
|
196
203
|
},
|
|
204
|
+
associations: {
|
|
205
|
+
|
|
206
|
+
/**
|
|
207
|
+
* Receives id(or many ids) of the controls that label this control.
|
|
208
|
+
*/
|
|
209
|
+
ariaLabelledBy: {
|
|
210
|
+
type: "sap.ui.core.Control",
|
|
211
|
+
multiple: true,
|
|
212
|
+
mapping: {
|
|
213
|
+
type: "property",
|
|
214
|
+
to: "accessibleNameRef",
|
|
215
|
+
formatter: "_getAriaLabelledByForRendering"
|
|
216
|
+
}
|
|
217
|
+
}
|
|
218
|
+
},
|
|
197
219
|
events: {
|
|
198
220
|
|
|
199
221
|
/**
|
|
@@ -229,5 +251,8 @@ sap.ui.define([
|
|
|
229
251
|
}
|
|
230
252
|
});
|
|
231
253
|
|
|
254
|
+
/* CUSTOM CODE START */
|
|
255
|
+
/* CUSTOM CODE END */
|
|
256
|
+
|
|
232
257
|
return ComboBox;
|
|
233
258
|
});
|
|
@@ -24,12 +24,12 @@ sap.ui.define([
|
|
|
24
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
25
|
*
|
|
26
26
|
* @author SAP SE
|
|
27
|
-
* @version 1.
|
|
27
|
+
* @version 1.99.0
|
|
28
28
|
*
|
|
29
29
|
* @constructor
|
|
30
30
|
* @public
|
|
31
|
-
* @since 1.
|
|
32
|
-
* @experimental Since 1.
|
|
31
|
+
* @since 1.95.0
|
|
32
|
+
* @experimental Since 1.95.0 This control is experimental and its API might change significantly.
|
|
33
33
|
* @alias sap.ui.webc.main.ComboBoxGroupItem
|
|
34
34
|
* @implements sap.ui.webc.main.IComboBoxItem
|
|
35
35
|
* @ui5-metamodel This control/element also will be described in the UI5 (legacy) designtime metamodel
|
|
@@ -54,5 +54,8 @@ sap.ui.define([
|
|
|
54
54
|
}
|
|
55
55
|
});
|
|
56
56
|
|
|
57
|
+
/* CUSTOM CODE START */
|
|
58
|
+
/* CUSTOM CODE END */
|
|
59
|
+
|
|
57
60
|
return ComboBoxGroupItem;
|
|
58
61
|
});
|
|
@@ -24,7 +24,7 @@ sap.ui.define([
|
|
|
24
24
|
* The <code>sap.ui.webc.main.ComboBoxItem</code> represents the item for a <code>sap.ui.webc.main.ComboBox</code>.
|
|
25
25
|
*
|
|
26
26
|
* @author SAP SE
|
|
27
|
-
* @version 1.
|
|
27
|
+
* @version 1.99.0
|
|
28
28
|
*
|
|
29
29
|
* @constructor
|
|
30
30
|
* @public
|
|
@@ -62,5 +62,8 @@ sap.ui.define([
|
|
|
62
62
|
}
|
|
63
63
|
});
|
|
64
64
|
|
|
65
|
+
/* CUSTOM CODE START */
|
|
66
|
+
/* CUSTOM CODE END */
|
|
67
|
+
|
|
65
68
|
return ComboBoxItem;
|
|
66
69
|
});
|
|
@@ -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.99.0
|
|
32
32
|
*
|
|
33
33
|
* @constructor
|
|
34
34
|
* @public
|
|
@@ -96,5 +96,8 @@ sap.ui.define([
|
|
|
96
96
|
}
|
|
97
97
|
});
|
|
98
98
|
|
|
99
|
+
/* CUSTOM CODE START */
|
|
100
|
+
/* CUSTOM CODE END */
|
|
101
|
+
|
|
99
102
|
return CustomListItem;
|
|
100
103
|
});
|
|
@@ -37,7 +37,7 @@ sap.ui.define([
|
|
|
37
37
|
* <li>Typing it in directly in the input field</li>
|
|
38
38
|
* </ul> <br>
|
|
39
39
|
* <br>
|
|
40
|
-
* When the user makes an entry and
|
|
40
|
+
* When the user makes an entry and presses the enter key, the calendar shows the corresponding date. When the user directly triggers the calendar display, the actual date is displayed.
|
|
41
41
|
*
|
|
42
42
|
* <h3>Formatting</h3>
|
|
43
43
|
*
|
|
@@ -50,7 +50,7 @@ sap.ui.define([
|
|
|
50
50
|
* <h3>Keyboard Handling</h3> The <code>sap.ui.webc.main.DatePicker</code> provides advanced keyboard handling. If the <code>sap.ui.webc.main.DatePicker</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. Once the drop-down is opened, you can use the <code>UP</code>, <code>DOWN</code>, <code>LEFT</code>, <code>RIGHT</code> arrow keys to navigate through the dates and select one by pressing the <code>Space</code> or <code>Enter</code> keys. Moreover you can use TAB to reach the buttons for changing month and year. <br>
|
|
51
51
|
*
|
|
52
52
|
*
|
|
53
|
-
* If the <code>sap.ui.webc.main.DatePicker</code> is focused and
|
|
53
|
+
* If the <code>sap.ui.webc.main.DatePicker</code> input field is focused and its corresponding picker dialog is not opened, then users can increment or decrement the date referenced by <code>dateValue</code> property by using the following shortcuts: <br>
|
|
54
54
|
*
|
|
55
55
|
* <ul>
|
|
56
56
|
* <li>[PAGEDOWN] - Decrements the corresponding day of the month by one</li>
|
|
@@ -71,10 +71,10 @@ sap.ui.define([
|
|
|
71
71
|
* {
|
|
72
72
|
* "calendarType": "Japanese"
|
|
73
73
|
* }
|
|
74
|
-
* </script>
|
|
74
|
+
* </script></code></pre>
|
|
75
75
|
*
|
|
76
76
|
* @author SAP SE
|
|
77
|
-
* @version 1.
|
|
77
|
+
* @version 1.99.0
|
|
78
78
|
*
|
|
79
79
|
* @constructor
|
|
80
80
|
* @public
|
|
@@ -96,14 +96,6 @@ sap.ui.define([
|
|
|
96
96
|
type: "string"
|
|
97
97
|
},
|
|
98
98
|
|
|
99
|
-
/**
|
|
100
|
-
* Receives id(or many ids) of the elements that label the component.
|
|
101
|
-
*/
|
|
102
|
-
accessibleNameRef: {
|
|
103
|
-
type: "string",
|
|
104
|
-
defaultValue: ""
|
|
105
|
-
},
|
|
106
|
-
|
|
107
99
|
/**
|
|
108
100
|
* Determines whether the component is displayed as disabled.
|
|
109
101
|
*/
|
|
@@ -125,7 +117,7 @@ sap.ui.define([
|
|
|
125
117
|
* <br>
|
|
126
118
|
*
|
|
127
119
|
*
|
|
128
|
-
* <b>Note
|
|
120
|
+
* <b>Note:</b> For calendars other than Gregorian, the week numbers are not displayed regardless of what is set.
|
|
129
121
|
*/
|
|
130
122
|
hideWeekNumbers: {
|
|
131
123
|
type: "boolean",
|
|
@@ -141,7 +133,7 @@ sap.ui.define([
|
|
|
141
133
|
},
|
|
142
134
|
|
|
143
135
|
/**
|
|
144
|
-
* Determines the
|
|
136
|
+
* Determines the minimum date available for selection.
|
|
145
137
|
*/
|
|
146
138
|
minDate: {
|
|
147
139
|
type: "string",
|
|
@@ -255,6 +247,21 @@ sap.ui.define([
|
|
|
255
247
|
mapping: "style"
|
|
256
248
|
}
|
|
257
249
|
},
|
|
250
|
+
associations: {
|
|
251
|
+
|
|
252
|
+
/**
|
|
253
|
+
* Receives id(or many ids) of the controls that label this control.
|
|
254
|
+
*/
|
|
255
|
+
ariaLabelledBy: {
|
|
256
|
+
type: "sap.ui.core.Control",
|
|
257
|
+
multiple: true,
|
|
258
|
+
mapping: {
|
|
259
|
+
type: "property",
|
|
260
|
+
to: "accessibleNameRef",
|
|
261
|
+
formatter: "_getAriaLabelledByForRendering"
|
|
262
|
+
}
|
|
263
|
+
}
|
|
264
|
+
},
|
|
258
265
|
events: {
|
|
259
266
|
|
|
260
267
|
/**
|
|
@@ -358,5 +365,8 @@ sap.ui.define([
|
|
|
358
365
|
* @function
|
|
359
366
|
*/
|
|
360
367
|
|
|
368
|
+
/* CUSTOM CODE START */
|
|
369
|
+
/* CUSTOM CODE END */
|
|
370
|
+
|
|
361
371
|
return DatePicker;
|
|
362
372
|
});
|