@watermarkinsights/ripple 3.21.0 → 3.22.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.
- package/dist/cjs/{global-ff866a2e.js → global-e0e98092.js} +1 -1
- package/dist/cjs/loader.cjs.js +2 -2
- package/dist/cjs/ripple.cjs.js +2 -2
- package/dist/cjs/wm-action-menu_2.cjs.entry.js +1 -1
- package/dist/cjs/wm-button.cjs.entry.js +1 -1
- package/dist/cjs/wm-network-uploader.cjs.entry.js +1 -1
- package/dist/cjs/wm-search.cjs.entry.js +40 -50
- package/dist/cjs/wm-tab-item_3.cjs.entry.js +1 -1
- package/dist/cjs/wm-uploader.cjs.entry.js +1 -1
- package/dist/collection/components/wm-action-menu/wm-action-menu.js +18 -1
- package/dist/collection/components/wm-button/wm-button.css +21 -4
- package/dist/collection/components/wm-search/wm-search.js +42 -51
- package/dist/collection/components/wm-tabs/wm-tab-panel/wm-tab-panel.js +1 -1
- package/dist/collection/components/wm-uploader/wm-network-uploader/wm-network-uploader.css +21 -4
- package/dist/collection/components/wm-uploader/wm-uploader.css +21 -4
- package/dist/esm/{global-d7d60112.js → global-2ffd2051.js} +1 -1
- package/dist/esm/loader.js +2 -2
- package/dist/esm/ripple.js +2 -2
- package/dist/esm/wm-action-menu_2.entry.js +1 -1
- package/dist/esm/wm-button.entry.js +1 -1
- package/dist/esm/wm-network-uploader.entry.js +1 -1
- package/dist/esm/wm-search.entry.js +40 -50
- package/dist/esm/wm-tab-item_3.entry.js +1 -1
- package/dist/esm/wm-uploader.entry.js +1 -1
- package/dist/esm-es5/{global-d7d60112.js → global-2ffd2051.js} +1 -1
- package/dist/esm-es5/loader.js +1 -1
- package/dist/esm-es5/ripple.js +1 -1
- package/dist/esm-es5/wm-action-menu_2.entry.js +1 -1
- package/dist/esm-es5/wm-button.entry.js +1 -1
- package/dist/esm-es5/wm-network-uploader.entry.js +1 -1
- package/dist/esm-es5/wm-search.entry.js +1 -1
- package/dist/esm-es5/wm-tab-item_3.entry.js +1 -1
- package/dist/esm-es5/wm-uploader.entry.js +1 -1
- package/dist/ripple/{p-7b9c1633.system.entry.js → p-26414c7a.system.entry.js} +1 -1
- package/dist/ripple/{p-18d363f4.system.js → p-31debfb8.system.js} +1 -1
- package/dist/ripple/p-32e59504.system.entry.js +1 -0
- package/dist/ripple/{p-7ce59f1c.js → p-36fa4a1b.js} +1 -1
- package/dist/ripple/{p-8b53458c.entry.js → p-3862529e.entry.js} +1 -1
- package/dist/ripple/{p-7bfd814a.system.entry.js → p-4aa2b3a0.system.entry.js} +1 -1
- package/dist/ripple/p-6d734ef5.system.entry.js +1 -0
- package/dist/ripple/p-720262d4.entry.js +1 -0
- package/dist/ripple/p-7a574ce1.system.entry.js +1 -0
- package/dist/ripple/{p-0274e7d5.entry.js → p-baff8c61.entry.js} +1 -1
- package/dist/ripple/p-c1b0335c.entry.js +1 -0
- package/dist/ripple/{p-076dd67a.entry.js → p-e12e9948.entry.js} +1 -1
- package/dist/ripple/p-eec5a46c.system.js +1 -0
- package/dist/ripple/{p-60cf8672.system.entry.js → p-f1b3524b.system.entry.js} +1 -1
- package/dist/ripple/{p-65e1d433.entry.js → p-fc409fbc.entry.js} +1 -1
- package/dist/ripple/ripple.esm.js +1 -1
- package/dist/ripple/ripple.js +1 -1
- package/dist/types/components/wm-action-menu/wm-action-menu.d.ts +1 -0
- package/dist/types/components/wm-search/wm-search.d.ts +6 -15
- package/dist/types/components.d.ts +2 -0
- package/package.json +1 -1
- package/dist/ripple/p-35897365.system.entry.js +0 -1
- package/dist/ripple/p-43a6db6a.system.entry.js +0 -1
- package/dist/ripple/p-537d2bfa.system.js +0 -1
- package/dist/ripple/p-7a99269b.entry.js +0 -1
- package/dist/ripple/p-b7abdd01.system.entry.js +0 -1
- package/dist/ripple/p-f52aef98.entry.js +0 -1
|
@@ -300,7 +300,7 @@ const TabPanel = class {
|
|
|
300
300
|
this.el.classList.remove("user-is-tabbing");
|
|
301
301
|
}
|
|
302
302
|
render() {
|
|
303
|
-
return (index.h(index.Host, { role: "tabpanel",
|
|
303
|
+
return (index.h(index.Host, { role: "tabpanel", class: { "tab-hidden": !this.active }, onBlur: () => (this.el.tabIndex = -1), tabIndex: -1 }));
|
|
304
304
|
}
|
|
305
305
|
get el() { return index.getElement(this); }
|
|
306
306
|
};
|
|
@@ -5,7 +5,7 @@ Object.defineProperty(exports, '__esModule', { value: true });
|
|
|
5
5
|
const index = require('./index-4ad75531.js');
|
|
6
6
|
const functions = require('./functions-c7ca73f3.js');
|
|
7
7
|
|
|
8
|
-
const wmUploaderCss = ":host .wm-button,wm-uploader .wm-button{-ms-transition:background-color 500ms cubic-bezier(0.4, 0, 0.2, 1), color 500ms cubic-bezier(0.4, 0, 0.2, 1), border 500ms cubic-bezier(0.4, 0, 0.2, 1);-webkit-transition:background-color 500ms cubic-bezier(0.4, 0, 0.2, 1), color 500ms cubic-bezier(0.4, 0, 0.2, 1), border 500ms cubic-bezier(0.4, 0, 0.2, 1);-moz-transition:background-color 500ms cubic-bezier(0.4, 0, 0.2, 1), color 500ms cubic-bezier(0.4, 0, 0.2, 1), border 500ms cubic-bezier(0.4, 0, 0.2, 1);transition:background-color 500ms cubic-bezier(0.4, 0, 0.2, 1), color 500ms cubic-bezier(0.4, 0, 0.2, 1), border 500ms cubic-bezier(0.4, 0, 0.2, 1);-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;border-radius:5px;width:inherit;border:2px solid #575195;color:#575195;font-family:inherit;font-size:0.75rem;font-weight:700;height:2.75rem;padding:0 1.3333333333em;cursor:pointer;position:relative;background:#fff;display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center;-ms-flex-align:center;align-items:center;text-decoration:none;text-transform:uppercase;letter-spacing:0.01875rem;overflow-wrap:break-word;word-wrap:break-word;word-break:break-word;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none}@media screen and (min-width: 48rem){:host .wm-button,wm-uploader .wm-button{height:3.3333333333em}}:host .wm-button.nowrap,wm-uploader .wm-button.nowrap{display:inline-block;width:100%;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}:host .wm-button:focus,wm-uploader .wm-button:focus{outline:none;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none}:host .wm-button::-moz-focus-inner,wm-uploader .wm-button::-moz-focus-inner{border:0;outline:none}:host .wm-button.user-is-tabbing:focus:not(:disabled):not(.disabled) :host .wm-button.-textonly .button-text,wm-uploader .wm-button.user-is-tabbing:focus:not(:disabled):not(.disabled) :host .wm-button.-textonly .button-text,:host .wm-button.user-is-tabbing:focus:not(:disabled):not(.disabled) wm-uploader .wm-button.-textonly .button-text,wm-uploader .wm-button.user-is-tabbing:focus:not(:disabled):not(.disabled) wm-uploader .wm-button.-textonly .button-text{background:-webkit-gradient(linear, left top, right top, color-stop(66%, #3862e9), color-stop(0, transparent)) repeat-x;background:linear-gradient(90deg, #3862e9 66%, transparent 0) repeat-x;background-size:6px 3px;background-position:0 1em;border-radius:0;line-height:normal}:host .wm-button.user-is-tabbing:focus:not(.-textonly):not(:disabled):not(.disabled),wm-uploader .wm-button.user-is-tabbing:focus:not(.-textonly):not(:disabled):not(.disabled){-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none}:host .wm-button.user-is-tabbing:focus:not(.-textonly):not(:disabled):not(.disabled):not(.dark),wm-uploader .wm-button.user-is-tabbing:focus:not(.-textonly):not(:disabled):not(.disabled):not(.dark){-webkit-box-shadow:0 2px 2px 0 rgba(244, 243, 246, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.1), 0 0 4px 3px #61279e;-moz-box-shadow:0 2px 2px 0 rgba(244, 243, 246, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.1), 0 0 4px 3px #61279e;box-shadow:0 2px 2px 0 rgba(244, 243, 246, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.1), 0 0 4px 3px #61279e}:host .wm-button.user-is-tabbing:focus:not(.-textonly):not(:disabled):not(.disabled):not(.dark)::-moz-focus-inner,wm-uploader .wm-button.user-is-tabbing:focus:not(.-textonly):not(:disabled):not(.disabled):not(.dark)::-moz-focus-inner{border:0}:host .wm-button.dark:not(.-textonly):not(:disabled):not(.disabled),wm-uploader .wm-button.dark:not(.-textonly):not(:disabled):not(.disabled){background:transparent;border:2px solid #fff;color:#fff}:host .wm-button.dark:not(.-textonly):not(:disabled):not(.disabled):hover,wm-uploader .wm-button.dark:not(.-textonly):not(:disabled):not(.disabled):hover{color:#575195;background:#e6e6e6;border:2px solid #e6e6e6}:host .wm-button.dark.user-is-tabbing:focus:not(.-textonly):not(:disabled):not(.disabled).dark,wm-uploader .wm-button.dark.user-is-tabbing:focus:not(.-textonly):not(:disabled):not(.disabled).dark{-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;-webkit-box-shadow:0 2px 2px 0 rgba(244, 243, 246, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.1), 0 0 4px 3px #c6b4e3;-moz-box-shadow:0 2px 2px 0 rgba(244, 243, 246, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.1), 0 0 4px 3px #c6b4e3;box-shadow:0 2px 2px 0 rgba(244, 243, 246, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.1), 0 0 4px 3px #c6b4e3;outline:none}:host .wm-button:active:not(:disabled):not(.disabled):not(.-textonly):not(.-actionbutton):not(.displayedoption),wm-uploader .wm-button:active:not(:disabled):not(.disabled):not(.-textonly):not(.-actionbutton):not(.displayedoption){-ms-transform:scale(0.9, 0.9);-webkit-transform:scale(0.9, 0.9);-moz-transform:scale(0.9, 0.9);transform:scale(0.9, 0.9)}:host .wm-button .mdi,wm-uploader .wm-button .mdi{display:inline-block;font:normal normal normal 24px/1 \"Material Design Icons\";font-size:inherit;text-rendering:auto;line-height:inherit;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}:host .wm-button:not(.-icononly):not(.-navigational) .mdi,wm-uploader .wm-button:not(.-icononly):not(.-navigational) .mdi{margin-right:0.3125rem}:host .wm-button[dir=RTL] :not(.-icononly) .mdi,wm-uploader .wm-button[dir=RTL] :not(.-icononly) .mdi{margin-left:0.3125rem;margin-right:0}:host .wm-button.-primary:not(.-textonly),wm-uploader .wm-button.-primary:not(.-textonly){background:#575195;color:#fff}:host .wm-button.-primary:not(.-textonly):not(:focus),wm-uploader .wm-button.-primary:not(.-textonly):not(:focus){-webkit-box-shadow:0 2px 2px 0 rgba(87, 81, 149, 0.12), 0 2px 2px 0 rgba(0, 0, 0, 0.2);-moz-box-shadow:0 2px 2px 0 rgba(87, 81, 149, 0.12), 0 2px 2px 0 rgba(0, 0, 0, 0.2);box-shadow:0 2px 2px 0 rgba(87, 81, 149, 0.12), 0 2px 2px 0 rgba(0, 0, 0, 0.2)}:host .wm-button.-primary:not(.-textonly):hover:not(:disabled):not(.disabled),wm-uploader .wm-button.-primary:not(.-textonly):hover:not(:disabled):not(.disabled){background:#464177}:host .wm-button.-primary:not(.-textonly).dark:not(:disabled):not(.disabled),wm-uploader .wm-button.-primary:not(.-textonly).dark:not(:disabled):not(.disabled){color:#575195;background:#fff;border:2px solid #fff}:host .wm-button.-primary:not(.-textonly).dark:not(:disabled):not(.disabled):hover,wm-uploader .wm-button.-primary:not(.-textonly).dark:not(:disabled):not(.disabled):hover{color:#575195;background:#e6e6e6;border:2px solid #e6e6e6}:host .wm-button.-secondary:hover:not(:disabled):not(.disabled),wm-uploader .wm-button.-secondary:hover:not(:disabled):not(.disabled),:host .wm-button.-selector:hover:not(:disabled):not(.disabled),wm-uploader .wm-button.-selector:hover:not(:disabled):not(.disabled),:host .wm-button.-icononly:hover:not(:disabled):not(.disabled),wm-uploader .wm-button.-icononly:hover:not(:disabled):not(.disabled){background:#464177;color:#fff}:host .wm-button.-textonly,wm-uploader .wm-button.-textonly{-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;display:inline-block;letter-spacing:0;text-transform:none;text-align:initial;font-size:0.875rem;border:none;background:transparent;padding-left:0;padding-right:0;height:auto;border-radius:0;line-height:1}:host .wm-button.-textonly+.-textonly,wm-uploader .wm-button.-textonly+.-textonly{margin-left:0.3125rem}:host .wm-button.-textonly:focus,wm-uploader .wm-button.-textonly:focus{outline:none}:host .wm-button.-textonly::-moz-focus-inner,wm-uploader .wm-button.-textonly::-moz-focus-inner{border:0;outline:none}:host .wm-button.-textonly.user-is-tabbing:focus:not(:disabled):not(.disabled) .button-text,wm-uploader .wm-button.-textonly.user-is-tabbing:focus:not(:disabled):not(.disabled) .button-text{background:-webkit-gradient(linear, left top, right top, color-stop(66%, #3862e9), color-stop(0, transparent)) repeat-x;background:linear-gradient(90deg, #3862e9 66%, transparent 0) repeat-x;background-size:6px 3px;background-position:0 1em;border-radius:0;line-height:normal}:host .wm-button.-textonly.user-is-tabbing:focus:not(:disabled):not(.disabled).dark .button-text,wm-uploader .wm-button.-textonly.user-is-tabbing:focus:not(:disabled):not(.disabled).dark .button-text{background:-webkit-gradient(linear, left top, right top, color-stop(66%, #fff), color-stop(0, transparent)) repeat-x;background:linear-gradient(90deg, #fff 66%, transparent 0) repeat-x;background-size:6px 3px;background-position:0 1em;border-radius:0;line-height:normal}:host .wm-button.-textonly.small,wm-uploader .wm-button.-textonly.small{font-size:0.625rem}:host .wm-button.-textonly:hover:not(:disabled):not(.disabled):not(.-permanentlydelete),wm-uploader .wm-button.-textonly:hover:not(:disabled):not(.disabled):not(.-permanentlydelete){text-decoration:underline}:host .wm-button.-textonly.-permanentlydelete,wm-uploader .wm-button.-textonly.-permanentlydelete{color:#c0392b}:host .wm-button.-textonly.-permanentlydelete:hover:not(:disabled):not(.disabled):not(.dark),wm-uploader .wm-button.-textonly.-permanentlydelete:hover:not(:disabled):not(.disabled):not(.dark){text-decoration:underline;color:#c0392b !important}:host .wm-button.-textonly.dark,wm-uploader .wm-button.-textonly.dark{color:#fff}:host .wm-button.-textonly.dark:hover:not(:disabled):not(.disabled),wm-uploader .wm-button.-textonly.dark:hover:not(:disabled):not(.disabled){text-decoration:underline;color:#fff !important}:host .wm-button.-icononly,wm-uploader .wm-button.-icononly,:host .wm-button.-navigational,wm-uploader .wm-button.-navigational{-webkit-border-radius:50%;-moz-border-radius:50%;-ms-border-radius:50%;border-radius:50%;font-size:1rem;padding:0;height:auto;line-height:1;min-width:2.75rem;min-height:2.75rem;text-align:center;letter-spacing:normal}:host .wm-button.-icononly:not(:focus),wm-uploader .wm-button.-icononly:not(:focus),:host .wm-button.-navigational:not(:focus),wm-uploader .wm-button.-navigational:not(:focus){-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none}@media screen and (min-width: 48rem){:host .wm-button.-icononly,wm-uploader .wm-button.-icononly,:host .wm-button.-navigational,wm-uploader .wm-button.-navigational{min-width:2.5rem;min-height:2.5rem}}:host .wm-button.-icononly,wm-uploader .wm-button.-icononly{border-width:1px !important}:host .wm-button.-icononly:before,wm-uploader .wm-button.-icononly:before{display:inline-block;font:normal normal normal 24px/1 \"Material Design Icons\";font-size:inherit;text-rendering:auto;line-height:inherit;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}:host .wm-button.-navigational,wm-uploader .wm-button.-navigational{border:none !important;background-color:transparent}:host .wm-button.-navigational:not(.dark):not(:disabled):not(.disabled),wm-uploader .wm-button.-navigational:not(.dark):not(:disabled):not(.disabled){color:#575195}:host .wm-button.-navigational:not(.dark):not(:disabled):not(.disabled):hover,wm-uploader .wm-button.-navigational:not(.dark):not(:disabled):not(.disabled):hover,:host .wm-button.-navigational:not(.dark):not(:disabled):not(.disabled).selected,wm-uploader .wm-button.-navigational:not(.dark):not(:disabled):not(.disabled).selected{background-color:#d7d6d9}:host .wm-button.-navigational:before,wm-uploader .wm-button.-navigational:before{display:inline-block;font:normal normal normal 24px/1 \"Material Design Icons\";font-size:inherit;text-rendering:auto;line-height:inherit;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}:host .wm-button.-permanentlydelete:not(.-textonly),wm-uploader .wm-button.-permanentlydelete:not(.-textonly){background:#c0392b;border-color:#c0392b;color:#fff}:host .wm-button.-permanentlydelete:not(.-textonly):hover:not(:disabled):not(.disabled):not(.dark),wm-uploader .wm-button.-permanentlydelete:not(.-textonly):hover:not(:disabled):not(.disabled):not(.dark){background:#9a2e22;border-color:#9a2e22}:host .wm-button.-pairnegative,wm-uploader .wm-button.-pairnegative{background:#cc4c3e;border-color:#cc4c3e;color:#fff}:host .wm-button.-pairnegative:hover:not(:disabled):not(.disabled),wm-uploader .wm-button.-pairnegative:hover:not(:disabled):not(.disabled){background:#a33d32;border-color:#a33d32}:host .wm-button.-pairpositive,wm-uploader .wm-button.-pairpositive{background:#15868d;border-color:#15868d;color:#fff}:host .wm-button.-pairpositive:hover:not(:disabled):not(.disabled),wm-uploader .wm-button.-pairpositive:hover:not(:disabled):not(.disabled){background:#116b71;border-color:#116b71}:host .wm-button.-selector,wm-uploader .wm-button.-selector,:host .wm-button.-selector-primary,wm-uploader .wm-button.-selector-primary{-webkit-border-radius:3px;-moz-border-radius:3px;-ms-border-radius:3px;border-radius:3px;display:block;background:transparent;border:2px solid #575195;border-radius:3px;height:2.75rem;min-width:11.4375rem;padding:0 1.875rem 0 0.9375rem;line-height:normal;font-family:inherit;color:#575195;font-weight:700;font-size:0.75rem;text-transform:uppercase;letter-spacing:0.01875rem;text-align:left}@media screen and (min-width: 48rem){:host .wm-button.-selector,wm-uploader .wm-button.-selector,:host .wm-button.-selector-primary,wm-uploader .wm-button.-selector-primary{height:2.5rem}}:host .wm-button.-selector:before,wm-uploader .wm-button.-selector:before,:host .wm-button.-selector-primary:before,wm-uploader .wm-button.-selector-primary:before{display:inline-block;font:normal normal normal 24px/1 \"Material Design Icons\";font-size:inherit;text-rendering:auto;line-height:inherit;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;content:\"\\f140\";position:absolute;right:0.5625rem;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%);font-size:0.875rem;font-weight:700;pointer-events:none}:host .wm-button.-selector:active,wm-uploader .wm-button.-selector:active,:host .wm-button.-selector-primary:active,wm-uploader .wm-button.-selector-primary:active{-ms-transform:scale(1, 1) !important;-webkit-transform:scale(1, 1) !important;transform:scale(1, 1) !important}:host .wm-button.-selector::-moz-focus-inner,wm-uploader .wm-button.-selector::-moz-focus-inner,:host .wm-button.-selector-primary::-moz-focus-inner,wm-uploader .wm-button.-selector-primary::-moz-focus-inner{border:0}:host .wm-button.-selector .overflowcontrol,wm-uploader .wm-button.-selector .overflowcontrol,:host .wm-button.-selector-primary .overflowcontrol,wm-uploader .wm-button.-selector-primary .overflowcontrol{display:block;white-space:nowrap;text-overflow:ellipsis;overflow:visible}:host .wm-button.-selector-primary,wm-uploader .wm-button.-selector-primary{background:#575195;color:#fff}:host .wm-button.-selector-primary:hover:not(:disabled):not(.disabled),wm-uploader .wm-button.-selector-primary:hover:not(:disabled):not(.disabled){background:#464177}:host .wm-button:disabled,wm-uploader .wm-button:disabled,:host .wm-button.disabled,wm-uploader .wm-button.disabled{background:inherit;border-color:#737373;color:#737373;cursor:default;pointer-events:none}:host .wm-button:disabled.-primary,wm-uploader .wm-button:disabled.-primary,:host .wm-button:disabled.-permanentlydelete,wm-uploader .wm-button:disabled.-permanentlydelete,:host .wm-button:disabled.-pairnegative,wm-uploader .wm-button:disabled.-pairnegative,:host .wm-button:disabled.-pairpositive,wm-uploader .wm-button:disabled.-pairpositive,:host .wm-button.disabled.-primary,wm-uploader .wm-button.disabled.-primary,:host .wm-button.disabled.-permanentlydelete,wm-uploader .wm-button.disabled.-permanentlydelete,:host .wm-button.disabled.-pairnegative,wm-uploader .wm-button.disabled.-pairnegative,:host .wm-button.disabled.-pairpositive,wm-uploader .wm-button.disabled.-pairpositive{background:#737373;color:#fff;border-color:#737373}:host .wm-button:disabled.-secondary,wm-uploader .wm-button:disabled.-secondary,:host .wm-button.disabled.-secondary,wm-uploader .wm-button.disabled.-secondary{-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none}:host .wm-button:disabled.-selector,wm-uploader .wm-button:disabled.-selector,:host .wm-button.disabled.-selector,wm-uploader .wm-button.disabled.-selector{color:#737373}:host .wm-button:disabled.-selector-primary,wm-uploader .wm-button:disabled.-selector-primary,:host .wm-button.disabled.-selector-primary,wm-uploader .wm-button.disabled.-selector-primary{background:#737373;color:#fff;border-color:#737373}:host .wm-button:disabled.-textonly,wm-uploader .wm-button:disabled.-textonly,:host .wm-button.disabled.-textonly,wm-uploader .wm-button.disabled.-textonly{color:#6b6b6b;background:transparent}:host .wm-button:disabled.dark.-secondary:not(.-permanentlydelete),wm-uploader .wm-button:disabled.dark.-secondary:not(.-permanentlydelete),:host .wm-button:disabled.dark.-textonly,wm-uploader .wm-button:disabled.dark.-textonly,:host .wm-button:disabled.dark.-navigational,wm-uploader .wm-button:disabled.dark.-navigational,:host .wm-button:disabled.dark.-icononly,wm-uploader .wm-button:disabled.dark.-icononly,:host .wm-button.disabled.dark.-secondary:not(.-permanentlydelete),wm-uploader .wm-button.disabled.dark.-secondary:not(.-permanentlydelete),:host .wm-button.disabled.dark.-textonly,wm-uploader .wm-button.disabled.dark.-textonly,:host .wm-button.disabled.dark.-navigational,wm-uploader .wm-button.disabled.dark.-navigational,:host .wm-button.disabled.dark.-icononly,wm-uploader .wm-button.disabled.dark.-icononly{color:#b5b5b5;border-color:#b5b5b5}:host .wm-button:disabled.dark.-primary,wm-uploader .wm-button:disabled.dark.-primary,:host .wm-button:disabled.dark.-permanentlydelete:not(.-textonly),wm-uploader .wm-button:disabled.dark.-permanentlydelete:not(.-textonly),:host .wm-button.disabled.dark.-primary,wm-uploader .wm-button.disabled.dark.-primary,:host .wm-button.disabled.dark.-permanentlydelete:not(.-textonly),wm-uploader .wm-button.disabled.dark.-permanentlydelete:not(.-textonly){background:#a6a6a6;border-color:#a6a6a6;color:#353b48}:host a.wm-button,wm-uploader a.wm-button,:host label.wm-button,wm-uploader label.wm-button{height:auto;padding-top:0.75rem;padding-bottom:0.75rem}:host,wm-uploader{display:block;position:relative;max-width:1140px}:host[dir=RTL] .mdi,wm-uploader[dir=RTL] .mdi{margin-left:0.3125rem;margin-right:0}:host input:focus+.wm-button.user-is-tabbing,wm-uploader input:focus+.wm-button.user-is-tabbing{-webkit-box-shadow:0 2px 2px 0 rgba(244, 243, 246, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.1), 0 0 4px 3px #61279e !important;-moz-box-shadow:0 2px 2px 0 rgba(244, 243, 246, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.1), 0 0 4px 3px #61279e !important;box-shadow:0 2px 2px 0 rgba(244, 243, 246, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.1), 0 0 4px 3px #61279e !important}:host *,wm-uploader *{-webkit-box-sizing:border-box;box-sizing:border-box}.wm-button.disabled{pointer-events:initial !important}.header{margin-bottom:2.5rem}.header .info-wrapper{-ms-flex-align:center;align-items:center}.header .info-wrapper .info{font-size:0.875rem;margin-left:1rem}.header .accepted-types{font-size:0.875rem}.header .requirements{font-size:0.875rem;margin-left:1rem}.footer{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-align:end;align-items:flex-end;padding:0.9375rem 1.875rem}.footer .notif-wrapper{-ms-flex-align:end;align-items:flex-end}.footer .filecount-wrapper{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center}.footer .filecount-wrapper .filecount{font-size:0.875rem;margin-right:1rem}.notif-wrapper{position:relative;display:-ms-flexbox;display:flex;-ms-flex-direction:row;flex-direction:row;margin-bottom:0.75rem}.notif-wrapper .requirements{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column}.notif{padding-top:0.25rem;font-size:0.875rem;font-style:italic}.notif.error{color:#c0392b}.info-wrapper{position:relative;display:-ms-flexbox;display:flex}.list-container{overflow-y:unset}.list-container.checkmark-spacer{margin-right:2.75rem}.list-container ul{padding:0;width:100%;margin:0}.list-container ul wm-file{margin-bottom:0.5rem}.sr-only{position:absolute !important;width:1px !important;height:1px !important;padding:0 !important;border:0 !important;overflow:hidden !important;clip:rect(0, 0, 0, 0) !important;-webkit-clip-path:inset(50%) !important;clip-path:inset(50%) !important;white-space:nowrap !important;margin:-1px !important}.empty-block{margin:5rem auto;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-align:center;align-items:center}.empty-block .upload-file{margin-bottom:1.875rem}.empty-block .empty-message{font-size:0.875rem;margin-bottom:0.4375rem}.empty-block .empty-message.large{font-size:1.5rem}.empty-block .info-wrapper{-ms-flex-pack:center;justify-content:center;width:100%}.empty-block .info-wrapper .wm-button{width:auto}.header.type1,.header.type2{margin-bottom:1rem}.header .slot-wrapper{display:-ms-flexbox;display:flex;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-align:start;align-items:flex-start}.notif-wrapper.type1,.notif-wrapper.type2{-ms-flex-direction:column;flex-direction:column;margin-bottom:1rem}.list-container.type1,.list-container.type2{overflow-y:auto}.list-container.type1 ul,.list-container.type2 ul{margin:revert}.list-container.type1 .file-list li,.list-container.type1 .inprogress-list li,.list-container.type2 .file-list li,.list-container.type2 .inprogress-list li{margin-bottom:1.625rem}.list-container.type1 .error-list li,.list-container.type2 .error-list li{margin-bottom:1.25rem}.list-container.type1{padding:0 1.875rem;height:16.25rem}";
|
|
8
|
+
const wmUploaderCss = ":host .wm-button,wm-uploader .wm-button{-ms-transition:background-color 500ms cubic-bezier(0.4, 0, 0.2, 1), color 500ms cubic-bezier(0.4, 0, 0.2, 1), border 500ms cubic-bezier(0.4, 0, 0.2, 1);-webkit-transition:background-color 500ms cubic-bezier(0.4, 0, 0.2, 1), color 500ms cubic-bezier(0.4, 0, 0.2, 1), border 500ms cubic-bezier(0.4, 0, 0.2, 1);-moz-transition:background-color 500ms cubic-bezier(0.4, 0, 0.2, 1), color 500ms cubic-bezier(0.4, 0, 0.2, 1), border 500ms cubic-bezier(0.4, 0, 0.2, 1);transition:background-color 500ms cubic-bezier(0.4, 0, 0.2, 1), color 500ms cubic-bezier(0.4, 0, 0.2, 1), border 500ms cubic-bezier(0.4, 0, 0.2, 1);-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;border-radius:5px;width:inherit;border:2px solid #575195;color:#575195;font-family:inherit;font-size:0.75rem;font-weight:700;height:2.75rem;padding:0 1.3333333333em;cursor:pointer;position:relative;background:#fff;display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center;-ms-flex-align:center;align-items:center;text-decoration:none;text-transform:uppercase;letter-spacing:0.01875rem;overflow-wrap:break-word;word-wrap:break-word;word-break:break-word;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none}@media screen and (min-width: 48rem){:host .wm-button,wm-uploader .wm-button{height:3.3333333333em}}:host .wm-button.nowrap,wm-uploader .wm-button.nowrap{display:inline-block;width:100%;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}:host .wm-button:focus,wm-uploader .wm-button:focus{outline:none;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none}:host .wm-button::-moz-focus-inner,wm-uploader .wm-button::-moz-focus-inner{border:0;outline:none}:host .wm-button.user-is-tabbing:focus:not(:disabled):not(.disabled) :host .wm-button.-textonly .button-text,wm-uploader .wm-button.user-is-tabbing:focus:not(:disabled):not(.disabled) :host .wm-button.-textonly .button-text,:host .wm-button.user-is-tabbing:focus:not(:disabled):not(.disabled) wm-uploader .wm-button.-textonly .button-text,wm-uploader .wm-button.user-is-tabbing:focus:not(:disabled):not(.disabled) wm-uploader .wm-button.-textonly .button-text{background:-webkit-gradient(linear, left top, right top, color-stop(66%, #3862e9), color-stop(0, transparent)) repeat-x;background:linear-gradient(90deg, #3862e9 66%, transparent 0) repeat-x;background-size:6px 3px;background-position:0 1em;border-radius:0;line-height:normal}:host .wm-button.user-is-tabbing:focus:not(.-textonly):not(:disabled):not(.disabled),wm-uploader .wm-button.user-is-tabbing:focus:not(.-textonly):not(:disabled):not(.disabled){-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none}:host .wm-button.user-is-tabbing:focus:not(.-textonly):not(:disabled):not(.disabled):not(.dark),wm-uploader .wm-button.user-is-tabbing:focus:not(.-textonly):not(:disabled):not(.disabled):not(.dark){-webkit-box-shadow:0 2px 2px 0 rgba(244, 243, 246, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.1), 0 0 4px 3px #61279e;-moz-box-shadow:0 2px 2px 0 rgba(244, 243, 246, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.1), 0 0 4px 3px #61279e;box-shadow:0 2px 2px 0 rgba(244, 243, 246, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.1), 0 0 4px 3px #61279e}:host .wm-button.user-is-tabbing:focus:not(.-textonly):not(:disabled):not(.disabled):not(.dark)::-moz-focus-inner,wm-uploader .wm-button.user-is-tabbing:focus:not(.-textonly):not(:disabled):not(.disabled):not(.dark)::-moz-focus-inner{border:0}:host .wm-button.dark:not(.-textonly):not(:disabled):not(.disabled),wm-uploader .wm-button.dark:not(.-textonly):not(:disabled):not(.disabled){background:transparent;border:2px solid #fff;color:#fff}:host .wm-button.dark:not(.-textonly):not(:disabled):not(.disabled):hover,wm-uploader .wm-button.dark:not(.-textonly):not(:disabled):not(.disabled):hover{color:#575195;background:#e6e6e6;border:2px solid #e6e6e6}:host .wm-button.dark.user-is-tabbing:focus:not(.-textonly):not(:disabled):not(.disabled).dark,wm-uploader .wm-button.dark.user-is-tabbing:focus:not(.-textonly):not(:disabled):not(.disabled).dark{-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;-webkit-box-shadow:0 2px 2px 0 rgba(244, 243, 246, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.1), 0 0 4px 3px #c6b4e3;-moz-box-shadow:0 2px 2px 0 rgba(244, 243, 246, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.1), 0 0 4px 3px #c6b4e3;box-shadow:0 2px 2px 0 rgba(244, 243, 246, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.1), 0 0 4px 3px #c6b4e3;outline:none}:host .wm-button:active:not(:disabled):not(.disabled):not(.-textonly):not(.-actionbutton):not(.displayedoption),wm-uploader .wm-button:active:not(:disabled):not(.disabled):not(.-textonly):not(.-actionbutton):not(.displayedoption){-ms-transform:scale(0.9, 0.9);-webkit-transform:scale(0.9, 0.9);-moz-transform:scale(0.9, 0.9);transform:scale(0.9, 0.9)}:host .wm-button .mdi,wm-uploader .wm-button .mdi{display:inline-block;font:normal normal normal 24px/1 \"Material Design Icons\";font-size:inherit;text-rendering:auto;line-height:inherit;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}:host .wm-button:not(.-icononly):not(.-navigational) .mdi,wm-uploader .wm-button:not(.-icononly):not(.-navigational) .mdi{margin-right:0.3125rem}:host .wm-button[dir=RTL] :not(.-icononly) .mdi,wm-uploader .wm-button[dir=RTL] :not(.-icononly) .mdi{margin-left:0.3125rem;margin-right:0}:host .wm-button.-primary:not(.-textonly),wm-uploader .wm-button.-primary:not(.-textonly){background:#575195;color:#fff}:host .wm-button.-primary:not(.-textonly):not(:focus),wm-uploader .wm-button.-primary:not(.-textonly):not(:focus){-webkit-box-shadow:0 2px 2px 0 rgba(87, 81, 149, 0.12), 0 2px 2px 0 rgba(0, 0, 0, 0.2);-moz-box-shadow:0 2px 2px 0 rgba(87, 81, 149, 0.12), 0 2px 2px 0 rgba(0, 0, 0, 0.2);box-shadow:0 2px 2px 0 rgba(87, 81, 149, 0.12), 0 2px 2px 0 rgba(0, 0, 0, 0.2)}:host .wm-button.-primary:not(.-textonly):hover:not(:disabled):not(.disabled),wm-uploader .wm-button.-primary:not(.-textonly):hover:not(:disabled):not(.disabled){background:#464177}:host .wm-button.-primary:not(.-textonly).dark:not(:disabled):not(.disabled),wm-uploader .wm-button.-primary:not(.-textonly).dark:not(:disabled):not(.disabled){color:#575195;background:#fff;border:2px solid #fff}:host .wm-button.-primary:not(.-textonly).dark:not(:disabled):not(.disabled):hover,wm-uploader .wm-button.-primary:not(.-textonly).dark:not(:disabled):not(.disabled):hover{color:#575195;background:#e6e6e6;border:2px solid #e6e6e6}:host .wm-button.-secondary:hover:not(:disabled):not(.disabled),wm-uploader .wm-button.-secondary:hover:not(:disabled):not(.disabled),:host .wm-button.-selector:hover:not(:disabled):not(.disabled),wm-uploader .wm-button.-selector:hover:not(:disabled):not(.disabled),:host .wm-button.-icononly:hover:not(:disabled):not(.disabled),wm-uploader .wm-button.-icononly:hover:not(:disabled):not(.disabled){background:#464177;color:#fff}:host .wm-button.-textonly,wm-uploader .wm-button.-textonly{-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;display:inline-block;letter-spacing:0;text-transform:none;text-align:initial;font-size:0.875rem;border:none;background:transparent;padding-left:0;padding-right:0;height:auto;border-radius:0;line-height:1}:host .wm-button.-textonly+.-textonly,wm-uploader .wm-button.-textonly+.-textonly{margin-left:0.3125rem}:host .wm-button.-textonly:focus,wm-uploader .wm-button.-textonly:focus{outline:none}:host .wm-button.-textonly::-moz-focus-inner,wm-uploader .wm-button.-textonly::-moz-focus-inner{border:0;outline:none}:host .wm-button.-textonly.user-is-tabbing:focus:not(:disabled):not(.disabled) .button-text,wm-uploader .wm-button.-textonly.user-is-tabbing:focus:not(:disabled):not(.disabled) .button-text{background:-webkit-gradient(linear, left top, right top, color-stop(66%, #3862e9), color-stop(0, transparent)) repeat-x;background:linear-gradient(90deg, #3862e9 66%, transparent 0) repeat-x;background-size:6px 3px;background-position:0 1em;border-radius:0;line-height:normal}:host .wm-button.-textonly.user-is-tabbing:focus:not(:disabled):not(.disabled).dark .button-text,wm-uploader .wm-button.-textonly.user-is-tabbing:focus:not(:disabled):not(.disabled).dark .button-text{background:-webkit-gradient(linear, left top, right top, color-stop(66%, #fff), color-stop(0, transparent)) repeat-x;background:linear-gradient(90deg, #fff 66%, transparent 0) repeat-x;background-size:6px 3px;background-position:0 1em;border-radius:0;line-height:normal}:host .wm-button.-textonly.small,wm-uploader .wm-button.-textonly.small{font-size:0.625rem}:host .wm-button.-textonly:hover:not(:disabled):not(.disabled):not(.-permanentlydelete),wm-uploader .wm-button.-textonly:hover:not(:disabled):not(.disabled):not(.-permanentlydelete){text-decoration:underline}:host .wm-button.-textonly.-permanentlydelete,wm-uploader .wm-button.-textonly.-permanentlydelete{color:#c0392b}:host .wm-button.-textonly.-permanentlydelete:hover:not(:disabled):not(.disabled):not(.dark),wm-uploader .wm-button.-textonly.-permanentlydelete:hover:not(:disabled):not(.disabled):not(.dark){text-decoration:underline;color:#c0392b !important}:host .wm-button.-textonly.dark,wm-uploader .wm-button.-textonly.dark{color:#fff}:host .wm-button.-textonly.dark:hover:not(:disabled):not(.disabled),wm-uploader .wm-button.-textonly.dark:hover:not(:disabled):not(.disabled){text-decoration:underline;color:#fff !important}:host .wm-button.-icononly,wm-uploader .wm-button.-icononly,:host .wm-button.-navigational,wm-uploader .wm-button.-navigational{-webkit-border-radius:50%;-moz-border-radius:50%;-ms-border-radius:50%;border-radius:50%;font-size:1rem;padding:0;height:auto;line-height:1;min-width:2.75rem;min-height:2.75rem;text-align:center;letter-spacing:normal}:host .wm-button.-icononly:not(:focus),wm-uploader .wm-button.-icononly:not(:focus),:host .wm-button.-navigational:not(:focus),wm-uploader .wm-button.-navigational:not(:focus){-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none}@media screen and (min-width: 48rem){:host .wm-button.-icononly,wm-uploader .wm-button.-icononly,:host .wm-button.-navigational,wm-uploader .wm-button.-navigational{min-width:2.5rem;min-height:2.5rem}}:host .wm-button.-icononly,wm-uploader .wm-button.-icononly{border-width:1px !important}:host .wm-button.-icononly:before,wm-uploader .wm-button.-icononly:before{display:inline-block;font:normal normal normal 24px/1 \"Material Design Icons\";font-size:inherit;text-rendering:auto;line-height:inherit;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}:host .wm-button.-navigational,wm-uploader .wm-button.-navigational{border:none !important;background-color:transparent}:host .wm-button.-navigational:not(.dark):not(:disabled):not(.disabled),wm-uploader .wm-button.-navigational:not(.dark):not(:disabled):not(.disabled){color:#575195}:host .wm-button.-navigational:not(.dark):not(:disabled):not(.disabled):hover,wm-uploader .wm-button.-navigational:not(.dark):not(:disabled):not(.disabled):hover,:host .wm-button.-navigational:not(.dark):not(:disabled):not(.disabled).selected,wm-uploader .wm-button.-navigational:not(.dark):not(:disabled):not(.disabled).selected{background-color:#d7d6d9}:host .wm-button.-navigational:before,wm-uploader .wm-button.-navigational:before{display:inline-block;font:normal normal normal 24px/1 \"Material Design Icons\";font-size:inherit;text-rendering:auto;line-height:inherit;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}:host .wm-button.-permanentlydelete:not(.-textonly),wm-uploader .wm-button.-permanentlydelete:not(.-textonly){background:#c0392b;border-color:#c0392b;color:#fff}:host .wm-button.-permanentlydelete:not(.-textonly):hover:not(:disabled):not(.disabled):not(.dark),wm-uploader .wm-button.-permanentlydelete:not(.-textonly):hover:not(:disabled):not(.disabled):not(.dark){background:#9a2e22;border-color:#9a2e22}:host .wm-button.-pairnegative,wm-uploader .wm-button.-pairnegative{background:#cc4c3e;border-color:#cc4c3e;color:#fff}:host .wm-button.-pairnegative:hover:not(:disabled):not(.disabled),wm-uploader .wm-button.-pairnegative:hover:not(:disabled):not(.disabled){background:#a33d32;border-color:#a33d32}:host .wm-button.-pairpositive,wm-uploader .wm-button.-pairpositive{background:#15868d;border-color:#15868d;color:#fff}:host .wm-button.-pairpositive:hover:not(:disabled):not(.disabled),wm-uploader .wm-button.-pairpositive:hover:not(:disabled):not(.disabled){background:#116b71;border-color:#116b71}:host .wm-button.-selector,wm-uploader .wm-button.-selector,:host .wm-button.-selector-primary,wm-uploader .wm-button.-selector-primary{-webkit-border-radius:3px;-moz-border-radius:3px;-ms-border-radius:3px;border-radius:3px;display:block;background:transparent;border:2px solid #575195;border-radius:3px;height:2.75rem;min-width:11.4375rem;padding:0 1.875rem 0 0.9375rem;line-height:normal;font-family:inherit;color:#575195;font-weight:700;font-size:0.75rem;text-transform:uppercase;letter-spacing:0.01875rem;text-align:left}@media screen and (min-width: 48rem){:host .wm-button.-selector,wm-uploader .wm-button.-selector,:host .wm-button.-selector-primary,wm-uploader .wm-button.-selector-primary{height:2.5rem}}:host .wm-button.-selector:before,wm-uploader .wm-button.-selector:before,:host .wm-button.-selector-primary:before,wm-uploader .wm-button.-selector-primary:before{display:inline-block;font:normal normal normal 24px/1 \"Material Design Icons\";font-size:inherit;text-rendering:auto;line-height:inherit;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;content:\"\\f140\";position:absolute;right:0.5625rem;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%);font-size:0.875rem;font-weight:700;pointer-events:none}:host .wm-button.-selector:active,wm-uploader .wm-button.-selector:active,:host .wm-button.-selector-primary:active,wm-uploader .wm-button.-selector-primary:active{-ms-transform:scale(1, 1) !important;-webkit-transform:scale(1, 1) !important;transform:scale(1, 1) !important}:host .wm-button.-selector::-moz-focus-inner,wm-uploader .wm-button.-selector::-moz-focus-inner,:host .wm-button.-selector-primary::-moz-focus-inner,wm-uploader .wm-button.-selector-primary::-moz-focus-inner{border:0}:host .wm-button.-selector .overflowcontrol,wm-uploader .wm-button.-selector .overflowcontrol,:host .wm-button.-selector-primary .overflowcontrol,wm-uploader .wm-button.-selector-primary .overflowcontrol{display:block;white-space:nowrap;text-overflow:ellipsis;overflow:visible}:host .wm-button.-selector.dark:not(:disabled):not(.disabled):hover,wm-uploader .wm-button.-selector.dark:not(:disabled):not(.disabled):hover,:host .wm-button.-selector-primary.dark:not(:disabled):not(.disabled):hover,wm-uploader .wm-button.-selector-primary.dark:not(:disabled):not(.disabled):hover{color:#575195;background:#e6e6e6;border:2px solid #e6e6e6}:host .wm-button.-selector-primary,wm-uploader .wm-button.-selector-primary{background:#575195;color:#fff}:host .wm-button.-selector-primary:hover:not(:disabled):not(.disabled),wm-uploader .wm-button.-selector-primary:hover:not(:disabled):not(.disabled){background:#464177}:host .wm-button.-selector-primary.dark:not(:disabled):not(.disabled),wm-uploader .wm-button.-selector-primary.dark:not(:disabled):not(.disabled){color:#575195;background:#fff;border:2px solid #fff}:host .wm-button:disabled,wm-uploader .wm-button:disabled,:host .wm-button.disabled,wm-uploader .wm-button.disabled{background:inherit;border-color:#737373;color:#737373;cursor:default;pointer-events:none}:host .wm-button:disabled.-primary,wm-uploader .wm-button:disabled.-primary,:host .wm-button:disabled.-permanentlydelete,wm-uploader .wm-button:disabled.-permanentlydelete,:host .wm-button:disabled.-pairnegative,wm-uploader .wm-button:disabled.-pairnegative,:host .wm-button:disabled.-pairpositive,wm-uploader .wm-button:disabled.-pairpositive,:host .wm-button.disabled.-primary,wm-uploader .wm-button.disabled.-primary,:host .wm-button.disabled.-permanentlydelete,wm-uploader .wm-button.disabled.-permanentlydelete,:host .wm-button.disabled.-pairnegative,wm-uploader .wm-button.disabled.-pairnegative,:host .wm-button.disabled.-pairpositive,wm-uploader .wm-button.disabled.-pairpositive{background:#737373;color:#fff;border-color:#737373}:host .wm-button:disabled.-secondary,wm-uploader .wm-button:disabled.-secondary,:host .wm-button.disabled.-secondary,wm-uploader .wm-button.disabled.-secondary{-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none}:host .wm-button:disabled.-selector,wm-uploader .wm-button:disabled.-selector,:host .wm-button.disabled.-selector,wm-uploader .wm-button.disabled.-selector{color:#737373}:host .wm-button:disabled.-selector-primary,wm-uploader .wm-button:disabled.-selector-primary,:host .wm-button.disabled.-selector-primary,wm-uploader .wm-button.disabled.-selector-primary{background:#737373;color:#fff;border-color:#737373}:host .wm-button:disabled.-textonly,wm-uploader .wm-button:disabled.-textonly,:host .wm-button.disabled.-textonly,wm-uploader .wm-button.disabled.-textonly{color:#6b6b6b;background:transparent}:host .wm-button:disabled.dark.-secondary:not(.-permanentlydelete),wm-uploader .wm-button:disabled.dark.-secondary:not(.-permanentlydelete),:host .wm-button:disabled.dark.-selector,wm-uploader .wm-button:disabled.dark.-selector,:host .wm-button:disabled.dark.-textonly,wm-uploader .wm-button:disabled.dark.-textonly,:host .wm-button:disabled.dark.-navigational,wm-uploader .wm-button:disabled.dark.-navigational,:host .wm-button:disabled.dark.-icononly,wm-uploader .wm-button:disabled.dark.-icononly,:host .wm-button.disabled.dark.-secondary:not(.-permanentlydelete),wm-uploader .wm-button.disabled.dark.-secondary:not(.-permanentlydelete),:host .wm-button.disabled.dark.-selector,wm-uploader .wm-button.disabled.dark.-selector,:host .wm-button.disabled.dark.-textonly,wm-uploader .wm-button.disabled.dark.-textonly,:host .wm-button.disabled.dark.-navigational,wm-uploader .wm-button.disabled.dark.-navigational,:host .wm-button.disabled.dark.-icononly,wm-uploader .wm-button.disabled.dark.-icononly{color:#b5b5b5;border-color:#b5b5b5}:host .wm-button:disabled.dark.-primary,wm-uploader .wm-button:disabled.dark.-primary,:host .wm-button:disabled.dark.-selector-primary,wm-uploader .wm-button:disabled.dark.-selector-primary,:host .wm-button:disabled.dark.-permanentlydelete:not(.-textonly),wm-uploader .wm-button:disabled.dark.-permanentlydelete:not(.-textonly),:host .wm-button.disabled.dark.-primary,wm-uploader .wm-button.disabled.dark.-primary,:host .wm-button.disabled.dark.-selector-primary,wm-uploader .wm-button.disabled.dark.-selector-primary,:host .wm-button.disabled.dark.-permanentlydelete:not(.-textonly),wm-uploader .wm-button.disabled.dark.-permanentlydelete:not(.-textonly){background:#a6a6a6;border-color:#a6a6a6;color:#353b48}:host a.wm-button,wm-uploader a.wm-button,:host label.wm-button,wm-uploader label.wm-button{height:auto;padding-top:0.75rem;padding-bottom:0.75rem}:host,wm-uploader{display:block;position:relative;max-width:1140px}:host[dir=RTL] .mdi,wm-uploader[dir=RTL] .mdi{margin-left:0.3125rem;margin-right:0}:host input:focus+.wm-button.user-is-tabbing,wm-uploader input:focus+.wm-button.user-is-tabbing{-webkit-box-shadow:0 2px 2px 0 rgba(244, 243, 246, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.1), 0 0 4px 3px #61279e !important;-moz-box-shadow:0 2px 2px 0 rgba(244, 243, 246, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.1), 0 0 4px 3px #61279e !important;box-shadow:0 2px 2px 0 rgba(244, 243, 246, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.1), 0 0 4px 3px #61279e !important}:host *,wm-uploader *{-webkit-box-sizing:border-box;box-sizing:border-box}.wm-button.disabled{pointer-events:initial !important}.header{margin-bottom:2.5rem}.header .info-wrapper{-ms-flex-align:center;align-items:center}.header .info-wrapper .info{font-size:0.875rem;margin-left:1rem}.header .accepted-types{font-size:0.875rem}.header .requirements{font-size:0.875rem;margin-left:1rem}.footer{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-align:end;align-items:flex-end;padding:0.9375rem 1.875rem}.footer .notif-wrapper{-ms-flex-align:end;align-items:flex-end}.footer .filecount-wrapper{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center}.footer .filecount-wrapper .filecount{font-size:0.875rem;margin-right:1rem}.notif-wrapper{position:relative;display:-ms-flexbox;display:flex;-ms-flex-direction:row;flex-direction:row;margin-bottom:0.75rem}.notif-wrapper .requirements{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column}.notif{padding-top:0.25rem;font-size:0.875rem;font-style:italic}.notif.error{color:#c0392b}.info-wrapper{position:relative;display:-ms-flexbox;display:flex}.list-container{overflow-y:unset}.list-container.checkmark-spacer{margin-right:2.75rem}.list-container ul{padding:0;width:100%;margin:0}.list-container ul wm-file{margin-bottom:0.5rem}.sr-only{position:absolute !important;width:1px !important;height:1px !important;padding:0 !important;border:0 !important;overflow:hidden !important;clip:rect(0, 0, 0, 0) !important;-webkit-clip-path:inset(50%) !important;clip-path:inset(50%) !important;white-space:nowrap !important;margin:-1px !important}.empty-block{margin:5rem auto;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-align:center;align-items:center}.empty-block .upload-file{margin-bottom:1.875rem}.empty-block .empty-message{font-size:0.875rem;margin-bottom:0.4375rem}.empty-block .empty-message.large{font-size:1.5rem}.empty-block .info-wrapper{-ms-flex-pack:center;justify-content:center;width:100%}.empty-block .info-wrapper .wm-button{width:auto}.header.type1,.header.type2{margin-bottom:1rem}.header .slot-wrapper{display:-ms-flexbox;display:flex;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-align:start;align-items:flex-start}.notif-wrapper.type1,.notif-wrapper.type2{-ms-flex-direction:column;flex-direction:column;margin-bottom:1rem}.list-container.type1,.list-container.type2{overflow-y:auto}.list-container.type1 ul,.list-container.type2 ul{margin:revert}.list-container.type1 .file-list li,.list-container.type1 .inprogress-list li,.list-container.type2 .file-list li,.list-container.type2 .inprogress-list li{margin-bottom:1.625rem}.list-container.type1 .error-list li,.list-container.type2 .error-list li{margin-bottom:1.25rem}.list-container.type1{padding:0 1.875rem;height:16.25rem}";
|
|
9
9
|
|
|
10
10
|
const Uploader = class {
|
|
11
11
|
constructor(hostRef) {
|
|
@@ -206,7 +206,7 @@ export class ActionMenu {
|
|
|
206
206
|
render() {
|
|
207
207
|
return (h(Host, { onBlur: () => this.close(false) },
|
|
208
208
|
h("div", { class: getTextDir() },
|
|
209
|
-
h("wm-button", { "button-type": this.internalButtonType, tooltip: this.tooltip, "label-for-identical-buttons": this.labelForIdenticalButtons, icon: this.tempActionMenuType === "icon" ? "f1d9" : "", id: `menubtn-${this.uid}`, onClick: () => (this.isExpanded ? this.close() : this.open()), onBlur: (ev) => this.handleButtonBlur(ev), disabled: this.disabled, ref: (el) => (this.wmButtonEl = el), "tooltip-position": this.tooltipPosition || this.horizontalPosition, "aria-haspopup": "true", "aria-expanded": this.isExpanded ? "true" : "false", "aria-controls": `menu-${this.uid}` }, this.buttonText),
|
|
209
|
+
h("wm-button", { "button-type": this.internalButtonType, tooltip: this.tooltip, "custom-background": this.darkMode ? "dark" : undefined, "label-for-identical-buttons": this.labelForIdenticalButtons, icon: this.tempActionMenuType === "icon" ? "f1d9" : "", id: `menubtn-${this.uid}`, onClick: () => (this.isExpanded ? this.close() : this.open()), onBlur: (ev) => this.handleButtonBlur(ev), disabled: this.disabled, ref: (el) => (this.wmButtonEl = el), "tooltip-position": this.tooltipPosition || this.horizontalPosition, "aria-haspopup": "true", "aria-expanded": this.isExpanded ? "true" : "false", "aria-controls": `menu-${this.uid}` }, this.buttonText),
|
|
210
210
|
h("div", { class: `dropdown ${this.openUp ? "open-up" : ""} ${this.horizontalPosition} ${this.isExpanded ? "open" : ""} hidden`, id: `menu-${this.uid}`, tabindex: -1, role: "menu", ref: (el) => (this.itemsEl = el) },
|
|
211
211
|
h("slot", null)))));
|
|
212
212
|
}
|
|
@@ -341,6 +341,23 @@ export class ActionMenu {
|
|
|
341
341
|
},
|
|
342
342
|
"attribute": "label-for-identical-buttons",
|
|
343
343
|
"reflect": false
|
|
344
|
+
},
|
|
345
|
+
"darkMode": {
|
|
346
|
+
"type": "boolean",
|
|
347
|
+
"mutable": false,
|
|
348
|
+
"complexType": {
|
|
349
|
+
"original": "boolean",
|
|
350
|
+
"resolved": "boolean | undefined",
|
|
351
|
+
"references": {}
|
|
352
|
+
},
|
|
353
|
+
"required": false,
|
|
354
|
+
"optional": true,
|
|
355
|
+
"docs": {
|
|
356
|
+
"tags": [],
|
|
357
|
+
"text": ""
|
|
358
|
+
},
|
|
359
|
+
"attribute": "dark-mode",
|
|
360
|
+
"reflect": false
|
|
344
361
|
}
|
|
345
362
|
}; }
|
|
346
363
|
static get states() { return {
|
|
@@ -449,6 +449,13 @@ wm-button .wm-button.-selector-primary .overflowcontrol {
|
|
|
449
449
|
text-overflow: ellipsis;
|
|
450
450
|
overflow: visible;
|
|
451
451
|
}
|
|
452
|
+
:host .wm-button.-selector.dark:not(:disabled):not(.disabled):hover,
|
|
453
|
+
wm-button .wm-button.-selector.dark:not(:disabled):not(.disabled):hover, :host .wm-button.-selector-primary.dark:not(:disabled):not(.disabled):hover,
|
|
454
|
+
wm-button .wm-button.-selector-primary.dark:not(:disabled):not(.disabled):hover {
|
|
455
|
+
color: #575195;
|
|
456
|
+
background: #e6e6e6;
|
|
457
|
+
border: 2px solid #e6e6e6;
|
|
458
|
+
}
|
|
452
459
|
:host .wm-button.-selector-primary,
|
|
453
460
|
wm-button .wm-button.-selector-primary {
|
|
454
461
|
background: #575195;
|
|
@@ -458,6 +465,12 @@ wm-button .wm-button.-selector-primary {
|
|
|
458
465
|
wm-button .wm-button.-selector-primary:hover:not(:disabled):not(.disabled) {
|
|
459
466
|
background: #464177;
|
|
460
467
|
}
|
|
468
|
+
:host .wm-button.-selector-primary.dark:not(:disabled):not(.disabled),
|
|
469
|
+
wm-button .wm-button.-selector-primary.dark:not(:disabled):not(.disabled) {
|
|
470
|
+
color: #575195;
|
|
471
|
+
background: #fff;
|
|
472
|
+
border: 2px solid #fff;
|
|
473
|
+
}
|
|
461
474
|
:host .wm-button:disabled,
|
|
462
475
|
wm-button .wm-button:disabled, :host .wm-button.disabled,
|
|
463
476
|
wm-button .wm-button.disabled {
|
|
@@ -506,11 +519,13 @@ wm-button .wm-button.disabled.-textonly {
|
|
|
506
519
|
background: transparent;
|
|
507
520
|
}
|
|
508
521
|
:host .wm-button:disabled.dark.-secondary:not(.-permanentlydelete),
|
|
509
|
-
wm-button .wm-button:disabled.dark.-secondary:not(.-permanentlydelete), :host .wm-button:disabled.dark.-
|
|
522
|
+
wm-button .wm-button:disabled.dark.-secondary:not(.-permanentlydelete), :host .wm-button:disabled.dark.-selector,
|
|
523
|
+
wm-button .wm-button:disabled.dark.-selector, :host .wm-button:disabled.dark.-textonly,
|
|
510
524
|
wm-button .wm-button:disabled.dark.-textonly, :host .wm-button:disabled.dark.-navigational,
|
|
511
525
|
wm-button .wm-button:disabled.dark.-navigational, :host .wm-button:disabled.dark.-icononly,
|
|
512
526
|
wm-button .wm-button:disabled.dark.-icononly, :host .wm-button.disabled.dark.-secondary:not(.-permanentlydelete),
|
|
513
|
-
wm-button .wm-button.disabled.dark.-secondary:not(.-permanentlydelete), :host .wm-button.disabled.dark.-
|
|
527
|
+
wm-button .wm-button.disabled.dark.-secondary:not(.-permanentlydelete), :host .wm-button.disabled.dark.-selector,
|
|
528
|
+
wm-button .wm-button.disabled.dark.-selector, :host .wm-button.disabled.dark.-textonly,
|
|
514
529
|
wm-button .wm-button.disabled.dark.-textonly, :host .wm-button.disabled.dark.-navigational,
|
|
515
530
|
wm-button .wm-button.disabled.dark.-navigational, :host .wm-button.disabled.dark.-icononly,
|
|
516
531
|
wm-button .wm-button.disabled.dark.-icononly {
|
|
@@ -518,9 +533,11 @@ wm-button .wm-button.disabled.dark.-icononly {
|
|
|
518
533
|
border-color: #b5b5b5;
|
|
519
534
|
}
|
|
520
535
|
:host .wm-button:disabled.dark.-primary,
|
|
521
|
-
wm-button .wm-button:disabled.dark.-primary, :host .wm-button:disabled.dark.-
|
|
536
|
+
wm-button .wm-button:disabled.dark.-primary, :host .wm-button:disabled.dark.-selector-primary,
|
|
537
|
+
wm-button .wm-button:disabled.dark.-selector-primary, :host .wm-button:disabled.dark.-permanentlydelete:not(.-textonly),
|
|
522
538
|
wm-button .wm-button:disabled.dark.-permanentlydelete:not(.-textonly), :host .wm-button.disabled.dark.-primary,
|
|
523
|
-
wm-button .wm-button.disabled.dark.-primary, :host .wm-button.disabled.dark.-
|
|
539
|
+
wm-button .wm-button.disabled.dark.-primary, :host .wm-button.disabled.dark.-selector-primary,
|
|
540
|
+
wm-button .wm-button.disabled.dark.-selector-primary, :host .wm-button.disabled.dark.-permanentlydelete:not(.-textonly),
|
|
524
541
|
wm-button .wm-button.disabled.dark.-permanentlydelete:not(.-textonly) {
|
|
525
542
|
background: #a6a6a6;
|
|
526
543
|
border-color: #a6a6a6;
|
|
@@ -31,12 +31,30 @@ export class Search {
|
|
|
31
31
|
this.highlightedNum = 0;
|
|
32
32
|
this.previousBlurredValue = "";
|
|
33
33
|
/**
|
|
34
|
-
*
|
|
34
|
+
* Live region announcement
|
|
35
35
|
*/
|
|
36
|
-
this.
|
|
36
|
+
this.announcement = "";
|
|
37
37
|
this.wrapperEl = null;
|
|
38
38
|
this.linkEl = null;
|
|
39
39
|
}
|
|
40
|
+
get resultCount() {
|
|
41
|
+
let message = "";
|
|
42
|
+
const basicMessage = intl.formatMessage({
|
|
43
|
+
id: "search.resultsFound",
|
|
44
|
+
defaultMessage: "{numResults, plural, =0 {No results} one {1 result} other {# results}} found",
|
|
45
|
+
}, { numResults: this.numResults });
|
|
46
|
+
const findMessage = intl.formatMessage({
|
|
47
|
+
id: "search.xOfYResults",
|
|
48
|
+
defaultMessage: "{numResults, plural, =0 {No results found} other {{current} of {numResults} results}}",
|
|
49
|
+
}, { numResults: this.numResults, current: this.highlightedNum });
|
|
50
|
+
if (this.searchType === "basic") {
|
|
51
|
+
message = basicMessage;
|
|
52
|
+
}
|
|
53
|
+
else if (this.searchType === "find") {
|
|
54
|
+
message = findMessage;
|
|
55
|
+
}
|
|
56
|
+
return message;
|
|
57
|
+
}
|
|
40
58
|
toggleTabbingOn() {
|
|
41
59
|
this.isTabbing = true;
|
|
42
60
|
this.linkEl && this.linkEl.classList.remove("sr-only");
|
|
@@ -80,60 +98,31 @@ export class Search {
|
|
|
80
98
|
//For search-and-find, the results should always restart at "[1 or 0] of ..." after any new input.
|
|
81
99
|
//Reset the highlight count here just in case the new value doesn't end up changing the number of results.
|
|
82
100
|
this.resetHighlightCountToStart();
|
|
101
|
+
if (this.value) {
|
|
102
|
+
this.announceChanges();
|
|
103
|
+
}
|
|
83
104
|
}
|
|
84
105
|
resetHighlightCountToStart() {
|
|
85
106
|
if (this.searchType === "find") {
|
|
86
|
-
|
|
87
|
-
this.highlightedNum = 1;
|
|
88
|
-
}
|
|
89
|
-
else {
|
|
90
|
-
this.highlightedNum = 0;
|
|
91
|
-
}
|
|
107
|
+
this.highlightedNum = this.numResults ? 1 : 0;
|
|
92
108
|
}
|
|
93
109
|
}
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
*
|
|
98
|
-
* An update of the props triggers a re-render, so setting the live region in componentDidRender ensures the screen reader announces any changes to the number of results/highlighted option.
|
|
99
|
-
* Note: Updating the innerHTML of the live region does not cause the component to re-render so there's no performance hit here.
|
|
100
|
-
*/
|
|
101
|
-
componentDidRender() {
|
|
102
|
-
this.announceChanges();
|
|
103
|
-
}
|
|
104
|
-
/**
|
|
105
|
-
* Set live region to blank and then update it with the message ensure the screen reader registers the changes.
|
|
106
|
-
*/
|
|
107
|
-
announceChanges() {
|
|
108
|
-
let message = this.getResultsMessage();
|
|
109
|
-
if (this.searchType === "find" && this.highlightedName) {
|
|
110
|
-
message += `, ${this.highlightedName}`;
|
|
110
|
+
announce(message) {
|
|
111
|
+
if (this.resultsLiveRegion.textContent === message) {
|
|
112
|
+
message += "\u00A0";
|
|
111
113
|
}
|
|
112
|
-
this.
|
|
113
|
-
window.requestAnimationFrame(() => this.resultsLiveRegion && (this.resultsLiveRegion.innerHTML = message));
|
|
114
|
+
this.announcement = message;
|
|
114
115
|
}
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
return intl.formatMessage({
|
|
123
|
-
id: "search.resultsFound",
|
|
124
|
-
defaultMessage: "{numResults, plural, =0 {No results} one {1 result} other {# results}} found",
|
|
125
|
-
}, { numResults: this.numResults });
|
|
126
|
-
}
|
|
127
|
-
else {
|
|
128
|
-
return intl.formatMessage({
|
|
129
|
-
id: "search.xOfYResults",
|
|
130
|
-
defaultMessage: "{numResults, plural, =0 {No results found} other {{current} of {numResults} results}}",
|
|
131
|
-
}, { numResults: this.numResults, current: this.highlightedNum });
|
|
116
|
+
announceChanges() {
|
|
117
|
+
window.requestAnimationFrame(() => {
|
|
118
|
+
// requestAnimationFrame to allow all changes to occur before announcing results
|
|
119
|
+
let messageToAnnounce = this.resultCount;
|
|
120
|
+
// if a result is found, also include it after the liveregion message
|
|
121
|
+
if (this.searchType === "find" && this.highlightedName) {
|
|
122
|
+
messageToAnnounce += `, ${this.highlightedName}`;
|
|
132
123
|
}
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
return "";
|
|
136
|
-
}
|
|
124
|
+
this.announce(messageToAnnounce);
|
|
125
|
+
});
|
|
137
126
|
}
|
|
138
127
|
changeHighlightedNum(newNum) {
|
|
139
128
|
if (this.numResults) {
|
|
@@ -150,6 +139,7 @@ export class Search {
|
|
|
150
139
|
}
|
|
151
140
|
this.wmSearchBrowseResults.emit({ position: this.highlightedNum });
|
|
152
141
|
this.wmBrowseSearchResults.emit({ position: this.highlightedNum });
|
|
142
|
+
this.announceChanges();
|
|
153
143
|
}
|
|
154
144
|
}
|
|
155
145
|
addFocusStyle() {
|
|
@@ -174,7 +164,7 @@ export class Search {
|
|
|
174
164
|
*/
|
|
175
165
|
renderResultsAndBrowseButtons() {
|
|
176
166
|
return (h("div", { class: "wm-find-elements" },
|
|
177
|
-
h("div", { id: "results-display", class: "results" }, this.
|
|
167
|
+
h("div", { id: "results-display", class: "results" }, this.resultCount),
|
|
178
168
|
h("div", { class: "wm-button-collection" },
|
|
179
169
|
h("wm-button", { "button-type": "icononly", icon: "f05d", tooltip: intl.formatMessage({
|
|
180
170
|
id: "global.previous",
|
|
@@ -216,7 +206,7 @@ export class Search {
|
|
|
216
206
|
})}`, onInput: (ev) => this.updateValue(ev.target.value), onFocus: () => this.addFocusStyle(), onBlur: () => this.handleBlur(), "aria-autocomplete": "none", autocomplete: "off", value: this.value }),
|
|
217
207
|
h("span", { class: "mdi search-icon" }, String.fromCodePoint(parseInt(`0xf349`))),
|
|
218
208
|
this.searchType === "find" && this.renderResultsAndBrowseButtons(),
|
|
219
|
-
h("div", { id: "wm-search-live", class: "sr-only", "aria-live": "polite", "aria-atomic": "true", ref: (el) => (this.resultsLiveRegion = el) })),
|
|
209
|
+
h("div", { id: "wm-search-live", class: "sr-only", "aria-live": "polite", "aria-atomic": "true", ref: (el) => (this.resultsLiveRegion = el) }, this.announcement)),
|
|
220
210
|
this.searchType === "find" && this.renderJumpToLink()));
|
|
221
211
|
}
|
|
222
212
|
static get is() { return "wm-search"; }
|
|
@@ -378,7 +368,8 @@ export class Search {
|
|
|
378
368
|
"isTabbing": {},
|
|
379
369
|
"highlightedNum": {},
|
|
380
370
|
"previousBlurredValue": {},
|
|
381
|
-
"parentModal": {}
|
|
371
|
+
"parentModal": {},
|
|
372
|
+
"announcement": {}
|
|
382
373
|
}; }
|
|
383
374
|
static get events() { return [{
|
|
384
375
|
"method": "wmSearchBrowseResults",
|
|
@@ -24,7 +24,7 @@ export class TabPanel {
|
|
|
24
24
|
this.el.classList.remove("user-is-tabbing");
|
|
25
25
|
}
|
|
26
26
|
render() {
|
|
27
|
-
return (h(Host, { role: "tabpanel",
|
|
27
|
+
return (h(Host, { role: "tabpanel", class: { "tab-hidden": !this.active }, onBlur: () => (this.el.tabIndex = -1), tabIndex: -1 }));
|
|
28
28
|
}
|
|
29
29
|
static get is() { return "wm-tab-panel"; }
|
|
30
30
|
static get originalStyleUrls() { return {
|
|
@@ -449,6 +449,13 @@ wm-network-uploader .wm-button.-selector-primary .overflowcontrol {
|
|
|
449
449
|
text-overflow: ellipsis;
|
|
450
450
|
overflow: visible;
|
|
451
451
|
}
|
|
452
|
+
:host .wm-button.-selector.dark:not(:disabled):not(.disabled):hover,
|
|
453
|
+
wm-network-uploader .wm-button.-selector.dark:not(:disabled):not(.disabled):hover, :host .wm-button.-selector-primary.dark:not(:disabled):not(.disabled):hover,
|
|
454
|
+
wm-network-uploader .wm-button.-selector-primary.dark:not(:disabled):not(.disabled):hover {
|
|
455
|
+
color: #575195;
|
|
456
|
+
background: #e6e6e6;
|
|
457
|
+
border: 2px solid #e6e6e6;
|
|
458
|
+
}
|
|
452
459
|
:host .wm-button.-selector-primary,
|
|
453
460
|
wm-network-uploader .wm-button.-selector-primary {
|
|
454
461
|
background: #575195;
|
|
@@ -458,6 +465,12 @@ wm-network-uploader .wm-button.-selector-primary {
|
|
|
458
465
|
wm-network-uploader .wm-button.-selector-primary:hover:not(:disabled):not(.disabled) {
|
|
459
466
|
background: #464177;
|
|
460
467
|
}
|
|
468
|
+
:host .wm-button.-selector-primary.dark:not(:disabled):not(.disabled),
|
|
469
|
+
wm-network-uploader .wm-button.-selector-primary.dark:not(:disabled):not(.disabled) {
|
|
470
|
+
color: #575195;
|
|
471
|
+
background: #fff;
|
|
472
|
+
border: 2px solid #fff;
|
|
473
|
+
}
|
|
461
474
|
:host .wm-button:disabled,
|
|
462
475
|
wm-network-uploader .wm-button:disabled, :host .wm-button.disabled,
|
|
463
476
|
wm-network-uploader .wm-button.disabled {
|
|
@@ -506,11 +519,13 @@ wm-network-uploader .wm-button.disabled.-textonly {
|
|
|
506
519
|
background: transparent;
|
|
507
520
|
}
|
|
508
521
|
:host .wm-button:disabled.dark.-secondary:not(.-permanentlydelete),
|
|
509
|
-
wm-network-uploader .wm-button:disabled.dark.-secondary:not(.-permanentlydelete), :host .wm-button:disabled.dark.-
|
|
522
|
+
wm-network-uploader .wm-button:disabled.dark.-secondary:not(.-permanentlydelete), :host .wm-button:disabled.dark.-selector,
|
|
523
|
+
wm-network-uploader .wm-button:disabled.dark.-selector, :host .wm-button:disabled.dark.-textonly,
|
|
510
524
|
wm-network-uploader .wm-button:disabled.dark.-textonly, :host .wm-button:disabled.dark.-navigational,
|
|
511
525
|
wm-network-uploader .wm-button:disabled.dark.-navigational, :host .wm-button:disabled.dark.-icononly,
|
|
512
526
|
wm-network-uploader .wm-button:disabled.dark.-icononly, :host .wm-button.disabled.dark.-secondary:not(.-permanentlydelete),
|
|
513
|
-
wm-network-uploader .wm-button.disabled.dark.-secondary:not(.-permanentlydelete), :host .wm-button.disabled.dark.-
|
|
527
|
+
wm-network-uploader .wm-button.disabled.dark.-secondary:not(.-permanentlydelete), :host .wm-button.disabled.dark.-selector,
|
|
528
|
+
wm-network-uploader .wm-button.disabled.dark.-selector, :host .wm-button.disabled.dark.-textonly,
|
|
514
529
|
wm-network-uploader .wm-button.disabled.dark.-textonly, :host .wm-button.disabled.dark.-navigational,
|
|
515
530
|
wm-network-uploader .wm-button.disabled.dark.-navigational, :host .wm-button.disabled.dark.-icononly,
|
|
516
531
|
wm-network-uploader .wm-button.disabled.dark.-icononly {
|
|
@@ -518,9 +533,11 @@ wm-network-uploader .wm-button.disabled.dark.-icononly {
|
|
|
518
533
|
border-color: #b5b5b5;
|
|
519
534
|
}
|
|
520
535
|
:host .wm-button:disabled.dark.-primary,
|
|
521
|
-
wm-network-uploader .wm-button:disabled.dark.-primary, :host .wm-button:disabled.dark.-
|
|
536
|
+
wm-network-uploader .wm-button:disabled.dark.-primary, :host .wm-button:disabled.dark.-selector-primary,
|
|
537
|
+
wm-network-uploader .wm-button:disabled.dark.-selector-primary, :host .wm-button:disabled.dark.-permanentlydelete:not(.-textonly),
|
|
522
538
|
wm-network-uploader .wm-button:disabled.dark.-permanentlydelete:not(.-textonly), :host .wm-button.disabled.dark.-primary,
|
|
523
|
-
wm-network-uploader .wm-button.disabled.dark.-primary, :host .wm-button.disabled.dark.-
|
|
539
|
+
wm-network-uploader .wm-button.disabled.dark.-primary, :host .wm-button.disabled.dark.-selector-primary,
|
|
540
|
+
wm-network-uploader .wm-button.disabled.dark.-selector-primary, :host .wm-button.disabled.dark.-permanentlydelete:not(.-textonly),
|
|
524
541
|
wm-network-uploader .wm-button.disabled.dark.-permanentlydelete:not(.-textonly) {
|
|
525
542
|
background: #a6a6a6;
|
|
526
543
|
border-color: #a6a6a6;
|
|
@@ -449,6 +449,13 @@ wm-uploader .wm-button.-selector-primary .overflowcontrol {
|
|
|
449
449
|
text-overflow: ellipsis;
|
|
450
450
|
overflow: visible;
|
|
451
451
|
}
|
|
452
|
+
:host .wm-button.-selector.dark:not(:disabled):not(.disabled):hover,
|
|
453
|
+
wm-uploader .wm-button.-selector.dark:not(:disabled):not(.disabled):hover, :host .wm-button.-selector-primary.dark:not(:disabled):not(.disabled):hover,
|
|
454
|
+
wm-uploader .wm-button.-selector-primary.dark:not(:disabled):not(.disabled):hover {
|
|
455
|
+
color: #575195;
|
|
456
|
+
background: #e6e6e6;
|
|
457
|
+
border: 2px solid #e6e6e6;
|
|
458
|
+
}
|
|
452
459
|
:host .wm-button.-selector-primary,
|
|
453
460
|
wm-uploader .wm-button.-selector-primary {
|
|
454
461
|
background: #575195;
|
|
@@ -458,6 +465,12 @@ wm-uploader .wm-button.-selector-primary {
|
|
|
458
465
|
wm-uploader .wm-button.-selector-primary:hover:not(:disabled):not(.disabled) {
|
|
459
466
|
background: #464177;
|
|
460
467
|
}
|
|
468
|
+
:host .wm-button.-selector-primary.dark:not(:disabled):not(.disabled),
|
|
469
|
+
wm-uploader .wm-button.-selector-primary.dark:not(:disabled):not(.disabled) {
|
|
470
|
+
color: #575195;
|
|
471
|
+
background: #fff;
|
|
472
|
+
border: 2px solid #fff;
|
|
473
|
+
}
|
|
461
474
|
:host .wm-button:disabled,
|
|
462
475
|
wm-uploader .wm-button:disabled, :host .wm-button.disabled,
|
|
463
476
|
wm-uploader .wm-button.disabled {
|
|
@@ -506,11 +519,13 @@ wm-uploader .wm-button.disabled.-textonly {
|
|
|
506
519
|
background: transparent;
|
|
507
520
|
}
|
|
508
521
|
:host .wm-button:disabled.dark.-secondary:not(.-permanentlydelete),
|
|
509
|
-
wm-uploader .wm-button:disabled.dark.-secondary:not(.-permanentlydelete), :host .wm-button:disabled.dark.-
|
|
522
|
+
wm-uploader .wm-button:disabled.dark.-secondary:not(.-permanentlydelete), :host .wm-button:disabled.dark.-selector,
|
|
523
|
+
wm-uploader .wm-button:disabled.dark.-selector, :host .wm-button:disabled.dark.-textonly,
|
|
510
524
|
wm-uploader .wm-button:disabled.dark.-textonly, :host .wm-button:disabled.dark.-navigational,
|
|
511
525
|
wm-uploader .wm-button:disabled.dark.-navigational, :host .wm-button:disabled.dark.-icononly,
|
|
512
526
|
wm-uploader .wm-button:disabled.dark.-icononly, :host .wm-button.disabled.dark.-secondary:not(.-permanentlydelete),
|
|
513
|
-
wm-uploader .wm-button.disabled.dark.-secondary:not(.-permanentlydelete), :host .wm-button.disabled.dark.-
|
|
527
|
+
wm-uploader .wm-button.disabled.dark.-secondary:not(.-permanentlydelete), :host .wm-button.disabled.dark.-selector,
|
|
528
|
+
wm-uploader .wm-button.disabled.dark.-selector, :host .wm-button.disabled.dark.-textonly,
|
|
514
529
|
wm-uploader .wm-button.disabled.dark.-textonly, :host .wm-button.disabled.dark.-navigational,
|
|
515
530
|
wm-uploader .wm-button.disabled.dark.-navigational, :host .wm-button.disabled.dark.-icononly,
|
|
516
531
|
wm-uploader .wm-button.disabled.dark.-icononly {
|
|
@@ -518,9 +533,11 @@ wm-uploader .wm-button.disabled.dark.-icononly {
|
|
|
518
533
|
border-color: #b5b5b5;
|
|
519
534
|
}
|
|
520
535
|
:host .wm-button:disabled.dark.-primary,
|
|
521
|
-
wm-uploader .wm-button:disabled.dark.-primary, :host .wm-button:disabled.dark.-
|
|
536
|
+
wm-uploader .wm-button:disabled.dark.-primary, :host .wm-button:disabled.dark.-selector-primary,
|
|
537
|
+
wm-uploader .wm-button:disabled.dark.-selector-primary, :host .wm-button:disabled.dark.-permanentlydelete:not(.-textonly),
|
|
522
538
|
wm-uploader .wm-button:disabled.dark.-permanentlydelete:not(.-textonly), :host .wm-button.disabled.dark.-primary,
|
|
523
|
-
wm-uploader .wm-button.disabled.dark.-primary, :host .wm-button.disabled.dark.-
|
|
539
|
+
wm-uploader .wm-button.disabled.dark.-primary, :host .wm-button.disabled.dark.-selector-primary,
|
|
540
|
+
wm-uploader .wm-button.disabled.dark.-selector-primary, :host .wm-button.disabled.dark.-permanentlydelete:not(.-textonly),
|
|
524
541
|
wm-uploader .wm-button.disabled.dark.-permanentlydelete:not(.-textonly) {
|
|
525
542
|
background: #a6a6a6;
|
|
526
543
|
border-color: #a6a6a6;
|
package/dist/esm/loader.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { p as promiseResolve, b as bootstrapLazy } from './index-d0d03058.js';
|
|
2
|
-
import './global-
|
|
2
|
+
import './global-2ffd2051.js';
|
|
3
3
|
|
|
4
4
|
/*
|
|
5
5
|
Stencil Client Patch Esm v2.15.2 | MIT Licensed | https://stenciljs.com
|
|
@@ -11,7 +11,7 @@ const patchEsm = () => {
|
|
|
11
11
|
const defineCustomElements = (win, options) => {
|
|
12
12
|
if (typeof window === 'undefined') return Promise.resolve();
|
|
13
13
|
return patchEsm().then(() => {
|
|
14
|
-
return bootstrapLazy(JSON.parse("[[\"wm-uploader\",[[17,\"wm-uploader\",{\"uploaderType\":[1025,\"uploader-type\"],\"type\":[1],\"buttonText\":[1,\"button-text\"],\"info\":[1],\"emptyStateText\":[1,\"empty-state-text\"],\"icon\":[1],\"fileTypes\":[1,\"file-types\"],\"maxSize\":[2,\"max-size\"],\"maxFiles\":[2,\"max-files\"],\"sortBy\":[1,\"sort-by\"],\"showInfo\":[1,\"show-info\"],\"files\":[1],\"filesToUpload\":[1040],\"rejectedFiles\":[1,\"rejected-files\"],\"isTabbing\":[32],\"errorList\":[32],\"notif\":[32],\"announcement\":[32],\"numFilesInProgress\":[32],\"isCondensed\":[32]},[[8,\"wmUserIsTabbing\",\"toggleTabbingOn\"],[8,\"wmUserIsNotTabbing\",\"toggleTabbingOff\"],[0,\"wmUploadProgress\",\"handleUploadProgress\"],[0,\"wmFileClearErrorClicked\",\"handleFileErrorCleared\"],[0,\"wmFileDelete\",\"deleteFile\"],[0,\"wmFilePreview\",\"previewFile\"],[0,\"wmFileDownload\",\"downloadFile\"]]]]],[\"wm-tab-item_3\",[[17,\"wm-tab-list\",{\"customBackground\":[1,\"custom-background\"],\"customPadding\":[1,\"custom-padding\"],\"selectedTab\":[1,\"selected-tab\"],\"controllerEnabled\":[4,\"controller-enabled\"]},[[0,\"tabItemLoaded\",\"tabItemLoaded\"],[0,\"wmTabSelected\",\"handleTabSelected\"],[0,\"keydownOnTabItem\",\"handleKeydown\"],[9,\"resize\",\"setLayout\"]]],[17,\"wm-tab-item\",{\"selected\":[4],\"show\":[4],\"tabId\":[1,\"tab-id\"]},[[4,\"keydown\",\"toggleTabbingOn\"],[4,\"click\",\"toggleTabbingOff\"]]],[0,\"wm-tab-panel\",{\"active\":[1028],\"tabId\":[1025,\"tab-id\"]},[[4,\"keydown\",\"toggleTabbingOn\"],[4,\"click\",\"toggleTabbingOff\"]]]]],[\"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],\"isTabbing\":[32],\"itemIndexToFocus\":[32]},[[8,\"wmUserIsTabbing\",\"toggleTabbingOn\"],[8,\"wmUserIsNotTabbing\",\"toggleTabbingOff\"],[0,\"keydown\",\"handleKeys\"],[0,\"keydownOnNavItem\",\"handleKeydown\"],[4,\"click\",\"handleClick\"],[0,\"buttonActivated\",\"handleButtonClick\"]]]]],[\"wm-network-uploader\",[[1,\"wm-network-uploader\",{\"getPath\":[1,\"get-path\"],\"requestUploadPath\":[1,\"request-upload-path\"],\"uploadPath\":[1,\"upload-path\"],\"requestDownloadPath\":[1,\"request-download-path\"],\"deletePath\":[1,\"delete-path\"],\"associatedData\":[1,\"associated-data\"],\"buttonText\":[1,\"button-text\"],\"emptyStateText\":[1,\"empty-state-text\"],\"icon\":[1],\"fileTypes\":[1,\"file-types\"],\"maxSize\":[1026,\"max-size\"],\"maxFiles\":[2,\"max-files\"],\"sortBy\":[1,\"sort-by\"],\"isTabbing\":[32],\"fileList\":[32],\"inProgressList\":[32],\"errorList\":[32],\"notif\":[32],\"snackbar\":[32],\"numFilesInProgress\":[32]},[[8,\"wmUserIsTabbing\",\"toggleTabbingOn\"],[8,\"wmUserIsNotTabbing\",\"toggleTabbingOff\"],[0,\"wmUploadProgress\",\"handleUploadProgress\"],[0,\"userFinishedSnack\",\"handleFinishedSnack\"]]]]],[\"wm-navigation_3\",[[17,\"wm-navigation\",{\"open\":[1540],\"isTabbing\":[32]},[[8,\"wmUserIsTabbing\",\"toggleTabbingOn\"],[8,\"wmUserIsNotTabbing\",\"toggleTabbingOff\"],[0,\"keydown\",\"closeOnEscape\"],[9,\"resize\",\"handleWindowResize\"],[8,\"wmNavigationHamburgerClicked\",\"handleHamburgerClicked\"],[0,\"wmNavigationItemClicked\",\"handleClickOnItem\"]]],[17,\"wm-navigation-hamburger\",{\"navId\":[1,\"nav-id\"],\"tooltipVisible\":[1028,\"tooltip-visible\"],\"isTabbing\":[32],\"open\":[32]},[[8,\"wmUserIsTabbing\",\"toggleTabbingOn\"],[8,\"wmUserIsNotTabbing\",\"toggleTabbingOff\"],[4,\"wmNavigationStateChanged\",\"handleNavigationStateChanged\"]]],[17,\"wm-navigation-item\",{\"href\":[1],\"text\":[1],\"active\":[4],\"isTabbing\":[32]},[[8,\"wmUserIsTabbing\",\"toggleTabbingOn\"],[8,\"wmUserIsNotTabbing\",\"toggleTabbingOff\"]]]]],[\"wm-progress-indicator_3\",[[1,\"wm-progress-indicator\",{\"label\":[1],\"subinfo\":[1],\"completionMessage\":[1,\"completion-message\"],\"showLegend\":[4,\"show-legend\"],\"isTabbing\":[32],\"mode\":[32],\"userIsNavigating\":[32]},[[8,\"wmUserIsTabbing\",\"toggleTabbingOn\"],[8,\"wmUserIsNotTabbing\",\"toggleTabbingOff\"],[0,\"keydown\",\"handleKeydown\"],[0,\"wmProgressSliceUpdated\",\"handleSliceUpdate\"]]],[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-chart\",[[1,\"wm-chart\",{\"chartType\":[1,\"chart-type\"],\"label\":[1],\"subinfo\":[1],\"completionMessage\":[1,\"completion-message\"],\"valueFormat\":[1,\"value-format\"],\"showValues\":[1,\"show-values\"],\"showLegend\":[4,\"show-legend\"],\"notStartedColor\":[4,\"not-started-color\"],\"labelPosition\":[1,\"label-position\"],\"isTabbing\":[32],\"userIsNavigating\":[32],\"hasHiddenBarValue\":[32]},[[8,\"wmUserIsTabbing\",\"toggleTabbingOn\"],[8,\"wmUserIsNotTabbing\",\"toggleTabbingOff\"],[0,\"keydown\",\"handleKeydown\"],[0,\"wmChartSliceUpdated\",\"handleSliceUpdate\"]]]]],[\"wm-datepicker\",[[17,\"wm-datepicker\",{\"value\":[1025],\"disabled\":[4],\"dateFormat\":[1025,\"date-format\"],\"errorMessage\":[513,\"error-message\"],\"labelPosition\":[1025,\"label-position\"],\"label\":[1025],\"requiredField\":[4,\"required-field\"],\"requiredFieldMessage\":[1,\"required-field-message\"],\"preventValidation\":[1,\"prevent-validation\"],\"displayError\":[32]},[[0,\"keydown\",\"handleTabbingOn\"],[0,\"click\",\"handleTabbingOff\"],[0,\"popupBlurred\",\"handlePopupBlurred\"],[0,\"cellTriggered\",\"handleCellTriggered\"]]]]],[\"wm-modal-footer\",[[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\"]}]]],[\"wm-modal-header\",[[0,\"wm-modal-header\",{\"heading\":[1],\"subheading\":[1]}]]],[\"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],\"updateValue\":[64]},[[8,\"wmUserIsTabbing\",\"toggleTabbingOn\"],[8,\"wmUserIsNotTabbing\",\"toggleTabbingOff\"]]]]],[\"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\":[1537],\"disabled\":[516],\"info\":[1],\"placeholder\":[1],\"requiredField\":[4,\"required-field\"],\"requiredFieldMessage\":[1,\"required-field-message\"],\"errorMessage\":[1,\"error-message\"],\"characterLimit\":[2,\"character-limit\"],\"preventValidation\":[1,\"prevent-validation\"],\"type\":[1],\"step\":[2],\"min\":[2],\"max\":[2],\"announcement\":[32],\"displayedErrorMessage\":[32]}]]],[\"wm-modal\",[[0,\"wm-modal\",{\"open\":[1540],\"isOpen\":[1540,\"is-open\"],\"elementToFocus\":[1025,\"element-to-focus\"],\"modalType\":[513,\"modal-type\"],\"isTypeDialog\":[516,\"is-type-dialog\"],\"uid\":[1537],\"emitCloseEvent\":[64],\"emitPrimaryEvent\":[64],\"emitSecondaryEvent\":[64]},[[0,\"click\",\"handleClick\"],[0,\"keydown\",\"closeModalOnEscape\"]]]]],[\"wm-pagination\",[[17,\"wm-pagination\",{\"currentPage\":[2,\"current-page\"],\"totalItems\":[2,\"total-items\"],\"itemsPerPage\":[2,\"items-per-page\"],\"value\":[2],\"isLargeViewport\":[4,\"is-large-viewport\"],\"isTabbing\":[32],\"srAnnouncement\":[32]},[[8,\"wmUserIsTabbing\",\"toggleTabbingOn\"],[8,\"wmUserIsNotTabbing\",\"toggleTabbingOff\"],[9,\"resize\",\"handleResize\"]]]]],[\"wm-tag-input\",[[17,\"wm-tag-input\",{\"label\":[1],\"labelPosition\":[1,\"label-position\"],\"options\":[1025],\"selectedTags\":[1537,\"selected-tags\"],\"info\":[1],\"addNew\":[4,\"add-new\"],\"placeholder\":[1025],\"characterLimit\":[2,\"character-limit\"],\"maxTags\":[2,\"max-tags\"],\"tagInputType\":[1,\"tag-input-type\"],\"colHeaders\":[1,\"col-headers\"],\"colWidths\":[1,\"col-widths\"],\"colWrap\":[1,\"col-wrap\"],\"focusedListItem\":[32],\"focusedTag\":[32],\"tablePosition\":[32],\"isExpanded\":[32],\"tagsList\":[32],\"optionsList\":[32],\"charCount\":[32],\"liveRegionMessage\":[32]},[[0,\"wmTagInputRowUpdated\",\"handleRowUpdate\"],[4,\"click\",\"closeIfNotElOrChild\"],[11,\"scroll\",\"dismissTooltip\"]]]]],[\"wm-tag-input-row\",[[0,\"wm-tag-input-row\",{\"col1\":[1],\"col2\":[1],\"col3\":[1],\"col4\":[1],\"locked\":[4]}]]],[\"wm-timepicker\",[[17,\"wm-timepicker\",{\"disabled\":[4],\"value\":[1537],\"errorMessage\":[1,\"error-message\"],\"label\":[1],\"labelPosition\":[1,\"label-position\"],\"requiredField\":[4,\"required-field\"],\"requiredFieldMessage\":[1,\"required-field-message\"],\"preventValidation\":[1,\"prevent-validation\"],\"selectedOption\":[32],\"isExpanded\":[32],\"isTabbing\":[32],\"displayedErrorMessage\":[32]},[[8,\"wmUserIsTabbing\",\"toggleTabbingOn\"],[8,\"wmUserIsNotTabbing\",\"toggleTabbingOff\"],[0,\"keydown\",\"handleKey\"]]]]],[\"wm-toggletip\",[[17,\"wm-toggletip\",{\"label\":[1],\"tooltip\":[1025],\"tooltipText\":[1,\"tooltip-text\"],\"tooltipPosition\":[1537,\"tooltip-position\"],\"isOpen\":[32],\"isTabbing\":[32]},[[0,\"keydown\",\"handleKeydown\"],[8,\"wmUserIsTabbing\",\"toggleTabbingOn\"],[8,\"wmUserIsNotTabbing\",\"toggleTabbingOff\"],[4,\"click\",\"handleClick\"]]]]],[\"wm-wrapper\",[[0,\"wm-wrapper\"]]],[\"priv-datepicker\",[[0,\"priv-datepicker\",{\"disabled\":[4],\"isExpanded\":[1540,\"is-expanded\"],\"view\":[1537],\"date\":[1040],\"selectedYear\":[1026,\"selected-year\"],\"selectedMonth\":[1026,\"selected-month\"],\"selectedDay\":[1026,\"selected-day\"],\"monthInFocus\":[1026,\"month-in-focus\"],\"yearInFocus\":[1026,\"year-in-focus\"],\"dayInFocus\":[1026,\"day-in-focus\"],\"parentId\":[1537,\"parent-id\"],\"monthNumInFocus\":[32],\"isTabbing\":[32]},[[0,\"keydown\",\"handleKey\"],[0,\"keydown\",\"toggleTabbingOn\"],[9,\"mousedown\",\"toggleTabbingOff\"],[4,\"click\",\"blurHandler\"],[8,\"blur\",\"handleBlurOnWindow\"]]]]],[\"priv-navigator-button\",[[17,\"priv-navigator-button\",{\"expanded\":[1028],\"altText\":[1,\"alt-text\"],\"isTabbing\":[1028,\"is-tabbing\"]}]]],[\"priv-navigator-item\",[[1,\"priv-navigator-item\",{\"selected\":[1028],\"focused\":[1028],\"link\":[1025]},[[0,\"keydown\",\"handleKeyDown\"]]]]],[\"wm-snackbar\",[[1,\"wm-snackbar\",{\"notifications\":[1537]},[[4,\"keydown\",\"checkForTabbing\"],[5,\"mouseover\",\"handleMouse\"]]]]],[\"priv-chart-popover\",[[0,\"priv-chart-popover\",{\"sliceRef\":[16],\"popoverTitle\":[1,\"popover-title\"],\"popoverText\":[1,\"popover-text\"],\"buttonText\":[1,\"button-text\"],\"open\":[1028],\"coords\":[16]},[[4,\"click\",\"handleClickOnDocument\"],[0,\"click\",\"handleClick\"]]]]],[\"wm-option_2\",[[17,\"wm-select\",{\"disabled\":[516],\"invalid\":[1028],\"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\"],\"isTabbing\":[32],\"isExpanded\":[32],\"announcement\":[32]},[[8,\"wmUserIsTabbing\",\"toggleTabbingOn\"],[8,\"wmUserIsNotTabbing\",\"toggleTabbingOff\"],[0,\"wmOptionSelected\",\"handleOptionSelection\"],[0,\"wmEnterKeyPressed\",\"handleChildEnter\"],[0,\"wmKeyUpPressed\",\"handleChildUp\"],[0,\"wmKeyDownPressed\",\"handleChildDown\"],[0,\"wmHomeKeyPressed\",\"moveToFirstOption\"],[0,\"wmEndKeyPressed\",\"moveToLastOption\"],[0,\"wmEscKeyPressed\",\"closePopupOnEscape\"],[0,\"wmOptionBlurred\",\"handleOptionBlur\"],[6,\"click\",\"handleClick\"],[0,\"keydown\",\"handleKey\"],[0,\"wmLetterPressed\",\"findAndFocusOption\"]]],[1,\"wm-option\",{\"value\":[1],\"subinfo\":[1025],\"disabled\":[516],\"selected\":[516],\"focused\":[4],\"searchTerm\":[32]},[[0,\"keydown\",\"handleKeydown\"],[0,\"click\",\"handleSelection\"],[0,\"blur\",\"handleBlur\"]]]]],[\"wm-button\",[[17,\"wm-button\",{\"disabled\":[516],\"buttonType\":[1025,\"button-type\"],\"buttonStyle\":[1025,\"button-style\"],\"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\"],\"tooltipVisible\":[1028,\"tooltip-visible\"],\"isTabbing\":[32]},[[8,\"wmUserIsTabbing\",\"toggleTabbingOn\"],[8,\"wmUserIsNotTabbing\",\"toggleTabbingOff\"],[11,\"scroll\",\"handleScroll\"],[0,\"keydown\",\"handleKeydown\"]]]]],[\"wm-action-menu_2\",[[17,\"wm-action-menu\",{\"tooltipPosition\":[1,\"tooltip-position\"],\"actionMenuType\":[1,\"action-menu-type\"],\"buttonType\":[1,\"button-type\"],\"buttonText\":[1,\"button-text\"],\"disabled\":[516],\"tooltip\":[1],\"labelForIdenticalButtons\":[1,\"label-for-identical-buttons\"],\"isExpanded\":[32]},[[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],\"focused\":[4],\"icon\":[1025],\"description\":[1],\"isKeying\":[32]},[[8,\"wmUserIsKeying\",\"toggleKeyingOn\"],[8,\"wmUserIsTabbing\",\"toggleKeyingOn\"],[8,\"wmUserIsNotKeying\",\"toggleKeyingOff\"],[8,\"wmUserIsNotTabbing\",\"toggleKeyingOff\"],[0,\"keydown\",\"handleKeydown\"],[0,\"click\",\"handleClick\"],[0,\"blur\",\"handleBlur\"]]]]],[\"wm-file\",[[17,\"wm-file\",{\"file\":[1],\"showInfo\":[1,\"show-info\"],\"errorMessage\":[1,\"error-message\"],\"isCondensed\":[32]}]]],[\"wm-file-list\",[[17,\"wm-file-list\",{\"files\":[1],\"showInfo\":[1,\"show-info\"]}]]]]"), options);
|
|
14
|
+
return bootstrapLazy(JSON.parse("[[\"wm-uploader\",[[17,\"wm-uploader\",{\"uploaderType\":[1025,\"uploader-type\"],\"type\":[1],\"buttonText\":[1,\"button-text\"],\"info\":[1],\"emptyStateText\":[1,\"empty-state-text\"],\"icon\":[1],\"fileTypes\":[1,\"file-types\"],\"maxSize\":[2,\"max-size\"],\"maxFiles\":[2,\"max-files\"],\"sortBy\":[1,\"sort-by\"],\"showInfo\":[1,\"show-info\"],\"files\":[1],\"filesToUpload\":[1040],\"rejectedFiles\":[1,\"rejected-files\"],\"isTabbing\":[32],\"errorList\":[32],\"notif\":[32],\"announcement\":[32],\"numFilesInProgress\":[32],\"isCondensed\":[32]},[[8,\"wmUserIsTabbing\",\"toggleTabbingOn\"],[8,\"wmUserIsNotTabbing\",\"toggleTabbingOff\"],[0,\"wmUploadProgress\",\"handleUploadProgress\"],[0,\"wmFileClearErrorClicked\",\"handleFileErrorCleared\"],[0,\"wmFileDelete\",\"deleteFile\"],[0,\"wmFilePreview\",\"previewFile\"],[0,\"wmFileDownload\",\"downloadFile\"]]]]],[\"wm-tab-item_3\",[[17,\"wm-tab-list\",{\"customBackground\":[1,\"custom-background\"],\"customPadding\":[1,\"custom-padding\"],\"selectedTab\":[1,\"selected-tab\"],\"controllerEnabled\":[4,\"controller-enabled\"]},[[0,\"tabItemLoaded\",\"tabItemLoaded\"],[0,\"wmTabSelected\",\"handleTabSelected\"],[0,\"keydownOnTabItem\",\"handleKeydown\"],[9,\"resize\",\"setLayout\"]]],[17,\"wm-tab-item\",{\"selected\":[4],\"show\":[4],\"tabId\":[1,\"tab-id\"]},[[4,\"keydown\",\"toggleTabbingOn\"],[4,\"click\",\"toggleTabbingOff\"]]],[0,\"wm-tab-panel\",{\"active\":[1028],\"tabId\":[1025,\"tab-id\"]},[[4,\"keydown\",\"toggleTabbingOn\"],[4,\"click\",\"toggleTabbingOff\"]]]]],[\"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],\"isTabbing\":[32],\"itemIndexToFocus\":[32]},[[8,\"wmUserIsTabbing\",\"toggleTabbingOn\"],[8,\"wmUserIsNotTabbing\",\"toggleTabbingOff\"],[0,\"keydown\",\"handleKeys\"],[0,\"keydownOnNavItem\",\"handleKeydown\"],[4,\"click\",\"handleClick\"],[0,\"buttonActivated\",\"handleButtonClick\"]]]]],[\"wm-network-uploader\",[[1,\"wm-network-uploader\",{\"getPath\":[1,\"get-path\"],\"requestUploadPath\":[1,\"request-upload-path\"],\"uploadPath\":[1,\"upload-path\"],\"requestDownloadPath\":[1,\"request-download-path\"],\"deletePath\":[1,\"delete-path\"],\"associatedData\":[1,\"associated-data\"],\"buttonText\":[1,\"button-text\"],\"emptyStateText\":[1,\"empty-state-text\"],\"icon\":[1],\"fileTypes\":[1,\"file-types\"],\"maxSize\":[1026,\"max-size\"],\"maxFiles\":[2,\"max-files\"],\"sortBy\":[1,\"sort-by\"],\"isTabbing\":[32],\"fileList\":[32],\"inProgressList\":[32],\"errorList\":[32],\"notif\":[32],\"snackbar\":[32],\"numFilesInProgress\":[32]},[[8,\"wmUserIsTabbing\",\"toggleTabbingOn\"],[8,\"wmUserIsNotTabbing\",\"toggleTabbingOff\"],[0,\"wmUploadProgress\",\"handleUploadProgress\"],[0,\"userFinishedSnack\",\"handleFinishedSnack\"]]]]],[\"wm-navigation_3\",[[17,\"wm-navigation\",{\"open\":[1540],\"isTabbing\":[32]},[[8,\"wmUserIsTabbing\",\"toggleTabbingOn\"],[8,\"wmUserIsNotTabbing\",\"toggleTabbingOff\"],[0,\"keydown\",\"closeOnEscape\"],[9,\"resize\",\"handleWindowResize\"],[8,\"wmNavigationHamburgerClicked\",\"handleHamburgerClicked\"],[0,\"wmNavigationItemClicked\",\"handleClickOnItem\"]]],[17,\"wm-navigation-hamburger\",{\"navId\":[1,\"nav-id\"],\"tooltipVisible\":[1028,\"tooltip-visible\"],\"isTabbing\":[32],\"open\":[32]},[[8,\"wmUserIsTabbing\",\"toggleTabbingOn\"],[8,\"wmUserIsNotTabbing\",\"toggleTabbingOff\"],[4,\"wmNavigationStateChanged\",\"handleNavigationStateChanged\"]]],[17,\"wm-navigation-item\",{\"href\":[1],\"text\":[1],\"active\":[4],\"isTabbing\":[32]},[[8,\"wmUserIsTabbing\",\"toggleTabbingOn\"],[8,\"wmUserIsNotTabbing\",\"toggleTabbingOff\"]]]]],[\"wm-progress-indicator_3\",[[1,\"wm-progress-indicator\",{\"label\":[1],\"subinfo\":[1],\"completionMessage\":[1,\"completion-message\"],\"showLegend\":[4,\"show-legend\"],\"isTabbing\":[32],\"mode\":[32],\"userIsNavigating\":[32]},[[8,\"wmUserIsTabbing\",\"toggleTabbingOn\"],[8,\"wmUserIsNotTabbing\",\"toggleTabbingOff\"],[0,\"keydown\",\"handleKeydown\"],[0,\"wmProgressSliceUpdated\",\"handleSliceUpdate\"]]],[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-chart\",[[1,\"wm-chart\",{\"chartType\":[1,\"chart-type\"],\"label\":[1],\"subinfo\":[1],\"completionMessage\":[1,\"completion-message\"],\"valueFormat\":[1,\"value-format\"],\"showValues\":[1,\"show-values\"],\"showLegend\":[4,\"show-legend\"],\"notStartedColor\":[4,\"not-started-color\"],\"labelPosition\":[1,\"label-position\"],\"isTabbing\":[32],\"userIsNavigating\":[32],\"hasHiddenBarValue\":[32]},[[8,\"wmUserIsTabbing\",\"toggleTabbingOn\"],[8,\"wmUserIsNotTabbing\",\"toggleTabbingOff\"],[0,\"keydown\",\"handleKeydown\"],[0,\"wmChartSliceUpdated\",\"handleSliceUpdate\"]]]]],[\"wm-datepicker\",[[17,\"wm-datepicker\",{\"value\":[1025],\"disabled\":[4],\"dateFormat\":[1025,\"date-format\"],\"errorMessage\":[513,\"error-message\"],\"labelPosition\":[1025,\"label-position\"],\"label\":[1025],\"requiredField\":[4,\"required-field\"],\"requiredFieldMessage\":[1,\"required-field-message\"],\"preventValidation\":[1,\"prevent-validation\"],\"displayError\":[32]},[[0,\"keydown\",\"handleTabbingOn\"],[0,\"click\",\"handleTabbingOff\"],[0,\"popupBlurred\",\"handlePopupBlurred\"],[0,\"cellTriggered\",\"handleCellTriggered\"]]]]],[\"wm-modal-footer\",[[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\"]}]]],[\"wm-modal-header\",[[0,\"wm-modal-header\",{\"heading\":[1],\"subheading\":[1]}]]],[\"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\"]]]]],[\"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\":[1537],\"disabled\":[516],\"info\":[1],\"placeholder\":[1],\"requiredField\":[4,\"required-field\"],\"requiredFieldMessage\":[1,\"required-field-message\"],\"errorMessage\":[1,\"error-message\"],\"characterLimit\":[2,\"character-limit\"],\"preventValidation\":[1,\"prevent-validation\"],\"type\":[1],\"step\":[2],\"min\":[2],\"max\":[2],\"announcement\":[32],\"displayedErrorMessage\":[32]}]]],[\"wm-modal\",[[0,\"wm-modal\",{\"open\":[1540],\"isOpen\":[1540,\"is-open\"],\"elementToFocus\":[1025,\"element-to-focus\"],\"modalType\":[513,\"modal-type\"],\"isTypeDialog\":[516,\"is-type-dialog\"],\"uid\":[1537],\"emitCloseEvent\":[64],\"emitPrimaryEvent\":[64],\"emitSecondaryEvent\":[64]},[[0,\"click\",\"handleClick\"],[0,\"keydown\",\"closeModalOnEscape\"]]]]],[\"wm-pagination\",[[17,\"wm-pagination\",{\"currentPage\":[2,\"current-page\"],\"totalItems\":[2,\"total-items\"],\"itemsPerPage\":[2,\"items-per-page\"],\"value\":[2],\"isLargeViewport\":[4,\"is-large-viewport\"],\"isTabbing\":[32],\"srAnnouncement\":[32]},[[8,\"wmUserIsTabbing\",\"toggleTabbingOn\"],[8,\"wmUserIsNotTabbing\",\"toggleTabbingOff\"],[9,\"resize\",\"handleResize\"]]]]],[\"wm-tag-input\",[[17,\"wm-tag-input\",{\"label\":[1],\"labelPosition\":[1,\"label-position\"],\"options\":[1025],\"selectedTags\":[1537,\"selected-tags\"],\"info\":[1],\"addNew\":[4,\"add-new\"],\"placeholder\":[1025],\"characterLimit\":[2,\"character-limit\"],\"maxTags\":[2,\"max-tags\"],\"tagInputType\":[1,\"tag-input-type\"],\"colHeaders\":[1,\"col-headers\"],\"colWidths\":[1,\"col-widths\"],\"colWrap\":[1,\"col-wrap\"],\"focusedListItem\":[32],\"focusedTag\":[32],\"tablePosition\":[32],\"isExpanded\":[32],\"tagsList\":[32],\"optionsList\":[32],\"charCount\":[32],\"liveRegionMessage\":[32]},[[0,\"wmTagInputRowUpdated\",\"handleRowUpdate\"],[4,\"click\",\"closeIfNotElOrChild\"],[11,\"scroll\",\"dismissTooltip\"]]]]],[\"wm-tag-input-row\",[[0,\"wm-tag-input-row\",{\"col1\":[1],\"col2\":[1],\"col3\":[1],\"col4\":[1],\"locked\":[4]}]]],[\"wm-timepicker\",[[17,\"wm-timepicker\",{\"disabled\":[4],\"value\":[1537],\"errorMessage\":[1,\"error-message\"],\"label\":[1],\"labelPosition\":[1,\"label-position\"],\"requiredField\":[4,\"required-field\"],\"requiredFieldMessage\":[1,\"required-field-message\"],\"preventValidation\":[1,\"prevent-validation\"],\"selectedOption\":[32],\"isExpanded\":[32],\"isTabbing\":[32],\"displayedErrorMessage\":[32]},[[8,\"wmUserIsTabbing\",\"toggleTabbingOn\"],[8,\"wmUserIsNotTabbing\",\"toggleTabbingOff\"],[0,\"keydown\",\"handleKey\"]]]]],[\"wm-toggletip\",[[17,\"wm-toggletip\",{\"label\":[1],\"tooltip\":[1025],\"tooltipText\":[1,\"tooltip-text\"],\"tooltipPosition\":[1537,\"tooltip-position\"],\"isOpen\":[32],\"isTabbing\":[32]},[[0,\"keydown\",\"handleKeydown\"],[8,\"wmUserIsTabbing\",\"toggleTabbingOn\"],[8,\"wmUserIsNotTabbing\",\"toggleTabbingOff\"],[4,\"click\",\"handleClick\"]]]]],[\"wm-wrapper\",[[0,\"wm-wrapper\"]]],[\"priv-datepicker\",[[0,\"priv-datepicker\",{\"disabled\":[4],\"isExpanded\":[1540,\"is-expanded\"],\"view\":[1537],\"date\":[1040],\"selectedYear\":[1026,\"selected-year\"],\"selectedMonth\":[1026,\"selected-month\"],\"selectedDay\":[1026,\"selected-day\"],\"monthInFocus\":[1026,\"month-in-focus\"],\"yearInFocus\":[1026,\"year-in-focus\"],\"dayInFocus\":[1026,\"day-in-focus\"],\"parentId\":[1537,\"parent-id\"],\"monthNumInFocus\":[32],\"isTabbing\":[32]},[[0,\"keydown\",\"handleKey\"],[0,\"keydown\",\"toggleTabbingOn\"],[9,\"mousedown\",\"toggleTabbingOff\"],[4,\"click\",\"blurHandler\"],[8,\"blur\",\"handleBlurOnWindow\"]]]]],[\"priv-navigator-button\",[[17,\"priv-navigator-button\",{\"expanded\":[1028],\"altText\":[1,\"alt-text\"],\"isTabbing\":[1028,\"is-tabbing\"]}]]],[\"priv-navigator-item\",[[1,\"priv-navigator-item\",{\"selected\":[1028],\"focused\":[1028],\"link\":[1025]},[[0,\"keydown\",\"handleKeyDown\"]]]]],[\"wm-snackbar\",[[1,\"wm-snackbar\",{\"notifications\":[1537]},[[4,\"keydown\",\"checkForTabbing\"],[5,\"mouseover\",\"handleMouse\"]]]]],[\"priv-chart-popover\",[[0,\"priv-chart-popover\",{\"sliceRef\":[16],\"popoverTitle\":[1,\"popover-title\"],\"popoverText\":[1,\"popover-text\"],\"buttonText\":[1,\"button-text\"],\"open\":[1028],\"coords\":[16]},[[4,\"click\",\"handleClickOnDocument\"],[0,\"click\",\"handleClick\"]]]]],[\"wm-option_2\",[[17,\"wm-select\",{\"disabled\":[516],\"invalid\":[1028],\"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\"],\"isTabbing\":[32],\"isExpanded\":[32],\"announcement\":[32]},[[8,\"wmUserIsTabbing\",\"toggleTabbingOn\"],[8,\"wmUserIsNotTabbing\",\"toggleTabbingOff\"],[0,\"wmOptionSelected\",\"handleOptionSelection\"],[0,\"wmEnterKeyPressed\",\"handleChildEnter\"],[0,\"wmKeyUpPressed\",\"handleChildUp\"],[0,\"wmKeyDownPressed\",\"handleChildDown\"],[0,\"wmHomeKeyPressed\",\"moveToFirstOption\"],[0,\"wmEndKeyPressed\",\"moveToLastOption\"],[0,\"wmEscKeyPressed\",\"closePopupOnEscape\"],[0,\"wmOptionBlurred\",\"handleOptionBlur\"],[6,\"click\",\"handleClick\"],[0,\"keydown\",\"handleKey\"],[0,\"wmLetterPressed\",\"findAndFocusOption\"]]],[1,\"wm-option\",{\"value\":[1],\"subinfo\":[1025],\"disabled\":[516],\"selected\":[516],\"focused\":[4],\"searchTerm\":[32]},[[0,\"keydown\",\"handleKeydown\"],[0,\"click\",\"handleSelection\"],[0,\"blur\",\"handleBlur\"]]]]],[\"wm-button\",[[17,\"wm-button\",{\"disabled\":[516],\"buttonType\":[1025,\"button-type\"],\"buttonStyle\":[1025,\"button-style\"],\"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\"],\"tooltipVisible\":[1028,\"tooltip-visible\"],\"isTabbing\":[32]},[[8,\"wmUserIsTabbing\",\"toggleTabbingOn\"],[8,\"wmUserIsNotTabbing\",\"toggleTabbingOff\"],[11,\"scroll\",\"handleScroll\"],[0,\"keydown\",\"handleKeydown\"]]]]],[\"wm-action-menu_2\",[[17,\"wm-action-menu\",{\"tooltipPosition\":[1,\"tooltip-position\"],\"actionMenuType\":[1,\"action-menu-type\"],\"buttonType\":[1,\"button-type\"],\"buttonText\":[1,\"button-text\"],\"disabled\":[516],\"tooltip\":[1],\"labelForIdenticalButtons\":[1,\"label-for-identical-buttons\"],\"darkMode\":[4,\"dark-mode\"],\"isExpanded\":[32]},[[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],\"focused\":[4],\"icon\":[1025],\"description\":[1],\"isKeying\":[32]},[[8,\"wmUserIsKeying\",\"toggleKeyingOn\"],[8,\"wmUserIsTabbing\",\"toggleKeyingOn\"],[8,\"wmUserIsNotKeying\",\"toggleKeyingOff\"],[8,\"wmUserIsNotTabbing\",\"toggleKeyingOff\"],[0,\"keydown\",\"handleKeydown\"],[0,\"click\",\"handleClick\"],[0,\"blur\",\"handleBlur\"]]]]],[\"wm-file\",[[17,\"wm-file\",{\"file\":[1],\"showInfo\":[1,\"show-info\"],\"errorMessage\":[1,\"error-message\"],\"isCondensed\":[32]}]]],[\"wm-file-list\",[[17,\"wm-file-list\",{\"files\":[1],\"showInfo\":[1,\"show-info\"]}]]]]"), options);
|
|
15
15
|
});
|
|
16
16
|
};
|
|
17
17
|
|