@ui5/webcomponents-base 1.14.6 → 1.14.7

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 (30) hide show
  1. package/.eslintignore +1 -1
  2. package/CHANGELOG.md +11 -0
  3. package/dist/api.json +1 -1
  4. package/dist/assets/{Boot.57dedc27.js → Boot.25013294.js} +1 -1
  5. package/dist/assets/{bundle.esm.24edb8f2.js → bundle.esm.61c10c47.js} +1 -1
  6. package/dist/assets/test/pages/{Boot.html.5de755f9.js → Boot.html.29147b96.js} +1 -1
  7. package/dist/assets/test/pages/{i18n.html.e9f0b287.js → i18n.html.bed8aab6.js} +1 -1
  8. package/dist/assets/test/pages/{i18n_texts.html.493ba52c.js → i18n_texts.html.b0894397.js} +1 -1
  9. package/dist/generated/VersionInfo.js +3 -3
  10. package/dist/sap/base/Log.js +698 -188
  11. package/dist/sap/base/assert.js +28 -1
  12. package/dist/sap/base/config/MemoryConfigurationProvider.js +20 -0
  13. package/dist/sap/base/security/URLListValidator.js +253 -6
  14. package/dist/sap/base/security/encodeCSS.js +34 -8
  15. package/dist/sap/base/security/encodeXML.js +47 -17
  16. package/dist/sap/base/security/sanitizeHTML.js +35 -13
  17. package/dist/sap/base/strings/toHex.js +27 -2
  18. package/dist/sap/base/util/now.js +24 -3
  19. package/dist/sap/base/util/uid.js +27 -0
  20. package/dist/sap/ui/thirdparty/caja-html-sanitizer.js +112 -97
  21. package/dist/test/pages/AllTestElements.html +2 -2
  22. package/dist/test/pages/Boot.html +2 -2
  23. package/dist/test/pages/Configuration.html +2 -2
  24. package/dist/test/pages/ConfigurationScript.html +2 -2
  25. package/dist/test/pages/WithComplexTemplate.html +2 -2
  26. package/dist/test/pages/i18n.html +3 -3
  27. package/dist/test/pages/i18n_texts.html +3 -3
  28. package/package-scripts.cjs +3 -5
  29. package/package.json +4 -5
  30. package/used-modules.txt +4 -0
@@ -0,0 +1,27 @@
1
+ /**
2
+ * Some private variable used for creation of (pseudo-)unique IDs.
3
+ * @type int
4
+ * @private
5
+ */ /*!
6
+ * OpenUI5
7
+ * (c) Copyright 2009-2024 SAP SE or an SAP affiliate company.
8
+ * Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
9
+ */
10
+
11
+ var iIdCounter = 0;
12
+
13
+ /**
14
+ * Creates and returns a pseudo-unique ID.
15
+ *
16
+ * No means for detection of overlap with already present or future UIDs.
17
+ *
18
+ * @function
19
+ * @since 1.58
20
+ * @alias module:sap/base/util/uid
21
+ * @return {string} A pseudo-unique id.
22
+ * @public
23
+ */
24
+ var fnUid = function uid() {
25
+ return "id-" + new Date().valueOf() + "-" + iIdCounter++;
26
+ };
27
+ export default fnUid;
@@ -489,7 +489,10 @@ var cssSchema = (function () {
489
489
  },
490
490
  'font-weight': {
491
491
  'cssPropBits': 0,
492
- 'cssLitGroup': [ L[ 4 ], L[ 47 ], L[ 55 ] ]
492
+ 'cssLitGroup': [ L[ 4 ], L[ 47 ], L[ 55 ] ],
493
+ // ##### BEGIN: MODIFIED BY SAP
494
+ 'cssLitNumeric': true
495
+ // ##### END: MODIFIED BY SAP
493
496
  },
494
497
  'height': {
495
498
  'cssPropBits': 37,
@@ -1217,101 +1220,113 @@ var sanitizeCssProperty = (function () {
1217
1220
  token = (
1218
1221
  // Strip out spaces. Normally cssparser.js dumps these, but we
1219
1222
  // strip them out in case the content doesn't come via cssparser.js.
1220
- (cc === ' '.charCodeAt(0)) ? ''
1221
- : (cc === '"'.charCodeAt(0)) ? ( // Quoted string.
1222
- (qstringBits === CSS_PROP_BIT_QSTRING_URL && opt_naiveUriRewriter)
1223
- // Sanitize and convert to url("...") syntax.
1224
- // Treat url content as case-sensitive.
1225
- ? (normalizeUrl(safeUri(
1226
- decodeCss(tokens[i].substring(1, token.length - 1)),
1227
- property,
1228
- opt_naiveUriRewriter)))
1229
- // Drop if plain text content strings not allowed.
1230
- : (qstringBits === CSS_PROP_BIT_QSTRING_CONTENT) ? token : '')
1231
- // Preserve hash color literals if allowed.
1232
- : (cc === '#'.charCodeAt(0) && /^#(?:[0-9a-f]{3}){1,2}$/.test(token))
1233
- ? (propBits & CSS_PROP_BIT_HASH_VALUE ? token : '')
1234
- : ('0'.charCodeAt(0) <= cc && cc <= '9'.charCodeAt(0))
1235
- // A number starting with a digit.
1236
- ? ((propBits & CSS_PROP_BIT_QUANTITY)
1237
- ? ((propBits & CSS_PROP_BIT_Z_INDEX)
1238
- ? (token.match(/^\d{1,7}$/) ? token : '')
1239
- : token)
1240
- : '')
1241
- // Normalize quantities so they don't start with a '.' or '+' sign and
1242
- // make sure they all have an integer component so can't be confused
1243
- // with a dotted identifier.
1244
- // This can't be done in the lexer since ".4" is a valid rule part.
1245
- : (cc1 = token.charCodeAt(1),
1246
- cc2 = token.charCodeAt(2),
1247
- isnum1 = '0'.charCodeAt(0) <= cc1 && cc1 <= '9'.charCodeAt(0),
1248
- isnum2 = '0'.charCodeAt(0) <= cc2 && cc2 <= '9'.charCodeAt(0),
1249
- // +.5 -> 0.5 if allowed.
1250
- (cc === '+'.charCodeAt(0)
1251
- && (isnum1 || (cc1 === '.'.charCodeAt(0) && isnum2))))
1252
- ? ((propBits & CSS_PROP_BIT_QUANTITY)
1253
- ? ((propBits & CSS_PROP_BIT_Z_INDEX)
1254
- ? (token.match(/^\+\d{1,7}$/) ? token : '')
1255
- : ((isnum1 ? '' : '0') + token.substring(1)))
1256
- : '')
1257
- // -.5 -> -0.5 if allowed otherwise -> 0 if quantities allowed.
1258
- : (cc === '-'.charCodeAt(0)
1259
- && (isnum1 || (cc1 === '.'.charCodeAt(0) && isnum2)))
1260
- ? ((propBits & CSS_PROP_BIT_NEGATIVE_QUANTITY)
1261
- ? ((propBits & CSS_PROP_BIT_Z_INDEX)
1262
- ? (token.match(/^\-\d{1,7}$/) ? token : '')
1263
- : ((isnum1 ? '-' : '-0') + token.substring(1)))
1264
- : ((propBits & CSS_PROP_BIT_QUANTITY) ? '0' : ''))
1265
- // .5 -> 0.5 if allowed.
1266
- : (cc === '.'.charCodeAt(0) && isnum1)
1267
- ? ((propBits & CSS_PROP_BIT_QUANTITY) ? '0' + token : '')
1268
- // Handle url("...") by rewriting the body.
1269
- : ('url(' === token.substring(0, 4))
1270
- ? ((opt_naiveUriRewriter && (qstringBits & CSS_PROP_BIT_QSTRING_URL))
1271
- ? normalizeUrl(safeUri(
1272
- tokens[i].substring(5, token.length - 2),
1273
- property,
1274
- opt_naiveUriRewriter))
1275
- : '')
1276
- // Handle func(...) and literal tokens
1277
- // such as keywords and punctuation.
1278
- : (
1279
- // Step 1. Combine func(...) into something that can be compared
1280
- // against propertySchema.cssExtra.
1281
- (token.charAt(token.length-1) === '(')
1282
- && (end = normalizeFunctionCall(tokens, i),
1283
- // When tokens is
1284
- // ['x', ' ', 'rgb(', '255', ',', '0', ',', '0', ')', ' ', 'y']
1285
- // and i is the index of 'rgb(' and end is the index of ')'
1286
- // splices tokens to where i now is the index of the whole call:
1287
- // ['x', ' ', 'rgb( 255 , 0 , 0 )', ' ', 'y']
1288
- tokens.splice(i, end - i,
1289
- token = tokens.slice(i, end).join(' '))),
1290
- litGroup = propertySchema.cssLitGroup,
1291
- litMap = (litGroup
1292
- ? (propertySchema.cssLitMap
1293
- // Lazily compute the union from litGroup.
1294
- || (propertySchema.cssLitMap = unionArrays(litGroup)))
1295
- : ALLOWED_LITERAL), // A convenient empty object.
1296
- (litMap[token] === ALLOWED_LITERAL
1297
- || propertySchema.cssExtra && propertySchema.cssExtra.test(token)))
1298
- // Token is in the literal map or matches extra.
1299
- ? token
1300
- : (/^\w+$/.test(token)
1301
- && (qstringBits === CSS_PROP_BIT_QSTRING_CONTENT))
1302
- // Quote unrecognized keywords so font names like
1303
- // Arial Bold
1304
- // ->
1305
- // "Arial Bold"
1306
- ? (lastQuoted+1 === k
1307
- // If the last token was also a keyword that was quoted, then
1308
- // combine this token into that.
1309
- ? (tokens[lastQuoted] = tokens[lastQuoted]
1310
- .substring(0, tokens[lastQuoted].length-1) + ' ' + token + '"',
1311
- token = '')
1312
- : (lastQuoted = k, '"' + token + '"'))
1313
- // Disallowed.
1314
- : '');
1223
+ (cc === ' '.charCodeAt(0))
1224
+ ? ''
1225
+ : (cc === '"'.charCodeAt(0))
1226
+ ? ( // Quoted string.
1227
+ (qstringBits === CSS_PROP_BIT_QSTRING_URL && opt_naiveUriRewriter)
1228
+ // Sanitize and convert to url("...") syntax.
1229
+ // Treat url content as case-sensitive.
1230
+ ? (normalizeUrl(
1231
+ safeUri(
1232
+ decodeCss(tokens[i].substring(1, token.length - 1)),
1233
+ property,
1234
+ opt_naiveUriRewriter
1235
+ )
1236
+ ))
1237
+ // Drop if plain text content strings not allowed.
1238
+ : (qstringBits === CSS_PROP_BIT_QSTRING_CONTENT) ? token : '')
1239
+ // Preserve hash color literals if allowed.
1240
+ : (cc === '#'.charCodeAt(0) && /^#(?:[0-9a-f]{3}){1,2}$/.test(token))
1241
+ ? (propBits & CSS_PROP_BIT_HASH_VALUE ? token : '')
1242
+ // ##### BEGIN: MODIFIED BY SAP
1243
+ // : ('0'.charCodeAt(0) <= cc && cc <= '9'.charCodeAt(0))
1244
+ : ('0'.charCodeAt(0) <= cc && cc <= '9'.charCodeAt(0) && !propertySchema.cssLitNumeric)
1245
+ // ##### END: MODIFIED BY SAP
1246
+ // A number starting with a digit.
1247
+ ? ((propBits & CSS_PROP_BIT_QUANTITY)
1248
+ ? ((propBits & CSS_PROP_BIT_Z_INDEX)
1249
+ ? (token.match(/^\d{1,7}$/) ? token : '')
1250
+ : token)
1251
+ : '')
1252
+ // Normalize quantities so they don't start with a '.' or '+' sign and
1253
+ // make sure they all have an integer component so can't be confused
1254
+ // with a dotted identifier.
1255
+ // This can't be done in the lexer since ".4" is a valid rule part.
1256
+ : (cc1 = token.charCodeAt(1),
1257
+ cc2 = token.charCodeAt(2),
1258
+ isnum1 = '0'.charCodeAt(0) <= cc1 && cc1 <= '9'.charCodeAt(0),
1259
+ isnum2 = '0'.charCodeAt(0) <= cc2 && cc2 <= '9'.charCodeAt(0),
1260
+ // +.5 -> 0.5 if allowed.
1261
+ (cc === '+'.charCodeAt(0)
1262
+ && (isnum1 || (cc1 === '.'.charCodeAt(0) && isnum2))))
1263
+ ? ((propBits & CSS_PROP_BIT_QUANTITY)
1264
+ ? ((propBits & CSS_PROP_BIT_Z_INDEX)
1265
+ ? (token.match(/^\+\d{1,7}$/) ? token : '')
1266
+ : ((isnum1 ? '' : '0') + token.substring(1)))
1267
+ : '')
1268
+ // -.5 -> -0.5 if allowed otherwise -> 0 if quantities allowed.
1269
+ : (cc === '-'.charCodeAt(0)
1270
+ && (isnum1 || (cc1 === '.'.charCodeAt(0) && isnum2)))
1271
+ ? ((propBits & CSS_PROP_BIT_NEGATIVE_QUANTITY)
1272
+ ? ((propBits & CSS_PROP_BIT_Z_INDEX)
1273
+ ? (token.match(/^\-\d{1,7}$/) ? token : '')
1274
+ : ((isnum1 ? '-' : '-0') + token.substring(1)))
1275
+ : ((propBits & CSS_PROP_BIT_QUANTITY) ? '0' : ''))
1276
+ // .5 -> 0.5 if allowed.
1277
+ : (cc === '.'.charCodeAt(0) && isnum1)
1278
+ ? ((propBits & CSS_PROP_BIT_QUANTITY) ? '0' + token : '')
1279
+ // Handle url("...") by rewriting the body.
1280
+ : ('url(' === token.substring(0, 4))
1281
+ ? ((opt_naiveUriRewriter && (qstringBits & CSS_PROP_BIT_QSTRING_URL))
1282
+ ? normalizeUrl(
1283
+ safeUri(
1284
+ tokens[i].substring(5, token.length - 2),
1285
+ property,
1286
+ opt_naiveUriRewriter
1287
+ )
1288
+ )
1289
+ : '')
1290
+ // Handle func(...) and literal tokens
1291
+ // such as keywords and punctuation.
1292
+ : (
1293
+ // Step 1. Combine func(...) into something that can be compared
1294
+ // against propertySchema.cssExtra.
1295
+ (token.charAt(token.length-1) === '(')
1296
+ && (end = normalizeFunctionCall(tokens, i),
1297
+ // When tokens is
1298
+ // ['x', ' ', 'rgb(', '255', ',', '0', ',', '0', ')', ' ', 'y']
1299
+ // and i is the index of 'rgb(' and end is the index of ')'
1300
+ // splices tokens to where i now is the index of the whole call:
1301
+ // ['x', ' ', 'rgb( 255 , 0 , 0 )', ' ', 'y']
1302
+ tokens.splice(i, end - i,
1303
+ token = tokens.slice(i, end).join(' '))),
1304
+ litGroup = propertySchema.cssLitGroup,
1305
+ litMap = (
1306
+ litGroup
1307
+ ? (propertySchema.cssLitMap
1308
+ // Lazily compute the union from litGroup.
1309
+ || (propertySchema.cssLitMap = unionArrays(litGroup)))
1310
+ : ALLOWED_LITERAL), // A convenient empty object.
1311
+ (litMap[token] === ALLOWED_LITERAL
1312
+ || propertySchema.cssExtra && propertySchema.cssExtra.test(token)))
1313
+ // Token is in the literal map or matches extra.
1314
+ ? token
1315
+ : (/^\w+$/.test(token)
1316
+ && (qstringBits === CSS_PROP_BIT_QSTRING_CONTENT))
1317
+ // Quote unrecognized keywords so font names like
1318
+ // Arial Bold
1319
+ // ->
1320
+ // "Arial Bold"
1321
+ ? (lastQuoted+1 === k
1322
+ // If the last token was also a keyword that was quoted, then
1323
+ // combine this token into that.
1324
+ ? (tokens[lastQuoted] = tokens[lastQuoted]
1325
+ .substring(0, tokens[lastQuoted].length-1) + ' ' + token + '"',
1326
+ token = '')
1327
+ : (lastQuoted = k, '"' + token + '"'))
1328
+ // Disallowed.
1329
+ : '');
1315
1330
  if (token) {
1316
1331
  tokens[k++] = token;
1317
1332
  }
@@ -1989,7 +2004,7 @@ if (typeof window !== 'undefined') {
1989
2004
  }
1990
2005
  /*!
1991
2006
  * OpenUI5
1992
- * (c) Copyright 2009-2023 SAP SE or an SAP affiliate company.
2007
+ * (c) Copyright 2009-2024 SAP SE or an SAP affiliate company.
1993
2008
  * Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
1994
2009
  */
1995
2010
  // Based on coding from the HTML4 Sanitizer by Google Inc.
@@ -6,8 +6,8 @@
6
6
  <title>Base package default test page</title>
7
7
 
8
8
 
9
- <script type="module" crossorigin src="/assets/Boot.57dedc27.js"></script>
10
- <script type="module" crossorigin src="/assets/bundle.esm.24edb8f2.js"></script>
9
+ <script type="module" crossorigin src="/assets/Boot.25013294.js"></script>
10
+ <script type="module" crossorigin src="/assets/bundle.esm.61c10c47.js"></script>
11
11
  </head>
12
12
 
13
13
  <body>
@@ -6,8 +6,8 @@
6
6
  <script>delete Document.prototype.adoptedStyleSheets</script>
7
7
 
8
8
 
9
- <script type="module" crossorigin src="/assets/test/pages/Boot.html.5de755f9.js"></script>
10
- <link rel="modulepreload" crossorigin href="/assets/Boot.57dedc27.js">
9
+ <script type="module" crossorigin src="/assets/test/pages/Boot.html.29147b96.js"></script>
10
+ <link rel="modulepreload" crossorigin href="/assets/Boot.25013294.js">
11
11
  <link rel="stylesheet" href="/assets/Boot.34b7cea0.css">
12
12
  </head>
13
13
  <body>
@@ -8,8 +8,8 @@
8
8
 
9
9
 
10
10
 
11
- <script type="module" crossorigin src="/assets/Boot.57dedc27.js"></script>
12
- <script type="module" crossorigin src="/assets/bundle.esm.24edb8f2.js"></script>
11
+ <script type="module" crossorigin src="/assets/Boot.25013294.js"></script>
12
+ <script type="module" crossorigin src="/assets/bundle.esm.61c10c47.js"></script>
13
13
  </head>
14
14
 
15
15
  <body>
@@ -40,8 +40,8 @@
40
40
 
41
41
 
42
42
 
43
- <script type="module" crossorigin src="/assets/Boot.57dedc27.js"></script>
44
- <script type="module" crossorigin src="/assets/bundle.esm.24edb8f2.js"></script>
43
+ <script type="module" crossorigin src="/assets/Boot.25013294.js"></script>
44
+ <script type="module" crossorigin src="/assets/bundle.esm.61c10c47.js"></script>
45
45
  </head>
46
46
 
47
47
  <body>
@@ -4,8 +4,8 @@
4
4
  <meta charset="utf-8">
5
5
  <title>Compex Template Test Page</title>
6
6
 
7
- <script type="module" crossorigin src="/assets/Boot.57dedc27.js"></script>
8
- <script type="module" crossorigin src="/assets/bundle.esm.24edb8f2.js"></script>
7
+ <script type="module" crossorigin src="/assets/Boot.25013294.js"></script>
8
+ <script type="module" crossorigin src="/assets/bundle.esm.61c10c47.js"></script>
9
9
  </head>
10
10
 
11
11
  <body>
@@ -7,9 +7,9 @@
7
7
 
8
8
 
9
9
 
10
- <script type="module" crossorigin src="/assets/test/pages/i18n.html.e9f0b287.js"></script>
11
- <link rel="modulepreload" crossorigin href="/assets/Boot.57dedc27.js">
12
- <link rel="modulepreload" crossorigin href="/assets/bundle.esm.24edb8f2.js">
10
+ <script type="module" crossorigin src="/assets/test/pages/i18n.html.bed8aab6.js"></script>
11
+ <link rel="modulepreload" crossorigin href="/assets/Boot.25013294.js">
12
+ <link rel="modulepreload" crossorigin href="/assets/bundle.esm.61c10c47.js">
13
13
  </head>
14
14
 
15
15
  <body>
@@ -8,9 +8,9 @@
8
8
 
9
9
 
10
10
 
11
- <script type="module" crossorigin src="/assets/test/pages/i18n_texts.html.493ba52c.js"></script>
12
- <link rel="modulepreload" crossorigin href="/assets/Boot.57dedc27.js">
13
- <link rel="modulepreload" crossorigin href="/assets/bundle.esm.24edb8f2.js">
11
+ <script type="module" crossorigin src="/assets/test/pages/i18n_texts.html.b0894397.js"></script>
12
+ <link rel="modulepreload" crossorigin href="/assets/Boot.25013294.js">
13
+ <link rel="modulepreload" crossorigin href="/assets/bundle.esm.61c10c47.js">
14
14
  </head>
15
15
 
16
16
  <body>
@@ -5,8 +5,8 @@ const assetParametersScript = resolve.sync("@ui5/webcomponents-base/lib/generate
5
5
  const stylesScript = resolve.sync("@ui5/webcomponents-base/lib/generate-styles/index.js");
6
6
  const versionScript = resolve.sync("@ui5/webcomponents-base/lib/generate-version-info/index.js");
7
7
  const copyUsedModules = resolve.sync("@ui5/webcomponents-tools/lib/copy-list/index.js");
8
- const esmAbsToRel = resolve.sync("@ui5/webcomponents-tools/lib/esm-abs-to-rel/index.js");
9
8
  const preprocessJSDocScript = resolve.sync("@ui5/webcomponents-tools/lib/jsdoc/preprocess.js");
9
+ const amdToES6 = resolve.sync("@ui5/webcomponents-tools/lib/amd-to-es6/index.js");
10
10
 
11
11
  const LIB = path.join(__dirname, `../tools/lib/`);
12
12
 
@@ -18,11 +18,9 @@ const scripts = {
18
18
  prepare: "cross-env UI5_TS=true nps clean integrate copy generateAssetParameters generateVersionInfo generateStyles generateTemplates typescript generateAPI",
19
19
  typescript: "tsc",
20
20
  integrate: {
21
- default: "nps integrate.copy-used-modules integrate.replace-amd integrate.amd-to-es6 integrate.esm-abs-to-rel integrate.third-party",
21
+ default: "nps integrate.copy-used-modules integrate.amd-to-es6 integrate.third-party",
22
22
  "copy-used-modules": `node "${copyUsedModules}" ./used-modules.txt dist/`,
23
- "replace-amd": "replace-in-file sap.ui.define define dist/**/*.js",
24
- "amd-to-es6": "amdtoes6 --src=dist/ --replace --glob=**/*.js",
25
- "esm-abs-to-rel": `node "${esmAbsToRel}" dist/ dist/`,
23
+ "amd-to-es6": `node "${amdToES6}" dist/`,
26
24
  "third-party": {
27
25
  default: "nps integrate.third-party.copy integrate.third-party.fix",
28
26
  copy: "mkdirp dist/sap/ui/thirdparty/ && copy-and-watch ../../node_modules/@openui5/sap.ui.core/src/sap/ui/thirdparty/caja-html-sanitizer.js dist/sap/ui/thirdparty/",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ui5/webcomponents-base",
3
- "version": "1.14.6",
3
+ "version": "1.14.7",
4
4
  "description": "UI5 Web Components: webcomponents.base",
5
5
  "author": "SAP SE (https://www.sap.com)",
6
6
  "license": "Apache-2.0",
@@ -35,9 +35,8 @@
35
35
  "lit-html": "^2.0.1"
36
36
  },
37
37
  "devDependencies": {
38
- "@buxlabs/amd-to-es6": "0.16.1",
39
- "@openui5/sap.ui.core": "1.112.0",
40
- "@ui5/webcomponents-tools": "1.14.6",
38
+ "@openui5/sap.ui.core": "1.120.3",
39
+ "@ui5/webcomponents-tools": "1.14.7",
41
40
  "chromedriver": "113.0.0",
42
41
  "clean-css": "^5.2.2",
43
42
  "copy-and-watch": "^0.1.5",
@@ -47,5 +46,5 @@
47
46
  "replace-in-file": "^6.3.5",
48
47
  "resolve": "^1.20.0"
49
48
  },
50
- "gitHead": "ee406c5b17d947bd5a10d8548622aabccfd4ea2a"
49
+ "gitHead": "8c67ea36fdfa3eb6780b98da607a0136afef67ef"
51
50
  }
package/used-modules.txt CHANGED
@@ -1,7 +1,11 @@
1
1
  # Needed files from OpenUI5
2
2
 
3
+ # ./ui5loader-autoconfig.js
3
4
  sap/base/util/now.js
5
+ sap/base/util/uid.js
4
6
  sap/base/Log.js
7
+ # sap/base/config.js
8
+ sap/base/config/MemoryConfigurationProvider.js
5
9
  sap/base/assert.js
6
10
  sap/base/security/URLListValidator.js
7
11
  sap/base/security/sanitizeHTML.js