@synergy-design-system/vue 2.6.0 → 2.7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/SynVueAccordion.vue.d.ts +12 -10
- package/dist/components/SynVueAlert.vue.d.ts +8 -8
- package/dist/components/SynVueBadge.vue.d.ts +8 -6
- package/dist/components/SynVueBreadcrumb.vue.d.ts +8 -6
- package/dist/components/SynVueBreadcrumbItem.vue.d.ts +12 -10
- package/dist/components/SynVueButton.vue.d.ts +38 -38
- package/dist/components/SynVueButtonGroup.vue.d.ts +8 -6
- package/dist/components/SynVueCard.vue.d.ts +8 -6
- package/dist/components/SynVueCheckbox.vue.d.ts +22 -22
- package/dist/components/SynVueDetails.vue.d.ts +10 -10
- package/dist/components/SynVueDialog.vue.d.ts +6 -6
- package/dist/components/SynVueDivider.vue.d.ts +2 -2
- package/dist/components/SynVueDrawer.vue.d.ts +10 -10
- package/dist/components/SynVueDropdown.vue.d.ts +16 -16
- package/dist/components/SynVueFile.vue.d.ts +32 -32
- package/dist/components/SynVueHeader.vue.d.ts +4 -4
- package/dist/components/SynVueIcon.vue.d.ts +8 -8
- package/dist/components/SynVueIconButton.vue.d.ts +20 -20
- package/dist/components/SynVueInput.vue.d.ts +60 -60
- package/dist/components/SynVueMenuItem.vue.d.ts +16 -14
- package/dist/components/SynVueMenuLabel.vue.d.ts +6 -4
- package/dist/components/SynVueNavItem.vue.d.ts +14 -14
- package/dist/components/SynVueOptgroup.vue.d.ts +10 -8
- package/dist/components/SynVueOption.vue.d.ts +10 -8
- package/dist/components/SynVuePopup.vue.d.ts +44 -44
- package/dist/components/SynVuePrioNav.vue.d.ts +6 -4
- package/dist/components/SynVueProgressBar.vue.d.ts +12 -10
- package/dist/components/SynVueProgressRing.vue.d.ts +10 -8
- package/dist/components/SynVueRadio.vue.d.ts +6 -6
- package/dist/components/SynVueRadioButton.vue.d.ts +8 -8
- package/dist/components/SynVueRadioGroup.vue.d.ts +16 -16
- package/dist/components/SynVueRange.vue.d.ts +24 -24
- package/dist/components/SynVueRangeTick.vue.d.ts +8 -6
- package/dist/components/SynVueSelect.vue.d.ts +34 -34
- package/dist/components/SynVueSideNav.vue.d.ts +6 -6
- package/dist/components/SynVueSwitch.vue.d.ts +20 -20
- package/dist/components/SynVueTab.vue.d.ts +8 -8
- package/dist/components/SynVueTabGroup.vue.d.ts +10 -10
- package/dist/components/SynVueTabPanel.vue.d.ts +10 -8
- package/dist/components/SynVueTag.vue.d.ts +4 -4
- package/dist/components/SynVueTextarea.vue.d.ts +46 -46
- package/dist/components/SynVueTooltip.vue.d.ts +16 -16
- package/package.json +4 -4
- package/src/components/SynVueDropdown.vue +2 -1
- package/src/components/SynVueSelect.vue +3 -1
|
@@ -1,30 +1,32 @@
|
|
|
1
1
|
import '@synergy-design-system/components/components/optgroup/optgroup.js';
|
|
2
2
|
import type { SynOptgroup } from '@synergy-design-system/components';
|
|
3
|
-
declare
|
|
3
|
+
declare function __VLS_template(): {
|
|
4
|
+
default?(_: {}): any;
|
|
5
|
+
};
|
|
6
|
+
declare const __VLS_component: import("vue").DefineComponent<__VLS_TypePropsToOption<{
|
|
4
7
|
/**
|
|
5
8
|
* Disables all options in the optgroup.
|
|
6
9
|
*/
|
|
7
|
-
disabled?:
|
|
10
|
+
disabled?: SynOptgroup["disabled"];
|
|
8
11
|
/**
|
|
9
12
|
* The optgroups label.
|
|
10
13
|
* If you need to display HTML, use the `label` slot instead.
|
|
11
14
|
*/
|
|
12
|
-
label?:
|
|
15
|
+
label?: SynOptgroup["label"];
|
|
13
16
|
}>, {
|
|
14
17
|
nativeElement: import("vue").Ref<SynOptgroup | undefined>;
|
|
15
18
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<{
|
|
16
19
|
/**
|
|
17
20
|
* Disables all options in the optgroup.
|
|
18
21
|
*/
|
|
19
|
-
disabled?:
|
|
22
|
+
disabled?: SynOptgroup["disabled"];
|
|
20
23
|
/**
|
|
21
24
|
* The optgroups label.
|
|
22
25
|
* If you need to display HTML, use the `label` slot instead.
|
|
23
26
|
*/
|
|
24
|
-
label?:
|
|
25
|
-
}>>>, {}, {}
|
|
26
|
-
|
|
27
|
-
}>;
|
|
27
|
+
label?: SynOptgroup["label"];
|
|
28
|
+
}>>>, {}, {}>;
|
|
29
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
|
28
30
|
export default _default;
|
|
29
31
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
30
32
|
new (): {
|
|
@@ -1,6 +1,9 @@
|
|
|
1
1
|
import '@synergy-design-system/components/components/option/option.js';
|
|
2
2
|
import type { SynOption } from '@synergy-design-system/components';
|
|
3
|
-
declare
|
|
3
|
+
declare function __VLS_template(): {
|
|
4
|
+
default?(_: {}): any;
|
|
5
|
+
};
|
|
6
|
+
declare const __VLS_component: import("vue").DefineComponent<__VLS_TypePropsToOption<{
|
|
4
7
|
/**
|
|
5
8
|
* The option's value.
|
|
6
9
|
* When selected, the containing form control will receive this value.
|
|
@@ -9,11 +12,11 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
9
12
|
* Values may not contain spaces, as spaces are used as delimiters when listing
|
|
10
13
|
multiple values.
|
|
11
14
|
*/
|
|
12
|
-
value?:
|
|
15
|
+
value?: SynOption["value"];
|
|
13
16
|
/**
|
|
14
17
|
* Draws the option in a disabled state, preventing selection.
|
|
15
18
|
*/
|
|
16
|
-
disabled?:
|
|
19
|
+
disabled?: SynOption["disabled"];
|
|
17
20
|
}>, {
|
|
18
21
|
nativeElement: import("vue").Ref<SynOption | undefined>;
|
|
19
22
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<{
|
|
@@ -25,14 +28,13 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
25
28
|
* Values may not contain spaces, as spaces are used as delimiters when listing
|
|
26
29
|
multiple values.
|
|
27
30
|
*/
|
|
28
|
-
value?:
|
|
31
|
+
value?: SynOption["value"];
|
|
29
32
|
/**
|
|
30
33
|
* Draws the option in a disabled state, preventing selection.
|
|
31
34
|
*/
|
|
32
|
-
disabled?:
|
|
33
|
-
}>>>, {}, {}
|
|
34
|
-
|
|
35
|
-
}>;
|
|
35
|
+
disabled?: SynOption["disabled"];
|
|
36
|
+
}>>>, {}, {}>;
|
|
37
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
|
36
38
|
export default _default;
|
|
37
39
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
38
40
|
new (): {
|
|
@@ -9,33 +9,33 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
9
9
|
* If the anchor lives inside the popup, use the
|
|
10
10
|
`anchor` slot instead.
|
|
11
11
|
*/
|
|
12
|
-
anchor?:
|
|
12
|
+
anchor?: SynPopup["anchor"];
|
|
13
13
|
/**
|
|
14
14
|
* Activates the positioning logic and shows the popup.
|
|
15
15
|
* When this attribute is removed, the positioning logic is torn
|
|
16
16
|
down and the popup will be hidden.
|
|
17
17
|
*/
|
|
18
|
-
active?:
|
|
18
|
+
active?: SynPopup["active"];
|
|
19
19
|
/**
|
|
20
20
|
* The preferred placement of the popup.
|
|
21
21
|
* Note that the actual placement will vary as configured to keep the
|
|
22
22
|
panel inside of the viewport.
|
|
23
23
|
*/
|
|
24
|
-
placement?: "
|
|
24
|
+
placement?: SynPopup["placement"];
|
|
25
25
|
/**
|
|
26
26
|
* Determines how the popup is positioned.
|
|
27
27
|
* The `absolute` strategy works well in most cases, but if overflow is
|
|
28
28
|
clipped, using a `fixed` position strategy can often workaround it.
|
|
29
29
|
*/
|
|
30
|
-
strategy?: "
|
|
30
|
+
strategy?: SynPopup["strategy"];
|
|
31
31
|
/**
|
|
32
32
|
* The distance in pixels from which to offset the panel away from its anchor.
|
|
33
33
|
*/
|
|
34
|
-
distance?:
|
|
34
|
+
distance?: SynPopup["distance"];
|
|
35
35
|
/**
|
|
36
36
|
* The distance in pixels from which to offset the panel along its anchor.
|
|
37
37
|
*/
|
|
38
|
-
skidding?:
|
|
38
|
+
skidding?: SynPopup["skidding"];
|
|
39
39
|
/**
|
|
40
40
|
* Attaches an arrow to the popup.
|
|
41
41
|
* The arrow's size and color can be customized using the `--arrow-size` and
|
|
@@ -43,7 +43,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
43
43
|
* For additional customizations, you can also target the arrow using
|
|
44
44
|
`::part(arrow)` in your stylesheet.
|
|
45
45
|
*/
|
|
46
|
-
arrow?:
|
|
46
|
+
arrow?: SynPopup["arrow"];
|
|
47
47
|
/**
|
|
48
48
|
* The placement of the arrow.
|
|
49
49
|
* The default is `anchor`, which will align the arrow as close to the center of the
|
|
@@ -51,19 +51,19 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
51
51
|
* A value of `start`, `end`, or `center` will
|
|
52
52
|
align the arrow to the start, end, or center of the popover instead.
|
|
53
53
|
*/
|
|
54
|
-
arrowPlacement?: "
|
|
54
|
+
arrowPlacement?: SynPopup["arrowPlacement"];
|
|
55
55
|
/**
|
|
56
56
|
* The amount of padding between the arrow and the edges of the popup.
|
|
57
57
|
* If the popup has a border-radius, for example,
|
|
58
58
|
this will prevent it from overflowing the corners.
|
|
59
59
|
*/
|
|
60
|
-
arrowPadding?:
|
|
60
|
+
arrowPadding?: SynPopup["arrowPadding"];
|
|
61
61
|
/**
|
|
62
62
|
* When set, placement of the popup will flip to the opposite site to keep it in view.
|
|
63
63
|
* You can use
|
|
64
64
|
`flipFallbackPlacements` to further configure how the fallback placement is determined.
|
|
65
65
|
*/
|
|
66
|
-
flip?:
|
|
66
|
+
flip?: SynPopup["flip"];
|
|
67
67
|
/**
|
|
68
68
|
* If the preferred placement doesn't fit, popup will be tested in these fallback placements until one fits.
|
|
69
69
|
* Must be a
|
|
@@ -72,13 +72,13 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
72
72
|
* If no placement fits, the flip
|
|
73
73
|
fallback strategy will be used instead.
|
|
74
74
|
*/
|
|
75
|
-
flipFallbackPlacements?:
|
|
75
|
+
flipFallbackPlacements?: SynPopup["flipFallbackPlacements"];
|
|
76
76
|
/**
|
|
77
77
|
* When neither the preferred placement nor the fallback placements fit, this value will be used to determine whether
|
|
78
78
|
the popup should be positioned using the best available fit based on available space or as it was initially
|
|
79
79
|
preferred.
|
|
80
80
|
*/
|
|
81
|
-
flipFallbackStrategy?: "
|
|
81
|
+
flipFallbackStrategy?: SynPopup["flipFallbackStrategy"];
|
|
82
82
|
/**
|
|
83
83
|
* The flip boundary describes clipping element(s) that overflow will be checked relative to when flipping.
|
|
84
84
|
* By
|
|
@@ -86,15 +86,15 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
86
86
|
* If needed, you can
|
|
87
87
|
change the boundary by passing a reference to one or more elements to this property.
|
|
88
88
|
*/
|
|
89
|
-
flipBoundary?:
|
|
89
|
+
flipBoundary?: SynPopup["flipBoundary"];
|
|
90
90
|
/**
|
|
91
91
|
* The amount of padding, in pixels, to exceed before the flip behavior will occur.
|
|
92
92
|
*/
|
|
93
|
-
flipPadding?:
|
|
93
|
+
flipPadding?: SynPopup["flipPadding"];
|
|
94
94
|
/**
|
|
95
95
|
* Moves the popup along the axis to keep it in view when clipped.
|
|
96
96
|
*/
|
|
97
|
-
shift?:
|
|
97
|
+
shift?: SynPopup["shift"];
|
|
98
98
|
/**
|
|
99
99
|
* The shift boundary describes clipping element(s) that overflow will be checked relative to when shifting.
|
|
100
100
|
* By
|
|
@@ -102,19 +102,19 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
102
102
|
* If needed, you can
|
|
103
103
|
change the boundary by passing a reference to one or more elements to this property.
|
|
104
104
|
*/
|
|
105
|
-
shiftBoundary?:
|
|
105
|
+
shiftBoundary?: SynPopup["shiftBoundary"];
|
|
106
106
|
/**
|
|
107
107
|
* The amount of padding, in pixels, to exceed before the shift behavior will occur.
|
|
108
108
|
*/
|
|
109
|
-
shiftPadding?:
|
|
109
|
+
shiftPadding?: SynPopup["shiftPadding"];
|
|
110
110
|
/**
|
|
111
111
|
* When set, this will cause the popup to automatically resize itself to prevent it from overflowing.
|
|
112
112
|
*/
|
|
113
|
-
autoSize?: "
|
|
113
|
+
autoSize?: SynPopup["autoSize"];
|
|
114
114
|
/**
|
|
115
115
|
* Syncs the popup's width or height to that of the anchor element.
|
|
116
116
|
*/
|
|
117
|
-
sync?: "
|
|
117
|
+
sync?: SynPopup["sync"];
|
|
118
118
|
/**
|
|
119
119
|
* The auto-size boundary describes clipping element(s) that overflow will be checked relative to when resizing.
|
|
120
120
|
* By
|
|
@@ -122,11 +122,11 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
122
122
|
* If needed, you can
|
|
123
123
|
change the boundary by passing a reference to one or more elements to this property.
|
|
124
124
|
*/
|
|
125
|
-
autoSizeBoundary?:
|
|
125
|
+
autoSizeBoundary?: SynPopup["autoSizeBoundary"];
|
|
126
126
|
/**
|
|
127
127
|
* The amount of padding, in pixels, to exceed before the auto-size behavior will occur.
|
|
128
128
|
*/
|
|
129
|
-
autoSizePadding?:
|
|
129
|
+
autoSizePadding?: SynPopup["autoSizePadding"];
|
|
130
130
|
/**
|
|
131
131
|
* When a gap exists between the anchor and the popup element, this option will add a "hover bridge" that fills the
|
|
132
132
|
gap using an invisible element.
|
|
@@ -135,7 +135,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
135
135
|
* The hover bridge will only be drawn when the popover is
|
|
136
136
|
active.
|
|
137
137
|
*/
|
|
138
|
-
hoverBridge?:
|
|
138
|
+
hoverBridge?: SynPopup["hoverBridge"];
|
|
139
139
|
}>, {
|
|
140
140
|
nativeElement: import("vue").Ref<SynPopup | undefined>;
|
|
141
141
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
@@ -148,33 +148,33 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
148
148
|
* If the anchor lives inside the popup, use the
|
|
149
149
|
`anchor` slot instead.
|
|
150
150
|
*/
|
|
151
|
-
anchor?:
|
|
151
|
+
anchor?: SynPopup["anchor"];
|
|
152
152
|
/**
|
|
153
153
|
* Activates the positioning logic and shows the popup.
|
|
154
154
|
* When this attribute is removed, the positioning logic is torn
|
|
155
155
|
down and the popup will be hidden.
|
|
156
156
|
*/
|
|
157
|
-
active?:
|
|
157
|
+
active?: SynPopup["active"];
|
|
158
158
|
/**
|
|
159
159
|
* The preferred placement of the popup.
|
|
160
160
|
* Note that the actual placement will vary as configured to keep the
|
|
161
161
|
panel inside of the viewport.
|
|
162
162
|
*/
|
|
163
|
-
placement?: "
|
|
163
|
+
placement?: SynPopup["placement"];
|
|
164
164
|
/**
|
|
165
165
|
* Determines how the popup is positioned.
|
|
166
166
|
* The `absolute` strategy works well in most cases, but if overflow is
|
|
167
167
|
clipped, using a `fixed` position strategy can often workaround it.
|
|
168
168
|
*/
|
|
169
|
-
strategy?: "
|
|
169
|
+
strategy?: SynPopup["strategy"];
|
|
170
170
|
/**
|
|
171
171
|
* The distance in pixels from which to offset the panel away from its anchor.
|
|
172
172
|
*/
|
|
173
|
-
distance?:
|
|
173
|
+
distance?: SynPopup["distance"];
|
|
174
174
|
/**
|
|
175
175
|
* The distance in pixels from which to offset the panel along its anchor.
|
|
176
176
|
*/
|
|
177
|
-
skidding?:
|
|
177
|
+
skidding?: SynPopup["skidding"];
|
|
178
178
|
/**
|
|
179
179
|
* Attaches an arrow to the popup.
|
|
180
180
|
* The arrow's size and color can be customized using the `--arrow-size` and
|
|
@@ -182,7 +182,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
182
182
|
* For additional customizations, you can also target the arrow using
|
|
183
183
|
`::part(arrow)` in your stylesheet.
|
|
184
184
|
*/
|
|
185
|
-
arrow?:
|
|
185
|
+
arrow?: SynPopup["arrow"];
|
|
186
186
|
/**
|
|
187
187
|
* The placement of the arrow.
|
|
188
188
|
* The default is `anchor`, which will align the arrow as close to the center of the
|
|
@@ -190,19 +190,19 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
190
190
|
* A value of `start`, `end`, or `center` will
|
|
191
191
|
align the arrow to the start, end, or center of the popover instead.
|
|
192
192
|
*/
|
|
193
|
-
arrowPlacement?: "
|
|
193
|
+
arrowPlacement?: SynPopup["arrowPlacement"];
|
|
194
194
|
/**
|
|
195
195
|
* The amount of padding between the arrow and the edges of the popup.
|
|
196
196
|
* If the popup has a border-radius, for example,
|
|
197
197
|
this will prevent it from overflowing the corners.
|
|
198
198
|
*/
|
|
199
|
-
arrowPadding?:
|
|
199
|
+
arrowPadding?: SynPopup["arrowPadding"];
|
|
200
200
|
/**
|
|
201
201
|
* When set, placement of the popup will flip to the opposite site to keep it in view.
|
|
202
202
|
* You can use
|
|
203
203
|
`flipFallbackPlacements` to further configure how the fallback placement is determined.
|
|
204
204
|
*/
|
|
205
|
-
flip?:
|
|
205
|
+
flip?: SynPopup["flip"];
|
|
206
206
|
/**
|
|
207
207
|
* If the preferred placement doesn't fit, popup will be tested in these fallback placements until one fits.
|
|
208
208
|
* Must be a
|
|
@@ -211,13 +211,13 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
211
211
|
* If no placement fits, the flip
|
|
212
212
|
fallback strategy will be used instead.
|
|
213
213
|
*/
|
|
214
|
-
flipFallbackPlacements?:
|
|
214
|
+
flipFallbackPlacements?: SynPopup["flipFallbackPlacements"];
|
|
215
215
|
/**
|
|
216
216
|
* When neither the preferred placement nor the fallback placements fit, this value will be used to determine whether
|
|
217
217
|
the popup should be positioned using the best available fit based on available space or as it was initially
|
|
218
218
|
preferred.
|
|
219
219
|
*/
|
|
220
|
-
flipFallbackStrategy?: "
|
|
220
|
+
flipFallbackStrategy?: SynPopup["flipFallbackStrategy"];
|
|
221
221
|
/**
|
|
222
222
|
* The flip boundary describes clipping element(s) that overflow will be checked relative to when flipping.
|
|
223
223
|
* By
|
|
@@ -225,15 +225,15 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
225
225
|
* If needed, you can
|
|
226
226
|
change the boundary by passing a reference to one or more elements to this property.
|
|
227
227
|
*/
|
|
228
|
-
flipBoundary?:
|
|
228
|
+
flipBoundary?: SynPopup["flipBoundary"];
|
|
229
229
|
/**
|
|
230
230
|
* The amount of padding, in pixels, to exceed before the flip behavior will occur.
|
|
231
231
|
*/
|
|
232
|
-
flipPadding?:
|
|
232
|
+
flipPadding?: SynPopup["flipPadding"];
|
|
233
233
|
/**
|
|
234
234
|
* Moves the popup along the axis to keep it in view when clipped.
|
|
235
235
|
*/
|
|
236
|
-
shift?:
|
|
236
|
+
shift?: SynPopup["shift"];
|
|
237
237
|
/**
|
|
238
238
|
* The shift boundary describes clipping element(s) that overflow will be checked relative to when shifting.
|
|
239
239
|
* By
|
|
@@ -241,19 +241,19 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
241
241
|
* If needed, you can
|
|
242
242
|
change the boundary by passing a reference to one or more elements to this property.
|
|
243
243
|
*/
|
|
244
|
-
shiftBoundary?:
|
|
244
|
+
shiftBoundary?: SynPopup["shiftBoundary"];
|
|
245
245
|
/**
|
|
246
246
|
* The amount of padding, in pixels, to exceed before the shift behavior will occur.
|
|
247
247
|
*/
|
|
248
|
-
shiftPadding?:
|
|
248
|
+
shiftPadding?: SynPopup["shiftPadding"];
|
|
249
249
|
/**
|
|
250
250
|
* When set, this will cause the popup to automatically resize itself to prevent it from overflowing.
|
|
251
251
|
*/
|
|
252
|
-
autoSize?: "
|
|
252
|
+
autoSize?: SynPopup["autoSize"];
|
|
253
253
|
/**
|
|
254
254
|
* Syncs the popup's width or height to that of the anchor element.
|
|
255
255
|
*/
|
|
256
|
-
sync?: "
|
|
256
|
+
sync?: SynPopup["sync"];
|
|
257
257
|
/**
|
|
258
258
|
* The auto-size boundary describes clipping element(s) that overflow will be checked relative to when resizing.
|
|
259
259
|
* By
|
|
@@ -261,11 +261,11 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
261
261
|
* If needed, you can
|
|
262
262
|
change the boundary by passing a reference to one or more elements to this property.
|
|
263
263
|
*/
|
|
264
|
-
autoSizeBoundary?:
|
|
264
|
+
autoSizeBoundary?: SynPopup["autoSizeBoundary"];
|
|
265
265
|
/**
|
|
266
266
|
* The amount of padding, in pixels, to exceed before the auto-size behavior will occur.
|
|
267
267
|
*/
|
|
268
|
-
autoSizePadding?:
|
|
268
|
+
autoSizePadding?: SynPopup["autoSizePadding"];
|
|
269
269
|
/**
|
|
270
270
|
* When a gap exists between the anchor and the popup element, this option will add a "hover bridge" that fills the
|
|
271
271
|
gap using an invisible element.
|
|
@@ -274,7 +274,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
274
274
|
* The hover bridge will only be drawn when the popover is
|
|
275
275
|
active.
|
|
276
276
|
*/
|
|
277
|
-
hoverBridge?:
|
|
277
|
+
hoverBridge?: SynPopup["hoverBridge"];
|
|
278
278
|
}>>> & {
|
|
279
279
|
"onSyn-reposition"?: ((e: SynRepositionEvent) => any) | undefined;
|
|
280
280
|
}, {}, {}>, {
|
|
@@ -1,10 +1,12 @@
|
|
|
1
1
|
import '@synergy-design-system/components/components/prio-nav/prio-nav.js';
|
|
2
2
|
import type { SynPrioNav } from '@synergy-design-system/components';
|
|
3
|
-
declare
|
|
4
|
-
nativeElement: import("vue").Ref<SynPrioNav | undefined>;
|
|
5
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>, {
|
|
3
|
+
declare function __VLS_template(): {
|
|
6
4
|
default?(_: {}): any;
|
|
7
|
-
}
|
|
5
|
+
};
|
|
6
|
+
declare const __VLS_component: import("vue").DefineComponent<{}, {
|
|
7
|
+
nativeElement: import("vue").Ref<SynPrioNav | undefined>;
|
|
8
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
|
|
9
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
|
8
10
|
export default _default;
|
|
9
11
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
10
12
|
new (): {
|
|
@@ -1,36 +1,38 @@
|
|
|
1
1
|
import '@synergy-design-system/components/components/progress-bar/progress-bar.js';
|
|
2
2
|
import type { SynProgressBar } from '@synergy-design-system/components';
|
|
3
|
-
declare
|
|
3
|
+
declare function __VLS_template(): {
|
|
4
|
+
default?(_: {}): any;
|
|
5
|
+
};
|
|
6
|
+
declare const __VLS_component: import("vue").DefineComponent<__VLS_TypePropsToOption<{
|
|
4
7
|
/**
|
|
5
8
|
* The current progress as a percentage, 0 to 100.
|
|
6
9
|
*/
|
|
7
|
-
value?:
|
|
10
|
+
value?: SynProgressBar["value"];
|
|
8
11
|
/**
|
|
9
12
|
* When true, percentage is ignored, the label is hidden, and the progress bar is drawn in an indeterminate state.
|
|
10
13
|
*/
|
|
11
|
-
indeterminate?:
|
|
14
|
+
indeterminate?: SynProgressBar["indeterminate"];
|
|
12
15
|
/**
|
|
13
16
|
* A custom label for assistive devices.
|
|
14
17
|
*/
|
|
15
|
-
label?:
|
|
18
|
+
label?: SynProgressBar["label"];
|
|
16
19
|
}>, {
|
|
17
20
|
nativeElement: import("vue").Ref<SynProgressBar | undefined>;
|
|
18
21
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<{
|
|
19
22
|
/**
|
|
20
23
|
* The current progress as a percentage, 0 to 100.
|
|
21
24
|
*/
|
|
22
|
-
value?:
|
|
25
|
+
value?: SynProgressBar["value"];
|
|
23
26
|
/**
|
|
24
27
|
* When true, percentage is ignored, the label is hidden, and the progress bar is drawn in an indeterminate state.
|
|
25
28
|
*/
|
|
26
|
-
indeterminate?:
|
|
29
|
+
indeterminate?: SynProgressBar["indeterminate"];
|
|
27
30
|
/**
|
|
28
31
|
* A custom label for assistive devices.
|
|
29
32
|
*/
|
|
30
|
-
label?:
|
|
31
|
-
}>>>, {}, {}
|
|
32
|
-
|
|
33
|
-
}>;
|
|
33
|
+
label?: SynProgressBar["label"];
|
|
34
|
+
}>>>, {}, {}>;
|
|
35
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
|
34
36
|
export default _default;
|
|
35
37
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
36
38
|
new (): {
|
|
@@ -1,28 +1,30 @@
|
|
|
1
1
|
import '@synergy-design-system/components/components/progress-ring/progress-ring.js';
|
|
2
2
|
import type { SynProgressRing } from '@synergy-design-system/components';
|
|
3
|
-
declare
|
|
3
|
+
declare function __VLS_template(): {
|
|
4
|
+
default?(_: {}): any;
|
|
5
|
+
};
|
|
6
|
+
declare const __VLS_component: import("vue").DefineComponent<__VLS_TypePropsToOption<{
|
|
4
7
|
/**
|
|
5
8
|
* The current progress as a percentage, 0 to 100.
|
|
6
9
|
*/
|
|
7
|
-
value?:
|
|
10
|
+
value?: SynProgressRing["value"];
|
|
8
11
|
/**
|
|
9
12
|
* A custom label for assistive devices.
|
|
10
13
|
*/
|
|
11
|
-
label?:
|
|
14
|
+
label?: SynProgressRing["label"];
|
|
12
15
|
}>, {
|
|
13
16
|
nativeElement: import("vue").Ref<SynProgressRing | undefined>;
|
|
14
17
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<{
|
|
15
18
|
/**
|
|
16
19
|
* The current progress as a percentage, 0 to 100.
|
|
17
20
|
*/
|
|
18
|
-
value?:
|
|
21
|
+
value?: SynProgressRing["value"];
|
|
19
22
|
/**
|
|
20
23
|
* A custom label for assistive devices.
|
|
21
24
|
*/
|
|
22
|
-
label?:
|
|
23
|
-
}>>>, {}, {}
|
|
24
|
-
|
|
25
|
-
}>;
|
|
25
|
+
label?: SynProgressRing["label"];
|
|
26
|
+
}>>>, {}, {}>;
|
|
27
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
|
26
28
|
export default _default;
|
|
27
29
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
28
30
|
new (): {
|
|
@@ -7,17 +7,17 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
7
7
|
* The radio's value.
|
|
8
8
|
* When selected, the radio group will receive this value.
|
|
9
9
|
*/
|
|
10
|
-
value?:
|
|
10
|
+
value?: SynRadio["value"];
|
|
11
11
|
/**
|
|
12
12
|
* The radio's size.
|
|
13
13
|
* When used inside a radio group, the size will be determined by the radio group's size so this
|
|
14
14
|
attribute can typically be omitted.
|
|
15
15
|
*/
|
|
16
|
-
size?: "
|
|
16
|
+
size?: SynRadio["size"];
|
|
17
17
|
/**
|
|
18
18
|
* Disables the radio.
|
|
19
19
|
*/
|
|
20
|
-
disabled?:
|
|
20
|
+
disabled?: SynRadio["disabled"];
|
|
21
21
|
}>, {
|
|
22
22
|
nativeElement: import("vue").Ref<SynRadio | undefined>;
|
|
23
23
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
@@ -28,17 +28,17 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
28
28
|
* The radio's value.
|
|
29
29
|
* When selected, the radio group will receive this value.
|
|
30
30
|
*/
|
|
31
|
-
value?:
|
|
31
|
+
value?: SynRadio["value"];
|
|
32
32
|
/**
|
|
33
33
|
* The radio's size.
|
|
34
34
|
* When used inside a radio group, the size will be determined by the radio group's size so this
|
|
35
35
|
attribute can typically be omitted.
|
|
36
36
|
*/
|
|
37
|
-
size?: "
|
|
37
|
+
size?: SynRadio["size"];
|
|
38
38
|
/**
|
|
39
39
|
* Disables the radio.
|
|
40
40
|
*/
|
|
41
|
-
disabled?:
|
|
41
|
+
disabled?: SynRadio["disabled"];
|
|
42
42
|
}>>> & {
|
|
43
43
|
"onSyn-blur"?: ((e: SynBlurEvent) => any) | undefined;
|
|
44
44
|
"onSyn-focus"?: ((e: SynFocusEvent) => any) | undefined;
|
|
@@ -7,21 +7,21 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
7
7
|
* The radio's value.
|
|
8
8
|
* When selected, the radio group will receive this value.
|
|
9
9
|
*/
|
|
10
|
-
value?:
|
|
10
|
+
value?: SynRadioButton["value"];
|
|
11
11
|
/**
|
|
12
12
|
* Disables the radio button.
|
|
13
13
|
*/
|
|
14
|
-
disabled?:
|
|
14
|
+
disabled?: SynRadioButton["disabled"];
|
|
15
15
|
/**
|
|
16
16
|
* The radio button's size.
|
|
17
17
|
* When used inside a radio group, the size will be determined by the radio group's size so
|
|
18
18
|
this attribute can typically be omitted.
|
|
19
19
|
*/
|
|
20
|
-
size?: "
|
|
20
|
+
size?: SynRadioButton["size"];
|
|
21
21
|
/**
|
|
22
22
|
* Draws a pill-style radio button with rounded edges.
|
|
23
23
|
*/
|
|
24
|
-
pill?:
|
|
24
|
+
pill?: SynRadioButton["pill"];
|
|
25
25
|
}>, {
|
|
26
26
|
nativeElement: import("vue").Ref<SynRadioButton | undefined>;
|
|
27
27
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
@@ -32,21 +32,21 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
32
32
|
* The radio's value.
|
|
33
33
|
* When selected, the radio group will receive this value.
|
|
34
34
|
*/
|
|
35
|
-
value?:
|
|
35
|
+
value?: SynRadioButton["value"];
|
|
36
36
|
/**
|
|
37
37
|
* Disables the radio button.
|
|
38
38
|
*/
|
|
39
|
-
disabled?:
|
|
39
|
+
disabled?: SynRadioButton["disabled"];
|
|
40
40
|
/**
|
|
41
41
|
* The radio button's size.
|
|
42
42
|
* When used inside a radio group, the size will be determined by the radio group's size so
|
|
43
43
|
this attribute can typically be omitted.
|
|
44
44
|
*/
|
|
45
|
-
size?: "
|
|
45
|
+
size?: SynRadioButton["size"];
|
|
46
46
|
/**
|
|
47
47
|
* Draws a pill-style radio button with rounded edges.
|
|
48
48
|
*/
|
|
49
|
-
pill?:
|
|
49
|
+
pill?: SynRadioButton["pill"];
|
|
50
50
|
}>>> & {
|
|
51
51
|
"onSyn-blur"?: ((e: SynBlurEvent) => any) | undefined;
|
|
52
52
|
"onSyn-focus"?: ((e: SynFocusEvent) => any) | undefined;
|