@wavemaker/angular-codegen 12.0.0-next.45752 → 12.0.0-next.46502
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.
- angular-codegen/angular-app/angular.json +15 -1
- angular-codegen/angular-app/package-lock.json +4018 -1582
- angular-codegen/angular-app/package.json +12 -4
- angular-codegen/angular-app/src/assets/styles/css/wm-style.css +1 -1
- angular-codegen/dependencies/pipe-provider.cjs.js +9 -12031
- angular-codegen/dependencies/transpilation-mobile.cjs.js +63 -821
- angular-codegen/dependencies/transpilation-web.cjs.js +63 -6066
- angular-codegen/package-lock.json +373 -60
- angular-codegen/package.json +2 -2
@@ -40017,773 +40017,6 @@ var FilterSubscriber = /*@__PURE__*/ (function (_super) {
|
|
40017
40017
|
return FilterSubscriber;
|
40018
40018
|
}(Subscriber));
|
40019
40019
|
|
40020
|
-
/*
|
40021
|
-
Copyright 2015 Axinom
|
40022
|
-
Copyright 2011-2013 Abdulla Abdurakhmanov
|
40023
|
-
Original sources are available at https://code.google.com/p/x2js/
|
40024
|
-
|
40025
|
-
Licensed under the Apache License, Version 2.0 (the "License");
|
40026
|
-
you may not use this file except in compliance with the License.
|
40027
|
-
You may obtain a copy of the License at
|
40028
|
-
|
40029
|
-
http://www.apache.org/licenses/LICENSE-2.0
|
40030
|
-
|
40031
|
-
Unless required by applicable law or agreed to in writing, software
|
40032
|
-
distributed under the License is distributed on an "AS IS" BASIS,
|
40033
|
-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
40034
|
-
See the License for the specific language governing permissions and
|
40035
|
-
limitations under the License.
|
40036
|
-
*/
|
40037
|
-
|
40038
|
-
/*
|
40039
|
-
Supported export methods:
|
40040
|
-
* AMD
|
40041
|
-
* <script> (window.X2JS)
|
40042
|
-
* Node.js
|
40043
|
-
|
40044
|
-
Limitations:
|
40045
|
-
* Attribute namespace prefixes are not parsed as such.
|
40046
|
-
* Overall the serialization/deserializaton code is "best effort" and not foolproof.
|
40047
|
-
*/
|
40048
|
-
|
40049
|
-
// Module definition pattern used is returnExports from https://github.com/umdjs/umd
|
40050
|
-
(function (root, factory) {
|
40051
|
-
|
40052
|
-
/* global define */
|
40053
|
-
if (typeof define === 'function' && define.amd) {
|
40054
|
-
// AMD. Register as an anonymous module.
|
40055
|
-
define([], factory);
|
40056
|
-
} else if (typeof module === 'object' && module.exports) {
|
40057
|
-
// Node. Does not work with strict CommonJS, but only CommonJS-like
|
40058
|
-
// environments that support module.exports, like Node.
|
40059
|
-
module.exports = factory(require("@xmldom/xmldom").DOMParser);
|
40060
|
-
} else {
|
40061
|
-
// Browser globals (root is window)
|
40062
|
-
root.X2JS = factory();
|
40063
|
-
}
|
40064
|
-
})(undefined, function (CustomDOMParser) {
|
40065
|
-
|
40066
|
-
// We return a constructor that can be used to make X2JS instances.
|
40067
|
-
return function X2JS(config) {
|
40068
|
-
var VERSION = "3.4.4";
|
40069
|
-
|
40070
|
-
config = config || {};
|
40071
|
-
|
40072
|
-
function initConfigDefaults() {
|
40073
|
-
// If set to "property" then <element>_asArray will be created
|
40074
|
-
// to allow you to access any element as an array (even if there is only one of it).
|
40075
|
-
config.arrayAccessForm = config.arrayAccessForm || "none";
|
40076
|
-
|
40077
|
-
// If "text" then <empty></empty> will be transformed to "".
|
40078
|
-
// If "object" then <empty></empty> will be transformed to {}.
|
40079
|
-
config.emptyNodeForm = config.emptyNodeForm || "text";
|
40080
|
-
|
40081
|
-
// Function that will be called for each elements, if the function returns true, the element will be skipped
|
40082
|
-
// function(name, value) { return true; };
|
40083
|
-
config.jsAttributeFilter = config.jsAttributeFilter;
|
40084
|
-
|
40085
|
-
// Function that will be called for each elements, the element value will be replaced by the returned value
|
40086
|
-
// function(name, value) { return parseFloat(value); };
|
40087
|
-
config.jsAttributeConverter = config.jsAttributeConverter;
|
40088
|
-
|
40089
|
-
// Allows attribute values to be converted on the fly during parsing to objects.
|
40090
|
-
// "test": function(name, value) { return true; }
|
40091
|
-
// "convert": function(name, value) { return parseFloat(value); };
|
40092
|
-
// convert() will be called for every attribute where test() returns true
|
40093
|
-
// and the return value from convert() will replace the original value of the attribute.
|
40094
|
-
config.attributeConverters = config.attributeConverters || [];
|
40095
|
-
|
40096
|
-
// Any elements that match the paths here will have their text parsed
|
40097
|
-
// as an XML datetime value (2011-11-12T13:00:00-07:00 style).
|
40098
|
-
// The path can be a plain string (parent.child1.child2),
|
40099
|
-
// a regex (/.*\.child2/) or function(elementPath).
|
40100
|
-
config.datetimeAccessFormPaths = config.datetimeAccessFormPaths || [];
|
40101
|
-
|
40102
|
-
// Any elements that match the paths listed here will be stored in JavaScript objects
|
40103
|
-
// as arrays even if there is only one of them. The path can be a plain string
|
40104
|
-
// (parent.child1.child2), a regex (/.*\.child2/) or function(elementName, elementPath).
|
40105
|
-
config.arrayAccessFormPaths = config.arrayAccessFormPaths || [];
|
40106
|
-
|
40107
|
-
// xmldom constructor arguments
|
40108
|
-
// @see https://github.com/jindw/xmldom#api-reference
|
40109
|
-
config.xmldomOptions = config.xmldomOptions || {};
|
40110
|
-
|
40111
|
-
// If true, a toString function is generated to print nodes containing text or cdata.
|
40112
|
-
// Useful if you want to accept both plain text and CData as equivalent inputs.
|
40113
|
-
if (config.enableToStringFunc === undefined) {
|
40114
|
-
config.enableToStringFunc = true;
|
40115
|
-
}
|
40116
|
-
|
40117
|
-
// If true, empty text tags are ignored for elements with child nodes.
|
40118
|
-
if (config.skipEmptyTextNodesForObj === undefined) {
|
40119
|
-
config.skipEmptyTextNodesForObj = true;
|
40120
|
-
}
|
40121
|
-
|
40122
|
-
// If true, whitespace is trimmed from text nodes.
|
40123
|
-
if (config.stripWhitespaces === undefined) {
|
40124
|
-
config.stripWhitespaces = true;
|
40125
|
-
}
|
40126
|
-
|
40127
|
-
// If true, double quotes are used in generated XML.
|
40128
|
-
if (config.useDoubleQuotes === undefined) {
|
40129
|
-
config.useDoubleQuotes = true;
|
40130
|
-
}
|
40131
|
-
|
40132
|
-
// If true, the root element of the XML document is ignored when converting to objects.
|
40133
|
-
// The result will directly have the root element's children as its own properties.
|
40134
|
-
if (config.ignoreRoot === undefined) {
|
40135
|
-
config.ignoreRoot = false;
|
40136
|
-
}
|
40137
|
-
|
40138
|
-
// Whether XML characters in text are escaped when reading/writing XML.
|
40139
|
-
if (config.escapeMode === undefined) {
|
40140
|
-
config.escapeMode = true;
|
40141
|
-
}
|
40142
|
-
|
40143
|
-
// Prefix to use for properties that are created to represent XML attributes.
|
40144
|
-
if (config.attributePrefix === undefined) {
|
40145
|
-
config.attributePrefix = "_";
|
40146
|
-
}
|
40147
|
-
|
40148
|
-
// If true, empty elements will created as self closing elements (<element />)
|
40149
|
-
// If false, empty elements will be created with start and end tags (<element></element>)
|
40150
|
-
if (config.selfClosingElements === undefined) {
|
40151
|
-
config.selfClosingElements = true;
|
40152
|
-
}
|
40153
|
-
|
40154
|
-
// If this property defined as false and an XML element has CData node ONLY, it will be converted to text without additional property "__cdata"
|
40155
|
-
if (config.keepCData === undefined) {
|
40156
|
-
config.keepCData = false;
|
40157
|
-
}
|
40158
|
-
|
40159
|
-
// If this property defined as true, use { __text: 'abc' } over 'abc'
|
40160
|
-
if (config.keepText === undefined) {
|
40161
|
-
config.keepText = false;
|
40162
|
-
}
|
40163
|
-
|
40164
|
-
// If true, will output dates in UTC
|
40165
|
-
if (config.jsDateUTC === undefined) {
|
40166
|
-
config.jsDateUTC = false;
|
40167
|
-
}
|
40168
|
-
}
|
40169
|
-
|
40170
|
-
function initRequiredPolyfills() {
|
40171
|
-
function pad(number) {
|
40172
|
-
var r = String(number);
|
40173
|
-
if (r.length === 1) {
|
40174
|
-
r = '0' + r;
|
40175
|
-
}
|
40176
|
-
return r;
|
40177
|
-
}
|
40178
|
-
// Hello IE8-
|
40179
|
-
if (typeof String.prototype.trim !== 'function') {
|
40180
|
-
String.prototype.trim = function trim() {
|
40181
|
-
return this.replace(/^\s+|^\n+|(\s|\n)+$/g, '');
|
40182
|
-
};
|
40183
|
-
}
|
40184
|
-
if (typeof Date.prototype.toISOString !== 'function') {
|
40185
|
-
// Implementation from http://stackoverflow.com/questions/2573521/how-do-i-output-an-iso-8601-formatted-string-in-javascript
|
40186
|
-
Date.prototype.toISOString = function toISOString() {
|
40187
|
-
var MS_IN_S = 1000;
|
40188
|
-
|
40189
|
-
return this.getUTCFullYear()
|
40190
|
-
+ '-' + pad(this.getUTCMonth() + 1)
|
40191
|
-
+ '-' + pad(this.getUTCDate())
|
40192
|
-
+ 'T' + pad(this.getUTCHours())
|
40193
|
-
+ ':' + pad(this.getUTCMinutes())
|
40194
|
-
+ ':' + pad(this.getUTCSeconds())
|
40195
|
-
+ '.' + String((this.getUTCMilliseconds() / MS_IN_S).toFixed(3)).slice(2, 5)
|
40196
|
-
+ 'Z';
|
40197
|
-
};
|
40198
|
-
}
|
40199
|
-
}
|
40200
|
-
|
40201
|
-
initConfigDefaults();
|
40202
|
-
initRequiredPolyfills();
|
40203
|
-
|
40204
|
-
var DOMNodeTypes = {
|
40205
|
-
"ELEMENT_NODE": 1,
|
40206
|
-
"TEXT_NODE": 3,
|
40207
|
-
"CDATA_SECTION_NODE": 4,
|
40208
|
-
"COMMENT_NODE": 8,
|
40209
|
-
"DOCUMENT_NODE": 9
|
40210
|
-
};
|
40211
|
-
|
40212
|
-
function getDomNodeLocalName(domNode) {
|
40213
|
-
var localName = domNode.localName;
|
40214
|
-
if (localName == null) {
|
40215
|
-
// Yeah, this is IE!!
|
40216
|
-
localName = domNode.baseName;
|
40217
|
-
}
|
40218
|
-
if (localName == null || localName === "") {
|
40219
|
-
// ==="" is IE too
|
40220
|
-
localName = domNode.nodeName;
|
40221
|
-
}
|
40222
|
-
return localName;
|
40223
|
-
}
|
40224
|
-
|
40225
|
-
function getDomNodeNamespacePrefix(node) {
|
40226
|
-
return node.prefix;
|
40227
|
-
}
|
40228
|
-
|
40229
|
-
function escapeXmlChars(str) {
|
40230
|
-
if (typeof str === "string")
|
40231
|
-
return str.replace(/&/g, '&').replace(/</g, '<').replace(/>/g, '>').replace(/"/g, '"').replace(/'/g, ''');
|
40232
|
-
else
|
40233
|
-
return str;
|
40234
|
-
}
|
40235
|
-
|
40236
|
-
function unescapeXmlChars(str) {
|
40237
|
-
return str.replace(/</g, '<').replace(/>/g, '>').replace(/"/g, '"').replace(/'/g, "'").replace(/&/g, '&');
|
40238
|
-
}
|
40239
|
-
|
40240
|
-
function ensureProperArrayAccessForm(element, childName, elementPath) {
|
40241
|
-
switch (config.arrayAccessForm) {
|
40242
|
-
case "property":
|
40243
|
-
if (!(element[childName] instanceof Array))
|
40244
|
-
element[childName + "_asArray"] = [element[childName]];
|
40245
|
-
else
|
40246
|
-
element[childName + "_asArray"] = element[childName];
|
40247
|
-
break;
|
40248
|
-
}
|
40249
|
-
|
40250
|
-
if (!(element[childName] instanceof Array) && config.arrayAccessFormPaths.length > 0) {
|
40251
|
-
var match = false;
|
40252
|
-
|
40253
|
-
for (var i = 0; i < config.arrayAccessFormPaths.length; i++) {
|
40254
|
-
var arrayPath = config.arrayAccessFormPaths[i];
|
40255
|
-
if (typeof arrayPath === "string") {
|
40256
|
-
if (arrayPath === elementPath) {
|
40257
|
-
match = true;
|
40258
|
-
break;
|
40259
|
-
}
|
40260
|
-
} else if (arrayPath instanceof RegExp) {
|
40261
|
-
if (arrayPath.test(elementPath)) {
|
40262
|
-
match = true;
|
40263
|
-
break;
|
40264
|
-
}
|
40265
|
-
} else if (typeof arrayPath === "function") {
|
40266
|
-
if (arrayPath(childName, elementPath)) {
|
40267
|
-
match = true;
|
40268
|
-
break;
|
40269
|
-
}
|
40270
|
-
}
|
40271
|
-
}
|
40272
|
-
|
40273
|
-
if (match)
|
40274
|
-
element[childName] = [element[childName]];
|
40275
|
-
}
|
40276
|
-
}
|
40277
|
-
|
40278
|
-
function xmlDateTimeToDate(prop) {
|
40279
|
-
// Implementation based up on http://stackoverflow.com/questions/8178598/xml-datetime-to-javascript-date-object
|
40280
|
-
// Improved to support full spec and optional parts
|
40281
|
-
var MINUTES_PER_HOUR = 60;
|
40282
|
-
|
40283
|
-
var bits = prop.split(/[-T:+Z]/g);
|
40284
|
-
|
40285
|
-
var d = new Date(bits[0], bits[1] - 1, bits[2]);
|
40286
|
-
var secondBits = bits[5].split("\.");
|
40287
|
-
d.setHours(bits[3], bits[4], secondBits[0]);
|
40288
|
-
if (secondBits.length > 1)
|
40289
|
-
d.setMilliseconds(secondBits[1]);
|
40290
|
-
|
40291
|
-
// Get supplied time zone offset in minutes
|
40292
|
-
if (bits[6] && bits[7]) {
|
40293
|
-
var offsetMinutes = bits[6] * MINUTES_PER_HOUR + Number(bits[7]);
|
40294
|
-
var sign = /\d\d-\d\d:\d\d$/.test(prop) ? '-' : '+';
|
40295
|
-
|
40296
|
-
// Apply the sign
|
40297
|
-
offsetMinutes = 0 + (sign === '-' ? -1 * offsetMinutes : offsetMinutes);
|
40298
|
-
|
40299
|
-
// Apply offset and local timezone
|
40300
|
-
d.setMinutes(d.getMinutes() - offsetMinutes - d.getTimezoneOffset());
|
40301
|
-
} else if (prop.indexOf("Z", prop.length - 1) !== -1) {
|
40302
|
-
d = new Date(Date.UTC(d.getFullYear(), d.getMonth(), d.getDate(), d.getHours(), d.getMinutes(), d.getSeconds(), d.getMilliseconds()));
|
40303
|
-
}
|
40304
|
-
|
40305
|
-
// d is now a local time equivalent to the supplied time
|
40306
|
-
return d;
|
40307
|
-
}
|
40308
|
-
|
40309
|
-
function convertToDateIfRequired(value, childName, fullPath) {
|
40310
|
-
if (config.datetimeAccessFormPaths.length > 0) {
|
40311
|
-
var pathWithoutTextNode = fullPath.split("\.#")[0];
|
40312
|
-
|
40313
|
-
for (var i = 0; i < config.datetimeAccessFormPaths.length; i++) {
|
40314
|
-
var candidatePath = config.datetimeAccessFormPaths[i];
|
40315
|
-
if (typeof candidatePath === "string") {
|
40316
|
-
if (candidatePath === pathWithoutTextNode)
|
40317
|
-
return xmlDateTimeToDate(value);
|
40318
|
-
} else if (candidatePath instanceof RegExp) {
|
40319
|
-
if (candidatePath.test(pathWithoutTextNode))
|
40320
|
-
return xmlDateTimeToDate(value);
|
40321
|
-
} else if (typeof candidatePath === "function") {
|
40322
|
-
if (candidatePath(pathWithoutTextNode))
|
40323
|
-
return xmlDateTimeToDate(value);
|
40324
|
-
}
|
40325
|
-
}
|
40326
|
-
}
|
40327
|
-
|
40328
|
-
return value;
|
40329
|
-
}
|
40330
|
-
|
40331
|
-
function deserializeRootElementChildren(rootElement) {
|
40332
|
-
var result = {};
|
40333
|
-
var children = rootElement.childNodes;
|
40334
|
-
|
40335
|
-
// Alternative for firstElementChild which is not supported in some environments
|
40336
|
-
for (var i = 0; i < children.length; i++) {
|
40337
|
-
var child = children.item(i);
|
40338
|
-
if (child.nodeType === DOMNodeTypes.ELEMENT_NODE) {
|
40339
|
-
var childName = getDomNodeLocalName(child);
|
40340
|
-
|
40341
|
-
if (config.ignoreRoot)
|
40342
|
-
result = deserializeDomChildren(child, childName);
|
40343
|
-
else
|
40344
|
-
result[childName] = deserializeDomChildren(child, childName);
|
40345
|
-
}
|
40346
|
-
}
|
40347
|
-
|
40348
|
-
return result;
|
40349
|
-
}
|
40350
|
-
|
40351
|
-
function deserializeElementChildren(element, elementPath) {
|
40352
|
-
var result = {};
|
40353
|
-
result.__cnt = 0;
|
40354
|
-
|
40355
|
-
var nodeChildren = element.childNodes;
|
40356
|
-
|
40357
|
-
// Child nodes.
|
40358
|
-
for (var iChild = 0; iChild < nodeChildren.length; iChild++) {
|
40359
|
-
var child = nodeChildren.item(iChild);
|
40360
|
-
var childName = getDomNodeLocalName(child);
|
40361
|
-
|
40362
|
-
if (child.nodeType === DOMNodeTypes.COMMENT_NODE)
|
40363
|
-
continue;
|
40364
|
-
|
40365
|
-
result.__cnt++;
|
40366
|
-
|
40367
|
-
// We deliberately do not accept everything falsey here because
|
40368
|
-
// elements that resolve to empty string should still be preserved.
|
40369
|
-
if (result[childName] == null) {
|
40370
|
-
result[childName] = deserializeDomChildren(child, elementPath + "." + childName);
|
40371
|
-
ensureProperArrayAccessForm(result, childName, elementPath + "." + childName);
|
40372
|
-
} else {
|
40373
|
-
if (!(result[childName] instanceof Array)) {
|
40374
|
-
result[childName] = [result[childName]];
|
40375
|
-
ensureProperArrayAccessForm(result, childName, elementPath + "." + childName);
|
40376
|
-
}
|
40377
|
-
|
40378
|
-
result[childName][result[childName].length] = deserializeDomChildren(child, elementPath + "." + childName);
|
40379
|
-
}
|
40380
|
-
}
|
40381
|
-
|
40382
|
-
// Attributes
|
40383
|
-
for (var iAttribute = 0; iAttribute < element.attributes.length; iAttribute++) {
|
40384
|
-
var attribute = element.attributes.item(iAttribute);
|
40385
|
-
result.__cnt++;
|
40386
|
-
|
40387
|
-
var adjustedValue = attribute.value;
|
40388
|
-
for (var iConverter = 0; iConverter < config.attributeConverters.length; iConverter++) {
|
40389
|
-
var converter = config.attributeConverters[iConverter];
|
40390
|
-
if (converter.test.call(null, attribute.name, attribute.value))
|
40391
|
-
adjustedValue = converter.convert.call(null, attribute.name, attribute.value);
|
40392
|
-
}
|
40393
|
-
|
40394
|
-
result[config.attributePrefix + attribute.name] = adjustedValue;
|
40395
|
-
}
|
40396
|
-
|
40397
|
-
// Node namespace prefix
|
40398
|
-
var namespacePrefix = getDomNodeNamespacePrefix(element);
|
40399
|
-
if (namespacePrefix) {
|
40400
|
-
result.__cnt++;
|
40401
|
-
result.__prefix = namespacePrefix;
|
40402
|
-
}
|
40403
|
-
|
40404
|
-
if (result["#text"]) {
|
40405
|
-
result.__text = result["#text"];
|
40406
|
-
|
40407
|
-
if (result.__text instanceof Array) {
|
40408
|
-
result.__text = result.__text.join("\n");
|
40409
|
-
}
|
40410
|
-
|
40411
|
-
if (config.escapeMode)
|
40412
|
-
result.__text = unescapeXmlChars(result.__text);
|
40413
|
-
|
40414
|
-
if (config.stripWhitespaces)
|
40415
|
-
result.__text = result.__text.trim();
|
40416
|
-
|
40417
|
-
delete result["#text"];
|
40418
|
-
|
40419
|
-
if (config.arrayAccessForm === "property")
|
40420
|
-
delete result["#text_asArray"];
|
40421
|
-
|
40422
|
-
result.__text = convertToDateIfRequired(result.__text, "#text", elementPath + ".#text");
|
40423
|
-
}
|
40424
|
-
|
40425
|
-
if (result.hasOwnProperty('#cdata-section')) {
|
40426
|
-
result.__cdata = result["#cdata-section"];
|
40427
|
-
delete result["#cdata-section"];
|
40428
|
-
|
40429
|
-
if (config.arrayAccessForm === "property")
|
40430
|
-
delete result["#cdata-section_asArray"];
|
40431
|
-
}
|
40432
|
-
|
40433
|
-
if (result.__cnt === 1 && result.__text && !config.keepText) {
|
40434
|
-
result = result.__text;
|
40435
|
-
} else if (result.__cnt === 0 && config.emptyNodeForm === "text") {
|
40436
|
-
result = '';
|
40437
|
-
} else if (result.__cnt > 1 && result.__text !== undefined && config.skipEmptyTextNodesForObj) {
|
40438
|
-
if (config.stripWhitespaces && result.__text === "" || result.__text.trim() === "") {
|
40439
|
-
delete result.__text;
|
40440
|
-
}
|
40441
|
-
}
|
40442
|
-
delete result.__cnt;
|
40443
|
-
|
40444
|
-
/**
|
40445
|
-
* We are checking if we are creating a __cdata property or if we just add the content of cdata inside result.
|
40446
|
-
* But, if we have a property inside xml tag (<tag PROPERTY="1"></tag>), and a cdata inside, we can't ignore it.
|
40447
|
-
* In this case we are keeping __cdata property.
|
40448
|
-
*/
|
40449
|
-
if (!config.keepCData && (!result.hasOwnProperty('__text') && result.hasOwnProperty('__cdata') && Object.keys(result).length === 1)) {
|
40450
|
-
return (result.__cdata ? result.__cdata : '');
|
40451
|
-
}
|
40452
|
-
|
40453
|
-
if (config.enableToStringFunc && (result.__text || result.__cdata)) {
|
40454
|
-
result.toString = function toString() {
|
40455
|
-
return (this.__text ? this.__text : '') + (this.__cdata ? this.__cdata : '');
|
40456
|
-
};
|
40457
|
-
}
|
40458
|
-
|
40459
|
-
return result;
|
40460
|
-
}
|
40461
|
-
|
40462
|
-
function deserializeDomChildren(node, parentPath) {
|
40463
|
-
if (node.nodeType === DOMNodeTypes.DOCUMENT_NODE) {
|
40464
|
-
return deserializeRootElementChildren(node);
|
40465
|
-
} else if (node.nodeType === DOMNodeTypes.ELEMENT_NODE) {
|
40466
|
-
return deserializeElementChildren(node, parentPath);
|
40467
|
-
} else if (node.nodeType === DOMNodeTypes.TEXT_NODE || node.nodeType === DOMNodeTypes.CDATA_SECTION_NODE) {
|
40468
|
-
return node.nodeValue;
|
40469
|
-
} else {
|
40470
|
-
return null;
|
40471
|
-
}
|
40472
|
-
}
|
40473
|
-
|
40474
|
-
function serializeStartTag(jsObject, elementName, attributeNames, selfClosing) {
|
40475
|
-
var resultStr = "<" + ((jsObject && jsObject.__prefix) ? (jsObject.__prefix + ":") : "") + elementName;
|
40476
|
-
|
40477
|
-
if (attributeNames) {
|
40478
|
-
for (var i = 0; i < attributeNames.length; i++) {
|
40479
|
-
var attributeName = attributeNames[i];
|
40480
|
-
var attributeValue = jsObject[attributeName];
|
40481
|
-
|
40482
|
-
if (config.escapeMode)
|
40483
|
-
attributeValue = escapeXmlChars(attributeValue);
|
40484
|
-
|
40485
|
-
resultStr += " " + attributeName.substr(config.attributePrefix.length) + "=";
|
40486
|
-
|
40487
|
-
if (config.useDoubleQuotes)
|
40488
|
-
resultStr += '"' + attributeValue + '"';
|
40489
|
-
else
|
40490
|
-
resultStr += "'" + attributeValue + "'";
|
40491
|
-
}
|
40492
|
-
}
|
40493
|
-
|
40494
|
-
if (!selfClosing)
|
40495
|
-
resultStr += ">";
|
40496
|
-
else
|
40497
|
-
resultStr += " />";
|
40498
|
-
|
40499
|
-
return resultStr;
|
40500
|
-
}
|
40501
|
-
|
40502
|
-
function serializeEndTag(jsObject, elementName) {
|
40503
|
-
return "</" + ((jsObject && jsObject.__prefix) ? (jsObject.__prefix + ":") : "") + elementName + ">";
|
40504
|
-
}
|
40505
|
-
|
40506
|
-
function endsWith(str, suffix) {
|
40507
|
-
return str.indexOf(suffix, str.length - suffix.length) !== -1;
|
40508
|
-
}
|
40509
|
-
|
40510
|
-
function isSpecialProperty(jsonObj, propertyName) {
|
40511
|
-
if ((config.arrayAccessForm === "property" && endsWith(propertyName.toString(), ("_asArray")))
|
40512
|
-
|| propertyName.toString().indexOf(config.attributePrefix) === 0
|
40513
|
-
|| propertyName.toString().indexOf("__") === 0
|
40514
|
-
|| (jsonObj[propertyName] instanceof Function))
|
40515
|
-
return true;
|
40516
|
-
else
|
40517
|
-
return false;
|
40518
|
-
}
|
40519
|
-
|
40520
|
-
function getDataElementCount(jsObject) {
|
40521
|
-
var count = 0;
|
40522
|
-
|
40523
|
-
if (jsObject instanceof Object) {
|
40524
|
-
for (var propertyName in jsObject) {
|
40525
|
-
if (isSpecialProperty(jsObject, propertyName))
|
40526
|
-
continue;
|
40527
|
-
|
40528
|
-
count++;
|
40529
|
-
}
|
40530
|
-
}
|
40531
|
-
|
40532
|
-
return count;
|
40533
|
-
}
|
40534
|
-
|
40535
|
-
function getDataAttributeNames(jsObject) {
|
40536
|
-
var names = [];
|
40537
|
-
|
40538
|
-
if (jsObject instanceof Object) {
|
40539
|
-
for (var attributeName in jsObject) {
|
40540
|
-
if (attributeName.toString().indexOf("__") === -1
|
40541
|
-
&& attributeName.toString().indexOf(config.attributePrefix) === 0) {
|
40542
|
-
names.push(attributeName);
|
40543
|
-
}
|
40544
|
-
}
|
40545
|
-
}
|
40546
|
-
|
40547
|
-
return names;
|
40548
|
-
}
|
40549
|
-
|
40550
|
-
function serializeComplexTextNodeContents(textNode) {
|
40551
|
-
var result = "";
|
40552
|
-
|
40553
|
-
if (textNode.__cdata) {
|
40554
|
-
result += "<![CDATA[" + textNode.__cdata + "]]>";
|
40555
|
-
}
|
40556
|
-
|
40557
|
-
if (textNode.__text || typeof (textNode.__text) === 'number' || typeof (textNode.__text) === 'boolean') {
|
40558
|
-
if (config.escapeMode)
|
40559
|
-
result += escapeXmlChars(textNode.__text);
|
40560
|
-
else
|
40561
|
-
result += textNode.__text;
|
40562
|
-
}
|
40563
|
-
|
40564
|
-
return result;
|
40565
|
-
}
|
40566
|
-
|
40567
|
-
function serializeTextNodeContents(textNode) {
|
40568
|
-
var result = "";
|
40569
|
-
|
40570
|
-
if (textNode instanceof Object) {
|
40571
|
-
result += serializeComplexTextNodeContents(textNode);
|
40572
|
-
} else if (textNode !== null) {
|
40573
|
-
if (config.escapeMode)
|
40574
|
-
result += escapeXmlChars(textNode);
|
40575
|
-
else
|
40576
|
-
result += textNode;
|
40577
|
-
}
|
40578
|
-
|
40579
|
-
return result;
|
40580
|
-
}
|
40581
|
-
|
40582
|
-
function serializeArray(elementArray, elementName, attributes) {
|
40583
|
-
var result = "";
|
40584
|
-
|
40585
|
-
if (elementArray.length === 0) {
|
40586
|
-
result += serializeStartTag(elementArray, elementName, attributes, true);
|
40587
|
-
} else {
|
40588
|
-
for (var i = 0; i < elementArray.length; i++) {
|
40589
|
-
result += serializeJavaScriptObject(elementArray[i], elementName, getDataAttributeNames(elementArray[i]));
|
40590
|
-
}
|
40591
|
-
}
|
40592
|
-
|
40593
|
-
return result;
|
40594
|
-
}
|
40595
|
-
|
40596
|
-
function serializeJavaScriptObject(element, elementName, attributes) {
|
40597
|
-
var result = "";
|
40598
|
-
|
40599
|
-
// Filter out elements
|
40600
|
-
if (config.jsAttributeFilter && config.jsAttributeFilter.call(null, elementName, element)) {
|
40601
|
-
return result;
|
40602
|
-
}
|
40603
|
-
// Convert element
|
40604
|
-
if (config.jsAttributeConverter) {
|
40605
|
-
element = config.jsAttributeConverter.call(null, elementName, element);
|
40606
|
-
}
|
40607
|
-
if ((element === undefined || element === null || element === '') && config.selfClosingElements) {
|
40608
|
-
result += serializeStartTag(element, elementName, attributes, true);
|
40609
|
-
} else if (typeof element === 'object') {
|
40610
|
-
if (Object.prototype.toString.call(element) === '[object Array]') {
|
40611
|
-
result += serializeArray(element, elementName, attributes);
|
40612
|
-
} else if (element instanceof Date) {
|
40613
|
-
result += serializeStartTag(element, elementName, attributes, false);
|
40614
|
-
// Serialize date
|
40615
|
-
result += config.jsDateUTC ? element.toUTCString() : element.toISOString();
|
40616
|
-
result += serializeEndTag(element, elementName);
|
40617
|
-
} else {
|
40618
|
-
var childElementCount = getDataElementCount(element);
|
40619
|
-
if (childElementCount > 0 || typeof (element.__text) === 'number' || typeof (element.__text) === 'boolean' || element.__text || element.__cdata) {
|
40620
|
-
result += serializeStartTag(element, elementName, attributes, false);
|
40621
|
-
result += serializeJavaScriptObjectChildren(element);
|
40622
|
-
result += serializeEndTag(element, elementName);
|
40623
|
-
} else if (config.selfClosingElements) {
|
40624
|
-
result += serializeStartTag(element, elementName, attributes, true);
|
40625
|
-
} else {
|
40626
|
-
result += serializeStartTag(element, elementName, attributes, false);
|
40627
|
-
result += serializeEndTag(element, elementName);
|
40628
|
-
}
|
40629
|
-
}
|
40630
|
-
} else {
|
40631
|
-
result += serializeStartTag(element, elementName, attributes, false);
|
40632
|
-
result += serializeTextNodeContents(element);
|
40633
|
-
result += serializeEndTag(element, elementName);
|
40634
|
-
}
|
40635
|
-
|
40636
|
-
return result;
|
40637
|
-
}
|
40638
|
-
|
40639
|
-
function serializeJavaScriptObjectChildren(jsObject) {
|
40640
|
-
var result = "";
|
40641
|
-
|
40642
|
-
var elementCount = getDataElementCount(jsObject);
|
40643
|
-
|
40644
|
-
if (elementCount > 0) {
|
40645
|
-
for (var elementName in jsObject) {
|
40646
|
-
if (isSpecialProperty(jsObject, elementName))
|
40647
|
-
continue;
|
40648
|
-
|
40649
|
-
var element = jsObject[elementName];
|
40650
|
-
var attributes = getDataAttributeNames(element);
|
40651
|
-
|
40652
|
-
result += serializeJavaScriptObject(element, elementName, attributes);
|
40653
|
-
}
|
40654
|
-
}
|
40655
|
-
|
40656
|
-
result += serializeTextNodeContents(jsObject);
|
40657
|
-
|
40658
|
-
return result;
|
40659
|
-
}
|
40660
|
-
|
40661
|
-
function parseXml(xml) {
|
40662
|
-
if (xml === undefined) {
|
40663
|
-
return null;
|
40664
|
-
}
|
40665
|
-
|
40666
|
-
if (typeof xml !== "string") {
|
40667
|
-
return null;
|
40668
|
-
}
|
40669
|
-
|
40670
|
-
var parser = null;
|
40671
|
-
var domNode = null;
|
40672
|
-
|
40673
|
-
if (CustomDOMParser) {
|
40674
|
-
// This branch is used for node.js, with the xmldom parser.
|
40675
|
-
parser = new CustomDOMParser(config.xmldomOptions);
|
40676
|
-
|
40677
|
-
domNode = parser.parseFromString(xml, "text/xml");
|
40678
|
-
} else if (window && window.DOMParser) {
|
40679
|
-
parser = new window.DOMParser();
|
40680
|
-
var parsererrorNS = null;
|
40681
|
-
|
40682
|
-
var isIEParser = window.ActiveXObject || "ActiveXObject" in window;
|
40683
|
-
|
40684
|
-
// IE9+ now is here
|
40685
|
-
if (!isIEParser && document.all && !document.addEventListener) {
|
40686
|
-
try {
|
40687
|
-
parsererrorNS = parser.parseFromString("INVALID", "text/xml").childNodes[0].namespaceURI;
|
40688
|
-
} catch (err) {
|
40689
|
-
parsererrorNS = null;
|
40690
|
-
}
|
40691
|
-
}
|
40692
|
-
|
40693
|
-
try {
|
40694
|
-
domNode = parser.parseFromString(xml, "text/xml");
|
40695
|
-
if (parsererrorNS !== null && domNode.getElementsByTagNameNS(parsererrorNS, "parsererror").length > 0) {
|
40696
|
-
domNode = null;
|
40697
|
-
}
|
40698
|
-
} catch (err) {
|
40699
|
-
domNode = null;
|
40700
|
-
}
|
40701
|
-
} else {
|
40702
|
-
// IE :(
|
40703
|
-
if (xml.indexOf("<?") === 0) {
|
40704
|
-
xml = xml.substr(xml.indexOf("?>") + 2);
|
40705
|
-
}
|
40706
|
-
|
40707
|
-
/* global ActiveXObject */
|
40708
|
-
domNode = new ActiveXObject("Microsoft.XMLDOM");
|
40709
|
-
domNode.async = "false";
|
40710
|
-
domNode.loadXML(xml);
|
40711
|
-
}
|
40712
|
-
|
40713
|
-
return domNode;
|
40714
|
-
}
|
40715
|
-
|
40716
|
-
this.asArray = function asArray(prop) {
|
40717
|
-
if (prop === undefined || prop === null) {
|
40718
|
-
return [];
|
40719
|
-
} else if (prop instanceof Array) {
|
40720
|
-
return prop;
|
40721
|
-
} else {
|
40722
|
-
return [prop];
|
40723
|
-
}
|
40724
|
-
};
|
40725
|
-
|
40726
|
-
this.toXmlDateTime = function toXmlDateTime(dt) {
|
40727
|
-
if (dt instanceof Date) {
|
40728
|
-
return dt.toISOString();
|
40729
|
-
} else if (typeof (dt) === 'number') {
|
40730
|
-
return new Date(dt).toISOString();
|
40731
|
-
} else {
|
40732
|
-
return null;
|
40733
|
-
}
|
40734
|
-
};
|
40735
|
-
|
40736
|
-
this.asDateTime = function asDateTime(prop) {
|
40737
|
-
if (typeof (prop) === "string") {
|
40738
|
-
return xmlDateTimeToDate(prop);
|
40739
|
-
} else {
|
40740
|
-
return prop;
|
40741
|
-
}
|
40742
|
-
};
|
40743
|
-
|
40744
|
-
/*
|
40745
|
-
Internally the logic works in a cycle:
|
40746
|
-
DOM->JS - implemented by custom logic (deserialization).
|
40747
|
-
JS->XML - implemented by custom logic (serialization).
|
40748
|
-
XML->DOM - implemented by browser.
|
40749
|
-
*/
|
40750
|
-
|
40751
|
-
// Transformns an XML string into DOM-tree
|
40752
|
-
this.xml2dom = function xml2dom(xml) {
|
40753
|
-
return parseXml(xml);
|
40754
|
-
};
|
40755
|
-
|
40756
|
-
// Transforms a DOM tree to JavaScript objects.
|
40757
|
-
this.dom2js = function dom2js(domNode) {
|
40758
|
-
return deserializeDomChildren(domNode, null);
|
40759
|
-
};
|
40760
|
-
|
40761
|
-
// Transforms JavaScript objects to a DOM tree.
|
40762
|
-
this.js2dom = function js2dom(jsObject) {
|
40763
|
-
var xml = this.js2xml(jsObject);
|
40764
|
-
return parseXml(xml);
|
40765
|
-
};
|
40766
|
-
|
40767
|
-
// Transformns an XML string into JavaScript objects.
|
40768
|
-
this.xml2js = function xml2js(xml) {
|
40769
|
-
var domNode = parseXml(xml);
|
40770
|
-
if (domNode != null)
|
40771
|
-
return this.dom2js(domNode);
|
40772
|
-
else
|
40773
|
-
return null;
|
40774
|
-
};
|
40775
|
-
|
40776
|
-
// Transforms JavaScript objects into an XML string.
|
40777
|
-
this.js2xml = function js2xml(jsObject) {
|
40778
|
-
return serializeJavaScriptObjectChildren(jsObject);
|
40779
|
-
};
|
40780
|
-
|
40781
|
-
this.getVersion = function getVersion() {
|
40782
|
-
return VERSION;
|
40783
|
-
};
|
40784
|
-
};
|
40785
|
-
});
|
40786
|
-
|
40787
40020
|
/**
|
40788
40021
|
* @license Angular v17.3.11
|
40789
40022
|
* (c) 2010-2024 Google LLC. https://angular.io/
|
@@ -86871,7 +86104,7 @@ const getFormWidgetTemplate = (widgetType, innerTmpl, attrs, options = {}) => {
|
|
86871
86104
|
tmpl = `<ul role="group" wmCheckboxset ${innerTmpl} ${attrs.get('required') === 'true' ? 'required=true' : ''} ${showTmpl}></ul>`;
|
86872
86105
|
break;
|
86873
86106
|
case FormWidgetType.CHIPS:
|
86874
|
-
tmpl = `<ul wmChips
|
86107
|
+
tmpl = `<ul wmChips debouncetime="${attrs.get('debouncetime')}" ${innerTmpl} ${showTmpl}></ul>`;
|
86875
86108
|
break;
|
86876
86109
|
case FormWidgetType.COLORPICKER:
|
86877
86110
|
tmpl = `<div wmColorPicker ${attrs.get('required') === 'true' ? 'required=true' : ''} ${innerTmpl} ${showTmpl}></div>`;
|
@@ -86886,10 +86119,10 @@ const getFormWidgetTemplate = (widgetType, innerTmpl, attrs, options = {}) => {
|
|
86886
86119
|
tmpl = `<div wmDateTime ${attrs.get('required') === 'true' ? 'required=true' : ''} dataentrymode="${attrs.get('dataentrymode')}" ${innerTmpl} ${showTmpl}></div>`;
|
86887
86120
|
break;
|
86888
86121
|
case FormWidgetType.NUMBER:
|
86889
|
-
tmpl = `<div wmNumber ${innerTmpl} ${attrs.get('required') === 'true' ? 'required=true' : ''} type="number"
|
86122
|
+
tmpl = `<div wmNumber ${innerTmpl} ${attrs.get('required') === 'true' ? 'required=true' : ''} type="number" ${updateOnTmpl} ${showTmpl}></div>`;
|
86890
86123
|
break;
|
86891
86124
|
case FormWidgetType.PASSWORD:
|
86892
|
-
tmpl = `<wm-input ${innerTmpl} ${attrs.get('required') === 'true' ? 'required=true' : ''} type="password"
|
86125
|
+
tmpl = `<wm-input ${innerTmpl} ${attrs.get('required') === 'true' ? 'required=true' : ''} type="password" ${updateOnTmpl} ${showTmpl}></wm-input>`;
|
86893
86126
|
break;
|
86894
86127
|
case FormWidgetType.RADIOSET:
|
86895
86128
|
tmpl = `<ul role="radiogroup" wmRadioset ${innerTmpl} ${showTmpl}></ul>`;
|
@@ -86904,7 +86137,7 @@ const getFormWidgetTemplate = (widgetType, innerTmpl, attrs, options = {}) => {
|
|
86904
86137
|
tmpl = `<wm-select ${attrs.get('required') === 'true' ? 'required=true' : ''} ${innerTmpl} ${showTmpl}></wm-select>`;
|
86905
86138
|
break;
|
86906
86139
|
case FormWidgetType.TOGGLE:
|
86907
|
-
tmpl = `<div wmCheckbox ${innerTmpl} ${attrs.get('required') === 'true' ? 'required=true' : ''} type="toggle"
|
86140
|
+
tmpl = `<div wmCheckbox ${innerTmpl} ${attrs.get('required') === 'true' ? 'required=true' : ''} type="toggle" ${showTmpl}></div>`;
|
86908
86141
|
break;
|
86909
86142
|
case FormWidgetType.SLIDER:
|
86910
86143
|
tmpl = `<div wmSlider ${innerTmpl} ${showTmpl}></div>`;
|
@@ -86917,13 +86150,13 @@ const getFormWidgetTemplate = (widgetType, innerTmpl, attrs, options = {}) => {
|
|
86917
86150
|
tmpl = `<wm-input ${innerTmpl} ${attrs.get('required') === 'true' ? 'required=true' : ''} type="${attrs.get(inputType) || 'text'}" ${updateOnTmpl} ${showTmpl}></wm-input>`;
|
86918
86151
|
break;
|
86919
86152
|
case FormWidgetType.TEXTAREA:
|
86920
|
-
tmpl = `<wm-textarea ${innerTmpl} ${attrs.get('required') === 'true' ? 'required=true' : ''}
|
86153
|
+
tmpl = `<wm-textarea ${innerTmpl} ${attrs.get('required') === 'true' ? 'required=true' : ''} ${updateOnTmpl} ${showTmpl}></wm-textarea>`;
|
86921
86154
|
break;
|
86922
86155
|
case FormWidgetType.TIME:
|
86923
86156
|
tmpl = `<div wmTime ${attrs.get('required') === 'true' ? 'required=true' : ''} dataentrymode="${attrs.get('dataentrymode')}" ${innerTmpl} ${showTmpl}></div>`;
|
86924
86157
|
break;
|
86925
86158
|
case FormWidgetType.TIMESTAMP:
|
86926
|
-
tmpl = `<div wmDateTime ${attrs.get('required') === 'true' ? 'required=true' : ''} dataentrymode="${attrs.get('dataentrymode')}" ${innerTmpl}
|
86159
|
+
tmpl = `<div wmDateTime ${attrs.get('required') === 'true' ? 'required=true' : ''} dataentrymode="${attrs.get('dataentrymode')}" ${innerTmpl} ${showTmpl}></div>`;
|
86927
86160
|
break;
|
86928
86161
|
case FormWidgetType.UPLOAD:
|
86929
86162
|
const counter = options.counter;
|
@@ -87769,7 +87002,6 @@ const REGEX = {
|
|
87769
87002
|
IPOD: /iPod/i,
|
87770
87003
|
IPAD: /iPad/i,
|
87771
87004
|
MAC: /Mac/i,
|
87772
|
-
MACINTEL: /MacIntel/i,
|
87773
87005
|
ANDROID_TABLET: /android|android 3.0|xoom|sch-i800|playbook|tablet|kindle/i,
|
87774
87006
|
MOBILE: /Mobile/i,
|
87775
87007
|
WINDOWS: /Windows Phone/i,
|
@@ -87813,9 +87045,10 @@ const isAndroidTablet = () => REGEX.ANDROID_TABLET.test(userAgent) && !((/Tablet
|
|
87813
87045
|
const isIphone = () => REGEX.IPHONE.test(userAgent);
|
87814
87046
|
const isIpod = () => REGEX.IPOD.test(userAgent);
|
87815
87047
|
const isIpad = () => {
|
87816
|
-
return REGEX.IPAD.test(userAgent) || (window.navigator.maxTouchPoints && window.navigator.maxTouchPoints > 2 &&
|
87048
|
+
return REGEX.IPAD.test(userAgent) || (window.navigator.maxTouchPoints && window.navigator.maxTouchPoints > 2 && REGEX.MAC.test(window.navigator.platform));
|
87817
87049
|
};
|
87818
87050
|
const isIos = () => isIphone() || isIpod() || isIpad();
|
87051
|
+
const isSafari = () => navigator.userAgent.indexOf('Safari') !== -1 && navigator.userAgent.indexOf('Chrome') === -1;
|
87819
87052
|
const isLargeTabletLandscape = (landScapeWidth, landScapeHeight) => {
|
87820
87053
|
const width = landScapeWidth || '1366px';
|
87821
87054
|
const height = landScapeHeight || '1024px';
|
@@ -88172,7 +87405,7 @@ const getValidJSON = (content) => {
|
|
88172
87405
|
}
|
88173
87406
|
};
|
88174
87407
|
const xmlToJson = (xmlString) => {
|
88175
|
-
const x2jsObj = new X2JS({ 'emptyNodeForm': '
|
87408
|
+
const x2jsObj = new X2JS({ 'emptyNodeForm': 'content', 'attributePrefix': '', 'enableToStringFunc': false });
|
88176
87409
|
let json = x2jsObj.xml2js(xmlString);
|
88177
87410
|
if (json) {
|
88178
87411
|
json = get(json, Object.keys(json)[0]);
|
@@ -89281,6 +88514,7 @@ var Utils = /*#__PURE__*/Object.freeze({
|
|
89281
88514
|
isNumberType: isNumberType,
|
89282
88515
|
isObject: isObject,
|
89283
88516
|
isPageable: isPageable,
|
88517
|
+
isSafari: isSafari,
|
89284
88518
|
isTablet: isTablet,
|
89285
88519
|
isValidWebURL: isValidWebURL,
|
89286
88520
|
isVideoFile: isVideoFile,
|
@@ -91118,13 +90352,13 @@ const scopeComponentStyles = (componentName, componentType, styles = '') => {
|
|
91118
90352
|
|
91119
90353
|
const carouselTagName = 'carousel';
|
91120
90354
|
const dataSetKey$5 = 'dataset';
|
91121
|
-
const idGen$
|
90355
|
+
const idGen$t = new IDGenerator('wm_carousel_ref_');
|
91122
90356
|
const isDynamicCarousel = node => node.attrs.find(attr => attr.name === 'type' && attr.value === 'dynamic');
|
91123
90357
|
register('wm-carousel', () => {
|
91124
90358
|
return {
|
91125
90359
|
pre: (attrs, shared) => {
|
91126
90360
|
// generating unique Id for the carousel
|
91127
|
-
const counter = idGen$
|
90361
|
+
const counter = idGen$t.nextUid();
|
91128
90362
|
shared.set('carousel_ref', counter);
|
91129
90363
|
return `<div class="app-carousel carousel"><${carouselTagName} wmCarousel #${counter}="wmCarousel" ${getAttrMarkup(attrs)} interval="0" [ngClass]="${counter}.navigationClass">`;
|
91130
90364
|
},
|
@@ -91226,12 +90460,12 @@ var marquee_build$1 = /*#__PURE__*/Object.freeze({
|
|
91226
90460
|
});
|
91227
90461
|
|
91228
90462
|
const tagName$1A = 'a';
|
91229
|
-
const idGen$
|
90463
|
+
const idGen$s = new IDGenerator('wm_anchor');
|
91230
90464
|
register('wm-anchor', () => {
|
91231
90465
|
return {
|
91232
90466
|
pre: (attrs) => {
|
91233
|
-
const counter = idGen$
|
91234
|
-
return `<${tagName$1A} wmAnchor #${counter}="wmAnchor" role="link" data-identifier="anchor" [attr.aria-label]="${counter}.
|
90467
|
+
const counter = idGen$s.nextUid();
|
90468
|
+
return `<${tagName$1A} wmAnchor #${counter}="wmAnchor" role="link" data-identifier="anchor" [attr.aria-label]="${counter}.arialabel || (${counter}.badgevalue ? ${counter}.caption + ' ' + ${counter}.badgevalue : ${counter}.caption) || null" ${getAttrMarkup(attrs)}>`;
|
91235
90469
|
},
|
91236
90470
|
post: () => `</${tagName$1A}>`
|
91237
90471
|
};
|
@@ -91258,12 +90492,12 @@ var audio_build$1 = /*#__PURE__*/Object.freeze({
|
|
91258
90492
|
});
|
91259
90493
|
|
91260
90494
|
const tagName$1y = 'div';
|
91261
|
-
const idGen$
|
90495
|
+
const idGen$r = new IDGenerator('wm_html');
|
91262
90496
|
register('wm-html', () => {
|
91263
90497
|
return {
|
91264
90498
|
pre: (attrs) => {
|
91265
|
-
const counter = idGen$
|
91266
|
-
return `<${tagName$1y} wmHtml #${counter}="wmHtml" [attr.aria-label]="${counter}.
|
90499
|
+
const counter = idGen$r.nextUid();
|
90500
|
+
return `<${tagName$1y} wmHtml #${counter}="wmHtml" role="application" [attr.aria-label]="${counter}.arialabel || 'HTML content'" ${getAttrMarkup(attrs)}>`;
|
91267
90501
|
},
|
91268
90502
|
post: () => `</${tagName$1y}>`
|
91269
90503
|
};
|
@@ -91278,7 +90512,7 @@ var html_build$1 = /*#__PURE__*/Object.freeze({
|
|
91278
90512
|
const tagName$1x = 'span';
|
91279
90513
|
register('wm-icon', () => {
|
91280
90514
|
return {
|
91281
|
-
pre: attrs => `<${tagName$1x} wmIcon
|
90515
|
+
pre: attrs => `<${tagName$1x} wmIcon ${getAttrMarkup(attrs)}>`,
|
91282
90516
|
post: () => `</${tagName$1x}>`
|
91283
90517
|
};
|
91284
90518
|
});
|
@@ -91304,7 +90538,7 @@ var iframe_build$1 = /*#__PURE__*/Object.freeze({
|
|
91304
90538
|
});
|
91305
90539
|
|
91306
90540
|
let tagName$1v = 'p';
|
91307
|
-
const idGen$
|
90541
|
+
const idGen$q = new IDGenerator('wm_label');
|
91308
90542
|
register('wm-label', () => {
|
91309
90543
|
return {
|
91310
90544
|
pre: (attrs) => {
|
@@ -91318,8 +90552,8 @@ register('wm-label', () => {
|
|
91318
90552
|
else {
|
91319
90553
|
tagName$1v = 'label';
|
91320
90554
|
}
|
91321
|
-
const counter = idGen$
|
91322
|
-
return `<${tagName$1v} wmLabel #${counter}="wmLabel"
|
90555
|
+
const counter = idGen$q.nextUid();
|
90556
|
+
return `<${tagName$1v} wmLabel #${counter}="wmLabel" ${getAttrMarkup(attrs)}>`;
|
91323
90557
|
},
|
91324
90558
|
post: () => `</${tagName$1v}>`
|
91325
90559
|
};
|
@@ -91332,12 +90566,12 @@ var label_build$1 = /*#__PURE__*/Object.freeze({
|
|
91332
90566
|
});
|
91333
90567
|
|
91334
90568
|
const tagName$1u = 'img';
|
91335
|
-
const idGen$
|
90569
|
+
const idGen$p = new IDGenerator('wm_picture');
|
91336
90570
|
register('wm-picture', () => {
|
91337
90571
|
return {
|
91338
90572
|
pre: (attrs) => {
|
91339
|
-
const counter = idGen$
|
91340
|
-
return `<${tagName$1u} wmPicture #${counter}="wmPicture" alt="
|
90573
|
+
const counter = idGen$p.nextUid();
|
90574
|
+
return `<${tagName$1u} wmPicture #${counter}="wmPicture" [alt]="${counter}.alttext" wmImageCache="${attrs.get('offline') || 'true'}" [attr.aria-label]="${counter}.arialabel || 'Image'" ${getAttrMarkup(attrs)}>`;
|
91341
90575
|
}
|
91342
90576
|
};
|
91343
90577
|
});
|
@@ -91349,12 +90583,12 @@ var picture_build$1 = /*#__PURE__*/Object.freeze({
|
|
91349
90583
|
});
|
91350
90584
|
|
91351
90585
|
const tagName$1t = 'div';
|
91352
|
-
const idGen$
|
90586
|
+
const idGen$o = new IDGenerator('wm_spinner');
|
91353
90587
|
register('wm-spinner', () => {
|
91354
90588
|
return {
|
91355
90589
|
pre: (attrs) => {
|
91356
|
-
const counter = idGen$
|
91357
|
-
return `<${tagName$1t} wmSpinner #${counter}="wmSpinner" role="alert" [attr.aria-label]="${counter}.
|
90590
|
+
const counter = idGen$o.nextUid();
|
90591
|
+
return `<${tagName$1t} wmSpinner #${counter}="wmSpinner" role="alert" [attr.aria-label]="${counter}.arialabel || 'Loading...'" aria-live="assertive" aria-busy="true" ${getAttrMarkup(attrs)}>`;
|
91358
90592
|
},
|
91359
90593
|
post: () => `</${tagName$1t}>`
|
91360
90594
|
};
|
@@ -91406,9 +90640,13 @@ var progressBar_build$1 = /*#__PURE__*/Object.freeze({
|
|
91406
90640
|
});
|
91407
90641
|
|
91408
90642
|
const tagName$1r = 'div';
|
90643
|
+
const idGen$n = new IDGenerator('wm_progress_circle');
|
91409
90644
|
register('wm-progress-circle', () => {
|
91410
90645
|
return {
|
91411
|
-
pre: attrs =>
|
90646
|
+
pre: (attrs) => {
|
90647
|
+
const counter = idGen$n.nextUid();
|
90648
|
+
return `<${tagName$1r} wmProgressCircle #${counter}="wmProgressCircle" role="progressbar" [attr.aria-label]="${counter}.arialabel || 'circle-progress'" [attr.hint]="${counter}.hint" [attr.aria-valuetext]="${counter}.displayValue" [attr.aria-valuemin]="${counter}.minvalue" [attr.aria-valuemax]="${counter}.maxvalue" ${getAttrMarkup(attrs)}>`;
|
90649
|
+
},
|
91412
90650
|
post: () => `</${tagName$1r}>`
|
91413
90651
|
};
|
91414
90652
|
});
|
@@ -91425,7 +90663,7 @@ register('wm-richtexteditor', () => {
|
|
91425
90663
|
return {
|
91426
90664
|
pre: (attrs) => {
|
91427
90665
|
const counter = idGen$m.nextUid();
|
91428
|
-
return `<${tagName$1q} wmRichTextEditor #${counter}="wmRichTextEditor" role="textbox" [attr.aria-label]="${counter}.
|
90666
|
+
return `<${tagName$1q} wmRichTextEditor #${counter}="wmRichTextEditor" role="textbox" [attr.aria-label]="${counter}.arialabel || 'Richtext editor'" ${getFormMarkupAttr(attrs)}>`;
|
91429
90667
|
},
|
91430
90668
|
post: () => `</${tagName$1q}>`
|
91431
90669
|
};
|
@@ -91543,7 +90781,7 @@ register('wm-accordion', () => {
|
|
91543
90781
|
// generating unique Id for the accordion
|
91544
90782
|
const counter = idGen$l.nextUid();
|
91545
90783
|
shared.set('accordion_ref', counter);
|
91546
|
-
return `<${tagName$1i} wmAccordion #${counter}="wmAccordion"
|
90784
|
+
return `<${tagName$1i} wmAccordion #${counter}="wmAccordion" ${getAttrMarkup(attrs)}>`;
|
91547
90785
|
},
|
91548
90786
|
post: () => `</${tagName$1i}>`,
|
91549
90787
|
template: (node, shared) => {
|
@@ -91582,7 +90820,7 @@ register('wm-accordionpane', () => {
|
|
91582
90820
|
return {
|
91583
90821
|
pre: (attrs) => {
|
91584
90822
|
const counter = idGen$k.nextUid();
|
91585
|
-
return `<${tagName$1h} #${counter}="wmAccordionPane"
|
90823
|
+
return `<${tagName$1h} #${counter}="wmAccordionPane" wmAccordionPane partialContainer wm-navigable-element="true" ${getAttrMarkup(attrs)}>`;
|
91586
90824
|
},
|
91587
90825
|
post: () => `</${tagName$1h}>`
|
91588
90826
|
};
|
@@ -91790,7 +91028,7 @@ var tabPane_build$1 = /*#__PURE__*/Object.freeze({
|
|
91790
91028
|
const tagName$17 = 'div';
|
91791
91029
|
register('wm-tile', () => {
|
91792
91030
|
return {
|
91793
|
-
pre: attrs => `<${tagName$17} wmTile
|
91031
|
+
pre: attrs => `<${tagName$17} wmTile wm-navigable-element="true" ${getAttrMarkup(attrs)}>`,
|
91794
91032
|
post: () => `</${tagName$17}>`
|
91795
91033
|
};
|
91796
91034
|
});
|
@@ -91804,7 +91042,7 @@ var tile_build$1 = /*#__PURE__*/Object.freeze({
|
|
91804
91042
|
const tagName$16 = 'div';
|
91805
91043
|
register('wm-wizard', () => {
|
91806
91044
|
return {
|
91807
|
-
pre: attrs => `<${tagName$16} wmWizard
|
91045
|
+
pre: attrs => `<${tagName$16} wmWizard ${getAttrMarkup(attrs)}>`,
|
91808
91046
|
post: () => `</${tagName$16}>`
|
91809
91047
|
};
|
91810
91048
|
});
|
@@ -91840,7 +91078,7 @@ register('wm-barcodescanner', () => {
|
|
91840
91078
|
return {
|
91841
91079
|
pre: (attrs) => {
|
91842
91080
|
const counter = idGen$g.nextUid();
|
91843
|
-
return `<${tagName$14} wmBarcodescanner #${counter}="wmBarcodescanner" [attr.aria-label]="${counter}.
|
91081
|
+
return `<${tagName$14} wmBarcodescanner #${counter}="wmBarcodescanner" [attr.aria-label]="${counter}.arialabel || 'Barcode scanner'" ${getAttrMarkup(attrs)}>`;
|
91844
91082
|
},
|
91845
91083
|
post: () => `</${tagName$14}>`
|
91846
91084
|
};
|
@@ -91858,7 +91096,7 @@ register('wm-camera', () => {
|
|
91858
91096
|
return {
|
91859
91097
|
pre: (attrs) => {
|
91860
91098
|
const counter = idGen$f.nextUid();
|
91861
|
-
return `<${tagName$13} type='button' wmCamera #${counter}="wmCamera" [attr.aria-label]="${counter}.
|
91099
|
+
return `<${tagName$13} type='button' wmCamera #${counter}="wmCamera" [attr.aria-label]="${counter}.arialabel || 'Camera'" ${getAttrMarkup(attrs)}>`;
|
91862
91100
|
},
|
91863
91101
|
post: () => `</${tagName$13}>`
|
91864
91102
|
};
|
@@ -91873,7 +91111,7 @@ var camera_build$1 = /*#__PURE__*/Object.freeze({
|
|
91873
91111
|
const tagName$12 = 'div';
|
91874
91112
|
register('wm-alertdialog', () => {
|
91875
91113
|
return {
|
91876
|
-
pre: attrs => `<${tagName$12} wmAlertDialog
|
91114
|
+
pre: attrs => `<${tagName$12} wmAlertDialog wm-navigable-element="true" ${getAttrMarkup(attrs)}>`,
|
91877
91115
|
post: () => `</${tagName$12}>`
|
91878
91116
|
};
|
91879
91117
|
});
|
@@ -92181,7 +91419,7 @@ const registerFormField = (isFormField) => {
|
|
92181
91419
|
const dataRole = isFormField ? 'form-field' : 'filter-field';
|
92182
91420
|
const formFieldErrorMsgId = 'wmform-field-error-' + generateGUId();
|
92183
91421
|
const validationMsg = isFormField ? `<p *ngIf="${counter}._control?.invalid && ${counter}._control?.touched && ${pCounter}.isUpdateMode"
|
92184
|
-
class="help-block text-danger" aria-hidden="false"
|
91422
|
+
class="help-block text-danger" aria-hidden="false" role="alert"
|
92185
91423
|
aria-live="assertive" [attr.aria-label]="${counter}.validationmessage" id="${formFieldErrorMsgId}"><span aria-hidden="true" [textContent]="${counter}.validationmessage"></span></p>` : '';
|
92186
91424
|
const eventsTmpl = widgetType === FormWidgetType.UPLOAD ? '' : getEventsTemplate(attrs);
|
92187
91425
|
const controlLayout = isMobileApp() ? 'col-xs-12' : 'col-sm-12';
|
@@ -92203,8 +91441,8 @@ const registerFormField = (isFormField) => {
|
|
92203
91441
|
[ngStyle]="{width: ${pCounter}.captionsize}" [ngClass]="{'text-danger': ${counter}._control?.invalid && ${counter}._control?.touched && ${pCounter}.isUpdateMode,
|
92204
91442
|
required: ${pCounter}.isUpdateMode && ${counter}.required}" [textContent]="${counter}.displayname"> </label>
|
92205
91443
|
<div [ngClass]="${counter}.displayname ? ${pCounter}._widgetClass : '${controlLayout}'">
|
92206
|
-
<
|
92207
|
-
[hidden]="${pCounter}.isUpdateMode || ${counter}.viewmodewidget === 'default' || ${counter}.widgettype === 'upload'" [innerHTML]="${getCaptionByWidget(attrs, widgetType, counter)}"></
|
91444
|
+
<span class="form-control-static app-label"
|
91445
|
+
[hidden]="${pCounter}.isUpdateMode || ${counter}.viewmodewidget === 'default' || ${counter}.widgettype === 'upload'" [innerHTML]="${getCaptionByWidget(attrs, widgetType, counter)}"></span>
|
92208
91446
|
${getTemplate(attrs, widgetType, eventsTmpl, counter, pCounter, isInList)}
|
92209
91447
|
<span aria-hidden="true" *ngIf="${counter}.showPendingSpinner" class="form-field-spinner fa fa-circle-o-notch fa-spin form-control-feedback"></span>
|
92210
91448
|
<p *ngIf="!(${counter}._control?.invalid && ${counter}._control?.touched) && ${pCounter}.isUpdateMode"
|
@@ -92410,7 +91648,7 @@ register('wm-calendar', () => {
|
|
92410
91648
|
return {
|
92411
91649
|
pre: (attrs) => {
|
92412
91650
|
let viewType = attrs.get('view') ? attrs.get('view') + ' view' : 'month view';
|
92413
|
-
return `<${tagName$U} wmCalendar redrawable style="width:100%" aria-label="${viewType}" ${getAttrMarkup(attrs)}>`;
|
91651
|
+
return `<${tagName$U} wmCalendar redrawable style="width:100%" role="region" aria-label="${viewType}" ${getAttrMarkup(attrs)}>`;
|
92414
91652
|
},
|
92415
91653
|
post: () => `</${tagName$U}>`
|
92416
91654
|
};
|
@@ -92425,7 +91663,7 @@ var calendar_build$1 = /*#__PURE__*/Object.freeze({
|
|
92425
91663
|
const tagName$T = 'ul';
|
92426
91664
|
register('wm-chips', () => {
|
92427
91665
|
return {
|
92428
|
-
pre: attrs => `<${tagName$T} wmChips
|
91666
|
+
pre: attrs => `<${tagName$T} wmChips ${getAttrMarkup(attrs)} ${getNgModelAttr(attrs)}>`,
|
92429
91667
|
post: () => `</${tagName$T}>`
|
92430
91668
|
};
|
92431
91669
|
});
|
@@ -92439,7 +91677,7 @@ var chips_build$1 = /*#__PURE__*/Object.freeze({
|
|
92439
91677
|
const tagName$S = 'div';
|
92440
91678
|
register('wm-colorpicker', () => {
|
92441
91679
|
return {
|
92442
|
-
pre: attrs => `<${tagName$S} wmColorPicker ${getAttrMarkup(attrs)}
|
91680
|
+
pre: attrs => `<${tagName$S} wmColorPicker ${getAttrMarkup(attrs)} ${getChildAttrs(attrs)} ${getNgModelAttr(attrs)}>`,
|
92443
91681
|
post: () => `</${tagName$S}>`
|
92444
91682
|
};
|
92445
91683
|
});
|
@@ -92453,7 +91691,7 @@ var colorPicker_build$1 = /*#__PURE__*/Object.freeze({
|
|
92453
91691
|
const tagName$R = 'div';
|
92454
91692
|
register('wm-currency', () => {
|
92455
91693
|
return {
|
92456
|
-
pre: attrs => `<${tagName$R} wmCurrency ${getAttrMarkup(attrs)}
|
91694
|
+
pre: attrs => `<${tagName$R} wmCurrency ${getAttrMarkup(attrs)} ${getChildAttrs(attrs)} ${getNgModelAttr(attrs)}>`,
|
92457
91695
|
post: () => `</${tagName$R}>`
|
92458
91696
|
};
|
92459
91697
|
});
|
@@ -92467,7 +91705,7 @@ var currency_build$1 = /*#__PURE__*/Object.freeze({
|
|
92467
91705
|
const tagName$Q = 'div';
|
92468
91706
|
register('wm-buttongroup', () => {
|
92469
91707
|
return {
|
92470
|
-
pre: attrs => `<${tagName$Q} wmButtonGroup role="group"
|
91708
|
+
pre: attrs => `<${tagName$Q} wmButtonGroup role="group" ${getAttrMarkup(attrs)}>`,
|
92471
91709
|
post: () => `</${tagName$Q}>`
|
92472
91710
|
};
|
92473
91711
|
});
|
@@ -92484,7 +91722,7 @@ register('wm-button', () => {
|
|
92484
91722
|
return {
|
92485
91723
|
pre: (attrs) => {
|
92486
91724
|
const counter = idGen$c.nextUid();
|
92487
|
-
return `<${tagName$P} wmButton #${counter}="wmButton" [attr.aria-label]="${counter}.
|
91725
|
+
return `<${tagName$P} wmButton #${counter}="wmButton" [attr.aria-label]="${counter}.arialabel || (${counter}.badgevalue ? ${counter}.caption + ' ' + ${counter}.badgevalue : ${counter}.caption) || null" ${getAttrMarkup(attrs)}>`;
|
92488
91726
|
},
|
92489
91727
|
post: () => `</${tagName$P}>`
|
92490
91728
|
};
|
@@ -92586,7 +91824,7 @@ register('wm-switch', () => {
|
|
92586
91824
|
return {
|
92587
91825
|
pre: (attrs) => {
|
92588
91826
|
const counter = idGen$b.nextUid();
|
92589
|
-
return `<${tagName$I} wmSwitch #${counter}="wmSwitch" [attr.aria-label]="${counter}.
|
91827
|
+
return `<${tagName$I} wmSwitch #${counter}="wmSwitch" role="group" [attr.aria-label]="${counter}.arialabel || 'Switch choose options'" ${getFormMarkupAttr(attrs)} ${getNgModelAttr(attrs)}>`;
|
92590
91828
|
},
|
92591
91829
|
post: () => `</${tagName$I}>`
|
92592
91830
|
};
|
@@ -92676,7 +91914,11 @@ register('wm-fileupload', () => {
|
|
92676
91914
|
const onSelectBinding = getDataSource(attrs.get('select.event'));
|
92677
91915
|
attrs.set('datasource.bind', onSelectBinding);
|
92678
91916
|
}
|
92679
|
-
|
91917
|
+
if (attrs.get('delete.event')) {
|
91918
|
+
const onDeleteBinding = getDataSource(attrs.get('delete.event'));
|
91919
|
+
attrs.set('deletedatasource.bind', onDeleteBinding);
|
91920
|
+
}
|
91921
|
+
return `<${tagName$C} wmFileUpload ${getAttrMarkup(attrs)}>`;
|
92680
91922
|
},
|
92681
91923
|
post: () => `</${tagName$C}>`
|
92682
91924
|
};
|
@@ -93093,7 +92335,7 @@ register('wm-page', () => {
|
|
93093
92335
|
},
|
93094
92336
|
pre: (attrs) => {
|
93095
92337
|
const counter = idGen$8.nextUid();
|
93096
|
-
return `<${tagName$p} wmPage #${counter}="wmPage" data-role="pageContainer" [attr.aria-label]="${counter}.
|
92338
|
+
return `<${tagName$p} wmPage #${counter}="wmPage" data-role="pageContainer" [attr.aria-label]="${counter}.arialabel" ${getAttrMarkup(attrs)}>`;
|
93097
92339
|
},
|
93098
92340
|
post: () => `</${tagName$p}>`
|
93099
92341
|
};
|
@@ -93111,7 +92353,7 @@ register('wm-layout', () => {
|
|
93111
92353
|
return {
|
93112
92354
|
pre: (attrs) => {
|
93113
92355
|
const counter = idGen$7.nextUid();
|
93114
|
-
return `<${tagName$o} wmLayout #${counter}="wmLayout" data-role="pageContainer" [attr.aria-label]="${counter}.
|
92356
|
+
return `<${tagName$o} wmLayout #${counter}="wmLayout" data-role="pageContainer" [attr.aria-label]="${counter}.arialabel" ${getAttrMarkup(attrs)}>`;
|
93115
92357
|
},
|
93116
92358
|
post: () => `</${tagName$o}>`
|
93117
92359
|
};
|
@@ -93171,7 +92413,7 @@ register('wm-footer', () => {
|
|
93171
92413
|
return {
|
93172
92414
|
pre: (attrs) => {
|
93173
92415
|
const counter = idGen$6.nextUid();
|
93174
|
-
return `<${tagName$k} wmFooter #${counter}="wmFooter" partialContainer data-role="page-footer" role="contentinfo" [attr.aria-label]="${counter}.
|
92416
|
+
return `<${tagName$k} wmFooter #${counter}="wmFooter" partialContainer data-role="page-footer" role="contentinfo" [attr.aria-label]="${counter}.arialabel || 'Page footer'" ${getAttrMarkup(attrs)}>`;
|
93175
92417
|
},
|
93176
92418
|
post: () => `</${tagName$k}>`
|
93177
92419
|
};
|
@@ -93189,7 +92431,7 @@ register('wm-header', () => {
|
|
93189
92431
|
return {
|
93190
92432
|
pre: (attrs) => {
|
93191
92433
|
const counter = idGen$5.nextUid();
|
93192
|
-
return `<${tagName$j} wmHeader #${counter}="wmHeader" partialContainer data-role="page-header" role="banner" [attr.aria-label]="${counter}.
|
92434
|
+
return `<${tagName$j} wmHeader #${counter}="wmHeader" partialContainer data-role="page-header" role="banner" [attr.aria-label]="${counter}.arialabel || 'Page header'" ${getAttrMarkup(attrs)}>`;
|
93193
92435
|
},
|
93194
92436
|
post: () => `</${tagName$j}>`
|
93195
92437
|
};
|
@@ -93207,7 +92449,7 @@ register('wm-left-panel', () => {
|
|
93207
92449
|
return {
|
93208
92450
|
pre: (attrs) => {
|
93209
92451
|
const counter = idGen$4.nextUid();
|
93210
|
-
return `<${tagName$i} wmLeftPanel #${counter}="wmLeftPanel" partialContainer data-role="page-left-panel" [attr.aria-label]="${counter}.
|
92452
|
+
return `<${tagName$i} wmLeftPanel #${counter}="wmLeftPanel" partialContainer data-role="page-left-panel" [attr.aria-label]="${counter}.arialabel || 'Left navigation panel'" wmSmoothscroll="${attrs.get('smoothscroll') || 'false'}" ${getAttrMarkup(attrs)}>`;
|
93211
92453
|
},
|
93212
92454
|
post: () => `</${tagName$i}>`
|
93213
92455
|
};
|
@@ -93239,7 +92481,7 @@ register('wm-right-panel', () => {
|
|
93239
92481
|
return {
|
93240
92482
|
pre: (attrs) => {
|
93241
92483
|
const counter = idGen$3.nextUid();
|
93242
|
-
return `<${tagName$g} wmRightPanel #${counter}="wmRightPanel" partialContainer data-role="page-right-panel" role="complementary" [attr.aria-label]="${counter}.
|
92484
|
+
return `<${tagName$g} wmRightPanel #${counter}="wmRightPanel" partialContainer data-role="page-right-panel" role="complementary" [attr.aria-label]="${counter}.arialabel || 'Right navigation panel'" ${getAttrMarkup(attrs)}>`;
|
93243
92485
|
},
|
93244
92486
|
post: () => `</${tagName$g}>`
|
93245
92487
|
};
|
@@ -93305,7 +92547,7 @@ register('wm-top-nav', () => {
|
|
93305
92547
|
return {
|
93306
92548
|
pre: (attrs) => {
|
93307
92549
|
const counter = idGen$2.nextUid();
|
93308
|
-
return `<${tagName$d} wmTopNav #${counter}="wmTopNav" partialContainer data-role="page-topnav" role="navigation" [attr.aria-label]="${counter}.
|
92550
|
+
return `<${tagName$d} wmTopNav #${counter}="wmTopNav" partialContainer data-role="page-topnav" role="navigation" [attr.aria-label]="${counter}.arialabel || 'Second level navigation'" ${getAttrMarkup(attrs)}>`;
|
93309
92551
|
},
|
93310
92552
|
post: () => `</${tagName$d}>`
|
93311
92553
|
};
|