@ui5/webcomponents-base 0.0.0-e463d2345 → 0.0.0-e58530409

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 (471) hide show
  1. package/.eslintignore +4 -0
  2. package/CHANGELOG.md +407 -0
  3. package/README.md +30 -7
  4. package/bundle.esm.js +24 -20
  5. package/dist/AssetRegistry.js +8 -6
  6. package/dist/Boot.js +59 -0
  7. package/dist/CSP.js +59 -0
  8. package/dist/CustomElementsRegistry.js +95 -0
  9. package/dist/CustomElementsScope.js +30 -0
  10. package/dist/CustomElementsScopeUtils.js +108 -0
  11. package/dist/DOMObserver.js +65 -0
  12. package/dist/Device.js +71 -773
  13. package/dist/EventProvider.js +38 -26
  14. package/dist/FeaturesRegistry.js +4 -1
  15. package/dist/FontFace.js +20 -56
  16. package/dist/InitialConfiguration.js +64 -17
  17. package/dist/Keys.js +295 -0
  18. package/dist/ManagedStyles.js +83 -0
  19. package/dist/MediaRange.js +109 -0
  20. package/dist/PropertiesFileFormat.js +95 -0
  21. package/dist/Render.js +175 -0
  22. package/dist/RenderQueue.js +41 -17
  23. package/dist/RenderScheduler.js +24 -145
  24. package/dist/Runtimes.js +107 -0
  25. package/dist/StaticArea.js +2 -34
  26. package/dist/StaticAreaItem.js +69 -35
  27. package/dist/SystemCSSVars.js +10 -0
  28. package/dist/Theming.js +3 -44
  29. package/dist/UI5Element.js +497 -306
  30. package/dist/UI5ElementMetadata.js +198 -19
  31. package/dist/asset-registries/Icons.js +125 -14
  32. package/dist/asset-registries/Illustrations.js +30 -0
  33. package/dist/asset-registries/LocaleData.js +114 -51
  34. package/dist/asset-registries/Themes.js +37 -30
  35. package/dist/asset-registries/i18n.js +80 -34
  36. package/dist/assets/bundle.esm.39b5ade5.js +43 -0
  37. package/dist/assets-meta/IconCollectionsAlias.js +18 -0
  38. package/dist/config/AnimationMode.js +16 -2
  39. package/dist/config/CalendarType.js +7 -7
  40. package/dist/config/FormatSettings.js +5 -1
  41. package/dist/config/Icons.js +52 -0
  42. package/dist/config/Language.js +62 -3
  43. package/dist/config/NoConflict.js +10 -3
  44. package/dist/config/Theme.js +32 -3
  45. package/dist/css/BusyIndicator.css +80 -0
  46. package/dist/css/FontFace.css +75 -0
  47. package/dist/css/OverrideFontFace.css +32 -0
  48. package/dist/css/SystemCSSVars.css +17 -0
  49. package/dist/delegate/ItemNavigation.js +244 -127
  50. package/dist/delegate/ResizeHandler.js +78 -38
  51. package/dist/delegate/ScrollEnablement.js +122 -14
  52. package/dist/features/F6Navigation.js +110 -0
  53. package/dist/features/OpenUI5Enablement.js +119 -0
  54. package/dist/features/OpenUI5Support.js +125 -0
  55. package/dist/generated/AssetParameters.js +13 -0
  56. package/dist/generated/VersionInfo.js +10 -0
  57. package/dist/generated/css/BusyIndicator.css.js +5 -0
  58. package/dist/generated/css/FontFace.css.js +5 -0
  59. package/dist/generated/css/OverrideFontFace.css.js +5 -0
  60. package/dist/generated/css/SystemCSSVars.css.js +5 -0
  61. package/dist/getSharedResource.js +30 -0
  62. package/dist/i18nBundle.js +62 -11
  63. package/{src → dist/locale}/Locale.js +0 -10
  64. package/dist/locale/RTLAwareRegistry.js +14 -0
  65. package/dist/locale/applyDirection.js +17 -0
  66. package/dist/locale/directionChange.js +32 -0
  67. package/dist/locale/getEffectiveDir.js +28 -0
  68. package/dist/locale/getLocale.js +41 -0
  69. package/dist/locale/languageChange.js +22 -0
  70. package/dist/locale/nextFallbackLocale.js +28 -0
  71. package/dist/{util → locale}/normalizeLocale.js +8 -31
  72. package/dist/renderer/LitRenderer.js +44 -7
  73. package/dist/renderer/directives/style-map.js +72 -0
  74. package/dist/renderer/executeTemplate.js +34 -0
  75. package/dist/sap/base/Log.js +241 -0
  76. package/dist/sap/base/assert.js +8 -0
  77. package/dist/sap/base/security/URLListValidator.js +148 -0
  78. package/dist/sap/base/security/encodeCSS.js +14 -0
  79. package/dist/sap/base/security/encodeXML.js +23 -0
  80. package/dist/sap/base/security/sanitizeHTML.js +16 -0
  81. package/dist/sap/base/strings/toHex.js +8 -0
  82. package/dist/sap/base/util/now.js +7 -0
  83. package/dist/sap/ui/thirdparty/caja-html-sanitizer.js +3585 -0
  84. package/dist/theming/CustomStyle.js +47 -6
  85. package/dist/theming/ThemeLoaded.js +22 -0
  86. package/dist/theming/applyTheme.js +79 -0
  87. package/dist/theming/getConstructableStyle.js +30 -0
  88. package/dist/theming/getEffectiveLinksHrefs.js +27 -0
  89. package/dist/theming/getEffectiveStyle.js +39 -0
  90. package/dist/theming/getStylesString.js +15 -0
  91. package/dist/theming/getThemeDesignerTheme.js +87 -0
  92. package/dist/theming/preloadLinks.js +23 -0
  93. package/dist/thirdparty/_merge.js +32 -0
  94. package/dist/thirdparty/isPlainObject.js +18 -0
  95. package/dist/thirdparty/merge.js +10 -0
  96. package/dist/types/CSSColor.js +9 -0
  97. package/dist/{dates → types}/CalendarType.js +2 -2
  98. package/dist/types/DataType.js +13 -1
  99. package/dist/types/Float.js +14 -0
  100. package/dist/types/Integer.js +4 -0
  101. package/dist/types/InvisibleMessageMode.js +30 -0
  102. package/dist/types/ItemNavigationBehavior.js +2 -7
  103. package/dist/types/NavigationMode.js +1 -0
  104. package/dist/types/PopupState.js +1 -1
  105. package/dist/types/ValueState.js +2 -1
  106. package/dist/updateShadowRoot.js +29 -0
  107. package/dist/util/AriaLabelHelper.js +41 -0
  108. package/dist/util/Caret.js +32 -0
  109. package/dist/util/ColorConversion.js +370 -0
  110. package/dist/util/FocusableElements.js +30 -11
  111. package/dist/util/HTMLSanitizer.js +7 -0
  112. package/dist/util/InvisibleMessage.js +60 -0
  113. package/dist/util/PopupUtils.js +93 -0
  114. package/dist/util/SlotsHelper.js +43 -0
  115. package/dist/util/StringHelper.js +17 -2
  116. package/dist/util/TabbableElements.js +9 -2
  117. package/dist/util/arraysAreEqual.js +15 -0
  118. package/dist/util/clamp.js +12 -0
  119. package/dist/util/createLinkInHead.js +19 -0
  120. package/dist/util/debounce.js +17 -0
  121. package/dist/util/detectNavigatorLanguage.js +3 -1
  122. package/dist/util/escapeRegex.js +10 -0
  123. package/dist/util/findNodeOwner.js +35 -0
  124. package/dist/util/generateHighlightedMarkup.js +42 -0
  125. package/dist/util/getActiveElement.js +11 -0
  126. package/dist/util/getClassCopy.js +10 -0
  127. package/dist/util/getEffectiveContentDensity.js +5 -0
  128. package/dist/util/getFileExtension.js +21 -0
  129. package/dist/util/getNormalizedTarget.js +16 -0
  130. package/dist/util/getSingletonElementInstance.js +13 -0
  131. package/dist/util/isDefaultSlotProvided.js +11 -0
  132. package/dist/util/isElementInView.js +15 -0
  133. package/dist/util/isNodeHidden.js +1 -5
  134. package/dist/util/isNodeTabbable.js +4 -4
  135. package/dist/util/isValidPropertyName.js +11 -2
  136. package/dist/util/setToArray.js +10 -0
  137. package/hash.txt +1 -0
  138. package/index.js +1 -1
  139. package/lib/generate-asset-parameters/index.js +25 -0
  140. package/lib/generate-styles/index.js +26 -0
  141. package/lib/generate-version-info/index.js +32 -0
  142. package/package-scripts.js +41 -27
  143. package/package.json +22 -14
  144. package/src/AssetRegistry.js +8 -6
  145. package/src/Boot.js +59 -0
  146. package/src/CSP.js +59 -0
  147. package/src/CustomElementsRegistry.js +95 -0
  148. package/src/CustomElementsScope.js +30 -0
  149. package/src/CustomElementsScopeUtils.js +108 -0
  150. package/src/DOMObserver.js +65 -0
  151. package/src/Device.js +71 -773
  152. package/src/EventProvider.js +38 -26
  153. package/src/FeaturesRegistry.js +4 -1
  154. package/src/FontFace.js +20 -56
  155. package/src/InitialConfiguration.js +64 -17
  156. package/src/Keys.js +295 -0
  157. package/src/ManagedStyles.js +83 -0
  158. package/src/MediaRange.js +109 -0
  159. package/src/PropertiesFileFormat.js +95 -0
  160. package/src/Render.js +175 -0
  161. package/src/RenderQueue.js +41 -17
  162. package/src/RenderScheduler.js +24 -145
  163. package/src/Runtimes.js +107 -0
  164. package/src/StaticArea.js +2 -34
  165. package/src/StaticAreaItem.js +69 -35
  166. package/src/SystemCSSVars.js +10 -0
  167. package/src/Theming.js +3 -44
  168. package/src/UI5Element.js +497 -306
  169. package/src/UI5ElementMetadata.js +198 -19
  170. package/src/asset-registries/Icons.js +125 -14
  171. package/src/asset-registries/Illustrations.js +30 -0
  172. package/src/asset-registries/LocaleData.js +114 -51
  173. package/src/asset-registries/Themes.js +37 -30
  174. package/src/asset-registries/i18n.js +80 -34
  175. package/src/assets-meta/IconCollectionsAlias.js +18 -0
  176. package/src/config/AnimationMode.js +16 -2
  177. package/src/config/CalendarType.js +7 -7
  178. package/src/config/FormatSettings.js +5 -1
  179. package/src/config/Icons.js +52 -0
  180. package/src/config/Language.js +62 -3
  181. package/src/config/NoConflict.js +10 -3
  182. package/src/config/Theme.js +32 -3
  183. package/src/css/BusyIndicator.css +80 -0
  184. package/src/css/FontFace.css +75 -0
  185. package/src/css/OverrideFontFace.css +32 -0
  186. package/src/css/SystemCSSVars.css +17 -0
  187. package/src/delegate/ItemNavigation.js +244 -127
  188. package/src/delegate/ResizeHandler.js +78 -38
  189. package/src/delegate/ScrollEnablement.js +122 -14
  190. package/src/features/F6Navigation.js +110 -0
  191. package/src/features/OpenUI5Enablement.js +119 -0
  192. package/src/features/OpenUI5Support.js +125 -0
  193. package/src/getSharedResource.js +30 -0
  194. package/src/i18nBundle.js +62 -11
  195. package/{dist → src/locale}/Locale.js +0 -10
  196. package/src/locale/RTLAwareRegistry.js +14 -0
  197. package/src/locale/applyDirection.js +17 -0
  198. package/src/locale/directionChange.js +32 -0
  199. package/src/locale/getEffectiveDir.js +28 -0
  200. package/src/locale/getLocale.js +41 -0
  201. package/src/locale/languageChange.js +22 -0
  202. package/src/locale/nextFallbackLocale.js +28 -0
  203. package/src/{util → locale}/normalizeLocale.js +8 -31
  204. package/src/renderer/LitRenderer.js +44 -7
  205. package/src/renderer/directives/style-map.js +72 -0
  206. package/src/renderer/executeTemplate.js +34 -0
  207. package/src/theming/CustomStyle.js +47 -6
  208. package/src/theming/ThemeLoaded.js +22 -0
  209. package/src/theming/applyTheme.js +79 -0
  210. package/src/theming/getConstructableStyle.js +30 -0
  211. package/src/theming/getEffectiveLinksHrefs.js +27 -0
  212. package/src/theming/getEffectiveStyle.js +39 -0
  213. package/src/theming/getStylesString.js +15 -0
  214. package/src/theming/getThemeDesignerTheme.js +87 -0
  215. package/src/theming/preloadLinks.js +23 -0
  216. package/src/thirdparty/_merge.js +32 -0
  217. package/src/thirdparty/isPlainObject.js +18 -0
  218. package/src/thirdparty/merge.js +10 -0
  219. package/src/types/CSSColor.js +9 -0
  220. package/src/{dates → types}/CalendarType.js +2 -2
  221. package/src/types/DataType.js +13 -1
  222. package/src/types/Float.js +14 -0
  223. package/src/types/Integer.js +4 -0
  224. package/src/types/InvisibleMessageMode.js +30 -0
  225. package/src/types/ItemNavigationBehavior.js +2 -7
  226. package/src/types/NavigationMode.js +1 -0
  227. package/src/types/PopupState.js +1 -1
  228. package/src/types/ValueState.js +2 -1
  229. package/src/updateShadowRoot.js +29 -0
  230. package/src/util/AriaLabelHelper.js +41 -0
  231. package/src/util/Caret.js +32 -0
  232. package/src/util/ColorConversion.js +370 -0
  233. package/src/util/FocusableElements.js +30 -11
  234. package/src/util/HTMLSanitizer.js +7 -0
  235. package/src/util/InvisibleMessage.js +60 -0
  236. package/src/util/PopupUtils.js +93 -0
  237. package/src/util/SlotsHelper.js +43 -0
  238. package/src/util/StringHelper.js +17 -2
  239. package/src/util/TabbableElements.js +9 -2
  240. package/src/util/arraysAreEqual.js +15 -0
  241. package/src/util/clamp.js +12 -0
  242. package/src/util/createLinkInHead.js +19 -0
  243. package/src/util/debounce.js +17 -0
  244. package/src/util/detectNavigatorLanguage.js +3 -1
  245. package/src/util/escapeRegex.js +10 -0
  246. package/src/util/findNodeOwner.js +35 -0
  247. package/src/util/generateHighlightedMarkup.js +42 -0
  248. package/src/util/getActiveElement.js +11 -0
  249. package/src/util/getClassCopy.js +10 -0
  250. package/src/util/getEffectiveContentDensity.js +5 -0
  251. package/src/util/getFileExtension.js +21 -0
  252. package/src/util/getNormalizedTarget.js +16 -0
  253. package/src/util/getSingletonElementInstance.js +13 -0
  254. package/src/util/isDefaultSlotProvided.js +11 -0
  255. package/src/util/isElementInView.js +15 -0
  256. package/src/util/isNodeHidden.js +1 -5
  257. package/src/util/isNodeTabbable.js +4 -4
  258. package/src/util/isValidPropertyName.js +11 -2
  259. package/src/util/setToArray.js +10 -0
  260. package/used-modules.txt +10 -0
  261. package/bundle.es5.js +0 -28
  262. package/config/.eslintrc.js +0 -3
  263. package/config/rollup.config.js +0 -1
  264. package/dist/Assets.js +0 -2
  265. package/dist/CSS.js +0 -48
  266. package/dist/FormatSettings.js +0 -31
  267. package/dist/LocaleProvider.js +0 -34
  268. package/dist/ResourceLoaderOverrides.js +0 -38
  269. package/dist/SVGIconRegistry.js +0 -54
  270. package/dist/boot.js +0 -25
  271. package/dist/compatibility/DOMObserver.js +0 -62
  272. package/dist/compatibility/patchNodeValue.js +0 -24
  273. package/dist/compatibility/whenPolyfillLoaded.js +0 -26
  274. package/dist/dates/CalendarDate.js +0 -203
  275. package/dist/dates/CalendarUtils.js +0 -99
  276. package/dist/delegate/CustomResize.js +0 -78
  277. package/dist/delegate/NativeResize.js +0 -44
  278. package/dist/events/PseudoEvents.js +0 -58
  279. package/dist/features/browsersupport/Edge.js +0 -6
  280. package/dist/features/browsersupport/IE11.js +0 -41
  281. package/dist/features/calendar/Buddhist.js +0 -1
  282. package/dist/features/calendar/Islamic.js +0 -1
  283. package/dist/features/calendar/Japanese.js +0 -1
  284. package/dist/features/calendar/Persian.js +0 -1
  285. package/dist/generated/assets/cldr/sap/ui/core/cldr/ar.json +0 -5598
  286. package/dist/generated/assets/cldr/sap/ui/core/cldr/ar_EG.json +0 -5598
  287. package/dist/generated/assets/cldr/sap/ui/core/cldr/ar_SA.json +0 -5598
  288. package/dist/generated/assets/cldr/sap/ui/core/cldr/bg.json +0 -4789
  289. package/dist/generated/assets/cldr/sap/ui/core/cldr/ca.json +0 -4801
  290. package/dist/generated/assets/cldr/sap/ui/core/cldr/cs.json +0 -5245
  291. package/dist/generated/assets/cldr/sap/ui/core/cldr/da.json +0 -4696
  292. package/dist/generated/assets/cldr/sap/ui/core/cldr/de.json +0 -4797
  293. package/dist/generated/assets/cldr/sap/ui/core/cldr/de_AT.json +0 -4798
  294. package/dist/generated/assets/cldr/sap/ui/core/cldr/de_CH.json +0 -4796
  295. package/dist/generated/assets/cldr/sap/ui/core/cldr/el.json +0 -4694
  296. package/dist/generated/assets/cldr/sap/ui/core/cldr/el_CY.json +0 -4694
  297. package/dist/generated/assets/cldr/sap/ui/core/cldr/en.json +0 -4777
  298. package/dist/generated/assets/cldr/sap/ui/core/cldr/en_AU.json +0 -4769
  299. package/dist/generated/assets/cldr/sap/ui/core/cldr/en_GB.json +0 -4778
  300. package/dist/generated/assets/cldr/sap/ui/core/cldr/en_HK.json +0 -4784
  301. package/dist/generated/assets/cldr/sap/ui/core/cldr/en_IE.json +0 -4778
  302. package/dist/generated/assets/cldr/sap/ui/core/cldr/en_IN.json +0 -4779
  303. package/dist/generated/assets/cldr/sap/ui/core/cldr/en_NZ.json +0 -4778
  304. package/dist/generated/assets/cldr/sap/ui/core/cldr/en_PG.json +0 -4779
  305. package/dist/generated/assets/cldr/sap/ui/core/cldr/en_SG.json +0 -4780
  306. package/dist/generated/assets/cldr/sap/ui/core/cldr/en_ZA.json +0 -4779
  307. package/dist/generated/assets/cldr/sap/ui/core/cldr/es.json +0 -4719
  308. package/dist/generated/assets/cldr/sap/ui/core/cldr/es_AR.json +0 -4721
  309. package/dist/generated/assets/cldr/sap/ui/core/cldr/es_BO.json +0 -4720
  310. package/dist/generated/assets/cldr/sap/ui/core/cldr/es_CL.json +0 -4721
  311. package/dist/generated/assets/cldr/sap/ui/core/cldr/es_CO.json +0 -4721
  312. package/dist/generated/assets/cldr/sap/ui/core/cldr/es_MX.json +0 -4722
  313. package/dist/generated/assets/cldr/sap/ui/core/cldr/es_PE.json +0 -4720
  314. package/dist/generated/assets/cldr/sap/ui/core/cldr/es_UY.json +0 -4722
  315. package/dist/generated/assets/cldr/sap/ui/core/cldr/es_VE.json +0 -4721
  316. package/dist/generated/assets/cldr/sap/ui/core/cldr/et.json +0 -4776
  317. package/dist/generated/assets/cldr/sap/ui/core/cldr/fa.json +0 -4704
  318. package/dist/generated/assets/cldr/sap/ui/core/cldr/fi.json +0 -4816
  319. package/dist/generated/assets/cldr/sap/ui/core/cldr/fr.json +0 -4788
  320. package/dist/generated/assets/cldr/sap/ui/core/cldr/fr_BE.json +0 -4788
  321. package/dist/generated/assets/cldr/sap/ui/core/cldr/fr_CA.json +0 -4782
  322. package/dist/generated/assets/cldr/sap/ui/core/cldr/fr_CH.json +0 -4806
  323. package/dist/generated/assets/cldr/sap/ui/core/cldr/fr_LU.json +0 -4788
  324. package/dist/generated/assets/cldr/sap/ui/core/cldr/he.json +0 -5133
  325. package/dist/generated/assets/cldr/sap/ui/core/cldr/hi.json +0 -4680
  326. package/dist/generated/assets/cldr/sap/ui/core/cldr/hr.json +0 -4910
  327. package/dist/generated/assets/cldr/sap/ui/core/cldr/hu.json +0 -4664
  328. package/dist/generated/assets/cldr/sap/ui/core/cldr/id.json +0 -4500
  329. package/dist/generated/assets/cldr/sap/ui/core/cldr/it.json +0 -4757
  330. package/dist/generated/assets/cldr/sap/ui/core/cldr/it_CH.json +0 -4757
  331. package/dist/generated/assets/cldr/sap/ui/core/cldr/ja.json +0 -4599
  332. package/dist/generated/assets/cldr/sap/ui/core/cldr/kk.json +0 -4537
  333. package/dist/generated/assets/cldr/sap/ui/core/cldr/ko.json +0 -4574
  334. package/dist/generated/assets/cldr/sap/ui/core/cldr/lt.json +0 -5234
  335. package/dist/generated/assets/cldr/sap/ui/core/cldr/lv.json +0 -4902
  336. package/dist/generated/assets/cldr/sap/ui/core/cldr/ms.json +0 -4352
  337. package/dist/generated/assets/cldr/sap/ui/core/cldr/nb.json +0 -4784
  338. package/dist/generated/assets/cldr/sap/ui/core/cldr/nl.json +0 -4790
  339. package/dist/generated/assets/cldr/sap/ui/core/cldr/nl_BE.json +0 -4790
  340. package/dist/generated/assets/cldr/sap/ui/core/cldr/pl.json +0 -5223
  341. package/dist/generated/assets/cldr/sap/ui/core/cldr/pt.json +0 -4703
  342. package/dist/generated/assets/cldr/sap/ui/core/cldr/pt_PT.json +0 -4753
  343. package/dist/generated/assets/cldr/sap/ui/core/cldr/ro.json +0 -4881
  344. package/dist/generated/assets/cldr/sap/ui/core/cldr/ru.json +0 -5157
  345. package/dist/generated/assets/cldr/sap/ui/core/cldr/ru_UA.json +0 -5157
  346. package/dist/generated/assets/cldr/sap/ui/core/cldr/sk.json +0 -5125
  347. package/dist/generated/assets/cldr/sap/ui/core/cldr/sl.json +0 -5105
  348. package/dist/generated/assets/cldr/sap/ui/core/cldr/sr.json +0 -4908
  349. package/dist/generated/assets/cldr/sap/ui/core/cldr/sv.json +0 -4818
  350. package/dist/generated/assets/cldr/sap/ui/core/cldr/th.json +0 -4633
  351. package/dist/generated/assets/cldr/sap/ui/core/cldr/tr.json +0 -4791
  352. package/dist/generated/assets/cldr/sap/ui/core/cldr/uk.json +0 -5126
  353. package/dist/generated/assets/cldr/sap/ui/core/cldr/vi.json +0 -4510
  354. package/dist/generated/assets/cldr/sap/ui/core/cldr/zh_CN.json +0 -4469
  355. package/dist/generated/assets/cldr/sap/ui/core/cldr/zh_HK.json +0 -4479
  356. package/dist/generated/assets/cldr/sap/ui/core/cldr/zh_SG.json +0 -4479
  357. package/dist/generated/assets/cldr/sap/ui/core/cldr/zh_TW.json +0 -4565
  358. package/dist/json-imports/LocaleData.js +0 -171
  359. package/dist/renderer/ifDefined.js +0 -21
  360. package/dist/resources/bundle.es5.js +0 -12643
  361. package/dist/resources/bundle.es5.js.map +0 -1
  362. package/dist/resources/bundle.esm.js +0 -7450
  363. package/dist/resources/bundle.esm.js.map +0 -1
  364. package/dist/shims/Core-shim.js +0 -52
  365. package/dist/shims/jquery-shim.js +0 -89
  366. package/dist/test-resources/assets/Themes.js +0 -11
  367. package/dist/test-resources/elements/Child.js +0 -35
  368. package/dist/test-resources/elements/Generic.js +0 -83
  369. package/dist/test-resources/elements/GenericExt.js +0 -26
  370. package/dist/test-resources/elements/NoShadowDOM.js +0 -13
  371. package/dist/test-resources/elements/Parent.js +0 -36
  372. package/dist/test-resources/pages/AllTestElements.html +0 -42
  373. package/dist/test-resources/pages/Configuration.html +0 -20
  374. package/dist/test-resources/pages/ConfigurationScript.html +0 -36
  375. package/dist/test-resources/specs/ConfigurationChange.spec.js +0 -25
  376. package/dist/test-resources/specs/ConfigurationScript.spec.js +0 -61
  377. package/dist/test-resources/specs/ConfigurationURL.spec.js +0 -45
  378. package/dist/test-resources/specs/CustomTheme.spec.js +0 -25
  379. package/dist/test-resources/specs/Theming.spec.js +0 -31
  380. package/dist/test-resources/specs/UI5ElementInvalidation.js +0 -258
  381. package/dist/test-resources/specs/UI5ElementLifecycle.js +0 -93
  382. package/dist/test-resources/specs/UI5ElementListenForChildPropChanges.spec.js +0 -101
  383. package/dist/test-resources/specs/UI5ElementMetadataExt.js +0 -40
  384. package/dist/test-resources/specs/UI5ElementPropertyValidation.js +0 -12
  385. package/dist/test-resources/specs/UI5ElementPropsAndAttrs.spec.js +0 -65
  386. package/dist/test-resources/specs/UI5ElementShadowDOM.js +0 -22
  387. package/dist/test-resources/specs/UI5ElementSlots.js +0 -34
  388. package/dist/theming/StyleInjection.js +0 -67
  389. package/dist/thirdparty/Array.from.js +0 -16
  390. package/dist/thirdparty/Array.prototype.fill.js +0 -44
  391. package/dist/thirdparty/Array.prototype.find.js +0 -46
  392. package/dist/thirdparty/Array.prototype.includes.js +0 -51
  393. package/dist/thirdparty/Element.prototype.closest.js +0 -11
  394. package/dist/thirdparty/Element.prototype.matches.js +0 -6
  395. package/dist/thirdparty/Map.prototype.keys.js +0 -9
  396. package/dist/thirdparty/Number.isInteger.js +0 -5
  397. package/dist/thirdparty/Number.isNaN.js +0 -1
  398. package/dist/thirdparty/Number.parseInt.js +0 -1
  399. package/dist/thirdparty/Object.assign.js +0 -31
  400. package/dist/thirdparty/Object.entries.js +0 -11
  401. package/dist/thirdparty/Symbol.js +0 -2
  402. package/dist/thirdparty/WeakSet.js +0 -27
  403. package/dist/thirdparty/events-polyfills.js +0 -89
  404. package/dist/thirdparty/fetch.js +0 -1
  405. package/dist/thirdparty/template.js +0 -600
  406. package/dist/util/CSSTransformUtils.js +0 -90
  407. package/dist/webcomponentsjs/LICENSE.md +0 -19
  408. package/dist/webcomponentsjs/README.md +0 -229
  409. package/dist/webcomponentsjs/bundles/webcomponents-ce.js +0 -63
  410. package/dist/webcomponentsjs/bundles/webcomponents-ce.js.map +0 -1
  411. package/dist/webcomponentsjs/bundles/webcomponents-sd-ce-pf.js +0 -297
  412. package/dist/webcomponentsjs/bundles/webcomponents-sd-ce-pf.js.map +0 -1
  413. package/dist/webcomponentsjs/bundles/webcomponents-sd-ce.js +0 -208
  414. package/dist/webcomponentsjs/bundles/webcomponents-sd-ce.js.map +0 -1
  415. package/dist/webcomponentsjs/bundles/webcomponents-sd.js +0 -166
  416. package/dist/webcomponentsjs/bundles/webcomponents-sd.js.map +0 -1
  417. package/dist/webcomponentsjs/custom-elements-es5-adapter.js +0 -15
  418. package/dist/webcomponentsjs/package.json +0 -46
  419. package/dist/webcomponentsjs/src/entrypoints/custom-elements-es5-adapter-index.js +0 -16
  420. package/dist/webcomponentsjs/src/entrypoints/webcomponents-bundle-index.js +0 -53
  421. package/dist/webcomponentsjs/src/entrypoints/webcomponents-ce-index.js +0 -17
  422. package/dist/webcomponentsjs/src/entrypoints/webcomponents-sd-ce-index.js +0 -19
  423. package/dist/webcomponentsjs/src/entrypoints/webcomponents-sd-ce-pf-index.js +0 -28
  424. package/dist/webcomponentsjs/src/entrypoints/webcomponents-sd-index.js +0 -18
  425. package/dist/webcomponentsjs/webcomponents-bundle.js +0 -298
  426. package/dist/webcomponentsjs/webcomponents-bundle.js.map +0 -1
  427. package/dist/webcomponentsjs/webcomponents-loader.js +0 -185
  428. package/src/Assets.js +0 -2
  429. package/src/CSS.js +0 -48
  430. package/src/FormatSettings.js +0 -31
  431. package/src/LocaleProvider.js +0 -34
  432. package/src/ResourceLoaderOverrides.js +0 -38
  433. package/src/SVGIconRegistry.js +0 -54
  434. package/src/boot.js +0 -25
  435. package/src/compatibility/DOMObserver.js +0 -62
  436. package/src/compatibility/patchNodeValue.js +0 -24
  437. package/src/compatibility/whenPolyfillLoaded.js +0 -26
  438. package/src/dates/CalendarDate.js +0 -203
  439. package/src/dates/CalendarUtils.js +0 -99
  440. package/src/delegate/CustomResize.js +0 -78
  441. package/src/delegate/NativeResize.js +0 -44
  442. package/src/events/PseudoEvents.js +0 -58
  443. package/src/features/browsersupport/Edge.js +0 -6
  444. package/src/features/browsersupport/IE11.js +0 -41
  445. package/src/features/calendar/Buddhist.js +0 -1
  446. package/src/features/calendar/Islamic.js +0 -1
  447. package/src/features/calendar/Japanese.js +0 -1
  448. package/src/features/calendar/Persian.js +0 -1
  449. package/src/json-imports/LocaleData.js +0 -171
  450. package/src/renderer/ifDefined.js +0 -21
  451. package/src/shims/Core-shim.js +0 -52
  452. package/src/shims/jquery-shim.js +0 -89
  453. package/src/theming/StyleInjection.js +0 -67
  454. package/src/thirdparty/Array.from.js +0 -16
  455. package/src/thirdparty/Array.prototype.fill.js +0 -44
  456. package/src/thirdparty/Array.prototype.find.js +0 -46
  457. package/src/thirdparty/Array.prototype.includes.js +0 -51
  458. package/src/thirdparty/Element.prototype.closest.js +0 -11
  459. package/src/thirdparty/Element.prototype.matches.js +0 -6
  460. package/src/thirdparty/Map.prototype.keys.js +0 -9
  461. package/src/thirdparty/Number.isInteger.js +0 -5
  462. package/src/thirdparty/Number.isNaN.js +0 -1
  463. package/src/thirdparty/Number.parseInt.js +0 -1
  464. package/src/thirdparty/Object.assign.js +0 -31
  465. package/src/thirdparty/Object.entries.js +0 -11
  466. package/src/thirdparty/Symbol.js +0 -2
  467. package/src/thirdparty/WeakSet.js +0 -27
  468. package/src/thirdparty/events-polyfills.js +0 -89
  469. package/src/thirdparty/fetch.js +0 -1
  470. package/src/thirdparty/template.js +0 -600
  471. package/src/util/CSSTransformUtils.js +0 -90
package/.eslintignore CHANGED
@@ -1,5 +1,6 @@
1
1
  # Note: Changes to this file also must be applied to the top level .eslintignore file.
2
2
  test
3
+ lib
3
4
  dist
4
5
  src/thirdparty
5
6
  bundle.esm.js
@@ -8,3 +9,6 @@ rollup.config*.js
8
9
  wdio.conf.js
9
10
  postcss.config.js
10
11
  package-scripts.js
12
+ .eslintrc.js
13
+ src/renderer/directives/style-map.js
14
+ src/util/metaUrl.js
package/CHANGELOG.md CHANGED
@@ -3,6 +3,413 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [1.4.0](https://github.com/SAP/ui5-webcomponents/compare/v1.3.1...v1.4.0) (2022-05-25)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **framework:** use fonts from proper SDK URL ([#5141](https://github.com/SAP/ui5-webcomponents/issues/5141)) ([2e49248](https://github.com/SAP/ui5-webcomponents/commit/2e49248))
12
+ * **framework:** fix keydown events for all inputs ([#5188](https://github.com/SAP/ui5-webcomponents/issues/5188)) ([11dfe94](https://github.com/SAP/ui5-webcomponents/commit/11dfe94))
13
+ * **framework:** fix fallback to default theme ([#5185](https://github.com/SAP/ui5-webcomponents/issues/5185)) ([0fc2f0d](https://github.com/SAP/ui5-webcomponents/commit/0fc2f0d)), closes [#5136](https://github.com/SAP/ui5-webcomponents/issues/5136) [#5136](https://github.com/SAP/ui5-webcomponents/issues/5136)
14
+
15
+
16
+
17
+
18
+ ## [1.3.1](https://github.com/SAP/ui5-webcomponents/compare/v1.3.0...v1.3.1) (2022-04-27)
19
+
20
+ **Note:** Version bump only for package @ui5/webcomponents-base
21
+
22
+
23
+
24
+
25
+
26
+ # [1.3.0](https://github.com/SAP/ui5-webcomponents/compare/v1.2.4...v1.3.0) (2022-04-19)
27
+
28
+
29
+ ### Bug Fixes
30
+
31
+ * **framework:** make listeners passive ([#5012](https://github.com/SAP/ui5-webcomponents/issues/5012)) ([30f2dc7](https://github.com/SAP/ui5-webcomponents/commit/30f2dc7))
32
+ * **framework:** fix F6 navigation on windows browsers ([#4886](https://github.com/SAP/ui5-webcomponents/issues/4886)) ([36fd3d1](https://github.com/SAP/ui5-webcomponents/commit/36fd3d1))
33
+ * **framework:** fix submit event handling in forms ([#4942](https://github.com/SAP/ui5-webcomponents/issues/4942)) ([883809f](https://github.com/SAP/ui5-webcomponents/commit/883809f))
34
+ * **framework:** add 72-* font as system styles ([#4934](https://github.com/SAP/ui5-webcomponents/issues/4934)) ([4b45d32](https://github.com/SAP/ui5-webcomponents/commit/4b45d32))
35
+ * **framework:** fix scoping of self tag ([#4952](https://github.com/SAP/ui5-webcomponents/issues/4952)) ([8d53e95](https://github.com/SAP/ui5-webcomponents/commit/8d53e95))
36
+
37
+
38
+ ### Features
39
+
40
+ * **framework:** configure default icon collection per theme ([#5031](https://github.com/SAP/ui5-webcomponents/issues/5031)) ([7f84b83](https://github.com/SAP/ui5-webcomponents/commit/7f84b83))
41
+
42
+
43
+
44
+
45
+
46
+ ## [1.2.4](https://github.com/SAP/ui5-webcomponents/compare/v1.2.3...v1.2.4) (2022-03-30)
47
+
48
+
49
+ ### Bug Fixes
50
+
51
+ * **framework:** fix scoping of self tag ([#4952](https://github.com/SAP/ui5-webcomponents/issues/4952)) ([cdb9e2a](https://github.com/SAP/ui5-webcomponents/commit/cdb9e2a))
52
+ * **ui5-card-header:** prevent events from action slot to trigger header's click event ([#4965](https://github.com/SAP/ui5-webcomponents/issues/4965)) ([f87d898](https://github.com/SAP/ui5-webcomponents/commit/f87d898)), closes [#4891](https://github.com/SAP/ui5-webcomponents/issues/4891)
53
+ * **ui5-popover:** prevent arrow placement over popover's rounded corners ([#4960](https://github.com/SAP/ui5-webcomponents/issues/4960)) ([66604c3](https://github.com/SAP/ui5-webcomponents/commit/66604c3)), closes [#4599](https://github.com/SAP/ui5-webcomponents/issues/4599) [#4797](https://github.com/SAP/ui5-webcomponents/issues/4797)
54
+
55
+
56
+
57
+
58
+
59
+ ## [1.2.3](https://github.com/SAP/ui5-webcomponents/compare/v1.2.2...v1.2.3) (2022-03-23)
60
+
61
+ **Note:** Version bump only for package @ui5/webcomponents-base
62
+
63
+
64
+
65
+
66
+
67
+ ## [1.2.2](https://github.com/SAP/ui5-webcomponents/compare/v1.2.1...v1.2.2) (2022-03-22)
68
+
69
+
70
+ ### Bug Fixes
71
+
72
+ * **framework:** add 72-* font as system styles ([#4934](https://github.com/SAP/ui5-webcomponents/issues/4934)) ([8f9b0d2](https://github.com/SAP/ui5-webcomponents/commit/8f9b0d2))
73
+ * **localization:** fix js error if "sh" locale set ([#4905](https://github.com/SAP/ui5-webcomponents/issues/4905)) ([9ace82c](https://github.com/SAP/ui5-webcomponents/commit/9ace82c)), closes [#4904](https://github.com/SAP/ui5-webcomponents/issues/4904)
74
+
75
+
76
+ ### Features
77
+
78
+ * add ` sap_horizon_dark` and `sap_horizon_hcb(hcw)` theme params ([#4722](https://github.com/SAP/ui5-webcomponents/issues/4722)) ([dc070a1](https://github.com/SAP/ui5-webcomponents/commit/dc070a1))
79
+
80
+
81
+
82
+
83
+
84
+ ## [1.2.1](https://github.com/SAP/ui5-webcomponents/compare/v1.2.0...v1.2.1) (2022-03-02)
85
+
86
+ **Note:** Version bump only for package @ui5/webcomponents-base
87
+
88
+
89
+
90
+
91
+
92
+ # [1.2.0](https://github.com/SAP/ui5-webcomponents/compare/v1.1.2...v1.2.0) (2022-02-28)
93
+
94
+
95
+ ### Bug Fixes
96
+
97
+ * **ui5-input:** improve lazy loading behaviour ([#4763](https://github.com/SAP/ui5-webcomponents/issues/4763)) ([35342be](https://github.com/SAP/ui5-webcomponents/commit/35342be))
98
+ * **ui5-list:** initial focus target ([#4809](https://github.com/SAP/ui5-webcomponents/issues/4809)) ([cf6dd1a](https://github.com/SAP/ui5-webcomponents/commit/cf6dd1a))
99
+ * attached boot tasks always run ([#4777](https://github.com/SAP/ui5-webcomponents/issues/4777)) ([ad4608c](https://github.com/SAP/ui5-webcomponents/commit/ad4608c))
100
+ * **framework:** Tabbable elements error ([#4704](https://github.com/SAP/ui5-webcomponents/issues/4704)) ([650473f](https://github.com/SAP/ui5-webcomponents/commit/650473f))
101
+ * **ui5-badge:** update color-scheme parameters ([#4678](https://github.com/SAP/ui5-webcomponents/issues/4678)) ([c7d75ef](https://github.com/SAP/ui5-webcomponents/commit/c7d75ef)), closes [#3940](https://github.com/SAP/ui5-webcomponents/issues/3940)
102
+ * **ui5-label:** allow focusing elements linked with for attribute inside a shadow root ([#4754](https://github.com/SAP/ui5-webcomponents/issues/4754)) ([bd7a8a1](https://github.com/SAP/ui5-webcomponents/commit/bd7a8a1)), closes [#4751](https://github.com/SAP/ui5-webcomponents/issues/4751)
103
+ * **ui5-li-tree:** correct usage of i18nBudnle ([#4668](https://github.com/SAP/ui5-webcomponents/issues/4668)) ([67848d7](https://github.com/SAP/ui5-webcomponents/commit/67848d7))
104
+ * **ui5-select:** incorrect popover styles when value state is used ([#4651](https://github.com/SAP/ui5-webcomponents/issues/4651)) ([2d8ce46](https://github.com/SAP/ui5-webcomponents/commit/2d8ce46))
105
+ * **ui5-tabcontainer:** await for renderFinished in resize handler ([#4675](https://github.com/SAP/ui5-webcomponents/issues/4675)) ([cd8dc26](https://github.com/SAP/ui5-webcomponents/commit/cd8dc26)), closes [#4628](https://github.com/SAP/ui5-webcomponents/issues/4628)
106
+
107
+
108
+ ### Features
109
+
110
+ * add and update icons from 4.13 and 5.01 icon fonts ([#4790](https://github.com/SAP/ui5-webcomponents/issues/4790)) ([a9e88f0](https://github.com/SAP/ui5-webcomponents/commit/a9e88f0))
111
+ * **ui5-input:** implement showClearIcon property ([#4641](https://github.com/SAP/ui5-webcomponents/issues/4641)) ([b1c1620](https://github.com/SAP/ui5-webcomponents/commit/b1c1620))
112
+ * **ui5-table:** extend keyboard handling ([#4550](https://github.com/SAP/ui5-webcomponents/issues/4550)) ([8daa764](https://github.com/SAP/ui5-webcomponents/commit/8daa764)), closes [#3090](https://github.com/SAP/ui5-webcomponents/issues/3090)
113
+ * **ui5-table:** improve keyboard handling ([#4631](https://github.com/SAP/ui5-webcomponents/issues/4631)) ([f1f2b1b](https://github.com/SAP/ui5-webcomponents/commit/f1f2b1b))
114
+ * **ui5-tree:** make `item-click` event preventable ([#4708](https://github.com/SAP/ui5-webcomponents/issues/4708)) ([29967f0](https://github.com/SAP/ui5-webcomponents/commit/29967f0)), closes [#4502](https://github.com/SAP/ui5-webcomponents/issues/4502)
115
+
116
+
117
+
118
+
119
+
120
+ ## [1.1.2](https://github.com/SAP/ui5-webcomponents/compare/v1.1.1...v1.1.2) (2022-01-26)
121
+
122
+
123
+ ### Bug Fixes
124
+
125
+ * fix ipad recognition ([#4632](https://github.com/SAP/ui5-webcomponents/issues/4632)) ([c0cc73d](https://github.com/SAP/ui5-webcomponents/commit/c0cc73d))
126
+ * remove import.meta.url ([#4630](https://github.com/SAP/ui5-webcomponents/issues/4630)) ([604ce63](https://github.com/SAP/ui5-webcomponents/commit/604ce63))
127
+
128
+
129
+ ### Features
130
+
131
+ * **ui5-multi-input:** Keyboard handling ([#4495](https://github.com/SAP/ui5-webcomponents/issues/4495)) ([b978f4a](https://github.com/SAP/ui5-webcomponents/commit/b978f4a))
132
+
133
+
134
+
135
+
136
+
137
+ ## [1.1.1](https://github.com/SAP/ui5-webcomponents/compare/v1.1.0...v1.1.1) (2022-01-24)
138
+
139
+ **Note:** Version bump only for package @ui5/webcomponents-base
140
+
141
+
142
+
143
+
144
+
145
+ # [1.1.0](https://github.com/SAP/ui5-webcomponents/compare/v1.0.2...v1.1.0) (2022-01-21)
146
+
147
+
148
+ ### Bug Fixes
149
+
150
+ * **framework:** correct scoping issues ([#4573](https://github.com/SAP/ui5-webcomponents/issues/4573)) ([4e430d3](https://github.com/SAP/ui5-webcomponents/commit/4e430d3))
151
+ * **framework:** prevent runtime error on malformed custom theme object ([#4375](https://github.com/SAP/ui5-webcomponents/issues/4375)) ([3215c7d](https://github.com/SAP/ui5-webcomponents/commit/3215c7d))
152
+
153
+
154
+ ### Features
155
+
156
+ * **framework:** implement F6 Navigation Helper ([#4490](https://github.com/SAP/ui5-webcomponents/issues/4490)) ([60d0dc1](https://github.com/SAP/ui5-webcomponents/commit/60d0dc1))
157
+ * **framework:** add support for `stable-dom-ref` for abstract items ([#4604](https://github.com/SAP/ui5-webcomponents/issues/4604)) ([5526dea](https://github.com/SAP/ui5-webcomponents/commit/5526dea))
158
+ * **framework:** introduce runtime and version info ([#4491](https://github.com/SAP/ui5-webcomponents/issues/4491)) ([757577f](https://github.com/SAP/ui5-webcomponents/commit/757577f))
159
+
160
+
161
+
162
+
163
+
164
+ ## [1.0.2](https://github.com/SAP/ui5-webcomponents/compare/v1.0.1...v1.0.2) (2021-11-29)
165
+
166
+
167
+ ### Bug Fixes
168
+
169
+ * prevent runtime error on malformed custom theme object ([#4375](https://github.com/SAP/ui5-webcomponents/issues/4375)) ([dd10d7c](https://github.com/SAP/ui5-webcomponents/commit/dd10d7c))
170
+
171
+
172
+
173
+
174
+
175
+ ## [1.0.1](https://github.com/SAP/ui5-webcomponents/compare/v1.0.0...v1.0.1) (2021-11-10)
176
+
177
+ **Note:** Version bump only for package @ui5/webcomponents-base
178
+
179
+
180
+
181
+
182
+
183
+ # [1.0.0](https://github.com/SAP/ui5-webcomponents/compare/v1.0.0-rc.16...v1.0.0) (2021-11-10)
184
+
185
+
186
+ **Note:** Version bump only for package @ui5/webcomponents-base
187
+
188
+
189
+
190
+
191
+
192
+ # [1.0.0-rc.16](https://github.com/SAP/ui5-webcomponents/compare/v1.0.0-rc.15...v1.0.0-rc.16) (2021-11-09)
193
+
194
+
195
+ ### Bug Fixes
196
+
197
+ * **framework:** apply RTL for components with popovers ([#3657](https://github.com/SAP/ui5-webcomponents/issues/3657)) ([28e868b](https://github.com/SAP/ui5-webcomponents/commit/28e868b))
198
+ * **framework:** Multiple properties have no attribute ([#3725](https://github.com/SAP/ui5-webcomponents/issues/3725)) ([2548935](https://github.com/SAP/ui5-webcomponents/commit/2548935))
199
+ * **framework:** removing the base theme works with adopted stylesheets ([#4158](https://github.com/SAP/ui5-webcomponents/issues/4158)) ([aa1f594](https://github.com/SAP/ui5-webcomponents/commit/aa1f594))
200
+ * **framework:** detach events correctly to prevent memory leaks ([#3941](https://github.com/SAP/ui5-webcomponents/issues/3941)) ([6c877ee](https://github.com/SAP/ui5-webcomponents/commit/6c877ee))
201
+
202
+
203
+ ### Features
204
+
205
+ * **framework:** add SAP-icons5.0 ([#4244](https://github.com/SAP/ui5-webcomponents/issues/4244)) ([c0a226e](https://github.com/SAP/ui5-webcomponents/commit/c0a226e))
206
+ * rework stableDomRef concept ([#4210](https://github.com/SAP/ui5-webcomponents/issues/4210)) ([d1ebea3](https://github.com/SAP/ui5-webcomponents/commit/d1ebea3))
207
+ * **framework:** allow using a custom i18n library ([#4119](https://github.com/SAP/ui5-webcomponents/issues/4119)) ([56f366f](https://github.com/SAP/ui5-webcomponents/commit/56f366f))
208
+ * **framework:** Implement better custom theme support ([#4121](https://github.com/SAP/ui5-webcomponents/issues/4121)) ([31e30f8](https://github.com/SAP/ui5-webcomponents/commit/31e30f8))
209
+ * **framework:** handle Page UP/DOWN ([#3727](https://github.com/SAP/ui5-webcomponents/issues/3727)) ([91a974f](https://github.com/SAP/ui5-webcomponents/commit/91a974f))
210
+ * **framework:** introduce sap_horizon theme initial draft ([#3991](https://github.com/SAP/ui5-webcomponents/issues/3991)) ([b1afaf0](https://github.com/SAP/ui5-webcomponents/commit/b1afaf0)), closes [#3988](https://github.com/SAP/ui5-webcomponents/issues/3988)
211
+ * **framework:** load "72Black" font face ([#4139](https://github.com/SAP/ui5-webcomponents/issues/4139)) ([2be7869](https://github.com/SAP/ui5-webcomponents/commit/2be7869))
212
+
213
+
214
+
215
+
216
+
217
+ # [1.0.0-rc.15](https://github.com/SAP/ui5-webcomponents/compare/v1.0.0-rc.14...v1.0.0-rc.15) (2021-07-23)
218
+
219
+
220
+ ### Features
221
+
222
+ * **framework:** expose dist paths as root paths via package.json export field ([#3274](https://github.com/SAP/ui5-webcomponents/issues/3274)) ([bd34a5e](https://github.com/SAP/ui5-webcomponents/commit/bd34a5e))
223
+ * **framework:** support sap-* config URL params ([#3138](https://github.com/SAP/ui5-webcomponents/issues/3138)) ([5d9cdb9](https://github.com/SAP/ui5-webcomponents/commit/5d9cdb9)), closes [#3114](https://github.com/SAP/ui5-webcomponents/issues/3114)
224
+ * **framework:** introduce InvisibleMessage util ([#3192](https://github.com/SAP/ui5-webcomponents/issues/3192)) ([0a33c40](https://github.com/SAP/ui5-webcomponents/commit/0a33c40))
225
+
226
+
227
+ # [1.0.0-rc.13](https://github.com/SAP/ui5-webcomponents/compare/v1.0.0-rc.12...v1.0.0-rc.13) (2021-03-26)
228
+
229
+
230
+ ### Bug Fixes
231
+
232
+ * **framework:** adapt ie11 package for usage in modern browsers ([#2878](https://github.com/SAP/ui5-webcomponents/issues/2878)) ([70bbfbb](https://github.com/SAP/ui5-webcomponents/commit/70bbfbb))
233
+ * **framework:** add fallback for CLDR dev use case ([#2844](https://github.com/SAP/ui5-webcomponents/issues/2844)) ([deb173a](https://github.com/SAP/ui5-webcomponents/commit/deb173a))
234
+
235
+
236
+ ### Features
237
+
238
+ * **framework:** Create attachDirectionChange function ([#2646](https://github.com/SAP/ui5-webcomponents/issues/2646)) ([b4f836a](https://github.com/SAP/ui5-webcomponents/commit/b4f836a))
239
+ * **framework:** ItemNavigation cyclic behavior implemented for multiple rows ([#2780](https://github.com/SAP/ui5-webcomponents/issues/2780)) ([b7ad1ea](https://github.com/SAP/ui5-webcomponents/commit/b7ad1ea))
240
+ * **framework:** Maintain a common z-index for all UI5 Web Components instances and OpenUI5 ([#2980](https://github.com/SAP/ui5-webcomponents/issues/2980)) ([13bdc02](https://github.com/SAP/ui5-webcomponents/commit/13bdc02))
241
+ * **ui5-color-palette:** initial implementation ([#2731](https://github.com/SAP/ui5-webcomponents/issues/2731)) ([772424e](https://github.com/SAP/ui5-webcomponents/commit/772424e))
242
+ * **ui5-color-picker:** initial implementation ([#2769](https://github.com/SAP/ui5-webcomponents/issues/2769)) ([6a70e5a](https://github.com/SAP/ui5-webcomponents/commit/6a70e5a))
243
+ * **ui5-list:** introduce "growing" property ([#2950](https://github.com/SAP/ui5-webcomponents/issues/2950)) ([6fbbb21](https://github.com/SAP/ui5-webcomponents/commit/6fbbb21)), closes [#2882](https://github.com/SAP/ui5-webcomponents/issues/2882) [#2882](https://github.com/SAP/ui5-webcomponents/issues/2882)
244
+ * **ui5-step-input:** inintial implementation ([#2804](https://github.com/SAP/ui5-webcomponents/issues/2804)) ([d80420e](https://github.com/SAP/ui5-webcomponents/commit/d80420e)), closes [#2640](https://github.com/SAP/ui5-webcomponents/issues/2640)
245
+ * **ui5-tabcontainer:** support responsive paddings ([#2775](https://github.com/SAP/ui5-webcomponents/issues/2775)) ([19392ff](https://github.com/SAP/ui5-webcomponents/commit/19392ff)), closes [#2539](https://github.com/SAP/ui5-webcomponents/issues/2539)
246
+ * add dynamic imports for .json assets ([#2740](https://github.com/SAP/ui5-webcomponents/issues/2740)) ([46e38fb](https://github.com/SAP/ui5-webcomponents/commit/46e38fb))
247
+ * **ui5-table:** add growing on scroll ([#2593](https://github.com/SAP/ui5-webcomponents/issues/2593)) ([87520c2](https://github.com/SAP/ui5-webcomponents/commit/87520c2)), closes [#2589](https://github.com/SAP/ui5-webcomponents/issues/2589) [#2570](https://github.com/SAP/ui5-webcomponents/issues/2570)
248
+ * create @ui5/webcomponents-ie11 package ([#2686](https://github.com/SAP/ui5-webcomponents/issues/2686)) ([1d3b37e](https://github.com/SAP/ui5-webcomponents/commit/1d3b37e))
249
+ * **ui5-slider:** focus and keyboard handling implementation ([#2614](https://github.com/SAP/ui5-webcomponents/issues/2614)) ([7b78c16](https://github.com/SAP/ui5-webcomponents/commit/7b78c16))
250
+ * refactoring and new features for pickers ([#2598](https://github.com/SAP/ui5-webcomponents/issues/2598)) ([3e684b4](https://github.com/SAP/ui5-webcomponents/commit/3e684b4))
251
+
252
+
253
+
254
+
255
+
256
+ # [1.0.0-rc.12](https://github.com/SAP/ui5-webcomponents/compare/v1.0.0-rc.11...v1.0.0-rc.12) (2021-02-18)
257
+
258
+
259
+ ### Bug Fixes
260
+
261
+ * **theming:** fix error message ([#2818](https://github.com/SAP/ui5-webcomponents/issues/2818)) ([7a0732a](https://github.com/SAP/ui5-webcomponents/commit/7a0732a))
262
+ * **i18n:** ui5-icon i18n works for all packages ([#2816](https://github.com/SAP/ui5-webcomponents/issues/2816)) ([91e16a1](https://github.com/SAP/ui5-webcomponents/commit/91e16a1))
263
+
264
+ ### Features
265
+
266
+ * **framework:** add dynamic imports for .json assets ([#2740](https://github.com/SAP/ui5-webcomponents/issues/2740)) ([46e38fb](https://github.com/SAP/ui5-webcomponents/commit/46e38fb))
267
+ * **framework:** Create attachDirectionChange function ([#2646](https://github.com/SAP/ui5-webcomponents/issues/2646)) ([b4f836a](https://github.com/SAP/ui5-webcomponents/commit/b4f836a))
268
+ * **framework:** ItemNavigation cyclic behavior implemented for multiple rows ([#2780](https://github.com/SAP/ui5-webcomponents/issues/2780)) ([b7ad1ea](https://github.com/SAP/ui5-webcomponents/commit/b7ad1ea))
269
+
270
+
271
+
272
+
273
+ # [1.0.0-rc.11](https://github.com/SAP/ui5-webcomponents/compare/v1.0.0-rc.10...v1.0.0-rc.11) (2020-12-21)
274
+
275
+
276
+ ### Bug Fixes
277
+
278
+ * **ui5-dialog:** apply initial focus after rendering ([#2551](https://github.com/SAP/ui5-webcomponents/issues/2551)) ([dba0265](https://github.com/SAP/ui5-webcomponents/commit/dba0265)), closes [#2537](https://github.com/SAP/ui5-webcomponents/issues/2537)
279
+
280
+
281
+ ### Features
282
+
283
+ * **framework:** Change child-parent invalidation API ([#2541](https://github.com/SAP/ui5-webcomponents/issues/2541)) ([a1a3f80](https://github.com/SAP/ui5-webcomponents/commit/a1a3f80))
284
+ * **ui5-calendar:** introduce new component. ([#2424](https://github.com/SAP/ui5-webcomponents/issues/2424)) ([5470e23](https://github.com/SAP/ui5-webcomponents/commit/5470e23)), closes [#1730](https://github.com/SAP/ui5-webcomponents/issues/1730)
285
+
286
+
287
+
288
+
289
+
290
+ # [1.0.0-rc.10](https://github.com/SAP/ui5-webcomponents/compare/v1.0.0-rc.9...v1.0.0-rc.10) (2020-11-12)
291
+
292
+
293
+ ### Bug Fixes
294
+
295
+ * **framework:** fix JS error on setLanguage call ([#2328](https://github.com/SAP/ui5-webcomponents/issues/2328)) ([f9b9ead](https://github.com/SAP/ui5-webcomponents/commit/f9b9ead))
296
+
297
+ ### Features
298
+
299
+ * **framework:** make getStableDomRef search in the static area item … ([#2363](https://github.com/SAP/ui5-webcomponents/issues/2363)) ([a68dfbb](https://github.com/SAP/ui5-webcomponents/commit/a68dfbb))
300
+
301
+ # [1.0.0-rc.9](https://github.com/SAP/ui5-webcomponents/compare/v1.0.0-rc.8...v1.0.0-rc.9) (2020-10-08)
302
+
303
+
304
+ ### Bug Fixes
305
+
306
+ * **components:** fix setting contentDensity styles ([#2094](https://github.com/SAP/ui5-webcomponents/issues/2094)) ([9454ab7](https://github.com/SAP/ui5-webcomponents/commit/9454ab7)), closes [#2093](https://github.com/SAP/ui5-webcomponents/issues/2093)
307
+ * **framework:** Allow role as a property name ([#2290](https://github.com/SAP/ui5-webcomponents/issues/2290)) ([a816cef](https://github.com/SAP/ui5-webcomponents/commit/a816cef))
308
+ * **framework:** Do not create IE styles with disabled ([#2284](https://github.com/SAP/ui5-webcomponents/issues/2284)) ([5ecc51e](https://github.com/SAP/ui5-webcomponents/commit/5ecc51e))
309
+
310
+
311
+ ### Features
312
+
313
+ * **framework:** Add API to subscribe/unsubscribe for theme loaded ([#2303](https://github.com/SAP/ui5-webcomponents/issues/2303)) ([c8ffb38](https://github.com/SAP/ui5-webcomponents/commit/c8ffb38))
314
+ * **framework:** dynamic custom elements scoping ([#2091](https://github.com/SAP/ui5-webcomponents/issues/2091)) ([3588542](https://github.com/SAP/ui5-webcomponents/commit/3588542))
315
+ * **framework:** Limited support for campact size on IE ([#2230](https://github.com/SAP/ui5-webcomponents/issues/2230)) ([4128216](https://github.com/SAP/ui5-webcomponents/commit/4128216))
316
+ * **framework:** Make _property-change publicly available ([#2201](https://github.com/SAP/ui5-webcomponents/issues/2201)) ([0be4e10](https://github.com/SAP/ui5-webcomponents/commit/0be4e10))
317
+ * **framework:** Make addCustomCSS dynamic ([#2083](https://github.com/SAP/ui5-webcomponents/issues/2083)) ([7b54b9b](https://github.com/SAP/ui5-webcomponents/commit/7b54b9b))
318
+ * **framework:** make assets path configurable ([#2214](https://github.com/SAP/ui5-webcomponents/issues/2214)) ([16c46da](https://github.com/SAP/ui5-webcomponents/commit/16c46da))
319
+ * **framework:** styles and staticAreaStyles may now be nested arrays ([#2058](https://github.com/SAP/ui5-webcomponents/issues/2058)) ([bb87e65](https://github.com/SAP/ui5-webcomponents/commit/bb87e65))
320
+ * **framework:** Support custom dynamic asset paths ([#2305](https://github.com/SAP/ui5-webcomponents/issues/2305)) ([ff245fa](https://github.com/SAP/ui5-webcomponents/commit/ff245fa))
321
+
322
+
323
+
324
+
325
+
326
+ # [1.0.0-rc.8](https://github.com/SAP/ui5-webcomponents/compare/v1.0.0-rc.7...v1.0.0-rc.8) (2020-07-30)
327
+
328
+
329
+ ### Bug Fixes
330
+
331
+ * **framework:** Allow for empty theme files ([#1639](https://github.com/SAP/ui5-webcomponents/issues/1639)) ([0cef140](https://github.com/SAP/ui5-webcomponents/commit/0cef140))
332
+ * **framework:** Allow users to override default language translations ([#1716](https://github.com/SAP/ui5-webcomponents/issues/1716)) ([4b10f4f](https://github.com/SAP/ui5-webcomponents/commit/4b10f4f))
333
+ * **framework:** Slotted children now invalidate parent upon slotchange ([#1649](https://github.com/SAP/ui5-webcomponents/issues/1649)) ([3ca4ae1](https://github.com/SAP/ui5-webcomponents/commit/3ca4ae1))
334
+ * **framework:** Fix openui5 css varaibles detection ([#1933](https://github.com/SAP/ui5-webcomponents/issues/1933)) ([bb5b724](https://github.com/SAP/ui5-webcomponents/commit/bb5b724)), closes [#1932](https://github.com/SAP/ui5-webcomponents/issues/1932)
335
+ * **framework:** Make renderImmediately sync ([#1929](https://github.com/SAP/ui5-webcomponents/issues/1929)) ([9141300](https://github.com/SAP/ui5-webcomponents/commit/9141300))
336
+ * **framework:** Update managedSlots effect ([#1952](https://github.com/SAP/ui5-webcomponents/issues/1952)) ([4a1be70](https://github.com/SAP/ui5-webcomponents/commit/4a1be70))
337
+ * **framework:** Remove ES6 code in IE polyfill ([#1923](https://github.com/SAP/ui5-webcomponents/issues/1923)) ([0a2ff88](https://github.com/SAP/ui5-webcomponents/commit/0a2ff88))
338
+ * **framework:** Take region into account for i18n assets ([#1985](https://github.com/SAP/ui5-webcomponents/issues/1985)) ([3b614ad](https://github.com/SAP/ui5-webcomponents/commit/3b614ad))
339
+ * **ui5-button:** Apply aria-expanded to inner button tag ([#1781](https://github.com/SAP/ui5-webcomponents/issues/1781)) ([df9e4e9](https://github.com/SAP/ui5-webcomponents/commit/df9e4e9))
340
+
341
+
342
+ ### Features
343
+
344
+ * **framework:** Add dynamic language change and on-demand rerendering ([#1746](https://github.com/SAP/ui5-webcomponents/issues/1746)) ([1b568f2](https://github.com/SAP/ui5-webcomponents/commit/1b568f2))
345
+ * **framework:** CLDR location can now be specified ([#1687](https://github.com/SAP/ui5-webcomponents/issues/1687)) ([168e505](https://github.com/SAP/ui5-webcomponents/commit/168e505))
346
+ * **framework:** Create a global shared resources repo, share SVG Icons ([#1869](https://github.com/SAP/ui5-webcomponents/issues/1869)) ([7f5a198](https://github.com/SAP/ui5-webcomponents/commit/7f5a198))
347
+ * **framework:** Implement invalidateParent ([#1964](https://github.com/SAP/ui5-webcomponents/issues/1964)) ([104abcc](https://github.com/SAP/ui5-webcomponents/commit/104abcc))
348
+ * **framework:** Implement stable DOM Ref functionality ([#1868](https://github.com/SAP/ui5-webcomponents/issues/1868)) ([cfd4fa3](https://github.com/SAP/ui5-webcomponents/commit/cfd4fa3))
349
+ * **framework:** Make icons RTL aware ([#1833](https://github.com/SAP/ui5-webcomponents/issues/1833)) ([29a991f](https://github.com/SAP/ui5-webcomponents/commit/29a991f)), closes [#1831](https://github.com/SAP/ui5-webcomponents/issues/1831)
350
+ * **framework:** Support properties message bundles for i18n ([#1728](https://github.com/SAP/ui5-webcomponents/issues/1728)) ([d78d136](https://github.com/SAP/ui5-webcomponents/commit/d78d136))
351
+ * **framework:** Support several runtimes simultaneously ([#1691](https://github.com/SAP/ui5-webcomponents/issues/1691)) ([7a3261c](https://github.com/SAP/ui5-webcomponents/commit/7a3261c))
352
+
353
+
354
+ # [0.20.0](https://github.com/SAP/ui5-webcomponents/compare/v0.19.0...v0.20.0) (2020-04-30)
355
+
356
+
357
+ ### Bug Fixes
358
+
359
+ * **framework:** allow the creation of components with static area content only ([#1450](https://github.com/SAP/ui5-webcomponents/issues/1450)) ([b0505ce](https://github.com/SAP/ui5-webcomponents/commit/b0505ce))
360
+ * **framework:** apply CSS Vars in Static Styles on IE11 ([#1440](https://github.com/SAP/ui5-webcomponents/issues/1440)) ([b8ae60e](https://github.com/SAP/ui5-webcomponents/commit/b8ae60e))
361
+ * **framework:** rendering is no longer delayed ([#1552](https://github.com/SAP/ui5-webcomponents/issues/1552)) ([c26e8aa](https://github.com/SAP/ui5-webcomponents/commit/c26e8aa))
362
+ * **scroll enablement:** fix scrolling issue on scroll & mobile ([#1557](https://github.com/SAP/ui5-webcomponents/issues/1557)) ([e79482a](https://github.com/SAP/ui5-webcomponents/commit/e79482a))
363
+ * **scroll enablement:** fix scrolling on android devices ([#1491](https://github.com/SAP/ui5-webcomponents/issues/1491)) ([df19ede](https://github.com/SAP/ui5-webcomponents/commit/df19ede))
364
+
365
+
366
+
367
+ ### Features
368
+
369
+ * **framework:** enable external themes support ([#1463](https://github.com/SAP/ui5-webcomponents/issues/1463)) ([b031782](https://github.com/SAP/ui5-webcomponents/commit/b031782))
370
+ * **framework:** register theme variables via CSS file ([#1451](https://github.com/SAP/ui5-webcomponents/issues/1451)) ([3173fb9](https://github.com/SAP/ui5-webcomponents/commit/3173fb9))
371
+
372
+
373
+
374
+
375
+ # [0.19.0](https://github.com/SAP/ui5-webcomponents/compare/v0.18.0...v0.19.0) (2020-03-27)
376
+
377
+
378
+ ### Bug Fixes
379
+
380
+ * **framework:** fix travis build ([#1212](https://github.com/SAP/ui5-webcomponents/issues/1212)) ([7f30cf3](https://github.com/SAP/ui5-webcomponents/commit/7f30cf3))
381
+ * **framework:** openUI5 cldr support re-added ([#1207](https://github.com/SAP/ui5-webcomponents/issues/1207)) ([6bf40a2](https://github.com/SAP/ui5-webcomponents/commit/6bf40a2))
382
+ * **framework:** Provide a workaround for Firefox 74 shadow root bug ([#1347](https://github.com/SAP/ui5-webcomponents/issues/1347)) ([7cc67a7](https://github.com/SAP/ui5-webcomponents/commit/7cc67a7))
383
+ * **framework:** StaticArea and StaticAreaElement identify as UI5Element ([#1168](https://github.com/SAP/ui5-webcomponents/issues/1168)) ([28f827a](https://github.com/SAP/ui5-webcomponents/commit/28f827a))
384
+ * **framework:** prevent infinite loop when fetching i18n bundles ([#1333](https://github.com/SAP/ui5-webcomponents/issues/1333)) ([f605566](https://github.com/SAP/ui5-webcomponents/commit/f605566))
385
+ * **framework:** prevent error when deleting static area item ([#1335](https://github.com/SAP/ui5-webcomponents/issues/1335)) ([5a99536](https://github.com/SAP/ui5-webcomponents/commit/5a99536))
386
+ * **framework:** apply size "compact" for StaticArea items ([#1204](https://github.com/SAP/ui5-webcomponents/issues/1204)) ([c411774](https://github.com/SAP/ui5-webcomponents/commit/c411774))
387
+ * **framework:** merge metadata properly ([#1092](https://github.com/SAP/ui5-webcomponents/issues/1092)) ([6a29872](https://github.com/SAP/ui5-webcomponents/commit/6a29872))
388
+ * **framework:** create font face style tag only once ([#1090](https://github.com/SAP/ui5-webcomponents/issues/1090)) ([1a09e13](https://github.com/SAP/ui5-webcomponents/commit/1a09e13))
389
+
390
+
391
+ ### Code Refactoring
392
+
393
+ * **framework:** propagate compact size when ui5-content-density-compact class is set ([#1136](https://github.com/SAP/ui5-webcomponents/issues/1136)) ([2db62ba](https://github.com/SAP/ui5-webcomponents/commit/2db62ba))
394
+
395
+
396
+ ### Features
397
+
398
+ * **framework:** Allow the registration of custom themes ([#1109](https://github.com/SAP/ui5-webcomponents/issues/1109)) ([6a69521](https://github.com/SAP/ui5-webcomponents/commit/6a69521))
399
+ * **framework:** create getLocaleData API ([#1269](https://github.com/SAP/ui5-webcomponents/issues/1269)) ([c9253a6](https://github.com/SAP/ui5-webcomponents/commit/c9253a6))
400
+ * **framework:** OpenUI5 integration ([#1138](https://github.com/SAP/ui5-webcomponents/issues/1138)) ([5527990](https://github.com/SAP/ui5-webcomponents/commit/5527990))
401
+ * **Itemnavigation:** add paging behaviour ([#1116](https://github.com/SAP/ui5-webcomponents/issues/1116)) ([1cb0832](https://github.com/SAP/ui5-webcomponents/commit/1cb0832))
402
+ * **ScrollEnablement:** enhance implementation to work on desktop ([#1374](https://github.com/SAP/ui5-webcomponents/issues/1374)) ([2567bea](https://github.com/SAP/ui5-webcomponents/commit/2567bea))
403
+
404
+
405
+ ### BREAKING CHANGES
406
+
407
+ * **framework:** remove `set/get` for compact size, use CSS class `ui5-content-density-compact` as a replacement.
408
+
409
+
410
+
411
+
412
+
6
413
  # [0.18.0](https://github.com/SAP/ui5-webcomponents/compare/v0.17.0...v0.18.0) (2019-12-02)
7
414
 
8
415
 
package/README.md CHANGED
@@ -1,25 +1,48 @@
1
- ![UI5 icon](https://raw.githubusercontent.com/SAP/ui5-webcomponents/master/docs/images/UI5_logo_wide.png)
1
+ ![UI5 icon](https://raw.githubusercontent.com/SAP/ui5-webcomponents/main/docs/images/UI5_logo_wide.png)
2
2
 
3
3
  # UI5 Web Components - Base
4
4
 
5
- [![Travis CI Build Status](https://travis-ci.org/SAP/ui5-webcomponents.svg?branch=master)](https://travis-ci.org/SAP/ui5-webcomponents)
6
5
  [![npm Package Version](https://badge.fury.io/js/%40ui5%2Fwebcomponents.svg)](https://www.npmjs.com/package/@ui5/webcomponents)
7
6
 
8
7
  Contains the base files for all Web Components, most notably `@ui5/webcomponents-base/dist/UI5Element.js`.
9
8
 
10
- For a complete list of all app development related public module imports from the `base` package, click [here](../../docs/Public%20Module%20Imports.md#base):
9
+ ## Provided APIs for applications
10
+
11
+ ### `Boot.js`
12
+
13
+ - `attachBoot`
14
+
15
+ ### `CustomElementsScope.js`
16
+
17
+ - `setCustomElementsScopingSuffix`
18
+ - `getCustomElementsScopingSuffix`
19
+ - `setCustomElementsScopingRules`
20
+ - `getCustomElementsScopingRules`
21
+
22
+ ### `i18nBundle.js`
23
+
24
+ - `registerI18nLoader`
25
+ - `getI18nBundle`
26
+
27
+ ### `PropertiesFileFormat.js`
28
+
29
+ - `parseProperties`
30
+
31
+ ### `Render.js`
32
+
33
+ - `renderFinished`
11
34
 
12
35
  ## Resources
13
- - [UI5 Web Components - README.md](https://github.com/SAP/ui5-webcomponents/blob/master/README.md)
36
+ - [UI5 Web Components - README.md](https://github.com/SAP/ui5-webcomponents/blob/main/README.md)
14
37
  - [UI5 Web Components - Home Page](https://sap.github.io/ui5-webcomponents)
15
38
  - [UI5 Web Components - Playground and API Reference](https://sap.github.io/ui5-webcomponents/playground/)
16
39
 
17
40
  ## Support
18
- We welcome all comments, suggestions, questions, and bug reports. Please follow our [Support Guidelines](https://github.com/SAP/ui5-webcomponents/blob/master/SUPPORT.md#-content) on how to report an issue, or chat with us in the `#webcomponents` channel of the [OpenUI5 Community Slack](https://join-ui5-slack.herokuapp.com/).
41
+ We welcome all comments, suggestions, questions, and bug reports. Please follow our [Support Guidelines](https://github.com/SAP/ui5-webcomponents/blob/main/SUPPORT.md#-content) on how to report an issue, or chat with us in the `#webcomponents` channel of the [OpenUI5 Community Slack](https://join-ui5-slack.herokuapp.com/).
19
42
 
20
43
  ## Contribute
21
- Please check our [Contribution Guidelines](https://github.com/SAP/ui5-webcomponents/blob/master/CONTRIBUTING.md).
44
+ Please check our [Contribution Guidelines](https://github.com/SAP/ui5-webcomponents/blob/main/docs/6-contributing/02-conventions-and-guidelines.md).
22
45
 
23
46
  ## License
24
47
  Copyright (c) 2019 SAP SE or an SAP affiliate company. All rights reserved.
25
- This file is licensed under the Apache Software License, Version 2.0 except as noted otherwise in the [LICENSE](https://github.com/SAP/ui5-webcomponents/blob/master/LICENSE.txt) file.
48
+ This file is licensed under the Apache Software License, Version 2.0 except as noted otherwise in the [LICENSE](https://github.com/SAP/ui5-webcomponents/blob/main/LICENSE.txt) file.
package/bundle.esm.js CHANGED
@@ -1,31 +1,28 @@
1
- import { registerThemeProperties } from "./dist/AssetRegistry.js";
1
+ import { registerThemePropertiesLoader } from "./dist/AssetRegistry.js";
2
+ import EventProvider from "./dist/EventProvider.js";
2
3
 
3
- import "./dist/features/calendar/Buddhist.js";
4
- import "./dist/features/calendar/Islamic.js";
5
- import "./dist/features/calendar/Japanese.js";
6
- import "./dist/features/calendar/Persian.js";
7
-
8
- // ESM bundle targets Edge + browsers with native support
9
- import "./dist/features/browsersupport/Edge.js";
4
+ // ESM bundle targets browsers with native support
5
+ import "./dist/features/OpenUI5Support.js";
10
6
 
11
7
  // Test components
12
- import "./dist/test-resources/elements/Generic.js";
13
- import "./dist/test-resources/elements/NoShadowDOM.js";
14
- import "./dist/test-resources/elements/Parent.js";
15
- import "./dist/test-resources/elements/Child.js";
16
- import "./dist/test-resources/elements/GenericExt.js";
8
+ import "./test/elements/Generic.js";
9
+ import "./test/elements/NoShadowDOM.js";
10
+ import "./test/elements/Parent.js";
11
+ import "./test/elements/Child.js";
12
+ import "./test/elements/WithStaticArea.js";
13
+ import "./test/elements/GenericExt.js";
17
14
 
18
15
  // Test themes - CSS Vars for the sap_fiori_3, sap_fiori_3_dark, sap_belize and sap_belize_hcb themes
19
- import "./dist/test-resources/assets/Themes.js";
16
+ import "./test/assets/Themes.js";
20
17
 
21
18
  // used in test pages
22
- import RenderScheduler from "./dist/RenderScheduler.js";
23
- window.RenderScheduler = RenderScheduler;
24
- import { isIE } from "./dist/Device.js";
25
- window.isIE = isIE; // attached to the window object for testing purposes
19
+ import { renderFinished } from "./dist/Render.js";
26
20
 
27
21
  // used for tests - to register a custom theme
28
- window.registerThemeProperties = registerThemeProperties;
22
+ window.registerThemePropertiesLoader = registerThemePropertiesLoader;
23
+
24
+ // i18n
25
+ import { registerI18nLoader, getI18nBundle } from "./dist/i18nBundle.js";
29
26
 
30
27
  // Note: keep in sync with rollup.config value for IIFE
31
28
  import { getAnimationMode } from "./dist/config/AnimationMode.js";
@@ -35,7 +32,9 @@ import { getTheme, setTheme } from "./dist/config/Theme.js";
35
32
  import { getNoConflict, setNoConflict } from "./dist/config/NoConflict.js";
36
33
  import { getRTL } from "./dist/config/RTL.js";
37
34
  import { getFirstDayOfWeek } from "./dist/config/FormatSettings.js";
38
- import { getRegisteredNames as getIconNames } from "./dist/SVGIconRegistry.js"
35
+ import { _getRegisteredNames as getIconNames } from "./dist/asset-registries/Icons.js"
36
+ import applyDirection from "./dist/locale/applyDirection.js";
37
+
39
38
  window["sap-ui-webcomponents-bundle"] = {
40
39
  configuration : {
41
40
  getAnimationMode,
@@ -49,4 +48,9 @@ window["sap-ui-webcomponents-bundle"] = {
49
48
  getFirstDayOfWeek,
50
49
  },
51
50
  getIconNames,
51
+ registerI18nLoader,
52
+ getI18nBundle,
53
+ renderFinished,
54
+ applyDirection,
55
+ EventProvider,
52
56
  };
@@ -1,9 +1,11 @@
1
- import { registerI18nBundle } from "./asset-registries/i18n.js";
2
- import { registerCldr } from "./asset-registries/LocaleData.js";
3
- import { registerThemeProperties } from "./asset-registries/Themes.js";
1
+ import { registerI18nLoader } from "./asset-registries/i18n.js";
2
+ import { registerLocaleDataLoader } from "./asset-registries/LocaleData.js";
3
+ import { registerThemePropertiesLoader } from "./asset-registries/Themes.js";
4
+ import { registerIconLoader } from "./asset-registries/Icons.js";
4
5
 
5
6
  export {
6
- registerCldr,
7
- registerThemeProperties,
8
- registerI18nBundle,
7
+ registerI18nLoader,
8
+ registerLocaleDataLoader,
9
+ registerThemePropertiesLoader,
10
+ registerIconLoader,
9
11
  };
package/dist/Boot.js ADDED
@@ -0,0 +1,59 @@
1
+ import whenDOMReady from "./util/whenDOMReady.js";
2
+ import insertFontFace from "./FontFace.js";
3
+ import insertSystemCSSVars from "./SystemCSSVars.js";
4
+ import { getTheme } from "./config/Theme.js";
5
+ import applyTheme from "./theming/applyTheme.js";
6
+ import { registerCurrentRuntime } from "./Runtimes.js";
7
+ import { getFeature } from "./FeaturesRegistry.js";
8
+
9
+ let bootPromise;
10
+
11
+ /**
12
+ * Attach a callback that will be executed on boot
13
+ * @public
14
+ * @param listener
15
+ */
16
+ const attachBoot = async listener => {
17
+ await boot();
18
+ listener();
19
+ };
20
+
21
+ const boot = async () => {
22
+ if (bootPromise) {
23
+ return bootPromise;
24
+ }
25
+
26
+ /* eslint-disable no-alert, no-async-promise-executor */
27
+ /*
28
+ Note(since we disable eslint rule):
29
+ If an async executor function throws an error, the error will be lost and won't cause the newly-constructed Promise to reject.
30
+ This could make it difficult to debug and handle some errors.
31
+ */
32
+ bootPromise = new Promise(async resolve => {
33
+ registerCurrentRuntime();
34
+
35
+ const OpenUI5Support = getFeature("OpenUI5Support");
36
+ const F6Navigation = getFeature("F6Navigation");
37
+ if (OpenUI5Support) {
38
+ await OpenUI5Support.init();
39
+ } else if (F6Navigation) {
40
+ F6Navigation.init();
41
+ }
42
+
43
+ await whenDOMReady();
44
+ await applyTheme(getTheme());
45
+ OpenUI5Support && OpenUI5Support.attachListeners();
46
+ insertFontFace();
47
+ insertSystemCSSVars();
48
+
49
+ resolve();
50
+ });
51
+ /* eslint-enable no-alert, no-async-promise-executor */
52
+
53
+ return bootPromise;
54
+ };
55
+
56
+ export {
57
+ boot,
58
+ attachBoot,
59
+ };