@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
|
@@ -44,7 +44,7 @@ sap.ui.define([
|
|
|
44
44
|
* </ul>
|
|
45
45
|
*
|
|
46
46
|
* @author SAP SE
|
|
47
|
-
* @version 1.
|
|
47
|
+
* @version 1.99.0
|
|
48
48
|
*
|
|
49
49
|
* @constructor
|
|
50
50
|
* @public
|
|
@@ -66,14 +66,6 @@ sap.ui.define([
|
|
|
66
66
|
type: "string"
|
|
67
67
|
},
|
|
68
68
|
|
|
69
|
-
/**
|
|
70
|
-
* Receives id(or many ids) of the elements that label the component.
|
|
71
|
-
*/
|
|
72
|
-
accessibleNameRef: {
|
|
73
|
-
type: "string",
|
|
74
|
-
defaultValue: ""
|
|
75
|
-
},
|
|
76
|
-
|
|
77
69
|
/**
|
|
78
70
|
* Determines the symbol which separates the dates. If not supplied, the default time interval delimiter for the current locale will be used.
|
|
79
71
|
*/
|
|
@@ -102,7 +94,7 @@ sap.ui.define([
|
|
|
102
94
|
* <br>
|
|
103
95
|
*
|
|
104
96
|
*
|
|
105
|
-
* <b>Note
|
|
97
|
+
* <b>Note:</b> For calendars other than Gregorian, the week numbers are not displayed regardless of what is set.
|
|
106
98
|
*/
|
|
107
99
|
hideWeekNumbers: {
|
|
108
100
|
type: "boolean",
|
|
@@ -118,7 +110,7 @@ sap.ui.define([
|
|
|
118
110
|
},
|
|
119
111
|
|
|
120
112
|
/**
|
|
121
|
-
* Determines the
|
|
113
|
+
* Determines the minimum date available for selection.
|
|
122
114
|
*/
|
|
123
115
|
minDate: {
|
|
124
116
|
type: "string",
|
|
@@ -232,6 +224,21 @@ sap.ui.define([
|
|
|
232
224
|
mapping: "style"
|
|
233
225
|
}
|
|
234
226
|
},
|
|
227
|
+
associations: {
|
|
228
|
+
|
|
229
|
+
/**
|
|
230
|
+
* Receives id(or many ids) of the controls that label this control.
|
|
231
|
+
*/
|
|
232
|
+
ariaLabelledBy: {
|
|
233
|
+
type: "sap.ui.core.Control",
|
|
234
|
+
multiple: true,
|
|
235
|
+
mapping: {
|
|
236
|
+
type: "property",
|
|
237
|
+
to: "accessibleNameRef",
|
|
238
|
+
formatter: "_getAriaLabelledByForRendering"
|
|
239
|
+
}
|
|
240
|
+
}
|
|
241
|
+
},
|
|
235
242
|
events: {
|
|
236
243
|
|
|
237
244
|
/**
|
|
@@ -279,7 +286,7 @@ sap.ui.define([
|
|
|
279
286
|
}
|
|
280
287
|
},
|
|
281
288
|
methods: ["closePicker", "formatValue", "isInValidRange", "isOpen", "isValid", "openPicker"],
|
|
282
|
-
getters: ["dateValue", "endDateValue", "startDateValue"]
|
|
289
|
+
getters: ["dateValue", "dateValueUTC", "endDateValue", "startDateValue"]
|
|
283
290
|
}
|
|
284
291
|
});
|
|
285
292
|
|
|
@@ -329,12 +336,19 @@ sap.ui.define([
|
|
|
329
336
|
*/
|
|
330
337
|
|
|
331
338
|
/**
|
|
332
|
-
* Returns the
|
|
339
|
+
* Returns the <b>Note:</b> The getter method is inherited and not supported. If called it will return an empty value.
|
|
333
340
|
* @public
|
|
334
341
|
* @name sap.ui.webc.main.DateRangePicker#getDateValue
|
|
335
342
|
* @function
|
|
336
343
|
*/
|
|
337
344
|
|
|
345
|
+
/**
|
|
346
|
+
* Returns the <b>Note:</b> The getter method is inherited and not supported. If called it will return an empty value.
|
|
347
|
+
* @public
|
|
348
|
+
* @name sap.ui.webc.main.DateRangePicker#getDateValueUTC
|
|
349
|
+
* @function
|
|
350
|
+
*/
|
|
351
|
+
|
|
338
352
|
/**
|
|
339
353
|
* Returns the end date of the currently selected range as JavaScript Date instance.
|
|
340
354
|
* @public
|
|
@@ -349,5 +363,8 @@ sap.ui.define([
|
|
|
349
363
|
* @function
|
|
350
364
|
*/
|
|
351
365
|
|
|
366
|
+
/* CUSTOM CODE START */
|
|
367
|
+
/* CUSTOM CODE END */
|
|
368
|
+
|
|
352
369
|
return DateRangePicker;
|
|
353
370
|
});
|
|
@@ -37,9 +37,7 @@ sap.ui.define([
|
|
|
37
37
|
* <li>typing in the input field</li>
|
|
38
38
|
* </ul>
|
|
39
39
|
*
|
|
40
|
-
* Programatically, to set date/time for the <code>DateTimePicker</code>, use the <code>value</code> property
|
|
41
|
-
* <br>
|
|
42
|
-
* As most of the input based components, the <code>DateTimePicker</code> supports properties, such as: <code>disabled</code>, <code>readonly</code>, <code>valueState</code> and <code>placeholder</code>.
|
|
40
|
+
* Programatically, to set date/time for the <code>DateTimePicker</code>, use the <code>value</code> property
|
|
43
41
|
*
|
|
44
42
|
* <h3>Formatting</h3>
|
|
45
43
|
*
|
|
@@ -72,7 +70,7 @@ sap.ui.define([
|
|
|
72
70
|
* The <code>DateTimePicker</code> is responsive and fully adapts to all devices. For larger screens, such as tablet or desktop, it is displayed as a popover, while on phone devices, it is displayed full screen.
|
|
73
71
|
*
|
|
74
72
|
* @author SAP SE
|
|
75
|
-
* @version 1.
|
|
73
|
+
* @version 1.99.0
|
|
76
74
|
*
|
|
77
75
|
* @constructor
|
|
78
76
|
* @public
|
|
@@ -94,14 +92,6 @@ sap.ui.define([
|
|
|
94
92
|
type: "string"
|
|
95
93
|
},
|
|
96
94
|
|
|
97
|
-
/**
|
|
98
|
-
* Receives id(or many ids) of the elements that label the component.
|
|
99
|
-
*/
|
|
100
|
-
accessibleNameRef: {
|
|
101
|
-
type: "string",
|
|
102
|
-
defaultValue: ""
|
|
103
|
-
},
|
|
104
|
-
|
|
105
95
|
/**
|
|
106
96
|
* Determines whether the component is displayed as disabled.
|
|
107
97
|
*/
|
|
@@ -123,7 +113,7 @@ sap.ui.define([
|
|
|
123
113
|
* <br>
|
|
124
114
|
*
|
|
125
115
|
*
|
|
126
|
-
* <b>Note
|
|
116
|
+
* <b>Note:</b> For calendars other than Gregorian, the week numbers are not displayed regardless of what is set.
|
|
127
117
|
*/
|
|
128
118
|
hideWeekNumbers: {
|
|
129
119
|
type: "boolean",
|
|
@@ -139,7 +129,7 @@ sap.ui.define([
|
|
|
139
129
|
},
|
|
140
130
|
|
|
141
131
|
/**
|
|
142
|
-
* Determines the
|
|
132
|
+
* Determines the minimum date available for selection.
|
|
143
133
|
*/
|
|
144
134
|
minDate: {
|
|
145
135
|
type: "string",
|
|
@@ -253,6 +243,21 @@ sap.ui.define([
|
|
|
253
243
|
mapping: "style"
|
|
254
244
|
}
|
|
255
245
|
},
|
|
246
|
+
associations: {
|
|
247
|
+
|
|
248
|
+
/**
|
|
249
|
+
* Receives id(or many ids) of the controls that label this control.
|
|
250
|
+
*/
|
|
251
|
+
ariaLabelledBy: {
|
|
252
|
+
type: "sap.ui.core.Control",
|
|
253
|
+
multiple: true,
|
|
254
|
+
mapping: {
|
|
255
|
+
type: "property",
|
|
256
|
+
to: "accessibleNameRef",
|
|
257
|
+
formatter: "_getAriaLabelledByForRendering"
|
|
258
|
+
}
|
|
259
|
+
}
|
|
260
|
+
},
|
|
256
261
|
events: {
|
|
257
262
|
|
|
258
263
|
/**
|
|
@@ -356,5 +361,8 @@ sap.ui.define([
|
|
|
356
361
|
* @function
|
|
357
362
|
*/
|
|
358
363
|
|
|
364
|
+
/* CUSTOM CODE START */
|
|
365
|
+
/* CUSTOM CODE END */
|
|
366
|
+
|
|
359
367
|
return DateTimePicker;
|
|
360
368
|
});
|
|
@@ -36,7 +36,7 @@ sap.ui.define([
|
|
|
36
36
|
* <b>Note:</b> We don't recommend nesting popup-like components (<code>sap.ui.webc.main.Dialog</code>, <code>sap.ui.webc.main.Popover</code>) inside other components containing z-index. This might break z-index management.
|
|
37
37
|
*
|
|
38
38
|
* @author SAP SE
|
|
39
|
-
* @version 1.
|
|
39
|
+
* @version 1.99.0
|
|
40
40
|
*
|
|
41
41
|
* @constructor
|
|
42
42
|
* @public
|
|
@@ -52,7 +52,7 @@ sap.ui.define([
|
|
|
52
52
|
properties: {
|
|
53
53
|
|
|
54
54
|
/**
|
|
55
|
-
*
|
|
55
|
+
* Defines the accessible name of the component.
|
|
56
56
|
*/
|
|
57
57
|
accessibleName: {
|
|
58
58
|
type: "string",
|
|
@@ -165,6 +165,21 @@ sap.ui.define([
|
|
|
165
165
|
slot: "header"
|
|
166
166
|
}
|
|
167
167
|
},
|
|
168
|
+
associations: {
|
|
169
|
+
|
|
170
|
+
/**
|
|
171
|
+
* Receives id(or many ids) of the controls that label this control.
|
|
172
|
+
*/
|
|
173
|
+
ariaLabelledBy: {
|
|
174
|
+
type: "sap.ui.core.Control",
|
|
175
|
+
multiple: true,
|
|
176
|
+
mapping: {
|
|
177
|
+
type: "property",
|
|
178
|
+
to: "accessibleNameRef",
|
|
179
|
+
formatter: "_getAriaLabelledByForRendering"
|
|
180
|
+
}
|
|
181
|
+
}
|
|
182
|
+
},
|
|
168
183
|
events: {
|
|
169
184
|
|
|
170
185
|
/**
|
|
@@ -237,5 +252,8 @@ sap.ui.define([
|
|
|
237
252
|
* @function
|
|
238
253
|
*/
|
|
239
254
|
|
|
255
|
+
/* CUSTOM CODE START */
|
|
256
|
+
/* CUSTOM CODE END */
|
|
257
|
+
|
|
240
258
|
return Dialog;
|
|
241
259
|
});
|
|
@@ -31,7 +31,7 @@ sap.ui.define([
|
|
|
31
31
|
* And, similar to all input based components, the FileUploader supports "valueState", "placeholder", "name", and "disabled" properties.
|
|
32
32
|
*
|
|
33
33
|
* @author SAP SE
|
|
34
|
-
* @version 1.
|
|
34
|
+
* @version 1.99.0
|
|
35
35
|
*
|
|
36
36
|
* @constructor
|
|
37
37
|
* @public
|
|
@@ -59,7 +59,7 @@ sap.ui.define([
|
|
|
59
59
|
/**
|
|
60
60
|
* Defines whether the component is in disabled state. <br>
|
|
61
61
|
* <br>
|
|
62
|
-
* <b>Note:</b> A
|
|
62
|
+
* <b>Note:</b> A disabled component is completely noninteractive.
|
|
63
63
|
*/
|
|
64
64
|
disabled: {
|
|
65
65
|
type: "boolean",
|
|
@@ -192,5 +192,8 @@ sap.ui.define([
|
|
|
192
192
|
* @function
|
|
193
193
|
*/
|
|
194
194
|
|
|
195
|
+
/* CUSTOM CODE START */
|
|
196
|
+
/* CUSTOM CODE END */
|
|
197
|
+
|
|
195
198
|
return FileUploader;
|
|
196
199
|
});
|
|
@@ -24,7 +24,7 @@ sap.ui.define([
|
|
|
24
24
|
* The <code>sap.ui.webc.main.GroupHeaderListItem</code> is a special list item, used only to separate other list items into logical groups.
|
|
25
25
|
*
|
|
26
26
|
* @author SAP SE
|
|
27
|
-
* @version 1.
|
|
27
|
+
* @version 1.99.0
|
|
28
28
|
*
|
|
29
29
|
* @constructor
|
|
30
30
|
* @public
|
|
@@ -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 GroupHeaderListItem;
|
|
75
78
|
});
|
|
@@ -42,14 +42,14 @@ sap.ui.define([
|
|
|
42
42
|
* <br>
|
|
43
43
|
*
|
|
44
44
|
* @author SAP SE
|
|
45
|
-
* @version 1.
|
|
45
|
+
* @version 1.99.0
|
|
46
46
|
*
|
|
47
47
|
* @constructor
|
|
48
48
|
* @public
|
|
49
49
|
* @since 1.92.0
|
|
50
50
|
* @experimental Since 1.92.0 This control is experimental and its API might change significantly.
|
|
51
51
|
* @alias sap.ui.webc.main.Icon
|
|
52
|
-
* @implements sap.ui.webc.main.IIcon
|
|
52
|
+
* @implements sap.ui.webc.main.IIcon, sap.ui.core.IFormContent
|
|
53
53
|
* @ui5-metamodel This control/element also will be described in the UI5 (legacy) designtime metamodel
|
|
54
54
|
*/
|
|
55
55
|
var Icon = WebComponent.extend("sap.ui.webc.main.Icon", {
|
|
@@ -57,7 +57,8 @@ sap.ui.define([
|
|
|
57
57
|
library: "sap.ui.webc.main",
|
|
58
58
|
tag: "ui5-icon-ui5",
|
|
59
59
|
interfaces: [
|
|
60
|
-
"sap.ui.webc.main.IIcon"
|
|
60
|
+
"sap.ui.webc.main.IIcon",
|
|
61
|
+
"sap.ui.core.IFormContent"
|
|
61
62
|
],
|
|
62
63
|
properties: {
|
|
63
64
|
|
|
@@ -71,6 +72,14 @@ sap.ui.define([
|
|
|
71
72
|
defaultValue: ""
|
|
72
73
|
},
|
|
73
74
|
|
|
75
|
+
/**
|
|
76
|
+
* Defines the accessibility role of the component.
|
|
77
|
+
*/
|
|
78
|
+
accessibleRole: {
|
|
79
|
+
type: "string",
|
|
80
|
+
defaultValue: ""
|
|
81
|
+
},
|
|
82
|
+
|
|
74
83
|
/**
|
|
75
84
|
* Defines the background color of the control
|
|
76
85
|
*/
|
|
@@ -158,5 +167,13 @@ sap.ui.define([
|
|
|
158
167
|
}
|
|
159
168
|
});
|
|
160
169
|
|
|
170
|
+
/* CUSTOM CODE START */
|
|
171
|
+
|
|
172
|
+
Icon.prototype.getFormDoNotAdjustWidth = function() {
|
|
173
|
+
return true;
|
|
174
|
+
};
|
|
175
|
+
|
|
176
|
+
/* CUSTOM CODE END */
|
|
177
|
+
|
|
161
178
|
return Icon;
|
|
162
179
|
});
|
|
@@ -30,12 +30,28 @@ sap.ui.define([
|
|
|
30
30
|
* The <code>sap.ui.webc.main.Input</code> component allows the user to enter and edit text or numeric values in one line. <br>
|
|
31
31
|
* Additionally, you can provide <code>suggestionItems</code>, that are displayed in a popover right under the input. <br>
|
|
32
32
|
* <br>
|
|
33
|
-
* The text field can be editable or read-only (<code>readonly</code> property), and it can be enabled or disabled (<code>
|
|
33
|
+
* The text field can be editable or read-only (<code>readonly</code> property), and it can be enabled or disabled (<code>disabled</code> property). To visualize semantic states, such as "error" or "warning", the <code>valueState</code> property is provided. When the user makes changes to the text, the change event is fired, which enables you to react on any text change. <br>
|
|
34
34
|
* <br>
|
|
35
35
|
* <b>Note:</b> If you are using the <code>sap.ui.webc.main.Input</code> as a single npm module, don't forget to import the <code>InputSuggestions</code> module from "@ui5/webcomponents/dist/features/InputSuggestions.js" to enable the suggestions functionality.
|
|
36
36
|
*
|
|
37
|
+
* <h3>Keyboard Handling</h3> The <code>sap.ui.webc.main.Input</code> provides the following keyboard shortcuts: <br>
|
|
38
|
+
*
|
|
39
|
+
*
|
|
40
|
+
*
|
|
41
|
+
* <ul>
|
|
42
|
+
* <li>[F4], [ALT]+[UP], or [ALT]+[DOWN] - Opens value help if available, same as clicking the value help icon. (Does not open suggestion list.)</li>
|
|
43
|
+
* <li>[ESC] - Closes the suggestion list, if open. If closed or not enabled, cancels changes and reverts to the value which the Input field had when it got the focus.</li>
|
|
44
|
+
* <li>[ENTER] or [RETURN] - If suggestion list is open takes over the current matching item and closes it. If value state or group header is focused, does nothing.</li>
|
|
45
|
+
* <li>[DOWN] - Focuses the next matching item in the suggestion list.</li>
|
|
46
|
+
* <li>[UP] - Focuses the previous matching item in the suggestion list.</li>
|
|
47
|
+
* <li>[HOME] - If focus is in the text input, moves caret before the first character. If focus is in the list, highlights the first item and updates the input accordingly.</li>
|
|
48
|
+
* <li>[END] - If focus is in the text input, moves caret after the last character. If focus is in the list, highlights the last item and updates the input accordingly.</li>
|
|
49
|
+
* <li>[PAGEUP] - If focus is in the list, moves highlight up by page size (10 items by default). If focus is in the input, does nothing.</li>
|
|
50
|
+
* <li>[PAGEDOWN] - If focus is in the list, moves highlight down by page size (10 items by default). If focus is in the input, does nothing.</li>
|
|
51
|
+
* </ul>
|
|
52
|
+
*
|
|
37
53
|
* @author SAP SE
|
|
38
|
-
* @version 1.
|
|
54
|
+
* @version 1.99.0
|
|
39
55
|
*
|
|
40
56
|
* @constructor
|
|
41
57
|
* @public
|
|
@@ -61,14 +77,6 @@ sap.ui.define([
|
|
|
61
77
|
type: "string"
|
|
62
78
|
},
|
|
63
79
|
|
|
64
|
-
/**
|
|
65
|
-
* Receives id(or many ids) of the elements that label the input
|
|
66
|
-
*/
|
|
67
|
-
accessibleNameRef: {
|
|
68
|
-
type: "string",
|
|
69
|
-
defaultValue: ""
|
|
70
|
-
},
|
|
71
|
-
|
|
72
80
|
/**
|
|
73
81
|
* Defines whether the component is in disabled state. <br>
|
|
74
82
|
* <br>
|
|
@@ -125,6 +133,14 @@ sap.ui.define([
|
|
|
125
133
|
defaultValue: false
|
|
126
134
|
},
|
|
127
135
|
|
|
136
|
+
/**
|
|
137
|
+
* Defines whether the clear icon of the input will be shown.
|
|
138
|
+
*/
|
|
139
|
+
showClearIcon: {
|
|
140
|
+
type: "boolean",
|
|
141
|
+
defaultValue: false
|
|
142
|
+
},
|
|
143
|
+
|
|
128
144
|
/**
|
|
129
145
|
* Defines whether the component should show suggestions, if such are present. <br>
|
|
130
146
|
* <br>
|
|
@@ -191,6 +207,15 @@ sap.ui.define([
|
|
|
191
207
|
type: "slot",
|
|
192
208
|
to: "div"
|
|
193
209
|
}
|
|
210
|
+
},
|
|
211
|
+
|
|
212
|
+
/**
|
|
213
|
+
* Defines the width of the control
|
|
214
|
+
*/
|
|
215
|
+
width: {
|
|
216
|
+
type: "sap.ui.core.CSSSize",
|
|
217
|
+
defaultValue: null,
|
|
218
|
+
mapping: "style"
|
|
194
219
|
}
|
|
195
220
|
},
|
|
196
221
|
defaultAggregation: "suggestionItems",
|
|
@@ -201,7 +226,7 @@ sap.ui.define([
|
|
|
201
226
|
*/
|
|
202
227
|
icon: {
|
|
203
228
|
type: "sap.ui.webc.main.IIcon",
|
|
204
|
-
multiple:
|
|
229
|
+
multiple: true,
|
|
205
230
|
slot: "icon"
|
|
206
231
|
},
|
|
207
232
|
|
|
@@ -213,6 +238,21 @@ sap.ui.define([
|
|
|
213
238
|
multiple: true
|
|
214
239
|
}
|
|
215
240
|
},
|
|
241
|
+
associations: {
|
|
242
|
+
|
|
243
|
+
/**
|
|
244
|
+
* Receives id(or many ids) of the controls that label this control.
|
|
245
|
+
*/
|
|
246
|
+
ariaLabelledBy: {
|
|
247
|
+
type: "sap.ui.core.Control",
|
|
248
|
+
multiple: true,
|
|
249
|
+
mapping: {
|
|
250
|
+
type: "property",
|
|
251
|
+
to: "accessibleNameRef",
|
|
252
|
+
formatter: "_getAriaLabelledByForRendering"
|
|
253
|
+
}
|
|
254
|
+
}
|
|
255
|
+
},
|
|
216
256
|
events: {
|
|
217
257
|
|
|
218
258
|
/**
|
|
@@ -235,7 +275,7 @@ sap.ui.define([
|
|
|
235
275
|
suggestionItemPreview: {
|
|
236
276
|
parameters: {
|
|
237
277
|
/**
|
|
238
|
-
* The previewed suggestion item
|
|
278
|
+
* The previewed suggestion item.
|
|
239
279
|
*/
|
|
240
280
|
item: {
|
|
241
281
|
type: "HTMLElement"
|
|
@@ -256,36 +296,16 @@ sap.ui.define([
|
|
|
256
296
|
suggestionItemSelect: {
|
|
257
297
|
parameters: {
|
|
258
298
|
/**
|
|
259
|
-
* The selected item
|
|
299
|
+
* The selected item.
|
|
260
300
|
*/
|
|
261
301
|
item: {
|
|
262
302
|
type: "HTMLElement"
|
|
263
303
|
}
|
|
264
304
|
}
|
|
265
|
-
},
|
|
266
|
-
|
|
267
|
-
/**
|
|
268
|
-
* Fired when the user scrolls the suggestion popover.
|
|
269
|
-
*/
|
|
270
|
-
suggestionScroll: {
|
|
271
|
-
parameters: {
|
|
272
|
-
/**
|
|
273
|
-
* The current scroll position
|
|
274
|
-
*/
|
|
275
|
-
scrollTop: {
|
|
276
|
-
type: "int"
|
|
277
|
-
},
|
|
278
|
-
|
|
279
|
-
/**
|
|
280
|
-
* The scroll container
|
|
281
|
-
*/
|
|
282
|
-
scrollContainer: {
|
|
283
|
-
type: "HTMLElement"
|
|
284
|
-
}
|
|
285
|
-
}
|
|
286
305
|
}
|
|
287
306
|
},
|
|
288
|
-
getters: ["previewItem"]
|
|
307
|
+
getters: ["previewItem"],
|
|
308
|
+
designtime: "sap/ui/webc/main/designtime/Input.designtime"
|
|
289
309
|
}
|
|
290
310
|
});
|
|
291
311
|
|
|
@@ -296,5 +316,8 @@ sap.ui.define([
|
|
|
296
316
|
* @function
|
|
297
317
|
*/
|
|
298
318
|
|
|
319
|
+
/* CUSTOM CODE START */
|
|
320
|
+
/* CUSTOM CODE END */
|
|
321
|
+
|
|
299
322
|
return Input;
|
|
300
323
|
});
|
|
@@ -8,8 +8,9 @@
|
|
|
8
8
|
sap.ui.define([
|
|
9
9
|
"sap/ui/webc/common/WebComponent",
|
|
10
10
|
"./library",
|
|
11
|
+
"sap/ui/core/LabelEnablement",
|
|
11
12
|
"./thirdparty/Label"
|
|
12
|
-
], function(WebComponent, library) {
|
|
13
|
+
], function(WebComponent, library, LabelEnablement) {
|
|
13
14
|
"use strict";
|
|
14
15
|
|
|
15
16
|
var WrappingType = library.WrappingType;
|
|
@@ -30,31 +31,25 @@ sap.ui.define([
|
|
|
30
31
|
* The <code>sap.ui.webc.main.Label</code> appearance can be influenced by properties, such as <code>required</code> and <code>wrappingType</code>. The appearance of the Label can be configured in a limited way by using the design property. For a broader choice of designs, you can use custom styles.
|
|
31
32
|
*
|
|
32
33
|
* @author SAP SE
|
|
33
|
-
* @version 1.
|
|
34
|
+
* @version 1.99.0
|
|
34
35
|
*
|
|
35
36
|
* @constructor
|
|
36
37
|
* @public
|
|
37
38
|
* @since 1.92.0
|
|
38
39
|
* @experimental Since 1.92.0 This control is experimental and its API might change significantly.
|
|
39
40
|
* @alias sap.ui.webc.main.Label
|
|
41
|
+
* @implements sap.ui.core.Label
|
|
40
42
|
* @ui5-metamodel This control/element also will be described in the UI5 (legacy) designtime metamodel
|
|
41
43
|
*/
|
|
42
44
|
var Label = WebComponent.extend("sap.ui.webc.main.Label", {
|
|
43
45
|
metadata: {
|
|
44
46
|
library: "sap.ui.webc.main",
|
|
45
47
|
tag: "ui5-label-ui5",
|
|
48
|
+
interfaces: [
|
|
49
|
+
"sap.ui.core.Label"
|
|
50
|
+
],
|
|
46
51
|
properties: {
|
|
47
52
|
|
|
48
|
-
/**
|
|
49
|
-
* Defines the labeled input by providing its ID. <br>
|
|
50
|
-
* <br>
|
|
51
|
-
* <b>Note:</b> Can be used with both <code>sap.ui.webc.main.Input</code> and native input.
|
|
52
|
-
*/
|
|
53
|
-
"for": {
|
|
54
|
-
type: "string",
|
|
55
|
-
defaultValue: ""
|
|
56
|
-
},
|
|
57
|
-
|
|
58
53
|
/**
|
|
59
54
|
* Defines whether an asterisk character is added to the component text. <br>
|
|
60
55
|
* <br>
|
|
@@ -66,7 +61,7 @@ sap.ui.define([
|
|
|
66
61
|
},
|
|
67
62
|
|
|
68
63
|
/**
|
|
69
|
-
* Defines whether
|
|
64
|
+
* Defines whether colon is added to the component text. <br>
|
|
70
65
|
* <br>
|
|
71
66
|
* <b>Note:</b> Usually used in forms.
|
|
72
67
|
*/
|
|
@@ -104,9 +99,31 @@ sap.ui.define([
|
|
|
104
99
|
type: "sap.ui.webc.main.WrappingType",
|
|
105
100
|
defaultValue: WrappingType.None
|
|
106
101
|
}
|
|
102
|
+
},
|
|
103
|
+
associations: {
|
|
104
|
+
|
|
105
|
+
/**
|
|
106
|
+
* Association to the labelled control.
|
|
107
|
+
* <br>
|
|
108
|
+
*
|
|
109
|
+
* By default, the label sets the for attribute to the ID of the labelled control. This can be changed by implementing the function getIdForLabel on the labelled control.
|
|
110
|
+
*/
|
|
111
|
+
labelFor: {
|
|
112
|
+
type: "sap.ui.core.Control",
|
|
113
|
+
multiple: false,
|
|
114
|
+
mapping: {
|
|
115
|
+
type: "property",
|
|
116
|
+
to: "for"
|
|
117
|
+
}
|
|
118
|
+
}
|
|
107
119
|
}
|
|
108
120
|
}
|
|
109
121
|
});
|
|
110
122
|
|
|
123
|
+
LabelEnablement.enrich(Label.prototype);
|
|
124
|
+
|
|
125
|
+
/* CUSTOM CODE START */
|
|
126
|
+
/* CUSTOM CODE END */
|
|
127
|
+
|
|
111
128
|
return Label;
|
|
112
129
|
});
|
|
@@ -39,7 +39,7 @@ sap.ui.define([
|
|
|
39
39
|
* If there is not enough space, the text of the <code>sap.ui.webc.main.Link</code> becomes truncated. If the <code>wrappingType</code> property is set to <code>"Normal"</code>, the text is displayed on several lines instead of being truncated.
|
|
40
40
|
*
|
|
41
41
|
* @author SAP SE
|
|
42
|
-
* @version 1.
|
|
42
|
+
* @version 1.99.0
|
|
43
43
|
*
|
|
44
44
|
* @constructor
|
|
45
45
|
* @public
|
|
@@ -55,11 +55,32 @@ sap.ui.define([
|
|
|
55
55
|
properties: {
|
|
56
56
|
|
|
57
57
|
/**
|
|
58
|
-
*
|
|
58
|
+
* An object of strings that defines several additional accessibility attribute values for customization depending on the use case.
|
|
59
|
+
*
|
|
60
|
+
* It supports the following fields:
|
|
61
|
+
*
|
|
62
|
+
*
|
|
63
|
+
* <ul>
|
|
64
|
+
* <li><code>expanded</code>: Indicates whether the anchor element, or another grouping element it controls, is currently expanded or collapsed. Accepts the following string values:
|
|
65
|
+
* <ul>
|
|
66
|
+
* <li><code>true</code></li>
|
|
67
|
+
* <li><code>false</code></li>
|
|
68
|
+
* <ul>
|
|
69
|
+
* </li>
|
|
70
|
+
* <li><code>hasPopup</code>: Indicates the availability and type of interactive popup element, such as menu or dialog, that can be triggered by the anchor element. Accepts the following string values:
|
|
71
|
+
* <ul>
|
|
72
|
+
* <li><code>Dialog</code></li>
|
|
73
|
+
* <li><code>Grid</code></li>
|
|
74
|
+
* <li><code>ListBox</code></li>
|
|
75
|
+
* <li><code>Menu</code></li>
|
|
76
|
+
* <li><code>Tree</code></li>
|
|
77
|
+
* </ul>
|
|
78
|
+
* </li>
|
|
79
|
+
* </ul>
|
|
59
80
|
*/
|
|
60
|
-
|
|
61
|
-
type: "
|
|
62
|
-
defaultValue:
|
|
81
|
+
accessibilityAttributes: {
|
|
82
|
+
type: "object",
|
|
83
|
+
defaultValue: {}
|
|
63
84
|
},
|
|
64
85
|
|
|
65
86
|
/**
|
|
@@ -75,7 +96,7 @@ sap.ui.define([
|
|
|
75
96
|
/**
|
|
76
97
|
* Defines whether the component is disabled. <br>
|
|
77
98
|
* <br>
|
|
78
|
-
* <b>Note:</b> When disabled, the
|
|
99
|
+
* <b>Note:</b> When disabled, the click event cannot be triggered by the user.
|
|
79
100
|
*/
|
|
80
101
|
disabled: {
|
|
81
102
|
type: "boolean",
|
|
@@ -134,6 +155,21 @@ sap.ui.define([
|
|
|
134
155
|
defaultValue: WrappingType.None
|
|
135
156
|
}
|
|
136
157
|
},
|
|
158
|
+
associations: {
|
|
159
|
+
|
|
160
|
+
/**
|
|
161
|
+
* Receives id(or many ids) of the controls that label this control.
|
|
162
|
+
*/
|
|
163
|
+
ariaLabelledBy: {
|
|
164
|
+
type: "sap.ui.core.Control",
|
|
165
|
+
multiple: true,
|
|
166
|
+
mapping: {
|
|
167
|
+
type: "property",
|
|
168
|
+
to: "accessibleNameRef",
|
|
169
|
+
formatter: "_getAriaLabelledByForRendering"
|
|
170
|
+
}
|
|
171
|
+
}
|
|
172
|
+
},
|
|
137
173
|
events: {
|
|
138
174
|
|
|
139
175
|
/**
|
|
@@ -146,5 +182,8 @@ sap.ui.define([
|
|
|
146
182
|
}
|
|
147
183
|
});
|
|
148
184
|
|
|
185
|
+
/* CUSTOM CODE START */
|
|
186
|
+
/* CUSTOM CODE END */
|
|
187
|
+
|
|
149
188
|
return Link;
|
|
150
189
|
});
|