@ui5/webcomponents 0.0.0-2c7615fe9 → 0.0.0-3236d56be

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 (1298) hide show
  1. package/CHANGELOG.md +537 -0
  2. package/README.md +150 -50
  3. package/customI18n.js +50 -0
  4. package/dist/Assets-static.js +1 -1
  5. package/dist/Assets.js +1 -1
  6. package/dist/Avatar.js +13 -16
  7. package/dist/AvatarGroup.js +11 -13
  8. package/dist/Badge.js +3 -9
  9. package/dist/Breadcrumbs.js +91 -19
  10. package/dist/BreadcrumbsItem.js +4 -10
  11. package/dist/BusyIndicator.js +6 -9
  12. package/dist/Button.js +88 -47
  13. package/dist/Calendar.js +97 -5
  14. package/dist/CalendarHeader.js +25 -63
  15. package/dist/Card.js +34 -11
  16. package/dist/CardHeader.js +28 -23
  17. package/dist/Carousel.js +18 -12
  18. package/dist/CheckBox.js +93 -9
  19. package/dist/ColorPalette.js +18 -13
  20. package/dist/ColorPaletteItem.js +13 -6
  21. package/dist/ColorPalettePopover.js +48 -12
  22. package/dist/ColorPicker.js +70 -17
  23. package/dist/ComboBox.js +298 -80
  24. package/dist/DateComponentBase.js +10 -13
  25. package/dist/DatePicker.js +35 -19
  26. package/dist/DateRangePicker.js +30 -2
  27. package/dist/DateTimePicker.js +10 -9
  28. package/dist/DayPicker.js +15 -4
  29. package/dist/Dialog.js +49 -28
  30. package/dist/DurationPicker.js +2 -2
  31. package/dist/FileUploader.js +35 -21
  32. package/dist/GroupHeaderListItem.js +7 -11
  33. package/dist/Icon.js +34 -29
  34. package/dist/Input.js +365 -93
  35. package/dist/Interfaces.js +11 -1
  36. package/dist/Label.js +8 -2
  37. package/dist/Link.js +50 -22
  38. package/dist/List.js +129 -42
  39. package/dist/ListItem.js +51 -17
  40. package/dist/ListItemBase.js +4 -2
  41. package/dist/Menu.js +500 -0
  42. package/dist/MenuItem.js +162 -0
  43. package/dist/MessageStrip.js +48 -19
  44. package/dist/MultiComboBox.js +659 -91
  45. package/dist/MultiComboBoxItem.js +4 -10
  46. package/dist/MultiInput.js +75 -17
  47. package/dist/Option.js +19 -4
  48. package/dist/Panel.js +24 -17
  49. package/dist/Popover.js +144 -77
  50. package/dist/Popup.js +84 -43
  51. package/dist/ProgressIndicator.js +26 -10
  52. package/dist/RadioButton.js +67 -11
  53. package/dist/RangeSlider.js +58 -22
  54. package/dist/RatingIndicator.js +46 -17
  55. package/dist/ResponsivePopover.js +23 -15
  56. package/dist/SegmentedButton.js +20 -7
  57. package/dist/SegmentedButtonItem.js +8 -3
  58. package/dist/Select.js +103 -61
  59. package/dist/Slider.js +40 -24
  60. package/dist/SliderBase.js +23 -72
  61. package/dist/SplitButton.js +438 -0
  62. package/dist/StepInput.js +16 -14
  63. package/dist/SuggestionItem.js +2 -2
  64. package/dist/Switch.js +49 -15
  65. package/dist/Tab.js +139 -25
  66. package/dist/TabContainer.js +701 -138
  67. package/dist/TabSeparator.js +42 -3
  68. package/dist/Table.js +464 -17
  69. package/dist/TableColumn.js +0 -7
  70. package/dist/TableGroupRow.js +10 -4
  71. package/dist/TableRow.js +57 -17
  72. package/dist/TextArea.js +49 -26
  73. package/dist/TimePicker.js +3 -5
  74. package/dist/TimePickerBase.js +23 -9
  75. package/dist/TimeSelection.js +16 -10
  76. package/dist/Toast.js +11 -0
  77. package/dist/ToggleButton.js +5 -0
  78. package/dist/Token.js +27 -12
  79. package/dist/Tokenizer.js +247 -27
  80. package/dist/Tree.js +43 -1
  81. package/dist/TreeItem.js +23 -2
  82. package/dist/TreeListItem.js +26 -22
  83. package/dist/WheelSlider.js +16 -9
  84. package/dist/YearPicker.js +1 -0
  85. package/dist/api.json +751 -169
  86. package/dist/css/themes/Avatar.css +1 -0
  87. package/dist/css/themes/AvatarGroup.css +1 -0
  88. package/dist/css/themes/Badge.css +1 -0
  89. package/dist/css/themes/Breadcrumbs.css +1 -0
  90. package/dist/css/themes/BreadcrumbsPopover.css +1 -0
  91. package/dist/css/themes/BrowserScrollbar.css +1 -0
  92. package/dist/css/themes/BusyIndicator.css +1 -0
  93. package/dist/css/themes/Button.css +1 -0
  94. package/dist/css/themes/Button.ie11.css +1 -0
  95. package/dist/css/themes/Calendar.css +1 -0
  96. package/dist/css/themes/CalendarHeader.css +1 -0
  97. package/dist/css/themes/Card.css +1 -0
  98. package/dist/css/themes/CardHeader.css +1 -0
  99. package/dist/css/themes/Carousel.css +1 -0
  100. package/dist/css/themes/CheckBox.css +1 -0
  101. package/dist/css/themes/ColorPalette.css +1 -0
  102. package/dist/css/themes/ColorPaletteItem.css +1 -0
  103. package/dist/css/themes/ColorPalettePopover.css +1 -0
  104. package/dist/css/themes/ColorPaletteStaticArea.css +1 -0
  105. package/dist/css/themes/ColorPicker.css +1 -0
  106. package/dist/css/themes/ComboBox.css +1 -0
  107. package/dist/css/themes/ComboBoxPopover.css +1 -0
  108. package/dist/css/themes/CustomListItem.css +1 -0
  109. package/dist/css/themes/DatePicker.css +1 -0
  110. package/dist/css/themes/DatePickerPopover.css +1 -0
  111. package/dist/css/themes/DateRangePicker.css +1 -0
  112. package/dist/css/themes/DateTimePicker.css +1 -0
  113. package/dist/css/themes/DateTimePickerPopover.css +1 -0
  114. package/dist/css/themes/DayPicker.css +1 -0
  115. package/dist/css/themes/Dialog.css +1 -0
  116. package/dist/css/themes/FileUploader.css +1 -0
  117. package/dist/css/themes/GroupHeaderListItem.css +1 -0
  118. package/dist/css/themes/GrowingButton.css +1 -0
  119. package/dist/css/themes/Icon.css +1 -0
  120. package/dist/css/themes/Input.css +1 -0
  121. package/dist/css/themes/InputIcon.css +1 -0
  122. package/dist/css/themes/InvisibleTextStyles.css +1 -0
  123. package/dist/css/themes/Label.css +1 -0
  124. package/dist/css/themes/Link.css +1 -0
  125. package/dist/css/themes/List.css +1 -0
  126. package/dist/css/themes/ListItem.css +1 -0
  127. package/dist/css/themes/ListItemBase.css +1 -0
  128. package/dist/css/themes/Menu.css +1 -0
  129. package/dist/css/themes/MessageStrip.css +1 -0
  130. package/dist/css/themes/MonthPicker.css +1 -0
  131. package/dist/css/themes/MultiComboBox.css +1 -0
  132. package/dist/css/themes/MultiInput.css +1 -0
  133. package/dist/css/themes/Panel.css +1 -0
  134. package/dist/css/themes/Popover.css +1 -0
  135. package/dist/css/themes/Popup.css +1 -0
  136. package/dist/css/themes/PopupGlobal.css +1 -0
  137. package/dist/css/themes/PopupStaticAreaStyles.css +1 -0
  138. package/dist/css/themes/PopupsCommon.css +1 -0
  139. package/dist/css/themes/ProgressIndicator.css +1 -0
  140. package/dist/css/themes/RadioButton.css +1 -0
  141. package/dist/css/themes/RangeSlider.css +1 -0
  142. package/dist/css/themes/RatingIndicator.css +1 -0
  143. package/dist/css/themes/ResponsivePopover.css +1 -0
  144. package/dist/css/themes/ResponsivePopoverCommon.css +1 -0
  145. package/dist/css/themes/SegmentedButton.css +1 -0
  146. package/dist/css/themes/Select.css +1 -0
  147. package/dist/css/themes/SelectPopover.css +1 -0
  148. package/dist/css/themes/SliderBase.css +1 -0
  149. package/dist/css/themes/SplitButton.css +1 -0
  150. package/dist/css/themes/StepInput.css +1 -0
  151. package/dist/css/themes/Suggestions.css +1 -0
  152. package/dist/css/themes/Switch.css +1 -0
  153. package/dist/css/themes/Tab.css +1 -0
  154. package/dist/css/themes/TabContainer.css +1 -0
  155. package/dist/css/themes/TabInOverflow.css +1 -0
  156. package/dist/css/themes/TabInStrip.css +1 -0
  157. package/dist/css/themes/TabSemanticIcon.css +1 -0
  158. package/dist/css/themes/TabSeparatorInOverflow.css +1 -0
  159. package/dist/css/themes/TabSeparatorInStrip.css +1 -0
  160. package/dist/css/themes/Table.css +1 -0
  161. package/dist/css/themes/TableCell.css +1 -0
  162. package/dist/css/themes/TableColumn.css +1 -0
  163. package/dist/css/themes/TableGroupRow.css +1 -0
  164. package/dist/css/themes/TableRow.css +1 -0
  165. package/dist/css/themes/TapHighlightColor.css +1 -0
  166. package/dist/css/themes/TextArea.css +1 -0
  167. package/dist/css/themes/TimePicker.css +1 -0
  168. package/dist/css/themes/TimePickerPopover.css +1 -0
  169. package/dist/css/themes/TimeSelection.css +1 -0
  170. package/dist/css/themes/Title.css +1 -0
  171. package/dist/css/themes/Toast.css +1 -0
  172. package/dist/css/themes/ToggleButton.css +1 -0
  173. package/dist/css/themes/ToggleButton.ie11.css +1 -0
  174. package/dist/css/themes/Token.css +1 -0
  175. package/dist/css/themes/Tokenizer.css +1 -0
  176. package/dist/css/themes/TokenizerPopover.css +1 -0
  177. package/dist/css/themes/Tree.css +1 -0
  178. package/dist/css/themes/TreeListItem.css +1 -0
  179. package/dist/css/themes/ValueStateMessage.css +1 -0
  180. package/dist/css/themes/WheelSlider.css +1 -0
  181. package/dist/css/themes/YearPicker.css +1 -0
  182. package/dist/css/themes/sap_belize/parameters-bundle.css +1 -0
  183. package/dist/css/themes/sap_belize_hcb/parameters-bundle.css +1 -0
  184. package/dist/css/themes/sap_belize_hcw/parameters-bundle.css +1 -0
  185. package/dist/css/themes/sap_fiori_3/parameters-bundle.css +1 -0
  186. package/dist/css/themes/sap_fiori_3_dark/parameters-bundle.css +1 -0
  187. package/dist/css/themes/sap_fiori_3_hcb/parameters-bundle.css +1 -0
  188. package/dist/css/themes/sap_fiori_3_hcw/parameters-bundle.css +1 -0
  189. package/dist/css/themes/sap_horizon/parameters-bundle.css +1 -0
  190. package/dist/css/themes/sap_horizon_dark/parameters-bundle.css +1 -0
  191. package/dist/css/themes/sap_horizon_exp/parameters-bundle.css +1 -0
  192. package/dist/css/themes/sap_horizon_hcb/parameters-bundle.css +1 -0
  193. package/dist/css/themes/sap_horizon_hcw/parameters-bundle.css +1 -0
  194. package/dist/features/ColorPaletteMoreColors.js +7 -7
  195. package/dist/features/InputElementsFormSupport.js +8 -5
  196. package/dist/features/InputSuggestions.js +204 -49
  197. package/dist/generated/assets/i18n/messagebundle_ar.json +1 -1
  198. package/dist/generated/assets/i18n/messagebundle_bg.json +1 -1
  199. package/dist/generated/assets/i18n/messagebundle_ca.json +1 -1
  200. package/dist/generated/assets/i18n/messagebundle_cs.json +1 -1
  201. package/dist/generated/assets/i18n/messagebundle_cy.json +1 -1
  202. package/dist/generated/assets/i18n/messagebundle_da.json +1 -1
  203. package/dist/generated/assets/i18n/messagebundle_de.json +1 -1
  204. package/dist/generated/assets/i18n/messagebundle_el.json +1 -1
  205. package/dist/generated/assets/i18n/messagebundle_en.json +1 -1
  206. package/dist/generated/assets/i18n/messagebundle_en_GB.json +1 -1
  207. package/dist/generated/assets/i18n/messagebundle_en_US_sappsd.json +1 -1
  208. package/dist/generated/assets/i18n/messagebundle_en_US_saprigi.json +1 -1
  209. package/dist/generated/assets/i18n/messagebundle_en_US_saptrc.json +1 -1
  210. package/dist/generated/assets/i18n/messagebundle_es.json +1 -1
  211. package/dist/generated/assets/i18n/messagebundle_es_MX.json +1 -1
  212. package/dist/generated/assets/i18n/messagebundle_et.json +1 -1
  213. package/dist/generated/assets/i18n/messagebundle_fi.json +1 -1
  214. package/dist/generated/assets/i18n/messagebundle_fr.json +1 -1
  215. package/dist/generated/assets/i18n/messagebundle_fr_CA.json +1 -1
  216. package/dist/generated/assets/i18n/messagebundle_hi.json +1 -1
  217. package/dist/generated/assets/i18n/messagebundle_hr.json +1 -1
  218. package/dist/generated/assets/i18n/messagebundle_hu.json +1 -1
  219. package/dist/generated/assets/i18n/messagebundle_it.json +1 -1
  220. package/dist/generated/assets/i18n/messagebundle_iw.json +1 -1
  221. package/dist/generated/assets/i18n/messagebundle_ja.json +1 -1
  222. package/dist/generated/assets/i18n/messagebundle_kk.json +1 -1
  223. package/dist/generated/assets/i18n/messagebundle_ko.json +1 -1
  224. package/dist/generated/assets/i18n/messagebundle_lt.json +1 -1
  225. package/dist/generated/assets/i18n/messagebundle_lv.json +1 -1
  226. package/dist/generated/assets/i18n/messagebundle_ms.json +1 -1
  227. package/dist/generated/assets/i18n/messagebundle_nl.json +1 -1
  228. package/dist/generated/assets/i18n/messagebundle_no.json +1 -1
  229. package/dist/generated/assets/i18n/messagebundle_pl.json +1 -1
  230. package/dist/generated/assets/i18n/messagebundle_pt.json +1 -1
  231. package/dist/generated/assets/i18n/messagebundle_pt_PT.json +1 -1
  232. package/dist/generated/assets/i18n/messagebundle_ro.json +1 -1
  233. package/dist/generated/assets/i18n/messagebundle_ru.json +1 -1
  234. package/dist/generated/assets/i18n/messagebundle_sh.json +1 -1
  235. package/dist/generated/assets/i18n/messagebundle_sk.json +1 -1
  236. package/dist/generated/assets/i18n/messagebundle_sl.json +1 -1
  237. package/dist/generated/assets/i18n/messagebundle_sv.json +1 -1
  238. package/dist/generated/assets/i18n/messagebundle_th.json +1 -1
  239. package/dist/generated/assets/i18n/messagebundle_tr.json +1 -1
  240. package/dist/generated/assets/i18n/messagebundle_uk.json +1 -1
  241. package/dist/generated/assets/i18n/messagebundle_vi.json +1 -1
  242. package/dist/generated/assets/i18n/messagebundle_zh_CN.json +1 -1
  243. package/dist/generated/assets/i18n/messagebundle_zh_TW.json +1 -1
  244. package/dist/generated/assets/themes/sap_belize/parameters-bundle.css.json +1 -1
  245. package/dist/generated/assets/themes/sap_belize_hcb/parameters-bundle.css.json +1 -1
  246. package/dist/generated/assets/themes/sap_belize_hcw/parameters-bundle.css.json +1 -1
  247. package/dist/generated/assets/themes/sap_fiori_3/parameters-bundle.css.json +1 -1
  248. package/dist/generated/assets/themes/sap_fiori_3_dark/parameters-bundle.css.json +1 -1
  249. package/dist/generated/assets/themes/sap_fiori_3_hcb/parameters-bundle.css.json +1 -1
  250. package/dist/generated/assets/themes/sap_fiori_3_hcw/parameters-bundle.css.json +1 -1
  251. package/dist/generated/assets/themes/sap_horizon/parameters-bundle.css.json +1 -0
  252. package/dist/generated/assets/themes/sap_horizon_dark/parameters-bundle.css.json +1 -0
  253. package/dist/generated/assets/themes/sap_horizon_exp/parameters-bundle.css.json +1 -0
  254. package/dist/generated/assets/themes/sap_horizon_hcb/parameters-bundle.css.json +1 -0
  255. package/dist/generated/assets/themes/sap_horizon_hcw/parameters-bundle.css.json +1 -0
  256. package/dist/generated/i18n/i18n-defaults.js +2 -2
  257. package/dist/generated/json-imports/Themes-static.js +12 -2
  258. package/dist/generated/json-imports/Themes.js +6 -1
  259. package/dist/generated/templates/AvatarGroupTemplate.lit.js +1 -1
  260. package/dist/generated/templates/AvatarTemplate.lit.js +1 -1
  261. package/dist/generated/templates/BadgeTemplate.lit.js +1 -1
  262. package/dist/generated/templates/BreadcrumbsPopoverTemplate.lit.js +2 -2
  263. package/dist/generated/templates/BreadcrumbsTemplate.lit.js +3 -3
  264. package/dist/generated/templates/BusyIndicatorTemplate.lit.js +3 -3
  265. package/dist/generated/templates/ButtonTemplate.lit.js +2 -2
  266. package/dist/generated/templates/CalendarHeaderTemplate.lit.js +1 -1
  267. package/dist/generated/templates/CalendarTemplate.lit.js +1 -1
  268. package/dist/generated/templates/CardHeaderTemplate.lit.js +4 -4
  269. package/dist/generated/templates/CardTemplate.lit.js +1 -1
  270. package/dist/generated/templates/CarouselTemplate.lit.js +5 -5
  271. package/dist/generated/templates/CheckBoxTemplate.lit.js +3 -3
  272. package/dist/generated/templates/ColorPaletteDialogTemplate.lit.js +1 -1
  273. package/dist/generated/templates/ColorPaletteItemTemplate.lit.js +1 -1
  274. package/dist/generated/templates/ColorPalettePopoverTemplate.lit.js +1 -1
  275. package/dist/generated/templates/ColorPaletteTemplate.lit.js +3 -3
  276. package/dist/generated/templates/ColorPickerTemplate.lit.js +1 -1
  277. package/dist/generated/templates/ComboBoxPopoverTemplate.lit.js +6 -6
  278. package/dist/generated/templates/ComboBoxTemplate.lit.js +2 -2
  279. package/dist/generated/templates/CustomListItemTemplate.lit.js +8 -8
  280. package/dist/generated/templates/DatePickerPopoverTemplate.lit.js +3 -3
  281. package/dist/generated/templates/DatePickerTemplate.lit.js +2 -2
  282. package/dist/generated/templates/DateTimePickerPopoverTemplate.lit.js +4 -4
  283. package/dist/generated/templates/DayPickerTemplate.lit.js +2 -2
  284. package/dist/generated/templates/DialogTemplate.lit.js +4 -4
  285. package/dist/generated/templates/FileUploaderPopoverTemplate.lit.js +5 -4
  286. package/dist/generated/templates/FileUploaderTemplate.lit.js +2 -2
  287. package/dist/generated/templates/GroupHeaderListItemTemplate.lit.js +1 -1
  288. package/dist/generated/templates/InputPopoverTemplate.lit.js +8 -8
  289. package/dist/generated/templates/InputTemplate.lit.js +6 -5
  290. package/dist/generated/templates/LabelTemplate.lit.js +1 -1
  291. package/dist/generated/templates/LinkTemplate.lit.js +1 -1
  292. package/dist/generated/templates/ListItemTemplate.lit.js +8 -8
  293. package/dist/generated/templates/ListTemplate.lit.js +4 -4
  294. package/dist/generated/templates/MenuTemplate.lit.js +15 -0
  295. package/dist/generated/templates/MessageStripTemplate.lit.js +4 -4
  296. package/dist/generated/templates/MultiComboBoxPopoverTemplate.lit.js +13 -10
  297. package/dist/generated/templates/MultiComboBoxTemplate.lit.js +3 -3
  298. package/dist/generated/templates/MultiInputTemplate.lit.js +7 -6
  299. package/dist/generated/templates/PanelTemplate.lit.js +3 -3
  300. package/dist/generated/templates/PopoverTemplate.lit.js +3 -3
  301. package/dist/generated/templates/PopupBlockLayerTemplate.lit.js +1 -1
  302. package/dist/generated/templates/PopupTemplate.lit.js +1 -1
  303. package/dist/generated/templates/ProgressIndicatorTemplate.lit.js +10 -6
  304. package/dist/generated/templates/RadioButtonTemplate.lit.js +3 -3
  305. package/dist/generated/templates/RangeSliderTemplate.lit.js +9 -6
  306. package/dist/generated/templates/RatingIndicatorTemplate.lit.js +4 -2
  307. package/dist/generated/templates/ResponsivePopoverTemplate.lit.js +7 -7
  308. package/dist/generated/templates/SegmentedButtonItemTemplate.lit.js +2 -2
  309. package/dist/generated/templates/SegmentedButtonTemplate.lit.js +1 -1
  310. package/dist/generated/templates/SelectPopoverTemplate.lit.js +5 -5
  311. package/dist/generated/templates/SelectTemplate.lit.js +2 -2
  312. package/dist/generated/templates/SliderBaseTemplate.lit.js +7 -4
  313. package/dist/generated/templates/SliderTemplate.lit.js +8 -5
  314. package/dist/generated/templates/SplitButtonTemplate.lit.js +7 -0
  315. package/dist/generated/templates/StandardListItemTemplate.lit.js +11 -11
  316. package/dist/generated/templates/StepInputTemplate.lit.js +4 -2
  317. package/dist/generated/templates/SuggestionListItemTemplate.lit.js +11 -11
  318. package/dist/generated/templates/SwitchTemplate.lit.js +5 -3
  319. package/dist/generated/templates/TabContainerPopoverTemplate.lit.js +2 -3
  320. package/dist/generated/templates/TabContainerTemplate.lit.js +9 -12
  321. package/dist/generated/templates/TabInOverflowTemplate.lit.js +5 -3
  322. package/dist/generated/templates/TabInStripTemplate.lit.js +6 -5
  323. package/dist/generated/templates/TabSeparatorInOverflowTemplate.lit.js +7 -0
  324. package/dist/generated/templates/TabSeparatorInStripTemplate.lit.js +7 -0
  325. package/dist/generated/templates/TabTemplate.lit.js +2 -1
  326. package/dist/generated/templates/TableColumnTemplate.lit.js +1 -1
  327. package/dist/generated/templates/TableGroupRowTemplate.lit.js +1 -1
  328. package/dist/generated/templates/TableRowTemplate.lit.js +2 -2
  329. package/dist/generated/templates/TableTemplate.lit.js +4 -4
  330. package/dist/generated/templates/TextAreaPopoverTemplate.lit.js +1 -1
  331. package/dist/generated/templates/TextAreaTemplate.lit.js +1 -1
  332. package/dist/generated/templates/TimePickerPopoverTemplate.lit.js +1 -1
  333. package/dist/generated/templates/TimePickerTemplate.lit.js +2 -2
  334. package/dist/generated/templates/TimeSelectionTemplate.lit.js +4 -4
  335. package/dist/generated/templates/ToastTemplate.lit.js +2 -1
  336. package/dist/generated/templates/ToggleButtonTemplate.lit.js +2 -2
  337. package/dist/generated/templates/TokenTemplate.lit.js +2 -2
  338. package/dist/generated/templates/TokenizerPopoverTemplate.lit.js +5 -5
  339. package/dist/generated/templates/TokenizerTemplate.lit.js +2 -2
  340. package/dist/generated/templates/TreeListItemTemplate.lit.js +11 -11
  341. package/dist/generated/templates/TreeTemplate.lit.js +2 -2
  342. package/dist/generated/templates/WheelSliderTemplate.lit.js +3 -3
  343. package/dist/generated/themes/Avatar.css.js +3 -3
  344. package/dist/generated/themes/AvatarGroup.css.js +3 -3
  345. package/dist/generated/themes/Badge.css.js +3 -3
  346. package/dist/generated/themes/Breadcrumbs.css.js +3 -3
  347. package/dist/generated/themes/BreadcrumbsPopover.css.js +3 -3
  348. package/dist/generated/themes/BrowserScrollbar.css.js +3 -3
  349. package/dist/generated/themes/BusyIndicator.css.js +3 -3
  350. package/dist/generated/themes/Button.css.js +3 -3
  351. package/dist/generated/themes/Button.ie11.css.js +3 -3
  352. package/dist/generated/themes/Calendar.css.js +3 -3
  353. package/dist/generated/themes/CalendarHeader.css.js +3 -3
  354. package/dist/generated/themes/Card.css.js +3 -3
  355. package/dist/generated/themes/CardHeader.css.js +3 -3
  356. package/dist/generated/themes/Carousel.css.js +3 -3
  357. package/dist/generated/themes/CheckBox.css.js +3 -3
  358. package/dist/generated/themes/ColorPalette.css.js +3 -3
  359. package/dist/generated/themes/ColorPaletteItem.css.js +3 -3
  360. package/dist/generated/themes/ColorPalettePopover.css.js +3 -3
  361. package/dist/generated/themes/ColorPaletteStaticArea.css.js +3 -3
  362. package/dist/generated/themes/ColorPicker.css.js +3 -3
  363. package/dist/generated/themes/ComboBox.css.js +3 -3
  364. package/dist/generated/themes/ComboBoxPopover.css.js +3 -3
  365. package/dist/generated/themes/CustomListItem.css.js +3 -3
  366. package/dist/generated/themes/DatePicker.css.js +3 -3
  367. package/dist/generated/themes/DatePickerPopover.css.js +3 -3
  368. package/dist/generated/themes/DateRangePicker.css.js +3 -3
  369. package/dist/generated/themes/DateTimePicker.css.js +3 -3
  370. package/dist/generated/themes/DateTimePickerPopover.css.js +3 -3
  371. package/dist/generated/themes/DayPicker.css.js +3 -3
  372. package/dist/generated/themes/Dialog.css.js +3 -3
  373. package/dist/generated/themes/FileUploader.css.js +3 -3
  374. package/dist/generated/themes/GroupHeaderListItem.css.js +3 -3
  375. package/dist/generated/themes/GrowingButton.css.js +3 -3
  376. package/dist/generated/themes/Icon.css.js +3 -3
  377. package/dist/generated/themes/Input.css.js +3 -3
  378. package/dist/generated/themes/InputIcon.css.js +3 -3
  379. package/dist/generated/themes/InvisibleTextStyles.css.js +3 -3
  380. package/dist/generated/themes/Label.css.js +3 -3
  381. package/dist/generated/themes/Link.css.js +3 -3
  382. package/dist/generated/themes/List.css.js +3 -3
  383. package/dist/generated/themes/ListItem.css.js +3 -3
  384. package/dist/generated/themes/ListItemBase.css.js +3 -3
  385. package/dist/generated/themes/Menu.css.js +8 -0
  386. package/dist/generated/themes/MessageStrip.css.js +3 -3
  387. package/dist/generated/themes/MonthPicker.css.js +3 -3
  388. package/dist/generated/themes/MultiComboBox.css.js +3 -3
  389. package/dist/generated/themes/MultiInput.css.js +3 -3
  390. package/dist/generated/themes/Panel.css.js +3 -3
  391. package/dist/generated/themes/Popover.css.js +3 -3
  392. package/dist/generated/themes/Popup.css.js +3 -3
  393. package/dist/generated/themes/PopupGlobal.css.js +8 -0
  394. package/dist/generated/themes/PopupStaticAreaStyles.css.js +3 -3
  395. package/dist/generated/themes/PopupsCommon.css.js +3 -3
  396. package/dist/generated/themes/ProgressIndicator.css.js +3 -3
  397. package/dist/generated/themes/RadioButton.css.js +3 -3
  398. package/dist/generated/themes/RangeSlider.css.js +8 -0
  399. package/dist/generated/themes/RatingIndicator.css.js +3 -3
  400. package/dist/generated/themes/ResponsivePopover.css.js +3 -3
  401. package/dist/generated/themes/ResponsivePopoverCommon.css.js +3 -3
  402. package/dist/generated/themes/SegmentedButton.css.js +3 -3
  403. package/dist/generated/themes/Select.css.js +3 -3
  404. package/dist/generated/themes/SelectPopover.css.js +3 -3
  405. package/dist/generated/themes/SliderBase.css.js +3 -3
  406. package/dist/generated/themes/SplitButton.css.js +8 -0
  407. package/dist/generated/themes/StepInput.css.js +3 -3
  408. package/dist/generated/themes/Suggestions.css.js +8 -0
  409. package/dist/generated/themes/Switch.css.js +3 -3
  410. package/dist/generated/themes/Tab.css.js +3 -3
  411. package/dist/generated/themes/TabContainer.css.js +3 -3
  412. package/dist/generated/themes/TabInOverflow.css.js +3 -3
  413. package/dist/generated/themes/TabInStrip.css.js +3 -3
  414. package/dist/generated/themes/TabSemanticIcon.css.js +8 -0
  415. package/dist/generated/themes/TabSeparatorInOverflow.css.js +8 -0
  416. package/dist/generated/themes/TabSeparatorInStrip.css.js +8 -0
  417. package/dist/generated/themes/Table.css.js +3 -3
  418. package/dist/generated/themes/TableCell.css.js +3 -3
  419. package/dist/generated/themes/TableColumn.css.js +3 -3
  420. package/dist/generated/themes/TableGroupRow.css.js +3 -3
  421. package/dist/generated/themes/TableRow.css.js +3 -3
  422. package/dist/generated/themes/TapHighlightColor.css.js +8 -0
  423. package/dist/generated/themes/TextArea.css.js +3 -3
  424. package/dist/generated/themes/TimePicker.css.js +3 -3
  425. package/dist/generated/themes/TimePickerPopover.css.js +3 -3
  426. package/dist/generated/themes/TimeSelection.css.js +3 -3
  427. package/dist/generated/themes/Title.css.js +3 -3
  428. package/dist/generated/themes/Toast.css.js +3 -3
  429. package/dist/generated/themes/ToggleButton.css.js +3 -3
  430. package/dist/generated/themes/ToggleButton.ie11.css.js +3 -3
  431. package/dist/generated/themes/Token.css.js +3 -3
  432. package/dist/generated/themes/Tokenizer.css.js +3 -3
  433. package/dist/generated/themes/TokenizerPopover.css.js +8 -0
  434. package/dist/generated/themes/Tree.css.js +3 -3
  435. package/dist/generated/themes/TreeListItem.css.js +3 -3
  436. package/dist/generated/themes/ValueStateMessage.css.js +3 -3
  437. package/dist/generated/themes/WheelSlider.css.js +3 -3
  438. package/dist/generated/themes/YearPicker.css.js +3 -3
  439. package/dist/generated/themes/sap_belize/parameters-bundle.css.js +1 -1
  440. package/dist/generated/themes/sap_belize_hcb/parameters-bundle.css.js +1 -1
  441. package/dist/generated/themes/sap_belize_hcw/parameters-bundle.css.js +1 -1
  442. package/dist/generated/themes/sap_fiori_3/parameters-bundle.css.js +1 -1
  443. package/dist/generated/themes/sap_fiori_3_dark/parameters-bundle.css.js +1 -1
  444. package/dist/generated/themes/sap_fiori_3_hcb/parameters-bundle.css.js +1 -1
  445. package/dist/generated/themes/sap_fiori_3_hcw/parameters-bundle.css.js +1 -1
  446. package/dist/generated/themes/sap_horizon/parameters-bundle.css.js +1 -0
  447. package/dist/generated/themes/sap_horizon_dark/parameters-bundle.css.js +1 -0
  448. package/dist/generated/themes/sap_horizon_exp/parameters-bundle.css.js +1 -0
  449. package/dist/generated/themes/sap_horizon_hcb/parameters-bundle.css.js +1 -0
  450. package/dist/generated/themes/sap_horizon_hcw/parameters-bundle.css.js +1 -0
  451. package/dist/i18n/messagebundle.properties +55 -7
  452. package/dist/i18n/messagebundle_ar.properties +41 -1
  453. package/dist/i18n/messagebundle_bg.properties +41 -1
  454. package/dist/i18n/messagebundle_ca.properties +41 -1
  455. package/dist/i18n/messagebundle_cs.properties +41 -1
  456. package/dist/i18n/messagebundle_cy.properties +41 -1
  457. package/dist/i18n/messagebundle_da.properties +41 -1
  458. package/dist/i18n/messagebundle_de.properties +41 -1
  459. package/dist/i18n/messagebundle_el.properties +41 -1
  460. package/dist/i18n/messagebundle_en.properties +41 -1
  461. package/dist/i18n/messagebundle_en_GB.properties +41 -1
  462. package/dist/i18n/messagebundle_en_US_sappsd.properties +37 -1
  463. package/dist/i18n/messagebundle_en_US_saprigi.properties +37 -1
  464. package/dist/i18n/messagebundle_en_US_saptrc.properties +37 -1
  465. package/dist/i18n/messagebundle_es.properties +41 -1
  466. package/dist/i18n/messagebundle_es_MX.properties +42 -2
  467. package/dist/i18n/messagebundle_et.properties +41 -1
  468. package/dist/i18n/messagebundle_fi.properties +42 -2
  469. package/dist/i18n/messagebundle_fr.properties +41 -1
  470. package/dist/i18n/messagebundle_fr_CA.properties +41 -1
  471. package/dist/i18n/messagebundle_hi.properties +41 -1
  472. package/dist/i18n/messagebundle_hr.properties +41 -1
  473. package/dist/i18n/messagebundle_hu.properties +41 -1
  474. package/dist/i18n/messagebundle_id.properties +41 -1
  475. package/dist/i18n/messagebundle_it.properties +41 -1
  476. package/dist/i18n/messagebundle_iw.properties +41 -1
  477. package/dist/i18n/messagebundle_ja.properties +43 -3
  478. package/dist/i18n/messagebundle_kk.properties +41 -1
  479. package/dist/i18n/messagebundle_ko.properties +41 -1
  480. package/dist/i18n/messagebundle_lt.properties +41 -1
  481. package/dist/i18n/messagebundle_lv.properties +41 -1
  482. package/dist/i18n/messagebundle_ms.properties +41 -1
  483. package/dist/i18n/messagebundle_nl.properties +41 -1
  484. package/dist/i18n/messagebundle_no.properties +41 -1
  485. package/dist/i18n/messagebundle_pl.properties +41 -1
  486. package/dist/i18n/messagebundle_pt.properties +41 -1
  487. package/dist/i18n/messagebundle_pt_PT.properties +41 -1
  488. package/dist/i18n/messagebundle_ro.properties +41 -1
  489. package/dist/i18n/messagebundle_ru.properties +41 -1
  490. package/dist/i18n/messagebundle_sh.properties +41 -1
  491. package/dist/i18n/messagebundle_sk.properties +41 -1
  492. package/dist/i18n/messagebundle_sl.properties +41 -1
  493. package/dist/i18n/messagebundle_sv.properties +41 -1
  494. package/dist/i18n/messagebundle_th.properties +40 -0
  495. package/dist/i18n/messagebundle_tr.properties +41 -1
  496. package/dist/i18n/messagebundle_uk.properties +41 -1
  497. package/dist/i18n/messagebundle_vi.properties +41 -1
  498. package/dist/i18n/messagebundle_zh_CN.properties +41 -1
  499. package/dist/i18n/messagebundle_zh_TW.properties +40 -0
  500. package/dist/types/HasPopup.js +62 -0
  501. package/dist/types/ListGrowingMode.js +36 -3
  502. package/dist/types/TableGrowingMode.js +35 -2
  503. package/dist/types/TabsOverflowMode.js +40 -0
  504. package/package.json +8 -9
  505. package/src/Assets-static.js +1 -1
  506. package/src/Assets.js +1 -1
  507. package/src/Avatar.js +13 -16
  508. package/src/AvatarGroup.hbs +1 -1
  509. package/src/AvatarGroup.js +11 -13
  510. package/src/Badge.hbs +1 -1
  511. package/src/Badge.js +3 -9
  512. package/src/Breadcrumbs.hbs +7 -4
  513. package/src/Breadcrumbs.js +91 -19
  514. package/src/BreadcrumbsItem.js +4 -10
  515. package/src/BreadcrumbsPopover.hbs +3 -3
  516. package/src/BusyIndicator.hbs +2 -1
  517. package/src/BusyIndicator.js +6 -9
  518. package/src/Button.hbs +5 -6
  519. package/src/Button.js +88 -47
  520. package/src/Calendar.hbs +4 -1
  521. package/src/Calendar.js +97 -5
  522. package/src/CalendarHeader.hbs +1 -4
  523. package/src/CalendarHeader.js +25 -63
  524. package/src/Card.hbs +1 -3
  525. package/src/Card.js +34 -11
  526. package/src/CardHeader.hbs +19 -8
  527. package/src/CardHeader.js +28 -23
  528. package/src/Carousel.hbs +4 -3
  529. package/src/Carousel.js +18 -12
  530. package/src/CheckBox.hbs +5 -1
  531. package/src/CheckBox.js +93 -9
  532. package/src/ColorPalette.js +18 -13
  533. package/src/ColorPaletteItem.hbs +2 -2
  534. package/src/ColorPaletteItem.js +13 -6
  535. package/src/ColorPalettePopover.hbs +8 -6
  536. package/src/ColorPalettePopover.js +48 -12
  537. package/src/ColorPicker.hbs +4 -2
  538. package/src/ColorPicker.js +70 -17
  539. package/src/ComboBox.hbs +2 -2
  540. package/src/ComboBox.js +298 -80
  541. package/src/ComboBoxPopover.hbs +7 -3
  542. package/src/DateComponentBase.js +10 -13
  543. package/src/DatePicker.hbs +1 -2
  544. package/src/DatePicker.js +35 -19
  545. package/src/DatePickerPopover.hbs +0 -2
  546. package/src/DateRangePicker.js +30 -2
  547. package/src/DateTimePicker.js +10 -9
  548. package/src/DateTimePickerPopover.hbs +4 -2
  549. package/src/DayPicker.hbs +2 -2
  550. package/src/DayPicker.js +15 -4
  551. package/src/Dialog.hbs +4 -4
  552. package/src/Dialog.js +49 -28
  553. package/src/DurationPicker.js +2 -2
  554. package/src/FileUploader.hbs +1 -0
  555. package/src/FileUploader.js +35 -21
  556. package/src/FileUploaderPopover.hbs +3 -1
  557. package/src/GroupHeaderListItem.hbs +4 -4
  558. package/src/GroupHeaderListItem.js +7 -11
  559. package/src/Icon.js +34 -29
  560. package/src/Input.hbs +12 -4
  561. package/src/Input.js +365 -93
  562. package/src/InputPopover.hbs +11 -9
  563. package/src/Interfaces.js +11 -1
  564. package/src/Label.hbs +1 -2
  565. package/src/Label.js +8 -2
  566. package/src/Link.hbs +2 -1
  567. package/src/Link.js +50 -22
  568. package/src/List.hbs +10 -7
  569. package/src/List.js +129 -42
  570. package/src/ListItem.hbs +6 -4
  571. package/src/ListItem.js +51 -17
  572. package/src/ListItemBase.js +4 -2
  573. package/src/Menu.hbs +100 -0
  574. package/src/Menu.js +500 -0
  575. package/src/MenuItem.js +162 -0
  576. package/src/MessageStrip.hbs +5 -6
  577. package/src/MessageStrip.js +48 -19
  578. package/src/MultiComboBox.hbs +4 -4
  579. package/src/MultiComboBox.js +659 -91
  580. package/src/MultiComboBoxItem.js +4 -10
  581. package/src/MultiComboBoxPopover.hbs +37 -22
  582. package/src/MultiInput.hbs +1 -1
  583. package/src/MultiInput.js +75 -17
  584. package/src/Option.js +19 -4
  585. package/src/Panel.hbs +4 -4
  586. package/src/Panel.js +24 -17
  587. package/src/Popover.hbs +2 -2
  588. package/src/Popover.js +144 -77
  589. package/src/Popup.hbs +1 -2
  590. package/src/Popup.js +84 -43
  591. package/src/PopupBlockLayer.hbs +1 -1
  592. package/src/ProgressIndicator.hbs +7 -2
  593. package/src/ProgressIndicator.js +26 -10
  594. package/src/RadioButton.hbs +4 -2
  595. package/src/RadioButton.js +67 -11
  596. package/src/RangeSlider.hbs +8 -2
  597. package/src/RangeSlider.js +58 -22
  598. package/src/RatingIndicator.hbs +4 -0
  599. package/src/RatingIndicator.js +46 -17
  600. package/src/ResponsivePopover.hbs +7 -5
  601. package/src/ResponsivePopover.js +23 -15
  602. package/src/SegmentedButton.hbs +1 -1
  603. package/src/SegmentedButton.js +20 -7
  604. package/src/SegmentedButtonItem.hbs +1 -2
  605. package/src/SegmentedButtonItem.js +8 -3
  606. package/src/Select.hbs +2 -6
  607. package/src/Select.js +103 -61
  608. package/src/SelectPopover.hbs +7 -4
  609. package/src/Slider.hbs +1 -0
  610. package/src/Slider.js +40 -24
  611. package/src/SliderBase.hbs +13 -2
  612. package/src/SliderBase.js +23 -72
  613. package/src/SplitButton.hbs +53 -0
  614. package/src/SplitButton.js +438 -0
  615. package/src/StandardListItem.hbs +2 -2
  616. package/src/StepInput.hbs +8 -4
  617. package/src/StepInput.js +16 -14
  618. package/src/SuggestionItem.js +2 -2
  619. package/src/Switch.hbs +22 -7
  620. package/src/Switch.js +49 -15
  621. package/src/Tab.hbs +5 -1
  622. package/src/Tab.js +139 -25
  623. package/src/TabContainer.hbs +61 -71
  624. package/src/TabContainer.js +701 -138
  625. package/src/TabContainerPopover.hbs +6 -8
  626. package/src/TabInOverflow.hbs +18 -9
  627. package/src/TabInStrip.hbs +26 -15
  628. package/src/TabSeparator.js +42 -3
  629. package/src/TabSeparatorInOverflow.hbs +9 -0
  630. package/src/TabSeparatorInStrip.hbs +6 -0
  631. package/src/Table.hbs +21 -5
  632. package/src/Table.js +464 -17
  633. package/src/TableColumn.hbs +0 -1
  634. package/src/TableColumn.js +0 -7
  635. package/src/TableGroupRow.hbs +1 -1
  636. package/src/TableGroupRow.js +10 -4
  637. package/src/TableRow.hbs +2 -0
  638. package/src/TableRow.js +57 -17
  639. package/src/TextArea.hbs +1 -1
  640. package/src/TextArea.js +49 -26
  641. package/src/TextAreaPopover.hbs +2 -2
  642. package/src/TimePicker.hbs +3 -1
  643. package/src/TimePicker.js +3 -5
  644. package/src/TimePickerBase.js +23 -9
  645. package/src/TimePickerPopover.hbs +1 -1
  646. package/src/TimeSelection.hbs +1 -1
  647. package/src/TimeSelection.js +16 -10
  648. package/src/Toast.hbs +12 -11
  649. package/src/Toast.js +11 -0
  650. package/src/ToggleButton.js +5 -0
  651. package/src/Token.hbs +2 -1
  652. package/src/Token.js +27 -12
  653. package/src/Tokenizer.hbs +4 -6
  654. package/src/Tokenizer.js +247 -27
  655. package/src/TokenizerPopover.hbs +17 -17
  656. package/src/Tree.hbs +4 -0
  657. package/src/Tree.js +43 -1
  658. package/src/TreeItem.js +23 -2
  659. package/src/TreeListItem.hbs +3 -1
  660. package/src/TreeListItem.js +26 -22
  661. package/src/WheelSlider.hbs +2 -2
  662. package/src/WheelSlider.js +16 -9
  663. package/src/YearPicker.js +1 -0
  664. package/src/features/ColorPaletteMoreColors.js +7 -7
  665. package/src/features/InputElementsFormSupport.js +8 -5
  666. package/src/features/InputSuggestions.js +204 -49
  667. package/src/i18n/messagebundle.properties +55 -7
  668. package/src/i18n/messagebundle_ar.properties +41 -1
  669. package/src/i18n/messagebundle_bg.properties +41 -1
  670. package/src/i18n/messagebundle_ca.properties +41 -1
  671. package/src/i18n/messagebundle_cs.properties +41 -1
  672. package/src/i18n/messagebundle_cy.properties +41 -1
  673. package/src/i18n/messagebundle_da.properties +41 -1
  674. package/src/i18n/messagebundle_de.properties +41 -1
  675. package/src/i18n/messagebundle_el.properties +41 -1
  676. package/src/i18n/messagebundle_en.properties +41 -1
  677. package/src/i18n/messagebundle_en_GB.properties +41 -1
  678. package/src/i18n/messagebundle_en_US_sappsd.properties +37 -1
  679. package/src/i18n/messagebundle_en_US_saprigi.properties +37 -1
  680. package/src/i18n/messagebundle_en_US_saptrc.properties +37 -1
  681. package/src/i18n/messagebundle_es.properties +41 -1
  682. package/src/i18n/messagebundle_es_MX.properties +42 -2
  683. package/src/i18n/messagebundle_et.properties +41 -1
  684. package/src/i18n/messagebundle_fi.properties +42 -2
  685. package/src/i18n/messagebundle_fr.properties +41 -1
  686. package/src/i18n/messagebundle_fr_CA.properties +41 -1
  687. package/src/i18n/messagebundle_hi.properties +41 -1
  688. package/src/i18n/messagebundle_hr.properties +41 -1
  689. package/src/i18n/messagebundle_hu.properties +41 -1
  690. package/src/i18n/messagebundle_id.properties +41 -1
  691. package/src/i18n/messagebundle_it.properties +41 -1
  692. package/src/i18n/messagebundle_iw.properties +41 -1
  693. package/src/i18n/messagebundle_ja.properties +43 -3
  694. package/src/i18n/messagebundle_kk.properties +41 -1
  695. package/src/i18n/messagebundle_ko.properties +41 -1
  696. package/src/i18n/messagebundle_lt.properties +41 -1
  697. package/src/i18n/messagebundle_lv.properties +41 -1
  698. package/src/i18n/messagebundle_ms.properties +41 -1
  699. package/src/i18n/messagebundle_nl.properties +41 -1
  700. package/src/i18n/messagebundle_no.properties +41 -1
  701. package/src/i18n/messagebundle_pl.properties +41 -1
  702. package/src/i18n/messagebundle_pt.properties +41 -1
  703. package/src/i18n/messagebundle_pt_PT.properties +41 -1
  704. package/src/i18n/messagebundle_ro.properties +41 -1
  705. package/src/i18n/messagebundle_ru.properties +41 -1
  706. package/src/i18n/messagebundle_sh.properties +41 -1
  707. package/src/i18n/messagebundle_sk.properties +41 -1
  708. package/src/i18n/messagebundle_sl.properties +41 -1
  709. package/src/i18n/messagebundle_sv.properties +41 -1
  710. package/src/i18n/messagebundle_th.properties +40 -0
  711. package/src/i18n/messagebundle_tr.properties +41 -1
  712. package/src/i18n/messagebundle_uk.properties +41 -1
  713. package/src/i18n/messagebundle_vi.properties +41 -1
  714. package/src/i18n/messagebundle_zh_CN.properties +41 -1
  715. package/src/i18n/messagebundle_zh_TW.properties +40 -0
  716. package/src/themes/Avatar.css +213 -0
  717. package/src/themes/AvatarGroup.css +82 -0
  718. package/src/themes/Badge.css +139 -0
  719. package/src/themes/Breadcrumbs.css +104 -0
  720. package/src/themes/BreadcrumbsPopover.css +10 -0
  721. package/src/themes/BrowserScrollbar.css +25 -0
  722. package/src/themes/BusyIndicator.css +143 -0
  723. package/src/themes/Button.css +281 -0
  724. package/src/themes/Button.ie11.css +48 -0
  725. package/src/themes/Calendar.css +23 -0
  726. package/src/themes/CalendarHeader.css +132 -0
  727. package/src/themes/Card.css +45 -0
  728. package/src/themes/CardHeader.css +131 -0
  729. package/src/themes/Carousel.css +144 -0
  730. package/src/themes/CheckBox.css +273 -0
  731. package/src/themes/ColorPalette.css +72 -0
  732. package/src/themes/ColorPaletteItem.css +107 -0
  733. package/src/themes/ColorPalettePopover.css +21 -0
  734. package/src/themes/ColorPaletteStaticArea.css +17 -0
  735. package/src/themes/ColorPicker.css +214 -0
  736. package/src/themes/ComboBox.css +10 -0
  737. package/src/themes/ComboBoxPopover.css +17 -0
  738. package/src/themes/CustomListItem.css +31 -0
  739. package/src/themes/DatePicker.css +46 -0
  740. package/src/themes/DatePickerPopover.css +9 -0
  741. package/src/themes/DateRangePicker.css +16 -0
  742. package/src/themes/DateTimePicker.css +11 -0
  743. package/src/themes/DateTimePickerPopover.css +82 -0
  744. package/src/themes/DayPicker.css +269 -0
  745. package/src/themes/Dialog.css +74 -0
  746. package/src/themes/FileUploader.css +62 -0
  747. package/src/themes/GroupHeaderListItem.css +27 -0
  748. package/src/themes/GrowingButton.css +68 -0
  749. package/src/themes/Icon.css +50 -0
  750. package/src/themes/Input.css +450 -0
  751. package/src/themes/InputIcon.css +41 -0
  752. package/src/themes/InvisibleTextStyles.css +9 -0
  753. package/src/themes/Label.css +79 -0
  754. package/src/themes/Link.css +94 -0
  755. package/src/themes/List.css +117 -0
  756. package/src/themes/ListItem.css +202 -0
  757. package/src/themes/ListItemBase.css +86 -0
  758. package/src/themes/Menu.css +88 -0
  759. package/src/themes/MessageStrip.css +93 -0
  760. package/src/themes/MonthPicker.css +86 -0
  761. package/src/themes/MultiComboBox.css +41 -0
  762. package/src/themes/MultiInput.css +18 -0
  763. package/src/themes/Panel.css +107 -0
  764. package/src/themes/Popover.css +85 -0
  765. package/src/themes/Popup.css +5 -0
  766. package/src/themes/PopupGlobal.css +3 -0
  767. package/src/themes/PopupStaticAreaStyles.css +17 -0
  768. package/src/themes/PopupsCommon.css +128 -0
  769. package/src/themes/ProgressIndicator.css +214 -0
  770. package/src/themes/RadioButton.css +300 -0
  771. package/src/themes/RangeSlider.css +89 -0
  772. package/src/themes/RatingIndicator.css +52 -0
  773. package/src/themes/ResponsivePopover.css +25 -0
  774. package/src/themes/ResponsivePopoverCommon.css +208 -0
  775. package/src/themes/SegmentedButton.css +81 -0
  776. package/src/themes/Select.css +39 -0
  777. package/src/themes/SelectPopover.css +19 -0
  778. package/src/themes/SliderBase.css +267 -0
  779. package/src/themes/SplitButton.css +209 -0
  780. package/src/themes/StepInput.css +271 -0
  781. package/src/themes/Suggestions.css +17 -0
  782. package/src/themes/Switch.css +378 -0
  783. package/src/themes/Tab.css +9 -0
  784. package/src/themes/TabContainer.css +129 -0
  785. package/src/themes/TabInOverflow.css +68 -0
  786. package/src/themes/TabInStrip.css +398 -0
  787. package/src/themes/TabSemanticIcon.css +18 -0
  788. package/src/themes/TabSeparatorInOverflow.css +10 -0
  789. package/src/themes/TabSeparatorInStrip.css +5 -0
  790. package/src/themes/Table.css +96 -0
  791. package/src/themes/TableCell.css +24 -0
  792. package/src/themes/TableColumn.css +23 -0
  793. package/src/themes/TableGroupRow.css +32 -0
  794. package/src/themes/TableRow.css +93 -0
  795. package/src/themes/TapHighlightColor.css +3 -0
  796. package/src/themes/TextArea.css +366 -0
  797. package/src/themes/TimePicker.css +50 -0
  798. package/src/themes/TimePickerPopover.css +15 -0
  799. package/src/themes/TimeSelection.css +27 -0
  800. package/src/themes/Title.css +65 -0
  801. package/src/themes/Toast.css +93 -0
  802. package/src/themes/ToggleButton.css +128 -0
  803. package/src/themes/ToggleButton.ie11.css +48 -0
  804. package/src/themes/Token.css +108 -0
  805. package/src/themes/Tokenizer.css +68 -0
  806. package/src/themes/TokenizerPopover.css +4 -0
  807. package/src/themes/Tree.css +11 -0
  808. package/src/themes/TreeListItem.css +101 -0
  809. package/src/themes/ValueStateMessage.css +83 -0
  810. package/src/themes/WheelSlider.css +203 -0
  811. package/src/themes/YearPicker.css +86 -0
  812. package/src/themes/base/Avatar-parameters.css +57 -0
  813. package/src/themes/base/AvatarGroup-parameter.css +6 -0
  814. package/src/themes/base/Badge-parameters.css +43 -0
  815. package/src/themes/base/BrowserScrollbar-parameters.css +4 -0
  816. package/src/themes/base/BusyIndicator-parameters.css +5 -0
  817. package/src/themes/base/Button-parameters.css +35 -0
  818. package/src/themes/base/CalendarHeader-parameters.css +20 -0
  819. package/src/themes/base/Card-parameters.css +19 -0
  820. package/src/themes/base/Carousel-parameters.css +10 -0
  821. package/src/themes/base/CheckBox-parameters.css +56 -0
  822. package/src/themes/base/ColorPalette-parameters.css +21 -0
  823. package/src/themes/base/ColorPicker-parameters.css +12 -0
  824. package/src/themes/base/DatePicker-parameters.css +6 -0
  825. package/src/themes/base/DayPicker-parameters.css +41 -0
  826. package/src/themes/base/Dialog-parameters.css +10 -0
  827. package/src/themes/base/FileUploader-parameters.css +4 -0
  828. package/src/themes/base/GroupHeaderListItem-parameters.css +3 -0
  829. package/src/themes/base/GrowingButton-parameters.css +6 -0
  830. package/src/themes/base/Input-parameters.css +63 -0
  831. package/src/themes/base/InputIcon-parameters.css +19 -0
  832. package/src/themes/base/Link-parameters.css +14 -0
  833. package/src/themes/base/List-parameters.css +3 -0
  834. package/src/themes/base/ListItemBase-parameters.css +10 -0
  835. package/src/themes/base/Menu-parameters.css +4 -0
  836. package/src/themes/base/MessageStrip-parameters.css +18 -0
  837. package/src/themes/base/MonthPicker-parameters.css +16 -0
  838. package/src/themes/base/MultiComboBox-parameters.css +3 -0
  839. package/src/themes/base/Panel-parameters.css +11 -0
  840. package/src/themes/base/PopupsCommon-parameters.css +11 -0
  841. package/src/themes/base/ProgressIndicator-parameters.css +38 -0
  842. package/src/themes/base/RadioButton-parameters.css +46 -0
  843. package/src/themes/base/RatingIndicator-parameters.css +3 -0
  844. package/src/themes/base/SegmentedButtton-parameters.css +9 -0
  845. package/src/themes/base/Select-parameters.css +9 -0
  846. package/src/themes/base/SelectPopover-parameters.css +4 -0
  847. package/src/themes/base/SliderBase-parameters.css +101 -0
  848. package/src/themes/base/SplitButton-parameters.css +17 -0
  849. package/src/themes/base/StepInput-parameters.css +24 -0
  850. package/src/themes/base/Switch-parameters.css +158 -0
  851. package/src/themes/base/TabContainer-parameters.css +100 -0
  852. package/src/themes/base/Table-parameters.css +8 -0
  853. package/src/themes/base/TableColumn-parameters.css +3 -0
  854. package/src/themes/base/TableGroupRow-parameters.css +4 -0
  855. package/src/themes/base/TableRow-parameters.css +3 -0
  856. package/src/themes/base/TextArea-parameters.css +26 -0
  857. package/src/themes/base/TimePicker-parameters.css +4 -0
  858. package/src/themes/base/TimelineItem-parameters.css +10 -0
  859. package/src/themes/base/Toast-parameters.css +6 -0
  860. package/src/themes/base/ToggleButton-parameters.css +8 -0
  861. package/src/themes/base/Token-parameters.css +24 -0
  862. package/src/themes/base/Tokenizer-parameters.css +3 -0
  863. package/src/themes/base/ValueStateMessage-parameters.css +12 -0
  864. package/src/themes/base/WheelSlider-parameters.css +15 -0
  865. package/src/themes/base/YearPicker-parameters.css +16 -0
  866. package/src/themes/base/rtl-parameters.css +43 -0
  867. package/src/themes/base/sizes-parameters.css +394 -0
  868. package/src/themes/sap_belize/BrowserScrollbar-parameters.css +4 -0
  869. package/src/themes/sap_belize/Card-parameters.css +5 -0
  870. package/src/themes/sap_belize/Carousel-parameters.css +9 -0
  871. package/src/themes/sap_belize/Dialog-parameters.css +5 -0
  872. package/src/themes/sap_belize/Input-parameters.css +21 -0
  873. package/src/themes/sap_belize/InputIcon-parameters.css +5 -0
  874. package/src/themes/sap_belize/Panel-parameters.css +12 -0
  875. package/src/themes/sap_belize/PopupsCommon-parameters.css +5 -0
  876. package/src/themes/sap_belize/ProgressIndicator-parameters.css +8 -0
  877. package/src/themes/sap_belize/SliderBase-parameters.css +25 -0
  878. package/src/themes/sap_belize/SplitButton-parameters.css +6 -0
  879. package/src/themes/sap_belize/TabContainer-parameters.css +6 -0
  880. package/src/themes/sap_belize/Table-parameters.css +7 -0
  881. package/src/themes/sap_belize/TableRow-parameters.css +5 -0
  882. package/src/themes/sap_belize/TimePicker-parameters.css +5 -0
  883. package/src/themes/sap_belize/Token-parameters.css +8 -0
  884. package/src/themes/sap_belize/Tokenizer-parameters.css +5 -0
  885. package/src/themes/sap_belize/WheelSlider-parameters.css +17 -0
  886. package/src/themes/sap_belize/parameters-bundle.css +52 -0
  887. package/src/themes/sap_belize/sizes-parameters.css +15 -0
  888. package/src/themes/sap_belize_hcb/Avatar-parameters.css +18 -0
  889. package/src/themes/sap_belize_hcb/Badge-parameters.css +43 -0
  890. package/src/themes/sap_belize_hcb/BrowserScrollbar-parameters.css +4 -0
  891. package/src/themes/sap_belize_hcb/Button-parameters.css +12 -0
  892. package/src/themes/sap_belize_hcb/CalendarHeader-parameters.css +11 -0
  893. package/src/themes/sap_belize_hcb/Card-parameters.css +7 -0
  894. package/src/themes/sap_belize_hcb/Carousel-parameters.css +9 -0
  895. package/src/themes/sap_belize_hcb/CheckBox-parameters.css +12 -0
  896. package/src/themes/sap_belize_hcb/DatePicker-parameters.css +6 -0
  897. package/src/themes/sap_belize_hcb/DayPicker-parameters.css +13 -0
  898. package/src/themes/sap_belize_hcb/FileUploader-parameters.css +5 -0
  899. package/src/themes/sap_belize_hcb/GrowingButton-parameters.css +8 -0
  900. package/src/themes/sap_belize_hcb/Input-parameters.css +33 -0
  901. package/src/themes/sap_belize_hcb/InputIcon-parameters.css +5 -0
  902. package/src/themes/sap_belize_hcb/Link-parameters.css +8 -0
  903. package/src/themes/sap_belize_hcb/MessageStrip-parameters.css +9 -0
  904. package/src/themes/sap_belize_hcb/MonthPicker-parameters.css +10 -0
  905. package/src/themes/sap_belize_hcb/Panel-parameters.css +13 -0
  906. package/src/themes/sap_belize_hcb/PopupsCommon-parameters.css +5 -0
  907. package/src/themes/sap_belize_hcb/ProgressIndicator-parameters.css +11 -0
  908. package/src/themes/sap_belize_hcb/RadioButton-parameters.css +14 -0
  909. package/src/themes/sap_belize_hcb/Select-parameters.css +10 -0
  910. package/src/themes/sap_belize_hcb/SliderBase-parameters.css +19 -0
  911. package/src/themes/sap_belize_hcb/SplitButton-parameters.css +10 -0
  912. package/src/themes/sap_belize_hcb/Switch-parameters.css +16 -0
  913. package/src/themes/sap_belize_hcb/TabContainer-parameters.css +45 -0
  914. package/src/themes/sap_belize_hcb/Table-parameters.css +7 -0
  915. package/src/themes/sap_belize_hcb/TableRow-parameters.css +6 -0
  916. package/src/themes/sap_belize_hcb/TextArea-parameters.css +9 -0
  917. package/src/themes/sap_belize_hcb/ToggleButton-parameters.css +7 -0
  918. package/src/themes/sap_belize_hcb/Token-parameters.css +10 -0
  919. package/src/themes/sap_belize_hcb/ValueStateMessage-parameters.css +7 -0
  920. package/src/themes/sap_belize_hcb/WheelSlider-parameters.css +17 -0
  921. package/src/themes/sap_belize_hcb/YearPicker-parameters.css +10 -0
  922. package/src/themes/sap_belize_hcb/parameters-bundle.css +51 -0
  923. package/src/themes/sap_belize_hcb/sizes-parameters.css +15 -0
  924. package/src/themes/sap_belize_hcw/Avatar-parameters.css +18 -0
  925. package/src/themes/sap_belize_hcw/Badge-parameters.css +43 -0
  926. package/src/themes/sap_belize_hcw/BrowserScrollbar-parameters.css +4 -0
  927. package/src/themes/sap_belize_hcw/Button-parameters.css +12 -0
  928. package/src/themes/sap_belize_hcw/CalendarHeader-parameters.css +11 -0
  929. package/src/themes/sap_belize_hcw/Card-parameters.css +7 -0
  930. package/src/themes/sap_belize_hcw/Carousel-parameters.css +9 -0
  931. package/src/themes/sap_belize_hcw/CheckBox-parameters.css +12 -0
  932. package/src/themes/sap_belize_hcw/DatePicker-parameters.css +5 -0
  933. package/src/themes/sap_belize_hcw/DayPicker-parameters.css +14 -0
  934. package/src/themes/sap_belize_hcw/FileUploader-parameters.css +5 -0
  935. package/src/themes/sap_belize_hcw/GrowingButton-parameters.css +8 -0
  936. package/src/themes/sap_belize_hcw/Input-parameters.css +33 -0
  937. package/src/themes/sap_belize_hcw/InputIcon-parameters.css +5 -0
  938. package/src/themes/sap_belize_hcw/Link-parameters.css +8 -0
  939. package/src/themes/sap_belize_hcw/MessageStrip-parameters.css +9 -0
  940. package/src/themes/sap_belize_hcw/MonthPicker-parameters.css +10 -0
  941. package/src/themes/sap_belize_hcw/Panel-parameters.css +13 -0
  942. package/src/themes/sap_belize_hcw/PopupsCommon-parameters.css +5 -0
  943. package/src/themes/sap_belize_hcw/ProgressIndicator-parameters.css +11 -0
  944. package/src/themes/sap_belize_hcw/RadioButton-parameters.css +14 -0
  945. package/src/themes/sap_belize_hcw/Select-parameters.css +10 -0
  946. package/src/themes/sap_belize_hcw/SliderBase-parameters.css +19 -0
  947. package/src/themes/sap_belize_hcw/SplitButton-parameters.css +10 -0
  948. package/src/themes/sap_belize_hcw/Switch-parameters.css +16 -0
  949. package/src/themes/sap_belize_hcw/TabContainer-parameters.css +45 -0
  950. package/src/themes/sap_belize_hcw/Table-parameters.css +7 -0
  951. package/src/themes/sap_belize_hcw/TableRow-parameters.css +6 -0
  952. package/src/themes/sap_belize_hcw/TextArea-parameters.css +9 -0
  953. package/src/themes/sap_belize_hcw/ToggleButton-parameters.css +6 -0
  954. package/src/themes/sap_belize_hcw/Token-parameters.css +10 -0
  955. package/src/themes/sap_belize_hcw/ValueStateMessage-parameters.css +7 -0
  956. package/src/themes/sap_belize_hcw/WheelSlider-parameters.css +17 -0
  957. package/src/themes/sap_belize_hcw/YearPicker-parameters.css +10 -0
  958. package/src/themes/sap_belize_hcw/parameters-bundle.css +51 -0
  959. package/src/themes/sap_belize_hcw/sizes-parameters.css +15 -0
  960. package/src/themes/sap_fiori_3/Avatar-parameters.css +9 -0
  961. package/src/themes/sap_fiori_3/Button-parameters.css +15 -0
  962. package/src/themes/sap_fiori_3/CalendarHeader-parameters.css +8 -0
  963. package/src/themes/sap_fiori_3/CheckBox-parameters.css +13 -0
  964. package/src/themes/sap_fiori_3/DayPicker-parameters.css +6 -0
  965. package/src/themes/sap_fiori_3/Input-parameters.css +5 -0
  966. package/src/themes/sap_fiori_3/Link-parameters.css +6 -0
  967. package/src/themes/sap_fiori_3/List-parameters.css +5 -0
  968. package/src/themes/sap_fiori_3/MonthPicker-parameters.css +5 -0
  969. package/src/themes/sap_fiori_3/MultiComboBox-parameters.css +5 -0
  970. package/src/themes/sap_fiori_3/Panel-parameters.css +5 -0
  971. package/src/themes/sap_fiori_3/SliderBase-parameters.css +19 -0
  972. package/src/themes/sap_fiori_3/TabContainer-parameters.css +13 -0
  973. package/src/themes/sap_fiori_3/TimePicker-parameters.css +5 -0
  974. package/src/themes/sap_fiori_3/Token-parameters.css +6 -0
  975. package/src/themes/sap_fiori_3/WheelSlider-parameters.css +16 -0
  976. package/src/themes/sap_fiori_3/YearPicker-parameters.css +5 -0
  977. package/src/themes/sap_fiori_3/parameters-bundle.css +52 -0
  978. package/src/themes/sap_fiori_3_dark/Avatar-parameters.css +9 -0
  979. package/src/themes/sap_fiori_3_dark/Button-parameters.css +15 -0
  980. package/src/themes/sap_fiori_3_dark/CalendarHeader-parameters.css +8 -0
  981. package/src/themes/sap_fiori_3_dark/CheckBox-parameters.css +13 -0
  982. package/src/themes/sap_fiori_3_dark/DayPicker-parameters.css +6 -0
  983. package/src/themes/sap_fiori_3_dark/Input-parameters.css +5 -0
  984. package/src/themes/sap_fiori_3_dark/Link-parameters.css +6 -0
  985. package/src/themes/sap_fiori_3_dark/List-parameters.css +5 -0
  986. package/src/themes/sap_fiori_3_dark/MonthPicker-parameters.css +5 -0
  987. package/src/themes/sap_fiori_3_dark/MultiComboBox-parameters.css +5 -0
  988. package/src/themes/sap_fiori_3_dark/Panel-parameters.css +5 -0
  989. package/src/themes/sap_fiori_3_dark/SliderBase-parameters.css +5 -0
  990. package/src/themes/sap_fiori_3_dark/TabContainer-parameters.css +13 -0
  991. package/src/themes/sap_fiori_3_dark/Token-parameters.css +5 -0
  992. package/src/themes/sap_fiori_3_dark/WheelSlider-parameters.css +15 -0
  993. package/src/themes/sap_fiori_3_dark/YearPicker-parameters.css +5 -0
  994. package/src/themes/sap_fiori_3_dark/parameters-bundle.css +51 -0
  995. package/src/themes/sap_fiori_3_hcb/Avatar-parameters.css +24 -0
  996. package/src/themes/sap_fiori_3_hcb/Badge-parameters.css +43 -0
  997. package/src/themes/sap_fiori_3_hcb/Button-parameters.css +11 -0
  998. package/src/themes/sap_fiori_3_hcb/CalendarHeader-parameters.css +11 -0
  999. package/src/themes/sap_fiori_3_hcb/Card-parameters.css +6 -0
  1000. package/src/themes/sap_fiori_3_hcb/Carousel-parameters.css +9 -0
  1001. package/src/themes/sap_fiori_3_hcb/CheckBox-parameters.css +13 -0
  1002. package/src/themes/sap_fiori_3_hcb/ColorPicker-parameters.css +5 -0
  1003. package/src/themes/sap_fiori_3_hcb/DatePicker-parameters.css +5 -0
  1004. package/src/themes/sap_fiori_3_hcb/DayPicker-parameters.css +17 -0
  1005. package/src/themes/sap_fiori_3_hcb/FileUploader-parameters.css +5 -0
  1006. package/src/themes/sap_fiori_3_hcb/GrowingButton-parameters.css +8 -0
  1007. package/src/themes/sap_fiori_3_hcb/Input-parameters.css +28 -0
  1008. package/src/themes/sap_fiori_3_hcb/Link-parameters.css +10 -0
  1009. package/src/themes/sap_fiori_3_hcb/ListItem-parameters.css +3 -0
  1010. package/src/themes/sap_fiori_3_hcb/MessageStrip-parameters.css +9 -0
  1011. package/src/themes/sap_fiori_3_hcb/MonthPicker-parameters.css +11 -0
  1012. package/src/themes/sap_fiori_3_hcb/Panel-parameters.css +5 -0
  1013. package/src/themes/sap_fiori_3_hcb/ProgressIndicator-parameters.css +11 -0
  1014. package/src/themes/sap_fiori_3_hcb/RadioButton-parameters.css +14 -0
  1015. package/src/themes/sap_fiori_3_hcb/Select-parameters.css +10 -0
  1016. package/src/themes/sap_fiori_3_hcb/SliderBase-parameters.css +16 -0
  1017. package/src/themes/sap_fiori_3_hcb/SplitButton-parameters.css +12 -0
  1018. package/src/themes/sap_fiori_3_hcb/Switch-parameters.css +16 -0
  1019. package/src/themes/sap_fiori_3_hcb/TabContainer-parameters.css +45 -0
  1020. package/src/themes/sap_fiori_3_hcb/Table-parameters.css +5 -0
  1021. package/src/themes/sap_fiori_3_hcb/TableRow-parameters.css +5 -0
  1022. package/src/themes/sap_fiori_3_hcb/TextArea-parameters.css +15 -0
  1023. package/src/themes/sap_fiori_3_hcb/TimePicker-parameters.css +5 -0
  1024. package/src/themes/sap_fiori_3_hcb/ToggleButton-parameters.css +6 -0
  1025. package/src/themes/sap_fiori_3_hcb/Token-parameters.css +7 -0
  1026. package/src/themes/sap_fiori_3_hcb/ValueStateMessage-parameters.css +7 -0
  1027. package/src/themes/sap_fiori_3_hcb/WheelSlider-parameters.css +17 -0
  1028. package/src/themes/sap_fiori_3_hcb/YearPicker-parameters.css +11 -0
  1029. package/src/themes/sap_fiori_3_hcb/parameters-bundle.css +53 -0
  1030. package/src/themes/sap_fiori_3_hcb/sizes-parameters.css +8 -0
  1031. package/src/themes/sap_fiori_3_hcw/Avatar-parameters.css +24 -0
  1032. package/src/themes/sap_fiori_3_hcw/Badge-parameters.css +43 -0
  1033. package/src/themes/sap_fiori_3_hcw/Button-parameters.css +11 -0
  1034. package/src/themes/sap_fiori_3_hcw/CalendarHeader-parameters.css +11 -0
  1035. package/src/themes/sap_fiori_3_hcw/Card-parameters.css +6 -0
  1036. package/src/themes/sap_fiori_3_hcw/Carousel-parameters.css +9 -0
  1037. package/src/themes/sap_fiori_3_hcw/CheckBox-parameters.css +13 -0
  1038. package/src/themes/sap_fiori_3_hcw/ColorPicker-parameters.css +5 -0
  1039. package/src/themes/sap_fiori_3_hcw/DatePicker-parameters.css +5 -0
  1040. package/src/themes/sap_fiori_3_hcw/DayPicker-parameters.css +17 -0
  1041. package/src/themes/sap_fiori_3_hcw/FileUploader-parameters.css +5 -0
  1042. package/src/themes/sap_fiori_3_hcw/GrowingButton-parameters.css +8 -0
  1043. package/src/themes/sap_fiori_3_hcw/Input-parameters.css +28 -0
  1044. package/src/themes/sap_fiori_3_hcw/Link-parameters.css +10 -0
  1045. package/src/themes/sap_fiori_3_hcw/ListItem-parameters.css +3 -0
  1046. package/src/themes/sap_fiori_3_hcw/MessageStrip-parameters.css +9 -0
  1047. package/src/themes/sap_fiori_3_hcw/MonthPicker-parameters.css +11 -0
  1048. package/src/themes/sap_fiori_3_hcw/Panel-parameters.css +5 -0
  1049. package/src/themes/sap_fiori_3_hcw/ProgressIndicator-parameters.css +11 -0
  1050. package/src/themes/sap_fiori_3_hcw/RadioButton-parameters.css +14 -0
  1051. package/src/themes/sap_fiori_3_hcw/Select-parameters.css +10 -0
  1052. package/src/themes/sap_fiori_3_hcw/SliderBase-parameters.css +15 -0
  1053. package/src/themes/sap_fiori_3_hcw/SplitButton-parameters.css +12 -0
  1054. package/src/themes/sap_fiori_3_hcw/Switch-parameters.css +16 -0
  1055. package/src/themes/sap_fiori_3_hcw/TabContainer-parameters.css +45 -0
  1056. package/src/themes/sap_fiori_3_hcw/Table-parameters.css +5 -0
  1057. package/src/themes/sap_fiori_3_hcw/TableRow-parameters.css +5 -0
  1058. package/src/themes/sap_fiori_3_hcw/TextArea-parameters.css +15 -0
  1059. package/src/themes/sap_fiori_3_hcw/TimePicker-parameters.css +5 -0
  1060. package/src/themes/sap_fiori_3_hcw/ToggleButton-parameters.css +6 -0
  1061. package/src/themes/sap_fiori_3_hcw/Token-parameters.css +7 -0
  1062. package/src/themes/sap_fiori_3_hcw/ValueStateMessage-parameters.css +7 -0
  1063. package/src/themes/sap_fiori_3_hcw/WheelSlider-parameters.css +17 -0
  1064. package/src/themes/sap_fiori_3_hcw/YearPicker-parameters.css +11 -0
  1065. package/src/themes/sap_fiori_3_hcw/parameters-bundle.css +53 -0
  1066. package/src/themes/sap_fiori_3_hcw/sizes-parameters.css +8 -0
  1067. package/src/themes/sap_horizon/Avatar-parameters.css +53 -0
  1068. package/src/themes/sap_horizon/Badge-parameters.css +43 -0
  1069. package/src/themes/sap_horizon/Breadcrumbs-parameters.css +3 -0
  1070. package/src/themes/sap_horizon/BusyIndicator-parameters.css +7 -0
  1071. package/src/themes/sap_horizon/Button-parameters.css +19 -0
  1072. package/src/themes/sap_horizon/CalendarHeader-parameters.css +19 -0
  1073. package/src/themes/sap_horizon/Card-parameters.css +15 -0
  1074. package/src/themes/sap_horizon/CheckBox-parameters.css +49 -0
  1075. package/src/themes/sap_horizon/ColorPalette-parameters.css +21 -0
  1076. package/src/themes/sap_horizon/ColorPicker-parameters.css +11 -0
  1077. package/src/themes/sap_horizon/DatePicker-parameters.css +6 -0
  1078. package/src/themes/sap_horizon/DayPicker-parameters.css +31 -0
  1079. package/src/themes/sap_horizon/Dialog-parameters.css +11 -0
  1080. package/src/themes/sap_horizon/FileUploader-parameters.css +5 -0
  1081. package/src/themes/sap_horizon/GrowingButton-parameters.css +6 -0
  1082. package/src/themes/sap_horizon/Icon-parameters.css +3 -0
  1083. package/src/themes/sap_horizon/Input-parameters.css +34 -0
  1084. package/src/themes/sap_horizon/InputIcon-parameters.css +24 -0
  1085. package/src/themes/sap_horizon/Link-parameters.css +14 -0
  1086. package/src/themes/sap_horizon/List-parameters.css +5 -0
  1087. package/src/themes/sap_horizon/ListItemBase-parameters.css +5 -0
  1088. package/src/themes/sap_horizon/Menu-parameters.css +5 -0
  1089. package/src/themes/sap_horizon/MessageStrip-parameters.css +5 -0
  1090. package/src/themes/sap_horizon/MonthPicker-parameters.css +17 -0
  1091. package/src/themes/sap_horizon/MultiComboBox-parameters.css +5 -0
  1092. package/src/themes/sap_horizon/Panel-parameters.css +11 -0
  1093. package/src/themes/sap_horizon/ProgressIndicator-parameters.css +38 -0
  1094. package/src/themes/sap_horizon/ProgressIndicatorLayout-parameters.css +39 -0
  1095. package/src/themes/sap_horizon/RadioButton-parameters.css +15 -0
  1096. package/src/themes/sap_horizon/RatingIndicator-parameters.css +3 -0
  1097. package/src/themes/sap_horizon/SegmentedButtton-parameters.css +10 -0
  1098. package/src/themes/sap_horizon/Select-parameters.css +5 -0
  1099. package/src/themes/sap_horizon/SelectPopover-parameters.css +4 -0
  1100. package/src/themes/sap_horizon/SliderBase-parameters.css +81 -0
  1101. package/src/themes/sap_horizon/SplitButton-parameters.css +17 -0
  1102. package/src/themes/sap_horizon/StepInput-parameters.css +25 -0
  1103. package/src/themes/sap_horizon/Switch-parameters.css +144 -0
  1104. package/src/themes/sap_horizon/TabContainer-parameters.css +31 -0
  1105. package/src/themes/sap_horizon/Table-parameters.css +9 -0
  1106. package/src/themes/sap_horizon/TableColumn-parameters.css +5 -0
  1107. package/src/themes/sap_horizon/TableGroupRow-parameters.css +6 -0
  1108. package/src/themes/sap_horizon/TableRow-parameters.css +5 -0
  1109. package/src/themes/sap_horizon/TextArea-parameters.css +17 -0
  1110. package/src/themes/sap_horizon/TimePicker-parameters.css +6 -0
  1111. package/src/themes/sap_horizon/ToggleButton-parameters.css +1 -0
  1112. package/src/themes/sap_horizon/Token-parameters.css +19 -0
  1113. package/src/themes/sap_horizon/ValueStateMessage-parameters.css +11 -0
  1114. package/src/themes/sap_horizon/WheelSlider-parameters.css +19 -0
  1115. package/src/themes/sap_horizon/YearPicker-parameters.css +16 -0
  1116. package/src/themes/sap_horizon/parameters-bundle.css +61 -0
  1117. package/src/themes/sap_horizon/sizes-parameters.css +41 -0
  1118. package/src/themes/sap_horizon_dark/Avatar-parameters.css +53 -0
  1119. package/src/themes/sap_horizon_dark/Badge-parameters.css +43 -0
  1120. package/src/themes/sap_horizon_dark/Breadcrumbs-parameters.css +3 -0
  1121. package/src/themes/sap_horizon_dark/BusyIndicator-parameters.css +7 -0
  1122. package/src/themes/sap_horizon_dark/Button-parameters.css +19 -0
  1123. package/src/themes/sap_horizon_dark/CalendarHeader-parameters.css +19 -0
  1124. package/src/themes/sap_horizon_dark/Card-parameters.css +15 -0
  1125. package/src/themes/sap_horizon_dark/CheckBox-parameters.css +49 -0
  1126. package/src/themes/sap_horizon_dark/ColorPalette-parameters.css +21 -0
  1127. package/src/themes/sap_horizon_dark/ColorPicker-parameters.css +11 -0
  1128. package/src/themes/sap_horizon_dark/DatePicker-parameters.css +6 -0
  1129. package/src/themes/sap_horizon_dark/DayPicker-parameters.css +31 -0
  1130. package/src/themes/sap_horizon_dark/Dialog-parameters.css +11 -0
  1131. package/src/themes/sap_horizon_dark/FileUploader-parameters.css +5 -0
  1132. package/src/themes/sap_horizon_dark/GrowingButton-parameters.css +6 -0
  1133. package/src/themes/sap_horizon_dark/Icon-parameters.css +3 -0
  1134. package/src/themes/sap_horizon_dark/Input-parameters.css +34 -0
  1135. package/src/themes/sap_horizon_dark/InputIcon-parameters.css +24 -0
  1136. package/src/themes/sap_horizon_dark/Link-parameters.css +14 -0
  1137. package/src/themes/sap_horizon_dark/List-parameters.css +5 -0
  1138. package/src/themes/sap_horizon_dark/ListItemBase-parameters.css +6 -0
  1139. package/src/themes/sap_horizon_dark/Menu-parameters.css +5 -0
  1140. package/src/themes/sap_horizon_dark/MessageStrip-parameters.css +5 -0
  1141. package/src/themes/sap_horizon_dark/MonthPicker-parameters.css +17 -0
  1142. package/src/themes/sap_horizon_dark/MultiComboBox-parameters.css +5 -0
  1143. package/src/themes/sap_horizon_dark/Panel-parameters.css +11 -0
  1144. package/src/themes/sap_horizon_dark/RadioButton-parameters.css +15 -0
  1145. package/src/themes/sap_horizon_dark/RatingIndicator-parameters.css +3 -0
  1146. package/src/themes/sap_horizon_dark/SegmentedButtton-parameters.css +10 -0
  1147. package/src/themes/sap_horizon_dark/Select-parameters.css +5 -0
  1148. package/src/themes/sap_horizon_dark/SelectPopover-parameters.css +4 -0
  1149. package/src/themes/sap_horizon_dark/SliderBase-parameters.css +79 -0
  1150. package/src/themes/sap_horizon_dark/SplitButton-parameters.css +17 -0
  1151. package/src/themes/sap_horizon_dark/StepInput-parameters.css +25 -0
  1152. package/src/themes/sap_horizon_dark/Switch-parameters.css +144 -0
  1153. package/src/themes/sap_horizon_dark/TabContainer-parameters.css +22 -0
  1154. package/src/themes/sap_horizon_dark/Table-parameters.css +9 -0
  1155. package/src/themes/sap_horizon_dark/TableColumn-parameters.css +5 -0
  1156. package/src/themes/sap_horizon_dark/TableGroupRow-parameters.css +6 -0
  1157. package/src/themes/sap_horizon_dark/TableRow-parameters.css +5 -0
  1158. package/src/themes/sap_horizon_dark/TextArea-parameters.css +17 -0
  1159. package/src/themes/sap_horizon_dark/TimePicker-parameters.css +6 -0
  1160. package/src/themes/sap_horizon_dark/ToggleButton-parameters.css +1 -0
  1161. package/src/themes/sap_horizon_dark/Token-parameters.css +19 -0
  1162. package/src/themes/sap_horizon_dark/ValueStateMessage-parameters.css +11 -0
  1163. package/src/themes/sap_horizon_dark/WheelSlider-parameters.css +19 -0
  1164. package/src/themes/sap_horizon_dark/YearPicker-parameters.css +16 -0
  1165. package/src/themes/sap_horizon_dark/parameters-bundle.css +62 -0
  1166. package/src/themes/sap_horizon_dark/sizes-parameters.css +39 -0
  1167. package/src/themes/sap_horizon_exp/Badge-parameters.css +91 -0
  1168. package/src/themes/sap_horizon_exp/Button-parameters.css +12 -0
  1169. package/src/themes/sap_horizon_exp/CalendarHeader-parameters.css +8 -0
  1170. package/src/themes/sap_horizon_exp/CheckBox-parameters.css +35 -0
  1171. package/src/themes/sap_horizon_exp/DatePicker-parameters.css +5 -0
  1172. package/src/themes/sap_horizon_exp/DayPicker-parameters.css +6 -0
  1173. package/src/themes/sap_horizon_exp/Input-parameters.css +43 -0
  1174. package/src/themes/sap_horizon_exp/InputIcon-parameters.css +13 -0
  1175. package/src/themes/sap_horizon_exp/Link-parameters.css +7 -0
  1176. package/src/themes/sap_horizon_exp/List-parameters.css +5 -0
  1177. package/src/themes/sap_horizon_exp/MonthPicker-parameters.css +5 -0
  1178. package/src/themes/sap_horizon_exp/MultiComboBox-parameters.css +7 -0
  1179. package/src/themes/sap_horizon_exp/Panel-parameters.css +5 -0
  1180. package/src/themes/sap_horizon_exp/Popover-parameters.css +4 -0
  1181. package/src/themes/sap_horizon_exp/RadioButton-parameters.css +29 -0
  1182. package/src/themes/sap_horizon_exp/Select-parameters.css +5 -0
  1183. package/src/themes/sap_horizon_exp/SliderBase-parameters.css +30 -0
  1184. package/src/themes/sap_horizon_exp/Switch-parameters.css +46 -0
  1185. package/src/themes/sap_horizon_exp/TabContainer-parameters.css +40 -0
  1186. package/src/themes/sap_horizon_exp/TimePicker-parameters.css +5 -0
  1187. package/src/themes/sap_horizon_exp/Token-parameters.css +7 -0
  1188. package/src/themes/sap_horizon_exp/WheelSlider-parameters.css +16 -0
  1189. package/src/themes/sap_horizon_exp/YearPicker-parameters.css +5 -0
  1190. package/src/themes/sap_horizon_exp/parameters-bundle.css +46 -0
  1191. package/src/themes/sap_horizon_hcb/Avatar-parameters.css +53 -0
  1192. package/src/themes/sap_horizon_hcb/Badge-parameters.css +43 -0
  1193. package/src/themes/sap_horizon_hcb/BusyIndicator-parameters.css +5 -0
  1194. package/src/themes/sap_horizon_hcb/Button-parameters.css +10 -0
  1195. package/src/themes/sap_horizon_hcb/CalendarHeader-parameters.css +11 -0
  1196. package/src/themes/sap_horizon_hcb/Card-parameters.css +11 -0
  1197. package/src/themes/sap_horizon_hcb/Carousel-parameters.css +9 -0
  1198. package/src/themes/sap_horizon_hcb/CheckBox-parameters.css +49 -0
  1199. package/src/themes/sap_horizon_hcb/ColorPicker-parameters.css +10 -0
  1200. package/src/themes/sap_horizon_hcb/DatePicker-parameters.css +5 -0
  1201. package/src/themes/sap_horizon_hcb/DayPicker-parameters.css +17 -0
  1202. package/src/themes/sap_horizon_hcb/Dialog-parameters.css +6 -0
  1203. package/src/themes/sap_horizon_hcb/FileUploader-parameters.css +6 -0
  1204. package/src/themes/sap_horizon_hcb/GrowingButton-parameters.css +8 -0
  1205. package/src/themes/sap_horizon_hcb/Input-parameters.css +31 -0
  1206. package/src/themes/sap_horizon_hcb/InputIcon-parameters.css +11 -0
  1207. package/src/themes/sap_horizon_hcb/Link-parameters.css +10 -0
  1208. package/src/themes/sap_horizon_hcb/ListItem-parameters.css +3 -0
  1209. package/src/themes/sap_horizon_hcb/Menu-parameters.css +5 -0
  1210. package/src/themes/sap_horizon_hcb/MessageStrip-parameters.css +10 -0
  1211. package/src/themes/sap_horizon_hcb/MonthPicker-parameters.css +11 -0
  1212. package/src/themes/sap_horizon_hcb/Panel-parameters.css +8 -0
  1213. package/src/themes/sap_horizon_hcb/ProgressIndicator-parameters.css +21 -0
  1214. package/src/themes/sap_horizon_hcb/RadioButton-parameters.css +16 -0
  1215. package/src/themes/sap_horizon_hcb/SegmentedButtton-parameters.css +9 -0
  1216. package/src/themes/sap_horizon_hcb/Select-parameters.css +10 -0
  1217. package/src/themes/sap_horizon_hcb/SliderBase-parameters.css +77 -0
  1218. package/src/themes/sap_horizon_hcb/SplitButton-parameters.css +12 -0
  1219. package/src/themes/sap_horizon_hcb/Switch-parameters.css +144 -0
  1220. package/src/themes/sap_horizon_hcb/TabContainer-parameters.css +45 -0
  1221. package/src/themes/sap_horizon_hcb/Table-parameters.css +9 -0
  1222. package/src/themes/sap_horizon_hcb/TableGroupRow-parameters.css +6 -0
  1223. package/src/themes/sap_horizon_hcb/TableRow-parameters.css +5 -0
  1224. package/src/themes/sap_horizon_hcb/TextArea-parameters.css +19 -0
  1225. package/src/themes/sap_horizon_hcb/TimePicker-parameters.css +5 -0
  1226. package/src/themes/sap_horizon_hcb/ToggleButton-parameters.css +1 -0
  1227. package/src/themes/sap_horizon_hcb/Token-parameters.css +19 -0
  1228. package/src/themes/sap_horizon_hcb/ValueStateMessage-parameters.css +13 -0
  1229. package/src/themes/sap_horizon_hcb/WheelSlider-parameters.css +17 -0
  1230. package/src/themes/sap_horizon_hcb/YearPicker-parameters.css +11 -0
  1231. package/src/themes/sap_horizon_hcb/parameters-bundle.css +53 -0
  1232. package/src/themes/sap_horizon_hcb/sizes-parameters.css +8 -0
  1233. package/src/themes/sap_horizon_hcw/Avatar-parameters.css +53 -0
  1234. package/src/themes/sap_horizon_hcw/Badge-parameters.css +43 -0
  1235. package/src/themes/sap_horizon_hcw/BusyIndicator-parameters.css +5 -0
  1236. package/src/themes/sap_horizon_hcw/Button-parameters.css +10 -0
  1237. package/src/themes/sap_horizon_hcw/CalendarHeader-parameters.css +11 -0
  1238. package/src/themes/sap_horizon_hcw/Card-parameters.css +11 -0
  1239. package/src/themes/sap_horizon_hcw/Carousel-parameters.css +9 -0
  1240. package/src/themes/sap_horizon_hcw/CheckBox-parameters.css +49 -0
  1241. package/src/themes/sap_horizon_hcw/ColorPicker-parameters.css +10 -0
  1242. package/src/themes/sap_horizon_hcw/DatePicker-parameters.css +5 -0
  1243. package/src/themes/sap_horizon_hcw/DayPicker-parameters.css +17 -0
  1244. package/src/themes/sap_horizon_hcw/Dialog-parameters.css +6 -0
  1245. package/src/themes/sap_horizon_hcw/FileUploader-parameters.css +6 -0
  1246. package/src/themes/sap_horizon_hcw/GrowingButton-parameters.css +8 -0
  1247. package/src/themes/sap_horizon_hcw/Input-parameters.css +31 -0
  1248. package/src/themes/sap_horizon_hcw/InputIcon-parameters.css +11 -0
  1249. package/src/themes/sap_horizon_hcw/Link-parameters.css +10 -0
  1250. package/src/themes/sap_horizon_hcw/ListItem-parameters.css +3 -0
  1251. package/src/themes/sap_horizon_hcw/Menu-parameters.css +5 -0
  1252. package/src/themes/sap_horizon_hcw/MessageStrip-parameters.css +10 -0
  1253. package/src/themes/sap_horizon_hcw/MonthPicker-parameters.css +11 -0
  1254. package/src/themes/sap_horizon_hcw/Panel-parameters.css +9 -0
  1255. package/src/themes/sap_horizon_hcw/RadioButton-parameters.css +20 -0
  1256. package/src/themes/sap_horizon_hcw/SegmentedButtton-parameters.css +9 -0
  1257. package/src/themes/sap_horizon_hcw/Select-parameters.css +10 -0
  1258. package/src/themes/sap_horizon_hcw/SliderBase-parameters.css +78 -0
  1259. package/src/themes/sap_horizon_hcw/SplitButton-parameters.css +12 -0
  1260. package/src/themes/sap_horizon_hcw/Switch-parameters.css +144 -0
  1261. package/src/themes/sap_horizon_hcw/TabContainer-parameters.css +45 -0
  1262. package/src/themes/sap_horizon_hcw/Table-parameters.css +9 -0
  1263. package/src/themes/sap_horizon_hcw/TableGroupRow-parameters.css +6 -0
  1264. package/src/themes/sap_horizon_hcw/TableRow-parameters.css +5 -0
  1265. package/src/themes/sap_horizon_hcw/TextArea-parameters.css +19 -0
  1266. package/src/themes/sap_horizon_hcw/TimePicker-parameters.css +5 -0
  1267. package/src/themes/sap_horizon_hcw/ToggleButton-parameters.css +1 -0
  1268. package/src/themes/sap_horizon_hcw/Token-parameters.css +19 -0
  1269. package/src/themes/sap_horizon_hcw/ValueStateMessage-parameters.css +13 -0
  1270. package/src/themes/sap_horizon_hcw/WheelSlider-parameters.css +17 -0
  1271. package/src/themes/sap_horizon_hcw/YearPicker-parameters.css +11 -0
  1272. package/src/themes/sap_horizon_hcw/parameters-bundle.css +53 -0
  1273. package/src/themes/sap_horizon_hcw/sizes-parameters.css +8 -0
  1274. package/src/types/HasPopup.js +62 -0
  1275. package/src/types/ListGrowingMode.js +36 -3
  1276. package/src/types/TableGrowingMode.js +35 -2
  1277. package/src/types/TabsOverflowMode.js +40 -0
  1278. package/dist/generated/templates/TabSeparatorTemplate.lit.js +0 -7
  1279. package/dist/webcomponentsjs/CHANGELOG.md +0 -57
  1280. package/dist/webcomponentsjs/LICENSE.md +0 -19
  1281. package/dist/webcomponentsjs/README.md +0 -232
  1282. package/dist/webcomponentsjs/bundles/webcomponents-ce.js +0 -73
  1283. package/dist/webcomponentsjs/bundles/webcomponents-ce.js.map +0 -1
  1284. package/dist/webcomponentsjs/bundles/webcomponents-pf_dom.js +0 -60
  1285. package/dist/webcomponentsjs/bundles/webcomponents-pf_dom.js.map +0 -1
  1286. package/dist/webcomponentsjs/bundles/webcomponents-pf_js.js +0 -92
  1287. package/dist/webcomponentsjs/bundles/webcomponents-pf_js.js.map +0 -1
  1288. package/dist/webcomponentsjs/bundles/webcomponents-sd-ce-pf.js +0 -363
  1289. package/dist/webcomponentsjs/bundles/webcomponents-sd-ce-pf.js.map +0 -1
  1290. package/dist/webcomponentsjs/bundles/webcomponents-sd-ce.js +0 -234
  1291. package/dist/webcomponentsjs/bundles/webcomponents-sd-ce.js.map +0 -1
  1292. package/dist/webcomponentsjs/bundles/webcomponents-sd.js +0 -182
  1293. package/dist/webcomponentsjs/bundles/webcomponents-sd.js.map +0 -1
  1294. package/dist/webcomponentsjs/custom-elements-es5-adapter.js +0 -15
  1295. package/dist/webcomponentsjs/webcomponents-bundle.js +0 -373
  1296. package/dist/webcomponentsjs/webcomponents-bundle.js.map +0 -1
  1297. package/dist/webcomponentsjs/webcomponents-loader.js +0 -185
  1298. package/src/TabSeparator.hbs +0 -1
package/dist/api.json CHANGED
@@ -14,7 +14,7 @@
14
14
  "since": "1.0.0-rc.6",
15
15
  "extends": "UI5Element",
16
16
  "implements": [ "sap.ui.webcomponents.main.IAvatar" ],
17
- "description": "<h3 class=\"comment-api-title\">Overview</h3>\n\nAn image-like control that has different display options for representing images and icons in different shapes and sizes, depending on the use case.\n\nThe shape can be circular or square. There are several predefined sizes, as well as an option to set a custom size.\n\n<br><br> <h3>Keyboard Handling</h3>\n\n<ul> <li>[SPACE, ENTER, RETURN] - Fires the <code>click</code> event if the <code>interactive</code> property is set to true.</li> <li>[SHIFT] - If [SPACE] or [ENTER],[RETURN] is pressed, pressing [SHIFT] releases the component without triggering the click event.</li> </ul> <br><br>\n\n<h3>ES6 Module Import</h3>\n\n<code>import \"@ui5/webcomponents/dist/Avatar.js\";</code>",
17
+ "description": "<h3 class=\"comment-api-title\">Overview</h3>\n\nAn image-like control that has different display options for representing images and icons in different shapes and sizes, depending on the use case.\n\nThe shape can be circular or square. There are several predefined sizes, as well as an option to set a custom size.\n\n<br><br> <h3>Keyboard Handling</h3>\n\n<ul> <li>[SPACE, ENTER, RETURN] - Fires the <code>click</code> event if the <code>interactive</code> property is set to true.</li> <li>[SHIFT] - If [SPACE] is pressed, pressing [SHIFT] releases the component without triggering the click event.</li> </ul> <br><br>\n\n<h3>ES6 Module Import</h3>\n\n<code>import \"@ui5/webcomponents/dist/Avatar.js\";</code>",
18
18
  "constructor": { "visibility": "public" },
19
19
  "properties": [
20
20
  {
@@ -78,6 +78,7 @@
78
78
  "slots": [
79
79
  {
80
80
  "name": "default",
81
+ "propertyName": "image",
81
82
  "visibility": "public",
82
83
  "since": "1.0.0-rc.15",
83
84
  "type": "HTMLElement",
@@ -110,7 +111,7 @@
110
111
  "name": "colorScheme",
111
112
  "readonly": "true",
112
113
  "visibility": "public",
113
- "type": "Array",
114
+ "type": "AvatarColorScheme[]",
114
115
  "description": "Returns an array containing the <code>AvatarColorScheme</code> values that correspond to the avatars in the component.",
115
116
  "defaultValue": "[]"
116
117
  },
@@ -118,7 +119,7 @@
118
119
  "name": "hiddenItems",
119
120
  "readonly": "true",
120
121
  "visibility": "public",
121
- "type": "Array",
122
+ "type": "HTMLElement[]",
122
123
  "description": "Returns an array containing the <code>ui5-avatar</code> instances that are currently not displayed due to lack of space.",
123
124
  "defaultValue": "[]"
124
125
  },
@@ -253,9 +254,10 @@
253
254
  "events": [
254
255
  {
255
256
  "name": "item-click",
257
+ "allowPreventDefault": "true",
256
258
  "visibility": "public",
257
259
  "parameters": [ { "name": "item", "type": "HTMLElement", "description": "The clicked item." } ],
258
- "description": "Fires when a <code>BreadcrumbsItem</code> is clicked."
260
+ "description": "Fires when a <code>BreadcrumbsItem</code> is clicked. <b>Note:</b> You can prevent browser location change by calling <code>event.preventDefault()</code>."
259
261
  }
260
262
  ]
261
263
  },
@@ -288,12 +290,6 @@
288
290
  "description": "Defines the link href. <br><br> <b>Note:</b> Standard hyperlink behavior is supported.",
289
291
  "defaultValue": "\"\""
290
292
  },
291
- {
292
- "name": "stableDomRef",
293
- "visibility": "public",
294
- "type": "string",
295
- "description": "Defines the stable selector that you can use via <code>getStableDomRef</code> method."
296
- },
297
293
  {
298
294
  "name": "target",
299
295
  "visibility": "public",
@@ -350,7 +346,7 @@
350
346
  "name": "text",
351
347
  "visibility": "public",
352
348
  "since": "1.0.0-rc.7",
353
- "type": "String",
349
+ "type": "string",
354
350
  "description": "Defines text to be displayed below the component. It can be used to inform the user of the current operation.",
355
351
  "defaultValue": "\"\""
356
352
  }
@@ -378,25 +374,41 @@
378
374
  "description": "<h3 class=\"comment-api-title\">Overview</h3>\n\nThe <code>ui5-button</code> component represents a simple push button. It enables users to trigger actions by clicking or tapping the <code>ui5-button</code>, or by pressing certain keyboard keys, such as Enter.\n\n<h3>Usage</h3>\n\nFor the <code>ui5-button</code> UI, you can define text, icon, or both. You can also specify whether the text or the icon is displayed first. <br><br> You can choose from a set of predefined types that offer different styling to correspond to the triggered action. <br><br> You can set the <code>ui5-button</code> as enabled or disabled. An enabled <code>ui5-button</code> can be pressed by clicking or tapping it. The button changes its style to provide visual feedback to the user that it is pressed or hovered over with the mouse cursor. A disabled <code>ui5-button</code> appears inactive and cannot be pressed.\n\n<h3>CSS Shadow Parts</h3>\n\n<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> The <code>ui5-button</code> exposes the following CSS Shadow Parts: <ul> <li>button - Used to style the native button element</li> </ul>\n\n<h3>ES6 Module Import</h3>\n\n<code>import \"@ui5/webcomponents/dist/Button\";</code>",
379
375
  "constructor": { "visibility": "public" },
380
376
  "properties": [
377
+ {
378
+ "name": "accessibilityAttributes",
379
+ "visibility": "public",
380
+ "since": "1.2.0",
381
+ "type": "object",
382
+ "noattribute": "true",
383
+ "description": "An object of strings that defines several additional accessibility attribute values for customization depending on the use case.\n\nIt supports the following fields:\n\n<ul> <li><code>expanded</code>: Indicates whether the button, or another grouping element it controls, is currently expanded or collapsed. Accepts the following string values: <ul> <li><code>true</code></li> <li><code>false</code></li> </ul> </li> <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: <ul> <li><code>Dialog</code></li> <li><code>Grid</code></li> <li><code>ListBox</code></li> <li><code>Menu</code></li> <li><code>Tree</code></li> </ul> </li> <li><code>controls</code>: Identifies the element (or elements) whose contents or presence are controlled by the button element. Accepts a string value.</li> </ul>"
384
+ },
381
385
  {
382
386
  "name": "accessibleName",
383
387
  "visibility": "public",
384
388
  "since": "1.0.0-rc.15",
385
- "type": "String",
386
- "description": "Sets the accessible aria name of the component."
389
+ "type": "string",
390
+ "description": "Defines the accessible aria name of the component."
391
+ },
392
+ {
393
+ "name": "accessibleNameRef",
394
+ "visibility": "public",
395
+ "since": "1.1.0",
396
+ "type": "string",
397
+ "description": "Receives id(or many ids) of the elements that label the component.",
398
+ "defaultValue": "\"\""
387
399
  },
388
400
  {
389
401
  "name": "design",
390
402
  "visibility": "public",
391
403
  "type": "ButtonDesign",
392
- "description": "Defines the component design.\n\n<br><br> <b>Note:</b>\n\n<ul> <li><code>Default</code></li> <li><code>Emphasized</code></li> <li><code>Positive</code></li> <li><code>Negative</code></li> <li><code>Transparent</code></li> <li><code>Attention</code></li> </ul>",
404
+ "description": "Defines the component design.\n\n<br><br> <b>The available values are:</b>\n\n<ul> <li><code>Default</code></li> <li><code>Emphasized</code></li> <li><code>Positive</code></li> <li><code>Negative</code></li> <li><code>Transparent</code></li> <li><code>Attention</code></li> </ul>",
393
405
  "defaultValue": "\"Default\""
394
406
  },
395
407
  {
396
408
  "name": "disabled",
397
409
  "visibility": "public",
398
410
  "type": "boolean",
399
- "description": "Defines whether the component is disabled (default is set to <code>false</code>). A disabled component can't be pressed or focused, and it is not in the tab chain.",
411
+ "description": "Defines whether the component is disabled. A disabled component can't be pressed or focused, and it is not in the tab chain.",
400
412
  "defaultValue": "false"
401
413
  },
402
414
  {
@@ -417,8 +429,15 @@
417
429
  "name": "submits",
418
430
  "visibility": "public",
419
431
  "type": "boolean",
420
- "description": "When set to <code>true</code>, the component will automatically submit the nearest form element upon <code>press</code>. <br><br> <b>Important:</b> For the <code>submits</code> property to have effect, you must add the following import to your project: <code>import \"@ui5/webcomponents/dist/features/InputElementsFormSupport.js\";</code>",
432
+ "description": "When set to <code>true</code>, the component will automatically submit the nearest form element upon <code>press</code>. <br><br> <b>Note:</b> For the <code>submits</code> property to have effect, you must add the following import to your project: <code>import \"@ui5/webcomponents/dist/features/InputElementsFormSupport.js\";</code>",
421
433
  "defaultValue": "false"
434
+ },
435
+ {
436
+ "name": "tooltip",
437
+ "visibility": "public",
438
+ "since": "1.2.0",
439
+ "type": "string",
440
+ "description": "Defines the tooltip of the component. <br> <b>Note:</b> We recommend setting tooltip to icon-only components."
422
441
  }
423
442
  ],
424
443
  "slots": [
@@ -450,7 +469,7 @@
450
469
  "visibility": "public",
451
470
  "since": "1.0.0-rc.11",
452
471
  "extends": "CalendarPart",
453
- "description": "<h3 class=\"comment-api-title\">Overview</h3>\n\nThe <code>ui5-calendar</code> component allows users to select one or more dates. <br><br> Currently selected dates are represented with instances of <code>ui5-date</code> as children of the <code>ui5-calendar</code>. The value property of each <code>ui5-date</code> must be a date string, correctly formatted according to the <code>ui5-calendar</code>'s <code>formatPattern</code> property. Whenever the user changes the date selection, <code>ui5-calendar</code> will automatically create/remove instances of <code>ui5-date</code> in itself, unless you prevent this behavior by calling <code>preventDefault()</code> for the <code>selected-dates-change</code> event. This is useful if you want to control the selected dates externally. <br><br>\n\n<h3>Usage</h3>\n\nThe user can navigate to a particular date by: <br> <ul> <li>Pressing over a month inside the months view</li> <li>Pressing over an year inside the years view</li> </ul> <br> The user can confirm a date selection by pressing over a date inside the days view. <br><br>\n\n<h3>Keyboard Handling</h3> The <code>ui5-calendar</code> provides advanced keyboard handling. When a picker is showed and focused the user can use the following keyboard shortcuts in order to perform a navigation: <br> - Day picker: <br> <ul> <li>[F4] - Shows month picker</li> <li>[SHIFT] + [F4] - Shows year picker</li> <li>[PAGEUP] - Navigate to the previous month</li> <li>[PAGEDOWN] - Navigate to the next month</li> <li>[SHIFT] + [PAGEUP] - Navigate to the previous year</li> <li>[SHIFT] + [PAGEDOWN] - Navigate to the next year</li> <li>[CTRL] + [SHIFT] + [PAGEUP] - Navigate ten years backwards</li> <li>[CTRL] + [SHIFT] + [PAGEDOWN] - Navigate ten years forwards</li> <li>[HOME] - Navigate to the first day of the week</li> <li>[END] - Navigate to the last day of the week</li> <li>[CTRL] + [HOME] - Navigate to the first day of the month</li> <li>[CTRL] + [END] - Navigate to the last day of the month</li> </ul> <br> - Month picker: <br> <ul> <li>[PAGEUP] - Navigate to the previous month</li> <li>[PAGEDOWN] - Navigate to the next month</li> <li>[HOME] - Navigate to the first month of the current row</li> <li>[END] - Navigate to the last month of the current row</li> <li>[CTRL] + [HOME] - Navigate to the first month of the current year</li> <li>[CTRL] + [END] - Navigate to the last month of the year</li> </ul> <br> - Year picker: <br> <ul> <li>[PAGEUP] - Navigate to the previous year range</li> <li>[PAGEDOWN] - Navigate the next year range</li> <li>[HOME] - Navigate to the first year of the current row</li> <li>[END] - Navigate to the last year of the current row</li> <li>[CTRL] + [HOME] - Navigate to the first year of the current year range</li> <li>[CTRL] + [END] - Navigate to the last year of the current year range</li> </ul> <br>\n\n<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><br>\n\n<code>import \"@ui5/webcomponents-localization/dist/features/calendar/Buddhist.js\";</code> <br> <code>import \"@ui5/webcomponents-localization/dist/features/calendar/Islamic.js\";</code> <br> <code>import \"@ui5/webcomponents-localization/dist/features/calendar/Japanese.js\";</code> <br> <code>import \"@ui5/webcomponents-localization/dist/features/calendar/Persian.js\";</code> <br><br>\n\nOr, you can use the global configuration and set the <code>calendarType</code> key: <br> <code> &lt;script data-id=\"sap-ui-config\" type=\"application/json\"&gt; { \"calendarType\": \"Japanese\" } &lt;/script&gt; </code>\n\n<h3>ES6 Module Import</h3>\n\n<code>import \"@ui5/webcomponents/dist/Calendar\";</code>",
472
+ "description": "<h3 class=\"comment-api-title\">Overview</h3>\n\nThe <code>ui5-calendar</code> component allows users to select one or more dates. <br><br> Currently selected dates are represented with instances of <code>ui5-date</code> as children of the <code>ui5-calendar</code>. The value property of each <code>ui5-date</code> must be a date string, correctly formatted according to the <code>ui5-calendar</code>'s <code>formatPattern</code> property. Whenever the user changes the date selection, <code>ui5-calendar</code> will automatically create/remove instances of <code>ui5-date</code> in itself, unless you prevent this behavior by calling <code>preventDefault()</code> for the <code>selected-dates-change</code> event. This is useful if you want to control the selected dates externally. <br><br>\n\n<h3>Usage</h3>\n\nThe user can navigate to a particular date by: <br> <ul> <li>Pressing over a month inside the months view</li> <li>Pressing over an year inside the years view</li> </ul> <br> The user can confirm a date selection by pressing over a date inside the days view. <br><br>\n\n<h3>Keyboard Handling</h3> The <code>ui5-calendar</code> provides advanced keyboard handling. When a picker is showed and focused the user can use the following keyboard shortcuts in order to perform a navigation: <br> - Day picker: <br> <ul> <li>[F4] - Shows month picker</li> <li>[SHIFT] + [F4] - Shows year picker</li> <li>[PAGEUP] - Navigate to the previous month</li> <li>[PAGEDOWN] - Navigate to the next month</li> <li>[SHIFT] + [PAGEUP] - Navigate to the previous year</li> <li>[SHIFT] + [PAGEDOWN] - Navigate to the next year</li> <li>[CTRL] + [SHIFT] + [PAGEUP] - Navigate ten years backwards</li> <li>[CTRL] + [SHIFT] + [PAGEDOWN] - Navigate ten years forwards</li> <li>[HOME] - Navigate to the first day of the week</li> <li>[END] - Navigate to the last day of the week</li> <li>[CTRL] + [HOME] - Navigate to the first day of the month</li> <li>[CTRL] + [END] - Navigate to the last day of the month</li> </ul> <br> - Month picker: <br> <ul> <li>[PAGEUP] - Navigate to the previous year</li> <li>[PAGEDOWN] - Navigate to the next year</li> <li>[HOME] - Navigate to the first month of the current row</li> <li>[END] - Navigate to the last month of the current row</li> <li>[CTRL] + [HOME] - Navigate to the first month of the current year</li> <li>[CTRL] + [END] - Navigate to the last month of the year</li> </ul> <br> - Year picker: <br> <ul> <li>[PAGEUP] - Navigate to the previous year range</li> <li>[PAGEDOWN] - Navigate the next year range</li> <li>[HOME] - Navigate to the first year of the current row</li> <li>[END] - Navigate to the last year of the current row</li> <li>[CTRL] + [HOME] - Navigate to the first year of the current year range</li> <li>[CTRL] + [END] - Navigate to the last year of the current year range</li> </ul> <br>\n\n<h4>Fast Navigation</h4> This component provides a build in fast navigation group which can be used via <code>F6 / Shift + F6</code> or <code> Ctrl + Alt(Option) + Down / Ctrl + Alt(Option) + Up</code>. In order to use this functionality, you need to import the following module: <code>import \"@ui5/webcomponents-base/dist/features/F6Navigation.js\"</code> <br><br>\n\n<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><br>\n\n<code>import \"@ui5/webcomponents-localization/dist/features/calendar/Buddhist.js\";</code> <br> <code>import \"@ui5/webcomponents-localization/dist/features/calendar/Islamic.js\";</code> <br> <code>import \"@ui5/webcomponents-localization/dist/features/calendar/Japanese.js\";</code> <br> <code>import \"@ui5/webcomponents-localization/dist/features/calendar/Persian.js\";</code> <br><br>\n\nOr, you can use the global configuration and set the <code>calendarType</code> key: <br> <code> &lt;script data-id=\"sap-ui-config\" type=\"application/json\"&gt; { \"calendarType\": \"Japanese\" } &lt;/script&gt; </code>\n\n<h3>ES6 Module Import</h3>\n\n<code>import \"@ui5/webcomponents/dist/Calendar\";</code>",
454
473
  "constructor": { "visibility": "public" },
455
474
  "properties": [
456
475
  {
@@ -579,6 +598,7 @@
579
598
  "name": "sap.ui.webcomponents.main.Card",
580
599
  "basename": "Card",
581
600
  "tagname": "ui5-card",
601
+ "appenddocs": "CardHeader",
582
602
  "resource": "Card.js",
583
603
  "module": "Card",
584
604
  "static": true,
@@ -586,7 +606,24 @@
586
606
  "extends": "sap.ui.webcomponents.base.UI5Element",
587
607
  "description": "<h3 class=\"comment-api-title\">Overview</h3>\n\nThe <code>ui5-card</code> is a component that represents information in the form of a tile with separate header and content areas. The content area of a <code>ui5-card</code> can be arbitrary HTML content. The header can be used through slot <code>header</code>. For which there is a <code>ui5-card-header</code> component to achieve the card look and fill.\n\nNote: We recommend the usage of <code>ui5-card-header</code> for the header slot, so advantage can be taken for keyboard handling, styling and accessibility.\n\n<h3>CSS Shadow Parts</h3>\n\n<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.\n\n<h3>ES6 Module Import</h3>\n\n<code>import \"@ui5/webcomponents/dist/Card\";</code> <br> <code>import \"@ui5/webcomponents/dist/CardHeader.js\";</code> (for <code>ui5-card-header</code>)",
588
608
  "constructor": { "visibility": "public" },
589
- "properties": [],
609
+ "properties": [
610
+ {
611
+ "name": "accessibleName",
612
+ "visibility": "public",
613
+ "since": "1.0.0-rc.16",
614
+ "type": "string",
615
+ "description": "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.",
616
+ "defaultValue": "\"\""
617
+ },
618
+ {
619
+ "name": "accessibleNameRef",
620
+ "visibility": "public",
621
+ "since": "1.0.0-rc.16",
622
+ "type": "string",
623
+ "description": "Defines the IDs of the elements that label the component.",
624
+ "defaultValue": "\"\""
625
+ }
626
+ ],
590
627
  "slots": [
591
628
  {
592
629
  "name": "default",
@@ -610,7 +647,6 @@
610
647
  "name": "sap.ui.webcomponents.main.CardHeader",
611
648
  "basename": "CardHeader",
612
649
  "tagname": "ui5-card-header",
613
- "appenddocs": "CardHeader",
614
650
  "resource": "CardHeader.js",
615
651
  "module": "CardHeader",
616
652
  "static": true,
@@ -631,7 +667,7 @@
631
667
  "name": "status",
632
668
  "visibility": "public",
633
669
  "type": "string",
634
- "description": "Defines the status text. <br><br> <b>Note:</b> If the <code>action</code> slot is set, the <code>status</code> will not be displayed, you can either have <code>action</code>, or <code>status</code>.",
670
+ "description": "Defines the status text.",
635
671
  "defaultValue": "\"\""
636
672
  },
637
673
  {
@@ -654,7 +690,7 @@
654
690
  "name": "action",
655
691
  "visibility": "public",
656
692
  "type": "HTMLElement[]",
657
- "description": "Defines an action, displayed in the right most part of the header. <br><br> <b>Note:</b> If set, the <code>status</code> text will not be displayed, you can either have <code>action</code>, or <code>status</code>."
693
+ "description": "Defines an action, displayed in the right most part of the header."
658
694
  },
659
695
  {
660
696
  "name": "avatar",
@@ -682,7 +718,7 @@
682
718
  "visibility": "public",
683
719
  "since": "1.0.0-rc.6",
684
720
  "extends": "UI5Element",
685
- "description": "<h3 class=\"comment-api-title\">Overview</h3> The Carousel allows the user to browse through a set of items. The component is mostly used for showing a gallery of images, but can hold any other HTML element. <br> There are several ways to perform navigation: <ul> <li>on desktop - the user can navigate using the navigation arrows or with keyboard shorcuts.</li> <li>on mobile - the user can use swipe gestures.</li> </ul>\n\n<h3>Usage</h3>\n\n<h4>When to use:</h4>\n\n<ul> <li>The items you want to display are very different from each other.</li> <li>You want to display the items one after the other.</li> </ul>\n\n<h4>When not to use:</h4>\n\n<ul> <li>The items you want to display need to be visible at the same time.</li> <li>The items you want to display are uniform and very similar.</li> </ul>\n\n<h3>Keyboard Handling</h3> When the <code>ui5-carousel</code> is focused the user can navigate between the items with the following keyboard shortcuts: <br>\n\n<ul> <li>[UP/DOWN] - Navigates to previous and next item</li> <li>[LEFT/RIGHT] - Navigates to previous and next item</li> </ul>\n\n<h3>ES6 Module Import</h3>\n\n<code>import \"@ui5/webcomponents/dist/Carousel.js\";</code>",
721
+ "description": "<h3 class=\"comment-api-title\">Overview</h3> The Carousel allows the user to browse through a set of items. The component is mostly used for showing a gallery of images, but can hold any other HTML element. <br> There are several ways to perform navigation: <ul> <li>on desktop - the user can navigate using the navigation arrows or with keyboard shorcuts.</li> <li>on mobile - the user can use swipe gestures.</li> </ul>\n\n<h3>Usage</h3>\n\n<h4>When to use:</h4>\n\n<ul> <li>The items you want to display are very different from each other.</li> <li>You want to display the items one after the other.</li> </ul>\n\n<h4>When not to use:</h4>\n\n<ul> <li>The items you want to display need to be visible at the same time.</li> <li>The items you want to display are uniform and very similar.</li> </ul>\n\n<h3>Keyboard Handling</h3>\n\n<h4>Basic Navigation</h4> When the <code>ui5-carousel</code> is focused the user can navigate between the items with the following keyboard shortcuts: <br>\n\n* <h4>Fast Navigation</h4> This component provides a build in fast navigation group which can be used via <code>F6 / Shift + F6</code> or <code> Ctrl + Alt(Option) + Down / Ctrl + Alt(Option) + Up</code>. In order to use this functionality, you need to import the following module: <code>import \"@ui5/webcomponents-base/dist/features/F6Navigation.js\"</code> <br><br>\n\n<ul> <li>[UP/DOWN] - Navigates to previous and next item</li> <li>[LEFT/RIGHT] - Navigates to previous and next item</li> </ul>\n\n<h3>ES6 Module Import</h3>\n\n<code>import \"@ui5/webcomponents/dist/Carousel.js\";</code>",
686
722
  "constructor": { "visibility": "public" },
687
723
  "properties": [
688
724
  {
@@ -791,6 +827,22 @@
791
827
  "description": "<h3 class=\"comment-api-title\">Overview</h3>\n\nAllows the user to set a binary value, such as true/false or yes/no for an item. <br><br> The <code>ui5-checkbox</code> component consists of a box and a label that describes its purpose. If it's checked, an indicator is displayed inside the box. To check/uncheck the <code>ui5-checkbox</code>, the user has to click or tap the square box or its label. <br><br> The <code>ui5-checkbox</code> component only has 2 states - checked and unchecked. Clicking or tapping toggles the <code>ui5-checkbox</code> between checked and unchecked state.\n\n<h3>Usage</h3>\n\nYou can define the checkbox text with via the <code>text</code> property. If the text exceeds the available width, it is truncated by default. In case you prefer text to wrap, set the <code>wrappingType</code> property to \"Normal\". The touchable area for toggling the <code>ui5-checkbox</code> ends where the text ends. <br><br> You can disable the <code>ui5-checkbox</code> by setting the <code>disabled</code> property to <code>true</code>, or use the <code>ui5-checkbox</code> in read-only mode by setting the <code>readonly</code> property to <code>true</code>.\n\n<br><br> <h3>Keyboard Handling</h3>\n\nThe user can use the following keyboard shortcuts to toggle the checked state of the <code>ui5-checkbox</code>. <ul> <li>[SPACE, ENTER] - Toggles between different states: checked, not checked.</li> </ul> <br><br>\n\n<h3>ES6 Module Import</h3>\n\n<code>import \"@ui5/webcomponents/dist/CheckBox\";</code>",
792
828
  "constructor": { "visibility": "public" },
793
829
  "properties": [
830
+ {
831
+ "name": "accessibleName",
832
+ "visibility": "public",
833
+ "since": "1.1.0",
834
+ "type": "string",
835
+ "description": "Defines the accessible aria name of the component.",
836
+ "defaultValue": "\"\""
837
+ },
838
+ {
839
+ "name": "accessibleNameRef",
840
+ "visibility": "public",
841
+ "since": "1.1.0",
842
+ "type": "string",
843
+ "description": "Receives id(or many ids) of the elements that label the component",
844
+ "defaultValue": "\"\""
845
+ },
794
846
  {
795
847
  "name": "checked",
796
848
  "visibility": "public",
@@ -827,6 +879,14 @@
827
879
  "description": "Defines whether the component is read-only. <br><br> <b>Note:</b> A red-only component is not editable, but still provides visual feedback upon user interaction.",
828
880
  "defaultValue": "false"
829
881
  },
882
+ {
883
+ "name": "required",
884
+ "visibility": "public",
885
+ "since": "1.3.0",
886
+ "type": "boolean",
887
+ "description": "Defines whether the component is required.",
888
+ "defaultValue": "false"
889
+ },
830
890
  {
831
891
  "name": "text",
832
892
  "visibility": "public",
@@ -870,7 +930,7 @@
870
930
  "visibility": "public",
871
931
  "since": "1.0.0-rc.12",
872
932
  "extends": "UI5Element",
873
- "description": "<h3 class=\"comment-api-title\">Overview</h3> The ColorPalette provides the users with a range of predefined colors. The colors are fixed and do not change with the theme.\n\n<h3>Usage</h3>\n\nThe Colorpalette is meant for users that needs to select a color from a predefined set. To define the colors, use the <code>ui5-color-palette-item</code> component inside the default slot of the <code>ui5-color-palette</code>.\n\n<h3>ES6 Module Import</h3>\n\n<code>import \"@ui5/webcomponents/dist/ColorPalette.js\";</code>",
933
+ "description": "<h3 class=\"comment-api-title\">Overview</h3> The <code>ui5-color-palette</code> provides the users with a range of predefined colors. The colors are fixed and do not change with the theme.\n\n<h3>Usage</h3>\n\nThe <code>ui5-color-palette</code> is meant for users that need to select a color from a predefined set. To define the colors, use the <code>ui5-color-palette-item</code> component inside the default slot of the <code>ui5-color-palette</code>.\n\n<h3>ES6 Module Import</h3>\n\n<code>import \"@ui5/webcomponents/dist/ColorPalette.js\";</code>",
874
934
  "constructor": { "visibility": "public" },
875
935
  "properties": [],
876
936
  "slots": [
@@ -879,7 +939,7 @@
879
939
  "propertyName": "colors",
880
940
  "visibility": "public",
881
941
  "type": "sap.ui.webcomponents.main.IColorPaletteItem[]",
882
- "description": "Defines the <code>ui5-color-palette-item</code> items."
942
+ "description": "Defines the <code>ui5-color-palette-item</code> elements."
883
943
  }
884
944
  ],
885
945
  "events": [
@@ -887,7 +947,7 @@
887
947
  "name": "item-click",
888
948
  "visibility": "public",
889
949
  "since": "1.0.0-rc.15",
890
- "parameters": [ { "name": "color", "type": "String", "description": "the selected color" } ],
950
+ "parameters": [ { "name": "color", "type": "string", "description": "the selected color" } ],
891
951
  "description": "Fired when the user selects a color."
892
952
  }
893
953
  ]
@@ -934,8 +994,7 @@
934
994
  "name": "defaultColor",
935
995
  "visibility": "public",
936
996
  "type": "CSSColor",
937
- "description": "Defines the default color of the component. <b>Note:</b> The default color should be a part of the ColorPalette colors</code>",
938
- "defaultValue": "\"\""
997
+ "description": "Defines the default color of the component. <b>Note:</b> The default color should be a part of the ColorPalette colors</code>"
939
998
  },
940
999
  {
941
1000
  "name": "showDefaultColor",
@@ -962,8 +1021,9 @@
962
1021
  "slots": [
963
1022
  {
964
1023
  "name": "default",
1024
+ "propertyName": "colors",
965
1025
  "visibility": "public",
966
- "type": "HTMLElement[]",
1026
+ "type": "sap.ui.webcomponents.main.IColorPaletteItem[]",
967
1027
  "description": "Defines the content of the component."
968
1028
  }
969
1029
  ],
@@ -971,9 +1031,47 @@
971
1031
  {
972
1032
  "name": "item-click",
973
1033
  "visibility": "public",
974
- "parameters": [ { "name": "color", "type": "String", "description": "the selected color" } ],
1034
+ "parameters": [ { "name": "color", "type": "string", "description": "the selected color" } ],
975
1035
  "description": "Fired when the user selects a color."
976
1036
  }
1037
+ ],
1038
+ "methods": [
1039
+ {
1040
+ "name": "isOpen",
1041
+ "visibility": "protected",
1042
+ "since": "1.0.0-rc.16",
1043
+ "returnValue": { "type": "boolean" },
1044
+ "description": "Returns if the component is opened."
1045
+ },
1046
+ {
1047
+ "name": "openPopover",
1048
+ "visibility": "public",
1049
+ "since": "1.0.0-rc.16",
1050
+ "parameters": [
1051
+ {
1052
+ "name": "opener",
1053
+ "type": "HTMLElement",
1054
+ "optional": false,
1055
+ "description": "the element that the popover is shown at"
1056
+ }
1057
+ ],
1058
+ "description": "Shows the ColorPalettePopover. <b>Note:</b> The method is deprecated and will be removed in future, use <code>showAt</code> instead.",
1059
+ "deprecated": { "text": "The method is deprecated in favour of <code>showAt</code>." }
1060
+ },
1061
+ {
1062
+ "name": "showAt",
1063
+ "visibility": "public",
1064
+ "since": "1.1.1",
1065
+ "parameters": [
1066
+ {
1067
+ "name": "opener",
1068
+ "type": "HTMLElement",
1069
+ "optional": false,
1070
+ "description": "the element that the popover is shown at"
1071
+ }
1072
+ ],
1073
+ "description": "Shows the ColorPalettePopover."
1074
+ }
977
1075
  ]
978
1076
  },
979
1077
  {
@@ -987,13 +1085,13 @@
987
1085
  "visibility": "public",
988
1086
  "since": "1.0.0-rc.12",
989
1087
  "extends": "UI5Element",
990
- "description": "<h3 class=\"comment-api-title\">Overview</h3> The ColorPicker allows users to choose any color and provides different input options for selecting colors.\n\n<h3>Usage</h3>\n\n<h4>When to use:</h4 Use the color picker if: <ul> <li> users need to select any color freely.</li> </ul>\n\n<h4>When not to use:</h4> <ul> <li> Users need to select one color from a predefined set of colors. Use the ColorPalette component instead.</li> </ul>\n\n<h3>ES6 Module Import</h3>\n\n<code>import \"@ui5/webcomponents/dist/ColorPicker.js\";</code>",
1088
+ "description": "<h3 class=\"comment-api-title\">Overview</h3> The <code>ui5-color-picker</code> allows users to choose any color and provides different input options for selecting colors.\n\n<h3>Usage</h3>\n\n<h4>When to use:</h4 Use the color picker if: <ul> <li> users need to select any color freely.</li> </ul>\n\n<h4>When not to use:</h4> <ul> <li> Users need to select one color from a predefined set of colors. Use the ColorPalette component instead.</li> </ul>\n\n<h3>ES6 Module Import</h3>\n\n<code>import \"@ui5/webcomponents/dist/ColorPicker.js\";</code>",
991
1089
  "constructor": { "visibility": "public" },
992
1090
  "properties": [
993
1091
  {
994
1092
  "name": "color",
995
1093
  "visibility": "public",
996
- "type": "String",
1094
+ "type": "CSSColor",
997
1095
  "description": "Defines the currently selected color of the component. <br><br> <b>Note</b>: use HEX, RGB, RGBA, HSV formats or a CSS color name when modifying this property."
998
1096
  }
999
1097
  ],
@@ -1018,29 +1116,29 @@
1018
1116
  "visibility": "public",
1019
1117
  "since": "1.0.0-rc.6",
1020
1118
  "extends": "UI5Element",
1021
- "description": "<h3 class=\"comment-api-title\">Overview</h3>\n\nThe <code>ui5-combobox</code> component represents a drop-down menu with a list of the available options and a text input field to narrow down the options.\n\nIt is commonly used to enable users to select one or more options from a predefined list. <h3>Structure</h3> The <code>ui5-combobox</code> consists of the following elements: <ul> <li> Input field - displays the selected option or a custom user entry. Users can type to narrow down the list or enter their own value. <li> Drop-down arrow - expands\\collapses the option list.</li> <li> Option list - the list of available options.</li> </ul> <h3>Keyboard Handling</h3>\n\nThe <code>ui5-combobox</code> provides advanced keyboard handling.\n\n<h4>Picker</h4> If the <code>ui5-combobox</code> is focused, you can open or close the drop-down by pressing <code>F4</code>, <code>ALT+UP</code> or <code>ALT+DOWN</code> keys. <br>\n\n<h3>ES6 Module Import</h3>\n\n<code>import \"@ui5/webcomponents/dist/ComboBox\";</code>",
1119
+ "description": "<h3 class=\"comment-api-title\">Overview</h3>\n\nThe <code>ui5-combobox</code> component represents a drop-down menu with a list of the available options and a text input field to narrow down the options.\n\nIt is commonly used to enable users to select an option from a predefined list.\n\n<h3>Structure</h3> The <code>ui5-combobox</code> consists of the following elements: <ul> <li> Input field - displays the selected option or a custom user entry. Users can type to narrow down the list or enter their own value. <li> Drop-down arrow - expands\\collapses the option list.</li> <li> Option list - the list of available options.</li> </ul>\n\n<h3>Keyboard Handling</h3>\n\nThe <code>ui5-combobox</code> provides advanced keyboard handling. <br>\n\n<ul> <li>[F4], [ALT]+[UP], or [ALT]+[DOWN] - Toggles the picker.</li> <li>[ESC] - Closes the picker, if open. If closed, cancels changes and reverts the typed in value.</li> <li>[ENTER] or [RETURN] - If picker is open, takes over the currently selected item and closes it.</li> <li>[DOWN] - Selects the next matching item in the picker.</li> <li>[UP] - Selects the previous matching item in the picker.</li> <li>[PAGEDOWN] - Moves selection down by page size (10 items by default).</li> <li>[PAGEUP] - Moves selection up by page size (10 items by default). </li> <li>[HOME] - If focus is in the ComboBox, moves cursor at the beginning of text. If focus is in the picker, selects the first item.</li> <li>[END] - If focus is in the ComboBox, moves cursor at the end of text. If focus is in the picker, selects the last item.</li> </ul>\n\n<h3>ES6 Module Import</h3>\n\n<code>import \"@ui5/webcomponents/dist/ComboBox\";</code>",
1022
1120
  "constructor": { "visibility": "public" },
1023
1121
  "properties": [
1024
1122
  {
1025
1123
  "name": "accessibleName",
1026
1124
  "visibility": "public",
1027
1125
  "since": "1.0.0-rc.15",
1028
- "type": "String",
1029
- "description": "Sets the accessible aria name of the component."
1126
+ "type": "string",
1127
+ "description": "Defines the accessible aria name of the component."
1030
1128
  },
1031
1129
  {
1032
1130
  "name": "accessibleNameRef",
1033
1131
  "visibility": "public",
1034
1132
  "since": "1.0.0-rc.15",
1035
- "type": "String",
1036
- "description": "Receives id(or many ids) of the elements that label the combo box",
1133
+ "type": "string",
1134
+ "description": "Receives id(or many ids) of the elements that label the component",
1037
1135
  "defaultValue": "\"\""
1038
1136
  },
1039
1137
  {
1040
1138
  "name": "disabled",
1041
1139
  "visibility": "public",
1042
1140
  "type": "boolean",
1043
- "description": "Defines whether the component is in disabled state. <br><br> <b>Note:</b> A disabled component is completely uninteractive.",
1141
+ "description": "Defines whether the component is in disabled state. <br><br> <b>Note:</b> A disabled component is completely noninteractive.",
1044
1142
  "defaultValue": "false"
1045
1143
  },
1046
1144
  {
@@ -1068,7 +1166,7 @@
1068
1166
  "name": "readonly",
1069
1167
  "visibility": "public",
1070
1168
  "type": "boolean",
1071
- "description": "Defines whether the component is readonly. <br><br> <b>Note:</b> A read-only component is not editable, but still provides visual feedback upon user interaction.",
1169
+ "description": "Defines whether the component is read-only. <br><br> <b>Note:</b> A read-only component is not editable, but still provides visual feedback upon user interaction.",
1072
1170
  "defaultValue": "false"
1073
1171
  },
1074
1172
  {
@@ -1113,7 +1211,7 @@
1113
1211
  "visibility": "public",
1114
1212
  "since": "1.0.0-rc.9",
1115
1213
  "type": "HTMLElement[]",
1116
- "description": "Defines the value state message that will be displayed as pop up under the component. <br><br>\n\n<b>Note:</b> If not specified, a default text (in the respective language) will be displayed. <br> <b>Note:</b> The <code>valueStateMessage</code> would be displayed, when the <code>ui5-select</code> is in <code>Information</code>, <code>Warning</code> or <code>Error</code> value state."
1214
+ "description": "Defines the value state message that will be displayed as pop up under the component. <br><br>\n\n<b>Note:</b> If not specified, a default text (in the respective language) will be displayed. <br> <b>Note:</b> The <code>valueStateMessage</code> would be displayed, when the <code>ui5-combobox</code> is in <code>Information</code>, <code>Warning</code> or <code>Error</code> value state."
1117
1215
  }
1118
1216
  ],
1119
1217
  "events": [
@@ -1262,7 +1360,7 @@
1262
1360
  "visibility": "public",
1263
1361
  "since": "1.0.0-rc.6",
1264
1362
  "type": "string",
1265
- "description": "Determines the мinimum date available for selection.",
1363
+ "description": "Determines the minimum date available for selection.",
1266
1364
  "defaultValue": "\"\""
1267
1365
  },
1268
1366
  {
@@ -1292,7 +1390,7 @@
1292
1390
  "static": true,
1293
1391
  "visibility": "public",
1294
1392
  "extends": "DateComponentBase",
1295
- "description": "<h3 class=\"comment-api-title\">Overview</h3>\n\nThe <code>ui5-date-picker</code> component provides an input field with assigned calendar which opens on user action. The <code>ui5-date-picker</code> allows users to select a localized date using touch, mouse, or keyboard input. It consists of two parts: the date input field and the date picker.\n\n<h3>Usage</h3>\n\nThe user can enter a date by: <ul> <li>Using the calendar that opens in a popup</li> <li>Typing it in directly in the input field</li> </ul> <br><br> When the user makes an entry and chooses the enter key, the calendar shows the corresponding date. When the user directly triggers the calendar display, the actual date is displayed.\n\n<h3>Formatting</h3>\n\nIf a date is entered by typing it into the input field, it must fit to the used date format. <br><br> Supported format options are pattern-based on Unicode LDML Date Format notation. For more information, see <ui5-link target=\"_blank\" href=\"http://unicode.org/reports/tr35/#Date_Field_Symbol_Table\" class=\"api-table-content-cell-link\">UTS #35: Unicode Locale Data Markup Language</ui5-link>. <br><br> For example, if the <code>format-pattern</code> is \"yyyy-MM-dd\", a valid value string is \"2015-07-30\" and the same is displayed in the input.\n\n<h3>Keyboard Handling</h3> The <code>ui5-date-picker</code> provides advanced keyboard handling. If the <code>ui5-date-picker</code> is focused, you can open or close the drop-down by pressing <code>F4</code>, <code>ALT+UP</code> or <code>ALT+DOWN</code> keys. Once the drop-down is opened, you can use the <code>UP</code>, <code>DOWN</code>, <code>LEFT</code>, <code>RIGHT</code> arrow keys to navigate through the dates and select one by pressing the <code>Space</code> or <code>Enter</code> keys. Moreover you can use TAB to reach the buttons for changing month and year. <br>\n\nIf the <code>ui5-date-picker</code> is focused and the picker dialog is not opened the user can increment or decrement the corresponding field of the JS date object referenced by <code>dateValue</code> propery by using the following shortcuts: <br> <ul> <li>[PAGEDOWN] - Decrements the corresponding day of the month by one</li> <li>[SHIFT] + [PAGEDOWN] - Decrements the corresponding month by one</li> <li>[SHIFT] + [CTRL] + [PAGEDOWN] - Decrements the corresponding year by one</li> <li>[PAGEUP] - Increments the corresponding day of the month by one</li> <li>[SHIFT] + [PAGEUP] - Increments the corresponding month by one</li> <li>[SHIFT] + [CTRL] + [PAGEUP] - Increments the corresponding year by one</li> </ul>\n\n<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><br>\n\n<code>import \"@ui5/webcomponents-localization/dist/features/calendar/Buddhist.js\";</code> <br> <code>import \"@ui5/webcomponents-localization/dist/features/calendar/Islamic.js\";</code> <br> <code>import \"@ui5/webcomponents-localization/dist/features/calendar/Japanese.js\";</code> <br> <code>import \"@ui5/webcomponents-localization/dist/features/calendar/Persian.js\";</code> <br><br>\n\nOr, you can use the global configuration and set the <code>calendarType</code> key: <br> <pre><code>&lt;script data-id=\"sap-ui-config\" type=\"application/json\"&gt;\n{\n\t\"calendarType\": \"Japanese\"\n}\n&lt;/script&gt;\n\n<h3>ES6 Module Import</h3>\n\n<code>import \"@ui5/webcomponents/dist/DatePicker\";</code>",
1393
+ "description": "<h3 class=\"comment-api-title\">Overview</h3>\n\nThe <code>ui5-date-picker</code> component provides an input field with assigned calendar which opens on user action. The <code>ui5-date-picker</code> allows users to select a localized date using touch, mouse, or keyboard input. It consists of two parts: the date input field and the date picker.\n\n<h3>Usage</h3>\n\nThe user can enter a date by: <ul> <li>Using the calendar that opens in a popup</li> <li>Typing it in directly in the input field</li> </ul> <br><br> When the user makes an entry and presses the enter key, the calendar shows the corresponding date. When the user directly triggers the calendar display, the actual date is displayed.\n\n<h3>Formatting</h3>\n\nIf a date is entered by typing it into the input field, it must fit to the used date format. <br><br> Supported format options are pattern-based on Unicode LDML Date Format notation. For more information, see <ui5-link target=\"_blank\" href=\"http://unicode.org/reports/tr35/#Date_Field_Symbol_Table\" class=\"api-table-content-cell-link\">UTS #35: Unicode Locale Data Markup Language</ui5-link>. <br><br> For example, if the <code>format-pattern</code> is \"yyyy-MM-dd\", a valid value string is \"2015-07-30\" and the same is displayed in the input.\n\n<h3>Keyboard Handling</h3> The <code>ui5-date-picker</code> provides advanced keyboard handling. If the <code>ui5-date-picker</code> is focused, you can open or close the drop-down by pressing <code>F4</code>, <code>ALT+UP</code> or <code>ALT+DOWN</code> keys. Once the drop-down is opened, you can use the <code>UP</code>, <code>DOWN</code>, <code>LEFT</code>, <code>RIGHT</code> arrow keys to navigate through the dates and select one by pressing the <code>Space</code> or <code>Enter</code> keys. Moreover you can use TAB to reach the buttons for changing month and year. <br>\n\nIf the <code>ui5-date-picker</code> input field is focused and its corresponding picker dialog is not opened, then users can increment or decrement the date referenced by <code>dateValue</code> property by using the following shortcuts: <br> <ul> <li>[PAGEDOWN] - Decrements the corresponding day of the month by one</li> <li>[SHIFT] + [PAGEDOWN] - Decrements the corresponding month by one</li> <li>[SHIFT] + [CTRL] + [PAGEDOWN] - Decrements the corresponding year by one</li> <li>[PAGEUP] - Increments the corresponding day of the month by one</li> <li>[SHIFT] + [PAGEUP] - Increments the corresponding month by one</li> <li>[SHIFT] + [CTRL] + [PAGEUP] - Increments the corresponding year by one</li> </ul>\n\n<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><br>\n\n<code>import \"@ui5/webcomponents-localization/dist/features/calendar/Buddhist.js\";</code> <br> <code>import \"@ui5/webcomponents-localization/dist/features/calendar/Islamic.js\";</code> <br> <code>import \"@ui5/webcomponents-localization/dist/features/calendar/Japanese.js\";</code> <br> <code>import \"@ui5/webcomponents-localization/dist/features/calendar/Persian.js\";</code> <br><br>\n\nOr, you can use the global configuration and set the <code>calendarType</code> key: <br> <pre><code>&lt;script data-id=\"sap-ui-config\" type=\"application/json\"&gt;\n{\n\t\"calendarType\": \"Japanese\"\n}\n&lt;/script&gt;</code></pre>\n\n<h3>ES6 Module Import</h3>\n\n<code>import \"@ui5/webcomponents/dist/DatePicker\";</code>",
1296
1394
  "constructor": { "visibility": "public" },
1297
1395
  "properties": [
1298
1396
  {
@@ -1318,14 +1416,14 @@
1318
1416
  "name": "accessibleName",
1319
1417
  "visibility": "public",
1320
1418
  "since": "1.0.0-rc.15",
1321
- "type": "String",
1419
+ "type": "string",
1322
1420
  "description": "Defines the aria-label attribute for the component."
1323
1421
  },
1324
1422
  {
1325
1423
  "name": "accessibleNameRef",
1326
1424
  "visibility": "public",
1327
1425
  "since": "1.0.0-rc.15",
1328
- "type": "String",
1426
+ "type": "string",
1329
1427
  "description": "Receives id(or many ids) of the elements that label the component.",
1330
1428
  "defaultValue": "\"\""
1331
1429
  },
@@ -1348,7 +1446,7 @@
1348
1446
  "visibility": "public",
1349
1447
  "since": "1.0.0-rc.8",
1350
1448
  "type": "boolean",
1351
- "description": "Defines the visibility of the week numbers column. <br><br>\n\n<b>Note:<b> For calendars other than Gregorian, the week numbers are not displayed regardless of what is set.",
1449
+ "description": "Defines the visibility of the week numbers column. <br><br>\n\n<b>Note:</b> For calendars other than Gregorian, the week numbers are not displayed regardless of what is set.",
1352
1450
  "defaultValue": "false"
1353
1451
  },
1354
1452
  {
@@ -1410,10 +1508,10 @@
1410
1508
  "allowPreventDefault": "true",
1411
1509
  "visibility": "public",
1412
1510
  "parameters": [
1413
- { "name": "value", "type": "String", "description": "The submitted value." },
1511
+ { "name": "value", "type": "string", "description": "The submitted value." },
1414
1512
  {
1415
1513
  "name": "valid",
1416
- "type": "Boolean",
1514
+ "type": "boolean",
1417
1515
  "description": "Indicator if the value is in correct format pattern and in valid range."
1418
1516
  }
1419
1517
  ],
@@ -1424,10 +1522,10 @@
1424
1522
  "allowPreventDefault": "true",
1425
1523
  "visibility": "public",
1426
1524
  "parameters": [
1427
- { "name": "value", "type": "String", "description": "The submitted value." },
1525
+ { "name": "value", "type": "string", "description": "The submitted value." },
1428
1526
  {
1429
1527
  "name": "valid",
1430
- "type": "Boolean",
1528
+ "type": "boolean",
1431
1529
  "description": "Indicator if the value is in correct format pattern and in valid range."
1432
1530
  }
1433
1531
  ],
@@ -1497,6 +1595,7 @@
1497
1595
  {
1498
1596
  "name": "isValid",
1499
1597
  "visibility": "public",
1598
+ "returnValue": { "type": "boolean" },
1500
1599
  "parameters": [
1501
1600
  {
1502
1601
  "name": "value",
@@ -1541,6 +1640,20 @@
1541
1640
  "description": "<h3 class=\"comment-api-title\">Overview</h3> The DateRangePicker enables the users to enter a localized date range using touch, mouse, keyboard input, or by selecting a date range in the calendar.\n\n<h3>Usage</h3> The user can enter a date by: Using the calendar that opens in a popup or typing it in directly in the input field (not available for mobile devices). For the <code>ui5-daterange-picker</code> <h3>ES6 Module Import</h3>\n\n<code>import \"@ui5/webcomponents/dist/DateRangePicker.js\";</code>\n\n<h3>Keyboard Handling</h3> The <code>ui5-daterange-picker</code> provides advanced keyboard handling. <br>\n\nWhen the <code>ui5-daterange-picker</code> input field is focused the user can increment or decrement respectively the range start or end date, depending on where the cursor is. The following shortcuts are available: <br> <ul> <li>[PAGEDOWN] - Decrements the corresponding day of the month by one</li> <li>[SHIFT] + [PAGEDOWN] - Decrements the corresponding month by one</li> <li>[SHIFT] + [CTRL] + [PAGEDOWN] - Decrements the corresponding year by one</li> <li>[PAGEUP] - Increments the corresponding day of the month by one</li> <li>[SHIFT] + [PAGEUP] - Increments the corresponding month by one</li> <li>[SHIFT] + [CTRL] + [PAGEUP] - Increments the corresponding year by one</li> </ul>",
1542
1641
  "constructor": { "visibility": "public" },
1543
1642
  "properties": [
1643
+ {
1644
+ "name": "dateValue",
1645
+ "readonly": "true",
1646
+ "visibility": "public",
1647
+ "type": "Date",
1648
+ "description": "<b>Note:</b> The getter method is inherited and not supported. If called it will return an empty value."
1649
+ },
1650
+ {
1651
+ "name": "dateValueUTC",
1652
+ "readonly": "true",
1653
+ "visibility": "public",
1654
+ "type": "Date",
1655
+ "description": "<b>Note:</b> The getter method is inherited and not supported. If called it will return an empty value."
1656
+ },
1544
1657
  {
1545
1658
  "name": "delimiter",
1546
1659
  "visibility": "public",
@@ -1575,7 +1688,7 @@
1575
1688
  "visibility": "public",
1576
1689
  "since": "1.0.0-rc.7",
1577
1690
  "extends": "DatePicker",
1578
- "description": "<h3 class=\"comment-api-title\">Overview</h3> The <code>DateTimePicker</code> component alows users to select both date (day, month and year) and time (hours, minutes and seconds) and for the purpose it consists of input field and Date/Time picker.\n\n<h3>Usage</h3>\n\nUse the <code>DateTimePicker</code> if you need a combined date and time input component. Don't use it if you want to use either date, or time value. In this case, use the <code>DatePicker</code> or the <code>TimePicker</code> components instead. <br><br> The user can set date/time by: <ul> <li>using the calendar and the time selectors</li> <li>typing in the input field</li> </ul>\n\nProgramatically, to set date/time for the <code>DateTimePicker</code>, use the <code>value</code> property <br><br> As most of the input based components, the <code>DateTimePicker</code> supports properties, such as: <code>disabled</code>, <code>readonly</code>, <code>valueState</code> and <code>placeholder</code>.\n\n<h3>Formatting</h3>\n\nThe value entered by typing into the input field must fit to the used date/time format. <br><br> Supported format options are pattern-based on Unicode LDML Date Format notation. For more information, see <ui5-link target=\"_blank\" href=\"https://unicode.org/reports/tr35/tr35-dates.html#Date_Field_Symbol_Table\" class=\"api-table-content-cell-link\">UTS #35: Unicode Locale Data Markup Language</ui5-link>. <br><br> <b>Example:</b> the following format <code>dd/MM/yyyy, hh:mm:ss aa</code> corresponds the <code>13/04/2020, 03:16:16 AM</code> value. <br> The small 'h' defines \"12\" hours format and the \"aa\" symbols - \"AM/PM\" time periods.\n\n<br><br> <b>Example:</b> the following format <code>dd/MM/yyyy, HH:mm:ss</code> corresponds the <code>13/04/2020, 15:16:16</code> value. <br> The capital 'H' indicates \"24\" hours format.\n\n<br><br> <b>Note:</b> If the <code>formatPattern</code> does NOT include time, the <code>DateTimePicker</code> will fallback to the default time format according to the locale.\n\n<br><br> <b>Note:</b> If no placeholder is set to the <code>DateTimePicker</code>, the current <code>formatPattern</code> is displayed as a placeholder. If another placeholder is needed, it must be set or in case no placeholder is needed - it can be set to an empty string.\n\n<br><br> <b>Note:</b> If the user input does NOT match the <code>formatPattern</code>, the <code>DateTimePicker</code> makes an attempt to parse it based on the locale settings.\n\n<h3>Responsive behavior</h3>\n\nThe <code>DateTimePicker</code> is responsive and fully adapts to all devices. For larger screens, such as tablet or desktop, it is displayed as a popover, while on phone devices, it is displayed full screen.\n\n<h3>ES6 Module Import</h3>\n\n<code>import \"@ui5/webcomponents/dist/DateTimePicker.js\";</code>",
1691
+ "description": "<h3 class=\"comment-api-title\">Overview</h3> The <code>DateTimePicker</code> component alows users to select both date (day, month and year) and time (hours, minutes and seconds) and for the purpose it consists of input field and Date/Time picker.\n\n<h3>Usage</h3>\n\nUse the <code>DateTimePicker</code> if you need a combined date and time input component. Don't use it if you want to use either date, or time value. In this case, use the <code>DatePicker</code> or the <code>TimePicker</code> components instead. <br><br> The user can set date/time by: <ul> <li>using the calendar and the time selectors</li> <li>typing in the input field</li> </ul>\n\nProgramatically, to set date/time for the <code>DateTimePicker</code>, use the <code>value</code> property\n\n<h3>Formatting</h3>\n\nThe value entered by typing into the input field must fit to the used date/time format. <br><br> Supported format options are pattern-based on Unicode LDML Date Format notation. For more information, see <ui5-link target=\"_blank\" href=\"https://unicode.org/reports/tr35/tr35-dates.html#Date_Field_Symbol_Table\" class=\"api-table-content-cell-link\">UTS #35: Unicode Locale Data Markup Language</ui5-link>. <br><br> <b>Example:</b> the following format <code>dd/MM/yyyy, hh:mm:ss aa</code> corresponds the <code>13/04/2020, 03:16:16 AM</code> value. <br> The small 'h' defines \"12\" hours format and the \"aa\" symbols - \"AM/PM\" time periods.\n\n<br><br> <b>Example:</b> the following format <code>dd/MM/yyyy, HH:mm:ss</code> corresponds the <code>13/04/2020, 15:16:16</code> value. <br> The capital 'H' indicates \"24\" hours format.\n\n<br><br> <b>Note:</b> If the <code>formatPattern</code> does NOT include time, the <code>DateTimePicker</code> will fallback to the default time format according to the locale.\n\n<br><br> <b>Note:</b> If no placeholder is set to the <code>DateTimePicker</code>, the current <code>formatPattern</code> is displayed as a placeholder. If another placeholder is needed, it must be set or in case no placeholder is needed - it can be set to an empty string.\n\n<br><br> <b>Note:</b> If the user input does NOT match the <code>formatPattern</code>, the <code>DateTimePicker</code> makes an attempt to parse it based on the locale settings.\n\n<h3>Responsive behavior</h3>\n\nThe <code>DateTimePicker</code> is responsive and fully adapts to all devices. For larger screens, such as tablet or desktop, it is displayed as a popover, while on phone devices, it is displayed full screen.\n\n<h3>ES6 Module Import</h3>\n\n<code>import \"@ui5/webcomponents/dist/DateTimePicker.js\";</code>",
1579
1692
  "constructor": { "visibility": "public" },
1580
1693
  "methods": [ { "name": "openPicker", "visibility": "public", "description": "Opens the picker." } ]
1581
1694
  },
@@ -1660,16 +1773,9 @@
1660
1773
  "static": true,
1661
1774
  "visibility": "public",
1662
1775
  "extends": "Popup",
1663
- "description": "<h3 class=\"comment-api-title\">Overview</h3> The <code>ui5-dialog</code> component is used to temporarily display some information in a size-limited window in front of the regular app screen. It is used to prompt the user for an action or a confirmation. The <code>ui5-dialog</code> interrupts the current app processing as it is the only focused UI element and the main screen is dimmed/blocked. The dialog combines concepts known from other technologies where the windows have names such as dialog box, dialog window, pop-up, pop-up window, alert box, or message box. <br><br> The <code>ui5-dialog</code> is modal, which means that user action is required before returning to the parent window is possible. The content of the <code>ui5-dialog</code> is fully customizable.\n\n<h3>Structure</h3> A <code>ui5-dialog</code> consists of a header, content, and a footer for action buttons. The <code>ui5-dialog</code> is usually displayed at the center of the screen. Its position can be changed by the user. To enable this, you need to set the property <code>draggable</code> accordingly.\n\n<h3>Responsive Behavior</h3> The <code>stretch</code> property can be used to stretch the <code>ui5-dialog</code> on full screen.\n\n<h3>ES6 Module Import</h3>\n\n<code>import \"@ui5/webcomponents/dist/Dialog\";</code>\n\n<b>Note:</b> We don't recommend nesting popup-like components (<code>ui5-dialog</code>, <code>ui5-popover</code>) inside <code>ui5-dialog</code>. Ideally you should create all popups on the same level inside your HTML page and just open them from one another, rather than nesting them.\n\n<b>Note:</b> We don't recommend nesting popup-like components (<code>ui5-dialog</code>, <code>ui5-popover</code>) inside other components containing z-index. This might break z-index management.",
1776
+ "description": "<h3 class=\"comment-api-title\">Overview</h3> The <code>ui5-dialog</code> component is used to temporarily display some information in a size-limited window in front of the regular app screen. It is used to prompt the user for an action or a confirmation. The <code>ui5-dialog</code> interrupts the current app processing as it is the only focused UI element and the main screen is dimmed/blocked. The dialog combines concepts known from other technologies where the windows have names such as dialog box, dialog window, pop-up, pop-up window, alert box, or message box. <br><br> The <code>ui5-dialog</code> is modal, which means that user action is required before returning to the parent window is possible. The content of the <code>ui5-dialog</code> is fully customizable.\n\n<h3>Structure</h3> A <code>ui5-dialog</code> consists of a header, content, and a footer for action buttons. The <code>ui5-dialog</code> is usually displayed at the center of the screen. Its position can be changed by the user. To enable this, you need to set the property <code>draggable</code> accordingly.\n\n<h3>Responsive Behavior</h3> The <code>stretch</code> property can be used to stretch the <code>ui5-dialog</code> on full screen.\n\n<h3>CSS Shadow Parts</h3>\n\n<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> The <code>ui5-dialog</code> exposes the following CSS Shadow Parts: <ul> <li>header - Used to style the header of the component</li> <li>content - Used to style the content of the component</li> <li>footer - Used to style the footer of the component</li> </ul>\n\n<h3>ES6 Module Import</h3>\n\n<code>import \"@ui5/webcomponents/dist/Dialog\";</code>\n\n<b>Note:</b> We don't recommend nesting popup-like components (<code>ui5-dialog</code>, <code>ui5-popover</code>) inside <code>ui5-dialog</code>. Ideally you should create all popups on the same level inside your HTML page and just open them from one another, rather than nesting them.\n\n<b>Note:</b> We don't recommend nesting popup-like components (<code>ui5-dialog</code>, <code>ui5-popover</code>) inside other components containing z-index. This might break z-index management.",
1664
1777
  "constructor": { "visibility": "public" },
1665
1778
  "properties": [
1666
- {
1667
- "name": "accessibleName",
1668
- "visibility": "public",
1669
- "type": "string",
1670
- "description": "Sets the accessible aria name of the component.",
1671
- "defaultValue": "\"\""
1672
- },
1673
1779
  {
1674
1780
  "name": "draggable",
1675
1781
  "visibility": "public",
@@ -1758,7 +1864,7 @@
1758
1864
  "name": "disabled",
1759
1865
  "visibility": "public",
1760
1866
  "type": "boolean",
1761
- "description": "Defines whether the component is in disabled state. <br><br> <b>Note:</b> A disabledcomponent is completely noninteractive.",
1867
+ "description": "Defines whether the component is in disabled state. <br><br> <b>Note:</b> A disabled component is completely noninteractive.",
1762
1868
  "defaultValue": "false"
1763
1869
  },
1764
1870
  {
@@ -1916,7 +2022,7 @@
1916
2022
  "module": "Interfaces",
1917
2023
  "static": true,
1918
2024
  "visibility": "public",
1919
- "description": "Interface for components that may be used inside a <code>ui5-color-palette</code>"
2025
+ "description": "Interface for components that may be used inside a <code>ui5-color-palette</code> or <code>ui5-color-palette-popover</code>"
1920
2026
  },
1921
2027
  {
1922
2028
  "kind": "interface",
@@ -1949,6 +2055,14 @@
1949
2055
  "description": "Defines the text alternative of the component. If not provided a default text alternative will be set, if present. <br><br> <b>Note:</b> Every icon should have a text alternative in order to calculate its accessible name.",
1950
2056
  "defaultValue": "\"\""
1951
2057
  },
2058
+ {
2059
+ "name": "accessibleRole",
2060
+ "visibility": "public",
2061
+ "since": "1.1.0",
2062
+ "type": "string",
2063
+ "description": "Defines the accessibility role of the component.",
2064
+ "defaultValue": "\"\""
2065
+ },
1952
2066
  {
1953
2067
  "name": "interactive",
1954
2068
  "visibility": "public",
@@ -2014,6 +2128,16 @@
2014
2128
  "visibility": "public",
2015
2129
  "description": "Interface for components that may be slotted inside a <code>ui5-list</code> as items"
2016
2130
  },
2131
+ {
2132
+ "kind": "interface",
2133
+ "name": "sap.ui.webcomponents.main.IMenuItem",
2134
+ "basename": "IMenuItem",
2135
+ "resource": "Interfaces.js",
2136
+ "module": "Interfaces",
2137
+ "static": true,
2138
+ "visibility": "public",
2139
+ "description": "Interface for components that may be slotted inside <code>ui5-menu</code> as items"
2140
+ },
2017
2141
  {
2018
2142
  "kind": "interface",
2019
2143
  "name": "sap.ui.webcomponents.main.IMultiComboBoxItem",
@@ -2036,7 +2160,7 @@
2036
2160
  "visibility": "public",
2037
2161
  "extends": "sap.ui.webcomponents.base.UI5Element",
2038
2162
  "implements": [ "sap.ui.webcomponents.main.IInput" ],
2039
- "description": "<h3 class=\"comment-api-title\">Overview</h3>\n\nThe <code>ui5-input</code> component allows the user to enter and edit text or numeric values in one line. <br> Additionally, you can provide <code>suggestionItems</code>, that are displayed in a popover right under the input. <br><br> The text field can be editable or read-only (<code>readonly</code> property), and it can be enabled or disabled (<code>enabled</code> property). To visualize semantic states, such as \"error\" or \"warning\", the <code>valueState</code> property is provided. When the user makes changes to the text, the change event is fired, which enables you to react on any text change. <br><br> <b>Note:</b> If you are using the <code>ui5-input</code> as a single npm module, don't forget to import the <code>InputSuggestions</code> module from \"@ui5/webcomponents/dist/features/InputSuggestions.js\" to enable the suggestions functionality.\n\n<h3>ES6 Module Import</h3>\n\n<code>import \"@ui5/webcomponents/dist/Input.js\";</code> <br> <code>import \"@ui5/webcomponents/dist/features/InputSuggestions.js\";</code> (optional - for input suggestions support)",
2163
+ "description": "<h3 class=\"comment-api-title\">Overview</h3>\n\nThe <code>ui5-input</code> component allows the user to enter and edit text or numeric values in one line. <br> Additionally, you can provide <code>suggestionItems</code>, that are displayed in a popover right under the input. <br><br> The text field can be editable or read-only (<code>readonly</code> property), and it can be enabled or disabled (<code>disabled</code> property). To visualize semantic states, such as \"error\" or \"warning\", the <code>valueState</code> property is provided. When the user makes changes to the text, the change event is fired, which enables you to react on any text change. <br><br> <b>Note:</b> If you are using the <code>ui5-input</code> as a single npm module, don't forget to import the <code>InputSuggestions</code> module from \"@ui5/webcomponents/dist/features/InputSuggestions.js\" to enable the suggestions functionality.\n\n<h3>Keyboard Handling</h3> The <code>ui5-input</code> provides the following keyboard shortcuts: <br>\n\n<ul> <li>[ESC] - Closes the suggestion list, if open. If closed or not enabled, cancels changes and reverts to the value which the Input field had when it got the focus.</li> <li>[ENTER] or [RETURN] - If suggestion list is open takes over the current matching item and closes it. If value state or group header is focused, does nothing.</li> <li>[DOWN] - Focuses the next matching item in the suggestion list.</li> <li>[UP] - Focuses the previous matching item in the suggestion list.</li> <li>[HOME] - If focus is in the text input, moves caret before the first character. If focus is in the list, highlights the first item and updates the input accordingly.</li> <li>[END] - If focus is in the text input, moves caret after the last character. If focus is in the list, highlights the last item and updates the input accordingly.</li> <li>[PAGEUP] - If focus is in the list, moves highlight up by page size (10 items by default). If focus is in the input, does nothing.</li> <li>[PAGEDOWN] - If focus is in the list, moves highlight down by page size (10 items by default). If focus is in the input, does nothing.</li> </ul>\n\n<h3>ES6 Module Import</h3>\n\n<code>import \"@ui5/webcomponents/dist/Input.js\";</code> <br> <code>import \"@ui5/webcomponents/dist/features/InputSuggestions.js\";</code> (optional - for input suggestions support)",
2040
2164
  "constructor": { "visibility": "public" },
2041
2165
  "properties": [
2042
2166
  {
@@ -2049,15 +2173,15 @@
2049
2173
  "name": "accessibleName",
2050
2174
  "visibility": "public",
2051
2175
  "since": "1.0.0-rc.15",
2052
- "type": "String",
2053
- "description": "Sets the accessible aria name of the component."
2176
+ "type": "string",
2177
+ "description": "Defines the accessible aria name of the component."
2054
2178
  },
2055
2179
  {
2056
2180
  "name": "accessibleNameRef",
2057
2181
  "visibility": "public",
2058
2182
  "since": "1.0.0-rc.15",
2059
- "type": "String",
2060
- "description": "Receives id(or many ids) of the elements that label the input",
2183
+ "type": "string",
2184
+ "description": "Receives id(or many ids) of the elements that label the input.",
2061
2185
  "defaultValue": "\"\""
2062
2186
  },
2063
2187
  {
@@ -2098,7 +2222,7 @@
2098
2222
  "name": "previewItem",
2099
2223
  "readonly": "true",
2100
2224
  "visibility": "public",
2101
- "type": "ui5-suggestion-item",
2225
+ "type": "sap.ui.webcomponents.main.IInputSuggestionItem",
2102
2226
  "description": "The suggestion item on preview."
2103
2227
  },
2104
2228
  {
@@ -2116,6 +2240,14 @@
2116
2240
  "description": "Defines whether the component is required.",
2117
2241
  "defaultValue": "false"
2118
2242
  },
2243
+ {
2244
+ "name": "showClearIcon",
2245
+ "visibility": "public",
2246
+ "since": "1.2.0",
2247
+ "type": "boolean",
2248
+ "description": "Defines whether the clear icon of the input will be shown.",
2249
+ "defaultValue": "false"
2250
+ },
2119
2251
  {
2120
2252
  "name": "showSuggestions",
2121
2253
  "visibility": "public",
@@ -2151,7 +2283,7 @@
2151
2283
  "propertyName": "suggestionItems",
2152
2284
  "visibility": "public",
2153
2285
  "type": "sap.ui.webcomponents.main.IInputSuggestionItem[]",
2154
- "description": "Defines the suggestion items. <br><br> Example: <br><br> &lt;ui5-input show-suggestions><br> &nbsp;&nbsp;&nbsp;&nbsp;&lt;ui5-suggestion-item text=\"Item #1\">&lt;/ui5-suggestion-item><br> &nbsp;&nbsp;&nbsp;&nbsp;&lt;ui5-suggestion-item text=\"Item #2\">&lt;/ui5-suggestion-item><br> &lt;/ui5-input> <br> <ui5-input show-suggestions> <ui5-suggestion-group-item text=\"Group #1\"></ui5-suggestion-group-item> <ui5-suggestion-item text=\"Item #1\"></ui5-suggestion-item> <ui5-suggestion-item text=\"Item #2\"></ui5-suggestion-item> <ui5-suggestion-group-item text=\"Group #2\"></ui5-suggestion-group-item> <ui5-suggestion-item text=\"Item #3\"></ui5-suggestion-item> <ui5-suggestion-item text=\"Item #4\"></ui5-suggestion-item> </ui5-input> <br><br> <b>Note:</b> The suggestion would be displayed only if the <code>showSuggestions</code> property is set to <code>true</code>. <br><br> <b>Note:</b> The <code>&lt;ui5-suggestion-item></code> and <code>&lt;ui5-suggestion-group-item><code/> are recommended to be used as suggestion items. <br><br> <b>Note:</b> Importing the Input Suggestions Support feature: <br> <code>import \"@ui5/webcomponents/dist/features/InputSuggestions.js\";</code> <br> automatically imports the <code>&lt;ui5-suggestion-item></code> and <code>&lt;ui5-suggestion-group-item></code> for your convenience."
2286
+ "description": "Defines the suggestion items. <br><br> Example: <br><br> &lt;ui5-input show-suggestions><br> &nbsp;&nbsp;&nbsp;&nbsp;&lt;ui5-suggestion-item text=\"Item #1\">&lt;/ui5-suggestion-item><br> &nbsp;&nbsp;&nbsp;&nbsp;&lt;ui5-suggestion-item text=\"Item #2\">&lt;/ui5-suggestion-item><br> &lt;/ui5-input> <br> <ui5-input show-suggestions> <ui5-suggestion-group-item text=\"Group #1\"></ui5-suggestion-group-item> <ui5-suggestion-item text=\"Item #1\"></ui5-suggestion-item> <ui5-suggestion-item text=\"Item #2\"></ui5-suggestion-item> <ui5-suggestion-group-item text=\"Group #2\"></ui5-suggestion-group-item> <ui5-suggestion-item text=\"Item #3\"></ui5-suggestion-item> <ui5-suggestion-item text=\"Item #4\"></ui5-suggestion-item> </ui5-input> <br><br> <b>Note:</b> The suggestions would be displayed only if the <code>showSuggestions</code> property is set to <code>true</code>. <br><br> <b>Note:</b> The <code>&lt;ui5-suggestion-item&gt;</code> and <code>&lt;ui5-suggestion-group-item&gt;</code> are recommended to be used as suggestion items. <br><br> <b>Note:</b> Importing the Input Suggestions Support feature: <br> <code>import \"@ui5/webcomponents/dist/features/InputSuggestions.js\";</code> <br> automatically imports the <code>&lt;ui5-suggestion-item></code> and <code>&lt;ui5-suggestion-group-item></code> for your convenience."
2155
2287
  },
2156
2288
  {
2157
2289
  "name": "icon",
@@ -2164,7 +2296,7 @@
2164
2296
  "visibility": "public",
2165
2297
  "since": "1.0.0-rc.6",
2166
2298
  "type": "HTMLElement[]",
2167
- "description": "Defines the value state message that will be displayed as pop up under the component. <br><br>\n\n<b>Note:</b> If not specified, a default text (in the respective language) will be displayed. <br> <b>Note:</b> The <code>valueStateMessage</code> would be displayed, when the component is in <code>Information</code>, <code>Warning</code> or <code>Error</code> value state. <br> <b>Note:</b> If the component has <code>suggestionItems</code>, the <code>valueStateMessage</code> would be displayed as part of the same popover, if used on desktop, or dialog - on phone."
2299
+ "description": "Defines the value state message that will be displayed as pop up under the component. <br><br>\n\n<b>Note:</b> If not specified, a default text (in the respective language) will be displayed. <br><br> <b>Note:</b> The <code>valueStateMessage</code> would be displayed, when the component is in <code>Information</code>, <code>Warning</code> or <code>Error</code> value state. <br><br> <b>Note:</b> If the component has <code>suggestionItems</code>, the <code>valueStateMessage</code> would be displayed as part of the same popover, if used on desktop, or dialog - on phone."
2168
2300
  }
2169
2301
  ],
2170
2302
  "events": [
@@ -2186,7 +2318,7 @@
2186
2318
  {
2187
2319
  "name": "item",
2188
2320
  "type": "HTMLElement",
2189
- "description": "The previewed suggestion item"
2321
+ "description": "The previewed suggestion item."
2190
2322
  },
2191
2323
  {
2192
2324
  "name": "targetRef",
@@ -2199,23 +2331,23 @@
2199
2331
  {
2200
2332
  "name": "suggestion-item-select",
2201
2333
  "visibility": "public",
2202
- "parameters": [ { "name": "item", "type": "HTMLElement", "description": "The selected item" } ],
2334
+ "parameters": [ { "name": "item", "type": "HTMLElement", "description": "The selected item." } ],
2203
2335
  "description": "Fired when a suggestion item, that is displayed in the suggestion popup, is selected."
2204
2336
  },
2205
2337
  {
2206
2338
  "name": "suggestion-scroll",
2207
- "visibility": "public",
2339
+ "visibility": "protected",
2208
2340
  "since": "1.0.0-rc.8",
2209
2341
  "parameters": [
2210
2342
  {
2211
2343
  "name": "scrollTop",
2212
2344
  "type": "Integer",
2213
- "description": "The current scroll position"
2345
+ "description": "The current scroll position."
2214
2346
  },
2215
2347
  {
2216
2348
  "name": "scrollContainer",
2217
2349
  "type": "HTMLElement",
2218
- "description": "The scroll container"
2350
+ "description": "The scroll container."
2219
2351
  }
2220
2352
  ],
2221
2353
  "description": "Fired when the user scrolls the suggestion popover."
@@ -2227,6 +2359,12 @@
2227
2359
  "visibility": "protected",
2228
2360
  "description": "Returns the caret position inside the native input"
2229
2361
  },
2362
+ {
2363
+ "name": "openPicker",
2364
+ "visibility": "public",
2365
+ "since": "1.3.0",
2366
+ "description": "Manually opens the suggestions popover, assuming suggestions are enabled. Items must be preloaded for it to open."
2367
+ },
2230
2368
  {
2231
2369
  "name": "setCaretPosition",
2232
2370
  "visibility": "protected",
@@ -2346,7 +2484,7 @@
2346
2484
  "name": "showColon",
2347
2485
  "visibility": "public",
2348
2486
  "type": "boolean",
2349
- "description": "Defines whether semi-colon is added to the component text. <br><br> <b>Note:</b> Usually used in forms.",
2487
+ "description": "Defines whether colon is added to the component text. <br><br> <b>Note:</b> Usually used in forms.",
2350
2488
  "defaultValue": "false"
2351
2489
  },
2352
2490
  {
@@ -2379,11 +2517,27 @@
2379
2517
  "description": "<h3 class=\"comment-api-title\">Overview</h3> The <code>ui5-link</code> is a hyperlink component that is used to navigate to other apps and web pages, or to trigger actions. It is a clickable text element, visualized in such a way that it stands out from the standard text. On hover, it changes its style to an underlined text to provide additional feedback to the user.\n\n<h3>Usage</h3>\n\nYou can set the <code>ui5-link</code> to be enabled or disabled. <br><br> To create a visual hierarchy in large lists of links, you can set the less important links as <code>Subtle</code> or the more important ones as <code>Emphasized</code>, by using the <code>design</code> property. <br><br> If the <code>href</code> property is set, the link behaves as the HTML anchor tag (<code>&lt;a&gt;&lt;a&#47;&gt;</code>) and opens the specified URL in the given target frame (<code>target</code> property). To specify where the linked content is opened, you can use the <code>target</code> property.\n\n<h3>Responsive behavior</h3>\n\nIf there is not enough space, the text of the <code>ui5-link</code> becomes truncated. If the <code>wrappingType</code> property is set to <code>\"Normal\"</code>, the text is displayed on several lines instead of being truncated.\n\n<h3>ES6 Module Import</h3>\n\n<code>import \"@ui5/webcomponents/dist/Link\";</code>",
2380
2518
  "constructor": { "visibility": "public" },
2381
2519
  "properties": [
2520
+ {
2521
+ "name": "accessibilityAttributes",
2522
+ "visibility": "public",
2523
+ "since": "1.1.0",
2524
+ "type": "object",
2525
+ "noattribute": "true",
2526
+ "description": "An object of strings that defines several additional accessibility attribute values for customization depending on the use case.\n\nIt supports the following fields:\n\n<ul> <li><code>expanded</code>: Indicates whether the anchor element, or another grouping element it controls, is currently expanded or collapsed. Accepts the following string values: <ul> <li><code>true</code></li> <li><code>false</code></li> </ul> </li> <li><code>hasPopup</code>: Indicates the availability and type of interactive popup element, such as menu or dialog, that can be triggered by the anchor element. Accepts the following string values: <ul> <li><code>Dialog</code></li> <li><code>Grid</code></li> <li><code>ListBox</code></li> <li><code>Menu</code></li> <li><code>Tree</code></li> </ul> </li> </ul>"
2527
+ },
2528
+ {
2529
+ "name": "accessibleName",
2530
+ "visibility": "public",
2531
+ "since": "1.2.0",
2532
+ "type": "string",
2533
+ "description": "Defines the accessible aria name of the component.",
2534
+ "defaultValue": "\"\""
2535
+ },
2382
2536
  {
2383
2537
  "name": "accessibleNameRef",
2384
2538
  "visibility": "public",
2385
2539
  "since": "1.0.0-rc.15",
2386
- "type": "String",
2540
+ "type": "string",
2387
2541
  "description": "Receives id(or many ids) of the elements that label the input",
2388
2542
  "defaultValue": "\"\""
2389
2543
  },
@@ -2398,7 +2552,7 @@
2398
2552
  "name": "disabled",
2399
2553
  "visibility": "public",
2400
2554
  "type": "boolean",
2401
- "description": "Defines whether the component is disabled. <br><br> <b>Note:</b> When disabled, the component cannot be triggered by the user.",
2555
+ "description": "Defines whether the component is disabled. <br><br> <b>Note:</b> When disabled, the click event cannot be triggered by the user.",
2402
2556
  "defaultValue": "false"
2403
2557
  },
2404
2558
  {
@@ -2451,32 +2605,32 @@
2451
2605
  "static": true,
2452
2606
  "visibility": "public",
2453
2607
  "extends": "UI5Element",
2454
- "description": "<h3 class=\"comment-api-title\">Overview</h3>\n\nThe <code>ui5-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><br> The <code>ui5-list</code> is а container for the available list items: <ul> <li><code>ui5-li</code></li> <li><code>ui5-li-custom</code></li> <li><code>ui5-li-groupheader</code></li> </ul> <br><br> To benefit from the built-in selection mechanism, you can use the available selection modes, such as <code>SingleSelect</code>, <code>MultiSelect</code> and <code>Delete</code>. <br><br> Additionally, the <code>ui5-list</code> provides header, footer, and customization for the list item separators.\n\n<br><br> <h3>Keyboard Handling</h3> The <code>ui5-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>\n\n<ul> <li>[UP/DOWN] - Navigates up and down the items</li> <li>[HOME] - Navigates to first item</li> <li>[END] - Navigates to the last item</li> </ul>\n\nThe user can use the following keyboard shortcuts to perform actions (such as select, delete), when the <code>mode</code> property is in use: <ul> <li>[SPACE] - Select an item (if <code>type</code> is 'Active') when <code>mode</code> is selection</li> <li>[DELETE] - Delete an item if <code>mode</code> property is <code>Delete</code></li> </ul> <br><br>\n\n<h3>ES6 Module Import</h3>\n\n<code>import \"@ui5/webcomponents/dist/List.js\";</code> <br> <code>import \"@ui5/webcomponents/dist/StandardListItem.js\";</code> (for <code>ui5-li</code>) <br> <code>import \"@ui5/webcomponents/dist/CustomListItem.js\";</code> (for <code>ui5-li-custom</code>) <br> <code>import \"@ui5/webcomponents/dist/GroupHeaderListItem.js\";</code> (for <code>ui5-li-groupheader</code>)",
2608
+ "description": "<h3 class=\"comment-api-title\">Overview</h3>\n\nThe <code>ui5-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><br> The <code>ui5-list</code> is a container for the available list items: <ul> <li><code>ui5-li</code></li> <li><code>ui5-li-custom</code></li> <li><code>ui5-li-groupheader</code></li> </ul> <br><br> To benefit from the built-in selection mechanism, you can use the available selection modes, such as <code>SingleSelect</code>, <code>MultiSelect</code> and <code>Delete</code>. <br><br> Additionally, the <code>ui5-list</code> provides header, footer, and customization for the list item separators.\n\n<br><br> <h3>Keyboard Handling</h3>\n\n<h4>Basic Navigation</h4> The <code>ui5-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>\n\n<ul> <li>[UP/DOWN] - Navigates up and down the items</li> <li>[HOME] - Navigates to first item</li> <li>[END] - Navigates to the last item</li> </ul>\n\nThe user can use the following keyboard shortcuts to perform actions (such as select, delete), when the <code>mode</code> property is in use: <ul> <li>[SPACE] - Select an item (if <code>type</code> is 'Active') when <code>mode</code> is selection</li> <li>[DELETE] - Delete an item if <code>mode</code> property is <code>Delete</code></li> </ul>\n\n<h4>Fast Navigation</h4> This component provides a build in fast navigation group which can be used via <code>F6 / Shift + F6</code> or <code> Ctrl + Alt(Option) + Down / Ctrl + Alt(Option) + Up</code>. In order to use this functionality, you need to import the following module: <code>import \"@ui5/webcomponents-base/dist/features/F6Navigation.js\"</code> <br><br>\n\n<h3>ES6 Module Import</h3>\n\n<code>import \"@ui5/webcomponents/dist/List.js\";</code> <br> <code>import \"@ui5/webcomponents/dist/StandardListItem.js\";</code> (for <code>ui5-li</code>) <br> <code>import \"@ui5/webcomponents/dist/CustomListItem.js\";</code> (for <code>ui5-li-custom</code>) <br> <code>import \"@ui5/webcomponents/dist/GroupHeaderListItem.js\";</code> (for <code>ui5-li-groupheader</code>)",
2455
2609
  "constructor": { "visibility": "public" },
2456
2610
  "properties": [
2457
2611
  {
2458
2612
  "name": "accessibleName",
2459
2613
  "visibility": "public",
2460
2614
  "since": "1.0.0-rc.15",
2461
- "type": "String",
2462
- "description": "Sets the accessible aria name of the component.",
2615
+ "type": "string",
2616
+ "description": "Defines the accessible name of the component.",
2463
2617
  "defaultValue": "\"\""
2464
2618
  },
2465
2619
  {
2466
2620
  "name": "accessibleNameRef",
2467
2621
  "visibility": "public",
2468
2622
  "since": "1.0.0-rc.15",
2469
- "type": "String",
2470
- "description": "Receives id(or many ids) of the elements that label the input",
2623
+ "type": "string",
2624
+ "description": "Defines the IDs of the elements that label the input.",
2471
2625
  "defaultValue": "\"\""
2472
2626
  },
2473
2627
  {
2474
2628
  "name": "accessibleRole",
2475
2629
  "visibility": "public",
2476
2630
  "since": "1.0.0-rc.15",
2477
- "type": "String",
2478
- "description": "Defines the accessible role of the component. <br><br> <b>Note:</b> If you use notification list items, it's recommended to set <code>accessible-role=\"list\"</code> for better accessibility.",
2479
- "defaultValue": "\"listbox\""
2631
+ "type": "string",
2632
+ "description": "Defines the accessible role of the component. <br><br>",
2633
+ "defaultValue": "\"list\""
2480
2634
  },
2481
2635
  {
2482
2636
  "name": "busy",
@@ -2505,7 +2659,7 @@
2505
2659
  "visibility": "public",
2506
2660
  "since": "1.0.0-rc.13",
2507
2661
  "type": "ListGrowingMode",
2508
- "description": "Defines whether the component will have growing capability either by pressing a <code>More</code> button, or via user scroll. In both cases <code>load-more</code> event is fired. <br><br>\n\nAvailable options: <br><br> <code>Button</code> - Shows a <code>More</code> button at the bottom of the list, pressing of which triggers the <code>load-more</code> event. <br> <code>Scroll</code> - The <code>load-more</code> event is triggered when the user scrolls to the bottom of the list; <br> <code>None</code> (default) - The growing is off. <br><br>\n\n<b>Limitations:</b> <code>growing=\"Scroll\"</code> is not supported for Internet Explorer, on IE the component will fallback to <code>growing=\"Button\"</code>.",
2662
+ "description": "Defines whether the component will have growing capability either by pressing a <code>More</code> button, or via user scroll. In both cases <code>load-more</code> event is fired. <br><br>\n\nAvailable options: <br><br> <code>Button</code> - Shows a <code>More</code> button at the bottom of the list, pressing of which triggers the <code>load-more</code> event. <br> <code>Scroll</code> - The <code>load-more</code> event is triggered when the user scrolls to the bottom of the list; <br> <code>None</code> (default) - The growing is off. <br><br>\n\n<b>Restrictions:</b> <code>growing=\"Scroll\"</code> is not supported for Internet Explorer, on IE the component will fallback to <code>growing=\"Button\"</code>.",
2509
2663
  "defaultValue": "\"None\""
2510
2664
  },
2511
2665
  {
@@ -2519,7 +2673,7 @@
2519
2673
  "name": "indent",
2520
2674
  "visibility": "public",
2521
2675
  "type": "boolean",
2522
- "description": "Determines whether the list items are indented.",
2676
+ "description": "Determines whether the component is indented.",
2523
2677
  "defaultValue": "false"
2524
2678
  },
2525
2679
  {
@@ -2562,6 +2716,7 @@
2562
2716
  "events": [
2563
2717
  {
2564
2718
  "name": "item-click",
2719
+ "allowPreventDefault": "true",
2565
2720
  "visibility": "public",
2566
2721
  "parameters": [ { "name": "item", "type": "HTMLElement", "description": "The clicked item." } ],
2567
2722
  "description": "Fired when an item is activated, unless the item's <code>type</code> property is set to <code>Inactive</code>."
@@ -2617,6 +2772,11 @@
2617
2772
  }
2618
2773
  ],
2619
2774
  "methods": [
2775
+ {
2776
+ "name": "focusFirstItem",
2777
+ "visibility": "protected",
2778
+ "description": "Focuses the first list item and sets its tabindex to \"0\" via the ItemNavigation"
2779
+ },
2620
2780
  {
2621
2781
  "name": "focusItem",
2622
2782
  "visibility": "protected",
@@ -2685,18 +2845,140 @@
2685
2845
  ],
2686
2846
  "slots": []
2687
2847
  },
2848
+ {
2849
+ "kind": "class",
2850
+ "name": "sap.ui.webcomponents.main.Menu",
2851
+ "basename": "Menu",
2852
+ "tagname": "ui5-menu",
2853
+ "appenddocs": "MenuItem",
2854
+ "resource": "Menu.js",
2855
+ "module": "Menu",
2856
+ "static": true,
2857
+ "visibility": "public",
2858
+ "since": "1.3.0",
2859
+ "extends": "UI5Element",
2860
+ "description": "<h3 class=\"comment-api-title\">Overview</h3>\n\n<code>ui5-menu</code> component represents a hierarchical menu structure.\n\n<h3>Usage</h3>\n\n<code>ui5-menu</code> contains <code>ui5-menu-item</code> components. An arbitrary hierarchy structure can be represented by recursively nesting menu items.\n\n<h3>Keyboard Handling</h3>\n\nThe <code>ui5-menu</code> provides advanced keyboard handling. The user can use the following keyboard shortcuts in order to navigate trough the tree: <ul> <li><code>Arrow Up</code> / <code>Arrow Down</code> - Navigates up and down the menu items that are currently visible.</li> <li><code>Arrow Right</code>, <code>Space</code> or <code>Enter</code> - Opens a sub-menu if there are menu items nested in the currently clicked menu item.</li> <li><code>Arrow Left</code> or <code>Escape</code> - Closes the currently opened sub-menu.</li> </ul> Note: if the text ditrection is set to Right-to-left (RTL), <code>Arrow Right</code> and <code>Arrow Left</code> functionality is swapped. <br>\n\n<h3>ES6 Module Import</h3>\n\n<code>import @ui5/webcomponents/dist/Menu.js\";</code>",
2861
+ "constructor": { "visibility": "public" },
2862
+ "properties": [
2863
+ {
2864
+ "name": "headerText",
2865
+ "visibility": "public",
2866
+ "type": "string",
2867
+ "description": "Defines the header text of the menu (displayed on mobile).",
2868
+ "defaultValue": "\"\""
2869
+ }
2870
+ ],
2871
+ "slots": [
2872
+ {
2873
+ "name": "default",
2874
+ "propertyName": "items",
2875
+ "visibility": "public",
2876
+ "type": "sap.ui.webcomponents.main.IMenuItem[]",
2877
+ "description": "Defines the items of this component."
2878
+ }
2879
+ ],
2880
+ "events": [
2881
+ {
2882
+ "name": "item-click",
2883
+ "visibility": "public",
2884
+ "parameters": [
2885
+ {
2886
+ "name": "item",
2887
+ "type": "object",
2888
+ "description": "The currently clicked menu item."
2889
+ },
2890
+ {
2891
+ "name": "text",
2892
+ "type": "string",
2893
+ "description": "The text of the currently clicked menu item."
2894
+ }
2895
+ ],
2896
+ "description": "Fired when an item is being clicked."
2897
+ }
2898
+ ],
2899
+ "methods": [
2900
+ { "name": "close", "visibility": "public", "description": "Closes the Menu." },
2901
+ {
2902
+ "name": "showAt",
2903
+ "visibility": "public",
2904
+ "parameters": [
2905
+ {
2906
+ "name": "opener",
2907
+ "type": "HTMLElement",
2908
+ "optional": false,
2909
+ "description": "the element that the popover is shown at"
2910
+ }
2911
+ ],
2912
+ "description": "Shows the Menu near the opener element."
2913
+ }
2914
+ ]
2915
+ },
2916
+ {
2917
+ "kind": "class",
2918
+ "name": "sap.ui.webcomponents.main.MenuItem",
2919
+ "basename": "MenuItem",
2920
+ "tagname": "ui5-menu-item",
2921
+ "resource": "MenuItem.js",
2922
+ "module": "MenuItem",
2923
+ "static": true,
2924
+ "visibility": "public",
2925
+ "since": "1.3.0",
2926
+ "extends": "UI5Element",
2927
+ "implements": [ "sap.ui.webcomponents.main.IMenuItem" ],
2928
+ "description": "<h3 class=\"comment-api-title\">Overview</h3>\n\n<code>ui5-menu-item</code> is the item to use inside a <code>ui5-menu</code>. An arbitrary hierarchy structure can be represented by recursively nesting menu items.\n\n<h3>Usage</h3>\n\n<code>ui5-menu-item</code> is an abstract element, representing a node in a <code>ui5-menu</code>. The menu itself is rendered as a list, and each <code>ui5-menu-item</code> is represented by a list item (<code>ui5-li</code>) in that list. Therefore, you should only use <code>ui5-menu-item</code> directly in your apps. The <code>ui5-li</code> list item is internal for the list, and not intended for public use.\n\nFor the <code>ui5-menu-item</code> <h3>ES6 Module Import</h3>\n\n<code>import @ui5/webcomponents/dist/MenuItem.js\";</code>",
2929
+ "constructor": { "visibility": "public" },
2930
+ "properties": [
2931
+ {
2932
+ "name": "disabled",
2933
+ "visibility": "public",
2934
+ "type": "boolean",
2935
+ "description": "Defines whether <code>ui5-menu-item</code> is in disabled state. <br><br> <b>Note:</b> A disabled <code>ui5-menu-item</code> is noninteractive.",
2936
+ "defaultValue": "false"
2937
+ },
2938
+ {
2939
+ "name": "icon",
2940
+ "visibility": "public",
2941
+ "type": "string",
2942
+ "description": "Defines the icon to be displayed as graphical element within the component. The SAP-icons font provides numerous options. <br><br> <b>* Example:</b> See all the available icons in the <ui5-link target=\"_blank\" href=\"https://openui5.hana.ondemand.com/test-resources/sap/m/demokit/iconExplorer/webapp/index.html\" class=\"api-table-content-cell-link\">Icon Explorer</ui5-link>.",
2943
+ "defaultValue": "\"\""
2944
+ },
2945
+ {
2946
+ "name": "startsSection",
2947
+ "visibility": "public",
2948
+ "type": "boolean",
2949
+ "description": "Defines whether a visual separator should be rendered before the item.",
2950
+ "defaultValue": "false"
2951
+ },
2952
+ {
2953
+ "name": "text",
2954
+ "visibility": "public",
2955
+ "type": "String",
2956
+ "description": "Defines the text of the tree item.",
2957
+ "defaultValue": "\"\""
2958
+ }
2959
+ ],
2960
+ "slots": [
2961
+ {
2962
+ "name": "default",
2963
+ "propertyName": "items",
2964
+ "visibility": "public",
2965
+ "type": "sap.ui.webcomponents.main.IMenuItem[]",
2966
+ "description": "Defines the items of this component."
2967
+ }
2968
+ ]
2969
+ },
2688
2970
  {
2689
2971
  "kind": "class",
2690
2972
  "name": "sap.ui.webcomponents.main.MessageStrip",
2691
2973
  "basename": "MessageStrip",
2692
- "tagname": "ui5-messagestrip",
2974
+ "tagname": "ui5-message-strip",
2693
2975
  "resource": "MessageStrip.js",
2694
2976
  "module": "MessageStrip",
2695
2977
  "static": true,
2696
2978
  "visibility": "public",
2697
2979
  "since": "0.9.0",
2698
2980
  "extends": "UI5Element",
2699
- "description": "<h3 class=\"comment-api-title\">Overview</h3>\n\nThe <code>ui5-messagestrip</code> component enables the embedding of app-related messages. It displays 4 designs of messages, each with corresponding semantic color and icon: Information, Positive, Warning and Negative. Each message can have a Close button, so that it can be removed from the UI, if needed.\n\n<h3>Usage</h3>\n\nFor the <code>ui5-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.\n\n<h3>ES6 Module Import</h3>\n\n<code>import \"@ui5/webcomponents/dist/MessageStrip\";</code>",
2981
+ "description": "<h3 class=\"comment-api-title\">Overview</h3>\n\nThe <code>ui5-message-strip</code> component enables the embedding of app-related messages. It displays 4 designs of messages, each with corresponding semantic color and icon: Information, Positive, Warning and Negative. Each message can have a Close button, so that it can be removed from the UI, if needed.\n\n<h3>Usage</h3>\n\nFor the <code>ui5-message-strip</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.\n\n<h3>Keyboard Handling</h3>\n\n<h4>Fast Navigation</h4> This component provides a build in fast navigation group which can be used via <code>F6 / Shift + F6</code> or <code> Ctrl + Alt(Option) + Down / Ctrl + Alt(Option) + Up</code>. In order to use this functionality, you need to import the following module: <code>import \"@ui5/webcomponents-base/dist/features/F6Navigation.js\"</code> <br><br>\n\n<h3>ES6 Module Import</h3>\n\n<code>import \"@ui5/webcomponents/dist/MessageStrip\";</code>",
2700
2982
  "constructor": { "visibility": "public" },
2701
2983
  "properties": [
2702
2984
  {
@@ -2711,7 +2993,7 @@
2711
2993
  "name": "hideCloseButton",
2712
2994
  "visibility": "public",
2713
2995
  "type": "boolean",
2714
- "description": "Defines whether the MessageStrip renders close icon.",
2996
+ "description": "Defines whether the MessageStrip renders close button.",
2715
2997
  "defaultValue": "false"
2716
2998
  },
2717
2999
  {
@@ -2814,7 +3096,7 @@
2814
3096
  "visibility": "public",
2815
3097
  "since": "0.11.0",
2816
3098
  "extends": "UI5Element",
2817
- "description": "<h3 class=\"comment-api-title\">Overview</h3>\n\nThe <code>ui5-multi-combobox</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.\n\nIt 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>ui5-multi-combobox</code> consists of the following elements: <ul> <li> Tokenizer - a list of tokens with selected options. <li> Input field - displays the selected option/s as token/s. Users can type to filter the list. <li> Drop-down arrow - expands\\collapses the option list.</li> <li> Option list - the list of available options.</li> </ul> <h3>Keyboard Handling</h3>\n\nThe <code>ui5-multi-combobox</code> provides advanced keyboard handling.\n\n<h4>Picker</h4> If the <code>ui5-multi-combobox</code> is focused, you can open or close the drop-down by pressing <code>F4</code>, <code>ALT+UP</code> or <code>ALT+DOWN</code> keys. Once the drop-down is opened, you can use the <code>UP</code> and <code>DOWN</code> arrow keys to navigate through the available options and select one by pressing the <code>Space</code> or <code>Enter</code> keys. <br>\n\n<h4>Tokens</h4> <ul> <li> Left/Right arrow keys - moves the focus selection form the currently focused token to the previous/next one (if available). </li> <li> Delete - deletes the token and focuses the previous token. </li> <li> Backspace - deletes the token and focus the next token. </li> </ul>\n\nIn the context of <code>ui5-multi-combobox</code>, you can provide a custom stable DOM ref for: <ul> <li>Every <code>ui5-mcb-item</code> that you provide. Example: <code><ui5-mcb-item stable-dom-ref=\"item1\"></ui5-mcb-item></code></li> </ul>\n\n<h3>CSS Shadow Parts</h3>\n\n<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> The <code>ui5-multi-combobox</code> exposes the following CSS Shadow Parts: <ul> <li>token-{index} - Used to style each token(where <code>token-0</code> corresponds to the first item)</li> </ul>\n\n<h3>ES6 Module Import</h3>\n\n<code>import \"@ui5/webcomponents/dist/MultiComboBox\";</code>",
3099
+ "description": "<h3 class=\"comment-api-title\">Overview</h3>\n\nThe <code>ui5-multi-combobox</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.\n\nThe 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>ui5-multi-combobox</code> consists of the following elements: <ul> <li> Tokenizer - a list of tokens with selected options. <li> Input field - displays the selected option/s as token/s. Users can type to filter the list. <li> Drop-down arrow - expands\\collapses the option list.</li> <li> Option list - the list of available options.</li> </ul> <h3>Keyboard Handling</h3>\n\nThe <code>ui5-multi-combobox</code> provides advanced keyboard handling.\n\n<h4>Picker</h4> If the <code>ui5-multi-combobox</code> is focused, you can open or close the drop-down by pressing <code>F4</code>, <code>ALT+UP</code> or <code>ALT+DOWN</code> keys. Once the drop-down is opened, you can use the <code>UP</code> and <code>DOWN</code> arrow keys to navigate through the available options and select one by pressing the <code>Space</code> or <code>Enter</code> keys. <br>\n\n<h4>Tokens</h4> <ul> <li> Left/Right arrow keys - moves the focus selection form the currently focused token to the previous/next one (if available). </li> <li> Delete - deletes the token and focuses the previous token. </li> <li> Backspace - deletes the token and focus the next token. </li> </ul>\n\n<h3>CSS Shadow Parts</h3>\n\n<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> The <code>ui5-multi-combobox</code> exposes the following CSS Shadow Parts: <ul> <li>token-{index} - Used to style each token(where <code>token-0</code> corresponds to the first item)</li> </ul>\n\n<h3>ES6 Module Import</h3>\n\n<code>import \"@ui5/webcomponents/dist/MultiComboBox\";</code>",
2818
3100
  "constructor": { "visibility": "public" },
2819
3101
  "properties": [
2820
3102
  {
@@ -2954,13 +3236,6 @@
2954
3236
  "type": "boolean",
2955
3237
  "description": "Defines the selected state of the component.",
2956
3238
  "defaultValue": "false"
2957
- },
2958
- {
2959
- "name": "stableDomRef",
2960
- "visibility": "public",
2961
- "since": "1.0.0-rc.11",
2962
- "type": "string",
2963
- "description": "Defines the stable selector that you can use via getStableDomRef method."
2964
3239
  }
2965
3240
  ],
2966
3241
  "slots": []
@@ -2990,7 +3265,7 @@
2990
3265
  "name": "showValueHelpIcon",
2991
3266
  "visibility": "public",
2992
3267
  "type": "boolean",
2993
- "description": "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.",
3268
+ "description": "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.",
2994
3269
  "defaultValue": "false"
2995
3270
  }
2996
3271
  ],
@@ -3030,6 +3305,13 @@
3030
3305
  "description": "<h3 class=\"comment-api-title\">Overview</h3>\n\nThe <code>ui5-option</code> component defines the content of an option in the <code>ui5-select</code>.",
3031
3306
  "constructor": { "visibility": "public" },
3032
3307
  "properties": [
3308
+ {
3309
+ "name": "additionalText",
3310
+ "visibility": "public",
3311
+ "since": "1.3.0",
3312
+ "type": "string",
3313
+ "description": "Defines the additional text displayed at the end of the option element."
3314
+ },
3033
3315
  {
3034
3316
  "name": "disabled",
3035
3317
  "visibility": "public",
@@ -3051,13 +3333,6 @@
3051
3333
  "description": "Defines the selected state of the component.",
3052
3334
  "defaultValue": "false"
3053
3335
  },
3054
- {
3055
- "name": "stableDomRef",
3056
- "visibility": "public",
3057
- "since": "1.0.0-rc.11",
3058
- "type": "string",
3059
- "description": "Defines the stable selector that you can use via getStableDomRef method."
3060
- },
3061
3336
  {
3062
3337
  "name": "value",
3063
3338
  "visibility": "public",
@@ -3084,7 +3359,7 @@
3084
3359
  "static": true,
3085
3360
  "visibility": "public",
3086
3361
  "extends": "sap.ui.webcomponents.base.UI5Element",
3087
- "description": "<h3 class=\"comment-api-title\">Overview</h3>\n\nThe <code>ui5-panel</code> component is a container which has a header and a content area and is used for grouping and displaying information. It can be collapsed to save space on the screen.\n\n<h3>Guidelines:</h3> <ul> <li>Nesting two or more panels is not recommended.</li> <li>Do not stack too many panels on one page.</li> </ul>\n\n<h3>Structure</h3> A panel consists of a title bar with a header text or custom header. <br> 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> 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><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.\n\n<h3>Responsive Behavior</h3> <ul> <li>If the width of the panel is set to 100% (default), the panel and its children are resized responsively, depending on its parent container.</li> <li>If the panel has a fixed height, it will take up the space even if the panel is collapsed.</li> <li>When the panel is expandable (the <code>fixed</code> property is set to <code>false</code>), an arrow icon (pointing to the right) appears in front of the header.</li> <li>When the animation is activated, expand/collapse uses a smooth animation to open or close the content area.</li> <li>When the panel expands/collapses, the arrow icon rotates 90 degrees clockwise/counter-clockwise.</li> </ul>\n\n<h3>CSS Shadow Parts</h3>\n\n<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> The <code>ui5-panel</code> exposes the following CSS Shadow Parts: <ul> <li>content - Used to style the wrapper of the content</li> </ul>\n\n<h3>ES6 Module Import</h3>\n\n<code>import \"@ui5/webcomponents/dist/Panel\";</code>",
3362
+ "description": "<h3 class=\"comment-api-title\">Overview</h3>\n\nThe <code>ui5-panel</code> component is a container which has a header and a content area and is used for grouping and displaying information. It can be collapsed to save space on the screen.\n\n<h3>Guidelines:</h3> <ul> <li>Nesting two or more panels is not recommended.</li> <li>Do not stack too many panels on one page.</li> </ul>\n\n<h3>Structure</h3> The panel's header area consists of a title bar with a header text or custom header. <br> 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> 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> The content area can contain an arbitrary set of controls. <br><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.\n\n<h3>Responsive Behavior</h3> <ul> <li>If the width of the panel is set to 100% (default), the panel and its children are resized responsively, depending on its parent container.</li> <li>If the panel has a fixed height, it will take up the space even if the panel is collapsed.</li> <li>When the panel is expandable (the <code>fixed</code> property is set to <code>false</code>), an arrow icon (pointing to the right) appears in front of the header.</li> <li>When the animation is activated, expand/collapse uses a smooth animation to open or close the content area.</li> <li>When the panel expands/collapses, the arrow icon rotates 90 degrees clockwise/counter-clockwise.</li> </ul>\n\n<h3>CSS Shadow Parts</h3>\n\n<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> The <code>ui5-panel</code> exposes the following CSS Shadow Parts: <ul> <li>content - Used to style the wrapper of the content</li> </ul>\n\n<h3>Keyboard Handling</h3>\n\n<h4>Fast Navigation</h4> This component provides a build in fast navigation group which can be used via <code>F6 / Shift + F6</code> or <code> Ctrl + Alt(Option) + Down / Ctrl + Alt(Option) + Up</code>. In order to use this functionality, you need to import the following module: <code>import \"@ui5/webcomponents-base/dist/features/F6Navigation.js\"</code> <br><br>\n\n<h3>ES6 Module Import</h3>\n\n<code>import \"@ui5/webcomponents/dist/Panel\";</code>",
3088
3363
  "constructor": { "visibility": "public" },
3089
3364
  "properties": [
3090
3365
  {
@@ -3092,7 +3367,7 @@
3092
3367
  "visibility": "public",
3093
3368
  "since": "1.0.0-rc.15",
3094
3369
  "type": "string",
3095
- "description": "Sets the accessible aria name of the component.",
3370
+ "description": "Defines the accessible aria name of the component.",
3096
3371
  "defaultValue": "\"\""
3097
3372
  },
3098
3373
  {
@@ -3172,7 +3447,7 @@
3172
3447
  "visibility": "public",
3173
3448
  "since": "1.0.0-rc.6",
3174
3449
  "extends": "Popup",
3175
- "description": "<h3 class=\"comment-api-title\">Overview</h3>\n\nThe <code>ui5-popover</code> component displays additional information for an object in a compact way and without leaving the page. The Popover can contain various UI elements, such as fields, tables, images, and charts. It can also include actions in the footer.\n\n<h3>Structure</h3>\n\nThe popover has three main areas: <ul> <li>Header (optional)</li> <li>Content</li> <li>Footer (optional)</li> </ul>\n\n<b>Note:</b> The <code>ui5-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.\n\n<h3>ES6 Module Import</h3>\n\n<code>import \"@ui5/webcomponents/dist/Popover.js\";</code>",
3450
+ "description": "<h3 class=\"comment-api-title\">Overview</h3>\n\nThe <code>ui5-popover</code> component displays additional information for an object in a compact way and without leaving the page. The Popover can contain various UI elements, such as fields, tables, images, and charts. It can also include actions in the footer.\n\n<h3>Structure</h3>\n\nThe popover has three main areas: <ul> <li>Header (optional)</li> <li>Content</li> <li>Footer (optional)</li> </ul>\n\n<b>Note:</b> The <code>ui5-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.\n\n<h3>CSS Shadow Parts</h3>\n\n<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> The <code>ui5-popover</code> exposes the following CSS Shadow Parts: <ul> <li>header - Used to style the header of the component</li> <li>content - Used to style the content of the component</li> <li>footer - Used to style the footer of the component</li> </ul>\n\n<h3>ES6 Module Import</h3>\n\n<code>import \"@ui5/webcomponents/dist/Popover.js\";</code>",
3176
3451
  "constructor": { "visibility": "public" },
3177
3452
  "properties": [
3178
3453
  {
@@ -3219,6 +3494,14 @@
3219
3494
  "description": "Defines whether the component should close when clicking/tapping outside of the popover. If enabled, it blocks any interaction with the background.",
3220
3495
  "defaultValue": "false"
3221
3496
  },
3497
+ {
3498
+ "name": "opener",
3499
+ "visibility": "public",
3500
+ "since": "1.2.0",
3501
+ "type": "String",
3502
+ "description": "Defines the opener id of the element that the popover is shown at",
3503
+ "defaultValue": "\"\""
3504
+ },
3222
3505
  {
3223
3506
  "name": "placementType",
3224
3507
  "visibility": "public",
@@ -3281,7 +3564,7 @@
3281
3564
  "static": true,
3282
3565
  "visibility": "public",
3283
3566
  "extends": "sap.ui.webcomponents.base.UI5Element",
3284
- "description": "<h3 class=\"comment-api-title\">Overview</h3> Base class for all popup Web Components.\n\nIf you need to create your own popup-like custom UI5 Web Components, it is highly recommended that you extend at least Popup in order to have consistency with other popups in terms of modal behavior and z-index management.\n\n1. The Popup class handles modality: - The \"isModal\" getter can be overridden by derivatives to provide their own conditions when they are modal or not - Derivatives may call the \"blockBodyScrolling\" and \"unblockBodyScrolling\" static methods to temporarily remove scrollbars on the body - Derivatives may call the \"open\" and \"close\" methods which handle focus, manage the popup registry and for modal popups, manage the blocking layer\n\n2. Provides blocking layer (relevant for modal popups only): - It is in the static area - Controlled by the \"open\" and \"close\" methods\n\n3. The Popup class \"traps\" focus: - Derivatives may call the \"applyInitialFocus\" method (usually when opening, to transfer focus inside the popup)\n\n4. The Popup class automatically assigns \"z-index\" - Each time a popup is opened, it gets a higher than the previously opened popup z-index\n\n5. The template of this component exposes two inline partials you can override in derivatives: - beforeContent (upper part of the box, useful for header/title/close button) - afterContent (lower part, useful for footer/action buttons)",
3567
+ "description": "<h3 class=\"comment-api-title\">Overview</h3> Base class for all popup Web Components.\n\nIf you need to create your own popup-like custom UI5 Web Components, it is highly recommended that you extend at least Popup in order to have consistency with other popups in terms of modal behavior and z-index management.\n\n1. The Popup class handles modality: - The \"isModal\" getter can be overridden by derivatives to provide their own conditions when they are modal or not - Derivatives may call the \"blockPageScrolling\" and \"unblockPageScrolling\" static methods to temporarily remove scrollbars on the html element - Derivatives may call the \"open\" and \"close\" methods which handle focus, manage the popup registry and for modal popups, manage the blocking layer\n\n2. Provides blocking layer (relevant for modal popups only): - It is in the static area - Controlled by the \"open\" and \"close\" methods\n\n3. The Popup class \"traps\" focus: - Derivatives may call the \"applyInitialFocus\" method (usually when opening, to transfer focus inside the popup)\n\n4. The Popup class automatically assigns \"z-index\" - Each time a popup is opened, it gets a higher than the previously opened popup z-index\n\n5. The template of this component exposes two inline partials you can override in derivatives: - beforeContent (upper part of the box, useful for header/title/close button) - afterContent (lower part, useful for footer/action buttons)",
3285
3568
  "constructor": { "visibility": "public" },
3286
3569
  "properties": [
3287
3570
  {
@@ -3306,8 +3589,16 @@
3306
3589
  "name": "accessibleName",
3307
3590
  "visibility": "public",
3308
3591
  "since": "1.0.0-rc.15",
3309
- "type": "String",
3310
- "description": "Sets the accessible aria name of the component.",
3592
+ "type": "string",
3593
+ "description": "Defines the accessible name of the component.",
3594
+ "defaultValue": "\"\""
3595
+ },
3596
+ {
3597
+ "name": "accessibleNameRef",
3598
+ "visibility": "public",
3599
+ "since": "1.1.0",
3600
+ "type": "string",
3601
+ "description": "Defines the IDs of the elements that label the component.",
3311
3602
  "defaultValue": "\"\""
3312
3603
  },
3313
3604
  {
@@ -3323,6 +3614,14 @@
3323
3614
  "type": "undefined",
3324
3615
  "description": "Implement this getter with relevant logic regarding the modality of the popup (e.g. based on a public property)"
3325
3616
  },
3617
+ {
3618
+ "name": "open",
3619
+ "visibility": "public",
3620
+ "since": "1.2.0",
3621
+ "type": "boolean",
3622
+ "description": "Indicates if the element is open",
3623
+ "defaultValue": "false"
3624
+ },
3326
3625
  {
3327
3626
  "name": "preventFocusRestore",
3328
3627
  "visibility": "public",
@@ -3341,6 +3640,7 @@
3341
3640
  "slots": [
3342
3641
  {
3343
3642
  "name": "default",
3643
+ "propertyName": "content",
3344
3644
  "visibility": "public",
3345
3645
  "type": "HTMLElement[]",
3346
3646
  "description": "Defines the content of the Popup."
@@ -3410,10 +3710,10 @@
3410
3710
  "description": "Use this method to focus the element denoted by \"initialFocus\", if provided, or the first focusable element otherwise."
3411
3711
  },
3412
3712
  {
3413
- "name": "blockBodyScrolling",
3713
+ "name": "blockPageScrolling",
3414
3714
  "visibility": "protected",
3415
3715
  "static": true,
3416
- "description": "Temporarily removes scrollbars from the body"
3716
+ "description": "Temporarily removes scrollbars from the html element"
3417
3717
  },
3418
3718
  {
3419
3719
  "name": "close",
@@ -3437,10 +3737,10 @@
3437
3737
  "description": "Returns the focus to the previously focused element"
3438
3738
  },
3439
3739
  {
3440
- "name": "unblockBodyScrolling",
3740
+ "name": "unblockPageScrolling",
3441
3741
  "visibility": "protected",
3442
3742
  "static": true,
3443
- "description": "Restores scrollbars on the body, if needed"
3743
+ "description": "Restores scrollbars on the html element, if needed"
3444
3744
  }
3445
3745
  ]
3446
3746
  },
@@ -3465,6 +3765,12 @@
3465
3765
  "description": "Defines whether component is in disabled state.",
3466
3766
  "defaultValue": "false"
3467
3767
  },
3768
+ {
3769
+ "name": "displayValue",
3770
+ "visibility": "public",
3771
+ "type": "string",
3772
+ "description": "Specifies the text value to be displayed in the bar.\n\n<b>Note:</b> <ul> <li>If there is no value provided or the value is empty, the default percentage value is shown.</li> <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> </ul>"
3773
+ },
3468
3774
  {
3469
3775
  "name": "hideValue",
3470
3776
  "visibility": "public",
@@ -3502,6 +3808,14 @@
3502
3808
  "description": "<h3 class=\"comment-api-title\">Overview</h3>\n\nThe <code>ui5-radio-button</code> component enables users to select a single option from a set of options. When a <code>ui5-radio-button</code> is selected by the user, the <code>change</code> event is fired. When a <code>ui5-radio-button</code> that is within a group is selected, the one that was previously selected gets automatically deselected. You can group radio buttons by using the <code>name</code> property. <br> <b>Note:</b> If <code>ui5-radio-button</code> is not part of a group, it can be selected once, but can not be deselected back.\n\n<h3>Keyboard Handling</h3>\n\nOnce the <code>ui5-radio-button</code> is on focus, it might be selected by pressing the Space and Enter keys. <br> The Arrow Down/Arrow Up and Arrow Left/Arrow Right keys can be used to change selection between next/previous radio buttons in one group, while TAB and SHIFT + TAB can be used to enter or leave the radio button group. <br> <b>Note:</b> On entering radio button group, the focus goes to the currently selected radio button.\n\n<h3>ES6 Module Import</h3>\n\n<code>import \"@ui5/webcomponents/dist/RadioButton\";</code>",
3503
3809
  "constructor": { "visibility": "public" },
3504
3810
  "properties": [
3811
+ {
3812
+ "name": "accessibleNameRef",
3813
+ "visibility": "public",
3814
+ "since": "1.1.0",
3815
+ "type": "string",
3816
+ "description": "Defines the IDs of the elements that label the component.",
3817
+ "defaultValue": "\"\""
3818
+ },
3505
3819
  {
3506
3820
  "name": "checked",
3507
3821
  "visibility": "public",
@@ -3549,7 +3863,7 @@
3549
3863
  "name": "valueState",
3550
3864
  "visibility": "public",
3551
3865
  "type": "ValueState",
3552
- "description": "Defines the value state of the component. <br><br> Available options are: <ul> <li><code>None</code></li> <li><code>Error</code></li> <li><code>Warning</code></li> </ul>",
3866
+ "description": "Defines the value state of the component. <br><br> Available options are: <ul> <li><code>None</code></li> <li><code>Error</code></li> <li><code>Warning</code></li> <li><code>Success</code></li> <li><code>Information</code></li> </ul>",
3553
3867
  "defaultValue": "\"None\""
3554
3868
  },
3555
3869
  {
@@ -3581,7 +3895,7 @@
3581
3895
  "visibility": "public",
3582
3896
  "since": "1.0.0-rc.11",
3583
3897
  "extends": "SliderBase",
3584
- "description": "Represents a numerical interval and two handles (grips) to select a sub-range within it.\n\n<h3 class=\"comment-api-title\">Overview</h3> The purpose of the component to enable visual selection of sub-ranges within a given interval.\n\n<h3>Structure</h3> The most important properties of the Range Slider are: <ul> <li>min - The minimum value of the slider range</li> <li>max - The maximum value of the slider range</li> <li>value - The current value of the slider</li> <li>step - Determines the increments in which the slider will move</li> <li>showTooltip - Determines if a tooltip should be displayed above the handle</li> <li>showTickmarks - Displays a visual divider between the step values</li> <li>labelInterval - Labels some or all of the tickmarks with their values.</li> </ul> <h4>Notes:</h4> <ul> <li>The right and left handle can be moved individually and their positions could therefore switch.</li> <li>The entire range can be moved along the interval.</li> </ul> <h3>Usage</h3> The most common use case is to select and move sub-ranges on a continuous numerical scale.\n\n<h3>Responsive Behavior</h3> You can move the currently selected range by clicking on it and dragging it along the interval.\n\n<h3>Keyboard Handling</h3>\n\n<ul> <li><code>Left or Down Arrow</code> - Moves a component's handle or the entire selection one step to the left;</li> <li><code>Right or Up Arrow</code> - Moves a component's handle or the entire selection one step to the right;</li> <li><code>Left or Down Arrow + Ctrl/Cmd</code> - Moves a component's handle to the left or the entire range with step equal to 1/10th of the entire range;</li> <li><code>Right or Up Arrow + Ctrl/Cmd</code> - Moves a component's handle to the right or the entire range with step equal to 1/10th of the entire range;</li> <li><code>Plus</code> - Same as <code>Right or Up Arrow</code></li> <li><code>Minus</code> - Same as <code>Left or Down Arrow</code></li> <li><code>Home</code> - Moves the entire selection or the selected handle to the beginning of the component's range;</li> <li><code>End</code> - Moves the entire selection or the selected handle to the end of the component's range;</li> <li><code>Page Up</code> - Same as <code>Right or Up Arrow + Ctrl/Cmd</code></li> <li><code>Page Down</code> - Same as <code>Left or Down Arrow + Ctrl/Cmd</code></li> <li><code>Escape</code> - Resets the <code>startValue</code> and <code>endValue</code> properties to the values prior the component focusing;</li> </ul>\n\n<h3>ES6 Module Import</h3>\n\n<code>import \"@ui5/webcomponents/dist/RangeSlider\";</code>",
3898
+ "description": "<h3 class=\"comment-api-title\">Overview</h3> Represents a numerical interval and two handles (grips) to select a sub-range within it. The purpose of the component to enable visual selection of sub-ranges within a given interval.\n\n<h3>Structure</h3> The most important properties of the Range Slider are: <ul> <li>min - The minimum value of the slider range.</li> <li>max - The maximum value of the slider range.</li> <li>value - The current value of the slider.</li> <li>step - Determines the increments in which the slider will move.</li> <li>showTooltip - Determines if a tooltip should be displayed above the handle.</li> <li>showTickmarks - Displays a visual divider between the step values.</li> <li>labelInterval - Labels some or all of the tickmarks with their values.</li> </ul> <h4>Notes:</h4> <ul> <li>The right and left handle can be moved individually and their positions could therefore switch.</li> <li>The entire range can be moved along the interval.</li> </ul> <h3>Usage</h3> The most common use case is to select and move sub-ranges on a continuous numerical scale.\n\n<h3>Responsive Behavior</h3> You can move the currently selected range by clicking on it and dragging it along the interval.\n\n<h3>Keyboard Handling</h3>\n\n<ul> <li><code>Left or Down Arrow</code> - Moves a component's handle or the entire selection one step to the left;</li> <li><code>Right or Up Arrow</code> - Moves a component's handle or the entire selection one step to the right;</li> <li><code>Left or Down Arrow + Ctrl/Cmd</code> - Moves a component's handle to the left or the entire range with step equal to 1/10th of the entire range;</li> <li><code>Right or Up Arrow + Ctrl/Cmd</code> - Moves a component's handle to the right or the entire range with step equal to 1/10th of the entire range;</li> <li><code>Plus</code> - Same as <code>Right or Up Arrow</code>;</li> <li><code>Minus</code> - Same as <code>Left or Down Arrow</code>;</li> <li><code>Home</code> - Moves the entire selection or the selected handle to the beginning of the component's range;</li> <li><code>End</code> - Moves the entire selection or the selected handle to the end of the component's range;</li> <li><code>Page Up</code> - Same as <code>Right or Up Arrow + Ctrl/Cmd</code>;</li> <li><code>Page Down</code> - Same as <code>Left or Down Arrow + Ctrl/Cmd</code>;</li> <li><code>Escape</code> - Resets the <code>startValue</code> and <code>endValue</code> properties to the values prior the component focusing;</li> </ul>\n\n<h3>ES6 Module Import</h3>\n\n<code>import \"@ui5/webcomponents/dist/RangeSlider\";</code>",
3585
3899
  "constructor": { "visibility": "public" },
3586
3900
  "properties": [
3587
3901
  {
@@ -3619,15 +3933,15 @@
3619
3933
  "visibility": "public",
3620
3934
  "since": "1.0.0-rc.8",
3621
3935
  "extends": "UI5Element",
3622
- "description": "<h3 class=\"comment-api-title\">Overview</h3> The RatingIndicator is used to display a specific number of icons that are used to rate an item. Additionally, it is also used to display the average and overall ratings.\n\n<h3>Usage</h3> The recommended number of icons is between 5 and 7.\n\n<h3>Responsive Behavior</h3> You can change the size of the Rating Indicator by changing its <code>font-size</code> CSS property. <br> Example: <code>&lt;ui5-rating-indicator style=\"font-size: 3rem;\">&lt;/ui5-rating-indicator></code>\n\n<h3>ES6 Module Import</h3>\n\n<code>import \"@ui5/webcomponents/dist/RatingIndicator.js\";</code>",
3936
+ "description": "<h3 class=\"comment-api-title\">Overview</h3> The Rating Indicator is used to display a specific number of icons that are used to rate an item. Additionally, it is also used to display the average and overall ratings.\n\n<h3>Usage</h3> The recommended number of icons is between 5 and 7.\n\n<h3>Responsive Behavior</h3> You can change the size of the Rating Indicator by changing its <code>font-size</code> CSS property. <br> Example: <code>&lt;ui5-rating-indicator style=\"font-size: 3rem;\">&lt;/ui5-rating-indicator></code>\n\n<h3>Keyboard Handling</h3> When the <code>ui5-rating-indicator</code> is focused, the user can change the rating with the following keyboard shortcuts: <br>\n\n<ul> <li>[RIGHT/UP] - Increases the value of the rating by one step. If the highest value is reached, does nothing</li> <li>[LEFT/DOWN] - Decreases the value of the rating by one step. If the lowest value is reached, does nothing.</li> <li>[HOME] - Sets the lowest value.</li> <li>[END] - Sets the highest value.</li> <li>[SPACE/ENTER/RETURN] - Increases the value of the rating by one step. If the highest value is reached, sets the rating to the lowest value.</li> <li>Any number - Changes value to the corresponding number. If typed number is larger than the number of values, sets the highest value.</li> </ul>\n\n<h3>ES6 Module Import</h3>\n\n<code>import \"@ui5/webcomponents/dist/RatingIndicator.js\";</code>",
3623
3937
  "constructor": { "visibility": "public" },
3624
3938
  "properties": [
3625
3939
  {
3626
3940
  "name": "accessibleName",
3627
3941
  "visibility": "public",
3628
3942
  "since": "1.0.0-rc.15",
3629
- "type": "String",
3630
- "description": "Sets the accessible aria name of the component."
3943
+ "type": "string",
3944
+ "description": "Defines the accessible aria name of the component."
3631
3945
  },
3632
3946
  {
3633
3947
  "name": "disabled",
@@ -3641,7 +3955,7 @@
3641
3955
  "visibility": "public",
3642
3956
  "since": "1.0.0-rc.15",
3643
3957
  "type": "Integer",
3644
- "description": "The number of displayed rating symbols",
3958
+ "description": "The number of displayed rating symbols.",
3645
3959
  "defaultValue": "5"
3646
3960
  },
3647
3961
  {
@@ -3655,7 +3969,7 @@
3655
3969
  "name": "value",
3656
3970
  "visibility": "public",
3657
3971
  "type": "Float",
3658
- "description": "The indicated value of the rating <br><br> <b>Note:</b> If you set a number which is not round, it would be shown as follows: <ul> <li>1.0 - 1.2 -> 1</li> <li>1.3 - 1.7 -> 1.5</li> <li>1.8 - 1.9 -> 2</li> <ul>",
3972
+ "description": "The indicated value of the rating. <br><br> <b>Note:</b> If you set a number which is not round, it would be shown as follows: <ul> <li>1.0 - 1.2 -> 1</li> <li>1.3 - 1.7 -> 1.5</li> <li>1.8 - 1.9 -> 2</li> <ul>",
3659
3973
  "defaultValue": "0"
3660
3974
  }
3661
3975
  ],
@@ -3679,7 +3993,7 @@
3679
3993
  "visibility": "public",
3680
3994
  "since": "1.0.0-rc.6",
3681
3995
  "extends": "Popover",
3682
- "description": "<h3 class=\"comment-api-title\">Overview</h3> The <code>ui5-responsive-popover</code> acts as a Popover on desktop and tablet, while on phone it acts as a Dialog. The component improves tremendously the user experience on mobile.\n\n<h3>Usage</h3> Use it when you want to make sure that all the content is visible on any device.",
3996
+ "description": "<h3 class=\"comment-api-title\">Overview</h3> The <code>ui5-responsive-popover</code> acts as a Popover on desktop and tablet, while on phone it acts as a Dialog. The component improves tremendously the user experience on mobile.\n\n<h3>Usage</h3> Use it when you want to make sure that all the content is visible on any device.\n\n<h3>CSS Shadow Parts</h3>\n\n<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> The <code>ui5-responsive-popover</code> exposes the following CSS Shadow Parts: <ul> <li>header - Used to style the header of the component</li> <li>content - Used to style the content of the component</li> <li>footer - Used to style the footer of the component</li> </ul>",
3683
3997
  "constructor": { "visibility": "public" },
3684
3998
  "methods": [
3685
3999
  { "name": "close", "visibility": "public", "description": "Closes the popover/dialog." },
@@ -3727,11 +4041,18 @@
3727
4041
  "description": "<h3 class=\"comment-api-title\">Overview</h3>\n\nThe <code>ui5-segmented-button</code> shows a group of items. When the user clicks or taps one of the items, it stays in a pressed state. It automatically resizes the items to fit proportionally within the component. When no width is set, the component uses the available width. <br><br> <b>Note:</b> There can be just one selected <code>item</code> at a time.\n\n<h3>ES6 Module Import</h3>\n\n<code>import \"@ui5/webcomponents/dist/SegmentedButton\";</code>",
3728
4042
  "constructor": { "visibility": "public" },
3729
4043
  "properties": [
4044
+ {
4045
+ "name": "accessibleName",
4046
+ "visibility": "public",
4047
+ "since": "1.0.3",
4048
+ "type": "string",
4049
+ "description": "Defines the accessible aria name of the component."
4050
+ },
3730
4051
  {
3731
4052
  "name": "selectedItem",
3732
4053
  "readonly": "true",
3733
4054
  "visibility": "public",
3734
- "type": "ui5-segmented-button-item",
4055
+ "type": "sap.ui.webcomponents.main.ISegmentedButtonItem",
3735
4056
  "description": "Currently selected item."
3736
4057
  }
3737
4058
  ],
@@ -3805,21 +4126,21 @@
3805
4126
  "visibility": "public",
3806
4127
  "since": "0.8.0",
3807
4128
  "extends": "sap.ui.webcomponents.base.UI5Element",
3808
- "description": "<h3 class=\"comment-api-title\">Overview</h3> The <code>ui5-select</code> component is used to create a drop-down list. The items inside the <code>ui5-select</code> define the available options by using the <code>ui5-option</code> component.\n\n<h3>Keyboard Handling</h3> The <code>ui5-select</code> provides advanced keyboard handling. <br> <ul> <li>[F4, ALT+UP, ALT+DOWN, SPACE, ENTER] - Opens/closes the drop-down.</li> <li>[UP, DOWN] - If the drop-down is closed - changes selection to the next or the previous option. If the drop-down is opened - moves focus to the next or the previous option.</li> <li>[SPACE, ENTER] - If the drop-down is opened - selects the focused option.</li> <li>[ESC] - Closes the drop-down without changing the selection.</li> <li>[HOME] - Navigates to first option</li> <li>[END] - Navigates to the last option</li> </ul> <br>\n\n<h3>Stable DOM Refs</h3>\n\nIn the context of <code>ui5-select</code>, you can provide a custom stable DOM ref for: <ul> <li>Every <code>ui5-option</code> that you provide. Example: <code><ui5-option stable-dom-ref=\"option1\"></ui5-option></code></li> </ul>\n\n<h3>ES6 Module Import</h3> <code>import \"@ui5/webcomponents/dist/Select\";</code> <br> <code>import \"@ui5/webcomponents/dist/Option\";</code>",
4129
+ "description": "<h3 class=\"comment-api-title\">Overview</h3> The <code>ui5-select</code> component is used to create a drop-down list. The items inside the <code>ui5-select</code> define the available options by using the <code>ui5-option</code> component.\n\n<h3>Keyboard Handling</h3> The <code>ui5-select</code> provides advanced keyboard handling. <br> <ul> <li>[F4, ALT+UP, ALT+DOWN, SPACE, ENTER] - Opens/closes the drop-down.</li> <li>[UP, DOWN] - If the drop-down is closed - changes selection to the next or the previous option. If the drop-down is opened - moves focus to the next or the previous option.</li> <li>[SPACE, ENTER] - If the drop-down is opened - selects the focused option.</li> <li>[ESC] - Closes the drop-down without changing the selection.</li> <li>[HOME] - Navigates to first option</li> <li>[END] - Navigates to the last option</li> </ul> <br>\n\n<h3>ES6 Module Import</h3> <code>import \"@ui5/webcomponents/dist/Select\";</code> <br> <code>import \"@ui5/webcomponents/dist/Option\";</code> (comes with <code>ui5-select</code>)",
3809
4130
  "constructor": { "visibility": "public" },
3810
4131
  "properties": [
3811
4132
  {
3812
4133
  "name": "accessibleName",
3813
4134
  "visibility": "public",
3814
4135
  "since": "1.0.0-rc.15",
3815
- "type": "String",
3816
- "description": "Sets the accessible aria name of the component."
4136
+ "type": "string",
4137
+ "description": "Defines the accessible aria name of the component."
3817
4138
  },
3818
4139
  {
3819
4140
  "name": "accessibleNameRef",
3820
4141
  "visibility": "public",
3821
4142
  "since": "1.0.0-rc.15",
3822
- "type": "String",
4143
+ "type": "string",
3823
4144
  "description": "Receives id(or many ids) of the elements that label the select.",
3824
4145
  "defaultValue": "\"\""
3825
4146
  },
@@ -3849,7 +4170,7 @@
3849
4170
  "name": "selectedOption",
3850
4171
  "readonly": "true",
3851
4172
  "visibility": "public",
3852
- "type": "ui5-option",
4173
+ "type": "sap.ui.webcomponents.main.ISelectOption",
3853
4174
  "description": "Currently selected option."
3854
4175
  },
3855
4176
  {
@@ -3902,7 +4223,7 @@
3902
4223
  "visibility": "public",
3903
4224
  "since": "1.0.0-rc.11",
3904
4225
  "extends": "SliderBase",
3905
- "description": "<h3 class=\"comment-api-title\">Overview</h3> The Slider component represents a numerical range and a handle (grip). The purpose of the component is to enable visual selection of a value in a continuous numerical range by moving an adjustable handle.\n\n<h3>Structure</h3> The most important properties of the Slider are: <ul> <li>min - The minimum value of the slider range</li> <li>max - The maximum value of the slider range</li> <li>value - The current value of the slider</li> <li>step - Determines the increments in which the slider will move</li> <li>showTooltip - Determines if a tooltip should be displayed above the handle</li> <li>showTickmarks - Displays a visual divider between the step values</li> <li>labelInterval - Labels some or all of the tickmarks with their values.</li> </ul>\n\n<h3>Usage</h3> The most common usecase is to select values on a continuous numerical scale (e.g. temperature, volume, etc. ).\n\n<h3>Responsive Behavior</h3> The <code>ui5-slider</code> component adjusts to the size of its parent container by recalculating and resizing the width of the control. You can move the slider handle in several different ways: <ul> <li>Drag and drop to the desired value</li> <li>Click/tap on the range bar to move the handle to that location</li> </ul>\n\n<h3>CSS Shadow Parts</h3>\n\n<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> The <code>ui5-slider</code> exposes the following CSS Shadow Parts: <ul> <li>progress-container - Used to style the progress container(the thin line) of the <code>ui5-slider</code></li> <li>progress-bar - Used to style the progress bar, which shows the progress of the <code>ui5-slider</code></li> <li>handle - Used to style the handle of the <code>ui5-slider</code></li> </ul>\n\n<h3>Keyboard Handling</h3>\n\n<ul> <li><code>Left or Down Arrow</code> - Moves the handle one step to the left, effectively decreasing the component's value by <code>step</code> amount;</li> <li><code>Right or Up Arrow</code> - Moves the handle one step to the right, effectively increasing the component's value by <code>step</code> amount;</li> <li><code>Left or Down Arrow + Ctrl/Cmd</code> - Moves the handle to the left with step equal to 1/10th of the entire range, effectively decreasing the component's value by 1/10th of the range;</li> <li><code>Right or Up Arrow + Ctrl/Cmd</code> - Moves the handle to the right with step equal to 1/10th of the entire range, effectively increasing the component's value by 1/10th of the range;</li> <li><code>Plus</code> - Same as <code>Right or Up Arrow</code></li> <li><code>Minus</code> - Same as <code>Left or Down Arrow</code></li> <li><code>Home</code> - Moves the handle to the beginning of the range;</li> <li><code>End</code> - Moves the handle to the end of the range;</li> <li><code>Page Up</code> - Same as <code>Right or Up + Ctrl/Cmd</code></li> <li><code>Page Down</code> - Same as <code>Left or Down + Ctrl/Cmd</code></li> <li><code>Escape</code> - Resets the value property after interaction, to the position prior the component's focusing;</li> </ul>\n\n<h3>ES6 Module Import</h3>\n\n<code>import \"@ui5/webcomponents/dist/Slider\";</code>",
4226
+ "description": "<h3 class=\"comment-api-title\">Overview</h3> The Slider component represents a numerical range and a handle (grip). The purpose of the component is to enable visual selection of a value in a continuous numerical range by moving an adjustable handle.\n\n<h3>Structure</h3> The most important properties of the Slider are: <ul> <li>min - The minimum value of the slider range.</li> <li>max - The maximum value of the slider range.</li> <li>value - The current value of the slider range.</li> <li>step - Determines the increments in which the slider will move.</li> <li>showTooltip - Determines if a tooltip should be displayed above the handle.</li> <li>showTickmarks - Displays a visual divider between the step values.</li> <li>labelInterval - Labels some or all of the tickmarks with their values.</li> </ul>\n\n<h3>Usage</h3> The most common use case is to select values on a continuous numerical scale (e.g. temperature, volume, etc. ).\n\n<h3>Responsive Behavior</h3> The <code>ui5-slider</code> component adjusts to the size of its parent container by recalculating and resizing the width of the control. You can move the slider handle in several different ways: <ul> <li>Drag and drop the handle to the desired value.</li> <li>Click/tap on the range bar to move the handle to that location.</li> </ul>\n\n<h3>CSS Shadow Parts</h3>\n\n<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> The <code>ui5-slider</code> exposes the following CSS Shadow Parts: <ul> <li>progress-container - Used to style the progress container(the horizontal bar which visually represents the range between the minimum and maximum value) of the <code>ui5-slider</code>.</li> <li>progress-bar - Used to style the progress bar, which shows the progress of the <code>ui5-slider</code>.</li> <li>handle - Used to style the handle of the <code>ui5-slider</code>.</li> </ul>\n\n<h3>Keyboard Handling</h3>\n\n<ul> <li><code>Left or Down Arrow</code> - Moves the handle one step to the left, effectively decreasing the component's value by <code>step</code> amount;</li> <li><code>Right or Up Arrow</code> - Moves the handle one step to the right, effectively increasing the component's value by <code>step</code> amount;</li> <li><code>Left or Down Arrow + Ctrl/Cmd</code> - Moves the handle to the left with step equal to 1/10th of the entire range, effectively decreasing the component's value by 1/10th of the range;</li> <li><code>Right or Up Arrow + Ctrl/Cmd</code> - Moves the handle to the right with step equal to 1/10th of the entire range, effectively increasing the component's value by 1/10th of the range;</li> <li><code>Plus</code> - Same as <code>Right or Up Arrow</code>;</li> <li><code>Minus</code> - Same as <code>Left or Down Arrow</code>;</li> <li><code>Home</code> - Moves the handle to the beginning of the range;</li> <li><code>End</code> - Moves the handle to the end of the range;</li> <li><code>Page Up</code> - Same as <code>Right or Up + Ctrl/Cmd</code>;</li> <li><code>Page Down</code> - Same as <code>Left or Down + Ctrl/Cmd</code>;</li> <li><code>Escape</code> - Resets the value property after interaction, to the position prior the component's focusing;</li> </ul>\n\n<h3>ES6 Module Import</h3>\n\n<code>import \"@ui5/webcomponents/dist/Slider\";</code>",
3906
4227
  "constructor": { "visibility": "public" },
3907
4228
  "properties": [
3908
4229
  {
@@ -3946,21 +4267,21 @@
3946
4267
  "name": "max",
3947
4268
  "visibility": "public",
3948
4269
  "type": "Float",
3949
- "description": "Defines the maximum value of the slider",
4270
+ "description": "Defines the maximum value of the slider.",
3950
4271
  "defaultValue": "100"
3951
4272
  },
3952
4273
  {
3953
4274
  "name": "min",
3954
4275
  "visibility": "public",
3955
4276
  "type": "Float",
3956
- "description": "Defines the minimum value of the slider",
4277
+ "description": "Defines the minimum value of the slider.",
3957
4278
  "defaultValue": "0"
3958
4279
  },
3959
4280
  {
3960
4281
  "name": "showTickmarks",
3961
4282
  "visibility": "public",
3962
4283
  "type": "boolean",
3963
- "description": "Enables tick marks visualization for each step. <br><br> <b>Note:</b> The step must be a positive number.",
4284
+ "description": "Enables tickmarks visualization for each step. <br><br> <b>Note:</b> The step must be a positive number.",
3964
4285
  "defaultValue": "false"
3965
4286
  },
3966
4287
  {
@@ -4069,6 +4390,76 @@
4069
4390
  }
4070
4391
  ]
4071
4392
  },
4393
+ {
4394
+ "kind": "class",
4395
+ "name": "sap.ui.webcomponents.main.SplitButton",
4396
+ "basename": "SplitButton",
4397
+ "tagname": "ui5-split-button",
4398
+ "resource": "SplitButton.js",
4399
+ "module": "SplitButton",
4400
+ "static": true,
4401
+ "visibility": "public",
4402
+ "since": "1.1.0",
4403
+ "extends": "UI5Element",
4404
+ "description": "<h3 class=\"comment-api-title\">Overview</h3>\n\n<code>ui5-split-button</code> enables users to trigger actions. It is constructed of two separate actions - default action and arrow action that can be activated by clicking or tapping, or by pressing certain keyboard keys - <code>Space</code> or <code>Enter</code> for default action, and <code>Arrow Down</code> or <code>Arrow Up</code> for arrow action.\n\n<h3>Usage</h3>\n\n<code>ui5-split-button</code> consists two separate buttons: <ul> <li>for the first one (default action) you can define some <code>text</code> or an <code>icon</code>, or both. Also, it is possible to define different icon for active state of this button - <code>activeIcon</code>.</li> <li>the second one (arrow action) contains only <code>slim-arrow-down</code> icon.</li> </ul> You can choose a <code>design</code> from a set of predefined types (the same as for ui5-button) that offer different styling to correspond to the triggered action. Both text and arrow actions have the same design. <br><br> You can set the <code>ui5-split-button</code> as enabled or disabled. Both parts of an enabled <code>ui5-split-button</code> can be pressed by clicking or tapping it, or by certain keys, which changes the style to provide visual feedback to the user that it is pressed or hovered over with the mouse cursor. A disabled <code>ui5-split-button</code> appears inactive and any of the two buttons cannot be pressed.\n\n<h3>Keyboard Handling</h3> <ul> <li><code>Space</code> or <code>Enter</code> - triggers the default action</li> <li><code>Shift</code> or <code>Escape</code> - if <code>Space</code> is pressed, releases the default action button without triggering the click event.</li> <li><code>Arrow Down</code>, <code>Arrow Up</code>, <code>Alt</code>+<code>Arrow Down</code>, <code>Alt</code>+<code>Arrow Up</code>, or <code>F4</code> - triggers the arrow action There are separate events that are fired on activating of <code>ui5-split-button</code> parts: <ul> <li><code>click</code> for the first button (default action)</li> <li><code>arrow-click</code> for the second button (arrow action)</li> </ul> </ul>\n\n<h3>ES6 Module Import</h3>\n\n<code>import \"@ui5/webcomponents/dist/SplitButton.js\";</code>",
4405
+ "constructor": { "visibility": "public" },
4406
+ "properties": [
4407
+ {
4408
+ "name": "accessibleName",
4409
+ "visibility": "public",
4410
+ "type": "string",
4411
+ "description": "Defines the accessible aria name of the component."
4412
+ },
4413
+ {
4414
+ "name": "activeIcon",
4415
+ "visibility": "public",
4416
+ "type": "string",
4417
+ "description": "Defines the icon to be displayed in active state as graphical element within the component.",
4418
+ "defaultValue": "\"\""
4419
+ },
4420
+ {
4421
+ "name": "design",
4422
+ "visibility": "public",
4423
+ "type": "ButtonDesign",
4424
+ "description": "Defines the component design.\n\n<br><br> <b>The available values are:</b>\n\n<ul> <li><code>Default</code></li> <li><code>Emphasized</code></li> <li><code>Positive</code></li> <li><code>Negative</code></li> <li><code>Transparent</code></li> <li><code>Attention</code></li> </ul>",
4425
+ "defaultValue": "\"Default\""
4426
+ },
4427
+ {
4428
+ "name": "disabled",
4429
+ "visibility": "public",
4430
+ "type": "boolean",
4431
+ "description": "Defines whether the component is disabled. A disabled component can't be pressed or focused, and it is not in the tab chain.",
4432
+ "defaultValue": "false"
4433
+ },
4434
+ {
4435
+ "name": "icon",
4436
+ "visibility": "public",
4437
+ "type": "string",
4438
+ "description": "Defines the icon to be displayed as graphical element within the component. The SAP-icons font provides numerous options. <br><br> Example:\n\nSee all the available icons in the <ui5-link target=\"_blank\" href=\"https://openui5.hana.ondemand.com/test-resources/sap/m/demokit/iconExplorer/webapp/index.html\" class=\"api-table-content-cell-link\">Icon Explorer</ui5-link>.",
4439
+ "defaultValue": "\"\""
4440
+ }
4441
+ ],
4442
+ "slots": [
4443
+ {
4444
+ "name": "default",
4445
+ "visibility": "public",
4446
+ "type": "Node[]",
4447
+ "description": "Defines the text of the component. <br><br> <b>Note:</b> Although this slot accepts HTML Elements, it is strongly recommended that you only use text in order to preserve the intended design."
4448
+ }
4449
+ ],
4450
+ "events": [
4451
+ {
4452
+ "name": "arrow-click",
4453
+ "visibility": "public",
4454
+ "description": "Fired when the user clicks on the arrow action."
4455
+ },
4456
+ {
4457
+ "name": "click",
4458
+ "visibility": "public",
4459
+ "description": "Fired when the user clicks on the default action."
4460
+ }
4461
+ ]
4462
+ },
4072
4463
  {
4073
4464
  "kind": "class",
4074
4465
  "name": "sap.ui.webcomponents.main.StandardListItem",
@@ -4160,14 +4551,14 @@
4160
4551
  "name": "accessibleName",
4161
4552
  "visibility": "public",
4162
4553
  "since": "1.0.0-rc.15",
4163
- "type": "String",
4164
- "description": "Sets the accessible aria name of the component."
4554
+ "type": "string",
4555
+ "description": "Defines the accessible aria name of the component."
4165
4556
  },
4166
4557
  {
4167
4558
  "name": "accessibleNameRef",
4168
4559
  "visibility": "public",
4169
4560
  "since": "1.0.0-rc.15",
4170
- "type": "String",
4561
+ "type": "string",
4171
4562
  "description": "Receives id(or many ids) of the elements that label the component.",
4172
4563
  "defaultValue": "\"\""
4173
4564
  },
@@ -4320,7 +4711,7 @@
4320
4711
  "visibility": "public",
4321
4712
  "since": "1.0.0-rc.15",
4322
4713
  "type": "ValueState",
4323
- "description": "Defines the state of the <code>additionalText</code>. <br><br> Available options are: <code>\"None\"</code> (by default), <code>\"Success\"</code>, <code>\"Warning\"</code> and <code>\"Erorr\"</code>.",
4714
+ "description": "Defines the state of the <code>additionalText</code>. <br><br> Available options are: <code>\"None\"</code> (by default), <code>\"Success\"</code>, <code>\"Information\"</code>, <code>\"Warning\"</code> and <code>\"Erorr\"</code>.",
4324
4715
  "defaultValue": "\"None\""
4325
4716
  },
4326
4717
  {
@@ -4377,9 +4768,24 @@
4377
4768
  "visibility": "public",
4378
4769
  "since": "0.8.0",
4379
4770
  "extends": "sap.ui.webcomponents.base.UI5Element",
4380
- "description": "<h3 class=\"comment-api-title\">Overview</h3> The <code>ui5-switch</code> component is used for changing between binary states. <br> The component can display texts, that will be switched, based on the component state, via the <code>textOn</code> and <code>textOff</code> properties, but texts longer than 3 letters will be cutted off. <br> However, users are able to customize the width of <code>ui5-switch</code> with pure CSS (<code>&lt;ui5-switch style=\"width: 200px\"></code>), and set widths, depending on the texts they would use. <br> Note: the component would not automatically stretch to fit the whole text width.\n\n<h3>Keyboard Handling</h3> The state can be changed by pressing the Space and Enter keys.\n\n<h3>CSS Shadow Parts</h3>\n\n<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> The <code>ui5-switch</code> exposes the following CSS Shadow Parts: <ul> <li>slider - Used to style the track, where the handle is being slid</li> <li>text-on - Used to style the onText</li> <li>text-off - Used to style the offText</li> <li>handle - Used to style the handle of the switch</li> </ul>\n\n<h3>ES6 Module Import</h3>\n\n<code>import \"@ui5/webcomponents/dist/Switch\";</code>",
4771
+ "description": "<h3 class=\"comment-api-title\">Overview</h3> The <code>ui5-switch</code> component is used for changing between binary states. <br> The component can display texts, that will be switched, based on the component state, via the <code>textOn</code> and <code>textOff</code> properties, but texts longer than 3 letters will be cutted off. <br> However, users are able to customize the width of <code>ui5-switch</code> with pure CSS (<code>&lt;ui5-switch style=\"width: 200px\"></code>), and set widths, depending on the texts they would use. <br> Note: the component would not automatically stretch to fit the whole text width.\n\n<h3>Keyboard Handling</h3> The state can be changed by pressing the Space and Enter keys.\n\n<h3>CSS Shadow Parts</h3>\n\n<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> The <code>ui5-switch</code> exposes the following CSS Shadow Parts: <ul> <li>slider - Used to style the track, where the handle is being slid</li> <li>text-on - Used to style the <code>textOn</code> property text</li> <li>text-off - Used to style the <code>textOff</code> property text</li> <li>handle - Used to style the handle of the switch</li> </ul>\n\n<h3>ES6 Module Import</h3>\n\n<code>import \"@ui5/webcomponents/dist/Switch\";</code>",
4381
4772
  "constructor": { "visibility": "public" },
4382
4773
  "properties": [
4774
+ {
4775
+ "name": "accessibleName",
4776
+ "visibility": "public",
4777
+ "since": "1.2.0",
4778
+ "type": "string",
4779
+ "description": "Sets the accessible aria name of the component.\n\n<b>Note</b>: We recommend that you set an accessibleNameRef pointing to an external label or at least an <code>accessibleName</code>. Providing an <code>accessibleNameRef</code> or an <code>accessibleName</code> is mandatory in the cases when <code>textOn</code> and <code>textOff</code> properties aren't set."
4780
+ },
4781
+ {
4782
+ "name": "accessibleNameRef",
4783
+ "visibility": "public",
4784
+ "since": "1.1.0",
4785
+ "type": "string",
4786
+ "description": "Receives id(or many ids) of the elements that label the component.\n\n<b>Note</b>: We recommend that you set an accessibleNameRef pointing to an external label or at least an <code>accessibleName</code>. Providing an <code>accessibleNameRef</code> or an <code>accessibleName</code> is mandatory in the cases when <code>textOn</code> and <code>textOff</code> properties aren't set.",
4787
+ "defaultValue": "\"\""
4788
+ },
4383
4789
  {
4384
4790
  "name": "checked",
4385
4791
  "visibility": "public",
@@ -4405,14 +4811,14 @@
4405
4811
  "name": "textOff",
4406
4812
  "visibility": "public",
4407
4813
  "type": "string",
4408
- "description": "Defines the text, displayed when the component is not checked. <br><br> <b>Note:</b> We recommend using short texts, up to 3 letters (larger texts would be cut off).",
4814
+ "description": "Defines the text, displayed when the component is not checked. <br><br> <b>Note:</b> We recommend using short texts, up to 3 letters (larger texts would be cut off). <b>Note:</b> This property will have no effect if the theme is set to <code>sap_horizon</code>.",
4409
4815
  "defaultValue": "\"\""
4410
4816
  },
4411
4817
  {
4412
4818
  "name": "textOn",
4413
4819
  "visibility": "public",
4414
4820
  "type": "string",
4415
- "description": "Defines the text, displayed when the component is checked.\n\n<br><br> <b>Note:</b> We recommend using short texts, up to 3 letters (larger texts would be cut off).",
4821
+ "description": "Defines the text, displayed when the component is checked.\n\n<br><br> <b>Note:</b> We recommend using short texts, up to 3 letters (larger texts would be cut off). <b>Note:</b> This property will have no effect if the theme is set to <code>sap_horizon</code>.",
4416
4822
  "defaultValue": "\"\""
4417
4823
  }
4418
4824
  ],
@@ -4443,7 +4849,7 @@
4443
4849
  "name": "additionalText",
4444
4850
  "visibility": "public",
4445
4851
  "type": "string",
4446
- "description": "Represents the \"additionalText\" text, which is displayed in the tab filter.",
4852
+ "description": "Represents the \"additionalText\" text, which is displayed in the tab.",
4447
4853
  "defaultValue": "\"\""
4448
4854
  },
4449
4855
  {
@@ -4474,13 +4880,6 @@
4474
4880
  "description": "Specifies if the component is selected.",
4475
4881
  "defaultValue": "false"
4476
4882
  },
4477
- {
4478
- "name": "stableDomRef",
4479
- "visibility": "public",
4480
- "since": "1.0.0-rc.8",
4481
- "type": "string",
4482
- "description": "Defines the stable selector that you can use via getStableDomRef method."
4483
- },
4484
4883
  {
4485
4884
  "name": "text",
4486
4885
  "visibility": "public",
@@ -4494,7 +4893,22 @@
4494
4893
  "name": "default",
4495
4894
  "visibility": "public",
4496
4895
  "type": "Node[]",
4497
- "description": "Defines the tab content."
4896
+ "description": "Holds the content associated with this tab."
4897
+ },
4898
+ {
4899
+ "name": "subTabs",
4900
+ "propertyName": "subTabs",
4901
+ "visibility": "public",
4902
+ "type": "sap.ui.webcomponents.main.ITab[]",
4903
+ "description": "Defines hierarchies with nested sub tabs. <br><br> <b>Note:</b> Use <code>ui5-tab</code> and <code>ui5-tab-separator</code> for the intended design."
4904
+ }
4905
+ ],
4906
+ "methods": [
4907
+ {
4908
+ "name": "getTabInStripDomRef",
4909
+ "visibility": "public",
4910
+ "since": "1.0.0-rc.16",
4911
+ "description": "Returns the DOM reference of the tab that is placed in the header. <b>Note:</b> If you need a DOM ref to the tab content please use the <code>getDomRef</code> method."
4498
4912
  }
4499
4913
  ]
4500
4914
  },
@@ -4509,7 +4923,7 @@
4509
4923
  "static": true,
4510
4924
  "visibility": "public",
4511
4925
  "extends": "sap.ui.webcomponents.base.UI5Element",
4512
- "description": "<h3 class=\"comment-api-title\">Overview</h3>\n\nThe <code>ui5-tabcontainer</code> represents a collection of tabs with associated content. Navigation through the tabs changes the content display of the currently active content area. A tab can be labeled with text only, or icons with text.\n\n<h3>Structure</h3>\n\nThe <code>ui5-tabcontainer</code> can hold two types of entities: <ul> <li><code>ui5-tab</code> - contains all the information on an item (text and icon)</li> <li><code>ui5-tab-separator</code> - used to separate tabs with a vertical line</li> </ul>\n\n<h3>Stable DOM Refs</h3>\n\nIn the context of <code>ui5-tabcontainer</code>, you can provide a custom stable DOM refs for: <ul> <li>Each <code>ui5-tab</code> Example: <code><ui5-tab stable-dom-ref=\"in-stock\"></ui5-tab></code></li> </ul>\n\n<h3>ES6 Module Import</h3>\n\n<code>import \"@ui5/webcomponents/dist/TabContainer\";</code> <br> <code>import \"@ui5/webcomponents/dist/Tab\";</code> (for <code>ui5-tab</code>) <br> <code>import \"@ui5/webcomponents/dist/TabSeparator\";</code> (for <code>ui5-tab-separator</code>)",
4926
+ "description": "<h3 class=\"comment-api-title\">Overview</h3>\n\nThe <code>ui5-tabcontainer</code> represents a collection of tabs with associated content. Navigation through the tabs changes the content display of the currently active content area. A tab can be labeled with text only, or icons with text.\n\n<h3>Structure</h3>\n\nThe <code>ui5-tabcontainer</code> can hold two types of entities: <ul> <li><code>ui5-tab</code> - contains all the information on an item (text and icon)</li> <li><code>ui5-tab-separator</code> - used to separate tabs with a line</li> </ul>\n\n<h3>Hierarchies</h3> Multiple sub tabs could be placed underneath one main tab. Nesting allows deeper hierarchies with indentations to indicate the level of each nested tab. When a tab has both sub tabs and own content its click area is split to allow the user to display the content or alternatively to expand / collapse the list of sub tabs.\n\n<h3>CSS Shadow Parts</h3>\n\n<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> The <code>ui5-tabcontainer</code> exposes the following CSS Shadow Parts: <ul> <li>content - Used to style the content of the component</li> </ul>\n\n<h3>Keyboard Handling</h3>\n\n<h4>Fast Navigation</h4> This component provides a build in fast navigation group which can be used via <code>F6 / Shift + F6</code> or <code> Ctrl + Alt(Option) + Down / Ctrl + Alt(Option) + Up</code>. In order to use this functionality, you need to import the following module: <code>import \"@ui5/webcomponents-base/dist/features/F6Navigation.js\"</code> <br><br>\n\n<h3>ES6 Module Import</h3>\n\n<code>import \"@ui5/webcomponents/dist/TabContainer\";</code> <br> <code>import \"@ui5/webcomponents/dist/Tab\";</code> (for <code>ui5-tab</code>) <br> <code>import \"@ui5/webcomponents/dist/TabSeparator\";</code> (for <code>ui5-tab-separator</code>)",
4513
4927
  "constructor": { "visibility": "public" },
4514
4928
  "properties": [
4515
4929
  {
@@ -4530,8 +4944,11 @@
4530
4944
  "name": "showOverflow",
4531
4945
  "visibility": "public",
4532
4946
  "type": "boolean",
4533
- "description": "Defines whether the overflow select list is displayed. <br><br> The overflow select list represents a list, where all tab filters are displayed so that it's easier for the user to select a specific tab filter.",
4534
- "defaultValue": "false"
4947
+ "description": "Defines whether the overflow select list is displayed. <br><br> The overflow select list represents a list, where all tabs are displayed so that it's easier for the user to select a specific tab.",
4948
+ "defaultValue": "false",
4949
+ "deprecated": {
4950
+ "text": "Since the introduction of TabsOverflowMode overflows will always be visible if there is not enough space for all tabs, all hidden tabs are moved to a select list in the respective overflows and are accessible via the overflowButton and / or startOverflowButton"
4951
+ }
4535
4952
  },
4536
4953
  {
4537
4954
  "name": "tabLayout",
@@ -4539,6 +4956,14 @@
4539
4956
  "type": "TabLayout",
4540
4957
  "description": "Defines the alignment of the content and the <code>additionalText</code> of a tab.\n\n<br><br> <b>Note:</b> The content and the <code>additionalText</code> would be displayed vertically by defualt, but when set to <code>Inline</code>, they would be displayed horizontally.\n\n<br><br> Available options are: <ul> <li><code>Standard</code></li> <li><code>Inline</code></li> </ul>",
4541
4958
  "defaultValue": "\"Standard\""
4959
+ },
4960
+ {
4961
+ "name": "tabsOverflowMode",
4962
+ "visibility": "public",
4963
+ "since": "1.1.0",
4964
+ "type": "TabsOverflowMode",
4965
+ "description": "Defines the overflow mode of the tab strip. If you have a large number of tabs, only the tabs that can fit on screen will be visible. All other tabs that can 't fit on the screen are available in an overflow tab \"More\".\n\n<br><br> <b>Note:</b> Only one overflow at the end would be displayed by default, but when set to <code>StartAndEnd</code>, there will be two overflows on both ends, and tab order will not change on tab selection.\n\n<br><br> Available options are: <ul> <li><code>End</code></li> <li><code>StartAndEnd</code></li> </ul>",
4966
+ "defaultValue": "\"End\""
4542
4967
  }
4543
4968
  ],
4544
4969
  "slots": [
@@ -4555,6 +4980,13 @@
4555
4980
  "since": "1.0.0-rc.9",
4556
4981
  "type": "sap.ui.webcomponents.main.IButton",
4557
4982
  "description": "Defines the button which will open the overflow menu. If nothing is provided to this slot, the default button will be used."
4983
+ },
4984
+ {
4985
+ "name": "startOverflowButton",
4986
+ "visibility": "public",
4987
+ "since": "1.1.0",
4988
+ "type": "sap.ui.webcomponents.main.IButton",
4989
+ "description": "Defines the button which will open the start overflow menu if available. If nothing is provided to this slot, the default button will be used."
4558
4990
  }
4559
4991
  ],
4560
4992
  "events": [
@@ -4588,9 +5020,24 @@
4588
5020
  "static": true,
4589
5021
  "visibility": "public",
4590
5022
  "extends": "sap.ui.webcomponents.base.UI5Element",
4591
- "description": "<h3 class=\"comment-api-title\">Overview</h3>\n\nThe <code>ui5-table</code> component provides a set of sophisticated and convenient functions for responsive table design. It provides a comprehensive set of features for displaying and dealing with vast amounts of data. <br><br> To render the <code>Table</code> properly, the order of the <code>columns</code> should match with the order of the item <code>cells</code> in the <code>rows</code>. <br><br> Desktop and tablet devices are supported. On tablets, special consideration should be given to the number of visible columns and rows due to the limited performance of some devices.\n\n<h3>Selection</h3> To benefit from the selection mechanism of <code>ui5-table</code> component, you can use the available selection modes: <code>SingleSelect</code> and <code>MultiSelect</code>. <br> In additition to the used mode, you can also specify the <code>ui5-table-row</code> type choosing between <code>Active</code> or <code>Inactive</code>. <br><br> In <code>SingleSelect</code> mode, you can select both an <code>Active</code> and <code>Inactive</code> row via mouse or by pressing the <code>Space</code> or <code>Enter</code> keys. <br> In <code>MultiSelect</code> mode, you can select both an <code>Active</code> and <code>Inactive</code> row by pressing the <code>Space</code> key when a row is on focus or via mouse click over the selection checkbox of the row. In order to select all the available rows at once, you can use the selection checkbox presented in the table's header. <br><br> <b>Note:</b> Currently, when a column is shown as a pop-in, the visual indication for selection is not presented over it.\n\n<h3>ES6 Module Import</h3>\n\n<code>import \"@ui5/webcomponents/dist/Table.js\";</code> <br> <code>import \"@ui5/webcomponents/dist/TableColumn.js\";</code> (for <code>ui5-table-column</code>) <br> <code>import \"@ui5/webcomponents/dist/TableRow.js\";</code> (for <code>ui5-table-row</code>) <br> <code>import \"@ui5/webcomponents/dist/TableCell.js\";</code> (for <code>ui5-table-cell</code>)",
5023
+ "description": "<h3 class=\"comment-api-title\">Overview</h3>\n\nThe <code>ui5-table</code> component provides a set of sophisticated and convenient functions for responsive table design. It provides a comprehensive set of features for displaying and dealing with vast amounts of data. <br><br> To render the <code>Table</code> properly, the order of the <code>columns</code> should match with the order of the item <code>cells</code> in the <code>rows</code>. <br><br> Desktop and tablet devices are supported. On tablets, special consideration should be given to the number of visible columns and rows due to the limited performance of some devices.\n\n<h3>Selection</h3> To benefit from the selection mechanism of <code>ui5-table</code> component, you can use the available selection modes: <code>SingleSelect</code> and <code>MultiSelect</code>. <br> In additition to the used mode, you can also specify the <code>ui5-table-row</code> type choosing between <code>Active</code> or <code>Inactive</code>. <br><br> In <code>SingleSelect</code> mode, you can select both an <code>Active</code> and <code>Inactive</code> row via mouse or by pressing the <code>Space</code> or <code>Enter</code> keys. <br> In <code>MultiSelect</code> mode, you can select both an <code>Active</code> and <code>Inactive</code> row by pressing the <code>Space</code> key when a row is on focus or via mouse click over the selection checkbox of the row. In order to select all the available rows at once, you can use the selection checkbox presented in the table's header. <br><br> <b>Note:</b> Currently, when a column is shown as a pop-in, the visual indication for selection is not presented over it.\n\n<h3>Keyboard Handling</h3>\n\n<h4>Fast Navigation</h4> This component provides a build in fast navigation group which can be used via <code>F6 / Shift + F6</code> or <code> Ctrl + Alt(Option) + Down / Ctrl + Alt(Option) + Up</code>. In order to use this functionality, you need to import the following module: <code>import \"@ui5/webcomponents-base/dist/features/F6Navigation.js\"</code> <br><br> Furthermore, you can interact with <code>ui5-table</code> via the following keys. <br>\n\n<ul> <li>[F7] - If focus is on an interactive control inside an item, moves focus to the corresponding item.</li> <li>[CTRL]+[A] - Selects all items, if MultiSelect mode is enabled.</li> <li>[HOME]/[END] - Focuses the first/last item.</li> <li>[PAGEUP]/[PAGEDOWN] - Moves focus up/down by page size (20 items by default).</li> <li>[ALT]+[DOWN]/[UP] - Switches focus between header, last focused item, and More button (if applies) in either direction.</li> <li>[SHIFT]+[DOWN]/[UP] - Selects the next/previous item in a MultiSelect table, if the current item is selected (Range selection). Otherwise, deselects them (Range deselection).</li> <li>[SHIFT]+[HOME]/[END] - Range selection to the first/last item of the List.</li> <li>[CTRL]+[HOME]/[END] - Same behavior as HOME & END.</li> </ul>\n\n<h3>ES6 Module Import</h3>\n\n<code>import \"@ui5/webcomponents/dist/Table.js\";</code> <br> <code>import \"@ui5/webcomponents/dist/TableColumn.js\";</code> (for <code>ui5-table-column</code>) <br> <code>import \"@ui5/webcomponents/dist/TableRow.js\";</code> (for <code>ui5-table-row</code>) <br> <code>import \"@ui5/webcomponents/dist/TableCell.js\";</code> (for <code>ui5-table-cell</code>)",
4592
5024
  "constructor": { "visibility": "public" },
4593
5025
  "properties": [
5026
+ {
5027
+ "name": "accessibleName",
5028
+ "visibility": "public",
5029
+ "since": "1.3.0",
5030
+ "type": "string",
5031
+ "description": "Defines the accessible aria name of the component."
5032
+ },
5033
+ {
5034
+ "name": "accessibleNameRef",
5035
+ "visibility": "public",
5036
+ "since": "1.3.0",
5037
+ "type": "string",
5038
+ "description": "Receives id(or many ids) of the elements that label the component.",
5039
+ "defaultValue": "\"\""
5040
+ },
4594
5041
  {
4595
5042
  "name": "busy",
4596
5043
  "visibility": "public",
@@ -4611,7 +5058,7 @@
4611
5058
  "visibility": "public",
4612
5059
  "since": "1.0.0-rc.12",
4613
5060
  "type": "TableGrowingMode",
4614
- "description": "Defines whether the table will have growing capability either by pressing a <code>More</code> button, or via user scroll. In both cases <code>load-more</code> event is fired. <br><br>\n\nAvailable options: <br><br> <code>Button</code> - Shows a <code>More</code> button at the bottom of the table, pressing of which triggers the <code>load-more</code> event. <br> <code>Scroll</code> - The <code>load-more</code> event is triggered when the user scrolls to the bottom of the table; <br> <code>None</code> (default) - The growing is off. <br><br>\n\n<b>Limitations:</b> <code>growing=\"Scroll\"</code> is not supported for Internet Explorer, and the component will fallback to <code>growing=\"Button\"</code>.",
5061
+ "description": "Defines whether the table will have growing capability either by pressing a <code>More</code> button, or via user scroll. In both cases <code>load-more</code> event is fired. <br><br>\n\nAvailable options: <br><br> <code>Button</code> - Shows a <code>More</code> button at the bottom of the table, pressing of which triggers the <code>load-more</code> event. <br> <code>Scroll</code> - The <code>load-more</code> event is triggered when the user scrolls to the bottom of the table; <br> <code>None</code> (default) - The growing is off. <br><br>\n\n<b>Restrictions:</b> <code>growing=\"Scroll\"</code> is not supported for Internet Explorer, and the component will fallback to <code>growing=\"Button\"</code>.",
4615
5062
  "defaultValue": "\"None\""
4616
5063
  },
4617
5064
  {
@@ -4657,7 +5104,7 @@
4657
5104
  "name": "stickyColumnHeader",
4658
5105
  "visibility": "public",
4659
5106
  "type": "boolean",
4660
- "description": "Determines whether the column headers remain fixed at the top of the page during vertical scrolling as long as the Web Component is in the viewport. <br><br> <b>Limitations:</b> <ul> <li>Browsers that do not support this feature: <ul> <li>Internet Explorer</li> <li>Microsoft Edge lower than version 41 (EdgeHTML 16)</li> <li>Mozilla Firefox lower than version 59</li> </ul> </li> <li>Scrolling behavior: <ul> <li>If the Web Component is placed in layout containers that have the <code>overflow: hidden</code> or <code>overflow: auto</code> style definition, this can prevent the sticky elements of the Web Component from becoming fixed at the top of the viewport.</li> </ul> </li> </ul>",
5107
+ "description": "Determines whether the column headers remain fixed at the top of the page during vertical scrolling as long as the Web Component is in the viewport. <br><br> <b>Restrictions:</b> <ul> <li>Browsers that do not support this feature: <ul> <li>Internet Explorer</li> <li>Microsoft Edge lower than version 41 (EdgeHTML 16)</li> <li>Mozilla Firefox lower than version 59</li> </ul> </li> <li>Scrolling behavior: <ul> <li>If the Web Component is placed in layout containers that have the <code>overflow: hidden</code> or <code>overflow: auto</code> style definition, this can prevent the sticky elements of the Web Component from becoming fixed at the top of the viewport.</li> </ul> </li> </ul>",
4661
5108
  "defaultValue": "false"
4662
5109
  }
4663
5110
  ],
@@ -4873,21 +5320,21 @@
4873
5320
  "static": true,
4874
5321
  "visibility": "public",
4875
5322
  "extends": "sap.ui.webcomponents.base.UI5Element",
4876
- "description": "<h3 class=\"comment-api-title\">Overview</h3>\n\nThe <code>ui5-textarea</code> component provides large spaces for text entries in the form of multiple rows. It has the functionality of the <code>TextField</code> with the additional functionality for multiline texts. <br><br> When empty, it can hold a placeholder similar to a <code>ui5-input</code>. You can define the rows of the <code>ui5-textarea</code> and also determine specific behavior when handling long texts.\n\n<h3>CSS Shadow Parts</h3>\n\n<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> The <code>ui5-textarea</code> exposes the following CSS Shadow Parts: <ul> <li>textarea - Used to style the native textarea</li> </ul>\n\n<h3>ES6 Module Import</h3>\n\n<code>import \"@ui5/webcomponents/dist/TextArea\";</code>",
5323
+ "description": "<h3 class=\"comment-api-title\">Overview</h3>\n\nThe <code>ui5-textarea</code> component is used to enter multiple lines of text. <br><br> When empty, it can hold a placeholder similar to a <code>ui5-input</code>. You can define the rows of the <code>ui5-textarea</code> and also determine specific behavior when handling long texts.\n\n<h3>CSS Shadow Parts</h3>\n\n<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> The <code>ui5-textarea</code> exposes the following CSS Shadow Parts: <ul> <li>textarea - Used to style the native textarea</li> </ul>\n\n<h3>ES6 Module Import</h3>\n\n<code>import \"@ui5/webcomponents/dist/TextArea\";</code>",
4877
5324
  "constructor": { "visibility": "public" },
4878
5325
  "properties": [
4879
5326
  {
4880
5327
  "name": "accessibleName",
4881
5328
  "visibility": "public",
4882
5329
  "since": "1.0.0-rc.15",
4883
- "type": "String",
4884
- "description": "Sets the accessible aria name of the component."
5330
+ "type": "string",
5331
+ "description": "Defines the accessible aria name of the component."
4885
5332
  },
4886
5333
  {
4887
5334
  "name": "accessibleNameRef",
4888
5335
  "visibility": "public",
4889
5336
  "since": "1.0.0-rc.15",
4890
- "type": "String",
5337
+ "type": "string",
4891
5338
  "description": "Receives id(or many ids) of the elements that label the textarea.",
4892
5339
  "defaultValue": "\"\""
4893
5340
  },
@@ -4895,7 +5342,7 @@
4895
5342
  "name": "disabled",
4896
5343
  "visibility": "public",
4897
5344
  "type": "boolean",
4898
- "description": "Indicates whether the user can interact with the component or not. <br><br> <b>Note:</b> Disabled components cannot be focused and they are out of the tab chain.",
5345
+ "description": "Indicates whether the user can interact with the component or not. <br><br> <b>Note:</b> A disabled component is completely noninteractive.",
4899
5346
  "defaultValue": "false"
4900
5347
  },
4901
5348
  {
@@ -4909,7 +5356,7 @@
4909
5356
  "name": "growingMaxLines",
4910
5357
  "visibility": "public",
4911
5358
  "type": "Integer",
4912
- "description": "Defines the maximum number of lines that the Web Component can grow.",
5359
+ "description": "Defines the maximum number of lines that the component can grow.",
4913
5360
  "defaultValue": "0"
4914
5361
  },
4915
5362
  {
@@ -4966,7 +5413,7 @@
4966
5413
  "name": "value",
4967
5414
  "visibility": "public",
4968
5415
  "type": "string",
4969
- "description": "Defines the value of the Web Component.",
5416
+ "description": "Defines the value of the component.",
4970
5417
  "defaultValue": "\"\""
4971
5418
  },
4972
5419
  {
@@ -5012,7 +5459,7 @@
5012
5459
  "visibility": "public",
5013
5460
  "since": "1.0.0-rc.6",
5014
5461
  "extends": "TimePickerBase",
5015
- "description": "<h3 class=\"comment-api-title\">Overview</h3> The <code>ui5-time-picker</code> component provides an input field with assigned sliders which opens on user action. The <code>ui5-time-picker</code> allows users to select a localized time using touch, mouse, or keyboard input. It consists of two parts: the time input field and the sliders.\n\n<h3>Usage</h3> The user can enter a time by: <ul> <li>Using the sliders that opens in a popup</li> <li>Typing it in directly in the input field</li> </ul> <br><br> When the user makes an entry and chooses the enter key, the sliders shows the corresponding time. When the user directly triggers the sliders display, the actual time is displayed. For the <code>ui5-time-picker</code>\n\n<h3>Formatting</h3>\n\nIf a time is entered by typing it into the input field, it must fit to the used time format. <br><br> Supported format options are pattern-based on Unicode LDML Date Format notation. For more information, see <ui5-link target=\"_blank\" href=\"http://unicode.org/reports/tr35/#Date_Field_Symbol_Table\" class=\"api-table-content-cell-link\">UTS #35: Unicode Locale Data Markup Language</ui5-link>. <br><br> For example, if the <code>format-pattern</code> is \"HH:mm:ss\", a valid value string is \"11:42:35\" and the same is displayed in the input.\n\n<h3>Keyboard handling</h3> [F4], [ALT]+[UP], [ALT]+[DOWN] Open/Close picker dialog and move focus to it. <br> When closed: <ul> <li>[PAGEUP] - Increments hours by 1. If 12 am is reached, increment hours to 1 pm and vice versa.</li> <li>[PAGEDOWN] - Decrements the corresponding field by 1. If 1 pm is reached, decrement hours to 12 am and vice versa.</li> <li>[SHIFT]+[PAGEUP] Increments minutes by 1.</li> <li>[SHIFT]+ [PAGEDOWN] Decrements minutes by 1.</li> <li>[SHIFT]+[CTRL]+[PAGEUP] Increments seconds by 1.</li> <li>[SHIFT]+[CTRL]+ [PAGEDOWN] Decrements seconds by 1.</li> </ul> When opened: <ul> <li>[UP] If focus is on one of the selection lists: Select the value which is above the current value. If the first value is selected, select the last value in the list. Exception: AM/ PM List: stay on the first item.</li> <li>[DOWN] If focus is on one of the selection lists: Select the value which is below the current value. If the last value is selected, select the first value in the list. Exception: AM/ PM List: stay on the last item.</li> <li>[LEFT] If focus is on one of the selection lists: Move focus to the selection list which is left of the current selection list. If focus is at the first selection list, move focus to the last selection list.</li> <li>[RIGHT] If focus is on one of the selection lists: Move focus to the selection list which is right of the current selection list. When focus is at the last selection list, move focus to the first selection list.</li> <li>[PAGEUP] If focus is on one of the selection lists: Move focus to the first entry of this list.</li> <li>[PAGEDOWN] If focus is on one of the selection lists: Move focus to the last entry of this list.</li> </ul>\n\n<h3>ES6 Module Import</h3>\n\n<code>import \"@ui5/webcomponents/dist/TimePicker.js\";</code>",
5462
+ "description": "<h3 class=\"comment-api-title\">Overview</h3> The <code>ui5-time-picker</code> component provides an input field with assigned sliders which are opened on user action. The <code>ui5-time-picker</code> allows users to select a localized time using touch, mouse, or keyboard input. It consists of two parts: the time input field and the sliders.\n\n<h3>Usage</h3> The user can enter a time by: <ul> <li>Using the sliders that are displayed in a popup</li> <li>Typing it in directly in the input field</li> </ul> <br><br> When the user makes an entry and chooses the enter key, the sliders shows the corresponding time. When the user directly triggers the sliders display, the actual time is displayed. For the <code>ui5-time-picker</code>\n\n<h3>Formatting</h3>\n\nIf a time is entered by typing it into the input field, it must fit to the used time format. <br><br> Supported format options are pattern-based on Unicode LDML Date Format notation. For more information, see <ui5-link target=\"_blank\" href=\"http://unicode.org/reports/tr35/#Date_Field_Symbol_Table\" class=\"api-table-content-cell-link\">UTS #35: Unicode Locale Data Markup Language</ui5-link>. <br><br> For example, if the <code>format-pattern</code> is \"HH:mm:ss\", a valid value string is \"11:42:35\" and the same is displayed in the input.\n\n<h3>Keyboard handling</h3> [F4], [ALT]+[UP], [ALT]+[DOWN] Open/Close picker dialog and move focus to it. <br> When closed: <ul> <li>[PAGEUP] - Increments hours by 1. If 12 am is reached, increment hours to 1 pm and vice versa.</li> <li>[PAGEDOWN] - Decrements the corresponding field by 1. If 1 pm is reached, decrement hours to 12 am and vice versa.</li> <li>[SHIFT]+[PAGEUP] Increments minutes by 1.</li> <li>[SHIFT]+ [PAGEDOWN] Decrements minutes by 1.</li> <li>[SHIFT]+[CTRL]+[PAGEUP] Increments seconds by 1.</li> <li>[SHIFT]+[CTRL]+ [PAGEDOWN] Decrements seconds by 1.</li> </ul> When opened: <ul> <li>[UP] If focus is on one of the selection lists: Select the value which is above the current value. If the first value is selected, select the last value in the list. Exception: AM/ PM List: stay on the first item.</li> <li>[DOWN] If focus is on one of the selection lists: Select the value which is below the current value. If the last value is selected, select the first value in the list. Exception: AM/ PM List: stay on the last item.</li> <li>[LEFT] If focus is on one of the selection lists: Move focus to the selection list which is left of the current selection list. If focus is at the first selection list, move focus to the last selection list.</li> <li>[RIGHT] If focus is on one of the selection lists: Move focus to the selection list which is right of the current selection list. When focus is at the last selection list, move focus to the first selection list.</li> <li>[PAGEUP] If focus is on one of the selection lists: Move focus to the first entry of this list.</li> <li>[PAGEDOWN] If focus is on one of the selection lists: Move focus to the last entry of this list.</li> </ul>\n\n<h3>ES6 Module Import</h3>\n\n<code>import \"@ui5/webcomponents/dist/TimePicker.js\";</code>",
5016
5463
  "constructor": { "visibility": "public" },
5017
5464
  "properties": [
5018
5465
  {
@@ -5292,7 +5739,7 @@
5292
5739
  "visibility": "public",
5293
5740
  "since": "1.0.0-rc.9",
5294
5741
  "type": "sap.ui.webcomponents.main.IIcon",
5295
- "description": "Defines the close icon for the token. If nothing is provided to this slot, the default close icon will be used. Accepts <code>ui5-icon</code>"
5742
+ "description": "Defines the close icon for the token. If nothing is provided to this slot, the default close icon will be used. Accepts <code>ui5-icon</code>."
5296
5743
  }
5297
5744
  ],
5298
5745
  "events": [
@@ -5379,6 +5826,7 @@
5379
5826
  "events": [
5380
5827
  {
5381
5828
  "name": "item-click",
5829
+ "allowPreventDefault": "true",
5382
5830
  "visibility": "public",
5383
5831
  "parameters": [ { "name": "item", "type": "HTMLElement", "description": "The clicked item." } ],
5384
5832
  "description": "Fired when a tree item is activated."
@@ -5389,6 +5837,20 @@
5389
5837
  "parameters": [ { "name": "item", "type": "HTMLElement", "description": "the deleted item." } ],
5390
5838
  "description": "Fired when the Delete button of any tree item is pressed. <br><br> <b>Note:</b> A Delete button is displayed on each item, when the component <code>mode</code> property is set to <code>Delete</code>."
5391
5839
  },
5840
+ {
5841
+ "name": "item-mouseout",
5842
+ "visibility": "public",
5843
+ "since": "1.0.0-rc.16",
5844
+ "parameters": [ { "name": "item", "type": "HTMLElement", "description": "the hovered item." } ],
5845
+ "description": "Fired when the mouse cursor leaves the tree item borders."
5846
+ },
5847
+ {
5848
+ "name": "item-mouseover",
5849
+ "visibility": "public",
5850
+ "since": "1.0.0-rc.16",
5851
+ "parameters": [ { "name": "item", "type": "HTMLElement", "description": "the hovered item." } ],
5852
+ "description": "Fired when the mouse cursor enters the tree item borders."
5853
+ },
5392
5854
  {
5393
5855
  "name": "item-toggle",
5394
5856
  "allowPreventDefault": "true",
@@ -5490,10 +5952,18 @@
5490
5952
  {
5491
5953
  "name": "icon",
5492
5954
  "visibility": "public",
5493
- "type": "String",
5955
+ "type": "string",
5494
5956
  "description": "If set, an icon will be displayed before the text, representing the tree item.",
5495
5957
  "defaultValue": "\"\""
5496
5958
  },
5959
+ {
5960
+ "name": "indeterminate",
5961
+ "visibility": "public",
5962
+ "since": "1.1.0",
5963
+ "type": "boolean",
5964
+ "description": "Defines whether the selection of a tree node is displayed as partially selected. <br><br> <b>Note:</b> The indeterminate state can be set only programatically and can’t be achieved by user interaction, meaning that the resulting visual state depends on the values of the <code>indeterminate</code> and <code>selected</code> properties: <ul> <li> If a tree node has both <code>selected</code> and <code>indeterminate</code> set to <code>true</code>, it is displayed as partially selected. <li> If a tree node has <code>selected</code> set to <code>true</code> and <code>indeterminate</code> set to <code>false</code>, it is displayed as selected. <li> If a tree node has <code>selected</code> set to <code>false</code>, it is displayed as not selected regardless of the value of the <code>indeterminate</code> property. </ul> <br> <b>Note:</b> This property takes effect only when the <code>ui5-tree</code> is in <code>MultiSelect</code> mode.",
5965
+ "defaultValue": "false"
5966
+ },
5497
5967
  {
5498
5968
  "name": "selected",
5499
5969
  "visibility": "public",
@@ -5504,7 +5974,7 @@
5504
5974
  {
5505
5975
  "name": "text",
5506
5976
  "visibility": "public",
5507
- "type": "String",
5977
+ "type": "string",
5508
5978
  "description": "Defines the text of the tree item.",
5509
5979
  "defaultValue": "\"\""
5510
5980
  }
@@ -5579,7 +6049,7 @@
5579
6049
  {
5580
6050
  "name": "icon",
5581
6051
  "visibility": "public",
5582
- "type": "String",
6052
+ "type": "string",
5583
6053
  "description": "If set, an icon will be displayed before the text of the tree list item.",
5584
6054
  "defaultValue": "\"\""
5585
6055
  },
@@ -5998,6 +6468,50 @@
5998
6468
  ],
5999
6469
  "slots": []
6000
6470
  },
6471
+ {
6472
+ "kind": "class",
6473
+ "name": "sap.ui.webcomponents.main.types.HasPopup",
6474
+ "basename": "HasPopup",
6475
+ "resource": "types/HasPopup.js",
6476
+ "module": "types/HasPopup",
6477
+ "static": true,
6478
+ "visibility": "public",
6479
+ "description": "Different types of HasPopup.",
6480
+ "constructor": { "visibility": "public" },
6481
+ "properties": [
6482
+ {
6483
+ "name": "Dialog",
6484
+ "visibility": "public",
6485
+ "type": "Dialog",
6486
+ "description": "Dialog popup type."
6487
+ },
6488
+ {
6489
+ "name": "Grid",
6490
+ "visibility": "public",
6491
+ "type": "Grid",
6492
+ "description": "Grid popup type."
6493
+ },
6494
+ {
6495
+ "name": "ListBox",
6496
+ "visibility": "public",
6497
+ "type": "ListBox",
6498
+ "description": "ListBox popup type."
6499
+ },
6500
+ {
6501
+ "name": "Menu",
6502
+ "visibility": "public",
6503
+ "type": "Menu",
6504
+ "description": "Menu popup type."
6505
+ },
6506
+ {
6507
+ "name": "Tree",
6508
+ "visibility": "public",
6509
+ "type": "Tree",
6510
+ "description": "Tree popup type."
6511
+ }
6512
+ ],
6513
+ "slots": []
6514
+ },
6001
6515
  {
6002
6516
  "kind": "class",
6003
6517
  "name": "sap.ui.webcomponents.main.types.InputType",
@@ -6088,8 +6602,29 @@
6088
6602
  "module": "types/ListGrowingMode",
6089
6603
  "static": true,
6090
6604
  "visibility": "public",
6091
- "description": "Defines the growing mode, used in the <code>ui5-List</code>.",
6092
- "constructor": { "visibility": "public" }
6605
+ "description": "Defines the growing mode, used in the <code>ui5-list</code>.",
6606
+ "constructor": { "visibility": "public" },
6607
+ "properties": [
6608
+ {
6609
+ "name": "Button",
6610
+ "visibility": "public",
6611
+ "type": "Button",
6612
+ "description": "Component's <code>load-more</code> is fired upon pressing a \"More\" button. at the bottom."
6613
+ },
6614
+ {
6615
+ "name": "None",
6616
+ "visibility": "public",
6617
+ "type": "None",
6618
+ "description": "Component's growing is not enabled."
6619
+ },
6620
+ {
6621
+ "name": "Scroll",
6622
+ "visibility": "public",
6623
+ "type": "Scroll",
6624
+ "description": "Component's <code>load-more</code> is fired upon scroll."
6625
+ }
6626
+ ],
6627
+ "slots": []
6093
6628
  },
6094
6629
  {
6095
6630
  "kind": "class",
@@ -6528,7 +7063,28 @@
6528
7063
  "static": true,
6529
7064
  "visibility": "public",
6530
7065
  "description": "Defines the growing mode, used in the <code>ui5-table</code>.",
6531
- "constructor": { "visibility": "public" }
7066
+ "constructor": { "visibility": "public" },
7067
+ "properties": [
7068
+ {
7069
+ "name": "Button",
7070
+ "visibility": "public",
7071
+ "type": "Button",
7072
+ "description": "Component's <code>load-more</code> is fired upon pressing a \"More\" button. at the bottom."
7073
+ },
7074
+ {
7075
+ "name": "None",
7076
+ "visibility": "public",
7077
+ "type": "None",
7078
+ "description": "Component's growing is not enabled."
7079
+ },
7080
+ {
7081
+ "name": "Scroll",
7082
+ "visibility": "public",
7083
+ "type": "Scroll",
7084
+ "description": "Component's <code>load-more</code> is fired upon scroll."
7085
+ }
7086
+ ],
7087
+ "slots": []
6532
7088
  },
6533
7089
  {
6534
7090
  "kind": "class",
@@ -6588,6 +7144,32 @@
6588
7144
  ],
6589
7145
  "slots": []
6590
7146
  },
7147
+ {
7148
+ "kind": "class",
7149
+ "name": "sap.ui.webcomponents.main.types.TabsOverflowMode",
7150
+ "basename": "TabsOverflowMode",
7151
+ "resource": "types/TabsOverflowMode.js",
7152
+ "module": "types/TabsOverflowMode",
7153
+ "static": true,
7154
+ "visibility": "public",
7155
+ "description": "Different types of overflow modes.",
7156
+ "constructor": { "visibility": "public" },
7157
+ "properties": [
7158
+ {
7159
+ "name": "End",
7160
+ "visibility": "public",
7161
+ "type": "End",
7162
+ "description": "End type is used if there should be only one overflow with hidden the tabs at the end of the tab container."
7163
+ },
7164
+ {
7165
+ "name": "StartAndEnd",
7166
+ "visibility": "public",
7167
+ "type": "StartAndEnd",
7168
+ "description": "StartAndEnd type is used if there should be two overflows on both ends of the tab container."
7169
+ }
7170
+ ],
7171
+ "slots": []
7172
+ },
6591
7173
  {
6592
7174
  "kind": "class",
6593
7175
  "name": "sap.ui.webcomponents.main.types.TitleLevel",