@wavemaker/angular-codegen 11.12.1-rc.6244 → 11.13.0-rc.222
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/angular-app/angular.json +62 -95
- package/angular-app/build-scripts/index-html-transform-ng-serve.ts +20 -0
- package/angular-app/build-scripts/post-build.js +2 -2
- package/angular-app/dependency-report.html +1 -1
- package/angular-app/npm-shrinkwrap.json +121 -235
- package/angular-app/package-lock.json +121 -235
- package/angular-app/package.json +6 -7
- package/angular-app/proxy.conf.js +14 -0
- package/angular-app/src/assets/styles/css/font/summernote.eot +0 -0
- package/angular-app/src/assets/styles/css/font/summernote.ttf +0 -0
- package/angular-app/src/assets/styles/css/font/summernote.woff +0 -0
- package/angular-app/src/assets/styles/css/font/summernote.woff2 +0 -0
- package/angular-app/src/assets/styles/css/wm-style.css +1 -1
- package/dependencies/transpilation-web.cjs.js +26 -37
- package/npm-shrinkwrap.json +77 -71
- package/package-lock.json +77 -71
- package/package.json +2 -2
- package/src/gen-index-html.js +1 -1
- package/src/update-angular-json.js +1 -1
|
@@ -46908,19 +46908,6 @@ const getAttrMarkup = (attrs) => {
|
|
|
46908
46908
|
v = v + `" *lazyLoad="${wrapWithApos(v)}`;
|
|
46909
46909
|
}
|
|
46910
46910
|
attrMarkup += `="${v}"`;
|
|
46911
|
-
if (k === 'showindevice' && v !== 'all') {
|
|
46912
|
-
const condition = [];
|
|
46913
|
-
if (v.includes('xs')) {
|
|
46914
|
-
condition.push('Viewport.isMobileType');
|
|
46915
|
-
}
|
|
46916
|
-
if (v.includes('sm')) {
|
|
46917
|
-
condition.push('(Viewport.isTabletType && Viewport.orientation.isPortrait)');
|
|
46918
|
-
}
|
|
46919
|
-
if (v.includes('md')) {
|
|
46920
|
-
condition.push('(Viewport.isTabletType && Viewport.orientation.isLandscape)');
|
|
46921
|
-
}
|
|
46922
|
-
attrMarkup += ` *ngIf="${condition.join(' || ')}"`;
|
|
46923
|
-
}
|
|
46924
46911
|
}
|
|
46925
46912
|
});
|
|
46926
46913
|
return attrMarkup;
|
|
@@ -114855,11 +114842,13 @@ register('wm-repeat-template', () => {
|
|
|
114855
114842
|
const widgetRef = (parentAccordion && parentAccordion.get('accordion_ref')) || (parentTab && parentTab.get('tabs_ref')) || (parentWizard && parentWizard.get('wizard_ref'));
|
|
114856
114843
|
if (widgetRef) {
|
|
114857
114844
|
return `@if(${widgetRef}.fieldDefs && !${widgetRef}.fieldDefs.length){<div>{{${widgetRef}.nodatamessage}}</div>}
|
|
114858
|
-
|
|
114845
|
+
@for (item of ${widgetRef}.fieldDefs; track item; let i = $index) {
|
|
114846
|
+
<${dynamicTemplateTagName} wmRepeatTemplate #repeatItemRef="repeatItemRef" ${getAttrMarkup(attrs)}>
|
|
114859
114847
|
<ng-container [ngTemplateOutlet]="widgetRef${counter}"
|
|
114860
114848
|
[ngTemplateOutletContext]="{item:item, index:i}"
|
|
114861
114849
|
[ngTemplateOutletInjector]="${widgetRef}.createCustomInjector('dynamic_pane_' + repeatItemRef.trackId, {item:item, index:i})"></ng-container>
|
|
114862
114850
|
</${dynamicTemplateTagName}>
|
|
114851
|
+
}
|
|
114863
114852
|
<ng-template #widgetRef${counter++} let-item="item" let-index="index">`;
|
|
114864
114853
|
}
|
|
114865
114854
|
},
|
|
@@ -115555,11 +115544,13 @@ const buildTask = (directiveAttr = '') => {
|
|
|
115555
115544
|
tabindex.bind="btn.tabindex" [class.hidden]="btn.updateMode ? !${counter}.isUpdateMode : ${counter}.isUpdateMode"></button>
|
|
115556
115545
|
</ng-template>`;
|
|
115557
115546
|
mobileFormContentTmpl = `<header wmMobileNavbar name="${name}" ${getAttrMarkup(navbarAttrsMap)}>
|
|
115558
|
-
|
|
115547
|
+
@for (btn of ${counter}.buttonArray; track btn; let i = $index) {
|
|
115548
|
+
<ng-container
|
|
115559
115549
|
[ngTemplateOutlet]="buttonRef"
|
|
115560
115550
|
[ngTemplateOutletContext]="{btn:btn}"
|
|
115561
115551
|
[ngTemplateOutletInjector]="${counter}.createCustomInjector('mobile_' + i, {item:item, index:i})">
|
|
115562
115552
|
</ng-container>
|
|
115553
|
+
}
|
|
115563
115554
|
</header>
|
|
115564
115555
|
<div class="form-elements panel-body" >`;
|
|
115565
115556
|
}
|
|
@@ -116242,10 +116233,6 @@ const findChild = (node, childName) => {
|
|
|
116242
116233
|
const createElement$4 = name => {
|
|
116243
116234
|
return new Element$2(name, [], [], noSpan$4, noSpan$4, noSpan$4);
|
|
116244
116235
|
};
|
|
116245
|
-
const addAtrribute$4 = (node, name, value) => {
|
|
116246
|
-
const attr = new Attribute$2(name, value, noSpan$4, noSpan$4, noSpan$4, undefined, undefined);
|
|
116247
|
-
node.attrs.push(attr);
|
|
116248
|
-
};
|
|
116249
116236
|
const getElementNode = (name, node) => {
|
|
116250
116237
|
let elementNode;
|
|
116251
116238
|
if (!node) {
|
|
@@ -116275,9 +116262,12 @@ register('wm-page', () => {
|
|
|
116275
116262
|
}
|
|
116276
116263
|
if (pageContentNode) {
|
|
116277
116264
|
const conditionalNode = createElement$4('ng-container');
|
|
116278
|
-
|
|
116265
|
+
const ifOpenText = new Text$1('@if (compilePageContent) {', null, undefined, undefined);
|
|
116266
|
+
conditionalNode.children.push(ifOpenText);
|
|
116279
116267
|
conditionalNode.children = conditionalNode.children.concat(pageContentNode.children);
|
|
116280
116268
|
conditionalNode.children.push(new Text$1('{{onPageContentReady()}}', null, undefined, undefined));
|
|
116269
|
+
const ifCloseText = new Text$1('}', null, undefined, undefined);
|
|
116270
|
+
conditionalNode.children.push(ifCloseText);
|
|
116281
116271
|
pageContentNode.children = [conditionalNode];
|
|
116282
116272
|
}
|
|
116283
116273
|
},
|
|
@@ -116445,10 +116435,6 @@ const tagName$h = 'div';
|
|
|
116445
116435
|
const createElement$3 = name => {
|
|
116446
116436
|
return new Element$2(name, [], [], noSpan$3, noSpan$3, noSpan$3);
|
|
116447
116437
|
};
|
|
116448
|
-
const addAtrribute$3 = (node, name, value) => {
|
|
116449
|
-
const attr = new Attribute$2(name, value, noSpan$3, noSpan$3, noSpan$3, undefined, undefined);
|
|
116450
|
-
node.attrs.push(attr);
|
|
116451
|
-
};
|
|
116452
116438
|
const noSpan$3 = {};
|
|
116453
116439
|
register('wm-page-content', () => {
|
|
116454
116440
|
return {
|
|
@@ -116456,9 +116442,12 @@ register('wm-page-content', () => {
|
|
|
116456
116442
|
for (let attr of node.attrs) {
|
|
116457
116443
|
if (attr.name === 'spa' && attr.value === 'true') {
|
|
116458
116444
|
const conditionalNode = createElement$3('ng-container');
|
|
116459
|
-
|
|
116445
|
+
const ifOpenText = new Text$1('@if (compilePageContent) {', null, undefined, undefined);
|
|
116446
|
+
conditionalNode.children.push(ifOpenText);
|
|
116460
116447
|
conditionalNode.children = conditionalNode.children.concat(node.children);
|
|
116461
116448
|
conditionalNode.children.push(new Text$1('{{onPageContentReady()}}', null, undefined, undefined));
|
|
116449
|
+
const ifCloseText = new Text$1('}', null, undefined, undefined);
|
|
116450
|
+
conditionalNode.children.push(ifCloseText);
|
|
116462
116451
|
node.children = [conditionalNode];
|
|
116463
116452
|
break;
|
|
116464
116453
|
}
|
|
@@ -116512,16 +116501,15 @@ const noSpan$2 = {};
|
|
|
116512
116501
|
const createElement$2 = name => {
|
|
116513
116502
|
return new Element$2(name, [], [], noSpan$2, noSpan$2, noSpan$2);
|
|
116514
116503
|
};
|
|
116515
|
-
const addAtrribute$2 = (node, name, value) => {
|
|
116516
|
-
const attr = new Attribute$2(name, value, noSpan$2, noSpan$2, noSpan$2, undefined, undefined);
|
|
116517
|
-
node.attrs.push(attr);
|
|
116518
|
-
};
|
|
116519
116504
|
register('wm-partial', () => {
|
|
116520
116505
|
return {
|
|
116521
116506
|
template: (node) => {
|
|
116522
116507
|
const conditionalNode = createElement$2('ng-container');
|
|
116523
|
-
|
|
116508
|
+
const ifOpenText = new Text$1('@if (compileContent) {', null, undefined, undefined);
|
|
116509
|
+
conditionalNode.children.push(ifOpenText);
|
|
116524
116510
|
conditionalNode.children = conditionalNode.children.concat(node.children);
|
|
116511
|
+
const ifCloseText = new Text$1('}', null, undefined, undefined);
|
|
116512
|
+
conditionalNode.children.push(ifCloseText);
|
|
116525
116513
|
node.children.length = 0;
|
|
116526
116514
|
node.children.push(conditionalNode);
|
|
116527
116515
|
},
|
|
@@ -116568,17 +116556,16 @@ const noSpan$1 = {};
|
|
|
116568
116556
|
const createElement$1 = name => {
|
|
116569
116557
|
return new Element$2(name, [], [], noSpan$1, noSpan$1, noSpan$1);
|
|
116570
116558
|
};
|
|
116571
|
-
const addAtrribute$1 = (node, name, value) => {
|
|
116572
|
-
const attr = new Attribute$2(name, value, noSpan$1, noSpan$1, noSpan$1, undefined, undefined);
|
|
116573
|
-
node.attrs.push(attr);
|
|
116574
|
-
};
|
|
116575
116559
|
const tagName$b = 'div';
|
|
116576
116560
|
register('wm-prefab-container', () => {
|
|
116577
116561
|
return {
|
|
116578
116562
|
template: (node) => {
|
|
116579
116563
|
const conditionalNode = createElement$1('ng-container');
|
|
116580
|
-
|
|
116564
|
+
const ifOpenText = new Text$1('@if (compileContent) {', null, undefined, undefined);
|
|
116565
|
+
conditionalNode.children.push(ifOpenText);
|
|
116581
116566
|
conditionalNode.children = conditionalNode.children.concat(node.children);
|
|
116567
|
+
const ifCloseText = new Text$1('}', null, undefined, undefined);
|
|
116568
|
+
conditionalNode.children.push(ifCloseText);
|
|
116582
116569
|
node.children.length = 0;
|
|
116583
116570
|
node.children.push(conditionalNode);
|
|
116584
116571
|
},
|
|
@@ -116927,8 +116914,10 @@ register('wm-table-row', () => {
|
|
|
116927
116914
|
<ng-template #rowExpansionTmpl let-row="row" let-rowDef="rowDef" let-containerLoad="containerLoad">
|
|
116928
116915
|
<div wmContainer partialContainer content.bind="rowDef.content" load.event="containerLoad(widget)"
|
|
116929
116916
|
[ngStyle]="{'height': rowDef.height, 'overflow-y': 'auto'}">
|
|
116930
|
-
|
|
116931
|
-
|
|
116917
|
+
@for (param of rowDef.partialParams | keyvalue; track param) {
|
|
116918
|
+
<div wmParam hidden
|
|
116919
|
+
[name]="param.key" [value]="param.value"></div>
|
|
116920
|
+
}`;
|
|
116932
116921
|
},
|
|
116933
116922
|
post: () => `</div></ng-template></${tagName$7}>`
|
|
116934
116923
|
};
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wavemaker/angular-codegen",
|
|
3
|
-
"version": "11.
|
|
3
|
+
"version": "11.13.0-rc.222",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "@wavemaker/angular-codegen",
|
|
9
|
-
"version": "11.
|
|
9
|
+
"version": "11.13.0-rc.222",
|
|
10
10
|
"license": "ISC",
|
|
11
11
|
"dependencies": {
|
|
12
|
-
"@wavemaker/angular-app": "11.
|
|
12
|
+
"@wavemaker/angular-app": "11.13.0-rc.222",
|
|
13
13
|
"archiver": "^7.0.1",
|
|
14
14
|
"cheerio": "1.0.0-rc.12",
|
|
15
15
|
"decode-uri-component": "^0.2.0",
|
|
@@ -248,8 +248,8 @@
|
|
|
248
248
|
"license": "MIT"
|
|
249
249
|
},
|
|
250
250
|
"node_modules/@babel/core/node_modules/debug": {
|
|
251
|
-
"version": "4.4.
|
|
252
|
-
"integrity": "sha512-
|
|
251
|
+
"version": "4.4.3",
|
|
252
|
+
"integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==",
|
|
253
253
|
"dev": true,
|
|
254
254
|
"license": "MIT",
|
|
255
255
|
"dependencies": {
|
|
@@ -667,8 +667,8 @@
|
|
|
667
667
|
}
|
|
668
668
|
},
|
|
669
669
|
"node_modules/@babel/traverse/node_modules/debug": {
|
|
670
|
-
"version": "4.4.
|
|
671
|
-
"integrity": "sha512-
|
|
670
|
+
"version": "4.4.3",
|
|
671
|
+
"integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==",
|
|
672
672
|
"dev": true,
|
|
673
673
|
"license": "MIT",
|
|
674
674
|
"dependencies": {
|
|
@@ -1364,11 +1364,11 @@
|
|
|
1364
1364
|
}
|
|
1365
1365
|
},
|
|
1366
1366
|
"node_modules/@types/node": {
|
|
1367
|
-
"version": "24.
|
|
1368
|
-
"integrity": "sha512-
|
|
1367
|
+
"version": "24.5.2",
|
|
1368
|
+
"integrity": "sha512-FYxk1I7wPv3K2XBaoyH2cTnocQEu8AOZ60hPbsyukMPLv5/5qr7V1i8PLHdl6Zf87I+xZXFvPCXYjiTFq+YSDQ==",
|
|
1369
1369
|
"license": "MIT",
|
|
1370
1370
|
"dependencies": {
|
|
1371
|
-
"undici-types": "~7.
|
|
1371
|
+
"undici-types": "~7.12.0"
|
|
1372
1372
|
}
|
|
1373
1373
|
},
|
|
1374
1374
|
"node_modules/@types/prettier": {
|
|
@@ -1398,8 +1398,8 @@
|
|
|
1398
1398
|
"license": "MIT"
|
|
1399
1399
|
},
|
|
1400
1400
|
"node_modules/@wavemaker/angular-app": {
|
|
1401
|
-
"version": "11.
|
|
1402
|
-
"integrity": "sha512-
|
|
1401
|
+
"version": "11.13.0-rc.222",
|
|
1402
|
+
"integrity": "sha512-TGK+qWWYESWFZOqhYudEIwROFOm77YQdIA425AdRyrbYuJrggDpRQQZcl01m7XfSSS1LhuWZ4M+R7LsBCKT7Dw==",
|
|
1403
1403
|
"dependencies": {
|
|
1404
1404
|
"@angular/animations": "18.2.13",
|
|
1405
1405
|
"@angular/common": "18.2.13",
|
|
@@ -1417,19 +1417,18 @@
|
|
|
1417
1417
|
"@fullcalendar/list": "6.1.15",
|
|
1418
1418
|
"@fullcalendar/timegrid": "6.1.15",
|
|
1419
1419
|
"@metrichor/jmespath": "0.3.1",
|
|
1420
|
-
"@wavemaker/app-ng-runtime": "11.
|
|
1421
|
-
"@wavemaker/custom-widgets-m3": "11.
|
|
1420
|
+
"@wavemaker/app-ng-runtime": "11.13.0-rc.222",
|
|
1421
|
+
"@wavemaker/custom-widgets-m3": "11.13.0-rc.222",
|
|
1422
1422
|
"@wavemaker/focus-trap": "1.0.1",
|
|
1423
|
-
"@wavemaker/foundation-css": "11.
|
|
1423
|
+
"@wavemaker/foundation-css": "11.13.0-rc.222",
|
|
1424
1424
|
"@wavemaker/nvd3": "1.8.13",
|
|
1425
|
-
"@wavemaker/variables": "11.
|
|
1425
|
+
"@wavemaker/variables": "11.13.0-rc.222",
|
|
1426
1426
|
"@ztree/ztree_v3": "3.5.48",
|
|
1427
1427
|
"angular-imask": "^7.6.1",
|
|
1428
1428
|
"angular2-websocket": "0.9.7",
|
|
1429
1429
|
"core-js": "3.35.1",
|
|
1430
1430
|
"d3": "7.8.5",
|
|
1431
1431
|
"esbuild-wasm": "^0.24.2",
|
|
1432
|
-
"hammerjs": "2.0.8",
|
|
1433
1432
|
"iscroll": "5.2.0",
|
|
1434
1433
|
"jquery": "3.7.1",
|
|
1435
1434
|
"jquery-ui": "1.13.3",
|
|
@@ -1461,8 +1460,8 @@
|
|
|
1461
1460
|
}
|
|
1462
1461
|
},
|
|
1463
1462
|
"node_modules/@wavemaker/app-ng-runtime": {
|
|
1464
|
-
"version": "11.
|
|
1465
|
-
"integrity": "sha512-
|
|
1463
|
+
"version": "11.13.0-rc.222",
|
|
1464
|
+
"integrity": "sha512-4V2kcvOCdF+9hpkBDLlshZxwnffJ1VTRtv3QRei0fHP3rWI0//JOmUCDcbfebxz9xQS6qTelJjg9BDjawnCydg==",
|
|
1466
1465
|
"license": "MIT",
|
|
1467
1466
|
"engines": {
|
|
1468
1467
|
"node": ">=18.16.1",
|
|
@@ -1470,8 +1469,8 @@
|
|
|
1470
1469
|
}
|
|
1471
1470
|
},
|
|
1472
1471
|
"node_modules/@wavemaker/custom-widgets-m3": {
|
|
1473
|
-
"version": "11.
|
|
1474
|
-
"integrity": "sha512
|
|
1472
|
+
"version": "11.13.0-rc.222",
|
|
1473
|
+
"integrity": "sha512-Gu6D1fMkMomN6XS5nRhVSLN9g8ly9yMOp29JEPG76q8cSC2wNJmEm6yG3LoJ2uxKiXBdZW6MEDOD0PM013LByA==",
|
|
1475
1474
|
"license": "ISC"
|
|
1476
1475
|
},
|
|
1477
1476
|
"node_modules/@wavemaker/focus-trap": {
|
|
@@ -1484,8 +1483,8 @@
|
|
|
1484
1483
|
}
|
|
1485
1484
|
},
|
|
1486
1485
|
"node_modules/@wavemaker/foundation-css": {
|
|
1487
|
-
"version": "11.
|
|
1488
|
-
"integrity": "sha512-
|
|
1486
|
+
"version": "11.13.0-rc.222",
|
|
1487
|
+
"integrity": "sha512-iZkFpHa5e6qEljQjzy8Vd8tegYreDiCrS0k3e7VkpgqC7uSs0emnBMhHaqo1hburws7pNMQdVNupkRho0Qiu6g==",
|
|
1489
1488
|
"license": "ISC",
|
|
1490
1489
|
"dependencies": {
|
|
1491
1490
|
"chroma-js": "^3.1.2"
|
|
@@ -1500,8 +1499,8 @@
|
|
|
1500
1499
|
}
|
|
1501
1500
|
},
|
|
1502
1501
|
"node_modules/@wavemaker/variables": {
|
|
1503
|
-
"version": "11.
|
|
1504
|
-
"integrity": "sha512-
|
|
1502
|
+
"version": "11.13.0-rc.222",
|
|
1503
|
+
"integrity": "sha512-2Gi7uqnkgdF7DJ6g/xz8/L6d40Elx/ftUGWluwO8GsfnKhX8yqp1bngyIAbyJ1Zm3tzhn+8/IgR62wU4VeoyUg==",
|
|
1505
1504
|
"license": "ISC",
|
|
1506
1505
|
"dependencies": {
|
|
1507
1506
|
"@metrichor/jmespath": "^0.3.1",
|
|
@@ -1623,8 +1622,8 @@
|
|
|
1623
1622
|
}
|
|
1624
1623
|
},
|
|
1625
1624
|
"node_modules/agent-base/node_modules/debug": {
|
|
1626
|
-
"version": "4.4.
|
|
1627
|
-
"integrity": "sha512-
|
|
1625
|
+
"version": "4.4.3",
|
|
1626
|
+
"integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==",
|
|
1628
1627
|
"dev": true,
|
|
1629
1628
|
"license": "MIT",
|
|
1630
1629
|
"dependencies": {
|
|
@@ -1797,8 +1796,8 @@
|
|
|
1797
1796
|
}
|
|
1798
1797
|
},
|
|
1799
1798
|
"node_modules/b4a": {
|
|
1800
|
-
"version": "1.7.
|
|
1801
|
-
"integrity": "sha512-
|
|
1799
|
+
"version": "1.7.3",
|
|
1800
|
+
"integrity": "sha512-5Q2mfq2WfGuFp3uS//0s6baOJLMoVduPYVeNmDYxu5OUA1/cBfvr2RIS7vi62LdNj/urk1hfmj867I3qt6uZ7Q==",
|
|
1802
1801
|
"license": "Apache-2.0",
|
|
1803
1802
|
"peerDependencies": {
|
|
1804
1803
|
"react-native-b4a": "*"
|
|
@@ -1910,10 +1909,9 @@
|
|
|
1910
1909
|
"license": "MIT"
|
|
1911
1910
|
},
|
|
1912
1911
|
"node_modules/bare-events": {
|
|
1913
|
-
"version": "2.
|
|
1914
|
-
"integrity": "sha512-
|
|
1915
|
-
"license": "Apache-2.0"
|
|
1916
|
-
"optional": true
|
|
1912
|
+
"version": "2.7.0",
|
|
1913
|
+
"integrity": "sha512-b3N5eTW1g7vXkw+0CXh/HazGTcO5KYuu/RCNaJbDMPI6LHDi+7qe8EmxKUVe1sUbY2KZOVZFyj62x0OEz9qyAA==",
|
|
1914
|
+
"license": "Apache-2.0"
|
|
1917
1915
|
},
|
|
1918
1916
|
"node_modules/base64-js": {
|
|
1919
1917
|
"version": "1.5.1",
|
|
@@ -1934,6 +1932,15 @@
|
|
|
1934
1932
|
],
|
|
1935
1933
|
"license": "MIT"
|
|
1936
1934
|
},
|
|
1935
|
+
"node_modules/baseline-browser-mapping": {
|
|
1936
|
+
"version": "2.8.7",
|
|
1937
|
+
"integrity": "sha512-bxxN2M3a4d1CRoQC//IqsR5XrLh0IJ8TCv2x6Y9N0nckNz/rTjZB3//GGscZziZOxmjP55rzxg/ze7usFI9FqQ==",
|
|
1938
|
+
"dev": true,
|
|
1939
|
+
"license": "Apache-2.0",
|
|
1940
|
+
"bin": {
|
|
1941
|
+
"baseline-browser-mapping": "dist/cli.js"
|
|
1942
|
+
}
|
|
1943
|
+
},
|
|
1937
1944
|
"node_modules/bl": {
|
|
1938
1945
|
"version": "1.2.3",
|
|
1939
1946
|
"integrity": "sha512-pvcNpa0UU69UT341rO6AYy4FVAIkUHuZXRIWbq+zHnsVcRzDDjIAhGuuYoi0d//cwIwtt4pkpKycWEfjdV+vww==",
|
|
@@ -2041,8 +2048,8 @@
|
|
|
2041
2048
|
"license": "BSD-2-Clause"
|
|
2042
2049
|
},
|
|
2043
2050
|
"node_modules/browserslist": {
|
|
2044
|
-
"version": "4.
|
|
2045
|
-
"integrity": "sha512-
|
|
2051
|
+
"version": "4.26.2",
|
|
2052
|
+
"integrity": "sha512-ECFzp6uFOSB+dcZ5BK/IBaGWssbSYBHvuMeMt3MMFyhI0Z8SqGgEkBLARgpRH3hutIgPVsALcMwbDrJqPxQ65A==",
|
|
2046
2053
|
"dev": true,
|
|
2047
2054
|
"funding": [
|
|
2048
2055
|
{
|
|
@@ -2060,9 +2067,10 @@
|
|
|
2060
2067
|
],
|
|
2061
2068
|
"license": "MIT",
|
|
2062
2069
|
"dependencies": {
|
|
2063
|
-
"
|
|
2064
|
-
"
|
|
2065
|
-
"
|
|
2070
|
+
"baseline-browser-mapping": "^2.8.3",
|
|
2071
|
+
"caniuse-lite": "^1.0.30001741",
|
|
2072
|
+
"electron-to-chromium": "^1.5.218",
|
|
2073
|
+
"node-releases": "^2.0.21",
|
|
2066
2074
|
"update-browserslist-db": "^1.1.3"
|
|
2067
2075
|
},
|
|
2068
2076
|
"bin": {
|
|
@@ -2217,8 +2225,8 @@
|
|
|
2217
2225
|
}
|
|
2218
2226
|
},
|
|
2219
2227
|
"node_modules/caniuse-lite": {
|
|
2220
|
-
"version": "1.0.
|
|
2221
|
-
"integrity": "sha512-
|
|
2228
|
+
"version": "1.0.30001745",
|
|
2229
|
+
"integrity": "sha512-ywt6i8FzvdgrrrGbr1jZVObnVv6adj+0if2/omv9cmR2oiZs30zL4DIyaptKcbOrBdOIc74QTMoJvSE2QHh5UQ==",
|
|
2222
2230
|
"dev": true,
|
|
2223
2231
|
"funding": [
|
|
2224
2232
|
{
|
|
@@ -3312,8 +3320,8 @@
|
|
|
3312
3320
|
"license": "MIT"
|
|
3313
3321
|
},
|
|
3314
3322
|
"node_modules/electron-to-chromium": {
|
|
3315
|
-
"version": "1.5.
|
|
3316
|
-
"integrity": "sha512-
|
|
3323
|
+
"version": "1.5.224",
|
|
3324
|
+
"integrity": "sha512-kWAoUu/bwzvnhpdZSIc6KUyvkI1rbRXMT0Eq8pKReyOyaPZcctMli+EgvcN1PAvwVc7Tdo4Fxi2PsLNDU05mdg==",
|
|
3317
3325
|
"dev": true,
|
|
3318
3326
|
"license": "ISC"
|
|
3319
3327
|
},
|
|
@@ -3362,8 +3370,8 @@
|
|
|
3362
3370
|
}
|
|
3363
3371
|
},
|
|
3364
3372
|
"node_modules/error-ex": {
|
|
3365
|
-
"version": "1.3.
|
|
3366
|
-
"integrity": "sha512-
|
|
3373
|
+
"version": "1.3.4",
|
|
3374
|
+
"integrity": "sha512-sqQamAnR14VgCr1A618A3sGrygcpK+HEbenA/HiEAkkUwcZIIB/tgWqHFxWgOyDh4nB4JCRimh79dR5Ywc9MDQ==",
|
|
3367
3375
|
"dev": true,
|
|
3368
3376
|
"license": "MIT",
|
|
3369
3377
|
"dependencies": {
|
|
@@ -3522,6 +3530,14 @@
|
|
|
3522
3530
|
"node": ">=0.8.x"
|
|
3523
3531
|
}
|
|
3524
3532
|
},
|
|
3533
|
+
"node_modules/events-universal": {
|
|
3534
|
+
"version": "1.0.1",
|
|
3535
|
+
"integrity": "sha512-LUd5euvbMLpwOF8m6ivPCbhQeSiYVNb8Vs0fQ8QjXo0JTkEHpz8pxdQf0gStltaPpw0Cca8b39KxvK9cfKRiAw==",
|
|
3536
|
+
"license": "Apache-2.0",
|
|
3537
|
+
"dependencies": {
|
|
3538
|
+
"bare-events": "^2.7.0"
|
|
3539
|
+
}
|
|
3540
|
+
},
|
|
3525
3541
|
"node_modules/execa": {
|
|
3526
3542
|
"version": "5.1.1",
|
|
3527
3543
|
"integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==",
|
|
@@ -3893,14 +3909,6 @@
|
|
|
3893
3909
|
"integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==",
|
|
3894
3910
|
"license": "ISC"
|
|
3895
3911
|
},
|
|
3896
|
-
"node_modules/hammerjs": {
|
|
3897
|
-
"version": "2.0.8",
|
|
3898
|
-
"integrity": "sha512-tSQXBXS/MWQOn/RKckawJ61vvsDpCom87JgxiYdGwHdOa0ht0vzUWDlfioofFCRU0L+6NGDt6XzbgoJvZkMeRQ==",
|
|
3899
|
-
"license": "MIT",
|
|
3900
|
-
"engines": {
|
|
3901
|
-
"node": ">=0.8.0"
|
|
3902
|
-
}
|
|
3903
|
-
},
|
|
3904
3912
|
"node_modules/handlebars": {
|
|
3905
3913
|
"version": "4.7.8",
|
|
3906
3914
|
"integrity": "sha512-vafaFqs8MZkRrSX7sFVUdo3ap/eNiLnb4IakshzvP56X5Nr1iGKAIqdX6tMlm6HcNRIkr6AxO5jFEoJzzpT8aQ==",
|
|
@@ -4050,8 +4058,8 @@
|
|
|
4050
4058
|
}
|
|
4051
4059
|
},
|
|
4052
4060
|
"node_modules/http-proxy-agent/node_modules/debug": {
|
|
4053
|
-
"version": "4.4.
|
|
4054
|
-
"integrity": "sha512-
|
|
4061
|
+
"version": "4.4.3",
|
|
4062
|
+
"integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==",
|
|
4055
4063
|
"dev": true,
|
|
4056
4064
|
"license": "MIT",
|
|
4057
4065
|
"dependencies": {
|
|
@@ -4086,8 +4094,8 @@
|
|
|
4086
4094
|
}
|
|
4087
4095
|
},
|
|
4088
4096
|
"node_modules/https-proxy-agent/node_modules/debug": {
|
|
4089
|
-
"version": "4.4.
|
|
4090
|
-
"integrity": "sha512-
|
|
4097
|
+
"version": "4.4.3",
|
|
4098
|
+
"integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==",
|
|
4091
4099
|
"dev": true,
|
|
4092
4100
|
"license": "MIT",
|
|
4093
4101
|
"dependencies": {
|
|
@@ -4395,8 +4403,8 @@
|
|
|
4395
4403
|
}
|
|
4396
4404
|
},
|
|
4397
4405
|
"node_modules/istanbul-lib-source-maps/node_modules/debug": {
|
|
4398
|
-
"version": "4.4.
|
|
4399
|
-
"integrity": "sha512-
|
|
4406
|
+
"version": "4.4.3",
|
|
4407
|
+
"integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==",
|
|
4400
4408
|
"dev": true,
|
|
4401
4409
|
"license": "MIT",
|
|
4402
4410
|
"dependencies": {
|
|
@@ -5824,8 +5832,8 @@
|
|
|
5824
5832
|
"license": "MIT"
|
|
5825
5833
|
},
|
|
5826
5834
|
"node_modules/node-releases": {
|
|
5827
|
-
"version": "2.0.
|
|
5828
|
-
"integrity": "sha512-
|
|
5835
|
+
"version": "2.0.21",
|
|
5836
|
+
"integrity": "sha512-5b0pgg78U3hwXkCM8Z9b2FJdPZlr9Psr9V2gQPESdGHqbntyFJKFW4r5TeWGFzafGY3hzs1JC62VEQMbl1JFkw==",
|
|
5829
5837
|
"dev": true,
|
|
5830
5838
|
"license": "MIT"
|
|
5831
5839
|
},
|
|
@@ -6948,15 +6956,13 @@
|
|
|
6948
6956
|
}
|
|
6949
6957
|
},
|
|
6950
6958
|
"node_modules/streamx": {
|
|
6951
|
-
"version": "2.
|
|
6952
|
-
"integrity": "sha512-
|
|
6959
|
+
"version": "2.23.0",
|
|
6960
|
+
"integrity": "sha512-kn+e44esVfn2Fa/O0CPFcex27fjIL6MkVae0Mm6q+E6f0hWv578YCERbv+4m02cjxvDsPKLnmxral/rR6lBMAg==",
|
|
6953
6961
|
"license": "MIT",
|
|
6954
6962
|
"dependencies": {
|
|
6963
|
+
"events-universal": "^1.0.0",
|
|
6955
6964
|
"fast-fifo": "^1.3.2",
|
|
6956
6965
|
"text-decoder": "^1.1.0"
|
|
6957
|
-
},
|
|
6958
|
-
"optionalDependencies": {
|
|
6959
|
-
"bare-events": "^2.2.0"
|
|
6960
6966
|
}
|
|
6961
6967
|
},
|
|
6962
6968
|
"node_modules/string_decoder": {
|
|
@@ -7180,8 +7186,8 @@
|
|
|
7180
7186
|
"license": "MIT"
|
|
7181
7187
|
},
|
|
7182
7188
|
"node_modules/tar-fs": {
|
|
7183
|
-
"version": "1.16.
|
|
7184
|
-
"integrity": "sha512-
|
|
7189
|
+
"version": "1.16.6",
|
|
7190
|
+
"integrity": "sha512-JkOgFt3FxM/2v2CNpAVHqMW2QASjc/Hxo7IGfNd3MHaDYSW/sBFiS7YVmmhmr8x6vwN1VFQDQGdT2MWpmIuVKA==",
|
|
7185
7191
|
"license": "MIT",
|
|
7186
7192
|
"dependencies": {
|
|
7187
7193
|
"chownr": "^1.0.1",
|
|
@@ -7359,8 +7365,8 @@
|
|
|
7359
7365
|
"license": "BSD-3-Clause"
|
|
7360
7366
|
},
|
|
7361
7367
|
"node_modules/to-buffer": {
|
|
7362
|
-
"version": "1.2.
|
|
7363
|
-
"integrity": "sha512-
|
|
7368
|
+
"version": "1.2.2",
|
|
7369
|
+
"integrity": "sha512-db0E3UJjcFhpDhAF4tLo03oli3pwl3dbnzXOUIlRKrp+ldk/VUxzpWYZENsw2SZiuBjHAk7DfB0VU7NKdpb6sw==",
|
|
7364
7370
|
"license": "MIT",
|
|
7365
7371
|
"dependencies": {
|
|
7366
7372
|
"isarray": "^2.0.5",
|
|
@@ -7589,8 +7595,8 @@
|
|
|
7589
7595
|
}
|
|
7590
7596
|
},
|
|
7591
7597
|
"node_modules/undici-types": {
|
|
7592
|
-
"version": "7.
|
|
7593
|
-
"integrity": "sha512-
|
|
7598
|
+
"version": "7.12.0",
|
|
7599
|
+
"integrity": "sha512-goOacqME2GYyOZZfb5Lgtu+1IDmAlAEu5xnD3+xTzS10hT0vzpf0SPjkXwAw9Jm+4n/mQGDP3LO8CPbYROeBfQ==",
|
|
7594
7600
|
"license": "MIT"
|
|
7595
7601
|
},
|
|
7596
7602
|
"node_modules/universalify": {
|