@wavemaker/angular-codegen 11.10.2-rc.6065 → 11.10.3-next.25128
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/dependency-report.html +1 -1
- package/angular-app/npm-shrinkwrap.json +64 -61
- package/angular-app/package-lock.json +64 -61
- package/angular-app/package.json +5 -5
- package/angular-app/src/assets/styles/css/wm-style.css +1 -1
- package/build-angular-app.js +50 -13
- package/dependencies/app.component.html +34 -26
- package/dependencies/transpilation-mobile.cjs.js +5 -3
- package/dependencies/transpilation-web.cjs.js +5 -3
- package/npm-shrinkwrap.json +42 -36
- package/package-lock.json +42 -36
- package/package.json +2 -2
package/build-angular-app.js
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
/**
|
|
3
3
|
* Download and install the app-ng-runtime package
|
|
4
4
|
* Run the build and post build for the generated angular app.
|
|
5
|
-
*
|
|
5
|
+
*
|
|
6
6
|
* CONSOLE ARGUMENTS:-
|
|
7
7
|
* nodeVMArgs:String: Node environment params (Eg: '--max-old-space-size=2040')
|
|
8
8
|
* ngBuildParams:String: Anglar build params (Eg: '--prod=true --source-map=false')
|
|
@@ -58,7 +58,7 @@ const updateDeployUrl = (args) => {
|
|
|
58
58
|
* @param packageName
|
|
59
59
|
* @param isOptimized
|
|
60
60
|
*/
|
|
61
|
-
const processAngularAppPackage = (sourcePath, targetPath, packageName, isOptimized) => {
|
|
61
|
+
const processAngularAppPackage = async (sourcePath, targetPath, packageName, isOptimized) => {
|
|
62
62
|
const ANGULAR_APP_TARBALL_NAME = 'wavemaker' + '-' + ANGULAR_APP_TEMPLATE_NAME + '-' + global.buildConfigObj.runtimeUIVersion + '.tgz';
|
|
63
63
|
try {
|
|
64
64
|
// Download the package as a tarball
|
|
@@ -97,17 +97,45 @@ const processAngularAppPackage = (sourcePath, targetPath, packageName, isOptimiz
|
|
|
97
97
|
}
|
|
98
98
|
};
|
|
99
99
|
|
|
100
|
+
/**
|
|
101
|
+
*
|
|
102
|
+
* @param lockFile
|
|
103
|
+
* @param timeout
|
|
104
|
+
* @returns {Promise<void>}
|
|
105
|
+
*/
|
|
106
|
+
const waitForLock = async (lockFile, timeout) => {
|
|
107
|
+
timeout = timeout || 20 * 60 * 1000 // Wait for 20 minutes (timeout in milliseconds)
|
|
108
|
+
// Helper function to wait for the lock to be released with a timeout
|
|
109
|
+
const startTime = Date.now();
|
|
110
|
+
while (fs.existsSync(lockFile)) {
|
|
111
|
+
if (Date.now() - startTime > timeout) {
|
|
112
|
+
console.error('Timeout!! - waiting for the lock to be released. Exiting...');
|
|
113
|
+
process.exit(1); // Terminate the process with an error code
|
|
114
|
+
}
|
|
115
|
+
await sleep(1000); // Wait for 1 second before checking again
|
|
116
|
+
}
|
|
117
|
+
};
|
|
118
|
+
|
|
119
|
+
/**
|
|
120
|
+
*
|
|
121
|
+
* @param ms
|
|
122
|
+
* @returns {Promise<unknown>}
|
|
123
|
+
*/
|
|
124
|
+
const sleep = (ms) => {
|
|
125
|
+
// Helper function to sleep for a given time
|
|
126
|
+
return new Promise(resolve => setTimeout(resolve, ms));
|
|
127
|
+
};
|
|
100
128
|
|
|
101
129
|
/**
|
|
102
130
|
* Download the app runtime package
|
|
103
131
|
* Symlink to reuse the existing node modules (If windows optimizeUIBuild will be false and install all node modules every build )
|
|
104
132
|
* Run the ng build and post build for the project
|
|
105
133
|
*/
|
|
106
|
-
const buildAngularApp = (args) => {
|
|
134
|
+
const buildAngularApp = async (args) => {
|
|
107
135
|
const HOME_DIR = os.homedir();
|
|
108
136
|
let TARBALL_DOWNLOAD_PATH = path.join((path.join(HOME_DIR, '.wm', 'node_modules')), ANGULAR_APP_TEMPLATE_NAME, args.runtimeUIVersion);
|
|
109
137
|
const PACKAGE_NAME = NPM_PACKAGE_SCOPE + '/' + ANGULAR_APP_TEMPLATE_NAME + '@' + global.buildConfigObj.runtimeUIVersion;
|
|
110
|
-
const SUCCESS_FILE = path.join(TARBALL_DOWNLOAD_PATH, ".SUCCESS");
|
|
138
|
+
const SUCCESS_FILE = path.join(TARBALL_DOWNLOAD_PATH, ".SUCCESS"), LOCK_FILE = path.join(TARBALL_DOWNLOAD_PATH, ".LOCK");
|
|
111
139
|
|
|
112
140
|
//to handle windows build(optimizeUIBuild will be false for windows)
|
|
113
141
|
TARBALL_DOWNLOAD_PATH = args.optimizeUIBuild ? TARBALL_DOWNLOAD_PATH : args.appTarget;
|
|
@@ -118,23 +146,31 @@ const buildAngularApp = (args) => {
|
|
|
118
146
|
try {
|
|
119
147
|
if (args.optimizeUIBuild) {
|
|
120
148
|
if (!fs.existsSync(SUCCESS_FILE)) {
|
|
121
|
-
|
|
122
|
-
fs.
|
|
149
|
+
// Check if another process is already installing
|
|
150
|
+
if (fs.existsSync(LOCK_FILE)) {
|
|
151
|
+
console.log('Waiting for another build to complete npm install...');
|
|
152
|
+
await waitForLock(LOCK_FILE, 20 * 60 * 1000); // Wait for 20 minutes (timeout in milliseconds)
|
|
153
|
+
} else {
|
|
154
|
+
// Acquire the lock
|
|
155
|
+
fs.writeFileSync(LOCK_FILE, "PROGRESS");
|
|
156
|
+
await processAngularAppPackage(TARBALL_DOWNLOAD_PATH, TARBALL_DOWNLOAD_PATH, PACKAGE_NAME, true);
|
|
157
|
+
fs.writeFileSync(SUCCESS_FILE, "SUCCESS");
|
|
158
|
+
}
|
|
123
159
|
} else {
|
|
124
160
|
console.log(`node_modules for angular-app already installed - ${TARBALL_DOWNLOAD_PATH}`);
|
|
125
161
|
}
|
|
126
162
|
console.log(`Symlinking the node_modules to angular-app - ${args.appTarget}`);
|
|
127
163
|
fs.symlinkSync( `${TARBALL_DOWNLOAD_PATH}/node_modules`,`${args.appTarget}/node_modules`,'dir');
|
|
128
164
|
} else {
|
|
129
|
-
processAngularAppPackage(TARBALL_DOWNLOAD_PATH, args.appTarget, PACKAGE_NAME, false);
|
|
165
|
+
await processAngularAppPackage(TARBALL_DOWNLOAD_PATH, args.appTarget, PACKAGE_NAME, false);
|
|
130
166
|
}
|
|
131
167
|
} catch (err) {
|
|
132
|
-
deleteFiles([SUCCESS_FILE])
|
|
168
|
+
deleteFiles([SUCCESS_FILE, LOCK_FILE])
|
|
133
169
|
console.log(MSG_NG_RUNTIME_LOG + 'Something went wrong - ', err);
|
|
134
170
|
process.exit(err.code || err.pid);
|
|
135
171
|
} finally {
|
|
136
172
|
//cleanup : in windows / optimizeUIBuild is false, we need to delete the temp downloaded package
|
|
137
|
-
deleteFiles([path.join(TARBALL_DOWNLOAD_PATH, 'package'), path.join(TARBALL_DOWNLOAD_PATH, ANGULAR_APP_TARBALL_NAME)])
|
|
173
|
+
deleteFiles([path.join(TARBALL_DOWNLOAD_PATH, 'package'), path.join(TARBALL_DOWNLOAD_PATH, ANGULAR_APP_TARBALL_NAME), LOCK_FILE])
|
|
138
174
|
}
|
|
139
175
|
|
|
140
176
|
let ngBuildParams = updateDeployUrl(args);
|
|
@@ -389,7 +425,7 @@ const buildAppInAngularMode = async (angularBuildConfig) => {
|
|
|
389
425
|
nodeVMArgs: global.buildConfigObj.nodeVMArgs,
|
|
390
426
|
ngBuildParams: ngBuildParams
|
|
391
427
|
}
|
|
392
|
-
buildAngularApp(buildConfigObj);
|
|
428
|
+
await buildAngularApp(buildConfigObj);
|
|
393
429
|
copyRecursiveSync(angularBuildConfig.sourceDir + '/target/ui-build/generated-app/dist/', angularBuildConfig.sourceDir + '/target/ui-build/output-files/');
|
|
394
430
|
|
|
395
431
|
await postBuild(buildConfigObj)
|
|
@@ -421,7 +457,7 @@ const initBuild = async (buildConfigObj) => {
|
|
|
421
457
|
let appTarget = buildConfigObj.appTarget;
|
|
422
458
|
|
|
423
459
|
let baseDir = buildConfigObj.optimizeUIBuild ? undefined : appTarget.split('/').slice(0, 2).join('/') + '/';
|
|
424
|
-
if (buildConfigObj.generateOverrideCSS) {
|
|
460
|
+
if (buildConfigObj.generateOverrideCSS) {
|
|
425
461
|
const { generateOverrideCSS } = require(CODEGEN_INSTALLATION + 'src/codegen-cli.js');
|
|
426
462
|
await generateOverrideCSS(buildConfigObj, sourceDir, baseDir);
|
|
427
463
|
}
|
|
@@ -435,8 +471,9 @@ const initBuild = async (buildConfigObj) => {
|
|
|
435
471
|
} else if (buildType === BUILD_TYPE.WM) {
|
|
436
472
|
buildAppInWMMode(sourceDir, baseDir);
|
|
437
473
|
} else if (buildType === BUILD_TYPE.ANGULAR) {
|
|
438
|
-
|
|
439
|
-
|
|
474
|
+
if(!isWebComponentBuild){
|
|
475
|
+
await generateAngularApp(sourceDir, getNgBuildParams(), CODEGEN_INSTALLATION, appTarget, baseDir);
|
|
476
|
+
}
|
|
440
477
|
//pre - run the custom for this project
|
|
441
478
|
await global.buildConfigObj.hooks.preBuildHook();
|
|
442
479
|
|
|
@@ -1,28 +1,36 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
<
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
1
|
+
@if (startApp) {
|
|
2
|
+
<router-outlet></router-outlet>
|
|
3
|
+
@if (isApplicationType) {
|
|
4
|
+
<div wmContainer partialContainer content="Common" hidden class="ng-hide"></div>
|
|
5
|
+
}
|
|
6
|
+
<app-spinner name="globalspinner" classname="global-spinner" role="alert" aria-live="assertive" [attr.aria-label]="spinner.arialabel || 'Loading'" [show]="spinner.show" [spinnermessages]="spinner.messages"></app-spinner>
|
|
7
|
+
<div wmDialog name="oAuthLoginDialog" title="Application is requesting you to sign in with"
|
|
8
|
+
close.event="closeOAuthDialog()">
|
|
9
|
+
<ng-template #dialogBody>
|
|
10
|
+
<ul class="list-items">
|
|
11
|
+
@for (provider of providersConfig; track provider) {
|
|
12
|
+
<li class="list-item">
|
|
13
|
+
<button class="btn" (click)="provider.invoke()">{{provider.name}}</button>
|
|
14
|
+
</li>
|
|
15
|
+
}
|
|
16
|
+
</ul>
|
|
17
|
+
</ng-template>
|
|
18
|
+
</div>
|
|
19
|
+
<div wmConfirmDialog name="_app-confirm-dialog" title.bind="title" message.bind="message" oktext.bind="oktext"
|
|
20
|
+
canceltext.bind="canceltext" closable="false" iconclass.bind="iconclass"
|
|
21
|
+
escape.event="onEscape()" ok.event="onOk()" cancel.event="onCancel()" close.event="onClose()" opened.event="onOpen()"></div>
|
|
22
|
+
@if (!isApplicationType) {
|
|
23
|
+
<div wmConfirmDialog name="PrefabConfirmDialog" title.bind="title" message.bind="text" oktext.bind="okButtonText"
|
|
24
|
+
canceltext.bind="cancelButtonText" closable="false" iconclass.bind="iconclass"
|
|
25
|
+
escape.event="onEscape()" ok.event="onOk()" cancel.event="onCancel()" close.event="onClose()" opened.event="onOpen()"></div>
|
|
26
|
+
}
|
|
27
|
+
@if (!isApplicationType) {
|
|
28
|
+
<div wmAlertDialog name="PrefabAlertDialog" title.bind="title" message.bind="text" oktext.bind="okButtonText"
|
|
29
|
+
canceltext.bind="cancelButtonText" closable="false" iconclass.bind="iconclass"
|
|
30
|
+
escape.event="onEscape()" ok.event="onOk()" cancel.event="onCancel()" close.event="onClose()" opened.event="onOpen()"></div>
|
|
31
|
+
}
|
|
32
|
+
<div wmAppExt></div>
|
|
33
|
+
<i id="wm-mobile-display"></i>
|
|
34
|
+
}
|
|
27
35
|
<!--Dummy container to create the component dynamically-->
|
|
28
36
|
<ng-container #dynamicComponent></ng-container>
|
|
@@ -90590,11 +90590,13 @@ register('wm-carousel-template', () => {
|
|
|
90590
90590
|
pre: (attrs, shared, parentCarousel) => {
|
|
90591
90591
|
const carouselRef = parentCarousel.get('carousel_ref');
|
|
90592
90592
|
return `<div *ngIf="!${carouselRef}.fieldDefs">{{${carouselRef}.nodatamessage}}</div>
|
|
90593
|
-
|
|
90593
|
+
<ng-container *ngFor="let item of ${carouselRef}.fieldDefs; let i = index;">
|
|
90594
|
+
<${carouselContentTagName} wmCarouselTemplate #carouselTemplateRef="carouselTemplateRef" ${getAttrMarkup(attrs)}>
|
|
90594
90595
|
<ng-container [ngTemplateOutlet]="carouselTempRef${counter$1}"
|
|
90595
90596
|
[ngTemplateOutletContext]="{item:item, index:i}"
|
|
90596
90597
|
[ngTemplateOutletInjector]="${carouselRef}.createCustomInjector('carousel_item_' + carouselTemplateRef.trackId, {item:item, index:i})"></ng-container>
|
|
90597
90598
|
</${carouselContentTagName}>
|
|
90599
|
+
</ng-container>
|
|
90598
90600
|
<ng-template #carouselTempRef${counter$1++} let-item="item" let-index="index">`;
|
|
90599
90601
|
},
|
|
90600
90602
|
post: () => `</ng-template>`
|
|
@@ -91620,9 +91622,9 @@ const registerFormField = (isFormField) => {
|
|
|
91620
91622
|
const widgetType = attrs.get('widget') || FormWidgetType.TEXT;
|
|
91621
91623
|
const dataRole = isFormField ? 'form-field' : 'filter-field';
|
|
91622
91624
|
const formFieldErrorMsgId = 'wmform-field-error-' + generateGUId();
|
|
91623
|
-
const validationMsg =
|
|
91625
|
+
const validationMsg = `<p *ngIf="${counter}._control?.invalid && ${counter}._control?.touched && ${pCounter}.isUpdateMode"
|
|
91624
91626
|
class="help-block text-danger" aria-hidden="false" role="alert"
|
|
91625
|
-
aria-live="assertive" [attr.aria-label]="${counter}.validationmessage" id="${formFieldErrorMsgId}"><span aria-hidden="true" [textContent]="${counter}.validationmessage"></span></p
|
|
91627
|
+
aria-live="assertive" [attr.aria-label]="${counter}.validationmessage" id="${formFieldErrorMsgId}"><span aria-hidden="true" [textContent]="${counter}.validationmessage"></span></p>`;
|
|
91626
91628
|
const eventsTmpl = widgetType === FormWidgetType.UPLOAD ? '' : getEventsTemplate(attrs);
|
|
91627
91629
|
const controlLayout = isMobileApp() ? 'col-xs-12' : 'col-sm-12';
|
|
91628
91630
|
const isInList = pCounter === (parentList && parentList.get('parent_form_reference'));
|
|
@@ -101779,11 +101779,13 @@ register('wm-carousel-template', () => {
|
|
|
101779
101779
|
pre: (attrs, shared, parentCarousel) => {
|
|
101780
101780
|
const carouselRef = parentCarousel.get('carousel_ref');
|
|
101781
101781
|
return `<div *ngIf="!${carouselRef}.fieldDefs">{{${carouselRef}.nodatamessage}}</div>
|
|
101782
|
-
|
|
101782
|
+
<ng-container *ngFor="let item of ${carouselRef}.fieldDefs; let i = index;">
|
|
101783
|
+
<${carouselContentTagName} wmCarouselTemplate #carouselTemplateRef="carouselTemplateRef" ${getAttrMarkup(attrs)}>
|
|
101783
101784
|
<ng-container [ngTemplateOutlet]="carouselTempRef${counter$1}"
|
|
101784
101785
|
[ngTemplateOutletContext]="{item:item, index:i}"
|
|
101785
101786
|
[ngTemplateOutletInjector]="${carouselRef}.createCustomInjector('carousel_item_' + carouselTemplateRef.trackId, {item:item, index:i})"></ng-container>
|
|
101786
101787
|
</${carouselContentTagName}>
|
|
101788
|
+
</ng-container>
|
|
101787
101789
|
<ng-template #carouselTempRef${counter$1++} let-item="item" let-index="index">`;
|
|
101788
101790
|
},
|
|
101789
101791
|
post: () => `</ng-template>`
|
|
@@ -102809,9 +102811,9 @@ const registerFormField = (isFormField) => {
|
|
|
102809
102811
|
const widgetType = attrs.get('widget') || FormWidgetType.TEXT;
|
|
102810
102812
|
const dataRole = isFormField ? 'form-field' : 'filter-field';
|
|
102811
102813
|
const formFieldErrorMsgId = 'wmform-field-error-' + generateGUId();
|
|
102812
|
-
const validationMsg =
|
|
102814
|
+
const validationMsg = `<p *ngIf="${counter}._control?.invalid && ${counter}._control?.touched && ${pCounter}.isUpdateMode"
|
|
102813
102815
|
class="help-block text-danger" aria-hidden="false" role="alert"
|
|
102814
|
-
aria-live="assertive" [attr.aria-label]="${counter}.validationmessage" id="${formFieldErrorMsgId}"><span aria-hidden="true" [textContent]="${counter}.validationmessage"></span></p
|
|
102816
|
+
aria-live="assertive" [attr.aria-label]="${counter}.validationmessage" id="${formFieldErrorMsgId}"><span aria-hidden="true" [textContent]="${counter}.validationmessage"></span></p>`;
|
|
102815
102817
|
const eventsTmpl = widgetType === FormWidgetType.UPLOAD ? '' : getEventsTemplate(attrs);
|
|
102816
102818
|
const controlLayout = isMobileApp() ? 'col-xs-12' : 'col-sm-12';
|
|
102817
102819
|
const isInList = pCounter === (parentList && parentList.get('parent_form_reference'));
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wavemaker/angular-codegen",
|
|
3
|
-
"version": "11.10.
|
|
3
|
+
"version": "11.10.3-next.25128",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "@wavemaker/angular-codegen",
|
|
9
|
-
"version": "11.10.
|
|
9
|
+
"version": "11.10.3-next.25128",
|
|
10
10
|
"license": "ISC",
|
|
11
11
|
"dependencies": {
|
|
12
|
-
"@wavemaker/angular-app": "11.10.
|
|
12
|
+
"@wavemaker/angular-app": "11.10.3-next.25128",
|
|
13
13
|
"archiver": "^7.0.1",
|
|
14
14
|
"cheerio": "1.0.0-rc.12",
|
|
15
15
|
"decode-uri-component": "^0.2.0",
|
|
@@ -1518,8 +1518,8 @@
|
|
|
1518
1518
|
}
|
|
1519
1519
|
},
|
|
1520
1520
|
"node_modules/@types/node": {
|
|
1521
|
-
"version": "22.13.
|
|
1522
|
-
"integrity": "sha512
|
|
1521
|
+
"version": "22.13.5",
|
|
1522
|
+
"integrity": "sha512-+lTU0PxZXn0Dr1NBtC7Y8cR21AJr87dLLU953CWA6pMxxv/UDc7jYAY90upcrie1nRcD6XNG5HOYEDtgW5TxAg==",
|
|
1523
1523
|
"license": "MIT",
|
|
1524
1524
|
"dependencies": {
|
|
1525
1525
|
"undici-types": "~6.20.0"
|
|
@@ -1552,8 +1552,8 @@
|
|
|
1552
1552
|
"license": "MIT"
|
|
1553
1553
|
},
|
|
1554
1554
|
"node_modules/@wavemaker/angular-app": {
|
|
1555
|
-
"version": "11.10.
|
|
1556
|
-
"integrity": "sha512-
|
|
1555
|
+
"version": "11.10.3-next.25128",
|
|
1556
|
+
"integrity": "sha512-nvxdXVwOQiCD6Fdk9lWl6O5JhWN3imPYbTRcT6zbYaQkVhoz0zLyXlpuvybsA9sU6lfls1bVj8njag5j+AsLzQ==",
|
|
1557
1557
|
"dependencies": {
|
|
1558
1558
|
"@angular/animations": "18.2.13",
|
|
1559
1559
|
"@angular/common": "18.2.13",
|
|
@@ -1581,12 +1581,12 @@
|
|
|
1581
1581
|
"@awesome-cordova-plugins/vibration": "5.39.1",
|
|
1582
1582
|
"@babel/runtime": "7.14.8",
|
|
1583
1583
|
"@metrichor/jmespath": "0.3.1",
|
|
1584
|
-
"@wavemaker/app-ng-runtime": "11.10.
|
|
1585
|
-
"@wavemaker/custom-widgets-m3": "11.10.
|
|
1584
|
+
"@wavemaker/app-ng-runtime": "11.10.3-next.25128",
|
|
1585
|
+
"@wavemaker/custom-widgets-m3": "11.10.3-next.25128",
|
|
1586
1586
|
"@wavemaker/focus-trap": "1.0.1",
|
|
1587
|
-
"@wavemaker/foundation-css": "11.10.
|
|
1587
|
+
"@wavemaker/foundation-css": "11.10.3-next.25128",
|
|
1588
1588
|
"@wavemaker/nvd3": "1.8.12",
|
|
1589
|
-
"@wavemaker/variables": "11.10.
|
|
1589
|
+
"@wavemaker/variables": "11.10.3-next.25128",
|
|
1590
1590
|
"@ztree/ztree_v3": "3.5.48",
|
|
1591
1591
|
"angular-imask": "^7.6.1",
|
|
1592
1592
|
"angular2-websocket": "0.9.7",
|
|
@@ -1626,8 +1626,8 @@
|
|
|
1626
1626
|
}
|
|
1627
1627
|
},
|
|
1628
1628
|
"node_modules/@wavemaker/app-ng-runtime": {
|
|
1629
|
-
"version": "11.10.
|
|
1630
|
-
"integrity": "sha512-
|
|
1629
|
+
"version": "11.10.3-next.25128",
|
|
1630
|
+
"integrity": "sha512-sIj8GdYkIb7E/664NyOjo6V20lO6olsA5zxBLg2vLbefdwE4T+j29xF+++oMRqJoIsVPGflIzYyyWPp6hC040w==",
|
|
1631
1631
|
"license": "MIT",
|
|
1632
1632
|
"engines": {
|
|
1633
1633
|
"node": ">=18.16.1",
|
|
@@ -1635,8 +1635,8 @@
|
|
|
1635
1635
|
}
|
|
1636
1636
|
},
|
|
1637
1637
|
"node_modules/@wavemaker/custom-widgets-m3": {
|
|
1638
|
-
"version": "11.10.
|
|
1639
|
-
"integrity": "sha512
|
|
1638
|
+
"version": "11.10.3-next.25128",
|
|
1639
|
+
"integrity": "sha512-ZnO9GZOtgxsKZGeYpE5zTUccmato8jMzeq7EuAmBHnUMlN7om9wGWyPJn+4xb8WygbJWgtAfX1Ho9ZfVB7mjyw==",
|
|
1640
1640
|
"license": "ISC"
|
|
1641
1641
|
},
|
|
1642
1642
|
"node_modules/@wavemaker/focus-trap": {
|
|
@@ -1649,8 +1649,8 @@
|
|
|
1649
1649
|
}
|
|
1650
1650
|
},
|
|
1651
1651
|
"node_modules/@wavemaker/foundation-css": {
|
|
1652
|
-
"version": "11.10.
|
|
1653
|
-
"integrity": "sha512
|
|
1652
|
+
"version": "11.10.3-next.25128",
|
|
1653
|
+
"integrity": "sha512-+7S4QgrqV3iqsPV67WVxWKNfnxK8dTPi3kleYIHRNL/cPjw2MDxSBUyccCFnahdJLIkFJbprFYlaz6z9eqnEAQ==",
|
|
1654
1654
|
"license": "ISC"
|
|
1655
1655
|
},
|
|
1656
1656
|
"node_modules/@wavemaker/nvd3": {
|
|
@@ -1662,8 +1662,8 @@
|
|
|
1662
1662
|
}
|
|
1663
1663
|
},
|
|
1664
1664
|
"node_modules/@wavemaker/variables": {
|
|
1665
|
-
"version": "11.10.
|
|
1666
|
-
"integrity": "sha512-
|
|
1665
|
+
"version": "11.10.3-next.25128",
|
|
1666
|
+
"integrity": "sha512-eYMG5GkDcmxoVW+k8bjjcnkAe0Q8/KdQDBvksF0hcw21NmrkB8ZHmGQu7ry7ZavGQKDLBCY0GGpUr0f5US1g7g==",
|
|
1667
1667
|
"license": "ISC",
|
|
1668
1668
|
"dependencies": {
|
|
1669
1669
|
"@metrichor/jmespath": "^0.3.1",
|
|
@@ -2340,8 +2340,8 @@
|
|
|
2340
2340
|
}
|
|
2341
2341
|
},
|
|
2342
2342
|
"node_modules/caniuse-lite": {
|
|
2343
|
-
"version": "1.0.
|
|
2344
|
-
"integrity": "sha512-
|
|
2343
|
+
"version": "1.0.30001701",
|
|
2344
|
+
"integrity": "sha512-faRs/AW3jA9nTwmJBSO1PQ6L/EOgsB5HMQQq4iCu5zhPgVVgO/pZRHlmatwijZKetFw8/Pr4q6dEN8sJuq8qTw==",
|
|
2345
2345
|
"dev": true,
|
|
2346
2346
|
"funding": [
|
|
2347
2347
|
{
|
|
@@ -3414,8 +3414,8 @@
|
|
|
3414
3414
|
"license": "MIT"
|
|
3415
3415
|
},
|
|
3416
3416
|
"node_modules/electron-to-chromium": {
|
|
3417
|
-
"version": "1.5.
|
|
3418
|
-
"integrity": "sha512-
|
|
3417
|
+
"version": "1.5.109",
|
|
3418
|
+
"integrity": "sha512-AidaH9JETVRr9DIPGfp1kAarm/W6hRJTPuCnkF+2MqhF4KaAgRIcBc8nvjk+YMXZhwfISof/7WG29eS4iGxQLQ==",
|
|
3419
3419
|
"dev": true,
|
|
3420
3420
|
"license": "ISC"
|
|
3421
3421
|
},
|
|
@@ -3798,11 +3798,11 @@
|
|
|
3798
3798
|
}
|
|
3799
3799
|
},
|
|
3800
3800
|
"node_modules/foreground-child": {
|
|
3801
|
-
"version": "3.3.
|
|
3802
|
-
"integrity": "sha512-
|
|
3801
|
+
"version": "3.3.1",
|
|
3802
|
+
"integrity": "sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw==",
|
|
3803
3803
|
"license": "ISC",
|
|
3804
3804
|
"dependencies": {
|
|
3805
|
-
"cross-spawn": "^7.0.
|
|
3805
|
+
"cross-spawn": "^7.0.6",
|
|
3806
3806
|
"signal-exit": "^4.0.1"
|
|
3807
3807
|
},
|
|
3808
3808
|
"engines": {
|
|
@@ -3895,16 +3895,16 @@
|
|
|
3895
3895
|
"license": "ISC"
|
|
3896
3896
|
},
|
|
3897
3897
|
"node_modules/get-intrinsic": {
|
|
3898
|
-
"version": "1.
|
|
3899
|
-
"integrity": "sha512-
|
|
3898
|
+
"version": "1.3.0",
|
|
3899
|
+
"integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==",
|
|
3900
3900
|
"license": "MIT",
|
|
3901
3901
|
"dependencies": {
|
|
3902
|
-
"call-bind-apply-helpers": "^1.0.
|
|
3902
|
+
"call-bind-apply-helpers": "^1.0.2",
|
|
3903
3903
|
"es-define-property": "^1.0.1",
|
|
3904
3904
|
"es-errors": "^1.3.0",
|
|
3905
|
-
"es-object-atoms": "^1.
|
|
3905
|
+
"es-object-atoms": "^1.1.1",
|
|
3906
3906
|
"function-bind": "^1.1.2",
|
|
3907
|
-
"get-proto": "^1.0.
|
|
3907
|
+
"get-proto": "^1.0.1",
|
|
3908
3908
|
"gopd": "^1.2.0",
|
|
3909
3909
|
"has-symbols": "^1.1.0",
|
|
3910
3910
|
"hasown": "^2.0.2",
|
|
@@ -4684,7 +4684,7 @@
|
|
|
4684
4684
|
},
|
|
4685
4685
|
"node_modules/jest-cli/node_modules/y18n": {
|
|
4686
4686
|
"version": "5.0.8",
|
|
4687
|
-
"integrity": "
|
|
4687
|
+
"integrity": "sha1-f0k00PfKjFb5UxSTndzS3ZHOHVU=",
|
|
4688
4688
|
"dev": true,
|
|
4689
4689
|
"license": "ISC",
|
|
4690
4690
|
"engines": {
|
|
@@ -7136,8 +7136,14 @@
|
|
|
7136
7136
|
}
|
|
7137
7137
|
},
|
|
7138
7138
|
"node_modules/strnum": {
|
|
7139
|
-
"version": "1.
|
|
7140
|
-
"integrity": "sha512-
|
|
7139
|
+
"version": "1.1.2",
|
|
7140
|
+
"integrity": "sha512-vrN+B7DBIoTTZjnPNewwhx6cBA/H+IS7rfW68n7XxC1y7uoiGQBxaKzqucGUgavX15dJgiGztLJ8vxuEzwqBdA==",
|
|
7141
|
+
"funding": [
|
|
7142
|
+
{
|
|
7143
|
+
"type": "github",
|
|
7144
|
+
"url": "https://github.com/sponsors/NaturalIntelligence"
|
|
7145
|
+
}
|
|
7146
|
+
],
|
|
7141
7147
|
"license": "MIT"
|
|
7142
7148
|
},
|
|
7143
7149
|
"node_modules/summernote": {
|
|
@@ -7601,8 +7607,8 @@
|
|
|
7601
7607
|
}
|
|
7602
7608
|
},
|
|
7603
7609
|
"node_modules/update-browserslist-db": {
|
|
7604
|
-
"version": "1.1.
|
|
7605
|
-
"integrity": "sha512-
|
|
7610
|
+
"version": "1.1.3",
|
|
7611
|
+
"integrity": "sha512-UxhIZQ+QInVdunkDAaiazvvT/+fXL5Osr0JZlJulepYu6Jd7qJtDZjlur0emRlT71EN3ScPoE7gvsuIKKNavKw==",
|
|
7606
7612
|
"dev": true,
|
|
7607
7613
|
"funding": [
|
|
7608
7614
|
{
|