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

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