@ui5/webcomponents-base 0.0.0-0fcda382e → 0.0.0-11d529e8a

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 (298) hide show
  1. package/.eslintignore +2 -0
  2. package/CHANGELOG.md +137 -0
  3. package/README.md +26 -1
  4. package/bundle.esm.js +17 -7
  5. package/dist/AssetRegistry.js +8 -6
  6. package/dist/Boot.js +43 -0
  7. package/dist/CustomElementsRegistry.js +24 -8
  8. package/dist/CustomElementsScope.js +108 -0
  9. package/dist/DOMObserver.js +65 -0
  10. package/dist/Device.js +58 -779
  11. package/dist/EventProvider.js +38 -26
  12. package/dist/FontFace.js +52 -7
  13. package/dist/InitialConfiguration.js +32 -8
  14. package/dist/Keys.js +89 -2
  15. package/dist/MediaRange.js +109 -0
  16. package/dist/PropertiesFileFormat.js +95 -0
  17. package/dist/Render.js +173 -0
  18. package/dist/RenderQueue.js +41 -17
  19. package/dist/RenderScheduler.js +24 -126
  20. package/dist/StaticArea.js +1 -39
  21. package/dist/StaticAreaItem.js +64 -62
  22. package/dist/SystemCSSVars.js +31 -0
  23. package/dist/Theming.js +2 -1
  24. package/dist/UI5Element.js +427 -299
  25. package/dist/UI5ElementMetadata.js +157 -19
  26. package/dist/asset-registries/Icons.js +118 -14
  27. package/dist/asset-registries/Illustrations.js +30 -0
  28. package/dist/asset-registries/LocaleData.js +90 -65
  29. package/dist/asset-registries/Themes.js +23 -32
  30. package/dist/asset-registries/i18n.js +72 -30
  31. package/dist/config/AnimationMode.js +11 -1
  32. package/dist/config/Language.js +58 -2
  33. package/dist/delegate/ItemNavigation.js +244 -171
  34. package/dist/delegate/ResizeHandler.js +78 -38
  35. package/dist/delegate/ScrollEnablement.js +49 -20
  36. package/dist/features/OpenUI5Support.js +42 -7
  37. package/dist/generated/AssetParameters.js +1 -1
  38. package/dist/getSharedResource.js +30 -0
  39. package/dist/i18nBundle.js +27 -4
  40. package/dist/isLegacyBrowser.js +3 -0
  41. package/dist/locale/RTLAwareRegistry.js +14 -0
  42. package/dist/locale/applyDirection.js +17 -0
  43. package/dist/locale/directionChange.js +32 -0
  44. package/dist/locale/getEffectiveDir.js +28 -0
  45. package/dist/locale/getLocale.js +12 -2
  46. package/dist/locale/languageChange.js +22 -0
  47. package/dist/renderer/LitRenderer.js +21 -4
  48. package/dist/renderer/executeTemplate.js +17 -0
  49. package/dist/resources/bundle.esm.js +17 -109
  50. package/dist/resources/bundle.esm.js.map +1 -1
  51. package/dist/sap/base/Log.js +241 -0
  52. package/dist/sap/base/assert.js +8 -0
  53. package/dist/sap/base/security/URLListValidator.js +148 -0
  54. package/dist/sap/base/security/sanitizeHTML.js +16 -0
  55. package/dist/sap/base/util/now.js +7 -0
  56. package/dist/sap/ui/thirdparty/caja-html-sanitizer.js +3585 -0
  57. package/dist/test-resources/assets/Themes.js +10 -6
  58. package/dist/test-resources/elements/Parent.js +6 -2
  59. package/dist/test-resources/elements/WithStaticArea.js +2 -1
  60. package/dist/test-resources/pages/AllTestElements.html +3 -3
  61. package/dist/test-resources/pages/Configuration.html +0 -2
  62. package/dist/test-resources/pages/ConfigurationScript.html +1 -3
  63. package/dist/test-resources/pages/assets/messagebundle_de.properties +1 -0
  64. package/dist/test-resources/pages/assets/messagebundle_en.properties +1 -0
  65. package/dist/test-resources/pages/assets/messagebundle_es.properties +1 -0
  66. package/dist/test-resources/pages/assets/messagebundle_fr.properties +1 -0
  67. package/dist/test-resources/pages/i18n.html +35 -0
  68. package/dist/test-resources/specs/ConfigurationChange.spec.js +11 -9
  69. package/dist/test-resources/specs/ConfigurationScript.spec.js +25 -23
  70. package/dist/test-resources/specs/ConfigurationURL.spec.js +65 -17
  71. package/dist/test-resources/specs/CustomTheme.spec.js +7 -5
  72. package/dist/test-resources/specs/EventProvider.spec.js +63 -0
  73. package/dist/test-resources/specs/StaticArea.spec.js +56 -12
  74. package/dist/test-resources/specs/Theming.spec.js +9 -7
  75. package/dist/test-resources/specs/UI5ElementInvalidation.js +54 -70
  76. package/dist/test-resources/specs/UI5ElementLifecycle.js +19 -14
  77. package/dist/test-resources/specs/UI5ElementListenForChildPropChanges.spec.js +25 -51
  78. package/dist/test-resources/specs/UI5ElementMetadataExt.js +9 -7
  79. package/dist/test-resources/specs/UI5ElementPropertyValidation.js +7 -5
  80. package/dist/test-resources/specs/UI5ElementPropsAndAttrs.spec.js +37 -35
  81. package/dist/test-resources/specs/UI5ElementShadowDOM.js +10 -8
  82. package/dist/test-resources/specs/UI5ElementSlots.js +10 -8
  83. package/dist/theming/CustomStyle.js +28 -7
  84. package/dist/theming/ThemeLoaded.js +22 -0
  85. package/dist/theming/applyTheme.js +2 -5
  86. package/dist/theming/getConstructableStyle.js +15 -10
  87. package/dist/theming/getEffectiveStyle.js +23 -8
  88. package/dist/theming/getStylesString.js +13 -0
  89. package/dist/types/CSSColor.js +9 -0
  90. package/dist/types/CalendarType.js +1 -1
  91. package/dist/types/DataType.js +13 -1
  92. package/dist/types/Float.js +14 -0
  93. package/dist/types/Integer.js +4 -0
  94. package/dist/types/InvisibleMessageMode.js +30 -0
  95. package/dist/types/ItemNavigationBehavior.js +2 -7
  96. package/dist/types/NavigationMode.js +1 -0
  97. package/dist/types/PopupState.js +1 -1
  98. package/dist/types/ValueState.js +1 -1
  99. package/dist/updateShadowRoot.js +26 -0
  100. package/dist/util/AriaLabelHelper.js +41 -0
  101. package/dist/util/Caret.js +45 -0
  102. package/dist/util/ColorConversion.js +370 -0
  103. package/dist/util/FocusableElements.js +25 -8
  104. package/dist/util/HTMLSanitizer.js +7 -0
  105. package/dist/util/InvisibleMessage.js +58 -0
  106. package/dist/util/PopupUtils.js +93 -0
  107. package/dist/util/SlotsHelper.js +43 -0
  108. package/dist/util/TabbableElements.js +1 -1
  109. package/dist/util/arraysAreEqual.js +15 -0
  110. package/dist/util/clamp.js +12 -0
  111. package/dist/util/debounce.js +17 -0
  112. package/dist/util/encodeCSS.js +24 -0
  113. package/dist/util/getActiveElement.js +11 -0
  114. package/dist/util/getClassCopy.js +10 -0
  115. package/dist/util/getEffectiveContentDensity.js +5 -0
  116. package/dist/util/getSingletonElementInstance.js +13 -0
  117. package/dist/util/isElementInView.js +15 -0
  118. package/dist/util/isNodeHidden.js +1 -5
  119. package/dist/util/isNodeTabbable.js +4 -4
  120. package/dist/util/isValidPropertyName.js +9 -3
  121. package/dist/util/setToArray.js +10 -0
  122. package/hash.txt +1 -0
  123. package/index.js +1 -1
  124. package/package-scripts.js +33 -18
  125. package/package.json +20 -11
  126. package/src/AssetRegistry.js +8 -6
  127. package/src/Boot.js +43 -0
  128. package/src/CustomElementsRegistry.js +24 -8
  129. package/src/CustomElementsScope.js +108 -0
  130. package/src/DOMObserver.js +65 -0
  131. package/src/Device.js +58 -779
  132. package/src/EventProvider.js +38 -26
  133. package/src/FontFace.js +52 -7
  134. package/src/InitialConfiguration.js +32 -8
  135. package/src/Keys.js +89 -2
  136. package/src/MediaRange.js +109 -0
  137. package/src/PropertiesFileFormat.js +95 -0
  138. package/src/Render.js +173 -0
  139. package/src/RenderQueue.js +41 -17
  140. package/src/RenderScheduler.js +24 -126
  141. package/src/StaticArea.js +1 -39
  142. package/src/StaticAreaItem.js +64 -62
  143. package/src/SystemCSSVars.js +31 -0
  144. package/src/Theming.js +2 -1
  145. package/src/UI5Element.js +427 -299
  146. package/src/UI5ElementMetadata.js +157 -19
  147. package/src/asset-registries/Icons.js +118 -14
  148. package/src/asset-registries/Illustrations.js +30 -0
  149. package/src/asset-registries/LocaleData.js +90 -65
  150. package/src/asset-registries/Themes.js +23 -32
  151. package/src/asset-registries/i18n.js +72 -30
  152. package/src/config/AnimationMode.js +11 -1
  153. package/src/config/Language.js +58 -2
  154. package/src/delegate/ItemNavigation.js +244 -171
  155. package/src/delegate/ResizeHandler.js +78 -38
  156. package/src/delegate/ScrollEnablement.js +49 -20
  157. package/src/features/OpenUI5Support.js +42 -7
  158. package/src/getSharedResource.js +30 -0
  159. package/src/i18nBundle.js +27 -4
  160. package/src/isLegacyBrowser.js +3 -0
  161. package/src/locale/RTLAwareRegistry.js +14 -0
  162. package/src/locale/applyDirection.js +17 -0
  163. package/src/locale/directionChange.js +32 -0
  164. package/src/locale/getEffectiveDir.js +28 -0
  165. package/src/locale/getLocale.js +12 -2
  166. package/src/locale/languageChange.js +22 -0
  167. package/src/renderer/LitRenderer.js +21 -4
  168. package/src/renderer/executeTemplate.js +17 -0
  169. package/src/theming/CustomStyle.js +28 -7
  170. package/src/theming/ThemeLoaded.js +22 -0
  171. package/src/theming/applyTheme.js +2 -5
  172. package/src/theming/getConstructableStyle.js +15 -10
  173. package/src/theming/getEffectiveStyle.js +23 -8
  174. package/src/theming/getStylesString.js +13 -0
  175. package/src/types/CSSColor.js +9 -0
  176. package/src/types/CalendarType.js +1 -1
  177. package/src/types/DataType.js +13 -1
  178. package/src/types/Float.js +14 -0
  179. package/src/types/Integer.js +4 -0
  180. package/src/types/InvisibleMessageMode.js +30 -0
  181. package/src/types/ItemNavigationBehavior.js +2 -7
  182. package/src/types/NavigationMode.js +1 -0
  183. package/src/types/PopupState.js +1 -1
  184. package/src/types/ValueState.js +1 -1
  185. package/src/updateShadowRoot.js +26 -0
  186. package/src/util/AriaLabelHelper.js +41 -0
  187. package/src/util/Caret.js +45 -0
  188. package/src/util/ColorConversion.js +370 -0
  189. package/src/util/FocusableElements.js +25 -8
  190. package/src/util/HTMLSanitizer.js +7 -0
  191. package/src/util/InvisibleMessage.js +58 -0
  192. package/src/util/PopupUtils.js +93 -0
  193. package/src/util/SlotsHelper.js +43 -0
  194. package/src/util/TabbableElements.js +1 -1
  195. package/src/util/arraysAreEqual.js +15 -0
  196. package/src/util/clamp.js +12 -0
  197. package/src/util/debounce.js +17 -0
  198. package/src/util/encodeCSS.js +24 -0
  199. package/src/util/getActiveElement.js +11 -0
  200. package/src/util/getClassCopy.js +10 -0
  201. package/src/util/getEffectiveContentDensity.js +5 -0
  202. package/src/util/getSingletonElementInstance.js +13 -0
  203. package/src/util/isElementInView.js +15 -0
  204. package/src/util/isNodeHidden.js +1 -5
  205. package/src/util/isNodeTabbable.js +4 -4
  206. package/src/util/isValidPropertyName.js +9 -3
  207. package/src/util/setToArray.js +10 -0
  208. package/used-modules.txt +7 -0
  209. package/bundle.es5.js +0 -28
  210. package/dist/SVGIconRegistry.js +0 -60
  211. package/dist/boot.js +0 -32
  212. package/dist/compatibility/DOMObserver.js +0 -62
  213. package/dist/compatibility/patchNodeValue.js +0 -24
  214. package/dist/compatibility/whenPolyfillLoaded.js +0 -26
  215. package/dist/delegate/CustomResize.js +0 -78
  216. package/dist/delegate/NativeResize.js +0 -44
  217. package/dist/features/browsersupport/Edge.js +0 -6
  218. package/dist/features/browsersupport/IE11.js +0 -41
  219. package/dist/features/browsersupport/IE11WithWebComponentsPolyfill.js +0 -5
  220. package/dist/renderer/ifDefined.js +0 -21
  221. package/dist/resources/bundle.es5.js +0 -212
  222. package/dist/resources/bundle.es5.js.map +0 -1
  223. package/dist/theming/CSSVarsPonyfill.js +0 -24
  224. package/dist/theming/adaptCSSForIE.js +0 -90
  225. package/dist/theming/createComponentStyleTag.js +0 -49
  226. package/dist/thirdparty/Array.from.js +0 -16
  227. package/dist/thirdparty/Array.prototype.fill.js +0 -44
  228. package/dist/thirdparty/Array.prototype.find.js +0 -46
  229. package/dist/thirdparty/Array.prototype.includes.js +0 -51
  230. package/dist/thirdparty/Element.prototype.closest.js +0 -11
  231. package/dist/thirdparty/Element.prototype.matches.js +0 -6
  232. package/dist/thirdparty/Map.prototype.keys.js +0 -9
  233. package/dist/thirdparty/Number.isInteger.js +0 -5
  234. package/dist/thirdparty/Number.isNaN.js +0 -1
  235. package/dist/thirdparty/Number.parseInt.js +0 -1
  236. package/dist/thirdparty/Object.assign.js +0 -31
  237. package/dist/thirdparty/Object.entries.js +0 -11
  238. package/dist/thirdparty/Symbol.js +0 -2
  239. package/dist/thirdparty/WeakSet.js +0 -27
  240. package/dist/thirdparty/es6-string-methods.js +0 -182
  241. package/dist/thirdparty/events-polyfills.js +0 -89
  242. package/dist/thirdparty/fetch.js +0 -1
  243. package/dist/thirdparty/template.js +0 -600
  244. package/dist/thirdparty/webcomponents-sd-ce-pf.js +0 -318
  245. package/dist/webcomponentsjs/LICENSE.md +0 -19
  246. package/dist/webcomponentsjs/README.md +0 -229
  247. package/dist/webcomponentsjs/bundles/webcomponents-ce.js +0 -63
  248. package/dist/webcomponentsjs/bundles/webcomponents-ce.js.map +0 -1
  249. package/dist/webcomponentsjs/bundles/webcomponents-sd-ce-pf.js +0 -297
  250. package/dist/webcomponentsjs/bundles/webcomponents-sd-ce-pf.js.map +0 -1
  251. package/dist/webcomponentsjs/bundles/webcomponents-sd-ce.js +0 -208
  252. package/dist/webcomponentsjs/bundles/webcomponents-sd-ce.js.map +0 -1
  253. package/dist/webcomponentsjs/bundles/webcomponents-sd.js +0 -166
  254. package/dist/webcomponentsjs/bundles/webcomponents-sd.js.map +0 -1
  255. package/dist/webcomponentsjs/custom-elements-es5-adapter.js +0 -15
  256. package/dist/webcomponentsjs/package.json +0 -46
  257. package/dist/webcomponentsjs/src/entrypoints/custom-elements-es5-adapter-index.js +0 -16
  258. package/dist/webcomponentsjs/src/entrypoints/webcomponents-bundle-index.js +0 -53
  259. package/dist/webcomponentsjs/src/entrypoints/webcomponents-ce-index.js +0 -17
  260. package/dist/webcomponentsjs/src/entrypoints/webcomponents-sd-ce-index.js +0 -19
  261. package/dist/webcomponentsjs/src/entrypoints/webcomponents-sd-ce-pf-index.js +0 -28
  262. package/dist/webcomponentsjs/src/entrypoints/webcomponents-sd-index.js +0 -18
  263. package/dist/webcomponentsjs/webcomponents-bundle.js +0 -298
  264. package/dist/webcomponentsjs/webcomponents-bundle.js.map +0 -1
  265. package/dist/webcomponentsjs/webcomponents-loader.js +0 -185
  266. package/src/SVGIconRegistry.js +0 -60
  267. package/src/boot.js +0 -32
  268. package/src/compatibility/DOMObserver.js +0 -62
  269. package/src/compatibility/patchNodeValue.js +0 -24
  270. package/src/compatibility/whenPolyfillLoaded.js +0 -26
  271. package/src/delegate/CustomResize.js +0 -78
  272. package/src/delegate/NativeResize.js +0 -44
  273. package/src/features/browsersupport/Edge.js +0 -6
  274. package/src/features/browsersupport/IE11.js +0 -41
  275. package/src/features/browsersupport/IE11WithWebComponentsPolyfill.js +0 -5
  276. package/src/renderer/ifDefined.js +0 -21
  277. package/src/theming/CSSVarsPonyfill.js +0 -24
  278. package/src/theming/adaptCSSForIE.js +0 -90
  279. package/src/theming/createComponentStyleTag.js +0 -49
  280. package/src/thirdparty/Array.from.js +0 -16
  281. package/src/thirdparty/Array.prototype.fill.js +0 -44
  282. package/src/thirdparty/Array.prototype.find.js +0 -46
  283. package/src/thirdparty/Array.prototype.includes.js +0 -51
  284. package/src/thirdparty/Element.prototype.closest.js +0 -11
  285. package/src/thirdparty/Element.prototype.matches.js +0 -6
  286. package/src/thirdparty/Map.prototype.keys.js +0 -9
  287. package/src/thirdparty/Number.isInteger.js +0 -5
  288. package/src/thirdparty/Number.isNaN.js +0 -1
  289. package/src/thirdparty/Number.parseInt.js +0 -1
  290. package/src/thirdparty/Object.assign.js +0 -31
  291. package/src/thirdparty/Object.entries.js +0 -11
  292. package/src/thirdparty/Symbol.js +0 -2
  293. package/src/thirdparty/WeakSet.js +0 -27
  294. package/src/thirdparty/es6-string-methods.js +0 -182
  295. package/src/thirdparty/events-polyfills.js +0 -89
  296. package/src/thirdparty/fetch.js +0 -1
  297. package/src/thirdparty/template.js +0 -600
  298. package/src/thirdparty/webcomponents-sd-ce-pf.js +0 -318
@@ -1,24 +0,0 @@
1
- let ponyfillTimer;
2
-
3
- const ponyfillNeeded = () => !!window.CSSVarsPonyfill;
4
-
5
- const runPonyfill = () => {
6
- ponyfillTimer = undefined;
7
-
8
- window.CSSVarsPonyfill.cssVars({
9
- rootElement: document.head,
10
- silent: true,
11
- });
12
- };
13
-
14
- const schedulePonyfill = () => {
15
- if (!ponyfillTimer) {
16
- ponyfillTimer = window.setTimeout(runPonyfill, 0);
17
- }
18
- };
19
-
20
- export {
21
- ponyfillNeeded,
22
- runPonyfill,
23
- schedulePonyfill,
24
- };
@@ -1,90 +0,0 @@
1
- const findClosingParenthesisPos = (str, openingParenthesisPos) => {
2
- let opened = 1;
3
- for (let pos = openingParenthesisPos + 1; pos < str.length; pos++) {
4
- const char = str.charAt(pos);
5
- if (char === "(") {
6
- opened++;
7
- } else if (char === ")") {
8
- opened--;
9
- }
10
- if (opened === 0) {
11
- return pos;
12
- }
13
- }
14
- };
15
-
16
- const replaceSelector = (str, selector, selectorStartPos, replacement) => {
17
- const charAfterSelectorPos = selectorStartPos + selector.length;
18
- const charAfterSelector = str.charAt(charAfterSelectorPos);
19
-
20
- const upToSelector = str.substring(0, selectorStartPos) + replacement;
21
- if (charAfterSelector === "(") {
22
- const closingParenthesisPos = findClosingParenthesisPos(str, charAfterSelectorPos);
23
- return upToSelector + str.substring(charAfterSelectorPos + 1, closingParenthesisPos) + str.substring(closingParenthesisPos + 1);
24
- }
25
-
26
- return upToSelector + str.substring(charAfterSelectorPos);
27
- };
28
-
29
- /**
30
- * :host => ui5-button
31
- * :host([expr]) => ui5-button[expr]
32
- * ::slotted(expr) => expr
33
- * @param str - source string
34
- * @param selector - :host or ::slotted
35
- * @param replacement - normally tag name
36
- * @returns {*}
37
- */
38
- const replaceSelectors = (str, selector, replacement) => {
39
- let selectorStartPos = str.indexOf(selector);
40
- while (selectorStartPos !== -1) {
41
- str = replaceSelector(str, selector, selectorStartPos, replacement);
42
- selectorStartPos = str.indexOf(selector);
43
- }
44
- return str;
45
- };
46
-
47
- const adaptLinePart = (line, tag) => {
48
- line = line.trim();
49
- line = replaceSelectors(line, "::slotted", ``); // first remove all ::slotted() occurrences
50
-
51
- // Host selector - replace it
52
- if (line.startsWith(":host")) {
53
- return replaceSelector(line, ":host", 0, tag);
54
- }
55
-
56
- // Leave out @keyframes and keyframe values (0%, 100%, etc...)
57
- // csso shortens '100%' -> 'to', make sure to leave it untouched
58
- if (line.match(/^[@0-9]/) || line === "to" || line === "to{") {
59
- return line;
60
- }
61
-
62
- // IE specific selector (directly written with the tag) - keep it
63
- if (line.match(new RegExp(`^${tag}[^a-zA-Z0-9-]`))) {
64
- return line;
65
- }
66
-
67
- // No host and no tag in the beginning of the selector - prepend the tag
68
- return `${tag} ${line}`;
69
- };
70
-
71
- const adaptCSSForIE = (str, tag) => {
72
- str = str.replace(/\n/g, ` `);
73
- str = str.replace(/([{}])/g, `$1\n`);
74
- let result = ``;
75
- const lines = str.split(`\n`);
76
- lines.forEach(line => {
77
- const mustProcess = line.match(/{$/); // Only work on lines that end on {, otherwise just append to result
78
- if (mustProcess) {
79
- const lineParts = line.split(",");
80
- const processedLineParts = lineParts.map(linePart => {
81
- return adaptLinePart(linePart, tag);
82
- });
83
- line = processedLineParts.join(",");
84
- }
85
- result = `${result}${line}`;
86
- });
87
- return result;
88
- };
89
-
90
- export default adaptCSSForIE;
@@ -1,49 +0,0 @@
1
- import createStyleInHead from "../util/createStyleInHead.js";
2
- import getEffectiveStyle from "./getEffectiveStyle.js";
3
- import adaptCSSForIE from "./adaptCSSForIE.js";
4
- import { ponyfillNeeded, schedulePonyfill } from "./CSSVarsPonyfill.js";
5
-
6
- const IEStyleSet = new Set();
7
-
8
- const getStaticStyle = ElementClass => {
9
- let componentStaticStyles = ElementClass.staticAreaStyles;
10
- if (Array.isArray(componentStaticStyles)) {
11
- componentStaticStyles = componentStaticStyles.join(" ");
12
- }
13
-
14
- return componentStaticStyles;
15
- };
16
-
17
- /**
18
- * Creates the needed CSS for a web component class in the head tag
19
- * Note: IE11, Edge
20
- * @param ElementClass
21
- */
22
- const createComponentStyleTag = ElementClass => {
23
- const tag = ElementClass.getMetadata().getTag();
24
- if (IEStyleSet.has(tag)) {
25
- return;
26
- }
27
-
28
- let cssContent = getEffectiveStyle(ElementClass);
29
- cssContent = adaptCSSForIE(cssContent, tag);
30
-
31
- // Append static CSS, if any, for IE
32
- let staticCssContent = getStaticStyle(ElementClass);
33
- if (staticCssContent) {
34
- staticCssContent = adaptCSSForIE(staticCssContent, "ui5-static-area-item");
35
- cssContent = `${cssContent} ${staticCssContent}`;
36
- }
37
-
38
- createStyleInHead(cssContent, {
39
- "data-ui5-element-styles": tag,
40
- "disabled": "disabled",
41
- });
42
- if (ponyfillNeeded()) {
43
- schedulePonyfill();
44
- }
45
-
46
- IEStyleSet.add(tag);
47
- };
48
-
49
- export default createComponentStyleTag;
@@ -1,16 +0,0 @@
1
- // https://raw.githubusercontent.com/webcomponents/webcomponents-platform/master/webcomponents-platform.js
2
- /**
3
- * @license
4
- * Copyright (c) 2016 The Polymer Project Authors. All rights reserved.
5
- * This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt
6
- * The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt
7
- * The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt
8
- * Code distributed by Google as part of the polymer project is also
9
- * subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
10
- */
11
-
12
- if (!Array.from) {
13
- Array.from = function (object) {
14
- return [].slice.call(object);
15
- };
16
- }
@@ -1,44 +0,0 @@
1
- if (!Array.prototype.fill) {
2
- Object.defineProperty(Array.prototype, 'fill', {
3
- value: function(value) {
4
-
5
- // Steps 1-2.
6
- if (this == null) {
7
- throw new TypeError('this is null or not defined');
8
- }
9
-
10
- var O = Object(this);
11
-
12
- // Steps 3-5.
13
- var len = O.length >>> 0;
14
-
15
- // Steps 6-7.
16
- var start = arguments[1];
17
- var relativeStart = start >> 0;
18
-
19
- // Step 8.
20
- var k = relativeStart < 0 ?
21
- Math.max(len + relativeStart, 0) :
22
- Math.min(relativeStart, len);
23
-
24
- // Steps 9-10.
25
- var end = arguments[2];
26
- var relativeEnd = end === undefined ?
27
- len : end >> 0;
28
-
29
- // Step 11.
30
- var final = relativeEnd < 0 ?
31
- Math.max(len + relativeEnd, 0) :
32
- Math.min(relativeEnd, len);
33
-
34
- // Step 12.
35
- while (k < final) {
36
- O[k] = value;
37
- k++;
38
- }
39
-
40
- // Step 13.
41
- return O;
42
- }
43
- });
44
- }
@@ -1,46 +0,0 @@
1
- // https://tc39.github.io/ecma262/#sec-array.prototype.find
2
- if (!Array.prototype.find) {
3
- Object.defineProperty(Array.prototype, 'find', {
4
- value: function (predicate) {
5
- // 1. Let O be ? ToObject(this value).
6
- if (this == null) {
7
- throw TypeError('"this" is null or not defined');
8
- }
9
-
10
- var o = Object(this);
11
-
12
- // 2. Let len be ? ToLength(? Get(O, "length")).
13
- var len = o.length >>> 0;
14
-
15
- // 3. If IsCallable(predicate) is false, throw a TypeError exception.
16
- if (typeof predicate !== 'function') {
17
- throw TypeError('predicate must be a function');
18
- }
19
-
20
- // 4. If thisArg was supplied, let T be thisArg; else let T be undefined.
21
- var thisArg = arguments[1];
22
-
23
- // 5. Let k be 0.
24
- var k = 0;
25
-
26
- // 6. Repeat, while k < len
27
- while (k < len) {
28
- // a. Let Pk be ! ToString(k).
29
- // b. Let kValue be ? Get(O, Pk).
30
- // c. Let testResult be ToBoolean(? Call(predicate, T, « kValue, k, O »)).
31
- // d. If testResult is true, return kValue.
32
- var kValue = o[k];
33
- if (predicate.call(thisArg, kValue, k, o)) {
34
- return kValue;
35
- }
36
- // e. Increase k by 1.
37
- k++;
38
- }
39
-
40
- // 7. Return undefined.
41
- return undefined;
42
- },
43
- configurable: true,
44
- writable: true
45
- });
46
- }
@@ -1,51 +0,0 @@
1
- // https://tc39.github.io/ecma262/#sec-array.prototype.includes
2
- if (!Array.prototype.includes) {
3
- Object.defineProperty(Array.prototype, 'includes', {
4
- value: function(searchElement, fromIndex) {
5
-
6
- if (this == null) {
7
- throw new TypeError('"this" is null or not defined');
8
- }
9
-
10
- // 1. Let O be ? ToObject(this value).
11
- var o = Object(this);
12
-
13
- // 2. Let len be ? ToLength(? Get(O, "length")).
14
- var len = o.length >>> 0;
15
-
16
- // 3. If len is 0, return false.
17
- if (len === 0) {
18
- return false;
19
- }
20
-
21
- // 4. Let n be ? ToInteger(fromIndex).
22
- // (If fromIndex is undefined, this step produces the value 0.)
23
- var n = fromIndex | 0;
24
-
25
- // 5. If n ≥ 0, then
26
- // a. Let k be n.
27
- // 6. Else n < 0,
28
- // a. Let k be len + n.
29
- // b. If k < 0, let k be 0.
30
- var k = Math.max(n >= 0 ? n : len - Math.abs(n), 0);
31
-
32
- function sameValueZero(x, y) {
33
- return x === y || (typeof x === 'number' && typeof y === 'number' && isNaN(x) && isNaN(y));
34
- }
35
-
36
- // 7. Repeat, while k < len
37
- while (k < len) {
38
- // a. Let elementK be the result of ? Get(O, ! ToString(k)).
39
- // b. If SameValueZero(searchElement, elementK) is true, return true.
40
- if (sameValueZero(o[k], searchElement)) {
41
- return true;
42
- }
43
- // c. Increase k by 1.
44
- k++;
45
- }
46
-
47
- // 8. Return false
48
- return false;
49
- }
50
- });
51
- }
@@ -1,11 +0,0 @@
1
- if (!Element.prototype.closest) {
2
- Element.prototype.closest = function(s) {
3
- var el = this;
4
- if (!document.documentElement.contains(el)) return null;
5
- do {
6
- if (el.matches(s)) return el;
7
- el = el.parentElement || el.parentNode;
8
- } while (el !== null && el.nodeType === 1);
9
- return null;
10
- };
11
- }
@@ -1,6 +0,0 @@
1
- if (Element && !Element.prototype.matches) {
2
- var proto = Element.prototype;
3
- proto.matches = proto.matchesSelector ||
4
- proto.mozMatchesSelector || proto.msMatchesSelector ||
5
- proto.oMatchesSelector || proto.webkitMatchesSelector;
6
- }
@@ -1,9 +0,0 @@
1
- if (!Map.prototype.keys) {
2
- Map.prototype.keys = function() {
3
- const keys = [];
4
- this.forEach((value, key) => {
5
- keys.push(key);
6
- });
7
- return keys;
8
- }
9
- }
@@ -1,5 +0,0 @@
1
- Number.isInteger = Number.isInteger || function(value) {
2
- return typeof value === 'number' &&
3
- isFinite(value) &&
4
- Math.floor(value) === value;
5
- };
@@ -1 +0,0 @@
1
- Number.isNaN = Number.isNaN || window.isNaN;
@@ -1 +0,0 @@
1
- Number.parseInt = Number.parseInt || window.parseInt;
@@ -1,31 +0,0 @@
1
- // https://raw.githubusercontent.com/webcomponents/webcomponents-platform/master/webcomponents-platform.js
2
- /**
3
- * @license
4
- * Copyright (c) 2016 The Polymer Project Authors. All rights reserved.
5
- * This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt
6
- * The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt
7
- * The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt
8
- * Code distributed by Google as part of the polymer project is also
9
- * subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
10
- */
11
-
12
- if (!Object.assign) {
13
- var assign = function(target, source) {
14
- var n$ = Object.getOwnPropertyNames(source);
15
- for (var i=0, p; i < n$.length; i++) {
16
- p = n$[i];
17
- target[p] = source[p];
18
- }
19
- }
20
-
21
- Object.assign = function(target, sources) {
22
- var args = [].slice.call(arguments, 1);
23
- for (var i=0, s; i < args.length; i++) {
24
- s = args[i];
25
- if (s) {
26
- assign(target, s);
27
- }
28
- }
29
- return target;
30
- }
31
- }
@@ -1,11 +0,0 @@
1
- if (!Object.entries) {
2
- Object.entries = function( obj ){
3
- var ownProps = Object.keys( obj ),
4
- i = ownProps.length,
5
- resArray = new Array(i); // preallocate the Array
6
- while (i--)
7
- resArray[i] = [ownProps[i], obj[ownProps[i]]];
8
-
9
- return resArray;
10
- };
11
- }
@@ -1,2 +0,0 @@
1
- /*! (C) WebReflection Mit Style License */
2
- (function(e,t){"use strict";if(t in e)return;var n,r=typeof global==typeof r?window:global,i=0,s=""+Math.random(),o="__symbol:",u=o.length,a="__symbol@@"+s,f="defineProperty",l="defineProperties",c="getOwnPropertyNames",h="getOwnPropertyDescriptor",p="propertyIsEnumerable",d=e[c],v=e[h],m=e.create,g=e.keys,y=e.freeze||e,b=e[f],w=e[l],E=v(e,c),S=e.prototype,x=S.hasOwnProperty,T=S[p],N=S.toString,C=Array.prototype.indexOf||function(e){for(var t=this.length;t--&&this[t]!==e;);return t},k=function(e,t,n){x.call(e,a)||b(e,a,{enumerable:!1,configurable:!1,writable:!1,value:{}}),e[a]["@@"+t]=n},L=function(e,t){var n=m(e);return d(t).forEach(function(e){D.call(t,e)&&I(n,e,t[e])}),n},A=function(e){var t=m(e);return t.enumerable=!1,t},O=function(){},M=function(e){return e!=a&&!x.call(B,e)},_=function(e){return e!=a&&x.call(B,e)},D=function U(e){var t=""+e;return _(t)?x.call(this,t)&&this[a]["@@"+t]:T.call(this,e)},P=function(t){var r={enumerable:!1,configurable:!0,get:O,set:function(e){n(this,t,{enumerable:!1,configurable:!0,writable:!0,value:e}),k(this,t,!0)}};return b(S,t,r),y(B[t]=b(e(t),"constructor",j))},H=function(t){if(this&&this!==r)throw new TypeError("Symbol is not a constructor");return P(o.concat(t||"",s,++i))},B=m(null),j={value:H},F=function(e){return B[e]},I=function(t,r,i){var s=""+r;return _(s)?(n(t,s,i.enumerable?A(i):i),k(t,s,!!i.enumerable)):b(t,r,i),t},q=function(t){return d(t).filter(_).map(F)};E.value=I,b(e,f,E),E.value=q,b(e,t,E),E.value=function(t){return d(t).filter(M)},b(e,c,E),E.value=function(t,n){var r=q(n);return r.length?g(n).concat(r).forEach(function(e){D.call(n,e)&&I(t,e,n[e])}):w(t,n),t},b(e,l,E),E.value=D,b(S,p,E),E.value=H,b(r,"Symbol",E),E.value=function(e){var t=o.concat(o,e,s);return t in S?B[t]:P(t)},b(H,"for",E),E.value=function(e){if(M(e))throw new TypeError(e+" is not a symbol");if(!x.call(B,e))return void 0;var t=e.slice(u);return t.slice(0,u)!==o?void 0:(t=t.slice(u),t===s?void 0:(t=t.slice(0,t.length-s.length),t.length>0?t:void 0))},b(H,"keyFor",E),E.value=function(t,n){var r=v(t,n);return r&&_(n)&&(r.enumerable=D.call(t,n)),r},b(e,h,E),E.value=function(e,t){return arguments.length===1?m(e):L(e,t)},b(e,"create",E),E.value=function(){var e=N.call(this);return e==="[object String]"&&_(this)?"[object Symbol]":e},b(S,"toString",E);try{if(!0!==m(b({},o,{get:function(){return b(this,o,{value:!0})[o]}}))[o])throw"IE11";n=b}catch(R){n=function(e,t,n){var r=v(S,t);delete S[t],b(e,t,n),b(S,t,r)}}})(Object,"getOwnPropertySymbols"),function(e,t){var n=e.defineProperty,r=e.prototype,i=r.toString,s="toStringTag",o;["iterator","match","replace","search","split","hasInstance","isConcatSpreadable","unscopables","species","toPrimitive",s].forEach(function(t){if(!(t in Symbol)){n(Symbol,t,{value:Symbol(t)});switch(t){case s:o=e.getOwnPropertyDescriptor(r,"toString"),o.value=function(){var e=i.call(this),t=this[Symbol.toStringTag];return typeof t=="undefined"?e:"[object "+t+"]"},n(r,"toString",o)}}})}(Object,Symbol),function(e,t,n){function r(){return this}t[e]||(t[e]=function(){var t=0,n=this,i={next:function(){var r=n.length<=t;return r?{done:r}:{done:r,value:n[t++]}}};return i[e]=r,i}),n[e]||(n[e]=function(){var t=String.fromCodePoint,n=this,i=0,s=n.length,o={next:function(){var r=s<=i,o=r?"":t(n.codePointAt(i));return i+=o.length,r?{done:r}:{done:r,value:o}}};return o[e]=r,o})}(Symbol.iterator,Array.prototype,String.prototype);
@@ -1,27 +0,0 @@
1
- if (!window.WeakSet) {
2
- var counter = Date.now() % 1e9;
3
-
4
- function WeakSet(data) {
5
- this.name = '__st' + (Math.random() * 1e9 >>> 0) + (counter++ + '__');
6
- data && data.forEach && data.forEach(this.add, this);
7
- };
8
-
9
-
10
- var proto = WeakSet.prototype;
11
-
12
- proto['add'] = function (val) {
13
- var name = this.name;
14
- if (!val[name]) Object.defineProperty(val, name, {value: true, writable: true});
15
- return this;
16
- };
17
- proto['delete'] = function (val) {
18
- if (!val[this.name]) return false;
19
- val[this.name] = undefined;
20
- return true;
21
- };
22
- proto['has'] = function (val) {
23
- return !!val[this.name];
24
- };
25
-
26
- window.WeakSet = WeakSet;
27
- }
@@ -1,182 +0,0 @@
1
- if (!String.prototype.startsWith) {
2
- (function () {
3
- "use strict";
4
- var toString = ({}).toString;
5
- var startsWith = function (search) {
6
- if (this == null) {
7
- throw TypeError();
8
- }
9
- var string = String(this);
10
- if (search && toString.call(search) == "[object RegExp]") {
11
- throw TypeError();
12
- }
13
- var stringLength = string.length;
14
- var searchString = String(search);
15
- var searchLength = searchString.length;
16
- var position = arguments.length > 1 ? arguments[1] : undefined;
17
- var pos = position ? Number(position) : 0;
18
- if (pos != pos) {
19
- pos = 0;
20
- }
21
- var start = Math.min(Math.max(pos, 0), stringLength);
22
- if (searchLength + start > stringLength) {
23
- return false;
24
- }
25
- var index = -1;
26
- while (++index < searchLength) {
27
- if (string.charCodeAt(start + index) != searchString.charCodeAt(index)) {
28
- return false;
29
- }
30
- }
31
- return true;
32
- };
33
- Object.defineProperty(String.prototype, "startsWith", {
34
- "value": startsWith,
35
- "configurable": true,
36
- "writable": true
37
- });
38
- })();
39
- }
40
- if (!String.prototype.endsWith) {
41
- (function () {
42
- "use strict";
43
- var toString = ({}).toString;
44
- var endsWith = function (search) {
45
- if (this == null) {
46
- throw TypeError();
47
- }
48
- var string = String(this);
49
- if (search && toString.call(search) == "[object RegExp]") {
50
- throw TypeError();
51
- }
52
- var stringLength = string.length;
53
- var searchString = String(search);
54
- var searchLength = searchString.length;
55
- var pos = stringLength;
56
- if (arguments.length > 1) {
57
- var position = arguments[1];
58
- if (position !== undefined) {
59
- pos = position ? Number(position) : 0;
60
- if (pos != pos) {
61
- pos = 0;
62
- }
63
- }
64
- }
65
- var end = Math.min(Math.max(pos, 0), stringLength);
66
- var start = end - searchLength;
67
- if (start < 0) {
68
- return false;
69
- }
70
- var index = -1;
71
- while (++index < searchLength) {
72
- if (string.charCodeAt(start + index) != searchString.charCodeAt(index)) {
73
- return false;
74
- }
75
- }
76
- return true;
77
- };
78
- Object.defineProperty(String.prototype, "endsWith", {
79
- "value": endsWith,
80
- "configurable": true,
81
- "writable": true
82
- });
83
- })();
84
- }
85
- if (!String.prototype.includes) {
86
- (function () {
87
- "use strict";
88
- var toString = ({}).toString;
89
- var indexOf = ("").indexOf;
90
- var includes = function (search) {
91
- if (this == null) {
92
- throw TypeError();
93
- }
94
- var string = String(this);
95
- if (search && toString.call(search) == "[object RegExp]") {
96
- throw TypeError();
97
- }
98
- var stringLength = string.length;
99
- var searchString = String(search);
100
- var searchLength = searchString.length;
101
- var position = arguments.length > 1 ? arguments[1] : undefined;
102
- var pos = position ? Number(position) : 0;
103
- if (pos != pos) {
104
- pos = 0;
105
- }
106
- var start = Math.min(Math.max(pos, 0), stringLength);
107
- if (searchLength + start > stringLength) {
108
- return false;
109
- }
110
- return indexOf.call(string, searchString, pos) != -1;
111
- };
112
- Object.defineProperty(String.prototype, "includes", {
113
- "value": includes,
114
- "configurable": true,
115
- "writable": true
116
- });
117
- })();
118
- }
119
- if (!String.prototype.repeat) {
120
- (function () {
121
- "use strict";
122
- var repeat = function (count) {
123
- if (this == null) {
124
- throw TypeError();
125
- }
126
- var string = String(this);
127
- var n = count ? Number(count) : 0;
128
- if (n != n) {
129
- n = 0;
130
- }
131
- if (n < 0 || n == Infinity) {
132
- throw RangeError();
133
- }
134
- var result = "";
135
- while (n) {
136
- if (n % 2 == 1) {
137
- result += string;
138
- }
139
- if (n > 1) {
140
- string += string;
141
- }
142
- n >>= 1;
143
- }
144
- return result;
145
- };
146
- Object.defineProperty(String.prototype, "repeat", {
147
- "value": repeat,
148
- "configurable": true,
149
- "writable": true
150
- });
151
- })();
152
- }
153
- if (!String.prototype.padStart) {
154
- String.prototype.padStart = function padStart(targetLength, padString) {
155
- targetLength = targetLength >> 0;
156
- padString = String(typeof padString !== "undefined" ? padString : " ");
157
- if (this.length > targetLength) {
158
- return String(this);
159
- } else {
160
- targetLength = targetLength - this.length;
161
- if (targetLength > padString.length) {
162
- padString += padString.repeat(targetLength / padString.length);
163
- }
164
- return padString.slice(0, targetLength) + String(this);
165
- }
166
- };
167
- }
168
- if (!String.prototype.padEnd) {
169
- String.prototype.padEnd = function padEnd(targetLength, padString) {
170
- targetLength = targetLength >> 0;
171
- padString = String(typeof padString !== "undefined" ? padString : " ");
172
- if (this.length > targetLength) {
173
- return String(this);
174
- } else {
175
- targetLength = targetLength - this.length;
176
- if (targetLength > padString.length) {
177
- padString += padString.repeat(targetLength / padString.length);
178
- }
179
- return String(this) + padString.slice(0, targetLength);
180
- }
181
- };
182
- }