@synergy-design-system/vue 2.7.2 → 2.8.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (88) hide show
  1. package/dist/components/SynVueAccordion.vue.d.ts +12 -12
  2. package/dist/components/SynVueAlert.vue.d.ts +13 -9
  3. package/dist/components/SynVueBadge.vue.d.ts +4 -4
  4. package/dist/components/SynVueBreadcrumbItem.vue.d.ts +12 -12
  5. package/dist/components/SynVueButton.vue.d.ts +62 -59
  6. package/dist/components/SynVueCard.vue.d.ts +8 -8
  7. package/dist/components/SynVueCheckbox.vue.d.ts +40 -35
  8. package/dist/components/SynVueCombobox.vue.d.ts +232 -0
  9. package/dist/components/SynVueDetails.vue.d.ts +23 -19
  10. package/dist/components/SynVueDialog.vue.d.ts +7 -1
  11. package/dist/components/SynVueDivider.vue.d.ts +4 -4
  12. package/dist/components/SynVueDrawer.vue.d.ts +11 -5
  13. package/dist/components/SynVueDropdown.vue.d.ts +21 -17
  14. package/dist/components/SynVueFile.vue.d.ts +40 -35
  15. package/dist/components/SynVueHeader.vue.d.ts +10 -7
  16. package/dist/components/SynVueIcon.vue.d.ts +13 -11
  17. package/dist/components/SynVueIconButton.vue.d.ts +37 -35
  18. package/dist/components/SynVueInput.vue.d.ts +115 -109
  19. package/dist/components/SynVueMenu.vue.d.ts +2 -1
  20. package/dist/components/SynVueMenuItem.vue.d.ts +24 -24
  21. package/dist/components/SynVueNavItem.vue.d.ts +13 -9
  22. package/dist/components/SynVueOptgroup.vue.d.ts +10 -10
  23. package/dist/components/SynVueOption.vue.d.ts +4 -4
  24. package/dist/components/SynVuePopup.vue.d.ts +34 -33
  25. package/dist/components/SynVueProgressBar.vue.d.ts +12 -12
  26. package/dist/components/SynVueProgressRing.vue.d.ts +8 -8
  27. package/dist/components/SynVueRadio.vue.d.ts +13 -11
  28. package/dist/components/SynVueRadioButton.vue.d.ts +17 -15
  29. package/dist/components/SynVueRadioGroup.vue.d.ts +32 -29
  30. package/dist/components/SynVueRange.vue.d.ts +57 -51
  31. package/dist/components/SynVueRangeTick.vue.d.ts +4 -4
  32. package/dist/components/SynVueSelect.vue.d.ts +55 -45
  33. package/dist/components/SynVueSideNav.vue.d.ts +5 -1
  34. package/dist/components/SynVueSwitch.vue.d.ts +40 -35
  35. package/dist/components/SynVueTab.vue.d.ts +20 -19
  36. package/dist/components/SynVueTabGroup.vue.d.ts +21 -19
  37. package/dist/components/SynVueTabPanel.vue.d.ts +8 -8
  38. package/dist/components/SynVueTag.vue.d.ts +10 -9
  39. package/dist/components/SynVueTextarea.vue.d.ts +86 -81
  40. package/dist/components/SynVueTooltip.vue.d.ts +29 -25
  41. package/dist/index.d.ts +1 -0
  42. package/package.json +3 -3
  43. package/src/components/SynVueAccordion.vue +16 -21
  44. package/src/components/SynVueAlert.vue +29 -29
  45. package/src/components/SynVueBadge.vue +10 -15
  46. package/src/components/SynVueBreadcrumb.vue +8 -13
  47. package/src/components/SynVueBreadcrumbItem.vue +16 -21
  48. package/src/components/SynVueButton.vue +66 -67
  49. package/src/components/SynVueButtonGroup.vue +8 -13
  50. package/src/components/SynVueCard.vue +12 -17
  51. package/src/components/SynVueCheckbox.vue +64 -53
  52. package/src/components/SynVueCombobox.vue +295 -0
  53. package/src/components/SynVueDetails.vue +35 -35
  54. package/src/components/SynVueDialog.vue +33 -31
  55. package/src/components/SynVueDivider.vue +9 -14
  56. package/src/components/SynVueDrawer.vue +37 -35
  57. package/src/components/SynVueDropdown.vue +37 -37
  58. package/src/components/SynVueFile.vue +69 -58
  59. package/src/components/SynVueHeader.vue +23 -24
  60. package/src/components/SynVueIcon.vue +26 -25
  61. package/src/components/SynVueIconButton.vue +42 -41
  62. package/src/components/SynVueInput.vue +123 -111
  63. package/src/components/SynVueMenu.vue +6 -9
  64. package/src/components/SynVueMenuItem.vue +24 -29
  65. package/src/components/SynVueMenuLabel.vue +2 -6
  66. package/src/components/SynVueNavItem.vue +32 -32
  67. package/src/components/SynVueOptgroup.vue +14 -19
  68. package/src/components/SynVueOption.vue +11 -16
  69. package/src/components/SynVuePopup.vue +51 -52
  70. package/src/components/SynVuePrioNav.vue +2 -6
  71. package/src/components/SynVueProgressBar.vue +16 -21
  72. package/src/components/SynVueProgressRing.vue +13 -18
  73. package/src/components/SynVueRadio.vue +23 -23
  74. package/src/components/SynVueRadioButton.vue +26 -26
  75. package/src/components/SynVueRadioGroup.vue +52 -43
  76. package/src/components/SynVueRange.vue +77 -65
  77. package/src/components/SynVueRangeTick.vue +10 -15
  78. package/src/components/SynVueSelect.vue +90 -74
  79. package/src/components/SynVueSideNav.vue +24 -24
  80. package/src/components/SynVueSpinner.vue +1 -5
  81. package/src/components/SynVueSwitch.vue +63 -52
  82. package/src/components/SynVueTab.vue +25 -26
  83. package/src/components/SynVueTabGroup.vue +31 -31
  84. package/src/components/SynVueTabPanel.vue +13 -18
  85. package/src/components/SynVueTag.vue +18 -19
  86. package/src/components/SynVueTextarea.vue +99 -88
  87. package/src/components/SynVueTooltip.vue +41 -41
  88. package/src/index.js +1 -0
@@ -1,5 +1,9 @@
1
1
  import '@synergy-design-system/components/components/nav-item/nav-item.js';
2
- import type { SynBlurEvent, SynFocusEvent, SynHideEvent, SynNavItem, SynShowEvent } from '@synergy-design-system/components';
2
+ import type { SynShowEvent } from '@synergy-design-system/components';
3
+ import type { SynHideEvent } from '@synergy-design-system/components';
4
+ import type { SynBlurEvent } from '@synergy-design-system/components';
5
+ import type { SynFocusEvent } from '@synergy-design-system/components';
6
+ import type { SynNavItem } from '@synergy-design-system/components';
3
7
  export type { SynShowEvent } from '@synergy-design-system/components';
4
8
  export type { SynHideEvent } from '@synergy-design-system/components';
5
9
  export type { SynBlurEvent } from '@synergy-design-system/components';
@@ -15,12 +19,12 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
15
19
  href?: SynNavItem["href"];
16
20
  current?: SynNavItem["current"];
17
21
  /**
18
- * Disables the navigation item.
19
- */
22
+ * Disables the navigation item.
23
+ */
20
24
  disabled?: SynNavItem["disabled"];
21
25
  /**
22
- * The navigation item's orientation.
23
- */
26
+ * The navigation item's orientation.
27
+ */
24
28
  horizontal?: SynNavItem["horizontal"];
25
29
  /**
26
30
  * Appends a chevron to the right side of a navigation item.
@@ -55,12 +59,12 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
55
59
  href?: SynNavItem["href"];
56
60
  current?: SynNavItem["current"];
57
61
  /**
58
- * Disables the navigation item.
59
- */
62
+ * Disables the navigation item.
63
+ */
60
64
  disabled?: SynNavItem["disabled"];
61
65
  /**
62
- * The navigation item's orientation.
63
- */
66
+ * The navigation item's orientation.
67
+ */
64
68
  horizontal?: SynNavItem["horizontal"];
65
69
  /**
66
70
  * Appends a chevron to the right side of a navigation item.
@@ -5,25 +5,25 @@ declare function __VLS_template(): {
5
5
  };
6
6
  declare const __VLS_component: import("vue").DefineComponent<__VLS_TypePropsToOption<{
7
7
  /**
8
- * Disables all options in the optgroup.
9
- */
8
+ * Disables all options in the optgroup.
9
+ */
10
10
  disabled?: SynOptgroup["disabled"];
11
11
  /**
12
- * The optgroups label.
13
- * If you need to display HTML, use the `label` slot instead.
14
- */
12
+ * The optgroups label.
13
+ * If you need to display HTML, use the `label` slot instead.
14
+ */
15
15
  label?: SynOptgroup["label"];
16
16
  }>, {
17
17
  nativeElement: import("vue").Ref<SynOptgroup | undefined>;
18
18
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<{
19
19
  /**
20
- * Disables all options in the optgroup.
21
- */
20
+ * Disables all options in the optgroup.
21
+ */
22
22
  disabled?: SynOptgroup["disabled"];
23
23
  /**
24
- * The optgroups label.
25
- * If you need to display HTML, use the `label` slot instead.
26
- */
24
+ * The optgroups label.
25
+ * If you need to display HTML, use the `label` slot instead.
26
+ */
27
27
  label?: SynOptgroup["label"];
28
28
  }>>>, {}, {}>;
29
29
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
@@ -14,8 +14,8 @@ declare const __VLS_component: import("vue").DefineComponent<__VLS_TypePropsToOp
14
14
  */
15
15
  value?: SynOption["value"];
16
16
  /**
17
- * Draws the option in a disabled state, preventing selection.
18
- */
17
+ * Draws the option in a disabled state, preventing selection.
18
+ */
19
19
  disabled?: SynOption["disabled"];
20
20
  }>, {
21
21
  nativeElement: import("vue").Ref<SynOption | undefined>;
@@ -30,8 +30,8 @@ declare const __VLS_component: import("vue").DefineComponent<__VLS_TypePropsToOp
30
30
  */
31
31
  value?: SynOption["value"];
32
32
  /**
33
- * Draws the option in a disabled state, preventing selection.
34
- */
33
+ * Draws the option in a disabled state, preventing selection.
34
+ */
35
35
  disabled?: SynOption["disabled"];
36
36
  }>>>, {}, {}>;
37
37
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
@@ -1,5 +1,6 @@
1
1
  import '@synergy-design-system/components/components/popup/popup.js';
2
- import type { SynPopup, SynRepositionEvent } from '@synergy-design-system/components';
2
+ import type { SynRepositionEvent } from '@synergy-design-system/components';
3
+ import type { SynPopup } from '@synergy-design-system/components';
3
4
  export type { SynRepositionEvent } from '@synergy-design-system/components';
4
5
  declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_TypePropsToOption<{
5
6
  /**
@@ -29,12 +30,12 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
29
30
  */
30
31
  strategy?: SynPopup["strategy"];
31
32
  /**
32
- * The distance in pixels from which to offset the panel away from its anchor.
33
- */
33
+ * The distance in pixels from which to offset the panel away from its anchor.
34
+ */
34
35
  distance?: SynPopup["distance"];
35
36
  /**
36
- * The distance in pixels from which to offset the panel along its anchor.
37
- */
37
+ * The distance in pixels from which to offset the panel along its anchor.
38
+ */
38
39
  skidding?: SynPopup["skidding"];
39
40
  /**
40
41
  * Attaches an arrow to the popup.
@@ -88,12 +89,12 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
88
89
  */
89
90
  flipBoundary?: SynPopup["flipBoundary"];
90
91
  /**
91
- * The amount of padding, in pixels, to exceed before the flip behavior will occur.
92
- */
92
+ * The amount of padding, in pixels, to exceed before the flip behavior will occur.
93
+ */
93
94
  flipPadding?: SynPopup["flipPadding"];
94
95
  /**
95
- * Moves the popup along the axis to keep it in view when clipped.
96
- */
96
+ * Moves the popup along the axis to keep it in view when clipped.
97
+ */
97
98
  shift?: SynPopup["shift"];
98
99
  /**
99
100
  * The shift boundary describes clipping element(s) that overflow will be checked relative to when shifting.
@@ -104,16 +105,16 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
104
105
  */
105
106
  shiftBoundary?: SynPopup["shiftBoundary"];
106
107
  /**
107
- * The amount of padding, in pixels, to exceed before the shift behavior will occur.
108
- */
108
+ * The amount of padding, in pixels, to exceed before the shift behavior will occur.
109
+ */
109
110
  shiftPadding?: SynPopup["shiftPadding"];
110
111
  /**
111
- * When set, this will cause the popup to automatically resize itself to prevent it from overflowing.
112
- */
112
+ * When set, this will cause the popup to automatically resize itself to prevent it from overflowing.
113
+ */
113
114
  autoSize?: SynPopup["autoSize"];
114
115
  /**
115
- * Syncs the popup's width or height to that of the anchor element.
116
- */
116
+ * Syncs the popup's width or height to that of the anchor element.
117
+ */
117
118
  sync?: SynPopup["sync"];
118
119
  /**
119
120
  * The auto-size boundary describes clipping element(s) that overflow will be checked relative to when resizing.
@@ -124,8 +125,8 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
124
125
  */
125
126
  autoSizeBoundary?: SynPopup["autoSizeBoundary"];
126
127
  /**
127
- * The amount of padding, in pixels, to exceed before the auto-size behavior will occur.
128
- */
128
+ * The amount of padding, in pixels, to exceed before the auto-size behavior will occur.
129
+ */
129
130
  autoSizePadding?: SynPopup["autoSizePadding"];
130
131
  /**
131
132
  * When a gap exists between the anchor and the popup element, this option will add a "hover bridge" that fills the
@@ -168,12 +169,12 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
168
169
  */
169
170
  strategy?: SynPopup["strategy"];
170
171
  /**
171
- * The distance in pixels from which to offset the panel away from its anchor.
172
- */
172
+ * The distance in pixels from which to offset the panel away from its anchor.
173
+ */
173
174
  distance?: SynPopup["distance"];
174
175
  /**
175
- * The distance in pixels from which to offset the panel along its anchor.
176
- */
176
+ * The distance in pixels from which to offset the panel along its anchor.
177
+ */
177
178
  skidding?: SynPopup["skidding"];
178
179
  /**
179
180
  * Attaches an arrow to the popup.
@@ -227,12 +228,12 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
227
228
  */
228
229
  flipBoundary?: SynPopup["flipBoundary"];
229
230
  /**
230
- * The amount of padding, in pixels, to exceed before the flip behavior will occur.
231
- */
231
+ * The amount of padding, in pixels, to exceed before the flip behavior will occur.
232
+ */
232
233
  flipPadding?: SynPopup["flipPadding"];
233
234
  /**
234
- * Moves the popup along the axis to keep it in view when clipped.
235
- */
235
+ * Moves the popup along the axis to keep it in view when clipped.
236
+ */
236
237
  shift?: SynPopup["shift"];
237
238
  /**
238
239
  * The shift boundary describes clipping element(s) that overflow will be checked relative to when shifting.
@@ -243,16 +244,16 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
243
244
  */
244
245
  shiftBoundary?: SynPopup["shiftBoundary"];
245
246
  /**
246
- * The amount of padding, in pixels, to exceed before the shift behavior will occur.
247
- */
247
+ * The amount of padding, in pixels, to exceed before the shift behavior will occur.
248
+ */
248
249
  shiftPadding?: SynPopup["shiftPadding"];
249
250
  /**
250
- * When set, this will cause the popup to automatically resize itself to prevent it from overflowing.
251
- */
251
+ * When set, this will cause the popup to automatically resize itself to prevent it from overflowing.
252
+ */
252
253
  autoSize?: SynPopup["autoSize"];
253
254
  /**
254
- * Syncs the popup's width or height to that of the anchor element.
255
- */
255
+ * Syncs the popup's width or height to that of the anchor element.
256
+ */
256
257
  sync?: SynPopup["sync"];
257
258
  /**
258
259
  * The auto-size boundary describes clipping element(s) that overflow will be checked relative to when resizing.
@@ -263,8 +264,8 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
263
264
  */
264
265
  autoSizeBoundary?: SynPopup["autoSizeBoundary"];
265
266
  /**
266
- * The amount of padding, in pixels, to exceed before the auto-size behavior will occur.
267
- */
267
+ * The amount of padding, in pixels, to exceed before the auto-size behavior will occur.
268
+ */
268
269
  autoSizePadding?: SynPopup["autoSizePadding"];
269
270
  /**
270
271
  * When a gap exists between the anchor and the popup element, this option will add a "hover bridge" that fills the
@@ -5,31 +5,31 @@ declare function __VLS_template(): {
5
5
  };
6
6
  declare const __VLS_component: import("vue").DefineComponent<__VLS_TypePropsToOption<{
7
7
  /**
8
- * The current progress as a percentage, 0 to 100.
9
- */
8
+ * The current progress as a percentage, 0 to 100.
9
+ */
10
10
  value?: SynProgressBar["value"];
11
11
  /**
12
- * When true, percentage is ignored, the label is hidden, and the progress bar is drawn in an indeterminate state.
13
- */
12
+ * When true, percentage is ignored, the label is hidden, and the progress bar is drawn in an indeterminate state.
13
+ */
14
14
  indeterminate?: SynProgressBar["indeterminate"];
15
15
  /**
16
- * A custom label for assistive devices.
17
- */
16
+ * A custom label for assistive devices.
17
+ */
18
18
  label?: SynProgressBar["label"];
19
19
  }>, {
20
20
  nativeElement: import("vue").Ref<SynProgressBar | undefined>;
21
21
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<{
22
22
  /**
23
- * The current progress as a percentage, 0 to 100.
24
- */
23
+ * The current progress as a percentage, 0 to 100.
24
+ */
25
25
  value?: SynProgressBar["value"];
26
26
  /**
27
- * When true, percentage is ignored, the label is hidden, and the progress bar is drawn in an indeterminate state.
28
- */
27
+ * When true, percentage is ignored, the label is hidden, and the progress bar is drawn in an indeterminate state.
28
+ */
29
29
  indeterminate?: SynProgressBar["indeterminate"];
30
30
  /**
31
- * A custom label for assistive devices.
32
- */
31
+ * A custom label for assistive devices.
32
+ */
33
33
  label?: SynProgressBar["label"];
34
34
  }>>>, {}, {}>;
35
35
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
@@ -5,23 +5,23 @@ declare function __VLS_template(): {
5
5
  };
6
6
  declare const __VLS_component: import("vue").DefineComponent<__VLS_TypePropsToOption<{
7
7
  /**
8
- * The current progress as a percentage, 0 to 100.
9
- */
8
+ * The current progress as a percentage, 0 to 100.
9
+ */
10
10
  value?: SynProgressRing["value"];
11
11
  /**
12
- * A custom label for assistive devices.
13
- */
12
+ * A custom label for assistive devices.
13
+ */
14
14
  label?: SynProgressRing["label"];
15
15
  }>, {
16
16
  nativeElement: import("vue").Ref<SynProgressRing | undefined>;
17
17
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<{
18
18
  /**
19
- * The current progress as a percentage, 0 to 100.
20
- */
19
+ * The current progress as a percentage, 0 to 100.
20
+ */
21
21
  value?: SynProgressRing["value"];
22
22
  /**
23
- * A custom label for assistive devices.
24
- */
23
+ * A custom label for assistive devices.
24
+ */
25
25
  label?: SynProgressRing["label"];
26
26
  }>>>, {}, {}>;
27
27
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
@@ -1,12 +1,14 @@
1
1
  import '@synergy-design-system/components/components/radio/radio.js';
2
- import type { SynBlurEvent, SynFocusEvent, SynRadio } from '@synergy-design-system/components';
2
+ import type { SynBlurEvent } from '@synergy-design-system/components';
3
+ import type { SynFocusEvent } from '@synergy-design-system/components';
4
+ import type { SynRadio } from '@synergy-design-system/components';
3
5
  export type { SynBlurEvent } from '@synergy-design-system/components';
4
6
  export type { SynFocusEvent } from '@synergy-design-system/components';
5
7
  declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_TypePropsToOption<{
6
8
  /**
7
- * The radio's value.
8
- * When selected, the radio group will receive this value.
9
- */
9
+ * The radio's value.
10
+ * When selected, the radio group will receive this value.
11
+ */
10
12
  value?: SynRadio["value"];
11
13
  /**
12
14
  * The radio's size.
@@ -15,8 +17,8 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
15
17
  */
16
18
  size?: SynRadio["size"];
17
19
  /**
18
- * Disables the radio.
19
- */
20
+ * Disables the radio.
21
+ */
20
22
  disabled?: SynRadio["disabled"];
21
23
  }>, {
22
24
  nativeElement: import("vue").Ref<SynRadio | undefined>;
@@ -25,9 +27,9 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
25
27
  "syn-focus": (e: SynFocusEvent) => void;
26
28
  }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<{
27
29
  /**
28
- * The radio's value.
29
- * When selected, the radio group will receive this value.
30
- */
30
+ * The radio's value.
31
+ * When selected, the radio group will receive this value.
32
+ */
31
33
  value?: SynRadio["value"];
32
34
  /**
33
35
  * The radio's size.
@@ -36,8 +38,8 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
36
38
  */
37
39
  size?: SynRadio["size"];
38
40
  /**
39
- * Disables the radio.
40
- */
41
+ * Disables the radio.
42
+ */
41
43
  disabled?: SynRadio["disabled"];
42
44
  }>>> & {
43
45
  "onSyn-blur"?: ((e: SynBlurEvent) => any) | undefined;
@@ -1,16 +1,18 @@
1
1
  import '@synergy-design-system/components/components/radio-button/radio-button.js';
2
- import type { SynBlurEvent, SynFocusEvent, SynRadioButton } from '@synergy-design-system/components';
2
+ import type { SynBlurEvent } from '@synergy-design-system/components';
3
+ import type { SynFocusEvent } from '@synergy-design-system/components';
4
+ import type { SynRadioButton } from '@synergy-design-system/components';
3
5
  export type { SynBlurEvent } from '@synergy-design-system/components';
4
6
  export type { SynFocusEvent } from '@synergy-design-system/components';
5
7
  declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_TypePropsToOption<{
6
8
  /**
7
- * The radio's value.
8
- * When selected, the radio group will receive this value.
9
- */
9
+ * The radio's value.
10
+ * When selected, the radio group will receive this value.
11
+ */
10
12
  value?: SynRadioButton["value"];
11
13
  /**
12
- * Disables the radio button.
13
- */
14
+ * Disables the radio button.
15
+ */
14
16
  disabled?: SynRadioButton["disabled"];
15
17
  /**
16
18
  * The radio button's size.
@@ -19,8 +21,8 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
19
21
  */
20
22
  size?: SynRadioButton["size"];
21
23
  /**
22
- * Draws a pill-style radio button with rounded edges.
23
- */
24
+ * Draws a pill-style radio button with rounded edges.
25
+ */
24
26
  pill?: SynRadioButton["pill"];
25
27
  }>, {
26
28
  nativeElement: import("vue").Ref<SynRadioButton | undefined>;
@@ -29,13 +31,13 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
29
31
  "syn-focus": (e: SynFocusEvent) => void;
30
32
  }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<{
31
33
  /**
32
- * The radio's value.
33
- * When selected, the radio group will receive this value.
34
- */
34
+ * The radio's value.
35
+ * When selected, the radio group will receive this value.
36
+ */
35
37
  value?: SynRadioButton["value"];
36
38
  /**
37
- * Disables the radio button.
38
- */
39
+ * Disables the radio button.
40
+ */
39
41
  disabled?: SynRadioButton["disabled"];
40
42
  /**
41
43
  * The radio button's size.
@@ -44,8 +46,8 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
44
46
  */
45
47
  size?: SynRadioButton["size"];
46
48
  /**
47
- * Draws a pill-style radio button with rounded edges.
48
- */
49
+ * Draws a pill-style radio button with rounded edges.
50
+ */
49
51
  pill?: SynRadioButton["pill"];
50
52
  }>>> & {
51
53
  "onSyn-blur"?: ((e: SynBlurEvent) => any) | undefined;
@@ -1,5 +1,8 @@
1
1
  import '@synergy-design-system/components/components/radio-group/radio-group.js';
2
- import type { SynChangeEvent, SynInputEvent, SynInvalidEvent, SynRadioGroup } from '@synergy-design-system/components';
2
+ import type { SynChangeEvent } from '@synergy-design-system/components';
3
+ import type { SynInputEvent } from '@synergy-design-system/components';
4
+ import type { SynInvalidEvent } from '@synergy-design-system/components';
5
+ import type { SynRadioGroup } from '@synergy-design-system/components';
3
6
  export type { SynChangeEvent } from '@synergy-design-system/components';
4
7
  export type { SynInputEvent } from '@synergy-design-system/components';
5
8
  export type { SynInvalidEvent } from '@synergy-design-system/components';
@@ -12,22 +15,22 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
12
15
  */
13
16
  label?: SynRadioGroup["label"];
14
17
  /**
15
- * The radio groups's help text.
16
- * If you need to display HTML, use the `help-text` slot instead.
17
- */
18
+ * The radio groups's help text.
19
+ * If you need to display HTML, use the `help-text` slot instead.
20
+ */
18
21
  helpText?: SynRadioGroup["helpText"];
19
22
  /**
20
- * The name of the radio group, submitted as a name/value pair with form data.
21
- */
23
+ * The name of the radio group, submitted as a name/value pair with form data.
24
+ */
22
25
  name?: SynRadioGroup["name"];
23
26
  /**
24
- * The current value of the radio group, submitted as a name/value pair with form data.
25
- */
27
+ * The current value of the radio group, submitted as a name/value pair with form data.
28
+ */
26
29
  value?: SynRadioGroup["value"];
27
30
  /**
28
- * The radio group's size.
29
- * This size will be applied to all child radios and radio buttons.
30
- */
31
+ * The radio group's size.
32
+ * This size will be applied to all child radios and radio buttons.
33
+ */
31
34
  size?: SynRadioGroup["size"];
32
35
  /**
33
36
  * By default, form controls are associated with the nearest containing `<form>` element.
@@ -38,12 +41,12 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
38
41
  */
39
42
  form?: SynRadioGroup["form"];
40
43
  /**
41
- * Ensures a child radio is checked before allowing the containing form to submit.
42
- */
44
+ * Ensures a child radio is checked before allowing the containing form to submit.
45
+ */
43
46
  required?: SynRadioGroup["required"];
44
47
  /**
45
- * Support for two way data binding
46
- */
48
+ * Support for two way data binding
49
+ */
47
50
  modelValue?: SynRadioGroup["value"];
48
51
  }>, {
49
52
  nativeElement: import("vue").Ref<SynRadioGroup | undefined>;
@@ -61,22 +64,22 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
61
64
  */
62
65
  label?: SynRadioGroup["label"];
63
66
  /**
64
- * The radio groups's help text.
65
- * If you need to display HTML, use the `help-text` slot instead.
66
- */
67
+ * The radio groups's help text.
68
+ * If you need to display HTML, use the `help-text` slot instead.
69
+ */
67
70
  helpText?: SynRadioGroup["helpText"];
68
71
  /**
69
- * The name of the radio group, submitted as a name/value pair with form data.
70
- */
72
+ * The name of the radio group, submitted as a name/value pair with form data.
73
+ */
71
74
  name?: SynRadioGroup["name"];
72
75
  /**
73
- * The current value of the radio group, submitted as a name/value pair with form data.
74
- */
76
+ * The current value of the radio group, submitted as a name/value pair with form data.
77
+ */
75
78
  value?: SynRadioGroup["value"];
76
79
  /**
77
- * The radio group's size.
78
- * This size will be applied to all child radios and radio buttons.
79
- */
80
+ * The radio group's size.
81
+ * This size will be applied to all child radios and radio buttons.
82
+ */
80
83
  size?: SynRadioGroup["size"];
81
84
  /**
82
85
  * By default, form controls are associated with the nearest containing `<form>` element.
@@ -87,12 +90,12 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
87
90
  */
88
91
  form?: SynRadioGroup["form"];
89
92
  /**
90
- * Ensures a child radio is checked before allowing the containing form to submit.
91
- */
93
+ * Ensures a child radio is checked before allowing the containing form to submit.
94
+ */
92
95
  required?: SynRadioGroup["required"];
93
96
  /**
94
- * Support for two way data binding
95
- */
97
+ * Support for two way data binding
98
+ */
96
99
  modelValue?: SynRadioGroup["value"];
97
100
  }>>> & {
98
101
  "onSyn-invalid"?: ((e: SynInvalidEvent) => any) | undefined;