@watermarkinsights/ripple 5.29.0-alpha.8 → 5.29.0

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.
Files changed (41) hide show
  1. package/dist/cjs/{app-globals-aeed0e41.js → app-globals-24691a79.js} +1 -1
  2. package/dist/cjs/loader.cjs.js +2 -2
  3. package/dist/cjs/ripple.cjs.js +2 -2
  4. package/dist/cjs/wm-button.cjs.entry.js +1 -1
  5. package/dist/cjs/wm-date-range.cjs.entry.js +37 -13
  6. package/dist/cjs/wm-datepicker.cjs.entry.js +37 -13
  7. package/dist/collection/components/datepickers/wm-date-range.js +49 -13
  8. package/dist/collection/components/datepickers/wm-datepicker.js +49 -13
  9. package/dist/collection/components/wm-button/wm-button.js +1 -1
  10. package/dist/esm/{app-globals-37937c54.js → app-globals-930d901f.js} +1 -1
  11. package/dist/esm/loader.js +2 -2
  12. package/dist/esm/ripple.js +2 -2
  13. package/dist/esm/wm-button.entry.js +1 -1
  14. package/dist/esm/wm-date-range.entry.js +37 -13
  15. package/dist/esm/wm-datepicker.entry.js +37 -13
  16. package/dist/esm-es5/app-globals-930d901f.js +1 -0
  17. package/dist/esm-es5/loader.js +1 -1
  18. package/dist/esm-es5/ripple.js +1 -1
  19. package/dist/esm-es5/wm-button.entry.js +1 -1
  20. package/dist/esm-es5/wm-date-range.entry.js +1 -1
  21. package/dist/esm-es5/wm-datepicker.entry.js +1 -1
  22. package/dist/ripple/{p-b7f54fed.system.entry.js → p-29aec813.system.entry.js} +1 -1
  23. package/dist/ripple/{p-bf699317.system.entry.js → p-5034eb64.system.entry.js} +1 -1
  24. package/dist/ripple/p-64b6f989.entry.js +1 -0
  25. package/dist/ripple/{p-7e361924.entry.js → p-82913757.entry.js} +1 -1
  26. package/dist/ripple/p-8d5cccd1.entry.js +1 -0
  27. package/dist/ripple/p-a23643db.system.js +1 -0
  28. package/dist/ripple/{p-bcaa3198.system.entry.js → p-c39e9f51.system.entry.js} +1 -1
  29. package/dist/ripple/p-c7d2bf2a.js +1 -0
  30. package/dist/ripple/p-ee102ccb.system.js +1 -0
  31. package/dist/ripple/ripple.esm.js +1 -1
  32. package/dist/ripple/ripple.js +1 -1
  33. package/dist/types/components/datepickers/wm-date-range.d.ts +4 -1
  34. package/dist/types/components/datepickers/wm-datepicker.d.ts +4 -1
  35. package/package.json +2 -3
  36. package/dist/esm-es5/app-globals-37937c54.js +0 -1
  37. package/dist/ripple/p-1cab0596.js +0 -1
  38. package/dist/ripple/p-60bcc9f1.entry.js +0 -1
  39. package/dist/ripple/p-72039f11.system.js +0 -1
  40. package/dist/ripple/p-aece07d2.entry.js +0 -1
  41. package/dist/ripple/p-f6a19e4b.system.js +0 -1
@@ -12,6 +12,7 @@ export class DateRange {
12
12
  return; // bail if the component was unmounted before the debounce fired
13
13
  this.canOpen = this.measureFit() !== null;
14
14
  }, 100);
15
+ this.pf_repositionRAF = null;
15
16
  this.formats = { "mm/dd/yyyy": "US", "dd/mm/yyyy": "INT", "yyyy/mm/dd": "ISO" };
16
17
  this.dateFormat = "mm/dd/yyyy";
17
18
  this.disabled = false;
@@ -27,6 +28,18 @@ export class DateRange {
27
28
  this.isExpanded = false;
28
29
  this.canOpen = true;
29
30
  }
31
+ pf_reposition() {
32
+ if (this.hasAnchor || !this.isExpanded)
33
+ return;
34
+ // rAF-throttle: native anchor() re-resolves on every frame; this matches that cadence
35
+ // without thrashing layout when scroll fires many times per frame.
36
+ if (this.pf_repositionRAF !== null)
37
+ return;
38
+ this.pf_repositionRAF = requestAnimationFrame(() => {
39
+ this.pf_repositionRAF = null;
40
+ this.pf_positionDropdown();
41
+ });
42
+ }
30
43
  // Returns the closest scrollable ancestor that can yield at least `neededScroll` of additional scroll.
31
44
  findScrollable(neededScroll) {
32
45
  // Scrolling an ancestor above the positioning boundary (e.g. a scrollable container behind
@@ -67,14 +80,18 @@ export class DateRange {
67
80
  return null;
68
81
  const fitsLeftAligned = rect.left + this.calWidth <= vw; // (a) left edge aligns to input's left edge
69
82
  const fitsRightAligned = rect.right - this.calWidth >= 0; // (b) right edge aligns to input's right edge
70
- // (a) left-align; (b) right-align; (c) snap to the viewport edge with the most room
83
+ // (a) left-align; (b) right-align; (c) snap to the viewport edge with the most room; (d) no placement works → caller hides the toggle
71
84
  const horizontal = fitsLeftAligned
72
85
  ? "left"
73
86
  : fitsRightAligned
74
87
  ? "right"
75
- : rect.left > vw - rect.right
76
- ? "clip-left"
77
- : "clip-right";
88
+ : vw >= this.calWidth
89
+ ? rect.left > vw - rect.right
90
+ ? "clip-left"
91
+ : "clip-right"
92
+ : null;
93
+ if (!horizontal)
94
+ return null;
78
95
  return { vertical, horizontal };
79
96
  }
80
97
  checkCanOpen() {
@@ -241,12 +258,13 @@ export class DateRange {
241
258
  if (scrollAmount > 0)
242
259
  (_b = this.findScrollable(scrollAmount)) === null || _b === void 0 ? void 0 : _b.scrollBy({ top: scrollAmount, behavior: "smooth" });
243
260
  }
244
- else {
245
- this.startCalEl.scrollIntoView({ behavior: "smooth", block: "nearest" });
246
- }
247
261
  });
248
262
  }
249
263
  else {
264
+ if (this.pf_repositionRAF !== null) {
265
+ cancelAnimationFrame(this.pf_repositionRAF);
266
+ this.pf_repositionRAF = null;
267
+ }
250
268
  this.fit = null;
251
269
  // reset
252
270
  // clearing these in case the user closes without finishing the process
@@ -496,6 +514,12 @@ export class DateRange {
496
514
  componentDidLoad() {
497
515
  this.checkCanOpen();
498
516
  }
517
+ disconnectedCallback() {
518
+ if (this.pf_repositionRAF !== null) {
519
+ cancelAnimationFrame(this.pf_repositionRAF);
520
+ this.pf_repositionRAF = null;
521
+ }
522
+ }
499
523
  announce(message) {
500
524
  // \u00A0 is a non-breaking space character, which causes the message to be read as a new one
501
525
  if (this.liveRegionEl.textContent === message) {
@@ -505,25 +529,25 @@ export class DateRange {
505
529
  }
506
530
  render() {
507
531
  var _a, _b, _c, _d;
508
- return (h(Host, { key: '2cc6c1f2f9e36271d618f603a897717d9d80ad11', "aria-busy": "false" }, h("div", { key: '1edb378073847d62436aebaff6b61d9667d107e3', ref: (d) => (this.wrapperEl = d), class: "wrapper" }, h("div", { key: '3140c646253ba6b429431a7376c7d5c29c47d330', class: "range-wrapper cal", ref: (el) => (this.anchorEl = el) }, h("div", { key: '87a8298b24da3be8c4582e53bbf7cf8d12cb1f2d', class: "label-wrapper", id: "start-label-wrapper" }, h("label", { key: '795e46d684a8afe0474155b2530d2818c4ca05ba', id: "startlabel", htmlFor: "start-date-input", class: "label", title: `${this.labelStart} (${this.dateFormat})` }, this.labelStart, this.requiredField && (h("span", { key: 'dc74f6d81dbd58ce5a25b2807bd2b1b93aba258c', "aria-hidden": "true", class: "required" }, "*")))), h("div", { key: '91403fb0cb6b3a6dca1d1d97ee2cd90a2bdb5b92', class: "label-wrapper", id: "end-label-wrapper" }, h("label", { key: '758ed3bec98097811f67120f92afcb1f4be1c1dd', id: "endlabel", htmlFor: "end-date-input", class: "label", title: `${this.labelEnd} (${this.dateFormat})` }, this.labelEnd, this.requiredField && (h("span", { key: 'c13769de36a12bf2d1be4a5a2499ae510625d11a', "aria-hidden": "true", class: "required" }, "*")))), h("input", { key: '421ed055aa5976708a38b8c61fae1dbceee12f3e', disabled: this._disabled, type: "text", id: "start-date-input", class: `date-input input ${this.invalidStart ? "invalid" : ""}`, name: "start-date", placeholder: this.dateFormat, value: this.valueStart, onFocus: () => this.handleFocus(), onInput: (ev) => this.handleStartInput(ev), onBlur: () => this.handleStartInputBlur(), ref: (input) => (this.startInputEl = input), "aria-describedby": "error", "aria-label": this.labelStart, "aria-required": this.requiredField ? "true" : null }), h("div", { key: '64bc02dfbb907a616f9fbaf4a8498aed58fb7b56', id: "hyphen" }, "\u00A0-\u00A0"), h("input", { key: '1655a588d3ddc91f2caf5f011f82bdf2f1c87141', disabled: this._disabled, type: "text", id: "end-date-input", class: `date-input input ${this.invalidEnd ? "invalid" : ""}`, name: "end-date", placeholder: this.dateFormat, value: this.valueEnd, onFocus: () => this.handleFocus(), onInput: (ev) => this.handleEndInput(ev), onBlur: () => this.handleEndInputBlur(), ref: (input) => (this.endInputEl = input), "aria-describedby": "error", "aria-label": this.labelEnd, "aria-required": this.requiredField ? "true" : null }), h("div", { key: 'ce7a70b9c429dcebe4cef57538de31e00a76db5b', class: "toggle-wrapper", id: "toggle-wrapper" }, this.canOpen && (h("button", { key: '06f93d2a00904da2e48ab563626845c06c1a2756', disabled: this.disabled, "aria-describedby": "start-date-input end-date-input", "aria-label": intl.formatMessage({
532
+ return (h(Host, { key: '9840d0cb5b3aff858d939fbe2d67dc1d51535c05', "aria-busy": "false" }, h("div", { key: '71e3eb8f71812140abc538cbfec3111c2e2b9cba', ref: (d) => (this.wrapperEl = d), class: "wrapper" }, h("div", { key: '094295f1471f1ba0eaea5c65617447efc5dca770', class: "range-wrapper cal", ref: (el) => (this.anchorEl = el) }, h("div", { key: '00bcfac555be41fe8b2f885e2a0335c8d41efd28', class: "label-wrapper", id: "start-label-wrapper" }, h("label", { key: 'fa7a7f25eb9156ad8de4d3c243f41e974084e35b', id: "startlabel", htmlFor: "start-date-input", class: "label", title: `${this.labelStart} (${this.dateFormat})` }, this.labelStart, this.requiredField && (h("span", { key: '146abd4001789c1020eeb27c154004376a39e4e3', "aria-hidden": "true", class: "required" }, "*")))), h("div", { key: 'a112e25addb7a17cf497728a4d4d72018228a706', class: "label-wrapper", id: "end-label-wrapper" }, h("label", { key: '29834ad29b391967f6313e7a72775f1647f61084', id: "endlabel", htmlFor: "end-date-input", class: "label", title: `${this.labelEnd} (${this.dateFormat})` }, this.labelEnd, this.requiredField && (h("span", { key: 'b3c0b90c040a0552db1e01b8f8aa38725a98357a', "aria-hidden": "true", class: "required" }, "*")))), h("input", { key: '1a6b2881f11d9700fd5895ca49b72672d2c903aa', disabled: this._disabled, type: "text", id: "start-date-input", class: `date-input input ${this.invalidStart ? "invalid" : ""}`, name: "start-date", placeholder: this.dateFormat, value: this.valueStart, onFocus: () => this.handleFocus(), onInput: (ev) => this.handleStartInput(ev), onBlur: () => this.handleStartInputBlur(), ref: (input) => (this.startInputEl = input), "aria-describedby": "error", "aria-label": this.labelStart, "aria-required": this.requiredField ? "true" : null }), h("div", { key: '4ab993f81a4af844b51b66acefef64ecbf3c6be3', id: "hyphen" }, "\u00A0-\u00A0"), h("input", { key: '5ef90c128cc642ad23102f752838b2a2c5d30688', disabled: this._disabled, type: "text", id: "end-date-input", class: `date-input input ${this.invalidEnd ? "invalid" : ""}`, name: "end-date", placeholder: this.dateFormat, value: this.valueEnd, onFocus: () => this.handleFocus(), onInput: (ev) => this.handleEndInput(ev), onBlur: () => this.handleEndInputBlur(), ref: (input) => (this.endInputEl = input), "aria-describedby": "error", "aria-label": this.labelEnd, "aria-required": this.requiredField ? "true" : null }), h("div", { key: '43a4820ce51afc316b96e09aa8581c4791d06aaf', class: "toggle-wrapper", id: "toggle-wrapper" }, this.canOpen && (h("button", { key: '7a39be01375c1406021c8c2015f746710db313b6', disabled: this.disabled, "aria-describedby": "start-date-input end-date-input", "aria-label": intl.formatMessage({
509
533
  id: "date.selectRange",
510
534
  defaultMessage: "Select range",
511
535
  description: "Button text for screen readers.",
512
- }), ref: (el) => (this.toggleEl = el), "aria-expanded": `${this.isExpanded}`, class: "toggle", id: "toggle", popoverTarget: "popup-wrapper", popoverTargetAction: "toggle" }, h("span", { key: '469413e68bbf4373d940cbd692256884a8858ce8', class: "svg-icon svg-date" }), h("span", { key: '150cb87a6826a5977370d63487206dd07951e67b', class: "calendar", title: intl.formatMessage({
536
+ }), ref: (el) => (this.toggleEl = el), "aria-expanded": `${this.isExpanded}`, class: "toggle", id: "toggle", popoverTarget: "popup-wrapper", popoverTargetAction: "toggle" }, h("span", { key: 'd58a8a11fc19a77da89af41ac82c877acb4a0012', class: "svg-icon svg-date" }), h("span", { key: 'c0c3d305723275782e0e97db7a5feb3777de2c1b', class: "calendar", title: intl.formatMessage({
513
537
  id: "date.calendarView",
514
538
  defaultMessage: "Calendar View",
515
539
  description: "Calendar button",
516
- }) })))), h("div", { key: 'b92915d5f861f93fa7a8e9395d6e1887ef14f02c', class: `popup-wrapper popup-range ${this.startCalEl && this.startCalEl.view}-view ${this.isExpanded ? "is-open" : ""} ${!this.hasAnchor && !this.isExpanded ? "hidden" : ""} ${(_b = (_a = this.fit) === null || _a === void 0 ? void 0 : _a.vertical) !== null && _b !== void 0 ? _b : ""} ${(_d = (_c = this.fit) === null || _c === void 0 ? void 0 : _c.horizontal) !== null && _d !== void 0 ? _d : ""}`, id: "popup-wrapper", ref: (el) => (this.popupEl = el), popover: "auto",
540
+ }) })))), h("div", { key: 'de44f23903d4656c215b10a070dc262057a70a5f', class: `popup-wrapper popup-range ${this.startCalEl && this.startCalEl.view}-view ${this.isExpanded ? "is-open" : ""} ${!this.hasAnchor && !this.isExpanded ? "hidden" : ""} ${(_b = (_a = this.fit) === null || _a === void 0 ? void 0 : _a.vertical) !== null && _b !== void 0 ? _b : ""} ${(_d = (_c = this.fit) === null || _c === void 0 ? void 0 : _c.horizontal) !== null && _d !== void 0 ? _d : ""}`, id: "popup-wrapper", ref: (el) => (this.popupEl = el), popover: "auto",
517
541
  // @ts-ignore -- onToggle is a valid ToggleEvent listener for popover elements
518
- onToggle: (ev) => this.handleToggle(ev) }, h("div", { key: 'c75a66155361b89cffe7556af4251240ac580e30', class: "trapfocus", tabIndex: this.isExpanded ? 0 : undefined, onFocus: () => this.endCalEl.focusLastFocusable() }), h("priv-calendar", { key: 'e1a18f727e0e214f6f5e933d88c7eeca233adf52', ref: (el) => (this.startCalEl = el), onDateFocus: (ev) => this.handleDateFocus(ev) }), h("priv-calendar", { key: '9ecd93ec8f7bdd17e48c37a16364a5eaf3bd6c8e', ref: (el) => (this.endCalEl = el), onDateFocus: (ev) => this.handleDateFocus(ev) }), h("div", { key: '05bdf3efdc0fe01fd41a7f9972f802ddb3adc73c', class: "trapfocus", tabIndex: this.isExpanded ? 0 : undefined, onFocus: () => this.startCalEl.focusFirstFocusable() }))), h("div", { key: '6b8431a72024f3a7285029ae465b2c3626a5fc47' }, h("div", { key: '140b26ed1d1a08cfea8ae836c119d29a33eab49b', id: "live-region", "aria-live": "polite", "aria-relevant": "text", class: "sr-only" }), h("div", { key: '388d2926178044146732a3863af68a073d63f660', id: "month-title", class: "sr-only" }, intl.formatMessage({
542
+ onToggle: (ev) => this.handleToggle(ev) }, h("div", { key: '0f9e61c2aead0ad0587c99061e43b601b456de51', class: "trapfocus", tabIndex: this.isExpanded ? 0 : undefined, onFocus: () => this.endCalEl.focusLastFocusable() }), h("priv-calendar", { key: 'de148d250b5a9d58eeb186196b8db7ac09e3e111', ref: (el) => (this.startCalEl = el), onDateFocus: (ev) => this.handleDateFocus(ev) }), h("priv-calendar", { key: 'f9522d0f4d4f5a9d6790604aebeba53fc18753e5', ref: (el) => (this.endCalEl = el), onDateFocus: (ev) => this.handleDateFocus(ev) }), h("div", { key: 'ef7e0bd324e44a0fdab74c5ac90c50533c3c6f65', class: "trapfocus", tabIndex: this.isExpanded ? 0 : undefined, onFocus: () => this.startCalEl.focusFirstFocusable() }))), h("div", { key: '02a384909982487064ee8618783ad89f632effae' }, h("div", { key: '4cbd7f056e57b6cc52d70ec998aa9534f0d8e091', id: "live-region", "aria-live": "polite", "aria-relevant": "text", class: "sr-only" }), h("div", { key: '27d4adf2fb5da73fc1b0bf1da84a941400dfe75a', id: "month-title", class: "sr-only" }, intl.formatMessage({
519
543
  id: "date.selectMonth",
520
544
  defaultMessage: "Activate to select a month.",
521
545
  description: "Calendar button",
522
- })), h("div", { key: '7221be49a0b21f6af5d6cd1f217a76fee000c037', id: "year-title", class: "sr-only" }, intl.formatMessage({
546
+ })), h("div", { key: '15de6f6698170ed70687516e4a15abbca041fde5', id: "year-title", class: "sr-only" }, intl.formatMessage({
523
547
  id: "date.selectYear",
524
548
  defaultMessage: "Activate to select a year.",
525
549
  description: "Calendar button",
526
- }))), h("div", { key: '393d3f37b431b775439cbc32c814f5325ce8f53e', id: "error", class: "error" }, this.errorMessage), h("div", { key: '5c604c6581f0dded80b797550fa522f85ca2603b', ref: (el) => (this.liveRegionEl = el), class: "sr-only", "aria-live": "polite", "aria-atomic": "true" }))));
550
+ }))), h("div", { key: '47f6c2dd3072e95927d32910d1bf30cce0bde3f7', id: "error", class: "error" }, this.errorMessage), h("div", { key: '0cbdb396f7422cd1e47b299c7037f495b28ad317', ref: (el) => (this.liveRegionEl = el), class: "sr-only", "aria-live": "polite", "aria-atomic": "true" }))));
527
551
  }
528
552
  static get is() { return "wm-date-range"; }
529
553
  static get encapsulation() { return "shadow"; }
@@ -864,6 +888,18 @@ export class DateRange {
864
888
  }
865
889
  static get listeners() {
866
890
  return [{
891
+ "name": "scroll",
892
+ "method": "pf_reposition",
893
+ "target": "window",
894
+ "capture": true,
895
+ "passive": true
896
+ }, {
897
+ "name": "resize",
898
+ "method": "pf_reposition",
899
+ "target": "window",
900
+ "capture": false,
901
+ "passive": true
902
+ }, {
867
903
  "name": "resize",
868
904
  "method": "checkCanOpen",
869
905
  "target": "window",
@@ -12,6 +12,7 @@ export class DatePicker {
12
12
  return; // bail if the component was unmounted before the debounce fired
13
13
  this.canOpen = this.measureFit() !== null;
14
14
  }, 100);
15
+ this.pf_repositionRAF = null;
15
16
  this.value = "";
16
17
  this.disabled = false;
17
18
  this.dateFormat = "mm/dd/yyyy";
@@ -23,6 +24,18 @@ export class DatePicker {
23
24
  this.isExpanded = false;
24
25
  this.canOpen = true;
25
26
  }
27
+ pf_reposition() {
28
+ if (this.hasAnchor || !this.isExpanded)
29
+ return;
30
+ // rAF-throttle: native anchor() re-resolves on every frame; this matches that cadence
31
+ // without thrashing layout when scroll fires many times per frame.
32
+ if (this.pf_repositionRAF !== null)
33
+ return;
34
+ this.pf_repositionRAF = requestAnimationFrame(() => {
35
+ this.pf_repositionRAF = null;
36
+ this.pf_positionDropdown();
37
+ });
38
+ }
26
39
  // Returns the closest scrollable ancestor that can yield at least `neededScroll` of additional scroll.
27
40
  findScrollable(neededScroll) {
28
41
  // Scrolling an ancestor above the positioning boundary (e.g. a scrollable container behind
@@ -63,14 +76,18 @@ export class DatePicker {
63
76
  return null;
64
77
  const fitsLeftAligned = rect.left + this.calWidth <= vw; // (a) left edge aligns to input's left edge
65
78
  const fitsRightAligned = rect.right - this.calWidth >= 0; // (b) right edge aligns to input's right edge
66
- // (a) left-align; (b) right-align; (c) snap to the viewport edge with the most room
79
+ // (a) left-align; (b) right-align; (c) snap to the viewport edge with the most room; (d) no placement works → caller hides the toggle
67
80
  const horizontal = fitsLeftAligned
68
81
  ? "left"
69
82
  : fitsRightAligned
70
83
  ? "right"
71
- : rect.left > vw - rect.right
72
- ? "clip-left"
73
- : "clip-right";
84
+ : vw >= this.calWidth
85
+ ? rect.left > vw - rect.right
86
+ ? "clip-left"
87
+ : "clip-right"
88
+ : null;
89
+ if (!horizontal)
90
+ return null;
74
91
  return { vertical, horizontal };
75
92
  }
76
93
  checkCanOpen() {
@@ -165,12 +182,13 @@ export class DatePicker {
165
182
  if (scrollAmount > 0)
166
183
  (_b = this.findScrollable(scrollAmount)) === null || _b === void 0 ? void 0 : _b.scrollBy({ top: scrollAmount, behavior: "smooth" });
167
184
  }
168
- else {
169
- this.calEl.scrollIntoView({ behavior: "smooth", block: "nearest" });
170
- }
171
185
  });
172
186
  }
173
187
  else {
188
+ if (this.pf_repositionRAF !== null) {
189
+ cancelAnimationFrame(this.pf_repositionRAF);
190
+ this.pf_repositionRAF = null;
191
+ }
174
192
  this.fit = null;
175
193
  this.isExpanded = false;
176
194
  this.calEl.view = "day";
@@ -296,6 +314,12 @@ export class DatePicker {
296
314
  componentDidLoad() {
297
315
  this.checkCanOpen();
298
316
  }
317
+ disconnectedCallback() {
318
+ if (this.pf_repositionRAF !== null) {
319
+ cancelAnimationFrame(this.pf_repositionRAF);
320
+ this.pf_repositionRAF = null;
321
+ }
322
+ }
299
323
  announce(message) {
300
324
  // \u00A0 is a non-breaking space character, which causes the message to be read as a new one
301
325
  if (this.liveRegionEl.textContent === message) {
@@ -305,25 +329,25 @@ export class DatePicker {
305
329
  }
306
330
  render() {
307
331
  var _a, _b, _c, _d;
308
- return (h(Host, { key: '6c88b059cb2ba262310293052e4469bea2aa5618', "aria-busy": "false", class: `${this.errorMessage ? "invalid" : ""}` }, h("div", { key: '2063fd4489cc13b45ce8548efd14aefa8f62df12', ref: (d) => (this.dpWrapperEl = d), class: `wrapper label-${this.labelPosition} ${this.errorMessage ? "invalid" : ""}` }, h("div", { key: 'f0947831469463fa74059dbc4c393fa0c14eacd8', class: "label-wrapper" }, this.labelPosition !== "none" && (h("label", { key: '7447d35282efd96c7a48b4c2a0134c7704072343', id: "datepickerLabel", htmlFor: "date-input", class: "label", title: `${this.label} (${this.dateFormat})`, onMouseEnter: (ev) => this.handleLabelMouseEnter(ev), onMouseLeave: () => hideTooltip() }, this.label)), this.labelPosition !== "none" && this.requiredField && (h("div", { key: '4603ac58626907028880ed56fb00850997f58935', "aria-hidden": "true", class: "required" }, "*"))), h("div", { key: 'ee75a90b11fb62fdc816ccc4361a89245b7dfa54' }, h("div", { key: '01736903b25c83350766b51a04d81c335ff94b2d', class: "single-wrapper input", ref: (el) => (this.anchorEl = el) }, h("input", { key: 'b9692f9f6b4665965c679cfddd1ea5867687fd7b', disabled: this.isDisabled, type: "text", id: "single-date-input", class: "date-input", name: "date", placeholder: this.dateFormat, value: this.value, onFocus: () => this.handleInputFocus(), onInput: (ev) => this.handleInput(ev), onBlur: () => this.handleInputBlur(), onChange: () => this.handleInputChange(), ref: (input) => (this.inputEl = input), "aria-describedby": "error", "aria-label": this.label, "aria-required": this.requiredField ? "true" : null }), h("div", { key: 'b671eb294dfab4fe5b8f0b3011d0240f982708fe', class: "container", id: "wm-container" }, this.canOpen && (h("button", { key: '0772706cbce5e4b150eca6cf3531068fd7386f80', disabled: this.disabled, "aria-label": intl.formatMessage({
332
+ return (h(Host, { key: '75edb60af8b727174c9e906ea4fd5655610ddd00', "aria-busy": "false", class: `${this.errorMessage ? "invalid" : ""}` }, h("div", { key: '30cf18c6bdd8d2904bac07075eb7f1278a1dfadc', ref: (d) => (this.dpWrapperEl = d), class: `wrapper label-${this.labelPosition} ${this.errorMessage ? "invalid" : ""}` }, h("div", { key: 'f52d76ff9670902582cff2c266804b138246137a', class: "label-wrapper" }, this.labelPosition !== "none" && (h("label", { key: '8eaad53d13c5300efcc5f2a8f0c06fb997ba2f80', id: "datepickerLabel", htmlFor: "date-input", class: "label", title: `${this.label} (${this.dateFormat})`, onMouseEnter: (ev) => this.handleLabelMouseEnter(ev), onMouseLeave: () => hideTooltip() }, this.label)), this.labelPosition !== "none" && this.requiredField && (h("div", { key: 'bd29520e03f51baec0adc4be0a16c2c04651ea4a', "aria-hidden": "true", class: "required" }, "*"))), h("div", { key: '997f09274b7f85aa1d2d258e09802fe38c95a062' }, h("div", { key: '127816619a523254ccf63c9e3e26b7d3a8929516', class: "single-wrapper input", ref: (el) => (this.anchorEl = el) }, h("input", { key: 'b714f2bcb4e4fd8072ed1a61d5c3b9df5cd1de40', disabled: this.isDisabled, type: "text", id: "single-date-input", class: "date-input", name: "date", placeholder: this.dateFormat, value: this.value, onFocus: () => this.handleInputFocus(), onInput: (ev) => this.handleInput(ev), onBlur: () => this.handleInputBlur(), onChange: () => this.handleInputChange(), ref: (input) => (this.inputEl = input), "aria-describedby": "error", "aria-label": this.label, "aria-required": this.requiredField ? "true" : null }), h("div", { key: 'cecb3d7adf4bf0401fce82b131de4767837d52a2', class: "container", id: "wm-container" }, this.canOpen && (h("button", { key: '9da230049feebb37f2f087e760c2671669716e92', disabled: this.disabled, "aria-label": intl.formatMessage({
309
333
  id: "date.selectDate",
310
334
  defaultMessage: "Select date",
311
335
  description: "Button text for screen readers.",
312
- }), "aria-describedby": "single-date-input", ref: (el) => (this.toggleEl = el), "aria-expanded": `${this.isExpanded}`, class: "toggle", id: "toggle", popoverTarget: "popup-wrapper", popoverTargetAction: "toggle" }, h("span", { key: 'e1c7c58064e21a1e8e6fd50b4d646bc08fb5f842', class: "svg-icon svg-date" }), h("span", { key: '1f7812f1a7a3374addd36751f39558ec0f9ea52d', class: "calendar", title: intl.formatMessage({
336
+ }), "aria-describedby": "single-date-input", ref: (el) => (this.toggleEl = el), "aria-expanded": `${this.isExpanded}`, class: "toggle", id: "toggle", popoverTarget: "popup-wrapper", popoverTargetAction: "toggle" }, h("span", { key: 'b1c40c5c3e63e1096b9e8bcbac78cc5a2beebfd0', class: "svg-icon svg-date" }), h("span", { key: '01675fedff80453c8a8a02360dddf3658fb842c6', class: "calendar", title: intl.formatMessage({
313
337
  id: "date.calendarView",
314
338
  defaultMessage: "Calendar View",
315
339
  description: "Calendar button",
316
- }) }))), h("div", { key: 'd06b997fea39fb6d23af68f613bba387529798cd', class: `popup-wrapper ${this.calEl && this.calEl.view}-view ${this.isExpanded ? "is-open" : ""} ${!this.hasAnchor && !this.isExpanded ? "hidden" : ""} ${(_b = (_a = this.fit) === null || _a === void 0 ? void 0 : _a.vertical) !== null && _b !== void 0 ? _b : ""} ${(_d = (_c = this.fit) === null || _c === void 0 ? void 0 : _c.horizontal) !== null && _d !== void 0 ? _d : ""}`, id: "popup-wrapper", ref: (el) => (this.popupEl = el), popover: "auto",
340
+ }) }))), h("div", { key: 'f0fc896b98dbdfb8ec5a9d3783c52ee324847d5e', class: `popup-wrapper ${this.calEl && this.calEl.view}-view ${this.isExpanded ? "is-open" : ""} ${!this.hasAnchor && !this.isExpanded ? "hidden" : ""} ${(_b = (_a = this.fit) === null || _a === void 0 ? void 0 : _a.vertical) !== null && _b !== void 0 ? _b : ""} ${(_d = (_c = this.fit) === null || _c === void 0 ? void 0 : _c.horizontal) !== null && _d !== void 0 ? _d : ""}`, id: "popup-wrapper", ref: (el) => (this.popupEl = el), popover: "auto",
317
341
  // @ts-ignore -- onToggle is a valid ToggleEvent listener for popover elements
318
- onToggle: (ev) => this.handleToggle(ev) }, h("div", { key: '95f50f68f2a27dbbace4e458eacc35b4d4fb933b', tabIndex: 0, onFocus: () => this.calEl.focusLastFocusable() }), h("priv-calendar", { key: '90b8ef39f274f3b2dfa291e10112e6e8d5010708', ref: (el) => (this.calEl = el), startDate: this.calendarDate, focusDate: this.calendarDate, class: "inside" }), h("div", { key: '06967b9db287b5a07a74aed4a589edb211dcbc17', tabIndex: 0, onFocus: () => this.calEl.focusFirstFocusable() })), h("div", { key: '43a1cdac6c1b38d5b58dd35d781bed1fcb21038a', id: "live-region", "aria-live": "polite", "aria-relevant": "text", class: "sr-only" }), h("div", { key: '665f729fe0388db40437b213f58f615a23f6614b', id: "month-title", class: "sr-only" }, intl.formatMessage({
342
+ onToggle: (ev) => this.handleToggle(ev) }, h("div", { key: '34543b5a222d7875938fc545751d33cd25ecf2c3', tabIndex: 0, onFocus: () => this.calEl.focusLastFocusable() }), h("priv-calendar", { key: '7e548bdcc7bccc30dbbc20b32bd594cc0d27128f', ref: (el) => (this.calEl = el), startDate: this.calendarDate, focusDate: this.calendarDate, class: "inside" }), h("div", { key: '07ba79155102bcc5af7a7d3ff8e3252412ea816f', tabIndex: 0, onFocus: () => this.calEl.focusFirstFocusable() })), h("div", { key: '4ff2e5951eabde88a2d2efe46c671e5f87764359', id: "live-region", "aria-live": "polite", "aria-relevant": "text", class: "sr-only" }), h("div", { key: '8fd50c0d7b5d7f21aa215e71c41a4d071f76e971', id: "month-title", class: "sr-only" }, intl.formatMessage({
319
343
  id: "date.selectMonth",
320
344
  defaultMessage: "Activate to select a month.",
321
345
  description: "Calendar button",
322
- })), h("div", { key: '0ceea9ba588ff9a374f81b1be046bab7c29001ed', id: "year-title", class: "sr-only" }, intl.formatMessage({
346
+ })), h("div", { key: 'f82d186d8f2053f13389c9de24a317bd3673a0fc', id: "year-title", class: "sr-only" }, intl.formatMessage({
323
347
  id: "date.selectYear",
324
348
  defaultMessage: "Activate to select a year.",
325
349
  description: "Calendar button",
326
- })))), h("div", { key: '84c939b26d5ad84338667bf44c590cee7043b7c8', id: "error", class: "error" }, this.errorMessage), h("div", { key: 'da3706fab7310ff1402b95dd12e6ea59a6c65beb', ref: (el) => (this.liveRegionEl = el), class: "sr-only", "aria-live": "polite", "aria-atomic": "true" })))));
350
+ })))), h("div", { key: 'bcf3f6665c8fa0bb4e21b8ba92f756aa8570b5c4', id: "error", class: "error" }, this.errorMessage), h("div", { key: '2b249282c6a469e6d91ecae8ac681f4ebc5816b6', ref: (el) => (this.liveRegionEl = el), class: "sr-only", "aria-live": "polite", "aria-atomic": "true" })))));
327
351
  }
328
352
  static get is() { return "wm-datepicker"; }
329
353
  static get encapsulation() { return "shadow"; }
@@ -592,6 +616,18 @@ export class DatePicker {
592
616
  }
593
617
  static get listeners() {
594
618
  return [{
619
+ "name": "scroll",
620
+ "method": "pf_reposition",
621
+ "target": "window",
622
+ "capture": true,
623
+ "passive": true
624
+ }, {
625
+ "name": "resize",
626
+ "method": "pf_reposition",
627
+ "target": "window",
628
+ "capture": false,
629
+ "passive": true
630
+ }, {
595
631
  "name": "resize",
596
632
  "method": "checkCanOpen",
597
633
  "target": "window",
@@ -246,7 +246,7 @@ export class Button {
246
246
  }
247
247
  }
248
248
  render() {
249
- return (h(Host, { key: '9093a189c19603b400439cff2774eb7ee84823f5', class: `${this.isDisabled ? "button-disabled" : ""} -${this.buttonType}` }, h("button", { key: 'f096dc06341902de2e4b359ba860ae57fc647cb7', id: this.id, class: `${this.buttonClasses}`, disabled: this.isDisabled, ref: (el) => (this.buttonEl = el), "aria-label": this.getAriaLabel(), "aria-hasPopup": this.ariaPopup ? "menu" : null, onMouseEnter: (ev) => this.handleMouseEnter(ev), onMouseLeave: () => hideTooltip(), onFocus: (ev) => this.handleFocus(ev), onBlur: () => hideTooltip(), onClick: () => hideTooltip() }, this.icon && this.renderIcon(), (!this.buttonType.startsWith("navigational") && !this.buttonType.startsWith("icononly")) && (h("span", { key: '963ecb4b03584010ce04080b106703d8742bc4d5', class: "button-text" }, h("slot", { key: '3c409a01d335d64bf5b62970739c6266c97191aa' }))), (this.buttonType == "selector" || this.buttonType == "selector-primary") && (h("div", { key: '03a52dfd71f2a626c5e5fa7e9f8f084053c1b49e', class: "selector-icon svg-icon svg-expand-more" })))));
249
+ return (h(Host, { key: '7cfb3bc7bc5f2c0e00c3cb38de71ac1b5465055c', class: `${this.isDisabled ? "button-disabled" : ""} -${this.buttonType}` }, h("button", { key: '9010f68296e4250cdf85fa21bfeb7b3a725fa072', id: this.id, class: `${this.buttonClasses}`, disabled: this.isDisabled, ref: (el) => (this.buttonEl = el), "aria-label": this.getAriaLabel(), "aria-hasPopup": this.ariaPopup ? "menu" : null, onMouseEnter: (ev) => this.handleMouseEnter(ev), onMouseLeave: () => hideTooltip(), onFocus: (ev) => this.handleFocus(ev), onBlur: () => hideTooltip(), onClick: () => hideTooltip() }, this.icon && this.renderIcon(), (!this.buttonType.startsWith("navigational") && !this.buttonType.startsWith("icononly")) && (h("span", { key: '5167fea2767e091408e0b452ecca6d70bce711c6', class: "button-text" }, h("slot", { key: '3a9a85455a00434c1112c6070c83469d15640e31' }))), (this.buttonType == "selector" || this.buttonType == "selector-primary") && (h("div", { key: 'b9f5481cf0bb9fb56be6821127609eea72c788bc', class: "selector-icon svg-icon svg-expand-more" })))));
250
250
  }
251
251
  static get is() { return "wm-button"; }
252
252
  static get encapsulation() { return "shadow"; }
@@ -1,6 +1,6 @@
1
1
  import './index-3425d80d.js';
2
2
 
3
- const version = "5.29.0-alpha.8";
3
+ const version = "5.29.0";
4
4
 
5
5
  // PRINT RIPPLE VERSION IN CONSOLE
6
6
  // test envs return 0 for plugin.length
@@ -1,11 +1,11 @@
1
1
  import { b as bootstrapLazy } from './index-3425d80d.js';
2
2
  export { s as setNonce } from './index-3425d80d.js';
3
- import { g as globalScripts } from './app-globals-37937c54.js';
3
+ import { g as globalScripts } from './app-globals-930d901f.js';
4
4
 
5
5
  const defineCustomElements = async (win, options) => {
6
6
  if (typeof window === 'undefined') return undefined;
7
7
  await globalScripts();
8
- return bootstrapLazy(JSON.parse("[[\"wm-file\",[[17,\"wm-file\",{\"name\":[1],\"type\":[1],\"fileActions\":[1,\"file-actions\"],\"lastUpdated\":[1,\"last-updated\"],\"progress\":[514],\"size\":[1],\"uploadedBy\":[1,\"uploaded-by\"],\"errorMessage\":[1,\"error-message\"],\"showInfo\":[1025,\"show-info\"]}]]],[\"wm-navigator\",[[17,\"wm-navigator\",{\"userName\":[1,\"user-name\"],\"email\":[1],\"authType\":[2,\"auth-type\"],\"connectionName\":[1,\"connection-name\"],\"logoutUrl\":[1,\"logout-url\"],\"products\":[1],\"loadFromUserinfo\":[4,\"load-from-userinfo\"],\"isOpen\":[32],\"itemIndexToFocus\":[32]},[[0,\"keydown\",\"handleKeys\"],[0,\"keydownOnNavItem\",\"handleKeydown\"],[4,\"click\",\"handleClick\"],[0,\"buttonActivated\",\"handleButtonClick\"]],{\"products\":[\"parseData\"]}]]],[\"wm-optgroup\",[[17,\"wm-optgroup\",{\"label\":[1],\"isExpanded\":[1028,\"is-expanded\"],\"multiple\":[1028],\"disabled\":[4],\"emitDeselection\":[64],\"handleChildChange\":[64]},[[0,\"wmKeyLeftPressed\",\"handleOptionKeyLeft\"]],{\"isExpanded\":[\"isExpandedChanged\"]}]]],[\"wm-chart\",[[17,\"wm-chart\",{\"chartType\":[1,\"chart-type\"],\"label\":[1],\"labelWidth\":[1,\"label-width\"],\"subinfo\":[1],\"valueFormat\":[1,\"value-format\"],\"showGrid\":[4,\"show-grid\"],\"showLegend\":[4,\"show-legend\"],\"showBarLegend\":[4,\"show-bar-legend\"],\"notStartedColor\":[4,\"not-started-color\"],\"printMode\":[4,\"print-mode\"],\"printModeFormat\":[1,\"print-mode-format\"],\"labelPosition\":[1,\"label-position\"],\"isTabbing\":[32],\"userIsNavigating\":[32],\"focusedSliceId\":[32]},[[8,\"wmUserIsTabbing\",\"toggleTabbingOn\"],[8,\"wmUserIsNotTabbing\",\"toggleTabbingOff\"],[0,\"keydown\",\"handleKeydown\"],[0,\"wmChartSliceUpdated\",\"handleSliceUpdate\"]]]]],[\"wm-datepicker\",[[17,\"wm-datepicker\",{\"value\":[1025],\"disabled\":[4],\"dateFormat\":[1,\"date-format\"],\"errorMessage\":[513,\"error-message\"],\"labelPosition\":[1,\"label-position\"],\"label\":[1],\"requiredField\":[4,\"required-field\"],\"preselected\":[1],\"isExpanded\":[32],\"canOpen\":[32],\"reformatDate\":[64],\"isValidIso\":[64]},[[9,\"resize\",\"checkCanOpen\"],[0,\"keydown\",\"handleKeydown\"],[0,\"cellTriggered\",\"handleCellTriggered\"]],{\"disabled\":[\"handleDisabledChange\"],\"value\":[\"updateValue\"],\"errorMessage\":[\"announceError\"]}]]],[\"wm-search\",[[17,\"wm-search\",{\"searchType\":[1025,\"search-type\"],\"disabled\":[516],\"placeholder\":[1],\"label\":[1],\"numResults\":[1026,\"num-results\"],\"value\":[1537],\"highlightedId\":[1,\"highlighted-id\"],\"highlightedName\":[1,\"highlighted-name\"],\"isTabbing\":[32],\"highlightedNum\":[32],\"previousBlurredValue\":[32],\"parentModal\":[32],\"announcement\":[32],\"updateValue\":[64]},[[8,\"wmUserIsTabbing\",\"toggleTabbingOn\"],[8,\"wmUserIsNotTabbing\",\"toggleTabbingOff\"]],{\"numResults\":[\"handleNumResultsUpdate\"],\"disabled\":[\"handleDisabledChange\"]}]]],[\"wm-file-list\",[[17,\"wm-file-list\",{\"showInfo\":[1,\"show-info\"]}]]],[\"wm-tag-input\",[[17,\"wm-tag-input\",{\"label\":[1],\"errorMessage\":[1,\"error-message\"],\"info\":[1],\"labelPosition\":[1,\"label-position\"],\"maxTags\":[2,\"max-tags\"],\"placeholder\":[1025],\"requiredField\":[4,\"required-field\"],\"tagInputType\":[1,\"tag-input-type\"],\"helpText\":[1,\"help-text\"],\"addNew\":[4,\"add-new\"],\"characterLimit\":[2,\"character-limit\"],\"colHeaders\":[1,\"col-headers\"],\"colWidths\":[1,\"col-widths\"],\"colWrap\":[1,\"col-wrap\"],\"isKeying\":[32],\"isExpanded\":[32],\"liveRegionMessage\":[32],\"focusedOption\":[32],\"focusedColumn\":[32],\"focusedTagIndex\":[32],\"tagsList\":[32]},[[8,\"wmUserIsKeying\",\"toggleKeyingOn\"],[8,\"wmUserIsTabbing\",\"toggleKeyingOn\"],[8,\"wmUserIsNotKeying\",\"toggleKeyingOff\"],[8,\"wmUserIsNotTabbing\",\"toggleKeyingOff\"],[0,\"privTagOptionSelected\",\"handleTagOptionSelected\"],[0,\"privTagOptionDeselected\",\"handleTagOptionDeselected\"],[4,\"click\",\"handleClick\"],[11,\"scroll\",\"dismissTooltip\"],[0,\"blur\",\"handleBlur\"]],{\"errorMessage\":[\"announceError\"]}]]],[\"wm-tag-option\",[[0,\"wm-tag-option\",{\"selected\":[1540],\"locked\":[4],\"col1\":[1],\"col2\":[1],\"col3\":[1],\"col4\":[1],\"emitSelectedEvent\":[64],\"emitDeselectedEvent\":[64]},null,{\"selected\":[\"handleSelected\"]}]]],[\"wm-toggletip\",[[17,\"wm-toggletip\",{\"label\":[1],\"tooltip\":[1],\"tooltipPosition\":[1,\"tooltip-position\"],\"targetSize\":[1,\"target-size\"],\"toggletipType\":[1,\"toggletip-type\"],\"isHidden\":[32]},[[9,\"resize\",\"handleResize\"],[0,\"keydown\",\"handleKeydown\"],[4,\"click\",\"handleClick\"]]]]],[\"wm-action-menu_2\",[[17,\"wm-action-menu\",{\"tooltipPosition\":[1,\"tooltip-position\"],\"actionMenuType\":[1,\"action-menu-type\"],\"buttonText\":[1,\"button-text\"],\"disabled\":[516],\"tooltip\":[1],\"labelForIdenticalButtons\":[1,\"label-for-identical-buttons\"],\"darkMode\":[4,\"dark-mode\"],\"isExpanded\":[32],\"isTabbing\":[32],\"isHidden\":[32]},[[8,\"wmUserIsTabbing\",\"handleTabbingOn\"],[8,\"wmUserIsNotTabbing\",\"handleTabbingOff\"],[11,\"scroll\",\"handleWindowScroll\"],[0,\"wmMenuitemClicked\",\"handleClickedItem\"],[0,\"wmKeyUpPressed\",\"handleKeyUp\"],[0,\"wmKeyDownPressed\",\"handleKeyDown\"],[0,\"wmHomeKeyPressed\",\"handleHomeKey\"],[0,\"wmEndKeyPressed\",\"handleEndKey\"],[0,\"wmTabKeyPressed\",\"handleTabKey\"],[0,\"wmEscKeyPressed\",\"handleEscKey\"],[0,\"keydown\",\"handleKey\"],[0,\"wmMenuitemBlurred\",\"handleMenuitemBlur\"],[0,\"wmLetterPressed\",\"findAndFocusItem\"]]],[1,\"wm-menuitem\",{\"disabled\":[4],\"icon\":[1025],\"description\":[1]},[[0,\"keydown\",\"handleKeydown\"],[0,\"click\",\"handleClick\"],[0,\"blur\",\"handleBlur\"]],{\"disabled\":[\"setOnClick\"]}]]],[\"wm-button\",[[17,\"wm-button\",{\"disabled\":[516],\"buttonType\":[1025,\"button-type\"],\"icon\":[1537],\"iconSize\":[1,\"icon-size\"],\"iconRotate\":[2,\"icon-rotate\"],\"iconFlip\":[1,\"icon-flip\"],\"tooltip\":[1537],\"labelForIdenticalButtons\":[1,\"label-for-identical-buttons\"],\"tooltipPosition\":[1,\"tooltip-position\"],\"permanentlyDelete\":[4,\"permanently-delete\"],\"textWrap\":[4,\"text-wrap\"],\"customBackground\":[1,\"custom-background\"],\"isSubmit\":[4,\"is-submit\"],\"isTabbing\":[32]},[[8,\"wmUserIsTabbing\",\"toggleTabbingOn\"],[8,\"wmUserIsNotTabbing\",\"toggleTabbingOff\"],[11,\"scroll\",\"handleScroll\"],[0,\"keydown\",\"handleKeydown\"]],{\"buttonType\":[\"validateType\"],\"icon\":[\"updateIcon\"],\"disabled\":[\"handleDisabledChange\"]}]]],[\"wm-modal-pss_3\",[[0,\"wm-modal-pss-footer\",{\"secondaryText\":[1,\"secondary-text\"],\"primaryText\":[1,\"primary-text\"],\"infoText\":[1,\"info-text\"],\"primaryActionDisabled\":[4,\"primary-action-disabled\"],\"deleteStyle\":[4,\"delete-style\"]}],[0,\"wm-modal-pss-header\",{\"heading\":[1],\"subheading\":[1]}],[0,\"wm-modal-pss\",{\"open\":[1540],\"elementToFocus\":[1025,\"element-to-focus\"],\"modalType\":[513,\"modal-type\"],\"uid\":[1537],\"emitCloseEvent\":[64],\"emitPrimaryEvent\":[64],\"emitSecondaryEvent\":[64]},[[0,\"click\",\"handleClick\"],[0,\"keydown\",\"closeModalOnEscape\"]],{\"open\":[\"toggleModal\"]}]]],[\"wm-modal_3\",[[0,\"wm-modal-footer\",{\"secondaryText\":[1,\"secondary-text\"],\"primaryText\":[1,\"primary-text\"],\"infoText\":[1,\"info-text\"],\"primaryActionDisabled\":[4,\"primary-action-disabled\"],\"deleteStyle\":[4,\"delete-style\"]}],[0,\"wm-modal-header\",{\"heading\":[1],\"subheading\":[1]}],[4,\"wm-modal\",{\"open\":[1540],\"elementToFocus\":[1025,\"element-to-focus\"],\"modalType\":[513,\"modal-type\"],\"uid\":[1537],\"returnFocusEl\":[32],\"emitCloseEvent\":[64],\"emitPrimaryEvent\":[64],\"emitSecondaryEvent\":[64]},null,{\"open\":[\"toggleModal\"]}]]],[\"wm-chart-bar\",[[17,\"wm-chart-bar\",{\"config\":[16],\"data\":[16],\"printMode\":[4,\"print-mode\"],\"patternMode\":[4,\"pattern-mode\"],\"subinfo\":[1],\"processedData\":[32],\"gridInfo\":[32],\"isKeying\":[32]},[[4,\"wmLegendItemClick\",\"handleLegendItemClick\"],[6,\"click\",\"handleDocumentClick\"],[8,\"wmUserIsKeying\",\"handleUserIsKeying\"],[8,\"wmUserIsNotTabbing\",\"handleUserIsNotKeying\"]],{\"config\":[\"handleConfigDataChange\"],\"data\":[\"handleConfigDataChange\"]}]]],[\"wm-chart-column\",[[17,\"wm-chart-column\",{\"config\":[16],\"data\":[16],\"printWidth\":[1,\"print-width\"],\"printMode\":[4,\"print-mode\"],\"patternMode\":[4,\"pattern-mode\"],\"subinfo\":[1],\"processedData\":[32],\"gridInfo\":[32],\"isKeying\":[32]},[[4,\"wmLegendItemClick\",\"handleLegendItemClick\"],[4,\"wmLegendItemHover\",\"handleLegendItemHover\"],[8,\"beforeprint\",\"handleBeforePrint\"],[8,\"afterprint\",\"handleAfterPrint\"],[6,\"click\",\"handleDocumentClick\"],[8,\"wmUserIsKeying\",\"handleUserIsKeying\"],[8,\"wmUserIsNotTabbing\",\"handleUserIsNotKeying\"]],{\"config\":[\"handleConfigDataChange\"],\"data\":[\"handleConfigDataChange\"],\"printWidth\":[\"handleConfigDataChange\"]}]]],[\"wm-navigation_3\",[[17,\"wm-navigation\",{\"open\":[1540]},[[0,\"keydown\",\"closeOnEscape\"],[9,\"resize\",\"handleWindowResize\"],[8,\"wmNavigationHamburgerClicked\",\"handleHamburgerClicked\"],[0,\"wmNavigationItemClicked\",\"handleClickOnItem\"]],{\"open\":[\"handleStateChange\"]}],[17,\"wm-navigation-hamburger\",{\"navId\":[1,\"nav-id\"],\"isTabbing\":[32],\"open\":[32]},[[8,\"wmUserIsTabbing\",\"toggleTabbingOn\"],[8,\"wmUserIsNotTabbing\",\"toggleTabbingOff\"],[4,\"wmNavigationStateChanged\",\"handleNavigationStateChanged\"]]],[17,\"wm-navigation-item\",{\"href\":[1],\"text\":[1],\"active\":[4]}]]],[\"wm-progress-indicator_3\",[[17,\"wm-progress-indicator\",{\"label\":[1],\"subinfo\":[1],\"completionMessage\":[1,\"completion-message\"],\"showLegend\":[4,\"show-legend\"],\"printMode\":[4,\"print-mode\"],\"printModeFormat\":[1,\"print-mode-format\"],\"isTabbing\":[32],\"mode\":[32],\"userIsNavigating\":[32],\"focusedSliceId\":[32]},[[8,\"wmUserIsTabbing\",\"toggleTabbingOn\"],[8,\"wmUserIsNotTabbing\",\"toggleTabbingOff\"],[0,\"keydown\",\"handleKeydown\"],[0,\"wmProgressSliceUpdated\",\"handleSliceUpdate\"]],{\"mode\":[\"handleModeUpdate\"]}],[17,\"wm-progress-monitor\",{\"breakpoint\":[8],\"groupLegend\":[1,\"group-legend\"],\"barLabelsWidth\":[1,\"bar-labels-width\"]}],[1,\"wm-progress-slice\",{\"legend\":[1],\"amount\":[1],\"popoverTitle\":[1,\"popover-title\"],\"popoverText\":[1,\"popover-text\"],\"popoverButtonText\":[1,\"popover-button-text\"]}]]],[\"wm-tab-item_3\",[[17,\"wm-tab-list\",{\"customBackground\":[1,\"custom-background\"],\"selectedTab\":[1,\"selected-tab\"],\"announcement\":[32],\"containerFadeLeft\":[32],\"containerFadeRight\":[32],\"scrollArrowsVisible\":[32]},[[0,\"tabItemLoaded\",\"tabItemLoaded\"],[0,\"wmIntTabFocused\",\"wmTabFocused\"],[0,\"keydownOnTabItem\",\"handleKeydown\"]],{\"selectedTab\":[\"setSelected\"]}],[17,\"wm-tab-item\",{\"selected\":[4],\"tabId\":[1,\"tab-id\"]}],[0,\"wm-tab-panel\",{\"active\":[1028],\"tabId\":[1025,\"tab-id\"]}]]],[\"wm-date-range\",[[17,\"wm-date-range\",{\"dateFormat\":[1,\"date-format\"],\"disabled\":[4],\"errorMessage\":[513,\"error-message\"],\"invalidStart\":[4,\"invalid-start\"],\"invalidEnd\":[4,\"invalid-end\"],\"labelStart\":[1,\"label-start\"],\"labelEnd\":[1,\"label-end\"],\"preselected\":[1],\"requiredField\":[4,\"required-field\"],\"valueStart\":[1025,\"value-start\"],\"valueEnd\":[1025,\"value-end\"],\"isExpanded\":[32],\"canOpen\":[32],\"reformatDate\":[64],\"isValidISO\":[64]},[[9,\"resize\",\"checkCanOpen\"],[0,\"popupBlurred\",\"handlePopupBlurred\"],[0,\"keydown\",\"handleKeydown\"],[0,\"cellTriggered\",\"handleCellTriggered\"],[0,\"outOfCal\",\"handleOutOfCal\"],[0,\"cellHovered\",\"handleCellHovered\"]],{\"disabled\":[\"handleDisabled\"],\"valueStart\":[\"updateValueStart\"],\"valueEnd\":[\"updateValueEnd\"],\"errorMessage\":[\"handleErrorMessage\"]}]]],[\"wm-flyout\",[[1,\"wm-flyout\",{\"eyebrow\":[1],\"heading\":[1],\"subheading\":[1],\"flyoutWidth\":[1,\"flyout-width\"],\"primaryText\":[1,\"primary-text\"],\"secondaryText\":[1,\"secondary-text\"],\"infoText\":[1,\"info-text\"],\"breadcrumb\":[1],\"elementToFocus\":[1,\"element-to-focus\"],\"open\":[516],\"returnFocusEl\":[32],\"isBreadcrumbsOverflowing\":[32],\"focusHeading\":[64]},null,{\"open\":[\"handleOpenChange\"],\"flyoutWidth\":[\"setFlyoutWidth\"]}]]],[\"wm-line-chart\",[[1,\"wm-line-chart\",{\"label\":[1],\"description\":[1],\"xAxisLabel\":[1,\"x-axis-label\"],\"yAxisLabel\":[1,\"y-axis-label\"],\"showGrid\":[4,\"show-grid\"],\"lineData\":[1025,\"line-data\"],\"units\":[1],\"labelWidth\":[1,\"label-width\"],\"highlightQualifier\":[1,\"highlight-qualifier\"],\"highlightStart\":[1,\"highlight-start\"],\"highlightEnd\":[1,\"highlight-end\"],\"visibilityToggles\":[4,\"visibility-toggles\"],\"showDeltas\":[4,\"show-deltas\"],\"yRange\":[1,\"y-range\"],\"spotlightData\":[16],\"decimalPlaces\":[2,\"decimal-places\"],\"parsedLineData\":[32],\"popoverIndex\":[32],\"focusedLine\":[32],\"hiddenLines\":[32],\"isTabbing\":[32],\"announcement\":[32]},[[8,\"wmUserIsTabbing\",\"toggleTabbingOn\"],[8,\"wmUserIsNotTabbing\",\"toggleTabbingOff\"]],{\"lineData\":[\"parseData\"]}]]],[\"wm-chart-slice\",[[0,\"wm-chart-slice\",{\"legend\":[1],\"amount\":[1],\"popoverTitle\":[1,\"popover-title\"],\"popoverText\":[1,\"popover-text\"],\"popoverButtonText\":[1,\"popover-button-text\"]}]]],[\"wm-input\",[[17,\"wm-input\",{\"label\":[1],\"labelPosition\":[1,\"label-position\"],\"value\":[1025],\"disabled\":[4],\"info\":[1],\"inputWidth\":[1,\"input-width\"],\"placeholder\":[1],\"requiredField\":[4,\"required-field\"],\"errorMessage\":[1,\"error-message\"],\"characterLimit\":[2,\"character-limit\"],\"symbolBefore\":[1,\"symbol-before\"],\"symbolAfter\":[1,\"symbol-after\"],\"textAfter\":[1,\"text-after\"],\"type\":[1],\"step\":[2],\"min\":[2],\"max\":[2],\"isSubmit\":[4,\"is-submit\"],\"announcement\":[32]},null,{\"disabled\":[\"handleDisabledChange\"],\"errorMessage\":[\"announceError\"]}]]],[\"wm-nested-select\",[[17,\"wm-nested-select\",{\"disabled\":[516],\"maxHeight\":[1,\"max-height\"],\"label\":[1025],\"labelPosition\":[1,\"label-position\"],\"requiredField\":[4,\"required-field\"],\"errorMessage\":[1025,\"error-message\"],\"multiple\":[4],\"search\":[4],\"selectAll\":[4,\"select-all\"],\"placeholder\":[1],\"searchPlaceholder\":[1,\"search-placeholder\"],\"allSelectedMessage\":[1,\"all-selected-message\"],\"constrainedMaxHeight\":[1025,\"constrained-max-height\"],\"isExpanded\":[32],\"isGroupExpanded\":[32],\"showClearSelectionButton\":[32],\"announcement\":[32]},[[0,\"wmOptionSelected\",\"handleOptionSelection\"],[0,\"wmEnterKeyPressed\",\"handleChildEnter\"],[0,\"wmEscKeyPressed\",\"closePopupOnEscape\"],[0,\"keydown\",\"handleKeyDown\"],[6,\"click\",\"handleClick\"],[0,\"optgroupExpanded\",\"handleOptgroupExpanded\"],[0,\"optgroupHidden\",\"handleOptgroupHidden\"]]]]],[\"wm-pagination\",[[17,\"wm-pagination\",{\"label\":[1],\"currentPage\":[2,\"current-page\"],\"totalItems\":[2,\"total-items\"],\"itemsPerPage\":[2,\"items-per-page\"],\"value\":[2],\"isLargeSize\":[4,\"is-large-size\"],\"srAnnouncement\":[32]},null,{\"totalItems\":[\"calculateTotalPages\"],\"itemsPerPage\":[\"calculateTotalPages\"]}]]],[\"wm-snackbar\",[[1,\"wm-snackbar\",{\"notifications\":[1537],\"isTabbing\":[32],\"announcement\":[32]},[[4,\"keydown\",\"checkForTabbing\"],[5,\"mouseover\",\"handleMouse\"]],{\"notifications\":[\"updateSnacks\"]}]]],[\"wm-textarea\",[[1,\"wm-textarea\",{\"label\":[1],\"labelPosition\":[1,\"label-position\"],\"value\":[1025],\"disabled\":[4],\"info\":[1],\"placeholder\":[1],\"requiredField\":[4,\"required-field\"],\"errorMessage\":[1,\"error-message\"],\"characterLimit\":[2,\"character-limit\"],\"inputWidth\":[1,\"input-width\"],\"inputHeight\":[1,\"input-height\"],\"announcement\":[32]},null,{\"disabled\":[\"handleDisabledChange\"],\"errorMessage\":[\"announceError\"]}]]],[\"wm-timepicker\",[[17,\"wm-timepicker\",{\"disabled\":[4],\"value\":[1025],\"errorMessage\":[1,\"error-message\"],\"label\":[1],\"labelPosition\":[1,\"label-position\"],\"requiredField\":[4,\"required-field\"],\"preselected\":[1],\"isExpanded\":[32],\"isValidTime\":[64],\"reformatTime\":[64]},[[0,\"keydown\",\"handleKey\"]],{\"disabled\":[\"handleDisabledChange\"],\"value\":[\"handleValueChange\"],\"errorMessage\":[\"announceError\"]}]]],[\"wm-uploader\",[[17,\"wm-uploader\",{\"label\":[1],\"uploaderType\":[1,\"uploader-type\"],\"dropArea\":[1,\"drop-area\"],\"buttonText\":[1,\"button-text\"],\"icon\":[1],\"fileTypes\":[1,\"file-types\"],\"maxSize\":[1,\"max-size\"],\"maxFiles\":[2,\"max-files\"],\"errorMessage\":[1,\"error-message\"],\"requiredField\":[4,\"required-field\"],\"showInfo\":[1,\"show-info\"],\"isTabbing\":[32],\"notif\":[32],\"isCondensed\":[32]},[[8,\"wmUserIsTabbing\",\"toggleTabbingOn\"],[8,\"wmUserIsNotTabbing\",\"toggleTabbingOff\"],[0,\"wmFileErrorCleared\",\"handleFileErrorCleared\"],[0,\"wmFileDelete\",\"handleFileDelete\"],[5,\"dragenter\",\"handleDocumentDragEnter\"],[5,\"mouseout\",\"handleDocumentMouseOut\"],[5,\"dragleave\",\"handleDocumentDragLeave\"],[4,\"visibilitychange\",\"handleDocumentVisibilityChange\"]],{\"errorMessage\":[\"announceError\"]}]]],[\"wm-wrapper\",[[0,\"wm-wrapper\"]]],[\"priv-navigator-button\",[[17,\"priv-navigator-button\",{\"expanded\":[1028],\"altText\":[1,\"alt-text\"]}]]],[\"priv-navigator-item\",[[1,\"priv-navigator-item\",{\"selected\":[1028],\"focused\":[1028],\"link\":[1025]},[[0,\"keydown\",\"handleKeyDown\"]]]]],[\"priv-option-list\",[[4,\"priv-option-list\",{\"multiple\":[4],\"search\":[4],\"selectAll\":[4,\"select-all\"],\"searchPlaceholder\":[1,\"search-placeholder\"],\"optgroupLabel\":[1,\"optgroup-label\"],\"maxHeight\":[1,\"max-height\"],\"upwardsHeightLimit\":[2,\"upwards-height-limit\"],\"announcement\":[32],\"searchTerm\":[32],\"handleChildChange\":[64],\"clearSearch\":[64],\"focusOption\":[64],\"handleInitialFocus\":[64],\"unfocusAll\":[64],\"updateOptionVisibility\":[64]},[[0,\"wmLetterPressed\",\"findAndFocusOption\"],[0,\"wmOptionSelected\",\"handleOptionSelection\"],[0,\"wmKeyUpPressed\",\"handleChildUp\"],[0,\"wmKeyDownPressed\",\"handleChildDown\"],[0,\"wmHomeKeyPressed\",\"moveToFirstOption\"],[0,\"wmEndKeyPressed\",\"moveToLastOption\"],[0,\"intCloneClicked\",\"handleOptionCloneSelection\"]]]]],[\"priv-calendar\",[[0,\"priv-calendar\",{\"disabled\":[4],\"view\":[1025],\"focusDate\":[1025,\"focus-date\"],\"startDate\":[1,\"start-date\"],\"endDate\":[1,\"end-date\"],\"hoverDate\":[1,\"hover-date\"],\"announcement\":[32],\"focusFirstFocusable\":[64],\"focusLastFocusable\":[64],\"focusCell\":[64]},[[0,\"keydown\",\"handleKey\"]],{\"focusDate\":[\"handleFocusDate\"]}]]],[\"priv-chart-popover-old\",[[0,\"priv-chart-popover-old\",{\"open\":[1028],\"sliceDetails\":[16]},[[4,\"click\",\"handleClickOnDocument\"],[0,\"click\",\"handleClick\"]],{\"open\":[\"handleOpenChange\"],\"sliceDetails\":[\"handleDetailsChange\"]}]]],[\"wm-option_2\",[[17,\"wm-select\",{\"disabled\":[516],\"maxHeight\":[1,\"max-height\"],\"label\":[1025],\"labelPosition\":[1,\"label-position\"],\"requiredField\":[4,\"required-field\"],\"errorMessage\":[1025,\"error-message\"],\"multiple\":[4],\"search\":[4],\"selectAll\":[4,\"select-all\"],\"placeholder\":[1],\"searchPlaceholder\":[1,\"search-placeholder\"],\"allSelectedMessage\":[1,\"all-selected-message\"],\"info\":[1],\"isExpanded\":[32],\"isHidden\":[32],\"openUp\":[32],\"announcement\":[32]},[[0,\"wmOptionSelected\",\"handleOptionSelection\"],[0,\"wmEnterKeyPressed\",\"handleChildEnter\"],[0,\"wmEscKeyPressed\",\"closeDropdownOnEscape\"],[0,\"keydown\",\"handleKey\"],[9,\"resize\",\"handleResize\"]],{\"errorMessage\":[\"announceError\"],\"disabled\":[\"handleDisabledChange\"]}],[1,\"wm-option\",{\"value\":[1],\"subinfo\":[1025],\"disabled\":[516],\"selected\":[516],\"focused\":[4],\"searchTerm\":[32]},[[0,\"keydown\",\"handleKeydown\"],[0,\"click\",\"handleSelection\"],[0,\"blur\",\"handleBlur\"]],{\"selected\":[\"syncAriaSelected\"],\"disabled\":[\"syncAriaDisabled\",\"updateDisabledOnClick\"]}]]],[\"priv-chart-popover_2\",[[0,\"priv-chart-popover\",{\"chartData\":[16],\"header\":[1],\"text\":[1],\"buttonText\":[1,\"button-text\"],\"coords\":[16],\"open\":[1028],\"announcement\":[32],\"isKeying\":[32],\"announceContents\":[64]},[[8,\"wmUserIsKeying\",\"toggleTabbingOn\"],[8,\"wmUserIsNotTabbing\",\"toggleTabbingOff\"],[4,\"click\",\"handleClickOnDocument\"],[0,\"click\",\"handleClick\"]],{\"open\":[\"handleOpenChange\"],\"coords\":[\"handleDetailsChange\"]}],[17,\"wm-chart-legend\",{\"chartIds\":[513,\"chart-ids\"],\"orientation\":[1],\"processedData\":[1040],\"printMode\":[4,\"print-mode\"],\"patternMode\":[1,\"pattern-mode\"]},[[4,\"wmChartBarHighlighted\",\"handleChartBarHighlighted\"],[6,\"click\",\"handleDocumentClick\"]]]]]]"), options);
8
+ return bootstrapLazy(JSON.parse("[[\"wm-file\",[[17,\"wm-file\",{\"name\":[1],\"type\":[1],\"fileActions\":[1,\"file-actions\"],\"lastUpdated\":[1,\"last-updated\"],\"progress\":[514],\"size\":[1],\"uploadedBy\":[1,\"uploaded-by\"],\"errorMessage\":[1,\"error-message\"],\"showInfo\":[1025,\"show-info\"]}]]],[\"wm-navigator\",[[17,\"wm-navigator\",{\"userName\":[1,\"user-name\"],\"email\":[1],\"authType\":[2,\"auth-type\"],\"connectionName\":[1,\"connection-name\"],\"logoutUrl\":[1,\"logout-url\"],\"products\":[1],\"loadFromUserinfo\":[4,\"load-from-userinfo\"],\"isOpen\":[32],\"itemIndexToFocus\":[32]},[[0,\"keydown\",\"handleKeys\"],[0,\"keydownOnNavItem\",\"handleKeydown\"],[4,\"click\",\"handleClick\"],[0,\"buttonActivated\",\"handleButtonClick\"]],{\"products\":[\"parseData\"]}]]],[\"wm-optgroup\",[[17,\"wm-optgroup\",{\"label\":[1],\"isExpanded\":[1028,\"is-expanded\"],\"multiple\":[1028],\"disabled\":[4],\"emitDeselection\":[64],\"handleChildChange\":[64]},[[0,\"wmKeyLeftPressed\",\"handleOptionKeyLeft\"]],{\"isExpanded\":[\"isExpandedChanged\"]}]]],[\"wm-chart\",[[17,\"wm-chart\",{\"chartType\":[1,\"chart-type\"],\"label\":[1],\"labelWidth\":[1,\"label-width\"],\"subinfo\":[1],\"valueFormat\":[1,\"value-format\"],\"showGrid\":[4,\"show-grid\"],\"showLegend\":[4,\"show-legend\"],\"showBarLegend\":[4,\"show-bar-legend\"],\"notStartedColor\":[4,\"not-started-color\"],\"printMode\":[4,\"print-mode\"],\"printModeFormat\":[1,\"print-mode-format\"],\"labelPosition\":[1,\"label-position\"],\"isTabbing\":[32],\"userIsNavigating\":[32],\"focusedSliceId\":[32]},[[8,\"wmUserIsTabbing\",\"toggleTabbingOn\"],[8,\"wmUserIsNotTabbing\",\"toggleTabbingOff\"],[0,\"keydown\",\"handleKeydown\"],[0,\"wmChartSliceUpdated\",\"handleSliceUpdate\"]]]]],[\"wm-datepicker\",[[17,\"wm-datepicker\",{\"value\":[1025],\"disabled\":[4],\"dateFormat\":[1,\"date-format\"],\"errorMessage\":[513,\"error-message\"],\"labelPosition\":[1,\"label-position\"],\"label\":[1],\"requiredField\":[4,\"required-field\"],\"preselected\":[1],\"isExpanded\":[32],\"canOpen\":[32],\"reformatDate\":[64],\"isValidIso\":[64]},[[11,\"scroll\",\"pf_reposition\"],[9,\"resize\",\"pf_reposition\"],[9,\"resize\",\"checkCanOpen\"],[0,\"keydown\",\"handleKeydown\"],[0,\"cellTriggered\",\"handleCellTriggered\"]],{\"disabled\":[\"handleDisabledChange\"],\"value\":[\"updateValue\"],\"errorMessage\":[\"announceError\"]}]]],[\"wm-search\",[[17,\"wm-search\",{\"searchType\":[1025,\"search-type\"],\"disabled\":[516],\"placeholder\":[1],\"label\":[1],\"numResults\":[1026,\"num-results\"],\"value\":[1537],\"highlightedId\":[1,\"highlighted-id\"],\"highlightedName\":[1,\"highlighted-name\"],\"isTabbing\":[32],\"highlightedNum\":[32],\"previousBlurredValue\":[32],\"parentModal\":[32],\"announcement\":[32],\"updateValue\":[64]},[[8,\"wmUserIsTabbing\",\"toggleTabbingOn\"],[8,\"wmUserIsNotTabbing\",\"toggleTabbingOff\"]],{\"numResults\":[\"handleNumResultsUpdate\"],\"disabled\":[\"handleDisabledChange\"]}]]],[\"wm-file-list\",[[17,\"wm-file-list\",{\"showInfo\":[1,\"show-info\"]}]]],[\"wm-tag-input\",[[17,\"wm-tag-input\",{\"label\":[1],\"errorMessage\":[1,\"error-message\"],\"info\":[1],\"labelPosition\":[1,\"label-position\"],\"maxTags\":[2,\"max-tags\"],\"placeholder\":[1025],\"requiredField\":[4,\"required-field\"],\"tagInputType\":[1,\"tag-input-type\"],\"helpText\":[1,\"help-text\"],\"addNew\":[4,\"add-new\"],\"characterLimit\":[2,\"character-limit\"],\"colHeaders\":[1,\"col-headers\"],\"colWidths\":[1,\"col-widths\"],\"colWrap\":[1,\"col-wrap\"],\"isKeying\":[32],\"isExpanded\":[32],\"liveRegionMessage\":[32],\"focusedOption\":[32],\"focusedColumn\":[32],\"focusedTagIndex\":[32],\"tagsList\":[32]},[[8,\"wmUserIsKeying\",\"toggleKeyingOn\"],[8,\"wmUserIsTabbing\",\"toggleKeyingOn\"],[8,\"wmUserIsNotKeying\",\"toggleKeyingOff\"],[8,\"wmUserIsNotTabbing\",\"toggleKeyingOff\"],[0,\"privTagOptionSelected\",\"handleTagOptionSelected\"],[0,\"privTagOptionDeselected\",\"handleTagOptionDeselected\"],[4,\"click\",\"handleClick\"],[11,\"scroll\",\"dismissTooltip\"],[0,\"blur\",\"handleBlur\"]],{\"errorMessage\":[\"announceError\"]}]]],[\"wm-tag-option\",[[0,\"wm-tag-option\",{\"selected\":[1540],\"locked\":[4],\"col1\":[1],\"col2\":[1],\"col3\":[1],\"col4\":[1],\"emitSelectedEvent\":[64],\"emitDeselectedEvent\":[64]},null,{\"selected\":[\"handleSelected\"]}]]],[\"wm-toggletip\",[[17,\"wm-toggletip\",{\"label\":[1],\"tooltip\":[1],\"tooltipPosition\":[1,\"tooltip-position\"],\"targetSize\":[1,\"target-size\"],\"toggletipType\":[1,\"toggletip-type\"],\"isHidden\":[32]},[[9,\"resize\",\"handleResize\"],[0,\"keydown\",\"handleKeydown\"],[4,\"click\",\"handleClick\"]]]]],[\"wm-action-menu_2\",[[17,\"wm-action-menu\",{\"tooltipPosition\":[1,\"tooltip-position\"],\"actionMenuType\":[1,\"action-menu-type\"],\"buttonText\":[1,\"button-text\"],\"disabled\":[516],\"tooltip\":[1],\"labelForIdenticalButtons\":[1,\"label-for-identical-buttons\"],\"darkMode\":[4,\"dark-mode\"],\"isExpanded\":[32],\"isTabbing\":[32],\"isHidden\":[32]},[[8,\"wmUserIsTabbing\",\"handleTabbingOn\"],[8,\"wmUserIsNotTabbing\",\"handleTabbingOff\"],[11,\"scroll\",\"handleWindowScroll\"],[0,\"wmMenuitemClicked\",\"handleClickedItem\"],[0,\"wmKeyUpPressed\",\"handleKeyUp\"],[0,\"wmKeyDownPressed\",\"handleKeyDown\"],[0,\"wmHomeKeyPressed\",\"handleHomeKey\"],[0,\"wmEndKeyPressed\",\"handleEndKey\"],[0,\"wmTabKeyPressed\",\"handleTabKey\"],[0,\"wmEscKeyPressed\",\"handleEscKey\"],[0,\"keydown\",\"handleKey\"],[0,\"wmMenuitemBlurred\",\"handleMenuitemBlur\"],[0,\"wmLetterPressed\",\"findAndFocusItem\"]]],[1,\"wm-menuitem\",{\"disabled\":[4],\"icon\":[1025],\"description\":[1]},[[0,\"keydown\",\"handleKeydown\"],[0,\"click\",\"handleClick\"],[0,\"blur\",\"handleBlur\"]],{\"disabled\":[\"setOnClick\"]}]]],[\"wm-button\",[[17,\"wm-button\",{\"disabled\":[516],\"buttonType\":[1025,\"button-type\"],\"icon\":[1537],\"iconSize\":[1,\"icon-size\"],\"iconRotate\":[2,\"icon-rotate\"],\"iconFlip\":[1,\"icon-flip\"],\"tooltip\":[1537],\"labelForIdenticalButtons\":[1,\"label-for-identical-buttons\"],\"tooltipPosition\":[1,\"tooltip-position\"],\"permanentlyDelete\":[4,\"permanently-delete\"],\"textWrap\":[4,\"text-wrap\"],\"customBackground\":[1,\"custom-background\"],\"isSubmit\":[4,\"is-submit\"],\"isTabbing\":[32]},[[8,\"wmUserIsTabbing\",\"toggleTabbingOn\"],[8,\"wmUserIsNotTabbing\",\"toggleTabbingOff\"],[11,\"scroll\",\"handleScroll\"],[0,\"keydown\",\"handleKeydown\"]],{\"buttonType\":[\"validateType\"],\"icon\":[\"updateIcon\"],\"disabled\":[\"handleDisabledChange\"]}]]],[\"wm-modal-pss_3\",[[0,\"wm-modal-pss-footer\",{\"secondaryText\":[1,\"secondary-text\"],\"primaryText\":[1,\"primary-text\"],\"infoText\":[1,\"info-text\"],\"primaryActionDisabled\":[4,\"primary-action-disabled\"],\"deleteStyle\":[4,\"delete-style\"]}],[0,\"wm-modal-pss-header\",{\"heading\":[1],\"subheading\":[1]}],[0,\"wm-modal-pss\",{\"open\":[1540],\"elementToFocus\":[1025,\"element-to-focus\"],\"modalType\":[513,\"modal-type\"],\"uid\":[1537],\"emitCloseEvent\":[64],\"emitPrimaryEvent\":[64],\"emitSecondaryEvent\":[64]},[[0,\"click\",\"handleClick\"],[0,\"keydown\",\"closeModalOnEscape\"]],{\"open\":[\"toggleModal\"]}]]],[\"wm-modal_3\",[[0,\"wm-modal-footer\",{\"secondaryText\":[1,\"secondary-text\"],\"primaryText\":[1,\"primary-text\"],\"infoText\":[1,\"info-text\"],\"primaryActionDisabled\":[4,\"primary-action-disabled\"],\"deleteStyle\":[4,\"delete-style\"]}],[0,\"wm-modal-header\",{\"heading\":[1],\"subheading\":[1]}],[4,\"wm-modal\",{\"open\":[1540],\"elementToFocus\":[1025,\"element-to-focus\"],\"modalType\":[513,\"modal-type\"],\"uid\":[1537],\"returnFocusEl\":[32],\"emitCloseEvent\":[64],\"emitPrimaryEvent\":[64],\"emitSecondaryEvent\":[64]},null,{\"open\":[\"toggleModal\"]}]]],[\"wm-chart-bar\",[[17,\"wm-chart-bar\",{\"config\":[16],\"data\":[16],\"printMode\":[4,\"print-mode\"],\"patternMode\":[4,\"pattern-mode\"],\"subinfo\":[1],\"processedData\":[32],\"gridInfo\":[32],\"isKeying\":[32]},[[4,\"wmLegendItemClick\",\"handleLegendItemClick\"],[6,\"click\",\"handleDocumentClick\"],[8,\"wmUserIsKeying\",\"handleUserIsKeying\"],[8,\"wmUserIsNotTabbing\",\"handleUserIsNotKeying\"]],{\"config\":[\"handleConfigDataChange\"],\"data\":[\"handleConfigDataChange\"]}]]],[\"wm-chart-column\",[[17,\"wm-chart-column\",{\"config\":[16],\"data\":[16],\"printWidth\":[1,\"print-width\"],\"printMode\":[4,\"print-mode\"],\"patternMode\":[4,\"pattern-mode\"],\"subinfo\":[1],\"processedData\":[32],\"gridInfo\":[32],\"isKeying\":[32]},[[4,\"wmLegendItemClick\",\"handleLegendItemClick\"],[4,\"wmLegendItemHover\",\"handleLegendItemHover\"],[8,\"beforeprint\",\"handleBeforePrint\"],[8,\"afterprint\",\"handleAfterPrint\"],[6,\"click\",\"handleDocumentClick\"],[8,\"wmUserIsKeying\",\"handleUserIsKeying\"],[8,\"wmUserIsNotTabbing\",\"handleUserIsNotKeying\"]],{\"config\":[\"handleConfigDataChange\"],\"data\":[\"handleConfigDataChange\"],\"printWidth\":[\"handleConfigDataChange\"]}]]],[\"wm-navigation_3\",[[17,\"wm-navigation\",{\"open\":[1540]},[[0,\"keydown\",\"closeOnEscape\"],[9,\"resize\",\"handleWindowResize\"],[8,\"wmNavigationHamburgerClicked\",\"handleHamburgerClicked\"],[0,\"wmNavigationItemClicked\",\"handleClickOnItem\"]],{\"open\":[\"handleStateChange\"]}],[17,\"wm-navigation-hamburger\",{\"navId\":[1,\"nav-id\"],\"isTabbing\":[32],\"open\":[32]},[[8,\"wmUserIsTabbing\",\"toggleTabbingOn\"],[8,\"wmUserIsNotTabbing\",\"toggleTabbingOff\"],[4,\"wmNavigationStateChanged\",\"handleNavigationStateChanged\"]]],[17,\"wm-navigation-item\",{\"href\":[1],\"text\":[1],\"active\":[4]}]]],[\"wm-progress-indicator_3\",[[17,\"wm-progress-indicator\",{\"label\":[1],\"subinfo\":[1],\"completionMessage\":[1,\"completion-message\"],\"showLegend\":[4,\"show-legend\"],\"printMode\":[4,\"print-mode\"],\"printModeFormat\":[1,\"print-mode-format\"],\"isTabbing\":[32],\"mode\":[32],\"userIsNavigating\":[32],\"focusedSliceId\":[32]},[[8,\"wmUserIsTabbing\",\"toggleTabbingOn\"],[8,\"wmUserIsNotTabbing\",\"toggleTabbingOff\"],[0,\"keydown\",\"handleKeydown\"],[0,\"wmProgressSliceUpdated\",\"handleSliceUpdate\"]],{\"mode\":[\"handleModeUpdate\"]}],[17,\"wm-progress-monitor\",{\"breakpoint\":[8],\"groupLegend\":[1,\"group-legend\"],\"barLabelsWidth\":[1,\"bar-labels-width\"]}],[1,\"wm-progress-slice\",{\"legend\":[1],\"amount\":[1],\"popoverTitle\":[1,\"popover-title\"],\"popoverText\":[1,\"popover-text\"],\"popoverButtonText\":[1,\"popover-button-text\"]}]]],[\"wm-tab-item_3\",[[17,\"wm-tab-list\",{\"customBackground\":[1,\"custom-background\"],\"selectedTab\":[1,\"selected-tab\"],\"announcement\":[32],\"containerFadeLeft\":[32],\"containerFadeRight\":[32],\"scrollArrowsVisible\":[32]},[[0,\"tabItemLoaded\",\"tabItemLoaded\"],[0,\"wmIntTabFocused\",\"wmTabFocused\"],[0,\"keydownOnTabItem\",\"handleKeydown\"]],{\"selectedTab\":[\"setSelected\"]}],[17,\"wm-tab-item\",{\"selected\":[4],\"tabId\":[1,\"tab-id\"]}],[0,\"wm-tab-panel\",{\"active\":[1028],\"tabId\":[1025,\"tab-id\"]}]]],[\"wm-date-range\",[[17,\"wm-date-range\",{\"dateFormat\":[1,\"date-format\"],\"disabled\":[4],\"errorMessage\":[513,\"error-message\"],\"invalidStart\":[4,\"invalid-start\"],\"invalidEnd\":[4,\"invalid-end\"],\"labelStart\":[1,\"label-start\"],\"labelEnd\":[1,\"label-end\"],\"preselected\":[1],\"requiredField\":[4,\"required-field\"],\"valueStart\":[1025,\"value-start\"],\"valueEnd\":[1025,\"value-end\"],\"isExpanded\":[32],\"canOpen\":[32],\"reformatDate\":[64],\"isValidISO\":[64]},[[11,\"scroll\",\"pf_reposition\"],[9,\"resize\",\"pf_reposition\"],[9,\"resize\",\"checkCanOpen\"],[0,\"popupBlurred\",\"handlePopupBlurred\"],[0,\"keydown\",\"handleKeydown\"],[0,\"cellTriggered\",\"handleCellTriggered\"],[0,\"outOfCal\",\"handleOutOfCal\"],[0,\"cellHovered\",\"handleCellHovered\"]],{\"disabled\":[\"handleDisabled\"],\"valueStart\":[\"updateValueStart\"],\"valueEnd\":[\"updateValueEnd\"],\"errorMessage\":[\"handleErrorMessage\"]}]]],[\"wm-flyout\",[[1,\"wm-flyout\",{\"eyebrow\":[1],\"heading\":[1],\"subheading\":[1],\"flyoutWidth\":[1,\"flyout-width\"],\"primaryText\":[1,\"primary-text\"],\"secondaryText\":[1,\"secondary-text\"],\"infoText\":[1,\"info-text\"],\"breadcrumb\":[1],\"elementToFocus\":[1,\"element-to-focus\"],\"open\":[516],\"returnFocusEl\":[32],\"isBreadcrumbsOverflowing\":[32],\"focusHeading\":[64]},null,{\"open\":[\"handleOpenChange\"],\"flyoutWidth\":[\"setFlyoutWidth\"]}]]],[\"wm-line-chart\",[[1,\"wm-line-chart\",{\"label\":[1],\"description\":[1],\"xAxisLabel\":[1,\"x-axis-label\"],\"yAxisLabel\":[1,\"y-axis-label\"],\"showGrid\":[4,\"show-grid\"],\"lineData\":[1025,\"line-data\"],\"units\":[1],\"labelWidth\":[1,\"label-width\"],\"highlightQualifier\":[1,\"highlight-qualifier\"],\"highlightStart\":[1,\"highlight-start\"],\"highlightEnd\":[1,\"highlight-end\"],\"visibilityToggles\":[4,\"visibility-toggles\"],\"showDeltas\":[4,\"show-deltas\"],\"yRange\":[1,\"y-range\"],\"spotlightData\":[16],\"decimalPlaces\":[2,\"decimal-places\"],\"parsedLineData\":[32],\"popoverIndex\":[32],\"focusedLine\":[32],\"hiddenLines\":[32],\"isTabbing\":[32],\"announcement\":[32]},[[8,\"wmUserIsTabbing\",\"toggleTabbingOn\"],[8,\"wmUserIsNotTabbing\",\"toggleTabbingOff\"]],{\"lineData\":[\"parseData\"]}]]],[\"wm-chart-slice\",[[0,\"wm-chart-slice\",{\"legend\":[1],\"amount\":[1],\"popoverTitle\":[1,\"popover-title\"],\"popoverText\":[1,\"popover-text\"],\"popoverButtonText\":[1,\"popover-button-text\"]}]]],[\"wm-input\",[[17,\"wm-input\",{\"label\":[1],\"labelPosition\":[1,\"label-position\"],\"value\":[1025],\"disabled\":[4],\"info\":[1],\"inputWidth\":[1,\"input-width\"],\"placeholder\":[1],\"requiredField\":[4,\"required-field\"],\"errorMessage\":[1,\"error-message\"],\"characterLimit\":[2,\"character-limit\"],\"symbolBefore\":[1,\"symbol-before\"],\"symbolAfter\":[1,\"symbol-after\"],\"textAfter\":[1,\"text-after\"],\"type\":[1],\"step\":[2],\"min\":[2],\"max\":[2],\"isSubmit\":[4,\"is-submit\"],\"announcement\":[32]},null,{\"disabled\":[\"handleDisabledChange\"],\"errorMessage\":[\"announceError\"]}]]],[\"wm-nested-select\",[[17,\"wm-nested-select\",{\"disabled\":[516],\"maxHeight\":[1,\"max-height\"],\"label\":[1025],\"labelPosition\":[1,\"label-position\"],\"requiredField\":[4,\"required-field\"],\"errorMessage\":[1025,\"error-message\"],\"multiple\":[4],\"search\":[4],\"selectAll\":[4,\"select-all\"],\"placeholder\":[1],\"searchPlaceholder\":[1,\"search-placeholder\"],\"allSelectedMessage\":[1,\"all-selected-message\"],\"constrainedMaxHeight\":[1025,\"constrained-max-height\"],\"isExpanded\":[32],\"isGroupExpanded\":[32],\"showClearSelectionButton\":[32],\"announcement\":[32]},[[0,\"wmOptionSelected\",\"handleOptionSelection\"],[0,\"wmEnterKeyPressed\",\"handleChildEnter\"],[0,\"wmEscKeyPressed\",\"closePopupOnEscape\"],[0,\"keydown\",\"handleKeyDown\"],[6,\"click\",\"handleClick\"],[0,\"optgroupExpanded\",\"handleOptgroupExpanded\"],[0,\"optgroupHidden\",\"handleOptgroupHidden\"]]]]],[\"wm-pagination\",[[17,\"wm-pagination\",{\"label\":[1],\"currentPage\":[2,\"current-page\"],\"totalItems\":[2,\"total-items\"],\"itemsPerPage\":[2,\"items-per-page\"],\"value\":[2],\"isLargeSize\":[4,\"is-large-size\"],\"srAnnouncement\":[32]},null,{\"totalItems\":[\"calculateTotalPages\"],\"itemsPerPage\":[\"calculateTotalPages\"]}]]],[\"wm-snackbar\",[[1,\"wm-snackbar\",{\"notifications\":[1537],\"isTabbing\":[32],\"announcement\":[32]},[[4,\"keydown\",\"checkForTabbing\"],[5,\"mouseover\",\"handleMouse\"]],{\"notifications\":[\"updateSnacks\"]}]]],[\"wm-textarea\",[[1,\"wm-textarea\",{\"label\":[1],\"labelPosition\":[1,\"label-position\"],\"value\":[1025],\"disabled\":[4],\"info\":[1],\"placeholder\":[1],\"requiredField\":[4,\"required-field\"],\"errorMessage\":[1,\"error-message\"],\"characterLimit\":[2,\"character-limit\"],\"inputWidth\":[1,\"input-width\"],\"inputHeight\":[1,\"input-height\"],\"announcement\":[32]},null,{\"disabled\":[\"handleDisabledChange\"],\"errorMessage\":[\"announceError\"]}]]],[\"wm-timepicker\",[[17,\"wm-timepicker\",{\"disabled\":[4],\"value\":[1025],\"errorMessage\":[1,\"error-message\"],\"label\":[1],\"labelPosition\":[1,\"label-position\"],\"requiredField\":[4,\"required-field\"],\"preselected\":[1],\"isExpanded\":[32],\"isValidTime\":[64],\"reformatTime\":[64]},[[0,\"keydown\",\"handleKey\"]],{\"disabled\":[\"handleDisabledChange\"],\"value\":[\"handleValueChange\"],\"errorMessage\":[\"announceError\"]}]]],[\"wm-uploader\",[[17,\"wm-uploader\",{\"label\":[1],\"uploaderType\":[1,\"uploader-type\"],\"dropArea\":[1,\"drop-area\"],\"buttonText\":[1,\"button-text\"],\"icon\":[1],\"fileTypes\":[1,\"file-types\"],\"maxSize\":[1,\"max-size\"],\"maxFiles\":[2,\"max-files\"],\"errorMessage\":[1,\"error-message\"],\"requiredField\":[4,\"required-field\"],\"showInfo\":[1,\"show-info\"],\"isTabbing\":[32],\"notif\":[32],\"isCondensed\":[32]},[[8,\"wmUserIsTabbing\",\"toggleTabbingOn\"],[8,\"wmUserIsNotTabbing\",\"toggleTabbingOff\"],[0,\"wmFileErrorCleared\",\"handleFileErrorCleared\"],[0,\"wmFileDelete\",\"handleFileDelete\"],[5,\"dragenter\",\"handleDocumentDragEnter\"],[5,\"mouseout\",\"handleDocumentMouseOut\"],[5,\"dragleave\",\"handleDocumentDragLeave\"],[4,\"visibilitychange\",\"handleDocumentVisibilityChange\"]],{\"errorMessage\":[\"announceError\"]}]]],[\"wm-wrapper\",[[0,\"wm-wrapper\"]]],[\"priv-navigator-button\",[[17,\"priv-navigator-button\",{\"expanded\":[1028],\"altText\":[1,\"alt-text\"]}]]],[\"priv-navigator-item\",[[1,\"priv-navigator-item\",{\"selected\":[1028],\"focused\":[1028],\"link\":[1025]},[[0,\"keydown\",\"handleKeyDown\"]]]]],[\"priv-option-list\",[[4,\"priv-option-list\",{\"multiple\":[4],\"search\":[4],\"selectAll\":[4,\"select-all\"],\"searchPlaceholder\":[1,\"search-placeholder\"],\"optgroupLabel\":[1,\"optgroup-label\"],\"maxHeight\":[1,\"max-height\"],\"upwardsHeightLimit\":[2,\"upwards-height-limit\"],\"announcement\":[32],\"searchTerm\":[32],\"handleChildChange\":[64],\"clearSearch\":[64],\"focusOption\":[64],\"handleInitialFocus\":[64],\"unfocusAll\":[64],\"updateOptionVisibility\":[64]},[[0,\"wmLetterPressed\",\"findAndFocusOption\"],[0,\"wmOptionSelected\",\"handleOptionSelection\"],[0,\"wmKeyUpPressed\",\"handleChildUp\"],[0,\"wmKeyDownPressed\",\"handleChildDown\"],[0,\"wmHomeKeyPressed\",\"moveToFirstOption\"],[0,\"wmEndKeyPressed\",\"moveToLastOption\"],[0,\"intCloneClicked\",\"handleOptionCloneSelection\"]]]]],[\"priv-calendar\",[[0,\"priv-calendar\",{\"disabled\":[4],\"view\":[1025],\"focusDate\":[1025,\"focus-date\"],\"startDate\":[1,\"start-date\"],\"endDate\":[1,\"end-date\"],\"hoverDate\":[1,\"hover-date\"],\"announcement\":[32],\"focusFirstFocusable\":[64],\"focusLastFocusable\":[64],\"focusCell\":[64]},[[0,\"keydown\",\"handleKey\"]],{\"focusDate\":[\"handleFocusDate\"]}]]],[\"priv-chart-popover-old\",[[0,\"priv-chart-popover-old\",{\"open\":[1028],\"sliceDetails\":[16]},[[4,\"click\",\"handleClickOnDocument\"],[0,\"click\",\"handleClick\"]],{\"open\":[\"handleOpenChange\"],\"sliceDetails\":[\"handleDetailsChange\"]}]]],[\"wm-option_2\",[[17,\"wm-select\",{\"disabled\":[516],\"maxHeight\":[1,\"max-height\"],\"label\":[1025],\"labelPosition\":[1,\"label-position\"],\"requiredField\":[4,\"required-field\"],\"errorMessage\":[1025,\"error-message\"],\"multiple\":[4],\"search\":[4],\"selectAll\":[4,\"select-all\"],\"placeholder\":[1],\"searchPlaceholder\":[1,\"search-placeholder\"],\"allSelectedMessage\":[1,\"all-selected-message\"],\"info\":[1],\"isExpanded\":[32],\"isHidden\":[32],\"openUp\":[32],\"announcement\":[32]},[[0,\"wmOptionSelected\",\"handleOptionSelection\"],[0,\"wmEnterKeyPressed\",\"handleChildEnter\"],[0,\"wmEscKeyPressed\",\"closeDropdownOnEscape\"],[0,\"keydown\",\"handleKey\"],[9,\"resize\",\"handleResize\"]],{\"errorMessage\":[\"announceError\"],\"disabled\":[\"handleDisabledChange\"]}],[1,\"wm-option\",{\"value\":[1],\"subinfo\":[1025],\"disabled\":[516],\"selected\":[516],\"focused\":[4],\"searchTerm\":[32]},[[0,\"keydown\",\"handleKeydown\"],[0,\"click\",\"handleSelection\"],[0,\"blur\",\"handleBlur\"]],{\"selected\":[\"syncAriaSelected\"],\"disabled\":[\"syncAriaDisabled\",\"updateDisabledOnClick\"]}]]],[\"priv-chart-popover_2\",[[0,\"priv-chart-popover\",{\"chartData\":[16],\"header\":[1],\"text\":[1],\"buttonText\":[1,\"button-text\"],\"coords\":[16],\"open\":[1028],\"announcement\":[32],\"isKeying\":[32],\"announceContents\":[64]},[[8,\"wmUserIsKeying\",\"toggleTabbingOn\"],[8,\"wmUserIsNotTabbing\",\"toggleTabbingOff\"],[4,\"click\",\"handleClickOnDocument\"],[0,\"click\",\"handleClick\"]],{\"open\":[\"handleOpenChange\"],\"coords\":[\"handleDetailsChange\"]}],[17,\"wm-chart-legend\",{\"chartIds\":[513,\"chart-ids\"],\"orientation\":[1],\"processedData\":[1040],\"printMode\":[4,\"print-mode\"],\"patternMode\":[1,\"pattern-mode\"]},[[4,\"wmChartBarHighlighted\",\"handleChartBarHighlighted\"],[6,\"click\",\"handleDocumentClick\"]]]]]]"), options);
9
9
  };
10
10
 
11
11
  export { defineCustomElements };