@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
@@ -29,7 +29,7 @@ sap.ui.define([
29
29
  *
30
30
  * The <code>sap.ui.webc.main.List</code> component allows displaying a list of items, advanced keyboard handling support for navigating between items, and predefined modes to improve the development efficiency. <br>
31
31
  * <br>
32
- * The <code>sap.ui.webc.main.List</code> is а container for the available list items:
32
+ * The <code>sap.ui.webc.main.List</code> is a container for the available list items:
33
33
  * <ul>
34
34
  * <li><code>sap.ui.webc.main.StandardListItem</code></li>
35
35
  * <li><code>sap.ui.webc.main.CustomListItem</code></li>
@@ -42,7 +42,9 @@ sap.ui.define([
42
42
  *
43
43
  * <br>
44
44
  * <br>
45
- * <h3>Keyboard Handling</h3> The <code>sap.ui.webc.main.List</code> provides advanced keyboard handling. When a list is focused the user can use the following keyboard shortcuts in order to perform a navigation: <br>
45
+ * <h3>Keyboard Handling</h3>
46
+ *
47
+ * <h4>Basic Navigation</h4> The <code>sap.ui.webc.main.List</code> provides advanced keyboard handling. When a list is focused the user can use the following keyboard shortcuts in order to perform a navigation: <br>
46
48
  *
47
49
  *
48
50
  *
@@ -56,11 +58,10 @@ sap.ui.define([
56
58
  * <ul>
57
59
  * <li>[SPACE] - Select an item (if <code>type</code> is 'Active') when <code>mode</code> is selection</li>
58
60
  * <li>[DELETE] - Delete an item if <code>mode</code> property is <code>Delete</code></li>
59
- * </ul> <br>
60
- * <br>
61
+ * </ul>
61
62
  *
62
63
  * @author SAP SE
63
- * @version 1.96.5
64
+ * @version 1.99.0
64
65
  *
65
66
  * @constructor
66
67
  * @public
@@ -76,29 +77,20 @@ sap.ui.define([
76
77
  properties: {
77
78
 
78
79
  /**
79
- * Sets the accessible aria name of the component.
80
+ * Defines the accessible name of the component.
80
81
  */
81
82
  accessibleName: {
82
83
  type: "string",
83
84
  defaultValue: ""
84
85
  },
85
86
 
86
- /**
87
- * Receives id(or many ids) of the elements that label the input
88
- */
89
- accessibleNameRef: {
90
- type: "string",
91
- defaultValue: ""
92
- },
93
-
94
87
  /**
95
88
  * Defines the accessible role of the component. <br>
96
89
  * <br>
97
- * <b>Note:</b> If you use notification list items, it's recommended to set <code>accessible-role="list"</code> for better accessibility.
98
90
  */
99
91
  accessibleRole: {
100
92
  type: "string",
101
- defaultValue: "listbox"
93
+ defaultValue: "list"
102
94
  },
103
95
 
104
96
  /**
@@ -138,7 +130,7 @@ sap.ui.define([
138
130
  * <br>
139
131
  *
140
132
  *
141
- * <b>Limitations:</b> <code>growing="Scroll"</code> is not supported for Internet Explorer, on IE the component will fallback to <code>growing="Button"</code>.
133
+ * <b>Restrictions:</b> <code>growing="Scroll"</code> is not supported for Internet Explorer, on IE the component will fallback to <code>growing="Button"</code>.
142
134
  */
143
135
  growing: {
144
136
  type: "sap.ui.webc.main.ListGrowingMode",
@@ -165,7 +157,7 @@ sap.ui.define([
165
157
  },
166
158
 
167
159
  /**
168
- * Determines whether the list items are indented.
160
+ * Determines whether the component is indented.
169
161
  */
170
162
  indent: {
171
163
  type: "boolean",
@@ -238,12 +230,28 @@ sap.ui.define([
238
230
  multiple: true
239
231
  }
240
232
  },
233
+ associations: {
234
+
235
+ /**
236
+ * Receives id(or many ids) of the controls that label this control.
237
+ */
238
+ ariaLabelledBy: {
239
+ type: "sap.ui.core.Control",
240
+ multiple: true,
241
+ mapping: {
242
+ type: "property",
243
+ to: "accessibleNameRef",
244
+ formatter: "_getAriaLabelledByForRendering"
245
+ }
246
+ }
247
+ },
241
248
  events: {
242
249
 
243
250
  /**
244
251
  * Fired when an item is activated, unless the item's <code>type</code> property is set to <code>Inactive</code>.
245
252
  */
246
253
  itemClick: {
254
+ allowPreventDefault: true,
247
255
  parameters: {
248
256
  /**
249
257
  * The clicked item.
@@ -335,5 +343,8 @@ sap.ui.define([
335
343
  }
336
344
  });
337
345
 
346
+ /* CUSTOM CODE START */
347
+ /* CUSTOM CODE END */
348
+
338
349
  return List;
339
350
  });
@@ -31,8 +31,10 @@ sap.ui.define([
31
31
  *
32
32
  * For the <code>sap.ui.webc.main.MessageStrip</code> component, you can define whether it displays an icon in the beginning and a close button. Moreover, its size and background can be controlled with CSS.
33
33
  *
34
+ * <h3>Keyboard Handling</h3>
35
+ *
34
36
  * @author SAP SE
35
- * @version 1.96.5
37
+ * @version 1.99.0
36
38
  *
37
39
  * @constructor
38
40
  * @public
@@ -44,7 +46,7 @@ sap.ui.define([
44
46
  var MessageStrip = WebComponent.extend("sap.ui.webc.main.MessageStrip", {
45
47
  metadata: {
46
48
  library: "sap.ui.webc.main",
47
- tag: "ui5-messagestrip-ui5",
49
+ tag: "ui5-message-strip-ui5",
48
50
  properties: {
49
51
 
50
52
  /**
@@ -67,7 +69,7 @@ sap.ui.define([
67
69
  },
68
70
 
69
71
  /**
70
- * Defines whether the MessageStrip renders close icon.
72
+ * Defines whether the MessageStrip renders close button.
71
73
  */
72
74
  hideCloseButton: {
73
75
  type: "boolean",
@@ -129,5 +131,8 @@ sap.ui.define([
129
131
  }
130
132
  });
131
133
 
134
+ /* CUSTOM CODE START */
135
+ /* CUSTOM CODE END */
136
+
132
137
  return MessageStrip;
133
138
  });
@@ -26,9 +26,9 @@ sap.ui.define([
26
26
  *
27
27
  * <h3>Overview</h3>
28
28
  *
29
- * The <code>sap.ui.webc.main.MultiComboBox</code> component provides a list box with items and a text field allowing the user to either type a value directly into the control, or choose from the list of existing items.
29
+ * The <code>sap.ui.webc.main.MultiComboBox</code> component consists of a list box with items and a text field allowing the user to either type a value directly into the text field, or choose from the list of existing items.
30
30
  *
31
- * It is a drop-down list for selecting and filtering values, commonly used to enable users to select one or more options from a predefined list. The control provides an editable input field to filter the list, and a dropdown arrow of available options. The select options in the list have checkboxes that permit multi-selection. Entered values are displayed as tokens. <h3>Structure</h3> The <code>sap.ui.webc.main.MultiComboBox</code> consists of the following elements:
31
+ * The drop-down list is used for selecting and filtering values, it enables users to select one or more options from a predefined list. The control provides an editable input field to filter the list, and a dropdown arrow to expand/collapse the list of available options. The options in the list have checkboxes that permit multi-selection. Entered values are displayed as tokens. <h3>Structure</h3> The <code>sap.ui.webc.main.MultiComboBox</code> consists of the following elements:
32
32
  * <ul>
33
33
  * <li> Tokenizer - a list of tokens with selected options.
34
34
  * <li> Input field - displays the selected option/s as token/s. Users can type to filter the list.
@@ -49,13 +49,6 @@ sap.ui.define([
49
49
  * <li> Backspace - deletes the token and focus the next token. </li>
50
50
  * </ul>
51
51
  *
52
- * In the context of <code>sap.ui.webc.main.MultiComboBox</code>, you can provide a custom stable DOM ref for:
53
- * <ul>
54
- * <li>Every <code>sap.ui.webc.main.MultiComboBoxItem</code> that you provide. Example: <code>
55
- * <ui5-mcb-item stable-dom-ref="item1"></ui5-mcb-item>
56
- * </code></li>
57
- * </ul>
58
- *
59
52
  * <h3>CSS Shadow Parts</h3>
60
53
  *
61
54
  * <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. <br>
@@ -65,7 +58,7 @@ sap.ui.define([
65
58
  * </ul>
66
59
  *
67
60
  * @author SAP SE
68
- * @version 1.96.5
61
+ * @version 1.99.0
69
62
  *
70
63
  * @constructor
71
64
  * @public
@@ -174,6 +167,15 @@ sap.ui.define([
174
167
  type: "slot",
175
168
  to: "div"
176
169
  }
170
+ },
171
+
172
+ /**
173
+ * Defines the width of the control
174
+ */
175
+ width: {
176
+ type: "sap.ui.core.CSSSize",
177
+ defaultValue: null,
178
+ mapping: "style"
177
179
  }
178
180
  },
179
181
  defaultAggregation: "items",
@@ -244,5 +246,8 @@ sap.ui.define([
244
246
  * @function
245
247
  */
246
248
 
249
+ /* CUSTOM CODE START */
250
+ /* CUSTOM CODE END */
251
+
247
252
  return MultiComboBox;
248
253
  });
@@ -24,7 +24,7 @@ sap.ui.define([
24
24
  * The <code>sap.ui.webc.main.MultiComboBoxItem</code> represents the item for a <code>sap.ui.webc.main.MultiComboBox</code>.
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
@@ -70,5 +70,8 @@ sap.ui.define([
70
70
  }
71
71
  });
72
72
 
73
+ /* CUSTOM CODE START */
74
+ /* CUSTOM CODE END */
75
+
73
76
  return MultiComboBoxItem;
74
77
  });
@@ -34,7 +34,7 @@ sap.ui.define([
34
34
  * </ul>
35
35
  *
36
36
  * @author SAP SE
37
- * @version 1.96.5
37
+ * @version 1.99.0
38
38
  *
39
39
  * @constructor
40
40
  * @public
@@ -56,14 +56,6 @@ sap.ui.define([
56
56
  type: "string"
57
57
  },
58
58
 
59
- /**
60
- * Receives id(or many ids) of the elements that label the input
61
- */
62
- accessibleNameRef: {
63
- type: "string",
64
- defaultValue: ""
65
- },
66
-
67
59
  /**
68
60
  * Defines whether the component is in disabled state. <br>
69
61
  * <br>
@@ -120,6 +112,14 @@ sap.ui.define([
120
112
  defaultValue: false
121
113
  },
122
114
 
115
+ /**
116
+ * Defines whether the clear icon of the input will be shown.
117
+ */
118
+ showClearIcon: {
119
+ type: "boolean",
120
+ defaultValue: false
121
+ },
122
+
123
123
  /**
124
124
  * Defines whether the component should show suggestions, if such are present. <br>
125
125
  * <br>
@@ -131,7 +131,7 @@ sap.ui.define([
131
131
  },
132
132
 
133
133
  /**
134
- * Determines whether a value help icon will be should in the end of the input. Pressing the icon will fire <code>value-help-trigger</code> event.
134
+ * Determines whether a value help icon will be visualized in the end of the input. Pressing the icon will fire <code>value-help-trigger</code> event.
135
135
  */
136
136
  showValueHelpIcon: {
137
137
  type: "boolean",
@@ -194,6 +194,15 @@ sap.ui.define([
194
194
  type: "slot",
195
195
  to: "div"
196
196
  }
197
+ },
198
+
199
+ /**
200
+ * Defines the width of the control
201
+ */
202
+ width: {
203
+ type: "sap.ui.core.CSSSize",
204
+ defaultValue: null,
205
+ mapping: "style"
197
206
  }
198
207
  },
199
208
  defaultAggregation: "suggestionItems",
@@ -204,7 +213,7 @@ sap.ui.define([
204
213
  */
205
214
  icon: {
206
215
  type: "sap.ui.webc.main.IIcon",
207
- multiple: false,
216
+ multiple: true,
208
217
  slot: "icon"
209
218
  },
210
219
 
@@ -225,6 +234,21 @@ sap.ui.define([
225
234
  slot: "tokens"
226
235
  }
227
236
  },
237
+ associations: {
238
+
239
+ /**
240
+ * Receives id(or many ids) of the controls that label this control.
241
+ */
242
+ ariaLabelledBy: {
243
+ type: "sap.ui.core.Control",
244
+ multiple: true,
245
+ mapping: {
246
+ type: "property",
247
+ to: "accessibleNameRef",
248
+ formatter: "_getAriaLabelledByForRendering"
249
+ }
250
+ }
251
+ },
228
252
  events: {
229
253
 
230
254
  /**
@@ -247,7 +271,7 @@ sap.ui.define([
247
271
  suggestionItemPreview: {
248
272
  parameters: {
249
273
  /**
250
- * The previewed suggestion item
274
+ * The previewed suggestion item.
251
275
  */
252
276
  item: {
253
277
  type: "HTMLElement"
@@ -268,7 +292,7 @@ sap.ui.define([
268
292
  suggestionItemSelect: {
269
293
  parameters: {
270
294
  /**
271
- * The selected item
295
+ * The selected item.
272
296
  */
273
297
  item: {
274
298
  type: "HTMLElement"
@@ -276,27 +300,6 @@ sap.ui.define([
276
300
  }
277
301
  },
278
302
 
279
- /**
280
- * Fired when the user scrolls the suggestion popover.
281
- */
282
- suggestionScroll: {
283
- parameters: {
284
- /**
285
- * The current scroll position
286
- */
287
- scrollTop: {
288
- type: "int"
289
- },
290
-
291
- /**
292
- * The scroll container
293
- */
294
- scrollContainer: {
295
- type: "HTMLElement"
296
- }
297
- }
298
- },
299
-
300
303
  /**
301
304
  * Fired when a token is about to be deleted.
302
305
  */
@@ -318,7 +321,8 @@ sap.ui.define([
318
321
  parameters: {}
319
322
  }
320
323
  },
321
- getters: ["previewItem"]
324
+ getters: ["previewItem"],
325
+ designtime: "sap/ui/webc/main/designtime/MultiInput.designtime"
322
326
  }
323
327
  });
324
328
 
@@ -329,5 +333,8 @@ sap.ui.define([
329
333
  * @function
330
334
  */
331
335
 
336
+ /* CUSTOM CODE START */
337
+ /* CUSTOM CODE END */
338
+
332
339
  return MultiInput;
333
340
  });
@@ -26,7 +26,7 @@ sap.ui.define([
26
26
  * The <code>sap.ui.webc.main.Option</code> component defines the content of an option in the <code>sap.ui.webc.main.Select</code>.
27
27
  *
28
28
  * @author SAP SE
29
- * @version 1.96.5
29
+ * @version 1.99.0
30
30
  *
31
31
  * @constructor
32
32
  * @public
@@ -91,5 +91,8 @@ sap.ui.define([
91
91
  }
92
92
  });
93
93
 
94
+ /* CUSTOM CODE START */
95
+ /* CUSTOM CODE END */
96
+
94
97
  return Option;
95
98
  });
@@ -34,10 +34,11 @@ sap.ui.define([
34
34
  * <li>Do not stack too many panels on one page.</li>
35
35
  * </ul>
36
36
  *
37
- * <h3>Structure</h3> A panel consists of a title bar with a header text or custom header. <br>
38
- * The content area can contain an arbitrary set of controls. The header is clickable and can be used to toggle between the expanded and collapsed state. It includes an icon which rotates depending on the state. <br>
37
+ * <h3>Structure</h3> The panel's header area consists of a title bar with a header text or custom header. <br>
38
+ * The header is clickable and can be used to toggle between the expanded and collapsed state. It includes an icon which rotates depending on the state. <br>
39
39
  * The custom header can be set through the <code>header</code> slot and it may contain arbitraray content, such as: title, buttons or any other HTML elements. <br>
40
- * <b>Note:</b> the custom header is not clickable out of the box, but in this case the icon is interactive and allows to show/hide the content area.
40
+ * The content area can contain an arbitrary set of controls. <br>
41
+ * <b>Note:</b> The custom header is not clickable out of the box, but in this case the icon is interactive and allows to show/hide the content area.
41
42
  *
42
43
  * <h3>Responsive Behavior</h3>
43
44
  * <ul>
@@ -56,8 +57,10 @@ sap.ui.define([
56
57
  * <li>content - Used to style the wrapper of the content</li>
57
58
  * </ul>
58
59
  *
60
+ * <h3>Keyboard Handling</h3>
61
+ *
59
62
  * @author SAP SE
60
- * @version 1.96.5
63
+ * @version 1.99.0
61
64
  *
62
65
  * @constructor
63
66
  * @public
@@ -184,5 +187,8 @@ sap.ui.define([
184
187
  }
185
188
  });
186
189
 
190
+ /* CUSTOM CODE START */
191
+ /* CUSTOM CODE END */
192
+
187
193
  return Panel;
188
194
  });
@@ -41,7 +41,7 @@ sap.ui.define([
41
41
  * <b>Note:</b> The <code>sap.ui.webc.main.Popover</code> is closed when the user clicks or taps outside the popover or selects an action within the popover. You can prevent this with the <code>modal</code> property.
42
42
  *
43
43
  * @author SAP SE
44
- * @version 1.96.5
44
+ * @version 1.99.0
45
45
  *
46
46
  * @constructor
47
47
  * @public
@@ -57,7 +57,7 @@ sap.ui.define([
57
57
  properties: {
58
58
 
59
59
  /**
60
- * Sets the accessible aria name of the component.
60
+ * Defines the accessible name of the component.
61
61
  */
62
62
  accessibleName: {
63
63
  type: "string",
@@ -217,6 +217,21 @@ sap.ui.define([
217
217
  slot: "header"
218
218
  }
219
219
  },
220
+ associations: {
221
+
222
+ /**
223
+ * Receives id(or many ids) of the controls that label this control.
224
+ */
225
+ ariaLabelledBy: {
226
+ type: "sap.ui.core.Control",
227
+ multiple: true,
228
+ mapping: {
229
+ type: "property",
230
+ to: "accessibleNameRef",
231
+ formatter: "_getAriaLabelledByForRendering"
232
+ }
233
+ }
234
+ },
220
235
  events: {
221
236
 
222
237
  /**
@@ -290,5 +305,8 @@ sap.ui.define([
290
305
  * @function
291
306
  */
292
307
 
308
+ /* CUSTOM CODE START */
309
+ /* CUSTOM CODE END */
310
+
293
311
  return Popover;
294
312
  });
@@ -29,7 +29,7 @@ sap.ui.define([
29
29
  * <h3>Responsive Behavior</h3> You can change the size of the Progress Indicator by changing its <code>width</code> or <code>height</code> CSS properties.
30
30
  *
31
31
  * @author SAP SE
32
- * @version 1.96.5
32
+ * @version 1.99.0
33
33
  *
34
34
  * @constructor
35
35
  * @public
@@ -52,6 +52,19 @@ sap.ui.define([
52
52
  defaultValue: false
53
53
  },
54
54
 
55
+ /**
56
+ * Specifies the text value to be displayed in the bar.
57
+ *
58
+ * <b>Note:</b>
59
+ * <ul>
60
+ * <li>If there is no value provided or the value is empty, the default percentage value is shown.</li>
61
+ * <li>If <code>hideValue</code> property is <code>true</code> both the <code>displayValue</code> and <code>value</code> property values are not shown.</li>
62
+ * </ul>
63
+ */
64
+ displayValue: {
65
+ type: "string"
66
+ },
67
+
55
68
  /**
56
69
  * Defines whether the component value is shown.
57
70
  */
@@ -85,10 +98,22 @@ sap.ui.define([
85
98
  valueState: {
86
99
  type: "sap.ui.core.ValueState",
87
100
  defaultValue: ValueState.None
101
+ },
102
+
103
+ /**
104
+ * Defines the width of the control
105
+ */
106
+ width: {
107
+ type: "sap.ui.core.CSSSize",
108
+ defaultValue: null,
109
+ mapping: "style"
88
110
  }
89
111
  }
90
112
  }
91
113
  });
92
114
 
115
+ /* CUSTOM CODE START */
116
+ /* CUSTOM CODE END */
117
+
93
118
  return ProgressIndicator;
94
119
  });
@@ -37,19 +37,23 @@ sap.ui.define([
37
37
  * <b>Note:</b> On entering radio button group, the focus goes to the currently selected radio button.
38
38
  *
39
39
  * @author SAP SE
40
- * @version 1.96.5
40
+ * @version 1.99.0
41
41
  *
42
42
  * @constructor
43
43
  * @public
44
44
  * @since 1.92.0
45
45
  * @experimental Since 1.92.0 This control is experimental and its API might change significantly.
46
46
  * @alias sap.ui.webc.main.RadioButton
47
+ * @implements sap.ui.core.IFormContent
47
48
  * @ui5-metamodel This control/element also will be described in the UI5 (legacy) designtime metamodel
48
49
  */
49
50
  var RadioButton = WebComponent.extend("sap.ui.webc.main.RadioButton", {
50
51
  metadata: {
51
52
  library: "sap.ui.webc.main",
52
53
  tag: "ui5-radio-button-ui5",
54
+ interfaces: [
55
+ "sap.ui.core.IFormContent"
56
+ ],
53
57
  properties: {
54
58
 
55
59
  /**
@@ -134,6 +138,15 @@ sap.ui.define([
134
138
  defaultValue: ValueState.None
135
139
  },
136
140
 
141
+ /**
142
+ * Defines the width of the control
143
+ */
144
+ width: {
145
+ type: "sap.ui.core.CSSSize",
146
+ defaultValue: null,
147
+ mapping: "style"
148
+ },
149
+
137
150
  /**
138
151
  * Defines whether the component text wraps when there is not enough space. <br>
139
152
  * <br>
@@ -148,6 +161,21 @@ sap.ui.define([
148
161
  defaultValue: WrappingType.None
149
162
  }
150
163
  },
164
+ associations: {
165
+
166
+ /**
167
+ * Receives id(or many ids) of the controls that label this control.
168
+ */
169
+ ariaLabelledBy: {
170
+ type: "sap.ui.core.Control",
171
+ multiple: true,
172
+ mapping: {
173
+ type: "property",
174
+ to: "accessibleNameRef",
175
+ formatter: "_getAriaLabelledByForRendering"
176
+ }
177
+ }
178
+ },
151
179
  events: {
152
180
 
153
181
  /**
@@ -160,5 +188,17 @@ sap.ui.define([
160
188
  }
161
189
  });
162
190
 
191
+ /* CUSTOM CODE START */
192
+
193
+ /**
194
+ * RadioButton without label must not be stretched in Form.
195
+ * @returns {boolean} True if the <code>Form</code> should not adjust the width of the RadioButton component wrapper
196
+ */
197
+ RadioButton.prototype.getFormDoNotAdjustWidth = function() {
198
+ return this.getText() ? false : true;
199
+ };
200
+
201
+ /* CUSTOM CODE END */
202
+
163
203
  return RadioButton;
164
204
  });