@ui5/webcomponents-base 0.0.0-32b659ddc → 0.0.0-33e059bcd

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