@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.
Files changed (477) hide show
  1. package/.reuse/dep5 +25 -30
  2. package/THIRDPARTY.txt +15 -22
  3. package/package.json +3 -3
  4. package/src/sap/ui/webc/main/.library +12 -8
  5. package/src/sap/ui/webc/main/Avatar.js +15 -3
  6. package/src/sap/ui/webc/main/AvatarGroup.js +4 -1
  7. package/src/sap/ui/webc/main/Badge.js +4 -1
  8. package/src/sap/ui/webc/main/Breadcrumbs.js +7 -3
  9. package/src/sap/ui/webc/main/BreadcrumbsItem.js +5 -2
  10. package/src/sap/ui/webc/main/BusyIndicator.js +4 -1
  11. package/src/sap/ui/webc/main/Button.js +65 -8
  12. package/src/sap/ui/webc/main/Calendar.js +5 -1
  13. package/src/sap/ui/webc/main/CalendarDate.js +4 -1
  14. package/src/sap/ui/webc/main/Card.js +20 -10
  15. package/src/sap/ui/webc/main/CardHeader.js +5 -2
  16. package/src/sap/ui/webc/main/Carousel.js +8 -2
  17. package/src/sap/ui/webc/main/CheckBox.js +63 -8
  18. package/src/sap/ui/webc/main/ColorPalette.js +6 -2
  19. package/src/sap/ui/webc/main/ColorPaletteItem.js +4 -1
  20. package/src/sap/ui/webc/main/ColorPalettePopover.js +28 -7
  21. package/src/sap/ui/webc/main/ColorPicker.js +4 -1
  22. package/src/sap/ui/webc/main/ComboBox.js +54 -19
  23. package/src/sap/ui/webc/main/ComboBoxGroupItem.js +5 -2
  24. package/src/sap/ui/webc/main/ComboBoxItem.js +4 -1
  25. package/src/sap/ui/webc/main/CustomListItem.js +4 -1
  26. package/src/sap/ui/webc/main/DatePicker.js +38 -15
  27. package/src/sap/ui/webc/main/DateRangePicker.js +46 -16
  28. package/src/sap/ui/webc/main/DateTimePicker.js +37 -14
  29. package/src/sap/ui/webc/main/Dialog.js +46 -6
  30. package/src/sap/ui/webc/main/FileUploader.js +22 -8
  31. package/src/sap/ui/webc/main/GroupHeaderListItem.js +4 -1
  32. package/src/sap/ui/webc/main/Icon.js +17 -1
  33. package/src/sap/ui/webc/main/Input.js +72 -20
  34. package/src/sap/ui/webc/main/Label.js +29 -12
  35. package/src/sap/ui/webc/main/Link.js +62 -9
  36. package/src/sap/ui/webc/main/List.js +26 -14
  37. package/src/sap/ui/webc/main/MessageStrip.js +7 -2
  38. package/src/sap/ui/webc/main/MultiComboBox.js +29 -12
  39. package/src/sap/ui/webc/main/MultiComboBoxItem.js +4 -1
  40. package/src/sap/ui/webc/main/MultiInput.js +118 -18
  41. package/src/sap/ui/webc/main/Option.js +16 -7
  42. package/src/sap/ui/webc/main/Panel.js +9 -3
  43. package/src/sap/ui/webc/main/Popover.js +60 -8
  44. package/src/sap/ui/webc/main/ProgressIndicator.js +34 -10
  45. package/src/sap/ui/webc/main/RadioButton.js +55 -8
  46. package/src/sap/ui/webc/main/RangeSlider.js +18 -6
  47. package/src/sap/ui/webc/main/RatingIndicator.js +45 -11
  48. package/src/sap/ui/webc/main/ResponsivePopover.js +60 -8
  49. package/src/sap/ui/webc/main/SegmentedButton.js +42 -1
  50. package/src/sap/ui/webc/main/SegmentedButtonItem.js +63 -7
  51. package/src/sap/ui/webc/main/Select.js +47 -27
  52. package/src/sap/ui/webc/main/Slider.js +31 -6
  53. package/src/sap/ui/webc/main/SplitButton.js +164 -0
  54. package/src/sap/ui/webc/main/StandardListItem.js +4 -1
  55. package/src/sap/ui/webc/main/StepInput.js +47 -15
  56. package/src/sap/ui/webc/main/SuggestionGroupItem.js +5 -2
  57. package/src/sap/ui/webc/main/SuggestionItem.js +4 -1
  58. package/src/sap/ui/webc/main/Switch.js +51 -7
  59. package/src/sap/ui/webc/main/Tab.js +26 -7
  60. package/src/sap/ui/webc/main/TabContainer.js +41 -7
  61. package/src/sap/ui/webc/main/TabSeparator.js +4 -1
  62. package/src/sap/ui/webc/main/Table.js +23 -4
  63. package/src/sap/ui/webc/main/TableCell.js +4 -1
  64. package/src/sap/ui/webc/main/TableColumn.js +4 -1
  65. package/src/sap/ui/webc/main/TableGroupRow.js +5 -2
  66. package/src/sap/ui/webc/main/TableRow.js +4 -1
  67. package/src/sap/ui/webc/main/TextArea.js +38 -17
  68. package/src/sap/ui/webc/main/TimePicker.js +20 -5
  69. package/src/sap/ui/webc/main/Title.js +4 -1
  70. package/src/sap/ui/webc/main/Toast.js +4 -1
  71. package/src/sap/ui/webc/main/ToggleButton.js +62 -6
  72. package/src/sap/ui/webc/main/Token.js +4 -1
  73. package/src/sap/ui/webc/main/Tree.js +5 -1
  74. package/src/sap/ui/webc/main/TreeItem.js +20 -1
  75. package/src/sap/ui/webc/main/designtime/Input.designtime.js +26 -0
  76. package/src/sap/ui/webc/main/designtime/MultiInput.designtime.js +27 -0
  77. package/src/sap/ui/webc/main/designtime/Panel.designtime.js +45 -0
  78. package/src/sap/ui/webc/main/designtime/RangeSlider.designtime.js +26 -0
  79. package/src/sap/ui/webc/main/designtime/RatingIndicator.designtime.js +26 -0
  80. package/src/sap/ui/webc/main/designtime/Slider.designtime.js +25 -0
  81. package/src/sap/ui/webc/main/designtime/Table.designtime.js +37 -0
  82. package/src/sap/ui/webc/main/designtime/library.designtime.js +12 -0
  83. package/src/sap/ui/webc/main/designtime/messagebundle.properties +44 -0
  84. package/src/sap/ui/webc/main/designtime/messagebundle_ar.properties +28 -0
  85. package/src/sap/ui/webc/main/designtime/messagebundle_bg.properties +28 -0
  86. package/src/sap/ui/webc/main/designtime/messagebundle_ca.properties +28 -0
  87. package/src/sap/ui/webc/main/designtime/messagebundle_cs.properties +28 -0
  88. package/src/sap/ui/webc/main/designtime/messagebundle_cy.properties +28 -0
  89. package/src/sap/ui/webc/main/designtime/messagebundle_da.properties +28 -0
  90. package/src/sap/ui/webc/main/designtime/messagebundle_de.properties +28 -0
  91. package/src/sap/ui/webc/main/designtime/messagebundle_el.properties +28 -0
  92. package/src/sap/ui/webc/main/designtime/messagebundle_en.properties +28 -0
  93. package/src/sap/ui/webc/main/designtime/messagebundle_en_GB.properties +28 -0
  94. package/src/sap/ui/webc/main/designtime/messagebundle_en_US_sappsd.properties +28 -0
  95. package/src/sap/ui/webc/main/designtime/messagebundle_en_US_saprigi.properties +24 -0
  96. package/src/sap/ui/webc/main/designtime/messagebundle_en_US_saptrc.properties +28 -0
  97. package/src/sap/ui/webc/main/designtime/messagebundle_es.properties +28 -0
  98. package/src/sap/ui/webc/main/designtime/messagebundle_es_MX.properties +28 -0
  99. package/src/sap/ui/webc/main/designtime/messagebundle_et.properties +28 -0
  100. package/src/sap/ui/webc/main/designtime/messagebundle_fi.properties +28 -0
  101. package/src/sap/ui/webc/main/designtime/messagebundle_fr.properties +28 -0
  102. package/src/sap/ui/webc/main/designtime/messagebundle_fr_CA.properties +28 -0
  103. package/src/sap/ui/webc/main/designtime/messagebundle_hi.properties +28 -0
  104. package/src/sap/ui/webc/main/designtime/messagebundle_hr.properties +28 -0
  105. package/src/sap/ui/webc/main/designtime/messagebundle_hu.properties +28 -0
  106. package/src/sap/ui/webc/main/designtime/messagebundle_id.properties +28 -0
  107. package/src/sap/ui/webc/main/designtime/messagebundle_it.properties +28 -0
  108. package/src/sap/ui/webc/main/designtime/messagebundle_iw.properties +28 -0
  109. package/src/sap/ui/webc/main/designtime/messagebundle_ja.properties +28 -0
  110. package/src/sap/ui/webc/main/designtime/messagebundle_kk.properties +28 -0
  111. package/src/sap/ui/webc/main/designtime/messagebundle_ko.properties +28 -0
  112. package/src/sap/ui/webc/main/designtime/messagebundle_lt.properties +28 -0
  113. package/src/sap/ui/webc/main/designtime/messagebundle_lv.properties +28 -0
  114. package/src/sap/ui/webc/main/designtime/messagebundle_ms.properties +28 -0
  115. package/src/sap/ui/webc/main/designtime/messagebundle_nl.properties +28 -0
  116. package/src/sap/ui/webc/main/designtime/messagebundle_no.properties +28 -0
  117. package/src/sap/ui/webc/main/designtime/messagebundle_pl.properties +28 -0
  118. package/src/sap/ui/webc/main/designtime/messagebundle_pt.properties +28 -0
  119. package/src/sap/ui/webc/main/designtime/messagebundle_pt_PT.properties +28 -0
  120. package/src/sap/ui/webc/main/designtime/messagebundle_ro.properties +28 -0
  121. package/src/sap/ui/webc/main/designtime/messagebundle_ru.properties +28 -0
  122. package/src/sap/ui/webc/main/designtime/messagebundle_sh.properties +28 -0
  123. package/src/sap/ui/webc/main/designtime/messagebundle_sk.properties +28 -0
  124. package/src/sap/ui/webc/main/designtime/messagebundle_sl.properties +28 -0
  125. package/src/sap/ui/webc/main/designtime/messagebundle_sv.properties +28 -0
  126. package/src/sap/ui/webc/main/designtime/messagebundle_th.properties +28 -0
  127. package/src/sap/ui/webc/main/designtime/messagebundle_tr.properties +28 -0
  128. package/src/sap/ui/webc/main/designtime/messagebundle_uk.properties +28 -0
  129. package/src/sap/ui/webc/main/designtime/messagebundle_vi.properties +28 -0
  130. package/src/sap/ui/webc/main/designtime/messagebundle_zh_CN.properties +28 -0
  131. package/src/sap/ui/webc/main/designtime/messagebundle_zh_TW.properties +28 -0
  132. package/src/sap/ui/webc/main/library.config.js +3 -0
  133. package/src/sap/ui/webc/main/library.js +110 -6
  134. package/src/sap/ui/webc/main/thirdparty/AvatarGroup.js +2 -2
  135. package/src/sap/ui/webc/main/thirdparty/Breadcrumbs.js +24 -10
  136. package/src/sap/ui/webc/main/thirdparty/BreadcrumbsItem.js +3 -3
  137. package/src/sap/ui/webc/main/thirdparty/BusyIndicator.js +2 -3
  138. package/src/sap/ui/webc/main/thirdparty/Button.js +20 -17
  139. package/src/sap/ui/webc/main/thirdparty/Calendar.js +5 -4
  140. package/src/sap/ui/webc/main/thirdparty/Carousel.js +1 -0
  141. package/src/sap/ui/webc/main/thirdparty/CheckBox.js +18 -2
  142. package/src/sap/ui/webc/main/thirdparty/ColorPalette.js +5 -5
  143. package/src/sap/ui/webc/main/thirdparty/ColorPalettePopover.js +11 -3
  144. package/src/sap/ui/webc/main/thirdparty/ColorPicker.js +26 -3
  145. package/src/sap/ui/webc/main/thirdparty/ComboBox.js +75 -19
  146. package/src/sap/ui/webc/main/thirdparty/ComboBoxFilters.js +1 -1
  147. package/src/sap/ui/webc/main/thirdparty/DateComponentBase.js +6 -8
  148. package/src/sap/ui/webc/main/thirdparty/DatePicker.js +9 -3
  149. package/src/sap/ui/webc/main/thirdparty/DateRangePicker.js +12 -1
  150. package/src/sap/ui/webc/main/thirdparty/DayPicker.js +3 -0
  151. package/src/sap/ui/webc/main/thirdparty/Dialog.js +22 -16
  152. package/src/sap/ui/webc/main/thirdparty/FileUploader.js +13 -6
  153. package/src/sap/ui/webc/main/thirdparty/Icon.js +9 -6
  154. package/src/sap/ui/webc/main/thirdparty/Input.js +154 -36
  155. package/src/sap/ui/webc/main/thirdparty/Label.js +7 -2
  156. package/src/sap/ui/webc/main/thirdparty/Link.js +8 -7
  157. package/src/sap/ui/webc/main/thirdparty/List.js +7 -13
  158. package/src/sap/ui/webc/main/thirdparty/MessageStrip.js +22 -9
  159. package/src/sap/ui/webc/main/thirdparty/MultiComboBox.js +152 -24
  160. package/src/sap/ui/webc/main/thirdparty/MultiComboBoxItem.js +3 -3
  161. package/src/sap/ui/webc/main/thirdparty/MultiInput.js +39 -8
  162. package/src/sap/ui/webc/main/thirdparty/Option.js +6 -3
  163. package/src/sap/ui/webc/main/thirdparty/Panel.js +7 -7
  164. package/src/sap/ui/webc/main/thirdparty/Popover.js +79 -58
  165. package/src/sap/ui/webc/main/thirdparty/Popup.js +38 -19
  166. package/src/sap/ui/webc/main/thirdparty/ProgressIndicator.js +4 -1
  167. package/src/sap/ui/webc/main/thirdparty/RadioButton.js +5 -2
  168. package/src/sap/ui/webc/main/thirdparty/RangeSlider.js +5 -2
  169. package/src/sap/ui/webc/main/thirdparty/RatingIndicator.js +20 -7
  170. package/src/sap/ui/webc/main/thirdparty/ResponsivePopover.js +3 -3
  171. package/src/sap/ui/webc/main/thirdparty/SegmentedButton.js +6 -1
  172. package/src/sap/ui/webc/main/thirdparty/SegmentedButtonItem.js +4 -1
  173. package/src/sap/ui/webc/main/thirdparty/Select.js +22 -2
  174. package/src/sap/ui/webc/main/thirdparty/Slider.js +4 -1
  175. package/src/sap/ui/webc/main/thirdparty/SliderBase.js +8 -5
  176. package/src/sap/ui/webc/main/thirdparty/SplitButton.js +199 -0
  177. package/src/sap/ui/webc/main/thirdparty/StepInput.js +5 -6
  178. package/src/sap/ui/webc/main/thirdparty/Switch.js +14 -1
  179. package/src/sap/ui/webc/main/thirdparty/Tab.js +13 -7
  180. package/src/sap/ui/webc/main/thirdparty/TabContainer.js +347 -92
  181. package/src/sap/ui/webc/main/thirdparty/TabSeparator.js +26 -3
  182. package/src/sap/ui/webc/main/thirdparty/Table.js +164 -7
  183. package/src/sap/ui/webc/main/thirdparty/TableColumn.js +0 -3
  184. package/src/sap/ui/webc/main/thirdparty/TableGroupRow.js +3 -0
  185. package/src/sap/ui/webc/main/thirdparty/TableRow.js +61 -9
  186. package/src/sap/ui/webc/main/thirdparty/TextArea.js +18 -5
  187. package/src/sap/ui/webc/main/thirdparty/ToggleButton.js +4 -1
  188. package/src/sap/ui/webc/main/thirdparty/Token.js +11 -1
  189. package/src/sap/ui/webc/main/thirdparty/Tokenizer.js +122 -13
  190. package/src/sap/ui/webc/main/thirdparty/Tree.js +3 -1
  191. package/src/sap/ui/webc/main/thirdparty/TreeItem.js +3 -0
  192. package/src/sap/ui/webc/main/thirdparty/TreeListItem.js +7 -1
  193. package/src/sap/ui/webc/main/thirdparty/WheelSlider.js +9 -9
  194. package/src/sap/ui/webc/main/thirdparty/{ComboBoxFilters-f59100bd.js → _chunks/ComboBoxFilters.js} +0 -0
  195. package/src/sap/ui/webc/main/thirdparty/{messagebundle_ar-f610ffe9.js → _chunks/messagebundle_ar.js} +10 -2
  196. package/src/sap/ui/webc/main/thirdparty/{messagebundle_bg-e372ad7a.js → _chunks/messagebundle_bg.js} +10 -2
  197. package/src/sap/ui/webc/main/thirdparty/{messagebundle_ca-64403819.js → _chunks/messagebundle_ca.js} +10 -2
  198. package/src/sap/ui/webc/main/thirdparty/{messagebundle_cs-f5276d1f.js → _chunks/messagebundle_cs.js} +10 -2
  199. package/src/sap/ui/webc/main/thirdparty/{messagebundle_cy-5b51959f.js → _chunks/messagebundle_cy.js} +10 -2
  200. package/src/sap/ui/webc/main/thirdparty/{messagebundle_da-3f0c542a.js → _chunks/messagebundle_da.js} +10 -2
  201. package/src/sap/ui/webc/main/thirdparty/{messagebundle_de-ff52e292.js → _chunks/messagebundle_de.js} +10 -2
  202. package/src/sap/ui/webc/main/thirdparty/{messagebundle_el-8a8f0e04.js → _chunks/messagebundle_el.js} +10 -2
  203. package/src/sap/ui/webc/main/thirdparty/{messagebundle_en-39f79920.js → _chunks/messagebundle_en.js} +10 -2
  204. package/src/sap/ui/webc/main/thirdparty/{messagebundle_en_GB-9a6995bc.js → _chunks/messagebundle_en_GB.js} +10 -2
  205. package/src/sap/ui/webc/main/thirdparty/{messagebundle_en_US_sappsd-1cd6f946.js → _chunks/messagebundle_en_US_sappsd.js} +10 -2
  206. package/src/sap/ui/webc/main/thirdparty/{messagebundle_en_US_saprigi-88214efb.js → _chunks/messagebundle_en_US_saprigi.js} +11 -2
  207. package/src/sap/ui/webc/main/thirdparty/{messagebundle_en_US_saptrc-d8b4cc37.js → _chunks/messagebundle_en_US_saptrc.js} +10 -2
  208. package/src/sap/ui/webc/main/thirdparty/{messagebundle_es-4e7804b3.js → _chunks/messagebundle_es.js} +10 -2
  209. package/src/sap/ui/webc/main/thirdparty/{messagebundle_es_MX-5d55637e.js → _chunks/messagebundle_es_MX.js} +10 -2
  210. package/src/sap/ui/webc/main/thirdparty/{messagebundle_et-d019447e.js → _chunks/messagebundle_et.js} +10 -2
  211. package/src/sap/ui/webc/main/thirdparty/{messagebundle_fi-115f5a0c.js → _chunks/messagebundle_fi.js} +11 -3
  212. package/src/sap/ui/webc/main/thirdparty/{messagebundle_fr-f4458a8c.js → _chunks/messagebundle_fr.js} +10 -2
  213. package/src/sap/ui/webc/main/thirdparty/{messagebundle_fr_CA-d3ac2579.js → _chunks/messagebundle_fr_CA.js} +10 -2
  214. package/src/sap/ui/webc/main/thirdparty/{messagebundle_hi-3dbf5206.js → _chunks/messagebundle_hi.js} +10 -2
  215. package/src/sap/ui/webc/main/thirdparty/{messagebundle_hr-3112e358.js → _chunks/messagebundle_hr.js} +10 -2
  216. package/src/sap/ui/webc/main/thirdparty/{messagebundle_hu-90f77b24.js → _chunks/messagebundle_hu.js} +10 -2
  217. package/src/sap/ui/webc/main/thirdparty/{messagebundle_in-7ab9b6f2.js → _chunks/messagebundle_in.js} +0 -0
  218. package/src/sap/ui/webc/main/thirdparty/{messagebundle_it-4fd2c566.js → _chunks/messagebundle_it.js} +10 -2
  219. package/src/sap/ui/webc/main/thirdparty/{messagebundle_iw-ff53b57b.js → _chunks/messagebundle_iw.js} +10 -2
  220. package/src/sap/ui/webc/main/thirdparty/{messagebundle_ja-050a69c3.js → _chunks/messagebundle_ja.js} +12 -4
  221. package/src/sap/ui/webc/main/thirdparty/{messagebundle_kk-597a9724.js → _chunks/messagebundle_kk.js} +10 -2
  222. package/src/sap/ui/webc/main/thirdparty/{messagebundle_ko-d840efd8.js → _chunks/messagebundle_ko.js} +10 -2
  223. package/src/sap/ui/webc/main/thirdparty/{messagebundle_lt-d15c1526.js → _chunks/messagebundle_lt.js} +10 -2
  224. package/src/sap/ui/webc/main/thirdparty/{messagebundle_lv-539ad33e.js → _chunks/messagebundle_lv.js} +10 -2
  225. package/src/sap/ui/webc/main/thirdparty/{messagebundle_ms-98b3e6dd.js → _chunks/messagebundle_ms.js} +10 -2
  226. package/src/sap/ui/webc/main/thirdparty/{messagebundle_nl-5c52e887.js → _chunks/messagebundle_nl.js} +10 -2
  227. package/src/sap/ui/webc/main/thirdparty/{messagebundle_no-04ee2aaf.js → _chunks/messagebundle_no.js} +10 -2
  228. package/src/sap/ui/webc/main/thirdparty/{messagebundle_pl-6da30702.js → _chunks/messagebundle_pl.js} +10 -2
  229. package/src/sap/ui/webc/main/thirdparty/{messagebundle_pt-71f281c3.js → _chunks/messagebundle_pt.js} +10 -2
  230. package/src/sap/ui/webc/main/thirdparty/{messagebundle_pt_PT-6d966418.js → _chunks/messagebundle_pt_PT.js} +10 -2
  231. package/src/sap/ui/webc/main/thirdparty/{messagebundle_ro-e76a9c5d.js → _chunks/messagebundle_ro.js} +10 -2
  232. package/src/sap/ui/webc/main/thirdparty/{messagebundle_ru-dc34dd79.js → _chunks/messagebundle_ru.js} +10 -2
  233. package/src/sap/ui/webc/main/thirdparty/{messagebundle_sh-f2171ee6.js → _chunks/messagebundle_sh.js} +10 -2
  234. package/src/sap/ui/webc/main/thirdparty/{messagebundle_sk-5c10a3c8.js → _chunks/messagebundle_sk.js} +10 -2
  235. package/src/sap/ui/webc/main/thirdparty/{messagebundle_sl-14cff3cf.js → _chunks/messagebundle_sl.js} +10 -2
  236. package/src/sap/ui/webc/main/thirdparty/{messagebundle_sv-44a9e5d4.js → _chunks/messagebundle_sv.js} +10 -2
  237. package/src/sap/ui/webc/main/thirdparty/{messagebundle_th-6cbca7a8.js → _chunks/messagebundle_th.js} +9 -1
  238. package/src/sap/ui/webc/main/thirdparty/{messagebundle_tr-00ce0f94.js → _chunks/messagebundle_tr.js} +10 -2
  239. package/src/sap/ui/webc/main/thirdparty/{messagebundle_uk-bf2de1c7.js → _chunks/messagebundle_uk.js} +10 -2
  240. package/src/sap/ui/webc/main/thirdparty/{messagebundle_vi-a0de6aa8.js → _chunks/messagebundle_vi.js} +10 -2
  241. package/src/sap/ui/webc/main/thirdparty/{messagebundle_zh_CN-7cbf9197.js → _chunks/messagebundle_zh_CN.js} +10 -2
  242. package/src/sap/ui/webc/main/thirdparty/{messagebundle_zh_TW-53705d5b.js → _chunks/messagebundle_zh_TW.js} +9 -1
  243. package/src/sap/ui/webc/main/thirdparty/_chunks/parameters-bundle.css.js +13 -0
  244. package/src/sap/ui/webc/main/thirdparty/_chunks/parameters-bundle.css2.js +13 -0
  245. package/src/sap/ui/webc/main/thirdparty/_chunks/parameters-bundle.css3.js +13 -0
  246. package/src/sap/ui/webc/main/thirdparty/_chunks/parameters-bundle.css4.js +13 -0
  247. package/src/sap/ui/webc/main/thirdparty/_chunks/parameters-bundle.css5.js +13 -0
  248. package/src/sap/ui/webc/main/thirdparty/_chunks/parameters-bundle.css6.js +13 -0
  249. package/src/sap/ui/webc/main/thirdparty/_chunks/parameters-bundle.css7.js +13 -0
  250. package/src/sap/ui/webc/main/thirdparty/_chunks/parameters-bundle.css8.js +13 -0
  251. package/src/sap/ui/webc/main/thirdparty/_chunks/parameters-bundle.css9.js +13 -0
  252. package/src/sap/ui/webc/main/thirdparty/css/themes/Avatar.css +1 -1
  253. package/src/sap/ui/webc/main/thirdparty/css/themes/Badge.css +1 -1
  254. package/src/sap/ui/webc/main/thirdparty/css/themes/Breadcrumbs.css +1 -1
  255. package/src/sap/ui/webc/main/thirdparty/css/themes/BrowserScrollbar.css +1 -1
  256. package/src/sap/ui/webc/main/thirdparty/css/themes/BusyIndicator.css +1 -1
  257. package/src/sap/ui/webc/main/thirdparty/css/themes/Button.css +1 -1
  258. package/src/sap/ui/webc/main/thirdparty/css/themes/Calendar.css +1 -1
  259. package/src/sap/ui/webc/main/thirdparty/css/themes/CalendarHeader.css +1 -1
  260. package/src/sap/ui/webc/main/thirdparty/css/themes/Card.css +1 -1
  261. package/src/sap/ui/webc/main/thirdparty/css/themes/CardHeader.css +1 -1
  262. package/src/sap/ui/webc/main/thirdparty/css/themes/CheckBox.css +1 -1
  263. package/src/sap/ui/webc/main/thirdparty/css/themes/ColorPalettePopover.css +1 -1
  264. package/src/sap/ui/webc/main/thirdparty/css/themes/ColorPicker.css +1 -1
  265. package/src/sap/ui/webc/main/thirdparty/css/themes/ComboBox.css +1 -1
  266. package/src/sap/ui/webc/main/thirdparty/css/themes/CustomListItem.css +1 -1
  267. package/src/sap/ui/webc/main/thirdparty/css/themes/DatePicker.css +1 -1
  268. package/src/sap/ui/webc/main/thirdparty/css/themes/DatePickerPopover.css +1 -1
  269. package/src/sap/ui/webc/main/thirdparty/css/themes/DateTimePickerPopover.css +1 -1
  270. package/src/sap/ui/webc/main/thirdparty/css/themes/DayPicker.css +1 -1
  271. package/src/sap/ui/webc/main/thirdparty/css/themes/Dialog.css +1 -1
  272. package/src/sap/ui/webc/main/thirdparty/css/themes/GrowingButton.css +1 -1
  273. package/src/sap/ui/webc/main/thirdparty/css/themes/Input.css +1 -1
  274. package/src/sap/ui/webc/main/thirdparty/css/themes/InputIcon.css +1 -1
  275. package/src/sap/ui/webc/main/thirdparty/css/themes/List.css +1 -1
  276. package/src/sap/ui/webc/main/thirdparty/css/themes/ListItemBase.css +1 -1
  277. package/src/sap/ui/webc/main/thirdparty/css/themes/MessageStrip.css +1 -1
  278. package/src/sap/ui/webc/main/thirdparty/css/themes/MonthPicker.css +1 -1
  279. package/src/sap/ui/webc/main/thirdparty/css/themes/MultiComboBox.css +1 -1
  280. package/src/sap/ui/webc/main/thirdparty/css/themes/MultiInput.css +1 -1
  281. package/src/sap/ui/webc/main/thirdparty/css/themes/Panel.css +1 -1
  282. package/src/sap/ui/webc/main/thirdparty/css/themes/Popover.css +1 -1
  283. package/src/sap/ui/webc/main/thirdparty/css/themes/PopupGlobal.css +1 -1
  284. package/src/sap/ui/webc/main/thirdparty/css/themes/PopupsCommon.css +1 -1
  285. package/src/sap/ui/webc/main/thirdparty/css/themes/ProgressIndicator.css +1 -1
  286. package/src/sap/ui/webc/main/thirdparty/css/themes/RadioButton.css +1 -1
  287. package/src/sap/ui/webc/main/thirdparty/css/themes/RatingIndicator.css +1 -1
  288. package/src/sap/ui/webc/main/thirdparty/css/themes/ResponsivePopover.css +1 -1
  289. package/src/sap/ui/webc/main/thirdparty/css/themes/ResponsivePopoverCommon.css +1 -1
  290. package/src/sap/ui/webc/main/thirdparty/css/themes/SegmentedButton.css +1 -1
  291. package/src/sap/ui/webc/main/thirdparty/css/themes/Select.css +1 -1
  292. package/src/sap/ui/webc/main/thirdparty/css/themes/SelectPopover.css +1 -1
  293. package/src/sap/ui/webc/main/thirdparty/css/themes/SliderBase.css +1 -1
  294. package/src/sap/ui/webc/main/thirdparty/css/themes/SplitButton.css +1 -0
  295. package/src/sap/ui/webc/main/thirdparty/css/themes/StepInput.css +1 -1
  296. package/src/sap/ui/webc/main/thirdparty/css/themes/Suggestions.css +1 -1
  297. package/src/sap/ui/webc/main/thirdparty/css/themes/Switch.css +1 -1
  298. package/src/sap/ui/webc/main/thirdparty/css/themes/TabContainer.css +1 -1
  299. package/src/sap/ui/webc/main/thirdparty/css/themes/TabInOverflow.css +1 -1
  300. package/src/sap/ui/webc/main/thirdparty/css/themes/TabInStrip.css +1 -1
  301. package/src/sap/ui/webc/main/thirdparty/css/themes/TabSeparatorInOverflow.css +1 -0
  302. package/src/sap/ui/webc/main/thirdparty/css/themes/TabSeparatorInStrip.css +1 -0
  303. package/src/sap/ui/webc/main/thirdparty/css/themes/Table.css +1 -1
  304. package/src/sap/ui/webc/main/thirdparty/css/themes/TableColumn.css +1 -1
  305. package/src/sap/ui/webc/main/thirdparty/css/themes/TableGroupRow.css +1 -1
  306. package/src/sap/ui/webc/main/thirdparty/css/themes/TableRow.css +1 -1
  307. package/src/sap/ui/webc/main/thirdparty/css/themes/TextArea.css +1 -1
  308. package/src/sap/ui/webc/main/thirdparty/css/themes/TimePicker.css +1 -1
  309. package/src/sap/ui/webc/main/thirdparty/css/themes/TimePickerPopover.css +1 -1
  310. package/src/sap/ui/webc/main/thirdparty/css/themes/TimeSelection.css +1 -1
  311. package/src/sap/ui/webc/main/thirdparty/css/themes/Token.css +1 -1
  312. package/src/sap/ui/webc/main/thirdparty/css/themes/Tokenizer.css +1 -1
  313. package/src/sap/ui/webc/main/thirdparty/css/themes/TokenizerPopover.css +1 -0
  314. package/src/sap/ui/webc/main/thirdparty/css/themes/ValueStateMessage.css +1 -1
  315. package/src/sap/ui/webc/main/thirdparty/css/themes/WheelSlider.css +1 -1
  316. package/src/sap/ui/webc/main/thirdparty/css/themes/YearPicker.css +1 -1
  317. package/src/sap/ui/webc/main/thirdparty/css/themes/sap_belize/parameters-bundle.css +1 -1
  318. package/src/sap/ui/webc/main/thirdparty/css/themes/sap_belize_hcb/parameters-bundle.css +1 -1
  319. package/src/sap/ui/webc/main/thirdparty/css/themes/sap_belize_hcw/parameters-bundle.css +1 -1
  320. package/src/sap/ui/webc/main/thirdparty/css/themes/sap_fiori_3/parameters-bundle.css +1 -1
  321. package/src/sap/ui/webc/main/thirdparty/css/themes/sap_fiori_3_dark/parameters-bundle.css +1 -1
  322. package/src/sap/ui/webc/main/thirdparty/css/themes/sap_fiori_3_hcb/parameters-bundle.css +1 -1
  323. package/src/sap/ui/webc/main/thirdparty/css/themes/sap_fiori_3_hcw/parameters-bundle.css +1 -1
  324. package/src/sap/ui/webc/main/thirdparty/css/themes/sap_horizon/parameters-bundle.css +1 -1
  325. package/src/sap/ui/webc/main/thirdparty/css/themes/sap_horizon_exp/parameters-bundle.css +1 -1
  326. package/src/sap/ui/webc/main/thirdparty/features/InputSuggestions.js +143 -29
  327. package/src/sap/ui/webc/main/thirdparty/generated/i18n/i18n-defaults.js +10 -1
  328. package/src/sap/ui/webc/main/thirdparty/generated/json-imports/Themes.js +9 -9
  329. package/src/sap/ui/webc/main/thirdparty/generated/json-imports/i18n.js +48 -48
  330. package/src/sap/ui/webc/main/thirdparty/generated/templates/AvatarGroupTemplate.lit.js +1 -1
  331. package/src/sap/ui/webc/main/thirdparty/generated/templates/BreadcrumbsPopoverTemplate.lit.js +1 -1
  332. package/src/sap/ui/webc/main/thirdparty/generated/templates/BreadcrumbsTemplate.lit.js +1 -1
  333. package/src/sap/ui/webc/main/thirdparty/generated/templates/BusyIndicatorTemplate.lit.js +1 -1
  334. package/src/sap/ui/webc/main/thirdparty/generated/templates/ButtonTemplate.lit.js +1 -1
  335. package/src/sap/ui/webc/main/thirdparty/generated/templates/CalendarTemplate.lit.js +1 -1
  336. package/src/sap/ui/webc/main/thirdparty/generated/templates/CardHeaderTemplate.lit.js +1 -1
  337. package/src/sap/ui/webc/main/thirdparty/generated/templates/CarouselTemplate.lit.js +4 -4
  338. package/src/sap/ui/webc/main/thirdparty/generated/templates/CheckBoxTemplate.lit.js +1 -1
  339. package/src/sap/ui/webc/main/thirdparty/generated/templates/ColorPalettePopoverTemplate.lit.js +1 -1
  340. package/src/sap/ui/webc/main/thirdparty/generated/templates/ColorPickerTemplate.lit.js +1 -1
  341. package/src/sap/ui/webc/main/thirdparty/generated/templates/ComboBoxPopoverTemplate.lit.js +4 -4
  342. package/src/sap/ui/webc/main/thirdparty/generated/templates/ComboBoxTemplate.lit.js +4 -3
  343. package/src/sap/ui/webc/main/thirdparty/generated/templates/CustomListItemTemplate.lit.js +4 -4
  344. package/src/sap/ui/webc/main/thirdparty/generated/templates/DatePickerPopoverTemplate.lit.js +1 -1
  345. package/src/sap/ui/webc/main/thirdparty/generated/templates/DatePickerTemplate.lit.js +1 -1
  346. package/src/sap/ui/webc/main/thirdparty/generated/templates/DateTimePickerPopoverTemplate.lit.js +1 -1
  347. package/src/sap/ui/webc/main/thirdparty/generated/templates/DialogTemplate.lit.js +3 -3
  348. package/src/sap/ui/webc/main/thirdparty/generated/templates/FileUploaderPopoverTemplate.lit.js +5 -4
  349. package/src/sap/ui/webc/main/thirdparty/generated/templates/InputPopoverTemplate.lit.js +6 -6
  350. package/src/sap/ui/webc/main/thirdparty/generated/templates/InputTemplate.lit.js +7 -5
  351. package/src/sap/ui/webc/main/thirdparty/generated/templates/LinkTemplate.lit.js +1 -1
  352. package/src/sap/ui/webc/main/thirdparty/generated/templates/ListItemTemplate.lit.js +4 -4
  353. package/src/sap/ui/webc/main/thirdparty/generated/templates/ListTemplate.lit.js +1 -1
  354. package/src/sap/ui/webc/main/thirdparty/generated/templates/MessageStripTemplate.lit.js +4 -4
  355. package/src/sap/ui/webc/main/thirdparty/generated/templates/MultiComboBoxPopoverTemplate.lit.js +6 -6
  356. package/src/sap/ui/webc/main/thirdparty/generated/templates/MultiComboBoxTemplate.lit.js +4 -3
  357. package/src/sap/ui/webc/main/thirdparty/generated/templates/MultiInputTemplate.lit.js +8 -6
  358. package/src/sap/ui/webc/main/thirdparty/generated/templates/PanelTemplate.lit.js +2 -2
  359. package/src/sap/ui/webc/main/thirdparty/generated/templates/PopoverTemplate.lit.js +3 -3
  360. package/src/sap/ui/webc/main/thirdparty/generated/templates/PopupBlockLayerTemplate.lit.js +1 -1
  361. package/src/sap/ui/webc/main/thirdparty/generated/templates/PopupTemplate.lit.js +1 -1
  362. package/src/sap/ui/webc/main/thirdparty/generated/templates/RangeSliderTemplate.lit.js +1 -1
  363. package/src/sap/ui/webc/main/thirdparty/generated/templates/RatingIndicatorTemplate.lit.js +1 -1
  364. package/src/sap/ui/webc/main/thirdparty/generated/templates/ResponsivePopoverTemplate.lit.js +5 -5
  365. package/src/sap/ui/webc/main/thirdparty/generated/templates/SegmentedButtonItemTemplate.lit.js +1 -1
  366. package/src/sap/ui/webc/main/thirdparty/generated/templates/SegmentedButtonTemplate.lit.js +1 -1
  367. package/src/sap/ui/webc/main/thirdparty/generated/templates/SelectPopoverTemplate.lit.js +5 -5
  368. package/src/sap/ui/webc/main/thirdparty/generated/templates/SliderBaseTemplate.lit.js +1 -1
  369. package/src/sap/ui/webc/main/thirdparty/generated/templates/SliderTemplate.lit.js +1 -1
  370. package/src/sap/ui/webc/main/thirdparty/generated/templates/SplitButtonTemplate.lit.js +7 -0
  371. package/src/sap/ui/webc/main/thirdparty/generated/templates/StandardListItemTemplate.lit.js +4 -4
  372. package/src/sap/ui/webc/main/thirdparty/generated/templates/StepInputTemplate.lit.js +4 -2
  373. package/src/sap/ui/webc/main/thirdparty/generated/templates/SuggestionListItemTemplate.lit.js +4 -4
  374. package/src/sap/ui/webc/main/thirdparty/generated/templates/SwitchTemplate.lit.js +4 -2
  375. package/src/sap/ui/webc/main/thirdparty/generated/templates/TabContainerPopoverTemplate.lit.js +4 -2
  376. package/src/sap/ui/webc/main/thirdparty/generated/templates/TabContainerTemplate.lit.js +10 -11
  377. package/src/sap/ui/webc/main/thirdparty/generated/templates/TabInOverflowTemplate.lit.js +1 -1
  378. package/src/sap/ui/webc/main/thirdparty/generated/templates/TabInStripTemplate.lit.js +1 -1
  379. package/src/sap/ui/webc/main/thirdparty/generated/templates/TabSeparatorInOverflowTemplate.lit.js +7 -0
  380. package/src/sap/ui/webc/main/thirdparty/generated/templates/TabSeparatorInStripTemplate.lit.js +7 -0
  381. package/src/sap/ui/webc/main/thirdparty/generated/templates/TableGroupRowTemplate.lit.js +1 -1
  382. package/src/sap/ui/webc/main/thirdparty/generated/templates/TableRowTemplate.lit.js +2 -2
  383. package/src/sap/ui/webc/main/thirdparty/generated/templates/TableTemplate.lit.js +3 -3
  384. package/src/sap/ui/webc/main/thirdparty/generated/templates/TextAreaPopoverTemplate.lit.js +1 -1
  385. package/src/sap/ui/webc/main/thirdparty/generated/templates/TextAreaTemplate.lit.js +1 -1
  386. package/src/sap/ui/webc/main/thirdparty/generated/templates/TimePickerPopoverTemplate.lit.js +1 -1
  387. package/src/sap/ui/webc/main/thirdparty/generated/templates/ToggleButtonTemplate.lit.js +1 -1
  388. package/src/sap/ui/webc/main/thirdparty/generated/templates/TokenTemplate.lit.js +1 -1
  389. package/src/sap/ui/webc/main/thirdparty/generated/templates/TokenizerTemplate.lit.js +1 -1
  390. package/src/sap/ui/webc/main/thirdparty/generated/templates/TreeListItemTemplate.lit.js +4 -4
  391. package/src/sap/ui/webc/main/thirdparty/generated/templates/TreeTemplate.lit.js +1 -1
  392. package/src/sap/ui/webc/main/thirdparty/generated/themes/Avatar.css.js +1 -1
  393. package/src/sap/ui/webc/main/thirdparty/generated/themes/Badge.css.js +1 -1
  394. package/src/sap/ui/webc/main/thirdparty/generated/themes/Breadcrumbs.css.js +1 -1
  395. package/src/sap/ui/webc/main/thirdparty/generated/themes/BrowserScrollbar.css.js +1 -1
  396. package/src/sap/ui/webc/main/thirdparty/generated/themes/BusyIndicator.css.js +1 -1
  397. package/src/sap/ui/webc/main/thirdparty/generated/themes/Button.css.js +1 -1
  398. package/src/sap/ui/webc/main/thirdparty/generated/themes/Calendar.css.js +1 -1
  399. package/src/sap/ui/webc/main/thirdparty/generated/themes/CalendarHeader.css.js +1 -1
  400. package/src/sap/ui/webc/main/thirdparty/generated/themes/Card.css.js +1 -1
  401. package/src/sap/ui/webc/main/thirdparty/generated/themes/CardHeader.css.js +1 -1
  402. package/src/sap/ui/webc/main/thirdparty/generated/themes/CheckBox.css.js +1 -1
  403. package/src/sap/ui/webc/main/thirdparty/generated/themes/ColorPalettePopover.css.js +1 -1
  404. package/src/sap/ui/webc/main/thirdparty/generated/themes/ColorPicker.css.js +1 -1
  405. package/src/sap/ui/webc/main/thirdparty/generated/themes/ComboBox.css.js +1 -1
  406. package/src/sap/ui/webc/main/thirdparty/generated/themes/CustomListItem.css.js +1 -1
  407. package/src/sap/ui/webc/main/thirdparty/generated/themes/DatePicker.css.js +1 -1
  408. package/src/sap/ui/webc/main/thirdparty/generated/themes/DatePickerPopover.css.js +1 -1
  409. package/src/sap/ui/webc/main/thirdparty/generated/themes/DateTimePickerPopover.css.js +1 -1
  410. package/src/sap/ui/webc/main/thirdparty/generated/themes/DayPicker.css.js +1 -1
  411. package/src/sap/ui/webc/main/thirdparty/generated/themes/Dialog.css.js +1 -1
  412. package/src/sap/ui/webc/main/thirdparty/generated/themes/GrowingButton.css.js +1 -1
  413. package/src/sap/ui/webc/main/thirdparty/generated/themes/Input.css.js +1 -1
  414. package/src/sap/ui/webc/main/thirdparty/generated/themes/InputIcon.css.js +1 -1
  415. package/src/sap/ui/webc/main/thirdparty/generated/themes/List.css.js +1 -1
  416. package/src/sap/ui/webc/main/thirdparty/generated/themes/ListItemBase.css.js +1 -1
  417. package/src/sap/ui/webc/main/thirdparty/generated/themes/MessageStrip.css.js +1 -1
  418. package/src/sap/ui/webc/main/thirdparty/generated/themes/MonthPicker.css.js +1 -1
  419. package/src/sap/ui/webc/main/thirdparty/generated/themes/MultiComboBox.css.js +1 -1
  420. package/src/sap/ui/webc/main/thirdparty/generated/themes/MultiInput.css.js +1 -1
  421. package/src/sap/ui/webc/main/thirdparty/generated/themes/Panel.css.js +1 -1
  422. package/src/sap/ui/webc/main/thirdparty/generated/themes/Popover.css.js +1 -1
  423. package/src/sap/ui/webc/main/thirdparty/generated/themes/PopupGlobal.css.js +1 -1
  424. package/src/sap/ui/webc/main/thirdparty/generated/themes/PopupsCommon.css.js +1 -1
  425. package/src/sap/ui/webc/main/thirdparty/generated/themes/ProgressIndicator.css.js +1 -1
  426. package/src/sap/ui/webc/main/thirdparty/generated/themes/RadioButton.css.js +1 -1
  427. package/src/sap/ui/webc/main/thirdparty/generated/themes/RatingIndicator.css.js +1 -1
  428. package/src/sap/ui/webc/main/thirdparty/generated/themes/ResponsivePopover.css.js +1 -1
  429. package/src/sap/ui/webc/main/thirdparty/generated/themes/ResponsivePopoverCommon.css.js +1 -1
  430. package/src/sap/ui/webc/main/thirdparty/generated/themes/SegmentedButton.css.js +1 -1
  431. package/src/sap/ui/webc/main/thirdparty/generated/themes/Select.css.js +1 -1
  432. package/src/sap/ui/webc/main/thirdparty/generated/themes/SelectPopover.css.js +1 -1
  433. package/src/sap/ui/webc/main/thirdparty/generated/themes/SliderBase.css.js +1 -1
  434. package/src/sap/ui/webc/main/thirdparty/generated/themes/SplitButton.css.js +13 -0
  435. package/src/sap/ui/webc/main/thirdparty/generated/themes/StepInput.css.js +1 -1
  436. package/src/sap/ui/webc/main/thirdparty/generated/themes/Suggestions.css.js +1 -1
  437. package/src/sap/ui/webc/main/thirdparty/generated/themes/Switch.css.js +1 -1
  438. package/src/sap/ui/webc/main/thirdparty/generated/themes/TabContainer.css.js +1 -1
  439. package/src/sap/ui/webc/main/thirdparty/generated/themes/TabInOverflow.css.js +1 -1
  440. package/src/sap/ui/webc/main/thirdparty/generated/themes/TabInStrip.css.js +1 -1
  441. package/src/sap/ui/webc/main/thirdparty/generated/themes/TabSeparatorInOverflow.css.js +13 -0
  442. package/src/sap/ui/webc/main/thirdparty/generated/themes/TabSeparatorInStrip.css.js +13 -0
  443. package/src/sap/ui/webc/main/thirdparty/generated/themes/Table.css.js +1 -1
  444. package/src/sap/ui/webc/main/thirdparty/generated/themes/TableColumn.css.js +1 -1
  445. package/src/sap/ui/webc/main/thirdparty/generated/themes/TableGroupRow.css.js +1 -1
  446. package/src/sap/ui/webc/main/thirdparty/generated/themes/TableRow.css.js +1 -1
  447. package/src/sap/ui/webc/main/thirdparty/generated/themes/TextArea.css.js +1 -1
  448. package/src/sap/ui/webc/main/thirdparty/generated/themes/TimePicker.css.js +1 -1
  449. package/src/sap/ui/webc/main/thirdparty/generated/themes/TimePickerPopover.css.js +1 -1
  450. package/src/sap/ui/webc/main/thirdparty/generated/themes/TimeSelection.css.js +1 -1
  451. package/src/sap/ui/webc/main/thirdparty/generated/themes/Token.css.js +1 -1
  452. package/src/sap/ui/webc/main/thirdparty/generated/themes/Tokenizer.css.js +1 -1
  453. package/src/sap/ui/webc/main/thirdparty/generated/themes/TokenizerPopover.css.js +13 -0
  454. package/src/sap/ui/webc/main/thirdparty/generated/themes/ValueStateMessage.css.js +1 -1
  455. package/src/sap/ui/webc/main/thirdparty/generated/themes/WheelSlider.css.js +1 -1
  456. package/src/sap/ui/webc/main/thirdparty/generated/themes/YearPicker.css.js +1 -1
  457. package/src/sap/ui/webc/main/thirdparty/generated/themes/sap_belize/parameters-bundle.css.js +1 -1
  458. package/src/sap/ui/webc/main/thirdparty/generated/themes/sap_belize_hcb/parameters-bundle.css.js +1 -1
  459. package/src/sap/ui/webc/main/thirdparty/generated/themes/sap_belize_hcw/parameters-bundle.css.js +1 -1
  460. package/src/sap/ui/webc/main/thirdparty/generated/themes/sap_fiori_3/parameters-bundle.css.js +1 -1
  461. package/src/sap/ui/webc/main/thirdparty/generated/themes/sap_fiori_3_dark/parameters-bundle.css.js +1 -1
  462. package/src/sap/ui/webc/main/thirdparty/generated/themes/sap_fiori_3_hcb/parameters-bundle.css.js +1 -1
  463. package/src/sap/ui/webc/main/thirdparty/generated/themes/sap_fiori_3_hcw/parameters-bundle.css.js +1 -1
  464. package/src/sap/ui/webc/main/thirdparty/generated/themes/sap_horizon/parameters-bundle.css.js +1 -1
  465. package/src/sap/ui/webc/main/thirdparty/generated/themes/sap_horizon_exp/parameters-bundle.css.js +1 -1
  466. package/src/sap/ui/webc/main/thirdparty/types/HasPopup.js +23 -0
  467. package/src/sap/ui/webc/main/thirdparty/types/TabsOverflowMode.js +20 -0
  468. package/src/sap/ui/webc/main/thirdparty/generated/templates/TabSeparatorTemplate.lit.js +0 -7
  469. package/src/sap/ui/webc/main/thirdparty/parameters-bundle.css-0f28e359.js +0 -13
  470. package/src/sap/ui/webc/main/thirdparty/parameters-bundle.css-1ee56435.js +0 -13
  471. package/src/sap/ui/webc/main/thirdparty/parameters-bundle.css-4d4cd873.js +0 -13
  472. package/src/sap/ui/webc/main/thirdparty/parameters-bundle.css-5bdedee7.js +0 -13
  473. package/src/sap/ui/webc/main/thirdparty/parameters-bundle.css-60d672db.js +0 -13
  474. package/src/sap/ui/webc/main/thirdparty/parameters-bundle.css-793a420b.js +0 -13
  475. package/src/sap/ui/webc/main/thirdparty/parameters-bundle.css-7c549d8f.js +0 -13
  476. package/src/sap/ui/webc/main/thirdparty/parameters-bundle.css-7e5617d6.js +0 -13
  477. 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.97.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>accessibleNameRef</code> is set.
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.97.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> When the <code>sap.ui.webc.main.Carousel</code> is focused the user can navigate between the items with the following keyboard shortcuts: <br>
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.97.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
- ], function(WebComponent, library, coreLibrary) {
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.97.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 component is disabled. <br>
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
- disabled: {
95
+ enabled: {
84
96
  type: "boolean",
85
- defaultValue: false
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.97.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.97.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.97.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: "content",
82
+ defaultAggregation: "colors",
82
83
  aggregations: {
83
84
 
84
85
  /**
85
86
  * Defines the content of the component.
86
87
  */
87
- content: {
88
- type: "sap.ui.core.Control",
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.97.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. <h3>Structure</h3> The <code>sap.ui.webc.main.ComboBox</code> consists of the following elements:
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
- * <h4>Picker</h4> If the <code>sap.ui.webc.main.ComboBox</code> is focused, you can open or close the drop-down by pressing <code>F4</code>, <code>ALT+UP</code> or <code>ALT+DOWN</code> keys. <br>
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.97.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
- * Sets the accessible aria name of the component.
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
- * Receives id(or many ids) of the elements that label the combo box
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
- disabled: {
89
+ enabled: {
80
90
  type: "boolean",
81
- defaultValue: false
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.97.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.97.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.97.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
- ], function(WebComponent, library, coreLibrary) {
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 the picker dialog is not opened the user can increment or decrement the corresponding field of the JS date object referenced by <code>dateValue</code> propery by using the following shortcuts: <br>
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
  * &lt;/script&gt;</code></pre>
75
77
  *
76
78
  * @author SAP SE
77
- * @version 1.97.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
- * Receives id(or many ids) of the elements that label the component.
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
- accessibleNameRef: {
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: false
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
  });