@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,371 +1 @@
|
|
|
1
|
-
import { proxyCustomElement, HTMLElement, createEvent, h } from '@stencil/core/internal/client';
|
|
2
|
-
import { C as ClassList, t as toString, d as allItemsAreString, i as isValidString } from './index2.js';
|
|
3
|
-
import { d as defineCustomElement$5, c as classReadonly, a as classDisabled } from './mg-input2.js';
|
|
4
|
-
import { d as defineCustomElement$6 } from './mg-icon2.js';
|
|
5
|
-
import { d as defineCustomElement$4 } from './mg-input-title2.js';
|
|
6
|
-
import { d as defineCustomElement$3 } from './mg-tooltip2.js';
|
|
7
|
-
import { d as defineCustomElement$2 } from './mg-tooltip-content2.js';
|
|
8
|
-
|
|
9
|
-
const mgInputToggleCss = ".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-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__toggle-item-container{overflow:hidden;box-sizing:border-box;padding:.1rem var(--mg-b-size-8);border-width:var(--mg-b-size-border);border-radius:calc((var(--mg-b-font-size)*var(--mg-b-line-height) + 2*var(--mg-b-size-4))/var(--mg-c-input-toggle-border-radius-ratio));color:var(--mg-b-color-neutral-110);font-weight:unset;line-height:var(--mg-b-size-16);text-overflow:ellipsis;white-space:nowrap}.mg-c-input__toggle-item-container:first-of-type{border-style:solid;border-color:var(--mg-b-color-neutral-80);background-color:var(--mg-b-color-light);font-weight:600}.mg-c-input__button-toggle{display:flex;overflow:hidden;min-width:0;align-items:center;padding:.1rem;border-width:var(--mg-c-input-border-width);border-style:solid;border-color:var(--mg-b-color-neutral-80);border-radius:calc((var(--mg-b-font-size)*var(--mg-b-line-height) + 2*(var(--mg-b-size-4) + var(--mg-b-size-4) + var(--mg-c-input-border-width)))/var(--mg-c-input-toggle-border-radius-ratio));background-color:var(--mg-b-color-neutral-20);cursor:pointer;font-family:var(--mg-b-font-family);font-size:var(--mg-b-small-font-size);line-height:var(--mg-b-size-12)}.mg-c-input__button-toggle:disabled{cursor:default}.mg-c-input__button-toggle:focus{outline-offset:var(--mg-b-size-4)}.mg-c-input.mg-c-input--toggle-is-active .mg-c-input__button-toggle{border-color:var(--mg-b-color-neutral-110);background-color:var(--mg-b-color-neutral-110)}.mg-c-input.mg-c-input--toggle-is-active .mg-c-input__toggle-item-container:first-of-type{border:unset;background-color:unset;color:var(--mg-b-color-light);font-weight:unset}.mg-c-input.mg-c-input--toggle-is-active .mg-c-input__toggle-item-container:last-of-type{border-style:solid;border-color:var(--mg-b-color-light);background-color:var(--mg-b-color-light);font-weight:600}.mg-c-input.mg-c-input--toggle:not(.mg-c-input--readonly) .mg-c-input__button-toggle,.mg-c-input.mg-c-input--toggle:not(.mg-c-input--readonly).mg-c-input--label-on-top .mg-c-input__button-toggle{margin-top:var(--mg-b-size-4)}@media screen and (min-width: 768px){.mg-c-input.mg-c-input--toggle:not(.mg-c-input--readonly) .mg-c-input__button-toggle{margin-top:calc((var(--mg-b-size-min-height) - (var(--mg-b-size-20) + var(--mg-b-size-4)) + .1rem)/2)}}.mg-c-input.mg-c-input--toggle-icon .mg-c-input__button-toggle{width:100%;min-width:calc(var(--mg-b-size-20)*2);max-width:calc(var(--mg-b-size-20)*2)}.mg-c-input.mg-c-input--toggle-icon .mg-c-input__toggle-item-container{display:flex;overflow:unset;min-width:var(--mg-b-size-20);max-width:var(--mg-b-size-20);height:var(--mg-b-size-20);align-items:center;justify-content:center;padding:0;visibility:hidden}.mg-c-input.mg-c-input--toggle-icon .mg-c-input__toggle-item-container:first-of-type{visibility:visible}.mg-c-input.mg-c-input--toggle-icon .mg-c-input__toggle-item-container:last-of-type{width:unset}.mg-c-input.mg-c-input--toggle-icon .mg-c-input__toggle-item-container ::slotted(mg-icon){display:flex}.mg-c-input.mg-c-input--toggle-icon.mg-c-input--toggle-is-active .mg-c-input__toggle-item-container:first-of-type{min-width:unset;visibility:hidden}.mg-c-input.mg-c-input--toggle-icon.mg-c-input--toggle-is-active .mg-c-input__toggle-item-container:last-of-type{margin-left:auto;visibility:visible}.mg-c-input.mg-c-input--toggle-on-off.mg-c-input--toggle-icon .mg-c-input__toggle-item-container:first-of-type ::slotted(*){display:none}";
|
|
10
|
-
|
|
11
|
-
/**
|
|
12
|
-
* type Option validation function
|
|
13
|
-
* @param option - radio option
|
|
14
|
-
* @returns toggle option type is valid
|
|
15
|
-
*/
|
|
16
|
-
const isOption = (option) => typeof option === 'object' && typeof option.title === 'string';
|
|
17
|
-
const MgInputToggle$1 = /*@__PURE__*/ proxyCustomElement(class MgInputToggle extends HTMLElement {
|
|
18
|
-
constructor(registerHost) {
|
|
19
|
-
super();
|
|
20
|
-
if (registerHost !== false) {
|
|
21
|
-
this.__registerHost();
|
|
22
|
-
}
|
|
23
|
-
this.__attachShadow();
|
|
24
|
-
this.valueChange = createEvent(this, "value-change", 7);
|
|
25
|
-
this.inputValid = createEvent(this, "input-valid", 7);
|
|
26
|
-
// Classes
|
|
27
|
-
this.classIsActive = 'mg-c-input--toggle-is-active';
|
|
28
|
-
this.classOnOff = 'mg-c-input--toggle-on-off';
|
|
29
|
-
this.classIcon = 'mg-c-input--toggle-icon';
|
|
30
|
-
/**
|
|
31
|
-
* Input name
|
|
32
|
-
* If not set the value equals the identifier
|
|
33
|
-
*/
|
|
34
|
-
this.name = this.identifier;
|
|
35
|
-
/**
|
|
36
|
-
* Define if label is displayed on top
|
|
37
|
-
*/
|
|
38
|
-
this.labelOnTop = false;
|
|
39
|
-
/**
|
|
40
|
-
* Define if label is visible
|
|
41
|
-
*/
|
|
42
|
-
this.labelHide = false;
|
|
43
|
-
/**
|
|
44
|
-
* Define if toggle have on/off style,
|
|
45
|
-
* the left icon is hidden.
|
|
46
|
-
* Only available in combination with the "isIcon" prop.
|
|
47
|
-
*/
|
|
48
|
-
this.isOnOff = false;
|
|
49
|
-
/**
|
|
50
|
-
* Define if toggle display icon
|
|
51
|
-
*/
|
|
52
|
-
this.isIcon = false;
|
|
53
|
-
/**
|
|
54
|
-
* Define if input is readonly
|
|
55
|
-
*/
|
|
56
|
-
this.readonly = false;
|
|
57
|
-
/**
|
|
58
|
-
* Define if input is disabled
|
|
59
|
-
*/
|
|
60
|
-
this.disabled = false;
|
|
61
|
-
/**
|
|
62
|
-
* Define tooltip position
|
|
63
|
-
*/
|
|
64
|
-
this.tooltipPosition = 'input';
|
|
65
|
-
/**
|
|
66
|
-
* Component classes
|
|
67
|
-
*/
|
|
68
|
-
this.classCollection = new ClassList(['mg-c-input--toggle']);
|
|
69
|
-
/**
|
|
70
|
-
* Set input error message
|
|
71
|
-
* @param errorMessage - errorMessage override
|
|
72
|
-
*/
|
|
73
|
-
this.setErrorMessage = (errorMessage) => {
|
|
74
|
-
// Set error message
|
|
75
|
-
this.errorMessage = undefined;
|
|
76
|
-
// Does have a custom error message
|
|
77
|
-
if (!this.valid && typeof errorMessage === 'string') {
|
|
78
|
-
this.errorMessage = errorMessage;
|
|
79
|
-
}
|
|
80
|
-
};
|
|
81
|
-
/**
|
|
82
|
-
* Handle switch button to update value
|
|
83
|
-
*/
|
|
84
|
-
this.handleSwitchButton = () => {
|
|
85
|
-
const currentOptionIndex = this.getCurrentOptionIndex(this.value);
|
|
86
|
-
this.value = this.options[currentOptionIndex === 0 ? 1 : 0].value;
|
|
87
|
-
};
|
|
88
|
-
/**
|
|
89
|
-
* Slots validation
|
|
90
|
-
*/
|
|
91
|
-
this.validateSlots = () => {
|
|
92
|
-
const slots = Array.from(this.element.children);
|
|
93
|
-
// validate slots
|
|
94
|
-
if (slots.length !== 2) {
|
|
95
|
-
if (this.isOnOff && this.isIcon) {
|
|
96
|
-
// ONLY slot="item-2" is required in with isOnOff && isIcon
|
|
97
|
-
if (this.element.querySelector('[slot="item-2"]') === null) {
|
|
98
|
-
throw new Error('<mg-input-toggle> an element with attribute slot="item-2" is required.');
|
|
99
|
-
}
|
|
100
|
-
}
|
|
101
|
-
else {
|
|
102
|
-
throw new Error('<mg-input-toggle> 2 slots are required.');
|
|
103
|
-
}
|
|
104
|
-
}
|
|
105
|
-
// update slots
|
|
106
|
-
if (!this.isIcon) {
|
|
107
|
-
// Due to text-overflow set to ellipsis
|
|
108
|
-
// we need to ensure that slot element have title to display value on mouse over
|
|
109
|
-
slots.forEach(slot => slot.setAttribute('title', slot.textContent));
|
|
110
|
-
}
|
|
111
|
-
else {
|
|
112
|
-
slots.forEach(slot => {
|
|
113
|
-
if (slot.nodeName === 'MG-ICON') {
|
|
114
|
-
slot.size = 'small';
|
|
115
|
-
}
|
|
116
|
-
});
|
|
117
|
-
}
|
|
118
|
-
};
|
|
119
|
-
/**
|
|
120
|
-
* Get checked item
|
|
121
|
-
* @param checked - checked item
|
|
122
|
-
* @returns toggle value
|
|
123
|
-
*/
|
|
124
|
-
this.getCurrentOptionIndex = (value) => {
|
|
125
|
-
return this.options.findIndex(option => toString(option.value) === toString(value)) === 1 ? 1 : 0;
|
|
126
|
-
};
|
|
127
|
-
/**
|
|
128
|
-
* Check if value is checked
|
|
129
|
-
* @param value - toggle value
|
|
130
|
-
* @returns truthy if value is checked
|
|
131
|
-
*/
|
|
132
|
-
this.isChecked = (value) => {
|
|
133
|
-
return this.getCurrentOptionIndex(value) === 1;
|
|
134
|
-
};
|
|
135
|
-
}
|
|
136
|
-
watchValue(newValue, oldValue) {
|
|
137
|
-
// A "true" attribute can be represented by an empty string
|
|
138
|
-
// We need to convert it to a boolean true value
|
|
139
|
-
if (newValue === '') {
|
|
140
|
-
this.value = true;
|
|
141
|
-
// Return early to prevent infinite loop
|
|
142
|
-
return;
|
|
143
|
-
}
|
|
144
|
-
// https://stenciljs.com/docs/properties
|
|
145
|
-
// According to the Stencil documentation, when a prop is declared as `any`, boolean values can be bound as boolean attributes.
|
|
146
|
-
// However, depending on the integration context (e.g., Vue.js), they may also be interpreted as string attributes.
|
|
147
|
-
// To avoid incorrect type interpretation when a boolean is received as a string,
|
|
148
|
-
// we normalize the value and convert it to a proper boolean before internal use.
|
|
149
|
-
else if (['true', 'false'].includes(newValue) && this.options.every(option => typeof option.value === 'boolean')) {
|
|
150
|
-
this.value = newValue === 'true';
|
|
151
|
-
// Return early to prevent infinite loop
|
|
152
|
-
return;
|
|
153
|
-
}
|
|
154
|
-
if (this.isChecked(newValue)) {
|
|
155
|
-
this.classCollection.add(this.classIsActive);
|
|
156
|
-
}
|
|
157
|
-
else {
|
|
158
|
-
this.classCollection.delete(this.classIsActive);
|
|
159
|
-
}
|
|
160
|
-
// when value is reassigned programmatically from previous `watchValue` call
|
|
161
|
-
// `oldValue` can be a string while `newValue` is boolean or vice versa
|
|
162
|
-
// so we need to compare them as strings to prevent infinite loop and unnecessary event emission
|
|
163
|
-
if (toString(newValue) !== toString(oldValue)) {
|
|
164
|
-
// Emit value-change event
|
|
165
|
-
this.valueChange.emit(newValue);
|
|
166
|
-
}
|
|
167
|
-
}
|
|
168
|
-
watchItems(newValue) {
|
|
169
|
-
if (typeof newValue === 'object' && this.items.length !== 2) {
|
|
170
|
-
throw new Error(`<mg-input-toggle> prop "items" require 2 items. Passed value: ${toString(newValue)}.`);
|
|
171
|
-
}
|
|
172
|
-
// String array
|
|
173
|
-
else if (allItemsAreString(newValue)) {
|
|
174
|
-
this.options = newValue.map(item => ({ title: item, value: item }));
|
|
175
|
-
}
|
|
176
|
-
// Object array
|
|
177
|
-
else if (Array.isArray(newValue) && newValue.every(isOption)) {
|
|
178
|
-
this.options = newValue;
|
|
179
|
-
}
|
|
180
|
-
else {
|
|
181
|
-
throw new Error(`<mg-input-toggle> prop "items" is required and all items must be the same type: ToggleOption. Passed value: ${toString(newValue)}.`);
|
|
182
|
-
}
|
|
183
|
-
}
|
|
184
|
-
watchIsOnOff(newValue) {
|
|
185
|
-
if (newValue) {
|
|
186
|
-
this.classCollection.add(this.classOnOff);
|
|
187
|
-
if (!this.isIcon) {
|
|
188
|
-
this.isOnOff = false;
|
|
189
|
-
console.warn('<mg-input-toggle> prop "isOnOff" must be used with "isIcon". Setting isOnOff to false.');
|
|
190
|
-
}
|
|
191
|
-
}
|
|
192
|
-
else {
|
|
193
|
-
this.classCollection.delete(this.classOnOff);
|
|
194
|
-
}
|
|
195
|
-
}
|
|
196
|
-
watchIsIcon(newValue) {
|
|
197
|
-
if (newValue)
|
|
198
|
-
this.classCollection.add(this.classIcon);
|
|
199
|
-
else
|
|
200
|
-
this.classCollection.delete(this.classIcon);
|
|
201
|
-
}
|
|
202
|
-
watchReadonly(newValue) {
|
|
203
|
-
if (newValue)
|
|
204
|
-
this.classCollection.add(classReadonly);
|
|
205
|
-
else
|
|
206
|
-
this.classCollection.delete(classReadonly);
|
|
207
|
-
}
|
|
208
|
-
watchDisabled(newValue) {
|
|
209
|
-
if (newValue)
|
|
210
|
-
this.classCollection.add(classDisabled);
|
|
211
|
-
else
|
|
212
|
-
this.classCollection.delete(classDisabled);
|
|
213
|
-
}
|
|
214
|
-
/**
|
|
215
|
-
* Set focus on input.
|
|
216
|
-
*/
|
|
217
|
-
async setFocus() {
|
|
218
|
-
var _a;
|
|
219
|
-
(_a = this.button) === null || _a === void 0 ? void 0 : _a.focus();
|
|
220
|
-
}
|
|
221
|
-
/**
|
|
222
|
-
* Set an error and display a custom error message.
|
|
223
|
-
* This method can be used to set the component's error state from its context by passing a boolean value to the `valid` parameter.
|
|
224
|
-
* It must be paired with an error message to display for the given context.
|
|
225
|
-
* When used to set validity to `false`, you should use this method again to reset the validity to `true`.
|
|
226
|
-
* @param valid - value indicating the validity
|
|
227
|
-
* @param errorMessage - the error message to display
|
|
228
|
-
*/
|
|
229
|
-
async setError(valid, errorMessage) {
|
|
230
|
-
if (typeof valid !== 'boolean') {
|
|
231
|
-
throw new Error('<mg-input-toggle> method "setError()" param "valid" must be a boolean.');
|
|
232
|
-
}
|
|
233
|
-
else if (errorMessage !== undefined && !isValidString(errorMessage)) {
|
|
234
|
-
throw new Error('<mg-input-toggle> method "setError()" param "errorMessage" must be a string.');
|
|
235
|
-
}
|
|
236
|
-
else {
|
|
237
|
-
this.valid = valid;
|
|
238
|
-
this.inputValid.emit(valid);
|
|
239
|
-
this.setErrorMessage(valid ? undefined : errorMessage);
|
|
240
|
-
}
|
|
241
|
-
}
|
|
242
|
-
/**
|
|
243
|
-
* Reset value, validity, error and visual state
|
|
244
|
-
*/
|
|
245
|
-
async reset() {
|
|
246
|
-
if (!this.readonly) {
|
|
247
|
-
this.value = this.options[0].value;
|
|
248
|
-
// Use `Promise` as requested for stencil method
|
|
249
|
-
// Use `requestAnimationFrame` to ensure:
|
|
250
|
-
// - DOM is fully updated before validation
|
|
251
|
-
// - Async operations are completed
|
|
252
|
-
// - No timing issues with Stencil's render cycle
|
|
253
|
-
// - Keep everything in sync both inside and outside the component
|
|
254
|
-
return new Promise(resolve => {
|
|
255
|
-
requestAnimationFrame(() => {
|
|
256
|
-
this.errorMessage = undefined;
|
|
257
|
-
resolve();
|
|
258
|
-
});
|
|
259
|
-
});
|
|
260
|
-
}
|
|
261
|
-
}
|
|
262
|
-
/*************
|
|
263
|
-
* Lifecycle *
|
|
264
|
-
*************/
|
|
265
|
-
/**
|
|
266
|
-
* Check if component props are well configured on init
|
|
267
|
-
*/
|
|
268
|
-
componentWillLoad() {
|
|
269
|
-
this.watchItems(this.items);
|
|
270
|
-
this.validateSlots();
|
|
271
|
-
this.watchValue(this.value);
|
|
272
|
-
this.watchIsIcon(this.isIcon);
|
|
273
|
-
this.watchIsOnOff(this.isOnOff);
|
|
274
|
-
this.watchReadonly(this.readonly);
|
|
275
|
-
this.watchDisabled(this.disabled);
|
|
276
|
-
}
|
|
277
|
-
/**
|
|
278
|
-
* Render
|
|
279
|
-
* @returns HTML Element
|
|
280
|
-
*/
|
|
281
|
-
render() {
|
|
282
|
-
const currentOption = this.options[this.getCurrentOptionIndex(this.value)];
|
|
283
|
-
return (h("mg-input", { key: '7e4a6a75069f6f3c0c49a5989f0b4e7a56954efc', label: this.label, helpText: this.helpText, identifier: this.identifier, class: this.classCollection.join(), labelOnTop: this.labelOnTop, labelHide: this.labelHide, required: undefined, tooltip: this.tooltip, tooltipPosition: this.tooltipPosition, errorMessage: this.errorMessage }, this.readonly ? (currentOption && h("b", { class: "mg-c-input__readonly-value" }, currentOption.title)) : (h("button", { type: "button", role: "switch", "aria-checked": this.isChecked(this.value).toString(), "aria-readonly": this.disabled || this.readonly, id: this.identifier, class: "mg-c-input__button-toggle", disabled: this.disabled || this.readonly, onClick: this.handleSwitchButton, ref: el => {
|
|
284
|
-
if (el !== null)
|
|
285
|
-
this.button = el;
|
|
286
|
-
} }, h("span", { "aria-hidden": "true", class: "mg-c-input__toggle-item-container" }, h("slot", { name: "item-1" })), h("span", { "aria-hidden": "true", class: "mg-c-input__toggle-item-container" }, h("slot", { name: "item-2" }))))));
|
|
287
|
-
}
|
|
288
|
-
get element() { return this; }
|
|
289
|
-
static get watchers() { return {
|
|
290
|
-
"value": ["watchValue"],
|
|
291
|
-
"items": ["watchItems"],
|
|
292
|
-
"isOnOff": ["watchIsOnOff"],
|
|
293
|
-
"isIcon": ["watchIsIcon"],
|
|
294
|
-
"readonly": ["watchReadonly"],
|
|
295
|
-
"disabled": ["watchDisabled"]
|
|
296
|
-
}; }
|
|
297
|
-
static get style() { return mgInputToggleCss; }
|
|
298
|
-
}, [257, "mg-input-toggle", {
|
|
299
|
-
"value": [1040],
|
|
300
|
-
"items": [16],
|
|
301
|
-
"identifier": [1],
|
|
302
|
-
"name": [1],
|
|
303
|
-
"label": [1],
|
|
304
|
-
"labelOnTop": [4, "label-on-top"],
|
|
305
|
-
"labelHide": [4, "label-hide"],
|
|
306
|
-
"isOnOff": [1028, "is-on-off"],
|
|
307
|
-
"isIcon": [4, "is-icon"],
|
|
308
|
-
"readonly": [4],
|
|
309
|
-
"disabled": [4],
|
|
310
|
-
"tooltip": [1],
|
|
311
|
-
"tooltipPosition": [1, "tooltip-position"],
|
|
312
|
-
"helpText": [1, "help-text"],
|
|
313
|
-
"classCollection": [32],
|
|
314
|
-
"options": [32],
|
|
315
|
-
"errorMessage": [32],
|
|
316
|
-
"valid": [32],
|
|
317
|
-
"setFocus": [64],
|
|
318
|
-
"setError": [64],
|
|
319
|
-
"reset": [64]
|
|
320
|
-
}, undefined, {
|
|
321
|
-
"value": ["watchValue"],
|
|
322
|
-
"items": ["watchItems"],
|
|
323
|
-
"isOnOff": ["watchIsOnOff"],
|
|
324
|
-
"isIcon": ["watchIsIcon"],
|
|
325
|
-
"readonly": ["watchReadonly"],
|
|
326
|
-
"disabled": ["watchDisabled"]
|
|
327
|
-
}]);
|
|
328
|
-
function defineCustomElement$1() {
|
|
329
|
-
if (typeof customElements === "undefined") {
|
|
330
|
-
return;
|
|
331
|
-
}
|
|
332
|
-
const components = ["mg-input-toggle", "mg-icon", "mg-input", "mg-input-title", "mg-tooltip", "mg-tooltip-content"];
|
|
333
|
-
components.forEach(tagName => { switch (tagName) {
|
|
334
|
-
case "mg-input-toggle":
|
|
335
|
-
if (!customElements.get(tagName)) {
|
|
336
|
-
customElements.define(tagName, MgInputToggle$1);
|
|
337
|
-
}
|
|
338
|
-
break;
|
|
339
|
-
case "mg-icon":
|
|
340
|
-
if (!customElements.get(tagName)) {
|
|
341
|
-
defineCustomElement$6();
|
|
342
|
-
}
|
|
343
|
-
break;
|
|
344
|
-
case "mg-input":
|
|
345
|
-
if (!customElements.get(tagName)) {
|
|
346
|
-
defineCustomElement$5();
|
|
347
|
-
}
|
|
348
|
-
break;
|
|
349
|
-
case "mg-input-title":
|
|
350
|
-
if (!customElements.get(tagName)) {
|
|
351
|
-
defineCustomElement$4();
|
|
352
|
-
}
|
|
353
|
-
break;
|
|
354
|
-
case "mg-tooltip":
|
|
355
|
-
if (!customElements.get(tagName)) {
|
|
356
|
-
defineCustomElement$3();
|
|
357
|
-
}
|
|
358
|
-
break;
|
|
359
|
-
case "mg-tooltip-content":
|
|
360
|
-
if (!customElements.get(tagName)) {
|
|
361
|
-
defineCustomElement$2();
|
|
362
|
-
}
|
|
363
|
-
break;
|
|
364
|
-
} });
|
|
365
|
-
}
|
|
366
|
-
defineCustomElement$1();
|
|
367
|
-
|
|
368
|
-
const MgInputToggle = MgInputToggle$1;
|
|
369
|
-
const defineCustomElement = defineCustomElement$1;
|
|
370
|
-
|
|
371
|
-
export { MgInputToggle, defineCustomElement };
|
|
1
|
+
import{transformTag as t,proxyCustomElement as i,HTMLElement as e,createEvent as o,h as n}from"@stencil/core/internal/client";import{C as s,t as r,d as g,i as a}from"./index2.js";import{c as l,b as m}from"./mg-input.conf.js";import{d as c}from"./mg-icon2.js";import{d as h}from"./mg-input2.js";import{d as u}from"./mg-input-title2.js";import{d as p}from"./mg-tooltip2.js";import{d}from"./mg-tooltip-content2.js";const b=t=>"object"==typeof t&&"string"==typeof t.title,f=i(class extends e{constructor(t){super(),!1!==t&&this.__registerHost(),this.__attachShadow(),this.valueChange=o(this,"value-change",7),this.inputValid=o(this,"input-valid",7),this.classIsActive="mg-c-input--toggle-is-active",this.classOnOff="mg-c-input--toggle-on-off",this.classIcon="mg-c-input--toggle-icon",this.name=this.identifier,this.labelOnTop=!1,this.labelHide=!1,this.isOnOff=!1,this.isIcon=!1,this.readonly=!1,this.disabled=!1,this.tooltipPosition="input",this.classCollection=new s(["mg-c-input--toggle"]),this.setErrorMessage=t=>{this.errorMessage=void 0,this.valid||"string"!=typeof t||(this.errorMessage=t)},this.handleSwitchButton=()=>{const t=this.getCurrentOptionIndex(this.value);this.value=this.options[0===t?1:0].value},this.validateSlots=()=>{const t=Array.from(this.element.children);if(2!==t.length){if(!this.isOnOff||!this.isIcon)throw Error("<mg-input-toggle> 2 slots are required.");if(null===this.element.querySelector('[slot="item-2"]'))throw Error('<mg-input-toggle> an element with attribute slot="item-2" is required.')}t.forEach(this.isIcon?t=>{"MG-ICON"===t.nodeName&&(t.size="small")}:t=>t.setAttribute("title",t.textContent))},this.getCurrentOptionIndex=t=>1===this.options.findIndex((i=>r(i.value)===r(t)))?1:0,this.isChecked=t=>1===this.getCurrentOptionIndex(t)}watchValue(t,i){""!==t?["true","false"].includes(t)&&this.options.every((t=>"boolean"==typeof t.value))?this.value="true"===t:(this.isChecked(t)?this.classCollection.add(this.classIsActive):this.classCollection.delete(this.classIsActive),r(t)!==r(i)&&this.valueChange.emit(t)):this.value=!0}watchItems(t){if("object"==typeof t&&2!==this.items.length)throw Error(`<mg-input-toggle> prop "items" require 2 items. Passed value: ${r(t)}.`);if(g(t))this.options=t.map((t=>({title:t,value:t})));else{if(!Array.isArray(t)||!t.every(b))throw Error(`<mg-input-toggle> prop "items" is required and all items must be the same type: ToggleOption. Passed value: ${r(t)}.`);this.options=t}}watchIsOnOff(t){t?(this.classCollection.add(this.classOnOff),this.isIcon||(this.isOnOff=!1,console.warn('<mg-input-toggle> prop "isOnOff" must be used with "isIcon". Setting isOnOff to false.'))):this.classCollection.delete(this.classOnOff)}watchIsIcon(t){t?this.classCollection.add(this.classIcon):this.classCollection.delete(this.classIcon)}watchReadonly(t){t?this.classCollection.add(l):this.classCollection.delete(l)}watchDisabled(t){t?this.classCollection.add(m):this.classCollection.delete(m)}async setFocus(){var t;null===(t=this.button)||void 0===t||t.focus()}async setError(t,i){if("boolean"!=typeof t)throw Error('<mg-input-toggle> method "setError()" param "valid" must be a boolean.');if(void 0!==i&&!a(i))throw Error('<mg-input-toggle> method "setError()" param "errorMessage" must be a string.');this.valid=t,this.inputValid.emit(t),this.setErrorMessage(t?void 0:i)}async reset(){if(!this.readonly)return this.value=this.options[0].value,new Promise((t=>{requestAnimationFrame((()=>{this.errorMessage=void 0,t()}))}))}componentWillLoad(){this.watchItems(this.items),this.validateSlots(),this.watchValue(this.value),this.watchIsIcon(this.isIcon),this.watchIsOnOff(this.isOnOff),this.watchReadonly(this.readonly),this.watchDisabled(this.disabled)}render(){const t=this.options[this.getCurrentOptionIndex(this.value)];return n("mg-input",{key:"834a0b0713019490b91d799ac9688661f930de43",label:this.label,helpText:this.helpText,identifier:this.identifier,class:this.classCollection.join(),labelOnTop:this.labelOnTop,labelHide:this.labelHide,required:void 0,tooltip:this.tooltip,tooltipPosition:this.tooltipPosition,errorMessage:this.errorMessage},this.readonly?t&&n("b",{class:"mg-c-input__readonly-value"},t.title):n("button",{type:"button",role:"switch","aria-checked":""+this.isChecked(this.value),"aria-readonly":this.disabled||this.readonly,id:this.identifier,class:"mg-c-input__button-toggle",disabled:this.disabled||this.readonly,onClick:this.handleSwitchButton,ref:t=>{null!==t&&(this.button=t)}},n("span",{"aria-hidden":"true",class:"mg-c-input__toggle-item-container"},n("slot",{name:"item-1"})),n("span",{"aria-hidden":"true",class:"mg-c-input__toggle-item-container"},n("slot",{name:"item-2"}))))}get element(){return this}static get watchers(){return{value:[{watchValue:0}],items:[{watchItems:0}],isOnOff:[{watchIsOnOff:0}],isIcon:[{watchIsIcon:0}],readonly:[{watchReadonly:0}],disabled:[{watchDisabled:0}]}}static get style(){return".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-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__toggle-item-container{overflow:hidden;box-sizing:border-box;padding:.1rem var(--mg-b-size-8);border-width:var(--mg-b-size-border);border-radius:calc((var(--mg-b-font-size)*var(--mg-b-line-height) + 2*var(--mg-b-size-4))/var(--mg-c-input-toggle-border-radius-ratio));color:var(--mg-b-color-neutral-110);font-weight:unset;line-height:var(--mg-b-size-16);text-overflow:ellipsis;white-space:nowrap}.mg-c-input__toggle-item-container:first-of-type{border-style:solid;border-color:var(--mg-b-color-neutral-80);background-color:var(--mg-b-color-light);font-weight:600}.mg-c-input__button-toggle{display:flex;overflow:hidden;min-width:0;align-items:center;padding:.1rem;border-width:var(--mg-c-input-border-width);border-style:solid;border-color:var(--mg-b-color-neutral-80);border-radius:calc((var(--mg-b-font-size)*var(--mg-b-line-height) + 2*(var(--mg-b-size-4) + var(--mg-b-size-4) + var(--mg-c-input-border-width)))/var(--mg-c-input-toggle-border-radius-ratio));background-color:var(--mg-b-color-neutral-20);cursor:pointer;font-family:var(--mg-b-font-family);font-size:var(--mg-b-small-font-size);line-height:var(--mg-b-size-12)}.mg-c-input__button-toggle:disabled{cursor:default}.mg-c-input__button-toggle:focus{outline-offset:var(--mg-b-size-4)}.mg-c-input.mg-c-input--toggle-is-active .mg-c-input__button-toggle{border-color:var(--mg-b-color-neutral-110);background-color:var(--mg-b-color-neutral-110)}.mg-c-input.mg-c-input--toggle-is-active .mg-c-input__toggle-item-container:first-of-type{border:unset;background-color:unset;color:var(--mg-b-color-light);font-weight:unset}.mg-c-input.mg-c-input--toggle-is-active .mg-c-input__toggle-item-container:last-of-type{border-style:solid;border-color:var(--mg-b-color-light);background-color:var(--mg-b-color-light);font-weight:600}.mg-c-input.mg-c-input--toggle:not(.mg-c-input--readonly) .mg-c-input__button-toggle,.mg-c-input.mg-c-input--toggle:not(.mg-c-input--readonly).mg-c-input--label-on-top .mg-c-input__button-toggle{margin-top:var(--mg-b-size-4)}@media screen and (min-width: 768px){.mg-c-input.mg-c-input--toggle:not(.mg-c-input--readonly) .mg-c-input__button-toggle{margin-top:calc((var(--mg-b-size-min-height) - (var(--mg-b-size-20) + var(--mg-b-size-4)) + .1rem)/2)}}.mg-c-input.mg-c-input--toggle-icon .mg-c-input__button-toggle{width:100%;min-width:calc(var(--mg-b-size-20)*2);max-width:calc(var(--mg-b-size-20)*2)}.mg-c-input.mg-c-input--toggle-icon .mg-c-input__toggle-item-container{display:flex;overflow:unset;min-width:var(--mg-b-size-20);max-width:var(--mg-b-size-20);height:var(--mg-b-size-20);align-items:center;justify-content:center;padding:0;visibility:hidden}.mg-c-input.mg-c-input--toggle-icon .mg-c-input__toggle-item-container:first-of-type{visibility:visible}.mg-c-input.mg-c-input--toggle-icon .mg-c-input__toggle-item-container:last-of-type{width:unset}.mg-c-input.mg-c-input--toggle-icon .mg-c-input__toggle-item-container ::slotted(mg-icon){display:flex}.mg-c-input.mg-c-input--toggle-icon.mg-c-input--toggle-is-active .mg-c-input__toggle-item-container:first-of-type{min-width:unset;visibility:hidden}.mg-c-input.mg-c-input--toggle-icon.mg-c-input--toggle-is-active .mg-c-input__toggle-item-container:last-of-type{margin-left:auto;visibility:visible}.mg-c-input.mg-c-input--toggle-on-off.mg-c-input--toggle-icon .mg-c-input__toggle-item-container:first-of-type ::slotted(*){display:none}"}},[257,"mg-input-toggle",{value:[1040],items:[16],identifier:[1],name:[1],label:[1],labelOnTop:[4,"label-on-top"],labelHide:[4,"label-hide"],isOnOff:[1028,"is-on-off"],isIcon:[4,"is-icon"],readonly:[4],disabled:[4],tooltip:[1],tooltipPosition:[1,"tooltip-position"],helpText:[1,"help-text"],classCollection:[32],options:[32],errorMessage:[32],valid:[32],setFocus:[64],setError:[64],reset:[64]},void 0,{value:[{watchValue:0}],items:[{watchItems:0}],isOnOff:[{watchIsOnOff:0}],isIcon:[{watchIsIcon:0}],readonly:[{watchReadonly:0}],disabled:[{watchDisabled:0}]}]);function v(){"undefined"!=typeof customElements&&["mg-input-toggle","mg-icon","mg-input","mg-input-title","mg-tooltip","mg-tooltip-content"].forEach((i=>{switch(i){case"mg-input-toggle":customElements.get(t(i))||customElements.define(t(i),f);break;case"mg-icon":customElements.get(t(i))||c();break;case"mg-input":customElements.get(t(i))||h();break;case"mg-input-title":customElements.get(t(i))||u();break;case"mg-tooltip":customElements.get(t(i))||p();break;case"mg-tooltip-content":customElements.get(t(i))||d()}}))}v();const w=f,y=v;export{w as MgInputToggle,y as defineCustomElement}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
const a=[2,4,16,"full"],s=["input","label"],t=["h1","h2","h3","h4","h5","h6"],i=a=>"MG-INPUT-FILE"===a.nodeName,l="mg-c-input--fieldset",c="mg-c-input--disabled",e="mg-c-input--readonly",n="mg-c-input--vertical-list",p="mg-c-input--display-character-left";export{l as a,c as b,e as c,n as d,p as e,i,t as l,s as t,a as w}
|
|
@@ -1,6 +1 @@
|
|
|
1
|
-
import
|
|
2
|
-
|
|
3
|
-
const MgInput = MgInput$1;
|
|
4
|
-
const defineCustomElement = defineCustomElement$1;
|
|
5
|
-
|
|
6
|
-
export { MgInput, defineCustomElement };
|
|
1
|
+
import{M as o,d as s}from"./mg-input2.js";const t=o,m=s;export{t as MgInput,m as defineCustomElement}
|