@wavemaker/angular-app 11.14.1-17.6425 → 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 +22 -22
- package/package-lock.json +22 -22
- 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",
|
|
@@ -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": {
|
|
@@ -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
|
{
|
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",
|
|
@@ -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": {
|
|
@@ -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
|
{
|
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",
|