@wavemaker/angular-app 11.14.1-18.6459 → 11.14.1-19.6462
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 +24 -24
- package/package-lock.json +24 -24
- package/package.json +5 -5
|
@@ -147880,13 +147880,13 @@ const FIRST_TIME_WATCH$1 = {};
|
|
|
147880
147880
|
Object.freeze(FIRST_TIME_WATCH$1);
|
|
147881
147881
|
const arrayConsumer$1 = (listenerFn, restExpr, newVal, oldVal) => {
|
|
147882
147882
|
let data = newVal, formattedData;
|
|
147883
|
-
if (isArray
|
|
147883
|
+
if (_.isArray(data)) {
|
|
147884
147884
|
formattedData = data.map(function (datum) {
|
|
147885
147885
|
return findValueOf$1(datum, restExpr);
|
|
147886
147886
|
});
|
|
147887
147887
|
// If resulting structure is an array of array, flatten it
|
|
147888
|
-
if (isArray
|
|
147889
|
-
formattedData = flatten
|
|
147888
|
+
if (_.isArray(formattedData[0])) {
|
|
147889
|
+
formattedData = _.flatten(formattedData);
|
|
147890
147890
|
}
|
|
147891
147891
|
listenerFn(formattedData, oldVal);
|
|
147892
147892
|
}
|
|
@@ -147931,6 +147931,19 @@ const $watch$1 = (expr, $scope, $locals, listener, identifier = watchIdGenerator
|
|
|
147931
147931
|
};
|
|
147932
147932
|
const $unwatch$1 = identifier => registry$1.delete(identifier);
|
|
147933
147933
|
window.watchRegistry = registry$1;
|
|
147934
|
+
window.__WM_DEBUG_WATCHERS__ = false;
|
|
147935
|
+
/*export const $invokeWatchers = (force?: boolean, ignoreMuted?: boolean) => {
|
|
147936
|
+
if (force) {
|
|
147937
|
+
triggerWatchers(ignoreMuted);
|
|
147938
|
+
} else {
|
|
147939
|
+
|
|
147940
|
+
if (skipWatchers) {
|
|
147941
|
+
skipWatchers = false;
|
|
147942
|
+
return;
|
|
147943
|
+
}
|
|
147944
|
+
debouncedTriggerWatchers();
|
|
147945
|
+
}
|
|
147946
|
+
};*/
|
|
147934
147947
|
const $appDigest$1 = (() => {
|
|
147935
147948
|
return (force) => {
|
|
147936
147949
|
{
|
|
@@ -147993,8 +148006,8 @@ var Operation$1;
|
|
|
147993
148006
|
const DataSource$1 = {
|
|
147994
148007
|
Operation: Operation$1
|
|
147995
148008
|
};
|
|
147996
|
-
class App {
|
|
147997
|
-
}
|
|
148009
|
+
let App$1 = class App {
|
|
148010
|
+
};
|
|
147998
148011
|
let AbstractI18nService$1 = class AbstractI18nService {
|
|
147999
148012
|
};
|
|
148000
148013
|
|
|
@@ -148012,6 +148025,7 @@ const REGEX$1 = {
|
|
|
148012
148025
|
SUPPORTED_AUDIO_FORMAT: /\.(mp3|ogg|webm|wma|3gp|wav|m4a)$/i,
|
|
148013
148026
|
SUPPORTED_VIDEO_FORMAT: /\.(mp4|ogg|webm|wmv|mpeg|mpg|avi|mov)$/i,
|
|
148014
148027
|
VALID_WEB_URL: /^(http[s]?:\/\/)(www\.){0,1}[a-zA-Z0-9=:?\/\.\-]+(\.[a-zA-Z]{2,5}[\.]{0,1})?/,
|
|
148028
|
+
VALID_IMAGE_URL: /^(https?|blob|data|file|ftp):/i,
|
|
148015
148029
|
REPLACE_PATTERN: /\$\{([^\}]+)\}/g,
|
|
148016
148030
|
DATA_URL: /^\s*data:([a-z]+\/[a-z0-9-+.]+(;[a-z-]+=[a-z0-9-]+)?)?(;base64)?,([a-z0-9!$&',()*+;=\-._~:@\/?%\s]*)\s*$/i,
|
|
148017
148031
|
ISO_DATE_FORMAT: /(\d{4}-\d{2}-\d{2})T(\d{2}:\d{2}:\d{2})(\.\d+)?([+-]\d{2}:?\d{2}|Z)$/
|
|
@@ -148234,6 +148248,9 @@ const isVideoFile$1 = (fileName) => {
|
|
|
148234
148248
|
const isValidWebURL$1 = (url) => {
|
|
148235
148249
|
return (REGEX$1.VALID_WEB_URL).test(url);
|
|
148236
148250
|
};
|
|
148251
|
+
const isValidImageUrl$1 = (url) => {
|
|
148252
|
+
return (REGEX$1.VALID_IMAGE_URL).test(url?.trim());
|
|
148253
|
+
};
|
|
148237
148254
|
/*This function returns the url to the resource after checking the validity of url*/
|
|
148238
148255
|
const getResourceURL$1 = (urlString) => {
|
|
148239
148256
|
return urlString;
|
|
@@ -149487,6 +149504,7 @@ var Utils$1 = /*#__PURE__*/Object.freeze({
|
|
|
149487
149504
|
isPageable: isPageable$1,
|
|
149488
149505
|
isSafari: isSafari$1,
|
|
149489
149506
|
isTablet: isTablet$1,
|
|
149507
|
+
isValidImageUrl: isValidImageUrl$1,
|
|
149490
149508
|
isValidWebURL: isValidWebURL$1,
|
|
149491
149509
|
isVideoFile: isVideoFile$1,
|
|
149492
149510
|
loadScript: loadScript$1,
|
|
@@ -150721,14 +150739,14 @@ class ToDatePipe extends WmPipe {
|
|
|
150721
150739
|
}
|
|
150722
150740
|
return this.returnFn('', arguments, this.app.Variables);
|
|
150723
150741
|
}
|
|
150724
|
-
constructor(datePipe, i18nService, customPipeManager) {
|
|
150742
|
+
constructor(datePipe, i18nService, app, customPipeManager) {
|
|
150725
150743
|
super('toDate', customPipeManager);
|
|
150726
150744
|
this.datePipe = datePipe;
|
|
150727
150745
|
this.i18nService = i18nService;
|
|
150746
|
+
this.app = app;
|
|
150728
150747
|
this.customPipeManager = customPipeManager;
|
|
150729
|
-
this.app = inject(App);
|
|
150730
150748
|
}
|
|
150731
|
-
static { this.ɵfac = function ToDatePipe_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || ToDatePipe)(ɵɵdirectiveInject(DatePipe, 16), ɵɵdirectiveInject(AbstractI18nService$1, 16), ɵɵdirectiveInject(CustomPipeManager$1, 16)); }; }
|
|
150749
|
+
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)); }; }
|
|
150732
150750
|
static { this.ɵpipe = /*@__PURE__*/ ɵɵdefinePipe({ name: "toDate", type: ToDatePipe, pure: true, standalone: true }); }
|
|
150733
150751
|
}
|
|
150734
150752
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && setClassMetadata(ToDatePipe, [{
|
|
@@ -150737,7 +150755,7 @@ class ToDatePipe extends WmPipe {
|
|
|
150737
150755
|
standalone: true,
|
|
150738
150756
|
name: 'toDate'
|
|
150739
150757
|
}]
|
|
150740
|
-
}], () => [{ type: DatePipe }, { type: AbstractI18nService$1 }, { type: CustomPipeManager$1 }], null); })();
|
|
150758
|
+
}], () => [{ type: DatePipe }, { type: AbstractI18nService$1 }, { type: App$1 }, { type: CustomPipeManager$1 }], null); })();
|
|
150741
150759
|
class ToNumberPipe {
|
|
150742
150760
|
transform(data, fracSize) {
|
|
150743
150761
|
if (fracSize && !String(fracSize).match(/^(\d+)?\.((\d+)(-(\d+))?)?$/)) {
|
|
@@ -150825,9 +150843,9 @@ class SuffixPipe {
|
|
|
150825
150843
|
* Custom pipe: It is work as interceptor between the user custom pipe function and angular pipe
|
|
150826
150844
|
*/
|
|
150827
150845
|
class CustomPipe {
|
|
150828
|
-
constructor(custmeUserPipe) {
|
|
150846
|
+
constructor(app, custmeUserPipe) {
|
|
150847
|
+
this.app = app;
|
|
150829
150848
|
this.custmeUserPipe = custmeUserPipe;
|
|
150830
|
-
this.app = inject(App);
|
|
150831
150849
|
}
|
|
150832
150850
|
transform(data, pipename) {
|
|
150833
150851
|
let argumentArr = [];
|
|
@@ -150847,7 +150865,7 @@ class CustomPipe {
|
|
|
150847
150865
|
return data;
|
|
150848
150866
|
}
|
|
150849
150867
|
}
|
|
150850
|
-
static { this.ɵfac = function CustomPipe_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || CustomPipe)(ɵɵdirectiveInject(CustomPipeManager$1, 16)); }; }
|
|
150868
|
+
static { this.ɵfac = function CustomPipe_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || CustomPipe)(ɵɵdirectiveInject(App$1, 16), ɵɵdirectiveInject(CustomPipeManager$1, 16)); }; }
|
|
150851
150869
|
static { this.ɵpipe = /*@__PURE__*/ ɵɵdefinePipe({ name: "custom", type: CustomPipe, pure: true, standalone: true }); }
|
|
150852
150870
|
}
|
|
150853
150871
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && setClassMetadata(CustomPipe, [{
|
|
@@ -150856,7 +150874,7 @@ class CustomPipe {
|
|
|
150856
150874
|
standalone: true,
|
|
150857
150875
|
name: 'custom'
|
|
150858
150876
|
}]
|
|
150859
|
-
}], () => [{ type: CustomPipeManager$1 }], null); })();
|
|
150877
|
+
}], () => [{ type: App$1 }, { type: CustomPipeManager$1 }], null); })();
|
|
150860
150878
|
class TimeFromNowPipe {
|
|
150861
150879
|
transform(data) {
|
|
150862
150880
|
let timestamp;
|
|
@@ -203519,13 +203537,13 @@ const FIRST_TIME_WATCH = {};
|
|
|
203519
203537
|
Object.freeze(FIRST_TIME_WATCH);
|
|
203520
203538
|
const arrayConsumer = (listenerFn, restExpr, newVal, oldVal) => {
|
|
203521
203539
|
let data = newVal, formattedData;
|
|
203522
|
-
if (isArray(data)) {
|
|
203540
|
+
if (_.isArray(data)) {
|
|
203523
203541
|
formattedData = data.map(function (datum) {
|
|
203524
203542
|
return findValueOf(datum, restExpr);
|
|
203525
203543
|
});
|
|
203526
203544
|
// If resulting structure is an array of array, flatten it
|
|
203527
|
-
if (isArray(formattedData[0])) {
|
|
203528
|
-
formattedData = flatten(formattedData);
|
|
203545
|
+
if (_.isArray(formattedData[0])) {
|
|
203546
|
+
formattedData = _.flatten(formattedData);
|
|
203529
203547
|
}
|
|
203530
203548
|
listenerFn(formattedData, oldVal);
|
|
203531
203549
|
}
|
|
@@ -203570,6 +203588,19 @@ const $watch = (expr, $scope, $locals, listener, identifier = watchIdGenerator.n
|
|
|
203570
203588
|
};
|
|
203571
203589
|
const $unwatch = identifier => registry.delete(identifier);
|
|
203572
203590
|
window.watchRegistry = registry;
|
|
203591
|
+
window.__WM_DEBUG_WATCHERS__ = false;
|
|
203592
|
+
/*export const $invokeWatchers = (force?: boolean, ignoreMuted?: boolean) => {
|
|
203593
|
+
if (force) {
|
|
203594
|
+
triggerWatchers(ignoreMuted);
|
|
203595
|
+
} else {
|
|
203596
|
+
|
|
203597
|
+
if (skipWatchers) {
|
|
203598
|
+
skipWatchers = false;
|
|
203599
|
+
return;
|
|
203600
|
+
}
|
|
203601
|
+
debouncedTriggerWatchers();
|
|
203602
|
+
}
|
|
203603
|
+
};*/
|
|
203573
203604
|
const $appDigest = (() => {
|
|
203574
203605
|
return (force) => {
|
|
203575
203606
|
{
|
|
@@ -203632,6 +203663,8 @@ var Operation;
|
|
|
203632
203663
|
const DataSource = {
|
|
203633
203664
|
Operation
|
|
203634
203665
|
};
|
|
203666
|
+
class App {
|
|
203667
|
+
}
|
|
203635
203668
|
class AbstractI18nService {
|
|
203636
203669
|
}
|
|
203637
203670
|
|
|
@@ -203649,6 +203682,7 @@ const REGEX = {
|
|
|
203649
203682
|
SUPPORTED_AUDIO_FORMAT: /\.(mp3|ogg|webm|wma|3gp|wav|m4a)$/i,
|
|
203650
203683
|
SUPPORTED_VIDEO_FORMAT: /\.(mp4|ogg|webm|wmv|mpeg|mpg|avi|mov)$/i,
|
|
203651
203684
|
VALID_WEB_URL: /^(http[s]?:\/\/)(www\.){0,1}[a-zA-Z0-9=:?\/\.\-]+(\.[a-zA-Z]{2,5}[\.]{0,1})?/,
|
|
203685
|
+
VALID_IMAGE_URL: /^(https?|blob|data|file|ftp):/i,
|
|
203652
203686
|
REPLACE_PATTERN: /\$\{([^\}]+)\}/g,
|
|
203653
203687
|
DATA_URL: /^\s*data:([a-z]+\/[a-z0-9-+.]+(;[a-z-]+=[a-z0-9-]+)?)?(;base64)?,([a-z0-9!$&',()*+;=\-._~:@\/?%\s]*)\s*$/i,
|
|
203654
203688
|
ISO_DATE_FORMAT: /(\d{4}-\d{2}-\d{2})T(\d{2}:\d{2}:\d{2})(\.\d+)?([+-]\d{2}:?\d{2}|Z)$/
|
|
@@ -203871,6 +203905,9 @@ const isVideoFile = (fileName) => {
|
|
|
203871
203905
|
const isValidWebURL = (url) => {
|
|
203872
203906
|
return (REGEX.VALID_WEB_URL).test(url);
|
|
203873
203907
|
};
|
|
203908
|
+
const isValidImageUrl = (url) => {
|
|
203909
|
+
return (REGEX.VALID_IMAGE_URL).test(url?.trim());
|
|
203910
|
+
};
|
|
203874
203911
|
/*This function returns the url to the resource after checking the validity of url*/
|
|
203875
203912
|
const getResourceURL = (urlString) => {
|
|
203876
203913
|
return urlString;
|
|
@@ -205124,6 +205161,7 @@ var Utils = /*#__PURE__*/Object.freeze({
|
|
|
205124
205161
|
isPageable: isPageable,
|
|
205125
205162
|
isSafari: isSafari,
|
|
205126
205163
|
isTablet: isTablet,
|
|
205164
|
+
isValidImageUrl: isValidImageUrl,
|
|
205127
205165
|
isValidWebURL: isValidWebURL,
|
|
205128
205166
|
isVideoFile: isVideoFile,
|
|
205129
205167
|
loadScript: loadScript,
|
|
@@ -207963,7 +208001,7 @@ class PipeProvider {
|
|
|
207963
208001
|
this.preparePipeMeta(CurrencyPipe$1, 'currency', true, [this._locale]),
|
|
207964
208002
|
this.preparePipeMeta(DatePipe$1, 'date', true, [this._locale]),
|
|
207965
208003
|
this.preparePipeMeta(ToDatePipe, 'toDate', true, [
|
|
207966
|
-
new DatePipe$1(this._locale), undefined, this.injector.get(CustomPipeManager)
|
|
208004
|
+
new DatePipe$1(this._locale), undefined, this.injector.get(App), this.injector.get(CustomPipeManager)
|
|
207967
208005
|
]),
|
|
207968
208006
|
this.preparePipeMeta(ToNumberPipe, 'toNumber', true, [
|
|
207969
208007
|
new DecimalPipe$1(this._locale),
|
|
@@ -207980,7 +208018,7 @@ class PipeProvider {
|
|
|
207980
208018
|
new DecimalPipe$1(this._locale)
|
|
207981
208019
|
]),
|
|
207982
208020
|
this.preparePipeMeta(StringToNumberPipe, 'stringToNumber', true),
|
|
207983
|
-
this.preparePipeMeta(CustomPipe, 'custom', true, [this.injector.get(CustomPipeManager)]),
|
|
208021
|
+
this.preparePipeMeta(CustomPipe, 'custom', true, [this.injector.get(App), this.injector.get(CustomPipeManager)]),
|
|
207984
208022
|
this.preparePipeMeta(TrustAsPipe, 'trustAs', true, [this.domSanitizer]),
|
|
207985
208023
|
this.preparePipeMeta(SanitizePipe, 'sanitize', true, [this.domSanitizer]),
|
|
207986
208024
|
this.preparePipeMeta(TemplateReplacePipe, 'templateReplace', true),
|
|
@@ -100288,13 +100288,13 @@ const FIRST_TIME_WATCH = {};
|
|
|
100288
100288
|
Object.freeze(FIRST_TIME_WATCH);
|
|
100289
100289
|
const arrayConsumer = (listenerFn, restExpr, newVal, oldVal) => {
|
|
100290
100290
|
let data = newVal, formattedData;
|
|
100291
|
-
if (isArray(data)) {
|
|
100291
|
+
if (_.isArray(data)) {
|
|
100292
100292
|
formattedData = data.map(function (datum) {
|
|
100293
100293
|
return findValueOf(datum, restExpr);
|
|
100294
100294
|
});
|
|
100295
100295
|
// If resulting structure is an array of array, flatten it
|
|
100296
|
-
if (isArray(formattedData[0])) {
|
|
100297
|
-
formattedData = flatten
|
|
100296
|
+
if (_.isArray(formattedData[0])) {
|
|
100297
|
+
formattedData = _.flatten(formattedData);
|
|
100298
100298
|
}
|
|
100299
100299
|
listenerFn(formattedData, oldVal);
|
|
100300
100300
|
}
|
|
@@ -100339,6 +100339,19 @@ const $watch = (expr, $scope, $locals, listener, identifier = watchIdGenerator.n
|
|
|
100339
100339
|
};
|
|
100340
100340
|
const $unwatch = identifier => registry.delete(identifier);
|
|
100341
100341
|
window.watchRegistry = registry;
|
|
100342
|
+
window.__WM_DEBUG_WATCHERS__ = false;
|
|
100343
|
+
/*export const $invokeWatchers = (force?: boolean, ignoreMuted?: boolean) => {
|
|
100344
|
+
if (force) {
|
|
100345
|
+
triggerWatchers(ignoreMuted);
|
|
100346
|
+
} else {
|
|
100347
|
+
|
|
100348
|
+
if (skipWatchers) {
|
|
100349
|
+
skipWatchers = false;
|
|
100350
|
+
return;
|
|
100351
|
+
}
|
|
100352
|
+
debouncedTriggerWatchers();
|
|
100353
|
+
}
|
|
100354
|
+
};*/
|
|
100342
100355
|
const $appDigest = (() => {
|
|
100343
100356
|
return (force) => {
|
|
100344
100357
|
{
|
|
@@ -100416,6 +100429,7 @@ const REGEX = {
|
|
|
100416
100429
|
SUPPORTED_AUDIO_FORMAT: /\.(mp3|ogg|webm|wma|3gp|wav|m4a)$/i,
|
|
100417
100430
|
SUPPORTED_VIDEO_FORMAT: /\.(mp4|ogg|webm|wmv|mpeg|mpg|avi|mov)$/i,
|
|
100418
100431
|
VALID_WEB_URL: /^(http[s]?:\/\/)(www\.){0,1}[a-zA-Z0-9=:?\/\.\-]+(\.[a-zA-Z]{2,5}[\.]{0,1})?/,
|
|
100432
|
+
VALID_IMAGE_URL: /^(https?|blob|data|file|ftp):/i,
|
|
100419
100433
|
REPLACE_PATTERN: /\$\{([^\}]+)\}/g,
|
|
100420
100434
|
DATA_URL: /^\s*data:([a-z]+\/[a-z0-9-+.]+(;[a-z-]+=[a-z0-9-]+)?)?(;base64)?,([a-z0-9!$&',()*+;=\-._~:@\/?%\s]*)\s*$/i,
|
|
100421
100435
|
ISO_DATE_FORMAT: /(\d{4}-\d{2}-\d{2})T(\d{2}:\d{2}:\d{2})(\.\d+)?([+-]\d{2}:?\d{2}|Z)$/
|
|
@@ -100638,6 +100652,9 @@ const isVideoFile = (fileName) => {
|
|
|
100638
100652
|
const isValidWebURL = (url) => {
|
|
100639
100653
|
return (REGEX.VALID_WEB_URL).test(url);
|
|
100640
100654
|
};
|
|
100655
|
+
const isValidImageUrl = (url) => {
|
|
100656
|
+
return (REGEX.VALID_IMAGE_URL).test(url?.trim());
|
|
100657
|
+
};
|
|
100641
100658
|
/*This function returns the url to the resource after checking the validity of url*/
|
|
100642
100659
|
const getResourceURL = (urlString) => {
|
|
100643
100660
|
return urlString;
|
|
@@ -101891,6 +101908,7 @@ var Utils = /*#__PURE__*/Object.freeze({
|
|
|
101891
101908
|
isPageable: isPageable,
|
|
101892
101909
|
isSafari: isSafari,
|
|
101893
101910
|
isTablet: isTablet,
|
|
101911
|
+
isValidImageUrl: isValidImageUrl,
|
|
101894
101912
|
isValidWebURL: isValidWebURL,
|
|
101895
101913
|
isVideoFile: isVideoFile,
|
|
101896
101914
|
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-
|
|
3
|
+
"version": "11.14.1-19.6462",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "@wavemaker/angular-app",
|
|
9
|
-
"version": "11.14.1-
|
|
9
|
+
"version": "11.14.1-19.6462",
|
|
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-
|
|
27
|
-
"@wavemaker/custom-widgets-m3": "11.14.1-
|
|
26
|
+
"@wavemaker/app-ng-runtime": "11.14.1-19.6462",
|
|
27
|
+
"@wavemaker/custom-widgets-m3": "11.14.1-19.6462",
|
|
28
28
|
"@wavemaker/focus-trap": "1.0.1",
|
|
29
|
-
"@wavemaker/foundation-css": "11.14.1-
|
|
29
|
+
"@wavemaker/foundation-css": "11.14.1-19.6462",
|
|
30
30
|
"@wavemaker/nvd3": "1.8.15",
|
|
31
|
-
"@wavemaker/variables": "11.14.1-
|
|
31
|
+
"@wavemaker/variables": "11.14.1-19.6462",
|
|
32
32
|
"@ztree/ztree_v3": "3.5.48",
|
|
33
33
|
"acorn": "^8.15.0",
|
|
34
34
|
"angular-imask": "7.6.1",
|
|
@@ -8028,8 +8028,8 @@
|
|
|
8028
8028
|
}
|
|
8029
8029
|
},
|
|
8030
8030
|
"node_modules/@sinonjs/fake-timers": {
|
|
8031
|
-
"version": "15.
|
|
8032
|
-
"integrity": "sha512-
|
|
8031
|
+
"version": "15.2.1",
|
|
8032
|
+
"integrity": "sha512-QdfpQFIwYrTK8lFsII4bJ1AO1ZLbw7B+oxfP+/qSsiTrVerFp7aY2O+d2GNGrTxP58ezEbjbf7mTTLMsd7M7XQ==",
|
|
8033
8033
|
"dev": true,
|
|
8034
8034
|
"license": "BSD-3-Clause",
|
|
8035
8035
|
"dependencies": {
|
|
@@ -9027,8 +9027,8 @@
|
|
|
9027
9027
|
}
|
|
9028
9028
|
},
|
|
9029
9029
|
"node_modules/@wavemaker/app-ng-runtime": {
|
|
9030
|
-
"version": "11.14.1-
|
|
9031
|
-
"integrity": "sha512-
|
|
9030
|
+
"version": "11.14.1-19.6462",
|
|
9031
|
+
"integrity": "sha512-Ab1wLtbHV0TCmav5zrRBn1TpAjpp30iA75VvksThy9ENYqG/IZKLujxq9rovhrFwzOVjvxrnZu75tbv4CROkoQ==",
|
|
9032
9032
|
"license": "MIT",
|
|
9033
9033
|
"engines": {
|
|
9034
9034
|
"node": ">=18.16.1",
|
|
@@ -9036,8 +9036,8 @@
|
|
|
9036
9036
|
}
|
|
9037
9037
|
},
|
|
9038
9038
|
"node_modules/@wavemaker/custom-widgets-m3": {
|
|
9039
|
-
"version": "11.14.1-
|
|
9040
|
-
"integrity": "sha512-
|
|
9039
|
+
"version": "11.14.1-19.6462",
|
|
9040
|
+
"integrity": "sha512-eFp+hhYeiDDzvs71MixE211Pby7ADLE/wgUP0Bqgu6fw0/edsJKoVh23p6aGMBTvFgNWGYhAD9yM8LxLDKm2lw==",
|
|
9041
9041
|
"license": "ISC"
|
|
9042
9042
|
},
|
|
9043
9043
|
"node_modules/@wavemaker/focus-trap": {
|
|
@@ -9050,8 +9050,8 @@
|
|
|
9050
9050
|
}
|
|
9051
9051
|
},
|
|
9052
9052
|
"node_modules/@wavemaker/foundation-css": {
|
|
9053
|
-
"version": "11.14.1-
|
|
9054
|
-
"integrity": "sha512-
|
|
9053
|
+
"version": "11.14.1-19.6462",
|
|
9054
|
+
"integrity": "sha512-lkTdeYX6nb3U/+5XJHfTTWuInGaSEkVznLozkMWbbjLI/7RjJNs4M9I1DOJ8wEu+GiBz8MUORolvHn/xXLFycw==",
|
|
9055
9055
|
"license": "ISC",
|
|
9056
9056
|
"dependencies": {
|
|
9057
9057
|
"chroma-js": "^3.1.2"
|
|
@@ -9066,8 +9066,8 @@
|
|
|
9066
9066
|
}
|
|
9067
9067
|
},
|
|
9068
9068
|
"node_modules/@wavemaker/variables": {
|
|
9069
|
-
"version": "11.14.1-
|
|
9070
|
-
"integrity": "sha512-
|
|
9069
|
+
"version": "11.14.1-19.6462",
|
|
9070
|
+
"integrity": "sha512-AYf4eAnRbvN7Cg6i/eay3UBMzyFQHQYeDNgk3kuyYvub46SspekdODDjW6JFJer6EiQIzXvLpU5JKXEsJQv+0w==",
|
|
9071
9071
|
"license": "ISC",
|
|
9072
9072
|
"dependencies": {
|
|
9073
9073
|
"@metrichor/jmespath": "^0.3.1",
|
|
@@ -9885,8 +9885,8 @@
|
|
|
9885
9885
|
"license": "MIT"
|
|
9886
9886
|
},
|
|
9887
9887
|
"node_modules/baseline-browser-mapping": {
|
|
9888
|
-
"version": "2.10.
|
|
9889
|
-
"integrity": "sha512-
|
|
9888
|
+
"version": "2.10.13",
|
|
9889
|
+
"integrity": "sha512-BL2sTuHOdy0YT1lYieUxTw/QMtPBC3pmlJC6xk8BBYVv6vcw3SGdKemQ+Xsx9ik2F/lYDO9tqsFQH1r9PFuHKw==",
|
|
9890
9890
|
"dev": true,
|
|
9891
9891
|
"license": "Apache-2.0",
|
|
9892
9892
|
"bin": {
|
|
@@ -10290,8 +10290,8 @@
|
|
|
10290
10290
|
}
|
|
10291
10291
|
},
|
|
10292
10292
|
"node_modules/caniuse-lite": {
|
|
10293
|
-
"version": "1.0.
|
|
10294
|
-
"integrity": "sha512-
|
|
10293
|
+
"version": "1.0.30001784",
|
|
10294
|
+
"integrity": "sha512-WU346nBTklUV9YfUl60fqRbU5ZqyXlqvo1SgigE1OAXK5bFL8LL9q1K7aap3N739l4BvNqnkm3YrGHiY9sfUQw==",
|
|
10295
10295
|
"dev": true,
|
|
10296
10296
|
"funding": [
|
|
10297
10297
|
{
|
|
@@ -11950,8 +11950,8 @@
|
|
|
11950
11950
|
"license": "MIT"
|
|
11951
11951
|
},
|
|
11952
11952
|
"node_modules/electron-to-chromium": {
|
|
11953
|
-
"version": "1.5.
|
|
11954
|
-
"integrity": "sha512
|
|
11953
|
+
"version": "1.5.330",
|
|
11954
|
+
"integrity": "sha512-jFNydB5kFtYUobh4IkWUnXeyDbjf/r9gcUEXe1xcrcUxIGfTdzPXA+ld6zBRbwvgIGVzDll/LTIiDztEtckSnA==",
|
|
11955
11955
|
"dev": true,
|
|
11956
11956
|
"license": "ISC"
|
|
11957
11957
|
},
|
|
@@ -22430,8 +22430,8 @@
|
|
|
22430
22430
|
}
|
|
22431
22431
|
},
|
|
22432
22432
|
"node_modules/undici": {
|
|
22433
|
-
"version": "7.24.
|
|
22434
|
-
"integrity": "sha512-
|
|
22433
|
+
"version": "7.24.7",
|
|
22434
|
+
"integrity": "sha512-H/nlJ/h0ggGC+uRL3ovD+G0i4bqhvsDOpbDv7At5eFLlj2b41L8QliGbnl2H7SnDiYhENphh1tQFJZf+MyfLsQ==",
|
|
22435
22435
|
"dev": true,
|
|
22436
22436
|
"license": "MIT",
|
|
22437
22437
|
"engines": {
|
package/package-lock.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wavemaker/angular-app",
|
|
3
|
-
"version": "11.14.1-
|
|
3
|
+
"version": "11.14.1-19.6462",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "@wavemaker/angular-app",
|
|
9
|
-
"version": "11.14.1-
|
|
9
|
+
"version": "11.14.1-19.6462",
|
|
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-
|
|
27
|
-
"@wavemaker/custom-widgets-m3": "11.14.1-
|
|
26
|
+
"@wavemaker/app-ng-runtime": "11.14.1-19.6462",
|
|
27
|
+
"@wavemaker/custom-widgets-m3": "11.14.1-19.6462",
|
|
28
28
|
"@wavemaker/focus-trap": "1.0.1",
|
|
29
|
-
"@wavemaker/foundation-css": "11.14.1-
|
|
29
|
+
"@wavemaker/foundation-css": "11.14.1-19.6462",
|
|
30
30
|
"@wavemaker/nvd3": "1.8.15",
|
|
31
|
-
"@wavemaker/variables": "11.14.1-
|
|
31
|
+
"@wavemaker/variables": "11.14.1-19.6462",
|
|
32
32
|
"@ztree/ztree_v3": "3.5.48",
|
|
33
33
|
"acorn": "^8.15.0",
|
|
34
34
|
"angular-imask": "7.6.1",
|
|
@@ -8028,8 +8028,8 @@
|
|
|
8028
8028
|
}
|
|
8029
8029
|
},
|
|
8030
8030
|
"node_modules/@sinonjs/fake-timers": {
|
|
8031
|
-
"version": "15.
|
|
8032
|
-
"integrity": "sha512-
|
|
8031
|
+
"version": "15.2.1",
|
|
8032
|
+
"integrity": "sha512-QdfpQFIwYrTK8lFsII4bJ1AO1ZLbw7B+oxfP+/qSsiTrVerFp7aY2O+d2GNGrTxP58ezEbjbf7mTTLMsd7M7XQ==",
|
|
8033
8033
|
"dev": true,
|
|
8034
8034
|
"license": "BSD-3-Clause",
|
|
8035
8035
|
"dependencies": {
|
|
@@ -9027,8 +9027,8 @@
|
|
|
9027
9027
|
}
|
|
9028
9028
|
},
|
|
9029
9029
|
"node_modules/@wavemaker/app-ng-runtime": {
|
|
9030
|
-
"version": "11.14.1-
|
|
9031
|
-
"integrity": "sha512-
|
|
9030
|
+
"version": "11.14.1-19.6462",
|
|
9031
|
+
"integrity": "sha512-Ab1wLtbHV0TCmav5zrRBn1TpAjpp30iA75VvksThy9ENYqG/IZKLujxq9rovhrFwzOVjvxrnZu75tbv4CROkoQ==",
|
|
9032
9032
|
"license": "MIT",
|
|
9033
9033
|
"engines": {
|
|
9034
9034
|
"node": ">=18.16.1",
|
|
@@ -9036,8 +9036,8 @@
|
|
|
9036
9036
|
}
|
|
9037
9037
|
},
|
|
9038
9038
|
"node_modules/@wavemaker/custom-widgets-m3": {
|
|
9039
|
-
"version": "11.14.1-
|
|
9040
|
-
"integrity": "sha512-
|
|
9039
|
+
"version": "11.14.1-19.6462",
|
|
9040
|
+
"integrity": "sha512-eFp+hhYeiDDzvs71MixE211Pby7ADLE/wgUP0Bqgu6fw0/edsJKoVh23p6aGMBTvFgNWGYhAD9yM8LxLDKm2lw==",
|
|
9041
9041
|
"license": "ISC"
|
|
9042
9042
|
},
|
|
9043
9043
|
"node_modules/@wavemaker/focus-trap": {
|
|
@@ -9050,8 +9050,8 @@
|
|
|
9050
9050
|
}
|
|
9051
9051
|
},
|
|
9052
9052
|
"node_modules/@wavemaker/foundation-css": {
|
|
9053
|
-
"version": "11.14.1-
|
|
9054
|
-
"integrity": "sha512-
|
|
9053
|
+
"version": "11.14.1-19.6462",
|
|
9054
|
+
"integrity": "sha512-lkTdeYX6nb3U/+5XJHfTTWuInGaSEkVznLozkMWbbjLI/7RjJNs4M9I1DOJ8wEu+GiBz8MUORolvHn/xXLFycw==",
|
|
9055
9055
|
"license": "ISC",
|
|
9056
9056
|
"dependencies": {
|
|
9057
9057
|
"chroma-js": "^3.1.2"
|
|
@@ -9066,8 +9066,8 @@
|
|
|
9066
9066
|
}
|
|
9067
9067
|
},
|
|
9068
9068
|
"node_modules/@wavemaker/variables": {
|
|
9069
|
-
"version": "11.14.1-
|
|
9070
|
-
"integrity": "sha512-
|
|
9069
|
+
"version": "11.14.1-19.6462",
|
|
9070
|
+
"integrity": "sha512-AYf4eAnRbvN7Cg6i/eay3UBMzyFQHQYeDNgk3kuyYvub46SspekdODDjW6JFJer6EiQIzXvLpU5JKXEsJQv+0w==",
|
|
9071
9071
|
"license": "ISC",
|
|
9072
9072
|
"dependencies": {
|
|
9073
9073
|
"@metrichor/jmespath": "^0.3.1",
|
|
@@ -9885,8 +9885,8 @@
|
|
|
9885
9885
|
"license": "MIT"
|
|
9886
9886
|
},
|
|
9887
9887
|
"node_modules/baseline-browser-mapping": {
|
|
9888
|
-
"version": "2.10.
|
|
9889
|
-
"integrity": "sha512-
|
|
9888
|
+
"version": "2.10.13",
|
|
9889
|
+
"integrity": "sha512-BL2sTuHOdy0YT1lYieUxTw/QMtPBC3pmlJC6xk8BBYVv6vcw3SGdKemQ+Xsx9ik2F/lYDO9tqsFQH1r9PFuHKw==",
|
|
9890
9890
|
"dev": true,
|
|
9891
9891
|
"license": "Apache-2.0",
|
|
9892
9892
|
"bin": {
|
|
@@ -10290,8 +10290,8 @@
|
|
|
10290
10290
|
}
|
|
10291
10291
|
},
|
|
10292
10292
|
"node_modules/caniuse-lite": {
|
|
10293
|
-
"version": "1.0.
|
|
10294
|
-
"integrity": "sha512-
|
|
10293
|
+
"version": "1.0.30001784",
|
|
10294
|
+
"integrity": "sha512-WU346nBTklUV9YfUl60fqRbU5ZqyXlqvo1SgigE1OAXK5bFL8LL9q1K7aap3N739l4BvNqnkm3YrGHiY9sfUQw==",
|
|
10295
10295
|
"dev": true,
|
|
10296
10296
|
"funding": [
|
|
10297
10297
|
{
|
|
@@ -11950,8 +11950,8 @@
|
|
|
11950
11950
|
"license": "MIT"
|
|
11951
11951
|
},
|
|
11952
11952
|
"node_modules/electron-to-chromium": {
|
|
11953
|
-
"version": "1.5.
|
|
11954
|
-
"integrity": "sha512
|
|
11953
|
+
"version": "1.5.330",
|
|
11954
|
+
"integrity": "sha512-jFNydB5kFtYUobh4IkWUnXeyDbjf/r9gcUEXe1xcrcUxIGfTdzPXA+ld6zBRbwvgIGVzDll/LTIiDztEtckSnA==",
|
|
11955
11955
|
"dev": true,
|
|
11956
11956
|
"license": "ISC"
|
|
11957
11957
|
},
|
|
@@ -22430,8 +22430,8 @@
|
|
|
22430
22430
|
}
|
|
22431
22431
|
},
|
|
22432
22432
|
"node_modules/undici": {
|
|
22433
|
-
"version": "7.24.
|
|
22434
|
-
"integrity": "sha512-
|
|
22433
|
+
"version": "7.24.7",
|
|
22434
|
+
"integrity": "sha512-H/nlJ/h0ggGC+uRL3ovD+G0i4bqhvsDOpbDv7At5eFLlj2b41L8QliGbnl2H7SnDiYhENphh1tQFJZf+MyfLsQ==",
|
|
22435
22435
|
"dev": true,
|
|
22436
22436
|
"license": "MIT",
|
|
22437
22437
|
"engines": {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wavemaker/angular-app",
|
|
3
|
-
"version": "11.14.1-
|
|
3
|
+
"version": "11.14.1-19.6462",
|
|
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-
|
|
39
|
+
"@wavemaker/custom-widgets-m3": "11.14.1-19.6462",
|
|
40
40
|
"@wavemaker/focus-trap": "1.0.1",
|
|
41
|
-
"@wavemaker/foundation-css": "11.14.1-
|
|
41
|
+
"@wavemaker/foundation-css": "11.14.1-19.6462",
|
|
42
42
|
"@wavemaker/nvd3": "1.8.15",
|
|
43
|
-
"@wavemaker/variables": "11.14.1-
|
|
43
|
+
"@wavemaker/variables": "11.14.1-19.6462",
|
|
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-
|
|
65
|
+
"@wavemaker/app-ng-runtime": "11.14.1-19.6462"
|
|
66
66
|
},
|
|
67
67
|
"devDependencies": {
|
|
68
68
|
"@ampproject/rollup-plugin-closure-compiler": "^0.27.0",
|