@wavemaker/angular-codegen 11.0.0-next.139101 → 11.0.0-next.139102

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.
@@ -41731,7 +41731,8 @@ const REGEX = {
41731
41731
  SPECIAL_CHARACTERS: /[^A-Z0-9a-z_]+/i,
41732
41732
  APP_SERVER_URL_FORMAT: /^(http[s]?:\/\/)(www\.){0,1}[a-zA-Z0-9\.\-]+([:]?[0-9]{2,5}|\.[a-zA-Z]{2,5}[\.]{0,1})\/+[^?#&=]+$/,
41733
41733
  JSON_DATE_FORMAT: /\d{4}-[0-1]\d-[0-3]\d(T[0-2]\d:[0-5]\d:[0-5]\d.\d{1,3}Z$)?/,
41734
- DATA_URL: /^\s*data:([a-z]+\/[a-z0-9-+.]+(;[a-z-]+=[a-z0-9-]+)?)?(;base64)?,([a-z0-9!$&',()*+;=\-._~:@\/?%\s]*)\s*$/i
41734
+ DATA_URL: /^\s*data:([a-z]+\/[a-z0-9-+.]+(;[a-z-]+=[a-z0-9-]+)?)?(;base64)?,([a-z0-9!$&',()*+;=\-._~:@\/?%\s]*)\s*$/i,
41735
+ ISO_DATE_FORMAT: /(\d{4}-\d{2}-\d{2})T(\d{2}:\d{2}:\d{2})(\.\d+)?([+-]\d{2}:?\d{2}|Z)$/
41735
41736
  }, compareBySeparator = ':';
41736
41737
  const NUMBER_TYPES = ['int', DataType.INTEGER, DataType.FLOAT, DataType.DOUBLE, DataType.LONG, DataType.SHORT, DataType.BYTE, DataType.BIG_INTEGER, DataType.BIG_DECIMAL];
41737
41738
  const now = new Date();
@@ -41957,19 +41958,43 @@ function triggerFn(fn, ...argmnts) {
41957
41958
  /**
41958
41959
  * This method is used to get the formatted date
41959
41960
  */
41960
- const getFormattedDate = (datePipe, dateObj, format) => {
41961
+ const getFormattedDate = (datePipe, dateObj, format, timeZone, isTimeStampType, isIntervalDateTime, compInstance) => {
41961
41962
  if (!dateObj) {
41962
41963
  return undefined;
41963
41964
  }
41964
41965
  if (format === 'timestamp') {
41965
41966
  return moment(dateObj).valueOf();
41966
41967
  }
41967
- return datePipe.transform(dateObj, format);
41968
+ if (format === 'UTC') {
41969
+ return new Date(dateObj).toISOString();
41970
+ }
41971
+ if (timeZone) {
41972
+ const momentFormat = format.replaceAll('y', 'Y').replaceAll('d', 'D').replace('a', 'A');
41973
+ if (isIntervalDateTime) { // dates which are of type time widget (value is hh:mm:ss) but returned as date string from time comp
41974
+ return moment(dateObj).format(momentFormat);
41975
+ }
41976
+ if (isTimeStampType === 'datetimestamp') {
41977
+ dateObj = getMomentLocaleObject(timeZone, dateObj);
41978
+ return moment(dateObj).format(momentFormat);
41979
+ }
41980
+ }
41981
+ return datePipe.transform(dateObj, format, timeZone, compInstance);
41982
+ };
41983
+ /**
41984
+ * This method is used to check if the date has timezone information or not
41985
+ */
41986
+ const hasOffsetStr = (dateStr) => {
41987
+ if (typeof dateStr !== 'string')
41988
+ return;
41989
+ const matches = dateStr.match(REGEX.ISO_DATE_FORMAT);
41990
+ if (matches && matches[4]) {
41991
+ return true;
41992
+ }
41968
41993
  };
41969
41994
  /**
41970
41995
  * method to get the date object from the input received
41971
41996
  */
41972
- const getDateObj = (value, options) => {
41997
+ const getDateObj = (value, options, timezone) => {
41973
41998
  // Handling localization
41974
41999
  if (options && options.pattern && options.pattern !== 'timestamp') {
41975
42000
  // Fix for WMS-19601, invalid date is returned on date selection.
@@ -42001,7 +42026,7 @@ const getDateObj = (value, options) => {
42001
42026
  * (Ex: If date value is "1990-11-23" and moment(value).format() is "١٩٩٠-١١-٢٣T٠٠:٠٠:٠٠+٠٥:٣٠")
42002
42027
  * and new Date(moment(value).format()) is giving Invalid Date. So frst converting it to timestamp value.
42003
42028
  */
42004
- dateObj = new Date(moment(moment(value).format()).valueOf());
42029
+ dateObj = !timezone ? new Date(moment(moment(value).format()).valueOf()) : getMomentLocaleObject(timezone, value);
42005
42030
  }
42006
42031
  if (value === CURRENT_DATE || isNaN(dateObj.getDay())) {
42007
42032
  return now;
@@ -42393,6 +42418,14 @@ const loadStyleSheets = (urls = []) => {
42393
42418
  // function to check if the script is already loaded
42394
42419
  const isScriptLoaded = src => !!getNode(`script[src="${src}"], script[data-src="${src}"]`);
42395
42420
  const ɵ4$3 = isScriptLoaded;
42421
+ const getMomentLocaleObject = (timeZone, dateObj) => {
42422
+ if (dateObj) {
42423
+ return new Date(new Date(moment(dateObj).tz(timeZone).format()).toLocaleString("en-US", { timeZone: timeZone }));
42424
+ }
42425
+ else {
42426
+ return new Date(new Date(moment().tz(timeZone).format()).toLocaleString("en-US", { timeZone: timeZone }));
42427
+ }
42428
+ };
42396
42429
  const loadScript = (url, loadViaScriptTag, cacheable = false) => __awaiter$1(void 0, void 0, void 0, function* () {
42397
42430
  const _url = url.trim();
42398
42431
  if (!_url.length || isScriptLoaded(_url)) {
@@ -43112,6 +43145,7 @@ var Utils = /*#__PURE__*/Object.freeze({
43112
43145
  getResourceURL: getResourceURL,
43113
43146
  triggerFn: triggerFn,
43114
43147
  getFormattedDate: getFormattedDate,
43148
+ hasOffsetStr: hasOffsetStr,
43115
43149
  getDateObj: getDateObj,
43116
43150
  addEventListenerOnElement: addEventListenerOnElement,
43117
43151
  getClonedObject: getClonedObject,
@@ -43135,6 +43169,7 @@ var Utils = /*#__PURE__*/Object.freeze({
43135
43169
  isEqualWithFields: isEqualWithFields,
43136
43170
  loadStyleSheet: loadStyleSheet,
43137
43171
  loadStyleSheets: loadStyleSheets,
43172
+ getMomentLocaleObject: getMomentLocaleObject,
43138
43173
  loadScript: loadScript,
43139
43174
  loadScripts: loadScripts,
43140
43175
  _WM_APP_PROJECT: _WM_APP_PROJECT,
@@ -44403,6 +44438,7 @@ const WIDGET_IMPORTS = new Map([
44403
44438
  ['wm-network-info-toaster', BASIC_MODULE],
44404
44439
  ['wm-number', INPUT_MODULE],
44405
44440
  ['wm-page', PAGE_MODULE],
44441
+ ['wm-layout', PAGE_MODULE],
44406
44442
  ['wm-page-content', PAGE_MODULE],
44407
44443
  ['wm-pagedialog', PARTIAL_DIALOG_MODULE],
44408
44444
  ['wm-pagination', PAGINATION_MODULE],
@@ -44931,14 +44967,14 @@ const scopeComponentStyles = (componentName, componentType, styles = '') => {
44931
44967
 
44932
44968
  const carouselTagName = 'carousel';
44933
44969
  const dataSetKey$5 = 'dataset';
44934
- const idGen$q = new IDGenerator('wm_carousel_ref_');
44970
+ const idGen$r = new IDGenerator('wm_carousel_ref_');
44935
44971
  const isDynamicCarousel = node => node.attrs.find(attr => attr.name === 'type' && attr.value === 'dynamic');
44936
- const ɵ0$c$1 = isDynamicCarousel;
44972
+ const ɵ0$d$1 = isDynamicCarousel;
44937
44973
  register('wm-carousel', () => {
44938
44974
  return {
44939
44975
  pre: (attrs, shared) => {
44940
44976
  // generating unique Id for the carousel
44941
- const counter = idGen$q.nextUid();
44977
+ const counter = idGen$r.nextUid();
44942
44978
  shared.set('carousel_ref', counter);
44943
44979
  return `<div class="app-carousel carousel"><${carouselTagName} wmCarousel #${counter}="wmCarousel" ${getAttrMarkup(attrs)} interval="0" [ngClass]="${counter}.navigationClass">`;
44944
44980
  },
@@ -44971,7 +45007,7 @@ var carousel_build = () => { };
44971
45007
  var carousel_build$1 = /*#__PURE__*/Object.freeze({
44972
45008
  __proto__: null,
44973
45009
  'default': carousel_build,
44974
- 'ɵ0': ɵ0$c$1
45010
+ 'ɵ0': ɵ0$d$1
44975
45011
  });
44976
45012
 
44977
45013
  const carouselContentTagName = 'slide';
@@ -45005,11 +45041,11 @@ var carouselTemplate_build$1 = /*#__PURE__*/Object.freeze({
45005
45041
  'default': carouselTemplate_build
45006
45042
  });
45007
45043
 
45008
- const tagName$1A = 'div';
45044
+ const tagName$1C = 'div';
45009
45045
  register('wm-login', () => {
45010
45046
  return {
45011
- pre: attrs => `<${tagName$1A} wmLogin ${getAttrMarkup(attrs)} eventsource.bind="Actions.loginAction">`,
45012
- post: () => `</${tagName$1A}>`,
45047
+ pre: attrs => `<${tagName$1C} wmLogin ${getAttrMarkup(attrs)} eventsource.bind="Actions.loginAction">`,
45048
+ post: () => `</${tagName$1C}>`,
45013
45049
  provide: () => {
45014
45050
  const provider = new Map();
45015
45051
  provider.set('isLogin', true);
@@ -45024,11 +45060,11 @@ var login_build$1 = /*#__PURE__*/Object.freeze({
45024
45060
  'default': login_build
45025
45061
  });
45026
45062
 
45027
- const tagName$1z = 'marquee';
45063
+ const tagName$1B = 'marquee';
45028
45064
  register('wm-marquee', () => {
45029
45065
  return {
45030
- pre: attrs => `<${tagName$1z} onmouseover="this.stop();" onmouseout="this.start();" wmMarquee role="marquee" aria-live="off" ${getAttrMarkup(attrs)}>`,
45031
- post: () => `</${tagName$1z}>`
45066
+ pre: attrs => `<${tagName$1B} onmouseover="this.stop();" onmouseout="this.start();" wmMarquee role="marquee" aria-live="off" ${getAttrMarkup(attrs)}>`,
45067
+ post: () => `</${tagName$1B}>`
45032
45068
  };
45033
45069
  });
45034
45070
  var marquee_build = () => { };
@@ -45038,15 +45074,15 @@ var marquee_build$1 = /*#__PURE__*/Object.freeze({
45038
45074
  'default': marquee_build
45039
45075
  });
45040
45076
 
45041
- const tagName$1y = 'a';
45042
- const idGen$p = new IDGenerator('wm_anchor');
45077
+ const tagName$1A = 'a';
45078
+ const idGen$q = new IDGenerator('wm_anchor');
45043
45079
  register('wm-anchor', () => {
45044
45080
  return {
45045
45081
  pre: (attrs) => {
45046
- const counter = idGen$p.nextUid();
45047
- return `<${tagName$1y} wmAnchor #${counter}="wmAnchor" role="link" data-identifier="anchor" [attr.aria-label]="${counter}.hint || ${counter}.caption || 'Link'" ${getAttrMarkup(attrs)}>`;
45082
+ const counter = idGen$q.nextUid();
45083
+ return `<${tagName$1A} wmAnchor #${counter}="wmAnchor" role="link" data-identifier="anchor" [attr.aria-label]="${counter}.hint || ${counter}.caption || 'Link'" ${getAttrMarkup(attrs)}>`;
45048
45084
  },
45049
- post: () => `</${tagName$1y}>`
45085
+ post: () => `</${tagName$1A}>`
45050
45086
  };
45051
45087
  });
45052
45088
  var anchor_build = () => { };
@@ -45056,11 +45092,11 @@ var anchor_build$1 = /*#__PURE__*/Object.freeze({
45056
45092
  'default': anchor_build
45057
45093
  });
45058
45094
 
45059
- const tagName$1x = 'div';
45095
+ const tagName$1z = 'div';
45060
45096
  register('wm-audio', () => {
45061
45097
  return {
45062
- pre: attrs => `<${tagName$1x} wmAudio ${getAttrMarkup(attrs)}>`,
45063
- post: () => `</${tagName$1x}>`
45098
+ pre: attrs => `<${tagName$1z} wmAudio ${getAttrMarkup(attrs)}>`,
45099
+ post: () => `</${tagName$1z}>`
45064
45100
  };
45065
45101
  });
45066
45102
  var audio_build = () => { };
@@ -45070,15 +45106,15 @@ var audio_build$1 = /*#__PURE__*/Object.freeze({
45070
45106
  'default': audio_build
45071
45107
  });
45072
45108
 
45073
- const tagName$1w = 'div';
45074
- const idGen$o = new IDGenerator('wm_html');
45109
+ const tagName$1y = 'div';
45110
+ const idGen$p = new IDGenerator('wm_html');
45075
45111
  register('wm-html', () => {
45076
45112
  return {
45077
45113
  pre: (attrs) => {
45078
- const counter = idGen$o.nextUid();
45079
- return `<${tagName$1w} wmHtml #${counter}="wmHtml" [attr.aria-label]="${counter}.hint || 'HTML content'" ${getAttrMarkup(attrs)}>`;
45114
+ const counter = idGen$p.nextUid();
45115
+ return `<${tagName$1y} wmHtml #${counter}="wmHtml" [attr.aria-label]="${counter}.hint || 'HTML content'" ${getAttrMarkup(attrs)}>`;
45080
45116
  },
45081
- post: () => `</${tagName$1w}>`
45117
+ post: () => `</${tagName$1y}>`
45082
45118
  };
45083
45119
  });
45084
45120
  var html_build = () => { };
@@ -45088,11 +45124,11 @@ var html_build$1 = /*#__PURE__*/Object.freeze({
45088
45124
  'default': html_build
45089
45125
  });
45090
45126
 
45091
- const tagName$1v = 'span';
45127
+ const tagName$1x = 'span';
45092
45128
  register('wm-icon', () => {
45093
45129
  return {
45094
- pre: attrs => `<${tagName$1v} wmIcon aria-hidden="true" ${getAttrMarkup(attrs)}>`,
45095
- post: () => `</${tagName$1v}>`
45130
+ pre: attrs => `<${tagName$1x} wmIcon aria-hidden="true" ${getAttrMarkup(attrs)}>`,
45131
+ post: () => `</${tagName$1x}>`
45096
45132
  };
45097
45133
  });
45098
45134
  var icon_build = () => { };
@@ -45102,11 +45138,11 @@ var icon_build$1 = /*#__PURE__*/Object.freeze({
45102
45138
  'default': icon_build
45103
45139
  });
45104
45140
 
45105
- const tagName$1u = 'div';
45141
+ const tagName$1w = 'div';
45106
45142
  register('wm-iframe', () => {
45107
45143
  return {
45108
- pre: attrs => `<${tagName$1u} wmIframe ${getAttrMarkup(attrs)}>`,
45109
- post: () => `</${tagName$1u}>`
45144
+ pre: attrs => `<${tagName$1w} wmIframe ${getAttrMarkup(attrs)}>`,
45145
+ post: () => `</${tagName$1w}>`
45110
45146
  };
45111
45147
  });
45112
45148
  var iframe_build = () => { };
@@ -45116,15 +45152,15 @@ var iframe_build$1 = /*#__PURE__*/Object.freeze({
45116
45152
  'default': iframe_build
45117
45153
  });
45118
45154
 
45119
- const tagName$1t = 'label';
45120
- const idGen$n = new IDGenerator('wm_label');
45155
+ const tagName$1v = 'label';
45156
+ const idGen$o = new IDGenerator('wm_label');
45121
45157
  register('wm-label', () => {
45122
45158
  return {
45123
45159
  pre: (attrs) => {
45124
- const counter = idGen$n.nextUid();
45125
- return `<${tagName$1t} wmLabel #${counter}="wmLabel" [attr.aria-label]="${counter}.hint || 'Label text'" ${getAttrMarkup(attrs)}>`;
45160
+ const counter = idGen$o.nextUid();
45161
+ return `<${tagName$1v} wmLabel #${counter}="wmLabel" [attr.aria-label]="${counter}.hint || 'Label text'" ${getAttrMarkup(attrs)}>`;
45126
45162
  },
45127
- post: () => `</${tagName$1t}>`
45163
+ post: () => `</${tagName$1v}>`
45128
45164
  };
45129
45165
  });
45130
45166
  var label_build = () => { };
@@ -45134,13 +45170,13 @@ var label_build$1 = /*#__PURE__*/Object.freeze({
45134
45170
  'default': label_build
45135
45171
  });
45136
45172
 
45137
- const tagName$1s = 'img';
45138
- const idGen$m = new IDGenerator('wm_picture');
45173
+ const tagName$1u = 'img';
45174
+ const idGen$n = new IDGenerator('wm_picture');
45139
45175
  register('wm-picture', () => {
45140
45176
  return {
45141
45177
  pre: (attrs) => {
45142
- const counter = idGen$m.nextUid();
45143
- return `<${tagName$1s} wmPicture #${counter}="wmPicture" alt="image" wmImageCache="${attrs.get('offline') || 'true'}" [attr.aria-label]="${counter}.hint || 'Image'" ${getAttrMarkup(attrs)}>`;
45178
+ const counter = idGen$n.nextUid();
45179
+ return `<${tagName$1u} wmPicture #${counter}="wmPicture" alt="image" wmImageCache="${attrs.get('offline') || 'true'}" [attr.aria-label]="${counter}.hint || 'Image'" ${getAttrMarkup(attrs)}>`;
45144
45180
  }
45145
45181
  };
45146
45182
  });
@@ -45151,15 +45187,15 @@ var picture_build$1 = /*#__PURE__*/Object.freeze({
45151
45187
  'default': picture_build
45152
45188
  });
45153
45189
 
45154
- const tagName$1r = 'div';
45155
- const idGen$l = new IDGenerator('wm_spinner');
45190
+ const tagName$1t = 'div';
45191
+ const idGen$m = new IDGenerator('wm_spinner');
45156
45192
  register('wm-spinner', () => {
45157
45193
  return {
45158
45194
  pre: (attrs) => {
45159
- const counter = idGen$l.nextUid();
45160
- return `<${tagName$1r} wmSpinner #${counter}="wmSpinner" role="alert" [attr.aria-label]="${counter}.hint || 'Loading...'" aria-live="assertive" aria-busy="true" ${getAttrMarkup(attrs)}>`;
45195
+ const counter = idGen$m.nextUid();
45196
+ return `<${tagName$1t} wmSpinner #${counter}="wmSpinner" role="alert" [attr.aria-label]="${counter}.hint || 'Loading...'" aria-live="assertive" aria-busy="true" ${getAttrMarkup(attrs)}>`;
45161
45197
  },
45162
- post: () => `</${tagName$1r}>`
45198
+ post: () => `</${tagName$1t}>`
45163
45199
  };
45164
45200
  });
45165
45201
  var spinner_build = () => { };
@@ -45169,16 +45205,16 @@ var spinner_build$1 = /*#__PURE__*/Object.freeze({
45169
45205
  'default': spinner_build
45170
45206
  });
45171
45207
 
45172
- const tagName$1q = 'div';
45208
+ const tagName$1s = 'div';
45173
45209
  const getAttr = (node, attrName) => node.attrs.find(attr => attr.name === attrName);
45174
- const ɵ0$b$1 = getAttr;
45210
+ const ɵ0$c$1 = getAttr;
45175
45211
  const getAttrValue = (node, attrName) => {
45176
45212
  const match = getAttr(node, attrName);
45177
45213
  if (match) {
45178
45214
  return match.value;
45179
45215
  }
45180
45216
  };
45181
- const ɵ1$7 = getAttrValue;
45217
+ const ɵ1$8 = getAttrValue;
45182
45218
  const getReplaceRegex = (v) => new RegExp(`bind:(${v}|${v}\\[\\$i])\\.`, 'g');
45183
45219
  const ɵ2$4$1 = getReplaceRegex;
45184
45220
  register('wm-progress-bar', () => {
@@ -45200,8 +45236,8 @@ register('wm-progress-bar', () => {
45200
45236
  }
45201
45237
  }
45202
45238
  },
45203
- pre: attrs => `<${tagName$1q} wmProgressBar ${getAttrMarkup(attrs)}>`,
45204
- post: () => `</${tagName$1q}>`
45239
+ pre: attrs => `<${tagName$1s} wmProgressBar ${getAttrMarkup(attrs)}>`,
45240
+ post: () => `</${tagName$1s}>`
45205
45241
  };
45206
45242
  });
45207
45243
  var progressBar_build = () => { };
@@ -45209,16 +45245,16 @@ var progressBar_build = () => { };
45209
45245
  var progressBar_build$1 = /*#__PURE__*/Object.freeze({
45210
45246
  __proto__: null,
45211
45247
  'default': progressBar_build,
45212
- 'ɵ0': ɵ0$b$1,
45213
- 'ɵ1': ɵ1$7,
45248
+ 'ɵ0': ɵ0$c$1,
45249
+ 'ɵ1': ɵ1$8,
45214
45250
  'ɵ2': ɵ2$4$1
45215
45251
  });
45216
45252
 
45217
- const tagName$1p = 'div';
45253
+ const tagName$1r = 'div';
45218
45254
  register('wm-progress-circle', () => {
45219
45255
  return {
45220
- pre: attrs => `<${tagName$1p} wmProgressCircle ${getAttrMarkup(attrs)}>`,
45221
- post: () => `</${tagName$1p}>`
45256
+ pre: attrs => `<${tagName$1r} wmProgressCircle ${getAttrMarkup(attrs)}>`,
45257
+ post: () => `</${tagName$1r}>`
45222
45258
  };
45223
45259
  });
45224
45260
  var progressCircle_build = () => { };
@@ -45228,15 +45264,15 @@ var progressCircle_build$1 = /*#__PURE__*/Object.freeze({
45228
45264
  'default': progressCircle_build
45229
45265
  });
45230
45266
 
45231
- const tagName$1o = 'div';
45232
- const idGen$k = new IDGenerator('wm_richtexteditor');
45267
+ const tagName$1q = 'div';
45268
+ const idGen$l = new IDGenerator('wm_richtexteditor');
45233
45269
  register('wm-richtexteditor', () => {
45234
45270
  return {
45235
45271
  pre: (attrs) => {
45236
- const counter = idGen$k.nextUid();
45237
- return `<${tagName$1o} wmRichTextEditor #${counter}="wmRichTextEditor" role="textbox" [attr.aria-label]="${counter}.hint || 'Richtext editor'" ${getFormMarkupAttr(attrs)}>`;
45272
+ const counter = idGen$l.nextUid();
45273
+ return `<${tagName$1q} wmRichTextEditor #${counter}="wmRichTextEditor" role="textbox" [attr.aria-label]="${counter}.hint || 'Richtext editor'" ${getFormMarkupAttr(attrs)}>`;
45238
45274
  },
45239
- post: () => `</${tagName$1o}>`
45275
+ post: () => `</${tagName$1q}>`
45240
45276
  };
45241
45277
  });
45242
45278
  var richTextEditor_build = () => { };
@@ -45246,11 +45282,11 @@ var richTextEditor_build$1 = /*#__PURE__*/Object.freeze({
45246
45282
  'default': richTextEditor_build
45247
45283
  });
45248
45284
 
45249
- const tagName$1n = 'div';
45285
+ const tagName$1p = 'div';
45250
45286
  register('wm-search', () => {
45251
45287
  return {
45252
- pre: attrs => `<${tagName$1n} wmSearch ${getFormMarkupAttr(attrs)} ${getNgModelAttr(attrs)}>`,
45253
- post: () => `</${tagName$1n}>`
45288
+ pre: attrs => `<${tagName$1p} wmSearch ${getFormMarkupAttr(attrs)} ${getNgModelAttr(attrs)}>`,
45289
+ post: () => `</${tagName$1p}>`
45254
45290
  };
45255
45291
  });
45256
45292
  var search_build = () => { };
@@ -45260,11 +45296,11 @@ var search_build$1 = /*#__PURE__*/Object.freeze({
45260
45296
  'default': search_build
45261
45297
  });
45262
45298
 
45263
- const tagName$1m = 'div';
45299
+ const tagName$1o = 'div';
45264
45300
  register('wm-tree', () => {
45265
45301
  return {
45266
- pre: attrs => `<${tagName$1m} wmTree ${getAttrMarkup(attrs)}>`,
45267
- post: () => `</${tagName$1m}>`
45302
+ pre: attrs => `<${tagName$1o} wmTree ${getAttrMarkup(attrs)}>`,
45303
+ post: () => `</${tagName$1o}>`
45268
45304
  };
45269
45305
  });
45270
45306
  var tree_build = () => { };
@@ -45274,11 +45310,11 @@ var tree_build$1 = /*#__PURE__*/Object.freeze({
45274
45310
  'default': tree_build
45275
45311
  });
45276
45312
 
45277
- const tagName$1l = 'div';
45313
+ const tagName$1n = 'div';
45278
45314
  register('wm-card', () => {
45279
45315
  return {
45280
- pre: attrs => `<${tagName$1l} wmCard ${getAttrMarkup(attrs)}>`,
45281
- post: () => `</${tagName$1l}>`
45316
+ pre: attrs => `<${tagName$1n} wmCard ${getAttrMarkup(attrs)}>`,
45317
+ post: () => `</${tagName$1n}>`
45282
45318
  };
45283
45319
  });
45284
45320
  var card_build = () => { };
@@ -45288,11 +45324,11 @@ var card_build$1 = /*#__PURE__*/Object.freeze({
45288
45324
  'default': card_build
45289
45325
  });
45290
45326
 
45291
- const tagName$1k = 'div';
45327
+ const tagName$1m = 'div';
45292
45328
  register('wm-card-content', () => {
45293
45329
  return {
45294
- pre: attrs => `<${tagName$1k} wmCardContent partialContainer ${getAttrMarkup(attrs)}>`,
45295
- post: () => `</${tagName$1k}>`
45330
+ pre: attrs => `<${tagName$1m} wmCardContent partialContainer ${getAttrMarkup(attrs)}>`,
45331
+ post: () => `</${tagName$1m}>`
45296
45332
  };
45297
45333
  });
45298
45334
  var cardContent_build = () => { };
@@ -45302,11 +45338,11 @@ var cardContent_build$1 = /*#__PURE__*/Object.freeze({
45302
45338
  'default': cardContent_build
45303
45339
  });
45304
45340
 
45305
- const tagName$1j = 'div';
45341
+ const tagName$1l = 'div';
45306
45342
  register('wm-card-actions', () => {
45307
45343
  return {
45308
- pre: attrs => `<${tagName$1j} wmCardActions ${getAttrMarkup(attrs)}>`,
45309
- post: () => `</${tagName$1j}>`
45344
+ pre: attrs => `<${tagName$1l} wmCardActions ${getAttrMarkup(attrs)}>`,
45345
+ post: () => `</${tagName$1l}>`
45310
45346
  };
45311
45347
  });
45312
45348
  var cardActions_build = () => { };
@@ -45316,11 +45352,11 @@ var cardActions_build$1 = /*#__PURE__*/Object.freeze({
45316
45352
  'default': cardActions_build
45317
45353
  });
45318
45354
 
45319
- const tagName$1i = 'div';
45355
+ const tagName$1k = 'div';
45320
45356
  register('wm-card-footer', () => {
45321
45357
  return {
45322
- pre: attrs => `<${tagName$1i} wmCardFooter ${getAttrMarkup(attrs)}>`,
45323
- post: () => `</${tagName$1i}>`
45358
+ pre: attrs => `<${tagName$1k} wmCardFooter ${getAttrMarkup(attrs)}>`,
45359
+ post: () => `</${tagName$1k}>`
45324
45360
  };
45325
45361
  });
45326
45362
  var cardFooter_build = () => { };
@@ -45330,11 +45366,11 @@ var cardFooter_build$1 = /*#__PURE__*/Object.freeze({
45330
45366
  'default': cardFooter_build
45331
45367
  });
45332
45368
 
45333
- const tagName$1h = 'div';
45369
+ const tagName$1j = 'div';
45334
45370
  register('wm-chart', () => {
45335
45371
  return {
45336
- pre: attrs => `<${tagName$1h} wmChart redrawable aria-label="${attrs.get('type')} Chart" ${getAttrMarkup(attrs)}>`,
45337
- post: () => `</${tagName$1h}>`
45372
+ pre: attrs => `<${tagName$1j} wmChart redrawable aria-label="${attrs.get('type')} Chart" ${getAttrMarkup(attrs)}>`,
45373
+ post: () => `</${tagName$1j}>`
45338
45374
  };
45339
45375
  });
45340
45376
  var chart_build = () => { };
@@ -45344,20 +45380,20 @@ var chart_build$1 = /*#__PURE__*/Object.freeze({
45344
45380
  'default': chart_build
45345
45381
  });
45346
45382
 
45347
- const tagName$1g = 'div';
45383
+ const tagName$1i = 'div';
45348
45384
  const dataSetKey$4 = 'dataset';
45349
- const idGen$j = new IDGenerator('wm_accordion_ref_');
45385
+ const idGen$k = new IDGenerator('wm_accordion_ref_');
45350
45386
  const isDynamicAccordion = node => node.attrs.find(attr => attr.name === 'type' && attr.value === 'dynamic');
45351
- const ɵ0$a$1 = isDynamicAccordion;
45387
+ const ɵ0$b$1 = isDynamicAccordion;
45352
45388
  register('wm-accordion', () => {
45353
45389
  return {
45354
45390
  pre: (attrs, shared) => {
45355
45391
  // generating unique Id for the accordion
45356
- const counter = idGen$j.nextUid();
45392
+ const counter = idGen$k.nextUid();
45357
45393
  shared.set('accordion_ref', counter);
45358
- return `<${tagName$1g} wmAccordion #${counter}="wmAccordion" role="tablist" aria-multiselectable="true" ${getAttrMarkup(attrs)}>`;
45394
+ return `<${tagName$1i} wmAccordion #${counter}="wmAccordion" role="tablist" aria-multiselectable="true" ${getAttrMarkup(attrs)}>`;
45359
45395
  },
45360
- post: () => `</${tagName$1g}>`,
45396
+ post: () => `</${tagName$1i}>`,
45361
45397
  template: (node, shared) => {
45362
45398
  // check if the accordion is dynamic
45363
45399
  if (isDynamicAccordion(node)) {
@@ -45386,14 +45422,14 @@ var accordion_build = () => { };
45386
45422
  var accordion_build$1 = /*#__PURE__*/Object.freeze({
45387
45423
  __proto__: null,
45388
45424
  'default': accordion_build,
45389
- 'ɵ0': ɵ0$a$1
45425
+ 'ɵ0': ɵ0$b$1
45390
45426
  });
45391
45427
 
45392
- const tagName$1f = 'div';
45428
+ const tagName$1h = 'div';
45393
45429
  register('wm-accordionpane', () => {
45394
45430
  return {
45395
- pre: attrs => `<${tagName$1f} wmAccordionPane partialContainer wm-navigable-element="true" role="tab" ${getAttrMarkup(attrs)}>`,
45396
- post: () => `</${tagName$1f}>`
45431
+ pre: attrs => `<${tagName$1h} wmAccordionPane partialContainer wm-navigable-element="true" role="tab" ${getAttrMarkup(attrs)}>`,
45432
+ post: () => `</${tagName$1h}>`
45397
45433
  };
45398
45434
  });
45399
45435
  var accordionPane_build = () => { };
@@ -45403,11 +45439,11 @@ var accordionPane_build$1 = /*#__PURE__*/Object.freeze({
45403
45439
  'default': accordionPane_build
45404
45440
  });
45405
45441
 
45406
- const tagName$1e = 'div';
45442
+ const tagName$1g = 'div';
45407
45443
  register('wm-container', () => {
45408
45444
  return {
45409
- pre: attrs => `<${tagName$1e} wmContainer partialContainer wmSmoothscroll="${attrs.get('smoothscroll') || 'false'}" ${getAttrMarkup(attrs)}>`,
45410
- post: () => `</${tagName$1e}>`
45445
+ pre: attrs => `<${tagName$1g} wmContainer partialContainer wmSmoothscroll="${attrs.get('smoothscroll') || 'false'}" ${getAttrMarkup(attrs)}>`,
45446
+ post: () => `</${tagName$1g}>`
45411
45447
  };
45412
45448
  });
45413
45449
  var container_build = () => { };
@@ -45417,11 +45453,11 @@ var container_build$1 = /*#__PURE__*/Object.freeze({
45417
45453
  'default': container_build
45418
45454
  });
45419
45455
 
45420
- const tagName$1d = 'div';
45456
+ const tagName$1f = 'div';
45421
45457
  register('wm-gridcolumn', () => {
45422
45458
  return {
45423
- pre: attrs => `<${tagName$1d} wmLayoutGridColumn ${getAttrMarkup(attrs)}>`,
45424
- post: () => `</${tagName$1d}>`
45459
+ pre: attrs => `<${tagName$1f} wmLayoutGridColumn ${getAttrMarkup(attrs)}>`,
45460
+ post: () => `</${tagName$1f}>`
45425
45461
  };
45426
45462
  });
45427
45463
  var layoutGridColumn_build = () => { };
@@ -45431,11 +45467,11 @@ var layoutGridColumn_build$1 = /*#__PURE__*/Object.freeze({
45431
45467
  'default': layoutGridColumn_build
45432
45468
  });
45433
45469
 
45434
- const tagName$1c = 'div';
45470
+ const tagName$1e = 'div';
45435
45471
  register('wm-gridrow', () => {
45436
45472
  return {
45437
- pre: attrs => `<${tagName$1c} wmLayoutGridRow ${getAttrMarkup(attrs)}>`,
45438
- post: () => `</${tagName$1c}>`
45473
+ pre: attrs => `<${tagName$1e} wmLayoutGridRow ${getAttrMarkup(attrs)}>`,
45474
+ post: () => `</${tagName$1e}>`
45439
45475
  };
45440
45476
  });
45441
45477
  var layoutGridRow_build = () => { };
@@ -45445,11 +45481,11 @@ var layoutGridRow_build$1 = /*#__PURE__*/Object.freeze({
45445
45481
  'default': layoutGridRow_build
45446
45482
  });
45447
45483
 
45448
- const tagName$1b = 'div';
45484
+ const tagName$1d = 'div';
45449
45485
  register('wm-layoutgrid', () => {
45450
45486
  return {
45451
- pre: attrs => `<${tagName$1b} wmLayoutGrid ${getAttrMarkup(attrs)}>`,
45452
- post: () => `</${tagName$1b}>`
45487
+ pre: attrs => `<${tagName$1d} wmLayoutGrid ${getAttrMarkup(attrs)}>`,
45488
+ post: () => `</${tagName$1d}>`
45453
45489
  };
45454
45490
  });
45455
45491
  var layoutGrid_build = () => { };
@@ -45459,21 +45495,21 @@ var layoutGrid_build$1 = /*#__PURE__*/Object.freeze({
45459
45495
  'default': layoutGrid_build
45460
45496
  });
45461
45497
 
45462
- const tagName$1a = 'div';
45463
- const idGen$i = new IDGenerator('wm_panel');
45498
+ const tagName$1c = 'div';
45499
+ const idGen$j = new IDGenerator('wm_panel');
45464
45500
  register('wm-panel', () => {
45465
45501
  return {
45466
45502
  pre: (attrs) => {
45467
- const counter = idGen$i.nextUid();
45468
- return `<${tagName$1a} wmPanel #${counter}="wmPanel" partialContainer [attr.aria-label]="${counter}.hint || 'Panel'" wm-navigable-element="true" ${getAttrMarkup(attrs)}>`;
45503
+ const counter = idGen$j.nextUid();
45504
+ return `<${tagName$1c} wmPanel #${counter}="wmPanel" partialContainer [attr.aria-label]="${counter}.hint || 'Panel'" wm-navigable-element="true" ${getAttrMarkup(attrs)}>`;
45469
45505
  },
45470
- post: () => `</${tagName$1a}>`
45506
+ post: () => `</${tagName$1c}>`
45471
45507
  };
45472
45508
  });
45473
45509
  register('wm-panel-footer', () => {
45474
45510
  return {
45475
- pre: attrs => `<${tagName$1a} wmPanelFooter ${getAttrMarkup(attrs)}>`,
45476
- post: () => `</${tagName$1a}>`
45511
+ pre: attrs => `<${tagName$1c} wmPanelFooter ${getAttrMarkup(attrs)}>`,
45512
+ post: () => `</${tagName$1c}>`
45477
45513
  };
45478
45514
  });
45479
45515
  var panel_build = () => { };
@@ -45483,11 +45519,11 @@ var panel_build$1 = /*#__PURE__*/Object.freeze({
45483
45519
  'default': panel_build
45484
45520
  });
45485
45521
 
45486
- const tagName$19 = 'div';
45522
+ const tagName$1b = 'div';
45487
45523
  register('wm-segmented-control', () => {
45488
45524
  return {
45489
- pre: attrs => `<${tagName$19} wmSegmentedControl ${getAttrMarkup(attrs)}>`,
45490
- post: () => `</${tagName$19}>`
45525
+ pre: attrs => `<${tagName$1b} wmSegmentedControl ${getAttrMarkup(attrs)}>`,
45526
+ post: () => `</${tagName$1b}>`
45491
45527
  };
45492
45528
  });
45493
45529
  var segmentedControl_build = () => { };
@@ -45497,11 +45533,11 @@ var segmentedControl_build$1 = /*#__PURE__*/Object.freeze({
45497
45533
  'default': segmentedControl_build
45498
45534
  });
45499
45535
 
45500
- const tagName$18 = 'li';
45536
+ const tagName$1a = 'li';
45501
45537
  register('wm-segment-content', () => {
45502
45538
  return {
45503
- pre: attrs => `<${tagName$18} wmSegmentContent partialContainer wmSmoothscroll=${attrs.get('smoothscroll') || 'false'} wm-navigable-element="true" ${getAttrMarkup(attrs)}>`,
45504
- post: () => `</${tagName$18}>`
45539
+ pre: attrs => `<${tagName$1a} wmSegmentContent partialContainer wmSmoothscroll=${attrs.get('smoothscroll') || 'false'} wm-navigable-element="true" ${getAttrMarkup(attrs)}>`,
45540
+ post: () => `</${tagName$1a}>`
45505
45541
  };
45506
45542
  });
45507
45543
  var segmentContent_build = () => { };
@@ -45537,20 +45573,20 @@ var repeatTemplate_build$1 = /*#__PURE__*/Object.freeze({
45537
45573
  'default': repeatTemplate_build
45538
45574
  });
45539
45575
 
45540
- const tagName$17 = 'div';
45576
+ const tagName$19 = 'div';
45541
45577
  const dataSetKey$3 = 'dataset';
45542
- const idGen$h = new IDGenerator('wm_tabs_ref_');
45578
+ const idGen$i = new IDGenerator('wm_tabs_ref_');
45543
45579
  const isDynamicTabs = node => node.attrs.find(attr => attr.name === 'type' && attr.value === 'dynamic');
45544
- const ɵ0$9$1 = isDynamicTabs;
45580
+ const ɵ0$a$1 = isDynamicTabs;
45545
45581
  register('wm-tabs', () => {
45546
45582
  return {
45547
45583
  pre: (attrs, shared) => {
45548
45584
  // generating unique Id for the tabs
45549
- const counter = idGen$h.nextUid();
45585
+ const counter = idGen$i.nextUid();
45550
45586
  shared.set('tabs_ref', counter);
45551
- return `<${tagName$17} wmTabs #${counter}="wmTabs" ${getAttrMarkup(attrs)}>`;
45587
+ return `<${tagName$19} wmTabs #${counter}="wmTabs" ${getAttrMarkup(attrs)}>`;
45552
45588
  },
45553
- post: () => `</${tagName$17}>`,
45589
+ post: () => `</${tagName$19}>`,
45554
45590
  template: (node, shared) => {
45555
45591
  // check if the tab widget is dynamic
45556
45592
  if (isDynamicTabs(node)) {
@@ -45579,14 +45615,14 @@ var tabs_build = () => { };
45579
45615
  var tabs_build$1 = /*#__PURE__*/Object.freeze({
45580
45616
  __proto__: null,
45581
45617
  'default': tabs_build,
45582
- 'ɵ0': ɵ0$9$1
45618
+ 'ɵ0': ɵ0$a$1
45583
45619
  });
45584
45620
 
45585
- const tagName$16 = 'div';
45621
+ const tagName$18 = 'div';
45586
45622
  register('wm-tabpane', () => {
45587
45623
  return {
45588
- pre: attrs => `<${tagName$16} wmTabPane partialContainer ${getAttrMarkup(attrs)} wm-navigable-element="true" role="tabpanel">`,
45589
- post: () => `</${tagName$16}>`
45624
+ pre: attrs => `<${tagName$18} wmTabPane partialContainer ${getAttrMarkup(attrs)} wm-navigable-element="true" role="tabpanel">`,
45625
+ post: () => `</${tagName$18}>`
45590
45626
  };
45591
45627
  });
45592
45628
  var tabPane_build = () => { };
@@ -45596,11 +45632,11 @@ var tabPane_build$1 = /*#__PURE__*/Object.freeze({
45596
45632
  'default': tabPane_build
45597
45633
  });
45598
45634
 
45599
- const tagName$15 = 'div';
45635
+ const tagName$17 = 'div';
45600
45636
  register('wm-tile', () => {
45601
45637
  return {
45602
- pre: attrs => `<${tagName$15} wmTile aria-describedby="Tile" wm-navigable-element="true" ${getAttrMarkup(attrs)}>`,
45603
- post: () => `</${tagName$15}>`
45638
+ pre: attrs => `<${tagName$17} wmTile aria-describedby="Tile" wm-navigable-element="true" ${getAttrMarkup(attrs)}>`,
45639
+ post: () => `</${tagName$17}>`
45604
45640
  };
45605
45641
  });
45606
45642
  var tile_build = () => { };
@@ -45610,11 +45646,11 @@ var tile_build$1 = /*#__PURE__*/Object.freeze({
45610
45646
  'default': tile_build
45611
45647
  });
45612
45648
 
45613
- const tagName$14 = 'div';
45649
+ const tagName$16 = 'div';
45614
45650
  register('wm-wizard', () => {
45615
45651
  return {
45616
- pre: attrs => `<${tagName$14} wmWizard role="tablist" ${getAttrMarkup(attrs)}>`,
45617
- post: () => `</${tagName$14}>`
45652
+ pre: attrs => `<${tagName$16} wmWizard role="tablist" ${getAttrMarkup(attrs)}>`,
45653
+ post: () => `</${tagName$16}>`
45618
45654
  };
45619
45655
  });
45620
45656
  var wizard_build = () => { };
@@ -45624,16 +45660,16 @@ var wizard_build$1 = /*#__PURE__*/Object.freeze({
45624
45660
  'default': wizard_build
45625
45661
  });
45626
45662
 
45627
- const tagName$13 = 'form';
45628
- const idGen$g = new IDGenerator('wizard_step_id_');
45663
+ const tagName$15 = 'form';
45664
+ const idGen$h = new IDGenerator('wizard_step_id_');
45629
45665
  register('wm-wizardstep', () => {
45630
45666
  return {
45631
45667
  pre: attrs => {
45632
- const counter = idGen$g.nextUid();
45633
- return `<${tagName$13} wmWizardStep #${counter}="wmWizardStep" ${getAttrMarkup(attrs)}>
45668
+ const counter = idGen$h.nextUid();
45669
+ return `<${tagName$15} wmWizardStep #${counter}="wmWizardStep" ${getAttrMarkup(attrs)}>
45634
45670
  <ng-template [ngIf]="${counter}.isInitialized">`;
45635
45671
  },
45636
- post: () => `</ng-template></${tagName$13}>`
45672
+ post: () => `</ng-template></${tagName$15}>`
45637
45673
  };
45638
45674
  });
45639
45675
  var wizardStep_build = () => { };
@@ -45643,15 +45679,15 @@ var wizardStep_build$1 = /*#__PURE__*/Object.freeze({
45643
45679
  'default': wizardStep_build
45644
45680
  });
45645
45681
 
45646
- const tagName$12 = 'button';
45647
- const idGen$f = new IDGenerator('wm_barcodescanner');
45682
+ const tagName$14 = 'button';
45683
+ const idGen$g = new IDGenerator('wm_barcodescanner');
45648
45684
  register('wm-barcodescanner', () => {
45649
45685
  return {
45650
45686
  pre: (attrs) => {
45651
- const counter = idGen$f.nextUid();
45652
- return `<${tagName$12} wmBarcodescanner #${counter}="wmBarcodescanner" [attr.aria-label]="${counter}.hint || 'Barcode scanner'" ${getAttrMarkup(attrs)}>`;
45687
+ const counter = idGen$g.nextUid();
45688
+ return `<${tagName$14} wmBarcodescanner #${counter}="wmBarcodescanner" [attr.aria-label]="${counter}.hint || 'Barcode scanner'" ${getAttrMarkup(attrs)}>`;
45653
45689
  },
45654
- post: () => `</${tagName$12}>`
45690
+ post: () => `</${tagName$14}>`
45655
45691
  };
45656
45692
  });
45657
45693
  var barcodeScanner_build = () => { };
@@ -45661,15 +45697,15 @@ var barcodeScanner_build$1 = /*#__PURE__*/Object.freeze({
45661
45697
  'default': barcodeScanner_build
45662
45698
  });
45663
45699
 
45664
- const tagName$11 = 'button';
45665
- const idGen$e = new IDGenerator('wm_camera');
45700
+ const tagName$13 = 'button';
45701
+ const idGen$f = new IDGenerator('wm_camera');
45666
45702
  register('wm-camera', () => {
45667
45703
  return {
45668
45704
  pre: (attrs) => {
45669
- const counter = idGen$e.nextUid();
45670
- return `<${tagName$11} type='button' wmCamera #${counter}="wmCamera" [attr.aria-label]="${counter}.hint || 'Camera'" ${getAttrMarkup(attrs)}>`;
45705
+ const counter = idGen$f.nextUid();
45706
+ return `<${tagName$13} type='button' wmCamera #${counter}="wmCamera" [attr.aria-label]="${counter}.hint || 'Camera'" ${getAttrMarkup(attrs)}>`;
45671
45707
  },
45672
- post: () => `</${tagName$11}>`
45708
+ post: () => `</${tagName$13}>`
45673
45709
  };
45674
45710
  });
45675
45711
  var camera_build = () => { };
@@ -45679,11 +45715,11 @@ var camera_build$1 = /*#__PURE__*/Object.freeze({
45679
45715
  'default': camera_build
45680
45716
  });
45681
45717
 
45682
- const tagName$10 = 'div';
45718
+ const tagName$12 = 'div';
45683
45719
  register('wm-alertdialog', () => {
45684
45720
  return {
45685
- pre: attrs => `<${tagName$10} wmAlertDialog role="alertdialog" wm-navigable-element="true" ${getAttrMarkup(attrs)}>`,
45686
- post: () => `</${tagName$10}>`
45721
+ pre: attrs => `<${tagName$12} wmAlertDialog role="alertdialog" wm-navigable-element="true" ${getAttrMarkup(attrs)}>`,
45722
+ post: () => `</${tagName$12}>`
45687
45723
  };
45688
45724
  });
45689
45725
  var alertDialog_build = () => { };
@@ -45693,11 +45729,11 @@ var alertDialog_build$1 = /*#__PURE__*/Object.freeze({
45693
45729
  'default': alertDialog_build
45694
45730
  });
45695
45731
 
45696
- const tagName$$ = 'div';
45732
+ const tagName$11 = 'div';
45697
45733
  register('wm-confirmdialog', () => {
45698
45734
  return {
45699
- pre: attrs => `<${tagName$$} wmConfirmDialog wm-navigable-element="true" ${getAttrMarkup(attrs)}>`,
45700
- post: () => `</${tagName$$}>`
45735
+ pre: attrs => `<${tagName$11} wmConfirmDialog wm-navigable-element="true" ${getAttrMarkup(attrs)}>`,
45736
+ post: () => `</${tagName$11}>`
45701
45737
  };
45702
45738
  });
45703
45739
  var confirmDialog_build = () => { };
@@ -45707,11 +45743,11 @@ var confirmDialog_build$1 = /*#__PURE__*/Object.freeze({
45707
45743
  'default': confirmDialog_build
45708
45744
  });
45709
45745
 
45710
- const tagName$_ = 'div';
45746
+ const tagName$10 = 'div';
45711
45747
  register('wm-dialogactions', () => {
45712
45748
  return {
45713
- pre: attrs => `<ng-template #dialogFooter><${tagName$_} wmDialogFooter data-identfier="actions" ${getAttrMarkup(attrs)}>`,
45714
- post: () => `</${tagName$_}></ng-template>`
45749
+ pre: attrs => `<ng-template #dialogFooter><${tagName$10} wmDialogFooter data-identfier="actions" ${getAttrMarkup(attrs)}>`,
45750
+ post: () => `</${tagName$10}></ng-template>`
45715
45751
  };
45716
45752
  });
45717
45753
  var dialogFooter_build = () => { };
@@ -45721,11 +45757,11 @@ var dialogFooter_build$1 = /*#__PURE__*/Object.freeze({
45721
45757
  'default': dialogFooter_build
45722
45758
  });
45723
45759
 
45724
- const tagName$Z = 'div';
45760
+ const tagName$$ = 'div';
45725
45761
  register('wm-dialog', () => {
45726
45762
  return {
45727
- pre: attrs => `<${tagName$Z} wmDialog ${getAttrMarkup(attrs)} aria-modal="true" role="dialog" wm-navigable-element="true"><ng-template #dialogBody>`,
45728
- post: () => `</ng-template></${tagName$Z}>`
45763
+ pre: attrs => `<${tagName$$} wmDialog ${getAttrMarkup(attrs)} aria-modal="true" role="dialog" wm-navigable-element="true"><ng-template #dialogBody>`,
45764
+ post: () => `</ng-template></${tagName$$}>`
45729
45765
  };
45730
45766
  });
45731
45767
  // Todo:vinay remove wm-view in migration
@@ -45742,11 +45778,11 @@ var dialog_build$1 = /*#__PURE__*/Object.freeze({
45742
45778
  'default': dialog_build
45743
45779
  });
45744
45780
 
45745
- const tagName$Y = 'div';
45781
+ const tagName$_ = 'div';
45746
45782
  register('wm-iframedialog', () => {
45747
45783
  return {
45748
- pre: attrs => `<${tagName$Y} wmIframeDialog wm-navigable-element="true" ${getAttrMarkup(attrs)}>`,
45749
- post: () => `</${tagName$Y}>`
45784
+ pre: attrs => `<${tagName$_} wmIframeDialog wm-navigable-element="true" ${getAttrMarkup(attrs)}>`,
45785
+ post: () => `</${tagName$_}>`
45750
45786
  };
45751
45787
  });
45752
45788
  var iframeDialog_build = () => { };
@@ -45756,11 +45792,11 @@ var iframeDialog_build$1 = /*#__PURE__*/Object.freeze({
45756
45792
  'default': iframeDialog_build
45757
45793
  });
45758
45794
 
45759
- const tagName$X = 'div';
45795
+ const tagName$Z = 'div';
45760
45796
  register('wm-logindialog', () => {
45761
45797
  return {
45762
- pre: attrs => `<${tagName$X} wmDialog wmLoginDialog ${getAttrMarkup(attrs)} eventsource.bind="Actions.loginAction" wm-navigable-element="true"><ng-template #dialogBody>`,
45763
- post: () => `</ng-template></${tagName$X}>`
45798
+ pre: attrs => `<${tagName$Z} wmDialog wmLoginDialog ${getAttrMarkup(attrs)} eventsource.bind="Actions.loginAction" wm-navigable-element="true"><ng-template #dialogBody>`,
45799
+ post: () => `</ng-template></${tagName$Z}>`
45764
45800
  };
45765
45801
  });
45766
45802
  var loginDialog_build = () => { };
@@ -45770,7 +45806,7 @@ var loginDialog_build$1 = /*#__PURE__*/Object.freeze({
45770
45806
  'default': loginDialog_build
45771
45807
  });
45772
45808
 
45773
- const tagName$W = 'div';
45809
+ const tagName$Y = 'div';
45774
45810
  register('wm-pagedialog', () => {
45775
45811
  return {
45776
45812
  pre: (attrs, shared) => {
@@ -45796,14 +45832,14 @@ register('wm-pagedialog', () => {
45796
45832
  shared.set('hasPartialContent', true);
45797
45833
  containerMarkup += `<ng-template><div wmContainer #partial partialContainer ${contentMarkup} width="100%" height="100%" ${onLoadEvtMarkup}>`;
45798
45834
  }
45799
- return `<${tagName$W} wmPartialDialog ${getAttrMarkup(attrs)}>${containerMarkup}`;
45835
+ return `<${tagName$Y} wmPartialDialog ${getAttrMarkup(attrs)}>${containerMarkup}`;
45800
45836
  },
45801
45837
  post: (attrs, shared) => {
45802
45838
  let preContent = '';
45803
45839
  if (shared.get('hasPartialContent')) {
45804
45840
  preContent = `</div></ng-template>`;
45805
45841
  }
45806
- return `${preContent}</${tagName$W}>`;
45842
+ return `${preContent}</${tagName$Y}>`;
45807
45843
  }
45808
45844
  };
45809
45845
  });
@@ -45882,8 +45918,8 @@ const getEditModeWidget = colDef => {
45882
45918
  return (fieldTypeWidgetTypeMap[colDef.type] && fieldTypeWidgetTypeMap[colDef.type][0]) || FormWidgetType.TEXT;
45883
45919
  };
45884
45920
 
45885
- const tagName$V = 'div';
45886
- const idGen$d = new IDGenerator('formfield_');
45921
+ const tagName$X = 'div';
45922
+ const idGen$e = new IDGenerator('formfield_');
45887
45923
  const getEventsTemplate = (attrs) => {
45888
45924
  const eventAttrs = new Map();
45889
45925
  if (!attrs.has('focus.event')) {
@@ -45906,7 +45942,7 @@ const getEventsTemplate = (attrs) => {
45906
45942
  });
45907
45943
  return getFormMarkupAttr(eventAttrs);
45908
45944
  };
45909
- const ɵ0$8$1 = getEventsTemplate;
45945
+ const ɵ0$9$1 = getEventsTemplate;
45910
45946
  const DEFAULT_PLACEHOLDERS = new Map([
45911
45947
  [FormWidgetType.SELECT, ['Select Min value', 'Select Max value', 'Select value']],
45912
45948
  [FormWidgetType.DATETIME, ['Select Min date time', 'Select Max date time', 'Select date time']],
@@ -45933,7 +45969,7 @@ const setDefaultPlaceholder = (attrs, widgetType, index) => {
45933
45969
  attrs.set(prop, placeholder);
45934
45970
  }
45935
45971
  };
45936
- const ɵ1$6 = setDefaultPlaceholder;
45972
+ const ɵ1$7 = setDefaultPlaceholder;
45937
45973
  const getWidgetTemplate = (attrs, options) => {
45938
45974
  const name = attrs.get('name');
45939
45975
  const fieldName = (attrs.get('key') || name || '').trim();
@@ -45988,7 +46024,7 @@ const registerFormField = (isFormField) => {
45988
46024
  return {
45989
46025
  requires: ['wm-form', 'wm-liveform', 'wm-livefilter', 'wm-list'],
45990
46026
  pre: (attrs, shared, parentForm, parentLiveForm, parentFilter, parentList) => {
45991
- const counter = idGen$d.nextUid();
46027
+ const counter = idGen$e.nextUid();
45992
46028
  const parent = parentForm || parentLiveForm || parentFilter;
45993
46029
  const pCounter = (parent && parent.get('form_reference')) || 'form';
45994
46030
  const widgetType = attrs.get('widget') || FormWidgetType.TEXT;
@@ -46009,7 +46045,7 @@ const registerFormField = (isFormField) => {
46009
46045
  else {
46010
46046
  setDefaultPlaceholder(attrs, widgetType, 2);
46011
46047
  }
46012
- return `<${tagName$V} data-role="${dataRole}" [formGroup]="${pCounter}.ngform" wmFormField captionPosition #${counter}="wmFormField" widgettype="${widgetType}" ${getFormMarkupAttr(attrs)}>
46048
+ return `<${tagName$X} data-role="${dataRole}" [formGroup]="${pCounter}.ngform" wmFormField captionPosition #${counter}="wmFormField" widgettype="${widgetType}" ${getFormMarkupAttr(attrs)}>
46013
46049
  <div class="live-field form-group app-composite-widget clearfix caption-{{${pCounter}.captionposition}}" widget="${widgetType}">
46014
46050
  <label [hidden]="!${counter}.displayname" class="app-label control-label formfield-label {{${pCounter}._captionClass}}"
46015
46051
  [ngStyle]="{width: ${pCounter}.captionsize}" [ngClass]="{'text-danger': ${counter}._control?.invalid && ${counter}._control?.touched && ${pCounter}.isUpdateMode,
@@ -46025,7 +46061,7 @@ const registerFormField = (isFormField) => {
46025
46061
  </div>
46026
46062
  </div>`;
46027
46063
  },
46028
- post: () => `</${tagName$V}>`,
46064
+ post: () => `</${tagName$X}>`,
46029
46065
  provide: (attrs, shared) => {
46030
46066
  const provider = new Map();
46031
46067
  provider.set('form_reference', shared.get('counter'));
@@ -46046,22 +46082,22 @@ var formField_build = () => { };
46046
46082
  var formField_build$1 = /*#__PURE__*/Object.freeze({
46047
46083
  __proto__: null,
46048
46084
  'default': formField_build,
46049
- 'ɵ0': ɵ0$8$1,
46050
- 'ɵ1': ɵ1$6,
46085
+ 'ɵ0': ɵ0$9$1,
46086
+ 'ɵ1': ɵ1$7,
46051
46087
  'ɵ2': ɵ2$3$1,
46052
46088
  'ɵ3': ɵ3$2$1,
46053
46089
  'ɵ4': ɵ4$1$1,
46054
46090
  'ɵ5': ɵ5$1$1
46055
46091
  });
46056
46092
 
46057
- const tagName$U = 'div';
46093
+ const tagName$W = 'div';
46058
46094
  const registerAction = (tmpl) => {
46059
46095
  return {
46060
- pre: attrs => `<${tagName$U} wmFormAction name="${attrs.get('name') || attrs.get('key')}" ${getAttrMarkup(attrs)} ${tmpl}>`,
46061
- post: () => `</${tagName$U}>`
46096
+ pre: attrs => `<${tagName$W} wmFormAction name="${attrs.get('name') || attrs.get('key')}" ${getAttrMarkup(attrs)} ${tmpl}>`,
46097
+ post: () => `</${tagName$W}>`
46062
46098
  };
46063
46099
  };
46064
- const ɵ0$7$1 = registerAction;
46100
+ const ɵ0$8$1 = registerAction;
46065
46101
  register('wm-form-action', registerAction.bind(undefined, ''));
46066
46102
  register('wm-filter-action', registerAction.bind(undefined, ` update-mode="true" `));
46067
46103
  var formAction_build = () => { };
@@ -46069,11 +46105,11 @@ var formAction_build = () => { };
46069
46105
  var formAction_build$1 = /*#__PURE__*/Object.freeze({
46070
46106
  __proto__: null,
46071
46107
  'default': formAction_build,
46072
- 'ɵ0': ɵ0$7$1
46108
+ 'ɵ0': ɵ0$8$1
46073
46109
  });
46074
46110
 
46075
- const tagName$T = 'form';
46076
- const idGen$c = new IDGenerator('form_');
46111
+ const tagName$V = 'form';
46112
+ const idGen$d = new IDGenerator('form_');
46077
46113
  const formWidgets$1 = new Set([
46078
46114
  'wm-text',
46079
46115
  'wm-textarea',
@@ -46122,7 +46158,7 @@ const addFormControlName = (children = []) => {
46122
46158
  addFormControlName(childNode.children);
46123
46159
  });
46124
46160
  };
46125
- const ɵ0$6$1 = addFormControlName;
46161
+ const ɵ0$7$1 = addFormControlName;
46126
46162
  const updateFormDataSource = (attrMap) => {
46127
46163
  if (attrMap.get('formdata.bind')) {
46128
46164
  const formDataSource = getDataSource(attrMap.get('formdata.bind'));
@@ -46131,7 +46167,7 @@ const updateFormDataSource = (attrMap) => {
46131
46167
  }
46132
46168
  }
46133
46169
  };
46134
- const ɵ1$5$1 = updateFormDataSource;
46170
+ const ɵ1$6 = updateFormDataSource;
46135
46171
  const buildTask = (directiveAttr = '') => {
46136
46172
  return {
46137
46173
  requires: ['wm-livetable', 'wm-login'],
@@ -46143,12 +46179,12 @@ const buildTask = (directiveAttr = '') => {
46143
46179
  let tmpl;
46144
46180
  let dialogId;
46145
46181
  const role = parentLoginWidget && parentLoginWidget.get('isLogin') ? 'app-login' : '';
46146
- const counter = idGen$c.nextUid();
46182
+ const counter = idGen$d.nextUid();
46147
46183
  const dependsOn = attrs.get('dependson') ? `dependson="${attrs.get('dependson')}"` : '';
46148
46184
  const classProp = attrs.get('formlayout') === 'page' ? 'app-device-liveform panel liveform-inline' : '';
46149
46185
  const dialogAttributes = ['title', 'title.bind', 'iconclass', 'iconclass.bind', 'width'];
46150
46186
  attrs.delete('dependson');
46151
- const liveFormTmpl = `<${tagName$T} wmForm data-role="${role}" ${directiveAttr} #${counter} ngNativeValidate [formGroup]="${counter}.ngform" [noValidate]="${counter}.validationtype !== 'html'"
46187
+ const liveFormTmpl = `<${tagName$V} wmForm data-role="${role}" ${directiveAttr} #${counter} ngNativeValidate [formGroup]="${counter}.ngform" [noValidate]="${counter}.validationtype !== 'html'"
46152
46188
  class="${classProp}" [class]="${counter}.captionAlignClass" [autocomplete]="${counter}.autocomplete ? 'on' : 'off'" captionposition=${attrs.get('captionposition')}`;
46153
46189
  attrs.set('numberOfFields', `${numberOfFields}`);
46154
46190
  shared.set('counter', counter);
@@ -46197,9 +46233,9 @@ const buildTask = (directiveAttr = '') => {
46197
46233
  return '</form></ng-template></div></div>';
46198
46234
  }
46199
46235
  if (attrs.get('formlayout') === 'page') {
46200
- return `</div></${tagName$T}>`;
46236
+ return `</div></${tagName$V}>`;
46201
46237
  }
46202
- return `</${tagName$T}>`;
46238
+ return `</${tagName$V}>`;
46203
46239
  },
46204
46240
  provide: (attrs, shared) => {
46205
46241
  const provider = new Map();
@@ -46217,19 +46253,19 @@ var form_build = () => { };
46217
46253
  var form_build$1 = /*#__PURE__*/Object.freeze({
46218
46254
  __proto__: null,
46219
46255
  'default': form_build,
46220
- 'ɵ0': ɵ0$6$1,
46221
- 'ɵ1': ɵ1$5$1,
46256
+ 'ɵ0': ɵ0$7$1,
46257
+ 'ɵ1': ɵ1$6,
46222
46258
  'ɵ2': ɵ2$2$1
46223
46259
  });
46224
46260
 
46225
- const tagName$S = 'div';
46261
+ const tagName$U = 'div';
46226
46262
  register('wm-calendar', () => {
46227
46263
  return {
46228
46264
  pre: (attrs) => {
46229
46265
  let viewType = attrs.get('view') ? attrs.get('view') + ' view' : 'month view';
46230
- return `<${tagName$S} wmCalendar redrawable style="width:100%" aria-label="${viewType}" ${getAttrMarkup(attrs)}>`;
46266
+ return `<${tagName$U} wmCalendar redrawable style="width:100%" aria-label="${viewType}" ${getAttrMarkup(attrs)}>`;
46231
46267
  },
46232
- post: () => `</${tagName$S}>`
46268
+ post: () => `</${tagName$U}>`
46233
46269
  };
46234
46270
  });
46235
46271
  var calendar_build = () => { };
@@ -46239,11 +46275,11 @@ var calendar_build$1 = /*#__PURE__*/Object.freeze({
46239
46275
  'default': calendar_build
46240
46276
  });
46241
46277
 
46242
- const tagName$R = 'ul';
46278
+ const tagName$T = 'ul';
46243
46279
  register('wm-chips', () => {
46244
46280
  return {
46245
- pre: attrs => `<${tagName$R} wmChips role="listbox" ${getAttrMarkup(attrs)} ${getNgModelAttr(attrs)}>`,
46246
- post: () => `</${tagName$R}>`
46281
+ pre: attrs => `<${tagName$T} wmChips role="listbox" ${getAttrMarkup(attrs)} ${getNgModelAttr(attrs)}>`,
46282
+ post: () => `</${tagName$T}>`
46247
46283
  };
46248
46284
  });
46249
46285
  var chips_build = () => { };
@@ -46253,11 +46289,11 @@ var chips_build$1 = /*#__PURE__*/Object.freeze({
46253
46289
  'default': chips_build
46254
46290
  });
46255
46291
 
46256
- const tagName$Q = 'div';
46292
+ const tagName$S = 'div';
46257
46293
  register('wm-colorpicker', () => {
46258
46294
  return {
46259
- pre: attrs => `<${tagName$Q} wmColorPicker ${getAttrMarkup(attrs)} role="input" ${getChildAttrs(attrs)} ${getNgModelAttr(attrs)}>`,
46260
- post: () => `</${tagName$Q}>`
46295
+ pre: attrs => `<${tagName$S} wmColorPicker ${getAttrMarkup(attrs)} role="input" ${getChildAttrs(attrs)} ${getNgModelAttr(attrs)}>`,
46296
+ post: () => `</${tagName$S}>`
46261
46297
  };
46262
46298
  });
46263
46299
  var colorPicker_build = () => { };
@@ -46267,11 +46303,11 @@ var colorPicker_build$1 = /*#__PURE__*/Object.freeze({
46267
46303
  'default': colorPicker_build
46268
46304
  });
46269
46305
 
46270
- const tagName$P = 'div';
46306
+ const tagName$R = 'div';
46271
46307
  register('wm-currency', () => {
46272
46308
  return {
46273
- pre: attrs => `<${tagName$P} wmCurrency ${getAttrMarkup(attrs)} role="input" ${getChildAttrs(attrs)} ${getNgModelAttr(attrs)}>`,
46274
- post: () => `</${tagName$P}>`
46309
+ pre: attrs => `<${tagName$R} wmCurrency ${getAttrMarkup(attrs)} role="input" ${getChildAttrs(attrs)} ${getNgModelAttr(attrs)}>`,
46310
+ post: () => `</${tagName$R}>`
46275
46311
  };
46276
46312
  });
46277
46313
  var currency_build = () => { };
@@ -46281,11 +46317,11 @@ var currency_build$1 = /*#__PURE__*/Object.freeze({
46281
46317
  'default': currency_build
46282
46318
  });
46283
46319
 
46284
- const tagName$O = 'div';
46320
+ const tagName$Q = 'div';
46285
46321
  register('wm-buttongroup', () => {
46286
46322
  return {
46287
- pre: attrs => `<${tagName$O} wmButtonGroup role="group" aria-labelledby="button group" ${getAttrMarkup(attrs)}>`,
46288
- post: () => `</${tagName$O}>`
46323
+ pre: attrs => `<${tagName$Q} wmButtonGroup role="group" aria-labelledby="button group" ${getAttrMarkup(attrs)}>`,
46324
+ post: () => `</${tagName$Q}>`
46289
46325
  };
46290
46326
  });
46291
46327
  var buttonGroup_build = () => { };
@@ -46295,15 +46331,15 @@ var buttonGroup_build$1 = /*#__PURE__*/Object.freeze({
46295
46331
  'default': buttonGroup_build
46296
46332
  });
46297
46333
 
46298
- const tagName$N = 'button';
46299
- const idGen$b = new IDGenerator('wm_button');
46334
+ const tagName$P = 'button';
46335
+ const idGen$c = new IDGenerator('wm_button');
46300
46336
  register('wm-button', () => {
46301
46337
  return {
46302
46338
  pre: (attrs) => {
46303
- const counter = idGen$b.nextUid();
46304
- return `<${tagName$N} wmButton #${counter}="wmButton" [attr.aria-label]="${counter}.hint || ${counter}.caption || 'Button'" ${getAttrMarkup(attrs)}>`;
46339
+ const counter = idGen$c.nextUid();
46340
+ return `<${tagName$P} wmButton #${counter}="wmButton" [attr.aria-label]="${counter}.hint || ${counter}.caption || 'Button'" ${getAttrMarkup(attrs)}>`;
46305
46341
  },
46306
- post: () => `</${tagName$N}>`
46342
+ post: () => `</${tagName$P}>`
46307
46343
  };
46308
46344
  });
46309
46345
  var button_build = () => { };
@@ -46313,11 +46349,11 @@ var button_build$1 = /*#__PURE__*/Object.freeze({
46313
46349
  'default': button_build
46314
46350
  });
46315
46351
 
46316
- const tagName$M = 'div';
46352
+ const tagName$O = 'div';
46317
46353
  register('wm-checkbox', () => {
46318
46354
  return {
46319
- pre: attrs => `<${tagName$M} wmCheckbox ${getFormMarkupAttr(attrs)} ${getChildAttrs(attrs)} ${getNgModelAttr(attrs)}>`,
46320
- post: () => `</${tagName$M}>`
46355
+ pre: attrs => `<${tagName$O} wmCheckbox ${getFormMarkupAttr(attrs)} ${getChildAttrs(attrs)} ${getNgModelAttr(attrs)}>`,
46356
+ post: () => `</${tagName$O}>`
46321
46357
  };
46322
46358
  });
46323
46359
  var checkbox_build = () => { };
@@ -46327,11 +46363,11 @@ var checkbox_build$1 = /*#__PURE__*/Object.freeze({
46327
46363
  'default': checkbox_build
46328
46364
  });
46329
46365
 
46330
- const tagName$L = 'ul';
46366
+ const tagName$N = 'ul';
46331
46367
  register('wm-checkboxset', () => {
46332
46368
  return {
46333
- pre: attrs => `<${tagName$L} wmCheckboxset ${getFormMarkupAttr(attrs)} ${getChildAttrs(attrs)} ${getNgModelAttr(attrs)}>`,
46334
- post: () => `</${tagName$L}>`
46369
+ pre: attrs => `<${tagName$N} wmCheckboxset ${getFormMarkupAttr(attrs)} ${getChildAttrs(attrs)} ${getNgModelAttr(attrs)}>`,
46370
+ post: () => `</${tagName$N}>`
46335
46371
  };
46336
46372
  });
46337
46373
  var checkboxset_build = () => { };
@@ -46341,11 +46377,11 @@ var checkboxset_build$1 = /*#__PURE__*/Object.freeze({
46341
46377
  'default': checkboxset_build
46342
46378
  });
46343
46379
 
46344
- const tagName$K = 'div';
46380
+ const tagName$M = 'div';
46345
46381
  register('wm-composite', () => {
46346
46382
  return {
46347
- pre: attrs => `<${tagName$K} wmComposite captionPosition ${setChildAttrs(attrs)} ${getAttrMarkup(attrs)}>`,
46348
- post: () => `</${tagName$K}${clearChildAttrs()}>`
46383
+ pre: attrs => `<${tagName$M} wmComposite captionPosition ${setChildAttrs(attrs)} ${getAttrMarkup(attrs)}>`,
46384
+ post: () => `</${tagName$M}${clearChildAttrs()}>`
46349
46385
  };
46350
46386
  });
46351
46387
  var composite_build = () => { };
@@ -46355,11 +46391,11 @@ var composite_build$1 = /*#__PURE__*/Object.freeze({
46355
46391
  'default': composite_build
46356
46392
  });
46357
46393
 
46358
- const tagName$J = 'div';
46394
+ const tagName$L = 'div';
46359
46395
  register('wm-number', () => {
46360
46396
  return {
46361
- pre: attrs => `<${tagName$J} wmNumber ${getFormMarkupAttr(attrs)} ${getChildAttrs(attrs)} ${getNgModelAttr(attrs)}>`,
46362
- post: () => `</${tagName$J}>`
46397
+ pre: attrs => `<${tagName$L} wmNumber ${getFormMarkupAttr(attrs)} ${getChildAttrs(attrs)} ${getNgModelAttr(attrs)}>`,
46398
+ post: () => `</${tagName$L}>`
46363
46399
  };
46364
46400
  });
46365
46401
  var number_build = () => { };
@@ -46369,11 +46405,11 @@ var number_build$1 = /*#__PURE__*/Object.freeze({
46369
46405
  'default': number_build
46370
46406
  });
46371
46407
 
46372
- const tagName$I = 'ul';
46408
+ const tagName$K = 'ul';
46373
46409
  register('wm-radioset', () => {
46374
46410
  return {
46375
- pre: attrs => `<${tagName$I} wmRadioset ${getFormMarkupAttr(attrs)} ${getChildAttrs(attrs)} ${getNgModelAttr(attrs)}>`,
46376
- post: () => `</${tagName$I}>`
46411
+ pre: attrs => `<${tagName$K} wmRadioset ${getFormMarkupAttr(attrs)} ${getChildAttrs(attrs)} ${getNgModelAttr(attrs)}>`,
46412
+ post: () => `</${tagName$K}>`
46377
46413
  };
46378
46414
  });
46379
46415
  var radioset_build = () => { };
@@ -46383,11 +46419,11 @@ var radioset_build$1 = /*#__PURE__*/Object.freeze({
46383
46419
  'default': radioset_build
46384
46420
  });
46385
46421
 
46386
- const tagName$H = 'wm-select';
46422
+ const tagName$J = 'wm-select';
46387
46423
  register('wm-select', () => {
46388
46424
  return {
46389
- pre: attrs => `<${tagName$H} ${getFormMarkupAttr(attrs)} ${getChildAttrs(attrs)} ${getNgModelAttr(attrs)}>`,
46390
- post: () => `</${tagName$H}>`
46425
+ pre: attrs => `<${tagName$J} ${getFormMarkupAttr(attrs)} ${getChildAttrs(attrs)} ${getNgModelAttr(attrs)}>`,
46426
+ post: () => `</${tagName$J}>`
46391
46427
  };
46392
46428
  });
46393
46429
  var select_build = () => { };
@@ -46397,15 +46433,15 @@ var select_build$1 = /*#__PURE__*/Object.freeze({
46397
46433
  'default': select_build
46398
46434
  });
46399
46435
 
46400
- const tagName$G = 'div';
46401
- const idGen$a = new IDGenerator('wm_switch');
46436
+ const tagName$I = 'div';
46437
+ const idGen$b = new IDGenerator('wm_switch');
46402
46438
  register('wm-switch', () => {
46403
46439
  return {
46404
46440
  pre: (attrs) => {
46405
- const counter = idGen$a.nextUid();
46406
- return `<${tagName$G} wmSwitch #${counter}="wmSwitch" [attr.aria-label]="${counter}.hint || 'Switch button'" ${getFormMarkupAttr(attrs)} ${getNgModelAttr(attrs)}>`;
46441
+ const counter = idGen$b.nextUid();
46442
+ return `<${tagName$I} wmSwitch #${counter}="wmSwitch" [attr.aria-label]="${counter}.hint || 'Switch button'" ${getFormMarkupAttr(attrs)} ${getNgModelAttr(attrs)}>`;
46407
46443
  },
46408
- post: () => `</${tagName$G}>`
46444
+ post: () => `</${tagName$I}>`
46409
46445
  };
46410
46446
  });
46411
46447
  var switch_build = () => { };
@@ -46415,11 +46451,11 @@ var switch_build$1 = /*#__PURE__*/Object.freeze({
46415
46451
  'default': switch_build
46416
46452
  });
46417
46453
 
46418
- const tagName$F = 'wm-input';
46454
+ const tagName$H = 'wm-input';
46419
46455
  register('wm-text', () => {
46420
46456
  return {
46421
- pre: attrs => `<${tagName$F} ${getFormMarkupAttr(attrs)} ${getChildAttrs(attrs)} ${getNgModelAttr(attrs)}>`,
46422
- post: () => `</${tagName$F}>`
46457
+ pre: attrs => `<${tagName$H} ${getFormMarkupAttr(attrs)} ${getChildAttrs(attrs)} ${getNgModelAttr(attrs)}>`,
46458
+ post: () => `</${tagName$H}>`
46423
46459
  };
46424
46460
  });
46425
46461
  var text_build = () => { };
@@ -46429,11 +46465,11 @@ var text_build$1 = /*#__PURE__*/Object.freeze({
46429
46465
  'default': text_build
46430
46466
  });
46431
46467
 
46432
- const tagName$E = 'wm-textarea';
46468
+ const tagName$G = 'wm-textarea';
46433
46469
  register('wm-textarea', () => {
46434
46470
  return {
46435
- pre: attrs => `<${tagName$E} ${getFormMarkupAttr(attrs)} ${getChildAttrs(attrs)} ${getNgModelAttr(attrs)}>`,
46436
- post: () => `</${tagName$E}>`
46471
+ pre: attrs => `<${tagName$G} ${getFormMarkupAttr(attrs)} ${getChildAttrs(attrs)} ${getNgModelAttr(attrs)}>`,
46472
+ post: () => `</${tagName$G}>`
46437
46473
  };
46438
46474
  });
46439
46475
  var textarea_build = () => { };
@@ -46443,11 +46479,11 @@ var textarea_build$1 = /*#__PURE__*/Object.freeze({
46443
46479
  'default': textarea_build
46444
46480
  });
46445
46481
 
46446
- const tagName$D = 'div';
46482
+ const tagName$F = 'div';
46447
46483
  register('wm-datetime', () => {
46448
46484
  return {
46449
- pre: attrs => `<${tagName$D} wmDateTime ${getFormMarkupAttr(attrs)} ${getChildAttrs(attrs)} ${getNgModelAttr(attrs)}>`,
46450
- post: () => `</${tagName$D}>`
46485
+ pre: attrs => `<${tagName$F} wmDateTime ${getFormMarkupAttr(attrs)} ${getChildAttrs(attrs)} ${getNgModelAttr(attrs)}>`,
46486
+ post: () => `</${tagName$F}>`
46451
46487
  };
46452
46488
  });
46453
46489
  var dateTime_build = () => { };
@@ -46457,11 +46493,11 @@ var dateTime_build$1 = /*#__PURE__*/Object.freeze({
46457
46493
  'default': dateTime_build
46458
46494
  });
46459
46495
 
46460
- const tagName$C = 'div';
46496
+ const tagName$E = 'div';
46461
46497
  register('wm-date', () => {
46462
46498
  return {
46463
- pre: attrs => `<${tagName$C} wmDate ${getFormMarkupAttr(attrs)} ${getChildAttrs(attrs)} ${getNgModelAttr(attrs)}>`,
46464
- post: () => `</${tagName$C}>`
46499
+ pre: attrs => `<${tagName$E} wmDate ${getFormMarkupAttr(attrs)} ${getChildAttrs(attrs)} ${getNgModelAttr(attrs)}>`,
46500
+ post: () => `</${tagName$E}>`
46465
46501
  };
46466
46502
  });
46467
46503
  var date_build = () => { };
@@ -46471,11 +46507,11 @@ var date_build$1 = /*#__PURE__*/Object.freeze({
46471
46507
  'default': date_build
46472
46508
  });
46473
46509
 
46474
- const tagName$B = 'div';
46510
+ const tagName$D = 'div';
46475
46511
  register('wm-time', () => {
46476
46512
  return {
46477
- pre: attrs => `<${tagName$B} wmTime ${getFormMarkupAttr(attrs)} ${getChildAttrs(attrs)} ${getNgModelAttr(attrs)}>`,
46478
- post: () => `</${tagName$B}>`
46513
+ pre: attrs => `<${tagName$D} wmTime ${getFormMarkupAttr(attrs)} ${getChildAttrs(attrs)} ${getNgModelAttr(attrs)}>`,
46514
+ post: () => `</${tagName$D}>`
46479
46515
  };
46480
46516
  });
46481
46517
  var time_build = () => { };
@@ -46485,7 +46521,7 @@ var time_build$1 = /*#__PURE__*/Object.freeze({
46485
46521
  'default': time_build
46486
46522
  });
46487
46523
 
46488
- const tagName$A = 'div';
46524
+ const tagName$C = 'div';
46489
46525
  register('wm-fileupload', () => {
46490
46526
  return {
46491
46527
  pre: attrs => {
@@ -46493,9 +46529,9 @@ register('wm-fileupload', () => {
46493
46529
  const onSelectBinding = getDataSource(attrs.get('select.event'));
46494
46530
  attrs.set('datasource.bind', onSelectBinding);
46495
46531
  }
46496
- return `<${tagName$A} wmFileUpload ${getAttrMarkup(attrs)} role="input">`;
46532
+ return `<${tagName$C} wmFileUpload ${getAttrMarkup(attrs)} role="input">`;
46497
46533
  },
46498
- post: () => `</${tagName$A}>`
46534
+ post: () => `</${tagName$C}>`
46499
46535
  };
46500
46536
  });
46501
46537
  var fileUpload_build = () => { };
@@ -46505,11 +46541,11 @@ var fileUpload_build$1 = /*#__PURE__*/Object.freeze({
46505
46541
  'default': fileUpload_build
46506
46542
  });
46507
46543
 
46508
- const tagName$z = 'div';
46544
+ const tagName$B = 'div';
46509
46545
  register('wm-rating', () => {
46510
46546
  return {
46511
- pre: attrs => `<${tagName$z} wmRating ${getFormMarkupAttr(attrs)} ${getNgModelAttr(attrs)}>`,
46512
- post: () => `</${tagName$z}>`
46547
+ pre: attrs => `<${tagName$B} wmRating ${getFormMarkupAttr(attrs)} ${getNgModelAttr(attrs)}>`,
46548
+ post: () => `</${tagName$B}>`
46513
46549
  };
46514
46550
  });
46515
46551
  var rating_build = () => { };
@@ -46519,11 +46555,11 @@ var rating_build$1 = /*#__PURE__*/Object.freeze({
46519
46555
  'default': rating_build
46520
46556
  });
46521
46557
 
46522
- const tagName$y = 'div';
46558
+ const tagName$A = 'div';
46523
46559
  register('wm-slider', () => {
46524
46560
  return {
46525
- pre: attrs => `<${tagName$y} wmSlider ${getAttrMarkup(attrs)} ${getNgModelAttr(attrs)}>`,
46526
- post: () => `</${tagName$y}>`
46561
+ pre: attrs => `<${tagName$A} wmSlider ${getAttrMarkup(attrs)} ${getNgModelAttr(attrs)}>`,
46562
+ post: () => `</${tagName$A}>`
46527
46563
  };
46528
46564
  });
46529
46565
  var slider_build = () => { };
@@ -46534,7 +46570,7 @@ var slider_build$1 = /*#__PURE__*/Object.freeze({
46534
46570
  });
46535
46571
 
46536
46572
  const wmlistTag = 'wm-list';
46537
- const tagName$x = 'div';
46573
+ const tagName$z = 'div';
46538
46574
  const dataSetKey$2 = 'dataset';
46539
46575
  function copyAttribute$1(from, fromAttrName, to, toAttrName) {
46540
46576
  const fromAttr = from.attrs.find(a => a.name === fromAttrName);
@@ -46582,8 +46618,8 @@ register('wm-media-list', () => {
46582
46618
  copyAttribute$1(template, 'height', node, 'thumbnailheight');
46583
46619
  }
46584
46620
  },
46585
- pre: attrs => `<${tagName$x} wmMediaList ${getAttrMarkup(attrs)}>`,
46586
- post: () => `</${tagName$x}>`
46621
+ pre: attrs => `<${tagName$z} wmMediaList ${getAttrMarkup(attrs)}>`,
46622
+ post: () => `</${tagName$z}>`
46587
46623
  };
46588
46624
  });
46589
46625
  var mediaList_build = () => { };
@@ -46593,11 +46629,11 @@ var mediaList_build$1 = /*#__PURE__*/Object.freeze({
46593
46629
  'default': mediaList_build
46594
46630
  });
46595
46631
 
46596
- const tagName$w = 'ng-template';
46632
+ const tagName$y = 'ng-template';
46597
46633
  register('wm-media-template', () => {
46598
46634
  return {
46599
- pre: () => `<${tagName$w} #mediaListTemplate let-item="item" let-index="index">`,
46600
- post: () => `</${tagName$w}>`
46635
+ pre: () => `<${tagName$y} #mediaListTemplate let-item="item" let-index="index">`,
46636
+ post: () => `</${tagName$y}>`
46601
46637
  };
46602
46638
  });
46603
46639
  var mediaListItem_build = () => { };
@@ -46681,16 +46717,16 @@ var list_build$1 = /*#__PURE__*/Object.freeze({
46681
46717
  'default': list_build
46682
46718
  });
46683
46719
 
46684
- const tagName$v = 'div';
46685
- const idGen$9 = new IDGenerator('liveform_dialog_id_');
46720
+ const tagName$x = 'div';
46721
+ const idGen$a = new IDGenerator('liveform_dialog_id_');
46686
46722
  register('wm-livetable', () => {
46687
46723
  return {
46688
46724
  pre: (attrs, shared) => {
46689
- const counter = idGen$9.nextUid();
46725
+ const counter = idGen$a.nextUid();
46690
46726
  shared.set('counter', counter);
46691
- return `<${tagName$v} wmLiveTable role="table" ${getAttrMarkup(attrs)} dialogid="${counter}">`;
46727
+ return `<${tagName$x} wmLiveTable role="table" ${getAttrMarkup(attrs)} dialogid="${counter}">`;
46692
46728
  },
46693
- post: () => `</${tagName$v}>`,
46729
+ post: () => `</${tagName$x}>`,
46694
46730
  provide: (attrs, shared) => {
46695
46731
  const provider = new Map();
46696
46732
  provider.set('liveform_dialog_id', shared.get('counter'));
@@ -46705,15 +46741,15 @@ var liveTable_build$1 = /*#__PURE__*/Object.freeze({
46705
46741
  'default': liveTable_build
46706
46742
  });
46707
46743
 
46708
- const tagName$u = 'p';
46709
- const idGen$8 = new IDGenerator('wm_message');
46744
+ const tagName$w = 'p';
46745
+ const idGen$9 = new IDGenerator('wm_message');
46710
46746
  register('wm-message', () => {
46711
46747
  return {
46712
46748
  pre: (attrs) => {
46713
- const counter = idGen$8.nextUid();
46714
- return `<${tagName$u} wmMessage tabindex="0" #${counter}="wmMessage" ${getAttrMarkup(attrs)}>`;
46749
+ const counter = idGen$9.nextUid();
46750
+ return `<${tagName$w} wmMessage tabindex="0" #${counter}="wmMessage" ${getAttrMarkup(attrs)}>`;
46715
46751
  },
46716
- post: () => `</${tagName$u}>`
46752
+ post: () => `</${tagName$w}>`
46717
46753
  };
46718
46754
  });
46719
46755
  var message_build = () => { };
@@ -46723,11 +46759,11 @@ var message_build$1 = /*#__PURE__*/Object.freeze({
46723
46759
  'default': message_build
46724
46760
  });
46725
46761
 
46726
- const tagName$t = 'ol';
46762
+ const tagName$v = 'ol';
46727
46763
  register('wm-breadcrumb', () => {
46728
46764
  return {
46729
- pre: attrs => `<${tagName$t} wmBreadcrumb ${getAttrMarkup(attrs)}>`,
46730
- post: () => `</${tagName$t}>`
46765
+ pre: attrs => `<${tagName$v} wmBreadcrumb ${getAttrMarkup(attrs)}>`,
46766
+ post: () => `</${tagName$v}>`
46731
46767
  };
46732
46768
  });
46733
46769
  var breadcrumb_build = () => { };
@@ -46737,11 +46773,11 @@ var breadcrumb_build$1 = /*#__PURE__*/Object.freeze({
46737
46773
  'default': breadcrumb_build
46738
46774
  });
46739
46775
 
46740
- const tagName$s = 'div';
46776
+ const tagName$u = 'div';
46741
46777
  register('wm-menu', () => {
46742
46778
  return {
46743
- pre: attrs => `<${tagName$s} wmMenu dropdown ${getAttrMarkup(attrs)}>`,
46744
- post: () => `</${tagName$s}>`
46779
+ pre: attrs => `<${tagName$u} wmMenu dropdown ${getAttrMarkup(attrs)}>`,
46780
+ post: () => `</${tagName$u}>`
46745
46781
  };
46746
46782
  });
46747
46783
  var menu_build = () => { };
@@ -46751,11 +46787,11 @@ var menu_build$1 = /*#__PURE__*/Object.freeze({
46751
46787
  'default': menu_build
46752
46788
  });
46753
46789
 
46754
- const tagName$r = 'li';
46790
+ const tagName$t = 'li';
46755
46791
  register('wm-nav-item', () => {
46756
46792
  return {
46757
- pre: attrs => `<${tagName$r} wmNavItem role="listitem" ${getAttrMarkup(attrs)}>`,
46758
- post: () => `</${tagName$r}>`
46793
+ pre: attrs => `<${tagName$t} wmNavItem role="listitem" ${getAttrMarkup(attrs)}>`,
46794
+ post: () => `</${tagName$t}>`
46759
46795
  };
46760
46796
  });
46761
46797
  var navItem_build = () => { };
@@ -46765,11 +46801,11 @@ var navItem_build$1 = /*#__PURE__*/Object.freeze({
46765
46801
  'default': navItem_build
46766
46802
  });
46767
46803
 
46768
- const tagName$q = 'ul';
46804
+ const tagName$s = 'ul';
46769
46805
  register('wm-nav', () => {
46770
46806
  return {
46771
- pre: attrs => `<${tagName$q} wmNav data-element-type="wmNav" data-role="page-header" role="list" ${getAttrMarkup(attrs)}>`,
46772
- post: () => `</${tagName$q}>`
46807
+ pre: attrs => `<${tagName$s} wmNav data-element-type="wmNav" data-role="page-header" role="list" ${getAttrMarkup(attrs)}>`,
46808
+ post: () => `</${tagName$s}>`
46773
46809
  };
46774
46810
  });
46775
46811
  var nav_build = () => { };
@@ -46779,11 +46815,11 @@ var nav_build$1 = /*#__PURE__*/Object.freeze({
46779
46815
  'default': nav_build
46780
46816
  });
46781
46817
 
46782
- const tagName$p = 'nav';
46818
+ const tagName$r = 'nav';
46783
46819
  register('wm-navbar', () => {
46784
46820
  return {
46785
- pre: attrs => `<${tagName$p} wmNavbar data-element-type="wmNavbar" role="navigation" ${getAttrMarkup(attrs)}>`,
46786
- post: () => `</${tagName$p}>`
46821
+ pre: attrs => `<${tagName$r} wmNavbar data-element-type="wmNavbar" role="navigation" ${getAttrMarkup(attrs)}>`,
46822
+ post: () => `</${tagName$r}>`
46787
46823
  };
46788
46824
  });
46789
46825
  var navbar_build = () => { };
@@ -46793,7 +46829,7 @@ var navbar_build$1 = /*#__PURE__*/Object.freeze({
46793
46829
  'default': navbar_build
46794
46830
  });
46795
46831
 
46796
- const tagName$o = 'wm-popover';
46832
+ const tagName$q = 'wm-popover';
46797
46833
  register('wm-popover', () => {
46798
46834
  return {
46799
46835
  requires: ['wm-table'],
@@ -46813,7 +46849,7 @@ register('wm-popover', () => {
46813
46849
  popoverTemplate = `<div wmContainer #partial partialContainer ${contentMarkup}>`;
46814
46850
  shared.set('hasPopoverContent', true);
46815
46851
  }
46816
- let markup = `<${tagName$o} wmPopover ${getAttrMarkup(attrs)}>`;
46852
+ let markup = `<${tagName$q} wmPopover ${getAttrMarkup(attrs)}>`;
46817
46853
  const contextAttrs = table ? `let-row="row"` : ``;
46818
46854
  markup += `<ng-template ${contextAttrs}><button class="popover-start"></button>`;
46819
46855
  // todo keyboard navigation - tab
@@ -46827,7 +46863,7 @@ register('wm-popover', () => {
46827
46863
  if (shared.get('hasPopoverContent')) {
46828
46864
  markup += `</div>`;
46829
46865
  }
46830
- return `${markup}<button class="popover-end"></button></ng-template></${tagName$o}>`;
46866
+ return `${markup}<button class="popover-end"></button></ng-template></${tagName$q}>`;
46831
46867
  }
46832
46868
  };
46833
46869
  });
@@ -46838,21 +46874,21 @@ var popover_build$1 = /*#__PURE__*/Object.freeze({
46838
46874
  'default': popover_build
46839
46875
  });
46840
46876
 
46841
- const tagName$n = 'div';
46877
+ const tagName$p = 'div';
46842
46878
  const findChild = (node, childName) => {
46843
46879
  const child = node && node.children.find(e => (e instanceof Element$1$1 && e.name === childName));
46844
46880
  return child;
46845
46881
  };
46846
- const ɵ0$5$1 = findChild;
46847
- const createElement$2 = name => {
46848
- return new Element$1$1(name, [], [], noSpan$2, noSpan$2, noSpan$2);
46882
+ const ɵ0$6$1 = findChild;
46883
+ const createElement$3 = name => {
46884
+ return new Element$1$1(name, [], [], noSpan$3, noSpan$3, noSpan$3);
46849
46885
  };
46850
- const ɵ1$4$1 = createElement$2;
46851
- const addAtrribute$2 = (node, name, value) => {
46852
- const attr = new Attribute(name, value, noSpan$2, noSpan$2, noSpan$2, undefined, undefined);
46886
+ const ɵ1$5$1 = createElement$3;
46887
+ const addAtrribute$3 = (node, name, value) => {
46888
+ const attr = new Attribute(name, value, noSpan$3, noSpan$3, noSpan$3, undefined, undefined);
46853
46889
  node.attrs.push(attr);
46854
46890
  };
46855
- const ɵ2$1$2 = addAtrribute$2;
46891
+ const ɵ2$1$2 = addAtrribute$3;
46856
46892
  const getElementNode = (name, node) => {
46857
46893
  let elementNode;
46858
46894
  if (!node) {
@@ -46872,8 +46908,8 @@ const getElementNode = (name, node) => {
46872
46908
  return elementNode;
46873
46909
  };
46874
46910
  const ɵ3$1$2 = getElementNode;
46875
- const noSpan$2 = {};
46876
- const idGen$7 = new IDGenerator('wm_page');
46911
+ const noSpan$3 = {};
46912
+ const idGen$8 = new IDGenerator('wm_page');
46877
46913
  register('wm-page', () => {
46878
46914
  return {
46879
46915
  template: (node) => {
@@ -46882,24 +46918,24 @@ register('wm-page', () => {
46882
46918
  pageContentNode = getElementNode('wm-page-content', getElementNode('wm-content', node));
46883
46919
  }
46884
46920
  if (pageContentNode) {
46885
- const conditionalNode = createElement$2('ng-container');
46886
- addAtrribute$2(conditionalNode, '*ngIf', 'compilePageContent');
46921
+ const conditionalNode = createElement$3('ng-container');
46922
+ addAtrribute$3(conditionalNode, '*ngIf', 'compilePageContent');
46887
46923
  conditionalNode.children = conditionalNode.children.concat(pageContentNode.children);
46888
46924
  conditionalNode.children.push(new Text$3('{{onPageContentReady()}}', null, undefined, undefined));
46889
46925
  pageContentNode.children = [conditionalNode];
46890
46926
  if (isMobileApp()) {
46891
- const loader = createElement$2('div');
46892
- addAtrribute$2(loader, 'wmPageContentLoader', '');
46893
- addAtrribute$2(loader, '*ngIf', '!showPageContent');
46927
+ const loader = createElement$3('div');
46928
+ addAtrribute$3(loader, 'wmPageContentLoader', '');
46929
+ addAtrribute$3(loader, '*ngIf', '!showPageContent');
46894
46930
  pageContentNode.children.push(loader);
46895
46931
  }
46896
46932
  }
46897
46933
  },
46898
46934
  pre: (attrs) => {
46899
- const counter = idGen$7.nextUid();
46900
- return `<${tagName$n} wmPage #${counter}="wmPage" data-role="pageContainer" [attr.aria-label]="${counter}.hint || 'Main page content'" ${getAttrMarkup(attrs)}>`;
46935
+ const counter = idGen$8.nextUid();
46936
+ return `<${tagName$p} wmPage #${counter}="wmPage" data-role="pageContainer" [attr.aria-label]="${counter}.hint || 'Main page content'" ${getAttrMarkup(attrs)}>`;
46901
46937
  },
46902
- post: () => `</${tagName$n}>`
46938
+ post: () => `</${tagName$p}>`
46903
46939
  };
46904
46940
  });
46905
46941
  var page_build = () => { };
@@ -46907,12 +46943,44 @@ var page_build = () => { };
46907
46943
  var page_build$1 = /*#__PURE__*/Object.freeze({
46908
46944
  __proto__: null,
46909
46945
  'default': page_build,
46910
- 'ɵ0': ɵ0$5$1,
46911
- 'ɵ1': ɵ1$4$1,
46946
+ 'ɵ0': ɵ0$6$1,
46947
+ 'ɵ1': ɵ1$5$1,
46912
46948
  'ɵ2': ɵ2$1$2,
46913
46949
  'ɵ3': ɵ3$1$2
46914
46950
  });
46915
46951
 
46952
+ const tagName$o = 'div';
46953
+ const idGen$7 = new IDGenerator('wm_layout');
46954
+ register('wm-layout', () => {
46955
+ return {
46956
+ pre: (attrs) => {
46957
+ const counter = idGen$7.nextUid();
46958
+ return `<${tagName$o} wmLayout #${counter}="wmLayout" data-role="pageContainer" [attr.aria-label]="${counter}.hint || 'Main page content'" ${getAttrMarkup(attrs)}>`;
46959
+ },
46960
+ post: () => `</${tagName$o}>`
46961
+ };
46962
+ });
46963
+ var layout_build = () => { };
46964
+
46965
+ var layout_build$1 = /*#__PURE__*/Object.freeze({
46966
+ __proto__: null,
46967
+ 'default': layout_build
46968
+ });
46969
+
46970
+ const tagName$n = 'router-outlet';
46971
+ register('wm-router-outlet', () => {
46972
+ return {
46973
+ pre: attrs => `<div wmRouterOutlet name="wmRouterOutlet" ${getAttrMarkup(attrs)}><${tagName$n} (activate)="onActivate($event)">`,
46974
+ post: () => `</${tagName$n}></div>`
46975
+ };
46976
+ });
46977
+ var routerOutlet_build = () => { };
46978
+
46979
+ var routerOutlet_build$1 = /*#__PURE__*/Object.freeze({
46980
+ __proto__: null,
46981
+ 'default': routerOutlet_build
46982
+ });
46983
+
46916
46984
  const tagName$m = 'nav';
46917
46985
  register('wm-pagination', () => {
46918
46986
  return {
@@ -47028,9 +47096,31 @@ var rightPanel_build$1 = /*#__PURE__*/Object.freeze({
47028
47096
  });
47029
47097
 
47030
47098
  const tagName$f = 'div';
47099
+ const createElement$2 = name => {
47100
+ return new Element$1$1(name, [], [], noSpan$2, noSpan$2, noSpan$2);
47101
+ };
47102
+ const ɵ0$5$1 = createElement$2;
47103
+ const addAtrribute$2 = (node, name, value) => {
47104
+ const attr = new Attribute(name, value, noSpan$2, noSpan$2, noSpan$2, undefined, undefined);
47105
+ node.attrs.push(attr);
47106
+ };
47107
+ const ɵ1$4$1 = addAtrribute$2;
47108
+ const noSpan$2 = {};
47031
47109
  register('wm-page-content', () => {
47032
47110
  return {
47033
- pre: attrs => `<${tagName$f} wmPageContent wmSmoothscroll="${attrs.get('smoothscroll') || 'false'}" ${getAttrMarkup(attrs)}>`,
47111
+ template: (node) => {
47112
+ for (let attr of node.attrs) {
47113
+ if (attr.name === 'spa' && attr.value === 'true') {
47114
+ const conditionalNode = createElement$2('ng-container');
47115
+ addAtrribute$2(conditionalNode, '*ngIf', 'compilePageContent');
47116
+ conditionalNode.children = conditionalNode.children.concat(node.children);
47117
+ conditionalNode.children.push(new Text$3('{{onPageContentReady()}}', null, undefined, undefined));
47118
+ node.children = [conditionalNode];
47119
+ break;
47120
+ }
47121
+ }
47122
+ },
47123
+ pre: attrs => `<${tagName$f} wmPageContent ${attrs.get('spa') && 'wmSpaPage' || ''} wmSmoothscroll="${attrs.get('smoothscroll') || 'false'}" ${getAttrMarkup(attrs)}>`,
47034
47124
  post: () => `</${tagName$f}>`
47035
47125
  };
47036
47126
  });
@@ -47038,7 +47128,9 @@ var pageContent_build = () => { };
47038
47128
 
47039
47129
  var pageContent_build$1 = /*#__PURE__*/Object.freeze({
47040
47130
  __proto__: null,
47041
- 'default': pageContent_build
47131
+ 'default': pageContent_build,
47132
+ 'ɵ0': ɵ0$5$1,
47133
+ 'ɵ1': ɵ1$4$1
47042
47134
  });
47043
47135
 
47044
47136
  const tagName$e = 'div';
@@ -47135,10 +47227,10 @@ var prefab_build$1 = /*#__PURE__*/Object.freeze({
47135
47227
  });
47136
47228
 
47137
47229
  const noSpan = {};
47138
- const createElement$3 = name => {
47230
+ const createElement$4 = name => {
47139
47231
  return new Element$1$1(name, [], [], noSpan, noSpan, noSpan);
47140
47232
  };
47141
- const ɵ0$3$2 = createElement$3;
47233
+ const ɵ0$3$2 = createElement$4;
47142
47234
  const addAtrribute = (node, name, value) => {
47143
47235
  const attr = new Attribute(name, value, noSpan, noSpan, noSpan, undefined, undefined);
47144
47236
  node.attrs.push(attr);
@@ -47148,7 +47240,7 @@ const tagName$9 = 'div';
47148
47240
  register('wm-prefab-container', () => {
47149
47241
  return {
47150
47242
  template: (node) => {
47151
- const conditionalNode = createElement$3('ng-container');
47243
+ const conditionalNode = createElement$4('ng-container');
47152
47244
  addAtrribute(conditionalNode, '*ngIf', 'compileContent');
47153
47245
  conditionalNode.children = conditionalNode.children.concat(node.children);
47154
47246
  node.children.length = 0;
@@ -47555,7 +47647,7 @@ const getRowActionTmpl = (attrs) => {
47555
47647
  ${saveCancelTmpl}
47556
47648
  </ng-template>`;
47557
47649
  };
47558
- const ɵ1$8 = getRowActionTmpl;
47650
+ const ɵ1$9 = getRowActionTmpl;
47559
47651
  register('wm-table-row-action', () => {
47560
47652
  return {
47561
47653
  pre: attrs => `<${tagName$4} wmTableRowAction ${getAttrMarkup(attrs)}>
@@ -47569,7 +47661,7 @@ var tableRowAction_build$1 = /*#__PURE__*/Object.freeze({
47569
47661
  __proto__: null,
47570
47662
  'default': tableRowAction_build,
47571
47663
  'ɵ0': ɵ0$i,
47572
- 'ɵ1': ɵ1$8
47664
+ 'ɵ1': ɵ1$9
47573
47665
  });
47574
47666
 
47575
47667
  const tagName$3 = 'div';
@@ -47758,6 +47850,7 @@ exports.iframeBuild = iframe_build$1;
47758
47850
  exports.iframeDlgBuild = iframeDialog_build$1;
47759
47851
  exports.initComponentsBuildTask = initComponentsBuildTask;
47760
47852
  exports.labelBuild = label_build$1;
47853
+ exports.layoutBuild = layout_build$1;
47761
47854
  exports.leftPanelBuild = leftPanel_build$1;
47762
47855
  exports.lgBuild = layoutGrid_build$1;
47763
47856
  exports.lgcolBuild = layoutGridColumn_build$1;
@@ -47795,6 +47888,7 @@ exports.radiosetBuild = radioset_build$1;
47795
47888
  exports.ratingBuild = rating_build$1;
47796
47889
  exports.repeatTemplateBuild = repeatTemplate_build$1;
47797
47890
  exports.rightPanelBuild = rightPanel_build$1;
47891
+ exports.routerOutletBuild = routerOutlet_build$1;
47798
47892
  exports.rteBuild = richTextEditor_build$1;
47799
47893
  exports.searchBuild = search_build$1;
47800
47894
  exports.segContentBuild = segmentContent_build$1;