@openui5/sap.ui.webc.main 1.96.5 → 1.99.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (549) hide show
  1. package/.reuse/dep5 +26 -31
  2. package/THIRDPARTY.txt +15 -21
  3. package/package.json +3 -3
  4. package/src/sap/ui/webc/main/.library +1 -1
  5. package/src/sap/ui/webc/main/Avatar.js +5 -2
  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 +8 -4
  9. package/src/sap/ui/webc/main/BreadcrumbsItem.js +6 -3
  10. package/src/sap/ui/webc/main/BusyIndicator.js +4 -1
  11. package/src/sap/ui/webc/main/Button.js +51 -3
  12. package/src/sap/ui/webc/main/Calendar.js +8 -4
  13. package/src/sap/ui/webc/main/CalendarDate.js +4 -1
  14. package/src/sap/ui/webc/main/Card.js +27 -1
  15. package/src/sap/ui/webc/main/CardHeader.js +6 -3
  16. package/src/sap/ui/webc/main/Carousel.js +8 -2
  17. package/src/sap/ui/webc/main/CheckBox.js +49 -1
  18. package/src/sap/ui/webc/main/ColorPalette.js +7 -4
  19. package/src/sap/ui/webc/main/ColorPaletteItem.js +4 -1
  20. package/src/sap/ui/webc/main/ColorPalettePopover.js +132 -0
  21. package/src/sap/ui/webc/main/ColorPicker.js +6 -3
  22. package/src/sap/ui/webc/main/ComboBox.js +39 -14
  23. package/src/sap/ui/webc/main/ComboBoxGroupItem.js +6 -3
  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 +24 -14
  27. package/src/sap/ui/webc/main/DateRangePicker.js +30 -13
  28. package/src/sap/ui/webc/main/DateTimePicker.js +22 -14
  29. package/src/sap/ui/webc/main/Dialog.js +20 -2
  30. package/src/sap/ui/webc/main/FileUploader.js +5 -2
  31. package/src/sap/ui/webc/main/GroupHeaderListItem.js +4 -1
  32. package/src/sap/ui/webc/main/Icon.js +20 -3
  33. package/src/sap/ui/webc/main/Input.js +58 -35
  34. package/src/sap/ui/webc/main/Label.js +30 -13
  35. package/src/sap/ui/webc/main/Link.js +45 -6
  36. package/src/sap/ui/webc/main/List.js +29 -18
  37. package/src/sap/ui/webc/main/MessageStrip.js +8 -3
  38. package/src/sap/ui/webc/main/MultiComboBox.js +15 -10
  39. package/src/sap/ui/webc/main/MultiComboBoxItem.js +4 -1
  40. package/src/sap/ui/webc/main/MultiInput.js +42 -35
  41. package/src/sap/ui/webc/main/Option.js +4 -1
  42. package/src/sap/ui/webc/main/Panel.js +10 -4
  43. package/src/sap/ui/webc/main/Popover.js +20 -2
  44. package/src/sap/ui/webc/main/ProgressIndicator.js +26 -1
  45. package/src/sap/ui/webc/main/RadioButton.js +41 -1
  46. package/src/sap/ui/webc/main/RangeSlider.js +20 -18
  47. package/src/sap/ui/webc/main/RatingIndicator.js +22 -5
  48. package/src/sap/ui/webc/main/ResponsivePopover.js +20 -2
  49. package/src/sap/ui/webc/main/SegmentedButton.js +33 -1
  50. package/src/sap/ui/webc/main/SegmentedButtonItem.js +52 -4
  51. package/src/sap/ui/webc/main/Select.js +28 -19
  52. package/src/sap/ui/webc/main/Slider.js +34 -21
  53. package/src/sap/ui/webc/main/SplitButton.js +156 -0
  54. package/src/sap/ui/webc/main/StandardListItem.js +4 -1
  55. package/src/sap/ui/webc/main/StepInput.js +28 -9
  56. package/src/sap/ui/webc/main/SuggestionGroupItem.js +6 -3
  57. package/src/sap/ui/webc/main/SuggestionItem.js +5 -2
  58. package/src/sap/ui/webc/main/Switch.js +23 -5
  59. package/src/sap/ui/webc/main/Tab.js +14 -3
  60. package/src/sap/ui/webc/main/TabContainer.js +36 -10
  61. package/src/sap/ui/webc/main/TabSeparator.js +4 -1
  62. package/src/sap/ui/webc/main/Table.js +21 -3
  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 +7 -4
  66. package/src/sap/ui/webc/main/TableRow.js +8 -5
  67. package/src/sap/ui/webc/main/TextArea.js +23 -13
  68. package/src/sap/ui/webc/main/TimePicker.js +6 -3
  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 +51 -3
  72. package/src/sap/ui/webc/main/Token.js +5 -2
  73. package/src/sap/ui/webc/main/Tree.js +32 -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/RangeSlider.designtime.js +26 -0
  78. package/src/sap/ui/webc/main/designtime/RatingIndicator.designtime.js +26 -0
  79. package/src/sap/ui/webc/main/designtime/Slider.designtime.js +25 -0
  80. package/src/sap/ui/webc/main/designtime/library.designtime.js +12 -0
  81. package/src/sap/ui/webc/main/designtime/messagebundle.properties +32 -0
  82. package/src/sap/ui/webc/main/designtime/messagebundle_ar.properties +24 -0
  83. package/src/sap/ui/webc/main/designtime/messagebundle_bg.properties +24 -0
  84. package/src/sap/ui/webc/main/designtime/messagebundle_ca.properties +24 -0
  85. package/src/sap/ui/webc/main/designtime/messagebundle_cs.properties +24 -0
  86. package/src/sap/ui/webc/main/designtime/messagebundle_cy.properties +24 -0
  87. package/src/sap/ui/webc/main/designtime/messagebundle_da.properties +24 -0
  88. package/src/sap/ui/webc/main/designtime/messagebundle_de.properties +24 -0
  89. package/src/sap/ui/webc/main/designtime/messagebundle_el.properties +24 -0
  90. package/src/sap/ui/webc/main/designtime/messagebundle_en.properties +24 -0
  91. package/src/sap/ui/webc/main/designtime/messagebundle_en_GB.properties +24 -0
  92. package/src/sap/ui/webc/main/designtime/messagebundle_en_US_sappsd.properties +24 -0
  93. package/src/sap/ui/webc/main/designtime/messagebundle_en_US_saprigi.properties +24 -0
  94. package/src/sap/ui/webc/main/designtime/messagebundle_en_US_saptrc.properties +24 -0
  95. package/src/sap/ui/webc/main/designtime/messagebundle_es.properties +24 -0
  96. package/src/sap/ui/webc/main/designtime/messagebundle_es_MX.properties +24 -0
  97. package/src/sap/ui/webc/main/designtime/messagebundle_et.properties +24 -0
  98. package/src/sap/ui/webc/main/designtime/messagebundle_fi.properties +24 -0
  99. package/src/sap/ui/webc/main/designtime/messagebundle_fr.properties +24 -0
  100. package/src/sap/ui/webc/main/designtime/messagebundle_fr_CA.properties +24 -0
  101. package/src/sap/ui/webc/main/designtime/messagebundle_hi.properties +24 -0
  102. package/src/sap/ui/webc/main/designtime/messagebundle_hr.properties +24 -0
  103. package/src/sap/ui/webc/main/designtime/messagebundle_hu.properties +24 -0
  104. package/src/sap/ui/webc/main/designtime/messagebundle_id.properties +24 -0
  105. package/src/sap/ui/webc/main/designtime/messagebundle_it.properties +24 -0
  106. package/src/sap/ui/webc/main/designtime/messagebundle_iw.properties +24 -0
  107. package/src/sap/ui/webc/main/designtime/messagebundle_ja.properties +24 -0
  108. package/src/sap/ui/webc/main/designtime/messagebundle_kk.properties +24 -0
  109. package/src/sap/ui/webc/main/designtime/messagebundle_ko.properties +24 -0
  110. package/src/sap/ui/webc/main/designtime/messagebundle_lt.properties +24 -0
  111. package/src/sap/ui/webc/main/designtime/messagebundle_lv.properties +24 -0
  112. package/src/sap/ui/webc/main/designtime/messagebundle_ms.properties +24 -0
  113. package/src/sap/ui/webc/main/designtime/messagebundle_nl.properties +24 -0
  114. package/src/sap/ui/webc/main/designtime/messagebundle_no.properties +24 -0
  115. package/src/sap/ui/webc/main/designtime/messagebundle_pl.properties +24 -0
  116. package/src/sap/ui/webc/main/designtime/messagebundle_pt.properties +24 -0
  117. package/src/sap/ui/webc/main/designtime/messagebundle_pt_PT.properties +24 -0
  118. package/src/sap/ui/webc/main/designtime/messagebundle_ro.properties +24 -0
  119. package/src/sap/ui/webc/main/designtime/messagebundle_ru.properties +24 -0
  120. package/src/sap/ui/webc/main/designtime/messagebundle_sh.properties +24 -0
  121. package/src/sap/ui/webc/main/designtime/messagebundle_sk.properties +24 -0
  122. package/src/sap/ui/webc/main/designtime/messagebundle_sl.properties +24 -0
  123. package/src/sap/ui/webc/main/designtime/messagebundle_sv.properties +24 -0
  124. package/src/sap/ui/webc/main/designtime/messagebundle_th.properties +24 -0
  125. package/src/sap/ui/webc/main/designtime/messagebundle_tr.properties +24 -0
  126. package/src/sap/ui/webc/main/designtime/messagebundle_uk.properties +24 -0
  127. package/src/sap/ui/webc/main/designtime/messagebundle_vi.properties +24 -0
  128. package/src/sap/ui/webc/main/designtime/messagebundle_zh_CN.properties +24 -0
  129. package/src/sap/ui/webc/main/designtime/messagebundle_zh_TW.properties +24 -0
  130. package/src/sap/ui/webc/main/library.config.js +3 -0
  131. package/src/sap/ui/webc/main/library.js +112 -13
  132. package/src/sap/ui/webc/main/thirdparty/Assets.js +1 -1
  133. package/src/sap/ui/webc/main/thirdparty/Avatar.js +8 -11
  134. package/src/sap/ui/webc/main/thirdparty/AvatarGroup.js +8 -9
  135. package/src/sap/ui/webc/main/thirdparty/Badge.js +11 -6
  136. package/src/sap/ui/webc/main/thirdparty/Breadcrumbs.js +28 -13
  137. package/src/sap/ui/webc/main/thirdparty/BreadcrumbsItem.js +3 -3
  138. package/src/sap/ui/webc/main/thirdparty/BusyIndicator.js +4 -6
  139. package/src/sap/ui/webc/main/thirdparty/Button.js +15 -17
  140. package/src/sap/ui/webc/main/thirdparty/Calendar.js +74 -2
  141. package/src/sap/ui/webc/main/thirdparty/CalendarHeader.js +17 -55
  142. package/src/sap/ui/webc/main/thirdparty/Card.js +13 -9
  143. package/src/sap/ui/webc/main/thirdparty/CardHeader.js +16 -11
  144. package/src/sap/ui/webc/main/thirdparty/Carousel.js +9 -7
  145. package/src/sap/ui/webc/main/thirdparty/CheckBox.js +49 -8
  146. package/src/sap/ui/webc/main/thirdparty/ColorPalette.js +163 -14
  147. package/src/sap/ui/webc/main/thirdparty/ColorPaletteItem.js +14 -4
  148. package/src/sap/ui/webc/main/thirdparty/ColorPalettePopover.js +118 -0
  149. package/src/sap/ui/webc/main/thirdparty/ColorPicker.js +10 -1
  150. package/src/sap/ui/webc/main/thirdparty/ComboBox.js +209 -65
  151. package/src/sap/ui/webc/main/thirdparty/DateComponentBase.js +8 -11
  152. package/src/sap/ui/webc/main/thirdparty/DatePicker.js +9 -3
  153. package/src/sap/ui/webc/main/thirdparty/DateRangePicker.js +7 -1
  154. package/src/sap/ui/webc/main/thirdparty/DateTimePicker.js +7 -6
  155. package/src/sap/ui/webc/main/thirdparty/DayPicker.js +12 -4
  156. package/src/sap/ui/webc/main/thirdparty/Dialog.js +15 -15
  157. package/src/sap/ui/webc/main/thirdparty/DurationPicker.js +1 -1
  158. package/src/sap/ui/webc/main/thirdparty/FileUploader.js +25 -13
  159. package/src/sap/ui/webc/main/thirdparty/GroupHeaderListItem.js +5 -8
  160. package/src/sap/ui/webc/main/thirdparty/Icon.js +23 -17
  161. package/src/sap/ui/webc/main/thirdparty/Input.js +191 -60
  162. package/src/sap/ui/webc/main/thirdparty/Link.js +7 -9
  163. package/src/sap/ui/webc/main/thirdparty/List.js +46 -15
  164. package/src/sap/ui/webc/main/thirdparty/ListItem.js +13 -8
  165. package/src/sap/ui/webc/main/thirdparty/MessageStrip.js +24 -12
  166. package/src/sap/ui/webc/main/thirdparty/MultiComboBox.js +211 -62
  167. package/src/sap/ui/webc/main/thirdparty/MultiComboBoxItem.js +3 -3
  168. package/src/sap/ui/webc/main/thirdparty/MultiInput.js +40 -9
  169. package/src/sap/ui/webc/main/thirdparty/Option.js +6 -3
  170. package/src/sap/ui/webc/main/thirdparty/Panel.js +7 -8
  171. package/src/sap/ui/webc/main/thirdparty/Popover.js +91 -57
  172. package/src/sap/ui/webc/main/thirdparty/Popup.js +19 -26
  173. package/src/sap/ui/webc/main/thirdparty/ProgressIndicator.js +8 -7
  174. package/src/sap/ui/webc/main/thirdparty/RadioButton.js +39 -8
  175. package/src/sap/ui/webc/main/thirdparty/RangeSlider.js +7 -8
  176. package/src/sap/ui/webc/main/thirdparty/RatingIndicator.js +23 -11
  177. package/src/sap/ui/webc/main/thirdparty/ResponsivePopover.js +6 -23
  178. package/src/sap/ui/webc/main/thirdparty/SegmentedButton.js +10 -5
  179. package/src/sap/ui/webc/main/thirdparty/SegmentedButtonItem.js +1 -1
  180. package/src/sap/ui/webc/main/thirdparty/Select.js +74 -48
  181. package/src/sap/ui/webc/main/thirdparty/Slider.js +2 -3
  182. package/src/sap/ui/webc/main/thirdparty/SliderBase.js +7 -9
  183. package/src/sap/ui/webc/main/thirdparty/SplitButton.js +196 -0
  184. package/src/sap/ui/webc/main/thirdparty/StepInput.js +8 -10
  185. package/src/sap/ui/webc/main/thirdparty/Switch.js +16 -7
  186. package/src/sap/ui/webc/main/thirdparty/Tab.js +25 -9
  187. package/src/sap/ui/webc/main/thirdparty/TabContainer.js +334 -95
  188. package/src/sap/ui/webc/main/thirdparty/TabSeparator.js +26 -3
  189. package/src/sap/ui/webc/main/thirdparty/Table.js +169 -10
  190. package/src/sap/ui/webc/main/thirdparty/TableColumn.js +0 -3
  191. package/src/sap/ui/webc/main/thirdparty/TableGroupRow.js +5 -3
  192. package/src/sap/ui/webc/main/thirdparty/TableRow.js +57 -12
  193. package/src/sap/ui/webc/main/thirdparty/TextArea.js +28 -14
  194. package/src/sap/ui/webc/main/thirdparty/TimePicker.js +1 -1
  195. package/src/sap/ui/webc/main/thirdparty/TimePickerBase.js +9 -6
  196. package/src/sap/ui/webc/main/thirdparty/TimeSelection.js +8 -9
  197. package/src/sap/ui/webc/main/thirdparty/Toast.js +5 -0
  198. package/src/sap/ui/webc/main/thirdparty/ToggleButton.js +4 -1
  199. package/src/sap/ui/webc/main/thirdparty/Token.js +13 -7
  200. package/src/sap/ui/webc/main/thirdparty/Tokenizer.js +106 -20
  201. package/src/sap/ui/webc/main/thirdparty/Tree.js +18 -0
  202. package/src/sap/ui/webc/main/thirdparty/TreeItem.js +3 -0
  203. package/src/sap/ui/webc/main/thirdparty/TreeListItem.js +18 -15
  204. package/src/sap/ui/webc/main/thirdparty/WheelSlider.js +9 -9
  205. package/src/sap/ui/webc/main/thirdparty/YearPicker.js +1 -0
  206. package/src/sap/ui/webc/main/thirdparty/css/themes/Avatar.css +1 -0
  207. package/src/sap/ui/webc/main/thirdparty/css/themes/AvatarGroup.css +1 -0
  208. package/src/sap/ui/webc/main/thirdparty/css/themes/Badge.css +1 -0
  209. package/src/sap/ui/webc/main/thirdparty/css/themes/Breadcrumbs.css +1 -0
  210. package/src/sap/ui/webc/main/thirdparty/css/themes/BreadcrumbsPopover.css +1 -0
  211. package/src/sap/ui/webc/main/thirdparty/css/themes/BrowserScrollbar.css +1 -0
  212. package/src/sap/ui/webc/main/thirdparty/css/themes/BusyIndicator.css +1 -0
  213. package/src/sap/ui/webc/main/thirdparty/css/themes/Button.css +1 -0
  214. package/src/sap/ui/webc/main/thirdparty/css/themes/Button.ie11.css +1 -0
  215. package/src/sap/ui/webc/main/thirdparty/css/themes/Calendar.css +1 -0
  216. package/src/sap/ui/webc/main/thirdparty/css/themes/CalendarHeader.css +1 -0
  217. package/src/sap/ui/webc/main/thirdparty/css/themes/Card.css +1 -0
  218. package/src/sap/ui/webc/main/thirdparty/css/themes/CardHeader.css +1 -0
  219. package/src/sap/ui/webc/main/thirdparty/css/themes/Carousel.css +1 -0
  220. package/src/sap/ui/webc/main/thirdparty/css/themes/CheckBox.css +1 -0
  221. package/src/sap/ui/webc/main/thirdparty/css/themes/ColorPalette.css +1 -0
  222. package/src/sap/ui/webc/main/thirdparty/css/themes/ColorPaletteItem.css +1 -0
  223. package/src/sap/ui/webc/main/thirdparty/css/themes/ColorPalettePopover.css +1 -0
  224. package/src/sap/ui/webc/main/thirdparty/css/themes/ColorPaletteStaticArea.css +1 -0
  225. package/src/sap/ui/webc/main/thirdparty/css/themes/ColorPicker.css +1 -0
  226. package/src/sap/ui/webc/main/thirdparty/css/themes/ComboBox.css +1 -0
  227. package/src/sap/ui/webc/main/thirdparty/css/themes/ComboBoxPopover.css +1 -0
  228. package/src/sap/ui/webc/main/thirdparty/css/themes/CustomListItem.css +1 -0
  229. package/src/sap/ui/webc/main/thirdparty/css/themes/DatePicker.css +1 -0
  230. package/src/sap/ui/webc/main/thirdparty/css/themes/DatePickerPopover.css +1 -0
  231. package/src/sap/ui/webc/main/thirdparty/css/themes/DateRangePicker.css +1 -0
  232. package/src/sap/ui/webc/main/thirdparty/css/themes/DateTimePicker.css +1 -0
  233. package/src/sap/ui/webc/main/thirdparty/css/themes/DateTimePickerPopover.css +1 -0
  234. package/src/sap/ui/webc/main/thirdparty/css/themes/DayPicker.css +1 -0
  235. package/src/sap/ui/webc/main/thirdparty/css/themes/Dialog.css +1 -0
  236. package/src/sap/ui/webc/main/thirdparty/css/themes/FileUploader.css +1 -0
  237. package/src/sap/ui/webc/main/thirdparty/css/themes/GroupHeaderListItem.css +1 -0
  238. package/src/sap/ui/webc/main/thirdparty/css/themes/GrowingButton.css +1 -0
  239. package/src/sap/ui/webc/main/thirdparty/css/themes/Icon.css +1 -0
  240. package/src/sap/ui/webc/main/thirdparty/css/themes/Input.css +1 -0
  241. package/src/sap/ui/webc/main/thirdparty/css/themes/InputIcon.css +1 -0
  242. package/src/sap/ui/webc/main/thirdparty/css/themes/InvisibleTextStyles.css +1 -0
  243. package/src/sap/ui/webc/main/thirdparty/css/themes/Label.css +1 -0
  244. package/src/sap/ui/webc/main/thirdparty/css/themes/Link.css +1 -0
  245. package/src/sap/ui/webc/main/thirdparty/css/themes/List.css +1 -0
  246. package/src/sap/ui/webc/main/thirdparty/css/themes/ListItem.css +1 -0
  247. package/src/sap/ui/webc/main/thirdparty/css/themes/ListItemBase.css +1 -0
  248. package/src/sap/ui/webc/main/thirdparty/css/themes/MessageStrip.css +1 -0
  249. package/src/sap/ui/webc/main/thirdparty/css/themes/MonthPicker.css +1 -0
  250. package/src/sap/ui/webc/main/thirdparty/css/themes/MultiComboBox.css +1 -0
  251. package/src/sap/ui/webc/main/thirdparty/css/themes/MultiInput.css +1 -0
  252. package/src/sap/ui/webc/main/thirdparty/css/themes/Panel.css +1 -0
  253. package/src/sap/ui/webc/main/thirdparty/css/themes/Popover.css +1 -0
  254. package/src/sap/ui/webc/main/thirdparty/css/themes/Popup.css +1 -0
  255. package/src/sap/ui/webc/main/thirdparty/css/themes/PopupGlobal.css +1 -0
  256. package/src/sap/ui/webc/main/thirdparty/css/themes/PopupStaticAreaStyles.css +1 -0
  257. package/src/sap/ui/webc/main/thirdparty/css/themes/PopupsCommon.css +1 -0
  258. package/src/sap/ui/webc/main/thirdparty/css/themes/ProgressIndicator.css +1 -0
  259. package/src/sap/ui/webc/main/thirdparty/css/themes/RadioButton.css +1 -0
  260. package/src/sap/ui/webc/main/thirdparty/css/themes/RatingIndicator.css +1 -0
  261. package/src/sap/ui/webc/main/thirdparty/css/themes/ResponsivePopover.css +1 -0
  262. package/src/sap/ui/webc/main/thirdparty/css/themes/ResponsivePopoverCommon.css +1 -0
  263. package/src/sap/ui/webc/main/thirdparty/css/themes/SegmentedButton.css +1 -0
  264. package/src/sap/ui/webc/main/thirdparty/css/themes/Select.css +1 -0
  265. package/src/sap/ui/webc/main/thirdparty/css/themes/SelectPopover.css +1 -0
  266. package/src/sap/ui/webc/main/thirdparty/css/themes/SliderBase.css +1 -0
  267. package/src/sap/ui/webc/main/thirdparty/css/themes/SplitButton.css +1 -0
  268. package/src/sap/ui/webc/main/thirdparty/css/themes/StepInput.css +1 -0
  269. package/src/sap/ui/webc/main/thirdparty/css/themes/Suggestions.css +1 -0
  270. package/src/sap/ui/webc/main/thirdparty/css/themes/Switch.css +1 -0
  271. package/src/sap/ui/webc/main/thirdparty/css/themes/Tab.css +1 -0
  272. package/src/sap/ui/webc/main/thirdparty/css/themes/TabContainer.css +1 -0
  273. package/src/sap/ui/webc/main/thirdparty/css/themes/TabInOverflow.css +1 -0
  274. package/src/sap/ui/webc/main/thirdparty/css/themes/TabInStrip.css +1 -0
  275. package/src/sap/ui/webc/main/thirdparty/css/themes/TabSeparatorInOverflow.css +1 -0
  276. package/src/sap/ui/webc/main/thirdparty/css/themes/TabSeparatorInStrip.css +1 -0
  277. package/src/sap/ui/webc/main/thirdparty/css/themes/Table.css +1 -0
  278. package/src/sap/ui/webc/main/thirdparty/css/themes/TableCell.css +1 -0
  279. package/src/sap/ui/webc/main/thirdparty/css/themes/TableColumn.css +1 -0
  280. package/src/sap/ui/webc/main/thirdparty/css/themes/TableGroupRow.css +1 -0
  281. package/src/sap/ui/webc/main/thirdparty/css/themes/TableRow.css +1 -0
  282. package/src/sap/ui/webc/main/thirdparty/css/themes/TapHighlightColor.css +1 -0
  283. package/src/sap/ui/webc/main/thirdparty/css/themes/TextArea.css +1 -0
  284. package/src/sap/ui/webc/main/thirdparty/css/themes/TimePicker.css +1 -0
  285. package/src/sap/ui/webc/main/thirdparty/css/themes/TimePickerPopover.css +1 -0
  286. package/src/sap/ui/webc/main/thirdparty/css/themes/TimeSelection.css +1 -0
  287. package/src/sap/ui/webc/main/thirdparty/css/themes/Title.css +1 -0
  288. package/src/sap/ui/webc/main/thirdparty/css/themes/Toast.css +1 -0
  289. package/src/sap/ui/webc/main/thirdparty/css/themes/ToggleButton.css +1 -0
  290. package/src/sap/ui/webc/main/thirdparty/css/themes/ToggleButton.ie11.css +1 -0
  291. package/src/sap/ui/webc/main/thirdparty/css/themes/Token.css +1 -0
  292. package/src/sap/ui/webc/main/thirdparty/css/themes/Tokenizer.css +1 -0
  293. package/src/sap/ui/webc/main/thirdparty/css/themes/Tree.css +1 -0
  294. package/src/sap/ui/webc/main/thirdparty/css/themes/TreeListItem.css +1 -0
  295. package/src/sap/ui/webc/main/thirdparty/css/themes/ValueStateMessage.css +1 -0
  296. package/src/sap/ui/webc/main/thirdparty/css/themes/WheelSlider.css +1 -0
  297. package/src/sap/ui/webc/main/thirdparty/css/themes/YearPicker.css +1 -0
  298. package/src/sap/ui/webc/main/thirdparty/css/themes/sap_belize/parameters-bundle.css +1 -0
  299. package/src/sap/ui/webc/main/thirdparty/css/themes/sap_belize_hcb/parameters-bundle.css +1 -0
  300. package/src/sap/ui/webc/main/thirdparty/css/themes/sap_belize_hcw/parameters-bundle.css +1 -0
  301. package/src/sap/ui/webc/main/thirdparty/css/themes/sap_fiori_3/parameters-bundle.css +1 -0
  302. package/src/sap/ui/webc/main/thirdparty/css/themes/sap_fiori_3_dark/parameters-bundle.css +1 -0
  303. package/src/sap/ui/webc/main/thirdparty/css/themes/sap_fiori_3_hcb/parameters-bundle.css +1 -0
  304. package/src/sap/ui/webc/main/thirdparty/css/themes/sap_fiori_3_hcw/parameters-bundle.css +1 -0
  305. package/src/sap/ui/webc/main/thirdparty/css/themes/sap_horizon/parameters-bundle.css +1 -0
  306. package/src/sap/ui/webc/main/thirdparty/css/themes/sap_horizon_exp/parameters-bundle.css +1 -0
  307. package/src/sap/ui/webc/main/thirdparty/features/ColorPaletteMoreColors.js +6 -6
  308. package/src/sap/ui/webc/main/thirdparty/features/InputSuggestions.js +161 -44
  309. package/src/sap/ui/webc/main/thirdparty/generated/i18n/i18n-defaults.js +16 -1
  310. package/src/sap/ui/webc/main/thirdparty/generated/json-imports/Themes.js +10 -8
  311. package/src/sap/ui/webc/main/thirdparty/generated/json-imports/i18n.js +47 -47
  312. package/src/sap/ui/webc/main/thirdparty/generated/templates/AvatarGroupTemplate.lit.js +1 -1
  313. package/src/sap/ui/webc/main/thirdparty/generated/templates/BadgeTemplate.lit.js +1 -1
  314. package/src/sap/ui/webc/main/thirdparty/generated/templates/BreadcrumbsPopoverTemplate.lit.js +1 -1
  315. package/src/sap/ui/webc/main/thirdparty/generated/templates/BreadcrumbsTemplate.lit.js +1 -1
  316. package/src/sap/ui/webc/main/thirdparty/generated/templates/BusyIndicatorTemplate.lit.js +2 -2
  317. package/src/sap/ui/webc/main/thirdparty/generated/templates/ButtonTemplate.lit.js +1 -1
  318. package/src/sap/ui/webc/main/thirdparty/generated/templates/CalendarTemplate.lit.js +1 -1
  319. package/src/sap/ui/webc/main/thirdparty/generated/templates/CardHeaderTemplate.lit.js +2 -2
  320. package/src/sap/ui/webc/main/thirdparty/generated/templates/CardTemplate.lit.js +1 -1
  321. package/src/sap/ui/webc/main/thirdparty/generated/templates/CarouselTemplate.lit.js +1 -1
  322. package/src/sap/ui/webc/main/thirdparty/generated/templates/CheckBoxTemplate.lit.js +1 -1
  323. package/src/sap/ui/webc/main/thirdparty/generated/templates/ColorPaletteItemTemplate.lit.js +1 -1
  324. package/src/sap/ui/webc/main/thirdparty/generated/templates/ColorPalettePopoverTemplate.lit.js +8 -0
  325. package/src/sap/ui/webc/main/thirdparty/generated/templates/ColorPaletteTemplate.lit.js +6 -5
  326. package/src/sap/ui/webc/main/thirdparty/generated/templates/ColorPickerTemplate.lit.js +1 -1
  327. package/src/sap/ui/webc/main/thirdparty/generated/templates/ComboBoxPopoverTemplate.lit.js +4 -4
  328. package/src/sap/ui/webc/main/thirdparty/generated/templates/ComboBoxTemplate.lit.js +4 -3
  329. package/src/sap/ui/webc/main/thirdparty/generated/templates/CustomListItemTemplate.lit.js +5 -5
  330. package/src/sap/ui/webc/main/thirdparty/generated/templates/DatePickerPopoverTemplate.lit.js +1 -1
  331. package/src/sap/ui/webc/main/thirdparty/generated/templates/DateTimePickerPopoverTemplate.lit.js +2 -2
  332. package/src/sap/ui/webc/main/thirdparty/generated/templates/DayPickerTemplate.lit.js +2 -2
  333. package/src/sap/ui/webc/main/thirdparty/generated/templates/DialogTemplate.lit.js +1 -1
  334. package/src/sap/ui/webc/main/thirdparty/generated/templates/FileUploaderPopoverTemplate.lit.js +5 -4
  335. package/src/sap/ui/webc/main/thirdparty/generated/templates/FileUploaderTemplate.lit.js +1 -1
  336. package/src/sap/ui/webc/main/thirdparty/generated/templates/GroupHeaderListItemTemplate.lit.js +1 -1
  337. package/src/sap/ui/webc/main/thirdparty/generated/templates/InputPopoverTemplate.lit.js +6 -6
  338. package/src/sap/ui/webc/main/thirdparty/generated/templates/InputTemplate.lit.js +7 -5
  339. package/src/sap/ui/webc/main/thirdparty/generated/templates/LinkTemplate.lit.js +1 -1
  340. package/src/sap/ui/webc/main/thirdparty/generated/templates/ListItemTemplate.lit.js +5 -5
  341. package/src/sap/ui/webc/main/thirdparty/generated/templates/ListTemplate.lit.js +3 -3
  342. package/src/sap/ui/webc/main/thirdparty/generated/templates/MessageStripTemplate.lit.js +4 -4
  343. package/src/sap/ui/webc/main/thirdparty/generated/templates/MultiComboBoxPopoverTemplate.lit.js +14 -11
  344. package/src/sap/ui/webc/main/thirdparty/generated/templates/MultiComboBoxTemplate.lit.js +4 -3
  345. package/src/sap/ui/webc/main/thirdparty/generated/templates/MultiInputTemplate.lit.js +8 -6
  346. package/src/sap/ui/webc/main/thirdparty/generated/templates/PanelTemplate.lit.js +2 -2
  347. package/src/sap/ui/webc/main/thirdparty/generated/templates/PopupBlockLayerTemplate.lit.js +1 -1
  348. package/src/sap/ui/webc/main/thirdparty/generated/templates/ProgressIndicatorTemplate.lit.js +9 -5
  349. package/src/sap/ui/webc/main/thirdparty/generated/templates/RadioButtonTemplate.lit.js +1 -1
  350. package/src/sap/ui/webc/main/thirdparty/generated/templates/RangeSliderTemplate.lit.js +1 -1
  351. package/src/sap/ui/webc/main/thirdparty/generated/templates/RatingIndicatorTemplate.lit.js +6 -4
  352. package/src/sap/ui/webc/main/thirdparty/generated/templates/ResponsivePopoverTemplate.lit.js +1 -1
  353. package/src/sap/ui/webc/main/thirdparty/generated/templates/SegmentedButtonItemTemplate.lit.js +1 -1
  354. package/src/sap/ui/webc/main/thirdparty/generated/templates/SegmentedButtonTemplate.lit.js +1 -1
  355. package/src/sap/ui/webc/main/thirdparty/generated/templates/SelectPopoverTemplate.lit.js +5 -5
  356. package/src/sap/ui/webc/main/thirdparty/generated/templates/SelectTemplate.lit.js +1 -1
  357. package/src/sap/ui/webc/main/thirdparty/generated/templates/SliderBaseTemplate.lit.js +1 -1
  358. package/src/sap/ui/webc/main/thirdparty/generated/templates/SliderTemplate.lit.js +1 -1
  359. package/src/sap/ui/webc/main/thirdparty/generated/templates/SplitButtonTemplate.lit.js +7 -0
  360. package/src/sap/ui/webc/main/thirdparty/generated/templates/StandardListItemTemplate.lit.js +5 -5
  361. package/src/sap/ui/webc/main/thirdparty/generated/templates/StepInputTemplate.lit.js +4 -2
  362. package/src/sap/ui/webc/main/thirdparty/generated/templates/SuggestionListItemTemplate.lit.js +5 -5
  363. package/src/sap/ui/webc/main/thirdparty/generated/templates/SwitchTemplate.lit.js +4 -2
  364. package/src/sap/ui/webc/main/thirdparty/generated/templates/TabContainerPopoverTemplate.lit.js +4 -2
  365. package/src/sap/ui/webc/main/thirdparty/generated/templates/TabContainerTemplate.lit.js +9 -10
  366. package/src/sap/ui/webc/main/thirdparty/generated/templates/TabInOverflowTemplate.lit.js +1 -1
  367. package/src/sap/ui/webc/main/thirdparty/generated/templates/TabInStripTemplate.lit.js +2 -4
  368. package/src/sap/ui/webc/main/thirdparty/generated/templates/TabSeparatorInOverflowTemplate.lit.js +7 -0
  369. package/src/sap/ui/webc/main/thirdparty/generated/templates/TabSeparatorInStripTemplate.lit.js +7 -0
  370. package/src/sap/ui/webc/main/thirdparty/generated/templates/TableGroupRowTemplate.lit.js +1 -1
  371. package/src/sap/ui/webc/main/thirdparty/generated/templates/TableRowTemplate.lit.js +2 -2
  372. package/src/sap/ui/webc/main/thirdparty/generated/templates/TableTemplate.lit.js +4 -4
  373. package/src/sap/ui/webc/main/thirdparty/generated/templates/TextAreaPopoverTemplate.lit.js +1 -1
  374. package/src/sap/ui/webc/main/thirdparty/generated/templates/TimePickerPopoverTemplate.lit.js +1 -1
  375. package/src/sap/ui/webc/main/thirdparty/generated/templates/TimePickerTemplate.lit.js +1 -1
  376. package/src/sap/ui/webc/main/thirdparty/generated/templates/TimeSelectionTemplate.lit.js +1 -1
  377. package/src/sap/ui/webc/main/thirdparty/generated/templates/ToastTemplate.lit.js +2 -1
  378. package/src/sap/ui/webc/main/thirdparty/generated/templates/ToggleButtonTemplate.lit.js +1 -1
  379. package/src/sap/ui/webc/main/thirdparty/generated/templates/TokenTemplate.lit.js +1 -1
  380. package/src/sap/ui/webc/main/thirdparty/generated/templates/TreeListItemTemplate.lit.js +5 -5
  381. package/src/sap/ui/webc/main/thirdparty/generated/templates/TreeTemplate.lit.js +1 -1
  382. package/src/sap/ui/webc/main/thirdparty/generated/templates/WheelSliderTemplate.lit.js +2 -2
  383. package/src/sap/ui/webc/main/thirdparty/generated/themes/Avatar.css.js +3 -3
  384. package/src/sap/ui/webc/main/thirdparty/generated/themes/AvatarGroup.css.js +3 -3
  385. package/src/sap/ui/webc/main/thirdparty/generated/themes/Badge.css.js +3 -3
  386. package/src/sap/ui/webc/main/thirdparty/generated/themes/Breadcrumbs.css.js +3 -3
  387. package/src/sap/ui/webc/main/thirdparty/generated/themes/BreadcrumbsPopover.css.js +3 -3
  388. package/src/sap/ui/webc/main/thirdparty/generated/themes/BrowserScrollbar.css.js +3 -3
  389. package/src/sap/ui/webc/main/thirdparty/generated/themes/BusyIndicator.css.js +3 -3
  390. package/src/sap/ui/webc/main/thirdparty/generated/themes/Button.css.js +3 -3
  391. package/src/sap/ui/webc/main/thirdparty/generated/themes/Button.ie11.css.js +3 -3
  392. package/src/sap/ui/webc/main/thirdparty/generated/themes/Calendar.css.js +3 -3
  393. package/src/sap/ui/webc/main/thirdparty/generated/themes/CalendarHeader.css.js +3 -3
  394. package/src/sap/ui/webc/main/thirdparty/generated/themes/Card.css.js +3 -3
  395. package/src/sap/ui/webc/main/thirdparty/generated/themes/CardHeader.css.js +3 -3
  396. package/src/sap/ui/webc/main/thirdparty/generated/themes/Carousel.css.js +3 -3
  397. package/src/sap/ui/webc/main/thirdparty/generated/themes/CheckBox.css.js +3 -3
  398. package/src/sap/ui/webc/main/thirdparty/generated/themes/ColorPalette.css.js +3 -3
  399. package/src/sap/ui/webc/main/thirdparty/generated/themes/ColorPaletteItem.css.js +3 -3
  400. package/src/sap/ui/webc/main/thirdparty/generated/themes/ColorPalettePopover.css.js +13 -0
  401. package/src/sap/ui/webc/main/thirdparty/generated/themes/ColorPaletteStaticArea.css.js +3 -3
  402. package/src/sap/ui/webc/main/thirdparty/generated/themes/ColorPicker.css.js +3 -3
  403. package/src/sap/ui/webc/main/thirdparty/generated/themes/ComboBox.css.js +3 -3
  404. package/src/sap/ui/webc/main/thirdparty/generated/themes/ComboBoxPopover.css.js +3 -3
  405. package/src/sap/ui/webc/main/thirdparty/generated/themes/CustomListItem.css.js +3 -3
  406. package/src/sap/ui/webc/main/thirdparty/generated/themes/DatePicker.css.js +3 -3
  407. package/src/sap/ui/webc/main/thirdparty/generated/themes/DatePickerPopover.css.js +3 -3
  408. package/src/sap/ui/webc/main/thirdparty/generated/themes/DateRangePicker.css.js +3 -3
  409. package/src/sap/ui/webc/main/thirdparty/generated/themes/DateTimePicker.css.js +3 -3
  410. package/src/sap/ui/webc/main/thirdparty/generated/themes/DateTimePickerPopover.css.js +3 -3
  411. package/src/sap/ui/webc/main/thirdparty/generated/themes/DayPicker.css.js +3 -3
  412. package/src/sap/ui/webc/main/thirdparty/generated/themes/Dialog.css.js +3 -3
  413. package/src/sap/ui/webc/main/thirdparty/generated/themes/FileUploader.css.js +3 -3
  414. package/src/sap/ui/webc/main/thirdparty/generated/themes/GroupHeaderListItem.css.js +3 -3
  415. package/src/sap/ui/webc/main/thirdparty/generated/themes/GrowingButton.css.js +3 -3
  416. package/src/sap/ui/webc/main/thirdparty/generated/themes/Icon.css.js +3 -3
  417. package/src/sap/ui/webc/main/thirdparty/generated/themes/Input.css.js +3 -3
  418. package/src/sap/ui/webc/main/thirdparty/generated/themes/InputIcon.css.js +3 -3
  419. package/src/sap/ui/webc/main/thirdparty/generated/themes/InvisibleTextStyles.css.js +3 -3
  420. package/src/sap/ui/webc/main/thirdparty/generated/themes/Label.css.js +3 -3
  421. package/src/sap/ui/webc/main/thirdparty/generated/themes/Link.css.js +3 -3
  422. package/src/sap/ui/webc/main/thirdparty/generated/themes/List.css.js +3 -3
  423. package/src/sap/ui/webc/main/thirdparty/generated/themes/ListItem.css.js +3 -3
  424. package/src/sap/ui/webc/main/thirdparty/generated/themes/ListItemBase.css.js +3 -3
  425. package/src/sap/ui/webc/main/thirdparty/generated/themes/MessageStrip.css.js +3 -3
  426. package/src/sap/ui/webc/main/thirdparty/generated/themes/MonthPicker.css.js +3 -3
  427. package/src/sap/ui/webc/main/thirdparty/generated/themes/MultiComboBox.css.js +3 -3
  428. package/src/sap/ui/webc/main/thirdparty/generated/themes/MultiInput.css.js +3 -3
  429. package/src/sap/ui/webc/main/thirdparty/generated/themes/Panel.css.js +3 -3
  430. package/src/sap/ui/webc/main/thirdparty/generated/themes/Popover.css.js +3 -3
  431. package/src/sap/ui/webc/main/thirdparty/generated/themes/Popup.css.js +3 -3
  432. package/src/sap/ui/webc/main/thirdparty/generated/themes/PopupGlobal.css.js +13 -0
  433. package/src/sap/ui/webc/main/thirdparty/generated/themes/PopupStaticAreaStyles.css.js +3 -3
  434. package/src/sap/ui/webc/main/thirdparty/generated/themes/PopupsCommon.css.js +3 -3
  435. package/src/sap/ui/webc/main/thirdparty/generated/themes/ProgressIndicator.css.js +3 -3
  436. package/src/sap/ui/webc/main/thirdparty/generated/themes/RadioButton.css.js +3 -3
  437. package/src/sap/ui/webc/main/thirdparty/generated/themes/RatingIndicator.css.js +3 -3
  438. package/src/sap/ui/webc/main/thirdparty/generated/themes/ResponsivePopover.css.js +3 -3
  439. package/src/sap/ui/webc/main/thirdparty/generated/themes/ResponsivePopoverCommon.css.js +3 -3
  440. package/src/sap/ui/webc/main/thirdparty/generated/themes/SegmentedButton.css.js +3 -3
  441. package/src/sap/ui/webc/main/thirdparty/generated/themes/Select.css.js +3 -3
  442. package/src/sap/ui/webc/main/thirdparty/generated/themes/SelectPopover.css.js +3 -3
  443. package/src/sap/ui/webc/main/thirdparty/generated/themes/SliderBase.css.js +3 -3
  444. package/src/sap/ui/webc/main/thirdparty/generated/themes/SplitButton.css.js +13 -0
  445. package/src/sap/ui/webc/main/thirdparty/generated/themes/StepInput.css.js +3 -3
  446. package/src/sap/ui/webc/main/thirdparty/generated/themes/Suggestions.css.js +13 -0
  447. package/src/sap/ui/webc/main/thirdparty/generated/themes/Switch.css.js +3 -3
  448. package/src/sap/ui/webc/main/thirdparty/generated/themes/Tab.css.js +3 -3
  449. package/src/sap/ui/webc/main/thirdparty/generated/themes/TabContainer.css.js +3 -3
  450. package/src/sap/ui/webc/main/thirdparty/generated/themes/TabInOverflow.css.js +3 -3
  451. package/src/sap/ui/webc/main/thirdparty/generated/themes/TabInStrip.css.js +3 -3
  452. package/src/sap/ui/webc/main/thirdparty/generated/themes/TabSeparatorInOverflow.css.js +13 -0
  453. package/src/sap/ui/webc/main/thirdparty/generated/themes/TabSeparatorInStrip.css.js +13 -0
  454. package/src/sap/ui/webc/main/thirdparty/generated/themes/Table.css.js +3 -3
  455. package/src/sap/ui/webc/main/thirdparty/generated/themes/TableCell.css.js +3 -3
  456. package/src/sap/ui/webc/main/thirdparty/generated/themes/TableColumn.css.js +3 -3
  457. package/src/sap/ui/webc/main/thirdparty/generated/themes/TableGroupRow.css.js +3 -3
  458. package/src/sap/ui/webc/main/thirdparty/generated/themes/TableRow.css.js +3 -3
  459. package/src/sap/ui/webc/main/thirdparty/generated/themes/TapHighlightColor.css.js +13 -0
  460. package/src/sap/ui/webc/main/thirdparty/generated/themes/TextArea.css.js +3 -3
  461. package/src/sap/ui/webc/main/thirdparty/generated/themes/TimePicker.css.js +3 -3
  462. package/src/sap/ui/webc/main/thirdparty/generated/themes/TimePickerPopover.css.js +3 -3
  463. package/src/sap/ui/webc/main/thirdparty/generated/themes/TimeSelection.css.js +3 -3
  464. package/src/sap/ui/webc/main/thirdparty/generated/themes/Title.css.js +3 -3
  465. package/src/sap/ui/webc/main/thirdparty/generated/themes/Toast.css.js +3 -3
  466. package/src/sap/ui/webc/main/thirdparty/generated/themes/ToggleButton.css.js +3 -3
  467. package/src/sap/ui/webc/main/thirdparty/generated/themes/ToggleButton.ie11.css.js +3 -3
  468. package/src/sap/ui/webc/main/thirdparty/generated/themes/Token.css.js +3 -3
  469. package/src/sap/ui/webc/main/thirdparty/generated/themes/Tokenizer.css.js +3 -3
  470. package/src/sap/ui/webc/main/thirdparty/generated/themes/Tree.css.js +3 -3
  471. package/src/sap/ui/webc/main/thirdparty/generated/themes/TreeListItem.css.js +3 -3
  472. package/src/sap/ui/webc/main/thirdparty/generated/themes/ValueStateMessage.css.js +3 -3
  473. package/src/sap/ui/webc/main/thirdparty/generated/themes/WheelSlider.css.js +3 -3
  474. package/src/sap/ui/webc/main/thirdparty/generated/themes/YearPicker.css.js +3 -3
  475. package/src/sap/ui/webc/main/thirdparty/generated/themes/sap_belize/parameters-bundle.css.js +1 -1
  476. package/src/sap/ui/webc/main/thirdparty/generated/themes/sap_belize_hcb/parameters-bundle.css.js +1 -1
  477. package/src/sap/ui/webc/main/thirdparty/generated/themes/sap_belize_hcw/parameters-bundle.css.js +1 -1
  478. package/src/sap/ui/webc/main/thirdparty/generated/themes/sap_fiori_3/parameters-bundle.css.js +1 -1
  479. package/src/sap/ui/webc/main/thirdparty/generated/themes/sap_fiori_3_dark/parameters-bundle.css.js +1 -1
  480. package/src/sap/ui/webc/main/thirdparty/generated/themes/sap_fiori_3_hcb/parameters-bundle.css.js +1 -1
  481. package/src/sap/ui/webc/main/thirdparty/generated/themes/sap_fiori_3_hcw/parameters-bundle.css.js +1 -1
  482. package/src/sap/ui/webc/main/thirdparty/generated/themes/sap_horizon/parameters-bundle.css.js +7 -0
  483. package/src/sap/ui/webc/main/thirdparty/generated/themes/sap_horizon_exp/parameters-bundle.css.js +7 -0
  484. package/src/sap/ui/webc/main/thirdparty/{messagebundle_ar-7754de1c.js → messagebundle_ar-7d8b4442.js} +17 -2
  485. package/src/sap/ui/webc/main/thirdparty/{messagebundle_bg-041345aa.js → messagebundle_bg-9ad96f98.js} +17 -2
  486. package/src/sap/ui/webc/main/thirdparty/{messagebundle_ca-df38eb0b.js → messagebundle_ca-f1555bd9.js} +17 -2
  487. package/src/sap/ui/webc/main/thirdparty/{messagebundle_cs-51d17321.js → messagebundle_cs-ef8aa726.js} +17 -2
  488. package/src/sap/ui/webc/main/thirdparty/{messagebundle_cy-cc129f0c.js → messagebundle_cy-990b67d4.js} +17 -2
  489. package/src/sap/ui/webc/main/thirdparty/{messagebundle_da-bc87b599.js → messagebundle_da-10ddad8e.js} +17 -2
  490. package/src/sap/ui/webc/main/thirdparty/{messagebundle_de-518b0a75.js → messagebundle_de-3df474de.js} +17 -2
  491. package/src/sap/ui/webc/main/thirdparty/{messagebundle_el-9686b145.js → messagebundle_el-26906c8d.js} +17 -2
  492. package/src/sap/ui/webc/main/thirdparty/{messagebundle_en-57ad19b6.js → messagebundle_en-f820b936.js} +17 -2
  493. package/src/sap/ui/webc/main/thirdparty/{messagebundle_en_GB-588d53e3.js → messagebundle_en_GB-2d06b0a2.js} +17 -2
  494. package/src/sap/ui/webc/main/thirdparty/{messagebundle_en_US_sappsd-e370df7b.js → messagebundle_en_US_sappsd-5a02ac90.js} +17 -2
  495. package/src/sap/ui/webc/main/thirdparty/{messagebundle_en_US_saprigi-adf0ddb3.js → messagebundle_en_US_saprigi-789390fa.js} +20 -2
  496. package/src/sap/ui/webc/main/thirdparty/{messagebundle_en_US_saptrc-261422e2.js → messagebundle_en_US_saptrc-b8adcdb7.js} +17 -2
  497. package/src/sap/ui/webc/main/thirdparty/{messagebundle_es-ec258b44.js → messagebundle_es-fb48a8d9.js} +17 -2
  498. package/src/sap/ui/webc/main/thirdparty/{messagebundle_es_MX-5f113e73.js → messagebundle_es_MX-1649847d.js} +18 -3
  499. package/src/sap/ui/webc/main/thirdparty/{messagebundle_et-901c732b.js → messagebundle_et-21441666.js} +17 -2
  500. package/src/sap/ui/webc/main/thirdparty/{messagebundle_fi-0a2a6323.js → messagebundle_fi-a7a6ed50.js} +18 -3
  501. package/src/sap/ui/webc/main/thirdparty/{messagebundle_fr-5df8899a.js → messagebundle_fr-7d25aa37.js} +17 -2
  502. package/src/sap/ui/webc/main/thirdparty/{messagebundle_fr_CA-0de6a568.js → messagebundle_fr_CA-f0885bcd.js} +17 -2
  503. package/src/sap/ui/webc/main/thirdparty/{messagebundle_hi-13e67957.js → messagebundle_hi-4ff3dc19.js} +17 -2
  504. package/src/sap/ui/webc/main/thirdparty/{messagebundle_hr-93fbc1d1.js → messagebundle_hr-27ea5966.js} +17 -2
  505. package/src/sap/ui/webc/main/thirdparty/{messagebundle_hu-dd94c35e.js → messagebundle_hu-4e7efab2.js} +17 -2
  506. package/src/sap/ui/webc/main/thirdparty/{messagebundle_it-0c46ce25.js → messagebundle_it-05136e9a.js} +17 -2
  507. package/src/sap/ui/webc/main/thirdparty/{messagebundle_iw-946df0a2.js → messagebundle_iw-e57af9b5.js} +17 -2
  508. package/src/sap/ui/webc/main/thirdparty/{messagebundle_ja-9cb333bb.js → messagebundle_ja-548e66ac.js} +19 -4
  509. package/src/sap/ui/webc/main/thirdparty/{messagebundle_kk-239d7820.js → messagebundle_kk-9a532b4c.js} +17 -2
  510. package/src/sap/ui/webc/main/thirdparty/{messagebundle_ko-6f09e984.js → messagebundle_ko-85246117.js} +17 -2
  511. package/src/sap/ui/webc/main/thirdparty/{messagebundle_lt-2d4f9935.js → messagebundle_lt-fd1ed9a8.js} +17 -2
  512. package/src/sap/ui/webc/main/thirdparty/{messagebundle_lv-d73bf0c0.js → messagebundle_lv-528ee0b5.js} +17 -2
  513. package/src/sap/ui/webc/main/thirdparty/{messagebundle_ms-9b4b2929.js → messagebundle_ms-ab977639.js} +17 -2
  514. package/src/sap/ui/webc/main/thirdparty/{messagebundle_nl-55193168.js → messagebundle_nl-6ef0aca9.js} +17 -2
  515. package/src/sap/ui/webc/main/thirdparty/{messagebundle_no-7f4a6832.js → messagebundle_no-598c70b3.js} +17 -2
  516. package/src/sap/ui/webc/main/thirdparty/{messagebundle_pl-89c36a34.js → messagebundle_pl-3c6bd3f7.js} +17 -2
  517. package/src/sap/ui/webc/main/thirdparty/{messagebundle_pt-b87f9645.js → messagebundle_pt-a38c9a95.js} +17 -2
  518. package/src/sap/ui/webc/main/thirdparty/{messagebundle_pt_PT-0e8230b0.js → messagebundle_pt_PT-6216e41a.js} +17 -2
  519. package/src/sap/ui/webc/main/thirdparty/{messagebundle_ro-83e7f44d.js → messagebundle_ro-4efbaf89.js} +17 -2
  520. package/src/sap/ui/webc/main/thirdparty/{messagebundle_ru-befd37d0.js → messagebundle_ru-c8cc395e.js} +17 -2
  521. package/src/sap/ui/webc/main/thirdparty/{messagebundle_sh-4edec182.js → messagebundle_sh-a18343ab.js} +17 -2
  522. package/src/sap/ui/webc/main/thirdparty/{messagebundle_sk-29160489.js → messagebundle_sk-cbb7b742.js} +17 -2
  523. package/src/sap/ui/webc/main/thirdparty/{messagebundle_sl-fd9ba370.js → messagebundle_sl-39b012e5.js} +17 -2
  524. package/src/sap/ui/webc/main/thirdparty/{messagebundle_sv-57bfda52.js → messagebundle_sv-68d03f9d.js} +17 -2
  525. package/src/sap/ui/webc/main/thirdparty/{messagebundle_th-184c45a0.js → messagebundle_th-e0f152c1.js} +16 -1
  526. package/src/sap/ui/webc/main/thirdparty/{messagebundle_tr-d5781fbb.js → messagebundle_tr-10848533.js} +17 -2
  527. package/src/sap/ui/webc/main/thirdparty/{messagebundle_uk-e49bb47f.js → messagebundle_uk-64f282f3.js} +17 -2
  528. package/src/sap/ui/webc/main/thirdparty/{messagebundle_vi-ce27847a.js → messagebundle_vi-c6d60018.js} +17 -2
  529. package/src/sap/ui/webc/main/thirdparty/{messagebundle_zh_CN-bdbfb1bd.js → messagebundle_zh_CN-3be28696.js} +17 -2
  530. package/src/sap/ui/webc/main/thirdparty/{messagebundle_zh_TW-ca1de535.js → messagebundle_zh_TW-229e0d2b.js} +16 -1
  531. package/src/sap/ui/webc/main/thirdparty/parameters-bundle.css-87f538cb.js +13 -0
  532. package/src/sap/ui/webc/main/thirdparty/parameters-bundle.css-91761a3a.js +13 -0
  533. package/src/sap/ui/webc/main/thirdparty/parameters-bundle.css-9a20ee88.js +13 -0
  534. package/src/sap/ui/webc/main/thirdparty/parameters-bundle.css-ae75ba99.js +13 -0
  535. package/src/sap/ui/webc/main/thirdparty/parameters-bundle.css-b27de009.js +13 -0
  536. package/src/sap/ui/webc/main/thirdparty/parameters-bundle.css-ba83be15.js +13 -0
  537. package/src/sap/ui/webc/main/thirdparty/parameters-bundle.css-c6c72cae.js +13 -0
  538. package/src/sap/ui/webc/main/thirdparty/parameters-bundle.css-dc4174de.js +13 -0
  539. package/src/sap/ui/webc/main/thirdparty/parameters-bundle.css-dd344116.js +13 -0
  540. package/src/sap/ui/webc/main/thirdparty/types/HasPopup.js +23 -0
  541. package/src/sap/ui/webc/main/thirdparty/types/TabsOverflowMode.js +20 -0
  542. package/src/sap/ui/webc/main/thirdparty/generated/templates/TabSeparatorTemplate.lit.js +0 -7
  543. package/src/sap/ui/webc/main/thirdparty/parameters-bundle.css-09f8e92d.js +0 -9
  544. package/src/sap/ui/webc/main/thirdparty/parameters-bundle.css-19666884.js +0 -9
  545. package/src/sap/ui/webc/main/thirdparty/parameters-bundle.css-8e7c6ad9.js +0 -9
  546. package/src/sap/ui/webc/main/thirdparty/parameters-bundle.css-cb713657.js +0 -9
  547. package/src/sap/ui/webc/main/thirdparty/parameters-bundle.css-dd8f2f47.js +0 -9
  548. package/src/sap/ui/webc/main/thirdparty/parameters-bundle.css-e3a31f8e.js +0 -9
  549. package/src/sap/ui/webc/main/thirdparty/parameters-bundle.css-e44b2b84.js +0 -9
@@ -44,7 +44,7 @@ sap.ui.define([
44
44
  * </ul>
45
45
  *
46
46
  * @author SAP SE
47
- * @version 1.96.5
47
+ * @version 1.99.0
48
48
  *
49
49
  * @constructor
50
50
  * @public
@@ -66,14 +66,6 @@ sap.ui.define([
66
66
  type: "string"
67
67
  },
68
68
 
69
- /**
70
- * Receives id(or many ids) of the elements that label the component.
71
- */
72
- accessibleNameRef: {
73
- type: "string",
74
- defaultValue: ""
75
- },
76
-
77
69
  /**
78
70
  * Determines the symbol which separates the dates. If not supplied, the default time interval delimiter for the current locale will be used.
79
71
  */
@@ -102,7 +94,7 @@ sap.ui.define([
102
94
  * <br>
103
95
  *
104
96
  *
105
- * <b>Note:<b> For calendars other than Gregorian, the week numbers are not displayed regardless of what is set.
97
+ * <b>Note:</b> For calendars other than Gregorian, the week numbers are not displayed regardless of what is set.
106
98
  */
107
99
  hideWeekNumbers: {
108
100
  type: "boolean",
@@ -118,7 +110,7 @@ sap.ui.define([
118
110
  },
119
111
 
120
112
  /**
121
- * Determines the мinimum date available for selection.
113
+ * Determines the minimum date available for selection.
122
114
  */
123
115
  minDate: {
124
116
  type: "string",
@@ -232,6 +224,21 @@ sap.ui.define([
232
224
  mapping: "style"
233
225
  }
234
226
  },
227
+ associations: {
228
+
229
+ /**
230
+ * Receives id(or many ids) of the controls that label this control.
231
+ */
232
+ ariaLabelledBy: {
233
+ type: "sap.ui.core.Control",
234
+ multiple: true,
235
+ mapping: {
236
+ type: "property",
237
+ to: "accessibleNameRef",
238
+ formatter: "_getAriaLabelledByForRendering"
239
+ }
240
+ }
241
+ },
235
242
  events: {
236
243
 
237
244
  /**
@@ -279,7 +286,7 @@ sap.ui.define([
279
286
  }
280
287
  },
281
288
  methods: ["closePicker", "formatValue", "isInValidRange", "isOpen", "isValid", "openPicker"],
282
- getters: ["dateValue", "endDateValue", "startDateValue"]
289
+ getters: ["dateValue", "dateValueUTC", "endDateValue", "startDateValue"]
283
290
  }
284
291
  });
285
292
 
@@ -329,12 +336,19 @@ sap.ui.define([
329
336
  */
330
337
 
331
338
  /**
332
- * Returns the currently selected date represented as a Local JavaScript Date instance.
339
+ * Returns the <b>Note:</b> The getter method is inherited and not supported. If called it will return an empty value.
333
340
  * @public
334
341
  * @name sap.ui.webc.main.DateRangePicker#getDateValue
335
342
  * @function
336
343
  */
337
344
 
345
+ /**
346
+ * Returns the <b>Note:</b> The getter method is inherited and not supported. If called it will return an empty value.
347
+ * @public
348
+ * @name sap.ui.webc.main.DateRangePicker#getDateValueUTC
349
+ * @function
350
+ */
351
+
338
352
  /**
339
353
  * Returns the end date of the currently selected range as JavaScript Date instance.
340
354
  * @public
@@ -349,5 +363,8 @@ sap.ui.define([
349
363
  * @function
350
364
  */
351
365
 
366
+ /* CUSTOM CODE START */
367
+ /* CUSTOM CODE END */
368
+
352
369
  return DateRangePicker;
353
370
  });
@@ -37,9 +37,7 @@ sap.ui.define([
37
37
  * <li>typing in the input field</li>
38
38
  * </ul>
39
39
  *
40
- * Programatically, to set date/time for the <code>DateTimePicker</code>, use the <code>value</code> property <br>
41
- * <br>
42
- * As most of the input based components, the <code>DateTimePicker</code> supports properties, such as: <code>disabled</code>, <code>readonly</code>, <code>valueState</code> and <code>placeholder</code>.
40
+ * Programatically, to set date/time for the <code>DateTimePicker</code>, use the <code>value</code> property
43
41
  *
44
42
  * <h3>Formatting</h3>
45
43
  *
@@ -72,7 +70,7 @@ sap.ui.define([
72
70
  * The <code>DateTimePicker</code> is responsive and fully adapts to all devices. For larger screens, such as tablet or desktop, it is displayed as a popover, while on phone devices, it is displayed full screen.
73
71
  *
74
72
  * @author SAP SE
75
- * @version 1.96.5
73
+ * @version 1.99.0
76
74
  *
77
75
  * @constructor
78
76
  * @public
@@ -94,14 +92,6 @@ sap.ui.define([
94
92
  type: "string"
95
93
  },
96
94
 
97
- /**
98
- * Receives id(or many ids) of the elements that label the component.
99
- */
100
- accessibleNameRef: {
101
- type: "string",
102
- defaultValue: ""
103
- },
104
-
105
95
  /**
106
96
  * Determines whether the component is displayed as disabled.
107
97
  */
@@ -123,7 +113,7 @@ sap.ui.define([
123
113
  * <br>
124
114
  *
125
115
  *
126
- * <b>Note:<b> For calendars other than Gregorian, the week numbers are not displayed regardless of what is set.
116
+ * <b>Note:</b> For calendars other than Gregorian, the week numbers are not displayed regardless of what is set.
127
117
  */
128
118
  hideWeekNumbers: {
129
119
  type: "boolean",
@@ -139,7 +129,7 @@ sap.ui.define([
139
129
  },
140
130
 
141
131
  /**
142
- * Determines the мinimum date available for selection.
132
+ * Determines the minimum date available for selection.
143
133
  */
144
134
  minDate: {
145
135
  type: "string",
@@ -253,6 +243,21 @@ sap.ui.define([
253
243
  mapping: "style"
254
244
  }
255
245
  },
246
+ associations: {
247
+
248
+ /**
249
+ * Receives id(or many ids) of the controls that label this control.
250
+ */
251
+ ariaLabelledBy: {
252
+ type: "sap.ui.core.Control",
253
+ multiple: true,
254
+ mapping: {
255
+ type: "property",
256
+ to: "accessibleNameRef",
257
+ formatter: "_getAriaLabelledByForRendering"
258
+ }
259
+ }
260
+ },
256
261
  events: {
257
262
 
258
263
  /**
@@ -356,5 +361,8 @@ sap.ui.define([
356
361
  * @function
357
362
  */
358
363
 
364
+ /* CUSTOM CODE START */
365
+ /* CUSTOM CODE END */
366
+
359
367
  return DateTimePicker;
360
368
  });
@@ -36,7 +36,7 @@ sap.ui.define([
36
36
  * <b>Note:</b> We don't recommend nesting popup-like components (<code>sap.ui.webc.main.Dialog</code>, <code>sap.ui.webc.main.Popover</code>) inside other components containing z-index. This might break z-index management.
37
37
  *
38
38
  * @author SAP SE
39
- * @version 1.96.5
39
+ * @version 1.99.0
40
40
  *
41
41
  * @constructor
42
42
  * @public
@@ -52,7 +52,7 @@ sap.ui.define([
52
52
  properties: {
53
53
 
54
54
  /**
55
- * Sets the accessible aria name of the component.
55
+ * Defines the accessible name of the component.
56
56
  */
57
57
  accessibleName: {
58
58
  type: "string",
@@ -165,6 +165,21 @@ sap.ui.define([
165
165
  slot: "header"
166
166
  }
167
167
  },
168
+ associations: {
169
+
170
+ /**
171
+ * Receives id(or many ids) of the controls that label this control.
172
+ */
173
+ ariaLabelledBy: {
174
+ type: "sap.ui.core.Control",
175
+ multiple: true,
176
+ mapping: {
177
+ type: "property",
178
+ to: "accessibleNameRef",
179
+ formatter: "_getAriaLabelledByForRendering"
180
+ }
181
+ }
182
+ },
168
183
  events: {
169
184
 
170
185
  /**
@@ -237,5 +252,8 @@ sap.ui.define([
237
252
  * @function
238
253
  */
239
254
 
255
+ /* CUSTOM CODE START */
256
+ /* CUSTOM CODE END */
257
+
240
258
  return Dialog;
241
259
  });
@@ -31,7 +31,7 @@ sap.ui.define([
31
31
  * And, similar to all input based components, the FileUploader supports "valueState", "placeholder", "name", and "disabled" properties.
32
32
  *
33
33
  * @author SAP SE
34
- * @version 1.96.5
34
+ * @version 1.99.0
35
35
  *
36
36
  * @constructor
37
37
  * @public
@@ -59,7 +59,7 @@ sap.ui.define([
59
59
  /**
60
60
  * Defines whether the component is in disabled state. <br>
61
61
  * <br>
62
- * <b>Note:</b> A disabledcomponent is completely noninteractive.
62
+ * <b>Note:</b> A disabled component is completely noninteractive.
63
63
  */
64
64
  disabled: {
65
65
  type: "boolean",
@@ -192,5 +192,8 @@ sap.ui.define([
192
192
  * @function
193
193
  */
194
194
 
195
+ /* CUSTOM CODE START */
196
+ /* CUSTOM CODE END */
197
+
195
198
  return FileUploader;
196
199
  });
@@ -24,7 +24,7 @@ sap.ui.define([
24
24
  * The <code>sap.ui.webc.main.GroupHeaderListItem</code> is a special list item, used only to separate other list items into logical groups.
25
25
  *
26
26
  * @author SAP SE
27
- * @version 1.96.5
27
+ * @version 1.99.0
28
28
  *
29
29
  * @constructor
30
30
  * @public
@@ -71,5 +71,8 @@ sap.ui.define([
71
71
  }
72
72
  });
73
73
 
74
+ /* CUSTOM CODE START */
75
+ /* CUSTOM CODE END */
76
+
74
77
  return GroupHeaderListItem;
75
78
  });
@@ -42,14 +42,14 @@ sap.ui.define([
42
42
  * <br>
43
43
  *
44
44
  * @author SAP SE
45
- * @version 1.96.5
45
+ * @version 1.99.0
46
46
  *
47
47
  * @constructor
48
48
  * @public
49
49
  * @since 1.92.0
50
50
  * @experimental Since 1.92.0 This control is experimental and its API might change significantly.
51
51
  * @alias sap.ui.webc.main.Icon
52
- * @implements sap.ui.webc.main.IIcon
52
+ * @implements sap.ui.webc.main.IIcon, sap.ui.core.IFormContent
53
53
  * @ui5-metamodel This control/element also will be described in the UI5 (legacy) designtime metamodel
54
54
  */
55
55
  var Icon = WebComponent.extend("sap.ui.webc.main.Icon", {
@@ -57,7 +57,8 @@ sap.ui.define([
57
57
  library: "sap.ui.webc.main",
58
58
  tag: "ui5-icon-ui5",
59
59
  interfaces: [
60
- "sap.ui.webc.main.IIcon"
60
+ "sap.ui.webc.main.IIcon",
61
+ "sap.ui.core.IFormContent"
61
62
  ],
62
63
  properties: {
63
64
 
@@ -71,6 +72,14 @@ sap.ui.define([
71
72
  defaultValue: ""
72
73
  },
73
74
 
75
+ /**
76
+ * Defines the accessibility role of the component.
77
+ */
78
+ accessibleRole: {
79
+ type: "string",
80
+ defaultValue: ""
81
+ },
82
+
74
83
  /**
75
84
  * Defines the background color of the control
76
85
  */
@@ -158,5 +167,13 @@ sap.ui.define([
158
167
  }
159
168
  });
160
169
 
170
+ /* CUSTOM CODE START */
171
+
172
+ Icon.prototype.getFormDoNotAdjustWidth = function() {
173
+ return true;
174
+ };
175
+
176
+ /* CUSTOM CODE END */
177
+
161
178
  return Icon;
162
179
  });
@@ -30,12 +30,28 @@ sap.ui.define([
30
30
  * The <code>sap.ui.webc.main.Input</code> component allows the user to enter and edit text or numeric values in one line. <br>
31
31
  * Additionally, you can provide <code>suggestionItems</code>, that are displayed in a popover right under the input. <br>
32
32
  * <br>
33
- * The text field can be editable or read-only (<code>readonly</code> property), and it can be enabled or disabled (<code>enabled</code> property). To visualize semantic states, such as "error" or "warning", the <code>valueState</code> property is provided. When the user makes changes to the text, the change event is fired, which enables you to react on any text change. <br>
33
+ * The text field can be editable or read-only (<code>readonly</code> property), and it can be enabled or disabled (<code>disabled</code> property). To visualize semantic states, such as "error" or "warning", the <code>valueState</code> property is provided. When the user makes changes to the text, the change event is fired, which enables you to react on any text change. <br>
34
34
  * <br>
35
35
  * <b>Note:</b> If you are using the <code>sap.ui.webc.main.Input</code> as a single npm module, don't forget to import the <code>InputSuggestions</code> module from "@ui5/webcomponents/dist/features/InputSuggestions.js" to enable the suggestions functionality.
36
36
  *
37
+ * <h3>Keyboard Handling</h3> The <code>sap.ui.webc.main.Input</code> provides the following keyboard shortcuts: <br>
38
+ *
39
+ *
40
+ *
41
+ * <ul>
42
+ * <li>[F4], [ALT]+[UP], or [ALT]+[DOWN] - Opens value help if available, same as clicking the value help icon. (Does not open suggestion list.)</li>
43
+ * <li>[ESC] - Closes the suggestion list, if open. If closed or not enabled, cancels changes and reverts to the value which the Input field had when it got the focus.</li>
44
+ * <li>[ENTER] or [RETURN] - If suggestion list is open takes over the current matching item and closes it. If value state or group header is focused, does nothing.</li>
45
+ * <li>[DOWN] - Focuses the next matching item in the suggestion list.</li>
46
+ * <li>[UP] - Focuses the previous matching item in the suggestion list.</li>
47
+ * <li>[HOME] - If focus is in the text input, moves caret before the first character. If focus is in the list, highlights the first item and updates the input accordingly.</li>
48
+ * <li>[END] - If focus is in the text input, moves caret after the last character. If focus is in the list, highlights the last item and updates the input accordingly.</li>
49
+ * <li>[PAGEUP] - If focus is in the list, moves highlight up by page size (10 items by default). If focus is in the input, does nothing.</li>
50
+ * <li>[PAGEDOWN] - If focus is in the list, moves highlight down by page size (10 items by default). If focus is in the input, does nothing.</li>
51
+ * </ul>
52
+ *
37
53
  * @author SAP SE
38
- * @version 1.96.5
54
+ * @version 1.99.0
39
55
  *
40
56
  * @constructor
41
57
  * @public
@@ -61,14 +77,6 @@ sap.ui.define([
61
77
  type: "string"
62
78
  },
63
79
 
64
- /**
65
- * Receives id(or many ids) of the elements that label the input
66
- */
67
- accessibleNameRef: {
68
- type: "string",
69
- defaultValue: ""
70
- },
71
-
72
80
  /**
73
81
  * Defines whether the component is in disabled state. <br>
74
82
  * <br>
@@ -125,6 +133,14 @@ sap.ui.define([
125
133
  defaultValue: false
126
134
  },
127
135
 
136
+ /**
137
+ * Defines whether the clear icon of the input will be shown.
138
+ */
139
+ showClearIcon: {
140
+ type: "boolean",
141
+ defaultValue: false
142
+ },
143
+
128
144
  /**
129
145
  * Defines whether the component should show suggestions, if such are present. <br>
130
146
  * <br>
@@ -191,6 +207,15 @@ sap.ui.define([
191
207
  type: "slot",
192
208
  to: "div"
193
209
  }
210
+ },
211
+
212
+ /**
213
+ * Defines the width of the control
214
+ */
215
+ width: {
216
+ type: "sap.ui.core.CSSSize",
217
+ defaultValue: null,
218
+ mapping: "style"
194
219
  }
195
220
  },
196
221
  defaultAggregation: "suggestionItems",
@@ -201,7 +226,7 @@ sap.ui.define([
201
226
  */
202
227
  icon: {
203
228
  type: "sap.ui.webc.main.IIcon",
204
- multiple: false,
229
+ multiple: true,
205
230
  slot: "icon"
206
231
  },
207
232
 
@@ -213,6 +238,21 @@ sap.ui.define([
213
238
  multiple: true
214
239
  }
215
240
  },
241
+ associations: {
242
+
243
+ /**
244
+ * Receives id(or many ids) of the controls that label this control.
245
+ */
246
+ ariaLabelledBy: {
247
+ type: "sap.ui.core.Control",
248
+ multiple: true,
249
+ mapping: {
250
+ type: "property",
251
+ to: "accessibleNameRef",
252
+ formatter: "_getAriaLabelledByForRendering"
253
+ }
254
+ }
255
+ },
216
256
  events: {
217
257
 
218
258
  /**
@@ -235,7 +275,7 @@ sap.ui.define([
235
275
  suggestionItemPreview: {
236
276
  parameters: {
237
277
  /**
238
- * The previewed suggestion item
278
+ * The previewed suggestion item.
239
279
  */
240
280
  item: {
241
281
  type: "HTMLElement"
@@ -256,36 +296,16 @@ sap.ui.define([
256
296
  suggestionItemSelect: {
257
297
  parameters: {
258
298
  /**
259
- * The selected item
299
+ * The selected item.
260
300
  */
261
301
  item: {
262
302
  type: "HTMLElement"
263
303
  }
264
304
  }
265
- },
266
-
267
- /**
268
- * Fired when the user scrolls the suggestion popover.
269
- */
270
- suggestionScroll: {
271
- parameters: {
272
- /**
273
- * The current scroll position
274
- */
275
- scrollTop: {
276
- type: "int"
277
- },
278
-
279
- /**
280
- * The scroll container
281
- */
282
- scrollContainer: {
283
- type: "HTMLElement"
284
- }
285
- }
286
305
  }
287
306
  },
288
- getters: ["previewItem"]
307
+ getters: ["previewItem"],
308
+ designtime: "sap/ui/webc/main/designtime/Input.designtime"
289
309
  }
290
310
  });
291
311
 
@@ -296,5 +316,8 @@ sap.ui.define([
296
316
  * @function
297
317
  */
298
318
 
319
+ /* CUSTOM CODE START */
320
+ /* CUSTOM CODE END */
321
+
299
322
  return Input;
300
323
  });
@@ -8,8 +8,9 @@
8
8
  sap.ui.define([
9
9
  "sap/ui/webc/common/WebComponent",
10
10
  "./library",
11
+ "sap/ui/core/LabelEnablement",
11
12
  "./thirdparty/Label"
12
- ], function(WebComponent, library) {
13
+ ], function(WebComponent, library, LabelEnablement) {
13
14
  "use strict";
14
15
 
15
16
  var WrappingType = library.WrappingType;
@@ -30,31 +31,25 @@ sap.ui.define([
30
31
  * The <code>sap.ui.webc.main.Label</code> appearance can be influenced by properties, such as <code>required</code> and <code>wrappingType</code>. The appearance of the Label can be configured in a limited way by using the design property. For a broader choice of designs, you can use custom styles.
31
32
  *
32
33
  * @author SAP SE
33
- * @version 1.96.5
34
+ * @version 1.99.0
34
35
  *
35
36
  * @constructor
36
37
  * @public
37
38
  * @since 1.92.0
38
39
  * @experimental Since 1.92.0 This control is experimental and its API might change significantly.
39
40
  * @alias sap.ui.webc.main.Label
41
+ * @implements sap.ui.core.Label
40
42
  * @ui5-metamodel This control/element also will be described in the UI5 (legacy) designtime metamodel
41
43
  */
42
44
  var Label = WebComponent.extend("sap.ui.webc.main.Label", {
43
45
  metadata: {
44
46
  library: "sap.ui.webc.main",
45
47
  tag: "ui5-label-ui5",
48
+ interfaces: [
49
+ "sap.ui.core.Label"
50
+ ],
46
51
  properties: {
47
52
 
48
- /**
49
- * Defines the labeled input by providing its ID. <br>
50
- * <br>
51
- * <b>Note:</b> Can be used with both <code>sap.ui.webc.main.Input</code> and native input.
52
- */
53
- "for": {
54
- type: "string",
55
- defaultValue: ""
56
- },
57
-
58
53
  /**
59
54
  * Defines whether an asterisk character is added to the component text. <br>
60
55
  * <br>
@@ -66,7 +61,7 @@ sap.ui.define([
66
61
  },
67
62
 
68
63
  /**
69
- * Defines whether semi-colon is added to the component text. <br>
64
+ * Defines whether colon is added to the component text. <br>
70
65
  * <br>
71
66
  * <b>Note:</b> Usually used in forms.
72
67
  */
@@ -104,9 +99,31 @@ sap.ui.define([
104
99
  type: "sap.ui.webc.main.WrappingType",
105
100
  defaultValue: WrappingType.None
106
101
  }
102
+ },
103
+ associations: {
104
+
105
+ /**
106
+ * Association to the labelled control.
107
+ * <br>
108
+ *
109
+ * By default, the label sets the for attribute to the ID of the labelled control. This can be changed by implementing the function getIdForLabel on the labelled control.
110
+ */
111
+ labelFor: {
112
+ type: "sap.ui.core.Control",
113
+ multiple: false,
114
+ mapping: {
115
+ type: "property",
116
+ to: "for"
117
+ }
118
+ }
107
119
  }
108
120
  }
109
121
  });
110
122
 
123
+ LabelEnablement.enrich(Label.prototype);
124
+
125
+ /* CUSTOM CODE START */
126
+ /* CUSTOM CODE END */
127
+
111
128
  return Label;
112
129
  });
@@ -39,7 +39,7 @@ sap.ui.define([
39
39
  * If there is not enough space, the text of the <code>sap.ui.webc.main.Link</code> becomes truncated. If the <code>wrappingType</code> property is set to <code>"Normal"</code>, the text is displayed on several lines instead of being truncated.
40
40
  *
41
41
  * @author SAP SE
42
- * @version 1.96.5
42
+ * @version 1.99.0
43
43
  *
44
44
  * @constructor
45
45
  * @public
@@ -55,11 +55,32 @@ sap.ui.define([
55
55
  properties: {
56
56
 
57
57
  /**
58
- * Receives id(or many ids) of the elements that label the input
58
+ * An object of strings that defines several additional accessibility attribute values for customization depending on the use case.
59
+ *
60
+ * It supports the following fields:
61
+ *
62
+ *
63
+ * <ul>
64
+ * <li><code>expanded</code>: Indicates whether the anchor element, or another grouping element it controls, is currently expanded or collapsed. Accepts the following string values:
65
+ * <ul>
66
+ * <li><code>true</code></li>
67
+ * <li><code>false</code></li>
68
+ * <ul>
69
+ * </li>
70
+ * <li><code>hasPopup</code>: Indicates the availability and type of interactive popup element, such as menu or dialog, that can be triggered by the anchor element. Accepts the following string values:
71
+ * <ul>
72
+ * <li><code>Dialog</code></li>
73
+ * <li><code>Grid</code></li>
74
+ * <li><code>ListBox</code></li>
75
+ * <li><code>Menu</code></li>
76
+ * <li><code>Tree</code></li>
77
+ * </ul>
78
+ * </li>
79
+ * </ul>
59
80
  */
60
- accessibleNameRef: {
61
- type: "string",
62
- defaultValue: ""
81
+ accessibilityAttributes: {
82
+ type: "object",
83
+ defaultValue: {}
63
84
  },
64
85
 
65
86
  /**
@@ -75,7 +96,7 @@ sap.ui.define([
75
96
  /**
76
97
  * Defines whether the component is disabled. <br>
77
98
  * <br>
78
- * <b>Note:</b> When disabled, the component cannot be triggered by the user.
99
+ * <b>Note:</b> When disabled, the click event cannot be triggered by the user.
79
100
  */
80
101
  disabled: {
81
102
  type: "boolean",
@@ -134,6 +155,21 @@ sap.ui.define([
134
155
  defaultValue: WrappingType.None
135
156
  }
136
157
  },
158
+ associations: {
159
+
160
+ /**
161
+ * Receives id(or many ids) of the controls that label this control.
162
+ */
163
+ ariaLabelledBy: {
164
+ type: "sap.ui.core.Control",
165
+ multiple: true,
166
+ mapping: {
167
+ type: "property",
168
+ to: "accessibleNameRef",
169
+ formatter: "_getAriaLabelledByForRendering"
170
+ }
171
+ }
172
+ },
137
173
  events: {
138
174
 
139
175
  /**
@@ -146,5 +182,8 @@ sap.ui.define([
146
182
  }
147
183
  });
148
184
 
185
+ /* CUSTOM CODE START */
186
+ /* CUSTOM CODE END */
187
+
149
188
  return Link;
150
189
  });