@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.
- package/.eslintignore +1 -1
- package/CHANGELOG.md +11 -0
- package/dist/api.json +1 -1
- package/dist/assets/{Boot.57dedc27.js → Boot.25013294.js} +1 -1
- package/dist/assets/{bundle.esm.24edb8f2.js → bundle.esm.61c10c47.js} +1 -1
- package/dist/assets/test/pages/{Boot.html.5de755f9.js → Boot.html.29147b96.js} +1 -1
- package/dist/assets/test/pages/{i18n.html.e9f0b287.js → i18n.html.bed8aab6.js} +1 -1
- package/dist/assets/test/pages/{i18n_texts.html.493ba52c.js → i18n_texts.html.b0894397.js} +1 -1
- package/dist/generated/VersionInfo.js +3 -3
- package/dist/sap/base/Log.js +698 -188
- package/dist/sap/base/assert.js +28 -1
- package/dist/sap/base/config/MemoryConfigurationProvider.js +20 -0
- package/dist/sap/base/security/URLListValidator.js +253 -6
- package/dist/sap/base/security/encodeCSS.js +34 -8
- package/dist/sap/base/security/encodeXML.js +47 -17
- package/dist/sap/base/security/sanitizeHTML.js +35 -13
- package/dist/sap/base/strings/toHex.js +27 -2
- package/dist/sap/base/util/now.js +24 -3
- package/dist/sap/base/util/uid.js +27 -0
- package/dist/sap/ui/thirdparty/caja-html-sanitizer.js +112 -97
- package/dist/test/pages/AllTestElements.html +2 -2
- package/dist/test/pages/Boot.html +2 -2
- package/dist/test/pages/Configuration.html +2 -2
- package/dist/test/pages/ConfigurationScript.html +2 -2
- package/dist/test/pages/WithComplexTemplate.html +2 -2
- package/dist/test/pages/i18n.html +3 -3
- package/dist/test/pages/i18n_texts.html +3 -3
- package/package-scripts.cjs +3 -5
- package/package.json +4 -5
- 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
|
-
|
|
1222
|
-
(
|
|
1223
|
-
|
|
1224
|
-
|
|
1225
|
-
|
|
1226
|
-
|
|
1227
|
-
|
|
1228
|
-
|
|
1229
|
-
|
|
1230
|
-
|
|
1231
|
-
|
|
1232
|
-
|
|
1233
|
-
|
|
1234
|
-
|
|
1235
|
-
|
|
1236
|
-
|
|
1237
|
-
|
|
1238
|
-
|
|
1239
|
-
|
|
1240
|
-
|
|
1241
|
-
|
|
1242
|
-
|
|
1243
|
-
|
|
1244
|
-
|
|
1245
|
-
|
|
1246
|
-
|
|
1247
|
-
|
|
1248
|
-
|
|
1249
|
-
|
|
1250
|
-
|
|
1251
|
-
|
|
1252
|
-
|
|
1253
|
-
|
|
1254
|
-
|
|
1255
|
-
|
|
1256
|
-
|
|
1257
|
-
|
|
1258
|
-
|
|
1259
|
-
|
|
1260
|
-
|
|
1261
|
-
|
|
1262
|
-
|
|
1263
|
-
|
|
1264
|
-
|
|
1265
|
-
|
|
1266
|
-
|
|
1267
|
-
|
|
1268
|
-
|
|
1269
|
-
|
|
1270
|
-
|
|
1271
|
-
|
|
1272
|
-
|
|
1273
|
-
|
|
1274
|
-
|
|
1275
|
-
|
|
1276
|
-
|
|
1277
|
-
|
|
1278
|
-
|
|
1279
|
-
|
|
1280
|
-
|
|
1281
|
-
|
|
1282
|
-
|
|
1283
|
-
|
|
1284
|
-
|
|
1285
|
-
|
|
1286
|
-
|
|
1287
|
-
|
|
1288
|
-
|
|
1289
|
-
|
|
1290
|
-
|
|
1291
|
-
|
|
1292
|
-
|
|
1293
|
-
|
|
1294
|
-
|
|
1295
|
-
|
|
1296
|
-
|
|
1297
|
-
|
|
1298
|
-
|
|
1299
|
-
|
|
1300
|
-
|
|
1301
|
-
|
|
1302
|
-
|
|
1303
|
-
|
|
1304
|
-
|
|
1305
|
-
|
|
1306
|
-
|
|
1307
|
-
|
|
1308
|
-
|
|
1309
|
-
|
|
1310
|
-
|
|
1311
|
-
|
|
1312
|
-
|
|
1313
|
-
|
|
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-
|
|
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.
|
|
10
|
-
<script type="module" crossorigin src="/assets/bundle.esm.
|
|
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.
|
|
10
|
-
<link rel="modulepreload" crossorigin href="/assets/Boot.
|
|
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.
|
|
12
|
-
<script type="module" crossorigin src="/assets/bundle.esm.
|
|
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.
|
|
44
|
-
<script type="module" crossorigin src="/assets/bundle.esm.
|
|
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.
|
|
8
|
-
<script type="module" crossorigin src="/assets/bundle.esm.
|
|
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.
|
|
11
|
-
<link rel="modulepreload" crossorigin href="/assets/Boot.
|
|
12
|
-
<link rel="modulepreload" crossorigin href="/assets/bundle.esm.
|
|
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.
|
|
12
|
-
<link rel="modulepreload" crossorigin href="/assets/Boot.
|
|
13
|
-
<link rel="modulepreload" crossorigin href="/assets/bundle.esm.
|
|
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>
|
package/package-scripts.cjs
CHANGED
|
@@ -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.
|
|
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
|
-
"
|
|
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.
|
|
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
|
-
"@
|
|
39
|
-
"@
|
|
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": "
|
|
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
|