@synergy-design-system/vue 2.10.2 → 2.11.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.
- package/dist/components/SynVueAccordion.vue.d.ts +14 -17
- package/dist/components/SynVueAlert.vue.d.ts +13 -22
- package/dist/components/SynVueBadge.vue.d.ts +14 -16
- package/dist/components/SynVueBreadcrumb.vue.d.ts +14 -16
- package/dist/components/SynVueBreadcrumbItem.vue.d.ts +14 -16
- package/dist/components/SynVueButton.vue.d.ts +10 -19
- package/dist/components/SynVueButtonGroup.vue.d.ts +14 -16
- package/dist/components/SynVueCard.vue.d.ts +14 -16
- package/dist/components/SynVueCheckbox.vue.d.ts +15 -24
- package/dist/components/SynVueCombobox.vue.d.ts +26 -35
- package/dist/components/SynVueDetails.vue.d.ts +13 -22
- package/dist/components/SynVueDialog.vue.d.ts +15 -24
- package/dist/components/SynVueDivider.vue.d.ts +5 -14
- package/dist/components/SynVueDrawer.vue.d.ts +15 -24
- package/dist/components/SynVueDropdown.vue.d.ts +13 -22
- package/dist/components/SynVueFile.vue.d.ts +15 -24
- package/dist/components/SynVueHeader.vue.d.ts +10 -19
- package/dist/components/SynVueIcon.vue.d.ts +9 -18
- package/dist/components/SynVueIconButton.vue.d.ts +9 -18
- package/dist/components/SynVueInput.vue.d.ts +17 -26
- package/dist/components/SynVueMenu.vue.d.ts +4 -4
- package/dist/components/SynVueMenuItem.vue.d.ts +14 -16
- package/dist/components/SynVueMenuLabel.vue.d.ts +11 -4
- package/dist/components/SynVueNavItem.vue.d.ts +13 -22
- package/dist/components/SynVueOptgroup.vue.d.ts +14 -16
- package/dist/components/SynVueOption.vue.d.ts +14 -16
- package/dist/components/SynVuePopup.vue.d.ts +8 -17
- package/dist/components/SynVuePrioNav.vue.d.ts +11 -4
- package/dist/components/SynVueProgressBar.vue.d.ts +14 -16
- package/dist/components/SynVueProgressRing.vue.d.ts +14 -16
- package/dist/components/SynVueRadio.vue.d.ts +9 -18
- package/dist/components/SynVueRadioButton.vue.d.ts +9 -18
- package/dist/components/SynVueRadioGroup.vue.d.ts +12 -21
- package/dist/components/SynVueRange.vue.d.ts +17 -26
- package/dist/components/SynVueRangeTick.vue.d.ts +14 -16
- package/dist/components/SynVueSelect.vue.d.ts +24 -33
- package/dist/components/SynVueSideNav.vue.d.ts +13 -22
- package/dist/components/SynVueSpinner.vue.d.ts +2 -2
- package/dist/components/SynVueSwitch.vue.d.ts +15 -24
- package/dist/components/SynVueTab.vue.d.ts +8 -17
- package/dist/components/SynVueTabGroup.vue.d.ts +18 -19
- package/dist/components/SynVueTabPanel.vue.d.ts +14 -16
- package/dist/components/SynVueTag.vue.d.ts +8 -17
- package/dist/components/SynVueTextarea.vue.d.ts +15 -24
- package/dist/components/SynVueTooltip.vue.d.ts +13 -22
- package/package.json +4 -4
- package/src/components/SynVueTabGroup.vue +5 -0
|
@@ -1,9 +1,16 @@
|
|
|
1
1
|
import '@synergy-design-system/components/components/menu-item/menu-item.js';
|
|
2
2
|
import type { SynMenuItem } from '@synergy-design-system/components';
|
|
3
3
|
declare function __VLS_template(): {
|
|
4
|
-
|
|
4
|
+
slots: {
|
|
5
|
+
default?(_: {}): any;
|
|
6
|
+
};
|
|
7
|
+
refs: {
|
|
8
|
+
nativeElement: unknown;
|
|
9
|
+
};
|
|
10
|
+
attrs: Partial<{}>;
|
|
5
11
|
};
|
|
6
|
-
|
|
12
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
13
|
+
declare const __VLS_component: import("vue").DefineComponent<{
|
|
7
14
|
/**
|
|
8
15
|
* The type of menu item to render.
|
|
9
16
|
* To use `checked`, this value must be set to `checkbox`.
|
|
@@ -26,9 +33,9 @@ declare const __VLS_component: import("vue").DefineComponent<__VLS_TypePropsToOp
|
|
|
26
33
|
* Draws the menu item in a disabled state, preventing selection.
|
|
27
34
|
*/
|
|
28
35
|
disabled?: SynMenuItem["disabled"];
|
|
29
|
-
}
|
|
30
|
-
nativeElement: import("vue").Ref<SynMenuItem | undefined>;
|
|
31
|
-
},
|
|
36
|
+
}, {
|
|
37
|
+
nativeElement: import("vue").Ref<SynMenuItem | undefined, SynMenuItem | undefined>;
|
|
38
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{
|
|
32
39
|
/**
|
|
33
40
|
* The type of menu item to render.
|
|
34
41
|
* To use `checked`, this value must be set to `checkbox`.
|
|
@@ -51,20 +58,11 @@ declare const __VLS_component: import("vue").DefineComponent<__VLS_TypePropsToOp
|
|
|
51
58
|
* Draws the menu item in a disabled state, preventing selection.
|
|
52
59
|
*/
|
|
53
60
|
disabled?: SynMenuItem["disabled"];
|
|
54
|
-
}
|
|
55
|
-
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component,
|
|
61
|
+
}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
62
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
56
63
|
export default _default;
|
|
57
64
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
58
65
|
new (): {
|
|
59
66
|
$slots: S;
|
|
60
67
|
};
|
|
61
68
|
};
|
|
62
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
63
|
-
type __VLS_TypePropsToOption<T> = {
|
|
64
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
65
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
66
|
-
} : {
|
|
67
|
-
type: import('vue').PropType<T[K]>;
|
|
68
|
-
required: true;
|
|
69
|
-
};
|
|
70
|
-
};
|
|
@@ -1,12 +1,19 @@
|
|
|
1
1
|
import '@synergy-design-system/components/components/menu-label/menu-label.js';
|
|
2
2
|
import type { SynMenuLabel } from '@synergy-design-system/components';
|
|
3
3
|
declare function __VLS_template(): {
|
|
4
|
-
|
|
4
|
+
slots: {
|
|
5
|
+
default?(_: {}): any;
|
|
6
|
+
};
|
|
7
|
+
refs: {
|
|
8
|
+
nativeElement: unknown;
|
|
9
|
+
};
|
|
10
|
+
attrs: Partial<{}>;
|
|
5
11
|
};
|
|
12
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
6
13
|
declare const __VLS_component: import("vue").DefineComponent<{}, {
|
|
7
|
-
nativeElement: import("vue").Ref<SynMenuLabel | undefined>;
|
|
8
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").
|
|
9
|
-
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component,
|
|
14
|
+
nativeElement: import("vue").Ref<SynMenuLabel | undefined, SynMenuLabel | undefined>;
|
|
15
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
16
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
10
17
|
export default _default;
|
|
11
18
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
12
19
|
new (): {
|
|
@@ -8,7 +8,7 @@ export type { SynShowEvent } from '@synergy-design-system/components';
|
|
|
8
8
|
export type { SynHideEvent } from '@synergy-design-system/components';
|
|
9
9
|
export type { SynBlurEvent } from '@synergy-design-system/components';
|
|
10
10
|
export type { SynFocusEvent } from '@synergy-design-system/components';
|
|
11
|
-
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<
|
|
11
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
12
12
|
/**
|
|
13
13
|
* The navigation item's href target.
|
|
14
14
|
If provided, the navigation item will use an anchor tag otherwise it will use a button tag.
|
|
@@ -41,14 +41,14 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
41
41
|
Only available when horizontal is false.
|
|
42
42
|
*/
|
|
43
43
|
divider?: SynNavItem["divider"];
|
|
44
|
-
}
|
|
45
|
-
nativeElement: import("vue").Ref<SynNavItem | undefined>;
|
|
46
|
-
},
|
|
47
|
-
"syn-
|
|
48
|
-
"syn-
|
|
49
|
-
"syn-
|
|
50
|
-
"syn-
|
|
51
|
-
}, string, import("vue").PublicProps, Readonly<
|
|
44
|
+
}, {
|
|
45
|
+
nativeElement: import("vue").Ref<SynNavItem | undefined, SynNavItem | undefined>;
|
|
46
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
47
|
+
"syn-blur": (e: SynBlurEvent) => any;
|
|
48
|
+
"syn-focus": (e: SynFocusEvent) => any;
|
|
49
|
+
"syn-hide": (e: SynHideEvent) => any;
|
|
50
|
+
"syn-show": (e: SynShowEvent) => any;
|
|
51
|
+
}, string, import("vue").PublicProps, Readonly<{
|
|
52
52
|
/**
|
|
53
53
|
* The navigation item's href target.
|
|
54
54
|
If provided, the navigation item will use an anchor tag otherwise it will use a button tag.
|
|
@@ -81,12 +81,12 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
81
81
|
Only available when horizontal is false.
|
|
82
82
|
*/
|
|
83
83
|
divider?: SynNavItem["divider"];
|
|
84
|
-
}
|
|
85
|
-
"onSyn-show"?: ((e: SynShowEvent) => any) | undefined;
|
|
86
|
-
"onSyn-hide"?: ((e: SynHideEvent) => any) | undefined;
|
|
84
|
+
}> & Readonly<{
|
|
87
85
|
"onSyn-blur"?: ((e: SynBlurEvent) => any) | undefined;
|
|
88
86
|
"onSyn-focus"?: ((e: SynFocusEvent) => any) | undefined;
|
|
89
|
-
|
|
87
|
+
"onSyn-hide"?: ((e: SynHideEvent) => any) | undefined;
|
|
88
|
+
"onSyn-show"?: ((e: SynShowEvent) => any) | undefined;
|
|
89
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
|
|
90
90
|
default?(_: {}): any;
|
|
91
91
|
}>;
|
|
92
92
|
export default _default;
|
|
@@ -95,12 +95,3 @@ type __VLS_WithTemplateSlots<T, S> = T & {
|
|
|
95
95
|
$slots: S;
|
|
96
96
|
};
|
|
97
97
|
};
|
|
98
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
99
|
-
type __VLS_TypePropsToOption<T> = {
|
|
100
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
101
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
102
|
-
} : {
|
|
103
|
-
type: import('vue').PropType<T[K]>;
|
|
104
|
-
required: true;
|
|
105
|
-
};
|
|
106
|
-
};
|
|
@@ -1,9 +1,16 @@
|
|
|
1
1
|
import '@synergy-design-system/components/components/optgroup/optgroup.js';
|
|
2
2
|
import type { SynOptgroup } from '@synergy-design-system/components';
|
|
3
3
|
declare function __VLS_template(): {
|
|
4
|
-
|
|
4
|
+
slots: {
|
|
5
|
+
default?(_: {}): any;
|
|
6
|
+
};
|
|
7
|
+
refs: {
|
|
8
|
+
nativeElement: unknown;
|
|
9
|
+
};
|
|
10
|
+
attrs: Partial<{}>;
|
|
5
11
|
};
|
|
6
|
-
|
|
12
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
13
|
+
declare const __VLS_component: import("vue").DefineComponent<{
|
|
7
14
|
/**
|
|
8
15
|
* Disables all options in the optgroup.
|
|
9
16
|
*/
|
|
@@ -13,9 +20,9 @@ declare const __VLS_component: import("vue").DefineComponent<__VLS_TypePropsToOp
|
|
|
13
20
|
* If you need to display HTML, use the `label` slot instead.
|
|
14
21
|
*/
|
|
15
22
|
label?: SynOptgroup["label"];
|
|
16
|
-
}
|
|
17
|
-
nativeElement: import("vue").Ref<SynOptgroup | undefined>;
|
|
18
|
-
},
|
|
23
|
+
}, {
|
|
24
|
+
nativeElement: import("vue").Ref<SynOptgroup | undefined, SynOptgroup | undefined>;
|
|
25
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{
|
|
19
26
|
/**
|
|
20
27
|
* Disables all options in the optgroup.
|
|
21
28
|
*/
|
|
@@ -25,20 +32,11 @@ declare const __VLS_component: import("vue").DefineComponent<__VLS_TypePropsToOp
|
|
|
25
32
|
* If you need to display HTML, use the `label` slot instead.
|
|
26
33
|
*/
|
|
27
34
|
label?: SynOptgroup["label"];
|
|
28
|
-
}
|
|
29
|
-
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component,
|
|
35
|
+
}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
36
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
30
37
|
export default _default;
|
|
31
38
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
32
39
|
new (): {
|
|
33
40
|
$slots: S;
|
|
34
41
|
};
|
|
35
42
|
};
|
|
36
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
37
|
-
type __VLS_TypePropsToOption<T> = {
|
|
38
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
39
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
40
|
-
} : {
|
|
41
|
-
type: import('vue').PropType<T[K]>;
|
|
42
|
-
required: true;
|
|
43
|
-
};
|
|
44
|
-
};
|
|
@@ -1,9 +1,16 @@
|
|
|
1
1
|
import '@synergy-design-system/components/components/option/option.js';
|
|
2
2
|
import type { SynOption } from '@synergy-design-system/components';
|
|
3
3
|
declare function __VLS_template(): {
|
|
4
|
-
|
|
4
|
+
slots: {
|
|
5
|
+
default?(_: {}): any;
|
|
6
|
+
};
|
|
7
|
+
refs: {
|
|
8
|
+
nativeElement: unknown;
|
|
9
|
+
};
|
|
10
|
+
attrs: Partial<{}>;
|
|
5
11
|
};
|
|
6
|
-
|
|
12
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
13
|
+
declare const __VLS_component: import("vue").DefineComponent<{
|
|
7
14
|
/**
|
|
8
15
|
* The option's value.
|
|
9
16
|
* When selected, the containing form control will receive this value.
|
|
@@ -17,9 +24,9 @@ declare const __VLS_component: import("vue").DefineComponent<__VLS_TypePropsToOp
|
|
|
17
24
|
* Draws the option in a disabled state, preventing selection.
|
|
18
25
|
*/
|
|
19
26
|
disabled?: SynOption["disabled"];
|
|
20
|
-
}
|
|
21
|
-
nativeElement: import("vue").Ref<SynOption | undefined>;
|
|
22
|
-
},
|
|
27
|
+
}, {
|
|
28
|
+
nativeElement: import("vue").Ref<SynOption | undefined, SynOption | undefined>;
|
|
29
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{
|
|
23
30
|
/**
|
|
24
31
|
* The option's value.
|
|
25
32
|
* When selected, the containing form control will receive this value.
|
|
@@ -33,20 +40,11 @@ declare const __VLS_component: import("vue").DefineComponent<__VLS_TypePropsToOp
|
|
|
33
40
|
* Draws the option in a disabled state, preventing selection.
|
|
34
41
|
*/
|
|
35
42
|
disabled?: SynOption["disabled"];
|
|
36
|
-
}
|
|
37
|
-
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component,
|
|
43
|
+
}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
44
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
38
45
|
export default _default;
|
|
39
46
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
40
47
|
new (): {
|
|
41
48
|
$slots: S;
|
|
42
49
|
};
|
|
43
50
|
};
|
|
44
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
45
|
-
type __VLS_TypePropsToOption<T> = {
|
|
46
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
47
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
48
|
-
} : {
|
|
49
|
-
type: import('vue').PropType<T[K]>;
|
|
50
|
-
required: true;
|
|
51
|
-
};
|
|
52
|
-
};
|
|
@@ -2,7 +2,7 @@ import '@synergy-design-system/components/components/popup/popup.js';
|
|
|
2
2
|
import type { SynRepositionEvent } from '@synergy-design-system/components';
|
|
3
3
|
import type { SynPopup } from '@synergy-design-system/components';
|
|
4
4
|
export type { SynRepositionEvent } from '@synergy-design-system/components';
|
|
5
|
-
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<
|
|
5
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
6
6
|
/**
|
|
7
7
|
* The element the popup will be anchored to.
|
|
8
8
|
* If the anchor lives outside of the popup, you can provide the anchor
|
|
@@ -137,11 +137,11 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
137
137
|
active.
|
|
138
138
|
*/
|
|
139
139
|
hoverBridge?: SynPopup["hoverBridge"];
|
|
140
|
-
}
|
|
141
|
-
nativeElement: import("vue").Ref<SynPopup | undefined>;
|
|
142
|
-
},
|
|
143
|
-
"syn-reposition": (e: SynRepositionEvent) =>
|
|
144
|
-
}, string, import("vue").PublicProps, Readonly<
|
|
140
|
+
}, {
|
|
141
|
+
nativeElement: import("vue").Ref<SynPopup | undefined, SynPopup | undefined>;
|
|
142
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
143
|
+
"syn-reposition": (e: SynRepositionEvent) => any;
|
|
144
|
+
}, string, import("vue").PublicProps, Readonly<{
|
|
145
145
|
/**
|
|
146
146
|
* The element the popup will be anchored to.
|
|
147
147
|
* If the anchor lives outside of the popup, you can provide the anchor
|
|
@@ -276,9 +276,9 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
276
276
|
active.
|
|
277
277
|
*/
|
|
278
278
|
hoverBridge?: SynPopup["hoverBridge"];
|
|
279
|
-
}
|
|
279
|
+
}> & Readonly<{
|
|
280
280
|
"onSyn-reposition"?: ((e: SynRepositionEvent) => any) | undefined;
|
|
281
|
-
}, {}, {}>, {
|
|
281
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
|
|
282
282
|
default?(_: {}): any;
|
|
283
283
|
}>;
|
|
284
284
|
export default _default;
|
|
@@ -287,12 +287,3 @@ type __VLS_WithTemplateSlots<T, S> = T & {
|
|
|
287
287
|
$slots: S;
|
|
288
288
|
};
|
|
289
289
|
};
|
|
290
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
291
|
-
type __VLS_TypePropsToOption<T> = {
|
|
292
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
293
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
294
|
-
} : {
|
|
295
|
-
type: import('vue').PropType<T[K]>;
|
|
296
|
-
required: true;
|
|
297
|
-
};
|
|
298
|
-
};
|
|
@@ -1,12 +1,19 @@
|
|
|
1
1
|
import '@synergy-design-system/components/components/prio-nav/prio-nav.js';
|
|
2
2
|
import type { SynPrioNav } from '@synergy-design-system/components';
|
|
3
3
|
declare function __VLS_template(): {
|
|
4
|
-
|
|
4
|
+
slots: {
|
|
5
|
+
default?(_: {}): any;
|
|
6
|
+
};
|
|
7
|
+
refs: {
|
|
8
|
+
nativeElement: unknown;
|
|
9
|
+
};
|
|
10
|
+
attrs: Partial<{}>;
|
|
5
11
|
};
|
|
12
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
6
13
|
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").
|
|
9
|
-
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component,
|
|
14
|
+
nativeElement: import("vue").Ref<SynPrioNav | undefined, SynPrioNav | undefined>;
|
|
15
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
16
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
10
17
|
export default _default;
|
|
11
18
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
12
19
|
new (): {
|
|
@@ -1,9 +1,16 @@
|
|
|
1
1
|
import '@synergy-design-system/components/components/progress-bar/progress-bar.js';
|
|
2
2
|
import type { SynProgressBar } from '@synergy-design-system/components';
|
|
3
3
|
declare function __VLS_template(): {
|
|
4
|
-
|
|
4
|
+
slots: {
|
|
5
|
+
default?(_: {}): any;
|
|
6
|
+
};
|
|
7
|
+
refs: {
|
|
8
|
+
nativeElement: unknown;
|
|
9
|
+
};
|
|
10
|
+
attrs: Partial<{}>;
|
|
5
11
|
};
|
|
6
|
-
|
|
12
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
13
|
+
declare const __VLS_component: import("vue").DefineComponent<{
|
|
7
14
|
/**
|
|
8
15
|
* The current progress as a percentage, 0 to 100.
|
|
9
16
|
*/
|
|
@@ -16,9 +23,9 @@ declare const __VLS_component: import("vue").DefineComponent<__VLS_TypePropsToOp
|
|
|
16
23
|
* A custom label for assistive devices.
|
|
17
24
|
*/
|
|
18
25
|
label?: SynProgressBar["label"];
|
|
19
|
-
}
|
|
20
|
-
nativeElement: import("vue").Ref<SynProgressBar | undefined>;
|
|
21
|
-
},
|
|
26
|
+
}, {
|
|
27
|
+
nativeElement: import("vue").Ref<SynProgressBar | undefined, SynProgressBar | undefined>;
|
|
28
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{
|
|
22
29
|
/**
|
|
23
30
|
* The current progress as a percentage, 0 to 100.
|
|
24
31
|
*/
|
|
@@ -31,20 +38,11 @@ declare const __VLS_component: import("vue").DefineComponent<__VLS_TypePropsToOp
|
|
|
31
38
|
* A custom label for assistive devices.
|
|
32
39
|
*/
|
|
33
40
|
label?: SynProgressBar["label"];
|
|
34
|
-
}
|
|
35
|
-
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component,
|
|
41
|
+
}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
42
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
36
43
|
export default _default;
|
|
37
44
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
38
45
|
new (): {
|
|
39
46
|
$slots: S;
|
|
40
47
|
};
|
|
41
48
|
};
|
|
42
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
43
|
-
type __VLS_TypePropsToOption<T> = {
|
|
44
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
45
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
46
|
-
} : {
|
|
47
|
-
type: import('vue').PropType<T[K]>;
|
|
48
|
-
required: true;
|
|
49
|
-
};
|
|
50
|
-
};
|
|
@@ -1,9 +1,16 @@
|
|
|
1
1
|
import '@synergy-design-system/components/components/progress-ring/progress-ring.js';
|
|
2
2
|
import type { SynProgressRing } from '@synergy-design-system/components';
|
|
3
3
|
declare function __VLS_template(): {
|
|
4
|
-
|
|
4
|
+
slots: {
|
|
5
|
+
default?(_: {}): any;
|
|
6
|
+
};
|
|
7
|
+
refs: {
|
|
8
|
+
nativeElement: unknown;
|
|
9
|
+
};
|
|
10
|
+
attrs: Partial<{}>;
|
|
5
11
|
};
|
|
6
|
-
|
|
12
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
13
|
+
declare const __VLS_component: import("vue").DefineComponent<{
|
|
7
14
|
/**
|
|
8
15
|
* The current progress as a percentage, 0 to 100.
|
|
9
16
|
*/
|
|
@@ -12,9 +19,9 @@ declare const __VLS_component: import("vue").DefineComponent<__VLS_TypePropsToOp
|
|
|
12
19
|
* A custom label for assistive devices.
|
|
13
20
|
*/
|
|
14
21
|
label?: SynProgressRing["label"];
|
|
15
|
-
}
|
|
16
|
-
nativeElement: import("vue").Ref<SynProgressRing | undefined>;
|
|
17
|
-
},
|
|
22
|
+
}, {
|
|
23
|
+
nativeElement: import("vue").Ref<SynProgressRing | undefined, SynProgressRing | undefined>;
|
|
24
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{
|
|
18
25
|
/**
|
|
19
26
|
* The current progress as a percentage, 0 to 100.
|
|
20
27
|
*/
|
|
@@ -23,20 +30,11 @@ declare const __VLS_component: import("vue").DefineComponent<__VLS_TypePropsToOp
|
|
|
23
30
|
* A custom label for assistive devices.
|
|
24
31
|
*/
|
|
25
32
|
label?: SynProgressRing["label"];
|
|
26
|
-
}
|
|
27
|
-
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component,
|
|
33
|
+
}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
34
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
28
35
|
export default _default;
|
|
29
36
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
30
37
|
new (): {
|
|
31
38
|
$slots: S;
|
|
32
39
|
};
|
|
33
40
|
};
|
|
34
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
35
|
-
type __VLS_TypePropsToOption<T> = {
|
|
36
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
37
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
38
|
-
} : {
|
|
39
|
-
type: import('vue').PropType<T[K]>;
|
|
40
|
-
required: true;
|
|
41
|
-
};
|
|
42
|
-
};
|
|
@@ -4,7 +4,7 @@ import type { SynFocusEvent } from '@synergy-design-system/components';
|
|
|
4
4
|
import type { SynRadio } from '@synergy-design-system/components';
|
|
5
5
|
export type { SynBlurEvent } from '@synergy-design-system/components';
|
|
6
6
|
export type { SynFocusEvent } from '@synergy-design-system/components';
|
|
7
|
-
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<
|
|
7
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
8
8
|
/**
|
|
9
9
|
* The radio's value.
|
|
10
10
|
* When selected, the radio group will receive this value.
|
|
@@ -20,12 +20,12 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
20
20
|
* Disables the radio.
|
|
21
21
|
*/
|
|
22
22
|
disabled?: SynRadio["disabled"];
|
|
23
|
-
}
|
|
24
|
-
nativeElement: import("vue").Ref<SynRadio | undefined>;
|
|
25
|
-
},
|
|
26
|
-
"syn-blur": (e: SynBlurEvent) =>
|
|
27
|
-
"syn-focus": (e: SynFocusEvent) =>
|
|
28
|
-
}, string, import("vue").PublicProps, Readonly<
|
|
23
|
+
}, {
|
|
24
|
+
nativeElement: import("vue").Ref<SynRadio | undefined, SynRadio | undefined>;
|
|
25
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
26
|
+
"syn-blur": (e: SynBlurEvent) => any;
|
|
27
|
+
"syn-focus": (e: SynFocusEvent) => any;
|
|
28
|
+
}, string, import("vue").PublicProps, Readonly<{
|
|
29
29
|
/**
|
|
30
30
|
* The radio's value.
|
|
31
31
|
* When selected, the radio group will receive this value.
|
|
@@ -41,10 +41,10 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
41
41
|
* Disables the radio.
|
|
42
42
|
*/
|
|
43
43
|
disabled?: SynRadio["disabled"];
|
|
44
|
-
}
|
|
44
|
+
}> & Readonly<{
|
|
45
45
|
"onSyn-blur"?: ((e: SynBlurEvent) => any) | undefined;
|
|
46
46
|
"onSyn-focus"?: ((e: SynFocusEvent) => any) | undefined;
|
|
47
|
-
}, {}, {}>, {
|
|
47
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
|
|
48
48
|
default?(_: {}): any;
|
|
49
49
|
}>;
|
|
50
50
|
export default _default;
|
|
@@ -53,12 +53,3 @@ type __VLS_WithTemplateSlots<T, S> = T & {
|
|
|
53
53
|
$slots: S;
|
|
54
54
|
};
|
|
55
55
|
};
|
|
56
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
57
|
-
type __VLS_TypePropsToOption<T> = {
|
|
58
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
59
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
60
|
-
} : {
|
|
61
|
-
type: import('vue').PropType<T[K]>;
|
|
62
|
-
required: true;
|
|
63
|
-
};
|
|
64
|
-
};
|
|
@@ -4,7 +4,7 @@ import type { SynFocusEvent } from '@synergy-design-system/components';
|
|
|
4
4
|
import type { SynRadioButton } from '@synergy-design-system/components';
|
|
5
5
|
export type { SynBlurEvent } from '@synergy-design-system/components';
|
|
6
6
|
export type { SynFocusEvent } from '@synergy-design-system/components';
|
|
7
|
-
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<
|
|
7
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
8
8
|
/**
|
|
9
9
|
* The radio's value.
|
|
10
10
|
* When selected, the radio group will receive this value.
|
|
@@ -24,12 +24,12 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
24
24
|
* Draws a pill-style radio button with rounded edges.
|
|
25
25
|
*/
|
|
26
26
|
pill?: SynRadioButton["pill"];
|
|
27
|
-
}
|
|
28
|
-
nativeElement: import("vue").Ref<SynRadioButton | undefined>;
|
|
29
|
-
},
|
|
30
|
-
"syn-blur": (e: SynBlurEvent) =>
|
|
31
|
-
"syn-focus": (e: SynFocusEvent) =>
|
|
32
|
-
}, string, import("vue").PublicProps, Readonly<
|
|
27
|
+
}, {
|
|
28
|
+
nativeElement: import("vue").Ref<SynRadioButton | undefined, SynRadioButton | undefined>;
|
|
29
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
30
|
+
"syn-blur": (e: SynBlurEvent) => any;
|
|
31
|
+
"syn-focus": (e: SynFocusEvent) => any;
|
|
32
|
+
}, string, import("vue").PublicProps, Readonly<{
|
|
33
33
|
/**
|
|
34
34
|
* The radio's value.
|
|
35
35
|
* When selected, the radio group will receive this value.
|
|
@@ -49,10 +49,10 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
49
49
|
* Draws a pill-style radio button with rounded edges.
|
|
50
50
|
*/
|
|
51
51
|
pill?: SynRadioButton["pill"];
|
|
52
|
-
}
|
|
52
|
+
}> & Readonly<{
|
|
53
53
|
"onSyn-blur"?: ((e: SynBlurEvent) => any) | undefined;
|
|
54
54
|
"onSyn-focus"?: ((e: SynFocusEvent) => any) | undefined;
|
|
55
|
-
}, {}, {}>, {
|
|
55
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
|
|
56
56
|
default?(_: {}): any;
|
|
57
57
|
}>;
|
|
58
58
|
export default _default;
|
|
@@ -61,12 +61,3 @@ type __VLS_WithTemplateSlots<T, S> = T & {
|
|
|
61
61
|
$slots: S;
|
|
62
62
|
};
|
|
63
63
|
};
|
|
64
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
65
|
-
type __VLS_TypePropsToOption<T> = {
|
|
66
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
67
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
68
|
-
} : {
|
|
69
|
-
type: import('vue').PropType<T[K]>;
|
|
70
|
-
required: true;
|
|
71
|
-
};
|
|
72
|
-
};
|
|
@@ -6,7 +6,7 @@ import type { SynRadioGroup } from '@synergy-design-system/components';
|
|
|
6
6
|
export type { SynChangeEvent } from '@synergy-design-system/components';
|
|
7
7
|
export type { SynInputEvent } from '@synergy-design-system/components';
|
|
8
8
|
export type { SynInvalidEvent } from '@synergy-design-system/components';
|
|
9
|
-
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<
|
|
9
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
10
10
|
/**
|
|
11
11
|
* The radio group's label.
|
|
12
12
|
* Required for proper accessibility.
|
|
@@ -48,14 +48,14 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
48
48
|
* Support for two way data binding
|
|
49
49
|
*/
|
|
50
50
|
modelValue?: SynRadioGroup["value"];
|
|
51
|
-
}
|
|
52
|
-
nativeElement: import("vue").Ref<SynRadioGroup | undefined>;
|
|
53
|
-
},
|
|
54
|
-
"syn-
|
|
55
|
-
"syn-
|
|
56
|
-
"syn-
|
|
57
|
-
"update:modelValue": (newValue: string) =>
|
|
58
|
-
}, string, import("vue").PublicProps, Readonly<
|
|
51
|
+
}, {
|
|
52
|
+
nativeElement: import("vue").Ref<SynRadioGroup | undefined, SynRadioGroup | undefined>;
|
|
53
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
54
|
+
"syn-change": (e: SynChangeEvent) => any;
|
|
55
|
+
"syn-input": (e: SynInputEvent) => any;
|
|
56
|
+
"syn-invalid": (e: SynInvalidEvent) => any;
|
|
57
|
+
"update:modelValue": (newValue: string) => any;
|
|
58
|
+
}, string, import("vue").PublicProps, Readonly<{
|
|
59
59
|
/**
|
|
60
60
|
* The radio group's label.
|
|
61
61
|
* Required for proper accessibility.
|
|
@@ -97,12 +97,12 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
97
97
|
* Support for two way data binding
|
|
98
98
|
*/
|
|
99
99
|
modelValue?: SynRadioGroup["value"];
|
|
100
|
-
}
|
|
101
|
-
"onSyn-invalid"?: ((e: SynInvalidEvent) => any) | undefined;
|
|
100
|
+
}> & Readonly<{
|
|
102
101
|
"onSyn-change"?: ((e: SynChangeEvent) => any) | undefined;
|
|
103
102
|
"onSyn-input"?: ((e: SynInputEvent) => any) | undefined;
|
|
103
|
+
"onSyn-invalid"?: ((e: SynInvalidEvent) => any) | undefined;
|
|
104
104
|
"onUpdate:modelValue"?: ((newValue: string) => any) | undefined;
|
|
105
|
-
}, {}, {}>, {
|
|
105
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
|
|
106
106
|
default?(_: {}): any;
|
|
107
107
|
}>;
|
|
108
108
|
export default _default;
|
|
@@ -111,12 +111,3 @@ type __VLS_WithTemplateSlots<T, S> = T & {
|
|
|
111
111
|
$slots: S;
|
|
112
112
|
};
|
|
113
113
|
};
|
|
114
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
115
|
-
type __VLS_TypePropsToOption<T> = {
|
|
116
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
117
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
118
|
-
} : {
|
|
119
|
-
type: import('vue').PropType<T[K]>;
|
|
120
|
-
required: true;
|
|
121
|
-
};
|
|
122
|
-
};
|