@wavemaker/angular-app 11.14.1-21.64731 → 11.14.1-21.64739
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 +66 -86
- package/dependencies/transpilation-web.cjs.js +26 -37
- package/dependency-report.html +1 -1
- package/npm-shrinkwrap.json +770 -925
- package/package-lock.json +770 -925
- package/package.json +5 -5
|
@@ -131320,7 +131320,7 @@ function requireDom$1 () {
|
|
|
131320
131320
|
ExceptionCode.DOMSTRING_SIZE_ERR = ((ExceptionMessage[2]="DOMString size error"),2);
|
|
131321
131321
|
var HIERARCHY_REQUEST_ERR = ExceptionCode.HIERARCHY_REQUEST_ERR = ((ExceptionMessage[3]="Hierarchy request error"),3);
|
|
131322
131322
|
ExceptionCode.WRONG_DOCUMENT_ERR = ((ExceptionMessage[4]="Wrong document"),4);
|
|
131323
|
-
|
|
131323
|
+
ExceptionCode.INVALID_CHARACTER_ERR = ((ExceptionMessage[5]="Invalid character"),5);
|
|
131324
131324
|
ExceptionCode.NO_DATA_ALLOWED_ERR = ((ExceptionMessage[6]="No data allowed"),6);
|
|
131325
131325
|
ExceptionCode.NO_MODIFICATION_ALLOWED_ERR = ((ExceptionMessage[7]="No modification allowed"),7);
|
|
131326
131326
|
var NOT_FOUND_ERR = ExceptionCode.NOT_FOUND_ERR = ((ExceptionMessage[8]="Not found"),8);
|
|
@@ -132401,22 +132401,7 @@ function requireDom$1 () {
|
|
|
132401
132401
|
node.appendData(data);
|
|
132402
132402
|
return node;
|
|
132403
132403
|
},
|
|
132404
|
-
/**
|
|
132405
|
-
* Returns a new CDATASection node whose data is `data`.
|
|
132406
|
-
*
|
|
132407
|
-
* __This implementation differs from the specification:__
|
|
132408
|
-
* - calling this method on an HTML document does not throw `NotSupportedError`.
|
|
132409
|
-
*
|
|
132410
|
-
* @param {string} data
|
|
132411
|
-
* @returns {CDATASection}
|
|
132412
|
-
* @throws DOMException with code `INVALID_CHARACTER_ERR` if `data` contains `"]]>"`.
|
|
132413
|
-
* @see https://developer.mozilla.org/en-US/docs/Web/API/Document/createCDATASection
|
|
132414
|
-
* @see https://dom.spec.whatwg.org/#dom-document-createcdatasection
|
|
132415
|
-
*/
|
|
132416
132404
|
createCDATASection : function(data){
|
|
132417
|
-
if (data.indexOf(']]>') !== -1) {
|
|
132418
|
-
throw new DOMException(INVALID_CHARACTER_ERR, 'data contains "]]>"');
|
|
132419
|
-
}
|
|
132420
132405
|
var node = new CDATASection();
|
|
132421
132406
|
node.ownerDocument = this;
|
|
132422
132407
|
node.appendData(data);
|
|
@@ -132674,20 +132659,6 @@ function requireDom$1 () {
|
|
|
132674
132659
|
ProcessingInstruction.prototype.nodeType = PROCESSING_INSTRUCTION_NODE;
|
|
132675
132660
|
_extends(ProcessingInstruction,Node);
|
|
132676
132661
|
function XMLSerializer(){}
|
|
132677
|
-
/**
|
|
132678
|
-
* Returns the result of serializing `node` to XML.
|
|
132679
|
-
*
|
|
132680
|
-
* __This implementation differs from the specification:__
|
|
132681
|
-
* - CDATASection nodes whose data contains `]]>` are serialized by splitting the section
|
|
132682
|
-
* at each `]]>` occurrence (following W3C DOM Level 3 Core `split-cdata-sections`
|
|
132683
|
-
* default behaviour). A configurable option is not yet implemented.
|
|
132684
|
-
*
|
|
132685
|
-
* @param {Node} node
|
|
132686
|
-
* @param {boolean} [isHtml]
|
|
132687
|
-
* @param {function} [nodeFilter]
|
|
132688
|
-
* @returns {string}
|
|
132689
|
-
* @see https://html.spec.whatwg.org/#dom-xmlserializer-serializetostring
|
|
132690
|
-
*/
|
|
132691
132662
|
XMLSerializer.prototype.serializeToString = function(node,isHtml,nodeFilter){
|
|
132692
132663
|
return nodeSerializeToString.call(node,isHtml,nodeFilter);
|
|
132693
132664
|
};
|
|
@@ -132906,7 +132877,7 @@ function requireDom$1 () {
|
|
|
132906
132877
|
.replace(/[<&>]/g,_xmlEncoder)
|
|
132907
132878
|
);
|
|
132908
132879
|
case CDATA_SECTION_NODE:
|
|
132909
|
-
return buf.push('<![CDATA[',
|
|
132880
|
+
return buf.push( '<![CDATA[',node.data,']]>');
|
|
132910
132881
|
case COMMENT_NODE:
|
|
132911
132882
|
return buf.push( "<!--",node.data,"-->");
|
|
132912
132883
|
case DOCUMENT_TYPE_NODE:
|
|
@@ -135886,7 +135857,7 @@ function requireSax$1 () {
|
|
|
135886
135857
|
function parseInstruction(source,start,domBuilder){
|
|
135887
135858
|
var end = source.indexOf('?>',start);
|
|
135888
135859
|
if(end){
|
|
135889
|
-
var match = source.substring(start,end).match(/^<\?(\S*)\s*([\s\S]*?)
|
|
135860
|
+
var match = source.substring(start,end).match(/^<\?(\S*)\s*([\s\S]*?)\s*$/);
|
|
135890
135861
|
if(match){
|
|
135891
135862
|
match[0].length;
|
|
135892
135863
|
domBuilder.processingInstruction(match[1], match[2]) ;
|
|
@@ -142773,7 +142744,7 @@ function requireMomentTimezone$1 () {
|
|
|
142773
142744
|
hasRequiredMomentTimezone$1 = 1;
|
|
142774
142745
|
(function (module) {
|
|
142775
142746
|
//! moment-timezone.js
|
|
142776
|
-
//! version : 0.6.
|
|
142747
|
+
//! version : 0.6.0
|
|
142777
142748
|
//! Copyright (c) JS Foundation and other contributors
|
|
142778
142749
|
//! license : MIT
|
|
142779
142750
|
//! github.com/moment/moment-timezone
|
|
@@ -142799,7 +142770,7 @@ function requireMomentTimezone$1 () {
|
|
|
142799
142770
|
// return moment;
|
|
142800
142771
|
// }
|
|
142801
142772
|
|
|
142802
|
-
var VERSION = "0.6.
|
|
142773
|
+
var VERSION = "0.6.0",
|
|
142803
142774
|
zones = {},
|
|
142804
142775
|
links = {},
|
|
142805
142776
|
countries = {},
|
|
@@ -147912,13 +147883,13 @@ const FIRST_TIME_WATCH$1 = {};
|
|
|
147912
147883
|
Object.freeze(FIRST_TIME_WATCH$1);
|
|
147913
147884
|
const arrayConsumer$1 = (listenerFn, restExpr, newVal, oldVal) => {
|
|
147914
147885
|
let data = newVal, formattedData;
|
|
147915
|
-
if (isArray
|
|
147886
|
+
if (_.isArray(data)) {
|
|
147916
147887
|
formattedData = data.map(function (datum) {
|
|
147917
147888
|
return findValueOf$1(datum, restExpr);
|
|
147918
147889
|
});
|
|
147919
147890
|
// If resulting structure is an array of array, flatten it
|
|
147920
|
-
if (isArray
|
|
147921
|
-
formattedData = flatten
|
|
147891
|
+
if (_.isArray(formattedData[0])) {
|
|
147892
|
+
formattedData = _.flatten(formattedData);
|
|
147922
147893
|
}
|
|
147923
147894
|
listenerFn(formattedData, oldVal);
|
|
147924
147895
|
}
|
|
@@ -147963,6 +147934,19 @@ const $watch$1 = (expr, $scope, $locals, listener, identifier = watchIdGenerator
|
|
|
147963
147934
|
};
|
|
147964
147935
|
const $unwatch$1 = identifier => registry$1.delete(identifier);
|
|
147965
147936
|
window.watchRegistry = registry$1;
|
|
147937
|
+
window.__WM_DEBUG_WATCHERS__ = false;
|
|
147938
|
+
/*export const $invokeWatchers = (force?: boolean, ignoreMuted?: boolean) => {
|
|
147939
|
+
if (force) {
|
|
147940
|
+
triggerWatchers(ignoreMuted);
|
|
147941
|
+
} else {
|
|
147942
|
+
|
|
147943
|
+
if (skipWatchers) {
|
|
147944
|
+
skipWatchers = false;
|
|
147945
|
+
return;
|
|
147946
|
+
}
|
|
147947
|
+
debouncedTriggerWatchers();
|
|
147948
|
+
}
|
|
147949
|
+
};*/
|
|
147966
147950
|
const $appDigest$1 = (() => {
|
|
147967
147951
|
return (force) => {
|
|
147968
147952
|
{
|
|
@@ -148025,8 +148009,8 @@ var Operation$1;
|
|
|
148025
148009
|
const DataSource$1 = {
|
|
148026
148010
|
Operation: Operation$1
|
|
148027
148011
|
};
|
|
148028
|
-
class App {
|
|
148029
|
-
}
|
|
148012
|
+
let App$1 = class App {
|
|
148013
|
+
};
|
|
148030
148014
|
let AbstractI18nService$1 = class AbstractI18nService {
|
|
148031
148015
|
};
|
|
148032
148016
|
|
|
@@ -148044,6 +148028,7 @@ const REGEX$1 = {
|
|
|
148044
148028
|
SUPPORTED_AUDIO_FORMAT: /\.(mp3|ogg|webm|wma|3gp|wav|m4a)$/i,
|
|
148045
148029
|
SUPPORTED_VIDEO_FORMAT: /\.(mp4|ogg|webm|wmv|mpeg|mpg|avi|mov)$/i,
|
|
148046
148030
|
VALID_WEB_URL: /^(http[s]?:\/\/)(www\.){0,1}[a-zA-Z0-9=:?\/\.\-]+(\.[a-zA-Z]{2,5}[\.]{0,1})?/,
|
|
148031
|
+
VALID_IMAGE_URL: /^(https?|blob|data|file|ftp):/i,
|
|
148047
148032
|
REPLACE_PATTERN: /\$\{([^\}]+)\}/g,
|
|
148048
148033
|
DATA_URL: /^\s*data:([a-z]+\/[a-z0-9-+.]+(;[a-z-]+=[a-z0-9-]+)?)?(;base64)?,([a-z0-9!$&',()*+;=\-._~:@\/?%\s]*)\s*$/i,
|
|
148049
148034
|
ISO_DATE_FORMAT: /(\d{4}-\d{2}-\d{2})T(\d{2}:\d{2}:\d{2})(\.\d+)?([+-]\d{2}:?\d{2}|Z)$/
|
|
@@ -148266,6 +148251,9 @@ const isVideoFile$1 = (fileName) => {
|
|
|
148266
148251
|
const isValidWebURL$1 = (url) => {
|
|
148267
148252
|
return (REGEX$1.VALID_WEB_URL).test(url);
|
|
148268
148253
|
};
|
|
148254
|
+
const isValidImageUrl$1 = (url) => {
|
|
148255
|
+
return (REGEX$1.VALID_IMAGE_URL).test(url?.trim());
|
|
148256
|
+
};
|
|
148269
148257
|
/*This function returns the url to the resource after checking the validity of url*/
|
|
148270
148258
|
const getResourceURL$1 = (urlString) => {
|
|
148271
148259
|
return urlString;
|
|
@@ -149519,6 +149507,7 @@ var Utils$1 = /*#__PURE__*/Object.freeze({
|
|
|
149519
149507
|
isPageable: isPageable$1,
|
|
149520
149508
|
isSafari: isSafari$1,
|
|
149521
149509
|
isTablet: isTablet$1,
|
|
149510
|
+
isValidImageUrl: isValidImageUrl$1,
|
|
149522
149511
|
isValidWebURL: isValidWebURL$1,
|
|
149523
149512
|
isVideoFile: isVideoFile$1,
|
|
149524
149513
|
loadScript: loadScript$1,
|
|
@@ -150753,14 +150742,14 @@ class ToDatePipe extends WmPipe {
|
|
|
150753
150742
|
}
|
|
150754
150743
|
return this.returnFn('', arguments, this.app.Variables);
|
|
150755
150744
|
}
|
|
150756
|
-
constructor(datePipe, i18nService, customPipeManager) {
|
|
150745
|
+
constructor(datePipe, i18nService, app, customPipeManager) {
|
|
150757
150746
|
super('toDate', customPipeManager);
|
|
150758
150747
|
this.datePipe = datePipe;
|
|
150759
150748
|
this.i18nService = i18nService;
|
|
150749
|
+
this.app = app;
|
|
150760
150750
|
this.customPipeManager = customPipeManager;
|
|
150761
|
-
this.app = inject(App);
|
|
150762
150751
|
}
|
|
150763
|
-
static { this.ɵfac = function ToDatePipe_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || ToDatePipe)(ɵɵdirectiveInject(DatePipe, 16), ɵɵdirectiveInject(AbstractI18nService$1, 16), ɵɵdirectiveInject(CustomPipeManager$1, 16)); }; }
|
|
150752
|
+
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)); }; }
|
|
150764
150753
|
static { this.ɵpipe = /*@__PURE__*/ ɵɵdefinePipe({ name: "toDate", type: ToDatePipe, pure: true, standalone: true }); }
|
|
150765
150754
|
}
|
|
150766
150755
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && setClassMetadata(ToDatePipe, [{
|
|
@@ -150769,7 +150758,7 @@ class ToDatePipe extends WmPipe {
|
|
|
150769
150758
|
standalone: true,
|
|
150770
150759
|
name: 'toDate'
|
|
150771
150760
|
}]
|
|
150772
|
-
}], () => [{ type: DatePipe }, { type: AbstractI18nService$1 }, { type: CustomPipeManager$1 }], null); })();
|
|
150761
|
+
}], () => [{ type: DatePipe }, { type: AbstractI18nService$1 }, { type: App$1 }, { type: CustomPipeManager$1 }], null); })();
|
|
150773
150762
|
class ToNumberPipe {
|
|
150774
150763
|
transform(data, fracSize) {
|
|
150775
150764
|
if (fracSize && !String(fracSize).match(/^(\d+)?\.((\d+)(-(\d+))?)?$/)) {
|
|
@@ -150857,9 +150846,9 @@ class SuffixPipe {
|
|
|
150857
150846
|
* Custom pipe: It is work as interceptor between the user custom pipe function and angular pipe
|
|
150858
150847
|
*/
|
|
150859
150848
|
class CustomPipe {
|
|
150860
|
-
constructor(custmeUserPipe) {
|
|
150849
|
+
constructor(app, custmeUserPipe) {
|
|
150850
|
+
this.app = app;
|
|
150861
150851
|
this.custmeUserPipe = custmeUserPipe;
|
|
150862
|
-
this.app = inject(App);
|
|
150863
150852
|
}
|
|
150864
150853
|
transform(data, pipename) {
|
|
150865
150854
|
let argumentArr = [];
|
|
@@ -150879,7 +150868,7 @@ class CustomPipe {
|
|
|
150879
150868
|
return data;
|
|
150880
150869
|
}
|
|
150881
150870
|
}
|
|
150882
|
-
static { this.ɵfac = function CustomPipe_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || CustomPipe)(ɵɵdirectiveInject(CustomPipeManager$1, 16)); }; }
|
|
150871
|
+
static { this.ɵfac = function CustomPipe_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || CustomPipe)(ɵɵdirectiveInject(App$1, 16), ɵɵdirectiveInject(CustomPipeManager$1, 16)); }; }
|
|
150883
150872
|
static { this.ɵpipe = /*@__PURE__*/ ɵɵdefinePipe({ name: "custom", type: CustomPipe, pure: true, standalone: true }); }
|
|
150884
150873
|
}
|
|
150885
150874
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && setClassMetadata(CustomPipe, [{
|
|
@@ -150888,7 +150877,7 @@ class CustomPipe {
|
|
|
150888
150877
|
standalone: true,
|
|
150889
150878
|
name: 'custom'
|
|
150890
150879
|
}]
|
|
150891
|
-
}], () => [{ type: CustomPipeManager$1 }], null); })();
|
|
150880
|
+
}], () => [{ type: App$1 }, { type: CustomPipeManager$1 }], null); })();
|
|
150892
150881
|
class TimeFromNowPipe {
|
|
150893
150882
|
transform(data) {
|
|
150894
150883
|
let timestamp;
|
|
@@ -188056,7 +188045,7 @@ function requireDom () {
|
|
|
188056
188045
|
ExceptionCode.DOMSTRING_SIZE_ERR = ((ExceptionMessage[2]="DOMString size error"),2);
|
|
188057
188046
|
var HIERARCHY_REQUEST_ERR = ExceptionCode.HIERARCHY_REQUEST_ERR = ((ExceptionMessage[3]="Hierarchy request error"),3);
|
|
188058
188047
|
ExceptionCode.WRONG_DOCUMENT_ERR = ((ExceptionMessage[4]="Wrong document"),4);
|
|
188059
|
-
|
|
188048
|
+
ExceptionCode.INVALID_CHARACTER_ERR = ((ExceptionMessage[5]="Invalid character"),5);
|
|
188060
188049
|
ExceptionCode.NO_DATA_ALLOWED_ERR = ((ExceptionMessage[6]="No data allowed"),6);
|
|
188061
188050
|
ExceptionCode.NO_MODIFICATION_ALLOWED_ERR = ((ExceptionMessage[7]="No modification allowed"),7);
|
|
188062
188051
|
var NOT_FOUND_ERR = ExceptionCode.NOT_FOUND_ERR = ((ExceptionMessage[8]="Not found"),8);
|
|
@@ -189137,22 +189126,7 @@ function requireDom () {
|
|
|
189137
189126
|
node.appendData(data);
|
|
189138
189127
|
return node;
|
|
189139
189128
|
},
|
|
189140
|
-
/**
|
|
189141
|
-
* Returns a new CDATASection node whose data is `data`.
|
|
189142
|
-
*
|
|
189143
|
-
* __This implementation differs from the specification:__
|
|
189144
|
-
* - calling this method on an HTML document does not throw `NotSupportedError`.
|
|
189145
|
-
*
|
|
189146
|
-
* @param {string} data
|
|
189147
|
-
* @returns {CDATASection}
|
|
189148
|
-
* @throws DOMException with code `INVALID_CHARACTER_ERR` if `data` contains `"]]>"`.
|
|
189149
|
-
* @see https://developer.mozilla.org/en-US/docs/Web/API/Document/createCDATASection
|
|
189150
|
-
* @see https://dom.spec.whatwg.org/#dom-document-createcdatasection
|
|
189151
|
-
*/
|
|
189152
189129
|
createCDATASection : function(data){
|
|
189153
|
-
if (data.indexOf(']]>') !== -1) {
|
|
189154
|
-
throw new DOMException(INVALID_CHARACTER_ERR, 'data contains "]]>"');
|
|
189155
|
-
}
|
|
189156
189130
|
var node = new CDATASection();
|
|
189157
189131
|
node.ownerDocument = this;
|
|
189158
189132
|
node.appendData(data);
|
|
@@ -189410,20 +189384,6 @@ function requireDom () {
|
|
|
189410
189384
|
ProcessingInstruction.prototype.nodeType = PROCESSING_INSTRUCTION_NODE;
|
|
189411
189385
|
_extends(ProcessingInstruction,Node);
|
|
189412
189386
|
function XMLSerializer(){}
|
|
189413
|
-
/**
|
|
189414
|
-
* Returns the result of serializing `node` to XML.
|
|
189415
|
-
*
|
|
189416
|
-
* __This implementation differs from the specification:__
|
|
189417
|
-
* - CDATASection nodes whose data contains `]]>` are serialized by splitting the section
|
|
189418
|
-
* at each `]]>` occurrence (following W3C DOM Level 3 Core `split-cdata-sections`
|
|
189419
|
-
* default behaviour). A configurable option is not yet implemented.
|
|
189420
|
-
*
|
|
189421
|
-
* @param {Node} node
|
|
189422
|
-
* @param {boolean} [isHtml]
|
|
189423
|
-
* @param {function} [nodeFilter]
|
|
189424
|
-
* @returns {string}
|
|
189425
|
-
* @see https://html.spec.whatwg.org/#dom-xmlserializer-serializetostring
|
|
189426
|
-
*/
|
|
189427
189387
|
XMLSerializer.prototype.serializeToString = function(node,isHtml,nodeFilter){
|
|
189428
189388
|
return nodeSerializeToString.call(node,isHtml,nodeFilter);
|
|
189429
189389
|
};
|
|
@@ -189642,7 +189602,7 @@ function requireDom () {
|
|
|
189642
189602
|
.replace(/[<&>]/g,_xmlEncoder)
|
|
189643
189603
|
);
|
|
189644
189604
|
case CDATA_SECTION_NODE:
|
|
189645
|
-
return buf.push('<![CDATA[',
|
|
189605
|
+
return buf.push( '<![CDATA[',node.data,']]>');
|
|
189646
189606
|
case COMMENT_NODE:
|
|
189647
189607
|
return buf.push( "<!--",node.data,"-->");
|
|
189648
189608
|
case DOCUMENT_TYPE_NODE:
|
|
@@ -192622,7 +192582,7 @@ function requireSax () {
|
|
|
192622
192582
|
function parseInstruction(source,start,domBuilder){
|
|
192623
192583
|
var end = source.indexOf('?>',start);
|
|
192624
192584
|
if(end){
|
|
192625
|
-
var match = source.substring(start,end).match(/^<\?(\S*)\s*([\s\S]*?)
|
|
192585
|
+
var match = source.substring(start,end).match(/^<\?(\S*)\s*([\s\S]*?)\s*$/);
|
|
192626
192586
|
if(match){
|
|
192627
192587
|
match[0].length;
|
|
192628
192588
|
domBuilder.processingInstruction(match[1], match[2]) ;
|
|
@@ -199509,7 +199469,7 @@ function requireMomentTimezone () {
|
|
|
199509
199469
|
hasRequiredMomentTimezone = 1;
|
|
199510
199470
|
(function (module) {
|
|
199511
199471
|
//! moment-timezone.js
|
|
199512
|
-
//! version : 0.6.
|
|
199472
|
+
//! version : 0.6.0
|
|
199513
199473
|
//! Copyright (c) JS Foundation and other contributors
|
|
199514
199474
|
//! license : MIT
|
|
199515
199475
|
//! github.com/moment/moment-timezone
|
|
@@ -199535,7 +199495,7 @@ function requireMomentTimezone () {
|
|
|
199535
199495
|
// return moment;
|
|
199536
199496
|
// }
|
|
199537
199497
|
|
|
199538
|
-
var VERSION = "0.6.
|
|
199498
|
+
var VERSION = "0.6.0",
|
|
199539
199499
|
zones = {},
|
|
199540
199500
|
links = {},
|
|
199541
199501
|
countries = {},
|
|
@@ -203583,13 +203543,13 @@ const FIRST_TIME_WATCH = {};
|
|
|
203583
203543
|
Object.freeze(FIRST_TIME_WATCH);
|
|
203584
203544
|
const arrayConsumer = (listenerFn, restExpr, newVal, oldVal) => {
|
|
203585
203545
|
let data = newVal, formattedData;
|
|
203586
|
-
if (isArray(data)) {
|
|
203546
|
+
if (_.isArray(data)) {
|
|
203587
203547
|
formattedData = data.map(function (datum) {
|
|
203588
203548
|
return findValueOf(datum, restExpr);
|
|
203589
203549
|
});
|
|
203590
203550
|
// If resulting structure is an array of array, flatten it
|
|
203591
|
-
if (isArray(formattedData[0])) {
|
|
203592
|
-
formattedData = flatten(formattedData);
|
|
203551
|
+
if (_.isArray(formattedData[0])) {
|
|
203552
|
+
formattedData = _.flatten(formattedData);
|
|
203593
203553
|
}
|
|
203594
203554
|
listenerFn(formattedData, oldVal);
|
|
203595
203555
|
}
|
|
@@ -203634,6 +203594,19 @@ const $watch = (expr, $scope, $locals, listener, identifier = watchIdGenerator.n
|
|
|
203634
203594
|
};
|
|
203635
203595
|
const $unwatch = identifier => registry.delete(identifier);
|
|
203636
203596
|
window.watchRegistry = registry;
|
|
203597
|
+
window.__WM_DEBUG_WATCHERS__ = false;
|
|
203598
|
+
/*export const $invokeWatchers = (force?: boolean, ignoreMuted?: boolean) => {
|
|
203599
|
+
if (force) {
|
|
203600
|
+
triggerWatchers(ignoreMuted);
|
|
203601
|
+
} else {
|
|
203602
|
+
|
|
203603
|
+
if (skipWatchers) {
|
|
203604
|
+
skipWatchers = false;
|
|
203605
|
+
return;
|
|
203606
|
+
}
|
|
203607
|
+
debouncedTriggerWatchers();
|
|
203608
|
+
}
|
|
203609
|
+
};*/
|
|
203637
203610
|
const $appDigest = (() => {
|
|
203638
203611
|
return (force) => {
|
|
203639
203612
|
{
|
|
@@ -203696,6 +203669,8 @@ var Operation;
|
|
|
203696
203669
|
const DataSource = {
|
|
203697
203670
|
Operation
|
|
203698
203671
|
};
|
|
203672
|
+
class App {
|
|
203673
|
+
}
|
|
203699
203674
|
class AbstractI18nService {
|
|
203700
203675
|
}
|
|
203701
203676
|
|
|
@@ -203713,6 +203688,7 @@ const REGEX = {
|
|
|
203713
203688
|
SUPPORTED_AUDIO_FORMAT: /\.(mp3|ogg|webm|wma|3gp|wav|m4a)$/i,
|
|
203714
203689
|
SUPPORTED_VIDEO_FORMAT: /\.(mp4|ogg|webm|wmv|mpeg|mpg|avi|mov)$/i,
|
|
203715
203690
|
VALID_WEB_URL: /^(http[s]?:\/\/)(www\.){0,1}[a-zA-Z0-9=:?\/\.\-]+(\.[a-zA-Z]{2,5}[\.]{0,1})?/,
|
|
203691
|
+
VALID_IMAGE_URL: /^(https?|blob|data|file|ftp):/i,
|
|
203716
203692
|
REPLACE_PATTERN: /\$\{([^\}]+)\}/g,
|
|
203717
203693
|
DATA_URL: /^\s*data:([a-z]+\/[a-z0-9-+.]+(;[a-z-]+=[a-z0-9-]+)?)?(;base64)?,([a-z0-9!$&',()*+;=\-._~:@\/?%\s]*)\s*$/i,
|
|
203718
203694
|
ISO_DATE_FORMAT: /(\d{4}-\d{2}-\d{2})T(\d{2}:\d{2}:\d{2})(\.\d+)?([+-]\d{2}:?\d{2}|Z)$/
|
|
@@ -203935,6 +203911,9 @@ const isVideoFile = (fileName) => {
|
|
|
203935
203911
|
const isValidWebURL = (url) => {
|
|
203936
203912
|
return (REGEX.VALID_WEB_URL).test(url);
|
|
203937
203913
|
};
|
|
203914
|
+
const isValidImageUrl = (url) => {
|
|
203915
|
+
return (REGEX.VALID_IMAGE_URL).test(url?.trim());
|
|
203916
|
+
};
|
|
203938
203917
|
/*This function returns the url to the resource after checking the validity of url*/
|
|
203939
203918
|
const getResourceURL = (urlString) => {
|
|
203940
203919
|
return urlString;
|
|
@@ -205188,6 +205167,7 @@ var Utils = /*#__PURE__*/Object.freeze({
|
|
|
205188
205167
|
isPageable: isPageable,
|
|
205189
205168
|
isSafari: isSafari,
|
|
205190
205169
|
isTablet: isTablet,
|
|
205170
|
+
isValidImageUrl: isValidImageUrl,
|
|
205191
205171
|
isValidWebURL: isValidWebURL,
|
|
205192
205172
|
isVideoFile: isVideoFile,
|
|
205193
205173
|
loadScript: loadScript,
|
|
@@ -208027,7 +208007,7 @@ class PipeProvider {
|
|
|
208027
208007
|
this.preparePipeMeta(CurrencyPipe$1, 'currency', true, [this._locale]),
|
|
208028
208008
|
this.preparePipeMeta(DatePipe$1, 'date', true, [this._locale]),
|
|
208029
208009
|
this.preparePipeMeta(ToDatePipe, 'toDate', true, [
|
|
208030
|
-
new DatePipe$1(this._locale), undefined, this.injector.get(CustomPipeManager)
|
|
208010
|
+
new DatePipe$1(this._locale), undefined, this.injector.get(App), this.injector.get(CustomPipeManager)
|
|
208031
208011
|
]),
|
|
208032
208012
|
this.preparePipeMeta(ToNumberPipe, 'toNumber', true, [
|
|
208033
208013
|
new DecimalPipe$1(this._locale),
|
|
@@ -208044,7 +208024,7 @@ class PipeProvider {
|
|
|
208044
208024
|
new DecimalPipe$1(this._locale)
|
|
208045
208025
|
]),
|
|
208046
208026
|
this.preparePipeMeta(StringToNumberPipe, 'stringToNumber', true),
|
|
208047
|
-
this.preparePipeMeta(CustomPipe, 'custom', true, [this.injector.get(CustomPipeManager)]),
|
|
208027
|
+
this.preparePipeMeta(CustomPipe, 'custom', true, [this.injector.get(App), this.injector.get(CustomPipeManager)]),
|
|
208048
208028
|
this.preparePipeMeta(TrustAsPipe, 'trustAs', true, [this.domSanitizer]),
|
|
208049
208029
|
this.preparePipeMeta(SanitizePipe, 'sanitize', true, [this.domSanitizer]),
|
|
208050
208030
|
this.preparePipeMeta(TemplateReplacePipe, 'templateReplace', true),
|
|
@@ -37843,7 +37843,7 @@ function requireDom () {
|
|
|
37843
37843
|
ExceptionCode.DOMSTRING_SIZE_ERR = ((ExceptionMessage[2]="DOMString size error"),2);
|
|
37844
37844
|
var HIERARCHY_REQUEST_ERR = ExceptionCode.HIERARCHY_REQUEST_ERR = ((ExceptionMessage[3]="Hierarchy request error"),3);
|
|
37845
37845
|
ExceptionCode.WRONG_DOCUMENT_ERR = ((ExceptionMessage[4]="Wrong document"),4);
|
|
37846
|
-
|
|
37846
|
+
ExceptionCode.INVALID_CHARACTER_ERR = ((ExceptionMessage[5]="Invalid character"),5);
|
|
37847
37847
|
ExceptionCode.NO_DATA_ALLOWED_ERR = ((ExceptionMessage[6]="No data allowed"),6);
|
|
37848
37848
|
ExceptionCode.NO_MODIFICATION_ALLOWED_ERR = ((ExceptionMessage[7]="No modification allowed"),7);
|
|
37849
37849
|
var NOT_FOUND_ERR = ExceptionCode.NOT_FOUND_ERR = ((ExceptionMessage[8]="Not found"),8);
|
|
@@ -38924,22 +38924,7 @@ function requireDom () {
|
|
|
38924
38924
|
node.appendData(data);
|
|
38925
38925
|
return node;
|
|
38926
38926
|
},
|
|
38927
|
-
/**
|
|
38928
|
-
* Returns a new CDATASection node whose data is `data`.
|
|
38929
|
-
*
|
|
38930
|
-
* __This implementation differs from the specification:__
|
|
38931
|
-
* - calling this method on an HTML document does not throw `NotSupportedError`.
|
|
38932
|
-
*
|
|
38933
|
-
* @param {string} data
|
|
38934
|
-
* @returns {CDATASection}
|
|
38935
|
-
* @throws DOMException with code `INVALID_CHARACTER_ERR` if `data` contains `"]]>"`.
|
|
38936
|
-
* @see https://developer.mozilla.org/en-US/docs/Web/API/Document/createCDATASection
|
|
38937
|
-
* @see https://dom.spec.whatwg.org/#dom-document-createcdatasection
|
|
38938
|
-
*/
|
|
38939
38927
|
createCDATASection : function(data){
|
|
38940
|
-
if (data.indexOf(']]>') !== -1) {
|
|
38941
|
-
throw new DOMException(INVALID_CHARACTER_ERR, 'data contains "]]>"');
|
|
38942
|
-
}
|
|
38943
38928
|
var node = new CDATASection();
|
|
38944
38929
|
node.ownerDocument = this;
|
|
38945
38930
|
node.appendData(data);
|
|
@@ -39197,20 +39182,6 @@ function requireDom () {
|
|
|
39197
39182
|
ProcessingInstruction.prototype.nodeType = PROCESSING_INSTRUCTION_NODE;
|
|
39198
39183
|
_extends(ProcessingInstruction,Node);
|
|
39199
39184
|
function XMLSerializer(){}
|
|
39200
|
-
/**
|
|
39201
|
-
* Returns the result of serializing `node` to XML.
|
|
39202
|
-
*
|
|
39203
|
-
* __This implementation differs from the specification:__
|
|
39204
|
-
* - CDATASection nodes whose data contains `]]>` are serialized by splitting the section
|
|
39205
|
-
* at each `]]>` occurrence (following W3C DOM Level 3 Core `split-cdata-sections`
|
|
39206
|
-
* default behaviour). A configurable option is not yet implemented.
|
|
39207
|
-
*
|
|
39208
|
-
* @param {Node} node
|
|
39209
|
-
* @param {boolean} [isHtml]
|
|
39210
|
-
* @param {function} [nodeFilter]
|
|
39211
|
-
* @returns {string}
|
|
39212
|
-
* @see https://html.spec.whatwg.org/#dom-xmlserializer-serializetostring
|
|
39213
|
-
*/
|
|
39214
39185
|
XMLSerializer.prototype.serializeToString = function(node,isHtml,nodeFilter){
|
|
39215
39186
|
return nodeSerializeToString.call(node,isHtml,nodeFilter);
|
|
39216
39187
|
};
|
|
@@ -39429,7 +39400,7 @@ function requireDom () {
|
|
|
39429
39400
|
.replace(/[<&>]/g,_xmlEncoder)
|
|
39430
39401
|
);
|
|
39431
39402
|
case CDATA_SECTION_NODE:
|
|
39432
|
-
return buf.push('<![CDATA[',
|
|
39403
|
+
return buf.push( '<![CDATA[',node.data,']]>');
|
|
39433
39404
|
case COMMENT_NODE:
|
|
39434
39405
|
return buf.push( "<!--",node.data,"-->");
|
|
39435
39406
|
case DOCUMENT_TYPE_NODE:
|
|
@@ -42409,7 +42380,7 @@ function requireSax () {
|
|
|
42409
42380
|
function parseInstruction(source,start,domBuilder){
|
|
42410
42381
|
var end = source.indexOf('?>',start);
|
|
42411
42382
|
if(end){
|
|
42412
|
-
var match = source.substring(start,end).match(/^<\?(\S*)\s*([\s\S]*?)
|
|
42383
|
+
var match = source.substring(start,end).match(/^<\?(\S*)\s*([\s\S]*?)\s*$/);
|
|
42413
42384
|
if(match){
|
|
42414
42385
|
match[0].length;
|
|
42415
42386
|
domBuilder.processingInstruction(match[1], match[2]) ;
|
|
@@ -49296,7 +49267,7 @@ function requireMomentTimezone () {
|
|
|
49296
49267
|
hasRequiredMomentTimezone = 1;
|
|
49297
49268
|
(function (module) {
|
|
49298
49269
|
//! moment-timezone.js
|
|
49299
|
-
//! version : 0.6.
|
|
49270
|
+
//! version : 0.6.0
|
|
49300
49271
|
//! Copyright (c) JS Foundation and other contributors
|
|
49301
49272
|
//! license : MIT
|
|
49302
49273
|
//! github.com/moment/moment-timezone
|
|
@@ -49322,7 +49293,7 @@ function requireMomentTimezone () {
|
|
|
49322
49293
|
// return moment;
|
|
49323
49294
|
// }
|
|
49324
49295
|
|
|
49325
|
-
var VERSION = "0.6.
|
|
49296
|
+
var VERSION = "0.6.0",
|
|
49326
49297
|
zones = {},
|
|
49327
49298
|
links = {},
|
|
49328
49299
|
countries = {},
|
|
@@ -100320,13 +100291,13 @@ const FIRST_TIME_WATCH = {};
|
|
|
100320
100291
|
Object.freeze(FIRST_TIME_WATCH);
|
|
100321
100292
|
const arrayConsumer = (listenerFn, restExpr, newVal, oldVal) => {
|
|
100322
100293
|
let data = newVal, formattedData;
|
|
100323
|
-
if (isArray(data)) {
|
|
100294
|
+
if (_.isArray(data)) {
|
|
100324
100295
|
formattedData = data.map(function (datum) {
|
|
100325
100296
|
return findValueOf(datum, restExpr);
|
|
100326
100297
|
});
|
|
100327
100298
|
// If resulting structure is an array of array, flatten it
|
|
100328
|
-
if (isArray(formattedData[0])) {
|
|
100329
|
-
formattedData = flatten
|
|
100299
|
+
if (_.isArray(formattedData[0])) {
|
|
100300
|
+
formattedData = _.flatten(formattedData);
|
|
100330
100301
|
}
|
|
100331
100302
|
listenerFn(formattedData, oldVal);
|
|
100332
100303
|
}
|
|
@@ -100371,6 +100342,19 @@ const $watch = (expr, $scope, $locals, listener, identifier = watchIdGenerator.n
|
|
|
100371
100342
|
};
|
|
100372
100343
|
const $unwatch = identifier => registry.delete(identifier);
|
|
100373
100344
|
window.watchRegistry = registry;
|
|
100345
|
+
window.__WM_DEBUG_WATCHERS__ = false;
|
|
100346
|
+
/*export const $invokeWatchers = (force?: boolean, ignoreMuted?: boolean) => {
|
|
100347
|
+
if (force) {
|
|
100348
|
+
triggerWatchers(ignoreMuted);
|
|
100349
|
+
} else {
|
|
100350
|
+
|
|
100351
|
+
if (skipWatchers) {
|
|
100352
|
+
skipWatchers = false;
|
|
100353
|
+
return;
|
|
100354
|
+
}
|
|
100355
|
+
debouncedTriggerWatchers();
|
|
100356
|
+
}
|
|
100357
|
+
};*/
|
|
100374
100358
|
const $appDigest = (() => {
|
|
100375
100359
|
return (force) => {
|
|
100376
100360
|
{
|
|
@@ -100448,6 +100432,7 @@ const REGEX = {
|
|
|
100448
100432
|
SUPPORTED_AUDIO_FORMAT: /\.(mp3|ogg|webm|wma|3gp|wav|m4a)$/i,
|
|
100449
100433
|
SUPPORTED_VIDEO_FORMAT: /\.(mp4|ogg|webm|wmv|mpeg|mpg|avi|mov)$/i,
|
|
100450
100434
|
VALID_WEB_URL: /^(http[s]?:\/\/)(www\.){0,1}[a-zA-Z0-9=:?\/\.\-]+(\.[a-zA-Z]{2,5}[\.]{0,1})?/,
|
|
100435
|
+
VALID_IMAGE_URL: /^(https?|blob|data|file|ftp):/i,
|
|
100451
100436
|
REPLACE_PATTERN: /\$\{([^\}]+)\}/g,
|
|
100452
100437
|
DATA_URL: /^\s*data:([a-z]+\/[a-z0-9-+.]+(;[a-z-]+=[a-z0-9-]+)?)?(;base64)?,([a-z0-9!$&',()*+;=\-._~:@\/?%\s]*)\s*$/i,
|
|
100453
100438
|
ISO_DATE_FORMAT: /(\d{4}-\d{2}-\d{2})T(\d{2}:\d{2}:\d{2})(\.\d+)?([+-]\d{2}:?\d{2}|Z)$/
|
|
@@ -100670,6 +100655,9 @@ const isVideoFile = (fileName) => {
|
|
|
100670
100655
|
const isValidWebURL = (url) => {
|
|
100671
100656
|
return (REGEX.VALID_WEB_URL).test(url);
|
|
100672
100657
|
};
|
|
100658
|
+
const isValidImageUrl = (url) => {
|
|
100659
|
+
return (REGEX.VALID_IMAGE_URL).test(url?.trim());
|
|
100660
|
+
};
|
|
100673
100661
|
/*This function returns the url to the resource after checking the validity of url*/
|
|
100674
100662
|
const getResourceURL = (urlString) => {
|
|
100675
100663
|
return urlString;
|
|
@@ -101923,6 +101911,7 @@ var Utils = /*#__PURE__*/Object.freeze({
|
|
|
101923
101911
|
isPageable: isPageable,
|
|
101924
101912
|
isSafari: isSafari,
|
|
101925
101913
|
isTablet: isTablet,
|
|
101914
|
+
isValidImageUrl: isValidImageUrl,
|
|
101926
101915
|
isValidWebURL: isValidWebURL,
|
|
101927
101916
|
isVideoFile: isVideoFile,
|
|
101928
101917
|
loadScript: loadScript,
|
package/dependency-report.html
CHANGED