@mgdis/mg-components 6.20.0 → 6.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/{index-TUElr4Wv.js → index-BxB20_Vw.js} +54 -0
- package/dist/cjs/{index-Bp6wZzau.js → index-C2viYwrR.js} +1761 -80
- package/dist/cjs/loader.cjs.js +2 -2
- package/dist/cjs/mg-action-more_37.cjs.entry.js +761 -371
- package/dist/cjs/mg-alert.cjs.entry.js +17 -9
- package/dist/cjs/mg-breadcrumb.cjs.entry.js +63 -0
- package/dist/cjs/mg-components.cjs.js +3 -3
- package/dist/cjs/mg-fieldset.cjs.entry.js +24 -7
- package/dist/cjs/mg-input-combobox.cjs.entry.js +49 -19
- package/dist/cjs/mg-input-file.cjs.entry.js +384 -0
- package/dist/cjs/mg-input-rich-text-editor.cjs.entry.js +40096 -15821
- package/dist/cjs/{mg-input.conf-D7jmj_lh.js → mg-input.conf-BNpeATnq.js} +7 -0
- package/dist/cjs/mg-loader.cjs.entry.js +8 -6
- package/dist/cjs/mg-progress.cjs.entry.js +19 -9
- package/dist/collection/assets/icons/index.js +1 -1
- package/dist/collection/collection-manifest.json +5 -3
- package/dist/collection/components/atoms/internals/mg-character-left/mg-character-left.js +1 -1
- package/dist/collection/components/atoms/internals/mg-input-title/mg-input-title.js +1 -1
- package/dist/collection/components/atoms/mg-card/mg-card.js +1 -1
- package/dist/collection/components/atoms/mg-divider/mg-divider.js +1 -1
- package/dist/collection/components/atoms/mg-icon/mg-icon.js +2 -2
- package/dist/collection/components/atoms/mg-tag/mg-tag.js +1 -1
- package/dist/collection/components/atoms/mg-tooltip/mg-tooltip-content/mg-tooltip-content.js +1 -1
- package/dist/collection/components/atoms/mg-tooltip/mg-tooltip.js +1 -1
- package/dist/collection/components/molecules/inputs/mg-input/mg-input.conf.js +6 -0
- package/dist/collection/components/molecules/inputs/mg-input/mg-input.js +1 -1
- package/dist/collection/components/molecules/inputs/mg-input-checkbox/MgInputCheckboxList.js +2 -2
- package/dist/collection/components/molecules/inputs/mg-input-checkbox/mg-input-checkbox-paginated/mg-input-checkbox-paginated.js +2 -2
- package/dist/collection/components/molecules/inputs/mg-input-checkbox/mg-input-checkbox.js +1 -1
- package/dist/collection/components/molecules/inputs/mg-input-combobox/mg-input-combobox.js +1 -1
- package/dist/collection/components/molecules/inputs/mg-input-date/mg-input-date.js +1 -1
- package/dist/collection/components/molecules/inputs/mg-input-file/mg-input-file.js +877 -0
- package/dist/collection/components/molecules/inputs/mg-input-numeric/mg-input-numeric.js +1 -1
- package/dist/collection/components/molecules/inputs/mg-input-password/mg-input-password.js +2 -2
- package/dist/collection/components/molecules/inputs/mg-input-radio/mg-input-radio.js +1 -1
- package/dist/collection/components/molecules/inputs/mg-input-rich-text-editor/editor/custom-properties.scss +212 -0
- package/dist/collection/components/molecules/inputs/mg-input-rich-text-editor/editor/editor.conf.js +1 -0
- package/dist/collection/components/molecules/inputs/mg-input-rich-text-editor/editor/index.js +300 -94
- package/dist/collection/components/molecules/inputs/mg-input-rich-text-editor/mg-input-rich-text-editor.conf.js +29 -0
- package/dist/collection/components/molecules/inputs/mg-input-rich-text-editor/mg-input-rich-text-editor.js +163 -53
- package/dist/collection/components/molecules/inputs/mg-input-select/mg-input-select.js +1 -1
- package/dist/collection/components/molecules/inputs/mg-input-text/mg-input-text.js +2 -2
- package/dist/collection/components/molecules/inputs/mg-input-textarea/mg-input-textarea.js +1 -1
- package/dist/collection/components/molecules/inputs/mg-input-toggle/mg-input-toggle.js +1 -1
- package/dist/collection/components/molecules/internals/mg-item-more/mg-item-more.js +3 -36
- package/dist/collection/components/molecules/menus/mg-menu/mg-menu.conf.js +0 -4
- package/dist/collection/components/molecules/menus/mg-menu/mg-menu.js +21 -43
- package/dist/collection/components/molecules/menus/mg-menu-item/mg-menu-item.js +65 -38
- package/dist/collection/components/molecules/mg-action-more/mg-action-more.js +2 -2
- package/dist/collection/components/molecules/mg-alert/mg-alert.js +1 -1
- package/dist/collection/components/molecules/mg-breadcrumb/mg-breadcrumb.conf.js +1 -0
- package/dist/collection/components/molecules/mg-breadcrumb/mg-breadcrumb.js +92 -0
- package/dist/collection/components/molecules/mg-details/mg-details.js +1 -1
- package/dist/collection/components/molecules/mg-fieldset/mg-fieldset.js +12 -3
- package/dist/collection/components/molecules/mg-form/mg-form.js +12 -2
- package/dist/collection/components/molecules/mg-illustrated-message/mg-illustrated-message.js +1 -1
- package/dist/collection/components/molecules/mg-loader/mg-loader.js +1 -1
- package/dist/collection/components/molecules/mg-message/mg-message.js +2 -2
- package/dist/collection/components/molecules/mg-modal/mg-modal.js +2 -2
- package/dist/collection/components/molecules/mg-panel/mg-panel.js +1 -1
- package/dist/collection/components/molecules/mg-popover/mg-popover-content/mg-popover-content.js +1 -1
- package/dist/collection/components/molecules/mg-popover/mg-popover.js +1 -1
- package/dist/collection/components/molecules/mg-progress/mg-progress.js +1 -1
- package/dist/collection/components/molecules/mg-skip-links/mg-skip-links.js +1 -1
- package/dist/collection/components/molecules/mg-table/mg-table.js +37 -0
- package/dist/collection/components/molecules/mg-tabs/mg-tabs.conf.js +0 -4
- package/dist/collection/components/molecules/mg-tabs/mg-tabs.js +13 -33
- package/dist/collection/locales/en/messages.json +14 -0
- package/dist/collection/locales/fr/messages.json +14 -0
- package/dist/components/events.utils.js +1 -23
- package/dist/components/index.d.ts +2 -0
- package/dist/components/index.js +1 -1
- package/dist/components/index2.js +1 -408
- package/dist/components/index3.js +1 -476
- package/dist/components/mg-action-more.js +1 -254
- package/dist/components/mg-alert.js +1 -224
- package/dist/components/mg-badge.js +1 -6
- package/dist/components/mg-badge2.js +1 -113
- package/dist/components/mg-breadcrumb.d.ts +11 -0
- package/dist/components/mg-breadcrumb.js +1 -0
- package/dist/components/mg-button.js +1 -6
- package/dist/components/mg-button2.js +1 -275
- package/dist/components/mg-card.js +1 -6
- package/dist/components/mg-card2.js +1 -92
- package/dist/components/mg-character-left.js +1 -6
- package/dist/components/mg-character-left2.js +1 -75
- package/dist/components/mg-details.js +1 -104
- package/dist/components/mg-divider.js +1 -6
- package/dist/components/mg-divider2.js +1 -49
- package/dist/components/mg-fieldset.js +1 -209
- package/dist/components/mg-form.js +1 -302
- package/dist/components/mg-icon.js +1 -6
- package/dist/components/mg-icon2.js +1 -188
- package/dist/components/mg-illustrated-message.js +1 -129
- package/dist/components/mg-input-checkbox-paginated.js +1 -6
- package/dist/components/mg-input-checkbox-paginated2.js +1 -135
- package/dist/components/mg-input-checkbox.js +1 -762
- package/dist/components/mg-input-combobox.js +1 -940
- package/dist/components/mg-input-date.js +1 -463
- package/dist/components/mg-input-file.d.ts +11 -0
- package/dist/components/mg-input-file.js +1 -0
- package/dist/components/mg-input-numeric.js +1 -592
- package/dist/components/mg-input-password.js +1 -360
- package/dist/components/mg-input-radio.js +1 -392
- package/dist/components/mg-input-rich-text-editor.js +1663 -16797
- package/dist/components/mg-input-select.js +1 -6
- package/dist/components/mg-input-select2.js +1 -481
- package/dist/components/mg-input-text.js +1 -6
- package/dist/components/mg-input-text2.js +1 -514
- package/dist/components/mg-input-textarea.js +1 -412
- package/dist/components/mg-input-title.js +1 -6
- package/dist/components/mg-input-title2.js +1 -81
- package/dist/components/mg-input-toggle.js +1 -371
- package/dist/components/mg-input.conf.js +1 -0
- package/dist/components/mg-input.js +1 -6
- package/dist/components/mg-input2.js +1 -459
- package/dist/components/mg-item-more.js +1 -6
- package/dist/components/mg-item-more2.js +1 -505
- package/dist/components/mg-loader.js +1 -6
- package/dist/components/mg-loader2.js +1 -74
- package/dist/components/mg-menu-item.js +1 -6
- package/dist/components/mg-menu-item2.js +1 -485
- package/dist/components/mg-menu.js +1 -6
- package/dist/components/mg-message.js +1 -6
- package/dist/components/mg-message2.js +1 -146
- package/dist/components/mg-modal.js +1 -184
- package/dist/components/mg-pagination.js +1 -234
- package/dist/components/mg-panel.js +1 -350
- package/dist/components/mg-popover-content.js +1 -6
- package/dist/components/mg-popover-content2.js +1 -96
- package/dist/components/mg-popover.js +1 -6
- package/dist/components/mg-popover2.js +1 -312
- package/dist/components/mg-progress.js +1 -123
- package/dist/components/mg-skip-links.js +1 -78
- package/dist/components/mg-table.js +1 -319
- package/dist/components/mg-tabs.js +1 -6
- package/dist/components/mg-tabs2.js +1 -315
- package/dist/components/mg-tag.js +1 -133
- package/dist/components/mg-tooltip-content.js +1 -6
- package/dist/components/mg-tooltip-content2.js +1 -42
- package/dist/components/mg-tooltip.js +1 -6
- package/dist/components/mg-tooltip2.js +1 -421
- package/dist/components/popper.js +1 -1790
- package/dist/esm/{index-BluNKQ3L.js → index-DFwaH2hS.js} +1761 -80
- package/dist/esm/{index-CNX6lq0x.js → index-DSEloqPn.js} +54 -1
- package/dist/esm/loader.js +3 -3
- package/dist/esm/mg-action-more_37.entry.js +761 -371
- package/dist/esm/mg-alert.entry.js +17 -9
- package/dist/esm/mg-breadcrumb.entry.js +61 -0
- package/dist/esm/mg-components.js +4 -4
- package/dist/esm/mg-fieldset.entry.js +24 -7
- package/dist/esm/mg-input-combobox.entry.js +49 -19
- package/dist/esm/mg-input-file.entry.js +382 -0
- package/dist/esm/mg-input-rich-text-editor.entry.js +40083 -15808
- package/dist/esm/{mg-input.conf-DDnrE1hD.js → mg-input.conf-C9rmNQIL.js} +7 -1
- package/dist/esm/mg-loader.entry.js +8 -6
- package/dist/esm/mg-progress.entry.js +19 -9
- package/dist/mg-components/locales/en/messages.json +14 -0
- package/dist/mg-components/locales/fr/messages.json +14 -0
- package/dist/mg-components/mg-components.esm.js +1 -1
- package/dist/mg-components/p-0482eb9f.entry.js +1 -0
- package/dist/mg-components/{p-7132bca1.entry.js → p-2ee92f38.entry.js} +1 -1
- package/dist/mg-components/{p-916dfb6d.entry.js → p-3b653226.entry.js} +1 -1
- package/dist/mg-components/p-5745fbea.entry.js +1 -0
- package/dist/mg-components/p-C9rmNQIL.js +1 -0
- package/dist/mg-components/p-DFwaH2hS.js +2 -0
- package/dist/mg-components/p-DSEloqPn.js +1 -0
- package/dist/mg-components/p-adec7fcc.entry.js +1 -0
- package/dist/mg-components/p-c63f97f0.entry.js +1658 -0
- package/dist/mg-components/p-c8c8cfc1.entry.js +1 -0
- package/dist/mg-components/p-cc793586.entry.js +1 -0
- package/dist/mg-components/p-d5e69c95.entry.js +1 -0
- package/dist/types/assets/icons/index.d.ts +2 -0
- package/dist/types/components/molecules/inputs/mg-input/mg-input.conf.d.ts +7 -1
- package/dist/types/components/molecules/inputs/mg-input-file/mg-input-file.d.ts +210 -0
- package/dist/types/components/molecules/inputs/mg-input-rich-text-editor/editor/editor.conf.d.ts +17 -0
- package/dist/types/components/molecules/inputs/mg-input-rich-text-editor/editor/index.d.ts +27 -19
- package/dist/types/components/molecules/inputs/mg-input-rich-text-editor/mg-input-rich-text-editor.conf.d.ts +3 -0
- package/dist/types/components/molecules/inputs/mg-input-rich-text-editor/mg-input-rich-text-editor.d.ts +50 -16
- package/dist/types/components/molecules/internals/mg-item-more/mg-item-more.conf.d.ts +0 -5
- package/dist/types/components/molecules/internals/mg-item-more/mg-item-more.d.ts +1 -6
- package/dist/types/components/molecules/menus/mg-menu/mg-menu.conf.d.ts +2 -10
- package/dist/types/components/molecules/menus/mg-menu/mg-menu.d.ts +7 -7
- package/dist/types/components/molecules/menus/mg-menu-item/mg-menu-item.d.ts +12 -8
- package/dist/types/components/molecules/mg-breadcrumb/mg-breadcrumb.conf.d.ts +18 -0
- package/dist/types/components/molecules/mg-breadcrumb/mg-breadcrumb.d.ts +34 -0
- package/dist/types/components/molecules/mg-table/mg-table.d.ts +6 -0
- package/dist/types/components/molecules/mg-tabs/mg-tabs.conf.d.ts +1 -9
- package/dist/types/components/molecules/mg-tabs/mg-tabs.d.ts +4 -4
- package/dist/types/components.d.ts +302 -46
- package/dist/types/stencil-public-runtime.d.ts +76 -12
- package/ide/intellij/web-types.json +483 -51
- package/ide/vscode/css-custom-data.json +10 -2
- package/ide/vscode/html-custom-data.json +445 -104
- package/package.json +24 -23
- package/dist/collection/components/molecules/inputs/mg-input-rich-text-editor/editor/editor.scss +0 -1
- package/dist/mg-components/p-016bd291.entry.js +0 -1
- package/dist/mg-components/p-186a6139.entry.js +0 -1
- package/dist/mg-components/p-BluNKQ3L.js +0 -2
- package/dist/mg-components/p-CNX6lq0x.js +0 -1
- package/dist/mg-components/p-DDnrE1hD.js +0 -1
- package/dist/mg-components/p-cd061b38.entry.js +0 -1
- package/dist/mg-components/p-d2c72f09.entry.js +0 -1
- package/dist/mg-components/p-d5a276eb.entry.js +0 -1
- package/ide/vscode/custom.css-data.json +0 -425
|
@@ -1,360 +1 @@
|
|
|
1
|
-
import { proxyCustomElement, HTMLElement, createEvent, h } from '@stencil/core/internal/client';
|
|
2
|
-
import { C as ClassList, i as isValidString } from './index2.js';
|
|
3
|
-
import { d as defineCustomElement$5, c as classReadonly, a as classDisabled, w as widths } from './mg-input2.js';
|
|
4
|
-
import { i as initLocales } from './index3.js';
|
|
5
|
-
import { d as defineCustomElement$7 } from './mg-button2.js';
|
|
6
|
-
import { d as defineCustomElement$6 } from './mg-icon2.js';
|
|
7
|
-
import { d as defineCustomElement$4 } from './mg-input-title2.js';
|
|
8
|
-
import { d as defineCustomElement$3 } from './mg-tooltip2.js';
|
|
9
|
-
import { d as defineCustomElement$2 } from './mg-tooltip-content2.js';
|
|
10
|
-
|
|
11
|
-
const mgInputPasswordCss = ".mg-c-input__box{height:var(--mg-b-size-min-height);box-sizing:border-box;padding:calc((var(--mg-b-size-min-height) - var(--mg-b-font-size)*var(--mg-b-line-height))/2) var(--mg-b-size-8);border-width:var(--mg-c-input-border-width);border-style:solid;border-color:var(--mg-c-input-color-border);border-radius:var(--mg-c-input-border-radius);background-color:var(--mg-b-color-light);color:var(--mg-b-color-dark);font-family:inherit;font-size:var(--mg-b-font-size);text-align:var(--mg-c-input-text-align, left)}.mg-c-input__box::placeholder{color:var(--mg-c-input-placeholder-color-text);font-style:italic}.mg-c-input__box:focus{box-shadow:0 0 var(--mg-b-size-4) var(--mg-c-input-color-box-shadow-focus)}.mg-c-input__box:disabled{opacity:var(--mg-b-opacity-element-disabled)}.mg-c-input.mg-c-input--has-error .mg-c-input__box{border-color:var(--mg-b-color-danger)}.mg-c-input.mg-c-input--is-input-group-append{--mg-c-button-border-radius-top-left:0;--mg-c-button-border-radius-bottom-left:0}.mg-c-input.mg-c-input--is-input-group-append .mg-c-input__box{margin-right:calc(-1*var(--mg-b-size-border));border-bottom-right-radius:0;border-top-right-radius:0}.mg-c-input.mg-c-input--is-input-group-append .mg-c-input__box:focus-visible{outline-offset:-0.2rem;outline-style:solid;outline-width:.2rem}.mg-c-input.mg-c-input--has-buttons-group-append ::slotted([slot=append-input]){--mg-c-button-border-radius-top-right:0;--mg-c-button-border-radius-bottom-right:0}.mg-c-input.mg-c-input--has-buttons-group-append ::slotted([slot=append-input]:not(:last-of-type)){--mg-c-button-border-right-width:0}.mg-c-input.mg-c-input--has-buttons-group-append ::slotted([slot=append-input]:last-of-type){--mg-c-button-border-radius-top-right:var(--mg-c-input-border-radius);--mg-c-button-border-radius-bottom-right:var(--mg-c-input-border-radius)}.mg-c-input.mg-c-input--is-append-input-slot-content:not(.mg-c-input--readonly) ::slotted([slot=append-input]){align-self:start;padding-top:calc((var(--mg-b-size-min-height) - var(--mg-b-size-16))/2)}.mg-c-input.mg-c-input--has-icon .mg-c-input__input-group-container{position:relative}.mg-c-input.mg-c-input--has-icon .mg-c-input__input-group-container>mg-icon:first-of-type{position:absolute;top:50%;left:var(--mg-b-size-8);color:var(--mg-c-input-color-icon);transform:translateY(-50%)}.mg-c-input.mg-c-input--has-icon .mg-c-input__input-group-container .mg-c-input__box{padding-left:calc(var(--mg-b-size-16) + var(--mg-b-size-8)*2)}.mg-c-input__readonly-value{min-height:var(--mg-b-font-size);align-self:flex-start;margin-top:calc((var(--mg-b-size-min-height) - var(--mg-b-font-size)*var(--mg-b-line-height))/2);overflow-wrap:anywhere}.mg-c-input__input-container{width:100%;flex:1 auto}.mg-c-input.mg-c-input--width-full .mg-c-input__box{width:100%}.mg-c-input.mg-c-input--width-full .mg-c-input__input-group-container{width:100%;flex-grow:1}.mg-c-input.mg-c-input--width-2.mg-c-input--display-character-left .mg-c-input__input-group-container,.mg-c-input.mg-c-input--width-4.mg-c-input--display-character-left .mg-c-input__input-group-container,.mg-c-input.mg-c-input--width-16.mg-c-input--display-character-left .mg-c-input__input-group-container{width:max-content}.mg-c-input.mg-c-input--width-2 .mg-c-input__box{width:var(--mg-b-size-48)}.mg-c-input.mg-c-input--width-2.mg-c-input--text.mg-c-input--display-character-left .mg-c-input__box{width:calc(var(--mg-b-size-48) + var(--mg-c-character-left-message-length)*(.35ch + .3rem))}.mg-c-input.mg-c-input--width-4 .mg-c-input__box{width:var(--mg-b-size-72)}.mg-c-input.mg-c-input--width-4.mg-c-input--text.mg-c-input--display-character-left .mg-c-input__box{width:calc(var(--mg-b-size-72) + var(--mg-c-character-left-message-length)*(.35ch + .3rem))}.mg-c-input.mg-c-input--width-16 .mg-c-input__box{width:calc(26*var(--mg-b-size-8))}.mg-c-input.mg-c-input--width-16.mg-c-input--text.mg-c-input--display-character-left .mg-c-input__box{width:calc(calc(26 * var(--mg-b-size-8)) + var(--mg-c-character-left-message-length)*(.35ch + .3rem))}.mg-c-input.mg-c-input--width-full:not(.mg-c-input--label-on-top){justify-content:stretch}.mg-c-input.mg-c-input--is-input-group-append ::slotted([slot=append-input]),.mg-c-input.mg-c-input--is-append-input-slot-content ::slotted([slot=append-input]){width:auto}:host(.mg-c-input.mg-c-input--width-full) ::slotted(*:not(mg-input-title)){width:100%;max-width:100%}.mg-u-visually-hidden{position:absolute !important;overflow:hidden !important;width:.1rem !important;height:.1rem !important;padding:0 !important;border:0 !important;margin:-0.1rem !important;clip:rect(0.1rem, 0.1rem, 0.1rem, 0.1rem) !important;clip-path:inset(50%) !important;white-space:nowrap !important}*:focus:not(:focus-visible){outline:none}@media (prefers-reduced-motion){*{animation:none !important;transition:none !important}}a{color:inherit;text-decoration:underline}a:hover,a:focus,a:active{text-decoration:none}.mg-c-input.mg-c-input--password .mg-c-input__input-icon{color:var(--mg-b-color-dark)}.mg-c-input.mg-c-input--password .mg-c-input__input-group{position:relative;flex-grow:1}.mg-c-input.mg-c-input--password .mg-c-input__append-button{position:absolute;right:0}.mg-c-input.mg-c-input--password .mg-c-input__box{padding-right:calc(var(--mg-b-size-min-height) + var(--mg-b-size-8))}.mg-c-input.mg-c-input--password .mg-c-input__box::-ms-reveal{display:none}";
|
|
12
|
-
|
|
13
|
-
const MgInputPassword$1 = /*@__PURE__*/ proxyCustomElement(class MgInputPassword extends HTMLElement {
|
|
14
|
-
constructor(registerHost) {
|
|
15
|
-
super();
|
|
16
|
-
if (registerHost !== false) {
|
|
17
|
-
this.__registerHost();
|
|
18
|
-
}
|
|
19
|
-
this.__attachShadow();
|
|
20
|
-
this.valueChange = createEvent(this, "value-change", 7);
|
|
21
|
-
this.inputValid = createEvent(this, "input-valid", 7);
|
|
22
|
-
// hasDisplayedError (triggered by blur event)
|
|
23
|
-
this.hasDisplayedError = false;
|
|
24
|
-
this.customErrorMessage = { lock: false };
|
|
25
|
-
/**
|
|
26
|
-
* Input name
|
|
27
|
-
* If not set the value equals the identifier
|
|
28
|
-
*/
|
|
29
|
-
this.name = this.identifier;
|
|
30
|
-
/**
|
|
31
|
-
* Define if label is displayed on top
|
|
32
|
-
*/
|
|
33
|
-
this.labelOnTop = false;
|
|
34
|
-
/**
|
|
35
|
-
* Define if label is visible
|
|
36
|
-
*/
|
|
37
|
-
this.labelHide = false;
|
|
38
|
-
/**
|
|
39
|
-
* Define if input is required
|
|
40
|
-
*/
|
|
41
|
-
this.required = false;
|
|
42
|
-
/**
|
|
43
|
-
* Define if input is readonly
|
|
44
|
-
*/
|
|
45
|
-
this.readonly = false;
|
|
46
|
-
/**
|
|
47
|
-
* Define if input is disabled
|
|
48
|
-
*/
|
|
49
|
-
this.disabled = false;
|
|
50
|
-
/**
|
|
51
|
-
* Define input width
|
|
52
|
-
*/
|
|
53
|
-
this.mgWidth = 'full';
|
|
54
|
-
/**
|
|
55
|
-
* Define tooltip position
|
|
56
|
-
*/
|
|
57
|
-
this.tooltipPosition = 'input';
|
|
58
|
-
/**
|
|
59
|
-
* Component classes
|
|
60
|
-
*/
|
|
61
|
-
this.classCollection = new ClassList(['mg-c-input--password']);
|
|
62
|
-
/**
|
|
63
|
-
* Indicates if password is displayed or not
|
|
64
|
-
*/
|
|
65
|
-
this.displayPassword = false;
|
|
66
|
-
/**
|
|
67
|
-
* Handle input event
|
|
68
|
-
*/
|
|
69
|
-
this.handleInput = () => {
|
|
70
|
-
this.checkValidity();
|
|
71
|
-
if (this.hasDisplayedError) {
|
|
72
|
-
this.setErrorMessage();
|
|
73
|
-
}
|
|
74
|
-
this.value = this.input.value;
|
|
75
|
-
};
|
|
76
|
-
/**
|
|
77
|
-
* Handle blur event
|
|
78
|
-
*/
|
|
79
|
-
this.handleBlur = () => {
|
|
80
|
-
this.handlerInProgress = 'blur';
|
|
81
|
-
this.displayError().finally(() => {
|
|
82
|
-
// reset guard
|
|
83
|
-
this.handlerInProgress = undefined;
|
|
84
|
-
});
|
|
85
|
-
};
|
|
86
|
-
/**
|
|
87
|
-
* Toggle display-pasword value
|
|
88
|
-
*/
|
|
89
|
-
this.toggleDisplayPassword = () => {
|
|
90
|
-
this.displayPassword = !this.displayPassword;
|
|
91
|
-
};
|
|
92
|
-
/**
|
|
93
|
-
* Check if input is valid
|
|
94
|
-
*/
|
|
95
|
-
this.checkValidity = () => {
|
|
96
|
-
this.setValidity(this.readonly || this.disabled || this.input.checkValidity());
|
|
97
|
-
};
|
|
98
|
-
/**
|
|
99
|
-
* Set input error message
|
|
100
|
-
* @param fromSetErrorContext - context come from `setError` method
|
|
101
|
-
*/
|
|
102
|
-
this.setErrorMessage = (fromSetErrorContext = false) => {
|
|
103
|
-
// Set error message
|
|
104
|
-
this.errorMessage = undefined;
|
|
105
|
-
if (!this.valid) {
|
|
106
|
-
// Does have a new custom error message OR does have a custom error message locked
|
|
107
|
-
if (fromSetErrorContext || (this.customErrorMessage.lock && this.customErrorMessage.message !== undefined)) {
|
|
108
|
-
this.errorMessage = this.customErrorMessage.message;
|
|
109
|
-
}
|
|
110
|
-
// required
|
|
111
|
-
else if (this.input.validity.valueMissing) {
|
|
112
|
-
this.errorMessage = this.messages.errors.required;
|
|
113
|
-
}
|
|
114
|
-
}
|
|
115
|
-
};
|
|
116
|
-
}
|
|
117
|
-
handleValue(newValue) {
|
|
118
|
-
this.valueChange.emit(newValue);
|
|
119
|
-
}
|
|
120
|
-
watchReadonly(newValue) {
|
|
121
|
-
if (newValue)
|
|
122
|
-
this.classCollection.add(classReadonly);
|
|
123
|
-
else
|
|
124
|
-
this.classCollection.delete(classReadonly);
|
|
125
|
-
}
|
|
126
|
-
handleValidityChange(newValue, _oldValue, prop) {
|
|
127
|
-
if (this.input !== undefined) {
|
|
128
|
-
this.input[prop] = newValue;
|
|
129
|
-
this.checkValidity();
|
|
130
|
-
if (this.hasDisplayedError) {
|
|
131
|
-
this.setErrorMessage();
|
|
132
|
-
this.hasDisplayedError = false;
|
|
133
|
-
}
|
|
134
|
-
}
|
|
135
|
-
}
|
|
136
|
-
watchDisabled(newValue) {
|
|
137
|
-
if (newValue)
|
|
138
|
-
this.classCollection.add(classDisabled);
|
|
139
|
-
else
|
|
140
|
-
this.classCollection.delete(classDisabled);
|
|
141
|
-
}
|
|
142
|
-
watchMgWidth(newValue) {
|
|
143
|
-
// reset width class
|
|
144
|
-
widths.forEach(width => {
|
|
145
|
-
this.classCollection.delete(`mg-c-input--width-${width}`);
|
|
146
|
-
});
|
|
147
|
-
// apply new width
|
|
148
|
-
if (newValue !== undefined)
|
|
149
|
-
this.classCollection.add(`mg-c-input--width-${this.mgWidth}`);
|
|
150
|
-
}
|
|
151
|
-
/**
|
|
152
|
-
* Set focus on input.
|
|
153
|
-
*/
|
|
154
|
-
async setFocus() {
|
|
155
|
-
var _a;
|
|
156
|
-
(_a = this.input) === null || _a === void 0 ? void 0 : _a.focus();
|
|
157
|
-
}
|
|
158
|
-
/**
|
|
159
|
-
* Display input error if it exists.
|
|
160
|
-
*/
|
|
161
|
-
displayError() {
|
|
162
|
-
// Use `Promise` as requested for stencil method
|
|
163
|
-
// Use `requestAnimationFrame` to ensure:
|
|
164
|
-
// - DOM is fully updated before validation
|
|
165
|
-
// - Async operations are completed
|
|
166
|
-
// - No timing issues with Stencil's render cycle
|
|
167
|
-
// - Keep everything in sync both inside and outside the component
|
|
168
|
-
return new Promise(resolve => {
|
|
169
|
-
requestAnimationFrame(() => {
|
|
170
|
-
this.checkValidity();
|
|
171
|
-
this.setErrorMessage();
|
|
172
|
-
this.hasDisplayedError = this.invalid;
|
|
173
|
-
resolve();
|
|
174
|
-
});
|
|
175
|
-
});
|
|
176
|
-
}
|
|
177
|
-
/**
|
|
178
|
-
* Set an error and display a custom error message.
|
|
179
|
-
* This method can be used to set the component's error state from its context by passing a boolean value to the `valid` parameter.
|
|
180
|
-
* It must be paired with an error message to display for the given context.
|
|
181
|
-
* When used to set validity to `false`, you should use this method again to reset the validity to `true`.
|
|
182
|
-
* @param valid - value indicating the validity
|
|
183
|
-
* @param errorMessage - the error message to display
|
|
184
|
-
* @param errorMessageLock - lock the error message and validity state
|
|
185
|
-
*/
|
|
186
|
-
async setError(valid, errorMessage, errorMessageLock = false) {
|
|
187
|
-
if (typeof valid !== 'boolean') {
|
|
188
|
-
throw new Error('<mg-input-password> method "setError()" param "valid" must be a boolean.');
|
|
189
|
-
}
|
|
190
|
-
else if (errorMessage !== undefined && !isValidString(errorMessage)) {
|
|
191
|
-
throw new Error('<mg-input-password> method "setError()" param "errorMessage" must be a string.');
|
|
192
|
-
}
|
|
193
|
-
else {
|
|
194
|
-
this.customErrorMessage = {
|
|
195
|
-
lock: valid ? false : errorMessageLock,
|
|
196
|
-
message: valid ? undefined : errorMessage,
|
|
197
|
-
};
|
|
198
|
-
this.setValidity(valid);
|
|
199
|
-
this.setErrorMessage(true);
|
|
200
|
-
this.hasDisplayedError = this.invalid;
|
|
201
|
-
}
|
|
202
|
-
}
|
|
203
|
-
/**
|
|
204
|
-
* Reset value, validity and error state
|
|
205
|
-
*/
|
|
206
|
-
async reset() {
|
|
207
|
-
if (!this.readonly) {
|
|
208
|
-
this.value = '';
|
|
209
|
-
// Use `Promise` as requested for stencil method
|
|
210
|
-
// Use `requestAnimationFrame` to ensure:
|
|
211
|
-
// - DOM is fully updated before validation
|
|
212
|
-
// - Async operations are completed
|
|
213
|
-
// - No timing issues with Stencil's render cycle
|
|
214
|
-
// - Keep everything in sync both inside and outside the component
|
|
215
|
-
return new Promise(resolve => {
|
|
216
|
-
requestAnimationFrame(() => {
|
|
217
|
-
// unlock validity check by reseting customErrorMessage
|
|
218
|
-
this.customErrorMessage = { lock: false };
|
|
219
|
-
this.checkValidity();
|
|
220
|
-
this.errorMessage = undefined;
|
|
221
|
-
this.hasDisplayedError = false;
|
|
222
|
-
resolve();
|
|
223
|
-
});
|
|
224
|
-
});
|
|
225
|
-
}
|
|
226
|
-
}
|
|
227
|
-
/**
|
|
228
|
-
* Method to set validity values
|
|
229
|
-
* @param newValue - valid new value
|
|
230
|
-
*/
|
|
231
|
-
setValidity(newValue) {
|
|
232
|
-
const oldValue = this.valid;
|
|
233
|
-
if (!this.customErrorMessage.lock || (this.customErrorMessage.message !== undefined && !newValue)) {
|
|
234
|
-
this.valid = newValue;
|
|
235
|
-
}
|
|
236
|
-
this.invalid = !this.valid;
|
|
237
|
-
// We need to send valid event even if it is the same value
|
|
238
|
-
if (this.handlerInProgress === undefined || (this.handlerInProgress === 'blur' && this.valid !== oldValue))
|
|
239
|
-
this.inputValid.emit(this.valid);
|
|
240
|
-
}
|
|
241
|
-
/*************
|
|
242
|
-
* Lifecycle *
|
|
243
|
-
*************/
|
|
244
|
-
/**
|
|
245
|
-
* Check if component props are well configured on init
|
|
246
|
-
* @returns timeout
|
|
247
|
-
*/
|
|
248
|
-
componentWillLoad() {
|
|
249
|
-
// Get locales
|
|
250
|
-
this.messages = initLocales(this.element).messages;
|
|
251
|
-
this.watchReadonly(this.readonly);
|
|
252
|
-
this.watchDisabled(this.disabled);
|
|
253
|
-
this.watchMgWidth(this.mgWidth);
|
|
254
|
-
// Check validity when component is ready
|
|
255
|
-
// return a promise to process action only in the FIRST render().
|
|
256
|
-
// https://stenciljs.com/docs/component-lifecycle#componentwillload
|
|
257
|
-
return setTimeout(() => {
|
|
258
|
-
this.checkValidity();
|
|
259
|
-
}, 0);
|
|
260
|
-
}
|
|
261
|
-
/**
|
|
262
|
-
* Render
|
|
263
|
-
* @returns HTML Element
|
|
264
|
-
*/
|
|
265
|
-
render() {
|
|
266
|
-
return (h("mg-input", { key: '845c075a44c50043776b7577642254d772629eef', label: this.label, identifier: this.identifier, class: this.classCollection.join(), labelOnTop: this.labelOnTop, labelHide: this.labelHide, required: this.required, tooltip: this.tooltip, tooltipPosition: this.readonly && this.value === undefined ? 'label' : this.tooltipPosition, helpText: this.helpText, errorMessage: this.errorMessage }, this.readonly ? (this.value !== undefined && h("b", { class: "mg-c-input__readonly-value" }, '•'.repeat(this.value.length))) : (h("span", { class: "mg-c-input__input-group" }, h("input", { type: this.displayPassword ? 'text' : 'password', class: "mg-c-input__box mg-c-input__box--width", value: this.value, id: this.identifier, name: this.name, placeholder: this.placeholder, title: this.placeholder, disabled: this.disabled, required: this.required, maxlength: this.maxlength, "aria-invalid": (this.invalid === true).toString(), onInput: this.handleInput, onBlur: this.handleBlur, ref: (el) => {
|
|
267
|
-
if (el !== null)
|
|
268
|
-
this.input = el;
|
|
269
|
-
} }), h("mg-button", { label: this.messages.input.password[this.displayPassword ? 'hide' : 'display'], disabled: this.disabled, variant: "flat", class: "mg-c-input__append-button", "is-icon": true, onClick: this.toggleDisplayPassword, "aria-controls": this.identifier }, h("mg-icon", { class: "mg-c-input__input-icon", icon: this.displayPassword ? 'eye-slash' : 'eye' }))))));
|
|
270
|
-
}
|
|
271
|
-
get element() { return this; }
|
|
272
|
-
static get watchers() { return {
|
|
273
|
-
"value": ["handleValue"],
|
|
274
|
-
"readonly": ["watchReadonly", "handleValidityChange"],
|
|
275
|
-
"required": ["handleValidityChange"],
|
|
276
|
-
"disabled": ["handleValidityChange", "watchDisabled"],
|
|
277
|
-
"mgWidth": ["watchMgWidth"]
|
|
278
|
-
}; }
|
|
279
|
-
static get style() { return mgInputPasswordCss; }
|
|
280
|
-
}, [257, "mg-input-password", {
|
|
281
|
-
"value": [1537],
|
|
282
|
-
"identifier": [1],
|
|
283
|
-
"name": [1],
|
|
284
|
-
"label": [1],
|
|
285
|
-
"labelOnTop": [4, "label-on-top"],
|
|
286
|
-
"labelHide": [4, "label-hide"],
|
|
287
|
-
"placeholder": [1],
|
|
288
|
-
"maxlength": [2],
|
|
289
|
-
"required": [4],
|
|
290
|
-
"readonly": [4],
|
|
291
|
-
"disabled": [4],
|
|
292
|
-
"mgWidth": [8, "mg-width"],
|
|
293
|
-
"tooltip": [1],
|
|
294
|
-
"tooltipPosition": [1, "tooltip-position"],
|
|
295
|
-
"helpText": [1, "help-text"],
|
|
296
|
-
"valid": [1028],
|
|
297
|
-
"invalid": [1028],
|
|
298
|
-
"classCollection": [32],
|
|
299
|
-
"errorMessage": [32],
|
|
300
|
-
"displayPassword": [32],
|
|
301
|
-
"setFocus": [64],
|
|
302
|
-
"displayError": [64],
|
|
303
|
-
"setError": [64],
|
|
304
|
-
"reset": [64]
|
|
305
|
-
}, undefined, {
|
|
306
|
-
"value": ["handleValue"],
|
|
307
|
-
"readonly": ["watchReadonly", "handleValidityChange"],
|
|
308
|
-
"required": ["handleValidityChange"],
|
|
309
|
-
"disabled": ["handleValidityChange", "watchDisabled"],
|
|
310
|
-
"mgWidth": ["watchMgWidth"]
|
|
311
|
-
}]);
|
|
312
|
-
function defineCustomElement$1() {
|
|
313
|
-
if (typeof customElements === "undefined") {
|
|
314
|
-
return;
|
|
315
|
-
}
|
|
316
|
-
const components = ["mg-input-password", "mg-button", "mg-icon", "mg-input", "mg-input-title", "mg-tooltip", "mg-tooltip-content"];
|
|
317
|
-
components.forEach(tagName => { switch (tagName) {
|
|
318
|
-
case "mg-input-password":
|
|
319
|
-
if (!customElements.get(tagName)) {
|
|
320
|
-
customElements.define(tagName, MgInputPassword$1);
|
|
321
|
-
}
|
|
322
|
-
break;
|
|
323
|
-
case "mg-button":
|
|
324
|
-
if (!customElements.get(tagName)) {
|
|
325
|
-
defineCustomElement$7();
|
|
326
|
-
}
|
|
327
|
-
break;
|
|
328
|
-
case "mg-icon":
|
|
329
|
-
if (!customElements.get(tagName)) {
|
|
330
|
-
defineCustomElement$6();
|
|
331
|
-
}
|
|
332
|
-
break;
|
|
333
|
-
case "mg-input":
|
|
334
|
-
if (!customElements.get(tagName)) {
|
|
335
|
-
defineCustomElement$5();
|
|
336
|
-
}
|
|
337
|
-
break;
|
|
338
|
-
case "mg-input-title":
|
|
339
|
-
if (!customElements.get(tagName)) {
|
|
340
|
-
defineCustomElement$4();
|
|
341
|
-
}
|
|
342
|
-
break;
|
|
343
|
-
case "mg-tooltip":
|
|
344
|
-
if (!customElements.get(tagName)) {
|
|
345
|
-
defineCustomElement$3();
|
|
346
|
-
}
|
|
347
|
-
break;
|
|
348
|
-
case "mg-tooltip-content":
|
|
349
|
-
if (!customElements.get(tagName)) {
|
|
350
|
-
defineCustomElement$2();
|
|
351
|
-
}
|
|
352
|
-
break;
|
|
353
|
-
} });
|
|
354
|
-
}
|
|
355
|
-
defineCustomElement$1();
|
|
356
|
-
|
|
357
|
-
const MgInputPassword = MgInputPassword$1;
|
|
358
|
-
const defineCustomElement = defineCustomElement$1;
|
|
359
|
-
|
|
360
|
-
export { MgInputPassword, defineCustomElement };
|
|
1
|
+
import{transformTag as t,proxyCustomElement as i,HTMLElement as n,createEvent as e,h as s}from"@stencil/core/internal/client";import{C as o,i as r}from"./index2.js";import{c as a,b as p,w as c}from"./mg-input.conf.js";import{i as m}from"./index3.js";import{d as h}from"./mg-button2.js";import{d as u}from"./mg-icon2.js";import{d as g}from"./mg-input2.js";import{d as l}from"./mg-input-title2.js";import{d}from"./mg-tooltip2.js";import{d as b}from"./mg-tooltip-content2.js";const v=i(class extends n{constructor(t){super(),!1!==t&&this.__registerHost(),this.__attachShadow(),this.valueChange=e(this,"value-change",7),this.inputValid=e(this,"input-valid",7),this.hasDisplayedError=!1,this.customErrorMessage={lock:!1},this.name=this.identifier,this.labelOnTop=!1,this.labelHide=!1,this.required=!1,this.readonly=!1,this.disabled=!1,this.mgWidth="full",this.tooltipPosition="input",this.classCollection=new o(["mg-c-input--password"]),this.displayPassword=!1,this.handleInput=()=>{this.checkValidity(),this.hasDisplayedError&&this.setErrorMessage(),this.value=this.input.value},this.handleBlur=()=>{this.handlerInProgress="blur",this.displayError().finally((()=>{this.handlerInProgress=void 0}))},this.toggleDisplayPassword=()=>{this.displayPassword=!this.displayPassword},this.checkValidity=()=>{this.setValidity(this.readonly||this.disabled||this.input.checkValidity())},this.setErrorMessage=(t=!1)=>{this.errorMessage=void 0,this.valid||(t||this.customErrorMessage.lock&&void 0!==this.customErrorMessage.message?this.errorMessage=this.customErrorMessage.message:this.input.validity.valueMissing&&(this.errorMessage=this.messages.errors.required))}}handleValue(t){this.valueChange.emit(t)}watchReadonly(t){t?this.classCollection.add(a):this.classCollection.delete(a)}handleValidityChange(t,i,n){void 0!==this.input&&(this.input[n]=t,this.checkValidity(),this.hasDisplayedError&&(this.setErrorMessage(),this.hasDisplayedError=!1))}watchDisabled(t){t?this.classCollection.add(p):this.classCollection.delete(p)}watchMgWidth(t){c.forEach((t=>{this.classCollection.delete("mg-c-input--width-"+t)})),void 0!==t&&this.classCollection.add("mg-c-input--width-"+this.mgWidth)}async setFocus(){var t;null===(t=this.input)||void 0===t||t.focus()}displayError(){return new Promise((t=>{requestAnimationFrame((()=>{this.checkValidity(),this.setErrorMessage(),this.hasDisplayedError=this.invalid,t()}))}))}async setError(t,i,n=!1){if("boolean"!=typeof t)throw Error('<mg-input-password> method "setError()" param "valid" must be a boolean.');if(void 0!==i&&!r(i))throw Error('<mg-input-password> method "setError()" param "errorMessage" must be a string.');this.customErrorMessage={lock:!t&&n,message:t?void 0:i},this.setValidity(t),this.setErrorMessage(!0),this.hasDisplayedError=this.invalid}async reset(){if(!this.readonly)return this.value="",new Promise((t=>{requestAnimationFrame((()=>{this.customErrorMessage={lock:!1},this.checkValidity(),this.errorMessage=void 0,this.hasDisplayedError=!1,t()}))}))}setValidity(t){const i=this.valid;this.customErrorMessage.lock&&(void 0===this.customErrorMessage.message||t)||(this.valid=t),this.invalid=!this.valid,(void 0===this.handlerInProgress||"blur"===this.handlerInProgress&&this.valid!==i)&&this.inputValid.emit(this.valid)}componentWillLoad(){return this.messages=m(this.element).messages,this.watchReadonly(this.readonly),this.watchDisabled(this.disabled),this.watchMgWidth(this.mgWidth),setTimeout((()=>{this.checkValidity()}),0)}render(){return s("mg-input",{key:"7154d79c2c609f47ae7c9542cffd1c92d26ce383",label:this.label,identifier:this.identifier,class:this.classCollection.join(),labelOnTop:this.labelOnTop,labelHide:this.labelHide,required:this.required,tooltip:this.tooltip,tooltipPosition:this.readonly&&void 0===this.value?"label":this.tooltipPosition,helpText:this.helpText,errorMessage:this.errorMessage},this.readonly?void 0!==this.value&&s("b",{class:"mg-c-input__readonly-value"},"•".repeat(this.value.length)):s("span",{class:"mg-c-input__input-group"},s("input",{type:this.displayPassword?"text":"password",class:"mg-c-input__box mg-c-input__box--width",value:this.value,id:this.identifier,name:this.name,placeholder:this.placeholder,title:this.placeholder,disabled:this.disabled,required:this.required,maxlength:this.maxlength,"aria-invalid":""+(!0===this.invalid),onInput:this.handleInput,onBlur:this.handleBlur,ref:t=>{null!==t&&(this.input=t)}}),s("mg-button",{label:this.messages.input.password[this.displayPassword?"hide":"display"],disabled:this.disabled,variant:"flat",class:"mg-c-input__append-button","is-icon":!0,onClick:this.toggleDisplayPassword,"aria-controls":this.identifier},s("mg-icon",{class:"mg-c-input__input-icon",icon:this.displayPassword?"eye-slash":"eye"}))))}get element(){return this}static get watchers(){return{value:[{handleValue:0}],readonly:[{watchReadonly:0},{handleValidityChange:0}],required:[{handleValidityChange:0}],disabled:[{handleValidityChange:0},{watchDisabled:0}],mgWidth:[{watchMgWidth:0}]}}static get style(){return".mg-c-input__box{height:var(--mg-b-size-min-height);box-sizing:border-box;padding:calc((var(--mg-b-size-min-height) - var(--mg-b-font-size)*var(--mg-b-line-height))/2) var(--mg-b-size-8);border-width:var(--mg-c-input-border-width);border-style:solid;border-color:var(--mg-c-input-color-border);border-radius:var(--mg-c-input-border-radius);background-color:var(--mg-b-color-light);color:var(--mg-b-color-dark);font-family:inherit;font-size:var(--mg-b-font-size);text-align:var(--mg-c-input-text-align, left)}.mg-c-input__box::placeholder{color:var(--mg-c-input-placeholder-color-text);font-style:italic}.mg-c-input__box:focus{box-shadow:0 0 var(--mg-b-size-4) var(--mg-c-input-color-box-shadow-focus)}.mg-c-input__box:disabled{opacity:var(--mg-b-opacity-element-disabled)}.mg-c-input.mg-c-input--has-error .mg-c-input__box{border-color:var(--mg-b-color-danger)}.mg-c-input.mg-c-input--is-input-group-append{--mg-c-button-border-radius-top-left:0;--mg-c-button-border-radius-bottom-left:0}.mg-c-input.mg-c-input--is-input-group-append .mg-c-input__box{margin-right:calc(-1*var(--mg-b-size-border));border-bottom-right-radius:0;border-top-right-radius:0}.mg-c-input.mg-c-input--is-input-group-append .mg-c-input__box:focus-visible{outline-offset:-0.2rem;outline-style:solid;outline-width:.2rem}.mg-c-input.mg-c-input--has-buttons-group-append ::slotted([slot=append-input]){--mg-c-button-border-radius-top-right:0;--mg-c-button-border-radius-bottom-right:0}.mg-c-input.mg-c-input--has-buttons-group-append ::slotted([slot=append-input]:not(:last-of-type)){--mg-c-button-border-right-width:0}.mg-c-input.mg-c-input--has-buttons-group-append ::slotted([slot=append-input]:last-of-type){--mg-c-button-border-radius-top-right:var(--mg-c-input-border-radius);--mg-c-button-border-radius-bottom-right:var(--mg-c-input-border-radius)}.mg-c-input.mg-c-input--is-append-input-slot-content:not(.mg-c-input--readonly) ::slotted([slot=append-input]){align-self:start;padding-top:calc((var(--mg-b-size-min-height) - var(--mg-b-size-16))/2)}.mg-c-input.mg-c-input--has-icon .mg-c-input__input-group-container{position:relative}.mg-c-input.mg-c-input--has-icon .mg-c-input__input-group-container>mg-icon:first-of-type{position:absolute;top:50%;left:var(--mg-b-size-8);color:var(--mg-c-input-color-icon);transform:translateY(-50%)}.mg-c-input.mg-c-input--has-icon .mg-c-input__input-group-container .mg-c-input__box{padding-left:calc(var(--mg-b-size-16) + var(--mg-b-size-8)*2)}.mg-c-input__readonly-value{min-height:var(--mg-b-font-size);align-self:flex-start;margin-top:calc((var(--mg-b-size-min-height) - var(--mg-b-font-size)*var(--mg-b-line-height))/2);overflow-wrap:anywhere}.mg-c-input__input-container{width:100%;flex:1 auto}.mg-c-input.mg-c-input--width-full .mg-c-input__box{width:100%}.mg-c-input.mg-c-input--width-full .mg-c-input__input-group-container{width:100%;flex-grow:1}.mg-c-input.mg-c-input--width-2.mg-c-input--display-character-left .mg-c-input__input-group-container,.mg-c-input.mg-c-input--width-4.mg-c-input--display-character-left .mg-c-input__input-group-container,.mg-c-input.mg-c-input--width-16.mg-c-input--display-character-left .mg-c-input__input-group-container{width:max-content}.mg-c-input.mg-c-input--width-2 .mg-c-input__box{width:var(--mg-b-size-48)}.mg-c-input.mg-c-input--width-2.mg-c-input--text.mg-c-input--display-character-left .mg-c-input__box{width:calc(var(--mg-b-size-48) + var(--mg-c-character-left-message-length)*(.35ch + .3rem))}.mg-c-input.mg-c-input--width-4 .mg-c-input__box{width:var(--mg-b-size-72)}.mg-c-input.mg-c-input--width-4.mg-c-input--text.mg-c-input--display-character-left .mg-c-input__box{width:calc(var(--mg-b-size-72) + var(--mg-c-character-left-message-length)*(.35ch + .3rem))}.mg-c-input.mg-c-input--width-16 .mg-c-input__box{width:calc(26*var(--mg-b-size-8))}.mg-c-input.mg-c-input--width-16.mg-c-input--text.mg-c-input--display-character-left .mg-c-input__box{width:calc(calc(26 * var(--mg-b-size-8)) + var(--mg-c-character-left-message-length)*(.35ch + .3rem))}.mg-c-input.mg-c-input--width-full:not(.mg-c-input--label-on-top){justify-content:stretch}.mg-c-input.mg-c-input--is-input-group-append ::slotted([slot=append-input]),.mg-c-input.mg-c-input--is-append-input-slot-content ::slotted([slot=append-input]){width:auto}:host(.mg-c-input.mg-c-input--width-full) ::slotted(*:not(mg-input-title)){width:100%;max-width:100%}.mg-u-visually-hidden{position:absolute !important;overflow:hidden !important;width:.1rem !important;height:.1rem !important;padding:0 !important;border:0 !important;margin:-0.1rem !important;clip:rect(0.1rem, 0.1rem, 0.1rem, 0.1rem) !important;clip-path:inset(50%) !important;white-space:nowrap !important}*:focus:not(:focus-visible){outline:none}@media (prefers-reduced-motion){*{animation:none !important;transition:none !important}}a{color:inherit;text-decoration:underline}a:hover,a:focus,a:active{text-decoration:none}.mg-c-input.mg-c-input--password .mg-c-input__input-icon{color:var(--mg-b-color-dark)}.mg-c-input.mg-c-input--password .mg-c-input__input-group{position:relative;flex-grow:1}.mg-c-input.mg-c-input--password .mg-c-input__append-button{position:absolute;right:0}.mg-c-input.mg-c-input--password .mg-c-input__box{padding-right:calc(var(--mg-b-size-min-height) + var(--mg-b-size-8))}.mg-c-input.mg-c-input--password .mg-c-input__box::-ms-reveal{display:none}"}},[1,"mg-input-password",{value:[1537],identifier:[1],name:[1],label:[1],labelOnTop:[4,"label-on-top"],labelHide:[4,"label-hide"],placeholder:[1],maxlength:[2],required:[4],readonly:[4],disabled:[4],mgWidth:[8,"mg-width"],tooltip:[1],tooltipPosition:[1,"tooltip-position"],helpText:[1,"help-text"],valid:[1028],invalid:[1028],classCollection:[32],errorMessage:[32],displayPassword:[32],setFocus:[64],displayError:[64],setError:[64],reset:[64]},void 0,{value:[{handleValue:0}],readonly:[{watchReadonly:0},{handleValidityChange:0}],required:[{handleValidityChange:0}],disabled:[{handleValidityChange:0},{watchDisabled:0}],mgWidth:[{watchMgWidth:0}]}]);function f(){"undefined"!=typeof customElements&&["mg-input-password","mg-button","mg-icon","mg-input","mg-input-title","mg-tooltip","mg-tooltip-content"].forEach((i=>{switch(i){case"mg-input-password":customElements.get(t(i))||customElements.define(t(i),v);break;case"mg-button":customElements.get(t(i))||h();break;case"mg-icon":customElements.get(t(i))||u();break;case"mg-input":customElements.get(t(i))||g();break;case"mg-input-title":customElements.get(t(i))||l();break;case"mg-tooltip":customElements.get(t(i))||d();break;case"mg-tooltip-content":customElements.get(t(i))||b()}}))}f();const w=v,_=f;export{w as MgInputPassword,_ as defineCustomElement}
|