@ui5/webcomponents-base 0.0.0-201dc9cbe → 0.0.0-20ff83d14

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