@ui5/webcomponents-base 0.0.0-6cb3eb0db → 0.0.0-6ebf1b8af

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 (650) hide show
  1. package/.eslintignore +8 -5
  2. package/.npsrc.json +3 -0
  3. package/CHANGELOG.md +1103 -0
  4. package/README.md +34 -8
  5. package/bundle.esm.js +21 -15
  6. package/config/wdio.conf.cjs +400 -0
  7. package/dist/.tsbuildinfo +1 -0
  8. package/dist/AssetRegistry.d.ts +5 -0
  9. package/dist/AssetRegistry.js +3 -8
  10. package/dist/AssetRegistry.js.map +1 -0
  11. package/dist/Boot.d.ts +10 -0
  12. package/dist/Boot.js +59 -28
  13. package/dist/Boot.js.map +1 -0
  14. package/dist/CSP.d.ts +30 -0
  15. package/dist/CSP.js +51 -0
  16. package/dist/CSP.js.map +1 -0
  17. package/dist/CustomElementsRegistry.d.ts +5 -0
  18. package/dist/CustomElementsRegistry.js +69 -30
  19. package/dist/CustomElementsRegistry.js.map +1 -0
  20. package/dist/CustomElementsScope.d.ts +7 -0
  21. package/dist/CustomElementsScope.js +11 -108
  22. package/dist/CustomElementsScope.js.map +1 -0
  23. package/dist/CustomElementsScopeUtils.d.ts +62 -0
  24. package/dist/CustomElementsScopeUtils.js +102 -0
  25. package/dist/CustomElementsScopeUtils.js.map +1 -0
  26. package/dist/DOMObserver.d.ts +11 -0
  27. package/dist/DOMObserver.js +12 -54
  28. package/dist/DOMObserver.js.map +1 -0
  29. package/dist/Device.d.ts +13 -0
  30. package/dist/Device.js +159 -86
  31. package/dist/Device.js.map +1 -0
  32. package/dist/EventProvider.d.ts +25 -0
  33. package/dist/EventProvider.js +67 -82
  34. package/dist/EventProvider.js.map +1 -0
  35. package/dist/FeaturesRegistry.d.ts +3 -0
  36. package/dist/FeaturesRegistry.js +5 -7
  37. package/dist/FeaturesRegistry.js.map +1 -0
  38. package/dist/FontFace.d.ts +2 -0
  39. package/dist/FontFace.js +17 -110
  40. package/dist/FontFace.js.map +1 -0
  41. package/dist/IgnoreCustomElements.d.ts +27 -0
  42. package/dist/IgnoreCustomElements.js +39 -0
  43. package/dist/IgnoreCustomElements.js.map +1 -0
  44. package/dist/InitialConfiguration.d.ts +27 -0
  45. package/dist/InitialConfiguration.js +122 -120
  46. package/dist/InitialConfiguration.js.map +1 -0
  47. package/dist/Keys.d.ts +61 -0
  48. package/dist/Keys.js +175 -242
  49. package/dist/Keys.js.map +1 -0
  50. package/dist/ManagedStyles.d.ts +9 -0
  51. package/dist/ManagedStyles.js +157 -0
  52. package/dist/ManagedStyles.js.map +1 -0
  53. package/dist/MarkedEvents.d.ts +9 -0
  54. package/dist/MarkedEvents.js +15 -0
  55. package/dist/MarkedEvents.js.map +1 -0
  56. package/dist/MediaRange.d.ts +31 -0
  57. package/dist/MediaRange.js +54 -75
  58. package/dist/MediaRange.js.map +1 -0
  59. package/dist/PropertiesFileFormat.d.ts +8 -0
  60. package/dist/PropertiesFileFormat.js +72 -82
  61. package/dist/PropertiesFileFormat.js.map +1 -0
  62. package/dist/Render.d.ts +47 -0
  63. package/dist/Render.js +82 -112
  64. package/dist/Render.js.map +1 -0
  65. package/dist/RenderQueue.d.ts +19 -0
  66. package/dist/RenderQueue.js +52 -62
  67. package/dist/RenderQueue.js.map +1 -0
  68. package/dist/Runtimes.d.ts +27 -0
  69. package/dist/Runtimes.js +86 -0
  70. package/dist/Runtimes.js.map +1 -0
  71. package/dist/StaticArea.d.ts +3 -0
  72. package/dist/StaticArea.js +5 -1
  73. package/dist/StaticArea.js.map +1 -0
  74. package/dist/StaticAreaItem.d.ts +35 -0
  75. package/dist/StaticAreaItem.js +88 -95
  76. package/dist/StaticAreaItem.js.map +1 -0
  77. package/dist/SystemCSSVars.d.ts +2 -0
  78. package/dist/SystemCSSVars.js +6 -28
  79. package/dist/SystemCSSVars.js.map +1 -0
  80. package/{src/Theming.js → dist/Theming.d.ts} +0 -1
  81. package/dist/Theming.js +1 -1
  82. package/dist/Theming.js.map +1 -0
  83. package/dist/UI5Element.d.ts +384 -0
  84. package/dist/UI5Element.js +941 -992
  85. package/dist/UI5Element.js.map +1 -0
  86. package/dist/UI5ElementMetadata.d.ts +143 -0
  87. package/dist/UI5ElementMetadata.js +281 -299
  88. package/dist/UI5ElementMetadata.js.map +1 -0
  89. package/dist/animations/AnimationQueue.d.ts +8 -0
  90. package/dist/animations/AnimationQueue.js +31 -38
  91. package/dist/animations/AnimationQueue.js.map +1 -0
  92. package/dist/animations/animate.d.ts +14 -0
  93. package/dist/animations/animate.js +46 -51
  94. package/dist/animations/animate.js.map +1 -0
  95. package/dist/animations/scroll.d.ts +5 -0
  96. package/dist/animations/scroll.js +18 -27
  97. package/dist/animations/scroll.js.map +1 -0
  98. package/dist/animations/slideDown.d.ts +5 -0
  99. package/dist/animations/slideDown.js +53 -78
  100. package/dist/animations/slideDown.js.map +1 -0
  101. package/dist/animations/slideUp.d.ts +5 -0
  102. package/dist/animations/slideUp.js +49 -70
  103. package/dist/animations/slideUp.js.map +1 -0
  104. package/dist/asset-registries/Icons.d.ts +39 -0
  105. package/dist/asset-registries/Icons.js +120 -112
  106. package/dist/asset-registries/Icons.js.map +1 -0
  107. package/dist/asset-registries/Illustrations.d.ts +18 -0
  108. package/dist/asset-registries/Illustrations.js +71 -25
  109. package/dist/asset-registries/Illustrations.js.map +1 -0
  110. package/dist/asset-registries/LocaleData.d.ts +7 -0
  111. package/dist/asset-registries/LocaleData.js +104 -118
  112. package/dist/asset-registries/LocaleData.js.map +1 -0
  113. package/dist/asset-registries/Themes.d.ts +12 -0
  114. package/dist/asset-registries/Themes.js +57 -67
  115. package/dist/asset-registries/Themes.js.map +1 -0
  116. package/dist/asset-registries/i18n.d.ts +23 -0
  117. package/dist/asset-registries/i18n.js +62 -81
  118. package/dist/asset-registries/i18n.js.map +1 -0
  119. package/dist/asset-registries/util/IconCollectionsAlias.d.ts +30 -0
  120. package/dist/asset-registries/util/IconCollectionsAlias.js +37 -0
  121. package/dist/asset-registries/util/IconCollectionsAlias.js.map +1 -0
  122. package/dist/asset-registries/util/IconCollectionsByTheme.d.ts +20 -0
  123. package/dist/asset-registries/util/IconCollectionsByTheme.js +42 -0
  124. package/dist/asset-registries/util/IconCollectionsByTheme.js.map +1 -0
  125. package/dist/asset-registries/util/getIconCollectionByTheme.d.ts +13 -0
  126. package/dist/asset-registries/util/getIconCollectionByTheme.js +29 -0
  127. package/dist/asset-registries/util/getIconCollectionByTheme.js.map +1 -0
  128. package/dist/config/AnimationMode.d.ts +14 -0
  129. package/dist/config/AnimationMode.js +21 -18
  130. package/dist/config/AnimationMode.js.map +1 -0
  131. package/dist/config/CalendarType.d.ts +15 -0
  132. package/dist/config/CalendarType.js +31 -14
  133. package/dist/config/CalendarType.js.map +1 -0
  134. package/dist/config/FormatSettings.d.ts +15 -0
  135. package/dist/config/FormatSettings.js +15 -9
  136. package/dist/config/FormatSettings.js.map +1 -0
  137. package/dist/config/Icons.d.ts +40 -0
  138. package/dist/config/Icons.js +44 -0
  139. package/dist/config/Icons.js.map +1 -0
  140. package/dist/config/Language.d.ts +40 -0
  141. package/dist/config/Language.js +46 -43
  142. package/dist/config/Language.js.map +1 -0
  143. package/dist/config/NoConflict.d.ts +20 -0
  144. package/dist/config/NoConflict.js +41 -41
  145. package/dist/config/NoConflict.js.map +1 -0
  146. package/dist/config/Theme.d.ts +38 -0
  147. package/dist/config/Theme.js +67 -22
  148. package/dist/config/Theme.js.map +1 -0
  149. package/dist/config/ThemeRoot.d.ts +29 -0
  150. package/dist/config/ThemeRoot.js +59 -0
  151. package/dist/config/ThemeRoot.js.map +1 -0
  152. package/dist/config/Timezone.d.ts +17 -0
  153. package/dist/config/Timezone.js +30 -0
  154. package/dist/config/Timezone.js.map +1 -0
  155. package/dist/connectToComponent.d.ts +9 -0
  156. package/dist/connectToComponent.js +59 -0
  157. package/dist/connectToComponent.js.map +1 -0
  158. package/dist/css/BusyIndicator.css +80 -0
  159. package/dist/css/FontFace.css +96 -0
  160. package/dist/css/OverrideFontFace.css +32 -0
  161. package/dist/css/SystemCSSVars.css +9 -0
  162. package/dist/custom-elements-internal.json +2759 -0
  163. package/dist/custom-elements.json +2522 -0
  164. package/dist/decorators/customElement.d.ts +23 -0
  165. package/dist/decorators/customElement.js +37 -0
  166. package/dist/decorators/customElement.js.map +1 -0
  167. package/dist/decorators/event.d.ts +13 -0
  168. package/dist/decorators/event.js +24 -0
  169. package/dist/decorators/event.js.map +1 -0
  170. package/dist/decorators/property.d.ts +9 -0
  171. package/dist/decorators/property.js +24 -0
  172. package/dist/decorators/property.js.map +1 -0
  173. package/dist/decorators/slot.d.ts +9 -0
  174. package/dist/decorators/slot.js +37 -0
  175. package/dist/decorators/slot.js.map +1 -0
  176. package/dist/delegate/ItemNavigation.d.ts +114 -0
  177. package/dist/delegate/ItemNavigation.js +283 -319
  178. package/dist/delegate/ItemNavigation.js.map +1 -0
  179. package/dist/delegate/ResizeHandler.d.ts +23 -0
  180. package/dist/delegate/ResizeHandler.js +70 -91
  181. package/dist/delegate/ResizeHandler.js.map +1 -0
  182. package/dist/delegate/ScrollEnablement.d.ts +49 -0
  183. package/dist/delegate/ScrollEnablement.js +157 -180
  184. package/dist/delegate/ScrollEnablement.js.map +1 -0
  185. package/dist/features/F6Navigation.d.ts +19 -0
  186. package/dist/features/F6Navigation.js +151 -0
  187. package/dist/features/F6Navigation.js.map +1 -0
  188. package/dist/features/LegacyDateFormats.d.ts +18 -0
  189. package/dist/features/LegacyDateFormats.js +20 -0
  190. package/dist/features/LegacyDateFormats.js.map +1 -0
  191. package/dist/features/OpenUI5Element.d.ts +9 -0
  192. package/dist/features/OpenUI5Element.js +5 -0
  193. package/dist/features/OpenUI5Element.js.map +1 -0
  194. package/dist/features/OpenUI5Enablement.d.ts +11 -0
  195. package/dist/features/OpenUI5Enablement.js +96 -0
  196. package/dist/features/OpenUI5Enablement.js.map +1 -0
  197. package/dist/features/OpenUI5Support.d.ts +36 -0
  198. package/dist/features/OpenUI5Support.js +151 -121
  199. package/dist/features/OpenUI5Support.js.map +1 -0
  200. package/dist/generated/AssetParameters.d.ts +6 -0
  201. package/dist/generated/AssetParameters.js +4 -9
  202. package/dist/generated/AssetParameters.js.map +1 -0
  203. package/dist/generated/VersionInfo.d.ts +10 -0
  204. package/dist/generated/VersionInfo.js +11 -0
  205. package/dist/generated/VersionInfo.js.map +1 -0
  206. package/dist/generated/css/BusyIndicator.css.d.ts +3 -0
  207. package/dist/generated/css/BusyIndicator.css.js +7 -0
  208. package/dist/generated/css/BusyIndicator.css.js.map +1 -0
  209. package/dist/generated/css/FontFace.css.d.ts +3 -0
  210. package/dist/generated/css/FontFace.css.js +7 -0
  211. package/dist/generated/css/FontFace.css.js.map +1 -0
  212. package/dist/generated/css/OverrideFontFace.css.d.ts +3 -0
  213. package/dist/generated/css/OverrideFontFace.css.js +7 -0
  214. package/dist/generated/css/OverrideFontFace.css.js.map +1 -0
  215. package/dist/generated/css/SystemCSSVars.css.d.ts +3 -0
  216. package/dist/generated/css/SystemCSSVars.css.js +7 -0
  217. package/dist/generated/css/SystemCSSVars.css.js.map +1 -0
  218. package/dist/generated/templates/elements/WithComplexTemplateTemplate.lit.d.ts +4 -0
  219. package/dist/generated/templates/elements/WithComplexTemplateTemplate.lit.js +9 -0
  220. package/dist/generated/templates/elements/WithComplexTemplateTemplate.lit.js.map +1 -0
  221. package/dist/getSharedResource.d.ts +11 -0
  222. package/dist/getSharedResource.js +28 -18
  223. package/dist/getSharedResource.js.map +1 -0
  224. package/dist/global.d.ts +40 -0
  225. package/dist/i18nBundle.d.ts +41 -0
  226. package/dist/i18nBundle.js +65 -45
  227. package/dist/i18nBundle.js.map +1 -0
  228. package/dist/locale/Locale.d.ts +22 -0
  229. package/dist/locale/Locale.js +75 -87
  230. package/dist/locale/Locale.js.map +1 -0
  231. package/dist/locale/RTLAwareRegistry.d.ts +4 -0
  232. package/dist/locale/RTLAwareRegistry.js +6 -11
  233. package/dist/locale/RTLAwareRegistry.js.map +1 -0
  234. package/dist/locale/applyDirection.d.ts +10 -0
  235. package/dist/locale/applyDirection.js +7 -7
  236. package/dist/locale/applyDirection.js.map +1 -0
  237. package/dist/locale/directionChange.d.ts +15 -0
  238. package/dist/locale/directionChange.js +7 -15
  239. package/dist/locale/directionChange.js.map +1 -0
  240. package/dist/locale/getEffectiveDir.d.ts +2 -0
  241. package/dist/locale/getEffectiveDir.js +6 -26
  242. package/dist/locale/getEffectiveDir.js.map +1 -0
  243. package/dist/locale/getLocale.d.ts +7 -0
  244. package/dist/locale/getLocale.js +26 -29
  245. package/dist/locale/getLocale.js.map +1 -0
  246. package/dist/locale/languageChange.d.ts +5 -0
  247. package/dist/locale/languageChange.js +8 -16
  248. package/dist/locale/languageChange.js.map +1 -0
  249. package/dist/locale/nextFallbackLocale.d.ts +8 -0
  250. package/dist/locale/nextFallbackLocale.js +15 -19
  251. package/dist/locale/nextFallbackLocale.js.map +1 -0
  252. package/dist/locale/normalizeLocale.d.ts +7 -0
  253. package/dist/locale/normalizeLocale.js +34 -41
  254. package/dist/locale/normalizeLocale.js.map +1 -0
  255. package/dist/renderer/LitRenderer.d.ts +14 -0
  256. package/dist/renderer/LitRenderer.js +32 -23
  257. package/dist/renderer/LitRenderer.js.map +1 -0
  258. package/dist/renderer/directives/style-map.js +72 -0
  259. package/dist/renderer/executeTemplate.d.ts +13 -0
  260. package/dist/renderer/executeTemplate.js +20 -7
  261. package/dist/renderer/executeTemplate.js.map +1 -0
  262. package/dist/sap/base/Log.js +705 -196
  263. package/dist/sap/base/assert.js +31 -5
  264. package/dist/sap/base/config/MemoryConfigurationProvider.js +20 -0
  265. package/dist/sap/base/security/URLListValidator.js +265 -7
  266. package/dist/sap/base/security/encodeCSS.js +40 -0
  267. package/dist/sap/base/security/encodeXML.js +53 -0
  268. package/dist/sap/base/security/sanitizeHTML.js +35 -13
  269. package/dist/sap/base/strings/toHex.js +33 -0
  270. package/dist/sap/base/util/now.js +24 -3
  271. package/dist/sap/base/util/uid.js +27 -0
  272. package/dist/sap/ui/thirdparty/caja-html-sanitizer.js +112 -97
  273. package/dist/ssr-dom-shim.d.ts +1 -0
  274. package/dist/ssr-dom-shim.js +12 -0
  275. package/dist/ssr-dom-shim.js.map +1 -0
  276. package/dist/ssr-dom.d.ts +0 -0
  277. package/dist/ssr-dom.js +3 -0
  278. package/dist/ssr-dom.js.map +1 -0
  279. package/dist/theming/CustomStyle.d.ts +6 -0
  280. package/dist/theming/CustomStyle.js +39 -31
  281. package/dist/theming/CustomStyle.js.map +1 -0
  282. package/dist/theming/ThemeLoaded.d.ts +5 -0
  283. package/dist/theming/ThemeLoaded.js +8 -16
  284. package/dist/theming/ThemeLoaded.js.map +1 -0
  285. package/dist/theming/ThemeRegistered.d.ts +4 -0
  286. package/dist/theming/ThemeRegistered.js +11 -0
  287. package/dist/theming/ThemeRegistered.js.map +1 -0
  288. package/dist/theming/applyTheme.d.ts +2 -0
  289. package/dist/theming/applyTheme.js +63 -65
  290. package/dist/theming/applyTheme.js.map +1 -0
  291. package/dist/theming/getConstructableStyle.d.ts +9 -0
  292. package/dist/theming/getConstructableStyle.js +12 -17
  293. package/dist/theming/getConstructableStyle.js.map +1 -0
  294. package/dist/theming/getEffectiveLinksHrefs.d.ts +3 -0
  295. package/dist/theming/getEffectiveLinksHrefs.js +17 -0
  296. package/dist/theming/getEffectiveLinksHrefs.js.map +1 -0
  297. package/dist/theming/getEffectiveStyle.d.ts +3 -0
  298. package/dist/theming/getEffectiveStyle.js +25 -23
  299. package/dist/theming/getEffectiveStyle.js.map +1 -0
  300. package/dist/theming/getStylesString.d.ts +3 -0
  301. package/dist/theming/getStylesString.js +9 -11
  302. package/dist/theming/getStylesString.js.map +1 -0
  303. package/dist/theming/getThemeDesignerTheme.d.ts +7 -0
  304. package/dist/theming/getThemeDesignerTheme.js +73 -60
  305. package/dist/theming/getThemeDesignerTheme.js.map +1 -0
  306. package/dist/theming/preloadLinks.d.ts +3 -0
  307. package/dist/theming/preloadLinks.js +19 -0
  308. package/dist/theming/preloadLinks.js.map +1 -0
  309. package/dist/thirdparty/_merge.d.ts +2 -0
  310. package/dist/thirdparty/_merge.js +7 -4
  311. package/dist/thirdparty/_merge.js.map +1 -0
  312. package/dist/thirdparty/isPlainObject.d.ts +2 -0
  313. package/dist/thirdparty/isPlainObject.js +11 -10
  314. package/dist/thirdparty/isPlainObject.js.map +1 -0
  315. package/dist/thirdparty/merge.d.ts +2 -0
  316. package/dist/thirdparty/merge.js +4 -8
  317. package/dist/thirdparty/merge.js.map +1 -0
  318. package/dist/types/AnimationMode.d.ts +24 -0
  319. package/dist/types/AnimationMode.js +25 -6
  320. package/dist/types/AnimationMode.js.map +1 -0
  321. package/dist/types/CSSColor.d.ts +11 -0
  322. package/dist/types/CSSColor.js +10 -5
  323. package/dist/types/CSSColor.js.map +1 -0
  324. package/dist/types/CSSSize.d.ts +11 -0
  325. package/dist/types/CSSSize.js +10 -5
  326. package/dist/types/CSSSize.js.map +1 -0
  327. package/dist/types/CalendarType.d.ts +28 -0
  328. package/dist/types/CalendarType.js +26 -18
  329. package/dist/types/CalendarType.js.map +1 -0
  330. package/dist/types/DOMReference.d.ts +13 -0
  331. package/dist/types/DOMReference.js +21 -0
  332. package/dist/types/DOMReference.js.map +1 -0
  333. package/dist/types/DataType.d.ts +20 -0
  334. package/dist/types/DataType.js +31 -29
  335. package/dist/types/DataType.js.map +1 -0
  336. package/dist/types/Float.d.ts +14 -0
  337. package/dist/types/Float.js +14 -10
  338. package/dist/types/Float.js.map +1 -0
  339. package/dist/types/Integer.d.ts +14 -0
  340. package/dist/types/Integer.js +14 -9
  341. package/dist/types/Integer.js.map +1 -0
  342. package/dist/types/InvisibleMessageMode.d.ts +20 -0
  343. package/dist/types/InvisibleMessageMode.js +12 -22
  344. package/dist/types/InvisibleMessageMode.js.map +1 -0
  345. package/dist/types/ItemNavigationBehavior.d.ts +18 -0
  346. package/dist/types/ItemNavigationBehavior.js +16 -12
  347. package/dist/types/ItemNavigationBehavior.js.map +1 -0
  348. package/dist/types/NavigationMode.d.ts +24 -0
  349. package/dist/types/NavigationMode.js +25 -6
  350. package/dist/types/NavigationMode.js.map +1 -0
  351. package/dist/types/ValueState.d.ts +28 -0
  352. package/dist/types/ValueState.js +27 -19
  353. package/dist/types/ValueState.js.map +1 -0
  354. package/dist/types.d.ts +18 -0
  355. package/dist/types.js +2 -0
  356. package/dist/types.js.map +1 -0
  357. package/dist/updateShadowRoot.d.ts +8 -0
  358. package/dist/updateShadowRoot.js +32 -16
  359. package/dist/updateShadowRoot.js.map +1 -0
  360. package/dist/util/AriaLabelHelper.d.ts +15 -0
  361. package/dist/util/AriaLabelHelper.js +166 -36
  362. package/dist/util/AriaLabelHelper.js.map +1 -0
  363. package/dist/util/Caret.d.ts +7 -0
  364. package/dist/util/Caret.js +16 -38
  365. package/dist/util/Caret.js.map +1 -0
  366. package/dist/util/ColorConversion.d.ts +30 -0
  367. package/dist/util/ColorConversion.js +320 -348
  368. package/dist/util/ColorConversion.js.map +1 -0
  369. package/dist/util/FetchHelper.d.ts +3 -0
  370. package/dist/util/FetchHelper.js +19 -25
  371. package/dist/util/FetchHelper.js.map +1 -0
  372. package/dist/util/FocusableElements.d.ts +4 -0
  373. package/dist/util/FocusableElements.js +67 -72
  374. package/dist/util/FocusableElements.js.map +1 -0
  375. package/{src/util/HTMLSanitizer.js → dist/util/HTMLSanitizer.d.ts} +1 -5
  376. package/dist/util/HTMLSanitizer.js +4 -5
  377. package/dist/util/HTMLSanitizer.js.map +1 -0
  378. package/dist/util/InvisibleMessage.d.ts +10 -0
  379. package/dist/util/InvisibleMessage.js +42 -44
  380. package/dist/util/InvisibleMessage.js.map +1 -0
  381. package/dist/util/PopupUtils.d.ts +7 -0
  382. package/dist/util/PopupUtils.js +58 -77
  383. package/dist/util/PopupUtils.js.map +1 -0
  384. package/dist/util/SlotsHelper.d.ts +9 -0
  385. package/dist/util/SlotsHelper.js +22 -35
  386. package/dist/util/SlotsHelper.js.map +1 -0
  387. package/dist/util/StringHelper.d.ts +3 -0
  388. package/dist/util/StringHelper.js +17 -20
  389. package/dist/util/StringHelper.js.map +1 -0
  390. package/dist/util/TabbableElements.d.ts +17 -0
  391. package/dist/util/TabbableElements.js +53 -43
  392. package/dist/util/TabbableElements.js.map +1 -0
  393. package/dist/util/arraysAreEqual.d.ts +2 -0
  394. package/dist/util/arraysAreEqual.js +10 -12
  395. package/dist/util/arraysAreEqual.js.map +1 -0
  396. package/{src/util/clamp.js → dist/util/clamp.d.ts} +1 -4
  397. package/dist/util/clamp.js +2 -2
  398. package/dist/util/clamp.js.map +1 -0
  399. package/dist/util/createLinkInHead.d.ts +7 -0
  400. package/dist/util/createLinkInHead.js +21 -0
  401. package/dist/util/createLinkInHead.js.map +1 -0
  402. package/dist/util/createStyleInHead.d.ts +8 -0
  403. package/dist/util/createStyleInHead.js +10 -10
  404. package/dist/util/createStyleInHead.js.map +1 -0
  405. package/dist/util/debounce.d.ts +2 -0
  406. package/dist/util/debounce.js +6 -8
  407. package/dist/util/debounce.js.map +1 -0
  408. package/dist/util/detectNavigatorLanguage.d.ts +2 -0
  409. package/dist/util/detectNavigatorLanguage.js +13 -11
  410. package/dist/util/detectNavigatorLanguage.js.map +1 -0
  411. package/dist/util/escapeRegex.d.ts +8 -0
  412. package/dist/util/escapeRegex.js +11 -0
  413. package/dist/util/escapeRegex.js.map +1 -0
  414. package/dist/util/formatMessage.d.ts +2 -0
  415. package/dist/util/formatMessage.js +15 -19
  416. package/dist/util/formatMessage.js.map +1 -0
  417. package/dist/util/generateHighlightedMarkup.d.ts +9 -0
  418. package/dist/util/generateHighlightedMarkup.js +41 -0
  419. package/dist/util/generateHighlightedMarkup.js.map +1 -0
  420. package/dist/util/getActiveElement.d.ts +2 -0
  421. package/dist/util/getActiveElement.js +6 -8
  422. package/dist/util/getActiveElement.js.map +1 -0
  423. package/dist/util/getClassCopy.d.ts +419 -0
  424. package/dist/util/getClassCopy.js +7 -7
  425. package/dist/util/getClassCopy.js.map +1 -0
  426. package/dist/util/getDesigntimePropertyAsArray.d.ts +2 -0
  427. package/dist/util/getDesigntimePropertyAsArray.js +5 -3
  428. package/dist/util/getDesigntimePropertyAsArray.js.map +1 -0
  429. package/dist/util/getEffectiveContentDensity.d.ts +2 -0
  430. package/dist/util/getEffectiveContentDensity.js +2 -3
  431. package/dist/util/getEffectiveContentDensity.js.map +1 -0
  432. package/dist/util/getEffectiveScrollbarStyle.d.ts +2 -0
  433. package/dist/util/getEffectiveScrollbarStyle.js +4 -0
  434. package/dist/util/getEffectiveScrollbarStyle.js.map +1 -0
  435. package/dist/util/getFastNavigationGroups.d.ts +2 -0
  436. package/dist/util/getFastNavigationGroups.js +51 -0
  437. package/dist/util/getFastNavigationGroups.js.map +1 -0
  438. package/{src/util/getFileExtension.js → dist/util/getFileExtension.d.ts} +3 -12
  439. package/dist/util/getFileExtension.js +9 -11
  440. package/dist/util/getFileExtension.js.map +1 -0
  441. package/dist/util/getNormalizedTarget.d.ts +7 -0
  442. package/dist/util/getNormalizedTarget.js +14 -0
  443. package/dist/util/getNormalizedTarget.js.map +1 -0
  444. package/dist/util/getParentElement.d.ts +2 -0
  445. package/dist/util/getParentElement.js +5 -0
  446. package/dist/util/getParentElement.js.map +1 -0
  447. package/dist/util/getSingletonElementInstance.d.ts +11 -0
  448. package/dist/util/getSingletonElementInstance.js +17 -11
  449. package/dist/util/getSingletonElementInstance.js.map +1 -0
  450. package/dist/util/isElementClickable.d.ts +2 -0
  451. package/dist/util/isElementClickable.js +16 -0
  452. package/dist/util/isElementClickable.js.map +1 -0
  453. package/dist/util/isElementContainingBlock.d.ts +2 -0
  454. package/dist/util/isElementContainingBlock.js +11 -0
  455. package/dist/util/isElementContainingBlock.js.map +1 -0
  456. package/dist/util/isElementHidden.d.ts +2 -0
  457. package/dist/util/isElementHidden.js +8 -0
  458. package/dist/util/isElementHidden.js.map +1 -0
  459. package/dist/util/isElementInView.d.ts +6 -0
  460. package/dist/util/isElementInView.js +6 -9
  461. package/dist/util/isElementInView.js.map +1 -0
  462. package/dist/util/isElementTabbable.d.ts +9 -0
  463. package/dist/util/isElementTabbable.js +30 -0
  464. package/dist/util/isElementTabbable.js.map +1 -0
  465. package/dist/util/isValidPropertyName.d.ts +8 -0
  466. package/dist/util/isValidPropertyName.js +16 -17
  467. package/dist/util/isValidPropertyName.js.map +1 -0
  468. package/dist/util/whenDOMReady.d.ts +2 -0
  469. package/dist/util/whenDOMReady.js +11 -10
  470. package/dist/util/whenDOMReady.js.map +1 -0
  471. package/dist/util/willShowContent.d.ts +2 -0
  472. package/dist/util/willShowContent.js +7 -0
  473. package/dist/util/willShowContent.js.map +1 -0
  474. package/dist/validateThemeRoot.d.ts +2 -0
  475. package/dist/validateThemeRoot.js +48 -0
  476. package/dist/validateThemeRoot.js.map +1 -0
  477. package/index.js +225 -1
  478. package/lib/generate-asset-parameters/index.js +11 -6
  479. package/lib/generate-styles/index.js +31 -0
  480. package/lib/generate-version-info/index.js +32 -0
  481. package/package-scripts.cjs +65 -0
  482. package/package.json +21 -13
  483. package/src/css/BusyIndicator.css +80 -0
  484. package/src/css/FontFace.css +96 -0
  485. package/src/css/OverrideFontFace.css +32 -0
  486. package/src/css/SystemCSSVars.css +9 -0
  487. package/src/renderer/directives/style-map.js +72 -0
  488. package/tsconfig.json +18 -0
  489. package/used-modules.txt +8 -1
  490. package/config/rollup.config.js +0 -1
  491. package/config/wdio.conf.js +0 -1
  492. package/dist/RenderScheduler.js +0 -44
  493. package/dist/animations/config.js +0 -5
  494. package/dist/config/RTL.js +0 -31
  495. package/dist/isLegacyBrowser.js +0 -3
  496. package/dist/resources/bundle.esm.js +0 -37
  497. package/dist/resources/bundle.esm.js.map +0 -1
  498. package/dist/test-resources/assets/Themes.js +0 -17
  499. package/dist/test-resources/elements/Child.js +0 -35
  500. package/dist/test-resources/elements/Generic.js +0 -84
  501. package/dist/test-resources/elements/GenericExt.js +0 -26
  502. package/dist/test-resources/elements/NoShadowDOM.js +0 -13
  503. package/dist/test-resources/elements/Parent.js +0 -41
  504. package/dist/test-resources/elements/WithStaticArea.js +0 -77
  505. package/dist/test-resources/pages/AllTestElements.html +0 -42
  506. package/dist/test-resources/pages/Configuration.html +0 -18
  507. package/dist/test-resources/pages/ConfigurationScript.html +0 -34
  508. package/dist/test-resources/pages/assets/messagebundle_de.properties +0 -1
  509. package/dist/test-resources/pages/assets/messagebundle_en.properties +0 -1
  510. package/dist/test-resources/pages/assets/messagebundle_es.properties +0 -1
  511. package/dist/test-resources/pages/assets/messagebundle_fr.properties +0 -1
  512. package/dist/test-resources/pages/i18n.html +0 -35
  513. package/dist/test-resources/specs/ConfigurationChange.spec.js +0 -27
  514. package/dist/test-resources/specs/ConfigurationScript.spec.js +0 -63
  515. package/dist/test-resources/specs/ConfigurationURL.spec.js +0 -93
  516. package/dist/test-resources/specs/CustomTheme.spec.js +0 -27
  517. package/dist/test-resources/specs/EventProvider.spec.js +0 -63
  518. package/dist/test-resources/specs/StaticArea.spec.js +0 -78
  519. package/dist/test-resources/specs/Theming.spec.js +0 -33
  520. package/dist/test-resources/specs/UI5ElementInvalidation.js +0 -242
  521. package/dist/test-resources/specs/UI5ElementLifecycle.js +0 -98
  522. package/dist/test-resources/specs/UI5ElementListenForChildPropChanges.spec.js +0 -75
  523. package/dist/test-resources/specs/UI5ElementMetadataExt.js +0 -42
  524. package/dist/test-resources/specs/UI5ElementPropertyValidation.js +0 -14
  525. package/dist/test-resources/specs/UI5ElementPropsAndAttrs.spec.js +0 -67
  526. package/dist/test-resources/specs/UI5ElementShadowDOM.js +0 -24
  527. package/dist/test-resources/specs/UI5ElementSlots.js +0 -36
  528. package/dist/theming/createThemePropertiesStyleTag.js +0 -20
  529. package/dist/types/PopupState.js +0 -37
  530. package/dist/util/encodeCSS.js +0 -24
  531. package/dist/util/findNodeOwner.js +0 -35
  532. package/dist/util/isDescendantOf.js +0 -15
  533. package/dist/util/isNodeClickable.js +0 -19
  534. package/dist/util/isNodeHidden.js +0 -9
  535. package/dist/util/isNodeTabbable.js +0 -28
  536. package/dist/util/setToArray.js +0 -10
  537. package/hash.txt +0 -1
  538. package/package-scripts.js +0 -62
  539. package/src/AssetRegistry.js +0 -11
  540. package/src/Boot.js +0 -43
  541. package/src/CustomElementsRegistry.js +0 -39
  542. package/src/CustomElementsScope.js +0 -108
  543. package/src/DOMObserver.js +0 -65
  544. package/src/Device.js +0 -102
  545. package/src/EventProvider.js +0 -85
  546. package/src/FeaturesRegistry.js +0 -11
  547. package/src/FontFace.js +0 -118
  548. package/src/InitialConfiguration.js +0 -155
  549. package/src/Keys.js +0 -248
  550. package/src/MediaRange.js +0 -109
  551. package/src/PropertiesFileFormat.js +0 -95
  552. package/src/Render.js +0 -173
  553. package/src/RenderQueue.js +0 -66
  554. package/src/RenderScheduler.js +0 -44
  555. package/src/StaticArea.js +0 -3
  556. package/src/StaticAreaItem.js +0 -107
  557. package/src/SystemCSSVars.js +0 -31
  558. package/src/UI5Element.js +0 -1026
  559. package/src/UI5ElementMetadata.js +0 -311
  560. package/src/animations/AnimationQueue.js +0 -42
  561. package/src/animations/animate.js +0 -53
  562. package/src/animations/config.js +0 -5
  563. package/src/animations/scroll.js +0 -28
  564. package/src/animations/slideDown.js +0 -79
  565. package/src/animations/slideUp.js +0 -71
  566. package/src/asset-registries/Icons.js +0 -128
  567. package/src/asset-registries/Illustrations.js +0 -30
  568. package/src/asset-registries/LocaleData.js +0 -150
  569. package/src/asset-registries/Themes.js +0 -78
  570. package/src/asset-registries/i18n.js +0 -121
  571. package/src/config/AnimationMode.js +0 -23
  572. package/src/config/CalendarType.js +0 -18
  573. package/src/config/FormatSettings.js +0 -13
  574. package/src/config/Language.js +0 -68
  575. package/src/config/NoConflict.js +0 -51
  576. package/src/config/RTL.js +0 -31
  577. package/src/config/Theme.js +0 -28
  578. package/src/delegate/ItemNavigation.js +0 -351
  579. package/src/delegate/ResizeHandler.js +0 -106
  580. package/src/delegate/ScrollEnablement.js +0 -188
  581. package/src/features/OpenUI5Support.js +0 -125
  582. package/src/getSharedResource.js +0 -30
  583. package/src/i18nBundle.js +0 -56
  584. package/src/isLegacyBrowser.js +0 -3
  585. package/src/locale/Locale.js +0 -91
  586. package/src/locale/RTLAwareRegistry.js +0 -14
  587. package/src/locale/applyDirection.js +0 -17
  588. package/src/locale/directionChange.js +0 -32
  589. package/src/locale/getEffectiveDir.js +0 -28
  590. package/src/locale/getLocale.js +0 -41
  591. package/src/locale/languageChange.js +0 -22
  592. package/src/locale/nextFallbackLocale.js +0 -28
  593. package/src/locale/normalizeLocale.js +0 -54
  594. package/src/renderer/LitRenderer.js +0 -32
  595. package/src/renderer/executeTemplate.js +0 -17
  596. package/src/theming/CustomStyle.js +0 -40
  597. package/src/theming/ThemeLoaded.js +0 -22
  598. package/src/theming/applyTheme.js +0 -78
  599. package/src/theming/createThemePropertiesStyleTag.js +0 -20
  600. package/src/theming/getConstructableStyle.js +0 -30
  601. package/src/theming/getEffectiveStyle.js +0 -30
  602. package/src/theming/getStylesString.js +0 -13
  603. package/src/theming/getThemeDesignerTheme.js +0 -67
  604. package/src/thirdparty/_merge.js +0 -32
  605. package/src/thirdparty/isPlainObject.js +0 -18
  606. package/src/thirdparty/merge.js +0 -10
  607. package/src/types/AnimationMode.js +0 -7
  608. package/src/types/CSSColor.js +0 -9
  609. package/src/types/CSSSize.js +0 -9
  610. package/src/types/CalendarType.js +0 -22
  611. package/src/types/DataType.js +0 -37
  612. package/src/types/Float.js +0 -14
  613. package/src/types/Integer.js +0 -13
  614. package/src/types/InvisibleMessageMode.js +0 -30
  615. package/src/types/ItemNavigationBehavior.js +0 -16
  616. package/src/types/NavigationMode.js +0 -7
  617. package/src/types/PopupState.js +0 -37
  618. package/src/types/ValueState.js +0 -22
  619. package/src/updateShadowRoot.js +0 -26
  620. package/src/util/AriaLabelHelper.js +0 -41
  621. package/src/util/Caret.js +0 -45
  622. package/src/util/ColorConversion.js +0 -370
  623. package/src/util/FetchHelper.js +0 -31
  624. package/src/util/FocusableElements.js +0 -77
  625. package/src/util/InvisibleMessage.js +0 -58
  626. package/src/util/PopupUtils.js +0 -93
  627. package/src/util/SlotsHelper.js +0 -43
  628. package/src/util/StringHelper.js +0 -26
  629. package/src/util/TabbableElements.js +0 -47
  630. package/src/util/arraysAreEqual.js +0 -15
  631. package/src/util/createStyleInHead.js +0 -18
  632. package/src/util/debounce.js +0 -17
  633. package/src/util/detectNavigatorLanguage.js +0 -13
  634. package/src/util/encodeCSS.js +0 -24
  635. package/src/util/findNodeOwner.js +0 -35
  636. package/src/util/formatMessage.js +0 -23
  637. package/src/util/getActiveElement.js +0 -11
  638. package/src/util/getClassCopy.js +0 -10
  639. package/src/util/getDesigntimePropertyAsArray.js +0 -4
  640. package/src/util/getEffectiveContentDensity.js +0 -5
  641. package/src/util/getSingletonElementInstance.js +0 -13
  642. package/src/util/isDescendantOf.js +0 -15
  643. package/src/util/isElementInView.js +0 -15
  644. package/src/util/isNodeClickable.js +0 -19
  645. package/src/util/isNodeHidden.js +0 -9
  646. package/src/util/isNodeTabbable.js +0 -28
  647. package/src/util/isValidPropertyName.js +0 -29
  648. package/src/util/setToArray.js +0 -10
  649. package/src/util/whenDOMReady.js +0 -13
  650. /package/{config/.eslintrc.js → .eslintrc.cjs} +0 -0
@@ -0,0 +1,2522 @@
1
+ {
2
+ "schemaVersion": "1.0.0",
3
+ "readme": "",
4
+ "modules": [
5
+ {
6
+ "kind": "javascript-module",
7
+ "path": "dist/animations/AnimationQueue.js",
8
+ "declarations": [],
9
+ "exports": [
10
+ {
11
+ "kind": "js",
12
+ "name": "default",
13
+ "declaration": {
14
+ "name": "AnimationQueue",
15
+ "module": "dist/animations/AnimationQueue.js"
16
+ }
17
+ }
18
+ ]
19
+ },
20
+ {
21
+ "kind": "javascript-module",
22
+ "path": "dist/animations/animate.js",
23
+ "declarations": [],
24
+ "exports": [
25
+ {
26
+ "kind": "js",
27
+ "name": "default",
28
+ "declaration": {
29
+ "name": "animate",
30
+ "module": "dist/animations/animate.js"
31
+ }
32
+ }
33
+ ]
34
+ },
35
+ {
36
+ "kind": "javascript-module",
37
+ "path": "dist/animations/scroll.js",
38
+ "declarations": [],
39
+ "exports": [
40
+ {
41
+ "kind": "js",
42
+ "name": "default",
43
+ "declaration": {
44
+ "name": "scroll",
45
+ "module": "dist/animations/scroll.js"
46
+ }
47
+ }
48
+ ]
49
+ },
50
+ {
51
+ "kind": "javascript-module",
52
+ "path": "dist/animations/slideDown.js",
53
+ "declarations": [],
54
+ "exports": [
55
+ {
56
+ "kind": "js",
57
+ "name": "default",
58
+ "declaration": {
59
+ "name": "slideDown",
60
+ "module": "dist/animations/slideDown.js"
61
+ }
62
+ }
63
+ ]
64
+ },
65
+ {
66
+ "kind": "javascript-module",
67
+ "path": "dist/animations/slideUp.js",
68
+ "declarations": [],
69
+ "exports": [
70
+ {
71
+ "kind": "js",
72
+ "name": "default",
73
+ "declaration": {
74
+ "name": "slideUp",
75
+ "module": "dist/animations/slideUp.js"
76
+ }
77
+ }
78
+ ]
79
+ },
80
+ {
81
+ "kind": "javascript-module",
82
+ "path": "dist/asset-registries/Icons.js",
83
+ "declarations": [],
84
+ "exports": []
85
+ },
86
+ {
87
+ "kind": "javascript-module",
88
+ "path": "dist/asset-registries/Illustrations.js",
89
+ "declarations": [],
90
+ "exports": []
91
+ },
92
+ {
93
+ "kind": "javascript-module",
94
+ "path": "dist/asset-registries/LocaleData.js",
95
+ "declarations": [],
96
+ "exports": []
97
+ },
98
+ {
99
+ "kind": "javascript-module",
100
+ "path": "dist/asset-registries/Themes.js",
101
+ "declarations": [],
102
+ "exports": []
103
+ },
104
+ {
105
+ "kind": "javascript-module",
106
+ "path": "dist/asset-registries/i18n.js",
107
+ "declarations": [],
108
+ "exports": []
109
+ },
110
+ {
111
+ "kind": "javascript-module",
112
+ "path": "dist/config/AnimationMode.js",
113
+ "declarations": [],
114
+ "exports": []
115
+ },
116
+ {
117
+ "kind": "javascript-module",
118
+ "path": "dist/config/CalendarType.js",
119
+ "declarations": [],
120
+ "exports": []
121
+ },
122
+ {
123
+ "kind": "javascript-module",
124
+ "path": "dist/config/FormatSettings.js",
125
+ "declarations": [],
126
+ "exports": []
127
+ },
128
+ {
129
+ "kind": "javascript-module",
130
+ "path": "dist/config/Icons.js",
131
+ "declarations": [],
132
+ "exports": []
133
+ },
134
+ {
135
+ "kind": "javascript-module",
136
+ "path": "dist/config/Language.js",
137
+ "declarations": [],
138
+ "exports": []
139
+ },
140
+ {
141
+ "kind": "javascript-module",
142
+ "path": "dist/config/NoConflict.js",
143
+ "declarations": [],
144
+ "exports": []
145
+ },
146
+ {
147
+ "kind": "javascript-module",
148
+ "path": "dist/config/Theme.js",
149
+ "declarations": [],
150
+ "exports": []
151
+ },
152
+ {
153
+ "kind": "javascript-module",
154
+ "path": "dist/config/ThemeRoot.js",
155
+ "declarations": [],
156
+ "exports": []
157
+ },
158
+ {
159
+ "kind": "javascript-module",
160
+ "path": "dist/config/Timezone.js",
161
+ "declarations": [],
162
+ "exports": []
163
+ },
164
+ {
165
+ "kind": "javascript-module",
166
+ "path": "dist/decorators/customElement.js",
167
+ "declarations": [],
168
+ "exports": [
169
+ {
170
+ "kind": "js",
171
+ "name": "default",
172
+ "declaration": {
173
+ "name": "customElement",
174
+ "module": "dist/decorators/customElement.js"
175
+ }
176
+ }
177
+ ]
178
+ },
179
+ {
180
+ "kind": "javascript-module",
181
+ "path": "dist/decorators/event.js",
182
+ "declarations": [],
183
+ "exports": [
184
+ {
185
+ "kind": "js",
186
+ "name": "default",
187
+ "declaration": {
188
+ "name": "event",
189
+ "module": "dist/decorators/event.js"
190
+ }
191
+ }
192
+ ]
193
+ },
194
+ {
195
+ "kind": "javascript-module",
196
+ "path": "dist/decorators/property.js",
197
+ "declarations": [],
198
+ "exports": [
199
+ {
200
+ "kind": "js",
201
+ "name": "default",
202
+ "declaration": {
203
+ "name": "property",
204
+ "module": "dist/decorators/property.js"
205
+ }
206
+ }
207
+ ]
208
+ },
209
+ {
210
+ "kind": "javascript-module",
211
+ "path": "dist/decorators/slot.js",
212
+ "declarations": [],
213
+ "exports": [
214
+ {
215
+ "kind": "js",
216
+ "name": "default",
217
+ "declaration": {
218
+ "name": "slot",
219
+ "module": "dist/decorators/slot.js"
220
+ }
221
+ }
222
+ ]
223
+ },
224
+ {
225
+ "kind": "javascript-module",
226
+ "path": "dist/delegate/ItemNavigation.js",
227
+ "declarations": [
228
+ {
229
+ "kind": "class",
230
+ "description": "The ItemNavigation class manages the calculations to determine the correct \"tabindex\" for a group of related items inside a root component.\nImportant: ItemNavigation only does the calculations and does not change \"tabindex\" directly, this is a responsibility of the developer.\n\nThe keys that trigger ItemNavigation are:\n - Up/down\n - Left/right\n - Home/End\n\nUsage:\n1) Use the \"getItemsCallback\" constructor property to pass a callback to ItemNavigation, which, whenever called, will return the list of items to navigate among.\n\nEach item passed to ItemNavigation via \"getItemsCallback\" must be:\n - A) either a UI5Element with a \"forcedTabIndex\" property\n - B) or an Object with \"id\" and \"forcedTabIndex\" properties which represents a part of the root component's shadow DOM.\n The \"id\" must be a valid ID within the shadow root of the component ItemNavigation operates on.\n This object must not be a DOM object because, as said, ItemNavigation will not set \"tabindex\" on it. It must be a representation of a DOM object only\n and the developer has the responsibility to update the \"tabindex\" in the component's DOM.\n - C) a combination of the above\n\nWhenever the user navigates with the keyboard, ItemNavigation will modify the \"forcedTabIndex\" properties of the items.\nIt is the items' responsibilities to re-render themselves and apply the correct value of \"tabindex\" (i.e. to map the \"forcedTabIndex\" ItemNavigation set to them to the \"tabindex\" property).\nIf the items of the ItemNavigation are UI5Elements themselves, this can happen naturally since they will be invalidated by their \"forcedTabIndex\" property.\nIf the items are Objects with \"id\" and \"forcedTabIndex\" however, it is the developer's responsibility to apply these and the easiest way is to have the root component invalidated by ItemNavigation.\nTo do so, set the \"affectedPropertiesNames\" constructor property to point to one or more of the root component's properties that need refreshing when \"forcedTabIndex\" is changed deeply.\n\n2) Call the \"setCurrentItem\" method of ItemNavigation whenever you want to change the current item.\nThis is most commonly required if the user for example clicks on an item and thus selects it directly.\nPass as the only argument to \"setCurrentItem\" the item that becomes current (must be one of the items, returned by \"getItemsCallback\").",
231
+ "name": "ItemNavigation",
232
+ "members": [
233
+ {
234
+ "kind": "method",
235
+ "name": "setCurrentItem",
236
+ "return": {
237
+ "type": {
238
+ "text": "void"
239
+ }
240
+ },
241
+ "parameters": [
242
+ {
243
+ "name": "current",
244
+ "type": {
245
+ "text": "ITabbable",
246
+ "references": [
247
+ {
248
+ "name": "ITabbable",
249
+ "package": "@ui5/webcomponents-base",
250
+ "module": "dist/delegate/ItemNavigation.js"
251
+ }
252
+ ]
253
+ },
254
+ "description": "the new selected item"
255
+ }
256
+ ],
257
+ "description": "Call this method to set a new \"current\" (selected) item in the item navigation\nNote: the item passed to this function must be one of the items, returned by the getItemsCallback function",
258
+ "privacy": "public"
259
+ },
260
+ {
261
+ "kind": "method",
262
+ "name": "setRowSize",
263
+ "return": {
264
+ "type": {
265
+ "text": "void"
266
+ }
267
+ },
268
+ "parameters": [
269
+ {
270
+ "name": "newRowSize",
271
+ "type": {
272
+ "text": "number"
273
+ }
274
+ }
275
+ ],
276
+ "description": "Call this method to dynamically change the row size",
277
+ "privacy": "public"
278
+ }
279
+ ]
280
+ }
281
+ ],
282
+ "exports": [
283
+ {
284
+ "kind": "js",
285
+ "name": "default",
286
+ "declaration": {
287
+ "name": "ItemNavigation",
288
+ "module": "dist/delegate/ItemNavigation.js"
289
+ }
290
+ }
291
+ ]
292
+ },
293
+ {
294
+ "kind": "javascript-module",
295
+ "path": "dist/delegate/ResizeHandler.js",
296
+ "declarations": [
297
+ {
298
+ "kind": "class",
299
+ "description": "Allows to register/deregister resize observers for a DOM element",
300
+ "name": "ResizeHandler",
301
+ "members": [
302
+ {
303
+ "kind": "method",
304
+ "name": "register",
305
+ "static": true,
306
+ "return": {
307
+ "type": {
308
+ "text": "void"
309
+ }
310
+ },
311
+ "parameters": [
312
+ {
313
+ "name": "element",
314
+ "type": {
315
+ "text": "HTMLElement"
316
+ },
317
+ "description": "UI5 Web Component or DOM Element to be observed"
318
+ },
319
+ {
320
+ "name": "callback",
321
+ "type": {
322
+ "text": "ResizeObserverCallback",
323
+ "references": [
324
+ {
325
+ "name": "ResizeObserverCallback",
326
+ "package": "@ui5/webcomponents-base",
327
+ "module": "dist/delegate/ResizeHandler.js"
328
+ }
329
+ ]
330
+ },
331
+ "description": "Callback to be executed"
332
+ }
333
+ ],
334
+ "privacy": "public"
335
+ },
336
+ {
337
+ "kind": "method",
338
+ "name": "deregister",
339
+ "static": true,
340
+ "return": {
341
+ "type": {
342
+ "text": "void"
343
+ }
344
+ },
345
+ "parameters": [
346
+ {
347
+ "name": "element",
348
+ "type": {
349
+ "text": "HTMLElement"
350
+ },
351
+ "description": "UI5 Web Component or DOM Element to be unobserved"
352
+ },
353
+ {
354
+ "name": "callback",
355
+ "type": {
356
+ "text": "ResizeObserverCallback",
357
+ "references": [
358
+ {
359
+ "name": "ResizeObserverCallback",
360
+ "package": "@ui5/webcomponents-base",
361
+ "module": "dist/delegate/ResizeHandler.js"
362
+ }
363
+ ]
364
+ },
365
+ "description": "Callback to be removed"
366
+ }
367
+ ],
368
+ "privacy": "public"
369
+ }
370
+ ]
371
+ }
372
+ ],
373
+ "exports": [
374
+ {
375
+ "kind": "js",
376
+ "name": "default",
377
+ "declaration": {
378
+ "name": "ResizeHandler",
379
+ "module": "dist/delegate/ResizeHandler.js"
380
+ }
381
+ }
382
+ ]
383
+ },
384
+ {
385
+ "kind": "javascript-module",
386
+ "path": "dist/delegate/ScrollEnablement.js",
387
+ "declarations": [],
388
+ "exports": [
389
+ {
390
+ "kind": "js",
391
+ "name": "default",
392
+ "declaration": {
393
+ "name": "ScrollEnablement",
394
+ "module": "dist/delegate/ScrollEnablement.js"
395
+ }
396
+ }
397
+ ]
398
+ },
399
+ {
400
+ "kind": "javascript-module",
401
+ "path": "dist/locale/Locale.js",
402
+ "declarations": [],
403
+ "exports": [
404
+ {
405
+ "kind": "js",
406
+ "name": "default",
407
+ "declaration": {
408
+ "name": "Locale",
409
+ "module": "dist/locale/Locale.js"
410
+ }
411
+ }
412
+ ]
413
+ },
414
+ {
415
+ "kind": "javascript-module",
416
+ "path": "dist/locale/RTLAwareRegistry.js",
417
+ "declarations": [],
418
+ "exports": []
419
+ },
420
+ {
421
+ "kind": "javascript-module",
422
+ "path": "dist/locale/applyDirection.js",
423
+ "declarations": [],
424
+ "exports": [
425
+ {
426
+ "kind": "js",
427
+ "name": "default",
428
+ "declaration": {
429
+ "name": "applyDirection",
430
+ "module": "dist/locale/applyDirection.js"
431
+ }
432
+ }
433
+ ]
434
+ },
435
+ {
436
+ "kind": "javascript-module",
437
+ "path": "dist/locale/directionChange.js",
438
+ "declarations": [],
439
+ "exports": []
440
+ },
441
+ {
442
+ "kind": "javascript-module",
443
+ "path": "dist/locale/getEffectiveDir.js",
444
+ "declarations": [],
445
+ "exports": [
446
+ {
447
+ "kind": "js",
448
+ "name": "default",
449
+ "declaration": {
450
+ "name": "getEffectiveDir",
451
+ "module": "dist/locale/getEffectiveDir.js"
452
+ }
453
+ }
454
+ ]
455
+ },
456
+ {
457
+ "kind": "javascript-module",
458
+ "path": "dist/locale/getLocale.js",
459
+ "declarations": [],
460
+ "exports": [
461
+ {
462
+ "kind": "js",
463
+ "name": "default",
464
+ "declaration": {
465
+ "name": "getLocale",
466
+ "module": "dist/locale/getLocale.js"
467
+ }
468
+ }
469
+ ]
470
+ },
471
+ {
472
+ "kind": "javascript-module",
473
+ "path": "dist/locale/languageChange.js",
474
+ "declarations": [],
475
+ "exports": []
476
+ },
477
+ {
478
+ "kind": "javascript-module",
479
+ "path": "dist/locale/nextFallbackLocale.js",
480
+ "declarations": [],
481
+ "exports": [
482
+ {
483
+ "kind": "js",
484
+ "name": "default",
485
+ "declaration": {
486
+ "name": "nextFallbackLocale",
487
+ "module": "dist/locale/nextFallbackLocale.js"
488
+ }
489
+ }
490
+ ]
491
+ },
492
+ {
493
+ "kind": "javascript-module",
494
+ "path": "dist/locale/normalizeLocale.js",
495
+ "declarations": [],
496
+ "exports": [
497
+ {
498
+ "kind": "js",
499
+ "name": "default",
500
+ "declaration": {
501
+ "name": "normalizeLocale",
502
+ "module": "dist/locale/normalizeLocale.js"
503
+ }
504
+ }
505
+ ]
506
+ },
507
+ {
508
+ "kind": "javascript-module",
509
+ "path": "dist/features/F6Navigation.js",
510
+ "declarations": [],
511
+ "exports": [
512
+ {
513
+ "kind": "js",
514
+ "name": "default",
515
+ "declaration": {
516
+ "name": "F6Navigation",
517
+ "module": "dist/features/F6Navigation.js"
518
+ }
519
+ }
520
+ ]
521
+ },
522
+ {
523
+ "kind": "javascript-module",
524
+ "path": "dist/features/LegacyDateFormats.js",
525
+ "declarations": [],
526
+ "exports": [
527
+ {
528
+ "kind": "js",
529
+ "name": "default",
530
+ "declaration": {
531
+ "name": "LegacyDateFormats",
532
+ "module": "dist/features/LegacyDateFormats.js"
533
+ }
534
+ }
535
+ ]
536
+ },
537
+ {
538
+ "kind": "javascript-module",
539
+ "path": "dist/features/OpenUI5Element.js",
540
+ "declarations": [],
541
+ "exports": [
542
+ {
543
+ "kind": "js",
544
+ "name": "default",
545
+ "declaration": {
546
+ "name": "OpenUI5Element",
547
+ "module": "dist/features/OpenUI5Element.js"
548
+ }
549
+ }
550
+ ]
551
+ },
552
+ {
553
+ "kind": "javascript-module",
554
+ "path": "dist/features/OpenUI5Enablement.js",
555
+ "declarations": [],
556
+ "exports": [
557
+ {
558
+ "kind": "js",
559
+ "name": "default",
560
+ "declaration": {
561
+ "name": "OpenUI5Enablement",
562
+ "module": "dist/features/OpenUI5Enablement.js"
563
+ }
564
+ }
565
+ ]
566
+ },
567
+ {
568
+ "kind": "javascript-module",
569
+ "path": "dist/features/OpenUI5Support.js",
570
+ "declarations": [],
571
+ "exports": [
572
+ {
573
+ "kind": "js",
574
+ "name": "default",
575
+ "declaration": {
576
+ "name": "OpenUI5Support",
577
+ "module": "dist/features/OpenUI5Support.js"
578
+ }
579
+ }
580
+ ]
581
+ },
582
+ {
583
+ "kind": "javascript-module",
584
+ "path": "dist/renderer/LitRenderer.js",
585
+ "declarations": [],
586
+ "exports": [
587
+ {
588
+ "kind": "js",
589
+ "name": "default",
590
+ "declaration": {
591
+ "name": "litRender",
592
+ "module": "dist/renderer/LitRenderer.js"
593
+ }
594
+ }
595
+ ]
596
+ },
597
+ {
598
+ "kind": "javascript-module",
599
+ "path": "dist/renderer/executeTemplate.js",
600
+ "declarations": [],
601
+ "exports": [
602
+ {
603
+ "kind": "js",
604
+ "name": "default",
605
+ "declaration": {
606
+ "name": "executeTemplate",
607
+ "module": "dist/renderer/executeTemplate.js"
608
+ }
609
+ }
610
+ ]
611
+ },
612
+ {
613
+ "kind": "javascript-module",
614
+ "path": "dist/theming/CustomStyle.js",
615
+ "declarations": [],
616
+ "exports": []
617
+ },
618
+ {
619
+ "kind": "javascript-module",
620
+ "path": "dist/theming/ThemeLoaded.js",
621
+ "declarations": [],
622
+ "exports": []
623
+ },
624
+ {
625
+ "kind": "javascript-module",
626
+ "path": "dist/theming/ThemeRegistered.js",
627
+ "declarations": [],
628
+ "exports": []
629
+ },
630
+ {
631
+ "kind": "javascript-module",
632
+ "path": "dist/theming/applyTheme.js",
633
+ "declarations": [],
634
+ "exports": [
635
+ {
636
+ "kind": "js",
637
+ "name": "default",
638
+ "declaration": {
639
+ "name": "applyTheme",
640
+ "module": "dist/theming/applyTheme.js"
641
+ }
642
+ }
643
+ ]
644
+ },
645
+ {
646
+ "kind": "javascript-module",
647
+ "path": "dist/theming/getConstructableStyle.js",
648
+ "declarations": [],
649
+ "exports": [
650
+ {
651
+ "kind": "js",
652
+ "name": "default",
653
+ "declaration": {
654
+ "name": "getConstructableStyle",
655
+ "module": "dist/theming/getConstructableStyle.js"
656
+ }
657
+ }
658
+ ]
659
+ },
660
+ {
661
+ "kind": "javascript-module",
662
+ "path": "dist/theming/getEffectiveLinksHrefs.js",
663
+ "declarations": [],
664
+ "exports": [
665
+ {
666
+ "kind": "js",
667
+ "name": "default",
668
+ "declaration": {
669
+ "name": "getEffectiveLinksHrefs",
670
+ "module": "dist/theming/getEffectiveLinksHrefs.js"
671
+ }
672
+ }
673
+ ]
674
+ },
675
+ {
676
+ "kind": "javascript-module",
677
+ "path": "dist/theming/getEffectiveStyle.js",
678
+ "declarations": [],
679
+ "exports": [
680
+ {
681
+ "kind": "js",
682
+ "name": "default",
683
+ "declaration": {
684
+ "name": "getEffectiveStyle",
685
+ "module": "dist/theming/getEffectiveStyle.js"
686
+ }
687
+ }
688
+ ]
689
+ },
690
+ {
691
+ "kind": "javascript-module",
692
+ "path": "dist/theming/getStylesString.js",
693
+ "declarations": [],
694
+ "exports": [
695
+ {
696
+ "kind": "js",
697
+ "name": "default",
698
+ "declaration": {
699
+ "name": "getStylesString",
700
+ "module": "dist/theming/getStylesString.js"
701
+ }
702
+ }
703
+ ]
704
+ },
705
+ {
706
+ "kind": "javascript-module",
707
+ "path": "dist/theming/getThemeDesignerTheme.js",
708
+ "declarations": [],
709
+ "exports": [
710
+ {
711
+ "kind": "js",
712
+ "name": "default",
713
+ "declaration": {
714
+ "name": "getThemeDesignerTheme",
715
+ "module": "dist/theming/getThemeDesignerTheme.js"
716
+ }
717
+ }
718
+ ]
719
+ },
720
+ {
721
+ "kind": "javascript-module",
722
+ "path": "dist/theming/preloadLinks.js",
723
+ "declarations": [],
724
+ "exports": [
725
+ {
726
+ "kind": "js",
727
+ "name": "default",
728
+ "declaration": {
729
+ "name": "preloadLinks",
730
+ "module": "dist/theming/preloadLinks.js"
731
+ }
732
+ }
733
+ ]
734
+ },
735
+ {
736
+ "kind": "javascript-module",
737
+ "path": "dist/types/AnimationMode.js",
738
+ "declarations": [],
739
+ "exports": [
740
+ {
741
+ "kind": "js",
742
+ "name": "default",
743
+ "declaration": {
744
+ "name": "AnimationMode",
745
+ "module": "dist/types/AnimationMode.js"
746
+ }
747
+ }
748
+ ]
749
+ },
750
+ {
751
+ "kind": "javascript-module",
752
+ "path": "dist/types/CSSColor.js",
753
+ "declarations": [
754
+ {
755
+ "kind": "class",
756
+ "description": "CSSColor data type.",
757
+ "name": "CSSColor",
758
+ "superclass": {
759
+ "name": "DataType",
760
+ "module": "/src/types/DataType.js"
761
+ },
762
+ "members": [
763
+ {
764
+ "kind": "method",
765
+ "name": "isValid",
766
+ "static": true,
767
+ "return": {
768
+ "type": {
769
+ "text": "boolean"
770
+ }
771
+ },
772
+ "description": "Checks if the value is valid for its data type.",
773
+ "privacy": "public",
774
+ "inheritedFrom": {
775
+ "name": "DataType",
776
+ "module": "dist/types/DataType.js"
777
+ }
778
+ }
779
+ ]
780
+ }
781
+ ],
782
+ "exports": [
783
+ {
784
+ "kind": "js",
785
+ "name": "default",
786
+ "declaration": {
787
+ "name": "CSSColor",
788
+ "module": "dist/types/CSSColor.js"
789
+ }
790
+ }
791
+ ]
792
+ },
793
+ {
794
+ "kind": "javascript-module",
795
+ "path": "dist/types/CSSSize.js",
796
+ "declarations": [
797
+ {
798
+ "kind": "class",
799
+ "description": "CSSSize data type.",
800
+ "name": "CSSSize",
801
+ "superclass": {
802
+ "name": "DataType",
803
+ "module": "/src/types/DataType.js"
804
+ },
805
+ "members": [
806
+ {
807
+ "kind": "method",
808
+ "name": "isValid",
809
+ "static": true,
810
+ "return": {
811
+ "type": {
812
+ "text": "boolean"
813
+ }
814
+ },
815
+ "description": "Checks if the value is valid for its data type.",
816
+ "privacy": "public",
817
+ "inheritedFrom": {
818
+ "name": "DataType",
819
+ "module": "dist/types/DataType.js"
820
+ }
821
+ }
822
+ ]
823
+ }
824
+ ],
825
+ "exports": [
826
+ {
827
+ "kind": "js",
828
+ "name": "default",
829
+ "declaration": {
830
+ "name": "CSSSize",
831
+ "module": "dist/types/CSSSize.js"
832
+ }
833
+ }
834
+ ]
835
+ },
836
+ {
837
+ "kind": "javascript-module",
838
+ "path": "dist/types/CalendarType.js",
839
+ "declarations": [],
840
+ "exports": [
841
+ {
842
+ "kind": "js",
843
+ "name": "default",
844
+ "declaration": {
845
+ "name": "CalendarType",
846
+ "module": "dist/types/CalendarType.js"
847
+ }
848
+ }
849
+ ]
850
+ },
851
+ {
852
+ "kind": "javascript-module",
853
+ "path": "dist/types/DOMReference.js",
854
+ "declarations": [
855
+ {
856
+ "kind": "class",
857
+ "description": "DOM Element reference or ID.\n<b>Note:</b> If an ID is passed, it is expected to be part of the same <code>document</code> element as the consuming component.",
858
+ "name": "DOMReference",
859
+ "superclass": {
860
+ "name": "DataType",
861
+ "module": "/src/types/DataType.js"
862
+ },
863
+ "members": [
864
+ {
865
+ "kind": "method",
866
+ "name": "isValid",
867
+ "static": true,
868
+ "return": {
869
+ "type": {
870
+ "text": "boolean"
871
+ }
872
+ },
873
+ "description": "Checks if the value is valid for its data type.",
874
+ "privacy": "public",
875
+ "inheritedFrom": {
876
+ "name": "DataType",
877
+ "module": "dist/types/DataType.js"
878
+ }
879
+ }
880
+ ]
881
+ }
882
+ ],
883
+ "exports": [
884
+ {
885
+ "kind": "js",
886
+ "name": "default",
887
+ "declaration": {
888
+ "name": "DOMReference",
889
+ "module": "dist/types/DOMReference.js"
890
+ }
891
+ }
892
+ ]
893
+ },
894
+ {
895
+ "kind": "javascript-module",
896
+ "path": "dist/types/DataType.js",
897
+ "declarations": [
898
+ {
899
+ "kind": "class",
900
+ "description": "Base class for all data types.",
901
+ "name": "DataType",
902
+ "members": [
903
+ {
904
+ "kind": "method",
905
+ "name": "isValid",
906
+ "static": true,
907
+ "return": {
908
+ "type": {
909
+ "text": "boolean"
910
+ }
911
+ },
912
+ "description": "Checks if the value is valid for its data type.",
913
+ "privacy": "public"
914
+ }
915
+ ]
916
+ }
917
+ ],
918
+ "exports": [
919
+ {
920
+ "kind": "js",
921
+ "name": "default",
922
+ "declaration": {
923
+ "name": "DataType",
924
+ "module": "dist/types/DataType.js"
925
+ }
926
+ }
927
+ ]
928
+ },
929
+ {
930
+ "kind": "javascript-module",
931
+ "path": "dist/types/Float.js",
932
+ "declarations": [
933
+ {
934
+ "kind": "class",
935
+ "description": "Float data type.",
936
+ "name": "Float",
937
+ "superclass": {
938
+ "name": "DataType",
939
+ "module": "/src/types/DataType.js"
940
+ },
941
+ "members": [
942
+ {
943
+ "kind": "method",
944
+ "name": "isValid",
945
+ "static": true,
946
+ "return": {
947
+ "type": {
948
+ "text": "boolean"
949
+ }
950
+ },
951
+ "description": "Checks if the value is valid for its data type.",
952
+ "privacy": "public",
953
+ "inheritedFrom": {
954
+ "name": "DataType",
955
+ "module": "dist/types/DataType.js"
956
+ }
957
+ }
958
+ ]
959
+ }
960
+ ],
961
+ "exports": [
962
+ {
963
+ "kind": "js",
964
+ "name": "default",
965
+ "declaration": {
966
+ "name": "Float",
967
+ "module": "dist/types/Float.js"
968
+ }
969
+ }
970
+ ]
971
+ },
972
+ {
973
+ "kind": "javascript-module",
974
+ "path": "dist/types/Integer.js",
975
+ "declarations": [
976
+ {
977
+ "kind": "class",
978
+ "description": "Integer data type.",
979
+ "name": "Integer",
980
+ "superclass": {
981
+ "name": "DataType",
982
+ "module": "/src/types/DataType.js"
983
+ },
984
+ "members": [
985
+ {
986
+ "kind": "method",
987
+ "name": "isValid",
988
+ "static": true,
989
+ "return": {
990
+ "type": {
991
+ "text": "boolean"
992
+ }
993
+ },
994
+ "description": "Checks if the value is valid for its data type.",
995
+ "privacy": "public",
996
+ "inheritedFrom": {
997
+ "name": "DataType",
998
+ "module": "dist/types/DataType.js"
999
+ }
1000
+ }
1001
+ ]
1002
+ }
1003
+ ],
1004
+ "exports": [
1005
+ {
1006
+ "kind": "js",
1007
+ "name": "default",
1008
+ "declaration": {
1009
+ "name": "Integer",
1010
+ "module": "dist/types/Integer.js"
1011
+ }
1012
+ }
1013
+ ]
1014
+ },
1015
+ {
1016
+ "kind": "javascript-module",
1017
+ "path": "dist/types/InvisibleMessageMode.js",
1018
+ "declarations": [],
1019
+ "exports": [
1020
+ {
1021
+ "kind": "js",
1022
+ "name": "default",
1023
+ "declaration": {
1024
+ "name": "InvisibleMessageMode",
1025
+ "module": "dist/types/InvisibleMessageMode.js"
1026
+ }
1027
+ }
1028
+ ]
1029
+ },
1030
+ {
1031
+ "kind": "javascript-module",
1032
+ "path": "dist/types/ItemNavigationBehavior.js",
1033
+ "declarations": [],
1034
+ "exports": [
1035
+ {
1036
+ "kind": "js",
1037
+ "name": "default",
1038
+ "declaration": {
1039
+ "name": "ItemNavigationBehavior",
1040
+ "module": "dist/types/ItemNavigationBehavior.js"
1041
+ }
1042
+ }
1043
+ ]
1044
+ },
1045
+ {
1046
+ "kind": "javascript-module",
1047
+ "path": "dist/types/NavigationMode.js",
1048
+ "declarations": [],
1049
+ "exports": [
1050
+ {
1051
+ "kind": "js",
1052
+ "name": "default",
1053
+ "declaration": {
1054
+ "name": "NavigationMode",
1055
+ "module": "dist/types/NavigationMode.js"
1056
+ }
1057
+ }
1058
+ ]
1059
+ },
1060
+ {
1061
+ "kind": "javascript-module",
1062
+ "path": "dist/types/ValueState.js",
1063
+ "declarations": [],
1064
+ "exports": [
1065
+ {
1066
+ "kind": "js",
1067
+ "name": "default",
1068
+ "declaration": {
1069
+ "name": "ValueState",
1070
+ "module": "dist/types/ValueState.js"
1071
+ }
1072
+ }
1073
+ ]
1074
+ },
1075
+ {
1076
+ "kind": "javascript-module",
1077
+ "path": "dist/thirdparty/_merge.js",
1078
+ "declarations": [],
1079
+ "exports": [
1080
+ {
1081
+ "kind": "js",
1082
+ "name": "default",
1083
+ "declaration": {
1084
+ "name": "fnMerge",
1085
+ "module": "dist/thirdparty/_merge.js"
1086
+ }
1087
+ }
1088
+ ]
1089
+ },
1090
+ {
1091
+ "kind": "javascript-module",
1092
+ "path": "dist/thirdparty/isPlainObject.js",
1093
+ "declarations": [],
1094
+ "exports": [
1095
+ {
1096
+ "kind": "js",
1097
+ "name": "default",
1098
+ "declaration": {
1099
+ "name": "fnIsPlainObject",
1100
+ "module": "dist/thirdparty/isPlainObject.js"
1101
+ }
1102
+ }
1103
+ ]
1104
+ },
1105
+ {
1106
+ "kind": "javascript-module",
1107
+ "path": "dist/thirdparty/merge.js",
1108
+ "declarations": [],
1109
+ "exports": [
1110
+ {
1111
+ "kind": "js",
1112
+ "name": "default",
1113
+ "declaration": {
1114
+ "name": "fnMerge",
1115
+ "module": "dist/thirdparty/merge.js"
1116
+ }
1117
+ }
1118
+ ]
1119
+ },
1120
+ {
1121
+ "kind": "javascript-module",
1122
+ "path": "dist/util/AriaLabelHelper.js",
1123
+ "declarations": [],
1124
+ "exports": []
1125
+ },
1126
+ {
1127
+ "kind": "javascript-module",
1128
+ "path": "dist/util/Caret.js",
1129
+ "declarations": [],
1130
+ "exports": []
1131
+ },
1132
+ {
1133
+ "kind": "javascript-module",
1134
+ "path": "dist/util/ColorConversion.js",
1135
+ "declarations": [],
1136
+ "exports": []
1137
+ },
1138
+ {
1139
+ "kind": "javascript-module",
1140
+ "path": "dist/util/FetchHelper.js",
1141
+ "declarations": [],
1142
+ "exports": []
1143
+ },
1144
+ {
1145
+ "kind": "javascript-module",
1146
+ "path": "dist/util/FocusableElements.js",
1147
+ "declarations": [],
1148
+ "exports": []
1149
+ },
1150
+ {
1151
+ "kind": "javascript-module",
1152
+ "path": "dist/util/HTMLSanitizer.js",
1153
+ "declarations": [],
1154
+ "exports": []
1155
+ },
1156
+ {
1157
+ "kind": "javascript-module",
1158
+ "path": "dist/util/InvisibleMessage.js",
1159
+ "declarations": [],
1160
+ "exports": [
1161
+ {
1162
+ "kind": "js",
1163
+ "name": "default",
1164
+ "declaration": {
1165
+ "name": "announce",
1166
+ "module": "dist/util/InvisibleMessage.js"
1167
+ }
1168
+ }
1169
+ ]
1170
+ },
1171
+ {
1172
+ "kind": "javascript-module",
1173
+ "path": "dist/util/PopupUtils.js",
1174
+ "declarations": [],
1175
+ "exports": []
1176
+ },
1177
+ {
1178
+ "kind": "javascript-module",
1179
+ "path": "dist/util/SlotsHelper.js",
1180
+ "declarations": [],
1181
+ "exports": []
1182
+ },
1183
+ {
1184
+ "kind": "javascript-module",
1185
+ "path": "dist/util/StringHelper.js",
1186
+ "declarations": [],
1187
+ "exports": []
1188
+ },
1189
+ {
1190
+ "kind": "javascript-module",
1191
+ "path": "dist/util/TabbableElements.js",
1192
+ "declarations": [],
1193
+ "exports": []
1194
+ },
1195
+ {
1196
+ "kind": "javascript-module",
1197
+ "path": "dist/util/arraysAreEqual.js",
1198
+ "declarations": [],
1199
+ "exports": [
1200
+ {
1201
+ "kind": "js",
1202
+ "name": "default",
1203
+ "declaration": {
1204
+ "name": "arraysAreEqual",
1205
+ "module": "dist/util/arraysAreEqual.js"
1206
+ }
1207
+ }
1208
+ ]
1209
+ },
1210
+ {
1211
+ "kind": "javascript-module",
1212
+ "path": "dist/util/clamp.js",
1213
+ "declarations": [],
1214
+ "exports": [
1215
+ {
1216
+ "kind": "js",
1217
+ "name": "default",
1218
+ "declaration": {
1219
+ "name": "clamp",
1220
+ "module": "dist/util/clamp.js"
1221
+ }
1222
+ }
1223
+ ]
1224
+ },
1225
+ {
1226
+ "kind": "javascript-module",
1227
+ "path": "dist/util/createLinkInHead.js",
1228
+ "declarations": [],
1229
+ "exports": [
1230
+ {
1231
+ "kind": "js",
1232
+ "name": "default",
1233
+ "declaration": {
1234
+ "name": "createLinkInHead",
1235
+ "module": "dist/util/createLinkInHead.js"
1236
+ }
1237
+ }
1238
+ ]
1239
+ },
1240
+ {
1241
+ "kind": "javascript-module",
1242
+ "path": "dist/util/createStyleInHead.js",
1243
+ "declarations": [],
1244
+ "exports": [
1245
+ {
1246
+ "kind": "js",
1247
+ "name": "default",
1248
+ "declaration": {
1249
+ "name": "createStyleInHead",
1250
+ "module": "dist/util/createStyleInHead.js"
1251
+ }
1252
+ }
1253
+ ]
1254
+ },
1255
+ {
1256
+ "kind": "javascript-module",
1257
+ "path": "dist/util/debounce.js",
1258
+ "declarations": [],
1259
+ "exports": [
1260
+ {
1261
+ "kind": "js",
1262
+ "name": "default",
1263
+ "declaration": {
1264
+ "name": "debounce",
1265
+ "module": "dist/util/debounce.js"
1266
+ }
1267
+ }
1268
+ ]
1269
+ },
1270
+ {
1271
+ "kind": "javascript-module",
1272
+ "path": "dist/util/detectNavigatorLanguage.js",
1273
+ "declarations": [],
1274
+ "exports": [
1275
+ {
1276
+ "kind": "js",
1277
+ "name": "default",
1278
+ "declaration": {
1279
+ "name": "detectNavigatorLanguage",
1280
+ "module": "dist/util/detectNavigatorLanguage.js"
1281
+ }
1282
+ }
1283
+ ]
1284
+ },
1285
+ {
1286
+ "kind": "javascript-module",
1287
+ "path": "dist/util/escapeRegex.js",
1288
+ "declarations": [],
1289
+ "exports": [
1290
+ {
1291
+ "kind": "js",
1292
+ "name": "default",
1293
+ "declaration": {
1294
+ "name": "escapeRegex",
1295
+ "module": "dist/util/escapeRegex.js"
1296
+ }
1297
+ }
1298
+ ]
1299
+ },
1300
+ {
1301
+ "kind": "javascript-module",
1302
+ "path": "dist/util/formatMessage.js",
1303
+ "declarations": [],
1304
+ "exports": [
1305
+ {
1306
+ "kind": "js",
1307
+ "name": "default",
1308
+ "declaration": {
1309
+ "name": "formatMessage",
1310
+ "module": "dist/util/formatMessage.js"
1311
+ }
1312
+ }
1313
+ ]
1314
+ },
1315
+ {
1316
+ "kind": "javascript-module",
1317
+ "path": "dist/util/generateHighlightedMarkup.js",
1318
+ "declarations": [],
1319
+ "exports": [
1320
+ {
1321
+ "kind": "js",
1322
+ "name": "default",
1323
+ "declaration": {
1324
+ "name": "generateHighlightedMarkup",
1325
+ "module": "dist/util/generateHighlightedMarkup.js"
1326
+ }
1327
+ }
1328
+ ]
1329
+ },
1330
+ {
1331
+ "kind": "javascript-module",
1332
+ "path": "dist/util/getActiveElement.js",
1333
+ "declarations": [],
1334
+ "exports": [
1335
+ {
1336
+ "kind": "js",
1337
+ "name": "default",
1338
+ "declaration": {
1339
+ "name": "getActiveElement",
1340
+ "module": "dist/util/getActiveElement.js"
1341
+ }
1342
+ }
1343
+ ]
1344
+ },
1345
+ {
1346
+ "kind": "javascript-module",
1347
+ "path": "dist/util/getClassCopy.js",
1348
+ "declarations": [],
1349
+ "exports": [
1350
+ {
1351
+ "kind": "js",
1352
+ "name": "default",
1353
+ "declaration": {
1354
+ "name": "getClassCopy",
1355
+ "module": "dist/util/getClassCopy.js"
1356
+ }
1357
+ }
1358
+ ]
1359
+ },
1360
+ {
1361
+ "kind": "javascript-module",
1362
+ "path": "dist/util/getDesigntimePropertyAsArray.js",
1363
+ "declarations": [],
1364
+ "exports": [
1365
+ {
1366
+ "kind": "js",
1367
+ "name": "default",
1368
+ "declaration": {
1369
+ "name": "designTimePropertyAsArray",
1370
+ "module": "dist/util/getDesigntimePropertyAsArray.js"
1371
+ }
1372
+ }
1373
+ ]
1374
+ },
1375
+ {
1376
+ "kind": "javascript-module",
1377
+ "path": "dist/util/getEffectiveContentDensity.js",
1378
+ "declarations": [],
1379
+ "exports": [
1380
+ {
1381
+ "kind": "js",
1382
+ "name": "default",
1383
+ "declaration": {
1384
+ "name": "getEffectiveContentDensity",
1385
+ "module": "dist/util/getEffectiveContentDensity.js"
1386
+ }
1387
+ }
1388
+ ]
1389
+ },
1390
+ {
1391
+ "kind": "javascript-module",
1392
+ "path": "dist/util/getEffectiveScrollbarStyle.js",
1393
+ "declarations": [],
1394
+ "exports": [
1395
+ {
1396
+ "kind": "js",
1397
+ "name": "default",
1398
+ "declaration": {
1399
+ "name": "getEffectiveScrollbarStyle",
1400
+ "module": "dist/util/getEffectiveScrollbarStyle.js"
1401
+ }
1402
+ }
1403
+ ]
1404
+ },
1405
+ {
1406
+ "kind": "javascript-module",
1407
+ "path": "dist/util/getFastNavigationGroups.js",
1408
+ "declarations": [],
1409
+ "exports": [
1410
+ {
1411
+ "kind": "js",
1412
+ "name": "default",
1413
+ "declaration": {
1414
+ "name": "getFastNavigationGroups",
1415
+ "module": "dist/util/getFastNavigationGroups.js"
1416
+ }
1417
+ }
1418
+ ]
1419
+ },
1420
+ {
1421
+ "kind": "javascript-module",
1422
+ "path": "dist/util/getFileExtension.js",
1423
+ "declarations": [],
1424
+ "exports": [
1425
+ {
1426
+ "kind": "js",
1427
+ "name": "default",
1428
+ "declaration": {
1429
+ "name": "getFileExtension",
1430
+ "module": "dist/util/getFileExtension.js"
1431
+ }
1432
+ }
1433
+ ]
1434
+ },
1435
+ {
1436
+ "kind": "javascript-module",
1437
+ "path": "dist/util/getNormalizedTarget.js",
1438
+ "declarations": [],
1439
+ "exports": [
1440
+ {
1441
+ "kind": "js",
1442
+ "name": "default",
1443
+ "declaration": {
1444
+ "name": "getNormalizedTarget",
1445
+ "module": "dist/util/getNormalizedTarget.js"
1446
+ }
1447
+ }
1448
+ ]
1449
+ },
1450
+ {
1451
+ "kind": "javascript-module",
1452
+ "path": "dist/util/getParentElement.js",
1453
+ "declarations": [],
1454
+ "exports": [
1455
+ {
1456
+ "kind": "js",
1457
+ "name": "default",
1458
+ "declaration": {
1459
+ "name": "getParentElement",
1460
+ "module": "dist/util/getParentElement.js"
1461
+ }
1462
+ }
1463
+ ]
1464
+ },
1465
+ {
1466
+ "kind": "javascript-module",
1467
+ "path": "dist/util/getSingletonElementInstance.js",
1468
+ "declarations": [],
1469
+ "exports": [
1470
+ {
1471
+ "kind": "js",
1472
+ "name": "default",
1473
+ "declaration": {
1474
+ "name": "getSingletonElementInstance",
1475
+ "module": "dist/util/getSingletonElementInstance.js"
1476
+ }
1477
+ }
1478
+ ]
1479
+ },
1480
+ {
1481
+ "kind": "javascript-module",
1482
+ "path": "dist/util/isElementClickable.js",
1483
+ "declarations": [],
1484
+ "exports": [
1485
+ {
1486
+ "kind": "js",
1487
+ "name": "default",
1488
+ "declaration": {
1489
+ "name": "isElementClickable",
1490
+ "module": "dist/util/isElementClickable.js"
1491
+ }
1492
+ }
1493
+ ]
1494
+ },
1495
+ {
1496
+ "kind": "javascript-module",
1497
+ "path": "dist/util/isElementContainingBlock.js",
1498
+ "declarations": [],
1499
+ "exports": [
1500
+ {
1501
+ "kind": "js",
1502
+ "name": "default",
1503
+ "declaration": {
1504
+ "name": "isElementContainingBlock",
1505
+ "module": "dist/util/isElementContainingBlock.js"
1506
+ }
1507
+ }
1508
+ ]
1509
+ },
1510
+ {
1511
+ "kind": "javascript-module",
1512
+ "path": "dist/util/isElementHidden.js",
1513
+ "declarations": [],
1514
+ "exports": [
1515
+ {
1516
+ "kind": "js",
1517
+ "name": "default",
1518
+ "declaration": {
1519
+ "name": "isElementHidden",
1520
+ "module": "dist/util/isElementHidden.js"
1521
+ }
1522
+ }
1523
+ ]
1524
+ },
1525
+ {
1526
+ "kind": "javascript-module",
1527
+ "path": "dist/util/isElementInView.js",
1528
+ "declarations": [],
1529
+ "exports": [
1530
+ {
1531
+ "kind": "js",
1532
+ "name": "default",
1533
+ "declaration": {
1534
+ "name": "isElementInView",
1535
+ "module": "dist/util/isElementInView.js"
1536
+ }
1537
+ }
1538
+ ]
1539
+ },
1540
+ {
1541
+ "kind": "javascript-module",
1542
+ "path": "dist/util/isElementTabbable.js",
1543
+ "declarations": [],
1544
+ "exports": [
1545
+ {
1546
+ "kind": "js",
1547
+ "name": "default",
1548
+ "declaration": {
1549
+ "name": "isElementTabbable",
1550
+ "module": "dist/util/isElementTabbable.js"
1551
+ }
1552
+ }
1553
+ ]
1554
+ },
1555
+ {
1556
+ "kind": "javascript-module",
1557
+ "path": "dist/util/isValidPropertyName.js",
1558
+ "declarations": [],
1559
+ "exports": [
1560
+ {
1561
+ "kind": "js",
1562
+ "name": "default",
1563
+ "declaration": {
1564
+ "name": "isValidPropertyName",
1565
+ "module": "dist/util/isValidPropertyName.js"
1566
+ }
1567
+ }
1568
+ ]
1569
+ },
1570
+ {
1571
+ "kind": "javascript-module",
1572
+ "path": "dist/util/whenDOMReady.js",
1573
+ "declarations": [],
1574
+ "exports": [
1575
+ {
1576
+ "kind": "js",
1577
+ "name": "default",
1578
+ "declaration": {
1579
+ "name": "whenDOMReady",
1580
+ "module": "dist/util/whenDOMReady.js"
1581
+ }
1582
+ }
1583
+ ]
1584
+ },
1585
+ {
1586
+ "kind": "javascript-module",
1587
+ "path": "dist/util/willShowContent.js",
1588
+ "declarations": [],
1589
+ "exports": [
1590
+ {
1591
+ "kind": "js",
1592
+ "name": "default",
1593
+ "declaration": {
1594
+ "name": "willShowContent",
1595
+ "module": "dist/util/willShowContent.js"
1596
+ }
1597
+ }
1598
+ ]
1599
+ },
1600
+ {
1601
+ "kind": "javascript-module",
1602
+ "path": "dist/AssetRegistry.js",
1603
+ "declarations": [],
1604
+ "exports": []
1605
+ },
1606
+ {
1607
+ "kind": "javascript-module",
1608
+ "path": "dist/Boot.js",
1609
+ "declarations": [],
1610
+ "exports": []
1611
+ },
1612
+ {
1613
+ "kind": "javascript-module",
1614
+ "path": "dist/CSP.js",
1615
+ "declarations": [],
1616
+ "exports": []
1617
+ },
1618
+ {
1619
+ "kind": "javascript-module",
1620
+ "path": "dist/CustomElementsRegistry.js",
1621
+ "declarations": [],
1622
+ "exports": []
1623
+ },
1624
+ {
1625
+ "kind": "javascript-module",
1626
+ "path": "dist/CustomElementsScope.js",
1627
+ "declarations": [],
1628
+ "exports": []
1629
+ },
1630
+ {
1631
+ "kind": "javascript-module",
1632
+ "path": "dist/CustomElementsScopeUtils.js",
1633
+ "declarations": [],
1634
+ "exports": []
1635
+ },
1636
+ {
1637
+ "kind": "javascript-module",
1638
+ "path": "dist/DOMObserver.js",
1639
+ "declarations": [],
1640
+ "exports": []
1641
+ },
1642
+ {
1643
+ "kind": "javascript-module",
1644
+ "path": "dist/Device.js",
1645
+ "declarations": [],
1646
+ "exports": []
1647
+ },
1648
+ {
1649
+ "kind": "javascript-module",
1650
+ "path": "dist/EventProvider.js",
1651
+ "declarations": [],
1652
+ "exports": [
1653
+ {
1654
+ "kind": "js",
1655
+ "name": "default",
1656
+ "declaration": {
1657
+ "name": "EventProvider",
1658
+ "module": "dist/EventProvider.js"
1659
+ }
1660
+ }
1661
+ ]
1662
+ },
1663
+ {
1664
+ "kind": "javascript-module",
1665
+ "path": "dist/FeaturesRegistry.js",
1666
+ "declarations": [],
1667
+ "exports": []
1668
+ },
1669
+ {
1670
+ "kind": "javascript-module",
1671
+ "path": "dist/FontFace.js",
1672
+ "declarations": [],
1673
+ "exports": [
1674
+ {
1675
+ "kind": "js",
1676
+ "name": "default",
1677
+ "declaration": {
1678
+ "name": "insertFontFace",
1679
+ "module": "dist/FontFace.js"
1680
+ }
1681
+ }
1682
+ ]
1683
+ },
1684
+ {
1685
+ "kind": "javascript-module",
1686
+ "path": "dist/IgnoreCustomElements.js",
1687
+ "declarations": [],
1688
+ "exports": []
1689
+ },
1690
+ {
1691
+ "kind": "javascript-module",
1692
+ "path": "dist/InitialConfiguration.js",
1693
+ "declarations": [],
1694
+ "exports": []
1695
+ },
1696
+ {
1697
+ "kind": "javascript-module",
1698
+ "path": "dist/Keys.js",
1699
+ "declarations": [],
1700
+ "exports": []
1701
+ },
1702
+ {
1703
+ "kind": "javascript-module",
1704
+ "path": "dist/ManagedStyles.js",
1705
+ "declarations": [],
1706
+ "exports": []
1707
+ },
1708
+ {
1709
+ "kind": "javascript-module",
1710
+ "path": "dist/MarkedEvents.js",
1711
+ "declarations": [],
1712
+ "exports": []
1713
+ },
1714
+ {
1715
+ "kind": "javascript-module",
1716
+ "path": "dist/MediaRange.js",
1717
+ "declarations": [],
1718
+ "exports": [
1719
+ {
1720
+ "kind": "js",
1721
+ "name": "default",
1722
+ "declaration": {
1723
+ "name": "MediaRange",
1724
+ "module": "dist/MediaRange.js"
1725
+ }
1726
+ }
1727
+ ]
1728
+ },
1729
+ {
1730
+ "kind": "javascript-module",
1731
+ "path": "dist/PropertiesFileFormat.js",
1732
+ "declarations": [],
1733
+ "exports": [
1734
+ {
1735
+ "kind": "js",
1736
+ "name": "default",
1737
+ "declaration": {
1738
+ "name": "parseProperties",
1739
+ "module": "dist/PropertiesFileFormat.js"
1740
+ }
1741
+ }
1742
+ ]
1743
+ },
1744
+ {
1745
+ "kind": "javascript-module",
1746
+ "path": "dist/Render.js",
1747
+ "declarations": [],
1748
+ "exports": []
1749
+ },
1750
+ {
1751
+ "kind": "javascript-module",
1752
+ "path": "dist/RenderQueue.js",
1753
+ "declarations": [],
1754
+ "exports": [
1755
+ {
1756
+ "kind": "js",
1757
+ "name": "default",
1758
+ "declaration": {
1759
+ "name": "RenderQueue",
1760
+ "module": "dist/RenderQueue.js"
1761
+ }
1762
+ }
1763
+ ]
1764
+ },
1765
+ {
1766
+ "kind": "javascript-module",
1767
+ "path": "dist/Runtimes.js",
1768
+ "declarations": [],
1769
+ "exports": []
1770
+ },
1771
+ {
1772
+ "kind": "javascript-module",
1773
+ "path": "dist/StaticArea.js",
1774
+ "declarations": [],
1775
+ "exports": [
1776
+ {
1777
+ "kind": "js",
1778
+ "name": "default",
1779
+ "declaration": {
1780
+ "name": "StaticArea",
1781
+ "module": "dist/StaticArea.js"
1782
+ }
1783
+ }
1784
+ ]
1785
+ },
1786
+ {
1787
+ "kind": "javascript-module",
1788
+ "path": "dist/StaticAreaItem.js",
1789
+ "declarations": [],
1790
+ "exports": [
1791
+ {
1792
+ "kind": "js",
1793
+ "name": "default",
1794
+ "declaration": {
1795
+ "name": "StaticAreaItem",
1796
+ "module": "dist/StaticAreaItem.js"
1797
+ }
1798
+ }
1799
+ ]
1800
+ },
1801
+ {
1802
+ "kind": "javascript-module",
1803
+ "path": "dist/SystemCSSVars.js",
1804
+ "declarations": [],
1805
+ "exports": [
1806
+ {
1807
+ "kind": "js",
1808
+ "name": "default",
1809
+ "declaration": {
1810
+ "name": "insertSystemCSSVars",
1811
+ "module": "dist/SystemCSSVars.js"
1812
+ }
1813
+ }
1814
+ ]
1815
+ },
1816
+ {
1817
+ "kind": "javascript-module",
1818
+ "path": "dist/Theming.js",
1819
+ "declarations": [],
1820
+ "exports": []
1821
+ },
1822
+ {
1823
+ "kind": "javascript-module",
1824
+ "path": "dist/UI5Element.js",
1825
+ "declarations": [
1826
+ {
1827
+ "kind": "class",
1828
+ "description": "Base class for all UI5 Web Components",
1829
+ "name": "UI5Element",
1830
+ "members": [
1831
+ {
1832
+ "kind": "method",
1833
+ "name": "onBeforeRendering",
1834
+ "return": {
1835
+ "type": {
1836
+ "text": "void"
1837
+ }
1838
+ },
1839
+ "description": "Called every time before the component renders.",
1840
+ "privacy": "public"
1841
+ },
1842
+ {
1843
+ "kind": "method",
1844
+ "name": "onAfterRendering",
1845
+ "return": {
1846
+ "type": {
1847
+ "text": "void"
1848
+ }
1849
+ },
1850
+ "description": "Called every time after the component renders.",
1851
+ "privacy": "public"
1852
+ },
1853
+ {
1854
+ "kind": "method",
1855
+ "name": "onEnterDOM",
1856
+ "return": {
1857
+ "type": {
1858
+ "text": "void"
1859
+ }
1860
+ },
1861
+ "description": "Called on connectedCallback - added to the DOM.",
1862
+ "privacy": "public"
1863
+ },
1864
+ {
1865
+ "kind": "method",
1866
+ "name": "onExitDOM",
1867
+ "return": {
1868
+ "type": {
1869
+ "text": "void"
1870
+ }
1871
+ },
1872
+ "description": "Called on disconnectedCallback - removed from the DOM.",
1873
+ "privacy": "public"
1874
+ },
1875
+ {
1876
+ "kind": "method",
1877
+ "name": "attachInvalidate",
1878
+ "return": {
1879
+ "type": {
1880
+ "text": "void"
1881
+ }
1882
+ },
1883
+ "parameters": [
1884
+ {
1885
+ "name": "callback",
1886
+ "type": {
1887
+ "text": "(param: InvalidationInfo) => void"
1888
+ }
1889
+ }
1890
+ ],
1891
+ "description": "Attach a callback that will be executed whenever the component is invalidated",
1892
+ "privacy": "public"
1893
+ },
1894
+ {
1895
+ "kind": "method",
1896
+ "name": "detachInvalidate",
1897
+ "return": {
1898
+ "type": {
1899
+ "text": "void"
1900
+ }
1901
+ },
1902
+ "parameters": [
1903
+ {
1904
+ "name": "callback",
1905
+ "type": {
1906
+ "text": "(param: InvalidationInfo) => void"
1907
+ }
1908
+ }
1909
+ ],
1910
+ "description": "Detach the callback that is executed whenever the component is invalidated",
1911
+ "privacy": "public"
1912
+ },
1913
+ {
1914
+ "kind": "method",
1915
+ "name": "onInvalidation",
1916
+ "return": {
1917
+ "type": {
1918
+ "text": "void"
1919
+ }
1920
+ },
1921
+ "parameters": [
1922
+ {
1923
+ "name": "changeInfo",
1924
+ "type": {
1925
+ "text": "ChangeInfo",
1926
+ "references": [
1927
+ {
1928
+ "name": "ChangeInfo",
1929
+ "package": "@ui5/webcomponents-base",
1930
+ "module": "dist/UI5Element.js"
1931
+ }
1932
+ ]
1933
+ },
1934
+ "description": "An object with information about the change that caused invalidation.\nThe object can have the following properties:\n- type: (property|slot) tells what caused the invalidation\n1) property: a property value was changed either directly or as a result of changing the corresponding attribute\n2) slot: a slotted node(nodes) changed in one of several ways (see \"reason\")\n\n- name: the name of the property or slot that caused the invalidation\n\n- reason: (children|textcontent|childchange|slotchange) relevant only for type=\"slot\" only and tells exactly what changed in the slot\n1) children: immediate children (HTML elements or text nodes) were added, removed or reordered in the slot\n2) textcontent: text nodes in the slot changed value (or nested text nodes were added or changed value). Can only trigger for slots of \"type: Node\"\n3) slotchange: a slot element, slotted inside that slot had its \"slotchange\" event listener called. This practically means that transitively slotted children changed.\nCan only trigger if the child of a slot is a slot element itself.\n4) childchange: indicates that a UI5Element child in that slot was invalidated and in turn invalidated the component.\nCan only trigger for slots with \"invalidateOnChildChange\" metadata descriptor\n\n- newValue: the new value of the property (for type=\"property\" only)\n\n- oldValue: the old value of the property (for type=\"property\" only)\n\n- child the child that was changed (for type=\"slot\" and reason=\"childchange\" only)"
1935
+ }
1936
+ ],
1937
+ "description": "A callback that is executed each time an already rendered component is invalidated (scheduled for re-rendering)",
1938
+ "privacy": "public"
1939
+ },
1940
+ {
1941
+ "kind": "method",
1942
+ "name": "getDomRef",
1943
+ "return": {
1944
+ "type": {
1945
+ "text": "HTMLElement | undefined"
1946
+ }
1947
+ },
1948
+ "description": "Returns the DOM Element inside the Shadow Root that corresponds to the opening tag in the UI5 Web Component's template\n*Note:* For logical (abstract) elements (items, options, etc...), returns the part of the parent's DOM that represents this option\nUse this method instead of \"this.shadowRoot\" to read the Shadow DOM, if ever necessary",
1949
+ "privacy": "public"
1950
+ },
1951
+ {
1952
+ "kind": "method",
1953
+ "name": "getFocusDomRef",
1954
+ "return": {
1955
+ "type": {
1956
+ "text": "HTMLElement | undefined"
1957
+ }
1958
+ },
1959
+ "description": "Returns the DOM Element marked with \"data-sap-focus-ref\" inside the template.\nThis is the element that will receive the focus by default.",
1960
+ "privacy": "public"
1961
+ },
1962
+ {
1963
+ "kind": "method",
1964
+ "name": "getFocusDomRefAsync",
1965
+ "return": {
1966
+ "type": {
1967
+ "text": "Promise<HTMLElement | undefined>"
1968
+ }
1969
+ },
1970
+ "description": "Waits for dom ref and then returns the DOM Element marked with \"data-sap-focus-ref\" inside the template.\nThis is the element that will receive the focus by default.",
1971
+ "privacy": "public"
1972
+ },
1973
+ {
1974
+ "kind": "method",
1975
+ "name": "focus",
1976
+ "return": {
1977
+ "type": {
1978
+ "text": "Promise<void>"
1979
+ }
1980
+ },
1981
+ "parameters": [
1982
+ {
1983
+ "name": "focusOptions",
1984
+ "optional": true,
1985
+ "type": {
1986
+ "text": "FocusOptions"
1987
+ },
1988
+ "description": "additional options for the focus"
1989
+ }
1990
+ ],
1991
+ "description": "Set the focus to the element, returned by \"getFocusDomRef()\" (marked by \"data-sap-focus-ref\")",
1992
+ "privacy": "public"
1993
+ },
1994
+ {
1995
+ "kind": "method",
1996
+ "name": "fireEvent",
1997
+ "return": {
1998
+ "type": {
1999
+ "text": "boolean"
2000
+ },
2001
+ "description": "false, if the event was cancelled (preventDefault called), true otherwise"
2002
+ },
2003
+ "parameters": [
2004
+ {
2005
+ "name": "name",
2006
+ "type": {
2007
+ "text": "string"
2008
+ },
2009
+ "description": "name of the event"
2010
+ },
2011
+ {
2012
+ "name": "data",
2013
+ "optional": true,
2014
+ "type": {
2015
+ "text": "T"
2016
+ },
2017
+ "description": "additional data for the event"
2018
+ },
2019
+ {
2020
+ "name": "cancelable",
2021
+ "default": "false",
2022
+ "description": "true, if the user can call preventDefault on the event object"
2023
+ },
2024
+ {
2025
+ "name": "bubbles",
2026
+ "default": "true",
2027
+ "description": "true, if the event bubbles"
2028
+ }
2029
+ ],
2030
+ "privacy": "public"
2031
+ },
2032
+ {
2033
+ "kind": "method",
2034
+ "name": "getSlottedNodes",
2035
+ "return": {
2036
+ "type": {
2037
+ "text": "Array<T>"
2038
+ }
2039
+ },
2040
+ "description": "Returns the actual children, associated with a slot.\nUseful when there are transitive slots in nested component scenarios and you don't want to get a list of the slots, but rather of their content.",
2041
+ "privacy": "public"
2042
+ },
2043
+ {
2044
+ "kind": "method",
2045
+ "name": "attachComponentStateFinalized",
2046
+ "return": {
2047
+ "type": {
2048
+ "text": "void"
2049
+ }
2050
+ },
2051
+ "parameters": [
2052
+ {
2053
+ "name": "callback",
2054
+ "type": {
2055
+ "text": "() => void"
2056
+ }
2057
+ }
2058
+ ],
2059
+ "description": "Attach a callback that will be executed whenever the component's state is finalized",
2060
+ "privacy": "public"
2061
+ },
2062
+ {
2063
+ "kind": "method",
2064
+ "name": "detachComponentStateFinalized",
2065
+ "return": {
2066
+ "type": {
2067
+ "text": "void"
2068
+ }
2069
+ },
2070
+ "parameters": [
2071
+ {
2072
+ "name": "callback",
2073
+ "type": {
2074
+ "text": "() => void"
2075
+ }
2076
+ }
2077
+ ],
2078
+ "description": "Detach the callback that is executed whenever the component's state is finalized",
2079
+ "privacy": "public"
2080
+ },
2081
+ {
2082
+ "kind": "field",
2083
+ "name": "effectiveDir",
2084
+ "type": {
2085
+ "text": "string | undefined"
2086
+ },
2087
+ "description": "Determines whether the component should be rendered in RTL mode or not.\nReturns: \"rtl\", \"ltr\" or undefined",
2088
+ "privacy": "public",
2089
+ "default": "undefined",
2090
+ "readonly": true
2091
+ },
2092
+ {
2093
+ "kind": "field",
2094
+ "name": "isUI5Element",
2095
+ "type": {
2096
+ "text": "boolean"
2097
+ },
2098
+ "description": "Used to duck-type UI5 elements without using instanceof",
2099
+ "privacy": "public",
2100
+ "default": "true",
2101
+ "readonly": true
2102
+ },
2103
+ {
2104
+ "kind": "method",
2105
+ "name": "getStaticAreaItemDomRef",
2106
+ "return": {
2107
+ "type": {
2108
+ "text": "Promise<ShadowRoot | null>"
2109
+ }
2110
+ },
2111
+ "privacy": "public"
2112
+ },
2113
+ {
2114
+ "kind": "method",
2115
+ "name": "getUniqueDependencies",
2116
+ "static": true,
2117
+ "return": {
2118
+ "type": {
2119
+ "text": "Array<typeof UI5Element>"
2120
+ }
2121
+ },
2122
+ "description": "Returns a list of the unique dependencies for this UI5 Web Component",
2123
+ "privacy": "public"
2124
+ },
2125
+ {
2126
+ "kind": "method",
2127
+ "name": "define",
2128
+ "static": true,
2129
+ "return": {
2130
+ "type": {
2131
+ "text": "Promise<typeof UI5Element>"
2132
+ }
2133
+ },
2134
+ "description": "Registers a UI5 Web Component in the browser window object",
2135
+ "privacy": "public"
2136
+ },
2137
+ {
2138
+ "kind": "method",
2139
+ "name": "getMetadata",
2140
+ "static": true,
2141
+ "return": {
2142
+ "type": {
2143
+ "text": "UI5ElementMetadata",
2144
+ "references": [
2145
+ {
2146
+ "name": "UI5ElementMetadata",
2147
+ "package": "@ui5/webcomponents-base",
2148
+ "module": "dist/UI5ElementMetadata.js"
2149
+ }
2150
+ ]
2151
+ }
2152
+ },
2153
+ "description": "Returns an instance of UI5ElementMetadata.js representing this UI5 Web Component's full metadata (its and its parents')\nNote: not to be confused with the \"get metadata()\" method, which returns an object for this class's metadata only",
2154
+ "privacy": "public"
2155
+ }
2156
+ ],
2157
+ "customElement": true
2158
+ }
2159
+ ],
2160
+ "exports": [
2161
+ {
2162
+ "kind": "js",
2163
+ "name": "default",
2164
+ "declaration": {
2165
+ "name": "UI5Element",
2166
+ "module": "dist/UI5Element.js"
2167
+ }
2168
+ }
2169
+ ]
2170
+ },
2171
+ {
2172
+ "kind": "javascript-module",
2173
+ "path": "dist/UI5ElementMetadata.js",
2174
+ "declarations": [
2175
+ {
2176
+ "kind": "class",
2177
+ "description": "",
2178
+ "name": "UI5ElementMetadata",
2179
+ "members": [
2180
+ {
2181
+ "kind": "method",
2182
+ "name": "validatePropertyValue",
2183
+ "static": true,
2184
+ "return": {
2185
+ "type": {
2186
+ "text": "PropertyValue",
2187
+ "references": [
2188
+ {
2189
+ "name": "PropertyValue",
2190
+ "package": "@ui5/webcomponents-base",
2191
+ "module": "dist/UI5ElementMetadata.js"
2192
+ }
2193
+ ]
2194
+ }
2195
+ },
2196
+ "description": "Validates the property's value and returns it if correct\nor returns the default value if not.\n<b>Note:</b> Only intended for use by UI5Element.js",
2197
+ "privacy": "public"
2198
+ },
2199
+ {
2200
+ "kind": "method",
2201
+ "name": "validateSlotValue",
2202
+ "static": true,
2203
+ "return": {
2204
+ "type": {
2205
+ "text": "Node"
2206
+ }
2207
+ },
2208
+ "description": "Validates the slot's value and returns it if correct\nor throws an exception if not.\n<b>Note:</b> Only intended for use by UI5Element.js",
2209
+ "privacy": "public"
2210
+ },
2211
+ {
2212
+ "kind": "method",
2213
+ "name": "getPureTag",
2214
+ "return": {
2215
+ "type": {
2216
+ "text": "string"
2217
+ }
2218
+ },
2219
+ "description": "Returns the tag of the UI5 Element without the scope",
2220
+ "privacy": "public"
2221
+ },
2222
+ {
2223
+ "kind": "method",
2224
+ "name": "getTag",
2225
+ "return": {
2226
+ "type": {
2227
+ "text": "string"
2228
+ }
2229
+ },
2230
+ "description": "Returns the tag of the UI5 Element",
2231
+ "privacy": "public"
2232
+ },
2233
+ {
2234
+ "kind": "method",
2235
+ "name": "hasAttribute",
2236
+ "return": {
2237
+ "type": {
2238
+ "text": "boolean"
2239
+ }
2240
+ },
2241
+ "parameters": [
2242
+ {
2243
+ "name": "propName",
2244
+ "type": {
2245
+ "text": "string"
2246
+ }
2247
+ }
2248
+ ],
2249
+ "description": "Determines whether a property should have an attribute counterpart",
2250
+ "privacy": "public"
2251
+ },
2252
+ {
2253
+ "kind": "method",
2254
+ "name": "getPropertiesList",
2255
+ "return": {
2256
+ "type": {
2257
+ "text": "Array<string>"
2258
+ }
2259
+ },
2260
+ "description": "Returns an array with the properties of the UI5 Element (in camelCase)",
2261
+ "privacy": "public"
2262
+ },
2263
+ {
2264
+ "kind": "method",
2265
+ "name": "getAttributesList",
2266
+ "return": {
2267
+ "type": {
2268
+ "text": "Array<string>"
2269
+ }
2270
+ },
2271
+ "description": "Returns an array with the attributes of the UI5 Element (in kebab-case)",
2272
+ "privacy": "public"
2273
+ },
2274
+ {
2275
+ "kind": "method",
2276
+ "name": "hasSlots",
2277
+ "return": {
2278
+ "type": {
2279
+ "text": "boolean"
2280
+ }
2281
+ },
2282
+ "description": "Determines whether this UI5 Element supports any slots",
2283
+ "privacy": "public"
2284
+ },
2285
+ {
2286
+ "kind": "method",
2287
+ "name": "hasIndividualSlots",
2288
+ "return": {
2289
+ "type": {
2290
+ "text": "boolean"
2291
+ }
2292
+ },
2293
+ "description": "Determines whether this UI5 Element supports any slots with \"individualSlots: true\"",
2294
+ "privacy": "public"
2295
+ },
2296
+ {
2297
+ "kind": "method",
2298
+ "name": "slotsAreManaged",
2299
+ "return": {
2300
+ "type": {
2301
+ "text": "boolean"
2302
+ }
2303
+ },
2304
+ "description": "Determines whether this UI5 Element needs to invalidate if children are added/removed/changed",
2305
+ "privacy": "public"
2306
+ },
2307
+ {
2308
+ "kind": "method",
2309
+ "name": "supportsF6FastNavigation",
2310
+ "return": {
2311
+ "type": {
2312
+ "text": "boolean"
2313
+ }
2314
+ },
2315
+ "description": "Determines whether this control supports F6 fast navigation",
2316
+ "privacy": "public"
2317
+ },
2318
+ {
2319
+ "kind": "method",
2320
+ "name": "getProperties",
2321
+ "return": {
2322
+ "type": {
2323
+ "text": "Record<string, Property>",
2324
+ "references": [
2325
+ {
2326
+ "name": "Property",
2327
+ "package": "@ui5/webcomponents-base",
2328
+ "module": "dist/UI5ElementMetadata.js"
2329
+ }
2330
+ ]
2331
+ }
2332
+ },
2333
+ "description": "Returns an object with key-value pairs of properties and their metadata definitions",
2334
+ "privacy": "public"
2335
+ },
2336
+ {
2337
+ "kind": "method",
2338
+ "name": "getEvents",
2339
+ "return": {
2340
+ "type": {
2341
+ "text": "EventData",
2342
+ "references": [
2343
+ {
2344
+ "name": "EventData",
2345
+ "package": "@ui5/webcomponents-base",
2346
+ "module": "dist/UI5ElementMetadata.js"
2347
+ }
2348
+ ]
2349
+ }
2350
+ },
2351
+ "description": "Returns an object with key-value pairs of events and their metadata definitions",
2352
+ "privacy": "public"
2353
+ },
2354
+ {
2355
+ "kind": "method",
2356
+ "name": "getSlots",
2357
+ "return": {
2358
+ "type": {
2359
+ "text": "Record<string, Slot>",
2360
+ "references": [
2361
+ {
2362
+ "name": "Slot",
2363
+ "package": "@ui5/webcomponents-base",
2364
+ "module": "dist/UI5ElementMetadata.js"
2365
+ }
2366
+ ]
2367
+ }
2368
+ },
2369
+ "description": "Returns an object with key-value pairs of slots and their metadata definitions",
2370
+ "privacy": "public"
2371
+ }
2372
+ ]
2373
+ }
2374
+ ],
2375
+ "exports": [
2376
+ {
2377
+ "kind": "js",
2378
+ "name": "default",
2379
+ "declaration": {
2380
+ "name": "UI5ElementMetadata",
2381
+ "module": "dist/UI5ElementMetadata.js"
2382
+ }
2383
+ }
2384
+ ]
2385
+ },
2386
+ {
2387
+ "kind": "javascript-module",
2388
+ "path": "dist/connectToComponent.js",
2389
+ "declarations": [],
2390
+ "exports": [
2391
+ {
2392
+ "kind": "js",
2393
+ "name": "default",
2394
+ "declaration": {
2395
+ "name": "connectToComponent",
2396
+ "module": "dist/connectToComponent.js"
2397
+ }
2398
+ }
2399
+ ]
2400
+ },
2401
+ {
2402
+ "kind": "javascript-module",
2403
+ "path": "dist/getSharedResource.js",
2404
+ "declarations": [],
2405
+ "exports": [
2406
+ {
2407
+ "kind": "js",
2408
+ "name": "default",
2409
+ "declaration": {
2410
+ "name": "getSharedResource",
2411
+ "module": "dist/getSharedResource.js"
2412
+ }
2413
+ }
2414
+ ]
2415
+ },
2416
+ {
2417
+ "kind": "javascript-module",
2418
+ "path": "dist/i18nBundle.js",
2419
+ "declarations": [
2420
+ {
2421
+ "kind": "class",
2422
+ "description": "",
2423
+ "name": "I18nBundle",
2424
+ "members": [
2425
+ {
2426
+ "kind": "method",
2427
+ "name": "getText",
2428
+ "return": {
2429
+ "type": {
2430
+ "text": "string"
2431
+ }
2432
+ },
2433
+ "parameters": [
2434
+ {
2435
+ "name": "textObj",
2436
+ "type": {
2437
+ "text": "I18nText | string",
2438
+ "references": [
2439
+ {
2440
+ "name": "I18nText",
2441
+ "package": "@ui5/webcomponents-base",
2442
+ "module": "dist/i18nBundle.js"
2443
+ }
2444
+ ]
2445
+ },
2446
+ "description": "key/defaultText pair or just the key"
2447
+ },
2448
+ {
2449
+ "name": "params",
2450
+ "type": {
2451
+ "text": "Array<number | string>"
2452
+ },
2453
+ "description": "Values for the placeholders"
2454
+ }
2455
+ ],
2456
+ "description": "Returns a text in the currently loaded language",
2457
+ "privacy": "public"
2458
+ }
2459
+ ]
2460
+ }
2461
+ ],
2462
+ "exports": [
2463
+ {
2464
+ "kind": "js",
2465
+ "name": "default",
2466
+ "declaration": {
2467
+ "name": "I18nBundle",
2468
+ "module": "dist/i18nBundle.js"
2469
+ }
2470
+ }
2471
+ ]
2472
+ },
2473
+ {
2474
+ "kind": "javascript-module",
2475
+ "path": "dist/ssr-dom-shim.js",
2476
+ "declarations": [],
2477
+ "exports": []
2478
+ },
2479
+ {
2480
+ "kind": "javascript-module",
2481
+ "path": "dist/ssr-dom.js",
2482
+ "declarations": [],
2483
+ "exports": []
2484
+ },
2485
+ {
2486
+ "kind": "javascript-module",
2487
+ "path": "dist/types.js",
2488
+ "declarations": [],
2489
+ "exports": []
2490
+ },
2491
+ {
2492
+ "kind": "javascript-module",
2493
+ "path": "dist/updateShadowRoot.js",
2494
+ "declarations": [],
2495
+ "exports": [
2496
+ {
2497
+ "kind": "js",
2498
+ "name": "default",
2499
+ "declaration": {
2500
+ "name": "updateShadowRoot",
2501
+ "module": "dist/updateShadowRoot.js"
2502
+ }
2503
+ }
2504
+ ]
2505
+ },
2506
+ {
2507
+ "kind": "javascript-module",
2508
+ "path": "dist/validateThemeRoot.js",
2509
+ "declarations": [],
2510
+ "exports": [
2511
+ {
2512
+ "kind": "js",
2513
+ "name": "default",
2514
+ "declaration": {
2515
+ "name": "validateThemeRoot",
2516
+ "module": "dist/validateThemeRoot.js"
2517
+ }
2518
+ }
2519
+ ]
2520
+ }
2521
+ ]
2522
+ }