@wavemaker/angular-app 11.14.1-17.6422 → 11.14.1-17.6426
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/dependencies/pipe-provider.cjs.js +56 -18
- package/dependencies/transpilation-web.cjs.js +21 -3
- package/dependency-report.html +1 -1
- package/npm-shrinkwrap.json +86 -87
- package/package-lock.json +86 -87
- package/package.json +5 -5
|
@@ -147851,13 +147851,13 @@ const FIRST_TIME_WATCH$1 = {};
|
|
|
147851
147851
|
Object.freeze(FIRST_TIME_WATCH$1);
|
|
147852
147852
|
const arrayConsumer$1 = (listenerFn, restExpr, newVal, oldVal) => {
|
|
147853
147853
|
let data = newVal, formattedData;
|
|
147854
|
-
if (isArray
|
|
147854
|
+
if (_.isArray(data)) {
|
|
147855
147855
|
formattedData = data.map(function (datum) {
|
|
147856
147856
|
return findValueOf$1(datum, restExpr);
|
|
147857
147857
|
});
|
|
147858
147858
|
// If resulting structure is an array of array, flatten it
|
|
147859
|
-
if (isArray
|
|
147860
|
-
formattedData = flatten
|
|
147859
|
+
if (_.isArray(formattedData[0])) {
|
|
147860
|
+
formattedData = _.flatten(formattedData);
|
|
147861
147861
|
}
|
|
147862
147862
|
listenerFn(formattedData, oldVal);
|
|
147863
147863
|
}
|
|
@@ -147902,6 +147902,19 @@ const $watch$1 = (expr, $scope, $locals, listener, identifier = watchIdGenerator
|
|
|
147902
147902
|
};
|
|
147903
147903
|
const $unwatch$1 = identifier => registry$1.delete(identifier);
|
|
147904
147904
|
window.watchRegistry = registry$1;
|
|
147905
|
+
window.__WM_DEBUG_WATCHERS__ = false;
|
|
147906
|
+
/*export const $invokeWatchers = (force?: boolean, ignoreMuted?: boolean) => {
|
|
147907
|
+
if (force) {
|
|
147908
|
+
triggerWatchers(ignoreMuted);
|
|
147909
|
+
} else {
|
|
147910
|
+
|
|
147911
|
+
if (skipWatchers) {
|
|
147912
|
+
skipWatchers = false;
|
|
147913
|
+
return;
|
|
147914
|
+
}
|
|
147915
|
+
debouncedTriggerWatchers();
|
|
147916
|
+
}
|
|
147917
|
+
};*/
|
|
147905
147918
|
const $appDigest$1 = (() => {
|
|
147906
147919
|
return (force) => {
|
|
147907
147920
|
{
|
|
@@ -147964,8 +147977,8 @@ var Operation$1;
|
|
|
147964
147977
|
const DataSource$1 = {
|
|
147965
147978
|
Operation: Operation$1
|
|
147966
147979
|
};
|
|
147967
|
-
class App {
|
|
147968
|
-
}
|
|
147980
|
+
let App$1 = class App {
|
|
147981
|
+
};
|
|
147969
147982
|
let AbstractI18nService$1 = class AbstractI18nService {
|
|
147970
147983
|
};
|
|
147971
147984
|
|
|
@@ -147983,6 +147996,7 @@ const REGEX$1 = {
|
|
|
147983
147996
|
SUPPORTED_AUDIO_FORMAT: /\.(mp3|ogg|webm|wma|3gp|wav|m4a)$/i,
|
|
147984
147997
|
SUPPORTED_VIDEO_FORMAT: /\.(mp4|ogg|webm|wmv|mpeg|mpg|avi|mov)$/i,
|
|
147985
147998
|
VALID_WEB_URL: /^(http[s]?:\/\/)(www\.){0,1}[a-zA-Z0-9=:?\/\.\-]+(\.[a-zA-Z]{2,5}[\.]{0,1})?/,
|
|
147999
|
+
VALID_IMAGE_URL: /^(https?|blob|data|file|ftp):/i,
|
|
147986
148000
|
REPLACE_PATTERN: /\$\{([^\}]+)\}/g,
|
|
147987
148001
|
DATA_URL: /^\s*data:([a-z]+\/[a-z0-9-+.]+(;[a-z-]+=[a-z0-9-]+)?)?(;base64)?,([a-z0-9!$&',()*+;=\-._~:@\/?%\s]*)\s*$/i,
|
|
147988
148002
|
ISO_DATE_FORMAT: /(\d{4}-\d{2}-\d{2})T(\d{2}:\d{2}:\d{2})(\.\d+)?([+-]\d{2}:?\d{2}|Z)$/
|
|
@@ -148205,6 +148219,9 @@ const isVideoFile$1 = (fileName) => {
|
|
|
148205
148219
|
const isValidWebURL$1 = (url) => {
|
|
148206
148220
|
return (REGEX$1.VALID_WEB_URL).test(url);
|
|
148207
148221
|
};
|
|
148222
|
+
const isValidImageUrl$1 = (url) => {
|
|
148223
|
+
return (REGEX$1.VALID_IMAGE_URL).test(url?.trim());
|
|
148224
|
+
};
|
|
148208
148225
|
/*This function returns the url to the resource after checking the validity of url*/
|
|
148209
148226
|
const getResourceURL$1 = (urlString) => {
|
|
148210
148227
|
return urlString;
|
|
@@ -149458,6 +149475,7 @@ var Utils$1 = /*#__PURE__*/Object.freeze({
|
|
|
149458
149475
|
isPageable: isPageable$1,
|
|
149459
149476
|
isSafari: isSafari$1,
|
|
149460
149477
|
isTablet: isTablet$1,
|
|
149478
|
+
isValidImageUrl: isValidImageUrl$1,
|
|
149461
149479
|
isValidWebURL: isValidWebURL$1,
|
|
149462
149480
|
isVideoFile: isVideoFile$1,
|
|
149463
149481
|
loadScript: loadScript$1,
|
|
@@ -150692,14 +150710,14 @@ class ToDatePipe extends WmPipe {
|
|
|
150692
150710
|
}
|
|
150693
150711
|
return this.returnFn('', arguments, this.app.Variables);
|
|
150694
150712
|
}
|
|
150695
|
-
constructor(datePipe, i18nService, customPipeManager) {
|
|
150713
|
+
constructor(datePipe, i18nService, app, customPipeManager) {
|
|
150696
150714
|
super('toDate', customPipeManager);
|
|
150697
150715
|
this.datePipe = datePipe;
|
|
150698
150716
|
this.i18nService = i18nService;
|
|
150717
|
+
this.app = app;
|
|
150699
150718
|
this.customPipeManager = customPipeManager;
|
|
150700
|
-
this.app = inject(App);
|
|
150701
150719
|
}
|
|
150702
|
-
static { this.ɵfac = function ToDatePipe_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || ToDatePipe)(ɵɵdirectiveInject(DatePipe, 16), ɵɵdirectiveInject(AbstractI18nService$1, 16), ɵɵdirectiveInject(CustomPipeManager$1, 16)); }; }
|
|
150720
|
+
static { this.ɵfac = function ToDatePipe_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || ToDatePipe)(ɵɵdirectiveInject(DatePipe, 16), ɵɵdirectiveInject(AbstractI18nService$1, 16), ɵɵdirectiveInject(App$1, 16), ɵɵdirectiveInject(CustomPipeManager$1, 16)); }; }
|
|
150703
150721
|
static { this.ɵpipe = /*@__PURE__*/ ɵɵdefinePipe({ name: "toDate", type: ToDatePipe, pure: true, standalone: true }); }
|
|
150704
150722
|
}
|
|
150705
150723
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && setClassMetadata(ToDatePipe, [{
|
|
@@ -150708,7 +150726,7 @@ class ToDatePipe extends WmPipe {
|
|
|
150708
150726
|
standalone: true,
|
|
150709
150727
|
name: 'toDate'
|
|
150710
150728
|
}]
|
|
150711
|
-
}], () => [{ type: DatePipe }, { type: AbstractI18nService$1 }, { type: CustomPipeManager$1 }], null); })();
|
|
150729
|
+
}], () => [{ type: DatePipe }, { type: AbstractI18nService$1 }, { type: App$1 }, { type: CustomPipeManager$1 }], null); })();
|
|
150712
150730
|
class ToNumberPipe {
|
|
150713
150731
|
transform(data, fracSize) {
|
|
150714
150732
|
if (fracSize && !String(fracSize).match(/^(\d+)?\.((\d+)(-(\d+))?)?$/)) {
|
|
@@ -150796,9 +150814,9 @@ class SuffixPipe {
|
|
|
150796
150814
|
* Custom pipe: It is work as interceptor between the user custom pipe function and angular pipe
|
|
150797
150815
|
*/
|
|
150798
150816
|
class CustomPipe {
|
|
150799
|
-
constructor(custmeUserPipe) {
|
|
150817
|
+
constructor(app, custmeUserPipe) {
|
|
150818
|
+
this.app = app;
|
|
150800
150819
|
this.custmeUserPipe = custmeUserPipe;
|
|
150801
|
-
this.app = inject(App);
|
|
150802
150820
|
}
|
|
150803
150821
|
transform(data, pipename) {
|
|
150804
150822
|
let argumentArr = [];
|
|
@@ -150818,7 +150836,7 @@ class CustomPipe {
|
|
|
150818
150836
|
return data;
|
|
150819
150837
|
}
|
|
150820
150838
|
}
|
|
150821
|
-
static { this.ɵfac = function CustomPipe_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || CustomPipe)(ɵɵdirectiveInject(CustomPipeManager$1, 16)); }; }
|
|
150839
|
+
static { this.ɵfac = function CustomPipe_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || CustomPipe)(ɵɵdirectiveInject(App$1, 16), ɵɵdirectiveInject(CustomPipeManager$1, 16)); }; }
|
|
150822
150840
|
static { this.ɵpipe = /*@__PURE__*/ ɵɵdefinePipe({ name: "custom", type: CustomPipe, pure: true, standalone: true }); }
|
|
150823
150841
|
}
|
|
150824
150842
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && setClassMetadata(CustomPipe, [{
|
|
@@ -150827,7 +150845,7 @@ class CustomPipe {
|
|
|
150827
150845
|
standalone: true,
|
|
150828
150846
|
name: 'custom'
|
|
150829
150847
|
}]
|
|
150830
|
-
}], () => [{ type: CustomPipeManager$1 }], null); })();
|
|
150848
|
+
}], () => [{ type: App$1 }, { type: CustomPipeManager$1 }], null); })();
|
|
150831
150849
|
class TimeFromNowPipe {
|
|
150832
150850
|
transform(data) {
|
|
150833
150851
|
let timestamp;
|
|
@@ -203461,13 +203479,13 @@ const FIRST_TIME_WATCH = {};
|
|
|
203461
203479
|
Object.freeze(FIRST_TIME_WATCH);
|
|
203462
203480
|
const arrayConsumer = (listenerFn, restExpr, newVal, oldVal) => {
|
|
203463
203481
|
let data = newVal, formattedData;
|
|
203464
|
-
if (isArray(data)) {
|
|
203482
|
+
if (_.isArray(data)) {
|
|
203465
203483
|
formattedData = data.map(function (datum) {
|
|
203466
203484
|
return findValueOf(datum, restExpr);
|
|
203467
203485
|
});
|
|
203468
203486
|
// If resulting structure is an array of array, flatten it
|
|
203469
|
-
if (isArray(formattedData[0])) {
|
|
203470
|
-
formattedData = flatten(formattedData);
|
|
203487
|
+
if (_.isArray(formattedData[0])) {
|
|
203488
|
+
formattedData = _.flatten(formattedData);
|
|
203471
203489
|
}
|
|
203472
203490
|
listenerFn(formattedData, oldVal);
|
|
203473
203491
|
}
|
|
@@ -203512,6 +203530,19 @@ const $watch = (expr, $scope, $locals, listener, identifier = watchIdGenerator.n
|
|
|
203512
203530
|
};
|
|
203513
203531
|
const $unwatch = identifier => registry.delete(identifier);
|
|
203514
203532
|
window.watchRegistry = registry;
|
|
203533
|
+
window.__WM_DEBUG_WATCHERS__ = false;
|
|
203534
|
+
/*export const $invokeWatchers = (force?: boolean, ignoreMuted?: boolean) => {
|
|
203535
|
+
if (force) {
|
|
203536
|
+
triggerWatchers(ignoreMuted);
|
|
203537
|
+
} else {
|
|
203538
|
+
|
|
203539
|
+
if (skipWatchers) {
|
|
203540
|
+
skipWatchers = false;
|
|
203541
|
+
return;
|
|
203542
|
+
}
|
|
203543
|
+
debouncedTriggerWatchers();
|
|
203544
|
+
}
|
|
203545
|
+
};*/
|
|
203515
203546
|
const $appDigest = (() => {
|
|
203516
203547
|
return (force) => {
|
|
203517
203548
|
{
|
|
@@ -203574,6 +203605,8 @@ var Operation;
|
|
|
203574
203605
|
const DataSource = {
|
|
203575
203606
|
Operation
|
|
203576
203607
|
};
|
|
203608
|
+
class App {
|
|
203609
|
+
}
|
|
203577
203610
|
class AbstractI18nService {
|
|
203578
203611
|
}
|
|
203579
203612
|
|
|
@@ -203591,6 +203624,7 @@ const REGEX = {
|
|
|
203591
203624
|
SUPPORTED_AUDIO_FORMAT: /\.(mp3|ogg|webm|wma|3gp|wav|m4a)$/i,
|
|
203592
203625
|
SUPPORTED_VIDEO_FORMAT: /\.(mp4|ogg|webm|wmv|mpeg|mpg|avi|mov)$/i,
|
|
203593
203626
|
VALID_WEB_URL: /^(http[s]?:\/\/)(www\.){0,1}[a-zA-Z0-9=:?\/\.\-]+(\.[a-zA-Z]{2,5}[\.]{0,1})?/,
|
|
203627
|
+
VALID_IMAGE_URL: /^(https?|blob|data|file|ftp):/i,
|
|
203594
203628
|
REPLACE_PATTERN: /\$\{([^\}]+)\}/g,
|
|
203595
203629
|
DATA_URL: /^\s*data:([a-z]+\/[a-z0-9-+.]+(;[a-z-]+=[a-z0-9-]+)?)?(;base64)?,([a-z0-9!$&',()*+;=\-._~:@\/?%\s]*)\s*$/i,
|
|
203596
203630
|
ISO_DATE_FORMAT: /(\d{4}-\d{2}-\d{2})T(\d{2}:\d{2}:\d{2})(\.\d+)?([+-]\d{2}:?\d{2}|Z)$/
|
|
@@ -203813,6 +203847,9 @@ const isVideoFile = (fileName) => {
|
|
|
203813
203847
|
const isValidWebURL = (url) => {
|
|
203814
203848
|
return (REGEX.VALID_WEB_URL).test(url);
|
|
203815
203849
|
};
|
|
203850
|
+
const isValidImageUrl = (url) => {
|
|
203851
|
+
return (REGEX.VALID_IMAGE_URL).test(url?.trim());
|
|
203852
|
+
};
|
|
203816
203853
|
/*This function returns the url to the resource after checking the validity of url*/
|
|
203817
203854
|
const getResourceURL = (urlString) => {
|
|
203818
203855
|
return urlString;
|
|
@@ -205066,6 +205103,7 @@ var Utils = /*#__PURE__*/Object.freeze({
|
|
|
205066
205103
|
isPageable: isPageable,
|
|
205067
205104
|
isSafari: isSafari,
|
|
205068
205105
|
isTablet: isTablet,
|
|
205106
|
+
isValidImageUrl: isValidImageUrl,
|
|
205069
205107
|
isValidWebURL: isValidWebURL,
|
|
205070
205108
|
isVideoFile: isVideoFile,
|
|
205071
205109
|
loadScript: loadScript,
|
|
@@ -207905,7 +207943,7 @@ class PipeProvider {
|
|
|
207905
207943
|
this.preparePipeMeta(CurrencyPipe$1, 'currency', true, [this._locale]),
|
|
207906
207944
|
this.preparePipeMeta(DatePipe$1, 'date', true, [this._locale]),
|
|
207907
207945
|
this.preparePipeMeta(ToDatePipe, 'toDate', true, [
|
|
207908
|
-
new DatePipe$1(this._locale), undefined, this.injector.get(CustomPipeManager)
|
|
207946
|
+
new DatePipe$1(this._locale), undefined, this.injector.get(App), this.injector.get(CustomPipeManager)
|
|
207909
207947
|
]),
|
|
207910
207948
|
this.preparePipeMeta(ToNumberPipe, 'toNumber', true, [
|
|
207911
207949
|
new DecimalPipe$1(this._locale),
|
|
@@ -207922,7 +207960,7 @@ class PipeProvider {
|
|
|
207922
207960
|
new DecimalPipe$1(this._locale)
|
|
207923
207961
|
]),
|
|
207924
207962
|
this.preparePipeMeta(StringToNumberPipe, 'stringToNumber', true),
|
|
207925
|
-
this.preparePipeMeta(CustomPipe, 'custom', true, [this.injector.get(CustomPipeManager)]),
|
|
207963
|
+
this.preparePipeMeta(CustomPipe, 'custom', true, [this.injector.get(App), this.injector.get(CustomPipeManager)]),
|
|
207926
207964
|
this.preparePipeMeta(TrustAsPipe, 'trustAs', true, [this.domSanitizer]),
|
|
207927
207965
|
this.preparePipeMeta(SanitizePipe, 'sanitize', true, [this.domSanitizer]),
|
|
207928
207966
|
this.preparePipeMeta(TemplateReplacePipe, 'templateReplace', true),
|
|
@@ -100259,13 +100259,13 @@ const FIRST_TIME_WATCH = {};
|
|
|
100259
100259
|
Object.freeze(FIRST_TIME_WATCH);
|
|
100260
100260
|
const arrayConsumer = (listenerFn, restExpr, newVal, oldVal) => {
|
|
100261
100261
|
let data = newVal, formattedData;
|
|
100262
|
-
if (isArray(data)) {
|
|
100262
|
+
if (_.isArray(data)) {
|
|
100263
100263
|
formattedData = data.map(function (datum) {
|
|
100264
100264
|
return findValueOf(datum, restExpr);
|
|
100265
100265
|
});
|
|
100266
100266
|
// If resulting structure is an array of array, flatten it
|
|
100267
|
-
if (isArray(formattedData[0])) {
|
|
100268
|
-
formattedData = flatten
|
|
100267
|
+
if (_.isArray(formattedData[0])) {
|
|
100268
|
+
formattedData = _.flatten(formattedData);
|
|
100269
100269
|
}
|
|
100270
100270
|
listenerFn(formattedData, oldVal);
|
|
100271
100271
|
}
|
|
@@ -100310,6 +100310,19 @@ const $watch = (expr, $scope, $locals, listener, identifier = watchIdGenerator.n
|
|
|
100310
100310
|
};
|
|
100311
100311
|
const $unwatch = identifier => registry.delete(identifier);
|
|
100312
100312
|
window.watchRegistry = registry;
|
|
100313
|
+
window.__WM_DEBUG_WATCHERS__ = false;
|
|
100314
|
+
/*export const $invokeWatchers = (force?: boolean, ignoreMuted?: boolean) => {
|
|
100315
|
+
if (force) {
|
|
100316
|
+
triggerWatchers(ignoreMuted);
|
|
100317
|
+
} else {
|
|
100318
|
+
|
|
100319
|
+
if (skipWatchers) {
|
|
100320
|
+
skipWatchers = false;
|
|
100321
|
+
return;
|
|
100322
|
+
}
|
|
100323
|
+
debouncedTriggerWatchers();
|
|
100324
|
+
}
|
|
100325
|
+
};*/
|
|
100313
100326
|
const $appDigest = (() => {
|
|
100314
100327
|
return (force) => {
|
|
100315
100328
|
{
|
|
@@ -100387,6 +100400,7 @@ const REGEX = {
|
|
|
100387
100400
|
SUPPORTED_AUDIO_FORMAT: /\.(mp3|ogg|webm|wma|3gp|wav|m4a)$/i,
|
|
100388
100401
|
SUPPORTED_VIDEO_FORMAT: /\.(mp4|ogg|webm|wmv|mpeg|mpg|avi|mov)$/i,
|
|
100389
100402
|
VALID_WEB_URL: /^(http[s]?:\/\/)(www\.){0,1}[a-zA-Z0-9=:?\/\.\-]+(\.[a-zA-Z]{2,5}[\.]{0,1})?/,
|
|
100403
|
+
VALID_IMAGE_URL: /^(https?|blob|data|file|ftp):/i,
|
|
100390
100404
|
REPLACE_PATTERN: /\$\{([^\}]+)\}/g,
|
|
100391
100405
|
DATA_URL: /^\s*data:([a-z]+\/[a-z0-9-+.]+(;[a-z-]+=[a-z0-9-]+)?)?(;base64)?,([a-z0-9!$&',()*+;=\-._~:@\/?%\s]*)\s*$/i,
|
|
100392
100406
|
ISO_DATE_FORMAT: /(\d{4}-\d{2}-\d{2})T(\d{2}:\d{2}:\d{2})(\.\d+)?([+-]\d{2}:?\d{2}|Z)$/
|
|
@@ -100609,6 +100623,9 @@ const isVideoFile = (fileName) => {
|
|
|
100609
100623
|
const isValidWebURL = (url) => {
|
|
100610
100624
|
return (REGEX.VALID_WEB_URL).test(url);
|
|
100611
100625
|
};
|
|
100626
|
+
const isValidImageUrl = (url) => {
|
|
100627
|
+
return (REGEX.VALID_IMAGE_URL).test(url?.trim());
|
|
100628
|
+
};
|
|
100612
100629
|
/*This function returns the url to the resource after checking the validity of url*/
|
|
100613
100630
|
const getResourceURL = (urlString) => {
|
|
100614
100631
|
return urlString;
|
|
@@ -101862,6 +101879,7 @@ var Utils = /*#__PURE__*/Object.freeze({
|
|
|
101862
101879
|
isPageable: isPageable,
|
|
101863
101880
|
isSafari: isSafari,
|
|
101864
101881
|
isTablet: isTablet,
|
|
101882
|
+
isValidImageUrl: isValidImageUrl,
|
|
101865
101883
|
isValidWebURL: isValidWebURL,
|
|
101866
101884
|
isVideoFile: isVideoFile,
|
|
101867
101885
|
loadScript: loadScript,
|
package/dependency-report.html
CHANGED
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wavemaker/angular-app",
|
|
3
|
-
"version": "11.14.1-17.
|
|
3
|
+
"version": "11.14.1-17.6426",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "@wavemaker/angular-app",
|
|
9
|
-
"version": "11.14.1-17.
|
|
9
|
+
"version": "11.14.1-17.6426",
|
|
10
10
|
"dependencies": {
|
|
11
11
|
"@angular/animations": "18.2.13",
|
|
12
12
|
"@angular/common": "18.2.13",
|
|
@@ -23,12 +23,12 @@
|
|
|
23
23
|
"@fullcalendar/list": "6.1.18",
|
|
24
24
|
"@fullcalendar/timegrid": "6.1.18",
|
|
25
25
|
"@metrichor/jmespath": "0.3.1",
|
|
26
|
-
"@wavemaker/app-ng-runtime": "11.14.1-17.
|
|
27
|
-
"@wavemaker/custom-widgets-m3": "11.14.1-17.
|
|
26
|
+
"@wavemaker/app-ng-runtime": "11.14.1-17.6426",
|
|
27
|
+
"@wavemaker/custom-widgets-m3": "11.14.1-17.6426",
|
|
28
28
|
"@wavemaker/focus-trap": "1.0.1",
|
|
29
|
-
"@wavemaker/foundation-css": "11.14.1-17.
|
|
29
|
+
"@wavemaker/foundation-css": "11.14.1-17.6426",
|
|
30
30
|
"@wavemaker/nvd3": "1.8.15",
|
|
31
|
-
"@wavemaker/variables": "11.14.1-17.
|
|
31
|
+
"@wavemaker/variables": "11.14.1-17.6426",
|
|
32
32
|
"@ztree/ztree_v3": "3.5.48",
|
|
33
33
|
"acorn": "^8.15.0",
|
|
34
34
|
"angular-imask": "7.6.1",
|
|
@@ -568,12 +568,12 @@
|
|
|
568
568
|
}
|
|
569
569
|
},
|
|
570
570
|
"node_modules/@angular-devkit/schematics": {
|
|
571
|
-
"version": "20.3.
|
|
572
|
-
"integrity": "sha512-
|
|
571
|
+
"version": "20.3.19",
|
|
572
|
+
"integrity": "sha512-7ZwThNeCcdKNuFpmrpQvm049v2Y+7CCCoFOzGg0UnH7F+wmaTSwEwLr+NmGJO0shYCUGl1Q/pcF9y58xs2njiQ==",
|
|
573
573
|
"dev": true,
|
|
574
574
|
"license": "MIT",
|
|
575
575
|
"dependencies": {
|
|
576
|
-
"@angular-devkit/core": "20.3.
|
|
576
|
+
"@angular-devkit/core": "20.3.19",
|
|
577
577
|
"jsonc-parser": "3.3.1",
|
|
578
578
|
"magic-string": "0.30.17",
|
|
579
579
|
"ora": "8.2.0",
|
|
@@ -586,8 +586,8 @@
|
|
|
586
586
|
}
|
|
587
587
|
},
|
|
588
588
|
"node_modules/@angular-devkit/schematics/node_modules/@angular-devkit/core": {
|
|
589
|
-
"version": "20.3.
|
|
590
|
-
"integrity": "sha512-
|
|
589
|
+
"version": "20.3.19",
|
|
590
|
+
"integrity": "sha512-zh5ci/TXy4oDQXC+MSWIbsTJJ10lI8WXM7cGerwvlFJc+/yo+Js8haeEuapUxliTlXont47pyPcvnzb9RTfNVQ==",
|
|
591
591
|
"dev": true,
|
|
592
592
|
"license": "MIT",
|
|
593
593
|
"dependencies": {
|
|
@@ -787,12 +787,12 @@
|
|
|
787
787
|
}
|
|
788
788
|
},
|
|
789
789
|
"node_modules/@angular-eslint/builder/node_modules/@angular-devkit/architect": {
|
|
790
|
-
"version": "0.2003.
|
|
791
|
-
"integrity": "sha512-
|
|
790
|
+
"version": "0.2003.19",
|
|
791
|
+
"integrity": "sha512-ta8UR4Sh8lolJZw/eE2tMf694FYzZ5NXBo1p5uj4JnqawpLGt1mwJcWX9kZkWAwQko/L51yWsDxX5VjJLPdXcQ==",
|
|
792
792
|
"dev": true,
|
|
793
793
|
"license": "MIT",
|
|
794
794
|
"dependencies": {
|
|
795
|
-
"@angular-devkit/core": "20.3.
|
|
795
|
+
"@angular-devkit/core": "20.3.19",
|
|
796
796
|
"rxjs": "7.8.2"
|
|
797
797
|
},
|
|
798
798
|
"engines": {
|
|
@@ -802,8 +802,8 @@
|
|
|
802
802
|
}
|
|
803
803
|
},
|
|
804
804
|
"node_modules/@angular-eslint/builder/node_modules/@angular-devkit/core": {
|
|
805
|
-
"version": "20.3.
|
|
806
|
-
"integrity": "sha512-
|
|
805
|
+
"version": "20.3.19",
|
|
806
|
+
"integrity": "sha512-zh5ci/TXy4oDQXC+MSWIbsTJJ10lI8WXM7cGerwvlFJc+/yo+Js8haeEuapUxliTlXont47pyPcvnzb9RTfNVQ==",
|
|
807
807
|
"dev": true,
|
|
808
808
|
"license": "MIT",
|
|
809
809
|
"dependencies": {
|
|
@@ -922,8 +922,8 @@
|
|
|
922
922
|
}
|
|
923
923
|
},
|
|
924
924
|
"node_modules/@angular-eslint/schematics/node_modules/@angular-devkit/core": {
|
|
925
|
-
"version": "20.3.
|
|
926
|
-
"integrity": "sha512-
|
|
925
|
+
"version": "20.3.19",
|
|
926
|
+
"integrity": "sha512-zh5ci/TXy4oDQXC+MSWIbsTJJ10lI8WXM7cGerwvlFJc+/yo+Js8haeEuapUxliTlXont47pyPcvnzb9RTfNVQ==",
|
|
927
927
|
"dev": true,
|
|
928
928
|
"license": "MIT",
|
|
929
929
|
"dependencies": {
|
|
@@ -4274,8 +4274,8 @@
|
|
|
4274
4274
|
}
|
|
4275
4275
|
},
|
|
4276
4276
|
"node_modules/@compodoc/compodoc/node_modules/fs-extra": {
|
|
4277
|
-
"version": "11.3.
|
|
4278
|
-
"integrity": "sha512-
|
|
4277
|
+
"version": "11.3.4",
|
|
4278
|
+
"integrity": "sha512-CTXd6rk/M3/ULNQj8FBqBWHYBVYybQ3VPBw0xGKFe3tuH7ytT6ACnvzpIQ3UZtB8yvUKC2cXn1a+x+5EVQLovA==",
|
|
4279
4279
|
"dev": true,
|
|
4280
4280
|
"license": "MIT",
|
|
4281
4281
|
"dependencies": {
|
|
@@ -5482,8 +5482,8 @@
|
|
|
5482
5482
|
}
|
|
5483
5483
|
},
|
|
5484
5484
|
"node_modules/@inquirer/core/node_modules/@types/node": {
|
|
5485
|
-
"version": "22.19.
|
|
5486
|
-
"integrity": "sha512-
|
|
5485
|
+
"version": "22.19.15",
|
|
5486
|
+
"integrity": "sha512-F0R/h2+dsy5wJAUe3tAU6oqa2qbWY5TpNfL/RGmo1y38hiyO1w3x2jPtt76wmuaJI4DQnOBu21cNXQ2STIUUWg==",
|
|
5487
5487
|
"dev": true,
|
|
5488
5488
|
"license": "MIT",
|
|
5489
5489
|
"dependencies": {
|
|
@@ -6468,13 +6468,13 @@
|
|
|
6468
6468
|
}
|
|
6469
6469
|
},
|
|
6470
6470
|
"node_modules/@jsonjoy.com/fs-core": {
|
|
6471
|
-
"version": "4.56.
|
|
6472
|
-
"integrity": "sha512-
|
|
6471
|
+
"version": "4.56.11",
|
|
6472
|
+
"integrity": "sha512-wThHjzUp01ImIjfCwhs+UnFkeGPFAymwLEkOtenHewaKe2pTP12p6r1UuwikA9NEvNf9Vlck92r8fb8n/MWM5w==",
|
|
6473
6473
|
"dev": true,
|
|
6474
6474
|
"license": "Apache-2.0",
|
|
6475
6475
|
"dependencies": {
|
|
6476
|
-
"@jsonjoy.com/fs-node-builtins": "4.56.
|
|
6477
|
-
"@jsonjoy.com/fs-node-utils": "4.56.
|
|
6476
|
+
"@jsonjoy.com/fs-node-builtins": "4.56.11",
|
|
6477
|
+
"@jsonjoy.com/fs-node-utils": "4.56.11",
|
|
6478
6478
|
"thingies": "^2.5.0"
|
|
6479
6479
|
},
|
|
6480
6480
|
"engines": {
|
|
@@ -6489,14 +6489,14 @@
|
|
|
6489
6489
|
}
|
|
6490
6490
|
},
|
|
6491
6491
|
"node_modules/@jsonjoy.com/fs-fsa": {
|
|
6492
|
-
"version": "4.56.
|
|
6493
|
-
"integrity": "sha512
|
|
6492
|
+
"version": "4.56.11",
|
|
6493
|
+
"integrity": "sha512-ZYlF3XbMayyp97xEN8ZvYutU99PCHjM64mMZvnCseXkCJXJDVLAwlF8Q/7q/xiWQRsv3pQBj1WXHd9eEyYcaCQ==",
|
|
6494
6494
|
"dev": true,
|
|
6495
6495
|
"license": "Apache-2.0",
|
|
6496
6496
|
"dependencies": {
|
|
6497
|
-
"@jsonjoy.com/fs-core": "4.56.
|
|
6498
|
-
"@jsonjoy.com/fs-node-builtins": "4.56.
|
|
6499
|
-
"@jsonjoy.com/fs-node-utils": "4.56.
|
|
6497
|
+
"@jsonjoy.com/fs-core": "4.56.11",
|
|
6498
|
+
"@jsonjoy.com/fs-node-builtins": "4.56.11",
|
|
6499
|
+
"@jsonjoy.com/fs-node-utils": "4.56.11",
|
|
6500
6500
|
"thingies": "^2.5.0"
|
|
6501
6501
|
},
|
|
6502
6502
|
"engines": {
|
|
@@ -6511,16 +6511,16 @@
|
|
|
6511
6511
|
}
|
|
6512
6512
|
},
|
|
6513
6513
|
"node_modules/@jsonjoy.com/fs-node": {
|
|
6514
|
-
"version": "4.56.
|
|
6515
|
-
"integrity": "sha512-
|
|
6514
|
+
"version": "4.56.11",
|
|
6515
|
+
"integrity": "sha512-D65YrnP6wRuZyEWoSFnBJSr5zARVpVBGctnhie4rCsMuGXNzX7IHKaOt85/Aj7SSoG1N2+/xlNjWmkLvZ2H3Tg==",
|
|
6516
6516
|
"dev": true,
|
|
6517
6517
|
"license": "Apache-2.0",
|
|
6518
6518
|
"dependencies": {
|
|
6519
|
-
"@jsonjoy.com/fs-core": "4.56.
|
|
6520
|
-
"@jsonjoy.com/fs-node-builtins": "4.56.
|
|
6521
|
-
"@jsonjoy.com/fs-node-utils": "4.56.
|
|
6522
|
-
"@jsonjoy.com/fs-print": "4.56.
|
|
6523
|
-
"@jsonjoy.com/fs-snapshot": "4.56.
|
|
6519
|
+
"@jsonjoy.com/fs-core": "4.56.11",
|
|
6520
|
+
"@jsonjoy.com/fs-node-builtins": "4.56.11",
|
|
6521
|
+
"@jsonjoy.com/fs-node-utils": "4.56.11",
|
|
6522
|
+
"@jsonjoy.com/fs-print": "4.56.11",
|
|
6523
|
+
"@jsonjoy.com/fs-snapshot": "4.56.11",
|
|
6524
6524
|
"glob-to-regex.js": "^1.0.0",
|
|
6525
6525
|
"thingies": "^2.5.0"
|
|
6526
6526
|
},
|
|
@@ -6536,8 +6536,8 @@
|
|
|
6536
6536
|
}
|
|
6537
6537
|
},
|
|
6538
6538
|
"node_modules/@jsonjoy.com/fs-node-builtins": {
|
|
6539
|
-
"version": "4.56.
|
|
6540
|
-
"integrity": "sha512-
|
|
6539
|
+
"version": "4.56.11",
|
|
6540
|
+
"integrity": "sha512-CNmt3a0zMCIhniFLXtzPWuUxXFU+U+2VyQiIrgt/rRVeEJNrMQUABaRbVxR0Ouw1LyR9RjaEkPM6nYpED+y43A==",
|
|
6541
6541
|
"dev": true,
|
|
6542
6542
|
"license": "Apache-2.0",
|
|
6543
6543
|
"engines": {
|
|
@@ -6552,14 +6552,14 @@
|
|
|
6552
6552
|
}
|
|
6553
6553
|
},
|
|
6554
6554
|
"node_modules/@jsonjoy.com/fs-node-to-fsa": {
|
|
6555
|
-
"version": "4.56.
|
|
6556
|
-
"integrity": "sha512-
|
|
6555
|
+
"version": "4.56.11",
|
|
6556
|
+
"integrity": "sha512-5OzGdvJDgZVo+xXWEYo72u81zpOWlxlbG4d4nL+hSiW+LKlua/dldNgPrpWxtvhgyntmdFQad2UTxFyGjJAGhA==",
|
|
6557
6557
|
"dev": true,
|
|
6558
6558
|
"license": "Apache-2.0",
|
|
6559
6559
|
"dependencies": {
|
|
6560
|
-
"@jsonjoy.com/fs-fsa": "4.56.
|
|
6561
|
-
"@jsonjoy.com/fs-node-builtins": "4.56.
|
|
6562
|
-
"@jsonjoy.com/fs-node-utils": "4.56.
|
|
6560
|
+
"@jsonjoy.com/fs-fsa": "4.56.11",
|
|
6561
|
+
"@jsonjoy.com/fs-node-builtins": "4.56.11",
|
|
6562
|
+
"@jsonjoy.com/fs-node-utils": "4.56.11"
|
|
6563
6563
|
},
|
|
6564
6564
|
"engines": {
|
|
6565
6565
|
"node": ">=10.0"
|
|
@@ -6573,12 +6573,12 @@
|
|
|
6573
6573
|
}
|
|
6574
6574
|
},
|
|
6575
6575
|
"node_modules/@jsonjoy.com/fs-node-utils": {
|
|
6576
|
-
"version": "4.56.
|
|
6577
|
-
"integrity": "sha512-
|
|
6576
|
+
"version": "4.56.11",
|
|
6577
|
+
"integrity": "sha512-JADOZFDA3wRfsuxkT0+MYc4F9hJO2PYDaY66kRTG6NqGX3+bqmKu66YFYAbII/tEmQWPZeHoClUB23rtQM9UPg==",
|
|
6578
6578
|
"dev": true,
|
|
6579
6579
|
"license": "Apache-2.0",
|
|
6580
6580
|
"dependencies": {
|
|
6581
|
-
"@jsonjoy.com/fs-node-builtins": "4.56.
|
|
6581
|
+
"@jsonjoy.com/fs-node-builtins": "4.56.11"
|
|
6582
6582
|
},
|
|
6583
6583
|
"engines": {
|
|
6584
6584
|
"node": ">=10.0"
|
|
@@ -6592,12 +6592,12 @@
|
|
|
6592
6592
|
}
|
|
6593
6593
|
},
|
|
6594
6594
|
"node_modules/@jsonjoy.com/fs-print": {
|
|
6595
|
-
"version": "4.56.
|
|
6596
|
-
"integrity": "sha512-
|
|
6595
|
+
"version": "4.56.11",
|
|
6596
|
+
"integrity": "sha512-rnaKRgCRIn8JGTjxhS0JPE38YM3Pj/H7SW4/tglhIPbfKEkky7dpPayNKV2qy25SZSL15oFVgH/62dMZ/z7cyA==",
|
|
6597
6597
|
"dev": true,
|
|
6598
6598
|
"license": "Apache-2.0",
|
|
6599
6599
|
"dependencies": {
|
|
6600
|
-
"@jsonjoy.com/fs-node-utils": "4.56.
|
|
6600
|
+
"@jsonjoy.com/fs-node-utils": "4.56.11",
|
|
6601
6601
|
"tree-dump": "^1.1.0"
|
|
6602
6602
|
},
|
|
6603
6603
|
"engines": {
|
|
@@ -6612,13 +6612,13 @@
|
|
|
6612
6612
|
}
|
|
6613
6613
|
},
|
|
6614
6614
|
"node_modules/@jsonjoy.com/fs-snapshot": {
|
|
6615
|
-
"version": "4.56.
|
|
6616
|
-
"integrity": "sha512-
|
|
6615
|
+
"version": "4.56.11",
|
|
6616
|
+
"integrity": "sha512-IIldPX+cIRQuUol9fQzSS3hqyECxVpYMJQMqdU3dCKZFRzEl1rkIkw4P6y7Oh493sI7YdxZlKr/yWdzEWZ1wGQ==",
|
|
6617
6617
|
"dev": true,
|
|
6618
6618
|
"license": "Apache-2.0",
|
|
6619
6619
|
"dependencies": {
|
|
6620
6620
|
"@jsonjoy.com/buffers": "^17.65.0",
|
|
6621
|
-
"@jsonjoy.com/fs-node-utils": "4.56.
|
|
6621
|
+
"@jsonjoy.com/fs-node-utils": "4.56.11",
|
|
6622
6622
|
"@jsonjoy.com/json-pack": "^17.65.0",
|
|
6623
6623
|
"@jsonjoy.com/util": "^17.65.0"
|
|
6624
6624
|
},
|
|
@@ -8389,8 +8389,8 @@
|
|
|
8389
8389
|
}
|
|
8390
8390
|
},
|
|
8391
8391
|
"node_modules/@types/node": {
|
|
8392
|
-
"version": "24.
|
|
8393
|
-
"integrity": "sha512-
|
|
8392
|
+
"version": "24.12.0",
|
|
8393
|
+
"integrity": "sha512-GYDxsZi3ChgmckRT9HPU0WEhKLP08ev/Yfcq2AstjrDASOYCSXeyjDsHg4v5t4jOj7cyDX3vmprafKlWIG9MXQ==",
|
|
8394
8394
|
"dev": true,
|
|
8395
8395
|
"license": "MIT",
|
|
8396
8396
|
"dependencies": {
|
|
@@ -8407,8 +8407,8 @@
|
|
|
8407
8407
|
}
|
|
8408
8408
|
},
|
|
8409
8409
|
"node_modules/@types/qs": {
|
|
8410
|
-
"version": "6.
|
|
8411
|
-
"integrity": "sha512-
|
|
8410
|
+
"version": "6.15.0",
|
|
8411
|
+
"integrity": "sha512-JawvT8iBVWpzTrz3EGw9BTQFg3BQNmwERdKE22vlTxawwtbyUSlMppvZYKLZzB5zgACXdXxbD3m1bXaMqP/9ow==",
|
|
8412
8412
|
"dev": true,
|
|
8413
8413
|
"license": "MIT"
|
|
8414
8414
|
},
|
|
@@ -9029,8 +9029,8 @@
|
|
|
9029
9029
|
}
|
|
9030
9030
|
},
|
|
9031
9031
|
"node_modules/@wavemaker/app-ng-runtime": {
|
|
9032
|
-
"version": "11.14.1-17.
|
|
9033
|
-
"integrity": "sha512-
|
|
9032
|
+
"version": "11.14.1-17.6426",
|
|
9033
|
+
"integrity": "sha512-zsZO+5mCx307bWeNkdyeAZvM2DQr5UPAN6xZI4NKSRxOmOeMn//FcHGyOBtu+HesYKposo4kSnKUfHRiDT78cQ==",
|
|
9034
9034
|
"license": "MIT",
|
|
9035
9035
|
"engines": {
|
|
9036
9036
|
"node": ">=18.16.1",
|
|
@@ -9038,8 +9038,8 @@
|
|
|
9038
9038
|
}
|
|
9039
9039
|
},
|
|
9040
9040
|
"node_modules/@wavemaker/custom-widgets-m3": {
|
|
9041
|
-
"version": "11.14.1-17.
|
|
9042
|
-
"integrity": "sha512-
|
|
9041
|
+
"version": "11.14.1-17.6426",
|
|
9042
|
+
"integrity": "sha512-WQkma0qole6ylD29Bis0LfKiqIL5UIKiCk8x6k/RfhmTzPCSsZpXH/+/z/w43We8rogfL54dllnJ0+n609ZP6Q==",
|
|
9043
9043
|
"license": "ISC"
|
|
9044
9044
|
},
|
|
9045
9045
|
"node_modules/@wavemaker/focus-trap": {
|
|
@@ -9052,8 +9052,8 @@
|
|
|
9052
9052
|
}
|
|
9053
9053
|
},
|
|
9054
9054
|
"node_modules/@wavemaker/foundation-css": {
|
|
9055
|
-
"version": "11.14.1-17.
|
|
9056
|
-
"integrity": "sha512-
|
|
9055
|
+
"version": "11.14.1-17.6426",
|
|
9056
|
+
"integrity": "sha512-ssUR8MHdeWk8qEuuY5a1rgyO2noaUEppAF2OV9fejCg3m2JhEl0iNX4kr9qLDEuxwugXT4gU/21s0bhlMV1o4w==",
|
|
9057
9057
|
"license": "ISC",
|
|
9058
9058
|
"dependencies": {
|
|
9059
9059
|
"chroma-js": "^3.1.2"
|
|
@@ -9068,8 +9068,8 @@
|
|
|
9068
9068
|
}
|
|
9069
9069
|
},
|
|
9070
9070
|
"node_modules/@wavemaker/variables": {
|
|
9071
|
-
"version": "11.14.1-17.
|
|
9072
|
-
"integrity": "sha512
|
|
9071
|
+
"version": "11.14.1-17.6426",
|
|
9072
|
+
"integrity": "sha512-Evyle6XlJewWpsdZqqknFowc9ING+sUSTzSWCzObU2KIHLx3dCBKusNvCY4tG4mePTOYj5iLD21rBsWYhyHYiw==",
|
|
9073
9073
|
"license": "ISC",
|
|
9074
9074
|
"dependencies": {
|
|
9075
9075
|
"@metrichor/jmespath": "^0.3.1",
|
|
@@ -10292,8 +10292,8 @@
|
|
|
10292
10292
|
}
|
|
10293
10293
|
},
|
|
10294
10294
|
"node_modules/caniuse-lite": {
|
|
10295
|
-
"version": "1.0.
|
|
10296
|
-
"integrity": "sha512-
|
|
10295
|
+
"version": "1.0.30001777",
|
|
10296
|
+
"integrity": "sha512-tmN+fJxroPndC74efCdp12j+0rk0RHwV5Jwa1zWaFVyw2ZxAuPeG8ZgWC3Wz7uSjT3qMRQ5XHZ4COgQmsCMJAQ==",
|
|
10297
10297
|
"dev": true,
|
|
10298
10298
|
"funding": [
|
|
10299
10299
|
{
|
|
@@ -11952,8 +11952,8 @@
|
|
|
11952
11952
|
"license": "MIT"
|
|
11953
11953
|
},
|
|
11954
11954
|
"node_modules/electron-to-chromium": {
|
|
11955
|
-
"version": "1.5.
|
|
11956
|
-
"integrity": "sha512-
|
|
11955
|
+
"version": "1.5.307",
|
|
11956
|
+
"integrity": "sha512-5z3uFKBWjiNR44nFcYdkcXjKMbg5KXNdciu7mhTPo9tB7NbqSNP2sSnGR+fqknZSCwKkBN+oxiiajWs4dT6ORg==",
|
|
11957
11957
|
"dev": true,
|
|
11958
11958
|
"license": "ISC"
|
|
11959
11959
|
},
|
|
@@ -14301,8 +14301,8 @@
|
|
|
14301
14301
|
}
|
|
14302
14302
|
},
|
|
14303
14303
|
"node_modules/immutable": {
|
|
14304
|
-
"version": "4.3.
|
|
14305
|
-
"integrity": "sha512-
|
|
14304
|
+
"version": "4.3.8",
|
|
14305
|
+
"integrity": "sha512-d/Ld9aLbKpNwyl0KiM2CT1WYvkitQ1TSvmRtkcV8FKStiDoA7Slzgjmb/1G2yhKM1p0XeNOieaTbFZmU1d3Xuw==",
|
|
14306
14306
|
"dev": true,
|
|
14307
14307
|
"license": "MIT"
|
|
14308
14308
|
},
|
|
@@ -16912,19 +16912,19 @@
|
|
|
16912
16912
|
}
|
|
16913
16913
|
},
|
|
16914
16914
|
"node_modules/memfs": {
|
|
16915
|
-
"version": "4.56.
|
|
16916
|
-
"integrity": "sha512
|
|
16915
|
+
"version": "4.56.11",
|
|
16916
|
+
"integrity": "sha512-/GodtwVeKVIHZKLUSr2ZdOxKBC5hHki4JNCU22DoCGPEHr5o2PD5U721zvESKyWwCfTfavFl9WZYgA13OAYK0g==",
|
|
16917
16917
|
"dev": true,
|
|
16918
16918
|
"license": "Apache-2.0",
|
|
16919
16919
|
"dependencies": {
|
|
16920
|
-
"@jsonjoy.com/fs-core": "4.56.
|
|
16921
|
-
"@jsonjoy.com/fs-fsa": "4.56.
|
|
16922
|
-
"@jsonjoy.com/fs-node": "4.56.
|
|
16923
|
-
"@jsonjoy.com/fs-node-builtins": "4.56.
|
|
16924
|
-
"@jsonjoy.com/fs-node-to-fsa": "4.56.
|
|
16925
|
-
"@jsonjoy.com/fs-node-utils": "4.56.
|
|
16926
|
-
"@jsonjoy.com/fs-print": "4.56.
|
|
16927
|
-
"@jsonjoy.com/fs-snapshot": "4.56.
|
|
16920
|
+
"@jsonjoy.com/fs-core": "4.56.11",
|
|
16921
|
+
"@jsonjoy.com/fs-fsa": "4.56.11",
|
|
16922
|
+
"@jsonjoy.com/fs-node": "4.56.11",
|
|
16923
|
+
"@jsonjoy.com/fs-node-builtins": "4.56.11",
|
|
16924
|
+
"@jsonjoy.com/fs-node-to-fsa": "4.56.11",
|
|
16925
|
+
"@jsonjoy.com/fs-node-utils": "4.56.11",
|
|
16926
|
+
"@jsonjoy.com/fs-print": "4.56.11",
|
|
16927
|
+
"@jsonjoy.com/fs-snapshot": "4.56.11",
|
|
16928
16928
|
"@jsonjoy.com/json-pack": "^1.11.0",
|
|
16929
16929
|
"@jsonjoy.com/util": "^1.9.0",
|
|
16930
16930
|
"glob-to-regex.js": "^1.0.1",
|
|
@@ -18447,8 +18447,8 @@
|
|
|
18447
18447
|
"license": "MIT"
|
|
18448
18448
|
},
|
|
18449
18449
|
"node_modules/node-releases": {
|
|
18450
|
-
"version": "2.0.
|
|
18451
|
-
"integrity": "sha512-
|
|
18450
|
+
"version": "2.0.36",
|
|
18451
|
+
"integrity": "sha512-TdC8FSgHz8Mwtw9g5L4gR/Sh9XhSP/0DEkQxfEFXOpiul5IiHgHan2VhYYb6agDSfp4KuvltmGApc8HMgUrIkA==",
|
|
18452
18452
|
"dev": true,
|
|
18453
18453
|
"license": "MIT"
|
|
18454
18454
|
},
|
|
@@ -21802,15 +21802,14 @@
|
|
|
21802
21802
|
}
|
|
21803
21803
|
},
|
|
21804
21804
|
"node_modules/terser-webpack-plugin": {
|
|
21805
|
-
"version": "5.3.
|
|
21806
|
-
"integrity": "sha512-
|
|
21805
|
+
"version": "5.3.17",
|
|
21806
|
+
"integrity": "sha512-YR7PtUp6GMU91BgSJmlaX/rS2lGDbAF7D+Wtq7hRO+MiljNmodYvqslzCFiYVAgW+Qoaaia/QUIP4lGXufjdZw==",
|
|
21807
21807
|
"dev": true,
|
|
21808
21808
|
"license": "MIT",
|
|
21809
21809
|
"dependencies": {
|
|
21810
21810
|
"@jridgewell/trace-mapping": "^0.3.25",
|
|
21811
21811
|
"jest-worker": "^27.4.5",
|
|
21812
21812
|
"schema-utils": "^4.3.0",
|
|
21813
|
-
"serialize-javascript": "^6.0.2",
|
|
21814
21813
|
"terser": "^5.31.1"
|
|
21815
21814
|
},
|
|
21816
21815
|
"engines": {
|
package/package-lock.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wavemaker/angular-app",
|
|
3
|
-
"version": "11.14.1-17.
|
|
3
|
+
"version": "11.14.1-17.6426",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "@wavemaker/angular-app",
|
|
9
|
-
"version": "11.14.1-17.
|
|
9
|
+
"version": "11.14.1-17.6426",
|
|
10
10
|
"dependencies": {
|
|
11
11
|
"@angular/animations": "18.2.13",
|
|
12
12
|
"@angular/common": "18.2.13",
|
|
@@ -23,12 +23,12 @@
|
|
|
23
23
|
"@fullcalendar/list": "6.1.18",
|
|
24
24
|
"@fullcalendar/timegrid": "6.1.18",
|
|
25
25
|
"@metrichor/jmespath": "0.3.1",
|
|
26
|
-
"@wavemaker/app-ng-runtime": "11.14.1-17.
|
|
27
|
-
"@wavemaker/custom-widgets-m3": "11.14.1-17.
|
|
26
|
+
"@wavemaker/app-ng-runtime": "11.14.1-17.6426",
|
|
27
|
+
"@wavemaker/custom-widgets-m3": "11.14.1-17.6426",
|
|
28
28
|
"@wavemaker/focus-trap": "1.0.1",
|
|
29
|
-
"@wavemaker/foundation-css": "11.14.1-17.
|
|
29
|
+
"@wavemaker/foundation-css": "11.14.1-17.6426",
|
|
30
30
|
"@wavemaker/nvd3": "1.8.15",
|
|
31
|
-
"@wavemaker/variables": "11.14.1-17.
|
|
31
|
+
"@wavemaker/variables": "11.14.1-17.6426",
|
|
32
32
|
"@ztree/ztree_v3": "3.5.48",
|
|
33
33
|
"acorn": "^8.15.0",
|
|
34
34
|
"angular-imask": "7.6.1",
|
|
@@ -568,12 +568,12 @@
|
|
|
568
568
|
}
|
|
569
569
|
},
|
|
570
570
|
"node_modules/@angular-devkit/schematics": {
|
|
571
|
-
"version": "20.3.
|
|
572
|
-
"integrity": "sha512-
|
|
571
|
+
"version": "20.3.19",
|
|
572
|
+
"integrity": "sha512-7ZwThNeCcdKNuFpmrpQvm049v2Y+7CCCoFOzGg0UnH7F+wmaTSwEwLr+NmGJO0shYCUGl1Q/pcF9y58xs2njiQ==",
|
|
573
573
|
"dev": true,
|
|
574
574
|
"license": "MIT",
|
|
575
575
|
"dependencies": {
|
|
576
|
-
"@angular-devkit/core": "20.3.
|
|
576
|
+
"@angular-devkit/core": "20.3.19",
|
|
577
577
|
"jsonc-parser": "3.3.1",
|
|
578
578
|
"magic-string": "0.30.17",
|
|
579
579
|
"ora": "8.2.0",
|
|
@@ -586,8 +586,8 @@
|
|
|
586
586
|
}
|
|
587
587
|
},
|
|
588
588
|
"node_modules/@angular-devkit/schematics/node_modules/@angular-devkit/core": {
|
|
589
|
-
"version": "20.3.
|
|
590
|
-
"integrity": "sha512-
|
|
589
|
+
"version": "20.3.19",
|
|
590
|
+
"integrity": "sha512-zh5ci/TXy4oDQXC+MSWIbsTJJ10lI8WXM7cGerwvlFJc+/yo+Js8haeEuapUxliTlXont47pyPcvnzb9RTfNVQ==",
|
|
591
591
|
"dev": true,
|
|
592
592
|
"license": "MIT",
|
|
593
593
|
"dependencies": {
|
|
@@ -787,12 +787,12 @@
|
|
|
787
787
|
}
|
|
788
788
|
},
|
|
789
789
|
"node_modules/@angular-eslint/builder/node_modules/@angular-devkit/architect": {
|
|
790
|
-
"version": "0.2003.
|
|
791
|
-
"integrity": "sha512-
|
|
790
|
+
"version": "0.2003.19",
|
|
791
|
+
"integrity": "sha512-ta8UR4Sh8lolJZw/eE2tMf694FYzZ5NXBo1p5uj4JnqawpLGt1mwJcWX9kZkWAwQko/L51yWsDxX5VjJLPdXcQ==",
|
|
792
792
|
"dev": true,
|
|
793
793
|
"license": "MIT",
|
|
794
794
|
"dependencies": {
|
|
795
|
-
"@angular-devkit/core": "20.3.
|
|
795
|
+
"@angular-devkit/core": "20.3.19",
|
|
796
796
|
"rxjs": "7.8.2"
|
|
797
797
|
},
|
|
798
798
|
"engines": {
|
|
@@ -802,8 +802,8 @@
|
|
|
802
802
|
}
|
|
803
803
|
},
|
|
804
804
|
"node_modules/@angular-eslint/builder/node_modules/@angular-devkit/core": {
|
|
805
|
-
"version": "20.3.
|
|
806
|
-
"integrity": "sha512-
|
|
805
|
+
"version": "20.3.19",
|
|
806
|
+
"integrity": "sha512-zh5ci/TXy4oDQXC+MSWIbsTJJ10lI8WXM7cGerwvlFJc+/yo+Js8haeEuapUxliTlXont47pyPcvnzb9RTfNVQ==",
|
|
807
807
|
"dev": true,
|
|
808
808
|
"license": "MIT",
|
|
809
809
|
"dependencies": {
|
|
@@ -922,8 +922,8 @@
|
|
|
922
922
|
}
|
|
923
923
|
},
|
|
924
924
|
"node_modules/@angular-eslint/schematics/node_modules/@angular-devkit/core": {
|
|
925
|
-
"version": "20.3.
|
|
926
|
-
"integrity": "sha512-
|
|
925
|
+
"version": "20.3.19",
|
|
926
|
+
"integrity": "sha512-zh5ci/TXy4oDQXC+MSWIbsTJJ10lI8WXM7cGerwvlFJc+/yo+Js8haeEuapUxliTlXont47pyPcvnzb9RTfNVQ==",
|
|
927
927
|
"dev": true,
|
|
928
928
|
"license": "MIT",
|
|
929
929
|
"dependencies": {
|
|
@@ -4274,8 +4274,8 @@
|
|
|
4274
4274
|
}
|
|
4275
4275
|
},
|
|
4276
4276
|
"node_modules/@compodoc/compodoc/node_modules/fs-extra": {
|
|
4277
|
-
"version": "11.3.
|
|
4278
|
-
"integrity": "sha512-
|
|
4277
|
+
"version": "11.3.4",
|
|
4278
|
+
"integrity": "sha512-CTXd6rk/M3/ULNQj8FBqBWHYBVYybQ3VPBw0xGKFe3tuH7ytT6ACnvzpIQ3UZtB8yvUKC2cXn1a+x+5EVQLovA==",
|
|
4279
4279
|
"dev": true,
|
|
4280
4280
|
"license": "MIT",
|
|
4281
4281
|
"dependencies": {
|
|
@@ -5482,8 +5482,8 @@
|
|
|
5482
5482
|
}
|
|
5483
5483
|
},
|
|
5484
5484
|
"node_modules/@inquirer/core/node_modules/@types/node": {
|
|
5485
|
-
"version": "22.19.
|
|
5486
|
-
"integrity": "sha512-
|
|
5485
|
+
"version": "22.19.15",
|
|
5486
|
+
"integrity": "sha512-F0R/h2+dsy5wJAUe3tAU6oqa2qbWY5TpNfL/RGmo1y38hiyO1w3x2jPtt76wmuaJI4DQnOBu21cNXQ2STIUUWg==",
|
|
5487
5487
|
"dev": true,
|
|
5488
5488
|
"license": "MIT",
|
|
5489
5489
|
"dependencies": {
|
|
@@ -6468,13 +6468,13 @@
|
|
|
6468
6468
|
}
|
|
6469
6469
|
},
|
|
6470
6470
|
"node_modules/@jsonjoy.com/fs-core": {
|
|
6471
|
-
"version": "4.56.
|
|
6472
|
-
"integrity": "sha512-
|
|
6471
|
+
"version": "4.56.11",
|
|
6472
|
+
"integrity": "sha512-wThHjzUp01ImIjfCwhs+UnFkeGPFAymwLEkOtenHewaKe2pTP12p6r1UuwikA9NEvNf9Vlck92r8fb8n/MWM5w==",
|
|
6473
6473
|
"dev": true,
|
|
6474
6474
|
"license": "Apache-2.0",
|
|
6475
6475
|
"dependencies": {
|
|
6476
|
-
"@jsonjoy.com/fs-node-builtins": "4.56.
|
|
6477
|
-
"@jsonjoy.com/fs-node-utils": "4.56.
|
|
6476
|
+
"@jsonjoy.com/fs-node-builtins": "4.56.11",
|
|
6477
|
+
"@jsonjoy.com/fs-node-utils": "4.56.11",
|
|
6478
6478
|
"thingies": "^2.5.0"
|
|
6479
6479
|
},
|
|
6480
6480
|
"engines": {
|
|
@@ -6489,14 +6489,14 @@
|
|
|
6489
6489
|
}
|
|
6490
6490
|
},
|
|
6491
6491
|
"node_modules/@jsonjoy.com/fs-fsa": {
|
|
6492
|
-
"version": "4.56.
|
|
6493
|
-
"integrity": "sha512
|
|
6492
|
+
"version": "4.56.11",
|
|
6493
|
+
"integrity": "sha512-ZYlF3XbMayyp97xEN8ZvYutU99PCHjM64mMZvnCseXkCJXJDVLAwlF8Q/7q/xiWQRsv3pQBj1WXHd9eEyYcaCQ==",
|
|
6494
6494
|
"dev": true,
|
|
6495
6495
|
"license": "Apache-2.0",
|
|
6496
6496
|
"dependencies": {
|
|
6497
|
-
"@jsonjoy.com/fs-core": "4.56.
|
|
6498
|
-
"@jsonjoy.com/fs-node-builtins": "4.56.
|
|
6499
|
-
"@jsonjoy.com/fs-node-utils": "4.56.
|
|
6497
|
+
"@jsonjoy.com/fs-core": "4.56.11",
|
|
6498
|
+
"@jsonjoy.com/fs-node-builtins": "4.56.11",
|
|
6499
|
+
"@jsonjoy.com/fs-node-utils": "4.56.11",
|
|
6500
6500
|
"thingies": "^2.5.0"
|
|
6501
6501
|
},
|
|
6502
6502
|
"engines": {
|
|
@@ -6511,16 +6511,16 @@
|
|
|
6511
6511
|
}
|
|
6512
6512
|
},
|
|
6513
6513
|
"node_modules/@jsonjoy.com/fs-node": {
|
|
6514
|
-
"version": "4.56.
|
|
6515
|
-
"integrity": "sha512-
|
|
6514
|
+
"version": "4.56.11",
|
|
6515
|
+
"integrity": "sha512-D65YrnP6wRuZyEWoSFnBJSr5zARVpVBGctnhie4rCsMuGXNzX7IHKaOt85/Aj7SSoG1N2+/xlNjWmkLvZ2H3Tg==",
|
|
6516
6516
|
"dev": true,
|
|
6517
6517
|
"license": "Apache-2.0",
|
|
6518
6518
|
"dependencies": {
|
|
6519
|
-
"@jsonjoy.com/fs-core": "4.56.
|
|
6520
|
-
"@jsonjoy.com/fs-node-builtins": "4.56.
|
|
6521
|
-
"@jsonjoy.com/fs-node-utils": "4.56.
|
|
6522
|
-
"@jsonjoy.com/fs-print": "4.56.
|
|
6523
|
-
"@jsonjoy.com/fs-snapshot": "4.56.
|
|
6519
|
+
"@jsonjoy.com/fs-core": "4.56.11",
|
|
6520
|
+
"@jsonjoy.com/fs-node-builtins": "4.56.11",
|
|
6521
|
+
"@jsonjoy.com/fs-node-utils": "4.56.11",
|
|
6522
|
+
"@jsonjoy.com/fs-print": "4.56.11",
|
|
6523
|
+
"@jsonjoy.com/fs-snapshot": "4.56.11",
|
|
6524
6524
|
"glob-to-regex.js": "^1.0.0",
|
|
6525
6525
|
"thingies": "^2.5.0"
|
|
6526
6526
|
},
|
|
@@ -6536,8 +6536,8 @@
|
|
|
6536
6536
|
}
|
|
6537
6537
|
},
|
|
6538
6538
|
"node_modules/@jsonjoy.com/fs-node-builtins": {
|
|
6539
|
-
"version": "4.56.
|
|
6540
|
-
"integrity": "sha512-
|
|
6539
|
+
"version": "4.56.11",
|
|
6540
|
+
"integrity": "sha512-CNmt3a0zMCIhniFLXtzPWuUxXFU+U+2VyQiIrgt/rRVeEJNrMQUABaRbVxR0Ouw1LyR9RjaEkPM6nYpED+y43A==",
|
|
6541
6541
|
"dev": true,
|
|
6542
6542
|
"license": "Apache-2.0",
|
|
6543
6543
|
"engines": {
|
|
@@ -6552,14 +6552,14 @@
|
|
|
6552
6552
|
}
|
|
6553
6553
|
},
|
|
6554
6554
|
"node_modules/@jsonjoy.com/fs-node-to-fsa": {
|
|
6555
|
-
"version": "4.56.
|
|
6556
|
-
"integrity": "sha512-
|
|
6555
|
+
"version": "4.56.11",
|
|
6556
|
+
"integrity": "sha512-5OzGdvJDgZVo+xXWEYo72u81zpOWlxlbG4d4nL+hSiW+LKlua/dldNgPrpWxtvhgyntmdFQad2UTxFyGjJAGhA==",
|
|
6557
6557
|
"dev": true,
|
|
6558
6558
|
"license": "Apache-2.0",
|
|
6559
6559
|
"dependencies": {
|
|
6560
|
-
"@jsonjoy.com/fs-fsa": "4.56.
|
|
6561
|
-
"@jsonjoy.com/fs-node-builtins": "4.56.
|
|
6562
|
-
"@jsonjoy.com/fs-node-utils": "4.56.
|
|
6560
|
+
"@jsonjoy.com/fs-fsa": "4.56.11",
|
|
6561
|
+
"@jsonjoy.com/fs-node-builtins": "4.56.11",
|
|
6562
|
+
"@jsonjoy.com/fs-node-utils": "4.56.11"
|
|
6563
6563
|
},
|
|
6564
6564
|
"engines": {
|
|
6565
6565
|
"node": ">=10.0"
|
|
@@ -6573,12 +6573,12 @@
|
|
|
6573
6573
|
}
|
|
6574
6574
|
},
|
|
6575
6575
|
"node_modules/@jsonjoy.com/fs-node-utils": {
|
|
6576
|
-
"version": "4.56.
|
|
6577
|
-
"integrity": "sha512-
|
|
6576
|
+
"version": "4.56.11",
|
|
6577
|
+
"integrity": "sha512-JADOZFDA3wRfsuxkT0+MYc4F9hJO2PYDaY66kRTG6NqGX3+bqmKu66YFYAbII/tEmQWPZeHoClUB23rtQM9UPg==",
|
|
6578
6578
|
"dev": true,
|
|
6579
6579
|
"license": "Apache-2.0",
|
|
6580
6580
|
"dependencies": {
|
|
6581
|
-
"@jsonjoy.com/fs-node-builtins": "4.56.
|
|
6581
|
+
"@jsonjoy.com/fs-node-builtins": "4.56.11"
|
|
6582
6582
|
},
|
|
6583
6583
|
"engines": {
|
|
6584
6584
|
"node": ">=10.0"
|
|
@@ -6592,12 +6592,12 @@
|
|
|
6592
6592
|
}
|
|
6593
6593
|
},
|
|
6594
6594
|
"node_modules/@jsonjoy.com/fs-print": {
|
|
6595
|
-
"version": "4.56.
|
|
6596
|
-
"integrity": "sha512-
|
|
6595
|
+
"version": "4.56.11",
|
|
6596
|
+
"integrity": "sha512-rnaKRgCRIn8JGTjxhS0JPE38YM3Pj/H7SW4/tglhIPbfKEkky7dpPayNKV2qy25SZSL15oFVgH/62dMZ/z7cyA==",
|
|
6597
6597
|
"dev": true,
|
|
6598
6598
|
"license": "Apache-2.0",
|
|
6599
6599
|
"dependencies": {
|
|
6600
|
-
"@jsonjoy.com/fs-node-utils": "4.56.
|
|
6600
|
+
"@jsonjoy.com/fs-node-utils": "4.56.11",
|
|
6601
6601
|
"tree-dump": "^1.1.0"
|
|
6602
6602
|
},
|
|
6603
6603
|
"engines": {
|
|
@@ -6612,13 +6612,13 @@
|
|
|
6612
6612
|
}
|
|
6613
6613
|
},
|
|
6614
6614
|
"node_modules/@jsonjoy.com/fs-snapshot": {
|
|
6615
|
-
"version": "4.56.
|
|
6616
|
-
"integrity": "sha512-
|
|
6615
|
+
"version": "4.56.11",
|
|
6616
|
+
"integrity": "sha512-IIldPX+cIRQuUol9fQzSS3hqyECxVpYMJQMqdU3dCKZFRzEl1rkIkw4P6y7Oh493sI7YdxZlKr/yWdzEWZ1wGQ==",
|
|
6617
6617
|
"dev": true,
|
|
6618
6618
|
"license": "Apache-2.0",
|
|
6619
6619
|
"dependencies": {
|
|
6620
6620
|
"@jsonjoy.com/buffers": "^17.65.0",
|
|
6621
|
-
"@jsonjoy.com/fs-node-utils": "4.56.
|
|
6621
|
+
"@jsonjoy.com/fs-node-utils": "4.56.11",
|
|
6622
6622
|
"@jsonjoy.com/json-pack": "^17.65.0",
|
|
6623
6623
|
"@jsonjoy.com/util": "^17.65.0"
|
|
6624
6624
|
},
|
|
@@ -8389,8 +8389,8 @@
|
|
|
8389
8389
|
}
|
|
8390
8390
|
},
|
|
8391
8391
|
"node_modules/@types/node": {
|
|
8392
|
-
"version": "24.
|
|
8393
|
-
"integrity": "sha512-
|
|
8392
|
+
"version": "24.12.0",
|
|
8393
|
+
"integrity": "sha512-GYDxsZi3ChgmckRT9HPU0WEhKLP08ev/Yfcq2AstjrDASOYCSXeyjDsHg4v5t4jOj7cyDX3vmprafKlWIG9MXQ==",
|
|
8394
8394
|
"dev": true,
|
|
8395
8395
|
"license": "MIT",
|
|
8396
8396
|
"dependencies": {
|
|
@@ -8407,8 +8407,8 @@
|
|
|
8407
8407
|
}
|
|
8408
8408
|
},
|
|
8409
8409
|
"node_modules/@types/qs": {
|
|
8410
|
-
"version": "6.
|
|
8411
|
-
"integrity": "sha512-
|
|
8410
|
+
"version": "6.15.0",
|
|
8411
|
+
"integrity": "sha512-JawvT8iBVWpzTrz3EGw9BTQFg3BQNmwERdKE22vlTxawwtbyUSlMppvZYKLZzB5zgACXdXxbD3m1bXaMqP/9ow==",
|
|
8412
8412
|
"dev": true,
|
|
8413
8413
|
"license": "MIT"
|
|
8414
8414
|
},
|
|
@@ -9029,8 +9029,8 @@
|
|
|
9029
9029
|
}
|
|
9030
9030
|
},
|
|
9031
9031
|
"node_modules/@wavemaker/app-ng-runtime": {
|
|
9032
|
-
"version": "11.14.1-17.
|
|
9033
|
-
"integrity": "sha512-
|
|
9032
|
+
"version": "11.14.1-17.6426",
|
|
9033
|
+
"integrity": "sha512-zsZO+5mCx307bWeNkdyeAZvM2DQr5UPAN6xZI4NKSRxOmOeMn//FcHGyOBtu+HesYKposo4kSnKUfHRiDT78cQ==",
|
|
9034
9034
|
"license": "MIT",
|
|
9035
9035
|
"engines": {
|
|
9036
9036
|
"node": ">=18.16.1",
|
|
@@ -9038,8 +9038,8 @@
|
|
|
9038
9038
|
}
|
|
9039
9039
|
},
|
|
9040
9040
|
"node_modules/@wavemaker/custom-widgets-m3": {
|
|
9041
|
-
"version": "11.14.1-17.
|
|
9042
|
-
"integrity": "sha512-
|
|
9041
|
+
"version": "11.14.1-17.6426",
|
|
9042
|
+
"integrity": "sha512-WQkma0qole6ylD29Bis0LfKiqIL5UIKiCk8x6k/RfhmTzPCSsZpXH/+/z/w43We8rogfL54dllnJ0+n609ZP6Q==",
|
|
9043
9043
|
"license": "ISC"
|
|
9044
9044
|
},
|
|
9045
9045
|
"node_modules/@wavemaker/focus-trap": {
|
|
@@ -9052,8 +9052,8 @@
|
|
|
9052
9052
|
}
|
|
9053
9053
|
},
|
|
9054
9054
|
"node_modules/@wavemaker/foundation-css": {
|
|
9055
|
-
"version": "11.14.1-17.
|
|
9056
|
-
"integrity": "sha512-
|
|
9055
|
+
"version": "11.14.1-17.6426",
|
|
9056
|
+
"integrity": "sha512-ssUR8MHdeWk8qEuuY5a1rgyO2noaUEppAF2OV9fejCg3m2JhEl0iNX4kr9qLDEuxwugXT4gU/21s0bhlMV1o4w==",
|
|
9057
9057
|
"license": "ISC",
|
|
9058
9058
|
"dependencies": {
|
|
9059
9059
|
"chroma-js": "^3.1.2"
|
|
@@ -9068,8 +9068,8 @@
|
|
|
9068
9068
|
}
|
|
9069
9069
|
},
|
|
9070
9070
|
"node_modules/@wavemaker/variables": {
|
|
9071
|
-
"version": "11.14.1-17.
|
|
9072
|
-
"integrity": "sha512
|
|
9071
|
+
"version": "11.14.1-17.6426",
|
|
9072
|
+
"integrity": "sha512-Evyle6XlJewWpsdZqqknFowc9ING+sUSTzSWCzObU2KIHLx3dCBKusNvCY4tG4mePTOYj5iLD21rBsWYhyHYiw==",
|
|
9073
9073
|
"license": "ISC",
|
|
9074
9074
|
"dependencies": {
|
|
9075
9075
|
"@metrichor/jmespath": "^0.3.1",
|
|
@@ -10292,8 +10292,8 @@
|
|
|
10292
10292
|
}
|
|
10293
10293
|
},
|
|
10294
10294
|
"node_modules/caniuse-lite": {
|
|
10295
|
-
"version": "1.0.
|
|
10296
|
-
"integrity": "sha512-
|
|
10295
|
+
"version": "1.0.30001777",
|
|
10296
|
+
"integrity": "sha512-tmN+fJxroPndC74efCdp12j+0rk0RHwV5Jwa1zWaFVyw2ZxAuPeG8ZgWC3Wz7uSjT3qMRQ5XHZ4COgQmsCMJAQ==",
|
|
10297
10297
|
"dev": true,
|
|
10298
10298
|
"funding": [
|
|
10299
10299
|
{
|
|
@@ -11952,8 +11952,8 @@
|
|
|
11952
11952
|
"license": "MIT"
|
|
11953
11953
|
},
|
|
11954
11954
|
"node_modules/electron-to-chromium": {
|
|
11955
|
-
"version": "1.5.
|
|
11956
|
-
"integrity": "sha512-
|
|
11955
|
+
"version": "1.5.307",
|
|
11956
|
+
"integrity": "sha512-5z3uFKBWjiNR44nFcYdkcXjKMbg5KXNdciu7mhTPo9tB7NbqSNP2sSnGR+fqknZSCwKkBN+oxiiajWs4dT6ORg==",
|
|
11957
11957
|
"dev": true,
|
|
11958
11958
|
"license": "ISC"
|
|
11959
11959
|
},
|
|
@@ -14301,8 +14301,8 @@
|
|
|
14301
14301
|
}
|
|
14302
14302
|
},
|
|
14303
14303
|
"node_modules/immutable": {
|
|
14304
|
-
"version": "4.3.
|
|
14305
|
-
"integrity": "sha512-
|
|
14304
|
+
"version": "4.3.8",
|
|
14305
|
+
"integrity": "sha512-d/Ld9aLbKpNwyl0KiM2CT1WYvkitQ1TSvmRtkcV8FKStiDoA7Slzgjmb/1G2yhKM1p0XeNOieaTbFZmU1d3Xuw==",
|
|
14306
14306
|
"dev": true,
|
|
14307
14307
|
"license": "MIT"
|
|
14308
14308
|
},
|
|
@@ -16912,19 +16912,19 @@
|
|
|
16912
16912
|
}
|
|
16913
16913
|
},
|
|
16914
16914
|
"node_modules/memfs": {
|
|
16915
|
-
"version": "4.56.
|
|
16916
|
-
"integrity": "sha512
|
|
16915
|
+
"version": "4.56.11",
|
|
16916
|
+
"integrity": "sha512-/GodtwVeKVIHZKLUSr2ZdOxKBC5hHki4JNCU22DoCGPEHr5o2PD5U721zvESKyWwCfTfavFl9WZYgA13OAYK0g==",
|
|
16917
16917
|
"dev": true,
|
|
16918
16918
|
"license": "Apache-2.0",
|
|
16919
16919
|
"dependencies": {
|
|
16920
|
-
"@jsonjoy.com/fs-core": "4.56.
|
|
16921
|
-
"@jsonjoy.com/fs-fsa": "4.56.
|
|
16922
|
-
"@jsonjoy.com/fs-node": "4.56.
|
|
16923
|
-
"@jsonjoy.com/fs-node-builtins": "4.56.
|
|
16924
|
-
"@jsonjoy.com/fs-node-to-fsa": "4.56.
|
|
16925
|
-
"@jsonjoy.com/fs-node-utils": "4.56.
|
|
16926
|
-
"@jsonjoy.com/fs-print": "4.56.
|
|
16927
|
-
"@jsonjoy.com/fs-snapshot": "4.56.
|
|
16920
|
+
"@jsonjoy.com/fs-core": "4.56.11",
|
|
16921
|
+
"@jsonjoy.com/fs-fsa": "4.56.11",
|
|
16922
|
+
"@jsonjoy.com/fs-node": "4.56.11",
|
|
16923
|
+
"@jsonjoy.com/fs-node-builtins": "4.56.11",
|
|
16924
|
+
"@jsonjoy.com/fs-node-to-fsa": "4.56.11",
|
|
16925
|
+
"@jsonjoy.com/fs-node-utils": "4.56.11",
|
|
16926
|
+
"@jsonjoy.com/fs-print": "4.56.11",
|
|
16927
|
+
"@jsonjoy.com/fs-snapshot": "4.56.11",
|
|
16928
16928
|
"@jsonjoy.com/json-pack": "^1.11.0",
|
|
16929
16929
|
"@jsonjoy.com/util": "^1.9.0",
|
|
16930
16930
|
"glob-to-regex.js": "^1.0.1",
|
|
@@ -18447,8 +18447,8 @@
|
|
|
18447
18447
|
"license": "MIT"
|
|
18448
18448
|
},
|
|
18449
18449
|
"node_modules/node-releases": {
|
|
18450
|
-
"version": "2.0.
|
|
18451
|
-
"integrity": "sha512-
|
|
18450
|
+
"version": "2.0.36",
|
|
18451
|
+
"integrity": "sha512-TdC8FSgHz8Mwtw9g5L4gR/Sh9XhSP/0DEkQxfEFXOpiul5IiHgHan2VhYYb6agDSfp4KuvltmGApc8HMgUrIkA==",
|
|
18452
18452
|
"dev": true,
|
|
18453
18453
|
"license": "MIT"
|
|
18454
18454
|
},
|
|
@@ -21802,15 +21802,14 @@
|
|
|
21802
21802
|
}
|
|
21803
21803
|
},
|
|
21804
21804
|
"node_modules/terser-webpack-plugin": {
|
|
21805
|
-
"version": "5.3.
|
|
21806
|
-
"integrity": "sha512-
|
|
21805
|
+
"version": "5.3.17",
|
|
21806
|
+
"integrity": "sha512-YR7PtUp6GMU91BgSJmlaX/rS2lGDbAF7D+Wtq7hRO+MiljNmodYvqslzCFiYVAgW+Qoaaia/QUIP4lGXufjdZw==",
|
|
21807
21807
|
"dev": true,
|
|
21808
21808
|
"license": "MIT",
|
|
21809
21809
|
"dependencies": {
|
|
21810
21810
|
"@jridgewell/trace-mapping": "^0.3.25",
|
|
21811
21811
|
"jest-worker": "^27.4.5",
|
|
21812
21812
|
"schema-utils": "^4.3.0",
|
|
21813
|
-
"serialize-javascript": "^6.0.2",
|
|
21814
21813
|
"terser": "^5.31.1"
|
|
21815
21814
|
},
|
|
21816
21815
|
"engines": {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wavemaker/angular-app",
|
|
3
|
-
"version": "11.14.1-17.
|
|
3
|
+
"version": "11.14.1-17.6426",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"ng": "ng",
|
|
6
6
|
"start": "./node_modules/.bin/ng serve",
|
|
@@ -36,11 +36,11 @@
|
|
|
36
36
|
"@fullcalendar/list": "6.1.18",
|
|
37
37
|
"@fullcalendar/timegrid": "6.1.18",
|
|
38
38
|
"@metrichor/jmespath": "0.3.1",
|
|
39
|
-
"@wavemaker/custom-widgets-m3": "11.14.1-17.
|
|
39
|
+
"@wavemaker/custom-widgets-m3": "11.14.1-17.6426",
|
|
40
40
|
"@wavemaker/focus-trap": "1.0.1",
|
|
41
|
-
"@wavemaker/foundation-css": "11.14.1-17.
|
|
41
|
+
"@wavemaker/foundation-css": "11.14.1-17.6426",
|
|
42
42
|
"@wavemaker/nvd3": "1.8.15",
|
|
43
|
-
"@wavemaker/variables": "11.14.1-17.
|
|
43
|
+
"@wavemaker/variables": "11.14.1-17.6426",
|
|
44
44
|
"@ztree/ztree_v3": "3.5.48",
|
|
45
45
|
"acorn": "^8.15.0",
|
|
46
46
|
"angular-imask": "7.6.1",
|
|
@@ -62,7 +62,7 @@
|
|
|
62
62
|
"tslib": "2.8.1",
|
|
63
63
|
"x2js": "3.4.4",
|
|
64
64
|
"zone.js": "0.15.1",
|
|
65
|
-
"@wavemaker/app-ng-runtime": "11.14.1-17.
|
|
65
|
+
"@wavemaker/app-ng-runtime": "11.14.1-17.6426"
|
|
66
66
|
},
|
|
67
67
|
"devDependencies": {
|
|
68
68
|
"@ampproject/rollup-plugin-closure-compiler": "^0.27.0",
|