@wavemaker/angular-app 11.14.1-18.6443 → 11.14.1-18.6459

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.
@@ -131288,7 +131288,7 @@ function requireDom$1 () {
131288
131288
  ExceptionCode.DOMSTRING_SIZE_ERR = ((ExceptionMessage[2]="DOMString size error"),2);
131289
131289
  var HIERARCHY_REQUEST_ERR = ExceptionCode.HIERARCHY_REQUEST_ERR = ((ExceptionMessage[3]="Hierarchy request error"),3);
131290
131290
  ExceptionCode.WRONG_DOCUMENT_ERR = ((ExceptionMessage[4]="Wrong document"),4);
131291
- ExceptionCode.INVALID_CHARACTER_ERR = ((ExceptionMessage[5]="Invalid character"),5);
131291
+ var INVALID_CHARACTER_ERR = ExceptionCode.INVALID_CHARACTER_ERR = ((ExceptionMessage[5]="Invalid character"),5);
131292
131292
  ExceptionCode.NO_DATA_ALLOWED_ERR = ((ExceptionMessage[6]="No data allowed"),6);
131293
131293
  ExceptionCode.NO_MODIFICATION_ALLOWED_ERR = ((ExceptionMessage[7]="No modification allowed"),7);
131294
131294
  var NOT_FOUND_ERR = ExceptionCode.NOT_FOUND_ERR = ((ExceptionMessage[8]="Not found"),8);
@@ -132369,7 +132369,22 @@ function requireDom$1 () {
132369
132369
  node.appendData(data);
132370
132370
  return node;
132371
132371
  },
132372
+ /**
132373
+ * Returns a new CDATASection node whose data is `data`.
132374
+ *
132375
+ * __This implementation differs from the specification:__
132376
+ * - calling this method on an HTML document does not throw `NotSupportedError`.
132377
+ *
132378
+ * @param {string} data
132379
+ * @returns {CDATASection}
132380
+ * @throws DOMException with code `INVALID_CHARACTER_ERR` if `data` contains `"]]>"`.
132381
+ * @see https://developer.mozilla.org/en-US/docs/Web/API/Document/createCDATASection
132382
+ * @see https://dom.spec.whatwg.org/#dom-document-createcdatasection
132383
+ */
132372
132384
  createCDATASection : function(data){
132385
+ if (data.indexOf(']]>') !== -1) {
132386
+ throw new DOMException(INVALID_CHARACTER_ERR, 'data contains "]]>"');
132387
+ }
132373
132388
  var node = new CDATASection();
132374
132389
  node.ownerDocument = this;
132375
132390
  node.appendData(data);
@@ -132627,6 +132642,20 @@ function requireDom$1 () {
132627
132642
  ProcessingInstruction.prototype.nodeType = PROCESSING_INSTRUCTION_NODE;
132628
132643
  _extends(ProcessingInstruction,Node);
132629
132644
  function XMLSerializer(){}
132645
+ /**
132646
+ * Returns the result of serializing `node` to XML.
132647
+ *
132648
+ * __This implementation differs from the specification:__
132649
+ * - CDATASection nodes whose data contains `]]>` are serialized by splitting the section
132650
+ * at each `]]>` occurrence (following W3C DOM Level 3 Core `split-cdata-sections`
132651
+ * default behaviour). A configurable option is not yet implemented.
132652
+ *
132653
+ * @param {Node} node
132654
+ * @param {boolean} [isHtml]
132655
+ * @param {function} [nodeFilter]
132656
+ * @returns {string}
132657
+ * @see https://html.spec.whatwg.org/#dom-xmlserializer-serializetostring
132658
+ */
132630
132659
  XMLSerializer.prototype.serializeToString = function(node,isHtml,nodeFilter){
132631
132660
  return nodeSerializeToString.call(node,isHtml,nodeFilter);
132632
132661
  };
@@ -132845,7 +132874,7 @@ function requireDom$1 () {
132845
132874
  .replace(/[<&>]/g,_xmlEncoder)
132846
132875
  );
132847
132876
  case CDATA_SECTION_NODE:
132848
- return buf.push( '<![CDATA[',node.data,']]>');
132877
+ return buf.push('<![CDATA[', node.data.replace(/]]>/g, ']]]]><![CDATA[>'), ']]>');
132849
132878
  case COMMENT_NODE:
132850
132879
  return buf.push( "<!--",node.data,"-->");
132851
132880
  case DOCUMENT_TYPE_NODE:
@@ -135825,7 +135854,7 @@ function requireSax$1 () {
135825
135854
  function parseInstruction(source,start,domBuilder){
135826
135855
  var end = source.indexOf('?>',start);
135827
135856
  if(end){
135828
- var match = source.substring(start,end).match(/^<\?(\S*)\s*([\s\S]*?)\s*$/);
135857
+ var match = source.substring(start,end).match(/^<\?(\S*)\s*([\s\S]*?)$/);
135829
135858
  if(match){
135830
135859
  match[0].length;
135831
135860
  domBuilder.processingInstruction(match[1], match[2]) ;
@@ -187963,7 +187992,7 @@ function requireDom () {
187963
187992
  ExceptionCode.DOMSTRING_SIZE_ERR = ((ExceptionMessage[2]="DOMString size error"),2);
187964
187993
  var HIERARCHY_REQUEST_ERR = ExceptionCode.HIERARCHY_REQUEST_ERR = ((ExceptionMessage[3]="Hierarchy request error"),3);
187965
187994
  ExceptionCode.WRONG_DOCUMENT_ERR = ((ExceptionMessage[4]="Wrong document"),4);
187966
- ExceptionCode.INVALID_CHARACTER_ERR = ((ExceptionMessage[5]="Invalid character"),5);
187995
+ var INVALID_CHARACTER_ERR = ExceptionCode.INVALID_CHARACTER_ERR = ((ExceptionMessage[5]="Invalid character"),5);
187967
187996
  ExceptionCode.NO_DATA_ALLOWED_ERR = ((ExceptionMessage[6]="No data allowed"),6);
187968
187997
  ExceptionCode.NO_MODIFICATION_ALLOWED_ERR = ((ExceptionMessage[7]="No modification allowed"),7);
187969
187998
  var NOT_FOUND_ERR = ExceptionCode.NOT_FOUND_ERR = ((ExceptionMessage[8]="Not found"),8);
@@ -189044,7 +189073,22 @@ function requireDom () {
189044
189073
  node.appendData(data);
189045
189074
  return node;
189046
189075
  },
189076
+ /**
189077
+ * Returns a new CDATASection node whose data is `data`.
189078
+ *
189079
+ * __This implementation differs from the specification:__
189080
+ * - calling this method on an HTML document does not throw `NotSupportedError`.
189081
+ *
189082
+ * @param {string} data
189083
+ * @returns {CDATASection}
189084
+ * @throws DOMException with code `INVALID_CHARACTER_ERR` if `data` contains `"]]>"`.
189085
+ * @see https://developer.mozilla.org/en-US/docs/Web/API/Document/createCDATASection
189086
+ * @see https://dom.spec.whatwg.org/#dom-document-createcdatasection
189087
+ */
189047
189088
  createCDATASection : function(data){
189089
+ if (data.indexOf(']]>') !== -1) {
189090
+ throw new DOMException(INVALID_CHARACTER_ERR, 'data contains "]]>"');
189091
+ }
189048
189092
  var node = new CDATASection();
189049
189093
  node.ownerDocument = this;
189050
189094
  node.appendData(data);
@@ -189302,6 +189346,20 @@ function requireDom () {
189302
189346
  ProcessingInstruction.prototype.nodeType = PROCESSING_INSTRUCTION_NODE;
189303
189347
  _extends(ProcessingInstruction,Node);
189304
189348
  function XMLSerializer(){}
189349
+ /**
189350
+ * Returns the result of serializing `node` to XML.
189351
+ *
189352
+ * __This implementation differs from the specification:__
189353
+ * - CDATASection nodes whose data contains `]]>` are serialized by splitting the section
189354
+ * at each `]]>` occurrence (following W3C DOM Level 3 Core `split-cdata-sections`
189355
+ * default behaviour). A configurable option is not yet implemented.
189356
+ *
189357
+ * @param {Node} node
189358
+ * @param {boolean} [isHtml]
189359
+ * @param {function} [nodeFilter]
189360
+ * @returns {string}
189361
+ * @see https://html.spec.whatwg.org/#dom-xmlserializer-serializetostring
189362
+ */
189305
189363
  XMLSerializer.prototype.serializeToString = function(node,isHtml,nodeFilter){
189306
189364
  return nodeSerializeToString.call(node,isHtml,nodeFilter);
189307
189365
  };
@@ -189520,7 +189578,7 @@ function requireDom () {
189520
189578
  .replace(/[<&>]/g,_xmlEncoder)
189521
189579
  );
189522
189580
  case CDATA_SECTION_NODE:
189523
- return buf.push( '<![CDATA[',node.data,']]>');
189581
+ return buf.push('<![CDATA[', node.data.replace(/]]>/g, ']]]]><![CDATA[>'), ']]>');
189524
189582
  case COMMENT_NODE:
189525
189583
  return buf.push( "<!--",node.data,"-->");
189526
189584
  case DOCUMENT_TYPE_NODE:
@@ -192500,7 +192558,7 @@ function requireSax () {
192500
192558
  function parseInstruction(source,start,domBuilder){
192501
192559
  var end = source.indexOf('?>',start);
192502
192560
  if(end){
192503
- var match = source.substring(start,end).match(/^<\?(\S*)\s*([\s\S]*?)\s*$/);
192561
+ var match = source.substring(start,end).match(/^<\?(\S*)\s*([\s\S]*?)$/);
192504
192562
  if(match){
192505
192563
  match[0].length;
192506
192564
  domBuilder.processingInstruction(match[1], match[2]) ;
@@ -37811,7 +37811,7 @@ function requireDom () {
37811
37811
  ExceptionCode.DOMSTRING_SIZE_ERR = ((ExceptionMessage[2]="DOMString size error"),2);
37812
37812
  var HIERARCHY_REQUEST_ERR = ExceptionCode.HIERARCHY_REQUEST_ERR = ((ExceptionMessage[3]="Hierarchy request error"),3);
37813
37813
  ExceptionCode.WRONG_DOCUMENT_ERR = ((ExceptionMessage[4]="Wrong document"),4);
37814
- ExceptionCode.INVALID_CHARACTER_ERR = ((ExceptionMessage[5]="Invalid character"),5);
37814
+ var INVALID_CHARACTER_ERR = ExceptionCode.INVALID_CHARACTER_ERR = ((ExceptionMessage[5]="Invalid character"),5);
37815
37815
  ExceptionCode.NO_DATA_ALLOWED_ERR = ((ExceptionMessage[6]="No data allowed"),6);
37816
37816
  ExceptionCode.NO_MODIFICATION_ALLOWED_ERR = ((ExceptionMessage[7]="No modification allowed"),7);
37817
37817
  var NOT_FOUND_ERR = ExceptionCode.NOT_FOUND_ERR = ((ExceptionMessage[8]="Not found"),8);
@@ -38892,7 +38892,22 @@ function requireDom () {
38892
38892
  node.appendData(data);
38893
38893
  return node;
38894
38894
  },
38895
+ /**
38896
+ * Returns a new CDATASection node whose data is `data`.
38897
+ *
38898
+ * __This implementation differs from the specification:__
38899
+ * - calling this method on an HTML document does not throw `NotSupportedError`.
38900
+ *
38901
+ * @param {string} data
38902
+ * @returns {CDATASection}
38903
+ * @throws DOMException with code `INVALID_CHARACTER_ERR` if `data` contains `"]]>"`.
38904
+ * @see https://developer.mozilla.org/en-US/docs/Web/API/Document/createCDATASection
38905
+ * @see https://dom.spec.whatwg.org/#dom-document-createcdatasection
38906
+ */
38895
38907
  createCDATASection : function(data){
38908
+ if (data.indexOf(']]>') !== -1) {
38909
+ throw new DOMException(INVALID_CHARACTER_ERR, 'data contains "]]>"');
38910
+ }
38896
38911
  var node = new CDATASection();
38897
38912
  node.ownerDocument = this;
38898
38913
  node.appendData(data);
@@ -39150,6 +39165,20 @@ function requireDom () {
39150
39165
  ProcessingInstruction.prototype.nodeType = PROCESSING_INSTRUCTION_NODE;
39151
39166
  _extends(ProcessingInstruction,Node);
39152
39167
  function XMLSerializer(){}
39168
+ /**
39169
+ * Returns the result of serializing `node` to XML.
39170
+ *
39171
+ * __This implementation differs from the specification:__
39172
+ * - CDATASection nodes whose data contains `]]>` are serialized by splitting the section
39173
+ * at each `]]>` occurrence (following W3C DOM Level 3 Core `split-cdata-sections`
39174
+ * default behaviour). A configurable option is not yet implemented.
39175
+ *
39176
+ * @param {Node} node
39177
+ * @param {boolean} [isHtml]
39178
+ * @param {function} [nodeFilter]
39179
+ * @returns {string}
39180
+ * @see https://html.spec.whatwg.org/#dom-xmlserializer-serializetostring
39181
+ */
39153
39182
  XMLSerializer.prototype.serializeToString = function(node,isHtml,nodeFilter){
39154
39183
  return nodeSerializeToString.call(node,isHtml,nodeFilter);
39155
39184
  };
@@ -39368,7 +39397,7 @@ function requireDom () {
39368
39397
  .replace(/[<&>]/g,_xmlEncoder)
39369
39398
  );
39370
39399
  case CDATA_SECTION_NODE:
39371
- return buf.push( '<![CDATA[',node.data,']]>');
39400
+ return buf.push('<![CDATA[', node.data.replace(/]]>/g, ']]]]><![CDATA[>'), ']]>');
39372
39401
  case COMMENT_NODE:
39373
39402
  return buf.push( "<!--",node.data,"-->");
39374
39403
  case DOCUMENT_TYPE_NODE:
@@ -42348,7 +42377,7 @@ function requireSax () {
42348
42377
  function parseInstruction(source,start,domBuilder){
42349
42378
  var end = source.indexOf('?>',start);
42350
42379
  if(end){
42351
- var match = source.substring(start,end).match(/^<\?(\S*)\s*([\s\S]*?)\s*$/);
42380
+ var match = source.substring(start,end).match(/^<\?(\S*)\s*([\s\S]*?)$/);
42352
42381
  if(match){
42353
42382
  match[0].length;
42354
42383
  domBuilder.processingInstruction(match[1], match[2]) ;
@@ -69,7 +69,7 @@
69
69
  <body>
70
70
  <div class="header">
71
71
  <h1>Angular Project Dependencies Report</h1>
72
- <p class="timestamp">Generated on: 3/20/2026, 12:57:52 PM</p>
72
+ <p class="timestamp">Generated on: 3/31/2026, 4:32:19 PM</p>
73
73
  </div>
74
74
 
75
75
  <div class="section">