@openui5/sap.ui.webc.main 1.115.1 → 1.117.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (592) hide show
  1. package/.reuse/dep5 +0 -5
  2. package/THIRDPARTY.txt +1 -7
  3. package/package.json +3 -3
  4. package/src/sap/ui/webc/main/.library +1 -1
  5. package/src/sap/ui/webc/main/Avatar.js +23 -3
  6. package/src/sap/ui/webc/main/AvatarGroup.js +1 -1
  7. package/src/sap/ui/webc/main/Badge.js +2 -2
  8. package/src/sap/ui/webc/main/Breadcrumbs.js +1 -1
  9. package/src/sap/ui/webc/main/BreadcrumbsItem.js +3 -3
  10. package/src/sap/ui/webc/main/BusyIndicator.js +1 -1
  11. package/src/sap/ui/webc/main/Button.js +4 -3
  12. package/src/sap/ui/webc/main/Calendar.js +6 -2
  13. package/src/sap/ui/webc/main/CalendarDate.js +2 -2
  14. package/src/sap/ui/webc/main/Card.js +3 -7
  15. package/src/sap/ui/webc/main/CardHeader.js +7 -2
  16. package/src/sap/ui/webc/main/Carousel.js +49 -4
  17. package/src/sap/ui/webc/main/CheckBox.js +14 -4
  18. package/src/sap/ui/webc/main/ColorPalette.js +1 -1
  19. package/src/sap/ui/webc/main/ColorPaletteItem.js +1 -1
  20. package/src/sap/ui/webc/main/ColorPalettePopover.js +1 -1
  21. package/src/sap/ui/webc/main/ColorPicker.js +1 -1
  22. package/src/sap/ui/webc/main/ComboBox.js +11 -8
  23. package/src/sap/ui/webc/main/ComboBoxGroupItem.js +1 -1
  24. package/src/sap/ui/webc/main/ComboBoxItem.js +1 -1
  25. package/src/sap/ui/webc/main/CustomListItem.js +19 -3
  26. package/src/sap/ui/webc/main/DatePicker.js +7 -2
  27. package/src/sap/ui/webc/main/DateRangePicker.js +9 -3
  28. package/src/sap/ui/webc/main/DateTimePicker.js +8 -3
  29. package/src/sap/ui/webc/main/Dialog.js +37 -6
  30. package/src/sap/ui/webc/main/FileUploader.js +1 -1
  31. package/src/sap/ui/webc/main/GroupHeaderListItem.js +1 -1
  32. package/src/sap/ui/webc/main/Icon.js +42 -2
  33. package/src/sap/ui/webc/main/Input.js +2 -2
  34. package/src/sap/ui/webc/main/Label.js +7 -3
  35. package/src/sap/ui/webc/main/Link.js +12 -2
  36. package/src/sap/ui/webc/main/List.js +2 -1
  37. package/src/sap/ui/webc/main/Menu.js +87 -3
  38. package/src/sap/ui/webc/main/MenuItem.js +34 -1
  39. package/src/sap/ui/webc/main/MessageStrip.js +1 -1
  40. package/src/sap/ui/webc/main/MultiComboBox.js +8 -7
  41. package/src/sap/ui/webc/main/MultiComboBoxGroupItem.js +1 -1
  42. package/src/sap/ui/webc/main/MultiComboBoxItem.js +1 -1
  43. package/src/sap/ui/webc/main/MultiInput.js +4 -4
  44. package/src/sap/ui/webc/main/Option.js +1 -1
  45. package/src/sap/ui/webc/main/Panel.js +3 -3
  46. package/src/sap/ui/webc/main/Popover.js +18 -4
  47. package/src/sap/ui/webc/main/ProgressIndicator.js +1 -1
  48. package/src/sap/ui/webc/main/RadioButton.js +17 -1
  49. package/src/sap/ui/webc/main/RangeSlider.js +12 -2
  50. package/src/sap/ui/webc/main/RatingIndicator.js +2 -2
  51. package/src/sap/ui/webc/main/ResponsivePopover.js +18 -4
  52. package/src/sap/ui/webc/main/SegmentedButton.js +40 -5
  53. package/src/sap/ui/webc/main/SegmentedButtonItem.js +4 -3
  54. package/src/sap/ui/webc/main/Select.js +20 -4
  55. package/src/sap/ui/webc/main/Slider.js +2 -2
  56. package/src/sap/ui/webc/main/SplitButton.js +7 -7
  57. package/src/sap/ui/webc/main/StandardListItem.js +31 -4
  58. package/src/sap/ui/webc/main/StepInput.js +2 -2
  59. package/src/sap/ui/webc/main/SuggestionGroupItem.js +1 -1
  60. package/src/sap/ui/webc/main/SuggestionItem.js +2 -2
  61. package/src/sap/ui/webc/main/Switch.js +2 -2
  62. package/src/sap/ui/webc/main/Tab.js +3 -3
  63. package/src/sap/ui/webc/main/TabContainer.js +40 -4
  64. package/src/sap/ui/webc/main/TabSeparator.js +10 -2
  65. package/src/sap/ui/webc/main/Table.js +2 -2
  66. package/src/sap/ui/webc/main/TableCell.js +1 -1
  67. package/src/sap/ui/webc/main/TableColumn.js +21 -1
  68. package/src/sap/ui/webc/main/TableGroupRow.js +1 -1
  69. package/src/sap/ui/webc/main/TableRow.js +9 -1
  70. package/src/sap/ui/webc/main/TextArea.js +2 -3
  71. package/src/sap/ui/webc/main/TimePicker.js +31 -3
  72. package/src/sap/ui/webc/main/Title.js +1 -1
  73. package/src/sap/ui/webc/main/Toast.js +1 -1
  74. package/src/sap/ui/webc/main/ToggleButton.js +4 -3
  75. package/src/sap/ui/webc/main/Token.js +6 -4
  76. package/src/sap/ui/webc/main/Tree.js +31 -2
  77. package/src/sap/ui/webc/main/TreeItem.js +63 -10
  78. package/src/sap/ui/webc/main/TreeItemCustom.js +205 -0
  79. package/src/sap/ui/webc/main/changeHandler/ChangeLinkTarget.js +1 -1
  80. package/src/sap/ui/webc/main/library.js +348 -70
  81. package/src/sap/ui/webc/main/thirdparty/Avatar.js +130 -232
  82. package/src/sap/ui/webc/main/thirdparty/AvatarGroup.js +109 -184
  83. package/src/sap/ui/webc/main/thirdparty/Badge.js +40 -86
  84. package/src/sap/ui/webc/main/thirdparty/Breadcrumbs.js +152 -202
  85. package/src/sap/ui/webc/main/thirdparty/BreadcrumbsItem.js +27 -78
  86. package/src/sap/ui/webc/main/thirdparty/BusyIndicator.js +46 -115
  87. package/src/sap/ui/webc/main/thirdparty/Button.js +123 -287
  88. package/src/sap/ui/webc/main/thirdparty/Calendar.js +146 -197
  89. package/src/sap/ui/webc/main/thirdparty/CalendarDate.js +16 -26
  90. package/src/sap/ui/webc/main/thirdparty/CalendarHeader.js +78 -113
  91. package/src/sap/ui/webc/main/thirdparty/CalendarPart.js +16 -27
  92. package/src/sap/ui/webc/main/thirdparty/Card.js +43 -92
  93. package/src/sap/ui/webc/main/thirdparty/CardHeader.js +69 -129
  94. package/src/sap/ui/webc/main/thirdparty/Carousel.js +167 -229
  95. package/src/sap/ui/webc/main/thirdparty/CheckBox.js +103 -244
  96. package/src/sap/ui/webc/main/thirdparty/ColorPalette.js +122 -173
  97. package/src/sap/ui/webc/main/thirdparty/ColorPaletteItem.js +41 -77
  98. package/src/sap/ui/webc/main/thirdparty/ColorPalettePopover.js +62 -105
  99. package/src/sap/ui/webc/main/thirdparty/ColorPicker.js +138 -244
  100. package/src/sap/ui/webc/main/thirdparty/ComboBox.js +297 -419
  101. package/src/sap/ui/webc/main/thirdparty/ComboBoxGroupItem.js +20 -41
  102. package/src/sap/ui/webc/main/thirdparty/ComboBoxItem.js +30 -37
  103. package/src/sap/ui/webc/main/thirdparty/CustomListItem.js +33 -54
  104. package/src/sap/ui/webc/main/thirdparty/DateComponentBase.js +59 -76
  105. package/src/sap/ui/webc/main/thirdparty/DatePicker.js +207 -334
  106. package/src/sap/ui/webc/main/thirdparty/DateRangePicker.js +56 -72
  107. package/src/sap/ui/webc/main/thirdparty/DateTimePicker.js +63 -111
  108. package/src/sap/ui/webc/main/thirdparty/DayPicker.js +147 -212
  109. package/src/sap/ui/webc/main/thirdparty/Dialog.js +162 -183
  110. package/src/sap/ui/webc/main/thirdparty/FileUploader.js +101 -242
  111. package/src/sap/ui/webc/main/thirdparty/GroupHeaderListItem.js +25 -58
  112. package/src/sap/ui/webc/main/thirdparty/Icon.js +103 -193
  113. package/src/sap/ui/webc/main/thirdparty/Input.js +453 -717
  114. package/src/sap/ui/webc/main/thirdparty/Interfaces.js +51 -61
  115. package/src/sap/ui/webc/main/thirdparty/Label.js +49 -108
  116. package/src/sap/ui/webc/main/thirdparty/Link.js +104 -247
  117. package/src/sap/ui/webc/main/thirdparty/List.js +303 -468
  118. package/src/sap/ui/webc/main/thirdparty/ListItem.js +126 -166
  119. package/src/sap/ui/webc/main/thirdparty/ListItemBase.js +64 -104
  120. package/src/sap/ui/webc/main/thirdparty/Menu.js +264 -200
  121. package/src/sap/ui/webc/main/thirdparty/MenuItem.js +66 -117
  122. package/src/sap/ui/webc/main/thirdparty/MessageStrip.js +70 -141
  123. package/src/sap/ui/webc/main/thirdparty/MonthPicker.js +100 -103
  124. package/src/sap/ui/webc/main/thirdparty/MultiComboBox.js +381 -496
  125. package/src/sap/ui/webc/main/thirdparty/MultiComboBoxGroupItem.js +20 -34
  126. package/src/sap/ui/webc/main/thirdparty/MultiComboBoxItem.js +19 -26
  127. package/src/sap/ui/webc/main/thirdparty/MultiInput.js +127 -137
  128. package/src/sap/ui/webc/main/thirdparty/Option.js +40 -107
  129. package/src/sap/ui/webc/main/thirdparty/Panel.js +102 -214
  130. package/src/sap/ui/webc/main/thirdparty/Popover.js +141 -274
  131. package/src/sap/ui/webc/main/thirdparty/Popup.js +155 -250
  132. package/src/sap/ui/webc/main/thirdparty/ProgressIndicator.js +41 -109
  133. package/src/sap/ui/webc/main/thirdparty/RadioButton.js +111 -263
  134. package/src/sap/ui/webc/main/thirdparty/RadioButtonGroup.js +32 -13
  135. package/src/sap/ui/webc/main/thirdparty/RangeSlider.js +208 -208
  136. package/src/sap/ui/webc/main/thirdparty/RatingIndicator.js +79 -146
  137. package/src/sap/ui/webc/main/thirdparty/ResponsivePopover.js +70 -81
  138. package/src/sap/ui/webc/main/thirdparty/SegmentedButton.js +141 -126
  139. package/src/sap/ui/webc/main/thirdparty/SegmentedButtonItem.js +41 -73
  140. package/src/sap/ui/webc/main/thirdparty/Select.js +186 -285
  141. package/src/sap/ui/webc/main/thirdparty/Slider.js +84 -80
  142. package/src/sap/ui/webc/main/thirdparty/SliderBase.js +151 -326
  143. package/src/sap/ui/webc/main/thirdparty/SplitButton.js +111 -240
  144. package/src/sap/ui/webc/main/thirdparty/StandardListItem.js +50 -142
  145. package/src/sap/ui/webc/main/thirdparty/StepInput.js +137 -309
  146. package/src/sap/ui/webc/main/thirdparty/SuggestionGroupItem.js +22 -35
  147. package/src/sap/ui/webc/main/thirdparty/SuggestionItem.js +37 -114
  148. package/src/sap/ui/webc/main/thirdparty/SuggestionListItem.js +29 -37
  149. package/src/sap/ui/webc/main/thirdparty/Switch.js +63 -146
  150. package/src/sap/ui/webc/main/thirdparty/Tab.js +126 -168
  151. package/src/sap/ui/webc/main/thirdparty/TabContainer.js +344 -453
  152. package/src/sap/ui/webc/main/thirdparty/TabSeparator.js +35 -26
  153. package/src/sap/ui/webc/main/thirdparty/Table.js +319 -489
  154. package/src/sap/ui/webc/main/thirdparty/TableCell.js +41 -50
  155. package/src/sap/ui/webc/main/thirdparty/TableColumn.js +38 -88
  156. package/src/sap/ui/webc/main/thirdparty/TableGroupRow.js +50 -90
  157. package/src/sap/ui/webc/main/thirdparty/TableRow.js +137 -174
  158. package/src/sap/ui/webc/main/thirdparty/TextArea.js +162 -358
  159. package/src/sap/ui/webc/main/thirdparty/TimePicker.js +24 -52
  160. package/src/sap/ui/webc/main/thirdparty/TimePickerBase.js +116 -159
  161. package/src/sap/ui/webc/main/thirdparty/TimeSelection.js +121 -167
  162. package/src/sap/ui/webc/main/thirdparty/Title.js +38 -71
  163. package/src/sap/ui/webc/main/thirdparty/Toast.js +41 -110
  164. package/src/sap/ui/webc/main/thirdparty/ToggleButton.js +25 -39
  165. package/src/sap/ui/webc/main/thirdparty/Token.js +86 -143
  166. package/src/sap/ui/webc/main/thirdparty/Tokenizer.js +256 -202
  167. package/src/sap/ui/webc/main/thirdparty/Tree.js +227 -302
  168. package/src/sap/ui/webc/main/thirdparty/TreeItem.js +42 -156
  169. package/src/sap/ui/webc/main/thirdparty/TreeItemBase.js +256 -0
  170. package/src/sap/ui/webc/main/thirdparty/TreeItemCustom.js +80 -0
  171. package/src/sap/ui/webc/main/thirdparty/TreeList.js +51 -0
  172. package/src/sap/ui/webc/main/thirdparty/WheelSlider.js +75 -120
  173. package/src/sap/ui/webc/main/thirdparty/YearPicker.js +135 -124
  174. package/src/sap/ui/webc/main/thirdparty/css/themes/Avatar.css +1 -1
  175. package/src/sap/ui/webc/main/thirdparty/css/themes/AvatarGroup.css +1 -1
  176. package/src/sap/ui/webc/main/thirdparty/css/themes/Badge.css +1 -1
  177. package/src/sap/ui/webc/main/thirdparty/css/themes/Breadcrumbs.css +1 -1
  178. package/src/sap/ui/webc/main/thirdparty/css/themes/BreadcrumbsPopover.css +1 -1
  179. package/src/sap/ui/webc/main/thirdparty/css/themes/BrowserScrollbar.css +1 -1
  180. package/src/sap/ui/webc/main/thirdparty/css/themes/BusyIndicator.css +1 -1
  181. package/src/sap/ui/webc/main/thirdparty/css/themes/Button.css +1 -1
  182. package/src/sap/ui/webc/main/thirdparty/css/themes/Calendar.css +1 -1
  183. package/src/sap/ui/webc/main/thirdparty/css/themes/CalendarHeader.css +1 -1
  184. package/src/sap/ui/webc/main/thirdparty/css/themes/Card.css +1 -1
  185. package/src/sap/ui/webc/main/thirdparty/css/themes/CardHeader.css +1 -1
  186. package/src/sap/ui/webc/main/thirdparty/css/themes/Carousel.css +1 -1
  187. package/src/sap/ui/webc/main/thirdparty/css/themes/CheckBox.css +1 -1
  188. package/src/sap/ui/webc/main/thirdparty/css/themes/ColorPalette.css +1 -1
  189. package/src/sap/ui/webc/main/thirdparty/css/themes/ColorPaletteItem.css +1 -1
  190. package/src/sap/ui/webc/main/thirdparty/css/themes/ColorPalettePopover.css +1 -1
  191. package/src/sap/ui/webc/main/thirdparty/css/themes/ColorPaletteStaticArea.css +1 -1
  192. package/src/sap/ui/webc/main/thirdparty/css/themes/ColorPicker.css +1 -1
  193. package/src/sap/ui/webc/main/thirdparty/css/themes/ComboBox.css +1 -1
  194. package/src/sap/ui/webc/main/thirdparty/css/themes/ComboBoxPopover.css +1 -1
  195. package/src/sap/ui/webc/main/thirdparty/css/themes/CustomListItem.css +1 -1
  196. package/src/sap/ui/webc/main/thirdparty/css/themes/DatePicker.css +1 -1
  197. package/src/sap/ui/webc/main/thirdparty/css/themes/DatePickerPopover.css +1 -1
  198. package/src/sap/ui/webc/main/thirdparty/css/themes/DateRangePicker.css +1 -1
  199. package/src/sap/ui/webc/main/thirdparty/css/themes/DateTimePicker.css +1 -1
  200. package/src/sap/ui/webc/main/thirdparty/css/themes/DateTimePickerPopover.css +1 -1
  201. package/src/sap/ui/webc/main/thirdparty/css/themes/DayPicker.css +1 -1
  202. package/src/sap/ui/webc/main/thirdparty/css/themes/Dialog.css +1 -1
  203. package/src/sap/ui/webc/main/thirdparty/css/themes/FileUploader.css +1 -1
  204. package/src/sap/ui/webc/main/thirdparty/css/themes/FormComponents.css +1 -0
  205. package/src/sap/ui/webc/main/thirdparty/css/themes/GroupHeaderListItem.css +1 -1
  206. package/src/sap/ui/webc/main/thirdparty/css/themes/GrowingButton.css +1 -1
  207. package/src/sap/ui/webc/main/thirdparty/css/themes/Icon.css +1 -1
  208. package/src/sap/ui/webc/main/thirdparty/css/themes/Input.css +1 -1
  209. package/src/sap/ui/webc/main/thirdparty/css/themes/InputIcon.css +1 -1
  210. package/src/sap/ui/webc/main/thirdparty/css/themes/InvisibleTextStyles.css +1 -1
  211. package/src/sap/ui/webc/main/thirdparty/css/themes/Label.css +1 -1
  212. package/src/sap/ui/webc/main/thirdparty/css/themes/Link.css +1 -1
  213. package/src/sap/ui/webc/main/thirdparty/css/themes/List.css +1 -1
  214. package/src/sap/ui/webc/main/thirdparty/css/themes/ListItem.css +1 -1
  215. package/src/sap/ui/webc/main/thirdparty/css/themes/ListItemBase.css +1 -1
  216. package/src/sap/ui/webc/main/thirdparty/css/themes/Menu.css +1 -1
  217. package/src/sap/ui/webc/main/thirdparty/css/themes/MessageStrip.css +1 -1
  218. package/src/sap/ui/webc/main/thirdparty/css/themes/MonthPicker.css +1 -1
  219. package/src/sap/ui/webc/main/thirdparty/css/themes/MultiComboBox.css +1 -1
  220. package/src/sap/ui/webc/main/thirdparty/css/themes/MultiInput.css +1 -1
  221. package/src/sap/ui/webc/main/thirdparty/css/themes/Panel.css +1 -1
  222. package/src/sap/ui/webc/main/thirdparty/css/themes/Popover.css +1 -1
  223. package/src/sap/ui/webc/main/thirdparty/css/themes/Popup.css +1 -1
  224. package/src/sap/ui/webc/main/thirdparty/css/themes/PopupStaticAreaStyles.css +1 -1
  225. package/src/sap/ui/webc/main/thirdparty/css/themes/PopupsCommon.css +1 -1
  226. package/src/sap/ui/webc/main/thirdparty/css/themes/ProgressIndicator.css +3 -1
  227. package/src/sap/ui/webc/main/thirdparty/css/themes/RadioButton.css +1 -1
  228. package/src/sap/ui/webc/main/thirdparty/css/themes/RangeSlider.css +1 -1
  229. package/src/sap/ui/webc/main/thirdparty/css/themes/RatingIndicator.css +1 -1
  230. package/src/sap/ui/webc/main/thirdparty/css/themes/ResponsivePopover.css +1 -1
  231. package/src/sap/ui/webc/main/thirdparty/css/themes/ResponsivePopoverCommon.css +1 -1
  232. package/src/sap/ui/webc/main/thirdparty/css/themes/SegmentedButton.css +1 -1
  233. package/src/sap/ui/webc/main/thirdparty/css/themes/Select.css +1 -1
  234. package/src/sap/ui/webc/main/thirdparty/css/themes/SelectPopover.css +1 -1
  235. package/src/sap/ui/webc/main/thirdparty/css/themes/SliderBase.css +1 -1
  236. package/src/sap/ui/webc/main/thirdparty/css/themes/SplitButton.css +1 -1
  237. package/src/sap/ui/webc/main/thirdparty/css/themes/StepInput.css +1 -1
  238. package/src/sap/ui/webc/main/thirdparty/css/themes/Suggestions.css +1 -1
  239. package/src/sap/ui/webc/main/thirdparty/css/themes/Switch.css +1 -1
  240. package/src/sap/ui/webc/main/thirdparty/css/themes/Tab.css +1 -1
  241. package/src/sap/ui/webc/main/thirdparty/css/themes/TabContainer.css +1 -1
  242. package/src/sap/ui/webc/main/thirdparty/css/themes/TabInOverflow.css +1 -1
  243. package/src/sap/ui/webc/main/thirdparty/css/themes/TabInStrip.css +1 -1
  244. package/src/sap/ui/webc/main/thirdparty/css/themes/TabSemanticIcon.css +1 -1
  245. package/src/sap/ui/webc/main/thirdparty/css/themes/TabSeparatorInOverflow.css +1 -1
  246. package/src/sap/ui/webc/main/thirdparty/css/themes/TabSeparatorInStrip.css +1 -1
  247. package/src/sap/ui/webc/main/thirdparty/css/themes/Table.css +1 -1
  248. package/src/sap/ui/webc/main/thirdparty/css/themes/TableCell.css +1 -1
  249. package/src/sap/ui/webc/main/thirdparty/css/themes/TableColumn.css +1 -1
  250. package/src/sap/ui/webc/main/thirdparty/css/themes/TableGroupRow.css +1 -1
  251. package/src/sap/ui/webc/main/thirdparty/css/themes/TableRow.css +1 -1
  252. package/src/sap/ui/webc/main/thirdparty/css/themes/TextArea.css +2 -1
  253. package/src/sap/ui/webc/main/thirdparty/css/themes/TimePicker.css +1 -1
  254. package/src/sap/ui/webc/main/thirdparty/css/themes/TimePickerPopover.css +1 -1
  255. package/src/sap/ui/webc/main/thirdparty/css/themes/TimeSelection.css +1 -1
  256. package/src/sap/ui/webc/main/thirdparty/css/themes/Title.css +1 -1
  257. package/src/sap/ui/webc/main/thirdparty/css/themes/Toast.css +1 -1
  258. package/src/sap/ui/webc/main/thirdparty/css/themes/ToggleButton.css +1 -1
  259. package/src/sap/ui/webc/main/thirdparty/css/themes/Token.css +1 -1
  260. package/src/sap/ui/webc/main/thirdparty/css/themes/Tokenizer.css +1 -1
  261. package/src/sap/ui/webc/main/thirdparty/css/themes/Tree.css +1 -1
  262. package/src/sap/ui/webc/main/thirdparty/css/themes/TreeItem.css +1 -0
  263. package/src/sap/ui/webc/main/thirdparty/css/themes/ValueStateMessage.css +1 -1
  264. package/src/sap/ui/webc/main/thirdparty/css/themes/WheelSlider.css +1 -1
  265. package/src/sap/ui/webc/main/thirdparty/css/themes/YearPicker.css +1 -1
  266. package/src/sap/ui/webc/main/thirdparty/css/themes/sap_belize/parameters-bundle.css +1 -1
  267. package/src/sap/ui/webc/main/thirdparty/css/themes/sap_belize_hcb/parameters-bundle.css +1 -1
  268. package/src/sap/ui/webc/main/thirdparty/css/themes/sap_belize_hcw/parameters-bundle.css +1 -1
  269. package/src/sap/ui/webc/main/thirdparty/css/themes/sap_fiori_3/parameters-bundle.css +1 -1
  270. package/src/sap/ui/webc/main/thirdparty/css/themes/sap_fiori_3_dark/parameters-bundle.css +1 -1
  271. package/src/sap/ui/webc/main/thirdparty/css/themes/sap_fiori_3_hcb/parameters-bundle.css +1 -1
  272. package/src/sap/ui/webc/main/thirdparty/css/themes/sap_fiori_3_hcw/parameters-bundle.css +1 -1
  273. package/src/sap/ui/webc/main/thirdparty/css/themes/sap_horizon/parameters-bundle.css +1 -1
  274. package/src/sap/ui/webc/main/thirdparty/css/themes/sap_horizon_dark/parameters-bundle.css +1 -1
  275. package/src/sap/ui/webc/main/thirdparty/css/themes/sap_horizon_exp/parameters-bundle.css +1 -1
  276. package/src/sap/ui/webc/main/thirdparty/css/themes/sap_horizon_hcb/parameters-bundle.css +1 -1
  277. package/src/sap/ui/webc/main/thirdparty/css/themes/sap_horizon_hcw/parameters-bundle.css +1 -1
  278. package/src/sap/ui/webc/main/thirdparty/features/InputElementsFormSupport.js +25 -10
  279. package/src/sap/ui/webc/main/thirdparty/features/InputSuggestions.js +70 -72
  280. package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_ar.json.js +1 -1
  281. package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_bg.json.js +1 -1
  282. package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_ca.json.js +1 -1
  283. package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_cs.json.js +1 -1
  284. package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_cy.json.js +1 -1
  285. package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_da.json.js +1 -1
  286. package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_de.json.js +1 -1
  287. package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_el.json.js +1 -1
  288. package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_en.json.js +1 -1
  289. package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_en_GB.json.js +1 -1
  290. package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_en_US_sappsd.json.js +1 -1
  291. package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_en_US_saprigi.json.js +1 -1
  292. package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_en_US_saptrc.json.js +1 -1
  293. package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_es.json.js +1 -1
  294. package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_es_MX.json.js +1 -1
  295. package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_et.json.js +1 -1
  296. package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_fi.json.js +1 -1
  297. package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_fr.json.js +1 -1
  298. package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_fr_CA.json.js +1 -1
  299. package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_hi.json.js +1 -1
  300. package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_hr.json.js +1 -1
  301. package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_hu.json.js +1 -1
  302. package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_it.json.js +1 -1
  303. package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_iw.json.js +1 -1
  304. package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_ja.json.js +1 -1
  305. package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_kk.json.js +1 -1
  306. package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_ko.json.js +1 -1
  307. package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_lt.json.js +1 -1
  308. package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_lv.json.js +1 -1
  309. package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_ms.json.js +1 -1
  310. package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_nl.json.js +1 -1
  311. package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_no.json.js +1 -1
  312. package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_pl.json.js +1 -1
  313. package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_pt.json.js +1 -1
  314. package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_pt_PT.json.js +1 -1
  315. package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_ro.json.js +1 -1
  316. package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_ru.json.js +1 -1
  317. package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_sh.json.js +1 -1
  318. package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_sk.json.js +1 -1
  319. package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_sl.json.js +1 -1
  320. package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_sv.json.js +1 -1
  321. package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_th.json.js +1 -1
  322. package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_tr.json.js +1 -1
  323. package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_uk.json.js +1 -1
  324. package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_vi.json.js +1 -1
  325. package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_zh_CN.json.js +1 -1
  326. package/src/sap/ui/webc/main/thirdparty/generated/assets/i18n/messagebundle_zh_TW.json.js +1 -1
  327. package/src/sap/ui/webc/main/thirdparty/generated/assets/themes/sap_belize/parameters-bundle.css.json.js +1 -1
  328. package/src/sap/ui/webc/main/thirdparty/generated/assets/themes/sap_belize_hcb/parameters-bundle.css.json.js +1 -1
  329. package/src/sap/ui/webc/main/thirdparty/generated/assets/themes/sap_belize_hcw/parameters-bundle.css.json.js +1 -1
  330. package/src/sap/ui/webc/main/thirdparty/generated/assets/themes/sap_fiori_3/parameters-bundle.css.json.js +1 -1
  331. package/src/sap/ui/webc/main/thirdparty/generated/assets/themes/sap_fiori_3_dark/parameters-bundle.css.json.js +1 -1
  332. package/src/sap/ui/webc/main/thirdparty/generated/assets/themes/sap_fiori_3_hcb/parameters-bundle.css.json.js +1 -1
  333. package/src/sap/ui/webc/main/thirdparty/generated/assets/themes/sap_fiori_3_hcw/parameters-bundle.css.json.js +1 -1
  334. package/src/sap/ui/webc/main/thirdparty/generated/assets/themes/sap_horizon/parameters-bundle.css.json.js +1 -1
  335. package/src/sap/ui/webc/main/thirdparty/generated/assets/themes/sap_horizon_dark/parameters-bundle.css.json.js +1 -1
  336. package/src/sap/ui/webc/main/thirdparty/generated/assets/themes/sap_horizon_exp/parameters-bundle.css.json.js +1 -1
  337. package/src/sap/ui/webc/main/thirdparty/generated/assets/themes/sap_horizon_hcb/parameters-bundle.css.json.js +1 -1
  338. package/src/sap/ui/webc/main/thirdparty/generated/assets/themes/sap_horizon_hcw/parameters-bundle.css.json.js +1 -1
  339. package/src/sap/ui/webc/main/thirdparty/generated/i18n/i18n-defaults.js +108 -23
  340. package/src/sap/ui/webc/main/thirdparty/generated/templates/AvatarGroupTemplate.lit.js +9 -3
  341. package/src/sap/ui/webc/main/thirdparty/generated/templates/AvatarTemplate.lit.js +15 -6
  342. package/src/sap/ui/webc/main/thirdparty/generated/templates/BadgeTemplate.lit.js +6 -2
  343. package/src/sap/ui/webc/main/thirdparty/generated/templates/BreadcrumbsPopoverTemplate.lit.js +6 -2
  344. package/src/sap/ui/webc/main/thirdparty/generated/templates/BreadcrumbsTemplate.lit.js +9 -3
  345. package/src/sap/ui/webc/main/thirdparty/generated/templates/BusyIndicatorTemplate.lit.js +12 -4
  346. package/src/sap/ui/webc/main/thirdparty/generated/templates/ButtonTemplate.lit.js +9 -3
  347. package/src/sap/ui/webc/main/thirdparty/generated/templates/CalendarHeaderTemplate.lit.js +9 -3
  348. package/src/sap/ui/webc/main/thirdparty/generated/templates/CalendarTemplate.lit.js +3 -1
  349. package/src/sap/ui/webc/main/thirdparty/generated/templates/CardHeaderTemplate.lit.js +18 -6
  350. package/src/sap/ui/webc/main/thirdparty/generated/templates/CardTemplate.lit.js +6 -2
  351. package/src/sap/ui/webc/main/thirdparty/generated/templates/CarouselTemplate.lit.js +30 -10
  352. package/src/sap/ui/webc/main/thirdparty/generated/templates/CheckBoxTemplate.lit.js +12 -4
  353. package/src/sap/ui/webc/main/thirdparty/generated/templates/ColorPaletteDialogTemplate.lit.js +3 -1
  354. package/src/sap/ui/webc/main/thirdparty/generated/templates/ColorPaletteItemTemplate.lit.js +3 -1
  355. package/src/sap/ui/webc/main/thirdparty/generated/templates/ColorPalettePopoverTemplate.lit.js +6 -2
  356. package/src/sap/ui/webc/main/thirdparty/generated/templates/ColorPaletteTemplate.lit.js +18 -6
  357. package/src/sap/ui/webc/main/thirdparty/generated/templates/ColorPickerTemplate.lit.js +3 -1
  358. package/src/sap/ui/webc/main/thirdparty/generated/templates/ComboBoxPopoverTemplate.lit.js +57 -17
  359. package/src/sap/ui/webc/main/thirdparty/generated/templates/ComboBoxTemplate.lit.js +12 -4
  360. package/src/sap/ui/webc/main/thirdparty/generated/templates/CustomListItemTemplate.lit.js +48 -10
  361. package/src/sap/ui/webc/main/thirdparty/generated/templates/DatePickerPopoverTemplate.lit.js +12 -4
  362. package/src/sap/ui/webc/main/thirdparty/generated/templates/DatePickerTemplate.lit.js +9 -3
  363. package/src/sap/ui/webc/main/thirdparty/generated/templates/DateTimePickerPopoverTemplate.lit.js +18 -6
  364. package/src/sap/ui/webc/main/thirdparty/generated/templates/DayPickerTemplate.lit.js +30 -10
  365. package/src/sap/ui/webc/main/thirdparty/generated/templates/DialogTemplate.lit.js +36 -6
  366. package/src/sap/ui/webc/main/thirdparty/generated/templates/FileUploaderPopoverTemplate.lit.js +15 -5
  367. package/src/sap/ui/webc/main/thirdparty/generated/templates/FileUploaderTemplate.lit.js +12 -4
  368. package/src/sap/ui/webc/main/thirdparty/generated/templates/GroupHeaderListItemTemplate.lit.js +3 -1
  369. package/src/sap/ui/webc/main/thirdparty/generated/templates/IconTemplate.lit.js +16 -3
  370. package/src/sap/ui/webc/main/thirdparty/generated/templates/InputPopoverTemplate.lit.js +63 -21
  371. package/src/sap/ui/webc/main/thirdparty/generated/templates/InputTemplate.lit.js +18 -6
  372. package/src/sap/ui/webc/main/thirdparty/generated/templates/LabelTemplate.lit.js +3 -1
  373. package/src/sap/ui/webc/main/thirdparty/generated/templates/LinkTemplate.lit.js +6 -2
  374. package/src/sap/ui/webc/main/thirdparty/generated/templates/ListItemTemplate.lit.js +48 -10
  375. package/src/sap/ui/webc/main/thirdparty/generated/templates/ListTemplate.lit.js +27 -9
  376. package/src/sap/ui/webc/main/thirdparty/generated/templates/MenuTemplate.lit.js +33 -9
  377. package/src/sap/ui/webc/main/thirdparty/generated/templates/MessageStripTemplate.lit.js +15 -5
  378. package/src/sap/ui/webc/main/thirdparty/generated/templates/MonthPickerTemplate.lit.js +12 -3
  379. package/src/sap/ui/webc/main/thirdparty/generated/templates/MultiComboBoxPopoverTemplate.lit.js +72 -24
  380. package/src/sap/ui/webc/main/thirdparty/generated/templates/MultiComboBoxTemplate.lit.js +18 -6
  381. package/src/sap/ui/webc/main/thirdparty/generated/templates/MultiInputTemplate.lit.js +30 -10
  382. package/src/sap/ui/webc/main/thirdparty/generated/templates/PanelTemplate.lit.js +21 -6
  383. package/src/sap/ui/webc/main/thirdparty/generated/templates/PopoverTemplate.lit.js +18 -6
  384. package/src/sap/ui/webc/main/thirdparty/generated/templates/PopupBlockLayerTemplate.lit.js +3 -1
  385. package/src/sap/ui/webc/main/thirdparty/generated/templates/PopupTemplate.lit.js +3 -1
  386. package/src/sap/ui/webc/main/thirdparty/generated/templates/ProgressIndicatorTemplate.lit.js +33 -11
  387. package/src/sap/ui/webc/main/thirdparty/generated/templates/RadioButtonTemplate.lit.js +13 -4
  388. package/src/sap/ui/webc/main/thirdparty/generated/templates/RangeSliderTemplate.lit.js +30 -10
  389. package/src/sap/ui/webc/main/thirdparty/generated/templates/RatingIndicatorTemplate.lit.js +30 -10
  390. package/src/sap/ui/webc/main/thirdparty/generated/templates/ResponsivePopoverTemplate.lit.js +39 -13
  391. package/src/sap/ui/webc/main/thirdparty/generated/templates/SegmentedButtonItemTemplate.lit.js +6 -2
  392. package/src/sap/ui/webc/main/thirdparty/generated/templates/SegmentedButtonTemplate.lit.js +3 -1
  393. package/src/sap/ui/webc/main/thirdparty/generated/templates/SelectPopoverTemplate.lit.js +51 -17
  394. package/src/sap/ui/webc/main/thirdparty/generated/templates/SelectTemplate.lit.js +9 -3
  395. package/src/sap/ui/webc/main/thirdparty/generated/templates/SliderBaseTemplate.lit.js +24 -8
  396. package/src/sap/ui/webc/main/thirdparty/generated/templates/SliderTemplate.lit.js +27 -9
  397. package/src/sap/ui/webc/main/thirdparty/generated/templates/SplitButtonTemplate.lit.js +6 -1
  398. package/src/sap/ui/webc/main/thirdparty/generated/templates/StandardListItemTemplate.lit.js +78 -18
  399. package/src/sap/ui/webc/main/thirdparty/generated/templates/StepInputTemplate.lit.js +12 -4
  400. package/src/sap/ui/webc/main/thirdparty/generated/templates/SuggestionListItemTemplate.lit.js +87 -21
  401. package/src/sap/ui/webc/main/thirdparty/generated/templates/SwitchTemplate.lit.js +15 -5
  402. package/src/sap/ui/webc/main/thirdparty/generated/templates/TabContainerPopoverTemplate.lit.js +6 -2
  403. package/src/sap/ui/webc/main/thirdparty/generated/templates/TabContainerTemplate.lit.js +33 -10
  404. package/src/sap/ui/webc/main/thirdparty/generated/templates/TabInOverflowTemplate.lit.js +18 -5
  405. package/src/sap/ui/webc/main/thirdparty/generated/templates/TabInStripTemplate.lit.js +24 -8
  406. package/src/sap/ui/webc/main/thirdparty/generated/templates/TabSeparatorInOverflowTemplate.lit.js +3 -1
  407. package/src/sap/ui/webc/main/thirdparty/generated/templates/TabSeparatorInStripTemplate.lit.js +3 -1
  408. package/src/sap/ui/webc/main/thirdparty/generated/templates/TabTemplate.lit.js +6 -2
  409. package/src/sap/ui/webc/main/thirdparty/generated/templates/TableCellTemplate.lit.js +3 -1
  410. package/src/sap/ui/webc/main/thirdparty/generated/templates/TableColumnTemplate.lit.js +3 -1
  411. package/src/sap/ui/webc/main/thirdparty/generated/templates/TableGroupRowTemplate.lit.js +3 -1
  412. package/src/sap/ui/webc/main/thirdparty/generated/templates/TableRowTemplate.lit.js +36 -9
  413. package/src/sap/ui/webc/main/thirdparty/generated/templates/TableTemplate.lit.js +33 -10
  414. package/src/sap/ui/webc/main/thirdparty/generated/templates/TextAreaPopoverTemplate.lit.js +15 -5
  415. package/src/sap/ui/webc/main/thirdparty/generated/templates/TextAreaTemplate.lit.js +15 -5
  416. package/src/sap/ui/webc/main/thirdparty/generated/templates/TimePickerPopoverTemplate.lit.js +3 -1
  417. package/src/sap/ui/webc/main/thirdparty/generated/templates/TimePickerTemplate.lit.js +9 -3
  418. package/src/sap/ui/webc/main/thirdparty/generated/templates/TimeSelectionTemplate.lit.js +15 -5
  419. package/src/sap/ui/webc/main/thirdparty/generated/templates/TitleTemplate.lit.js +21 -7
  420. package/src/sap/ui/webc/main/thirdparty/generated/templates/ToastTemplate.lit.js +6 -2
  421. package/src/sap/ui/webc/main/thirdparty/generated/templates/ToggleButtonTemplate.lit.js +9 -3
  422. package/src/sap/ui/webc/main/thirdparty/generated/templates/TokenTemplate.lit.js +12 -4
  423. package/src/sap/ui/webc/main/thirdparty/generated/templates/TokenizerPopoverTemplate.lit.js +18 -6
  424. package/src/sap/ui/webc/main/thirdparty/generated/templates/TokenizerTemplate.lit.js +9 -3
  425. package/src/sap/ui/webc/main/thirdparty/generated/templates/TreeItemBaseTemplate.lit.js +72 -0
  426. package/src/sap/ui/webc/main/thirdparty/generated/templates/TreeItemCustomTemplate.lit.js +72 -0
  427. package/src/sap/ui/webc/main/thirdparty/generated/templates/TreeItemTemplate.lit.js +78 -0
  428. package/src/sap/ui/webc/main/thirdparty/generated/templates/TreeTemplate.lit.js +6 -2
  429. package/src/sap/ui/webc/main/thirdparty/generated/templates/WheelSliderTemplate.lit.js +12 -4
  430. package/src/sap/ui/webc/main/thirdparty/generated/templates/YearPickerTemplate.lit.js +12 -3
  431. package/src/sap/ui/webc/main/thirdparty/generated/themes/Avatar.css.js +5 -4
  432. package/src/sap/ui/webc/main/thirdparty/generated/themes/AvatarGroup.css.js +5 -4
  433. package/src/sap/ui/webc/main/thirdparty/generated/themes/Badge.css.js +5 -4
  434. package/src/sap/ui/webc/main/thirdparty/generated/themes/Breadcrumbs.css.js +5 -4
  435. package/src/sap/ui/webc/main/thirdparty/generated/themes/BreadcrumbsPopover.css.js +5 -4
  436. package/src/sap/ui/webc/main/thirdparty/generated/themes/BrowserScrollbar.css.js +5 -4
  437. package/src/sap/ui/webc/main/thirdparty/generated/themes/BusyIndicator.css.js +5 -4
  438. package/src/sap/ui/webc/main/thirdparty/generated/themes/Button.css.js +5 -4
  439. package/src/sap/ui/webc/main/thirdparty/generated/themes/Calendar.css.js +5 -4
  440. package/src/sap/ui/webc/main/thirdparty/generated/themes/CalendarHeader.css.js +5 -4
  441. package/src/sap/ui/webc/main/thirdparty/generated/themes/Card.css.js +5 -4
  442. package/src/sap/ui/webc/main/thirdparty/generated/themes/CardHeader.css.js +5 -4
  443. package/src/sap/ui/webc/main/thirdparty/generated/themes/Carousel.css.js +5 -4
  444. package/src/sap/ui/webc/main/thirdparty/generated/themes/CheckBox.css.js +5 -4
  445. package/src/sap/ui/webc/main/thirdparty/generated/themes/ColorPalette.css.js +5 -4
  446. package/src/sap/ui/webc/main/thirdparty/generated/themes/ColorPaletteItem.css.js +5 -4
  447. package/src/sap/ui/webc/main/thirdparty/generated/themes/ColorPalettePopover.css.js +5 -4
  448. package/src/sap/ui/webc/main/thirdparty/generated/themes/ColorPaletteStaticArea.css.js +5 -4
  449. package/src/sap/ui/webc/main/thirdparty/generated/themes/ColorPicker.css.js +5 -4
  450. package/src/sap/ui/webc/main/thirdparty/generated/themes/ComboBox.css.js +5 -4
  451. package/src/sap/ui/webc/main/thirdparty/generated/themes/ComboBoxPopover.css.js +5 -4
  452. package/src/sap/ui/webc/main/thirdparty/generated/themes/CustomListItem.css.js +5 -4
  453. package/src/sap/ui/webc/main/thirdparty/generated/themes/DatePicker.css.js +5 -4
  454. package/src/sap/ui/webc/main/thirdparty/generated/themes/DatePickerPopover.css.js +5 -4
  455. package/src/sap/ui/webc/main/thirdparty/generated/themes/DateRangePicker.css.js +5 -4
  456. package/src/sap/ui/webc/main/thirdparty/generated/themes/DateTimePicker.css.js +5 -4
  457. package/src/sap/ui/webc/main/thirdparty/generated/themes/DateTimePickerPopover.css.js +5 -4
  458. package/src/sap/ui/webc/main/thirdparty/generated/themes/DayPicker.css.js +5 -4
  459. package/src/sap/ui/webc/main/thirdparty/generated/themes/Dialog.css.js +5 -4
  460. package/src/sap/ui/webc/main/thirdparty/generated/themes/FileUploader.css.js +5 -4
  461. package/src/sap/ui/webc/main/thirdparty/generated/themes/FormComponents.css.js +20 -0
  462. package/src/sap/ui/webc/main/thirdparty/generated/themes/GroupHeaderListItem.css.js +5 -4
  463. package/src/sap/ui/webc/main/thirdparty/generated/themes/GrowingButton.css.js +5 -4
  464. package/src/sap/ui/webc/main/thirdparty/generated/themes/Icon.css.js +5 -4
  465. package/src/sap/ui/webc/main/thirdparty/generated/themes/Input.css.js +5 -4
  466. package/src/sap/ui/webc/main/thirdparty/generated/themes/InputIcon.css.js +5 -4
  467. package/src/sap/ui/webc/main/thirdparty/generated/themes/InvisibleTextStyles.css.js +5 -4
  468. package/src/sap/ui/webc/main/thirdparty/generated/themes/Label.css.js +5 -4
  469. package/src/sap/ui/webc/main/thirdparty/generated/themes/Link.css.js +5 -4
  470. package/src/sap/ui/webc/main/thirdparty/generated/themes/List.css.js +5 -4
  471. package/src/sap/ui/webc/main/thirdparty/generated/themes/ListItem.css.js +5 -4
  472. package/src/sap/ui/webc/main/thirdparty/generated/themes/ListItemBase.css.js +5 -4
  473. package/src/sap/ui/webc/main/thirdparty/generated/themes/Menu.css.js +5 -4
  474. package/src/sap/ui/webc/main/thirdparty/generated/themes/MessageStrip.css.js +5 -4
  475. package/src/sap/ui/webc/main/thirdparty/generated/themes/MonthPicker.css.js +5 -4
  476. package/src/sap/ui/webc/main/thirdparty/generated/themes/MultiComboBox.css.js +5 -4
  477. package/src/sap/ui/webc/main/thirdparty/generated/themes/MultiComboBoxPopover.css.js +5 -4
  478. package/src/sap/ui/webc/main/thirdparty/generated/themes/MultiInput.css.js +5 -4
  479. package/src/sap/ui/webc/main/thirdparty/generated/themes/Panel.css.js +5 -4
  480. package/src/sap/ui/webc/main/thirdparty/generated/themes/Popover.css.js +5 -4
  481. package/src/sap/ui/webc/main/thirdparty/generated/themes/Popup.css.js +5 -4
  482. package/src/sap/ui/webc/main/thirdparty/generated/themes/PopupGlobal.css.js +5 -4
  483. package/src/sap/ui/webc/main/thirdparty/generated/themes/PopupStaticAreaStyles.css.js +5 -4
  484. package/src/sap/ui/webc/main/thirdparty/generated/themes/PopupsCommon.css.js +5 -4
  485. package/src/sap/ui/webc/main/thirdparty/generated/themes/ProgressIndicator.css.js +5 -4
  486. package/src/sap/ui/webc/main/thirdparty/generated/themes/RadioButton.css.js +5 -4
  487. package/src/sap/ui/webc/main/thirdparty/generated/themes/RangeSlider.css.js +5 -4
  488. package/src/sap/ui/webc/main/thirdparty/generated/themes/RatingIndicator.css.js +5 -4
  489. package/src/sap/ui/webc/main/thirdparty/generated/themes/ResponsivePopover.css.js +5 -4
  490. package/src/sap/ui/webc/main/thirdparty/generated/themes/ResponsivePopoverCommon.css.js +5 -4
  491. package/src/sap/ui/webc/main/thirdparty/generated/themes/SegmentedButton.css.js +5 -4
  492. package/src/sap/ui/webc/main/thirdparty/generated/themes/Select.css.js +5 -4
  493. package/src/sap/ui/webc/main/thirdparty/generated/themes/SelectPopover.css.js +5 -4
  494. package/src/sap/ui/webc/main/thirdparty/generated/themes/SliderBase.css.js +5 -4
  495. package/src/sap/ui/webc/main/thirdparty/generated/themes/SplitButton.css.js +5 -4
  496. package/src/sap/ui/webc/main/thirdparty/generated/themes/StepInput.css.js +5 -4
  497. package/src/sap/ui/webc/main/thirdparty/generated/themes/Suggestions.css.js +5 -4
  498. package/src/sap/ui/webc/main/thirdparty/generated/themes/Switch.css.js +5 -4
  499. package/src/sap/ui/webc/main/thirdparty/generated/themes/Tab.css.js +5 -4
  500. package/src/sap/ui/webc/main/thirdparty/generated/themes/TabContainer.css.js +5 -4
  501. package/src/sap/ui/webc/main/thirdparty/generated/themes/TabInOverflow.css.js +5 -4
  502. package/src/sap/ui/webc/main/thirdparty/generated/themes/TabInStrip.css.js +5 -4
  503. package/src/sap/ui/webc/main/thirdparty/generated/themes/TabSemanticIcon.css.js +5 -4
  504. package/src/sap/ui/webc/main/thirdparty/generated/themes/TabSeparatorInOverflow.css.js +5 -4
  505. package/src/sap/ui/webc/main/thirdparty/generated/themes/TabSeparatorInStrip.css.js +5 -4
  506. package/src/sap/ui/webc/main/thirdparty/generated/themes/Table.css.js +5 -4
  507. package/src/sap/ui/webc/main/thirdparty/generated/themes/TableCell.css.js +5 -4
  508. package/src/sap/ui/webc/main/thirdparty/generated/themes/TableColumn.css.js +5 -4
  509. package/src/sap/ui/webc/main/thirdparty/generated/themes/TableGroupRow.css.js +5 -4
  510. package/src/sap/ui/webc/main/thirdparty/generated/themes/TableRow.css.js +5 -4
  511. package/src/sap/ui/webc/main/thirdparty/generated/themes/TapHighlightColor.css.js +5 -4
  512. package/src/sap/ui/webc/main/thirdparty/generated/themes/TextArea.css.js +5 -4
  513. package/src/sap/ui/webc/main/thirdparty/generated/themes/TimePicker.css.js +5 -4
  514. package/src/sap/ui/webc/main/thirdparty/generated/themes/TimePickerPopover.css.js +5 -4
  515. package/src/sap/ui/webc/main/thirdparty/generated/themes/TimeSelection.css.js +5 -4
  516. package/src/sap/ui/webc/main/thirdparty/generated/themes/Title.css.js +5 -4
  517. package/src/sap/ui/webc/main/thirdparty/generated/themes/Toast.css.js +5 -4
  518. package/src/sap/ui/webc/main/thirdparty/generated/themes/ToggleButton.css.js +5 -4
  519. package/src/sap/ui/webc/main/thirdparty/generated/themes/Token.css.js +5 -4
  520. package/src/sap/ui/webc/main/thirdparty/generated/themes/Tokenizer.css.js +5 -4
  521. package/src/sap/ui/webc/main/thirdparty/generated/themes/TokenizerPopover.css.js +5 -4
  522. package/src/sap/ui/webc/main/thirdparty/generated/themes/Tree.css.js +5 -4
  523. package/src/sap/ui/webc/main/thirdparty/generated/themes/TreeItem.css.js +20 -0
  524. package/src/sap/ui/webc/main/thirdparty/generated/themes/ValueStateMessage.css.js +5 -4
  525. package/src/sap/ui/webc/main/thirdparty/generated/themes/WheelSlider.css.js +5 -4
  526. package/src/sap/ui/webc/main/thirdparty/generated/themes/YearPicker.css.js +5 -4
  527. package/src/sap/ui/webc/main/thirdparty/generated/themes/sap_belize/parameters-bundle.css.js +3 -2
  528. package/src/sap/ui/webc/main/thirdparty/generated/themes/sap_belize_hcb/parameters-bundle.css.js +3 -2
  529. package/src/sap/ui/webc/main/thirdparty/generated/themes/sap_belize_hcw/parameters-bundle.css.js +3 -2
  530. package/src/sap/ui/webc/main/thirdparty/generated/themes/sap_fiori_3/parameters-bundle.css.js +3 -2
  531. package/src/sap/ui/webc/main/thirdparty/generated/themes/sap_fiori_3_dark/parameters-bundle.css.js +3 -2
  532. package/src/sap/ui/webc/main/thirdparty/generated/themes/sap_fiori_3_hcb/parameters-bundle.css.js +3 -2
  533. package/src/sap/ui/webc/main/thirdparty/generated/themes/sap_fiori_3_hcw/parameters-bundle.css.js +3 -2
  534. package/src/sap/ui/webc/main/thirdparty/generated/themes/sap_horizon/parameters-bundle.css.js +3 -2
  535. package/src/sap/ui/webc/main/thirdparty/generated/themes/sap_horizon_dark/parameters-bundle.css.js +3 -2
  536. package/src/sap/ui/webc/main/thirdparty/generated/themes/sap_horizon_exp/parameters-bundle.css.js +3 -2
  537. package/src/sap/ui/webc/main/thirdparty/generated/themes/sap_horizon_hcb/parameters-bundle.css.js +3 -2
  538. package/src/sap/ui/webc/main/thirdparty/generated/themes/sap_horizon_hcw/parameters-bundle.css.js +3 -2
  539. package/src/sap/ui/webc/main/thirdparty/popup-utils/OpenedPopupsRegistry.js +16 -1
  540. package/src/sap/ui/webc/main/thirdparty/popup-utils/PopoverRegistry.js +36 -21
  541. package/src/sap/ui/webc/main/thirdparty/timepicker-utils/TimeSlider.js +6 -3
  542. package/src/sap/ui/webc/main/thirdparty/types/AvatarColorScheme.js +21 -34
  543. package/src/sap/ui/webc/main/thirdparty/types/AvatarGroupType.js +13 -26
  544. package/src/sap/ui/webc/main/thirdparty/types/AvatarShape.js +11 -24
  545. package/src/sap/ui/webc/main/thirdparty/types/AvatarSize.js +19 -32
  546. package/src/sap/ui/webc/main/thirdparty/types/BackgroundDesign.js +40 -0
  547. package/src/sap/ui/webc/main/thirdparty/types/BorderDesign.js +34 -0
  548. package/src/sap/ui/webc/main/thirdparty/types/BreadcrumbsDesign.js +12 -24
  549. package/src/sap/ui/webc/main/thirdparty/types/BreadcrumbsSeparatorStyle.js +17 -29
  550. package/src/sap/ui/webc/main/thirdparty/types/BusyIndicatorSize.js +13 -25
  551. package/src/sap/ui/webc/main/thirdparty/types/ButtonDesign.js +16 -28
  552. package/src/sap/ui/webc/main/thirdparty/types/CalendarPickersMode.js +40 -0
  553. package/src/sap/ui/webc/main/thirdparty/types/CalendarSelectionMode.js +13 -25
  554. package/src/sap/ui/webc/main/thirdparty/types/CarouselArrowsPlacement.js +12 -24
  555. package/src/sap/ui/webc/main/thirdparty/types/CarouselPageIndicatorStyle.js +35 -0
  556. package/src/sap/ui/webc/main/thirdparty/types/ComboBoxFilter.js +46 -0
  557. package/src/sap/ui/webc/main/thirdparty/types/HasPopup.js +14 -27
  558. package/src/sap/ui/webc/main/thirdparty/types/IconDesign.js +70 -0
  559. package/src/sap/ui/webc/main/thirdparty/types/InputType.js +16 -28
  560. package/src/sap/ui/webc/main/thirdparty/types/LinkDesign.js +13 -25
  561. package/src/sap/ui/webc/main/thirdparty/types/ListGrowingMode.js +15 -27
  562. package/src/sap/ui/webc/main/thirdparty/types/ListItemType.js +19 -25
  563. package/src/sap/ui/webc/main/thirdparty/types/ListMode.js +17 -29
  564. package/src/sap/ui/webc/main/thirdparty/types/ListSeparators.js +14 -26
  565. package/src/sap/ui/webc/main/thirdparty/types/MessageStripDesign.js +14 -26
  566. package/src/sap/ui/webc/main/thirdparty/types/PanelAccessibleRole.js +19 -28
  567. package/src/sap/ui/webc/main/thirdparty/types/PopoverHorizontalAlign.js +18 -30
  568. package/src/sap/ui/webc/main/thirdparty/types/PopoverPlacementType.js +14 -26
  569. package/src/sap/ui/webc/main/thirdparty/types/PopoverVerticalAlign.js +14 -26
  570. package/src/sap/ui/webc/main/thirdparty/types/PopupAccessibleRole.js +40 -0
  571. package/src/sap/ui/webc/main/thirdparty/types/Priority.js +13 -26
  572. package/src/sap/ui/webc/main/thirdparty/types/SegmentedButtonMode.js +34 -0
  573. package/src/sap/ui/webc/main/thirdparty/types/SemanticColor.js +15 -27
  574. package/src/sap/ui/webc/main/thirdparty/types/SwitchDesign.js +12 -24
  575. package/src/sap/ui/webc/main/thirdparty/types/TabContainerBackgroundDesign.js +40 -0
  576. package/src/sap/ui/webc/main/thirdparty/types/TabContainerTabsPlacement.js +12 -24
  577. package/src/sap/ui/webc/main/thirdparty/types/TabLayout.js +14 -26
  578. package/src/sap/ui/webc/main/thirdparty/types/TableColumnPopinDisplay.js +34 -0
  579. package/src/sap/ui/webc/main/thirdparty/types/TableGrowingMode.js +17 -29
  580. package/src/sap/ui/webc/main/thirdparty/types/TableMode.js +13 -25
  581. package/src/sap/ui/webc/main/thirdparty/types/TableRowType.js +12 -24
  582. package/src/sap/ui/webc/main/thirdparty/types/TabsOverflowMode.js +12 -24
  583. package/src/sap/ui/webc/main/thirdparty/types/TitleLevel.js +16 -28
  584. package/src/sap/ui/webc/main/thirdparty/types/ToastPlacement.js +28 -40
  585. package/src/sap/ui/webc/main/thirdparty/types/WrappingType.js +11 -24
  586. package/ui5.yaml +19 -5
  587. package/src/sap/ui/webc/main/thirdparty/DurationPicker.js +0 -300
  588. package/src/sap/ui/webc/main/thirdparty/TreeListItem.js +0 -316
  589. package/src/sap/ui/webc/main/thirdparty/css/themes/TreeListItem.css +0 -1
  590. package/src/sap/ui/webc/main/thirdparty/generated/templates/TreeListItemTemplate.lit.js +0 -27
  591. package/src/sap/ui/webc/main/thirdparty/generated/themes/TreeListItem.css.js +0 -19
  592. package/src/sap/ui/webc/main/thirdparty/types/GrowingMode.js +0 -53
@@ -8,12 +8,12 @@
8
8
  * Initialization Code and shared classes of library sap.ui.webc.main
9
9
  */
10
10
  sap.ui.define([
11
- "sap/ui/core/Lib",
12
11
  "sap/ui/webc/common/library",
12
+ "sap/ui/core/Lib",
13
13
  "./thirdparty/Assets",
14
14
  "./library.config"
15
15
  ], // library dependency
16
- function(Library, commonLibrary) {
16
+ function(commonLibrary, Library) {
17
17
 
18
18
  "use strict";
19
19
 
@@ -23,14 +23,14 @@ sap.ui.define([
23
23
  * @namespace
24
24
  * @alias sap.ui.webc.main
25
25
  * @author SAP SE
26
- * @version 1.115.1
26
+ * @version 1.117.0
27
27
  * @public
28
28
  * @since 1.92.0
29
29
  * @experimental Since 1.92.0 This API is experimental and might change significantly.
30
30
  */
31
31
  var thisLib = Library.init({
32
32
  name: "sap.ui.webc.main",
33
- version: "1.115.1",
33
+ version: "1.117.0",
34
34
  dependencies: ["sap.ui.core", "sap.ui.webc.common"],
35
35
  noLibraryCSS: true,
36
36
  designtime: "sap/ui/webc/main/designtime/library.designtime",
@@ -39,6 +39,7 @@ sap.ui.define([
39
39
  "sap.ui.webc.main.IBreadcrumbsItem",
40
40
  "sap.ui.webc.main.IButton",
41
41
  "sap.ui.webc.main.ICalendarDate",
42
+ "sap.ui.webc.main.ICardHeader",
42
43
  "sap.ui.webc.main.IColorPaletteItem",
43
44
  "sap.ui.webc.main.IComboBoxItem",
44
45
  "sap.ui.webc.main.IIcon",
@@ -61,14 +62,18 @@ sap.ui.define([
61
62
  "sap.ui.webc.main.AvatarGroupType",
62
63
  "sap.ui.webc.main.AvatarShape",
63
64
  "sap.ui.webc.main.AvatarSize",
65
+ "sap.ui.webc.main.BackgroundDesign",
66
+ "sap.ui.webc.main.BorderDesign",
64
67
  "sap.ui.webc.main.BreadcrumbsDesign",
65
68
  "sap.ui.webc.main.BreadcrumbsSeparatorStyle",
66
69
  "sap.ui.webc.main.BusyIndicatorSize",
67
70
  "sap.ui.webc.main.ButtonDesign",
68
71
  "sap.ui.webc.main.CalendarSelectionMode",
69
72
  "sap.ui.webc.main.CarouselArrowsPlacement",
70
- "sap.ui.webc.main.GrowingMode",
73
+ "sap.ui.webc.main.CarouselPageIndicatorStyle",
74
+ "sap.ui.webc.main.ComboBoxFilter",
71
75
  "sap.ui.webc.main.HasPopup",
76
+ "sap.ui.webc.main.IconDesign",
72
77
  "sap.ui.webc.main.InputType",
73
78
  "sap.ui.webc.main.LinkDesign",
74
79
  "sap.ui.webc.main.ListGrowingMode",
@@ -80,10 +85,14 @@ sap.ui.define([
80
85
  "sap.ui.webc.main.PopoverHorizontalAlign",
81
86
  "sap.ui.webc.main.PopoverPlacementType",
82
87
  "sap.ui.webc.main.PopoverVerticalAlign",
88
+ "sap.ui.webc.main.PopupAccessibleRole",
83
89
  "sap.ui.webc.main.Priority",
90
+ "sap.ui.webc.main.SegmentedButtonMode",
84
91
  "sap.ui.webc.main.SemanticColor",
85
92
  "sap.ui.webc.main.SwitchDesign",
93
+ "sap.ui.webc.main.TabContainerBackgroundDesign",
86
94
  "sap.ui.webc.main.TabLayout",
95
+ "sap.ui.webc.main.TableColumnPopinDisplay",
87
96
  "sap.ui.webc.main.TableGrowingMode",
88
97
  "sap.ui.webc.main.TableMode",
89
98
  "sap.ui.webc.main.TableRowType",
@@ -165,7 +174,8 @@ sap.ui.define([
165
174
  "sap.ui.webc.main.ToggleButton",
166
175
  "sap.ui.webc.main.Token",
167
176
  "sap.ui.webc.main.Tree",
168
- "sap.ui.webc.main.TreeItem"
177
+ "sap.ui.webc.main.TreeItem",
178
+ "sap.ui.webc.main.TreeItemCustom"
169
179
  ],
170
180
  elements: [],
171
181
  extensions: {
@@ -283,6 +293,16 @@ sap.ui.define([
283
293
  * @experimental Since 1.92.0 This API is experimental and might change significantly.
284
294
  */
285
295
 
296
+ /**
297
+ * Interface for components that may be slotted inside <code>ui5-card</code> as header
298
+ *
299
+ * @name sap.ui.webc.main.ICardHeader
300
+ * @interface
301
+ * @public
302
+ * @since 1.115.0
303
+ * @experimental Since 1.115.0 This API is experimental and might change significantly.
304
+ */
305
+
286
306
  /**
287
307
  * Interface for components that may be used inside a <code>ui5-color-palette</code> or <code>ui5-color-palette-popover</code>
288
308
  *
@@ -532,13 +552,13 @@ sap.ui.define([
532
552
  thisLib.AvatarGroupType = {
533
553
 
534
554
  /**
535
- * The avatars are displayed as partially overlapped on top of each other and the entire group has one click/tap area.
555
+ * The avatars are displayed as partially overlapped on top of each other and the entire group has one click or tap area.
536
556
  * @public
537
557
  */
538
558
  Group: "Group",
539
559
 
540
560
  /**
541
- * The avatars are displayed side-by-side and each avatar has its own click/tap area.
561
+ * The avatars are displayed side-by-side and each avatar has its own click or tap area.
542
562
  * @public
543
563
  */
544
564
  Individual: "Individual"
@@ -612,7 +632,61 @@ sap.ui.define([
612
632
 
613
633
 
614
634
  /**
615
- * Different types of <code>Breadcrumbs</code>.
635
+ * Defines background designs.
636
+ *
637
+ * @enum {string}
638
+ * @public
639
+ * @since 1.115.0
640
+ * @experimental Since 1.115.0 This API is experimental and might change significantly.
641
+ */
642
+ thisLib.BackgroundDesign = {
643
+
644
+ /**
645
+ * A solid background color dependent on the theme.
646
+ * @public
647
+ */
648
+ Solid: "Solid",
649
+
650
+ /**
651
+ * A translucent background depending on the opacity value of the theme.
652
+ * @public
653
+ */
654
+ Translucent: "Translucent",
655
+
656
+ /**
657
+ * Transparent background.
658
+ * @public
659
+ */
660
+ Transparent: "Transparent"
661
+ };
662
+
663
+
664
+ /**
665
+ * Defines border designs.
666
+ *
667
+ * @enum {string}
668
+ * @public
669
+ * @since 1.115.0
670
+ * @experimental Since 1.115.0 This API is experimental and might change significantly.
671
+ */
672
+ thisLib.BorderDesign = {
673
+
674
+ /**
675
+ * Specifies no border.
676
+ * @public
677
+ */
678
+ None: "None",
679
+
680
+ /**
681
+ * A solid border color dependent on the theme.
682
+ * @public
683
+ */
684
+ Solid: "Solid"
685
+ };
686
+
687
+
688
+ /**
689
+ * Different Breadcrumbs designs.
616
690
  *
617
691
  * @enum {string}
618
692
  * @public
@@ -636,7 +710,7 @@ sap.ui.define([
636
710
 
637
711
 
638
712
  /**
639
- * Different types of <code>Breadcrumbs</code> separator.
713
+ * Different Breadcrumbs separator styles.
640
714
  *
641
715
  * @enum {string}
642
716
  * @public
@@ -664,7 +738,7 @@ sap.ui.define([
664
738
  DoubleGreaterThan: "DoubleGreaterThan",
665
739
 
666
740
  /**
667
- * The separator appears as "//".
741
+ * The separator appears as "//" .
668
742
  * @public
669
743
  */
670
744
  DoubleSlash: "DoubleSlash",
@@ -684,7 +758,7 @@ sap.ui.define([
684
758
 
685
759
 
686
760
  /**
687
- * Different types of BusyIndicator.
761
+ * Different BusyIndicator sizes.
688
762
  *
689
763
  * @enum {string}
690
764
  * @public
@@ -714,7 +788,7 @@ sap.ui.define([
714
788
 
715
789
 
716
790
  /**
717
- * Different types of Button.
791
+ * Different Button designs.
718
792
  *
719
793
  * @enum {string}
720
794
  * @public
@@ -762,7 +836,7 @@ sap.ui.define([
762
836
 
763
837
 
764
838
  /**
765
- * Different date selection modes for <code>ui5-calendar</code>.
839
+ * Different Calendar selection mode.
766
840
  *
767
841
  * @enum {string}
768
842
  * @public
@@ -792,7 +866,7 @@ sap.ui.define([
792
866
 
793
867
 
794
868
  /**
795
- * Different types of Arrow Placement for <code>ui5-carousel</code>.
869
+ * Different Carousel arrows placement.
796
870
  *
797
871
  * @enum {string}
798
872
  * @public
@@ -816,32 +890,62 @@ sap.ui.define([
816
890
 
817
891
 
818
892
  /**
819
- * Defines the growing mode of the component.
893
+ * Different Carousel page indicator styles.
820
894
  *
821
895
  * @enum {string}
822
896
  * @public
823
- * @since 1.92.0
824
- * @experimental Since 1.92.0 This API is experimental and might change significantly.
897
+ * @since 1.115.0
898
+ * @experimental Since 1.115.0 This API is experimental and might change significantly.
825
899
  */
826
- thisLib.GrowingMode = {
900
+ thisLib.CarouselPageIndicatorStyle = {
827
901
 
828
902
  /**
829
- * Component's <code>load-more</code> is fired upon pressing a "More" button. at the bottom.
903
+ * The page indicator will be visualized as dots if there are fewer than 9 pages. If there are more pages, the page indicator will switch to displaying the current page and the total number of pages. (e.g. X of Y)
830
904
  * @public
831
905
  */
832
- Button: "Button",
906
+ Default: "Default",
833
907
 
834
908
  /**
835
- * Component's growing is not enabled.
909
+ * The page indicator will display the current page and the total number of pages. (e.g. X of Y)
910
+ * @public
911
+ */
912
+ Numeric: "Numeric"
913
+ };
914
+
915
+
916
+ /**
917
+ * Different filtering types of the ComboBox.
918
+ *
919
+ * @enum {string}
920
+ * @public
921
+ * @since 1.115.0
922
+ * @experimental Since 1.115.0 This API is experimental and might change significantly.
923
+ */
924
+ thisLib.ComboBoxFilter = {
925
+
926
+ /**
927
+ * Defines contains filtering.
928
+ * @public
929
+ */
930
+ Contains: "Contains",
931
+
932
+ /**
933
+ * Removes any filtering applied while typing
836
934
  * @public
837
935
  */
838
936
  None: "None",
839
937
 
840
938
  /**
841
- * Component's <code>load-more</code> is fired upon scroll.
939
+ * Defines filtering by starting symbol of item's text.
842
940
  * @public
843
941
  */
844
- Scroll: "Scroll"
942
+ StartsWith: "StartsWith",
943
+
944
+ /**
945
+ * Defines filtering by first symbol of each word of item's text.
946
+ * @public
947
+ */
948
+ StartsWithPerTerm: "StartsWithPerTerm"
845
949
  };
846
950
 
847
951
 
@@ -888,7 +992,67 @@ sap.ui.define([
888
992
 
889
993
 
890
994
  /**
891
- * Defines input types
995
+ * Different Icon semantic designs.
996
+ *
997
+ * @enum {string}
998
+ * @public
999
+ * @since 1.115.0
1000
+ * @experimental Since 1.115.0 This API is experimental and might change significantly.
1001
+ */
1002
+ thisLib.IconDesign = {
1003
+
1004
+ /**
1005
+ * Contrast design
1006
+ * @public
1007
+ */
1008
+ Contrast: "Contrast",
1009
+
1010
+ /**
1011
+ * Critical design
1012
+ * @public
1013
+ */
1014
+ Critical: "Critical",
1015
+
1016
+ /**
1017
+ * Default design (brand design)
1018
+ * @public
1019
+ */
1020
+ Default: "Default",
1021
+
1022
+ /**
1023
+ * info type
1024
+ * @public
1025
+ */
1026
+ Information: "Information",
1027
+
1028
+ /**
1029
+ * Negative design
1030
+ * @public
1031
+ */
1032
+ Negative: "Negative",
1033
+
1034
+ /**
1035
+ * Neutral design
1036
+ * @public
1037
+ */
1038
+ Neutral: "Neutral",
1039
+
1040
+ /**
1041
+ * Design that indicates an icon which isn't interactive
1042
+ * @public
1043
+ */
1044
+ NonInteractive: "NonInteractive",
1045
+
1046
+ /**
1047
+ * Positive design
1048
+ * @public
1049
+ */
1050
+ Positive: "Positive"
1051
+ };
1052
+
1053
+
1054
+ /**
1055
+ * Different input types.
892
1056
  *
893
1057
  * @enum {string}
894
1058
  * @public
@@ -936,7 +1100,7 @@ sap.ui.define([
936
1100
 
937
1101
 
938
1102
  /**
939
- * Different types of Button.
1103
+ * Different link designs.
940
1104
  *
941
1105
  * @enum {string}
942
1106
  * @public
@@ -966,7 +1130,7 @@ sap.ui.define([
966
1130
 
967
1131
 
968
1132
  /**
969
- * Defines the growing mode, used in the <code>ui5-list</code>.
1133
+ * Different list growing modes.
970
1134
  *
971
1135
  * @enum {string}
972
1136
  * @public
@@ -976,7 +1140,7 @@ sap.ui.define([
976
1140
  thisLib.ListGrowingMode = {
977
1141
 
978
1142
  /**
979
- * Component's <code>load-more</code> is fired upon pressing a "More" button. at the bottom.
1143
+ * Component's "load-more" is fired upon pressing a "More" button. at the bottom.
980
1144
  * @public
981
1145
  */
982
1146
  Button: "Button",
@@ -988,7 +1152,7 @@ sap.ui.define([
988
1152
  None: "None",
989
1153
 
990
1154
  /**
991
- * Component's <code>load-more</code> is fired upon scroll.
1155
+ * Component's "load-more" is fired upon scroll.
992
1156
  * @public
993
1157
  */
994
1158
  Scroll: "Scroll"
@@ -996,7 +1160,7 @@ sap.ui.define([
996
1160
 
997
1161
 
998
1162
  /**
999
- * Different types of ListItem.
1163
+ * Different list item types.
1000
1164
  *
1001
1165
  * @enum {string}
1002
1166
  * @public
@@ -1021,12 +1185,18 @@ sap.ui.define([
1021
1185
  * Indicates the list item does not have any active feedback when item is pressed.
1022
1186
  * @public
1023
1187
  */
1024
- Inactive: "Inactive"
1188
+ Inactive: "Inactive",
1189
+
1190
+ /**
1191
+ * Enables the type of navigation, which is specified to add an arrow at the end of the items and fires navigate-click event.
1192
+ * @public
1193
+ */
1194
+ Navigation: "Navigation"
1025
1195
  };
1026
1196
 
1027
1197
 
1028
1198
  /**
1029
- * Defines the type of <code>ui5-list</code>.
1199
+ * Different list modes.
1030
1200
  *
1031
1201
  * @enum {string}
1032
1202
  * @public
@@ -1080,7 +1250,7 @@ sap.ui.define([
1080
1250
 
1081
1251
 
1082
1252
  /**
1083
- * Defines which separator style will be applied for the list items.
1253
+ * Different types of list items separators.
1084
1254
  *
1085
1255
  * @enum {string}
1086
1256
  * @public
@@ -1096,7 +1266,7 @@ sap.ui.define([
1096
1266
  All: "All",
1097
1267
 
1098
1268
  /**
1099
- * Separators between the items. <b>Note:</b> This enumeration depends on the theme.
1269
+ * Separators between the items. Note: This enumeration depends on the theme.
1100
1270
  * @public
1101
1271
  */
1102
1272
  Inner: "Inner",
@@ -1110,7 +1280,7 @@ sap.ui.define([
1110
1280
 
1111
1281
 
1112
1282
  /**
1113
- * Defines different types of MessageStrip.
1283
+ * MessageStrip designs.
1114
1284
  *
1115
1285
  * @enum {string}
1116
1286
  * @public
@@ -1146,7 +1316,7 @@ sap.ui.define([
1146
1316
 
1147
1317
 
1148
1318
  /**
1149
- * Available Panel Accessible Landmark Roles.
1319
+ * Panel accessible roles.
1150
1320
  *
1151
1321
  * @enum {string}
1152
1322
  * @public
@@ -1156,19 +1326,19 @@ sap.ui.define([
1156
1326
  thisLib.PanelAccessibleRole = {
1157
1327
 
1158
1328
  /**
1159
- * Represents the ARIA role <code>complementary</code>. A section of the page, designed to be complementary to the main content at a similar level in the DOM hierarchy.
1329
+ * Represents the ARIA role "complementary". A section of the page, designed to be complementary to the main content at a similar level in the DOM hierarchy.
1160
1330
  * @public
1161
1331
  */
1162
1332
  Complementary: "Complementary",
1163
1333
 
1164
1334
  /**
1165
- * Represents the ARIA role <code>Form</code>. A landmark region that contains a collection of items and objects that, as a whole, create a form.
1335
+ * Represents the ARIA role "Form". A landmark region that contains a collection of items and objects that, as a whole, create a form.
1166
1336
  * @public
1167
1337
  */
1168
1338
  Form: "Form",
1169
1339
 
1170
1340
  /**
1171
- * Represents the ARIA role <code>Region</code>. A section of a page, that is important enough to be included in a page summary or table of contents.
1341
+ * Represents the ARIA role "Region". A section of a page, that is important enough to be included in a page summary or table of contents.
1172
1342
  * @public
1173
1343
  */
1174
1344
  Region: "Region"
@@ -1176,7 +1346,7 @@ sap.ui.define([
1176
1346
 
1177
1347
 
1178
1348
  /**
1179
- * Defines the horizontal alignment of <code>ui5-popover</code>
1349
+ * Popover horizontal align types.
1180
1350
  *
1181
1351
  * @enum {string}
1182
1352
  * @public
@@ -1186,25 +1356,25 @@ sap.ui.define([
1186
1356
  thisLib.PopoverHorizontalAlign = {
1187
1357
 
1188
1358
  /**
1189
- * Popover is centered
1359
+ * Popover is centered.
1190
1360
  * @public
1191
1361
  */
1192
1362
  Center: "Center",
1193
1363
 
1194
1364
  /**
1195
- * Popover opens on the left side of the target
1365
+ * Popover is aligned with the left side of the target. When direction is RTL, it is right aligned.
1196
1366
  * @public
1197
1367
  */
1198
1368
  Left: "Left",
1199
1369
 
1200
1370
  /**
1201
- * Popover opens on the right side of the target
1371
+ * Popover is aligned with the right side of the target. When direction is RTL, it is left aligned.
1202
1372
  * @public
1203
1373
  */
1204
1374
  Right: "Right",
1205
1375
 
1206
1376
  /**
1207
- * Popover is stretched
1377
+ * Popover is stretched.
1208
1378
  * @public
1209
1379
  */
1210
1380
  Stretch: "Stretch"
@@ -1212,7 +1382,7 @@ sap.ui.define([
1212
1382
 
1213
1383
 
1214
1384
  /**
1215
- * Types for the placement of Popover control.
1385
+ * Popover placement types.
1216
1386
  *
1217
1387
  * @enum {string}
1218
1388
  * @public
@@ -1248,7 +1418,7 @@ sap.ui.define([
1248
1418
 
1249
1419
 
1250
1420
  /**
1251
- * Types for the placement of message Popover control.
1421
+ * Popover vertical align types.
1252
1422
  *
1253
1423
  * @enum {string}
1254
1424
  * @public
@@ -1283,6 +1453,36 @@ sap.ui.define([
1283
1453
  };
1284
1454
 
1285
1455
 
1456
+ /**
1457
+ * Popup accessible roles.
1458
+ *
1459
+ * @enum {string}
1460
+ * @public
1461
+ * @since 1.115.0
1462
+ * @experimental Since 1.115.0 This API is experimental and might change significantly.
1463
+ */
1464
+ thisLib.PopupAccessibleRole = {
1465
+
1466
+ /**
1467
+ * Represents the ARIA role "alertdialog".
1468
+ * @public
1469
+ */
1470
+ AlertDialog: "AlertDialog",
1471
+
1472
+ /**
1473
+ * Represents the ARIA role "dialog".
1474
+ * @public
1475
+ */
1476
+ Dialog: "Dialog",
1477
+
1478
+ /**
1479
+ * Represents no ARIA role.
1480
+ * @public
1481
+ */
1482
+ None: "None"
1483
+ };
1484
+
1485
+
1286
1486
  /**
1287
1487
  * Different types of Priority.
1288
1488
  *
@@ -1320,7 +1520,31 @@ sap.ui.define([
1320
1520
 
1321
1521
 
1322
1522
  /**
1323
- * Defines the semantic color
1523
+ * Different SegmentedButton modes.
1524
+ *
1525
+ * @enum {string}
1526
+ * @public
1527
+ * @since 1.115.0
1528
+ * @experimental Since 1.115.0 This API is experimental and might change significantly.
1529
+ */
1530
+ thisLib.SegmentedButtonMode = {
1531
+
1532
+ /**
1533
+ * Multiple items can be selected at a time. All items can be deselected.
1534
+ * @public
1535
+ */
1536
+ MultiSelect: "MultiSelect",
1537
+
1538
+ /**
1539
+ * There is always one selected. Selecting one deselects the previous one.
1540
+ * @public
1541
+ */
1542
+ SingleSelect: "SingleSelect"
1543
+ };
1544
+
1545
+
1546
+ /**
1547
+ * Different types of SemanticColor.
1324
1548
  *
1325
1549
  * @enum {string}
1326
1550
  * @public
@@ -1362,7 +1586,7 @@ sap.ui.define([
1362
1586
 
1363
1587
 
1364
1588
  /**
1365
- * Defines input types
1589
+ * Different types of Switch designs.
1366
1590
  *
1367
1591
  * @enum {string}
1368
1592
  * @public
@@ -1386,7 +1610,37 @@ sap.ui.define([
1386
1610
 
1387
1611
 
1388
1612
  /**
1389
- * Different types of Tab layouts.
1613
+ * Background design for the header and content of TabContainer.
1614
+ *
1615
+ * @enum {string}
1616
+ * @public
1617
+ * @since 1.115.0
1618
+ * @experimental Since 1.115.0 This API is experimental and might change significantly.
1619
+ */
1620
+ thisLib.TabContainerBackgroundDesign = {
1621
+
1622
+ /**
1623
+ * A Solid background color.
1624
+ * @public
1625
+ */
1626
+ Solid: "Solid",
1627
+
1628
+ /**
1629
+ * A Translucent background color.
1630
+ * @public
1631
+ */
1632
+ Translucent: "Translucent",
1633
+
1634
+ /**
1635
+ * A Transparent background color.
1636
+ * @public
1637
+ */
1638
+ Transparent: "Transparent"
1639
+ };
1640
+
1641
+
1642
+ /**
1643
+ * Tab layout of TabContainer.
1390
1644
  *
1391
1645
  * @enum {string}
1392
1646
  * @public
@@ -1396,13 +1650,13 @@ sap.ui.define([
1396
1650
  thisLib.TabLayout = {
1397
1651
 
1398
1652
  /**
1399
- * Inline type, the tab <code>main text</code> and <code>additionalText</code> are displayed horizotally.
1653
+ * Inline type, the tab "main text" and "additionalText" are displayed horizotally.
1400
1654
  * @public
1401
1655
  */
1402
1656
  Inline: "Inline",
1403
1657
 
1404
1658
  /**
1405
- * Standard type, the tab <code>main text</code> and <code>additionalText</code> are displayed vertically.
1659
+ * Standard type, the tab "main text" and "additionalText" are displayed vertically.
1406
1660
  * @public
1407
1661
  */
1408
1662
  Standard: "Standard"
@@ -1410,7 +1664,31 @@ sap.ui.define([
1410
1664
 
1411
1665
 
1412
1666
  /**
1413
- * Defines the growing mode, used in the <code>ui5-table</code>.
1667
+ * Table cell popin display.
1668
+ *
1669
+ * @enum {string}
1670
+ * @public
1671
+ * @since 1.115.0
1672
+ * @experimental Since 1.115.0 This API is experimental and might change significantly.
1673
+ */
1674
+ thisLib.TableColumnPopinDisplay = {
1675
+
1676
+ /**
1677
+ * default type
1678
+ * @public
1679
+ */
1680
+ Block: "Block",
1681
+
1682
+ /**
1683
+ * inline type (the title and value are displayed on the same line)
1684
+ * @public
1685
+ */
1686
+ Inline: "Inline"
1687
+ };
1688
+
1689
+
1690
+ /**
1691
+ * Different table growing modes.
1414
1692
  *
1415
1693
  * @enum {string}
1416
1694
  * @public
@@ -1420,19 +1698,19 @@ sap.ui.define([
1420
1698
  thisLib.TableGrowingMode = {
1421
1699
 
1422
1700
  /**
1423
- * Component's <code>load-more</code> is fired upon pressing a "More" button. at the bottom.
1701
+ * Component <code>load-more</code> is fired upon pressing a "More" button at the bottom.
1424
1702
  * @public
1425
1703
  */
1426
1704
  Button: "Button",
1427
1705
 
1428
1706
  /**
1429
- * Component's growing is not enabled.
1707
+ * Component growing is not enabled.
1430
1708
  * @public
1431
1709
  */
1432
1710
  None: "None",
1433
1711
 
1434
1712
  /**
1435
- * Component's <code>load-more</code> is fired upon scroll.
1713
+ * Component <code>load-more</code> is fired upon scroll.
1436
1714
  * @public
1437
1715
  */
1438
1716
  Scroll: "Scroll"
@@ -1440,7 +1718,7 @@ sap.ui.define([
1440
1718
 
1441
1719
 
1442
1720
  /**
1443
- * Defines the type of <code>ui5-table</code>.
1721
+ * Different table modes.
1444
1722
  *
1445
1723
  * @enum {string}
1446
1724
  * @public
@@ -1470,7 +1748,7 @@ sap.ui.define([
1470
1748
 
1471
1749
 
1472
1750
  /**
1473
- * Different types of TableRow.
1751
+ * Different table row types.
1474
1752
  *
1475
1753
  * @enum {string}
1476
1754
  * @public
@@ -1494,7 +1772,7 @@ sap.ui.define([
1494
1772
 
1495
1773
 
1496
1774
  /**
1497
- * Different types of overflow modes.
1775
+ * Tabs overflow mode in TabContainer.
1498
1776
  *
1499
1777
  * @enum {string}
1500
1778
  * @public
@@ -1518,7 +1796,7 @@ sap.ui.define([
1518
1796
 
1519
1797
 
1520
1798
  /**
1521
- * Defines the <code>ui5-title</code> level
1799
+ * Different types of Title level.
1522
1800
  *
1523
1801
  * @enum {string}
1524
1802
  * @public
@@ -1566,7 +1844,7 @@ sap.ui.define([
1566
1844
 
1567
1845
 
1568
1846
  /**
1569
- * Defines where the <code>ui5-toast</code> will be placed.
1847
+ * Toast placement.
1570
1848
  *
1571
1849
  * @enum {string}
1572
1850
  * @public
@@ -1576,55 +1854,55 @@ sap.ui.define([
1576
1854
  thisLib.ToastPlacement = {
1577
1855
 
1578
1856
  /**
1579
- * <code>ui5-toast</code> is placed at the <code>BottomCenter</code> position of its container. Default placement (no selection)
1857
+ * Toast is placed at the <code>BottomCenter</code> position of its container. Default placement (no selection)
1580
1858
  * @public
1581
1859
  */
1582
1860
  BottomCenter: "BottomCenter",
1583
1861
 
1584
1862
  /**
1585
- * <code>ui5-toast</code> is placed at the <code>BottomEnd</code> position of its container.
1863
+ * Toast is placed at the <code>BottomEnd</code> position of its container.
1586
1864
  * @public
1587
1865
  */
1588
1866
  BottomEnd: "BottomEnd",
1589
1867
 
1590
1868
  /**
1591
- * <code>ui5-toast</code> is placed at the <code>BottomStart</code> position of its container.
1869
+ * Toast is placed at the <code>BottomStart</code> position of its container.
1592
1870
  * @public
1593
1871
  */
1594
1872
  BottomStart: "BottomStart",
1595
1873
 
1596
1874
  /**
1597
- * <code>ui5-toast</code> is placed at the <code>MiddleCenter</code> position of its container.
1875
+ * Toast is placed at the <code>MiddleCenter</code> position of its container.
1598
1876
  * @public
1599
1877
  */
1600
1878
  MiddleCenter: "MiddleCenter",
1601
1879
 
1602
1880
  /**
1603
- * <code>ui5-toast</code> is placed at the <code>MiddleEnd</code> position of its container.
1881
+ * Toast is placed at the <code>MiddleEnd</code> position of its container.
1604
1882
  * @public
1605
1883
  */
1606
1884
  MiddleEnd: "MiddleEnd",
1607
1885
 
1608
1886
  /**
1609
- * <code>ui5-toast</code> is placed at the <code>MiddleStart</code> position of its container.
1887
+ * Toast is placed at the <code>MiddleStart</code> position of its container.
1610
1888
  * @public
1611
1889
  */
1612
1890
  MiddleStart: "MiddleStart",
1613
1891
 
1614
1892
  /**
1615
- * <code>ui5-toast</code> is placed at the <code>TopCenter</code> position of its container.
1893
+ * Toast is placed at the <code>TopCenter</code> position of its container.
1616
1894
  * @public
1617
1895
  */
1618
1896
  TopCenter: "TopCenter",
1619
1897
 
1620
1898
  /**
1621
- * <code>ui5-toast</code> is placed at the <code>TopEnd</code> position of its container.
1899
+ * Toast is placed at the <code>TopEnd</code> position of its container.
1622
1900
  * @public
1623
1901
  */
1624
1902
  TopEnd: "TopEnd",
1625
1903
 
1626
1904
  /**
1627
- * <code>ui5-toast</code> is placed at the <code>TopStart</code> position of its container.
1905
+ * Toast is placed at the <code>TopStart</code> position of its container.
1628
1906
  * @public
1629
1907
  */
1630
1908
  TopStart: "TopStart"
@@ -1632,7 +1910,7 @@ sap.ui.define([
1632
1910
 
1633
1911
 
1634
1912
  /**
1635
- * Defines how the text of a component will be displayed when there is not enough space.
1913
+ * Different types of wrapping.
1636
1914
  *
1637
1915
  * @enum {string}
1638
1916
  * @public