@mgdis/mg-components 6.21.0 → 6.22.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (177) hide show
  1. package/dist/cjs/{index-CCsGMNyq.js → index-BxB20_Vw.js} +8 -0
  2. package/dist/cjs/{index-C2viYwrR.js → index-Dz2LAZQT.js} +329 -1789
  3. package/dist/cjs/loader.cjs.js +2 -2
  4. package/dist/cjs/{mg-action-more_37.cjs.entry.js → mg-action-more_36.cjs.entry.js} +200 -242
  5. package/dist/cjs/mg-alert.cjs.entry.js +3 -3
  6. package/dist/cjs/mg-breadcrumb.cjs.entry.js +63 -0
  7. package/dist/cjs/mg-components.cjs.js +3 -3
  8. package/dist/cjs/mg-fieldset.cjs.entry.js +2 -2
  9. package/dist/cjs/mg-input-combobox.cjs.entry.js +4 -4
  10. package/dist/cjs/mg-input-file.cjs.entry.js +4 -4
  11. package/dist/cjs/mg-input-rich-text-editor.cjs.entry.js +40095 -15808
  12. package/dist/cjs/mg-loader.cjs.entry.js +3 -3
  13. package/dist/cjs/mg-progress.cjs.entry.js +2 -2
  14. package/dist/collection/assets/icons/index.js +1 -1
  15. package/dist/collection/collection-manifest.json +4 -3
  16. package/dist/collection/components/atoms/internals/mg-character-left/mg-character-left.js +1 -1
  17. package/dist/collection/components/atoms/internals/mg-input-title/mg-input-title.js +1 -1
  18. package/dist/collection/components/atoms/mg-badge/mg-badge.js +2 -1
  19. package/dist/collection/components/atoms/mg-button/mg-button.js +6 -3
  20. package/dist/collection/components/atoms/mg-card/mg-card.js +3 -2
  21. package/dist/collection/components/atoms/mg-divider/mg-divider.js +1 -1
  22. package/dist/collection/components/atoms/mg-icon/mg-icon.js +10 -6
  23. package/dist/collection/components/atoms/mg-tag/mg-tag.js +3 -2
  24. package/dist/collection/components/atoms/mg-tooltip/mg-tooltip-content/mg-tooltip-content.js +1 -1
  25. package/dist/collection/components/atoms/mg-tooltip/mg-tooltip.js +3 -2
  26. package/dist/collection/components/molecules/inputs/mg-input/mg-input.js +5 -3
  27. package/dist/collection/components/molecules/inputs/mg-input-checkbox/MgInputCheckboxList.js +2 -2
  28. package/dist/collection/components/molecules/inputs/mg-input-checkbox/MgInputCheckboxPaginated.js +38 -0
  29. package/dist/collection/components/molecules/inputs/mg-input-checkbox/mg-input-checkbox.conf.js +3 -2
  30. package/dist/collection/components/molecules/inputs/mg-input-checkbox/mg-input-checkbox.js +47 -26
  31. package/dist/collection/components/molecules/inputs/mg-input-combobox/mg-input-combobox.js +13 -7
  32. package/dist/collection/components/molecules/inputs/mg-input-date/mg-input-date.js +3 -2
  33. package/dist/collection/components/molecules/inputs/mg-input-file/mg-input-file.js +4 -3
  34. package/dist/collection/components/molecules/inputs/mg-input-numeric/mg-input-numeric.js +9 -5
  35. package/dist/collection/components/molecules/inputs/mg-input-password/mg-input-password.js +6 -4
  36. package/dist/collection/components/molecules/inputs/mg-input-radio/mg-input-radio.js +5 -3
  37. package/dist/collection/components/molecules/inputs/mg-input-rich-text-editor/editor/custom-properties.scss +212 -0
  38. package/dist/collection/components/molecules/inputs/mg-input-rich-text-editor/editor/editor.conf.js +1 -0
  39. package/dist/collection/components/molecules/inputs/mg-input-rich-text-editor/editor/index.js +300 -94
  40. package/dist/collection/components/molecules/inputs/mg-input-rich-text-editor/mg-input-rich-text-editor.conf.js +29 -0
  41. package/dist/collection/components/molecules/inputs/mg-input-rich-text-editor/mg-input-rich-text-editor.js +164 -51
  42. package/dist/collection/components/molecules/inputs/mg-input-select/mg-input-select.js +22 -8
  43. package/dist/collection/components/molecules/inputs/mg-input-text/mg-input-text.js +12 -7
  44. package/dist/collection/components/molecules/inputs/mg-input-textarea/mg-input-textarea.js +5 -3
  45. package/dist/collection/components/molecules/inputs/mg-input-toggle/mg-input-toggle.js +7 -4
  46. package/dist/collection/components/molecules/internals/mg-item-more/mg-item-more.js +7 -38
  47. package/dist/collection/components/molecules/menus/mg-menu/mg-menu.conf.js +0 -4
  48. package/dist/collection/components/molecules/menus/mg-menu/mg-menu.js +24 -44
  49. package/dist/collection/components/molecules/menus/mg-menu-item/mg-menu-item.js +69 -40
  50. package/dist/collection/components/molecules/mg-action-more/mg-action-more.js +11 -7
  51. package/dist/collection/components/molecules/mg-alert/mg-alert.js +5 -3
  52. package/dist/collection/components/molecules/mg-breadcrumb/mg-breadcrumb.conf.js +1 -0
  53. package/dist/collection/components/molecules/mg-breadcrumb/mg-breadcrumb.js +93 -0
  54. package/dist/collection/components/molecules/mg-details/mg-details.js +1 -1
  55. package/dist/collection/components/molecules/mg-fieldset/mg-fieldset.js +3 -2
  56. package/dist/collection/components/molecules/mg-form/mg-form.js +5 -3
  57. package/dist/collection/components/molecules/mg-illustrated-message/mg-illustrated-message.js +5 -3
  58. package/dist/collection/components/molecules/mg-loader/mg-loader.js +1 -1
  59. package/dist/collection/components/molecules/mg-message/mg-message.js +6 -4
  60. package/dist/collection/components/molecules/mg-modal/mg-modal.js +4 -3
  61. package/dist/collection/components/molecules/mg-pagination/mg-pagination.js +2 -1
  62. package/dist/collection/components/molecules/mg-panel/mg-panel.js +5 -3
  63. package/dist/collection/components/molecules/mg-popover/mg-popover-content/mg-popover-content.js +1 -1
  64. package/dist/collection/components/molecules/mg-popover/mg-popover.js +3 -2
  65. package/dist/collection/components/molecules/mg-progress/mg-progress.js +3 -2
  66. package/dist/collection/components/molecules/mg-skip-links/mg-skip-links.js +3 -2
  67. package/dist/collection/components/molecules/mg-table/mg-table.js +41 -2
  68. package/dist/collection/components/molecules/mg-tabs/mg-tabs.conf.js +0 -4
  69. package/dist/collection/components/molecules/mg-tabs/mg-tabs.js +15 -34
  70. package/dist/collection/locales/en/messages.json +3 -0
  71. package/dist/collection/locales/fr/messages.json +3 -0
  72. package/dist/components/index2.js +1 -1
  73. package/dist/components/index3.js +1 -1
  74. package/dist/components/mg-action-more.js +1 -1
  75. package/dist/components/mg-alert.js +1 -1
  76. package/dist/components/mg-breadcrumb.d.ts +11 -0
  77. package/dist/components/mg-breadcrumb.js +1 -0
  78. package/dist/components/mg-card2.js +1 -1
  79. package/dist/components/mg-character-left2.js +1 -1
  80. package/dist/components/mg-details.js +1 -1
  81. package/dist/components/mg-divider2.js +1 -1
  82. package/dist/components/mg-fieldset.js +1 -1
  83. package/dist/components/mg-form.js +1 -1
  84. package/dist/components/mg-icon2.js +1 -1
  85. package/dist/components/mg-illustrated-message.js +1 -1
  86. package/dist/components/mg-input-checkbox.js +1 -1
  87. package/dist/components/mg-input-combobox.js +1 -1
  88. package/dist/components/mg-input-date.js +1 -1
  89. package/dist/components/mg-input-file.js +1 -1
  90. package/dist/components/mg-input-numeric.js +1 -1
  91. package/dist/components/mg-input-password.js +1 -1
  92. package/dist/components/mg-input-radio.js +1 -1
  93. package/dist/components/mg-input-rich-text-editor.js +1663 -1
  94. package/dist/components/mg-input-select2.js +1 -1
  95. package/dist/components/mg-input-text2.js +1 -1
  96. package/dist/components/mg-input-textarea.js +1 -1
  97. package/dist/components/mg-input-title2.js +1 -1
  98. package/dist/components/mg-input-toggle.js +1 -1
  99. package/dist/components/mg-input2.js +1 -1
  100. package/dist/components/mg-item-more2.js +1 -1
  101. package/dist/components/mg-loader2.js +1 -1
  102. package/dist/components/mg-menu-item2.js +1 -1
  103. package/dist/components/mg-message2.js +1 -1
  104. package/dist/components/mg-modal.js +1 -1
  105. package/dist/components/mg-panel.js +1 -1
  106. package/dist/components/mg-popover-content2.js +1 -1
  107. package/dist/components/mg-popover2.js +1 -1
  108. package/dist/components/mg-progress.js +1 -1
  109. package/dist/components/mg-skip-links.js +1 -1
  110. package/dist/components/mg-table.js +1 -1
  111. package/dist/components/mg-tabs2.js +1 -1
  112. package/dist/components/mg-tag.js +1 -1
  113. package/dist/components/mg-tooltip-content2.js +1 -1
  114. package/dist/components/mg-tooltip2.js +1 -1
  115. package/dist/esm/{index-DFwaH2hS.js → index-C3jUhxdI.js} +329 -1789
  116. package/dist/esm/{index-D-uaxCxH.js → index-DSEloqPn.js} +8 -0
  117. package/dist/esm/loader.js +3 -3
  118. package/dist/esm/{mg-action-more_37.entry.js → mg-action-more_36.entry.js} +202 -243
  119. package/dist/esm/mg-alert.entry.js +3 -3
  120. package/dist/esm/mg-breadcrumb.entry.js +61 -0
  121. package/dist/esm/mg-components.js +4 -4
  122. package/dist/esm/mg-fieldset.entry.js +2 -2
  123. package/dist/esm/mg-input-combobox.entry.js +4 -4
  124. package/dist/esm/mg-input-file.entry.js +4 -4
  125. package/dist/esm/mg-input-rich-text-editor.entry.js +40082 -15795
  126. package/dist/esm/mg-loader.entry.js +3 -3
  127. package/dist/esm/mg-progress.entry.js +2 -2
  128. package/dist/mg-components/locales/en/messages.json +3 -0
  129. package/dist/mg-components/locales/fr/messages.json +3 -0
  130. package/dist/mg-components/mg-components.esm.js +1 -1
  131. package/dist/mg-components/{p-6b57f249.entry.js → p-06fbdb2f.entry.js} +1 -1
  132. package/dist/mg-components/{p-c3d116b9.entry.js → p-188b9ca9.entry.js} +1 -1
  133. package/dist/mg-components/p-4667078d.entry.js +1 -0
  134. package/dist/mg-components/p-5a859ecf.entry.js +1658 -0
  135. package/dist/mg-components/p-661da56b.entry.js +1 -0
  136. package/dist/mg-components/{p-988c282e.entry.js → p-8e256086.entry.js} +1 -1
  137. package/dist/mg-components/p-C3jUhxdI.js +2 -0
  138. package/dist/mg-components/p-DSEloqPn.js +1 -0
  139. package/dist/mg-components/{p-6b655830.entry.js → p-b0b8c58f.entry.js} +1 -1
  140. package/dist/mg-components/{p-dd1934f4.entry.js → p-bbcef41c.entry.js} +1 -1
  141. package/dist/mg-components/{p-4175dcbe.entry.js → p-c1aeb277.entry.js} +1 -1
  142. package/dist/types/assets/icons/index.d.ts +2 -0
  143. package/dist/types/components/molecules/inputs/mg-input/mg-input.conf.d.ts +1 -1
  144. package/dist/types/components/molecules/inputs/mg-input-checkbox/MgInputCheckboxList.d.ts +2 -2
  145. package/dist/types/components/molecules/inputs/mg-input-checkbox/MgInputCheckboxPaginated.d.ts +8 -0
  146. package/dist/types/components/molecules/inputs/mg-input-checkbox/mg-input-checkbox.conf.d.ts +16 -8
  147. package/dist/types/components/molecules/inputs/mg-input-checkbox/mg-input-checkbox.d.ts +15 -5
  148. package/dist/types/components/molecules/inputs/mg-input-rich-text-editor/editor/editor.conf.d.ts +17 -0
  149. package/dist/types/components/molecules/inputs/mg-input-rich-text-editor/editor/index.d.ts +27 -19
  150. package/dist/types/components/molecules/inputs/mg-input-rich-text-editor/mg-input-rich-text-editor.conf.d.ts +3 -0
  151. package/dist/types/components/molecules/inputs/mg-input-rich-text-editor/mg-input-rich-text-editor.d.ts +48 -14
  152. package/dist/types/components/molecules/inputs/mg-input-select/mg-input-select.d.ts +1 -1
  153. package/dist/types/components/molecules/internals/mg-item-more/mg-item-more.conf.d.ts +0 -5
  154. package/dist/types/components/molecules/internals/mg-item-more/mg-item-more.d.ts +1 -6
  155. package/dist/types/components/molecules/menus/mg-menu/mg-menu.conf.d.ts +2 -10
  156. package/dist/types/components/molecules/menus/mg-menu/mg-menu.d.ts +7 -7
  157. package/dist/types/components/molecules/menus/mg-menu-item/mg-menu-item.d.ts +12 -8
  158. package/dist/types/components/molecules/mg-breadcrumb/mg-breadcrumb.conf.d.ts +18 -0
  159. package/dist/types/components/molecules/mg-breadcrumb/mg-breadcrumb.d.ts +34 -0
  160. package/dist/types/components/molecules/mg-table/mg-table.d.ts +6 -0
  161. package/dist/types/components/molecules/mg-tabs/mg-tabs.conf.d.ts +1 -9
  162. package/dist/types/components/molecules/mg-tabs/mg-tabs.d.ts +4 -4
  163. package/dist/types/components.d.ts +617 -207
  164. package/dist/types/stencil-public-runtime.d.ts +52 -2
  165. package/ide/intellij/web-types.json +143 -55
  166. package/ide/vscode/css-custom-data.json +10 -2
  167. package/ide/vscode/html-custom-data.json +113 -34
  168. package/package.json +24 -23
  169. package/dist/collection/components/molecules/inputs/mg-input-checkbox/mg-input-checkbox-paginated/mg-input-checkbox-paginated.js +0 -245
  170. package/dist/components/mg-input-checkbox-paginated.d.ts +0 -11
  171. package/dist/components/mg-input-checkbox-paginated.js +0 -1
  172. package/dist/components/mg-input-checkbox-paginated2.js +0 -1
  173. package/dist/mg-components/p-08fa327b.entry.js +0 -1
  174. package/dist/mg-components/p-D-uaxCxH.js +0 -1
  175. package/dist/mg-components/p-DFwaH2hS.js +0 -2
  176. package/dist/mg-components/p-a79b1f19.entry.js +0 -1
  177. package/dist/types/components/molecules/inputs/mg-input-checkbox/mg-input-checkbox-paginated/mg-input-checkbox-paginated.d.ts +0 -77
@@ -8,23 +8,25 @@ import { HTMLStencilElement, JSXBase } from "./stencil-public-runtime";
8
8
  import { MgActionMoreButtonType, MgActionMoreDividerType, MgActionMoreIconType, MgActionMoreItemType } from "./components/molecules/mg-action-more/mg-action-more.conf";
9
9
  import { VariantStyleType, VariantType } from "./components/molecules/mg-alert/mg-alert.conf";
10
10
  import { BadgeVariantType } from "./components/atoms/mg-badge/mg-badge.conf";
11
+ import { BreadcrumbItemType } from "./components/molecules/mg-breadcrumb/mg-breadcrumb.conf";
11
12
  import { ButtonType, SizeType, VariantType as VariantType1 } from "./components/atoms/mg-button/mg-button.conf";
12
13
  import { RadiusSizeType } from "./components/atoms/mg-card/mg-card.conf";
13
14
  import { labelHeading, TooltipPosition, Width } from "./components/molecules/inputs/mg-input/mg-input.conf";
14
15
  import { AriaRoleType, RequiredMessageStatusType } from "./components/molecules/mg-form/mg-form.conf";
15
16
  import { IconSizeType, IconType, IconVariantStyleType, IconVariantType } from "./components/atoms/mg-icon/mg-icon.conf";
16
17
  import { IllustratedMessageDirectionType, IllustratedMessageSizeType } from "./components/molecules/mg-illustrated-message/mg-illustrated-message.conf";
17
- import { CheckboxItem, CheckboxType, CheckboxValue } from "./components/molecules/inputs/mg-input-checkbox/mg-input-checkbox.conf";
18
+ import { CheckboxType, ICheckboxValue } from "./components/molecules/inputs/mg-input-checkbox/mg-input-checkbox.conf";
18
19
  import { Direction, Option, Option as ToggleOption } from "./types";
19
20
  import { RequestMappingType, ResponseMappingType } from "./components/molecules/inputs/mg-input-combobox/mg-input-combobox.conf";
20
21
  import { Format, NumericType } from "./components/molecules/inputs/mg-input-numeric/mg-input-numeric.conf";
21
22
  import { RadioOption } from "./components/molecules/inputs/mg-input-radio/mg-input-radio.conf";
22
- import { EditorOptionsType } from "./components/molecules/inputs/mg-input-rich-text-editor/editor";
23
+ import { ButtonsOption } from "./components/molecules/inputs/mg-input-rich-text-editor/editor/editor.conf";
24
+ import { SanitizerOptions } from "@mgdis/sanitize-html";
23
25
  import { SelectOption } from "./components/molecules/inputs/mg-input-select/mg-input-select.conf";
24
26
  import { OptionType, TextType } from "./components/molecules/inputs/mg-input-text/mg-input-text.conf";
25
27
  import { IconType as IconType1 } from "./components";
26
- import { IconType as IconType2, SizeType as SizeType1, SlotLabelType } from "./components/molecules/internals/mg-item-more/mg-item-more.conf";
27
- import { ItemMoreType, MenuSizeType } from "./components/molecules/menus/mg-menu/mg-menu.conf";
28
+ import { IconType as IconType2, SlotLabelType } from "./components/molecules/internals/mg-item-more/mg-item-more.conf";
29
+ import { ItemMoreType } from "./components/molecules/menus/mg-menu/mg-menu.conf";
28
30
  import { MgMenuStatusType, TargetType } from "./components/molecules/menus/mg-menu-item/mg-menu-item.conf";
29
31
  import { VariantStyleType as VariantStyleType1, VariantType as VariantType2 } from "./components/molecules/mg-message/mg-message.conf";
30
32
  import { DialogRoleType } from "./components/molecules/mg-modal/mg-modal.conf";
@@ -34,28 +36,30 @@ import { Placement } from "@popperjs/core";
34
36
  import { AriaRoleType as AriaRoleType1 } from "./components/molecules/mg-progress/mg-progress.conf";
35
37
  import { SkipLink } from "./components/molecules/mg-skip-links/mg-skip-links.conf";
36
38
  import { ColumnsType, TableSizeType } from "./components/molecules/mg-table/mg-table.conf";
37
- import { SizeType as SizeType2, TabItem } from "./components/molecules/mg-tabs/mg-tabs.conf";
39
+ import { TabItem } from "./components/molecules/mg-tabs/mg-tabs.conf";
38
40
  import { TagVariantType } from "./components/atoms/mg-tag/mg-tag.conf";
39
41
  export { MgActionMoreButtonType, MgActionMoreDividerType, MgActionMoreIconType, MgActionMoreItemType } from "./components/molecules/mg-action-more/mg-action-more.conf";
40
42
  export { VariantStyleType, VariantType } from "./components/molecules/mg-alert/mg-alert.conf";
41
43
  export { BadgeVariantType } from "./components/atoms/mg-badge/mg-badge.conf";
44
+ export { BreadcrumbItemType } from "./components/molecules/mg-breadcrumb/mg-breadcrumb.conf";
42
45
  export { ButtonType, SizeType, VariantType as VariantType1 } from "./components/atoms/mg-button/mg-button.conf";
43
46
  export { RadiusSizeType } from "./components/atoms/mg-card/mg-card.conf";
44
47
  export { labelHeading, TooltipPosition, Width } from "./components/molecules/inputs/mg-input/mg-input.conf";
45
48
  export { AriaRoleType, RequiredMessageStatusType } from "./components/molecules/mg-form/mg-form.conf";
46
49
  export { IconSizeType, IconType, IconVariantStyleType, IconVariantType } from "./components/atoms/mg-icon/mg-icon.conf";
47
50
  export { IllustratedMessageDirectionType, IllustratedMessageSizeType } from "./components/molecules/mg-illustrated-message/mg-illustrated-message.conf";
48
- export { CheckboxItem, CheckboxType, CheckboxValue } from "./components/molecules/inputs/mg-input-checkbox/mg-input-checkbox.conf";
51
+ export { CheckboxType, ICheckboxValue } from "./components/molecules/inputs/mg-input-checkbox/mg-input-checkbox.conf";
49
52
  export { Direction, Option, Option as ToggleOption } from "./types";
50
53
  export { RequestMappingType, ResponseMappingType } from "./components/molecules/inputs/mg-input-combobox/mg-input-combobox.conf";
51
54
  export { Format, NumericType } from "./components/molecules/inputs/mg-input-numeric/mg-input-numeric.conf";
52
55
  export { RadioOption } from "./components/molecules/inputs/mg-input-radio/mg-input-radio.conf";
53
- export { EditorOptionsType } from "./components/molecules/inputs/mg-input-rich-text-editor/editor";
56
+ export { ButtonsOption } from "./components/molecules/inputs/mg-input-rich-text-editor/editor/editor.conf";
57
+ export { SanitizerOptions } from "@mgdis/sanitize-html";
54
58
  export { SelectOption } from "./components/molecules/inputs/mg-input-select/mg-input-select.conf";
55
59
  export { OptionType, TextType } from "./components/molecules/inputs/mg-input-text/mg-input-text.conf";
56
60
  export { IconType as IconType1 } from "./components";
57
- export { IconType as IconType2, SizeType as SizeType1, SlotLabelType } from "./components/molecules/internals/mg-item-more/mg-item-more.conf";
58
- export { ItemMoreType, MenuSizeType } from "./components/molecules/menus/mg-menu/mg-menu.conf";
61
+ export { IconType as IconType2, SlotLabelType } from "./components/molecules/internals/mg-item-more/mg-item-more.conf";
62
+ export { ItemMoreType } from "./components/molecules/menus/mg-menu/mg-menu.conf";
59
63
  export { MgMenuStatusType, TargetType } from "./components/molecules/menus/mg-menu-item/mg-menu-item.conf";
60
64
  export { VariantStyleType as VariantStyleType1, VariantType as VariantType2 } from "./components/molecules/mg-message/mg-message.conf";
61
65
  export { DialogRoleType } from "./components/molecules/mg-modal/mg-modal.conf";
@@ -65,7 +69,7 @@ export { Placement } from "@popperjs/core";
65
69
  export { AriaRoleType as AriaRoleType1 } from "./components/molecules/mg-progress/mg-progress.conf";
66
70
  export { SkipLink } from "./components/molecules/mg-skip-links/mg-skip-links.conf";
67
71
  export { ColumnsType, TableSizeType } from "./components/molecules/mg-table/mg-table.conf";
68
- export { SizeType as SizeType2, TabItem } from "./components/molecules/mg-tabs/mg-tabs.conf";
72
+ export { TabItem } from "./components/molecules/mg-tabs/mg-tabs.conf";
69
73
  export { TagVariantType } from "./components/atoms/mg-tag/mg-tag.conf";
70
74
  export namespace Components {
71
75
  interface MgActionMore {
@@ -124,6 +128,12 @@ export namespace Components {
124
128
  */
125
129
  "variant"?: BadgeVariantType;
126
130
  }
131
+ interface MgBreadcrumb {
132
+ /**
133
+ * Breadcrumb items (hierarchical order: root → current page).
134
+ */
135
+ "items": BreadcrumbItemType[];
136
+ }
127
137
  interface MgButton {
128
138
  /**
129
139
  * Option to set input disable on click, in order to prevent multi-click. Parent component have to remove the attribute 'disabled' when the process ends.
@@ -533,42 +543,7 @@ export namespace Components {
533
543
  /**
534
544
  * Component value If item.value is `null`, checkbox will be indeterminate by default
535
545
  */
536
- "value": CheckboxValue[];
537
- }
538
- /**
539
- * Internal component use to manage sections instances
540
- */
541
- interface MgInputCheckboxPaginated {
542
- /**
543
- * Define checkboxes to paginate
544
- */
545
- "checkboxes": CheckboxItem[];
546
- /**
547
- * Define if mg-input-checkbox-list is disabled
548
- * @default false
549
- */
550
- "disabled": boolean;
551
- /**
552
- * Define mg-input-checkbox input invalid
553
- */
554
- "invalid"?: boolean;
555
- /**
556
- * Define component message
557
- */
558
- "messages": Record<string, string>;
559
- /**
560
- * Define mg-input-checkbox input name
561
- */
562
- "name"?: string;
563
- /**
564
- * Define if mg-input-checkbox-list is readonly
565
- * @default false
566
- */
567
- "readonly": boolean;
568
- /**
569
- * Method to reset limit
570
- */
571
- "resetLimit": () => Promise<void>;
546
+ "value": ICheckboxValue[];
572
547
  }
573
548
  interface MgInputCombobox {
574
549
  /**
@@ -1212,8 +1187,8 @@ export namespace Components {
1212
1187
  */
1213
1188
  "displayError": () => Promise<void>;
1214
1189
  /**
1215
- * Get editor content in HTML format
1216
- * @returns HTML content of the editor
1190
+ * Get editor content as HTML
1191
+ * @returns HTML content of the editor (sanitized)
1217
1192
  */
1218
1193
  "getEditorHTML": () => Promise<string>;
1219
1194
  /**
@@ -1248,9 +1223,14 @@ export namespace Components {
1248
1223
  */
1249
1224
  "labelOnTop": boolean;
1250
1225
  /**
1251
- * Editor modules configuration
1226
+ * Editor modules configuration. Must be passed as an array (e.g. modules=['bold', 'italic', '|', 'ul', 'ol']). Use `|` for a separator/divider in the toolbar. Available modules: - **Text formatting**: `bold`, `italic`, `underline`, `strikethrough`, `eraser` - **Lists**: `ul` (unordered list), `ol` (ordered list) - **Text positioning**: `superscript`, `subscript` - **Colors**: `brush` (text color/background) - **Media**: `link`, `image`, `file` - **Tables**: `table` - **History**: `undo`, `redo` - **Other**: `print`, `source` (HTML source editor)
1227
+ */
1228
+ "modules"?: ButtonsOption;
1229
+ /**
1230
+ * Input name If not set the value equals the identifier
1231
+ * @default this.identifier
1252
1232
  */
1253
- "modules"?: EditorOptionsType['modules'];
1233
+ "name": string;
1254
1234
  /**
1255
1235
  * Define input pattern to validate Please refer to the Pattern section in the input documentation for detailed information on using regular expressions in components.
1256
1236
  */
@@ -1278,10 +1258,14 @@ export namespace Components {
1278
1258
  */
1279
1259
  "reset": () => Promise<void>;
1280
1260
  /**
1281
- * Define the number of visible text lines for the control
1261
+ * Define the number of visible text lines for the editor. Impacts the editor height. Content can grow beyond this minimum.
1282
1262
  * @default 5
1283
1263
  */
1284
1264
  "rows": number;
1265
+ /**
1266
+ * Sanitizer configuration in native format. Use disallowTags (array of tag names) and/or disallowAttributes (object mapping tag names to string arrays). Use "*" as tag key to disallow attributes on all tags.
1267
+ */
1268
+ "sanitizerOptions"?: SanitizerOptions;
1285
1269
  /**
1286
1270
  * Set an error and display a custom error message. This method can be used to set the component's error state from its context by passing a boolean value to the `valid` parameter. It must be paired with an error message to display for the given context. When used to set validity to `false`, you should use this method again to reset the validity to `true`.
1287
1271
  * @param valid - value indicating the validity
@@ -1768,10 +1752,6 @@ export namespace Components {
1768
1752
  * @default { icon: 'ellipsis-vertical' }
1769
1753
  */
1770
1754
  "icon"?: IconType2;
1771
- /**
1772
- * Define component child menu size.
1773
- */
1774
- "size"?: SizeType1;
1775
1755
  /**
1776
1756
  * Define slot label element
1777
1757
  * @default { display: false }
@@ -1796,7 +1776,7 @@ export namespace Components {
1796
1776
  */
1797
1777
  "direction": Direction;
1798
1778
  /**
1799
- * Customize "mg-item-more" element Used with direction: 'vertical' to manage overflow
1779
+ * Customize "mg-item-more" element Used with direction: 'horizontal' to manage overflow
1800
1780
  */
1801
1781
  "itemmore"?: ItemMoreType;
1802
1782
  /**
@@ -1804,10 +1784,10 @@ export namespace Components {
1804
1784
  */
1805
1785
  "label": string;
1806
1786
  /**
1807
- * Define mg-menu size
1808
- * @default 'medium'
1787
+ * Size of the menu items
1788
+ * @deprecated this prop is deprecated and will be removed in future releases
1809
1789
  */
1810
- "size": MenuSizeType;
1790
+ "size": never;
1811
1791
  }
1812
1792
  interface MgMenuItem {
1813
1793
  /**
@@ -1824,6 +1804,11 @@ export namespace Components {
1824
1804
  * @default createID('mg-menu-item')
1825
1805
  */
1826
1806
  "identifier": string;
1807
+ /**
1808
+ * Define menu-item isIcon style.
1809
+ * @default false
1810
+ */
1811
+ "isIcon"?: boolean;
1827
1812
  /**
1828
1813
  * Define menu-item status.
1829
1814
  * @default 'visible'
@@ -2028,6 +2013,11 @@ export namespace Components {
2028
2013
  "links": SkipLink[];
2029
2014
  }
2030
2015
  interface MgTable {
2016
+ /**
2017
+ * Define if table has no outer border
2018
+ * @default false
2019
+ */
2020
+ "borderHide": boolean;
2031
2021
  /**
2032
2022
  * Define column properties
2033
2023
  */
@@ -2062,10 +2052,10 @@ export namespace Components {
2062
2052
  */
2063
2053
  "label": string;
2064
2054
  /**
2065
- * Define tabs size
2066
- * @default 'medium'
2055
+ * Size of the tabs items.
2056
+ * @deprecated this prop is deprecated and will be removed in future releases. Please use CSS custom properties to set the size of tabs items.
2067
2057
  */
2068
- "size": SizeType2;
2058
+ "size": never;
2069
2059
  }
2070
2060
  interface MgTag {
2071
2061
  /**
@@ -2245,6 +2235,12 @@ declare global {
2245
2235
  prototype: HTMLMgBadgeElement;
2246
2236
  new (): HTMLMgBadgeElement;
2247
2237
  };
2238
+ interface HTMLMgBreadcrumbElement extends Components.MgBreadcrumb, HTMLStencilElement {
2239
+ }
2240
+ var HTMLMgBreadcrumbElement: {
2241
+ prototype: HTMLMgBreadcrumbElement;
2242
+ new (): HTMLMgBreadcrumbElement;
2243
+ };
2248
2244
  interface HTMLMgButtonElementEventMap {
2249
2245
  "disabled-change": HTMLMgButtonElement['disabled'];
2250
2246
  }
@@ -2358,15 +2354,6 @@ declare global {
2358
2354
  prototype: HTMLMgInputCheckboxElement;
2359
2355
  new (): HTMLMgInputCheckboxElement;
2360
2356
  };
2361
- /**
2362
- * Internal component use to manage sections instances
2363
- */
2364
- interface HTMLMgInputCheckboxPaginatedElement extends Components.MgInputCheckboxPaginated, HTMLStencilElement {
2365
- }
2366
- var HTMLMgInputCheckboxPaginatedElement: {
2367
- prototype: HTMLMgInputCheckboxPaginatedElement;
2368
- new (): HTMLMgInputCheckboxPaginatedElement;
2369
- };
2370
2357
  interface HTMLMgInputComboboxElementEventMap {
2371
2358
  "value-change": HTMLMgInputComboboxElement['value'];
2372
2359
  "filter-change": string;
@@ -2773,6 +2760,7 @@ declare global {
2773
2760
  "mg-action-more": HTMLMgActionMoreElement;
2774
2761
  "mg-alert": HTMLMgAlertElement;
2775
2762
  "mg-badge": HTMLMgBadgeElement;
2763
+ "mg-breadcrumb": HTMLMgBreadcrumbElement;
2776
2764
  "mg-button": HTMLMgButtonElement;
2777
2765
  "mg-card": HTMLMgCardElement;
2778
2766
  "mg-character-left": HTMLMgCharacterLeftElement;
@@ -2784,7 +2772,6 @@ declare global {
2784
2772
  "mg-illustrated-message": HTMLMgIllustratedMessageElement;
2785
2773
  "mg-input": HTMLMgInputElement;
2786
2774
  "mg-input-checkbox": HTMLMgInputCheckboxElement;
2787
- "mg-input-checkbox-paginated": HTMLMgInputCheckboxPaginatedElement;
2788
2775
  "mg-input-combobox": HTMLMgInputComboboxElement;
2789
2776
  "mg-input-date": HTMLMgInputDateElement;
2790
2777
  "mg-input-file": HTMLMgInputFileElement;
@@ -2817,6 +2804,8 @@ declare global {
2817
2804
  }
2818
2805
  }
2819
2806
  declare namespace LocalJSX {
2807
+ type OneOf<K extends string, PropT, AttrT = PropT> = { [P in K]: PropT } & { [P in `attr:${K}` | `prop:${K}`]?: never } | { [P in `attr:${K}`]: AttrT } & { [P in K | `prop:${K}`]?: never } | { [P in `prop:${K}`]: PropT } & { [P in K | `attr:${K}`]?: never };
2808
+
2820
2809
  interface MgActionMore {
2821
2810
  /**
2822
2811
  * Define button properties
@@ -2885,6 +2874,12 @@ declare namespace LocalJSX {
2885
2874
  */
2886
2875
  "variant"?: BadgeVariantType;
2887
2876
  }
2877
+ interface MgBreadcrumb {
2878
+ /**
2879
+ * Breadcrumb items (hierarchical order: root → current page).
2880
+ */
2881
+ "items": BreadcrumbItemType[];
2882
+ }
2888
2883
  interface MgButton {
2889
2884
  /**
2890
2885
  * Option to set input disable on click, in order to prevent multi-click. Parent component have to remove the attribute 'disabled' when the process ends.
@@ -3286,38 +3281,7 @@ declare namespace LocalJSX {
3286
3281
  /**
3287
3282
  * Component value If item.value is `null`, checkbox will be indeterminate by default
3288
3283
  */
3289
- "value": CheckboxValue[];
3290
- }
3291
- /**
3292
- * Internal component use to manage sections instances
3293
- */
3294
- interface MgInputCheckboxPaginated {
3295
- /**
3296
- * Define checkboxes to paginate
3297
- */
3298
- "checkboxes"?: CheckboxItem[];
3299
- /**
3300
- * Define if mg-input-checkbox-list is disabled
3301
- * @default false
3302
- */
3303
- "disabled"?: boolean;
3304
- /**
3305
- * Define mg-input-checkbox input invalid
3306
- */
3307
- "invalid"?: boolean;
3308
- /**
3309
- * Define component message
3310
- */
3311
- "messages"?: Record<string, string>;
3312
- /**
3313
- * Define mg-input-checkbox input name
3314
- */
3315
- "name"?: string;
3316
- /**
3317
- * Define if mg-input-checkbox-list is readonly
3318
- * @default false
3319
- */
3320
- "readonly"?: boolean;
3284
+ "value": ICheckboxValue[];
3321
3285
  }
3322
3286
  interface MgInputCombobox {
3323
3287
  /**
@@ -3929,9 +3893,14 @@ declare namespace LocalJSX {
3929
3893
  */
3930
3894
  "labelOnTop"?: boolean;
3931
3895
  /**
3932
- * Editor modules configuration
3896
+ * Editor modules configuration. Must be passed as an array (e.g. modules=['bold', 'italic', '|', 'ul', 'ol']). Use `|` for a separator/divider in the toolbar. Available modules: - **Text formatting**: `bold`, `italic`, `underline`, `strikethrough`, `eraser` - **Lists**: `ul` (unordered list), `ol` (ordered list) - **Text positioning**: `superscript`, `subscript` - **Colors**: `brush` (text color/background) - **Media**: `link`, `image`, `file` - **Tables**: `table` - **History**: `undo`, `redo` - **Other**: `print`, `source` (HTML source editor)
3897
+ */
3898
+ "modules"?: ButtonsOption;
3899
+ /**
3900
+ * Input name If not set the value equals the identifier
3901
+ * @default this.identifier
3933
3902
  */
3934
- "modules"?: EditorOptionsType['modules'];
3903
+ "name"?: string;
3935
3904
  /**
3936
3905
  * Emited event when checking validity
3937
3906
  */
@@ -3963,10 +3932,14 @@ declare namespace LocalJSX {
3963
3932
  */
3964
3933
  "required"?: boolean;
3965
3934
  /**
3966
- * Define the number of visible text lines for the control
3935
+ * Define the number of visible text lines for the editor. Impacts the editor height. Content can grow beyond this minimum.
3967
3936
  * @default 5
3968
3937
  */
3969
3938
  "rows"?: number;
3939
+ /**
3940
+ * Sanitizer configuration in native format. Use disallowTags (array of tag names) and/or disallowAttributes (object mapping tag names to string arrays). Use "*" as tag key to disallow attributes on all tags.
3941
+ */
3942
+ "sanitizerOptions"?: SanitizerOptions;
3970
3943
  /**
3971
3944
  * Add a tooltip message next to the input
3972
3945
  */
@@ -4403,10 +4376,6 @@ declare namespace LocalJSX {
4403
4376
  * @default { icon: 'ellipsis-vertical' }
4404
4377
  */
4405
4378
  "icon"?: IconType2;
4406
- /**
4407
- * Define component child menu size.
4408
- */
4409
- "size"?: SizeType1;
4410
4379
  /**
4411
4380
  * Define slot label element
4412
4381
  * @default { display: false }
@@ -4431,7 +4400,7 @@ declare namespace LocalJSX {
4431
4400
  */
4432
4401
  "direction"?: Direction;
4433
4402
  /**
4434
- * Customize "mg-item-more" element Used with direction: 'vertical' to manage overflow
4403
+ * Customize "mg-item-more" element Used with direction: 'horizontal' to manage overflow
4435
4404
  */
4436
4405
  "itemmore"?: ItemMoreType;
4437
4406
  /**
@@ -4439,10 +4408,10 @@ declare namespace LocalJSX {
4439
4408
  */
4440
4409
  "label": string;
4441
4410
  /**
4442
- * Define mg-menu size
4443
- * @default 'medium'
4411
+ * Size of the menu items
4412
+ * @deprecated this prop is deprecated and will be removed in future releases
4444
4413
  */
4445
- "size"?: MenuSizeType;
4414
+ "size"?: never;
4446
4415
  }
4447
4416
  interface MgMenuItem {
4448
4417
  /**
@@ -4459,6 +4428,11 @@ declare namespace LocalJSX {
4459
4428
  * @default createID('mg-menu-item')
4460
4429
  */
4461
4430
  "identifier"?: string;
4431
+ /**
4432
+ * Define menu-item isIcon style.
4433
+ * @default false
4434
+ */
4435
+ "isIcon"?: boolean;
4462
4436
  /**
4463
4437
  * Emited event when item is loaded
4464
4438
  */
@@ -4711,6 +4685,11 @@ declare namespace LocalJSX {
4711
4685
  "onGo-to-anchor"?: (event: MgSkipLinksCustomEvent<string>) => void;
4712
4686
  }
4713
4687
  interface MgTable {
4688
+ /**
4689
+ * Define if table has no outer border
4690
+ * @default false
4691
+ */
4692
+ "borderHide"?: boolean;
4714
4693
  /**
4715
4694
  * Define column properties
4716
4695
  */
@@ -4749,10 +4728,10 @@ declare namespace LocalJSX {
4749
4728
  */
4750
4729
  "onActive-tab-change"?: (event: MgTabsCustomEvent<HTMLMgTabsElement['activeTab']>) => void;
4751
4730
  /**
4752
- * Define tabs size
4753
- * @default 'medium'
4731
+ * Size of the tabs items.
4732
+ * @deprecated this prop is deprecated and will be removed in future releases. Please use CSS custom properties to set the size of tabs items.
4754
4733
  */
4755
- "size"?: SizeType2;
4734
+ "size"?: never;
4756
4735
  }
4757
4736
  interface MgTag {
4758
4737
  /**
@@ -4803,104 +4782,535 @@ declare namespace LocalJSX {
4803
4782
  */
4804
4783
  "message": string;
4805
4784
  }
4785
+
4786
+ interface MgActionMoreAttributes {
4787
+ "displayChevron": boolean;
4788
+ }
4789
+ interface MgAlertAttributes {
4790
+ "delay": number;
4791
+ "variant": VariantType;
4792
+ "variantStyle": VariantStyleType;
4793
+ }
4794
+ interface MgBadgeAttributes {
4795
+ "value": string;
4796
+ "label": string;
4797
+ "variant": BadgeVariantType;
4798
+ "outline": boolean;
4799
+ }
4800
+ interface MgButtonAttributes {
4801
+ "variant": VariantType;
4802
+ "label": string;
4803
+ "type": ButtonType;
4804
+ "size": SizeType;
4805
+ "fullWidth": boolean;
4806
+ "form": string;
4807
+ "disabled": boolean;
4808
+ "isIcon": boolean;
4809
+ "disableOnClick": boolean;
4810
+ }
4811
+ interface MgCardAttributes {
4812
+ "shadow": boolean;
4813
+ "radiusSize": RadiusSizeType;
4814
+ }
4815
+ interface MgCharacterLeftAttributes {
4816
+ "identifier": string;
4817
+ "characters": string;
4818
+ "maxlength": number;
4819
+ }
4820
+ interface MgDetailsAttributes {
4821
+ "toggleClosed": string;
4822
+ "toggleOpened": string;
4823
+ "hideSummary": boolean;
4824
+ "expanded": boolean;
4825
+ }
4826
+ interface MgDividerAttributes {
4827
+ "fullWidth": boolean;
4828
+ }
4829
+ interface MgFieldsetAttributes {
4830
+ "identifier": string;
4831
+ "name": string;
4832
+ "legend": string;
4833
+ "legendHide": boolean;
4834
+ "legendHeading": labelHeading;
4835
+ "legendBorderDisplay": boolean;
4836
+ "readonly": boolean;
4837
+ "disabled": boolean;
4838
+ "tooltip": string;
4839
+ "helpText": string;
4840
+ }
4841
+ interface MgFormAttributes {
4842
+ "identifier": string;
4843
+ "name": string;
4844
+ "readonly": boolean;
4845
+ "requiredMessage": RequiredMessageStatusType;
4846
+ "ariaRole": AriaRoleType;
4847
+ "labelOnTop": boolean;
4848
+ "disabled": boolean;
4849
+ "valid": boolean;
4850
+ "invalid": boolean;
4851
+ }
4852
+ interface MgIconAttributes {
4853
+ "icon": IconType;
4854
+ "size": IconSizeType;
4855
+ "variant": IconVariantType;
4856
+ "variantStyle": IconVariantStyleType;
4857
+ "spin": boolean;
4858
+ }
4859
+ interface MgIllustratedMessageAttributes {
4860
+ "size": IllustratedMessageSizeType;
4861
+ "direction": IllustratedMessageDirectionType;
4862
+ }
4863
+ interface MgInputAttributes {
4864
+ "identifier": string;
4865
+ "label": string;
4866
+ "labelOnTop": boolean;
4867
+ "labelHide": boolean;
4868
+ "labelHeading": labelHeading;
4869
+ "labelBorderDisplay": boolean;
4870
+ "tooltip": string;
4871
+ "tooltipPosition": TooltipPosition;
4872
+ "required": boolean;
4873
+ "errorMessage": string;
4874
+ "helpText": string;
4875
+ "inputsOnBottom": boolean;
4876
+ "ariaDescribedbyIDs": string[] | string;
4877
+ }
4878
+ interface MgInputCheckboxAttributes {
4879
+ "type": CheckboxType;
4880
+ "identifier": string;
4881
+ "name": string;
4882
+ "label": string;
4883
+ "labelOnTop": boolean;
4884
+ "labelHide": boolean;
4885
+ "inputVerticalList": boolean;
4886
+ "required": boolean;
4887
+ "readonly": boolean;
4888
+ "displaySelectedValues": boolean;
4889
+ "disabled": boolean;
4890
+ "tooltip": string;
4891
+ "tooltipPosition": TooltipPosition;
4892
+ "helpText": string;
4893
+ "valid": boolean;
4894
+ "invalid": boolean;
4895
+ "editButtonMessage": string;
4896
+ "showButtonMessage": string;
4897
+ "selectButtonMessage": string;
4898
+ }
4899
+ interface MgInputComboboxAttributes {
4900
+ "value": string | Option;
4901
+ "itemsLabel": string;
4902
+ "identifier": string;
4903
+ "name": string;
4904
+ "label": string;
4905
+ "labelOnTop": boolean;
4906
+ "labelHide": boolean;
4907
+ "placeholder": string;
4908
+ "required": boolean;
4909
+ "readonly": boolean;
4910
+ "disabled": boolean;
4911
+ "mgWidth": string;
4912
+ "tooltip": string;
4913
+ "tooltipPosition": TooltipPosition;
4914
+ "helpText": string;
4915
+ "fetchurl": string | URL;
4916
+ "valid": boolean;
4917
+ "invalid": boolean;
4918
+ }
4919
+ interface MgInputDateAttributes {
4920
+ "value": string;
4921
+ "identifier": string;
4922
+ "name": string;
4923
+ "label": string;
4924
+ "labelOnTop": boolean;
4925
+ "labelHide": boolean;
4926
+ "required": boolean;
4927
+ "readonly": boolean;
4928
+ "min": string;
4929
+ "max": string;
4930
+ "disabled": boolean;
4931
+ "tooltip": string;
4932
+ "tooltipPosition": TooltipPosition;
4933
+ "helpText": string;
4934
+ "valid": boolean;
4935
+ "invalid": boolean;
4936
+ }
4937
+ interface MgInputFileAttributes {
4938
+ "value": string;
4939
+ "identifier": string;
4940
+ "name": string;
4941
+ "label": string;
4942
+ "labelOnTop": boolean;
4943
+ "labelHide": boolean;
4944
+ "multiple": boolean;
4945
+ "accept": string;
4946
+ "maxSize": number;
4947
+ "capture": 'user' | 'environment' | '';
4948
+ "required": boolean;
4949
+ "disabled": boolean;
4950
+ "tooltip": string;
4951
+ "tooltipPosition": TooltipPosition;
4952
+ "helpText": string;
4953
+ "valid": boolean;
4954
+ "invalid": boolean;
4955
+ }
4956
+ interface MgInputNumericAttributes {
4957
+ "value": string;
4958
+ "identifier": string;
4959
+ "name": string;
4960
+ "label": string;
4961
+ "labelOnTop": boolean;
4962
+ "labelHide": boolean;
4963
+ "placeholder": string;
4964
+ "required": boolean;
4965
+ "readonly": boolean;
4966
+ "max": number;
4967
+ "min": number;
4968
+ "disabled": boolean;
4969
+ "mgWidth": string;
4970
+ "tooltip": string;
4971
+ "tooltipPosition": TooltipPosition;
4972
+ "helpText": string;
4973
+ "type": NumericType;
4974
+ "format": Format;
4975
+ "currency": string;
4976
+ "unit": Intl.NumberFormatOptions['unit'];
4977
+ "unitDisplay": Intl.NumberFormatOptions['unitDisplay'];
4978
+ "integerLength": number;
4979
+ "decimalLength": number;
4980
+ "valid": boolean;
4981
+ "invalid": boolean;
4982
+ }
4983
+ interface MgInputPasswordAttributes {
4984
+ "value": string;
4985
+ "identifier": string;
4986
+ "name": string;
4987
+ "label": string;
4988
+ "labelOnTop": boolean;
4989
+ "labelHide": boolean;
4990
+ "placeholder": string;
4991
+ "maxlength": number;
4992
+ "required": boolean;
4993
+ "readonly": boolean;
4994
+ "disabled": boolean;
4995
+ "mgWidth": string;
4996
+ "tooltip": string;
4997
+ "tooltipPosition": TooltipPosition;
4998
+ "helpText": string;
4999
+ "valid": boolean;
5000
+ "invalid": boolean;
5001
+ }
5002
+ interface MgInputRadioAttributes {
5003
+ "value": string;
5004
+ "identifier": string;
5005
+ "name": string;
5006
+ "label": string;
5007
+ "labelOnTop": boolean;
5008
+ "labelHide": boolean;
5009
+ "inputVerticalList": boolean;
5010
+ "required": boolean;
5011
+ "readonly": boolean;
5012
+ "disabled": boolean;
5013
+ "tooltip": string;
5014
+ "tooltipPosition": TooltipPosition;
5015
+ "helpText": string;
5016
+ "valid": boolean;
5017
+ "invalid": boolean;
5018
+ }
5019
+ interface MgInputRichTextEditorAttributes {
5020
+ "value": string;
5021
+ "identifier": string;
5022
+ "name": string;
5023
+ "label": string;
5024
+ "labelOnTop": boolean;
5025
+ "labelHide": boolean;
5026
+ "placeholder": string;
5027
+ "rows": number;
5028
+ "required": boolean;
5029
+ "readonly": boolean;
5030
+ "disabled": boolean;
5031
+ "pattern": string;
5032
+ "patternErrorMessage": string;
5033
+ "tooltip": string;
5034
+ "tooltipPosition": TooltipPosition;
5035
+ "helpText": string;
5036
+ "modules": ButtonsOption;
5037
+ "valid": boolean;
5038
+ "invalid": boolean;
5039
+ }
5040
+ interface MgInputSelectAttributes {
5041
+ "value": string;
5042
+ "identifier": string;
5043
+ "name": string;
5044
+ "label": string;
5045
+ "labelOnTop": boolean;
5046
+ "labelHide": boolean;
5047
+ "placeholder": string;
5048
+ "placeholderHide": boolean;
5049
+ "placeholderDisabled": boolean;
5050
+ "required": boolean;
5051
+ "readonly": boolean;
5052
+ "disabled": boolean;
5053
+ "mgWidth": string;
5054
+ "tooltip": string;
5055
+ "tooltipPosition": TooltipPosition;
5056
+ "helpText": string;
5057
+ "valid": boolean;
5058
+ "invalid": boolean;
5059
+ }
5060
+ interface MgInputTextAttributes {
5061
+ "value": string;
5062
+ "identifier": string;
5063
+ "name": string;
5064
+ "label": string;
5065
+ "labelOnTop": boolean;
5066
+ "labelHide": boolean;
5067
+ "type": TextType;
5068
+ "icon": IconType;
5069
+ "placeholder": string;
5070
+ "maxlength": number;
5071
+ "required": boolean;
5072
+ "readonly": boolean;
5073
+ "disabled": boolean;
5074
+ "mgWidth": string;
5075
+ "pattern": string;
5076
+ "patternErrorMessage": string;
5077
+ "tooltip": string;
5078
+ "tooltipPosition": TooltipPosition;
5079
+ "characterLeftHide": boolean;
5080
+ "helpText": string;
5081
+ "valid": boolean;
5082
+ "invalid": boolean;
5083
+ }
5084
+ interface MgInputTextareaAttributes {
5085
+ "value": string;
5086
+ "identifier": string;
5087
+ "name": string;
5088
+ "label": string;
5089
+ "labelOnTop": boolean;
5090
+ "labelHide": boolean;
5091
+ "placeholder": string;
5092
+ "maxlength": number;
5093
+ "required": boolean;
5094
+ "readonly": boolean;
5095
+ "disabled": boolean;
5096
+ "mgWidth": string;
5097
+ "pattern": string;
5098
+ "patternErrorMessage": string;
5099
+ "rows": number;
5100
+ "tooltip": string;
5101
+ "tooltipPosition": TooltipPosition;
5102
+ "characterLeftHide": boolean;
5103
+ "helpText": string;
5104
+ "resizable": 'none' | 'both' | 'horizontal' | 'vertical';
5105
+ "valid": boolean;
5106
+ "invalid": boolean;
5107
+ }
5108
+ interface MgInputTitleAttributes {
5109
+ "identifier": string;
5110
+ "required": boolean;
5111
+ "readonly": boolean;
5112
+ "isLegend": boolean;
5113
+ }
5114
+ interface MgInputToggleAttributes {
5115
+ "identifier": string;
5116
+ "name": string;
5117
+ "label": string;
5118
+ "labelOnTop": boolean;
5119
+ "labelHide": boolean;
5120
+ "isOnOff": boolean;
5121
+ "isIcon": boolean;
5122
+ "readonly": boolean;
5123
+ "disabled": boolean;
5124
+ "tooltip": string;
5125
+ "tooltipPosition": TooltipPosition;
5126
+ "helpText": string;
5127
+ }
5128
+ interface MgLoaderAttributes {
5129
+ "message": string;
5130
+ "messageHide": boolean;
5131
+ }
5132
+ interface MgMenuAttributes {
5133
+ "label": string;
5134
+ "direction": Direction;
5135
+ }
5136
+ interface MgMenuItemAttributes {
5137
+ "identifier": string;
5138
+ "href": string;
5139
+ "target": TargetType;
5140
+ "status": MgMenuStatusType;
5141
+ "isIcon": boolean;
5142
+ "expanded": boolean;
5143
+ }
5144
+ interface MgMessageAttributes {
5145
+ "variant": VariantType;
5146
+ "variantStyle": VariantStyleType;
5147
+ }
5148
+ interface MgModalAttributes {
5149
+ "identifier": string;
5150
+ "dialogRole": DialogRoleType;
5151
+ "modalTitle": string;
5152
+ "closeButton": boolean;
5153
+ "open": boolean;
5154
+ }
5155
+ interface MgPaginationAttributes {
5156
+ "identifier": string;
5157
+ "label": string;
5158
+ "hideNavigationLabels": boolean;
5159
+ "hidePageCount": boolean;
5160
+ "totalPages": number;
5161
+ "currentPage": number;
5162
+ }
5163
+ interface MgPanelAttributes {
5164
+ "identifier": string;
5165
+ "panelTitle": string;
5166
+ "titlePattern": string;
5167
+ "titlePatternErrorMessage": string;
5168
+ "titleEditable": boolean;
5169
+ "titlePosition": TitlePositionType;
5170
+ "expanded": boolean;
5171
+ "expandToggleDisplay": ExpandToggleDisplayType;
5172
+ "expandToggleDisabled": boolean;
5173
+ "shadow": boolean;
5174
+ }
5175
+ interface MgPopoverAttributes {
5176
+ "identifier": string;
5177
+ "placement": Placement;
5178
+ "arrowHide": boolean;
5179
+ "closeButton": boolean;
5180
+ "display": boolean;
5181
+ "disabled": boolean;
5182
+ }
5183
+ interface MgPopoverContentAttributes {
5184
+ "closeButton": boolean;
5185
+ }
5186
+ interface MgProgressAttributes {
5187
+ "label": string;
5188
+ "ariaRole": AriaRoleType;
5189
+ "value": number;
5190
+ "min": number;
5191
+ "max": number;
5192
+ }
5193
+ interface MgTableAttributes {
5194
+ "size": TableSizeType;
5195
+ "fullWidth": boolean;
5196
+ "borderHide": boolean;
5197
+ }
5198
+ interface MgTabsAttributes {
5199
+ "identifier": string;
5200
+ "label": string;
5201
+ "activeTab": number;
5202
+ }
5203
+ interface MgTagAttributes {
5204
+ "variant": TagVariantType;
5205
+ "outline": boolean;
5206
+ "soft": boolean;
5207
+ }
5208
+ interface MgTooltipAttributes {
5209
+ "identifier": string;
5210
+ "message": string;
5211
+ "placement": Placement;
5212
+ "display": boolean;
5213
+ "disabled": boolean;
5214
+ }
5215
+ interface MgTooltipContentAttributes {
5216
+ "message": string;
5217
+ }
5218
+
4806
5219
  interface IntrinsicElements {
4807
- "mg-action-more": MgActionMore;
4808
- "mg-alert": MgAlert;
4809
- "mg-badge": MgBadge;
4810
- "mg-button": MgButton;
4811
- "mg-card": MgCard;
4812
- "mg-character-left": MgCharacterLeft;
4813
- "mg-details": MgDetails;
4814
- "mg-divider": MgDivider;
4815
- "mg-fieldset": MgFieldset;
4816
- "mg-form": MgForm;
4817
- "mg-icon": MgIcon;
4818
- "mg-illustrated-message": MgIllustratedMessage;
4819
- "mg-input": MgInput;
4820
- "mg-input-checkbox": MgInputCheckbox;
4821
- "mg-input-checkbox-paginated": MgInputCheckboxPaginated;
4822
- "mg-input-combobox": MgInputCombobox;
4823
- "mg-input-date": MgInputDate;
4824
- "mg-input-file": MgInputFile;
4825
- "mg-input-numeric": MgInputNumeric;
4826
- "mg-input-password": MgInputPassword;
4827
- "mg-input-radio": MgInputRadio;
4828
- "mg-input-rich-text-editor": MgInputRichTextEditor;
4829
- "mg-input-select": MgInputSelect;
4830
- "mg-input-text": MgInputText;
4831
- "mg-input-textarea": MgInputTextarea;
4832
- "mg-input-title": MgInputTitle;
4833
- "mg-input-toggle": MgInputToggle;
5220
+ "mg-action-more": Omit<MgActionMore, keyof MgActionMoreAttributes> & { [K in keyof MgActionMore & keyof MgActionMoreAttributes]?: MgActionMore[K] } & { [K in keyof MgActionMore & keyof MgActionMoreAttributes as `attr:${K}`]?: MgActionMoreAttributes[K] } & { [K in keyof MgActionMore & keyof MgActionMoreAttributes as `prop:${K}`]?: MgActionMore[K] };
5221
+ "mg-alert": Omit<MgAlert, keyof MgAlertAttributes> & { [K in keyof MgAlert & keyof MgAlertAttributes]?: MgAlert[K] } & { [K in keyof MgAlert & keyof MgAlertAttributes as `attr:${K}`]?: MgAlertAttributes[K] } & { [K in keyof MgAlert & keyof MgAlertAttributes as `prop:${K}`]?: MgAlert[K] };
5222
+ "mg-badge": Omit<MgBadge, keyof MgBadgeAttributes> & { [K in keyof MgBadge & keyof MgBadgeAttributes]?: MgBadge[K] } & { [K in keyof MgBadge & keyof MgBadgeAttributes as `attr:${K}`]?: MgBadgeAttributes[K] } & { [K in keyof MgBadge & keyof MgBadgeAttributes as `prop:${K}`]?: MgBadge[K] } & OneOf<"value", MgBadge["value"], MgBadgeAttributes["value"]> & OneOf<"label", MgBadge["label"], MgBadgeAttributes["label"]>;
5223
+ "mg-breadcrumb": MgBreadcrumb;
5224
+ "mg-button": Omit<MgButton, keyof MgButtonAttributes> & { [K in keyof MgButton & keyof MgButtonAttributes]?: MgButton[K] } & { [K in keyof MgButton & keyof MgButtonAttributes as `attr:${K}`]?: MgButtonAttributes[K] } & { [K in keyof MgButton & keyof MgButtonAttributes as `prop:${K}`]?: MgButton[K] };
5225
+ "mg-card": Omit<MgCard, keyof MgCardAttributes> & { [K in keyof MgCard & keyof MgCardAttributes]?: MgCard[K] } & { [K in keyof MgCard & keyof MgCardAttributes as `attr:${K}`]?: MgCardAttributes[K] } & { [K in keyof MgCard & keyof MgCardAttributes as `prop:${K}`]?: MgCard[K] };
5226
+ "mg-character-left": Omit<MgCharacterLeft, keyof MgCharacterLeftAttributes> & { [K in keyof MgCharacterLeft & keyof MgCharacterLeftAttributes]?: MgCharacterLeft[K] } & { [K in keyof MgCharacterLeft & keyof MgCharacterLeftAttributes as `attr:${K}`]?: MgCharacterLeftAttributes[K] } & { [K in keyof MgCharacterLeft & keyof MgCharacterLeftAttributes as `prop:${K}`]?: MgCharacterLeft[K] } & OneOf<"maxlength", MgCharacterLeft["maxlength"], MgCharacterLeftAttributes["maxlength"]>;
5227
+ "mg-details": Omit<MgDetails, keyof MgDetailsAttributes> & { [K in keyof MgDetails & keyof MgDetailsAttributes]?: MgDetails[K] } & { [K in keyof MgDetails & keyof MgDetailsAttributes as `attr:${K}`]?: MgDetailsAttributes[K] } & { [K in keyof MgDetails & keyof MgDetailsAttributes as `prop:${K}`]?: MgDetails[K] } & OneOf<"toggleClosed", MgDetails["toggleClosed"], MgDetailsAttributes["toggleClosed"]> & OneOf<"toggleOpened", MgDetails["toggleOpened"], MgDetailsAttributes["toggleOpened"]>;
5228
+ "mg-divider": Omit<MgDivider, keyof MgDividerAttributes> & { [K in keyof MgDivider & keyof MgDividerAttributes]?: MgDivider[K] } & { [K in keyof MgDivider & keyof MgDividerAttributes as `attr:${K}`]?: MgDividerAttributes[K] } & { [K in keyof MgDivider & keyof MgDividerAttributes as `prop:${K}`]?: MgDivider[K] };
5229
+ "mg-fieldset": Omit<MgFieldset, keyof MgFieldsetAttributes> & { [K in keyof MgFieldset & keyof MgFieldsetAttributes]?: MgFieldset[K] } & { [K in keyof MgFieldset & keyof MgFieldsetAttributes as `attr:${K}`]?: MgFieldsetAttributes[K] } & { [K in keyof MgFieldset & keyof MgFieldsetAttributes as `prop:${K}`]?: MgFieldset[K] } & OneOf<"identifier", MgFieldset["identifier"], MgFieldsetAttributes["identifier"]> & OneOf<"legend", MgFieldset["legend"], MgFieldsetAttributes["legend"]>;
5230
+ "mg-form": Omit<MgForm, keyof MgFormAttributes> & { [K in keyof MgForm & keyof MgFormAttributes]?: MgForm[K] } & { [K in keyof MgForm & keyof MgFormAttributes as `attr:${K}`]?: MgFormAttributes[K] } & { [K in keyof MgForm & keyof MgFormAttributes as `prop:${K}`]?: MgForm[K] };
5231
+ "mg-icon": Omit<MgIcon, keyof MgIconAttributes> & { [K in keyof MgIcon & keyof MgIconAttributes]?: MgIcon[K] } & { [K in keyof MgIcon & keyof MgIconAttributes as `attr:${K}`]?: MgIconAttributes[K] } & { [K in keyof MgIcon & keyof MgIconAttributes as `prop:${K}`]?: MgIcon[K] } & OneOf<"icon", MgIcon["icon"], MgIconAttributes["icon"]>;
5232
+ "mg-illustrated-message": Omit<MgIllustratedMessage, keyof MgIllustratedMessageAttributes> & { [K in keyof MgIllustratedMessage & keyof MgIllustratedMessageAttributes]?: MgIllustratedMessage[K] } & { [K in keyof MgIllustratedMessage & keyof MgIllustratedMessageAttributes as `attr:${K}`]?: MgIllustratedMessageAttributes[K] } & { [K in keyof MgIllustratedMessage & keyof MgIllustratedMessageAttributes as `prop:${K}`]?: MgIllustratedMessage[K] };
5233
+ "mg-input": Omit<MgInput, keyof MgInputAttributes> & { [K in keyof MgInput & keyof MgInputAttributes]?: MgInput[K] } & { [K in keyof MgInput & keyof MgInputAttributes as `attr:${K}`]?: MgInputAttributes[K] } & { [K in keyof MgInput & keyof MgInputAttributes as `prop:${K}`]?: MgInput[K] } & OneOf<"identifier", MgInput["identifier"], MgInputAttributes["identifier"]> & OneOf<"label", MgInput["label"], MgInputAttributes["label"]>;
5234
+ "mg-input-checkbox": Omit<MgInputCheckbox, keyof MgInputCheckboxAttributes> & { [K in keyof MgInputCheckbox & keyof MgInputCheckboxAttributes]?: MgInputCheckbox[K] } & { [K in keyof MgInputCheckbox & keyof MgInputCheckboxAttributes as `attr:${K}`]?: MgInputCheckboxAttributes[K] } & { [K in keyof MgInputCheckbox & keyof MgInputCheckboxAttributes as `prop:${K}`]?: MgInputCheckbox[K] } & OneOf<"identifier", MgInputCheckbox["identifier"], MgInputCheckboxAttributes["identifier"]> & OneOf<"label", MgInputCheckbox["label"], MgInputCheckboxAttributes["label"]>;
5235
+ "mg-input-combobox": Omit<MgInputCombobox, keyof MgInputComboboxAttributes> & { [K in keyof MgInputCombobox & keyof MgInputComboboxAttributes]?: MgInputCombobox[K] } & { [K in keyof MgInputCombobox & keyof MgInputComboboxAttributes as `attr:${K}`]?: MgInputComboboxAttributes[K] } & { [K in keyof MgInputCombobox & keyof MgInputComboboxAttributes as `prop:${K}`]?: MgInputCombobox[K] } & OneOf<"itemsLabel", MgInputCombobox["itemsLabel"], MgInputComboboxAttributes["itemsLabel"]> & OneOf<"identifier", MgInputCombobox["identifier"], MgInputComboboxAttributes["identifier"]> & OneOf<"label", MgInputCombobox["label"], MgInputComboboxAttributes["label"]>;
5236
+ "mg-input-date": Omit<MgInputDate, keyof MgInputDateAttributes> & { [K in keyof MgInputDate & keyof MgInputDateAttributes]?: MgInputDate[K] } & { [K in keyof MgInputDate & keyof MgInputDateAttributes as `attr:${K}`]?: MgInputDateAttributes[K] } & { [K in keyof MgInputDate & keyof MgInputDateAttributes as `prop:${K}`]?: MgInputDate[K] } & OneOf<"identifier", MgInputDate["identifier"], MgInputDateAttributes["identifier"]> & OneOf<"label", MgInputDate["label"], MgInputDateAttributes["label"]>;
5237
+ "mg-input-file": Omit<MgInputFile, keyof MgInputFileAttributes> & { [K in keyof MgInputFile & keyof MgInputFileAttributes]?: MgInputFile[K] } & { [K in keyof MgInputFile & keyof MgInputFileAttributes as `attr:${K}`]?: MgInputFileAttributes[K] } & { [K in keyof MgInputFile & keyof MgInputFileAttributes as `prop:${K}`]?: MgInputFile[K] } & OneOf<"identifier", MgInputFile["identifier"], MgInputFileAttributes["identifier"]> & OneOf<"label", MgInputFile["label"], MgInputFileAttributes["label"]>;
5238
+ "mg-input-numeric": Omit<MgInputNumeric, keyof MgInputNumericAttributes> & { [K in keyof MgInputNumeric & keyof MgInputNumericAttributes]?: MgInputNumeric[K] } & { [K in keyof MgInputNumeric & keyof MgInputNumericAttributes as `attr:${K}`]?: MgInputNumericAttributes[K] } & { [K in keyof MgInputNumeric & keyof MgInputNumericAttributes as `prop:${K}`]?: MgInputNumeric[K] } & OneOf<"identifier", MgInputNumeric["identifier"], MgInputNumericAttributes["identifier"]> & OneOf<"label", MgInputNumeric["label"], MgInputNumericAttributes["label"]>;
5239
+ "mg-input-password": Omit<MgInputPassword, keyof MgInputPasswordAttributes> & { [K in keyof MgInputPassword & keyof MgInputPasswordAttributes]?: MgInputPassword[K] } & { [K in keyof MgInputPassword & keyof MgInputPasswordAttributes as `attr:${K}`]?: MgInputPasswordAttributes[K] } & { [K in keyof MgInputPassword & keyof MgInputPasswordAttributes as `prop:${K}`]?: MgInputPassword[K] } & OneOf<"identifier", MgInputPassword["identifier"], MgInputPasswordAttributes["identifier"]> & OneOf<"label", MgInputPassword["label"], MgInputPasswordAttributes["label"]>;
5240
+ "mg-input-radio": Omit<MgInputRadio, keyof MgInputRadioAttributes> & { [K in keyof MgInputRadio & keyof MgInputRadioAttributes]?: MgInputRadio[K] } & { [K in keyof MgInputRadio & keyof MgInputRadioAttributes as `attr:${K}`]?: MgInputRadioAttributes[K] } & { [K in keyof MgInputRadio & keyof MgInputRadioAttributes as `prop:${K}`]?: MgInputRadio[K] } & OneOf<"identifier", MgInputRadio["identifier"], MgInputRadioAttributes["identifier"]> & OneOf<"label", MgInputRadio["label"], MgInputRadioAttributes["label"]>;
5241
+ "mg-input-rich-text-editor": Omit<MgInputRichTextEditor, keyof MgInputRichTextEditorAttributes> & { [K in keyof MgInputRichTextEditor & keyof MgInputRichTextEditorAttributes]?: MgInputRichTextEditor[K] } & { [K in keyof MgInputRichTextEditor & keyof MgInputRichTextEditorAttributes as `attr:${K}`]?: MgInputRichTextEditorAttributes[K] } & { [K in keyof MgInputRichTextEditor & keyof MgInputRichTextEditorAttributes as `prop:${K}`]?: MgInputRichTextEditor[K] } & OneOf<"identifier", MgInputRichTextEditor["identifier"], MgInputRichTextEditorAttributes["identifier"]> & OneOf<"label", MgInputRichTextEditor["label"], MgInputRichTextEditorAttributes["label"]>;
5242
+ "mg-input-select": Omit<MgInputSelect, keyof MgInputSelectAttributes> & { [K in keyof MgInputSelect & keyof MgInputSelectAttributes]?: MgInputSelect[K] } & { [K in keyof MgInputSelect & keyof MgInputSelectAttributes as `attr:${K}`]?: MgInputSelectAttributes[K] } & { [K in keyof MgInputSelect & keyof MgInputSelectAttributes as `prop:${K}`]?: MgInputSelect[K] } & OneOf<"identifier", MgInputSelect["identifier"], MgInputSelectAttributes["identifier"]> & OneOf<"label", MgInputSelect["label"], MgInputSelectAttributes["label"]>;
5243
+ "mg-input-text": Omit<MgInputText, keyof MgInputTextAttributes> & { [K in keyof MgInputText & keyof MgInputTextAttributes]?: MgInputText[K] } & { [K in keyof MgInputText & keyof MgInputTextAttributes as `attr:${K}`]?: MgInputTextAttributes[K] } & { [K in keyof MgInputText & keyof MgInputTextAttributes as `prop:${K}`]?: MgInputText[K] } & OneOf<"identifier", MgInputText["identifier"], MgInputTextAttributes["identifier"]> & OneOf<"label", MgInputText["label"], MgInputTextAttributes["label"]>;
5244
+ "mg-input-textarea": Omit<MgInputTextarea, keyof MgInputTextareaAttributes> & { [K in keyof MgInputTextarea & keyof MgInputTextareaAttributes]?: MgInputTextarea[K] } & { [K in keyof MgInputTextarea & keyof MgInputTextareaAttributes as `attr:${K}`]?: MgInputTextareaAttributes[K] } & { [K in keyof MgInputTextarea & keyof MgInputTextareaAttributes as `prop:${K}`]?: MgInputTextarea[K] } & OneOf<"identifier", MgInputTextarea["identifier"], MgInputTextareaAttributes["identifier"]> & OneOf<"label", MgInputTextarea["label"], MgInputTextareaAttributes["label"]>;
5245
+ "mg-input-title": Omit<MgInputTitle, keyof MgInputTitleAttributes> & { [K in keyof MgInputTitle & keyof MgInputTitleAttributes]?: MgInputTitle[K] } & { [K in keyof MgInputTitle & keyof MgInputTitleAttributes as `attr:${K}`]?: MgInputTitleAttributes[K] } & { [K in keyof MgInputTitle & keyof MgInputTitleAttributes as `prop:${K}`]?: MgInputTitle[K] } & OneOf<"identifier", MgInputTitle["identifier"], MgInputTitleAttributes["identifier"]>;
5246
+ "mg-input-toggle": Omit<MgInputToggle, keyof MgInputToggleAttributes> & { [K in keyof MgInputToggle & keyof MgInputToggleAttributes]?: MgInputToggle[K] } & { [K in keyof MgInputToggle & keyof MgInputToggleAttributes as `attr:${K}`]?: MgInputToggleAttributes[K] } & { [K in keyof MgInputToggle & keyof MgInputToggleAttributes as `prop:${K}`]?: MgInputToggle[K] } & OneOf<"identifier", MgInputToggle["identifier"], MgInputToggleAttributes["identifier"]> & OneOf<"label", MgInputToggle["label"], MgInputToggleAttributes["label"]>;
4834
5247
  "mg-item-more": MgItemMore;
4835
- "mg-loader": MgLoader;
4836
- "mg-menu": MgMenu;
4837
- "mg-menu-item": MgMenuItem;
4838
- "mg-message": MgMessage;
4839
- "mg-modal": MgModal;
4840
- "mg-pagination": MgPagination;
4841
- "mg-panel": MgPanel;
4842
- "mg-popover": MgPopover;
4843
- "mg-popover-content": MgPopoverContent;
4844
- "mg-progress": MgProgress;
5248
+ "mg-loader": Omit<MgLoader, keyof MgLoaderAttributes> & { [K in keyof MgLoader & keyof MgLoaderAttributes]?: MgLoader[K] } & { [K in keyof MgLoader & keyof MgLoaderAttributes as `attr:${K}`]?: MgLoaderAttributes[K] } & { [K in keyof MgLoader & keyof MgLoaderAttributes as `prop:${K}`]?: MgLoader[K] };
5249
+ "mg-menu": Omit<MgMenu, keyof MgMenuAttributes> & { [K in keyof MgMenu & keyof MgMenuAttributes]?: MgMenu[K] } & { [K in keyof MgMenu & keyof MgMenuAttributes as `attr:${K}`]?: MgMenuAttributes[K] } & { [K in keyof MgMenu & keyof MgMenuAttributes as `prop:${K}`]?: MgMenu[K] } & OneOf<"label", MgMenu["label"], MgMenuAttributes["label"]>;
5250
+ "mg-menu-item": Omit<MgMenuItem, keyof MgMenuItemAttributes> & { [K in keyof MgMenuItem & keyof MgMenuItemAttributes]?: MgMenuItem[K] } & { [K in keyof MgMenuItem & keyof MgMenuItemAttributes as `attr:${K}`]?: MgMenuItemAttributes[K] } & { [K in keyof MgMenuItem & keyof MgMenuItemAttributes as `prop:${K}`]?: MgMenuItem[K] };
5251
+ "mg-message": Omit<MgMessage, keyof MgMessageAttributes> & { [K in keyof MgMessage & keyof MgMessageAttributes]?: MgMessage[K] } & { [K in keyof MgMessage & keyof MgMessageAttributes as `attr:${K}`]?: MgMessageAttributes[K] } & { [K in keyof MgMessage & keyof MgMessageAttributes as `prop:${K}`]?: MgMessage[K] };
5252
+ "mg-modal": Omit<MgModal, keyof MgModalAttributes> & { [K in keyof MgModal & keyof MgModalAttributes]?: MgModal[K] } & { [K in keyof MgModal & keyof MgModalAttributes as `attr:${K}`]?: MgModalAttributes[K] } & { [K in keyof MgModal & keyof MgModalAttributes as `prop:${K}`]?: MgModal[K] } & OneOf<"modalTitle", MgModal["modalTitle"], MgModalAttributes["modalTitle"]>;
5253
+ "mg-pagination": Omit<MgPagination, keyof MgPaginationAttributes> & { [K in keyof MgPagination & keyof MgPaginationAttributes]?: MgPagination[K] } & { [K in keyof MgPagination & keyof MgPaginationAttributes as `attr:${K}`]?: MgPaginationAttributes[K] } & { [K in keyof MgPagination & keyof MgPaginationAttributes as `prop:${K}`]?: MgPagination[K] };
5254
+ "mg-panel": Omit<MgPanel, keyof MgPanelAttributes> & { [K in keyof MgPanel & keyof MgPanelAttributes]?: MgPanel[K] } & { [K in keyof MgPanel & keyof MgPanelAttributes as `attr:${K}`]?: MgPanelAttributes[K] } & { [K in keyof MgPanel & keyof MgPanelAttributes as `prop:${K}`]?: MgPanel[K] };
5255
+ "mg-popover": Omit<MgPopover, keyof MgPopoverAttributes> & { [K in keyof MgPopover & keyof MgPopoverAttributes]?: MgPopover[K] } & { [K in keyof MgPopover & keyof MgPopoverAttributes as `attr:${K}`]?: MgPopoverAttributes[K] } & { [K in keyof MgPopover & keyof MgPopoverAttributes as `prop:${K}`]?: MgPopover[K] };
5256
+ "mg-popover-content": Omit<MgPopoverContent, keyof MgPopoverContentAttributes> & { [K in keyof MgPopoverContent & keyof MgPopoverContentAttributes]?: MgPopoverContent[K] } & { [K in keyof MgPopoverContent & keyof MgPopoverContentAttributes as `attr:${K}`]?: MgPopoverContentAttributes[K] } & { [K in keyof MgPopoverContent & keyof MgPopoverContentAttributes as `prop:${K}`]?: MgPopoverContent[K] };
5257
+ "mg-progress": Omit<MgProgress, keyof MgProgressAttributes> & { [K in keyof MgProgress & keyof MgProgressAttributes]?: MgProgress[K] } & { [K in keyof MgProgress & keyof MgProgressAttributes as `attr:${K}`]?: MgProgressAttributes[K] } & { [K in keyof MgProgress & keyof MgProgressAttributes as `prop:${K}`]?: MgProgress[K] } & OneOf<"label", MgProgress["label"], MgProgressAttributes["label"]>;
4845
5258
  "mg-skip-links": MgSkipLinks;
4846
- "mg-table": MgTable;
4847
- "mg-tabs": MgTabs;
4848
- "mg-tag": MgTag;
4849
- "mg-tooltip": MgTooltip;
4850
- "mg-tooltip-content": MgTooltipContent;
5259
+ "mg-table": Omit<MgTable, keyof MgTableAttributes> & { [K in keyof MgTable & keyof MgTableAttributes]?: MgTable[K] } & { [K in keyof MgTable & keyof MgTableAttributes as `attr:${K}`]?: MgTableAttributes[K] } & { [K in keyof MgTable & keyof MgTableAttributes as `prop:${K}`]?: MgTable[K] };
5260
+ "mg-tabs": Omit<MgTabs, keyof MgTabsAttributes> & { [K in keyof MgTabs & keyof MgTabsAttributes]?: MgTabs[K] } & { [K in keyof MgTabs & keyof MgTabsAttributes as `attr:${K}`]?: MgTabsAttributes[K] } & { [K in keyof MgTabs & keyof MgTabsAttributes as `prop:${K}`]?: MgTabs[K] } & OneOf<"label", MgTabs["label"], MgTabsAttributes["label"]>;
5261
+ "mg-tag": Omit<MgTag, keyof MgTagAttributes> & { [K in keyof MgTag & keyof MgTagAttributes]?: MgTag[K] } & { [K in keyof MgTag & keyof MgTagAttributes as `attr:${K}`]?: MgTagAttributes[K] } & { [K in keyof MgTag & keyof MgTagAttributes as `prop:${K}`]?: MgTag[K] };
5262
+ "mg-tooltip": Omit<MgTooltip, keyof MgTooltipAttributes> & { [K in keyof MgTooltip & keyof MgTooltipAttributes]?: MgTooltip[K] } & { [K in keyof MgTooltip & keyof MgTooltipAttributes as `attr:${K}`]?: MgTooltipAttributes[K] } & { [K in keyof MgTooltip & keyof MgTooltipAttributes as `prop:${K}`]?: MgTooltip[K] } & OneOf<"message", MgTooltip["message"], MgTooltipAttributes["message"]>;
5263
+ "mg-tooltip-content": Omit<MgTooltipContent, keyof MgTooltipContentAttributes> & { [K in keyof MgTooltipContent & keyof MgTooltipContentAttributes]?: MgTooltipContent[K] } & { [K in keyof MgTooltipContent & keyof MgTooltipContentAttributes as `attr:${K}`]?: MgTooltipContentAttributes[K] } & { [K in keyof MgTooltipContent & keyof MgTooltipContentAttributes as `prop:${K}`]?: MgTooltipContent[K] } & OneOf<"message", MgTooltipContent["message"], MgTooltipContentAttributes["message"]>;
4851
5264
  }
4852
5265
  }
4853
5266
  export { LocalJSX as JSX };
4854
5267
  declare module "@stencil/core" {
4855
5268
  export namespace JSX {
4856
5269
  interface IntrinsicElements {
4857
- "mg-action-more": LocalJSX.MgActionMore & JSXBase.HTMLAttributes<HTMLMgActionMoreElement>;
4858
- "mg-alert": LocalJSX.MgAlert & JSXBase.HTMLAttributes<HTMLMgAlertElement>;
4859
- "mg-badge": LocalJSX.MgBadge & JSXBase.HTMLAttributes<HTMLMgBadgeElement>;
4860
- "mg-button": LocalJSX.MgButton & JSXBase.HTMLAttributes<HTMLMgButtonElement>;
4861
- "mg-card": LocalJSX.MgCard & JSXBase.HTMLAttributes<HTMLMgCardElement>;
4862
- "mg-character-left": LocalJSX.MgCharacterLeft & JSXBase.HTMLAttributes<HTMLMgCharacterLeftElement>;
4863
- "mg-details": LocalJSX.MgDetails & JSXBase.HTMLAttributes<HTMLMgDetailsElement>;
4864
- "mg-divider": LocalJSX.MgDivider & JSXBase.HTMLAttributes<HTMLMgDividerElement>;
4865
- "mg-fieldset": LocalJSX.MgFieldset & JSXBase.HTMLAttributes<HTMLMgFieldsetElement>;
4866
- "mg-form": LocalJSX.MgForm & JSXBase.HTMLAttributes<HTMLMgFormElement>;
4867
- "mg-icon": LocalJSX.MgIcon & JSXBase.HTMLAttributes<HTMLMgIconElement>;
4868
- "mg-illustrated-message": LocalJSX.MgIllustratedMessage & JSXBase.HTMLAttributes<HTMLMgIllustratedMessageElement>;
4869
- "mg-input": LocalJSX.MgInput & JSXBase.HTMLAttributes<HTMLMgInputElement>;
4870
- "mg-input-checkbox": LocalJSX.MgInputCheckbox & JSXBase.HTMLAttributes<HTMLMgInputCheckboxElement>;
4871
- /**
4872
- * Internal component use to manage sections instances
4873
- */
4874
- "mg-input-checkbox-paginated": LocalJSX.MgInputCheckboxPaginated & JSXBase.HTMLAttributes<HTMLMgInputCheckboxPaginatedElement>;
4875
- "mg-input-combobox": LocalJSX.MgInputCombobox & JSXBase.HTMLAttributes<HTMLMgInputComboboxElement>;
4876
- "mg-input-date": LocalJSX.MgInputDate & JSXBase.HTMLAttributes<HTMLMgInputDateElement>;
4877
- "mg-input-file": LocalJSX.MgInputFile & JSXBase.HTMLAttributes<HTMLMgInputFileElement>;
4878
- "mg-input-numeric": LocalJSX.MgInputNumeric & JSXBase.HTMLAttributes<HTMLMgInputNumericElement>;
4879
- "mg-input-password": LocalJSX.MgInputPassword & JSXBase.HTMLAttributes<HTMLMgInputPasswordElement>;
4880
- "mg-input-radio": LocalJSX.MgInputRadio & JSXBase.HTMLAttributes<HTMLMgInputRadioElement>;
4881
- "mg-input-rich-text-editor": LocalJSX.MgInputRichTextEditor & JSXBase.HTMLAttributes<HTMLMgInputRichTextEditorElement>;
4882
- "mg-input-select": LocalJSX.MgInputSelect & JSXBase.HTMLAttributes<HTMLMgInputSelectElement>;
4883
- "mg-input-text": LocalJSX.MgInputText & JSXBase.HTMLAttributes<HTMLMgInputTextElement>;
4884
- "mg-input-textarea": LocalJSX.MgInputTextarea & JSXBase.HTMLAttributes<HTMLMgInputTextareaElement>;
4885
- "mg-input-title": LocalJSX.MgInputTitle & JSXBase.HTMLAttributes<HTMLMgInputTitleElement>;
4886
- "mg-input-toggle": LocalJSX.MgInputToggle & JSXBase.HTMLAttributes<HTMLMgInputToggleElement>;
4887
- "mg-item-more": LocalJSX.MgItemMore & JSXBase.HTMLAttributes<HTMLMgItemMoreElement>;
4888
- "mg-loader": LocalJSX.MgLoader & JSXBase.HTMLAttributes<HTMLMgLoaderElement>;
4889
- "mg-menu": LocalJSX.MgMenu & JSXBase.HTMLAttributes<HTMLMgMenuElement>;
4890
- "mg-menu-item": LocalJSX.MgMenuItem & JSXBase.HTMLAttributes<HTMLMgMenuItemElement>;
4891
- "mg-message": LocalJSX.MgMessage & JSXBase.HTMLAttributes<HTMLMgMessageElement>;
4892
- "mg-modal": LocalJSX.MgModal & JSXBase.HTMLAttributes<HTMLMgModalElement>;
4893
- "mg-pagination": LocalJSX.MgPagination & JSXBase.HTMLAttributes<HTMLMgPaginationElement>;
4894
- "mg-panel": LocalJSX.MgPanel & JSXBase.HTMLAttributes<HTMLMgPanelElement>;
4895
- "mg-popover": LocalJSX.MgPopover & JSXBase.HTMLAttributes<HTMLMgPopoverElement>;
4896
- "mg-popover-content": LocalJSX.MgPopoverContent & JSXBase.HTMLAttributes<HTMLMgPopoverContentElement>;
4897
- "mg-progress": LocalJSX.MgProgress & JSXBase.HTMLAttributes<HTMLMgProgressElement>;
4898
- "mg-skip-links": LocalJSX.MgSkipLinks & JSXBase.HTMLAttributes<HTMLMgSkipLinksElement>;
4899
- "mg-table": LocalJSX.MgTable & JSXBase.HTMLAttributes<HTMLMgTableElement>;
4900
- "mg-tabs": LocalJSX.MgTabs & JSXBase.HTMLAttributes<HTMLMgTabsElement>;
4901
- "mg-tag": LocalJSX.MgTag & JSXBase.HTMLAttributes<HTMLMgTagElement>;
4902
- "mg-tooltip": LocalJSX.MgTooltip & JSXBase.HTMLAttributes<HTMLMgTooltipElement>;
4903
- "mg-tooltip-content": LocalJSX.MgTooltipContent & JSXBase.HTMLAttributes<HTMLMgTooltipContentElement>;
5270
+ "mg-action-more": LocalJSX.IntrinsicElements["mg-action-more"] & JSXBase.HTMLAttributes<HTMLMgActionMoreElement>;
5271
+ "mg-alert": LocalJSX.IntrinsicElements["mg-alert"] & JSXBase.HTMLAttributes<HTMLMgAlertElement>;
5272
+ "mg-badge": LocalJSX.IntrinsicElements["mg-badge"] & JSXBase.HTMLAttributes<HTMLMgBadgeElement>;
5273
+ "mg-breadcrumb": LocalJSX.IntrinsicElements["mg-breadcrumb"] & JSXBase.HTMLAttributes<HTMLMgBreadcrumbElement>;
5274
+ "mg-button": LocalJSX.IntrinsicElements["mg-button"] & JSXBase.HTMLAttributes<HTMLMgButtonElement>;
5275
+ "mg-card": LocalJSX.IntrinsicElements["mg-card"] & JSXBase.HTMLAttributes<HTMLMgCardElement>;
5276
+ "mg-character-left": LocalJSX.IntrinsicElements["mg-character-left"] & JSXBase.HTMLAttributes<HTMLMgCharacterLeftElement>;
5277
+ "mg-details": LocalJSX.IntrinsicElements["mg-details"] & JSXBase.HTMLAttributes<HTMLMgDetailsElement>;
5278
+ "mg-divider": LocalJSX.IntrinsicElements["mg-divider"] & JSXBase.HTMLAttributes<HTMLMgDividerElement>;
5279
+ "mg-fieldset": LocalJSX.IntrinsicElements["mg-fieldset"] & JSXBase.HTMLAttributes<HTMLMgFieldsetElement>;
5280
+ "mg-form": LocalJSX.IntrinsicElements["mg-form"] & JSXBase.HTMLAttributes<HTMLMgFormElement>;
5281
+ "mg-icon": LocalJSX.IntrinsicElements["mg-icon"] & JSXBase.HTMLAttributes<HTMLMgIconElement>;
5282
+ "mg-illustrated-message": LocalJSX.IntrinsicElements["mg-illustrated-message"] & JSXBase.HTMLAttributes<HTMLMgIllustratedMessageElement>;
5283
+ "mg-input": LocalJSX.IntrinsicElements["mg-input"] & JSXBase.HTMLAttributes<HTMLMgInputElement>;
5284
+ "mg-input-checkbox": LocalJSX.IntrinsicElements["mg-input-checkbox"] & JSXBase.HTMLAttributes<HTMLMgInputCheckboxElement>;
5285
+ "mg-input-combobox": LocalJSX.IntrinsicElements["mg-input-combobox"] & JSXBase.HTMLAttributes<HTMLMgInputComboboxElement>;
5286
+ "mg-input-date": LocalJSX.IntrinsicElements["mg-input-date"] & JSXBase.HTMLAttributes<HTMLMgInputDateElement>;
5287
+ "mg-input-file": LocalJSX.IntrinsicElements["mg-input-file"] & JSXBase.HTMLAttributes<HTMLMgInputFileElement>;
5288
+ "mg-input-numeric": LocalJSX.IntrinsicElements["mg-input-numeric"] & JSXBase.HTMLAttributes<HTMLMgInputNumericElement>;
5289
+ "mg-input-password": LocalJSX.IntrinsicElements["mg-input-password"] & JSXBase.HTMLAttributes<HTMLMgInputPasswordElement>;
5290
+ "mg-input-radio": LocalJSX.IntrinsicElements["mg-input-radio"] & JSXBase.HTMLAttributes<HTMLMgInputRadioElement>;
5291
+ "mg-input-rich-text-editor": LocalJSX.IntrinsicElements["mg-input-rich-text-editor"] & JSXBase.HTMLAttributes<HTMLMgInputRichTextEditorElement>;
5292
+ "mg-input-select": LocalJSX.IntrinsicElements["mg-input-select"] & JSXBase.HTMLAttributes<HTMLMgInputSelectElement>;
5293
+ "mg-input-text": LocalJSX.IntrinsicElements["mg-input-text"] & JSXBase.HTMLAttributes<HTMLMgInputTextElement>;
5294
+ "mg-input-textarea": LocalJSX.IntrinsicElements["mg-input-textarea"] & JSXBase.HTMLAttributes<HTMLMgInputTextareaElement>;
5295
+ "mg-input-title": LocalJSX.IntrinsicElements["mg-input-title"] & JSXBase.HTMLAttributes<HTMLMgInputTitleElement>;
5296
+ "mg-input-toggle": LocalJSX.IntrinsicElements["mg-input-toggle"] & JSXBase.HTMLAttributes<HTMLMgInputToggleElement>;
5297
+ "mg-item-more": LocalJSX.IntrinsicElements["mg-item-more"] & JSXBase.HTMLAttributes<HTMLMgItemMoreElement>;
5298
+ "mg-loader": LocalJSX.IntrinsicElements["mg-loader"] & JSXBase.HTMLAttributes<HTMLMgLoaderElement>;
5299
+ "mg-menu": LocalJSX.IntrinsicElements["mg-menu"] & JSXBase.HTMLAttributes<HTMLMgMenuElement>;
5300
+ "mg-menu-item": LocalJSX.IntrinsicElements["mg-menu-item"] & JSXBase.HTMLAttributes<HTMLMgMenuItemElement>;
5301
+ "mg-message": LocalJSX.IntrinsicElements["mg-message"] & JSXBase.HTMLAttributes<HTMLMgMessageElement>;
5302
+ "mg-modal": LocalJSX.IntrinsicElements["mg-modal"] & JSXBase.HTMLAttributes<HTMLMgModalElement>;
5303
+ "mg-pagination": LocalJSX.IntrinsicElements["mg-pagination"] & JSXBase.HTMLAttributes<HTMLMgPaginationElement>;
5304
+ "mg-panel": LocalJSX.IntrinsicElements["mg-panel"] & JSXBase.HTMLAttributes<HTMLMgPanelElement>;
5305
+ "mg-popover": LocalJSX.IntrinsicElements["mg-popover"] & JSXBase.HTMLAttributes<HTMLMgPopoverElement>;
5306
+ "mg-popover-content": LocalJSX.IntrinsicElements["mg-popover-content"] & JSXBase.HTMLAttributes<HTMLMgPopoverContentElement>;
5307
+ "mg-progress": LocalJSX.IntrinsicElements["mg-progress"] & JSXBase.HTMLAttributes<HTMLMgProgressElement>;
5308
+ "mg-skip-links": LocalJSX.IntrinsicElements["mg-skip-links"] & JSXBase.HTMLAttributes<HTMLMgSkipLinksElement>;
5309
+ "mg-table": LocalJSX.IntrinsicElements["mg-table"] & JSXBase.HTMLAttributes<HTMLMgTableElement>;
5310
+ "mg-tabs": LocalJSX.IntrinsicElements["mg-tabs"] & JSXBase.HTMLAttributes<HTMLMgTabsElement>;
5311
+ "mg-tag": LocalJSX.IntrinsicElements["mg-tag"] & JSXBase.HTMLAttributes<HTMLMgTagElement>;
5312
+ "mg-tooltip": LocalJSX.IntrinsicElements["mg-tooltip"] & JSXBase.HTMLAttributes<HTMLMgTooltipElement>;
5313
+ "mg-tooltip-content": LocalJSX.IntrinsicElements["mg-tooltip-content"] & JSXBase.HTMLAttributes<HTMLMgTooltipContentElement>;
4904
5314
  }
4905
5315
  }
4906
5316
  }