@openui5/sap.ui.webc.main 1.97.1 → 1.99.1

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 (443) hide show
  1. package/.reuse/dep5 +25 -30
  2. package/THIRDPARTY.txt +14 -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 +4 -1
  6. package/src/sap/ui/webc/main/AvatarGroup.js +4 -1
  7. package/src/sap/ui/webc/main/Badge.js +4 -1
  8. package/src/sap/ui/webc/main/Breadcrumbs.js +7 -3
  9. package/src/sap/ui/webc/main/BreadcrumbsItem.js +5 -2
  10. package/src/sap/ui/webc/main/BusyIndicator.js +4 -1
  11. package/src/sap/ui/webc/main/Button.js +49 -1
  12. package/src/sap/ui/webc/main/Calendar.js +5 -1
  13. package/src/sap/ui/webc/main/CalendarDate.js +4 -1
  14. package/src/sap/ui/webc/main/Card.js +20 -10
  15. package/src/sap/ui/webc/main/CardHeader.js +5 -2
  16. package/src/sap/ui/webc/main/Carousel.js +8 -2
  17. package/src/sap/ui/webc/main/CheckBox.js +49 -1
  18. package/src/sap/ui/webc/main/ColorPalette.js +4 -1
  19. package/src/sap/ui/webc/main/ColorPaletteItem.js +4 -1
  20. package/src/sap/ui/webc/main/ColorPalettePopover.js +23 -3
  21. package/src/sap/ui/webc/main/ColorPicker.js +4 -1
  22. package/src/sap/ui/webc/main/ComboBox.js +37 -12
  23. package/src/sap/ui/webc/main/ComboBoxGroupItem.js +5 -2
  24. package/src/sap/ui/webc/main/ComboBoxItem.js +4 -1
  25. package/src/sap/ui/webc/main/CustomListItem.js +4 -1
  26. package/src/sap/ui/webc/main/DatePicker.js +20 -10
  27. package/src/sap/ui/webc/main/DateRangePicker.js +28 -11
  28. package/src/sap/ui/webc/main/DateTimePicker.js +19 -9
  29. package/src/sap/ui/webc/main/Dialog.js +20 -2
  30. package/src/sap/ui/webc/main/FileUploader.js +4 -1
  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 +54 -10
  34. package/src/sap/ui/webc/main/Label.js +29 -12
  35. package/src/sap/ui/webc/main/Link.js +44 -5
  36. package/src/sap/ui/webc/main/List.js +26 -14
  37. package/src/sap/ui/webc/main/MessageStrip.js +7 -2
  38. package/src/sap/ui/webc/main/MultiComboBox.js +13 -6
  39. package/src/sap/ui/webc/main/MultiComboBoxItem.js +4 -1
  40. package/src/sap/ui/webc/main/MultiInput.js +38 -10
  41. package/src/sap/ui/webc/main/Option.js +4 -1
  42. package/src/sap/ui/webc/main/Panel.js +6 -1
  43. package/src/sap/ui/webc/main/Popover.js +20 -2
  44. package/src/sap/ui/webc/main/ProgressIndicator.js +13 -1
  45. package/src/sap/ui/webc/main/RadioButton.js +41 -1
  46. package/src/sap/ui/webc/main/RangeSlider.js +6 -2
  47. package/src/sap/ui/webc/main/RatingIndicator.js +19 -2
  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 +50 -2
  51. package/src/sap/ui/webc/main/Select.js +28 -19
  52. package/src/sap/ui/webc/main/Slider.js +15 -2
  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 +5 -2
  57. package/src/sap/ui/webc/main/SuggestionItem.js +4 -1
  58. package/src/sap/ui/webc/main/Switch.js +19 -1
  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 +5 -2
  66. package/src/sap/ui/webc/main/TableRow.js +4 -1
  67. package/src/sap/ui/webc/main/TextArea.js +19 -9
  68. package/src/sap/ui/webc/main/TimePicker.js +4 -1
  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 +49 -1
  72. package/src/sap/ui/webc/main/Token.js +4 -1
  73. package/src/sap/ui/webc/main/Tree.js +4 -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 +100 -5
  132. package/src/sap/ui/webc/main/thirdparty/AvatarGroup.js +2 -2
  133. package/src/sap/ui/webc/main/thirdparty/Breadcrumbs.js +22 -9
  134. package/src/sap/ui/webc/main/thirdparty/BreadcrumbsItem.js +3 -3
  135. package/src/sap/ui/webc/main/thirdparty/BusyIndicator.js +2 -3
  136. package/src/sap/ui/webc/main/thirdparty/Button.js +12 -13
  137. package/src/sap/ui/webc/main/thirdparty/Calendar.js +1 -0
  138. package/src/sap/ui/webc/main/thirdparty/Carousel.js +1 -0
  139. package/src/sap/ui/webc/main/thirdparty/CheckBox.js +18 -2
  140. package/src/sap/ui/webc/main/thirdparty/ColorPalette.js +5 -5
  141. package/src/sap/ui/webc/main/thirdparty/ColorPalettePopover.js +11 -3
  142. package/src/sap/ui/webc/main/thirdparty/ComboBox.js +73 -18
  143. package/src/sap/ui/webc/main/thirdparty/DateComponentBase.js +6 -8
  144. package/src/sap/ui/webc/main/thirdparty/DatePicker.js +6 -0
  145. package/src/sap/ui/webc/main/thirdparty/DateRangePicker.js +6 -0
  146. package/src/sap/ui/webc/main/thirdparty/DayPicker.js +3 -0
  147. package/src/sap/ui/webc/main/thirdparty/Dialog.js +4 -11
  148. package/src/sap/ui/webc/main/thirdparty/FileUploader.js +11 -4
  149. package/src/sap/ui/webc/main/thirdparty/Icon.js +9 -6
  150. package/src/sap/ui/webc/main/thirdparty/Input.js +130 -28
  151. package/src/sap/ui/webc/main/thirdparty/Link.js +5 -6
  152. package/src/sap/ui/webc/main/thirdparty/List.js +5 -3
  153. package/src/sap/ui/webc/main/thirdparty/MessageStrip.js +22 -9
  154. package/src/sap/ui/webc/main/thirdparty/MultiComboBox.js +23 -4
  155. package/src/sap/ui/webc/main/thirdparty/MultiComboBoxItem.js +3 -3
  156. package/src/sap/ui/webc/main/thirdparty/MultiInput.js +39 -8
  157. package/src/sap/ui/webc/main/thirdparty/Option.js +6 -3
  158. package/src/sap/ui/webc/main/thirdparty/Panel.js +5 -5
  159. package/src/sap/ui/webc/main/thirdparty/Popover.js +64 -51
  160. package/src/sap/ui/webc/main/thirdparty/Popup.js +6 -2
  161. package/src/sap/ui/webc/main/thirdparty/RadioButton.js +5 -2
  162. package/src/sap/ui/webc/main/thirdparty/RangeSlider.js +1 -1
  163. package/src/sap/ui/webc/main/thirdparty/RatingIndicator.js +20 -7
  164. package/src/sap/ui/webc/main/thirdparty/ResponsivePopover.js +1 -0
  165. package/src/sap/ui/webc/main/thirdparty/SegmentedButton.js +6 -1
  166. package/src/sap/ui/webc/main/thirdparty/Select.js +21 -1
  167. package/src/sap/ui/webc/main/thirdparty/SliderBase.js +5 -2
  168. package/src/sap/ui/webc/main/thirdparty/SplitButton.js +196 -0
  169. package/src/sap/ui/webc/main/thirdparty/StepInput.js +5 -6
  170. package/src/sap/ui/webc/main/thirdparty/Switch.js +11 -1
  171. package/src/sap/ui/webc/main/thirdparty/Tab.js +13 -7
  172. package/src/sap/ui/webc/main/thirdparty/TabContainer.js +324 -92
  173. package/src/sap/ui/webc/main/thirdparty/TabSeparator.js +26 -3
  174. package/src/sap/ui/webc/main/thirdparty/Table.js +164 -7
  175. package/src/sap/ui/webc/main/thirdparty/TableColumn.js +0 -3
  176. package/src/sap/ui/webc/main/thirdparty/TableGroupRow.js +3 -0
  177. package/src/sap/ui/webc/main/thirdparty/TableRow.js +53 -4
  178. package/src/sap/ui/webc/main/thirdparty/TextArea.js +17 -4
  179. package/src/sap/ui/webc/main/thirdparty/ToggleButton.js +4 -1
  180. package/src/sap/ui/webc/main/thirdparty/Token.js +11 -1
  181. package/src/sap/ui/webc/main/thirdparty/Tokenizer.js +94 -6
  182. package/src/sap/ui/webc/main/thirdparty/TreeItem.js +3 -0
  183. package/src/sap/ui/webc/main/thirdparty/TreeListItem.js +7 -1
  184. package/src/sap/ui/webc/main/thirdparty/WheelSlider.js +9 -9
  185. package/src/sap/ui/webc/main/thirdparty/css/themes/Avatar.css +1 -1
  186. package/src/sap/ui/webc/main/thirdparty/css/themes/Badge.css +1 -1
  187. package/src/sap/ui/webc/main/thirdparty/css/themes/Breadcrumbs.css +1 -1
  188. package/src/sap/ui/webc/main/thirdparty/css/themes/BrowserScrollbar.css +1 -1
  189. package/src/sap/ui/webc/main/thirdparty/css/themes/BusyIndicator.css +1 -1
  190. package/src/sap/ui/webc/main/thirdparty/css/themes/Button.css +1 -1
  191. package/src/sap/ui/webc/main/thirdparty/css/themes/Calendar.css +1 -1
  192. package/src/sap/ui/webc/main/thirdparty/css/themes/CalendarHeader.css +1 -1
  193. package/src/sap/ui/webc/main/thirdparty/css/themes/Card.css +1 -1
  194. package/src/sap/ui/webc/main/thirdparty/css/themes/CardHeader.css +1 -1
  195. package/src/sap/ui/webc/main/thirdparty/css/themes/CheckBox.css +1 -1
  196. package/src/sap/ui/webc/main/thirdparty/css/themes/ColorPicker.css +1 -1
  197. package/src/sap/ui/webc/main/thirdparty/css/themes/ComboBox.css +1 -1
  198. package/src/sap/ui/webc/main/thirdparty/css/themes/CustomListItem.css +1 -1
  199. package/src/sap/ui/webc/main/thirdparty/css/themes/DatePicker.css +1 -1
  200. package/src/sap/ui/webc/main/thirdparty/css/themes/DateTimePickerPopover.css +1 -1
  201. package/src/sap/ui/webc/main/thirdparty/css/themes/DayPicker.css +1 -1
  202. package/src/sap/ui/webc/main/thirdparty/css/themes/Dialog.css +1 -1
  203. package/src/sap/ui/webc/main/thirdparty/css/themes/GrowingButton.css +1 -1
  204. package/src/sap/ui/webc/main/thirdparty/css/themes/Input.css +1 -1
  205. package/src/sap/ui/webc/main/thirdparty/css/themes/InputIcon.css +1 -1
  206. package/src/sap/ui/webc/main/thirdparty/css/themes/List.css +1 -1
  207. package/src/sap/ui/webc/main/thirdparty/css/themes/ListItemBase.css +1 -1
  208. package/src/sap/ui/webc/main/thirdparty/css/themes/MessageStrip.css +1 -1
  209. package/src/sap/ui/webc/main/thirdparty/css/themes/MonthPicker.css +1 -1
  210. package/src/sap/ui/webc/main/thirdparty/css/themes/MultiComboBox.css +1 -1
  211. package/src/sap/ui/webc/main/thirdparty/css/themes/MultiInput.css +1 -1
  212. package/src/sap/ui/webc/main/thirdparty/css/themes/Panel.css +1 -1
  213. package/src/sap/ui/webc/main/thirdparty/css/themes/Popover.css +1 -1
  214. package/src/sap/ui/webc/main/thirdparty/css/themes/PopupsCommon.css +1 -1
  215. package/src/sap/ui/webc/main/thirdparty/css/themes/ProgressIndicator.css +1 -1
  216. package/src/sap/ui/webc/main/thirdparty/css/themes/RadioButton.css +1 -1
  217. package/src/sap/ui/webc/main/thirdparty/css/themes/RatingIndicator.css +1 -1
  218. package/src/sap/ui/webc/main/thirdparty/css/themes/ResponsivePopoverCommon.css +1 -1
  219. package/src/sap/ui/webc/main/thirdparty/css/themes/SegmentedButton.css +1 -1
  220. package/src/sap/ui/webc/main/thirdparty/css/themes/Select.css +1 -1
  221. package/src/sap/ui/webc/main/thirdparty/css/themes/SelectPopover.css +1 -1
  222. package/src/sap/ui/webc/main/thirdparty/css/themes/SliderBase.css +1 -1
  223. package/src/sap/ui/webc/main/thirdparty/css/themes/SplitButton.css +1 -0
  224. package/src/sap/ui/webc/main/thirdparty/css/themes/StepInput.css +1 -1
  225. package/src/sap/ui/webc/main/thirdparty/css/themes/Suggestions.css +1 -1
  226. package/src/sap/ui/webc/main/thirdparty/css/themes/Switch.css +1 -1
  227. package/src/sap/ui/webc/main/thirdparty/css/themes/TabContainer.css +1 -1
  228. package/src/sap/ui/webc/main/thirdparty/css/themes/TabInOverflow.css +1 -1
  229. package/src/sap/ui/webc/main/thirdparty/css/themes/TabInStrip.css +1 -1
  230. package/src/sap/ui/webc/main/thirdparty/css/themes/TabSeparatorInOverflow.css +1 -0
  231. package/src/sap/ui/webc/main/thirdparty/css/themes/TabSeparatorInStrip.css +1 -0
  232. package/src/sap/ui/webc/main/thirdparty/css/themes/Table.css +1 -1
  233. package/src/sap/ui/webc/main/thirdparty/css/themes/TableColumn.css +1 -1
  234. package/src/sap/ui/webc/main/thirdparty/css/themes/TableGroupRow.css +1 -1
  235. package/src/sap/ui/webc/main/thirdparty/css/themes/TextArea.css +1 -1
  236. package/src/sap/ui/webc/main/thirdparty/css/themes/TimePicker.css +1 -1
  237. package/src/sap/ui/webc/main/thirdparty/css/themes/TimeSelection.css +1 -1
  238. package/src/sap/ui/webc/main/thirdparty/css/themes/Token.css +1 -1
  239. package/src/sap/ui/webc/main/thirdparty/css/themes/Tokenizer.css +1 -1
  240. package/src/sap/ui/webc/main/thirdparty/css/themes/ValueStateMessage.css +1 -1
  241. package/src/sap/ui/webc/main/thirdparty/css/themes/WheelSlider.css +1 -1
  242. package/src/sap/ui/webc/main/thirdparty/css/themes/YearPicker.css +1 -1
  243. package/src/sap/ui/webc/main/thirdparty/css/themes/sap_belize/parameters-bundle.css +1 -1
  244. package/src/sap/ui/webc/main/thirdparty/css/themes/sap_belize_hcb/parameters-bundle.css +1 -1
  245. package/src/sap/ui/webc/main/thirdparty/css/themes/sap_belize_hcw/parameters-bundle.css +1 -1
  246. package/src/sap/ui/webc/main/thirdparty/css/themes/sap_fiori_3/parameters-bundle.css +1 -1
  247. package/src/sap/ui/webc/main/thirdparty/css/themes/sap_fiori_3_dark/parameters-bundle.css +1 -1
  248. package/src/sap/ui/webc/main/thirdparty/css/themes/sap_fiori_3_hcb/parameters-bundle.css +1 -1
  249. package/src/sap/ui/webc/main/thirdparty/css/themes/sap_fiori_3_hcw/parameters-bundle.css +1 -1
  250. package/src/sap/ui/webc/main/thirdparty/css/themes/sap_horizon/parameters-bundle.css +1 -1
  251. package/src/sap/ui/webc/main/thirdparty/css/themes/sap_horizon_exp/parameters-bundle.css +1 -1
  252. package/src/sap/ui/webc/main/thirdparty/features/InputSuggestions.js +141 -29
  253. package/src/sap/ui/webc/main/thirdparty/generated/i18n/i18n-defaults.js +9 -1
  254. package/src/sap/ui/webc/main/thirdparty/generated/json-imports/Themes.js +9 -9
  255. package/src/sap/ui/webc/main/thirdparty/generated/json-imports/i18n.js +47 -47
  256. package/src/sap/ui/webc/main/thirdparty/generated/templates/AvatarGroupTemplate.lit.js +1 -1
  257. package/src/sap/ui/webc/main/thirdparty/generated/templates/BreadcrumbsPopoverTemplate.lit.js +1 -1
  258. package/src/sap/ui/webc/main/thirdparty/generated/templates/BreadcrumbsTemplate.lit.js +1 -1
  259. package/src/sap/ui/webc/main/thirdparty/generated/templates/BusyIndicatorTemplate.lit.js +1 -1
  260. package/src/sap/ui/webc/main/thirdparty/generated/templates/ButtonTemplate.lit.js +1 -1
  261. package/src/sap/ui/webc/main/thirdparty/generated/templates/CardHeaderTemplate.lit.js +1 -1
  262. package/src/sap/ui/webc/main/thirdparty/generated/templates/CarouselTemplate.lit.js +1 -1
  263. package/src/sap/ui/webc/main/thirdparty/generated/templates/CheckBoxTemplate.lit.js +1 -1
  264. package/src/sap/ui/webc/main/thirdparty/generated/templates/ColorPalettePopoverTemplate.lit.js +1 -1
  265. package/src/sap/ui/webc/main/thirdparty/generated/templates/ComboBoxPopoverTemplate.lit.js +4 -4
  266. package/src/sap/ui/webc/main/thirdparty/generated/templates/ComboBoxTemplate.lit.js +4 -3
  267. package/src/sap/ui/webc/main/thirdparty/generated/templates/CustomListItemTemplate.lit.js +2 -2
  268. package/src/sap/ui/webc/main/thirdparty/generated/templates/DatePickerPopoverTemplate.lit.js +1 -1
  269. package/src/sap/ui/webc/main/thirdparty/generated/templates/DateTimePickerPopoverTemplate.lit.js +1 -1
  270. package/src/sap/ui/webc/main/thirdparty/generated/templates/DialogTemplate.lit.js +1 -1
  271. package/src/sap/ui/webc/main/thirdparty/generated/templates/FileUploaderPopoverTemplate.lit.js +5 -4
  272. package/src/sap/ui/webc/main/thirdparty/generated/templates/InputPopoverTemplate.lit.js +6 -6
  273. package/src/sap/ui/webc/main/thirdparty/generated/templates/InputTemplate.lit.js +7 -5
  274. package/src/sap/ui/webc/main/thirdparty/generated/templates/LinkTemplate.lit.js +1 -1
  275. package/src/sap/ui/webc/main/thirdparty/generated/templates/ListItemTemplate.lit.js +2 -2
  276. package/src/sap/ui/webc/main/thirdparty/generated/templates/ListTemplate.lit.js +1 -1
  277. package/src/sap/ui/webc/main/thirdparty/generated/templates/MessageStripTemplate.lit.js +4 -4
  278. package/src/sap/ui/webc/main/thirdparty/generated/templates/MultiComboBoxPopoverTemplate.lit.js +6 -6
  279. package/src/sap/ui/webc/main/thirdparty/generated/templates/MultiComboBoxTemplate.lit.js +4 -3
  280. package/src/sap/ui/webc/main/thirdparty/generated/templates/MultiInputTemplate.lit.js +8 -6
  281. package/src/sap/ui/webc/main/thirdparty/generated/templates/PanelTemplate.lit.js +2 -2
  282. package/src/sap/ui/webc/main/thirdparty/generated/templates/PopupBlockLayerTemplate.lit.js +1 -1
  283. package/src/sap/ui/webc/main/thirdparty/generated/templates/RangeSliderTemplate.lit.js +1 -1
  284. package/src/sap/ui/webc/main/thirdparty/generated/templates/ResponsivePopoverTemplate.lit.js +1 -1
  285. package/src/sap/ui/webc/main/thirdparty/generated/templates/SegmentedButtonItemTemplate.lit.js +1 -1
  286. package/src/sap/ui/webc/main/thirdparty/generated/templates/SegmentedButtonTemplate.lit.js +1 -1
  287. package/src/sap/ui/webc/main/thirdparty/generated/templates/SelectPopoverTemplate.lit.js +5 -5
  288. package/src/sap/ui/webc/main/thirdparty/generated/templates/SliderBaseTemplate.lit.js +1 -1
  289. package/src/sap/ui/webc/main/thirdparty/generated/templates/SliderTemplate.lit.js +1 -1
  290. package/src/sap/ui/webc/main/thirdparty/generated/templates/SplitButtonTemplate.lit.js +7 -0
  291. package/src/sap/ui/webc/main/thirdparty/generated/templates/StandardListItemTemplate.lit.js +2 -2
  292. package/src/sap/ui/webc/main/thirdparty/generated/templates/StepInputTemplate.lit.js +4 -2
  293. package/src/sap/ui/webc/main/thirdparty/generated/templates/SuggestionListItemTemplate.lit.js +2 -2
  294. package/src/sap/ui/webc/main/thirdparty/generated/templates/SwitchTemplate.lit.js +4 -2
  295. package/src/sap/ui/webc/main/thirdparty/generated/templates/TabContainerPopoverTemplate.lit.js +4 -2
  296. package/src/sap/ui/webc/main/thirdparty/generated/templates/TabContainerTemplate.lit.js +9 -10
  297. package/src/sap/ui/webc/main/thirdparty/generated/templates/TabInOverflowTemplate.lit.js +1 -1
  298. package/src/sap/ui/webc/main/thirdparty/generated/templates/TabInStripTemplate.lit.js +1 -1
  299. package/src/sap/ui/webc/main/thirdparty/generated/templates/TabSeparatorInOverflowTemplate.lit.js +7 -0
  300. package/src/sap/ui/webc/main/thirdparty/generated/templates/TabSeparatorInStripTemplate.lit.js +7 -0
  301. package/src/sap/ui/webc/main/thirdparty/generated/templates/TableGroupRowTemplate.lit.js +1 -1
  302. package/src/sap/ui/webc/main/thirdparty/generated/templates/TableRowTemplate.lit.js +2 -2
  303. package/src/sap/ui/webc/main/thirdparty/generated/templates/TableTemplate.lit.js +3 -3
  304. package/src/sap/ui/webc/main/thirdparty/generated/templates/TextAreaPopoverTemplate.lit.js +1 -1
  305. package/src/sap/ui/webc/main/thirdparty/generated/templates/ToggleButtonTemplate.lit.js +1 -1
  306. package/src/sap/ui/webc/main/thirdparty/generated/templates/TokenTemplate.lit.js +1 -1
  307. package/src/sap/ui/webc/main/thirdparty/generated/templates/TreeListItemTemplate.lit.js +2 -2
  308. package/src/sap/ui/webc/main/thirdparty/generated/templates/TreeTemplate.lit.js +1 -1
  309. package/src/sap/ui/webc/main/thirdparty/generated/themes/Avatar.css.js +1 -1
  310. package/src/sap/ui/webc/main/thirdparty/generated/themes/Badge.css.js +1 -1
  311. package/src/sap/ui/webc/main/thirdparty/generated/themes/Breadcrumbs.css.js +1 -1
  312. package/src/sap/ui/webc/main/thirdparty/generated/themes/BrowserScrollbar.css.js +1 -1
  313. package/src/sap/ui/webc/main/thirdparty/generated/themes/BusyIndicator.css.js +1 -1
  314. package/src/sap/ui/webc/main/thirdparty/generated/themes/Button.css.js +1 -1
  315. package/src/sap/ui/webc/main/thirdparty/generated/themes/Calendar.css.js +1 -1
  316. package/src/sap/ui/webc/main/thirdparty/generated/themes/CalendarHeader.css.js +1 -1
  317. package/src/sap/ui/webc/main/thirdparty/generated/themes/Card.css.js +1 -1
  318. package/src/sap/ui/webc/main/thirdparty/generated/themes/CardHeader.css.js +1 -1
  319. package/src/sap/ui/webc/main/thirdparty/generated/themes/CheckBox.css.js +1 -1
  320. package/src/sap/ui/webc/main/thirdparty/generated/themes/ColorPicker.css.js +1 -1
  321. package/src/sap/ui/webc/main/thirdparty/generated/themes/ComboBox.css.js +1 -1
  322. package/src/sap/ui/webc/main/thirdparty/generated/themes/CustomListItem.css.js +1 -1
  323. package/src/sap/ui/webc/main/thirdparty/generated/themes/DatePicker.css.js +1 -1
  324. package/src/sap/ui/webc/main/thirdparty/generated/themes/DateTimePickerPopover.css.js +1 -1
  325. package/src/sap/ui/webc/main/thirdparty/generated/themes/DayPicker.css.js +1 -1
  326. package/src/sap/ui/webc/main/thirdparty/generated/themes/Dialog.css.js +1 -1
  327. package/src/sap/ui/webc/main/thirdparty/generated/themes/GrowingButton.css.js +1 -1
  328. package/src/sap/ui/webc/main/thirdparty/generated/themes/Input.css.js +1 -1
  329. package/src/sap/ui/webc/main/thirdparty/generated/themes/InputIcon.css.js +1 -1
  330. package/src/sap/ui/webc/main/thirdparty/generated/themes/List.css.js +1 -1
  331. package/src/sap/ui/webc/main/thirdparty/generated/themes/ListItemBase.css.js +1 -1
  332. package/src/sap/ui/webc/main/thirdparty/generated/themes/MessageStrip.css.js +1 -1
  333. package/src/sap/ui/webc/main/thirdparty/generated/themes/MonthPicker.css.js +1 -1
  334. package/src/sap/ui/webc/main/thirdparty/generated/themes/MultiComboBox.css.js +1 -1
  335. package/src/sap/ui/webc/main/thirdparty/generated/themes/MultiInput.css.js +1 -1
  336. package/src/sap/ui/webc/main/thirdparty/generated/themes/Panel.css.js +1 -1
  337. package/src/sap/ui/webc/main/thirdparty/generated/themes/Popover.css.js +1 -1
  338. package/src/sap/ui/webc/main/thirdparty/generated/themes/PopupsCommon.css.js +1 -1
  339. package/src/sap/ui/webc/main/thirdparty/generated/themes/ProgressIndicator.css.js +1 -1
  340. package/src/sap/ui/webc/main/thirdparty/generated/themes/RadioButton.css.js +1 -1
  341. package/src/sap/ui/webc/main/thirdparty/generated/themes/RatingIndicator.css.js +1 -1
  342. package/src/sap/ui/webc/main/thirdparty/generated/themes/ResponsivePopoverCommon.css.js +1 -1
  343. package/src/sap/ui/webc/main/thirdparty/generated/themes/SegmentedButton.css.js +1 -1
  344. package/src/sap/ui/webc/main/thirdparty/generated/themes/Select.css.js +1 -1
  345. package/src/sap/ui/webc/main/thirdparty/generated/themes/SelectPopover.css.js +1 -1
  346. package/src/sap/ui/webc/main/thirdparty/generated/themes/SliderBase.css.js +1 -1
  347. package/src/sap/ui/webc/main/thirdparty/generated/themes/SplitButton.css.js +13 -0
  348. package/src/sap/ui/webc/main/thirdparty/generated/themes/StepInput.css.js +1 -1
  349. package/src/sap/ui/webc/main/thirdparty/generated/themes/Suggestions.css.js +1 -1
  350. package/src/sap/ui/webc/main/thirdparty/generated/themes/Switch.css.js +1 -1
  351. package/src/sap/ui/webc/main/thirdparty/generated/themes/TabContainer.css.js +1 -1
  352. package/src/sap/ui/webc/main/thirdparty/generated/themes/TabInOverflow.css.js +1 -1
  353. package/src/sap/ui/webc/main/thirdparty/generated/themes/TabInStrip.css.js +1 -1
  354. package/src/sap/ui/webc/main/thirdparty/generated/themes/TabSeparatorInOverflow.css.js +13 -0
  355. package/src/sap/ui/webc/main/thirdparty/generated/themes/TabSeparatorInStrip.css.js +13 -0
  356. package/src/sap/ui/webc/main/thirdparty/generated/themes/Table.css.js +1 -1
  357. package/src/sap/ui/webc/main/thirdparty/generated/themes/TableColumn.css.js +1 -1
  358. package/src/sap/ui/webc/main/thirdparty/generated/themes/TableGroupRow.css.js +1 -1
  359. package/src/sap/ui/webc/main/thirdparty/generated/themes/TextArea.css.js +1 -1
  360. package/src/sap/ui/webc/main/thirdparty/generated/themes/TimePicker.css.js +1 -1
  361. package/src/sap/ui/webc/main/thirdparty/generated/themes/TimeSelection.css.js +1 -1
  362. package/src/sap/ui/webc/main/thirdparty/generated/themes/Token.css.js +1 -1
  363. package/src/sap/ui/webc/main/thirdparty/generated/themes/Tokenizer.css.js +1 -1
  364. package/src/sap/ui/webc/main/thirdparty/generated/themes/ValueStateMessage.css.js +1 -1
  365. package/src/sap/ui/webc/main/thirdparty/generated/themes/WheelSlider.css.js +1 -1
  366. package/src/sap/ui/webc/main/thirdparty/generated/themes/YearPicker.css.js +1 -1
  367. package/src/sap/ui/webc/main/thirdparty/generated/themes/sap_belize/parameters-bundle.css.js +1 -1
  368. package/src/sap/ui/webc/main/thirdparty/generated/themes/sap_belize_hcb/parameters-bundle.css.js +1 -1
  369. package/src/sap/ui/webc/main/thirdparty/generated/themes/sap_belize_hcw/parameters-bundle.css.js +1 -1
  370. package/src/sap/ui/webc/main/thirdparty/generated/themes/sap_fiori_3/parameters-bundle.css.js +1 -1
  371. package/src/sap/ui/webc/main/thirdparty/generated/themes/sap_fiori_3_dark/parameters-bundle.css.js +1 -1
  372. package/src/sap/ui/webc/main/thirdparty/generated/themes/sap_fiori_3_hcb/parameters-bundle.css.js +1 -1
  373. package/src/sap/ui/webc/main/thirdparty/generated/themes/sap_fiori_3_hcw/parameters-bundle.css.js +1 -1
  374. package/src/sap/ui/webc/main/thirdparty/generated/themes/sap_horizon/parameters-bundle.css.js +1 -1
  375. package/src/sap/ui/webc/main/thirdparty/generated/themes/sap_horizon_exp/parameters-bundle.css.js +1 -1
  376. package/src/sap/ui/webc/main/thirdparty/{messagebundle_ar-f610ffe9.js → messagebundle_ar-7d8b4442.js} +10 -2
  377. package/src/sap/ui/webc/main/thirdparty/{messagebundle_bg-e372ad7a.js → messagebundle_bg-9ad96f98.js} +10 -2
  378. package/src/sap/ui/webc/main/thirdparty/{messagebundle_ca-64403819.js → messagebundle_ca-f1555bd9.js} +10 -2
  379. package/src/sap/ui/webc/main/thirdparty/{messagebundle_cs-f5276d1f.js → messagebundle_cs-ef8aa726.js} +10 -2
  380. package/src/sap/ui/webc/main/thirdparty/{messagebundle_cy-5b51959f.js → messagebundle_cy-990b67d4.js} +10 -2
  381. package/src/sap/ui/webc/main/thirdparty/{messagebundle_da-3f0c542a.js → messagebundle_da-10ddad8e.js} +10 -2
  382. package/src/sap/ui/webc/main/thirdparty/{messagebundle_de-ff52e292.js → messagebundle_de-3df474de.js} +10 -2
  383. package/src/sap/ui/webc/main/thirdparty/{messagebundle_el-8a8f0e04.js → messagebundle_el-26906c8d.js} +10 -2
  384. package/src/sap/ui/webc/main/thirdparty/{messagebundle_en-39f79920.js → messagebundle_en-f820b936.js} +10 -2
  385. package/src/sap/ui/webc/main/thirdparty/{messagebundle_en_GB-9a6995bc.js → messagebundle_en_GB-2d06b0a2.js} +10 -2
  386. package/src/sap/ui/webc/main/thirdparty/{messagebundle_en_US_sappsd-1cd6f946.js → messagebundle_en_US_sappsd-5a02ac90.js} +10 -2
  387. package/src/sap/ui/webc/main/thirdparty/{messagebundle_en_US_saprigi-88214efb.js → messagebundle_en_US_saprigi-789390fa.js} +10 -2
  388. package/src/sap/ui/webc/main/thirdparty/{messagebundle_en_US_saptrc-d8b4cc37.js → messagebundle_en_US_saptrc-b8adcdb7.js} +10 -2
  389. package/src/sap/ui/webc/main/thirdparty/{messagebundle_es-4e7804b3.js → messagebundle_es-fb48a8d9.js} +10 -2
  390. package/src/sap/ui/webc/main/thirdparty/{messagebundle_es_MX-5d55637e.js → messagebundle_es_MX-1649847d.js} +10 -2
  391. package/src/sap/ui/webc/main/thirdparty/{messagebundle_et-d019447e.js → messagebundle_et-21441666.js} +10 -2
  392. package/src/sap/ui/webc/main/thirdparty/{messagebundle_fi-115f5a0c.js → messagebundle_fi-a7a6ed50.js} +11 -3
  393. package/src/sap/ui/webc/main/thirdparty/{messagebundle_fr-f4458a8c.js → messagebundle_fr-7d25aa37.js} +10 -2
  394. package/src/sap/ui/webc/main/thirdparty/{messagebundle_fr_CA-d3ac2579.js → messagebundle_fr_CA-f0885bcd.js} +10 -2
  395. package/src/sap/ui/webc/main/thirdparty/{messagebundle_hi-3dbf5206.js → messagebundle_hi-4ff3dc19.js} +10 -2
  396. package/src/sap/ui/webc/main/thirdparty/{messagebundle_hr-3112e358.js → messagebundle_hr-27ea5966.js} +10 -2
  397. package/src/sap/ui/webc/main/thirdparty/{messagebundle_hu-90f77b24.js → messagebundle_hu-4e7efab2.js} +10 -2
  398. package/src/sap/ui/webc/main/thirdparty/{messagebundle_it-4fd2c566.js → messagebundle_it-05136e9a.js} +10 -2
  399. package/src/sap/ui/webc/main/thirdparty/{messagebundle_iw-ff53b57b.js → messagebundle_iw-e57af9b5.js} +10 -2
  400. package/src/sap/ui/webc/main/thirdparty/{messagebundle_ja-050a69c3.js → messagebundle_ja-548e66ac.js} +12 -4
  401. package/src/sap/ui/webc/main/thirdparty/{messagebundle_kk-597a9724.js → messagebundle_kk-9a532b4c.js} +10 -2
  402. package/src/sap/ui/webc/main/thirdparty/{messagebundle_ko-d840efd8.js → messagebundle_ko-85246117.js} +10 -2
  403. package/src/sap/ui/webc/main/thirdparty/{messagebundle_lt-d15c1526.js → messagebundle_lt-fd1ed9a8.js} +10 -2
  404. package/src/sap/ui/webc/main/thirdparty/{messagebundle_lv-539ad33e.js → messagebundle_lv-528ee0b5.js} +10 -2
  405. package/src/sap/ui/webc/main/thirdparty/{messagebundle_ms-98b3e6dd.js → messagebundle_ms-ab977639.js} +10 -2
  406. package/src/sap/ui/webc/main/thirdparty/{messagebundle_nl-5c52e887.js → messagebundle_nl-6ef0aca9.js} +10 -2
  407. package/src/sap/ui/webc/main/thirdparty/{messagebundle_no-04ee2aaf.js → messagebundle_no-598c70b3.js} +10 -2
  408. package/src/sap/ui/webc/main/thirdparty/{messagebundle_pl-6da30702.js → messagebundle_pl-3c6bd3f7.js} +10 -2
  409. package/src/sap/ui/webc/main/thirdparty/{messagebundle_pt-71f281c3.js → messagebundle_pt-a38c9a95.js} +10 -2
  410. package/src/sap/ui/webc/main/thirdparty/{messagebundle_pt_PT-6d966418.js → messagebundle_pt_PT-6216e41a.js} +10 -2
  411. package/src/sap/ui/webc/main/thirdparty/{messagebundle_ro-e76a9c5d.js → messagebundle_ro-4efbaf89.js} +10 -2
  412. package/src/sap/ui/webc/main/thirdparty/{messagebundle_ru-dc34dd79.js → messagebundle_ru-c8cc395e.js} +10 -2
  413. package/src/sap/ui/webc/main/thirdparty/{messagebundle_sh-f2171ee6.js → messagebundle_sh-a18343ab.js} +10 -2
  414. package/src/sap/ui/webc/main/thirdparty/{messagebundle_sk-5c10a3c8.js → messagebundle_sk-cbb7b742.js} +10 -2
  415. package/src/sap/ui/webc/main/thirdparty/{messagebundle_sl-14cff3cf.js → messagebundle_sl-39b012e5.js} +10 -2
  416. package/src/sap/ui/webc/main/thirdparty/{messagebundle_sv-44a9e5d4.js → messagebundle_sv-68d03f9d.js} +10 -2
  417. package/src/sap/ui/webc/main/thirdparty/{messagebundle_th-6cbca7a8.js → messagebundle_th-e0f152c1.js} +9 -1
  418. package/src/sap/ui/webc/main/thirdparty/{messagebundle_tr-00ce0f94.js → messagebundle_tr-10848533.js} +10 -2
  419. package/src/sap/ui/webc/main/thirdparty/{messagebundle_uk-bf2de1c7.js → messagebundle_uk-64f282f3.js} +10 -2
  420. package/src/sap/ui/webc/main/thirdparty/{messagebundle_vi-a0de6aa8.js → messagebundle_vi-c6d60018.js} +10 -2
  421. package/src/sap/ui/webc/main/thirdparty/{messagebundle_zh_CN-7cbf9197.js → messagebundle_zh_CN-3be28696.js} +10 -2
  422. package/src/sap/ui/webc/main/thirdparty/{messagebundle_zh_TW-53705d5b.js → messagebundle_zh_TW-229e0d2b.js} +9 -1
  423. package/src/sap/ui/webc/main/thirdparty/parameters-bundle.css-87f538cb.js +13 -0
  424. package/src/sap/ui/webc/main/thirdparty/parameters-bundle.css-91761a3a.js +13 -0
  425. package/src/sap/ui/webc/main/thirdparty/parameters-bundle.css-9a20ee88.js +13 -0
  426. package/src/sap/ui/webc/main/thirdparty/parameters-bundle.css-ae75ba99.js +13 -0
  427. package/src/sap/ui/webc/main/thirdparty/parameters-bundle.css-b27de009.js +13 -0
  428. package/src/sap/ui/webc/main/thirdparty/parameters-bundle.css-ba83be15.js +13 -0
  429. package/src/sap/ui/webc/main/thirdparty/parameters-bundle.css-c6c72cae.js +13 -0
  430. package/src/sap/ui/webc/main/thirdparty/parameters-bundle.css-dc4174de.js +13 -0
  431. package/src/sap/ui/webc/main/thirdparty/parameters-bundle.css-dd344116.js +13 -0
  432. package/src/sap/ui/webc/main/thirdparty/types/HasPopup.js +23 -0
  433. package/src/sap/ui/webc/main/thirdparty/types/TabsOverflowMode.js +20 -0
  434. package/src/sap/ui/webc/main/thirdparty/generated/templates/TabSeparatorTemplate.lit.js +0 -7
  435. package/src/sap/ui/webc/main/thirdparty/parameters-bundle.css-0f28e359.js +0 -13
  436. package/src/sap/ui/webc/main/thirdparty/parameters-bundle.css-1ee56435.js +0 -13
  437. package/src/sap/ui/webc/main/thirdparty/parameters-bundle.css-4d4cd873.js +0 -13
  438. package/src/sap/ui/webc/main/thirdparty/parameters-bundle.css-5bdedee7.js +0 -13
  439. package/src/sap/ui/webc/main/thirdparty/parameters-bundle.css-60d672db.js +0 -13
  440. package/src/sap/ui/webc/main/thirdparty/parameters-bundle.css-793a420b.js +0 -13
  441. package/src/sap/ui/webc/main/thirdparty/parameters-bundle.css-7c549d8f.js +0 -13
  442. package/src/sap/ui/webc/main/thirdparty/parameters-bundle.css-7e5617d6.js +0 -13
  443. package/src/sap/ui/webc/main/thirdparty/parameters-bundle.css-e75a0bfb.js +0 -13
package/.reuse/dep5 CHANGED
@@ -28,7 +28,7 @@ Disclaimer: The code in this project may include calls to APIs (“API Calls”)
28
28
  # OpenUI5 code
29
29
 
30
30
  Files: *
31
- Copyright: 2009-2021 SAP SE or an SAP affiliate company and OpenUI5 contributors
31
+ Copyright: 2009-2022 SAP SE or an SAP affiliate company and OpenUI5 contributors
32
32
  License: Apache-2.0
33
33
 
34
34
 
@@ -60,7 +60,7 @@ Comment: these files belong to: jQuery UI
60
60
 
61
61
  Files: src/sap.ui.commons/src/sap/ui/commons/Carousel.js
62
62
  Copyright:
63
- 2009-2021 SAP SE or an SAP affiliate company and OpenUI5 contributors
63
+ 2009-2022 SAP SE or an SAP affiliate company and OpenUI5 contributors
64
64
  Spencer Tipping
65
65
  License: Apache-2.0 and MIT
66
66
  Comment: these files contain content from SAP and jquery.fix.clone: Carousel.js is authored by SAP, but contains an improved implementation of the clone function which is taken from jquery-fix-clone
@@ -75,35 +75,35 @@ Comment: these files belong to: jQuery 3
75
75
 
76
76
  Files: src/sap.ui.core/src/sap/base/util/isPlainObject.js
77
77
  Copyright:
78
- 2009-2021 SAP SE or an SAP affiliate company and OpenUI5 contributors
78
+ 2009-2022 SAP SE or an SAP affiliate company and OpenUI5 contributors
79
79
  OpenJS Foundation and other contributors
80
80
  License: Apache-2.0 and MIT
81
81
  Comment: these files contain content from SAP and jQuery 3: isPlainObject.js is overall written by SAP, but contains a modified implementation of jQuery.isPlainObject taken from jQuery
82
82
 
83
83
  Files: src/sap.ui.core/src/sap/base/util/_merge.js
84
84
  Copyright:
85
- 2009-2021 SAP SE or an SAP affiliate company and OpenUI5 contributors
85
+ 2009-2022 SAP SE or an SAP affiliate company and OpenUI5 contributors
86
86
  OpenJS Foundation and other contributors
87
87
  License: Apache-2.0 and MIT
88
88
  Comment: these files contain content from SAP and jQuery 3: _merge.js is overall written by SAP, but contains a modified implementation of jQuery.extend taken from jQuery
89
89
 
90
90
  Files: src/sap.ui.core/src/jquery.sap.script.js
91
91
  Copyright:
92
- 2009-2021 SAP SE or an SAP affiliate company and OpenUI5 contributors
92
+ 2009-2022 SAP SE or an SAP affiliate company and OpenUI5 contributors
93
93
  OpenJS Foundation and other contributors
94
94
  License: Apache-2.0 and MIT
95
95
  Comment: these files contain content from SAP and jQuery 3: jquery.sap.script.js is overall written by SAP, but contains a modified implementation of jQuery.extend taken from jQuery
96
96
 
97
97
  Files: src/sap.ui.core/src/sap/ui/Device.js
98
98
  Copyright:
99
- 2009-2021 SAP SE or an SAP affiliate company and OpenUI5 contributors
99
+ 2009-2022 SAP SE or an SAP affiliate company and OpenUI5 contributors
100
100
  2011, John Resig
101
101
  License: Apache-2.0 and MIT
102
102
  Comment: these files contain content from SAP and jQuery 1: Device.js is overall written by SAP, but contains code taken from jQuery 1.7.1 (see the respective comment)
103
103
 
104
104
  Files: src/sap.ui.core/src/sap/ui/dom/jquery/Selectors.js
105
105
  Copyright:
106
- 2009-2021 SAP SE or an SAP affiliate company and OpenUI5 contributors
106
+ 2009-2022 SAP SE or an SAP affiliate company and OpenUI5 contributors
107
107
  2014 jQuery Foundation and other contributors
108
108
  License: Apache-2.0 and MIT
109
109
  Comment: these files contain content from SAP and jQuery UI 1.8: Selectors.js is overall written by SAP, but contains code taken from jQuery UI (see the respective comments)
@@ -115,14 +115,14 @@ Comment: these files belong to: jQuery UI 1.10
115
115
 
116
116
  Files: src/sap.ui.core/src/jquery.sap.dom.js
117
117
  Copyright:
118
- 2009-2021 SAP SE or an SAP affiliate company and OpenUI5 contributors
118
+ 2009-2022 SAP SE or an SAP affiliate company and OpenUI5 contributors
119
119
  2014 jQuery Foundation and other contributors
120
120
  License: Apache-2.0 and MIT
121
121
  Comment: these files contain content from SAP and jQuery UI 1.10: jquery.sap.dom.js is overall written by SAP, but contains code taken from jQuery UI Core (see the respective comment)
122
122
 
123
123
  Files: src/sap.ui.core/src/sap/ui/dom/jquery/zIndex.js
124
124
  Copyright:
125
- 2009-2021 SAP SE or an SAP affiliate company and OpenUI5 contributors
125
+ 2009-2022 SAP SE or an SAP affiliate company and OpenUI5 contributors
126
126
  2014 jQuery Foundation and other contributors
127
127
  License: Apache-2.0 and MIT
128
128
  Comment: these files contain content from SAP and jQuery UI 1.11: zIndex.js is overall written by SAP, but contains an implementation of the function 'fnzIndex' which is taken from jQuery UI Datepicker 1.11.1
@@ -149,7 +149,7 @@ Comment: these files belong to: jQuery Mobile
149
149
 
150
150
  Files: src/sap.ui.core/src/sap/ui/util/_FeatureDetection.js
151
151
  Copyright:
152
- 2009-2021 SAP SE or an SAP affiliate company and OpenUI5 contributors
152
+ 2009-2022 SAP SE or an SAP affiliate company and OpenUI5 contributors
153
153
  2012 Wei-Ko Kao
154
154
  License: Apache-2.0 and MIT
155
155
  Comment: these files contain content from SAP and jQuery.rtl-scroll-type: _FeatureDetection.js is overall written by SAP, but contains code which is inspired by jQuery.rtl-scroll-type
@@ -281,14 +281,14 @@ Comment: these files belong to: blanket.js
281
281
 
282
282
  Files: src/sap.ui.core/src/sap/base/util/JSTokenizer.js
283
283
  Copyright:
284
- 2009-2021 SAP SE or an SAP affiliate company and OpenUI5 contributors
284
+ 2009-2022 SAP SE or an SAP affiliate company and OpenUI5 contributors
285
285
  Douglas Crockford
286
286
  License: Apache-2.0 and LicenseRef-JSONinJSPublicDomain
287
287
  Comment: these files contain content from SAP and JSON in JS: JSTokenizer.js is overall written by SAP, but contains code has been taken from the component JSON in JavaScript (https://github.com/douglascrockford/JSON-js/blob/master/json2.js) from Douglas Crockford which is licensed under Public Domain
288
288
 
289
289
  Files: src/sap.ui.core/src/sap/ui/base/ExpressionParser.js
290
290
  Copyright:
291
- 2009-2021 SAP SE or an SAP affiliate company and OpenUI5 contributors
291
+ 2009-2022 SAP SE or an SAP affiliate company and OpenUI5 contributors
292
292
  2010 Douglas Crockford
293
293
  License: Apache-2.0
294
294
  Comment: these files contain content from SAP and Top Down Operator Precedence: ExpressionParser.js is overall written by SAP, but contains code taken from or inspired by TDOP by Douglas Crockford (see the respective comment)
@@ -322,7 +322,7 @@ Comment: these files contain content from p-cancelable and @babel/helpers: _Canc
322
322
 
323
323
  Files: src/sap.ui.core/src/sap/ui/core/date/Persian.js
324
324
  Copyright:
325
- 2009-2021 SAP SE or an SAP affiliate company and OpenUI5 contributors
325
+ 2009-2022 SAP SE or an SAP affiliate company and OpenUI5 contributors
326
326
  Behrang Norouzinia
327
327
  License: Apache-2.0 and MIT
328
328
  Comment: these files contain content from SAP and Jalaali JS: Persian.js is overall written by SAP, but the calculation is taken from jalaali-js
@@ -334,7 +334,7 @@ Comment: these files belong to: vkBeautify
334
334
 
335
335
  Files: src/sap.ui.core/src/sap/ui/core/cache/LRUPersistentCache.js
336
336
  Copyright:
337
- 2009-2021 SAP SE or an SAP affiliate company and OpenUI5 contributors
337
+ 2009-2022 SAP SE or an SAP affiliate company and OpenUI5 contributors
338
338
  Isaac Z. Schlueter and Contributors
339
339
  License: Apache-2.0 and ISC
340
340
  Comment: these files contain content from SAP and node-lru-cache: LRUPersistentCache.js is overall written by SAP, but portions ('Least Recently Used' logic) are taken from the node-lru-cache project (see https://github.com/isaacs/node-lru-cache/blob/v2.7.3/README.md) and modified.
@@ -370,21 +370,11 @@ Comment: these files belong to: Buttons extension for DataTables
370
370
 
371
371
  # Library: sap.ui.integration:
372
372
 
373
- Files: src/sap.ui.integration/src/sap/ui/integration/thirdparty/webcomponents/*.*.json src/sap.ui.integration/src/sap/ui/integration/thirdparty/webcomponents/bundle*
373
+ Files: src/sap.ui.integration/src/sap/ui/integration/thirdparty/webcomponents/*
374
374
  Copyright: SAP
375
375
  License: Apache-2.0
376
376
  Comment: these files belong to: UI5 Web Components
377
377
 
378
- Files: src/sap.ui.integration/src/sap/ui/integration/thirdparty/webcomponents/webcomponentsjs/*
379
- Copyright: 2015 The Polymer Authors
380
- License: BSD-3-Clause
381
- Comment: these files belong to: Webcomponentsjs
382
-
383
- Files: src/sap.ui.integration/src/sap/ui/integration/thirdparty/webcomponents/Unicode-Data-Files-LICENSE.txt
384
- Copyright: 1991-2014 Unicode, Inc.
385
- License: Unicode-DFS-2015
386
- Comment: these files belong to: Unicode Common Locale Data Repository
387
-
388
378
  Files: src/sap.ui.integration/src/sap/ui/integration/thirdparty/adaptivecards.js src/sap.ui.integration/src/sap/ui/integration/schemas/adaptive-card.json
389
379
  Copyright: 2017 Microsoft
390
380
  License: MIT
@@ -395,22 +385,27 @@ Copyright: 2017 Microsoft
395
385
  License: MIT
396
386
  Comment: these files belong to: Adaptive Cards Templating
397
387
 
388
+ Files: src/sap.ui.integration/src/sap/ui/integration/thirdparty/adaptive-expressions.js
389
+ Copyright: Microsoft
390
+ License: MIT
391
+ Comment: these files belong to: Adaptive Expressions
392
+
398
393
  Files: src/sap.ui.integration/src/sap/ui/integration/thirdparty/markdown-it.js
399
394
  Copyright: 2014 Vitaly Puzrin, Alex Kocharin
400
395
  License: MIT
401
396
  Comment: these files belong to: Markdown-it
402
397
 
403
- Files: src/sap.ui.integration/test/sap/ui/integration/demokit/cardExplorer/webapp/thirdparty/ajv/ajv.min.js
404
- Copyright: 2015-2017 Evgeny Poberezkin
398
+ Files: src/sap.ui.integration/test/sap/ui/integration/demokit/cardExplorer/webapp/thirdparty/CfWorkerJsonSchemaValidator.js
399
+ Copyright: 2020 Jeremy Danyow
405
400
  License: MIT
406
- Comment: these files belong to: ajv
401
+ Comment: these files belong to: @cfworker/json-schema
407
402
 
408
403
 
409
404
  # Library: sap.ui.mdc:
410
405
 
411
406
  Files: src/sap.ui.mdc/test/sap/ui/mdc/sample/field/filterfieldwithoperators/BoolExprTool.js
412
407
  Copyright:
413
- 2009-2021 SAP SE or an SAP affiliate company and OpenUI5 contributors
408
+ 2009-2022 SAP SE or an SAP affiliate company and OpenUI5 contributors
414
409
  2015 unnikked
415
410
  License: Apache-2.0 and MIT
416
411
  Comment: these files contain content from SAP and BooleanExpressionEvaluator: BoolExprTool.js is authored by SAP, but partly inspired by BooleanExpressionEvaluator
@@ -454,7 +449,7 @@ Comment: these files belong to: LESS
454
449
 
455
450
  Files: lib/jsdoc/ui5/plugin.js
456
451
  Copyright:
457
- 2009-2021 SAP SE or an SAP affiliate company and OpenUI5 contributors
452
+ 2009-2022 SAP SE or an SAP affiliate company and OpenUI5 contributors
458
453
  2011-present Michael Mathews micmath@gmail.com and the contributors to JSDoc
459
454
  License: Apache-2.0
460
455
  Comment: these files contain content from SAP and JSDoc 3: plugin.js is overall written by SAP, but contains code taken from JSDoc 3.6.7 (see the respective comments)
package/THIRDPARTY.txt CHANGED
@@ -197,7 +197,7 @@ License: BSD-3-Clause
197
197
  License Text: https://github.com/SAP/openui5/blob/master/LICENSES/BSD-3-Clause.txt
198
198
  Contained in: src/sap.ui.core/src/sap/ui/thirdparty/sinon-qunit.js
199
199
 
200
- Component: URI.js, version: 1.19.7
200
+ Component: URI.js, version: 1.19.10
201
201
  Copyright: Rodney Rehm
202
202
  License: MIT
203
203
  License Text: https://github.com/SAP/openui5/blob/master/LICENSES/MIT.txt
@@ -351,24 +351,11 @@ Contained in: src/sap.ui.documentation/src/sap/ui/documentation/sdk/thirdparty/D
351
351
 
352
352
  Library: sap.ui.integration:
353
353
 
354
- Component: UI5 Web Components, version: 1.0.0-rc.8
354
+ Component: UI5 Web Components, version: 1.0.1
355
355
  Copyright: SAP
356
356
  License: Apache-2.0
357
357
  License Text: https://github.com/SAP/openui5/blob/master/LICENSES/Apache-2.0.txt
358
- Contained in: src/sap.ui.integration/src/sap/ui/integration/thirdparty/webcomponents/*.*.json
359
- src/sap.ui.integration/src/sap/ui/integration/thirdparty/webcomponents/bundle*
360
-
361
- Component: Webcomponentsjs, version: 1.0.2
362
- Copyright: 2015 The Polymer Authors
363
- License: BSD-3-Clause
364
- License Text: https://github.com/SAP/openui5/blob/master/LICENSES/BSD-3-Clause.txt
365
- Contained in: src/sap.ui.integration/src/sap/ui/integration/thirdparty/webcomponents/webcomponentsjs/*
366
-
367
- Component: Unicode Common Locale Data Repository
368
- Copyright: 1991-2014 Unicode, Inc.
369
- License: Unicode-DFS-2015
370
- License Text: https://github.com/SAP/openui5/blob/master/LICENSES/Unicode-DFS-2015.txt
371
- Contained in: src/sap.ui.integration/src/sap/ui/integration/thirdparty/webcomponents/Unicode-Data-Files-LICENSE.txt
358
+ Contained in: src/sap.ui.integration/src/sap/ui/integration/thirdparty/webcomponents/*
372
359
 
373
360
  Component: Adaptive Cards, version: 2.9.0
374
361
  Copyright: 2017 Microsoft
@@ -377,23 +364,29 @@ License Text: https://github.com/SAP/openui5/blob/master/LICENSES/MIT.txt
377
364
  Contained in: src/sap.ui.integration/src/sap/ui/integration/thirdparty/adaptivecards.js
378
365
  src/sap.ui.integration/src/sap/ui/integration/schemas/adaptive-card.json
379
366
 
380
- Component: Adaptive Cards Templating, version: 0.1.1-alpha.0
367
+ Component: Adaptive Cards Templating, version: 2.2.0
381
368
  Copyright: 2017 Microsoft
382
369
  License: MIT
383
370
  License Text: https://github.com/SAP/openui5/blob/master/LICENSES/MIT.txt
384
371
  Contained in: src/sap.ui.integration/src/sap/ui/integration/thirdparty/adaptivecards-templating.js
385
372
 
386
- Component: Markdown-it, version: 10.0.0
373
+ Component: Adaptive Expressions, version: 4.15.0
374
+ Copyright: Microsoft
375
+ License: MIT
376
+ License Text: https://github.com/SAP/openui5/blob/master/LICENSES/MIT.txt
377
+ Contained in: src/sap.ui.integration/src/sap/ui/integration/thirdparty/adaptive-expressions.js
378
+
379
+ Component: Markdown-it, version: 12.2.0
387
380
  Copyright: 2014 Vitaly Puzrin, Alex Kocharin
388
381
  License: MIT
389
382
  License Text: https://github.com/SAP/openui5/blob/master/LICENSES/MIT.txt
390
383
  Contained in: src/sap.ui.integration/src/sap/ui/integration/thirdparty/markdown-it.js
391
384
 
392
- Component: ajv, version: 6.12.3
393
- Copyright: 2015-2017 Evgeny Poberezkin
385
+ Component: @cfworker/json-schema, version: 1.6.8
386
+ Copyright: 2020 Jeremy Danyow
394
387
  License: MIT
395
388
  License Text: https://github.com/SAP/openui5/blob/master/LICENSES/MIT.txt
396
- Contained in: src/sap.ui.integration/test/sap/ui/integration/demokit/cardExplorer/webapp/thirdparty/ajv/ajv.min.js
389
+ Contained in: src/sap.ui.integration/test/sap/ui/integration/demokit/cardExplorer/webapp/thirdparty/CfWorkerJsonSchemaValidator.js
397
390
 
398
391
 
399
392
  Library: sap.ui.mdc:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openui5/sap.ui.webc.main",
3
- "version": "1.97.1",
3
+ "version": "1.99.1",
4
4
  "description": "OpenUI5 UI Library sap.ui.webc.main",
5
5
  "author": "SAP SE (https://www.sap.com)",
6
6
  "license": "Apache-2.0",
@@ -16,7 +16,7 @@
16
16
  "url": "https://github.com/SAP/openui5.git"
17
17
  },
18
18
  "dependencies": {
19
- "@openui5/sap.ui.core": "1.97.1",
20
- "@openui5/sap.ui.webc.common": "1.97.1"
19
+ "@openui5/sap.ui.core": "1.99.1",
20
+ "@openui5/sap.ui.webc.common": "1.99.1"
21
21
  }
22
22
  }
@@ -3,7 +3,7 @@
3
3
 
4
4
  <name>sap.ui.webc.main</name>
5
5
  <vendor>SAP SE</vendor>
6
- <version>1.97.1</version>
6
+ <version>1.99.1</version>
7
7
  <copyright>OpenUI5
8
8
  * (c) Copyright 2009-2022 SAP SE or an SAP affiliate company.
9
9
  * Licensed under the Apache License, Version 2.0 - see LICENSE.txt.</copyright>
@@ -43,7 +43,7 @@ sap.ui.define([
43
43
  * <br>
44
44
  *
45
45
  * @author SAP SE
46
- * @version 1.97.1
46
+ * @version 1.99.1
47
47
  *
48
48
  * @constructor
49
49
  * @public
@@ -172,5 +172,8 @@ sap.ui.define([
172
172
  }
173
173
  });
174
174
 
175
+ /* CUSTOM CODE START */
176
+ /* CUSTOM CODE END */
177
+
175
178
  return Avatar;
176
179
  });
@@ -73,7 +73,7 @@ sap.ui.define([
73
73
  * </ul> <br>
74
74
  *
75
75
  * @author SAP SE
76
- * @version 1.97.1
76
+ * @version 1.99.1
77
77
  *
78
78
  * @constructor
79
79
  * @public
@@ -174,5 +174,8 @@ sap.ui.define([
174
174
  * @function
175
175
  */
176
176
 
177
+ /* CUSTOM CODE START */
178
+ /* CUSTOM CODE END */
179
+
177
180
  return AvatarGroup;
178
181
  });
@@ -33,7 +33,7 @@ sap.ui.define([
33
33
  * </ul>
34
34
  *
35
35
  * @author SAP SE
36
- * @version 1.97.1
36
+ * @version 1.99.1
37
37
  *
38
38
  * @constructor
39
39
  * @public
@@ -81,5 +81,8 @@ sap.ui.define([
81
81
  }
82
82
  });
83
83
 
84
+ /* CUSTOM CODE START */
85
+ /* CUSTOM CODE END */
86
+
84
87
  return Badge;
85
88
  });
@@ -45,7 +45,7 @@ sap.ui.define([
45
45
  * </ul> <br>
46
46
  *
47
47
  * @author SAP SE
48
- * @version 1.97.1
48
+ * @version 1.99.1
49
49
  *
50
50
  * @constructor
51
51
  * @public
@@ -108,9 +108,10 @@ sap.ui.define([
108
108
  events: {
109
109
 
110
110
  /**
111
- * Fires when a <code>BreadcrumbsItem</code> is clicked.
111
+ * Fires when a <code>BreadcrumbsItem</code> is clicked. <b>Note:</b> You can prevent browser location change by calling <code>event.preventDefault()</code>.
112
112
  */
113
113
  itemClick: {
114
+ allowPreventDefault: true,
114
115
  parameters: {
115
116
  /**
116
117
  * The clicked item.
@@ -124,5 +125,8 @@ sap.ui.define([
124
125
  }
125
126
  });
126
127
 
128
+ /* CUSTOM CODE START */
129
+ /* CUSTOM CODE END */
130
+
127
131
  return Breadcrumbs;
128
- });
132
+ });
@@ -26,7 +26,7 @@ sap.ui.define([
26
26
  * The <code>sap.ui.webc.main.BreadcrumbsItem</code> component defines the content of an item in <code>ui5-breadcumbs</code>.
27
27
  *
28
28
  * @author SAP SE
29
- * @version 1.97.1
29
+ * @version 1.99.1
30
30
  *
31
31
  * @constructor
32
32
  * @public
@@ -94,5 +94,8 @@ sap.ui.define([
94
94
  }
95
95
  });
96
96
 
97
+ /* CUSTOM CODE START */
98
+ /* CUSTOM CODE END */
99
+
97
100
  return BreadcrumbsItem;
98
- });
101
+ });
@@ -46,7 +46,7 @@ sap.ui.define([
46
46
  * </ul>
47
47
  *
48
48
  * @author SAP SE
49
- * @version 1.97.1
49
+ * @version 1.99.1
50
50
  *
51
51
  * @constructor
52
52
  * @public
@@ -136,5 +136,8 @@ sap.ui.define([
136
136
  }
137
137
  });
138
138
 
139
+ /* CUSTOM CODE START */
140
+ /* CUSTOM CODE END */
141
+
139
142
  return BusyIndicator;
140
143
  });
@@ -46,7 +46,7 @@ sap.ui.define([
46
46
  * </ul>
47
47
  *
48
48
  * @author SAP SE
49
- * @version 1.97.1
49
+ * @version 1.99.1
50
50
  *
51
51
  * @constructor
52
52
  * @public
@@ -65,6 +65,36 @@ sap.ui.define([
65
65
  ],
66
66
  properties: {
67
67
 
68
+ /**
69
+ * An object of strings that defines several additional accessibility attribute values for customization depending on the use case.
70
+ *
71
+ * It supports the following fields:
72
+ *
73
+ *
74
+ * <ul>
75
+ * <li><code>expanded</code>: Indicates whether the button, or another grouping element it controls, is currently expanded or collapsed. Accepts the following string values:
76
+ * <ul>
77
+ * <li><code>true</code></li>
78
+ * <li><code>false</code></li>
79
+ * <ul>
80
+ * </li>
81
+ * <li><code>hasPopup</code>: Indicates the availability and type of interactive popup element, such as menu or dialog, that can be triggered by the button. Accepts the following string values:
82
+ * <ul>
83
+ * <li><code>Dialog</code></li>
84
+ * <li><code>Grid</code></li>
85
+ * <li><code>ListBox</code></li>
86
+ * <li><code>Menu</code></li>
87
+ * <li><code>Tree</code></li>
88
+ * </ul>
89
+ * </li>
90
+ * <li><code>controls</code>: Identifies the element (or elements) whose contents or presence are controlled by the button element. Accepts a string value.</li>
91
+ * </ul>
92
+ */
93
+ accessibilityAttributes: {
94
+ type: "object",
95
+ defaultValue: {}
96
+ },
97
+
68
98
  /**
69
99
  * Sets the accessible aria name of the component.
70
100
  */
@@ -161,6 +191,21 @@ sap.ui.define([
161
191
  mapping: "style"
162
192
  }
163
193
  },
194
+ associations: {
195
+
196
+ /**
197
+ * Receives id(or many ids) of the controls that label this control.
198
+ */
199
+ ariaLabelledBy: {
200
+ type: "sap.ui.core.Control",
201
+ multiple: true,
202
+ mapping: {
203
+ type: "property",
204
+ to: "accessibleNameRef",
205
+ formatter: "_getAriaLabelledByForRendering"
206
+ }
207
+ }
208
+ },
164
209
  events: {
165
210
 
166
211
  /**
@@ -175,5 +220,8 @@ sap.ui.define([
175
220
  }
176
221
  });
177
222
 
223
+ /* CUSTOM CODE START */
224
+ /* CUSTOM CODE END */
225
+
178
226
  return Button;
179
227
  });
@@ -84,6 +84,7 @@ sap.ui.define([
84
84
  * </ul> <br>
85
85
  *
86
86
  *
87
+ *
87
88
  * <h3>Calendar types</h3> The component supports several calendar types - Gregorian, Buddhist, Islamic, Japanese and Persian. By default the Gregorian Calendar is used. In order to use the Buddhist, Islamic, Japanese or Persian calendar, you need to set the <code>primaryCalendarType</code> property and import one or more of the following modules: <br>
88
89
  * <br>
89
90
  *
@@ -93,7 +94,7 @@ sap.ui.define([
93
94
  * <code> &lt;script data-id="sap-ui-config" type="application/json"&gt; { "calendarType": "Japanese" } &lt;/script&gt; </code>
94
95
  *
95
96
  * @author SAP SE
96
- * @version 1.97.1
97
+ * @version 1.99.1
97
98
  *
98
99
  * @constructor
99
100
  * @public
@@ -211,5 +212,8 @@ sap.ui.define([
211
212
  }
212
213
  });
213
214
 
215
+ /* CUSTOM CODE START */
216
+ /* CUSTOM CODE END */
217
+
214
218
  return Calendar;
215
219
  });
@@ -26,7 +26,7 @@ sap.ui.define([
26
26
  * The <code>sap.ui.webc.main.CalendarDate</code> component defines a calendar date to be used inside <code>sap.ui.webc.main.Calendar</code>
27
27
  *
28
28
  * @author SAP SE
29
- * @version 1.97.1
29
+ * @version 1.99.1
30
30
  *
31
31
  * @constructor
32
32
  * @public
@@ -55,5 +55,8 @@ sap.ui.define([
55
55
  }
56
56
  });
57
57
 
58
+ /* CUSTOM CODE START */
59
+ /* CUSTOM CODE END */
60
+
58
61
  return CalendarDate;
59
62
  });
@@ -32,7 +32,7 @@ sap.ui.define([
32
32
  * <ui5-link target="_blank" href="https://developer.mozilla.org/en-US/docs/Web/CSS/::part">CSS Shadow Parts</ui5-link> allow developers to style elements inside the Shadow DOM.
33
33
  *
34
34
  * @author SAP SE
35
- * @version 1.97.1
35
+ * @version 1.99.1
36
36
  *
37
37
  * @constructor
38
38
  * @public
@@ -48,21 +48,13 @@ sap.ui.define([
48
48
  properties: {
49
49
 
50
50
  /**
51
- * Defines the accessible name of the component, which is used as the name of the card region and should be unique per card. <b>Note:</b> <code>accessibleName</code> should be always set, unless <code>accessibleNameRef</code> is set.
51
+ * Defines the accessible name of the component, which is used as the name of the card region and should be unique per card. <b>Note:</b> <code>accessibleName</code> should be always set, unless <code>ariaLabelledBy</code> is set.
52
52
  */
53
53
  accessibleName: {
54
54
  type: "string",
55
55
  defaultValue: ""
56
56
  },
57
57
 
58
- /**
59
- * Defines the IDs of the elements that label the component.
60
- */
61
- accessibleNameRef: {
62
- type: "string",
63
- defaultValue: ""
64
- },
65
-
66
58
  /**
67
59
  * Defines the height of the control
68
60
  */
@@ -102,9 +94,27 @@ sap.ui.define([
102
94
  multiple: true,
103
95
  slot: "header"
104
96
  }
97
+ },
98
+ associations: {
99
+
100
+ /**
101
+ * Receives id(or many ids) of the controls that label this control.
102
+ */
103
+ ariaLabelledBy: {
104
+ type: "sap.ui.core.Control",
105
+ multiple: true,
106
+ mapping: {
107
+ type: "property",
108
+ to: "accessibleNameRef",
109
+ formatter: "_getAriaLabelledByForRendering"
110
+ }
111
+ }
105
112
  }
106
113
  }
107
114
  });
108
115
 
116
+ /* CUSTOM CODE START */
117
+ /* CUSTOM CODE END */
118
+
109
119
  return Card;
110
120
  });
@@ -38,7 +38,7 @@ sap.ui.define([
38
38
  * </ul>
39
39
  *
40
40
  * @author SAP SE
41
- * @version 1.97.1
41
+ * @version 1.99.1
42
42
  *
43
43
  * @constructor
44
44
  * @public
@@ -123,5 +123,8 @@ sap.ui.define([
123
123
  }
124
124
  });
125
125
 
126
+ /* CUSTOM CODE START */
127
+ /* CUSTOM CODE END */
128
+
126
129
  return CardHeader;
127
- });
130
+ });
@@ -48,7 +48,10 @@ sap.ui.define([
48
48
  * <li>The items you want to display are uniform and very similar.</li>
49
49
  * </ul>
50
50
  *
51
- * <h3>Keyboard Handling</h3> When the <code>sap.ui.webc.main.Carousel</code> is focused the user can navigate between the items with the following keyboard shortcuts: <br>
51
+ * <h3>Keyboard Handling</h3>
52
+ *
53
+ * <h4>Basic Navigation</h4> When the <code>sap.ui.webc.main.Carousel</code> is focused the user can navigate between the items with the following keyboard shortcuts: <br>
54
+ *
52
55
  *
53
56
  *
54
57
  *
@@ -58,7 +61,7 @@ sap.ui.define([
58
61
  * </ul>
59
62
  *
60
63
  * @author SAP SE
61
- * @version 1.97.1
64
+ * @version 1.99.1
62
65
  *
63
66
  * @constructor
64
67
  * @public
@@ -178,5 +181,8 @@ sap.ui.define([
178
181
  * @function
179
182
  */
180
183
 
184
+ /* CUSTOM CODE START */
185
+ /* CUSTOM CODE END */
186
+
181
187
  return Carousel;
182
188
  });