@ui5/webcomponents-base 0.0.0-306572ffa → 0.0.0-31ad69296

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