@ui5/webcomponents-base 0.0.0-9195c41b8 → 0.0.0-9261ac932

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