@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
package/.reuse/dep5
CHANGED
|
@@ -28,7 +28,7 @@ Disclaimer: The code in this project may include calls to APIs (“API Calls”)
|
|
|
28
28
|
# OpenUI5 code
|
|
29
29
|
|
|
30
30
|
Files: *
|
|
31
|
-
Copyright: 2009-
|
|
31
|
+
Copyright: 2009-2022 SAP SE or an SAP affiliate company and OpenUI5 contributors
|
|
32
32
|
License: Apache-2.0
|
|
33
33
|
|
|
34
34
|
|
|
@@ -60,7 +60,7 @@ Comment: these files belong to: jQuery UI
|
|
|
60
60
|
|
|
61
61
|
Files: src/sap.ui.commons/src/sap/ui/commons/Carousel.js
|
|
62
62
|
Copyright:
|
|
63
|
-
2009-
|
|
63
|
+
2009-2022 SAP SE or an SAP affiliate company and OpenUI5 contributors
|
|
64
64
|
Spencer Tipping
|
|
65
65
|
License: Apache-2.0 and MIT
|
|
66
66
|
Comment: these files contain content from SAP and jquery.fix.clone: Carousel.js is authored by SAP, but contains an improved implementation of the clone function which is taken from jquery-fix-clone
|
|
@@ -75,35 +75,35 @@ Comment: these files belong to: jQuery 3
|
|
|
75
75
|
|
|
76
76
|
Files: src/sap.ui.core/src/sap/base/util/isPlainObject.js
|
|
77
77
|
Copyright:
|
|
78
|
-
2009-
|
|
78
|
+
2009-2022 SAP SE or an SAP affiliate company and OpenUI5 contributors
|
|
79
79
|
OpenJS Foundation and other contributors
|
|
80
80
|
License: Apache-2.0 and MIT
|
|
81
81
|
Comment: these files contain content from SAP and jQuery 3: isPlainObject.js is overall written by SAP, but contains a modified implementation of jQuery.isPlainObject taken from jQuery
|
|
82
82
|
|
|
83
83
|
Files: src/sap.ui.core/src/sap/base/util/_merge.js
|
|
84
84
|
Copyright:
|
|
85
|
-
2009-
|
|
85
|
+
2009-2022 SAP SE or an SAP affiliate company and OpenUI5 contributors
|
|
86
86
|
OpenJS Foundation and other contributors
|
|
87
87
|
License: Apache-2.0 and MIT
|
|
88
88
|
Comment: these files contain content from SAP and jQuery 3: _merge.js is overall written by SAP, but contains a modified implementation of jQuery.extend taken from jQuery
|
|
89
89
|
|
|
90
90
|
Files: src/sap.ui.core/src/jquery.sap.script.js
|
|
91
91
|
Copyright:
|
|
92
|
-
2009-
|
|
92
|
+
2009-2022 SAP SE or an SAP affiliate company and OpenUI5 contributors
|
|
93
93
|
OpenJS Foundation and other contributors
|
|
94
94
|
License: Apache-2.0 and MIT
|
|
95
95
|
Comment: these files contain content from SAP and jQuery 3: jquery.sap.script.js is overall written by SAP, but contains a modified implementation of jQuery.extend taken from jQuery
|
|
96
96
|
|
|
97
97
|
Files: src/sap.ui.core/src/sap/ui/Device.js
|
|
98
98
|
Copyright:
|
|
99
|
-
2009-
|
|
99
|
+
2009-2022 SAP SE or an SAP affiliate company and OpenUI5 contributors
|
|
100
100
|
2011, John Resig
|
|
101
101
|
License: Apache-2.0 and MIT
|
|
102
102
|
Comment: these files contain content from SAP and jQuery 1: Device.js is overall written by SAP, but contains code taken from jQuery 1.7.1 (see the respective comment)
|
|
103
103
|
|
|
104
104
|
Files: src/sap.ui.core/src/sap/ui/dom/jquery/Selectors.js
|
|
105
105
|
Copyright:
|
|
106
|
-
2009-
|
|
106
|
+
2009-2022 SAP SE or an SAP affiliate company and OpenUI5 contributors
|
|
107
107
|
2014 jQuery Foundation and other contributors
|
|
108
108
|
License: Apache-2.0 and MIT
|
|
109
109
|
Comment: these files contain content from SAP and jQuery UI 1.8: Selectors.js is overall written by SAP, but contains code taken from jQuery UI (see the respective comments)
|
|
@@ -115,14 +115,14 @@ Comment: these files belong to: jQuery UI 1.10
|
|
|
115
115
|
|
|
116
116
|
Files: src/sap.ui.core/src/jquery.sap.dom.js
|
|
117
117
|
Copyright:
|
|
118
|
-
2009-
|
|
118
|
+
2009-2022 SAP SE or an SAP affiliate company and OpenUI5 contributors
|
|
119
119
|
2014 jQuery Foundation and other contributors
|
|
120
120
|
License: Apache-2.0 and MIT
|
|
121
121
|
Comment: these files contain content from SAP and jQuery UI 1.10: jquery.sap.dom.js is overall written by SAP, but contains code taken from jQuery UI Core (see the respective comment)
|
|
122
122
|
|
|
123
123
|
Files: src/sap.ui.core/src/sap/ui/dom/jquery/zIndex.js
|
|
124
124
|
Copyright:
|
|
125
|
-
2009-
|
|
125
|
+
2009-2022 SAP SE or an SAP affiliate company and OpenUI5 contributors
|
|
126
126
|
2014 jQuery Foundation and other contributors
|
|
127
127
|
License: Apache-2.0 and MIT
|
|
128
128
|
Comment: these files contain content from SAP and jQuery UI 1.11: zIndex.js is overall written by SAP, but contains an implementation of the function 'fnzIndex' which is taken from jQuery UI Datepicker 1.11.1
|
|
@@ -149,7 +149,7 @@ Comment: these files belong to: jQuery Mobile
|
|
|
149
149
|
|
|
150
150
|
Files: src/sap.ui.core/src/sap/ui/util/_FeatureDetection.js
|
|
151
151
|
Copyright:
|
|
152
|
-
2009-
|
|
152
|
+
2009-2022 SAP SE or an SAP affiliate company and OpenUI5 contributors
|
|
153
153
|
2012 Wei-Ko Kao
|
|
154
154
|
License: Apache-2.0 and MIT
|
|
155
155
|
Comment: these files contain content from SAP and jQuery.rtl-scroll-type: _FeatureDetection.js is overall written by SAP, but contains code which is inspired by jQuery.rtl-scroll-type
|
|
@@ -281,14 +281,14 @@ Comment: these files belong to: blanket.js
|
|
|
281
281
|
|
|
282
282
|
Files: src/sap.ui.core/src/sap/base/util/JSTokenizer.js
|
|
283
283
|
Copyright:
|
|
284
|
-
2009-
|
|
284
|
+
2009-2022 SAP SE or an SAP affiliate company and OpenUI5 contributors
|
|
285
285
|
Douglas Crockford
|
|
286
286
|
License: Apache-2.0 and LicenseRef-JSONinJSPublicDomain
|
|
287
287
|
Comment: these files contain content from SAP and JSON in JS: JSTokenizer.js is overall written by SAP, but contains code has been taken from the component JSON in JavaScript (https://github.com/douglascrockford/JSON-js/blob/master/json2.js) from Douglas Crockford which is licensed under Public Domain
|
|
288
288
|
|
|
289
289
|
Files: src/sap.ui.core/src/sap/ui/base/ExpressionParser.js
|
|
290
290
|
Copyright:
|
|
291
|
-
2009-
|
|
291
|
+
2009-2022 SAP SE or an SAP affiliate company and OpenUI5 contributors
|
|
292
292
|
2010 Douglas Crockford
|
|
293
293
|
License: Apache-2.0
|
|
294
294
|
Comment: these files contain content from SAP and Top Down Operator Precedence: ExpressionParser.js is overall written by SAP, but contains code taken from or inspired by TDOP by Douglas Crockford (see the respective comment)
|
|
@@ -322,7 +322,7 @@ Comment: these files contain content from p-cancelable and @babel/helpers: _Canc
|
|
|
322
322
|
|
|
323
323
|
Files: src/sap.ui.core/src/sap/ui/core/date/Persian.js
|
|
324
324
|
Copyright:
|
|
325
|
-
2009-
|
|
325
|
+
2009-2022 SAP SE or an SAP affiliate company and OpenUI5 contributors
|
|
326
326
|
Behrang Norouzinia
|
|
327
327
|
License: Apache-2.0 and MIT
|
|
328
328
|
Comment: these files contain content from SAP and Jalaali JS: Persian.js is overall written by SAP, but the calculation is taken from jalaali-js
|
|
@@ -334,7 +334,7 @@ Comment: these files belong to: vkBeautify
|
|
|
334
334
|
|
|
335
335
|
Files: src/sap.ui.core/src/sap/ui/core/cache/LRUPersistentCache.js
|
|
336
336
|
Copyright:
|
|
337
|
-
2009-
|
|
337
|
+
2009-2022 SAP SE or an SAP affiliate company and OpenUI5 contributors
|
|
338
338
|
Isaac Z. Schlueter and Contributors
|
|
339
339
|
License: Apache-2.0 and ISC
|
|
340
340
|
Comment: these files contain content from SAP and node-lru-cache: LRUPersistentCache.js is overall written by SAP, but portions ('Least Recently Used' logic) are taken from the node-lru-cache project (see https://github.com/isaacs/node-lru-cache/blob/v2.7.3/README.md) and modified.
|
|
@@ -370,21 +370,11 @@ Comment: these files belong to: Buttons extension for DataTables
|
|
|
370
370
|
|
|
371
371
|
# Library: sap.ui.integration:
|
|
372
372
|
|
|
373
|
-
Files: src/sap.ui.integration/src/sap/ui/integration/thirdparty/webcomponents
|
|
373
|
+
Files: src/sap.ui.integration/src/sap/ui/integration/thirdparty/webcomponents/*
|
|
374
374
|
Copyright: SAP
|
|
375
375
|
License: Apache-2.0
|
|
376
376
|
Comment: these files belong to: UI5 Web Components
|
|
377
377
|
|
|
378
|
-
Files: src/sap.ui.integration/src/sap/ui/integration/thirdparty/webcomponents/webcomponentsjs/*
|
|
379
|
-
Copyright: 2015 The Polymer Authors
|
|
380
|
-
License: BSD-3-Clause
|
|
381
|
-
Comment: these files belong to: Webcomponentsjs
|
|
382
|
-
|
|
383
|
-
Files: src/sap.ui.integration/src/sap/ui/integration/thirdparty/webcomponents/Unicode-Data-Files-LICENSE.txt
|
|
384
|
-
Copyright: 1991-2014 Unicode, Inc.
|
|
385
|
-
License: Unicode-DFS-2015
|
|
386
|
-
Comment: these files belong to: Unicode Common Locale Data Repository
|
|
387
|
-
|
|
388
378
|
Files: src/sap.ui.integration/src/sap/ui/integration/thirdparty/adaptivecards.js src/sap.ui.integration/src/sap/ui/integration/schemas/adaptive-card.json
|
|
389
379
|
Copyright: 2017 Microsoft
|
|
390
380
|
License: MIT
|
|
@@ -395,22 +385,27 @@ Copyright: 2017 Microsoft
|
|
|
395
385
|
License: MIT
|
|
396
386
|
Comment: these files belong to: Adaptive Cards Templating
|
|
397
387
|
|
|
388
|
+
Files: src/sap.ui.integration/src/sap/ui/integration/thirdparty/adaptive-expressions.js
|
|
389
|
+
Copyright: Microsoft
|
|
390
|
+
License: MIT
|
|
391
|
+
Comment: these files belong to: Adaptive Expressions
|
|
392
|
+
|
|
398
393
|
Files: src/sap.ui.integration/src/sap/ui/integration/thirdparty/markdown-it.js
|
|
399
394
|
Copyright: 2014 Vitaly Puzrin, Alex Kocharin
|
|
400
395
|
License: MIT
|
|
401
396
|
Comment: these files belong to: Markdown-it
|
|
402
397
|
|
|
403
|
-
Files: src/sap.ui.integration/test/sap/ui/integration/demokit/cardExplorer/webapp/thirdparty/
|
|
404
|
-
Copyright:
|
|
398
|
+
Files: src/sap.ui.integration/test/sap/ui/integration/demokit/cardExplorer/webapp/thirdparty/CfWorkerJsonSchemaValidator.js
|
|
399
|
+
Copyright: 2020 Jeremy Danyow
|
|
405
400
|
License: MIT
|
|
406
|
-
Comment: these files belong to:
|
|
401
|
+
Comment: these files belong to: @cfworker/json-schema
|
|
407
402
|
|
|
408
403
|
|
|
409
404
|
# Library: sap.ui.mdc:
|
|
410
405
|
|
|
411
406
|
Files: src/sap.ui.mdc/test/sap/ui/mdc/sample/field/filterfieldwithoperators/BoolExprTool.js
|
|
412
407
|
Copyright:
|
|
413
|
-
2009-
|
|
408
|
+
2009-2022 SAP SE or an SAP affiliate company and OpenUI5 contributors
|
|
414
409
|
2015 unnikked
|
|
415
410
|
License: Apache-2.0 and MIT
|
|
416
411
|
Comment: these files contain content from SAP and BooleanExpressionEvaluator: BoolExprTool.js is authored by SAP, but partly inspired by BooleanExpressionEvaluator
|
|
@@ -454,7 +449,7 @@ Comment: these files belong to: LESS
|
|
|
454
449
|
|
|
455
450
|
Files: lib/jsdoc/ui5/plugin.js
|
|
456
451
|
Copyright:
|
|
457
|
-
2009-
|
|
452
|
+
2009-2022 SAP SE or an SAP affiliate company and OpenUI5 contributors
|
|
458
453
|
2011-present Michael Mathews micmath@gmail.com and the contributors to JSDoc
|
|
459
454
|
License: Apache-2.0
|
|
460
455
|
Comment: these files contain content from SAP and JSDoc 3: plugin.js is overall written by SAP, but contains code taken from JSDoc 3.6.7 (see the respective comments)
|
package/THIRDPARTY.txt
CHANGED
|
@@ -197,7 +197,7 @@ License: BSD-3-Clause
|
|
|
197
197
|
License Text: https://github.com/SAP/openui5/blob/master/LICENSES/BSD-3-Clause.txt
|
|
198
198
|
Contained in: src/sap.ui.core/src/sap/ui/thirdparty/sinon-qunit.js
|
|
199
199
|
|
|
200
|
-
Component: URI.js, version: 1.19.
|
|
200
|
+
Component: URI.js, version: 1.19.10
|
|
201
201
|
Copyright: Rodney Rehm
|
|
202
202
|
License: MIT
|
|
203
203
|
License Text: https://github.com/SAP/openui5/blob/master/LICENSES/MIT.txt
|
|
@@ -351,24 +351,11 @@ Contained in: src/sap.ui.documentation/src/sap/ui/documentation/sdk/thirdparty/D
|
|
|
351
351
|
|
|
352
352
|
Library: sap.ui.integration:
|
|
353
353
|
|
|
354
|
-
Component: UI5 Web Components, version: 1.0.
|
|
354
|
+
Component: UI5 Web Components, version: 1.0.1
|
|
355
355
|
Copyright: SAP
|
|
356
356
|
License: Apache-2.0
|
|
357
357
|
License Text: https://github.com/SAP/openui5/blob/master/LICENSES/Apache-2.0.txt
|
|
358
|
-
Contained in: src/sap.ui.integration/src/sap/ui/integration/thirdparty/webcomponents
|
|
359
|
-
src/sap.ui.integration/src/sap/ui/integration/thirdparty/webcomponents/bundle*
|
|
360
|
-
|
|
361
|
-
Component: Webcomponentsjs, version: 1.0.2
|
|
362
|
-
Copyright: 2015 The Polymer Authors
|
|
363
|
-
License: BSD-3-Clause
|
|
364
|
-
License Text: https://github.com/SAP/openui5/blob/master/LICENSES/BSD-3-Clause.txt
|
|
365
|
-
Contained in: src/sap.ui.integration/src/sap/ui/integration/thirdparty/webcomponents/webcomponentsjs/*
|
|
366
|
-
|
|
367
|
-
Component: Unicode Common Locale Data Repository
|
|
368
|
-
Copyright: 1991-2014 Unicode, Inc.
|
|
369
|
-
License: Unicode-DFS-2015
|
|
370
|
-
License Text: https://github.com/SAP/openui5/blob/master/LICENSES/Unicode-DFS-2015.txt
|
|
371
|
-
Contained in: src/sap.ui.integration/src/sap/ui/integration/thirdparty/webcomponents/Unicode-Data-Files-LICENSE.txt
|
|
358
|
+
Contained in: src/sap.ui.integration/src/sap/ui/integration/thirdparty/webcomponents/*
|
|
372
359
|
|
|
373
360
|
Component: Adaptive Cards, version: 2.9.0
|
|
374
361
|
Copyright: 2017 Microsoft
|
|
@@ -377,23 +364,29 @@ License Text: https://github.com/SAP/openui5/blob/master/LICENSES/MIT.txt
|
|
|
377
364
|
Contained in: src/sap.ui.integration/src/sap/ui/integration/thirdparty/adaptivecards.js
|
|
378
365
|
src/sap.ui.integration/src/sap/ui/integration/schemas/adaptive-card.json
|
|
379
366
|
|
|
380
|
-
Component: Adaptive Cards Templating, version:
|
|
367
|
+
Component: Adaptive Cards Templating, version: 2.2.0
|
|
381
368
|
Copyright: 2017 Microsoft
|
|
382
369
|
License: MIT
|
|
383
370
|
License Text: https://github.com/SAP/openui5/blob/master/LICENSES/MIT.txt
|
|
384
371
|
Contained in: src/sap.ui.integration/src/sap/ui/integration/thirdparty/adaptivecards-templating.js
|
|
385
372
|
|
|
386
|
-
Component:
|
|
373
|
+
Component: Adaptive Expressions, version: 4.15.0
|
|
374
|
+
Copyright: Microsoft
|
|
375
|
+
License: MIT
|
|
376
|
+
License Text: https://github.com/SAP/openui5/blob/master/LICENSES/MIT.txt
|
|
377
|
+
Contained in: src/sap.ui.integration/src/sap/ui/integration/thirdparty/adaptive-expressions.js
|
|
378
|
+
|
|
379
|
+
Component: Markdown-it, version: 12.2.0
|
|
387
380
|
Copyright: 2014 Vitaly Puzrin, Alex Kocharin
|
|
388
381
|
License: MIT
|
|
389
382
|
License Text: https://github.com/SAP/openui5/blob/master/LICENSES/MIT.txt
|
|
390
383
|
Contained in: src/sap.ui.integration/src/sap/ui/integration/thirdparty/markdown-it.js
|
|
391
384
|
|
|
392
|
-
Component:
|
|
393
|
-
Copyright:
|
|
385
|
+
Component: @cfworker/json-schema, version: 1.6.8
|
|
386
|
+
Copyright: 2020 Jeremy Danyow
|
|
394
387
|
License: MIT
|
|
395
388
|
License Text: https://github.com/SAP/openui5/blob/master/LICENSES/MIT.txt
|
|
396
|
-
Contained in: src/sap.ui.integration/test/sap/ui/integration/demokit/cardExplorer/webapp/thirdparty/
|
|
389
|
+
Contained in: src/sap.ui.integration/test/sap/ui/integration/demokit/cardExplorer/webapp/thirdparty/CfWorkerJsonSchemaValidator.js
|
|
397
390
|
|
|
398
391
|
|
|
399
392
|
Library: sap.ui.mdc:
|
|
@@ -457,7 +450,7 @@ License: Apache-2.0
|
|
|
457
450
|
License Text: https://github.com/SAP/openui5/blob/master/LICENSES/Apache-2.0.txt
|
|
458
451
|
Contained in: lib/jsdoc/ui5/plugin.js
|
|
459
452
|
|
|
460
|
-
Component: SAP Theming Base Content, version: 11.1.
|
|
453
|
+
Component: SAP Theming Base Content, version: 11.1.36-SNAPSHOT
|
|
461
454
|
Copyright: SAP SE or an SAP affiliate company and Theming Base Content contributors
|
|
462
455
|
License: Apache-2.0
|
|
463
456
|
License Text: https://github.com/SAP/openui5/blob/master/LICENSES/Apache-2.0.txt
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@openui5/sap.ui.webc.main",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.100.0",
|
|
4
4
|
"description": "OpenUI5 UI Library sap.ui.webc.main",
|
|
5
5
|
"author": "SAP SE (https://www.sap.com)",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
"url": "https://github.com/SAP/openui5.git"
|
|
17
17
|
},
|
|
18
18
|
"dependencies": {
|
|
19
|
-
"@openui5/sap.ui.core": "1.
|
|
20
|
-
"@openui5/sap.ui.webc.common": "1.
|
|
19
|
+
"@openui5/sap.ui.core": "1.100.0",
|
|
20
|
+
"@openui5/sap.ui.webc.common": "1.100.0"
|
|
21
21
|
}
|
|
22
22
|
}
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
<name>sap.ui.webc.main</name>
|
|
5
5
|
<vendor>SAP SE</vendor>
|
|
6
|
-
<version>1.
|
|
6
|
+
<version>1.100.0</version>
|
|
7
7
|
<copyright>OpenUI5
|
|
8
8
|
* (c) Copyright 2009-2022 SAP SE or an SAP affiliate company.
|
|
9
9
|
* Licensed under the Apache License, Version 2.0 - see LICENSE.txt.</copyright>
|
|
@@ -29,13 +29,17 @@
|
|
|
29
29
|
<exclude name="sap.ui.webc.main.thirdparty."/>
|
|
30
30
|
</jscoverage>
|
|
31
31
|
<!-- Thirdparty references -->
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
32
|
+
<thirdparty xmlns="http://www.sap.com/ui5/buildext/thirdparty" >
|
|
33
|
+
<lib name="ui5-web-components" displayName="UI5 Web Components" version="1.0.0-rc.12" homepage="https://sap.github.io/ui5-webcomponents/">
|
|
34
|
+
<license url="https://github.com/SAP/ui5-webcomponents/blob/master/LICENSE.txt" type="Apache-2.0"></license>
|
|
35
|
+
<copyright>SAP</copyright>
|
|
36
|
+
<pattern>sap/ui/webc/main/thirdparty/*.*</pattern>
|
|
37
|
+
</lib>
|
|
38
|
+
</thirdparty>
|
|
39
|
+
|
|
40
|
+
<documentation xmlns="http://www.sap.com/ui5/buildext/documentation"
|
|
41
|
+
indexUrl="../../../../../test-resources/sap/ui/webc/main/demokit/docuindex.json"
|
|
42
|
+
resolve="lib" />
|
|
39
43
|
|
|
40
44
|
<releasenotes xmlns="http://www.sap.com/ui5/buildext/releasenotes"
|
|
41
45
|
url="../../../../../test-resources/sap/ui/webc/main/relnotes/changes-{major}.{minor}.json"
|
|
@@ -43,7 +43,7 @@ sap.ui.define([
|
|
|
43
43
|
* <br>
|
|
44
44
|
*
|
|
45
45
|
* @author SAP SE
|
|
46
|
-
* @version 1.
|
|
46
|
+
* @version 1.100.0
|
|
47
47
|
*
|
|
48
48
|
* @constructor
|
|
49
49
|
* @public
|
|
@@ -156,7 +156,7 @@ sap.ui.define([
|
|
|
156
156
|
defaultValue: AvatarSize.S
|
|
157
157
|
}
|
|
158
158
|
},
|
|
159
|
-
defaultAggregation: "
|
|
159
|
+
defaultAggregation: "image",
|
|
160
160
|
aggregations: {
|
|
161
161
|
|
|
162
162
|
/**
|
|
@@ -164,13 +164,25 @@ sap.ui.define([
|
|
|
164
164
|
*
|
|
165
165
|
* <b>Note:</b> If you experience flickering of the provided image, you can hide the component until it is being defined with the following CSS: <br /> <br /> <code> ui5-avatar:not(:defined) { <br /> visibility: hidden; <br /> } <br /> </code>
|
|
166
166
|
*/
|
|
167
|
-
|
|
167
|
+
image: {
|
|
168
168
|
type: "sap.ui.core.Control",
|
|
169
169
|
multiple: false
|
|
170
170
|
}
|
|
171
|
+
},
|
|
172
|
+
events: {
|
|
173
|
+
|
|
174
|
+
/**
|
|
175
|
+
* Fired when the user clicks the control
|
|
176
|
+
*/
|
|
177
|
+
click: {
|
|
178
|
+
parameters: {}
|
|
179
|
+
}
|
|
171
180
|
}
|
|
172
181
|
}
|
|
173
182
|
});
|
|
174
183
|
|
|
184
|
+
/* CUSTOM CODE START */
|
|
185
|
+
/* CUSTOM CODE END */
|
|
186
|
+
|
|
175
187
|
return Avatar;
|
|
176
188
|
});
|
|
@@ -73,7 +73,7 @@ sap.ui.define([
|
|
|
73
73
|
* </ul> <br>
|
|
74
74
|
*
|
|
75
75
|
* @author SAP SE
|
|
76
|
-
* @version 1.
|
|
76
|
+
* @version 1.100.0
|
|
77
77
|
*
|
|
78
78
|
* @constructor
|
|
79
79
|
* @public
|
|
@@ -174,5 +174,8 @@ sap.ui.define([
|
|
|
174
174
|
* @function
|
|
175
175
|
*/
|
|
176
176
|
|
|
177
|
+
/* CUSTOM CODE START */
|
|
178
|
+
/* CUSTOM CODE END */
|
|
179
|
+
|
|
177
180
|
return AvatarGroup;
|
|
178
181
|
});
|
|
@@ -33,7 +33,7 @@ sap.ui.define([
|
|
|
33
33
|
* </ul>
|
|
34
34
|
*
|
|
35
35
|
* @author SAP SE
|
|
36
|
-
* @version 1.
|
|
36
|
+
* @version 1.100.0
|
|
37
37
|
*
|
|
38
38
|
* @constructor
|
|
39
39
|
* @public
|
|
@@ -81,5 +81,8 @@ sap.ui.define([
|
|
|
81
81
|
}
|
|
82
82
|
});
|
|
83
83
|
|
|
84
|
+
/* CUSTOM CODE START */
|
|
85
|
+
/* CUSTOM CODE END */
|
|
86
|
+
|
|
84
87
|
return Badge;
|
|
85
88
|
});
|
|
@@ -45,7 +45,7 @@ sap.ui.define([
|
|
|
45
45
|
* </ul> <br>
|
|
46
46
|
*
|
|
47
47
|
* @author SAP SE
|
|
48
|
-
* @version 1.
|
|
48
|
+
* @version 1.100.0
|
|
49
49
|
*
|
|
50
50
|
* @constructor
|
|
51
51
|
* @public
|
|
@@ -108,9 +108,10 @@ sap.ui.define([
|
|
|
108
108
|
events: {
|
|
109
109
|
|
|
110
110
|
/**
|
|
111
|
-
* Fires when a <code>BreadcrumbsItem</code> is clicked.
|
|
111
|
+
* Fires when a <code>BreadcrumbsItem</code> is clicked. <b>Note:</b> You can prevent browser location change by calling <code>event.preventDefault()</code>.
|
|
112
112
|
*/
|
|
113
113
|
itemClick: {
|
|
114
|
+
allowPreventDefault: true,
|
|
114
115
|
parameters: {
|
|
115
116
|
/**
|
|
116
117
|
* The clicked item.
|
|
@@ -124,5 +125,8 @@ sap.ui.define([
|
|
|
124
125
|
}
|
|
125
126
|
});
|
|
126
127
|
|
|
128
|
+
/* CUSTOM CODE START */
|
|
129
|
+
/* CUSTOM CODE END */
|
|
130
|
+
|
|
127
131
|
return Breadcrumbs;
|
|
128
|
-
});
|
|
132
|
+
});
|
|
@@ -26,7 +26,7 @@ sap.ui.define([
|
|
|
26
26
|
* The <code>sap.ui.webc.main.BreadcrumbsItem</code> component defines the content of an item in <code>ui5-breadcumbs</code>.
|
|
27
27
|
*
|
|
28
28
|
* @author SAP SE
|
|
29
|
-
* @version 1.
|
|
29
|
+
* @version 1.100.0
|
|
30
30
|
*
|
|
31
31
|
* @constructor
|
|
32
32
|
* @public
|
|
@@ -94,5 +94,8 @@ sap.ui.define([
|
|
|
94
94
|
}
|
|
95
95
|
});
|
|
96
96
|
|
|
97
|
+
/* CUSTOM CODE START */
|
|
98
|
+
/* CUSTOM CODE END */
|
|
99
|
+
|
|
97
100
|
return BreadcrumbsItem;
|
|
98
|
-
});
|
|
101
|
+
});
|
|
@@ -46,7 +46,7 @@ sap.ui.define([
|
|
|
46
46
|
* </ul>
|
|
47
47
|
*
|
|
48
48
|
* @author SAP SE
|
|
49
|
-
* @version 1.
|
|
49
|
+
* @version 1.100.0
|
|
50
50
|
*
|
|
51
51
|
* @constructor
|
|
52
52
|
* @public
|
|
@@ -136,5 +136,8 @@ sap.ui.define([
|
|
|
136
136
|
}
|
|
137
137
|
});
|
|
138
138
|
|
|
139
|
+
/* CUSTOM CODE START */
|
|
140
|
+
/* CUSTOM CODE END */
|
|
141
|
+
|
|
139
142
|
return BusyIndicator;
|
|
140
143
|
});
|
|
@@ -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/Button"
|
|
13
|
-
], function(WebComponent, library, coreLibrary) {
|
|
14
|
+
], function(WebComponent, library, EnabledPropagator, coreLibrary) {
|
|
14
15
|
"use strict";
|
|
15
16
|
|
|
16
17
|
var TextDirection = coreLibrary.TextDirection;
|
|
@@ -46,14 +47,14 @@ sap.ui.define([
|
|
|
46
47
|
* </ul>
|
|
47
48
|
*
|
|
48
49
|
* @author SAP SE
|
|
49
|
-
* @version 1.
|
|
50
|
+
* @version 1.100.0
|
|
50
51
|
*
|
|
51
52
|
* @constructor
|
|
52
53
|
* @public
|
|
53
54
|
* @since 1.92.0
|
|
54
55
|
* @experimental Since 1.92.0 This control is experimental and its API might change significantly.
|
|
55
56
|
* @alias sap.ui.webc.main.Button
|
|
56
|
-
* @implements sap.ui.webc.main.IButton
|
|
57
|
+
* @implements sap.ui.webc.main.IButton, sap.ui.core.IFormContent
|
|
57
58
|
* @ui5-metamodel This control/element also will be described in the UI5 (legacy) designtime metamodel
|
|
58
59
|
*/
|
|
59
60
|
var Button = WebComponent.extend("sap.ui.webc.main.Button", {
|
|
@@ -61,12 +62,43 @@ sap.ui.define([
|
|
|
61
62
|
library: "sap.ui.webc.main",
|
|
62
63
|
tag: "ui5-button-ui5",
|
|
63
64
|
interfaces: [
|
|
64
|
-
"sap.ui.webc.main.IButton"
|
|
65
|
+
"sap.ui.webc.main.IButton",
|
|
66
|
+
"sap.ui.core.IFormContent"
|
|
65
67
|
],
|
|
66
68
|
properties: {
|
|
67
69
|
|
|
68
70
|
/**
|
|
69
|
-
*
|
|
71
|
+
* An object of strings that defines several additional accessibility attribute values for customization depending on the use case.
|
|
72
|
+
*
|
|
73
|
+
* It supports the following fields:
|
|
74
|
+
*
|
|
75
|
+
*
|
|
76
|
+
* <ul>
|
|
77
|
+
* <li><code>expanded</code>: Indicates whether the button, or another grouping element it controls, is currently expanded or collapsed. Accepts the following string values:
|
|
78
|
+
* <ul>
|
|
79
|
+
* <li><code>true</code></li>
|
|
80
|
+
* <li><code>false</code></li>
|
|
81
|
+
* </ul>
|
|
82
|
+
* </li>
|
|
83
|
+
* <li><code>hasPopup</code>: Indicates the availability and type of interactive popup element, such as menu or dialog, that can be triggered by the button. Accepts the following string values:
|
|
84
|
+
* <ul>
|
|
85
|
+
* <li><code>Dialog</code></li>
|
|
86
|
+
* <li><code>Grid</code></li>
|
|
87
|
+
* <li><code>ListBox</code></li>
|
|
88
|
+
* <li><code>Menu</code></li>
|
|
89
|
+
* <li><code>Tree</code></li>
|
|
90
|
+
* </ul>
|
|
91
|
+
* </li>
|
|
92
|
+
* <li><code>controls</code>: Identifies the element (or elements) whose contents or presence are controlled by the button element. Accepts a string value.</li>
|
|
93
|
+
* </ul>
|
|
94
|
+
*/
|
|
95
|
+
accessibilityAttributes: {
|
|
96
|
+
type: "object",
|
|
97
|
+
defaultValue: {}
|
|
98
|
+
},
|
|
99
|
+
|
|
100
|
+
/**
|
|
101
|
+
* Defines the accessible aria name of the component.
|
|
70
102
|
*/
|
|
71
103
|
accessibleName: {
|
|
72
104
|
type: "string"
|
|
@@ -95,11 +127,16 @@ sap.ui.define([
|
|
|
95
127
|
},
|
|
96
128
|
|
|
97
129
|
/**
|
|
98
|
-
* Defines whether the
|
|
130
|
+
* Defines whether the control is enabled. A disabled control can't be interacted with, and it is not in the tab chain.
|
|
99
131
|
*/
|
|
100
|
-
|
|
132
|
+
enabled: {
|
|
101
133
|
type: "boolean",
|
|
102
|
-
defaultValue:
|
|
134
|
+
defaultValue: true,
|
|
135
|
+
mapping: {
|
|
136
|
+
type: "attribute",
|
|
137
|
+
to: "disabled",
|
|
138
|
+
formatter: "_mapEnabled"
|
|
139
|
+
}
|
|
103
140
|
},
|
|
104
141
|
|
|
105
142
|
/**
|
|
@@ -161,6 +198,21 @@ sap.ui.define([
|
|
|
161
198
|
mapping: "style"
|
|
162
199
|
}
|
|
163
200
|
},
|
|
201
|
+
associations: {
|
|
202
|
+
|
|
203
|
+
/**
|
|
204
|
+
* Receives id(or many ids) of the controls that label this control.
|
|
205
|
+
*/
|
|
206
|
+
ariaLabelledBy: {
|
|
207
|
+
type: "sap.ui.core.Control",
|
|
208
|
+
multiple: true,
|
|
209
|
+
mapping: {
|
|
210
|
+
type: "property",
|
|
211
|
+
to: "accessibleNameRef",
|
|
212
|
+
formatter: "_getAriaLabelledByForRendering"
|
|
213
|
+
}
|
|
214
|
+
}
|
|
215
|
+
},
|
|
164
216
|
events: {
|
|
165
217
|
|
|
166
218
|
/**
|
|
@@ -175,5 +227,10 @@ sap.ui.define([
|
|
|
175
227
|
}
|
|
176
228
|
});
|
|
177
229
|
|
|
230
|
+
EnabledPropagator.call(Button.prototype);
|
|
231
|
+
|
|
232
|
+
/* CUSTOM CODE START */
|
|
233
|
+
/* CUSTOM CODE END */
|
|
234
|
+
|
|
178
235
|
return Button;
|
|
179
236
|
});
|
|
@@ -84,6 +84,7 @@ sap.ui.define([
|
|
|
84
84
|
* </ul> <br>
|
|
85
85
|
*
|
|
86
86
|
*
|
|
87
|
+
*
|
|
87
88
|
* <h3>Calendar types</h3> The component supports several calendar types - Gregorian, Buddhist, Islamic, Japanese and Persian. By default the Gregorian Calendar is used. In order to use the Buddhist, Islamic, Japanese or Persian calendar, you need to set the <code>primaryCalendarType</code> property and import one or more of the following modules: <br>
|
|
88
89
|
* <br>
|
|
89
90
|
*
|
|
@@ -93,7 +94,7 @@ sap.ui.define([
|
|
|
93
94
|
* <code> <script data-id="sap-ui-config" type="application/json"> { "calendarType": "Japanese" } </script> </code>
|
|
94
95
|
*
|
|
95
96
|
* @author SAP SE
|
|
96
|
-
* @version 1.
|
|
97
|
+
* @version 1.100.0
|
|
97
98
|
*
|
|
98
99
|
* @constructor
|
|
99
100
|
* @public
|
|
@@ -211,5 +212,8 @@ sap.ui.define([
|
|
|
211
212
|
}
|
|
212
213
|
});
|
|
213
214
|
|
|
215
|
+
/* CUSTOM CODE START */
|
|
216
|
+
/* CUSTOM CODE END */
|
|
217
|
+
|
|
214
218
|
return Calendar;
|
|
215
219
|
});
|
|
@@ -26,7 +26,7 @@ sap.ui.define([
|
|
|
26
26
|
* The <code>sap.ui.webc.main.CalendarDate</code> component defines a calendar date to be used inside <code>sap.ui.webc.main.Calendar</code>
|
|
27
27
|
*
|
|
28
28
|
* @author SAP SE
|
|
29
|
-
* @version 1.
|
|
29
|
+
* @version 1.100.0
|
|
30
30
|
*
|
|
31
31
|
* @constructor
|
|
32
32
|
* @public
|
|
@@ -55,5 +55,8 @@ sap.ui.define([
|
|
|
55
55
|
}
|
|
56
56
|
});
|
|
57
57
|
|
|
58
|
+
/* CUSTOM CODE START */
|
|
59
|
+
/* CUSTOM CODE END */
|
|
60
|
+
|
|
58
61
|
return CalendarDate;
|
|
59
62
|
});
|