@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,2759 @@
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
+ "_ui5privacy": "public"
256
+ }
257
+ ],
258
+ "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",
259
+ "privacy": "public"
260
+ },
261
+ {
262
+ "kind": "method",
263
+ "name": "setRowSize",
264
+ "return": {
265
+ "type": {
266
+ "text": "void"
267
+ }
268
+ },
269
+ "parameters": [
270
+ {
271
+ "name": "newRowSize",
272
+ "type": {
273
+ "text": "number"
274
+ },
275
+ "_ui5privacy": "public"
276
+ }
277
+ ],
278
+ "description": "Call this method to dynamically change the row size",
279
+ "privacy": "public"
280
+ }
281
+ ],
282
+ "_ui5privacy": "public"
283
+ }
284
+ ],
285
+ "exports": [
286
+ {
287
+ "kind": "js",
288
+ "name": "default",
289
+ "declaration": {
290
+ "name": "ItemNavigation",
291
+ "module": "dist/delegate/ItemNavigation.js"
292
+ }
293
+ }
294
+ ]
295
+ },
296
+ {
297
+ "kind": "javascript-module",
298
+ "path": "dist/delegate/ResizeHandler.js",
299
+ "declarations": [
300
+ {
301
+ "kind": "class",
302
+ "description": "Allows to register/deregister resize observers for a DOM element",
303
+ "name": "ResizeHandler",
304
+ "members": [
305
+ {
306
+ "kind": "method",
307
+ "name": "register",
308
+ "static": true,
309
+ "return": {
310
+ "type": {
311
+ "text": "void"
312
+ }
313
+ },
314
+ "parameters": [
315
+ {
316
+ "name": "element",
317
+ "type": {
318
+ "text": "HTMLElement"
319
+ },
320
+ "description": "UI5 Web Component or DOM Element to be observed",
321
+ "_ui5privacy": "public"
322
+ },
323
+ {
324
+ "name": "callback",
325
+ "type": {
326
+ "text": "ResizeObserverCallback",
327
+ "references": [
328
+ {
329
+ "name": "ResizeObserverCallback",
330
+ "package": "@ui5/webcomponents-base",
331
+ "module": "dist/delegate/ResizeHandler.js"
332
+ }
333
+ ]
334
+ },
335
+ "description": "Callback to be executed",
336
+ "_ui5privacy": "public"
337
+ }
338
+ ],
339
+ "privacy": "public"
340
+ },
341
+ {
342
+ "kind": "method",
343
+ "name": "deregister",
344
+ "static": true,
345
+ "return": {
346
+ "type": {
347
+ "text": "void"
348
+ }
349
+ },
350
+ "parameters": [
351
+ {
352
+ "name": "element",
353
+ "type": {
354
+ "text": "HTMLElement"
355
+ },
356
+ "description": "UI5 Web Component or DOM Element to be unobserved",
357
+ "_ui5privacy": "public"
358
+ },
359
+ {
360
+ "name": "callback",
361
+ "type": {
362
+ "text": "ResizeObserverCallback",
363
+ "references": [
364
+ {
365
+ "name": "ResizeObserverCallback",
366
+ "package": "@ui5/webcomponents-base",
367
+ "module": "dist/delegate/ResizeHandler.js"
368
+ }
369
+ ]
370
+ },
371
+ "description": "Callback to be removed",
372
+ "_ui5privacy": "public"
373
+ }
374
+ ],
375
+ "privacy": "public"
376
+ }
377
+ ],
378
+ "_ui5privacy": "public"
379
+ }
380
+ ],
381
+ "exports": [
382
+ {
383
+ "kind": "js",
384
+ "name": "default",
385
+ "declaration": {
386
+ "name": "ResizeHandler",
387
+ "module": "dist/delegate/ResizeHandler.js"
388
+ }
389
+ }
390
+ ]
391
+ },
392
+ {
393
+ "kind": "javascript-module",
394
+ "path": "dist/delegate/ScrollEnablement.js",
395
+ "declarations": [],
396
+ "exports": [
397
+ {
398
+ "kind": "js",
399
+ "name": "default",
400
+ "declaration": {
401
+ "name": "ScrollEnablement",
402
+ "module": "dist/delegate/ScrollEnablement.js"
403
+ }
404
+ }
405
+ ]
406
+ },
407
+ {
408
+ "kind": "javascript-module",
409
+ "path": "dist/locale/Locale.js",
410
+ "declarations": [],
411
+ "exports": [
412
+ {
413
+ "kind": "js",
414
+ "name": "default",
415
+ "declaration": {
416
+ "name": "Locale",
417
+ "module": "dist/locale/Locale.js"
418
+ }
419
+ }
420
+ ]
421
+ },
422
+ {
423
+ "kind": "javascript-module",
424
+ "path": "dist/locale/RTLAwareRegistry.js",
425
+ "declarations": [],
426
+ "exports": []
427
+ },
428
+ {
429
+ "kind": "javascript-module",
430
+ "path": "dist/locale/applyDirection.js",
431
+ "declarations": [],
432
+ "exports": [
433
+ {
434
+ "kind": "js",
435
+ "name": "default",
436
+ "declaration": {
437
+ "name": "applyDirection",
438
+ "module": "dist/locale/applyDirection.js"
439
+ }
440
+ }
441
+ ]
442
+ },
443
+ {
444
+ "kind": "javascript-module",
445
+ "path": "dist/locale/directionChange.js",
446
+ "declarations": [],
447
+ "exports": []
448
+ },
449
+ {
450
+ "kind": "javascript-module",
451
+ "path": "dist/locale/getEffectiveDir.js",
452
+ "declarations": [],
453
+ "exports": [
454
+ {
455
+ "kind": "js",
456
+ "name": "default",
457
+ "declaration": {
458
+ "name": "getEffectiveDir",
459
+ "module": "dist/locale/getEffectiveDir.js"
460
+ }
461
+ }
462
+ ]
463
+ },
464
+ {
465
+ "kind": "javascript-module",
466
+ "path": "dist/locale/getLocale.js",
467
+ "declarations": [],
468
+ "exports": [
469
+ {
470
+ "kind": "js",
471
+ "name": "default",
472
+ "declaration": {
473
+ "name": "getLocale",
474
+ "module": "dist/locale/getLocale.js"
475
+ }
476
+ }
477
+ ]
478
+ },
479
+ {
480
+ "kind": "javascript-module",
481
+ "path": "dist/locale/languageChange.js",
482
+ "declarations": [],
483
+ "exports": []
484
+ },
485
+ {
486
+ "kind": "javascript-module",
487
+ "path": "dist/locale/nextFallbackLocale.js",
488
+ "declarations": [],
489
+ "exports": [
490
+ {
491
+ "kind": "js",
492
+ "name": "default",
493
+ "declaration": {
494
+ "name": "nextFallbackLocale",
495
+ "module": "dist/locale/nextFallbackLocale.js"
496
+ }
497
+ }
498
+ ]
499
+ },
500
+ {
501
+ "kind": "javascript-module",
502
+ "path": "dist/locale/normalizeLocale.js",
503
+ "declarations": [],
504
+ "exports": [
505
+ {
506
+ "kind": "js",
507
+ "name": "default",
508
+ "declaration": {
509
+ "name": "normalizeLocale",
510
+ "module": "dist/locale/normalizeLocale.js"
511
+ }
512
+ }
513
+ ]
514
+ },
515
+ {
516
+ "kind": "javascript-module",
517
+ "path": "dist/features/F6Navigation.js",
518
+ "declarations": [],
519
+ "exports": [
520
+ {
521
+ "kind": "js",
522
+ "name": "default",
523
+ "declaration": {
524
+ "name": "F6Navigation",
525
+ "module": "dist/features/F6Navigation.js"
526
+ }
527
+ }
528
+ ]
529
+ },
530
+ {
531
+ "kind": "javascript-module",
532
+ "path": "dist/features/LegacyDateFormats.js",
533
+ "declarations": [],
534
+ "exports": [
535
+ {
536
+ "kind": "js",
537
+ "name": "default",
538
+ "declaration": {
539
+ "name": "LegacyDateFormats",
540
+ "module": "dist/features/LegacyDateFormats.js"
541
+ }
542
+ }
543
+ ]
544
+ },
545
+ {
546
+ "kind": "javascript-module",
547
+ "path": "dist/features/OpenUI5Element.js",
548
+ "declarations": [],
549
+ "exports": [
550
+ {
551
+ "kind": "js",
552
+ "name": "default",
553
+ "declaration": {
554
+ "name": "OpenUI5Element",
555
+ "module": "dist/features/OpenUI5Element.js"
556
+ }
557
+ }
558
+ ]
559
+ },
560
+ {
561
+ "kind": "javascript-module",
562
+ "path": "dist/features/OpenUI5Enablement.js",
563
+ "declarations": [],
564
+ "exports": [
565
+ {
566
+ "kind": "js",
567
+ "name": "default",
568
+ "declaration": {
569
+ "name": "OpenUI5Enablement",
570
+ "module": "dist/features/OpenUI5Enablement.js"
571
+ }
572
+ }
573
+ ]
574
+ },
575
+ {
576
+ "kind": "javascript-module",
577
+ "path": "dist/features/OpenUI5Support.js",
578
+ "declarations": [],
579
+ "exports": [
580
+ {
581
+ "kind": "js",
582
+ "name": "default",
583
+ "declaration": {
584
+ "name": "OpenUI5Support",
585
+ "module": "dist/features/OpenUI5Support.js"
586
+ }
587
+ }
588
+ ]
589
+ },
590
+ {
591
+ "kind": "javascript-module",
592
+ "path": "dist/renderer/LitRenderer.js",
593
+ "declarations": [],
594
+ "exports": [
595
+ {
596
+ "kind": "js",
597
+ "name": "default",
598
+ "declaration": {
599
+ "name": "litRender",
600
+ "module": "dist/renderer/LitRenderer.js"
601
+ }
602
+ }
603
+ ]
604
+ },
605
+ {
606
+ "kind": "javascript-module",
607
+ "path": "dist/renderer/executeTemplate.js",
608
+ "declarations": [],
609
+ "exports": [
610
+ {
611
+ "kind": "js",
612
+ "name": "default",
613
+ "declaration": {
614
+ "name": "executeTemplate",
615
+ "module": "dist/renderer/executeTemplate.js"
616
+ }
617
+ }
618
+ ]
619
+ },
620
+ {
621
+ "kind": "javascript-module",
622
+ "path": "dist/theming/CustomStyle.js",
623
+ "declarations": [],
624
+ "exports": []
625
+ },
626
+ {
627
+ "kind": "javascript-module",
628
+ "path": "dist/theming/ThemeLoaded.js",
629
+ "declarations": [],
630
+ "exports": []
631
+ },
632
+ {
633
+ "kind": "javascript-module",
634
+ "path": "dist/theming/ThemeRegistered.js",
635
+ "declarations": [],
636
+ "exports": []
637
+ },
638
+ {
639
+ "kind": "javascript-module",
640
+ "path": "dist/theming/applyTheme.js",
641
+ "declarations": [],
642
+ "exports": [
643
+ {
644
+ "kind": "js",
645
+ "name": "default",
646
+ "declaration": {
647
+ "name": "applyTheme",
648
+ "module": "dist/theming/applyTheme.js"
649
+ }
650
+ }
651
+ ]
652
+ },
653
+ {
654
+ "kind": "javascript-module",
655
+ "path": "dist/theming/getConstructableStyle.js",
656
+ "declarations": [],
657
+ "exports": [
658
+ {
659
+ "kind": "js",
660
+ "name": "default",
661
+ "declaration": {
662
+ "name": "getConstructableStyle",
663
+ "module": "dist/theming/getConstructableStyle.js"
664
+ }
665
+ }
666
+ ]
667
+ },
668
+ {
669
+ "kind": "javascript-module",
670
+ "path": "dist/theming/getEffectiveLinksHrefs.js",
671
+ "declarations": [],
672
+ "exports": [
673
+ {
674
+ "kind": "js",
675
+ "name": "default",
676
+ "declaration": {
677
+ "name": "getEffectiveLinksHrefs",
678
+ "module": "dist/theming/getEffectiveLinksHrefs.js"
679
+ }
680
+ }
681
+ ]
682
+ },
683
+ {
684
+ "kind": "javascript-module",
685
+ "path": "dist/theming/getEffectiveStyle.js",
686
+ "declarations": [],
687
+ "exports": [
688
+ {
689
+ "kind": "js",
690
+ "name": "default",
691
+ "declaration": {
692
+ "name": "getEffectiveStyle",
693
+ "module": "dist/theming/getEffectiveStyle.js"
694
+ }
695
+ }
696
+ ]
697
+ },
698
+ {
699
+ "kind": "javascript-module",
700
+ "path": "dist/theming/getStylesString.js",
701
+ "declarations": [],
702
+ "exports": [
703
+ {
704
+ "kind": "js",
705
+ "name": "default",
706
+ "declaration": {
707
+ "name": "getStylesString",
708
+ "module": "dist/theming/getStylesString.js"
709
+ }
710
+ }
711
+ ]
712
+ },
713
+ {
714
+ "kind": "javascript-module",
715
+ "path": "dist/theming/getThemeDesignerTheme.js",
716
+ "declarations": [],
717
+ "exports": [
718
+ {
719
+ "kind": "js",
720
+ "name": "default",
721
+ "declaration": {
722
+ "name": "getThemeDesignerTheme",
723
+ "module": "dist/theming/getThemeDesignerTheme.js"
724
+ }
725
+ }
726
+ ]
727
+ },
728
+ {
729
+ "kind": "javascript-module",
730
+ "path": "dist/theming/preloadLinks.js",
731
+ "declarations": [],
732
+ "exports": [
733
+ {
734
+ "kind": "js",
735
+ "name": "default",
736
+ "declaration": {
737
+ "name": "preloadLinks",
738
+ "module": "dist/theming/preloadLinks.js"
739
+ }
740
+ }
741
+ ]
742
+ },
743
+ {
744
+ "kind": "javascript-module",
745
+ "path": "dist/types/AnimationMode.js",
746
+ "declarations": [
747
+ {
748
+ "kind": "enum",
749
+ "name": "AnimationMode",
750
+ "description": "Different types of AnimationMode.",
751
+ "_ui5privacy": "public",
752
+ "members": [
753
+ {
754
+ "kind": "field",
755
+ "static": true,
756
+ "privacy": "public",
757
+ "default": "full",
758
+ "name": "Full",
759
+ "readonly": true
760
+ },
761
+ {
762
+ "kind": "field",
763
+ "static": true,
764
+ "privacy": "public",
765
+ "default": "basic",
766
+ "name": "Basic",
767
+ "readonly": true
768
+ },
769
+ {
770
+ "kind": "field",
771
+ "static": true,
772
+ "privacy": "public",
773
+ "default": "minimal",
774
+ "name": "Minimal",
775
+ "readonly": true
776
+ },
777
+ {
778
+ "kind": "field",
779
+ "static": true,
780
+ "privacy": "public",
781
+ "default": "none",
782
+ "name": "None",
783
+ "readonly": true
784
+ }
785
+ ]
786
+ }
787
+ ],
788
+ "exports": [
789
+ {
790
+ "kind": "js",
791
+ "name": "default",
792
+ "declaration": {
793
+ "name": "AnimationMode",
794
+ "module": "dist/types/AnimationMode.js"
795
+ }
796
+ }
797
+ ]
798
+ },
799
+ {
800
+ "kind": "javascript-module",
801
+ "path": "dist/types/CSSColor.js",
802
+ "declarations": [
803
+ {
804
+ "kind": "class",
805
+ "description": "CSSColor data type.",
806
+ "name": "CSSColor",
807
+ "superclass": {
808
+ "name": "DataType",
809
+ "module": "/src/types/DataType.js"
810
+ },
811
+ "_ui5privacy": "public",
812
+ "members": [
813
+ {
814
+ "kind": "method",
815
+ "name": "isValid",
816
+ "static": true,
817
+ "return": {
818
+ "type": {
819
+ "text": "boolean"
820
+ }
821
+ },
822
+ "description": "Checks if the value is valid for its data type.",
823
+ "privacy": "public",
824
+ "inheritedFrom": {
825
+ "name": "DataType",
826
+ "module": "dist/types/DataType.js"
827
+ }
828
+ }
829
+ ]
830
+ }
831
+ ],
832
+ "exports": [
833
+ {
834
+ "kind": "js",
835
+ "name": "default",
836
+ "declaration": {
837
+ "name": "CSSColor",
838
+ "module": "dist/types/CSSColor.js"
839
+ }
840
+ }
841
+ ]
842
+ },
843
+ {
844
+ "kind": "javascript-module",
845
+ "path": "dist/types/CSSSize.js",
846
+ "declarations": [
847
+ {
848
+ "kind": "class",
849
+ "description": "CSSSize data type.",
850
+ "name": "CSSSize",
851
+ "superclass": {
852
+ "name": "DataType",
853
+ "module": "/src/types/DataType.js"
854
+ },
855
+ "_ui5privacy": "public",
856
+ "members": [
857
+ {
858
+ "kind": "method",
859
+ "name": "isValid",
860
+ "static": true,
861
+ "return": {
862
+ "type": {
863
+ "text": "boolean"
864
+ }
865
+ },
866
+ "description": "Checks if the value is valid for its data type.",
867
+ "privacy": "public",
868
+ "inheritedFrom": {
869
+ "name": "DataType",
870
+ "module": "dist/types/DataType.js"
871
+ }
872
+ }
873
+ ]
874
+ }
875
+ ],
876
+ "exports": [
877
+ {
878
+ "kind": "js",
879
+ "name": "default",
880
+ "declaration": {
881
+ "name": "CSSSize",
882
+ "module": "dist/types/CSSSize.js"
883
+ }
884
+ }
885
+ ]
886
+ },
887
+ {
888
+ "kind": "javascript-module",
889
+ "path": "dist/types/CalendarType.js",
890
+ "declarations": [
891
+ {
892
+ "kind": "enum",
893
+ "name": "CalendarType",
894
+ "description": "Different calendar types.",
895
+ "_ui5privacy": "public",
896
+ "members": [
897
+ {
898
+ "kind": "field",
899
+ "static": true,
900
+ "privacy": "public",
901
+ "default": "Gregorian",
902
+ "name": "Gregorian",
903
+ "readonly": true
904
+ },
905
+ {
906
+ "kind": "field",
907
+ "static": true,
908
+ "privacy": "public",
909
+ "default": "Islamic",
910
+ "name": "Islamic",
911
+ "readonly": true
912
+ },
913
+ {
914
+ "kind": "field",
915
+ "static": true,
916
+ "privacy": "public",
917
+ "default": "Japanese",
918
+ "name": "Japanese",
919
+ "readonly": true
920
+ },
921
+ {
922
+ "kind": "field",
923
+ "static": true,
924
+ "privacy": "public",
925
+ "default": "Buddhist",
926
+ "name": "Buddhist",
927
+ "readonly": true
928
+ },
929
+ {
930
+ "kind": "field",
931
+ "static": true,
932
+ "privacy": "public",
933
+ "default": "Persian",
934
+ "name": "Persian",
935
+ "readonly": true
936
+ }
937
+ ]
938
+ }
939
+ ],
940
+ "exports": [
941
+ {
942
+ "kind": "js",
943
+ "name": "default",
944
+ "declaration": {
945
+ "name": "CalendarType",
946
+ "module": "dist/types/CalendarType.js"
947
+ }
948
+ }
949
+ ]
950
+ },
951
+ {
952
+ "kind": "javascript-module",
953
+ "path": "dist/types/DOMReference.js",
954
+ "declarations": [
955
+ {
956
+ "kind": "class",
957
+ "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.",
958
+ "name": "DOMReference",
959
+ "superclass": {
960
+ "name": "DataType",
961
+ "module": "/src/types/DataType.js"
962
+ },
963
+ "_ui5privacy": "public",
964
+ "members": [
965
+ {
966
+ "kind": "method",
967
+ "name": "isValid",
968
+ "static": true,
969
+ "return": {
970
+ "type": {
971
+ "text": "boolean"
972
+ }
973
+ },
974
+ "description": "Checks if the value is valid for its data type.",
975
+ "privacy": "public",
976
+ "inheritedFrom": {
977
+ "name": "DataType",
978
+ "module": "dist/types/DataType.js"
979
+ }
980
+ }
981
+ ]
982
+ }
983
+ ],
984
+ "exports": [
985
+ {
986
+ "kind": "js",
987
+ "name": "default",
988
+ "declaration": {
989
+ "name": "DOMReference",
990
+ "module": "dist/types/DOMReference.js"
991
+ }
992
+ }
993
+ ]
994
+ },
995
+ {
996
+ "kind": "javascript-module",
997
+ "path": "dist/types/DataType.js",
998
+ "declarations": [
999
+ {
1000
+ "kind": "class",
1001
+ "description": "Base class for all data types.",
1002
+ "name": "DataType",
1003
+ "members": [
1004
+ {
1005
+ "kind": "method",
1006
+ "name": "isValid",
1007
+ "static": true,
1008
+ "return": {
1009
+ "type": {
1010
+ "text": "boolean"
1011
+ }
1012
+ },
1013
+ "description": "Checks if the value is valid for its data type.",
1014
+ "privacy": "public"
1015
+ }
1016
+ ],
1017
+ "_ui5privacy": "public"
1018
+ }
1019
+ ],
1020
+ "exports": [
1021
+ {
1022
+ "kind": "js",
1023
+ "name": "default",
1024
+ "declaration": {
1025
+ "name": "DataType",
1026
+ "module": "dist/types/DataType.js"
1027
+ }
1028
+ }
1029
+ ]
1030
+ },
1031
+ {
1032
+ "kind": "javascript-module",
1033
+ "path": "dist/types/Float.js",
1034
+ "declarations": [
1035
+ {
1036
+ "kind": "class",
1037
+ "description": "Float data type.",
1038
+ "name": "Float",
1039
+ "superclass": {
1040
+ "name": "DataType",
1041
+ "module": "/src/types/DataType.js"
1042
+ },
1043
+ "_ui5privacy": "public",
1044
+ "members": [
1045
+ {
1046
+ "kind": "method",
1047
+ "name": "isValid",
1048
+ "static": true,
1049
+ "return": {
1050
+ "type": {
1051
+ "text": "boolean"
1052
+ }
1053
+ },
1054
+ "description": "Checks if the value is valid for its data type.",
1055
+ "privacy": "public",
1056
+ "inheritedFrom": {
1057
+ "name": "DataType",
1058
+ "module": "dist/types/DataType.js"
1059
+ }
1060
+ }
1061
+ ]
1062
+ }
1063
+ ],
1064
+ "exports": [
1065
+ {
1066
+ "kind": "js",
1067
+ "name": "default",
1068
+ "declaration": {
1069
+ "name": "Float",
1070
+ "module": "dist/types/Float.js"
1071
+ }
1072
+ }
1073
+ ]
1074
+ },
1075
+ {
1076
+ "kind": "javascript-module",
1077
+ "path": "dist/types/Integer.js",
1078
+ "declarations": [
1079
+ {
1080
+ "kind": "class",
1081
+ "description": "Integer data type.",
1082
+ "name": "Integer",
1083
+ "superclass": {
1084
+ "name": "DataType",
1085
+ "module": "/src/types/DataType.js"
1086
+ },
1087
+ "_ui5privacy": "public",
1088
+ "members": [
1089
+ {
1090
+ "kind": "method",
1091
+ "name": "isValid",
1092
+ "static": true,
1093
+ "return": {
1094
+ "type": {
1095
+ "text": "boolean"
1096
+ }
1097
+ },
1098
+ "description": "Checks if the value is valid for its data type.",
1099
+ "privacy": "public",
1100
+ "inheritedFrom": {
1101
+ "name": "DataType",
1102
+ "module": "dist/types/DataType.js"
1103
+ }
1104
+ }
1105
+ ]
1106
+ }
1107
+ ],
1108
+ "exports": [
1109
+ {
1110
+ "kind": "js",
1111
+ "name": "default",
1112
+ "declaration": {
1113
+ "name": "Integer",
1114
+ "module": "dist/types/Integer.js"
1115
+ }
1116
+ }
1117
+ ]
1118
+ },
1119
+ {
1120
+ "kind": "javascript-module",
1121
+ "path": "dist/types/InvisibleMessageMode.js",
1122
+ "declarations": [],
1123
+ "exports": [
1124
+ {
1125
+ "kind": "js",
1126
+ "name": "default",
1127
+ "declaration": {
1128
+ "name": "InvisibleMessageMode",
1129
+ "module": "dist/types/InvisibleMessageMode.js"
1130
+ }
1131
+ }
1132
+ ]
1133
+ },
1134
+ {
1135
+ "kind": "javascript-module",
1136
+ "path": "dist/types/ItemNavigationBehavior.js",
1137
+ "declarations": [
1138
+ {
1139
+ "kind": "enum",
1140
+ "name": "ItemNavigationBehavior",
1141
+ "description": "Different behavior for ItemNavigation.",
1142
+ "_ui5privacy": "public",
1143
+ "members": [
1144
+ {
1145
+ "kind": "field",
1146
+ "static": true,
1147
+ "privacy": "public",
1148
+ "description": "Static behavior: navigations stops at the first or last item.",
1149
+ "default": "Static",
1150
+ "name": "Static",
1151
+ "readonly": true
1152
+ },
1153
+ {
1154
+ "kind": "field",
1155
+ "static": true,
1156
+ "privacy": "public",
1157
+ "description": "Cycling behavior: navigating past the last item continues with the first and vice versa.",
1158
+ "default": "Cyclic",
1159
+ "name": "Cyclic",
1160
+ "readonly": true
1161
+ }
1162
+ ]
1163
+ }
1164
+ ],
1165
+ "exports": [
1166
+ {
1167
+ "kind": "js",
1168
+ "name": "default",
1169
+ "declaration": {
1170
+ "name": "ItemNavigationBehavior",
1171
+ "module": "dist/types/ItemNavigationBehavior.js"
1172
+ }
1173
+ }
1174
+ ]
1175
+ },
1176
+ {
1177
+ "kind": "javascript-module",
1178
+ "path": "dist/types/NavigationMode.js",
1179
+ "declarations": [
1180
+ {
1181
+ "kind": "enum",
1182
+ "name": "NavigationMode",
1183
+ "description": "Different navigation modes for ItemNavigation.",
1184
+ "_ui5privacy": "public",
1185
+ "members": [
1186
+ {
1187
+ "kind": "field",
1188
+ "static": true,
1189
+ "privacy": "public",
1190
+ "default": "Auto",
1191
+ "name": "Auto",
1192
+ "readonly": true
1193
+ },
1194
+ {
1195
+ "kind": "field",
1196
+ "static": true,
1197
+ "privacy": "public",
1198
+ "default": "Vertical",
1199
+ "name": "Vertical",
1200
+ "readonly": true
1201
+ },
1202
+ {
1203
+ "kind": "field",
1204
+ "static": true,
1205
+ "privacy": "public",
1206
+ "default": "Horizontal",
1207
+ "name": "Horizontal",
1208
+ "readonly": true
1209
+ },
1210
+ {
1211
+ "kind": "field",
1212
+ "static": true,
1213
+ "privacy": "public",
1214
+ "default": "Paging",
1215
+ "name": "Paging",
1216
+ "readonly": true
1217
+ }
1218
+ ]
1219
+ }
1220
+ ],
1221
+ "exports": [
1222
+ {
1223
+ "kind": "js",
1224
+ "name": "default",
1225
+ "declaration": {
1226
+ "name": "NavigationMode",
1227
+ "module": "dist/types/NavigationMode.js"
1228
+ }
1229
+ }
1230
+ ]
1231
+ },
1232
+ {
1233
+ "kind": "javascript-module",
1234
+ "path": "dist/types/ValueState.js",
1235
+ "declarations": [
1236
+ {
1237
+ "kind": "enum",
1238
+ "name": "ValueState",
1239
+ "description": "Different types of ValueStates.",
1240
+ "_ui5privacy": "public",
1241
+ "members": [
1242
+ {
1243
+ "kind": "field",
1244
+ "static": true,
1245
+ "privacy": "public",
1246
+ "default": "None",
1247
+ "name": "None",
1248
+ "readonly": true
1249
+ },
1250
+ {
1251
+ "kind": "field",
1252
+ "static": true,
1253
+ "privacy": "public",
1254
+ "default": "Success",
1255
+ "name": "Success",
1256
+ "readonly": true
1257
+ },
1258
+ {
1259
+ "kind": "field",
1260
+ "static": true,
1261
+ "privacy": "public",
1262
+ "default": "Warning",
1263
+ "name": "Warning",
1264
+ "readonly": true
1265
+ },
1266
+ {
1267
+ "kind": "field",
1268
+ "static": true,
1269
+ "privacy": "public",
1270
+ "default": "Error",
1271
+ "name": "Error",
1272
+ "readonly": true
1273
+ },
1274
+ {
1275
+ "kind": "field",
1276
+ "static": true,
1277
+ "privacy": "public",
1278
+ "default": "Information",
1279
+ "name": "Information",
1280
+ "readonly": true
1281
+ }
1282
+ ]
1283
+ }
1284
+ ],
1285
+ "exports": [
1286
+ {
1287
+ "kind": "js",
1288
+ "name": "default",
1289
+ "declaration": {
1290
+ "name": "ValueState",
1291
+ "module": "dist/types/ValueState.js"
1292
+ }
1293
+ }
1294
+ ]
1295
+ },
1296
+ {
1297
+ "kind": "javascript-module",
1298
+ "path": "dist/thirdparty/_merge.js",
1299
+ "declarations": [],
1300
+ "exports": [
1301
+ {
1302
+ "kind": "js",
1303
+ "name": "default",
1304
+ "declaration": {
1305
+ "name": "fnMerge",
1306
+ "module": "dist/thirdparty/_merge.js"
1307
+ }
1308
+ }
1309
+ ]
1310
+ },
1311
+ {
1312
+ "kind": "javascript-module",
1313
+ "path": "dist/thirdparty/isPlainObject.js",
1314
+ "declarations": [],
1315
+ "exports": [
1316
+ {
1317
+ "kind": "js",
1318
+ "name": "default",
1319
+ "declaration": {
1320
+ "name": "fnIsPlainObject",
1321
+ "module": "dist/thirdparty/isPlainObject.js"
1322
+ }
1323
+ }
1324
+ ]
1325
+ },
1326
+ {
1327
+ "kind": "javascript-module",
1328
+ "path": "dist/thirdparty/merge.js",
1329
+ "declarations": [],
1330
+ "exports": [
1331
+ {
1332
+ "kind": "js",
1333
+ "name": "default",
1334
+ "declaration": {
1335
+ "name": "fnMerge",
1336
+ "module": "dist/thirdparty/merge.js"
1337
+ }
1338
+ }
1339
+ ]
1340
+ },
1341
+ {
1342
+ "kind": "javascript-module",
1343
+ "path": "dist/util/AriaLabelHelper.js",
1344
+ "declarations": [],
1345
+ "exports": []
1346
+ },
1347
+ {
1348
+ "kind": "javascript-module",
1349
+ "path": "dist/util/Caret.js",
1350
+ "declarations": [],
1351
+ "exports": []
1352
+ },
1353
+ {
1354
+ "kind": "javascript-module",
1355
+ "path": "dist/util/ColorConversion.js",
1356
+ "declarations": [],
1357
+ "exports": []
1358
+ },
1359
+ {
1360
+ "kind": "javascript-module",
1361
+ "path": "dist/util/FetchHelper.js",
1362
+ "declarations": [],
1363
+ "exports": []
1364
+ },
1365
+ {
1366
+ "kind": "javascript-module",
1367
+ "path": "dist/util/FocusableElements.js",
1368
+ "declarations": [],
1369
+ "exports": []
1370
+ },
1371
+ {
1372
+ "kind": "javascript-module",
1373
+ "path": "dist/util/HTMLSanitizer.js",
1374
+ "declarations": [],
1375
+ "exports": []
1376
+ },
1377
+ {
1378
+ "kind": "javascript-module",
1379
+ "path": "dist/util/InvisibleMessage.js",
1380
+ "declarations": [],
1381
+ "exports": [
1382
+ {
1383
+ "kind": "js",
1384
+ "name": "default",
1385
+ "declaration": {
1386
+ "name": "announce",
1387
+ "module": "dist/util/InvisibleMessage.js"
1388
+ }
1389
+ }
1390
+ ]
1391
+ },
1392
+ {
1393
+ "kind": "javascript-module",
1394
+ "path": "dist/util/PopupUtils.js",
1395
+ "declarations": [],
1396
+ "exports": []
1397
+ },
1398
+ {
1399
+ "kind": "javascript-module",
1400
+ "path": "dist/util/SlotsHelper.js",
1401
+ "declarations": [],
1402
+ "exports": []
1403
+ },
1404
+ {
1405
+ "kind": "javascript-module",
1406
+ "path": "dist/util/StringHelper.js",
1407
+ "declarations": [],
1408
+ "exports": []
1409
+ },
1410
+ {
1411
+ "kind": "javascript-module",
1412
+ "path": "dist/util/TabbableElements.js",
1413
+ "declarations": [],
1414
+ "exports": []
1415
+ },
1416
+ {
1417
+ "kind": "javascript-module",
1418
+ "path": "dist/util/arraysAreEqual.js",
1419
+ "declarations": [],
1420
+ "exports": [
1421
+ {
1422
+ "kind": "js",
1423
+ "name": "default",
1424
+ "declaration": {
1425
+ "name": "arraysAreEqual",
1426
+ "module": "dist/util/arraysAreEqual.js"
1427
+ }
1428
+ }
1429
+ ]
1430
+ },
1431
+ {
1432
+ "kind": "javascript-module",
1433
+ "path": "dist/util/clamp.js",
1434
+ "declarations": [],
1435
+ "exports": [
1436
+ {
1437
+ "kind": "js",
1438
+ "name": "default",
1439
+ "declaration": {
1440
+ "name": "clamp",
1441
+ "module": "dist/util/clamp.js"
1442
+ }
1443
+ }
1444
+ ]
1445
+ },
1446
+ {
1447
+ "kind": "javascript-module",
1448
+ "path": "dist/util/createLinkInHead.js",
1449
+ "declarations": [],
1450
+ "exports": [
1451
+ {
1452
+ "kind": "js",
1453
+ "name": "default",
1454
+ "declaration": {
1455
+ "name": "createLinkInHead",
1456
+ "module": "dist/util/createLinkInHead.js"
1457
+ }
1458
+ }
1459
+ ]
1460
+ },
1461
+ {
1462
+ "kind": "javascript-module",
1463
+ "path": "dist/util/createStyleInHead.js",
1464
+ "declarations": [],
1465
+ "exports": [
1466
+ {
1467
+ "kind": "js",
1468
+ "name": "default",
1469
+ "declaration": {
1470
+ "name": "createStyleInHead",
1471
+ "module": "dist/util/createStyleInHead.js"
1472
+ }
1473
+ }
1474
+ ]
1475
+ },
1476
+ {
1477
+ "kind": "javascript-module",
1478
+ "path": "dist/util/debounce.js",
1479
+ "declarations": [],
1480
+ "exports": [
1481
+ {
1482
+ "kind": "js",
1483
+ "name": "default",
1484
+ "declaration": {
1485
+ "name": "debounce",
1486
+ "module": "dist/util/debounce.js"
1487
+ }
1488
+ }
1489
+ ]
1490
+ },
1491
+ {
1492
+ "kind": "javascript-module",
1493
+ "path": "dist/util/detectNavigatorLanguage.js",
1494
+ "declarations": [],
1495
+ "exports": [
1496
+ {
1497
+ "kind": "js",
1498
+ "name": "default",
1499
+ "declaration": {
1500
+ "name": "detectNavigatorLanguage",
1501
+ "module": "dist/util/detectNavigatorLanguage.js"
1502
+ }
1503
+ }
1504
+ ]
1505
+ },
1506
+ {
1507
+ "kind": "javascript-module",
1508
+ "path": "dist/util/escapeRegex.js",
1509
+ "declarations": [],
1510
+ "exports": [
1511
+ {
1512
+ "kind": "js",
1513
+ "name": "default",
1514
+ "declaration": {
1515
+ "name": "escapeRegex",
1516
+ "module": "dist/util/escapeRegex.js"
1517
+ }
1518
+ }
1519
+ ]
1520
+ },
1521
+ {
1522
+ "kind": "javascript-module",
1523
+ "path": "dist/util/formatMessage.js",
1524
+ "declarations": [],
1525
+ "exports": [
1526
+ {
1527
+ "kind": "js",
1528
+ "name": "default",
1529
+ "declaration": {
1530
+ "name": "formatMessage",
1531
+ "module": "dist/util/formatMessage.js"
1532
+ }
1533
+ }
1534
+ ]
1535
+ },
1536
+ {
1537
+ "kind": "javascript-module",
1538
+ "path": "dist/util/generateHighlightedMarkup.js",
1539
+ "declarations": [],
1540
+ "exports": [
1541
+ {
1542
+ "kind": "js",
1543
+ "name": "default",
1544
+ "declaration": {
1545
+ "name": "generateHighlightedMarkup",
1546
+ "module": "dist/util/generateHighlightedMarkup.js"
1547
+ }
1548
+ }
1549
+ ]
1550
+ },
1551
+ {
1552
+ "kind": "javascript-module",
1553
+ "path": "dist/util/getActiveElement.js",
1554
+ "declarations": [],
1555
+ "exports": [
1556
+ {
1557
+ "kind": "js",
1558
+ "name": "default",
1559
+ "declaration": {
1560
+ "name": "getActiveElement",
1561
+ "module": "dist/util/getActiveElement.js"
1562
+ }
1563
+ }
1564
+ ]
1565
+ },
1566
+ {
1567
+ "kind": "javascript-module",
1568
+ "path": "dist/util/getClassCopy.js",
1569
+ "declarations": [],
1570
+ "exports": [
1571
+ {
1572
+ "kind": "js",
1573
+ "name": "default",
1574
+ "declaration": {
1575
+ "name": "getClassCopy",
1576
+ "module": "dist/util/getClassCopy.js"
1577
+ }
1578
+ }
1579
+ ]
1580
+ },
1581
+ {
1582
+ "kind": "javascript-module",
1583
+ "path": "dist/util/getDesigntimePropertyAsArray.js",
1584
+ "declarations": [],
1585
+ "exports": [
1586
+ {
1587
+ "kind": "js",
1588
+ "name": "default",
1589
+ "declaration": {
1590
+ "name": "designTimePropertyAsArray",
1591
+ "module": "dist/util/getDesigntimePropertyAsArray.js"
1592
+ }
1593
+ }
1594
+ ]
1595
+ },
1596
+ {
1597
+ "kind": "javascript-module",
1598
+ "path": "dist/util/getEffectiveContentDensity.js",
1599
+ "declarations": [],
1600
+ "exports": [
1601
+ {
1602
+ "kind": "js",
1603
+ "name": "default",
1604
+ "declaration": {
1605
+ "name": "getEffectiveContentDensity",
1606
+ "module": "dist/util/getEffectiveContentDensity.js"
1607
+ }
1608
+ }
1609
+ ]
1610
+ },
1611
+ {
1612
+ "kind": "javascript-module",
1613
+ "path": "dist/util/getEffectiveScrollbarStyle.js",
1614
+ "declarations": [],
1615
+ "exports": [
1616
+ {
1617
+ "kind": "js",
1618
+ "name": "default",
1619
+ "declaration": {
1620
+ "name": "getEffectiveScrollbarStyle",
1621
+ "module": "dist/util/getEffectiveScrollbarStyle.js"
1622
+ }
1623
+ }
1624
+ ]
1625
+ },
1626
+ {
1627
+ "kind": "javascript-module",
1628
+ "path": "dist/util/getFastNavigationGroups.js",
1629
+ "declarations": [],
1630
+ "exports": [
1631
+ {
1632
+ "kind": "js",
1633
+ "name": "default",
1634
+ "declaration": {
1635
+ "name": "getFastNavigationGroups",
1636
+ "module": "dist/util/getFastNavigationGroups.js"
1637
+ }
1638
+ }
1639
+ ]
1640
+ },
1641
+ {
1642
+ "kind": "javascript-module",
1643
+ "path": "dist/util/getFileExtension.js",
1644
+ "declarations": [],
1645
+ "exports": [
1646
+ {
1647
+ "kind": "js",
1648
+ "name": "default",
1649
+ "declaration": {
1650
+ "name": "getFileExtension",
1651
+ "module": "dist/util/getFileExtension.js"
1652
+ }
1653
+ }
1654
+ ]
1655
+ },
1656
+ {
1657
+ "kind": "javascript-module",
1658
+ "path": "dist/util/getNormalizedTarget.js",
1659
+ "declarations": [],
1660
+ "exports": [
1661
+ {
1662
+ "kind": "js",
1663
+ "name": "default",
1664
+ "declaration": {
1665
+ "name": "getNormalizedTarget",
1666
+ "module": "dist/util/getNormalizedTarget.js"
1667
+ }
1668
+ }
1669
+ ]
1670
+ },
1671
+ {
1672
+ "kind": "javascript-module",
1673
+ "path": "dist/util/getParentElement.js",
1674
+ "declarations": [],
1675
+ "exports": [
1676
+ {
1677
+ "kind": "js",
1678
+ "name": "default",
1679
+ "declaration": {
1680
+ "name": "getParentElement",
1681
+ "module": "dist/util/getParentElement.js"
1682
+ }
1683
+ }
1684
+ ]
1685
+ },
1686
+ {
1687
+ "kind": "javascript-module",
1688
+ "path": "dist/util/getSingletonElementInstance.js",
1689
+ "declarations": [],
1690
+ "exports": [
1691
+ {
1692
+ "kind": "js",
1693
+ "name": "default",
1694
+ "declaration": {
1695
+ "name": "getSingletonElementInstance",
1696
+ "module": "dist/util/getSingletonElementInstance.js"
1697
+ }
1698
+ }
1699
+ ]
1700
+ },
1701
+ {
1702
+ "kind": "javascript-module",
1703
+ "path": "dist/util/isElementClickable.js",
1704
+ "declarations": [],
1705
+ "exports": [
1706
+ {
1707
+ "kind": "js",
1708
+ "name": "default",
1709
+ "declaration": {
1710
+ "name": "isElementClickable",
1711
+ "module": "dist/util/isElementClickable.js"
1712
+ }
1713
+ }
1714
+ ]
1715
+ },
1716
+ {
1717
+ "kind": "javascript-module",
1718
+ "path": "dist/util/isElementContainingBlock.js",
1719
+ "declarations": [],
1720
+ "exports": [
1721
+ {
1722
+ "kind": "js",
1723
+ "name": "default",
1724
+ "declaration": {
1725
+ "name": "isElementContainingBlock",
1726
+ "module": "dist/util/isElementContainingBlock.js"
1727
+ }
1728
+ }
1729
+ ]
1730
+ },
1731
+ {
1732
+ "kind": "javascript-module",
1733
+ "path": "dist/util/isElementHidden.js",
1734
+ "declarations": [],
1735
+ "exports": [
1736
+ {
1737
+ "kind": "js",
1738
+ "name": "default",
1739
+ "declaration": {
1740
+ "name": "isElementHidden",
1741
+ "module": "dist/util/isElementHidden.js"
1742
+ }
1743
+ }
1744
+ ]
1745
+ },
1746
+ {
1747
+ "kind": "javascript-module",
1748
+ "path": "dist/util/isElementInView.js",
1749
+ "declarations": [],
1750
+ "exports": [
1751
+ {
1752
+ "kind": "js",
1753
+ "name": "default",
1754
+ "declaration": {
1755
+ "name": "isElementInView",
1756
+ "module": "dist/util/isElementInView.js"
1757
+ }
1758
+ }
1759
+ ]
1760
+ },
1761
+ {
1762
+ "kind": "javascript-module",
1763
+ "path": "dist/util/isElementTabbable.js",
1764
+ "declarations": [],
1765
+ "exports": [
1766
+ {
1767
+ "kind": "js",
1768
+ "name": "default",
1769
+ "declaration": {
1770
+ "name": "isElementTabbable",
1771
+ "module": "dist/util/isElementTabbable.js"
1772
+ }
1773
+ }
1774
+ ]
1775
+ },
1776
+ {
1777
+ "kind": "javascript-module",
1778
+ "path": "dist/util/isValidPropertyName.js",
1779
+ "declarations": [],
1780
+ "exports": [
1781
+ {
1782
+ "kind": "js",
1783
+ "name": "default",
1784
+ "declaration": {
1785
+ "name": "isValidPropertyName",
1786
+ "module": "dist/util/isValidPropertyName.js"
1787
+ }
1788
+ }
1789
+ ]
1790
+ },
1791
+ {
1792
+ "kind": "javascript-module",
1793
+ "path": "dist/util/whenDOMReady.js",
1794
+ "declarations": [],
1795
+ "exports": [
1796
+ {
1797
+ "kind": "js",
1798
+ "name": "default",
1799
+ "declaration": {
1800
+ "name": "whenDOMReady",
1801
+ "module": "dist/util/whenDOMReady.js"
1802
+ }
1803
+ }
1804
+ ]
1805
+ },
1806
+ {
1807
+ "kind": "javascript-module",
1808
+ "path": "dist/util/willShowContent.js",
1809
+ "declarations": [],
1810
+ "exports": [
1811
+ {
1812
+ "kind": "js",
1813
+ "name": "default",
1814
+ "declaration": {
1815
+ "name": "willShowContent",
1816
+ "module": "dist/util/willShowContent.js"
1817
+ }
1818
+ }
1819
+ ]
1820
+ },
1821
+ {
1822
+ "kind": "javascript-module",
1823
+ "path": "dist/AssetRegistry.js",
1824
+ "declarations": [],
1825
+ "exports": []
1826
+ },
1827
+ {
1828
+ "kind": "javascript-module",
1829
+ "path": "dist/Boot.js",
1830
+ "declarations": [],
1831
+ "exports": []
1832
+ },
1833
+ {
1834
+ "kind": "javascript-module",
1835
+ "path": "dist/CSP.js",
1836
+ "declarations": [],
1837
+ "exports": []
1838
+ },
1839
+ {
1840
+ "kind": "javascript-module",
1841
+ "path": "dist/CustomElementsRegistry.js",
1842
+ "declarations": [],
1843
+ "exports": []
1844
+ },
1845
+ {
1846
+ "kind": "javascript-module",
1847
+ "path": "dist/CustomElementsScope.js",
1848
+ "declarations": [],
1849
+ "exports": []
1850
+ },
1851
+ {
1852
+ "kind": "javascript-module",
1853
+ "path": "dist/CustomElementsScopeUtils.js",
1854
+ "declarations": [],
1855
+ "exports": []
1856
+ },
1857
+ {
1858
+ "kind": "javascript-module",
1859
+ "path": "dist/DOMObserver.js",
1860
+ "declarations": [],
1861
+ "exports": []
1862
+ },
1863
+ {
1864
+ "kind": "javascript-module",
1865
+ "path": "dist/Device.js",
1866
+ "declarations": [],
1867
+ "exports": []
1868
+ },
1869
+ {
1870
+ "kind": "javascript-module",
1871
+ "path": "dist/EventProvider.js",
1872
+ "declarations": [],
1873
+ "exports": [
1874
+ {
1875
+ "kind": "js",
1876
+ "name": "default",
1877
+ "declaration": {
1878
+ "name": "EventProvider",
1879
+ "module": "dist/EventProvider.js"
1880
+ }
1881
+ }
1882
+ ]
1883
+ },
1884
+ {
1885
+ "kind": "javascript-module",
1886
+ "path": "dist/FeaturesRegistry.js",
1887
+ "declarations": [],
1888
+ "exports": []
1889
+ },
1890
+ {
1891
+ "kind": "javascript-module",
1892
+ "path": "dist/FontFace.js",
1893
+ "declarations": [],
1894
+ "exports": [
1895
+ {
1896
+ "kind": "js",
1897
+ "name": "default",
1898
+ "declaration": {
1899
+ "name": "insertFontFace",
1900
+ "module": "dist/FontFace.js"
1901
+ }
1902
+ }
1903
+ ]
1904
+ },
1905
+ {
1906
+ "kind": "javascript-module",
1907
+ "path": "dist/IgnoreCustomElements.js",
1908
+ "declarations": [],
1909
+ "exports": []
1910
+ },
1911
+ {
1912
+ "kind": "javascript-module",
1913
+ "path": "dist/InitialConfiguration.js",
1914
+ "declarations": [],
1915
+ "exports": []
1916
+ },
1917
+ {
1918
+ "kind": "javascript-module",
1919
+ "path": "dist/Keys.js",
1920
+ "declarations": [],
1921
+ "exports": []
1922
+ },
1923
+ {
1924
+ "kind": "javascript-module",
1925
+ "path": "dist/ManagedStyles.js",
1926
+ "declarations": [],
1927
+ "exports": []
1928
+ },
1929
+ {
1930
+ "kind": "javascript-module",
1931
+ "path": "dist/MarkedEvents.js",
1932
+ "declarations": [],
1933
+ "exports": []
1934
+ },
1935
+ {
1936
+ "kind": "javascript-module",
1937
+ "path": "dist/MediaRange.js",
1938
+ "declarations": [],
1939
+ "exports": [
1940
+ {
1941
+ "kind": "js",
1942
+ "name": "default",
1943
+ "declaration": {
1944
+ "name": "MediaRange",
1945
+ "module": "dist/MediaRange.js"
1946
+ }
1947
+ }
1948
+ ]
1949
+ },
1950
+ {
1951
+ "kind": "javascript-module",
1952
+ "path": "dist/PropertiesFileFormat.js",
1953
+ "declarations": [],
1954
+ "exports": [
1955
+ {
1956
+ "kind": "js",
1957
+ "name": "default",
1958
+ "declaration": {
1959
+ "name": "parseProperties",
1960
+ "module": "dist/PropertiesFileFormat.js"
1961
+ }
1962
+ }
1963
+ ]
1964
+ },
1965
+ {
1966
+ "kind": "javascript-module",
1967
+ "path": "dist/Render.js",
1968
+ "declarations": [],
1969
+ "exports": []
1970
+ },
1971
+ {
1972
+ "kind": "javascript-module",
1973
+ "path": "dist/RenderQueue.js",
1974
+ "declarations": [],
1975
+ "exports": [
1976
+ {
1977
+ "kind": "js",
1978
+ "name": "default",
1979
+ "declaration": {
1980
+ "name": "RenderQueue",
1981
+ "module": "dist/RenderQueue.js"
1982
+ }
1983
+ }
1984
+ ]
1985
+ },
1986
+ {
1987
+ "kind": "javascript-module",
1988
+ "path": "dist/Runtimes.js",
1989
+ "declarations": [],
1990
+ "exports": []
1991
+ },
1992
+ {
1993
+ "kind": "javascript-module",
1994
+ "path": "dist/StaticArea.js",
1995
+ "declarations": [],
1996
+ "exports": [
1997
+ {
1998
+ "kind": "js",
1999
+ "name": "default",
2000
+ "declaration": {
2001
+ "name": "StaticArea",
2002
+ "module": "dist/StaticArea.js"
2003
+ }
2004
+ }
2005
+ ]
2006
+ },
2007
+ {
2008
+ "kind": "javascript-module",
2009
+ "path": "dist/StaticAreaItem.js",
2010
+ "declarations": [],
2011
+ "exports": [
2012
+ {
2013
+ "kind": "js",
2014
+ "name": "default",
2015
+ "declaration": {
2016
+ "name": "StaticAreaItem",
2017
+ "module": "dist/StaticAreaItem.js"
2018
+ }
2019
+ }
2020
+ ]
2021
+ },
2022
+ {
2023
+ "kind": "javascript-module",
2024
+ "path": "dist/SystemCSSVars.js",
2025
+ "declarations": [],
2026
+ "exports": [
2027
+ {
2028
+ "kind": "js",
2029
+ "name": "default",
2030
+ "declaration": {
2031
+ "name": "insertSystemCSSVars",
2032
+ "module": "dist/SystemCSSVars.js"
2033
+ }
2034
+ }
2035
+ ]
2036
+ },
2037
+ {
2038
+ "kind": "javascript-module",
2039
+ "path": "dist/Theming.js",
2040
+ "declarations": [],
2041
+ "exports": []
2042
+ },
2043
+ {
2044
+ "kind": "javascript-module",
2045
+ "path": "dist/UI5Element.js",
2046
+ "declarations": [
2047
+ {
2048
+ "kind": "class",
2049
+ "description": "Base class for all UI5 Web Components",
2050
+ "name": "UI5Element",
2051
+ "members": [
2052
+ {
2053
+ "kind": "method",
2054
+ "name": "onBeforeRendering",
2055
+ "return": {
2056
+ "type": {
2057
+ "text": "void"
2058
+ }
2059
+ },
2060
+ "description": "Called every time before the component renders.",
2061
+ "privacy": "public"
2062
+ },
2063
+ {
2064
+ "kind": "method",
2065
+ "name": "onAfterRendering",
2066
+ "return": {
2067
+ "type": {
2068
+ "text": "void"
2069
+ }
2070
+ },
2071
+ "description": "Called every time after the component renders.",
2072
+ "privacy": "public"
2073
+ },
2074
+ {
2075
+ "kind": "method",
2076
+ "name": "onEnterDOM",
2077
+ "return": {
2078
+ "type": {
2079
+ "text": "void"
2080
+ }
2081
+ },
2082
+ "description": "Called on connectedCallback - added to the DOM.",
2083
+ "privacy": "public"
2084
+ },
2085
+ {
2086
+ "kind": "method",
2087
+ "name": "onExitDOM",
2088
+ "return": {
2089
+ "type": {
2090
+ "text": "void"
2091
+ }
2092
+ },
2093
+ "description": "Called on disconnectedCallback - removed from the DOM.",
2094
+ "privacy": "public"
2095
+ },
2096
+ {
2097
+ "kind": "method",
2098
+ "name": "attachInvalidate",
2099
+ "return": {
2100
+ "type": {
2101
+ "text": "void"
2102
+ }
2103
+ },
2104
+ "parameters": [
2105
+ {
2106
+ "name": "callback",
2107
+ "type": {
2108
+ "text": "(param: InvalidationInfo) => void"
2109
+ },
2110
+ "_ui5privacy": "public"
2111
+ }
2112
+ ],
2113
+ "description": "Attach a callback that will be executed whenever the component is invalidated",
2114
+ "privacy": "public"
2115
+ },
2116
+ {
2117
+ "kind": "method",
2118
+ "name": "detachInvalidate",
2119
+ "return": {
2120
+ "type": {
2121
+ "text": "void"
2122
+ }
2123
+ },
2124
+ "parameters": [
2125
+ {
2126
+ "name": "callback",
2127
+ "type": {
2128
+ "text": "(param: InvalidationInfo) => void"
2129
+ },
2130
+ "_ui5privacy": "public"
2131
+ }
2132
+ ],
2133
+ "description": "Detach the callback that is executed whenever the component is invalidated",
2134
+ "privacy": "public"
2135
+ },
2136
+ {
2137
+ "kind": "method",
2138
+ "name": "onInvalidation",
2139
+ "return": {
2140
+ "type": {
2141
+ "text": "void"
2142
+ }
2143
+ },
2144
+ "parameters": [
2145
+ {
2146
+ "name": "changeInfo",
2147
+ "type": {
2148
+ "text": "ChangeInfo",
2149
+ "references": [
2150
+ {
2151
+ "name": "ChangeInfo",
2152
+ "package": "@ui5/webcomponents-base",
2153
+ "module": "dist/UI5Element.js"
2154
+ }
2155
+ ]
2156
+ },
2157
+ "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)",
2158
+ "_ui5privacy": "public"
2159
+ }
2160
+ ],
2161
+ "description": "A callback that is executed each time an already rendered component is invalidated (scheduled for re-rendering)",
2162
+ "privacy": "public"
2163
+ },
2164
+ {
2165
+ "kind": "method",
2166
+ "name": "getDomRef",
2167
+ "return": {
2168
+ "type": {
2169
+ "text": "HTMLElement | undefined"
2170
+ }
2171
+ },
2172
+ "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",
2173
+ "privacy": "public"
2174
+ },
2175
+ {
2176
+ "kind": "method",
2177
+ "name": "getFocusDomRef",
2178
+ "return": {
2179
+ "type": {
2180
+ "text": "HTMLElement | undefined"
2181
+ }
2182
+ },
2183
+ "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.",
2184
+ "privacy": "public"
2185
+ },
2186
+ {
2187
+ "kind": "method",
2188
+ "name": "getFocusDomRefAsync",
2189
+ "return": {
2190
+ "type": {
2191
+ "text": "Promise<HTMLElement | undefined>"
2192
+ }
2193
+ },
2194
+ "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.",
2195
+ "privacy": "public"
2196
+ },
2197
+ {
2198
+ "kind": "method",
2199
+ "name": "focus",
2200
+ "return": {
2201
+ "type": {
2202
+ "text": "Promise<void>"
2203
+ }
2204
+ },
2205
+ "parameters": [
2206
+ {
2207
+ "name": "focusOptions",
2208
+ "optional": true,
2209
+ "type": {
2210
+ "text": "FocusOptions"
2211
+ },
2212
+ "description": "additional options for the focus",
2213
+ "_ui5privacy": "public"
2214
+ }
2215
+ ],
2216
+ "description": "Set the focus to the element, returned by \"getFocusDomRef()\" (marked by \"data-sap-focus-ref\")",
2217
+ "privacy": "public"
2218
+ },
2219
+ {
2220
+ "kind": "method",
2221
+ "name": "fireEvent",
2222
+ "return": {
2223
+ "type": {
2224
+ "text": "boolean"
2225
+ },
2226
+ "description": "false, if the event was cancelled (preventDefault called), true otherwise"
2227
+ },
2228
+ "parameters": [
2229
+ {
2230
+ "name": "name",
2231
+ "type": {
2232
+ "text": "string"
2233
+ },
2234
+ "description": "name of the event",
2235
+ "_ui5privacy": "public"
2236
+ },
2237
+ {
2238
+ "name": "data",
2239
+ "optional": true,
2240
+ "type": {
2241
+ "text": "T"
2242
+ },
2243
+ "description": "additional data for the event",
2244
+ "_ui5privacy": "public"
2245
+ },
2246
+ {
2247
+ "name": "cancelable",
2248
+ "default": "false",
2249
+ "description": "true, if the user can call preventDefault on the event object",
2250
+ "_ui5privacy": "public"
2251
+ },
2252
+ {
2253
+ "name": "bubbles",
2254
+ "default": "true",
2255
+ "description": "true, if the event bubbles",
2256
+ "_ui5privacy": "public"
2257
+ }
2258
+ ],
2259
+ "privacy": "public"
2260
+ },
2261
+ {
2262
+ "kind": "method",
2263
+ "name": "getSlottedNodes",
2264
+ "return": {
2265
+ "type": {
2266
+ "text": "Array<T>"
2267
+ }
2268
+ },
2269
+ "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.",
2270
+ "privacy": "public"
2271
+ },
2272
+ {
2273
+ "kind": "method",
2274
+ "name": "attachComponentStateFinalized",
2275
+ "return": {
2276
+ "type": {
2277
+ "text": "void"
2278
+ }
2279
+ },
2280
+ "parameters": [
2281
+ {
2282
+ "name": "callback",
2283
+ "type": {
2284
+ "text": "() => void"
2285
+ },
2286
+ "_ui5privacy": "public"
2287
+ }
2288
+ ],
2289
+ "description": "Attach a callback that will be executed whenever the component's state is finalized",
2290
+ "privacy": "public"
2291
+ },
2292
+ {
2293
+ "kind": "method",
2294
+ "name": "detachComponentStateFinalized",
2295
+ "return": {
2296
+ "type": {
2297
+ "text": "void"
2298
+ }
2299
+ },
2300
+ "parameters": [
2301
+ {
2302
+ "name": "callback",
2303
+ "type": {
2304
+ "text": "() => void"
2305
+ },
2306
+ "_ui5privacy": "public"
2307
+ }
2308
+ ],
2309
+ "description": "Detach the callback that is executed whenever the component's state is finalized",
2310
+ "privacy": "public"
2311
+ },
2312
+ {
2313
+ "kind": "field",
2314
+ "name": "effectiveDir",
2315
+ "type": {
2316
+ "text": "string | undefined"
2317
+ },
2318
+ "description": "Determines whether the component should be rendered in RTL mode or not.\nReturns: \"rtl\", \"ltr\" or undefined",
2319
+ "privacy": "public",
2320
+ "default": "undefined",
2321
+ "readonly": true
2322
+ },
2323
+ {
2324
+ "kind": "field",
2325
+ "name": "isUI5Element",
2326
+ "type": {
2327
+ "text": "boolean"
2328
+ },
2329
+ "description": "Used to duck-type UI5 elements without using instanceof",
2330
+ "privacy": "public",
2331
+ "default": "true",
2332
+ "readonly": true
2333
+ },
2334
+ {
2335
+ "kind": "method",
2336
+ "name": "getStaticAreaItemDomRef",
2337
+ "return": {
2338
+ "type": {
2339
+ "text": "Promise<ShadowRoot | null>"
2340
+ }
2341
+ },
2342
+ "privacy": "public"
2343
+ },
2344
+ {
2345
+ "kind": "method",
2346
+ "name": "getUniqueDependencies",
2347
+ "static": true,
2348
+ "return": {
2349
+ "type": {
2350
+ "text": "Array<typeof UI5Element>"
2351
+ }
2352
+ },
2353
+ "description": "Returns a list of the unique dependencies for this UI5 Web Component",
2354
+ "privacy": "public"
2355
+ },
2356
+ {
2357
+ "kind": "method",
2358
+ "name": "define",
2359
+ "static": true,
2360
+ "return": {
2361
+ "type": {
2362
+ "text": "Promise<typeof UI5Element>"
2363
+ }
2364
+ },
2365
+ "description": "Registers a UI5 Web Component in the browser window object",
2366
+ "privacy": "public"
2367
+ },
2368
+ {
2369
+ "kind": "method",
2370
+ "name": "getMetadata",
2371
+ "static": true,
2372
+ "return": {
2373
+ "type": {
2374
+ "text": "UI5ElementMetadata",
2375
+ "references": [
2376
+ {
2377
+ "name": "UI5ElementMetadata",
2378
+ "package": "@ui5/webcomponents-base",
2379
+ "module": "dist/UI5ElementMetadata.js"
2380
+ }
2381
+ ]
2382
+ }
2383
+ },
2384
+ "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",
2385
+ "privacy": "public"
2386
+ }
2387
+ ],
2388
+ "customElement": true,
2389
+ "_ui5privacy": "public"
2390
+ }
2391
+ ],
2392
+ "exports": [
2393
+ {
2394
+ "kind": "js",
2395
+ "name": "default",
2396
+ "declaration": {
2397
+ "name": "UI5Element",
2398
+ "module": "dist/UI5Element.js"
2399
+ }
2400
+ }
2401
+ ]
2402
+ },
2403
+ {
2404
+ "kind": "javascript-module",
2405
+ "path": "dist/UI5ElementMetadata.js",
2406
+ "declarations": [
2407
+ {
2408
+ "kind": "class",
2409
+ "description": "",
2410
+ "name": "UI5ElementMetadata",
2411
+ "members": [
2412
+ {
2413
+ "kind": "method",
2414
+ "name": "validatePropertyValue",
2415
+ "static": true,
2416
+ "return": {
2417
+ "type": {
2418
+ "text": "PropertyValue",
2419
+ "references": [
2420
+ {
2421
+ "name": "PropertyValue",
2422
+ "package": "@ui5/webcomponents-base",
2423
+ "module": "dist/UI5ElementMetadata.js"
2424
+ }
2425
+ ]
2426
+ }
2427
+ },
2428
+ "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",
2429
+ "privacy": "public"
2430
+ },
2431
+ {
2432
+ "kind": "method",
2433
+ "name": "validateSlotValue",
2434
+ "static": true,
2435
+ "return": {
2436
+ "type": {
2437
+ "text": "Node"
2438
+ }
2439
+ },
2440
+ "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",
2441
+ "privacy": "public"
2442
+ },
2443
+ {
2444
+ "kind": "method",
2445
+ "name": "getPureTag",
2446
+ "return": {
2447
+ "type": {
2448
+ "text": "string"
2449
+ }
2450
+ },
2451
+ "description": "Returns the tag of the UI5 Element without the scope",
2452
+ "privacy": "public"
2453
+ },
2454
+ {
2455
+ "kind": "method",
2456
+ "name": "getTag",
2457
+ "return": {
2458
+ "type": {
2459
+ "text": "string"
2460
+ }
2461
+ },
2462
+ "description": "Returns the tag of the UI5 Element",
2463
+ "privacy": "public"
2464
+ },
2465
+ {
2466
+ "kind": "method",
2467
+ "name": "hasAttribute",
2468
+ "return": {
2469
+ "type": {
2470
+ "text": "boolean"
2471
+ }
2472
+ },
2473
+ "parameters": [
2474
+ {
2475
+ "name": "propName",
2476
+ "type": {
2477
+ "text": "string"
2478
+ },
2479
+ "_ui5privacy": "public"
2480
+ }
2481
+ ],
2482
+ "description": "Determines whether a property should have an attribute counterpart",
2483
+ "privacy": "public"
2484
+ },
2485
+ {
2486
+ "kind": "method",
2487
+ "name": "getPropertiesList",
2488
+ "return": {
2489
+ "type": {
2490
+ "text": "Array<string>"
2491
+ }
2492
+ },
2493
+ "description": "Returns an array with the properties of the UI5 Element (in camelCase)",
2494
+ "privacy": "public"
2495
+ },
2496
+ {
2497
+ "kind": "method",
2498
+ "name": "getAttributesList",
2499
+ "return": {
2500
+ "type": {
2501
+ "text": "Array<string>"
2502
+ }
2503
+ },
2504
+ "description": "Returns an array with the attributes of the UI5 Element (in kebab-case)",
2505
+ "privacy": "public"
2506
+ },
2507
+ {
2508
+ "kind": "method",
2509
+ "name": "hasSlots",
2510
+ "return": {
2511
+ "type": {
2512
+ "text": "boolean"
2513
+ }
2514
+ },
2515
+ "description": "Determines whether this UI5 Element supports any slots",
2516
+ "privacy": "public"
2517
+ },
2518
+ {
2519
+ "kind": "method",
2520
+ "name": "hasIndividualSlots",
2521
+ "return": {
2522
+ "type": {
2523
+ "text": "boolean"
2524
+ }
2525
+ },
2526
+ "description": "Determines whether this UI5 Element supports any slots with \"individualSlots: true\"",
2527
+ "privacy": "public"
2528
+ },
2529
+ {
2530
+ "kind": "method",
2531
+ "name": "slotsAreManaged",
2532
+ "return": {
2533
+ "type": {
2534
+ "text": "boolean"
2535
+ }
2536
+ },
2537
+ "description": "Determines whether this UI5 Element needs to invalidate if children are added/removed/changed",
2538
+ "privacy": "public"
2539
+ },
2540
+ {
2541
+ "kind": "method",
2542
+ "name": "supportsF6FastNavigation",
2543
+ "return": {
2544
+ "type": {
2545
+ "text": "boolean"
2546
+ }
2547
+ },
2548
+ "description": "Determines whether this control supports F6 fast navigation",
2549
+ "privacy": "public"
2550
+ },
2551
+ {
2552
+ "kind": "method",
2553
+ "name": "getProperties",
2554
+ "return": {
2555
+ "type": {
2556
+ "text": "Record<string, Property>",
2557
+ "references": [
2558
+ {
2559
+ "name": "Property",
2560
+ "package": "@ui5/webcomponents-base",
2561
+ "module": "dist/UI5ElementMetadata.js"
2562
+ }
2563
+ ]
2564
+ }
2565
+ },
2566
+ "description": "Returns an object with key-value pairs of properties and their metadata definitions",
2567
+ "privacy": "public"
2568
+ },
2569
+ {
2570
+ "kind": "method",
2571
+ "name": "getEvents",
2572
+ "return": {
2573
+ "type": {
2574
+ "text": "EventData",
2575
+ "references": [
2576
+ {
2577
+ "name": "EventData",
2578
+ "package": "@ui5/webcomponents-base",
2579
+ "module": "dist/UI5ElementMetadata.js"
2580
+ }
2581
+ ]
2582
+ }
2583
+ },
2584
+ "description": "Returns an object with key-value pairs of events and their metadata definitions",
2585
+ "privacy": "public"
2586
+ },
2587
+ {
2588
+ "kind": "method",
2589
+ "name": "getSlots",
2590
+ "return": {
2591
+ "type": {
2592
+ "text": "Record<string, Slot>",
2593
+ "references": [
2594
+ {
2595
+ "name": "Slot",
2596
+ "package": "@ui5/webcomponents-base",
2597
+ "module": "dist/UI5ElementMetadata.js"
2598
+ }
2599
+ ]
2600
+ }
2601
+ },
2602
+ "description": "Returns an object with key-value pairs of slots and their metadata definitions",
2603
+ "privacy": "public"
2604
+ }
2605
+ ],
2606
+ "_ui5privacy": "public"
2607
+ }
2608
+ ],
2609
+ "exports": [
2610
+ {
2611
+ "kind": "js",
2612
+ "name": "default",
2613
+ "declaration": {
2614
+ "name": "UI5ElementMetadata",
2615
+ "module": "dist/UI5ElementMetadata.js"
2616
+ }
2617
+ }
2618
+ ]
2619
+ },
2620
+ {
2621
+ "kind": "javascript-module",
2622
+ "path": "dist/connectToComponent.js",
2623
+ "declarations": [],
2624
+ "exports": [
2625
+ {
2626
+ "kind": "js",
2627
+ "name": "default",
2628
+ "declaration": {
2629
+ "name": "connectToComponent",
2630
+ "module": "dist/connectToComponent.js"
2631
+ }
2632
+ }
2633
+ ]
2634
+ },
2635
+ {
2636
+ "kind": "javascript-module",
2637
+ "path": "dist/getSharedResource.js",
2638
+ "declarations": [],
2639
+ "exports": [
2640
+ {
2641
+ "kind": "js",
2642
+ "name": "default",
2643
+ "declaration": {
2644
+ "name": "getSharedResource",
2645
+ "module": "dist/getSharedResource.js"
2646
+ }
2647
+ }
2648
+ ]
2649
+ },
2650
+ {
2651
+ "kind": "javascript-module",
2652
+ "path": "dist/i18nBundle.js",
2653
+ "declarations": [
2654
+ {
2655
+ "kind": "class",
2656
+ "description": "",
2657
+ "name": "I18nBundle",
2658
+ "members": [
2659
+ {
2660
+ "kind": "method",
2661
+ "name": "getText",
2662
+ "return": {
2663
+ "type": {
2664
+ "text": "string"
2665
+ }
2666
+ },
2667
+ "parameters": [
2668
+ {
2669
+ "name": "textObj",
2670
+ "type": {
2671
+ "text": "I18nText | string",
2672
+ "references": [
2673
+ {
2674
+ "name": "I18nText",
2675
+ "package": "@ui5/webcomponents-base",
2676
+ "module": "dist/i18nBundle.js"
2677
+ }
2678
+ ]
2679
+ },
2680
+ "description": "key/defaultText pair or just the key",
2681
+ "_ui5privacy": "public"
2682
+ },
2683
+ {
2684
+ "name": "params",
2685
+ "type": {
2686
+ "text": "Array<number | string>"
2687
+ },
2688
+ "description": "Values for the placeholders",
2689
+ "_ui5privacy": "public"
2690
+ }
2691
+ ],
2692
+ "description": "Returns a text in the currently loaded language",
2693
+ "privacy": "public"
2694
+ }
2695
+ ],
2696
+ "_ui5privacy": "public"
2697
+ }
2698
+ ],
2699
+ "exports": [
2700
+ {
2701
+ "kind": "js",
2702
+ "name": "default",
2703
+ "declaration": {
2704
+ "name": "I18nBundle",
2705
+ "module": "dist/i18nBundle.js"
2706
+ }
2707
+ }
2708
+ ]
2709
+ },
2710
+ {
2711
+ "kind": "javascript-module",
2712
+ "path": "dist/ssr-dom-shim.js",
2713
+ "declarations": [],
2714
+ "exports": []
2715
+ },
2716
+ {
2717
+ "kind": "javascript-module",
2718
+ "path": "dist/ssr-dom.js",
2719
+ "declarations": [],
2720
+ "exports": []
2721
+ },
2722
+ {
2723
+ "kind": "javascript-module",
2724
+ "path": "dist/types.js",
2725
+ "declarations": [],
2726
+ "exports": []
2727
+ },
2728
+ {
2729
+ "kind": "javascript-module",
2730
+ "path": "dist/updateShadowRoot.js",
2731
+ "declarations": [],
2732
+ "exports": [
2733
+ {
2734
+ "kind": "js",
2735
+ "name": "default",
2736
+ "declaration": {
2737
+ "name": "updateShadowRoot",
2738
+ "module": "dist/updateShadowRoot.js"
2739
+ }
2740
+ }
2741
+ ]
2742
+ },
2743
+ {
2744
+ "kind": "javascript-module",
2745
+ "path": "dist/validateThemeRoot.js",
2746
+ "declarations": [],
2747
+ "exports": [
2748
+ {
2749
+ "kind": "js",
2750
+ "name": "default",
2751
+ "declaration": {
2752
+ "name": "validateThemeRoot",
2753
+ "module": "dist/validateThemeRoot.js"
2754
+ }
2755
+ }
2756
+ ]
2757
+ }
2758
+ ]
2759
+ }