@sap/ux-ui5-tooling 1.11.2 → 1.11.3
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/CHANGELOG.md +7 -0
- package/README.md +3 -1
- package/dist/cli/index.js +345 -12303
- package/dist/middlewares/fiori-tools-appreload.js +52 -34
- package/dist/middlewares/fiori-tools-preview.js +106 -46
- package/dist/middlewares/fiori-tools-proxy.js +72 -41
- package/dist/middlewares/fiori-tools-servestatic.js +52 -34
- package/dist/tasks/cf-deploy/index.js +84 -53
- package/dist/tasks/deploy/index.js +345 -12303
- package/dist/templates/control-property-editor/app.js +40 -40
- package/dist/templates/control-property-editor/ui5-adaptation.js +1 -1
- package/package.json +12 -12
|
@@ -19841,17 +19841,38 @@ var require_dist = __commonJS({
|
|
|
19841
19841
|
var import_serve_static = __toESM(require_serve_static());
|
|
19842
19842
|
|
|
19843
19843
|
// ../../node_modules/@babel/runtime/helpers/esm/typeof.js
|
|
19844
|
-
function _typeof(
|
|
19844
|
+
function _typeof(o) {
|
|
19845
19845
|
"@babel/helpers - typeof";
|
|
19846
|
-
return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function(
|
|
19847
|
-
return typeof
|
|
19848
|
-
} : function(
|
|
19849
|
-
return
|
|
19850
|
-
}, _typeof(
|
|
19846
|
+
return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function(o2) {
|
|
19847
|
+
return typeof o2;
|
|
19848
|
+
} : function(o2) {
|
|
19849
|
+
return o2 && "function" == typeof Symbol && o2.constructor === Symbol && o2 !== Symbol.prototype ? "symbol" : typeof o2;
|
|
19850
|
+
}, _typeof(o);
|
|
19851
|
+
}
|
|
19852
|
+
|
|
19853
|
+
// ../../node_modules/@babel/runtime/helpers/esm/toPrimitive.js
|
|
19854
|
+
function _toPrimitive(input, hint) {
|
|
19855
|
+
if (_typeof(input) !== "object" || input === null)
|
|
19856
|
+
return input;
|
|
19857
|
+
var prim = input[Symbol.toPrimitive];
|
|
19858
|
+
if (prim !== void 0) {
|
|
19859
|
+
var res = prim.call(input, hint || "default");
|
|
19860
|
+
if (_typeof(res) !== "object")
|
|
19861
|
+
return res;
|
|
19862
|
+
throw new TypeError("@@toPrimitive must return a primitive value.");
|
|
19863
|
+
}
|
|
19864
|
+
return (hint === "string" ? String : Number)(input);
|
|
19865
|
+
}
|
|
19866
|
+
|
|
19867
|
+
// ../../node_modules/@babel/runtime/helpers/esm/toPropertyKey.js
|
|
19868
|
+
function _toPropertyKey(arg) {
|
|
19869
|
+
var key = _toPrimitive(arg, "string");
|
|
19870
|
+
return _typeof(key) === "symbol" ? key : String(key);
|
|
19851
19871
|
}
|
|
19852
19872
|
|
|
19853
19873
|
// ../../node_modules/@babel/runtime/helpers/esm/defineProperty.js
|
|
19854
19874
|
function _defineProperty(obj, key, value) {
|
|
19875
|
+
key = _toPropertyKey(key);
|
|
19855
19876
|
if (key in obj) {
|
|
19856
19877
|
Object.defineProperty(obj, key, {
|
|
19857
19878
|
value,
|
|
@@ -19897,7 +19918,7 @@ function _defineProperties(target, props) {
|
|
|
19897
19918
|
descriptor.configurable = true;
|
|
19898
19919
|
if ("value" in descriptor)
|
|
19899
19920
|
descriptor.writable = true;
|
|
19900
|
-
Object.defineProperty(target, descriptor.key, descriptor);
|
|
19921
|
+
Object.defineProperty(target, _toPropertyKey(descriptor.key), descriptor);
|
|
19901
19922
|
}
|
|
19902
19923
|
}
|
|
19903
19924
|
function _createClass(Constructor, protoProps, staticProps) {
|
|
@@ -19931,7 +19952,7 @@ function _possibleConstructorReturn(self2, call) {
|
|
|
19931
19952
|
|
|
19932
19953
|
// ../../node_modules/@babel/runtime/helpers/esm/getPrototypeOf.js
|
|
19933
19954
|
function _getPrototypeOf(o) {
|
|
19934
|
-
_getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf2(o2) {
|
|
19955
|
+
_getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf2(o2) {
|
|
19935
19956
|
return o2.__proto__ || Object.getPrototypeOf(o2);
|
|
19936
19957
|
};
|
|
19937
19958
|
return _getPrototypeOf(o);
|
|
@@ -19939,7 +19960,7 @@ function _getPrototypeOf(o) {
|
|
|
19939
19960
|
|
|
19940
19961
|
// ../../node_modules/@babel/runtime/helpers/esm/setPrototypeOf.js
|
|
19941
19962
|
function _setPrototypeOf(o, p) {
|
|
19942
|
-
_setPrototypeOf = Object.setPrototypeOf
|
|
19963
|
+
_setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf2(o2, p2) {
|
|
19943
19964
|
o2.__proto__ = p2;
|
|
19944
19965
|
return o2;
|
|
19945
19966
|
};
|
|
@@ -19969,9 +19990,8 @@ function _inherits(subClass, superClass) {
|
|
|
19969
19990
|
function _arrayLikeToArray(arr, len) {
|
|
19970
19991
|
if (len == null || len > arr.length)
|
|
19971
19992
|
len = arr.length;
|
|
19972
|
-
for (var i = 0, arr2 = new Array(len); i < len; i++)
|
|
19993
|
+
for (var i = 0, arr2 = new Array(len); i < len; i++)
|
|
19973
19994
|
arr2[i] = arr[i];
|
|
19974
|
-
}
|
|
19975
19995
|
return arr2;
|
|
19976
19996
|
}
|
|
19977
19997
|
|
|
@@ -20019,33 +20039,31 @@ function _arrayWithHoles(arr) {
|
|
|
20019
20039
|
}
|
|
20020
20040
|
|
|
20021
20041
|
// ../../node_modules/@babel/runtime/helpers/esm/iterableToArrayLimit.js
|
|
20022
|
-
function _iterableToArrayLimit(
|
|
20023
|
-
var
|
|
20024
|
-
if (
|
|
20025
|
-
|
|
20026
|
-
var _arr = [];
|
|
20027
|
-
var _n = true;
|
|
20028
|
-
var _d = false;
|
|
20029
|
-
var _s, _e;
|
|
20030
|
-
try {
|
|
20031
|
-
for (_i = _i.call(arr); !(_n = (_s = _i.next()).done); _n = true) {
|
|
20032
|
-
_arr.push(_s.value);
|
|
20033
|
-
if (i && _arr.length === i)
|
|
20034
|
-
break;
|
|
20035
|
-
}
|
|
20036
|
-
} catch (err) {
|
|
20037
|
-
_d = true;
|
|
20038
|
-
_e = err;
|
|
20039
|
-
} finally {
|
|
20042
|
+
function _iterableToArrayLimit(r, l) {
|
|
20043
|
+
var t = null == r ? null : "undefined" != typeof Symbol && r[Symbol.iterator] || r["@@iterator"];
|
|
20044
|
+
if (null != t) {
|
|
20045
|
+
var e, n, i, u, a = [], f = true, o = false;
|
|
20040
20046
|
try {
|
|
20041
|
-
if (
|
|
20042
|
-
|
|
20047
|
+
if (i = (t = t.call(r)).next, 0 === l) {
|
|
20048
|
+
if (Object(t) !== t)
|
|
20049
|
+
return;
|
|
20050
|
+
f = false;
|
|
20051
|
+
} else
|
|
20052
|
+
for (; !(f = (e = i.call(t)).done) && (a.push(e.value), a.length !== l); f = true)
|
|
20053
|
+
;
|
|
20054
|
+
} catch (r2) {
|
|
20055
|
+
o = true, n = r2;
|
|
20043
20056
|
} finally {
|
|
20044
|
-
|
|
20045
|
-
|
|
20057
|
+
try {
|
|
20058
|
+
if (!f && null != t["return"] && (u = t["return"](), Object(u) !== u))
|
|
20059
|
+
return;
|
|
20060
|
+
} finally {
|
|
20061
|
+
if (o)
|
|
20062
|
+
throw n;
|
|
20063
|
+
}
|
|
20046
20064
|
}
|
|
20065
|
+
return a;
|
|
20047
20066
|
}
|
|
20048
|
-
return _arr;
|
|
20049
20067
|
}
|
|
20050
20068
|
|
|
20051
20069
|
// ../../node_modules/@babel/runtime/helpers/esm/nonIterableRest.js
|
|
@@ -49,7 +49,7 @@ var require_package = __commonJS({
|
|
|
49
49
|
"../lib/telemetry/dist/package.json"(exports2, module2) {
|
|
50
50
|
module2.exports = {
|
|
51
51
|
name: "@sap/ux-telemetry",
|
|
52
|
-
version: "1.11.
|
|
52
|
+
version: "1.11.3",
|
|
53
53
|
description: "SAP Fiori tools telemetry library",
|
|
54
54
|
main: "dist/src/index.js",
|
|
55
55
|
author: "SAP SE",
|
|
@@ -74,10 +74,10 @@ var require_package = __commonJS({
|
|
|
74
74
|
},
|
|
75
75
|
dependencies: {
|
|
76
76
|
"@sap-ux/store": "0.3.8",
|
|
77
|
-
"@sap/ux-cds": "1.11.
|
|
78
|
-
"@sap/ux-common-utils": "1.11.
|
|
79
|
-
"@sap/ux-feature-toggle": "1.11.
|
|
80
|
-
"@sap/ux-project-access": "1.11.
|
|
77
|
+
"@sap/ux-cds": "1.11.3",
|
|
78
|
+
"@sap/ux-common-utils": "1.11.3",
|
|
79
|
+
"@sap/ux-feature-toggle": "1.11.3",
|
|
80
|
+
"@sap/ux-project-access": "1.11.3",
|
|
81
81
|
applicationinsights: "1.4.1",
|
|
82
82
|
axios: "0.26.0",
|
|
83
83
|
"performance-now": "2.1.0",
|
|
@@ -24426,21 +24426,53 @@ var require_find_up = __commonJS({
|
|
|
24426
24426
|
});
|
|
24427
24427
|
|
|
24428
24428
|
// ../../node_modules/@babel/runtime/helpers/esm/typeof.js
|
|
24429
|
-
function _typeof2(
|
|
24429
|
+
function _typeof2(o) {
|
|
24430
24430
|
"@babel/helpers - typeof";
|
|
24431
|
-
return _typeof2 = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function(
|
|
24432
|
-
return typeof
|
|
24433
|
-
} : function(
|
|
24434
|
-
return
|
|
24435
|
-
}, _typeof2(
|
|
24431
|
+
return _typeof2 = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function(o2) {
|
|
24432
|
+
return typeof o2;
|
|
24433
|
+
} : function(o2) {
|
|
24434
|
+
return o2 && "function" == typeof Symbol && o2.constructor === Symbol && o2 !== Symbol.prototype ? "symbol" : typeof o2;
|
|
24435
|
+
}, _typeof2(o);
|
|
24436
24436
|
}
|
|
24437
24437
|
var init_typeof = __esm({
|
|
24438
24438
|
"../../node_modules/@babel/runtime/helpers/esm/typeof.js"() {
|
|
24439
24439
|
}
|
|
24440
24440
|
});
|
|
24441
24441
|
|
|
24442
|
+
// ../../node_modules/@babel/runtime/helpers/esm/toPrimitive.js
|
|
24443
|
+
function _toPrimitive(input, hint) {
|
|
24444
|
+
if (_typeof2(input) !== "object" || input === null)
|
|
24445
|
+
return input;
|
|
24446
|
+
var prim = input[Symbol.toPrimitive];
|
|
24447
|
+
if (prim !== void 0) {
|
|
24448
|
+
var res = prim.call(input, hint || "default");
|
|
24449
|
+
if (_typeof2(res) !== "object")
|
|
24450
|
+
return res;
|
|
24451
|
+
throw new TypeError("@@toPrimitive must return a primitive value.");
|
|
24452
|
+
}
|
|
24453
|
+
return (hint === "string" ? String : Number)(input);
|
|
24454
|
+
}
|
|
24455
|
+
var init_toPrimitive = __esm({
|
|
24456
|
+
"../../node_modules/@babel/runtime/helpers/esm/toPrimitive.js"() {
|
|
24457
|
+
init_typeof();
|
|
24458
|
+
}
|
|
24459
|
+
});
|
|
24460
|
+
|
|
24461
|
+
// ../../node_modules/@babel/runtime/helpers/esm/toPropertyKey.js
|
|
24462
|
+
function _toPropertyKey(arg) {
|
|
24463
|
+
var key = _toPrimitive(arg, "string");
|
|
24464
|
+
return _typeof2(key) === "symbol" ? key : String(key);
|
|
24465
|
+
}
|
|
24466
|
+
var init_toPropertyKey = __esm({
|
|
24467
|
+
"../../node_modules/@babel/runtime/helpers/esm/toPropertyKey.js"() {
|
|
24468
|
+
init_typeof();
|
|
24469
|
+
init_toPrimitive();
|
|
24470
|
+
}
|
|
24471
|
+
});
|
|
24472
|
+
|
|
24442
24473
|
// ../../node_modules/@babel/runtime/helpers/esm/defineProperty.js
|
|
24443
24474
|
function _defineProperty(obj, key, value) {
|
|
24475
|
+
key = _toPropertyKey(key);
|
|
24444
24476
|
if (key in obj) {
|
|
24445
24477
|
Object.defineProperty(obj, key, {
|
|
24446
24478
|
value,
|
|
@@ -24455,6 +24487,7 @@ function _defineProperty(obj, key, value) {
|
|
|
24455
24487
|
}
|
|
24456
24488
|
var init_defineProperty = __esm({
|
|
24457
24489
|
"../../node_modules/@babel/runtime/helpers/esm/defineProperty.js"() {
|
|
24490
|
+
init_toPropertyKey();
|
|
24458
24491
|
}
|
|
24459
24492
|
});
|
|
24460
24493
|
|
|
@@ -24499,7 +24532,7 @@ function _defineProperties(target, props) {
|
|
|
24499
24532
|
descriptor.configurable = true;
|
|
24500
24533
|
if ("value" in descriptor)
|
|
24501
24534
|
descriptor.writable = true;
|
|
24502
|
-
Object.defineProperty(target, descriptor.key, descriptor);
|
|
24535
|
+
Object.defineProperty(target, _toPropertyKey(descriptor.key), descriptor);
|
|
24503
24536
|
}
|
|
24504
24537
|
}
|
|
24505
24538
|
function _createClass(Constructor, protoProps, staticProps) {
|
|
@@ -24514,6 +24547,7 @@ function _createClass(Constructor, protoProps, staticProps) {
|
|
|
24514
24547
|
}
|
|
24515
24548
|
var init_createClass = __esm({
|
|
24516
24549
|
"../../node_modules/@babel/runtime/helpers/esm/createClass.js"() {
|
|
24550
|
+
init_toPropertyKey();
|
|
24517
24551
|
}
|
|
24518
24552
|
});
|
|
24519
24553
|
|
|
@@ -24547,7 +24581,7 @@ var init_possibleConstructorReturn = __esm({
|
|
|
24547
24581
|
|
|
24548
24582
|
// ../../node_modules/@babel/runtime/helpers/esm/getPrototypeOf.js
|
|
24549
24583
|
function _getPrototypeOf(o) {
|
|
24550
|
-
_getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf2(o2) {
|
|
24584
|
+
_getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf2(o2) {
|
|
24551
24585
|
return o2.__proto__ || Object.getPrototypeOf(o2);
|
|
24552
24586
|
};
|
|
24553
24587
|
return _getPrototypeOf(o);
|
|
@@ -24559,7 +24593,7 @@ var init_getPrototypeOf = __esm({
|
|
|
24559
24593
|
|
|
24560
24594
|
// ../../node_modules/@babel/runtime/helpers/esm/setPrototypeOf.js
|
|
24561
24595
|
function _setPrototypeOf(o, p) {
|
|
24562
|
-
_setPrototypeOf = Object.setPrototypeOf
|
|
24596
|
+
_setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf2(o2, p2) {
|
|
24563
24597
|
o2.__proto__ = p2;
|
|
24564
24598
|
return o2;
|
|
24565
24599
|
};
|
|
@@ -24598,9 +24632,8 @@ var init_inherits = __esm({
|
|
|
24598
24632
|
function _arrayLikeToArray(arr, len) {
|
|
24599
24633
|
if (len == null || len > arr.length)
|
|
24600
24634
|
len = arr.length;
|
|
24601
|
-
for (var i = 0, arr2 = new Array(len); i < len; i++)
|
|
24635
|
+
for (var i = 0, arr2 = new Array(len); i < len; i++)
|
|
24602
24636
|
arr2[i] = arr[i];
|
|
24603
|
-
}
|
|
24604
24637
|
return arr2;
|
|
24605
24638
|
}
|
|
24606
24639
|
var init_arrayLikeToArray = __esm({
|
|
@@ -24682,33 +24715,31 @@ var init_arrayWithHoles = __esm({
|
|
|
24682
24715
|
});
|
|
24683
24716
|
|
|
24684
24717
|
// ../../node_modules/@babel/runtime/helpers/esm/iterableToArrayLimit.js
|
|
24685
|
-
function _iterableToArrayLimit(
|
|
24686
|
-
var
|
|
24687
|
-
if (
|
|
24688
|
-
|
|
24689
|
-
var _arr = [];
|
|
24690
|
-
var _n = true;
|
|
24691
|
-
var _d = false;
|
|
24692
|
-
var _s, _e;
|
|
24693
|
-
try {
|
|
24694
|
-
for (_i = _i.call(arr); !(_n = (_s = _i.next()).done); _n = true) {
|
|
24695
|
-
_arr.push(_s.value);
|
|
24696
|
-
if (i && _arr.length === i)
|
|
24697
|
-
break;
|
|
24698
|
-
}
|
|
24699
|
-
} catch (err) {
|
|
24700
|
-
_d = true;
|
|
24701
|
-
_e = err;
|
|
24702
|
-
} finally {
|
|
24718
|
+
function _iterableToArrayLimit(r, l) {
|
|
24719
|
+
var t = null == r ? null : "undefined" != typeof Symbol && r[Symbol.iterator] || r["@@iterator"];
|
|
24720
|
+
if (null != t) {
|
|
24721
|
+
var e, n, i, u, a = [], f = true, o = false;
|
|
24703
24722
|
try {
|
|
24704
|
-
if (
|
|
24705
|
-
|
|
24723
|
+
if (i = (t = t.call(r)).next, 0 === l) {
|
|
24724
|
+
if (Object(t) !== t)
|
|
24725
|
+
return;
|
|
24726
|
+
f = false;
|
|
24727
|
+
} else
|
|
24728
|
+
for (; !(f = (e = i.call(t)).done) && (a.push(e.value), a.length !== l); f = true)
|
|
24729
|
+
;
|
|
24730
|
+
} catch (r2) {
|
|
24731
|
+
o = true, n = r2;
|
|
24706
24732
|
} finally {
|
|
24707
|
-
|
|
24708
|
-
|
|
24733
|
+
try {
|
|
24734
|
+
if (!f && null != t["return"] && (u = t["return"](), Object(u) !== u))
|
|
24735
|
+
return;
|
|
24736
|
+
} finally {
|
|
24737
|
+
if (o)
|
|
24738
|
+
throw n;
|
|
24739
|
+
}
|
|
24709
24740
|
}
|
|
24741
|
+
return a;
|
|
24710
24742
|
}
|
|
24711
|
-
return _arr;
|
|
24712
24743
|
}
|
|
24713
24744
|
var init_iterableToArrayLimit = __esm({
|
|
24714
24745
|
"../../node_modules/@babel/runtime/helpers/esm/iterableToArrayLimit.js"() {
|
|
@@ -61791,7 +61822,7 @@ var require_utils9 = __commonJS({
|
|
|
61791
61822
|
)) {
|
|
61792
61823
|
return `~${"1.94.0"}`;
|
|
61793
61824
|
} else {
|
|
61794
|
-
return `~${semver_1.default.major(version)}.${semver_1.default.minor(version)}
|
|
61825
|
+
return `~${semver_1.default.major(version)}.${semver_1.default.minor(version)}.0`;
|
|
61795
61826
|
}
|
|
61796
61827
|
}
|
|
61797
61828
|
exports2.getEsmTypesVersion = getEsmTypesVersion;
|
|
@@ -61806,7 +61837,7 @@ var require_utils9 = __commonJS({
|
|
|
61806
61837
|
)) {
|
|
61807
61838
|
return `~${"1.76.0"}`;
|
|
61808
61839
|
} else {
|
|
61809
|
-
return `~${semver_1.default.major(version)}.${semver_1.default.minor(version)}
|
|
61840
|
+
return `~${semver_1.default.major(version)}.${semver_1.default.minor(version)}.0`;
|
|
61810
61841
|
}
|
|
61811
61842
|
}
|
|
61812
61843
|
exports2.getTypesVersion = getTypesVersion;
|
|
@@ -84499,7 +84530,7 @@ var import_yaml2 = __toESM(require_dist2());
|
|
|
84499
84530
|
var package_default = {
|
|
84500
84531
|
name: "@sap/ux-ui5-tooling",
|
|
84501
84532
|
displayName: "SAP Fiori Tools \u2013 UI5 Tooling",
|
|
84502
|
-
version: "1.11.
|
|
84533
|
+
version: "1.11.3",
|
|
84503
84534
|
description: "SAP Fiori Tools \u2013 UI5 Tooling",
|
|
84504
84535
|
publisher: "SAPSE",
|
|
84505
84536
|
license: "SEE LICENSE IN LICENSE",
|
|
@@ -84534,7 +84565,7 @@ var package_default = {
|
|
|
84534
84565
|
madge: "madge --warning --circular --extensions ts ./"
|
|
84535
84566
|
},
|
|
84536
84567
|
dependencies: {
|
|
84537
|
-
"@sap-ux/preview-middleware": "0.
|
|
84568
|
+
"@sap-ux/preview-middleware": "0.7.9",
|
|
84538
84569
|
"@ui5/fs": "^2.0.6",
|
|
84539
84570
|
debug: "4.3.4",
|
|
84540
84571
|
express: "4.17.3",
|
|
@@ -84550,18 +84581,18 @@ var package_default = {
|
|
|
84550
84581
|
"@sap-ux/btp-utils": "0.11.6",
|
|
84551
84582
|
"@sap-ux/deploy-tooling": "0.9.15",
|
|
84552
84583
|
"@sap-ux/logger": "0.3.6",
|
|
84553
|
-
"@sap-ux/project-access": "1.13.
|
|
84584
|
+
"@sap-ux/project-access": "1.13.8",
|
|
84554
84585
|
"@sap-ux/store": "0.3.11",
|
|
84555
|
-
"@sap-ux/ui5-config": "0.19.
|
|
84586
|
+
"@sap-ux/ui5-config": "0.19.4",
|
|
84556
84587
|
"@sap-ux/ui5-proxy-middleware": "1.1.31",
|
|
84557
|
-
"@sap/ux-app-templates": "1.11.
|
|
84558
|
-
"@sap/ux-cds": "1.11.
|
|
84559
|
-
"@sap/ux-common-utils": "1.11.
|
|
84560
|
-
"@sap/ux-control-property-editor": "1.11.
|
|
84561
|
-
"@sap/ux-odata-client": "1.11.
|
|
84562
|
-
"@sap/ux-telemetry": "1.11.
|
|
84563
|
-
"@sap/ux-ui5-info": "1.11.
|
|
84564
|
-
"@sapux/project-spec": "1.11.
|
|
84588
|
+
"@sap/ux-app-templates": "1.11.3",
|
|
84589
|
+
"@sap/ux-cds": "1.11.3",
|
|
84590
|
+
"@sap/ux-common-utils": "1.11.3",
|
|
84591
|
+
"@sap/ux-control-property-editor": "1.11.3",
|
|
84592
|
+
"@sap/ux-odata-client": "1.11.3",
|
|
84593
|
+
"@sap/ux-telemetry": "1.11.3",
|
|
84594
|
+
"@sap/ux-ui5-info": "1.11.3",
|
|
84595
|
+
"@sapux/project-spec": "1.11.3",
|
|
84565
84596
|
"@types/marked": "4.0.1",
|
|
84566
84597
|
"@types/prompts": "2.0.14",
|
|
84567
84598
|
"@types/supertest": "2.0.12",
|