@openui5/sap.ui.webc.main 1.97.1 → 1.100.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 +25 -30
- package/THIRDPARTY.txt +15 -22
- package/package.json +3 -3
- package/src/sap/ui/webc/main/.library +12 -8
- package/src/sap/ui/webc/main/Avatar.js +15 -3
- 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 +7 -3
- package/src/sap/ui/webc/main/BreadcrumbsItem.js +5 -2
- package/src/sap/ui/webc/main/BusyIndicator.js +4 -1
- package/src/sap/ui/webc/main/Button.js +65 -8
- package/src/sap/ui/webc/main/Calendar.js +5 -1
- package/src/sap/ui/webc/main/CalendarDate.js +4 -1
- package/src/sap/ui/webc/main/Card.js +20 -10
- package/src/sap/ui/webc/main/CardHeader.js +5 -2
- package/src/sap/ui/webc/main/Carousel.js +8 -2
- package/src/sap/ui/webc/main/CheckBox.js +63 -8
- package/src/sap/ui/webc/main/ColorPalette.js +6 -2
- package/src/sap/ui/webc/main/ColorPaletteItem.js +4 -1
- package/src/sap/ui/webc/main/ColorPalettePopover.js +28 -7
- package/src/sap/ui/webc/main/ColorPicker.js +4 -1
- package/src/sap/ui/webc/main/ComboBox.js +54 -19
- package/src/sap/ui/webc/main/ComboBoxGroupItem.js +5 -2
- 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 +38 -15
- package/src/sap/ui/webc/main/DateRangePicker.js +46 -16
- package/src/sap/ui/webc/main/DateTimePicker.js +37 -14
- package/src/sap/ui/webc/main/Dialog.js +46 -6
- package/src/sap/ui/webc/main/FileUploader.js +22 -8
- package/src/sap/ui/webc/main/GroupHeaderListItem.js +4 -1
- package/src/sap/ui/webc/main/Icon.js +17 -1
- package/src/sap/ui/webc/main/Input.js +72 -20
- package/src/sap/ui/webc/main/Label.js +29 -12
- package/src/sap/ui/webc/main/Link.js +62 -9
- package/src/sap/ui/webc/main/List.js +26 -14
- package/src/sap/ui/webc/main/MessageStrip.js +7 -2
- package/src/sap/ui/webc/main/MultiComboBox.js +29 -12
- package/src/sap/ui/webc/main/MultiComboBoxItem.js +4 -1
- package/src/sap/ui/webc/main/MultiInput.js +118 -18
- package/src/sap/ui/webc/main/Option.js +16 -7
- package/src/sap/ui/webc/main/Panel.js +9 -3
- package/src/sap/ui/webc/main/Popover.js +60 -8
- package/src/sap/ui/webc/main/ProgressIndicator.js +34 -10
- package/src/sap/ui/webc/main/RadioButton.js +55 -8
- package/src/sap/ui/webc/main/RangeSlider.js +18 -6
- package/src/sap/ui/webc/main/RatingIndicator.js +45 -11
- package/src/sap/ui/webc/main/ResponsivePopover.js +60 -8
- package/src/sap/ui/webc/main/SegmentedButton.js +42 -1
- package/src/sap/ui/webc/main/SegmentedButtonItem.js +63 -7
- package/src/sap/ui/webc/main/Select.js +47 -27
- package/src/sap/ui/webc/main/Slider.js +31 -6
- package/src/sap/ui/webc/main/SplitButton.js +164 -0
- package/src/sap/ui/webc/main/StandardListItem.js +4 -1
- package/src/sap/ui/webc/main/StepInput.js +47 -15
- package/src/sap/ui/webc/main/SuggestionGroupItem.js +5 -2
- package/src/sap/ui/webc/main/SuggestionItem.js +4 -1
- package/src/sap/ui/webc/main/Switch.js +51 -7
- package/src/sap/ui/webc/main/Tab.js +26 -7
- package/src/sap/ui/webc/main/TabContainer.js +41 -7
- package/src/sap/ui/webc/main/TabSeparator.js +4 -1
- package/src/sap/ui/webc/main/Table.js +23 -4
- 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 +5 -2
- package/src/sap/ui/webc/main/TableRow.js +4 -1
- package/src/sap/ui/webc/main/TextArea.js +38 -17
- package/src/sap/ui/webc/main/TimePicker.js +20 -5
- 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 +62 -6
- package/src/sap/ui/webc/main/Token.js +4 -1
- package/src/sap/ui/webc/main/Tree.js +5 -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/Panel.designtime.js +45 -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/Table.designtime.js +37 -0
- package/src/sap/ui/webc/main/designtime/library.designtime.js +12 -0
- package/src/sap/ui/webc/main/designtime/messagebundle.properties +44 -0
- package/src/sap/ui/webc/main/designtime/messagebundle_ar.properties +28 -0
- package/src/sap/ui/webc/main/designtime/messagebundle_bg.properties +28 -0
- package/src/sap/ui/webc/main/designtime/messagebundle_ca.properties +28 -0
- package/src/sap/ui/webc/main/designtime/messagebundle_cs.properties +28 -0
- package/src/sap/ui/webc/main/designtime/messagebundle_cy.properties +28 -0
- package/src/sap/ui/webc/main/designtime/messagebundle_da.properties +28 -0
- package/src/sap/ui/webc/main/designtime/messagebundle_de.properties +28 -0
- package/src/sap/ui/webc/main/designtime/messagebundle_el.properties +28 -0
- package/src/sap/ui/webc/main/designtime/messagebundle_en.properties +28 -0
- package/src/sap/ui/webc/main/designtime/messagebundle_en_GB.properties +28 -0
- package/src/sap/ui/webc/main/designtime/messagebundle_en_US_sappsd.properties +28 -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 +28 -0
- package/src/sap/ui/webc/main/designtime/messagebundle_es.properties +28 -0
- package/src/sap/ui/webc/main/designtime/messagebundle_es_MX.properties +28 -0
- package/src/sap/ui/webc/main/designtime/messagebundle_et.properties +28 -0
- package/src/sap/ui/webc/main/designtime/messagebundle_fi.properties +28 -0
- package/src/sap/ui/webc/main/designtime/messagebundle_fr.properties +28 -0
- package/src/sap/ui/webc/main/designtime/messagebundle_fr_CA.properties +28 -0
- package/src/sap/ui/webc/main/designtime/messagebundle_hi.properties +28 -0
- package/src/sap/ui/webc/main/designtime/messagebundle_hr.properties +28 -0
- package/src/sap/ui/webc/main/designtime/messagebundle_hu.properties +28 -0
- package/src/sap/ui/webc/main/designtime/messagebundle_id.properties +28 -0
- package/src/sap/ui/webc/main/designtime/messagebundle_it.properties +28 -0
- package/src/sap/ui/webc/main/designtime/messagebundle_iw.properties +28 -0
- package/src/sap/ui/webc/main/designtime/messagebundle_ja.properties +28 -0
- package/src/sap/ui/webc/main/designtime/messagebundle_kk.properties +28 -0
- package/src/sap/ui/webc/main/designtime/messagebundle_ko.properties +28 -0
- package/src/sap/ui/webc/main/designtime/messagebundle_lt.properties +28 -0
- package/src/sap/ui/webc/main/designtime/messagebundle_lv.properties +28 -0
- package/src/sap/ui/webc/main/designtime/messagebundle_ms.properties +28 -0
- package/src/sap/ui/webc/main/designtime/messagebundle_nl.properties +28 -0
- package/src/sap/ui/webc/main/designtime/messagebundle_no.properties +28 -0
- package/src/sap/ui/webc/main/designtime/messagebundle_pl.properties +28 -0
- package/src/sap/ui/webc/main/designtime/messagebundle_pt.properties +28 -0
- package/src/sap/ui/webc/main/designtime/messagebundle_pt_PT.properties +28 -0
- package/src/sap/ui/webc/main/designtime/messagebundle_ro.properties +28 -0
- package/src/sap/ui/webc/main/designtime/messagebundle_ru.properties +28 -0
- package/src/sap/ui/webc/main/designtime/messagebundle_sh.properties +28 -0
- package/src/sap/ui/webc/main/designtime/messagebundle_sk.properties +28 -0
- package/src/sap/ui/webc/main/designtime/messagebundle_sl.properties +28 -0
- package/src/sap/ui/webc/main/designtime/messagebundle_sv.properties +28 -0
- package/src/sap/ui/webc/main/designtime/messagebundle_th.properties +28 -0
- package/src/sap/ui/webc/main/designtime/messagebundle_tr.properties +28 -0
- package/src/sap/ui/webc/main/designtime/messagebundle_uk.properties +28 -0
- package/src/sap/ui/webc/main/designtime/messagebundle_vi.properties +28 -0
- package/src/sap/ui/webc/main/designtime/messagebundle_zh_CN.properties +28 -0
- package/src/sap/ui/webc/main/designtime/messagebundle_zh_TW.properties +28 -0
- package/src/sap/ui/webc/main/library.config.js +3 -0
- package/src/sap/ui/webc/main/library.js +110 -6
- package/src/sap/ui/webc/main/thirdparty/AvatarGroup.js +2 -2
- package/src/sap/ui/webc/main/thirdparty/Breadcrumbs.js +24 -10
- package/src/sap/ui/webc/main/thirdparty/BreadcrumbsItem.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/BusyIndicator.js +2 -3
- package/src/sap/ui/webc/main/thirdparty/Button.js +20 -17
- package/src/sap/ui/webc/main/thirdparty/Calendar.js +5 -4
- package/src/sap/ui/webc/main/thirdparty/Carousel.js +1 -0
- package/src/sap/ui/webc/main/thirdparty/CheckBox.js +18 -2
- package/src/sap/ui/webc/main/thirdparty/ColorPalette.js +5 -5
- package/src/sap/ui/webc/main/thirdparty/ColorPalettePopover.js +11 -3
- package/src/sap/ui/webc/main/thirdparty/ColorPicker.js +26 -3
- package/src/sap/ui/webc/main/thirdparty/ComboBox.js +75 -19
- package/src/sap/ui/webc/main/thirdparty/ComboBoxFilters.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/DateComponentBase.js +6 -8
- package/src/sap/ui/webc/main/thirdparty/DatePicker.js +9 -3
- package/src/sap/ui/webc/main/thirdparty/DateRangePicker.js +12 -1
- package/src/sap/ui/webc/main/thirdparty/DayPicker.js +3 -0
- package/src/sap/ui/webc/main/thirdparty/Dialog.js +22 -16
- package/src/sap/ui/webc/main/thirdparty/FileUploader.js +13 -6
- package/src/sap/ui/webc/main/thirdparty/Icon.js +9 -6
- package/src/sap/ui/webc/main/thirdparty/Input.js +154 -36
- package/src/sap/ui/webc/main/thirdparty/Label.js +7 -2
- package/src/sap/ui/webc/main/thirdparty/Link.js +8 -7
- package/src/sap/ui/webc/main/thirdparty/List.js +7 -13
- package/src/sap/ui/webc/main/thirdparty/MessageStrip.js +22 -9
- package/src/sap/ui/webc/main/thirdparty/MultiComboBox.js +152 -24
- package/src/sap/ui/webc/main/thirdparty/MultiComboBoxItem.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/MultiInput.js +39 -8
- package/src/sap/ui/webc/main/thirdparty/Option.js +6 -3
- package/src/sap/ui/webc/main/thirdparty/Panel.js +7 -7
- package/src/sap/ui/webc/main/thirdparty/Popover.js +79 -58
- package/src/sap/ui/webc/main/thirdparty/Popup.js +38 -19
- package/src/sap/ui/webc/main/thirdparty/ProgressIndicator.js +4 -1
- package/src/sap/ui/webc/main/thirdparty/RadioButton.js +5 -2
- package/src/sap/ui/webc/main/thirdparty/RangeSlider.js +5 -2
- package/src/sap/ui/webc/main/thirdparty/RatingIndicator.js +20 -7
- package/src/sap/ui/webc/main/thirdparty/ResponsivePopover.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/SegmentedButton.js +6 -1
- package/src/sap/ui/webc/main/thirdparty/SegmentedButtonItem.js +4 -1
- package/src/sap/ui/webc/main/thirdparty/Select.js +22 -2
- package/src/sap/ui/webc/main/thirdparty/Slider.js +4 -1
- package/src/sap/ui/webc/main/thirdparty/SliderBase.js +8 -5
- package/src/sap/ui/webc/main/thirdparty/SplitButton.js +199 -0
- package/src/sap/ui/webc/main/thirdparty/StepInput.js +5 -6
- package/src/sap/ui/webc/main/thirdparty/Switch.js +14 -1
- package/src/sap/ui/webc/main/thirdparty/Tab.js +13 -7
- package/src/sap/ui/webc/main/thirdparty/TabContainer.js +347 -92
- package/src/sap/ui/webc/main/thirdparty/TabSeparator.js +26 -3
- package/src/sap/ui/webc/main/thirdparty/Table.js +164 -7
- package/src/sap/ui/webc/main/thirdparty/TableColumn.js +0 -3
- package/src/sap/ui/webc/main/thirdparty/TableGroupRow.js +3 -0
- package/src/sap/ui/webc/main/thirdparty/TableRow.js +61 -9
- package/src/sap/ui/webc/main/thirdparty/TextArea.js +18 -5
- package/src/sap/ui/webc/main/thirdparty/ToggleButton.js +4 -1
- package/src/sap/ui/webc/main/thirdparty/Token.js +11 -1
- package/src/sap/ui/webc/main/thirdparty/Tokenizer.js +122 -13
- package/src/sap/ui/webc/main/thirdparty/Tree.js +3 -1
- package/src/sap/ui/webc/main/thirdparty/TreeItem.js +3 -0
- package/src/sap/ui/webc/main/thirdparty/TreeListItem.js +7 -1
- package/src/sap/ui/webc/main/thirdparty/WheelSlider.js +9 -9
- package/src/sap/ui/webc/main/thirdparty/{ComboBoxFilters-f59100bd.js → _chunks/ComboBoxFilters.js} +0 -0
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_ar-f610ffe9.js → _chunks/messagebundle_ar.js} +10 -2
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_bg-e372ad7a.js → _chunks/messagebundle_bg.js} +10 -2
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_ca-64403819.js → _chunks/messagebundle_ca.js} +10 -2
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_cs-f5276d1f.js → _chunks/messagebundle_cs.js} +10 -2
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_cy-5b51959f.js → _chunks/messagebundle_cy.js} +10 -2
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_da-3f0c542a.js → _chunks/messagebundle_da.js} +10 -2
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_de-ff52e292.js → _chunks/messagebundle_de.js} +10 -2
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_el-8a8f0e04.js → _chunks/messagebundle_el.js} +10 -2
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_en-39f79920.js → _chunks/messagebundle_en.js} +10 -2
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_en_GB-9a6995bc.js → _chunks/messagebundle_en_GB.js} +10 -2
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_en_US_sappsd-1cd6f946.js → _chunks/messagebundle_en_US_sappsd.js} +10 -2
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_en_US_saprigi-88214efb.js → _chunks/messagebundle_en_US_saprigi.js} +11 -2
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_en_US_saptrc-d8b4cc37.js → _chunks/messagebundle_en_US_saptrc.js} +10 -2
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_es-4e7804b3.js → _chunks/messagebundle_es.js} +10 -2
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_es_MX-5d55637e.js → _chunks/messagebundle_es_MX.js} +10 -2
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_et-d019447e.js → _chunks/messagebundle_et.js} +10 -2
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_fi-115f5a0c.js → _chunks/messagebundle_fi.js} +11 -3
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_fr-f4458a8c.js → _chunks/messagebundle_fr.js} +10 -2
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_fr_CA-d3ac2579.js → _chunks/messagebundle_fr_CA.js} +10 -2
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_hi-3dbf5206.js → _chunks/messagebundle_hi.js} +10 -2
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_hr-3112e358.js → _chunks/messagebundle_hr.js} +10 -2
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_hu-90f77b24.js → _chunks/messagebundle_hu.js} +10 -2
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_in-7ab9b6f2.js → _chunks/messagebundle_in.js} +0 -0
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_it-4fd2c566.js → _chunks/messagebundle_it.js} +10 -2
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_iw-ff53b57b.js → _chunks/messagebundle_iw.js} +10 -2
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_ja-050a69c3.js → _chunks/messagebundle_ja.js} +12 -4
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_kk-597a9724.js → _chunks/messagebundle_kk.js} +10 -2
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_ko-d840efd8.js → _chunks/messagebundle_ko.js} +10 -2
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_lt-d15c1526.js → _chunks/messagebundle_lt.js} +10 -2
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_lv-539ad33e.js → _chunks/messagebundle_lv.js} +10 -2
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_ms-98b3e6dd.js → _chunks/messagebundle_ms.js} +10 -2
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_nl-5c52e887.js → _chunks/messagebundle_nl.js} +10 -2
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_no-04ee2aaf.js → _chunks/messagebundle_no.js} +10 -2
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_pl-6da30702.js → _chunks/messagebundle_pl.js} +10 -2
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_pt-71f281c3.js → _chunks/messagebundle_pt.js} +10 -2
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_pt_PT-6d966418.js → _chunks/messagebundle_pt_PT.js} +10 -2
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_ro-e76a9c5d.js → _chunks/messagebundle_ro.js} +10 -2
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_ru-dc34dd79.js → _chunks/messagebundle_ru.js} +10 -2
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_sh-f2171ee6.js → _chunks/messagebundle_sh.js} +10 -2
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_sk-5c10a3c8.js → _chunks/messagebundle_sk.js} +10 -2
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_sl-14cff3cf.js → _chunks/messagebundle_sl.js} +10 -2
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_sv-44a9e5d4.js → _chunks/messagebundle_sv.js} +10 -2
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_th-6cbca7a8.js → _chunks/messagebundle_th.js} +9 -1
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_tr-00ce0f94.js → _chunks/messagebundle_tr.js} +10 -2
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_uk-bf2de1c7.js → _chunks/messagebundle_uk.js} +10 -2
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_vi-a0de6aa8.js → _chunks/messagebundle_vi.js} +10 -2
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_zh_CN-7cbf9197.js → _chunks/messagebundle_zh_CN.js} +10 -2
- package/src/sap/ui/webc/main/thirdparty/{messagebundle_zh_TW-53705d5b.js → _chunks/messagebundle_zh_TW.js} +9 -1
- package/src/sap/ui/webc/main/thirdparty/_chunks/parameters-bundle.css.js +13 -0
- package/src/sap/ui/webc/main/thirdparty/_chunks/parameters-bundle.css2.js +13 -0
- package/src/sap/ui/webc/main/thirdparty/_chunks/parameters-bundle.css3.js +13 -0
- package/src/sap/ui/webc/main/thirdparty/_chunks/parameters-bundle.css4.js +13 -0
- package/src/sap/ui/webc/main/thirdparty/_chunks/parameters-bundle.css5.js +13 -0
- package/src/sap/ui/webc/main/thirdparty/_chunks/parameters-bundle.css6.js +13 -0
- package/src/sap/ui/webc/main/thirdparty/_chunks/parameters-bundle.css7.js +13 -0
- package/src/sap/ui/webc/main/thirdparty/_chunks/parameters-bundle.css8.js +13 -0
- package/src/sap/ui/webc/main/thirdparty/_chunks/parameters-bundle.css9.js +13 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/Avatar.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/Badge.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/Breadcrumbs.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/BrowserScrollbar.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/BusyIndicator.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/Button.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/Calendar.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/CalendarHeader.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/Card.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/CardHeader.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/CheckBox.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/ColorPalettePopover.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/ColorPicker.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/ComboBox.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/CustomListItem.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/DatePicker.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/DatePickerPopover.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/DateTimePickerPopover.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/DayPicker.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/Dialog.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/GrowingButton.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/Input.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/InputIcon.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/List.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/ListItemBase.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/MessageStrip.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/MonthPicker.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/MultiComboBox.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/MultiInput.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/Panel.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/Popover.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/PopupGlobal.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/PopupsCommon.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/ProgressIndicator.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/RadioButton.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/RatingIndicator.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/ResponsivePopover.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/ResponsivePopoverCommon.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/SegmentedButton.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/Select.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/SelectPopover.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/SliderBase.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/SplitButton.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/StepInput.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/Suggestions.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/Switch.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/TabContainer.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/TabInOverflow.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/TabInStrip.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/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 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/TableColumn.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/TableGroupRow.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/TableRow.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/TextArea.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/TimePicker.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/TimePickerPopover.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/TimeSelection.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/Token.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/Tokenizer.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/TokenizerPopover.css +1 -0
- package/src/sap/ui/webc/main/thirdparty/css/themes/ValueStateMessage.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/WheelSlider.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/YearPicker.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/sap_belize/parameters-bundle.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/sap_belize_hcb/parameters-bundle.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/sap_belize_hcw/parameters-bundle.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/sap_fiori_3/parameters-bundle.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/sap_fiori_3_dark/parameters-bundle.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/sap_fiori_3_hcb/parameters-bundle.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/sap_fiori_3_hcw/parameters-bundle.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/sap_horizon/parameters-bundle.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/css/themes/sap_horizon_exp/parameters-bundle.css +1 -1
- package/src/sap/ui/webc/main/thirdparty/features/InputSuggestions.js +143 -29
- package/src/sap/ui/webc/main/thirdparty/generated/i18n/i18n-defaults.js +10 -1
- package/src/sap/ui/webc/main/thirdparty/generated/json-imports/Themes.js +9 -9
- package/src/sap/ui/webc/main/thirdparty/generated/json-imports/i18n.js +48 -48
- package/src/sap/ui/webc/main/thirdparty/generated/templates/AvatarGroupTemplate.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 +1 -1
- 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 +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/templates/CarouselTemplate.lit.js +4 -4
- package/src/sap/ui/webc/main/thirdparty/generated/templates/CheckBoxTemplate.lit.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/templates/ColorPalettePopoverTemplate.lit.js +1 -1
- 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 +4 -4
- package/src/sap/ui/webc/main/thirdparty/generated/templates/DatePickerPopoverTemplate.lit.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/templates/DatePickerTemplate.lit.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/templates/DateTimePickerPopoverTemplate.lit.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/templates/DialogTemplate.lit.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/templates/FileUploaderPopoverTemplate.lit.js +5 -4
- 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 +4 -4
- package/src/sap/ui/webc/main/thirdparty/generated/templates/ListTemplate.lit.js +1 -1
- 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 +6 -6
- 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/PopoverTemplate.lit.js +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/templates/PopupBlockLayerTemplate.lit.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/templates/PopupTemplate.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 +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/templates/ResponsivePopoverTemplate.lit.js +5 -5
- 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/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 +4 -4
- 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 +4 -4
- 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 +10 -11
- 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 +1 -1
- 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 +3 -3
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TextAreaPopoverTemplate.lit.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TextAreaTemplate.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/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/TokenizerTemplate.lit.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TreeListItemTemplate.lit.js +4 -4
- package/src/sap/ui/webc/main/thirdparty/generated/templates/TreeTemplate.lit.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Avatar.css.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Badge.css.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Breadcrumbs.css.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/themes/BrowserScrollbar.css.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/themes/BusyIndicator.css.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Button.css.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Calendar.css.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/themes/CalendarHeader.css.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Card.css.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/themes/CardHeader.css.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/themes/CheckBox.css.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/themes/ColorPalettePopover.css.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/themes/ColorPicker.css.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/themes/ComboBox.css.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/themes/CustomListItem.css.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/themes/DatePicker.css.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/themes/DatePickerPopover.css.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/themes/DateTimePickerPopover.css.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/themes/DayPicker.css.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Dialog.css.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/themes/GrowingButton.css.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Input.css.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/themes/InputIcon.css.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/themes/List.css.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/themes/ListItemBase.css.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/themes/MessageStrip.css.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/themes/MonthPicker.css.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/themes/MultiComboBox.css.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/themes/MultiInput.css.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Panel.css.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Popover.css.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/themes/PopupGlobal.css.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/themes/PopupsCommon.css.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/themes/ProgressIndicator.css.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/themes/RadioButton.css.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/themes/RatingIndicator.css.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/themes/ResponsivePopover.css.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/themes/ResponsivePopoverCommon.css.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/themes/SegmentedButton.css.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Select.css.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/themes/SelectPopover.css.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/themes/SliderBase.css.js +1 -1
- 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 +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Suggestions.css.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Switch.css.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/themes/TabContainer.css.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/themes/TabInOverflow.css.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/themes/TabInStrip.css.js +1 -1
- 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 +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/themes/TableColumn.css.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/themes/TableGroupRow.css.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/themes/TableRow.css.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/themes/TextArea.css.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/themes/TimePicker.css.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/themes/TimePickerPopover.css.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/themes/TimeSelection.css.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Token.css.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/themes/Tokenizer.css.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/themes/TokenizerPopover.css.js +13 -0
- package/src/sap/ui/webc/main/thirdparty/generated/themes/ValueStateMessage.css.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/themes/WheelSlider.css.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/themes/YearPicker.css.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/themes/sap_belize/parameters-bundle.css.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/themes/sap_belize_hcb/parameters-bundle.css.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/themes/sap_belize_hcw/parameters-bundle.css.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/themes/sap_fiori_3/parameters-bundle.css.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/themes/sap_fiori_3_dark/parameters-bundle.css.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/themes/sap_fiori_3_hcb/parameters-bundle.css.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/themes/sap_fiori_3_hcw/parameters-bundle.css.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/themes/sap_horizon/parameters-bundle.css.js +1 -1
- package/src/sap/ui/webc/main/thirdparty/generated/themes/sap_horizon_exp/parameters-bundle.css.js +1 -1
- 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-0f28e359.js +0 -13
- package/src/sap/ui/webc/main/thirdparty/parameters-bundle.css-1ee56435.js +0 -13
- package/src/sap/ui/webc/main/thirdparty/parameters-bundle.css-4d4cd873.js +0 -13
- package/src/sap/ui/webc/main/thirdparty/parameters-bundle.css-5bdedee7.js +0 -13
- package/src/sap/ui/webc/main/thirdparty/parameters-bundle.css-60d672db.js +0 -13
- package/src/sap/ui/webc/main/thirdparty/parameters-bundle.css-793a420b.js +0 -13
- package/src/sap/ui/webc/main/thirdparty/parameters-bundle.css-7c549d8f.js +0 -13
- package/src/sap/ui/webc/main/thirdparty/parameters-bundle.css-7e5617d6.js +0 -13
- package/src/sap/ui/webc/main/thirdparty/parameters-bundle.css-e75a0bfb.js +0 -13
|
@@ -32,7 +32,7 @@ sap.ui.define([
|
|
|
32
32
|
* <ui5-link target="_blank" href="https://developer.mozilla.org/en-US/docs/Web/CSS/::part">CSS Shadow Parts</ui5-link> allow developers to style elements inside the Shadow DOM.
|
|
33
33
|
*
|
|
34
34
|
* @author SAP SE
|
|
35
|
-
* @version 1.
|
|
35
|
+
* @version 1.100.0
|
|
36
36
|
*
|
|
37
37
|
* @constructor
|
|
38
38
|
* @public
|
|
@@ -48,21 +48,13 @@ sap.ui.define([
|
|
|
48
48
|
properties: {
|
|
49
49
|
|
|
50
50
|
/**
|
|
51
|
-
* Defines the accessible name of the component, which is used as the name of the card region and should be unique per card. <b>Note:</b> <code>accessibleName</code> should be always set, unless <code>
|
|
51
|
+
* Defines the accessible name of the component, which is used as the name of the card region and should be unique per card. <b>Note:</b> <code>accessibleName</code> should be always set, unless <code>ariaLabelledBy</code> is set.
|
|
52
52
|
*/
|
|
53
53
|
accessibleName: {
|
|
54
54
|
type: "string",
|
|
55
55
|
defaultValue: ""
|
|
56
56
|
},
|
|
57
57
|
|
|
58
|
-
/**
|
|
59
|
-
* Defines the IDs of the elements that label the component.
|
|
60
|
-
*/
|
|
61
|
-
accessibleNameRef: {
|
|
62
|
-
type: "string",
|
|
63
|
-
defaultValue: ""
|
|
64
|
-
},
|
|
65
|
-
|
|
66
58
|
/**
|
|
67
59
|
* Defines the height of the control
|
|
68
60
|
*/
|
|
@@ -102,9 +94,27 @@ sap.ui.define([
|
|
|
102
94
|
multiple: true,
|
|
103
95
|
slot: "header"
|
|
104
96
|
}
|
|
97
|
+
},
|
|
98
|
+
associations: {
|
|
99
|
+
|
|
100
|
+
/**
|
|
101
|
+
* Receives id(or many ids) of the controls that label this control.
|
|
102
|
+
*/
|
|
103
|
+
ariaLabelledBy: {
|
|
104
|
+
type: "sap.ui.core.Control",
|
|
105
|
+
multiple: true,
|
|
106
|
+
mapping: {
|
|
107
|
+
type: "property",
|
|
108
|
+
to: "accessibleNameRef",
|
|
109
|
+
formatter: "_getAriaLabelledByForRendering"
|
|
110
|
+
}
|
|
111
|
+
}
|
|
105
112
|
}
|
|
106
113
|
}
|
|
107
114
|
});
|
|
108
115
|
|
|
116
|
+
/* CUSTOM CODE START */
|
|
117
|
+
/* CUSTOM CODE END */
|
|
118
|
+
|
|
109
119
|
return Card;
|
|
110
120
|
});
|
|
@@ -38,7 +38,7 @@ sap.ui.define([
|
|
|
38
38
|
* </ul>
|
|
39
39
|
*
|
|
40
40
|
* @author SAP SE
|
|
41
|
-
* @version 1.
|
|
41
|
+
* @version 1.100.0
|
|
42
42
|
*
|
|
43
43
|
* @constructor
|
|
44
44
|
* @public
|
|
@@ -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.100.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
|
});
|
|
@@ -8,9 +8,11 @@
|
|
|
8
8
|
sap.ui.define([
|
|
9
9
|
"sap/ui/webc/common/WebComponent",
|
|
10
10
|
"./library",
|
|
11
|
+
"sap/ui/core/EnabledPropagator",
|
|
11
12
|
"sap/ui/core/library",
|
|
12
|
-
"./thirdparty/CheckBox"
|
|
13
|
-
|
|
13
|
+
"./thirdparty/CheckBox",
|
|
14
|
+
"./thirdparty/features/InputElementsFormSupport"
|
|
15
|
+
], function(WebComponent, library, EnabledPropagator, coreLibrary) {
|
|
14
16
|
"use strict";
|
|
15
17
|
|
|
16
18
|
var ValueState = coreLibrary.ValueState;
|
|
@@ -50,21 +52,33 @@ sap.ui.define([
|
|
|
50
52
|
* <br>
|
|
51
53
|
*
|
|
52
54
|
* @author SAP SE
|
|
53
|
-
* @version 1.
|
|
55
|
+
* @version 1.100.0
|
|
54
56
|
*
|
|
55
57
|
* @constructor
|
|
56
58
|
* @public
|
|
57
59
|
* @since 1.92.0
|
|
58
60
|
* @experimental Since 1.92.0 This control is experimental and its API might change significantly.
|
|
59
61
|
* @alias sap.ui.webc.main.CheckBox
|
|
62
|
+
* @implements sap.ui.core.IFormContent
|
|
60
63
|
* @ui5-metamodel This control/element also will be described in the UI5 (legacy) designtime metamodel
|
|
61
64
|
*/
|
|
62
65
|
var CheckBox = WebComponent.extend("sap.ui.webc.main.CheckBox", {
|
|
63
66
|
metadata: {
|
|
64
67
|
library: "sap.ui.webc.main",
|
|
65
68
|
tag: "ui5-checkbox-ui5",
|
|
69
|
+
interfaces: [
|
|
70
|
+
"sap.ui.core.IFormContent"
|
|
71
|
+
],
|
|
66
72
|
properties: {
|
|
67
73
|
|
|
74
|
+
/**
|
|
75
|
+
* Defines the accessible aria name of the component.
|
|
76
|
+
*/
|
|
77
|
+
accessibleName: {
|
|
78
|
+
type: "string",
|
|
79
|
+
defaultValue: ""
|
|
80
|
+
},
|
|
81
|
+
|
|
68
82
|
/**
|
|
69
83
|
* Defines if the component is checked. <br>
|
|
70
84
|
* <br>
|
|
@@ -76,13 +90,16 @@ sap.ui.define([
|
|
|
76
90
|
},
|
|
77
91
|
|
|
78
92
|
/**
|
|
79
|
-
* Defines whether the
|
|
80
|
-
* <br>
|
|
81
|
-
* <b>Note:</b> A disabled component is completely noninteractive.
|
|
93
|
+
* Defines whether the control is enabled. A disabled control can't be interacted with, and it is not in the tab chain.
|
|
82
94
|
*/
|
|
83
|
-
|
|
95
|
+
enabled: {
|
|
84
96
|
type: "boolean",
|
|
85
|
-
defaultValue:
|
|
97
|
+
defaultValue: true,
|
|
98
|
+
mapping: {
|
|
99
|
+
type: "attribute",
|
|
100
|
+
to: "disabled",
|
|
101
|
+
formatter: "_mapEnabled"
|
|
102
|
+
}
|
|
86
103
|
},
|
|
87
104
|
|
|
88
105
|
/**
|
|
@@ -152,6 +169,15 @@ sap.ui.define([
|
|
|
152
169
|
defaultValue: ValueState.None
|
|
153
170
|
},
|
|
154
171
|
|
|
172
|
+
/**
|
|
173
|
+
* Defines the width of the control
|
|
174
|
+
*/
|
|
175
|
+
width: {
|
|
176
|
+
type: "sap.ui.core.CSSSize",
|
|
177
|
+
defaultValue: null,
|
|
178
|
+
mapping: "style"
|
|
179
|
+
},
|
|
180
|
+
|
|
155
181
|
/**
|
|
156
182
|
* Defines whether the component text wraps when there is not enough space. <br>
|
|
157
183
|
* <br>
|
|
@@ -166,6 +192,21 @@ sap.ui.define([
|
|
|
166
192
|
defaultValue: WrappingType.None
|
|
167
193
|
}
|
|
168
194
|
},
|
|
195
|
+
associations: {
|
|
196
|
+
|
|
197
|
+
/**
|
|
198
|
+
* Receives id(or many ids) of the controls that label this control.
|
|
199
|
+
*/
|
|
200
|
+
ariaLabelledBy: {
|
|
201
|
+
type: "sap.ui.core.Control",
|
|
202
|
+
multiple: true,
|
|
203
|
+
mapping: {
|
|
204
|
+
type: "property",
|
|
205
|
+
to: "accessibleNameRef",
|
|
206
|
+
formatter: "_getAriaLabelledByForRendering"
|
|
207
|
+
}
|
|
208
|
+
}
|
|
209
|
+
},
|
|
169
210
|
events: {
|
|
170
211
|
|
|
171
212
|
/**
|
|
@@ -178,5 +219,19 @@ sap.ui.define([
|
|
|
178
219
|
}
|
|
179
220
|
});
|
|
180
221
|
|
|
222
|
+
EnabledPropagator.call(CheckBox.prototype);
|
|
223
|
+
|
|
224
|
+
/* CUSTOM CODE START */
|
|
225
|
+
|
|
226
|
+
/**
|
|
227
|
+
* Checkbox without label must not be stretched in Form.
|
|
228
|
+
* @returns {boolean} True if the <code>Form</code> should not adjust the width of the CheckBox component wrapper
|
|
229
|
+
*/
|
|
230
|
+
CheckBox.prototype.getFormDoNotAdjustWidth = function() {
|
|
231
|
+
return this.getText() ? false : true;
|
|
232
|
+
};
|
|
233
|
+
|
|
234
|
+
/* CUSTOM CODE END */
|
|
235
|
+
|
|
181
236
|
return CheckBox;
|
|
182
237
|
});
|
|
@@ -8,7 +8,8 @@
|
|
|
8
8
|
sap.ui.define([
|
|
9
9
|
"sap/ui/webc/common/WebComponent",
|
|
10
10
|
"./library",
|
|
11
|
-
"./thirdparty/ColorPalette"
|
|
11
|
+
"./thirdparty/ColorPalette",
|
|
12
|
+
"./thirdparty/features/ColorPaletteMoreColors"
|
|
12
13
|
], function(WebComponent, library) {
|
|
13
14
|
"use strict";
|
|
14
15
|
|
|
@@ -28,7 +29,7 @@ sap.ui.define([
|
|
|
28
29
|
* 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
30
|
*
|
|
30
31
|
* @author SAP SE
|
|
31
|
-
* @version 1.
|
|
32
|
+
* @version 1.100.0
|
|
32
33
|
*
|
|
33
34
|
* @constructor
|
|
34
35
|
* @public
|
|
@@ -71,5 +72,8 @@ sap.ui.define([
|
|
|
71
72
|
}
|
|
72
73
|
});
|
|
73
74
|
|
|
75
|
+
/* CUSTOM CODE START */
|
|
76
|
+
/* CUSTOM CODE END */
|
|
77
|
+
|
|
74
78
|
return ColorPalette;
|
|
75
79
|
});
|
|
@@ -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.100.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
|
});
|
|
@@ -8,7 +8,8 @@
|
|
|
8
8
|
sap.ui.define([
|
|
9
9
|
"sap/ui/webc/common/WebComponent",
|
|
10
10
|
"./library",
|
|
11
|
-
"./thirdparty/ColorPalettePopover"
|
|
11
|
+
"./thirdparty/ColorPalettePopover",
|
|
12
|
+
"./thirdparty/features/ColorPaletteMoreColors"
|
|
12
13
|
], function(WebComponent, library) {
|
|
13
14
|
"use strict";
|
|
14
15
|
|
|
@@ -32,7 +33,7 @@ sap.ui.define([
|
|
|
32
33
|
* 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
|
*
|
|
34
35
|
* @author SAP SE
|
|
35
|
-
* @version 1.
|
|
36
|
+
* @version 1.100.0
|
|
36
37
|
*
|
|
37
38
|
* @constructor
|
|
38
39
|
* @public
|
|
@@ -78,14 +79,14 @@ sap.ui.define([
|
|
|
78
79
|
defaultValue: false
|
|
79
80
|
}
|
|
80
81
|
},
|
|
81
|
-
defaultAggregation: "
|
|
82
|
+
defaultAggregation: "colors",
|
|
82
83
|
aggregations: {
|
|
83
84
|
|
|
84
85
|
/**
|
|
85
86
|
* Defines the content of the component.
|
|
86
87
|
*/
|
|
87
|
-
|
|
88
|
-
type: "sap.ui.
|
|
88
|
+
colors: {
|
|
89
|
+
type: "sap.ui.webc.main.IColorPaletteItem",
|
|
89
90
|
multiple: true
|
|
90
91
|
}
|
|
91
92
|
},
|
|
@@ -104,9 +105,29 @@ sap.ui.define([
|
|
|
104
105
|
}
|
|
105
106
|
}
|
|
106
107
|
}
|
|
107
|
-
}
|
|
108
|
+
},
|
|
109
|
+
methods: ["openPopover", "showAt"]
|
|
108
110
|
}
|
|
109
111
|
});
|
|
110
112
|
|
|
113
|
+
/**
|
|
114
|
+
* Shows the ColorPalettePopover. <b>Note:</b> The method is deprecated and will be removed in future, use <code>showAt</code> instead.
|
|
115
|
+
* @param {HTMLElement} opener the element that the popover is shown at
|
|
116
|
+
* @public
|
|
117
|
+
* @name sap.ui.webc.main.ColorPalettePopover#openPopover
|
|
118
|
+
* @function
|
|
119
|
+
*/
|
|
120
|
+
|
|
121
|
+
/**
|
|
122
|
+
* Shows the ColorPalettePopover.
|
|
123
|
+
* @param {HTMLElement} opener the element that the popover is shown at
|
|
124
|
+
* @public
|
|
125
|
+
* @name sap.ui.webc.main.ColorPalettePopover#showAt
|
|
126
|
+
* @function
|
|
127
|
+
*/
|
|
128
|
+
|
|
129
|
+
/* CUSTOM CODE START */
|
|
130
|
+
/* CUSTOM CODE END */
|
|
131
|
+
|
|
111
132
|
return ColorPalettePopover;
|
|
112
|
-
});
|
|
133
|
+
});
|
|
@@ -35,7 +35,7 @@ sap.ui.define([
|
|
|
35
35
|
* </ul>
|
|
36
36
|
*
|
|
37
37
|
* @author SAP SE
|
|
38
|
-
* @version 1.
|
|
38
|
+
* @version 1.100.0
|
|
39
39
|
*
|
|
40
40
|
* @constructor
|
|
41
41
|
* @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 ColorPicker;
|
|
75
78
|
});
|
|
@@ -8,9 +8,10 @@
|
|
|
8
8
|
sap.ui.define([
|
|
9
9
|
"sap/ui/webc/common/WebComponent",
|
|
10
10
|
"./library",
|
|
11
|
+
"sap/ui/core/EnabledPropagator",
|
|
11
12
|
"sap/ui/core/library",
|
|
12
13
|
"./thirdparty/ComboBox"
|
|
13
|
-
], function(WebComponent, library, coreLibrary) {
|
|
14
|
+
], function(WebComponent, library, EnabledPropagator, coreLibrary) {
|
|
14
15
|
"use strict";
|
|
15
16
|
|
|
16
17
|
var ValueState = coreLibrary.ValueState;
|
|
@@ -28,57 +29,71 @@ sap.ui.define([
|
|
|
28
29
|
*
|
|
29
30
|
* 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
31
|
*
|
|
31
|
-
* It is commonly used to enable users to select an option from a predefined list.
|
|
32
|
+
* It is commonly used to enable users to select an option from a predefined list.
|
|
33
|
+
*
|
|
34
|
+
* <h3>Structure</h3> The <code>sap.ui.webc.main.ComboBox</code> consists of the following elements:
|
|
32
35
|
* <ul>
|
|
33
36
|
* <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
37
|
* <li> Drop-down arrow - expands\collapses the option list.</li>
|
|
35
38
|
* <li> Option list - the list of available options.</li>
|
|
36
39
|
* </ul>
|
|
40
|
+
*
|
|
37
41
|
* <h3>Keyboard Handling</h3>
|
|
38
42
|
*
|
|
39
|
-
* The <code>sap.ui.webc.main.ComboBox</code> provides advanced keyboard handling.
|
|
43
|
+
* The <code>sap.ui.webc.main.ComboBox</code> provides advanced keyboard handling. <br>
|
|
40
44
|
*
|
|
41
|
-
*
|
|
45
|
+
*
|
|
46
|
+
*
|
|
47
|
+
* <ul>
|
|
48
|
+
* <li>[F4], [ALT]+[UP], or [ALT]+[DOWN] - Toggles the picker.</li>
|
|
49
|
+
* <li>[ESC] - Closes the picker, if open. If closed, cancels changes and reverts the typed in value.</li>
|
|
50
|
+
* <li>[ENTER] or [RETURN] - If picker is open, takes over the currently selected item and closes it.</li>
|
|
51
|
+
* <li>[DOWN] - Selects the next matching item in the picker.</li>
|
|
52
|
+
* <li>[UP] - Selects the previous matching item in the picker.</li>
|
|
53
|
+
* <li>[PAGEDOWN] - Moves selection down by page size (10 items by default).</li>
|
|
54
|
+
* <li>[PAGEUP] - Moves selection up by page size (10 items by default). </li>
|
|
55
|
+
* <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>
|
|
56
|
+
* <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>
|
|
57
|
+
* </ul>
|
|
42
58
|
*
|
|
43
59
|
* @author SAP SE
|
|
44
|
-
* @version 1.
|
|
60
|
+
* @version 1.100.0
|
|
45
61
|
*
|
|
46
62
|
* @constructor
|
|
47
63
|
* @public
|
|
48
64
|
* @since 1.92.0
|
|
49
65
|
* @experimental Since 1.92.0 This control is experimental and its API might change significantly.
|
|
50
66
|
* @alias sap.ui.webc.main.ComboBox
|
|
67
|
+
* @implements sap.ui.core.IFormContent
|
|
51
68
|
* @ui5-metamodel This control/element also will be described in the UI5 (legacy) designtime metamodel
|
|
52
69
|
*/
|
|
53
70
|
var ComboBox = WebComponent.extend("sap.ui.webc.main.ComboBox", {
|
|
54
71
|
metadata: {
|
|
55
72
|
library: "sap.ui.webc.main",
|
|
56
73
|
tag: "ui5-combobox-ui5",
|
|
74
|
+
interfaces: [
|
|
75
|
+
"sap.ui.core.IFormContent"
|
|
76
|
+
],
|
|
57
77
|
properties: {
|
|
58
78
|
|
|
59
79
|
/**
|
|
60
|
-
*
|
|
80
|
+
* Defines the accessible aria name of the component.
|
|
61
81
|
*/
|
|
62
82
|
accessibleName: {
|
|
63
83
|
type: "string"
|
|
64
84
|
},
|
|
65
85
|
|
|
66
86
|
/**
|
|
67
|
-
*
|
|
68
|
-
*/
|
|
69
|
-
accessibleNameRef: {
|
|
70
|
-
type: "string",
|
|
71
|
-
defaultValue: ""
|
|
72
|
-
},
|
|
73
|
-
|
|
74
|
-
/**
|
|
75
|
-
* Defines whether the component is in disabled state. <br>
|
|
76
|
-
* <br>
|
|
77
|
-
* <b>Note:</b> A disabled component is completely noninteractive.
|
|
87
|
+
* Defines whether the control is enabled. A disabled control can't be interacted with, and it is not in the tab chain.
|
|
78
88
|
*/
|
|
79
|
-
|
|
89
|
+
enabled: {
|
|
80
90
|
type: "boolean",
|
|
81
|
-
defaultValue:
|
|
91
|
+
defaultValue: true,
|
|
92
|
+
mapping: {
|
|
93
|
+
type: "attribute",
|
|
94
|
+
to: "disabled",
|
|
95
|
+
formatter: "_mapEnabled"
|
|
96
|
+
}
|
|
82
97
|
},
|
|
83
98
|
|
|
84
99
|
/**
|
|
@@ -194,6 +209,21 @@ sap.ui.define([
|
|
|
194
209
|
multiple: true
|
|
195
210
|
}
|
|
196
211
|
},
|
|
212
|
+
associations: {
|
|
213
|
+
|
|
214
|
+
/**
|
|
215
|
+
* Receives id(or many ids) of the controls that label this control.
|
|
216
|
+
*/
|
|
217
|
+
ariaLabelledBy: {
|
|
218
|
+
type: "sap.ui.core.Control",
|
|
219
|
+
multiple: true,
|
|
220
|
+
mapping: {
|
|
221
|
+
type: "property",
|
|
222
|
+
to: "accessibleNameRef",
|
|
223
|
+
formatter: "_getAriaLabelledByForRendering"
|
|
224
|
+
}
|
|
225
|
+
}
|
|
226
|
+
},
|
|
197
227
|
events: {
|
|
198
228
|
|
|
199
229
|
/**
|
|
@@ -229,5 +259,10 @@ sap.ui.define([
|
|
|
229
259
|
}
|
|
230
260
|
});
|
|
231
261
|
|
|
262
|
+
EnabledPropagator.call(ComboBox.prototype);
|
|
263
|
+
|
|
264
|
+
/* CUSTOM CODE START */
|
|
265
|
+
/* CUSTOM CODE END */
|
|
266
|
+
|
|
232
267
|
return ComboBox;
|
|
233
268
|
});
|
|
@@ -24,7 +24,7 @@ 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.100.0
|
|
28
28
|
*
|
|
29
29
|
* @constructor
|
|
30
30
|
* @public
|
|
@@ -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.100.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.100.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
|
});
|
|
@@ -8,9 +8,11 @@
|
|
|
8
8
|
sap.ui.define([
|
|
9
9
|
"sap/ui/webc/common/WebComponent",
|
|
10
10
|
"./library",
|
|
11
|
+
"sap/ui/core/EnabledPropagator",
|
|
11
12
|
"sap/ui/core/library",
|
|
12
|
-
"./thirdparty/DatePicker"
|
|
13
|
-
|
|
13
|
+
"./thirdparty/DatePicker",
|
|
14
|
+
"./thirdparty/features/InputElementsFormSupport"
|
|
15
|
+
], function(WebComponent, library, EnabledPropagator, coreLibrary) {
|
|
14
16
|
"use strict";
|
|
15
17
|
|
|
16
18
|
var CalendarType = coreLibrary.CalendarType;
|
|
@@ -50,7 +52,7 @@ sap.ui.define([
|
|
|
50
52
|
* <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
53
|
*
|
|
52
54
|
*
|
|
53
|
-
* If the <code>sap.ui.webc.main.DatePicker</code> is focused and
|
|
55
|
+
* 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
56
|
*
|
|
55
57
|
* <ul>
|
|
56
58
|
* <li>[PAGEDOWN] - Decrements the corresponding day of the month by one</li>
|
|
@@ -74,19 +76,23 @@ sap.ui.define([
|
|
|
74
76
|
* </script></code></pre>
|
|
75
77
|
*
|
|
76
78
|
* @author SAP SE
|
|
77
|
-
* @version 1.
|
|
79
|
+
* @version 1.100.0
|
|
78
80
|
*
|
|
79
81
|
* @constructor
|
|
80
82
|
* @public
|
|
81
83
|
* @since 1.92.0
|
|
82
84
|
* @experimental Since 1.92.0 This control is experimental and its API might change significantly.
|
|
83
85
|
* @alias sap.ui.webc.main.DatePicker
|
|
86
|
+
* @implements sap.ui.core.IFormContent
|
|
84
87
|
* @ui5-metamodel This control/element also will be described in the UI5 (legacy) designtime metamodel
|
|
85
88
|
*/
|
|
86
89
|
var DatePicker = WebComponent.extend("sap.ui.webc.main.DatePicker", {
|
|
87
90
|
metadata: {
|
|
88
91
|
library: "sap.ui.webc.main",
|
|
89
92
|
tag: "ui5-date-picker-ui5",
|
|
93
|
+
interfaces: [
|
|
94
|
+
"sap.ui.core.IFormContent"
|
|
95
|
+
],
|
|
90
96
|
properties: {
|
|
91
97
|
|
|
92
98
|
/**
|
|
@@ -97,19 +103,16 @@ sap.ui.define([
|
|
|
97
103
|
},
|
|
98
104
|
|
|
99
105
|
/**
|
|
100
|
-
*
|
|
106
|
+
* Defines whether the control is enabled. A disabled control can't be interacted with, and it is not in the tab chain.
|
|
101
107
|
*/
|
|
102
|
-
|
|
103
|
-
type: "string",
|
|
104
|
-
defaultValue: ""
|
|
105
|
-
},
|
|
106
|
-
|
|
107
|
-
/**
|
|
108
|
-
* Determines whether the component is displayed as disabled.
|
|
109
|
-
*/
|
|
110
|
-
disabled: {
|
|
108
|
+
enabled: {
|
|
111
109
|
type: "boolean",
|
|
112
|
-
defaultValue:
|
|
110
|
+
defaultValue: true,
|
|
111
|
+
mapping: {
|
|
112
|
+
type: "attribute",
|
|
113
|
+
to: "disabled",
|
|
114
|
+
formatter: "_mapEnabled"
|
|
115
|
+
}
|
|
113
116
|
},
|
|
114
117
|
|
|
115
118
|
/**
|
|
@@ -255,6 +258,21 @@ sap.ui.define([
|
|
|
255
258
|
mapping: "style"
|
|
256
259
|
}
|
|
257
260
|
},
|
|
261
|
+
associations: {
|
|
262
|
+
|
|
263
|
+
/**
|
|
264
|
+
* Receives id(or many ids) of the controls that label this control.
|
|
265
|
+
*/
|
|
266
|
+
ariaLabelledBy: {
|
|
267
|
+
type: "sap.ui.core.Control",
|
|
268
|
+
multiple: true,
|
|
269
|
+
mapping: {
|
|
270
|
+
type: "property",
|
|
271
|
+
to: "accessibleNameRef",
|
|
272
|
+
formatter: "_getAriaLabelledByForRendering"
|
|
273
|
+
}
|
|
274
|
+
}
|
|
275
|
+
},
|
|
258
276
|
events: {
|
|
259
277
|
|
|
260
278
|
/**
|
|
@@ -358,5 +376,10 @@ sap.ui.define([
|
|
|
358
376
|
* @function
|
|
359
377
|
*/
|
|
360
378
|
|
|
379
|
+
EnabledPropagator.call(DatePicker.prototype);
|
|
380
|
+
|
|
381
|
+
/* CUSTOM CODE START */
|
|
382
|
+
/* CUSTOM CODE END */
|
|
383
|
+
|
|
361
384
|
return DatePicker;
|
|
362
385
|
});
|