@synergy-design-system/vue 2.7.1 → 2.7.3

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 (84) 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/SynVueDetails.vue.d.ts +23 -19
  9. package/dist/components/SynVueDialog.vue.d.ts +7 -1
  10. package/dist/components/SynVueDivider.vue.d.ts +4 -4
  11. package/dist/components/SynVueDrawer.vue.d.ts +11 -5
  12. package/dist/components/SynVueDropdown.vue.d.ts +21 -17
  13. package/dist/components/SynVueFile.vue.d.ts +40 -35
  14. package/dist/components/SynVueHeader.vue.d.ts +10 -7
  15. package/dist/components/SynVueIcon.vue.d.ts +13 -11
  16. package/dist/components/SynVueIconButton.vue.d.ts +37 -35
  17. package/dist/components/SynVueInput.vue.d.ts +115 -109
  18. package/dist/components/SynVueMenu.vue.d.ts +2 -1
  19. package/dist/components/SynVueMenuItem.vue.d.ts +24 -24
  20. package/dist/components/SynVueNavItem.vue.d.ts +13 -9
  21. package/dist/components/SynVueOptgroup.vue.d.ts +10 -10
  22. package/dist/components/SynVueOption.vue.d.ts +4 -4
  23. package/dist/components/SynVuePopup.vue.d.ts +34 -33
  24. package/dist/components/SynVueProgressBar.vue.d.ts +12 -12
  25. package/dist/components/SynVueProgressRing.vue.d.ts +8 -8
  26. package/dist/components/SynVueRadio.vue.d.ts +13 -11
  27. package/dist/components/SynVueRadioButton.vue.d.ts +17 -15
  28. package/dist/components/SynVueRadioGroup.vue.d.ts +32 -29
  29. package/dist/components/SynVueRange.vue.d.ts +57 -51
  30. package/dist/components/SynVueRangeTick.vue.d.ts +4 -4
  31. package/dist/components/SynVueSelect.vue.d.ts +55 -45
  32. package/dist/components/SynVueSideNav.vue.d.ts +5 -1
  33. package/dist/components/SynVueSwitch.vue.d.ts +40 -35
  34. package/dist/components/SynVueTab.vue.d.ts +20 -19
  35. package/dist/components/SynVueTabGroup.vue.d.ts +21 -19
  36. package/dist/components/SynVueTabPanel.vue.d.ts +8 -8
  37. package/dist/components/SynVueTag.vue.d.ts +10 -9
  38. package/dist/components/SynVueTextarea.vue.d.ts +86 -81
  39. package/dist/components/SynVueTooltip.vue.d.ts +29 -25
  40. package/package.json +2 -2
  41. package/src/components/SynVueAccordion.vue +16 -21
  42. package/src/components/SynVueAlert.vue +29 -29
  43. package/src/components/SynVueBadge.vue +10 -15
  44. package/src/components/SynVueBreadcrumb.vue +8 -13
  45. package/src/components/SynVueBreadcrumbItem.vue +16 -21
  46. package/src/components/SynVueButton.vue +66 -67
  47. package/src/components/SynVueButtonGroup.vue +8 -13
  48. package/src/components/SynVueCard.vue +12 -17
  49. package/src/components/SynVueCheckbox.vue +64 -53
  50. package/src/components/SynVueDetails.vue +35 -35
  51. package/src/components/SynVueDialog.vue +33 -31
  52. package/src/components/SynVueDivider.vue +9 -14
  53. package/src/components/SynVueDrawer.vue +37 -35
  54. package/src/components/SynVueDropdown.vue +37 -37
  55. package/src/components/SynVueFile.vue +69 -58
  56. package/src/components/SynVueHeader.vue +23 -24
  57. package/src/components/SynVueIcon.vue +26 -25
  58. package/src/components/SynVueIconButton.vue +42 -41
  59. package/src/components/SynVueInput.vue +123 -111
  60. package/src/components/SynVueMenu.vue +6 -9
  61. package/src/components/SynVueMenuItem.vue +24 -29
  62. package/src/components/SynVueMenuLabel.vue +2 -6
  63. package/src/components/SynVueNavItem.vue +32 -32
  64. package/src/components/SynVueOptgroup.vue +14 -19
  65. package/src/components/SynVueOption.vue +11 -16
  66. package/src/components/SynVuePopup.vue +51 -52
  67. package/src/components/SynVuePrioNav.vue +2 -6
  68. package/src/components/SynVueProgressBar.vue +16 -21
  69. package/src/components/SynVueProgressRing.vue +13 -18
  70. package/src/components/SynVueRadio.vue +23 -23
  71. package/src/components/SynVueRadioButton.vue +26 -26
  72. package/src/components/SynVueRadioGroup.vue +52 -43
  73. package/src/components/SynVueRange.vue +77 -65
  74. package/src/components/SynVueRangeTick.vue +10 -15
  75. package/src/components/SynVueSelect.vue +90 -74
  76. package/src/components/SynVueSideNav.vue +24 -24
  77. package/src/components/SynVueSpinner.vue +1 -5
  78. package/src/components/SynVueSwitch.vue +63 -52
  79. package/src/components/SynVueTab.vue +25 -26
  80. package/src/components/SynVueTabGroup.vue +31 -31
  81. package/src/components/SynVueTabPanel.vue +13 -18
  82. package/src/components/SynVueTag.vue +18 -19
  83. package/src/components/SynVueTextarea.vue +99 -88
  84. package/src/components/SynVueTooltip.vue +41 -41
@@ -5,31 +5,31 @@ declare function __VLS_template(): {
5
5
  };
6
6
  declare const __VLS_component: import("vue").DefineComponent<__VLS_TypePropsToOption<{
7
7
  /**
8
- * Indicates whether or not multiple `<syn-detail>` elements can be open at the same time.
9
- */
8
+ * Indicates whether or not multiple `<syn-detail>` elements can be open at the same time.
9
+ */
10
10
  closeOthers?: SynAccordion["closeOthers"];
11
11
  /**
12
- * Draws the accordion and the slotted `<syn-details>` as contained elements.
13
- */
12
+ * Draws the accordion and the slotted `<syn-details>` as contained elements.
13
+ */
14
14
  contained?: SynAccordion["contained"];
15
15
  /**
16
- * The size that should be applied to all slotted `<syn-details>` elements
17
- */
16
+ * The size that should be applied to all slotted `<syn-details>` elements
17
+ */
18
18
  size?: SynAccordion["size"];
19
19
  }>, {
20
20
  nativeElement: import("vue").Ref<SynAccordion | undefined>;
21
21
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<{
22
22
  /**
23
- * Indicates whether or not multiple `<syn-detail>` elements can be open at the same time.
24
- */
23
+ * Indicates whether or not multiple `<syn-detail>` elements can be open at the same time.
24
+ */
25
25
  closeOthers?: SynAccordion["closeOthers"];
26
26
  /**
27
- * Draws the accordion and the slotted `<syn-details>` as contained elements.
28
- */
27
+ * Draws the accordion and the slotted `<syn-details>` as contained elements.
28
+ */
29
29
  contained?: SynAccordion["contained"];
30
30
  /**
31
- * The size that should be applied to all slotted `<syn-details>` elements
32
- */
31
+ * The size that should be applied to all slotted `<syn-details>` elements
32
+ */
33
33
  size?: SynAccordion["size"];
34
34
  }>>>, {}, {}>;
35
35
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
@@ -1,5 +1,9 @@
1
1
  import '@synergy-design-system/components/components/alert/alert.js';
2
- import type { SynAfterHideEvent, SynAfterShowEvent, SynAlert, SynHideEvent, SynShowEvent } from '@synergy-design-system/components';
2
+ import type { SynShowEvent } from '@synergy-design-system/components';
3
+ import type { SynAfterShowEvent } from '@synergy-design-system/components';
4
+ import type { SynHideEvent } from '@synergy-design-system/components';
5
+ import type { SynAfterHideEvent } from '@synergy-design-system/components';
6
+ import type { SynAlert } from '@synergy-design-system/components';
3
7
  export type { SynShowEvent } from '@synergy-design-system/components';
4
8
  export type { SynAfterShowEvent } from '@synergy-design-system/components';
5
9
  export type { SynHideEvent } from '@synergy-design-system/components';
@@ -12,12 +16,12 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
12
16
  */
13
17
  open?: SynAlert["open"];
14
18
  /**
15
- * Enables a close button that allows the user to dismiss the alert.
16
- */
19
+ * Enables a close button that allows the user to dismiss the alert.
20
+ */
17
21
  closable?: SynAlert["closable"];
18
22
  /**
19
- * The alert's theme variant.
20
- */
23
+ * The alert's theme variant.
24
+ */
21
25
  variant?: SynAlert["variant"];
22
26
  /**
23
27
  * The length of time, in milliseconds, the alert will show before closing itself.
@@ -43,12 +47,12 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
43
47
  */
44
48
  open?: SynAlert["open"];
45
49
  /**
46
- * Enables a close button that allows the user to dismiss the alert.
47
- */
50
+ * Enables a close button that allows the user to dismiss the alert.
51
+ */
48
52
  closable?: SynAlert["closable"];
49
53
  /**
50
- * The alert's theme variant.
51
- */
54
+ * The alert's theme variant.
55
+ */
52
56
  variant?: SynAlert["variant"];
53
57
  /**
54
58
  * The length of time, in milliseconds, the alert will show before closing itself.
@@ -5,15 +5,15 @@ declare function __VLS_template(): {
5
5
  };
6
6
  declare const __VLS_component: import("vue").DefineComponent<__VLS_TypePropsToOption<{
7
7
  /**
8
- * The badge's theme variant.
9
- */
8
+ * The badge's theme variant.
9
+ */
10
10
  variant?: SynBadge["variant"];
11
11
  }>, {
12
12
  nativeElement: import("vue").Ref<SynBadge | undefined>;
13
13
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<{
14
14
  /**
15
- * The badge's theme variant.
16
- */
15
+ * The badge's theme variant.
16
+ */
17
17
  variant?: SynBadge["variant"];
18
18
  }>>>, {}, {}>;
19
19
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
@@ -12,14 +12,14 @@ declare const __VLS_component: import("vue").DefineComponent<__VLS_TypePropsToOp
12
12
  */
13
13
  href?: SynBreadcrumbItem["href"];
14
14
  /**
15
- * Tells the browser where to open the link.
16
- * Only used when `href` is set.
17
- */
15
+ * Tells the browser where to open the link.
16
+ * Only used when `href` is set.
17
+ */
18
18
  target?: SynBreadcrumbItem["target"];
19
19
  /**
20
- * The `rel` attribute to use on the link.
21
- * Only used when `href` is set.
22
- */
20
+ * The `rel` attribute to use on the link.
21
+ * Only used when `href` is set.
22
+ */
23
23
  rel?: SynBreadcrumbItem["rel"];
24
24
  }>, {
25
25
  nativeElement: import("vue").Ref<SynBreadcrumbItem | undefined>;
@@ -32,14 +32,14 @@ declare const __VLS_component: import("vue").DefineComponent<__VLS_TypePropsToOp
32
32
  */
33
33
  href?: SynBreadcrumbItem["href"];
34
34
  /**
35
- * Tells the browser where to open the link.
36
- * Only used when `href` is set.
37
- */
35
+ * Tells the browser where to open the link.
36
+ * Only used when `href` is set.
37
+ */
38
38
  target?: SynBreadcrumbItem["target"];
39
39
  /**
40
- * The `rel` attribute to use on the link.
41
- * Only used when `href` is set.
42
- */
40
+ * The `rel` attribute to use on the link.
41
+ * Only used when `href` is set.
42
+ */
43
43
  rel?: SynBreadcrumbItem["rel"];
44
44
  }>>>, {}, {}>;
45
45
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
@@ -1,30 +1,33 @@
1
1
  import '@synergy-design-system/components/components/button/button.js';
2
- import type { SynBlurEvent, SynButton, SynFocusEvent, SynInvalidEvent } 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 { SynInvalidEvent } from '@synergy-design-system/components';
5
+ import type { SynButton } from '@synergy-design-system/components';
3
6
  export type { SynBlurEvent } from '@synergy-design-system/components';
4
7
  export type { SynFocusEvent } from '@synergy-design-system/components';
5
8
  export type { SynInvalidEvent } from '@synergy-design-system/components';
6
9
  declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_TypePropsToOption<{
7
10
  title?: SynButton["title"];
8
11
  /**
9
- * The button's theme variant.
10
- */
12
+ * The button's theme variant.
13
+ */
11
14
  variant?: SynButton["variant"];
12
15
  /**
13
- * The button's size.
14
- */
16
+ * The button's size.
17
+ */
15
18
  size?: SynButton["size"];
16
19
  /**
17
- * Draws the button with a caret.
18
- * Used to indicate that the button triggers a dropdown menu or similar behavior.
19
- */
20
+ * Draws the button with a caret.
21
+ * Used to indicate that the button triggers a dropdown menu or similar behavior.
22
+ */
20
23
  caret?: SynButton["caret"];
21
24
  /**
22
- * Disables the button.
23
- */
25
+ * Disables the button.
26
+ */
24
27
  disabled?: SynButton["disabled"];
25
28
  /**
26
- * Draws the button in a loading state.
27
- */
29
+ * Draws the button in a loading state.
30
+ */
28
31
  loading?: SynButton["loading"];
29
32
  /**
30
33
  * The type of button.
@@ -45,13 +48,13 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
45
48
  */
46
49
  value?: SynButton["value"];
47
50
  /**
48
- * When set, the underlying button will be rendered as an `<a>` with this `href` instead of a `<button>`.
49
- */
51
+ * When set, the underlying button will be rendered as an `<a>` with this `href` instead of a `<button>`.
52
+ */
50
53
  href?: SynButton["href"];
51
54
  /**
52
- * Tells the browser where to open the link.
53
- * Only used when `href` is present.
54
- */
55
+ * Tells the browser where to open the link.
56
+ * Only used when `href` is present.
57
+ */
55
58
  target?: SynButton["target"];
56
59
  /**
57
60
  * When using `href`, this attribute will map to the underlying link's `rel` attribute.
@@ -64,9 +67,9 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
64
67
  */
65
68
  rel?: SynButton["rel"];
66
69
  /**
67
- * Tells the browser to download the linked file as this filename.
68
- * Only used when `href` is present.
69
- */
70
+ * Tells the browser to download the linked file as this filename.
71
+ * Only used when `href` is present.
72
+ */
70
73
  download?: SynButton["download"];
71
74
  /**
72
75
  * The "form owner" to associate the button with.
@@ -76,24 +79,24 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
76
79
  */
77
80
  form?: SynButton["form"];
78
81
  /**
79
- * Used to override the form owner's `action` attribute.
80
- */
82
+ * Used to override the form owner's `action` attribute.
83
+ */
81
84
  formAction?: SynButton["formAction"];
82
85
  /**
83
- * Used to override the form owner's `enctype` attribute.
84
- */
86
+ * Used to override the form owner's `enctype` attribute.
87
+ */
85
88
  formEnctype?: SynButton["formEnctype"];
86
89
  /**
87
- * Used to override the form owner's `method` attribute.
88
- */
90
+ * Used to override the form owner's `method` attribute.
91
+ */
89
92
  formMethod?: SynButton["formMethod"];
90
93
  /**
91
- * Used to override the form owner's `novalidate` attribute.
92
- */
94
+ * Used to override the form owner's `novalidate` attribute.
95
+ */
93
96
  formNoValidate?: SynButton["formNoValidate"];
94
97
  /**
95
- * Used to override the form owner's `target` attribute.
96
- */
98
+ * Used to override the form owner's `target` attribute.
99
+ */
97
100
  formTarget?: SynButton["formTarget"];
98
101
  }>, {
99
102
  nativeElement: import("vue").Ref<SynButton | undefined>;
@@ -104,25 +107,25 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
104
107
  }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<{
105
108
  title?: SynButton["title"];
106
109
  /**
107
- * The button's theme variant.
108
- */
110
+ * The button's theme variant.
111
+ */
109
112
  variant?: SynButton["variant"];
110
113
  /**
111
- * The button's size.
112
- */
114
+ * The button's size.
115
+ */
113
116
  size?: SynButton["size"];
114
117
  /**
115
- * Draws the button with a caret.
116
- * Used to indicate that the button triggers a dropdown menu or similar behavior.
117
- */
118
+ * Draws the button with a caret.
119
+ * Used to indicate that the button triggers a dropdown menu or similar behavior.
120
+ */
118
121
  caret?: SynButton["caret"];
119
122
  /**
120
- * Disables the button.
121
- */
123
+ * Disables the button.
124
+ */
122
125
  disabled?: SynButton["disabled"];
123
126
  /**
124
- * Draws the button in a loading state.
125
- */
127
+ * Draws the button in a loading state.
128
+ */
126
129
  loading?: SynButton["loading"];
127
130
  /**
128
131
  * The type of button.
@@ -143,13 +146,13 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
143
146
  */
144
147
  value?: SynButton["value"];
145
148
  /**
146
- * When set, the underlying button will be rendered as an `<a>` with this `href` instead of a `<button>`.
147
- */
149
+ * When set, the underlying button will be rendered as an `<a>` with this `href` instead of a `<button>`.
150
+ */
148
151
  href?: SynButton["href"];
149
152
  /**
150
- * Tells the browser where to open the link.
151
- * Only used when `href` is present.
152
- */
153
+ * Tells the browser where to open the link.
154
+ * Only used when `href` is present.
155
+ */
153
156
  target?: SynButton["target"];
154
157
  /**
155
158
  * When using `href`, this attribute will map to the underlying link's `rel` attribute.
@@ -162,9 +165,9 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
162
165
  */
163
166
  rel?: SynButton["rel"];
164
167
  /**
165
- * Tells the browser to download the linked file as this filename.
166
- * Only used when `href` is present.
167
- */
168
+ * Tells the browser to download the linked file as this filename.
169
+ * Only used when `href` is present.
170
+ */
168
171
  download?: SynButton["download"];
169
172
  /**
170
173
  * The "form owner" to associate the button with.
@@ -174,24 +177,24 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
174
177
  */
175
178
  form?: SynButton["form"];
176
179
  /**
177
- * Used to override the form owner's `action` attribute.
178
- */
180
+ * Used to override the form owner's `action` attribute.
181
+ */
179
182
  formAction?: SynButton["formAction"];
180
183
  /**
181
- * Used to override the form owner's `enctype` attribute.
182
- */
184
+ * Used to override the form owner's `enctype` attribute.
185
+ */
183
186
  formEnctype?: SynButton["formEnctype"];
184
187
  /**
185
- * Used to override the form owner's `method` attribute.
186
- */
188
+ * Used to override the form owner's `method` attribute.
189
+ */
187
190
  formMethod?: SynButton["formMethod"];
188
191
  /**
189
- * Used to override the form owner's `novalidate` attribute.
190
- */
192
+ * Used to override the form owner's `novalidate` attribute.
193
+ */
191
194
  formNoValidate?: SynButton["formNoValidate"];
192
195
  /**
193
- * Used to override the form owner's `target` attribute.
194
- */
196
+ * Used to override the form owner's `target` attribute.
197
+ */
195
198
  formTarget?: SynButton["formTarget"];
196
199
  }>>> & {
197
200
  "onSyn-blur"?: ((e: SynBlurEvent) => any) | undefined;
@@ -5,19 +5,19 @@ declare function __VLS_template(): {
5
5
  };
6
6
  declare const __VLS_component: import("vue").DefineComponent<__VLS_TypePropsToOption<{
7
7
  /**
8
- * Draws the card with sharp edges.
9
- * Can be used e.g.
10
- * when nesting multiple syn-cards to create hierarchy.
11
- */
8
+ * Draws the card with sharp edges.
9
+ * Can be used e.g.
10
+ * when nesting multiple syn-cards to create hierarchy.
11
+ */
12
12
  sharp?: SynCard["sharp"];
13
13
  }>, {
14
14
  nativeElement: import("vue").Ref<SynCard | undefined>;
15
15
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<{
16
16
  /**
17
- * Draws the card with sharp edges.
18
- * Can be used e.g.
19
- * when nesting multiple syn-cards to create hierarchy.
20
- */
17
+ * Draws the card with sharp edges.
18
+ * Can be used e.g.
19
+ * when nesting multiple syn-cards to create hierarchy.
20
+ */
21
21
  sharp?: SynCard["sharp"];
22
22
  }>>>, {}, {}>;
23
23
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
@@ -1,5 +1,10 @@
1
1
  import '@synergy-design-system/components/components/checkbox/checkbox.js';
2
- import type { SynBlurEvent, SynChangeEvent, SynCheckbox, SynFocusEvent, SynInputEvent, SynInvalidEvent } from '@synergy-design-system/components';
2
+ import type { SynBlurEvent } from '@synergy-design-system/components';
3
+ import type { SynChangeEvent } from '@synergy-design-system/components';
4
+ import type { SynFocusEvent } from '@synergy-design-system/components';
5
+ import type { SynInputEvent } from '@synergy-design-system/components';
6
+ import type { SynInvalidEvent } from '@synergy-design-system/components';
7
+ import type { SynCheckbox } from '@synergy-design-system/components';
3
8
  export type { SynBlurEvent } from '@synergy-design-system/components';
4
9
  export type { SynChangeEvent } from '@synergy-design-system/components';
5
10
  export type { SynFocusEvent } from '@synergy-design-system/components';
@@ -8,24 +13,24 @@ export type { SynInvalidEvent } from '@synergy-design-system/components';
8
13
  declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_TypePropsToOption<{
9
14
  title?: SynCheckbox["title"];
10
15
  /**
11
- * The name of the checkbox, submitted as a name/value pair with form data.
12
- */
16
+ * The name of the checkbox, submitted as a name/value pair with form data.
17
+ */
13
18
  name?: SynCheckbox["name"];
14
19
  /**
15
- * The current value of the checkbox, submitted as a name/value pair with form data.
16
- */
20
+ * The current value of the checkbox, submitted as a name/value pair with form data.
21
+ */
17
22
  value?: SynCheckbox["value"];
18
23
  /**
19
- * The checkbox's size.
20
- */
24
+ * The checkbox's size.
25
+ */
21
26
  size?: SynCheckbox["size"];
22
27
  /**
23
- * Disables the checkbox.
24
- */
28
+ * Disables the checkbox.
29
+ */
25
30
  disabled?: SynCheckbox["disabled"];
26
31
  /**
27
- * Draws the checkbox in a checked state.
28
- */
32
+ * Draws the checkbox in a checked state.
33
+ */
29
34
  checked?: SynCheckbox["checked"];
30
35
  /**
31
36
  * Draws the checkbox in an indeterminate state.
@@ -42,17 +47,17 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
42
47
  */
43
48
  form?: SynCheckbox["form"];
44
49
  /**
45
- * Makes the checkbox a required field.
46
- */
50
+ * Makes the checkbox a required field.
51
+ */
47
52
  required?: SynCheckbox["required"];
48
53
  /**
49
- * The checkbox's help text.
50
- * If you need to display HTML, use the `help-text` slot instead.
51
- */
54
+ * The checkbox's help text.
55
+ * If you need to display HTML, use the `help-text` slot instead.
56
+ */
52
57
  helpText?: SynCheckbox["helpText"];
53
58
  /**
54
- * Support for two way data binding
55
- */
59
+ * Support for two way data binding
60
+ */
56
61
  modelValue?: SynCheckbox["checked"];
57
62
  }>, {
58
63
  nativeElement: import("vue").Ref<SynCheckbox | undefined>;
@@ -66,24 +71,24 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
66
71
  }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<{
67
72
  title?: SynCheckbox["title"];
68
73
  /**
69
- * The name of the checkbox, submitted as a name/value pair with form data.
70
- */
74
+ * The name of the checkbox, submitted as a name/value pair with form data.
75
+ */
71
76
  name?: SynCheckbox["name"];
72
77
  /**
73
- * The current value of the checkbox, submitted as a name/value pair with form data.
74
- */
78
+ * The current value of the checkbox, submitted as a name/value pair with form data.
79
+ */
75
80
  value?: SynCheckbox["value"];
76
81
  /**
77
- * The checkbox's size.
78
- */
82
+ * The checkbox's size.
83
+ */
79
84
  size?: SynCheckbox["size"];
80
85
  /**
81
- * Disables the checkbox.
82
- */
86
+ * Disables the checkbox.
87
+ */
83
88
  disabled?: SynCheckbox["disabled"];
84
89
  /**
85
- * Draws the checkbox in a checked state.
86
- */
90
+ * Draws the checkbox in a checked state.
91
+ */
87
92
  checked?: SynCheckbox["checked"];
88
93
  /**
89
94
  * Draws the checkbox in an indeterminate state.
@@ -100,17 +105,17 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
100
105
  */
101
106
  form?: SynCheckbox["form"];
102
107
  /**
103
- * Makes the checkbox a required field.
104
- */
108
+ * Makes the checkbox a required field.
109
+ */
105
110
  required?: SynCheckbox["required"];
106
111
  /**
107
- * The checkbox's help text.
108
- * If you need to display HTML, use the `help-text` slot instead.
109
- */
112
+ * The checkbox's help text.
113
+ * If you need to display HTML, use the `help-text` slot instead.
114
+ */
110
115
  helpText?: SynCheckbox["helpText"];
111
116
  /**
112
- * Support for two way data binding
113
- */
117
+ * Support for two way data binding
118
+ */
114
119
  modelValue?: SynCheckbox["checked"];
115
120
  }>>> & {
116
121
  "onSyn-blur"?: ((e: SynBlurEvent) => any) | undefined;
@@ -1,5 +1,9 @@
1
1
  import '@synergy-design-system/components/components/details/details.js';
2
- import type { SynAfterHideEvent, SynAfterShowEvent, SynDetails, SynHideEvent, SynShowEvent } from '@synergy-design-system/components';
2
+ import type { SynShowEvent } from '@synergy-design-system/components';
3
+ import type { SynAfterShowEvent } from '@synergy-design-system/components';
4
+ import type { SynHideEvent } from '@synergy-design-system/components';
5
+ import type { SynAfterHideEvent } from '@synergy-design-system/components';
6
+ import type { SynDetails } from '@synergy-design-system/components';
3
7
  export type { SynShowEvent } from '@synergy-design-system/components';
4
8
  export type { SynAfterShowEvent } from '@synergy-design-system/components';
5
9
  export type { SynHideEvent } from '@synergy-design-system/components';
@@ -12,21 +16,21 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
12
16
  */
13
17
  open?: SynDetails["open"];
14
18
  /**
15
- * The summary to show in the header.
16
- * If you need to display HTML, use the `summary` slot instead.
17
- */
19
+ * The summary to show in the header.
20
+ * If you need to display HTML, use the `summary` slot instead.
21
+ */
18
22
  summary?: SynDetails["summary"];
19
23
  /**
20
- * Disables the details so it can't be toggled.
21
- */
24
+ * Disables the details so it can't be toggled.
25
+ */
22
26
  disabled?: SynDetails["disabled"];
23
27
  /**
24
- * Draws the details as contained element.
25
- */
28
+ * Draws the details as contained element.
29
+ */
26
30
  contained?: SynDetails["contained"];
27
31
  /**
28
- * The details's size.
29
- */
32
+ * The details's size.
33
+ */
30
34
  size?: SynDetails["size"];
31
35
  }>, {
32
36
  nativeElement: import("vue").Ref<SynDetails | undefined>;
@@ -43,21 +47,21 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
43
47
  */
44
48
  open?: SynDetails["open"];
45
49
  /**
46
- * The summary to show in the header.
47
- * If you need to display HTML, use the `summary` slot instead.
48
- */
50
+ * The summary to show in the header.
51
+ * If you need to display HTML, use the `summary` slot instead.
52
+ */
49
53
  summary?: SynDetails["summary"];
50
54
  /**
51
- * Disables the details so it can't be toggled.
52
- */
55
+ * Disables the details so it can't be toggled.
56
+ */
53
57
  disabled?: SynDetails["disabled"];
54
58
  /**
55
- * Draws the details as contained element.
56
- */
59
+ * Draws the details as contained element.
60
+ */
57
61
  contained?: SynDetails["contained"];
58
62
  /**
59
- * The details's size.
60
- */
63
+ * The details's size.
64
+ */
61
65
  size?: SynDetails["size"];
62
66
  }>>> & {
63
67
  "onSyn-show"?: ((e: SynShowEvent) => any) | undefined;
@@ -1,5 +1,11 @@
1
1
  import '@synergy-design-system/components/components/dialog/dialog.js';
2
- import type { SynAfterHideEvent, SynAfterShowEvent, SynDialog, SynHideEvent, SynInitialFocusEvent, SynRequestCloseEvent, SynShowEvent } from '@synergy-design-system/components';
2
+ import type { SynShowEvent } from '@synergy-design-system/components';
3
+ import type { SynAfterShowEvent } from '@synergy-design-system/components';
4
+ import type { SynHideEvent } from '@synergy-design-system/components';
5
+ import type { SynAfterHideEvent } from '@synergy-design-system/components';
6
+ import type { SynInitialFocusEvent } from '@synergy-design-system/components';
7
+ import type { SynRequestCloseEvent } from '@synergy-design-system/components';
8
+ import type { SynDialog } from '@synergy-design-system/components';
3
9
  export type { SynShowEvent } from '@synergy-design-system/components';
4
10
  export type { SynAfterShowEvent } from '@synergy-design-system/components';
5
11
  export type { SynHideEvent } from '@synergy-design-system/components';
@@ -2,15 +2,15 @@ import '@synergy-design-system/components/components/divider/divider.js';
2
2
  import type { SynDivider } from '@synergy-design-system/components';
3
3
  declare const _default: import("vue").DefineComponent<__VLS_TypePropsToOption<{
4
4
  /**
5
- * Draws the divider in a vertical orientation.
6
- */
5
+ * Draws the divider in a vertical orientation.
6
+ */
7
7
  vertical?: SynDivider["vertical"];
8
8
  }>, {
9
9
  nativeElement: import("vue").Ref<SynDivider | undefined>;
10
10
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<{
11
11
  /**
12
- * Draws the divider in a vertical orientation.
13
- */
12
+ * Draws the divider in a vertical orientation.
13
+ */
14
14
  vertical?: SynDivider["vertical"];
15
15
  }>>>, {}, {}>;
16
16
  export default _default;