@ui5/webcomponents-base 0.0.0-35e2c9666 → 0.0.0-37338d49d

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