@synergy-design-system/vue 1.17.0 → 1.17.2
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/SynVueBadge.vue.d.ts +9 -8
- package/dist/components/SynVueButton.vue.d.ts +10 -10
- package/dist/components/SynVueButtonGroup.vue.d.ts +8 -8
- package/dist/components/SynVueCheckbox.vue.d.ts +8 -8
- package/dist/components/SynVueDivider.vue.d.ts +3 -3
- package/dist/components/SynVueDrawer.vue.d.ts +8 -8
- package/dist/components/SynVueDropdown.vue.d.ts +8 -8
- package/dist/components/SynVueHeader.vue.d.ts +8 -8
- package/dist/components/SynVueIcon.vue.d.ts +3 -3
- package/dist/components/SynVueIconButton.vue.d.ts +3 -3
- package/dist/components/SynVueInput.vue.d.ts +13 -13
- package/dist/components/SynVueMenuItem.vue.d.ts +8 -8
- package/dist/components/SynVueNavItem.vue.d.ts +8 -8
- package/dist/components/SynVueOptgroup.vue.d.ts +8 -8
- package/dist/components/SynVueOption.vue.d.ts +8 -8
- package/dist/components/SynVuePopup.vue.d.ts +10 -10
- package/dist/components/SynVuePrioNav.vue.d.ts +8 -8
- package/dist/components/SynVueRadio.vue.d.ts +8 -8
- package/dist/components/SynVueRadioButton.vue.d.ts +8 -8
- package/dist/components/SynVueRadioGroup.vue.d.ts +8 -8
- package/dist/components/SynVueSelect.vue.d.ts +8 -8
- package/dist/components/SynVueSideNav.vue.d.ts +8 -8
- package/dist/components/SynVueSwitch.vue.d.ts +8 -8
- package/dist/components/SynVueTag.vue.d.ts +8 -8
- package/dist/components/SynVueTextarea.vue.d.ts +100 -14
- package/package.json +3 -3
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import '@synergy-design-system/components/components/badge/badge.js';
|
|
2
|
-
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<
|
|
2
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_TypePropsToOption<{
|
|
3
3
|
/**
|
|
4
4
|
* The badge's theme variant.
|
|
5
5
|
*/
|
|
6
6
|
variant?: "primary" | "success" | "neutral" | "warning" | "danger" | undefined;
|
|
7
|
-
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<
|
|
7
|
+
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<{
|
|
8
8
|
/**
|
|
9
9
|
* The badge's theme variant.
|
|
10
10
|
*/
|
|
@@ -13,8 +13,14 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
13
13
|
default?(_: {}): any;
|
|
14
14
|
}>;
|
|
15
15
|
export default _default;
|
|
16
|
+
|
|
17
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
18
|
+
new (): {
|
|
19
|
+
$slots: S;
|
|
20
|
+
};
|
|
21
|
+
};
|
|
16
22
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
17
|
-
type
|
|
23
|
+
type __VLS_TypePropsToOption<T> = {
|
|
18
24
|
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
19
25
|
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
20
26
|
} : {
|
|
@@ -22,8 +28,3 @@ type __VLS_TypePropsToRuntimeProps<T> = {
|
|
|
22
28
|
required: true;
|
|
23
29
|
};
|
|
24
30
|
};
|
|
25
|
-
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
26
|
-
new (): {
|
|
27
|
-
$slots: S;
|
|
28
|
-
};
|
|
29
|
-
};
|
|
@@ -3,12 +3,12 @@ import type { SynBlurEvent, SynButton, SynFocusEvent, SynInvalidEvent } from '@s
|
|
|
3
3
|
export type { SynBlurEvent } from '@synergy-design-system/components';
|
|
4
4
|
export type { SynFocusEvent } from '@synergy-design-system/components';
|
|
5
5
|
export type { SynInvalidEvent } from '@synergy-design-system/components';
|
|
6
|
-
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<
|
|
6
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_TypePropsToOption<{
|
|
7
7
|
title?: string | undefined;
|
|
8
8
|
/**
|
|
9
9
|
* The button's theme variant.
|
|
10
10
|
*/
|
|
11
|
-
variant?: "
|
|
11
|
+
variant?: "text" | "filled" | "outline" | undefined;
|
|
12
12
|
/**
|
|
13
13
|
* The button's size.
|
|
14
14
|
*/
|
|
@@ -108,12 +108,12 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
108
108
|
"syn-blur": (e: SynBlurEvent) => void;
|
|
109
109
|
"syn-focus": (e: SynFocusEvent) => void;
|
|
110
110
|
"syn-invalid": (e: SynInvalidEvent) => void;
|
|
111
|
-
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<
|
|
111
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<{
|
|
112
112
|
title?: string | undefined;
|
|
113
113
|
/**
|
|
114
114
|
* The button's theme variant.
|
|
115
115
|
*/
|
|
116
|
-
variant?: "
|
|
116
|
+
variant?: "text" | "filled" | "outline" | undefined;
|
|
117
117
|
/**
|
|
118
118
|
* The button's size.
|
|
119
119
|
*/
|
|
@@ -210,8 +210,13 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
210
210
|
suffix?(_: {}): any;
|
|
211
211
|
}>;
|
|
212
212
|
export default _default;
|
|
213
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
214
|
+
new (): {
|
|
215
|
+
$slots: S;
|
|
216
|
+
};
|
|
217
|
+
};
|
|
213
218
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
214
|
-
type
|
|
219
|
+
type __VLS_TypePropsToOption<T> = {
|
|
215
220
|
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
216
221
|
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
217
222
|
} : {
|
|
@@ -219,8 +224,3 @@ type __VLS_TypePropsToRuntimeProps<T> = {
|
|
|
219
224
|
required: true;
|
|
220
225
|
};
|
|
221
226
|
};
|
|
222
|
-
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
223
|
-
new (): {
|
|
224
|
-
$slots: S;
|
|
225
|
-
};
|
|
226
|
-
};
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import '@synergy-design-system/components/components/button-group/button-group.js';
|
|
2
|
-
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<
|
|
2
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_TypePropsToOption<{
|
|
3
3
|
/**
|
|
4
4
|
* A label to use for the button group.
|
|
5
5
|
* This won't be displayed on the screen, but it will be announced by assistive
|
|
6
6
|
devices when interacting with the control and is strongly recommended.
|
|
7
7
|
*/
|
|
8
8
|
label?: string | undefined;
|
|
9
|
-
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<
|
|
9
|
+
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<{
|
|
10
10
|
/**
|
|
11
11
|
* A label to use for the button group.
|
|
12
12
|
* This won't be displayed on the screen, but it will be announced by assistive
|
|
@@ -17,8 +17,13 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
17
17
|
default?(_: {}): any;
|
|
18
18
|
}>;
|
|
19
19
|
export default _default;
|
|
20
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
21
|
+
new (): {
|
|
22
|
+
$slots: S;
|
|
23
|
+
};
|
|
24
|
+
};
|
|
20
25
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
21
|
-
type
|
|
26
|
+
type __VLS_TypePropsToOption<T> = {
|
|
22
27
|
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
23
28
|
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
24
29
|
} : {
|
|
@@ -26,8 +31,3 @@ type __VLS_TypePropsToRuntimeProps<T> = {
|
|
|
26
31
|
required: true;
|
|
27
32
|
};
|
|
28
33
|
};
|
|
29
|
-
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
30
|
-
new (): {
|
|
31
|
-
$slots: S;
|
|
32
|
-
};
|
|
33
|
-
};
|
|
@@ -5,7 +5,7 @@ export type { SynChangeEvent } from '@synergy-design-system/components';
|
|
|
5
5
|
export type { SynFocusEvent } from '@synergy-design-system/components';
|
|
6
6
|
export type { SynInputEvent } from '@synergy-design-system/components';
|
|
7
7
|
export type { SynInvalidEvent } from '@synergy-design-system/components';
|
|
8
|
-
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<
|
|
8
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_TypePropsToOption<{
|
|
9
9
|
title?: string | undefined;
|
|
10
10
|
/**
|
|
11
11
|
* The name of the checkbox, submitted as a name/value pair with form data.
|
|
@@ -71,7 +71,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
71
71
|
"syn-change": (e: SynChangeEvent) => void;
|
|
72
72
|
"syn-input": (e: SynInputEvent) => void;
|
|
73
73
|
"update:modelValue": (newValue: boolean) => void;
|
|
74
|
-
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<
|
|
74
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<{
|
|
75
75
|
title?: string | undefined;
|
|
76
76
|
/**
|
|
77
77
|
* The name of the checkbox, submitted as a name/value pair with form data.
|
|
@@ -132,8 +132,13 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
132
132
|
"help-text"?(_: {}): any;
|
|
133
133
|
}>;
|
|
134
134
|
export default _default;
|
|
135
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
136
|
+
new (): {
|
|
137
|
+
$slots: S;
|
|
138
|
+
};
|
|
139
|
+
};
|
|
135
140
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
136
|
-
type
|
|
141
|
+
type __VLS_TypePropsToOption<T> = {
|
|
137
142
|
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
138
143
|
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
139
144
|
} : {
|
|
@@ -141,8 +146,3 @@ type __VLS_TypePropsToRuntimeProps<T> = {
|
|
|
141
146
|
required: true;
|
|
142
147
|
};
|
|
143
148
|
};
|
|
144
|
-
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
145
|
-
new (): {
|
|
146
|
-
$slots: S;
|
|
147
|
-
};
|
|
148
|
-
};
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import '@synergy-design-system/components/components/divider/divider.js';
|
|
2
|
-
declare const _default: import("vue").DefineComponent<
|
|
2
|
+
declare const _default: import("vue").DefineComponent<__VLS_TypePropsToOption<{
|
|
3
3
|
/**
|
|
4
4
|
* Draws the divider in a vertical orientation.
|
|
5
5
|
*/
|
|
6
6
|
vertical?: boolean | undefined;
|
|
7
7
|
}>, {
|
|
8
8
|
callHandleVerticalChange: () => void | undefined;
|
|
9
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<
|
|
9
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<{
|
|
10
10
|
/**
|
|
11
11
|
* Draws the divider in a vertical orientation.
|
|
12
12
|
*/
|
|
@@ -14,7 +14,7 @@ declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimePr
|
|
|
14
14
|
}>>>, {}, {}>;
|
|
15
15
|
export default _default;
|
|
16
16
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
17
|
-
type
|
|
17
|
+
type __VLS_TypePropsToOption<T> = {
|
|
18
18
|
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
19
19
|
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
20
20
|
} : {
|
|
@@ -6,7 +6,7 @@ export type { SynHideEvent } from '@synergy-design-system/components';
|
|
|
6
6
|
export type { SynAfterHideEvent } from '@synergy-design-system/components';
|
|
7
7
|
export type { SynInitialFocusEvent } from '@synergy-design-system/components';
|
|
8
8
|
export type { SynRequestCloseEvent } from '@synergy-design-system/components';
|
|
9
|
-
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<
|
|
9
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_TypePropsToOption<{
|
|
10
10
|
/**
|
|
11
11
|
* Indicates whether or not the drawer is open.
|
|
12
12
|
* You can toggle this attribute to show and hide the drawer, or you can
|
|
@@ -48,7 +48,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
48
48
|
"syn-after-hide": (e: SynAfterHideEvent) => void;
|
|
49
49
|
"syn-initial-focus": (e: SynInitialFocusEvent) => void;
|
|
50
50
|
"syn-request-close": (e: SynRequestCloseEvent) => void;
|
|
51
|
-
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<
|
|
51
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<{
|
|
52
52
|
/**
|
|
53
53
|
* Indicates whether or not the drawer is open.
|
|
54
54
|
* You can toggle this attribute to show and hide the drawer, or you can
|
|
@@ -92,8 +92,13 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
92
92
|
footer?(_: {}): any;
|
|
93
93
|
}>;
|
|
94
94
|
export default _default;
|
|
95
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
96
|
+
new (): {
|
|
97
|
+
$slots: S;
|
|
98
|
+
};
|
|
99
|
+
};
|
|
95
100
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
96
|
-
type
|
|
101
|
+
type __VLS_TypePropsToOption<T> = {
|
|
97
102
|
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
98
103
|
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
99
104
|
} : {
|
|
@@ -101,8 +106,3 @@ type __VLS_TypePropsToRuntimeProps<T> = {
|
|
|
101
106
|
required: true;
|
|
102
107
|
};
|
|
103
108
|
};
|
|
104
|
-
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
105
|
-
new (): {
|
|
106
|
-
$slots: S;
|
|
107
|
-
};
|
|
108
|
-
};
|
|
@@ -4,7 +4,7 @@ export type { SynShowEvent } from '@synergy-design-system/components';
|
|
|
4
4
|
export type { SynAfterShowEvent } from '@synergy-design-system/components';
|
|
5
5
|
export type { SynHideEvent } from '@synergy-design-system/components';
|
|
6
6
|
export type { SynAfterHideEvent } from '@synergy-design-system/components';
|
|
7
|
-
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<
|
|
7
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_TypePropsToOption<{
|
|
8
8
|
/**
|
|
9
9
|
* Indicates whether or not the dropdown is open.
|
|
10
10
|
* You can toggle this attribute to show and hide the dropdown, or you
|
|
@@ -65,7 +65,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
65
65
|
"syn-after-show": (e: SynAfterShowEvent) => void;
|
|
66
66
|
"syn-hide": (e: SynHideEvent) => void;
|
|
67
67
|
"syn-after-hide": (e: SynAfterHideEvent) => void;
|
|
68
|
-
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<
|
|
68
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<{
|
|
69
69
|
/**
|
|
70
70
|
* Indicates whether or not the dropdown is open.
|
|
71
71
|
* You can toggle this attribute to show and hide the dropdown, or you
|
|
@@ -117,8 +117,13 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
117
117
|
trigger?(_: {}): any;
|
|
118
118
|
}>;
|
|
119
119
|
export default _default;
|
|
120
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
121
|
+
new (): {
|
|
122
|
+
$slots: S;
|
|
123
|
+
};
|
|
124
|
+
};
|
|
120
125
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
121
|
-
type
|
|
126
|
+
type __VLS_TypePropsToOption<T> = {
|
|
122
127
|
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
123
128
|
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
124
129
|
} : {
|
|
@@ -126,8 +131,3 @@ type __VLS_TypePropsToRuntimeProps<T> = {
|
|
|
126
131
|
required: true;
|
|
127
132
|
};
|
|
128
133
|
};
|
|
129
|
-
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
130
|
-
new (): {
|
|
131
|
-
$slots: S;
|
|
132
|
-
};
|
|
133
|
-
};
|
|
@@ -2,7 +2,7 @@ import '@synergy-design-system/components/components/header/header.js';
|
|
|
2
2
|
import type { SynBurgerMenuHideEvent, SynBurgerMenuShowEvent } from '@synergy-design-system/components';
|
|
3
3
|
export type { SynBurgerMenuShowEvent } from '@synergy-design-system/components';
|
|
4
4
|
export type { SynBurgerMenuHideEvent } from '@synergy-design-system/components';
|
|
5
|
-
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<
|
|
5
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_TypePropsToOption<{
|
|
6
6
|
/**
|
|
7
7
|
* The headers label.
|
|
8
8
|
* If you need to display HTML, use the `default` slot instead.
|
|
@@ -23,7 +23,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
23
23
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
24
24
|
"syn-burger-menu-show": (e: SynBurgerMenuShowEvent) => void;
|
|
25
25
|
"syn-burger-menu-hide": (e: SynBurgerMenuHideEvent) => void;
|
|
26
|
-
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<
|
|
26
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<{
|
|
27
27
|
/**
|
|
28
28
|
* The headers label.
|
|
29
29
|
* If you need to display HTML, use the `default` slot instead.
|
|
@@ -50,8 +50,13 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
50
50
|
"hide-burger-menu"?(_: {}): any;
|
|
51
51
|
}>;
|
|
52
52
|
export default _default;
|
|
53
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
54
|
+
new (): {
|
|
55
|
+
$slots: S;
|
|
56
|
+
};
|
|
57
|
+
};
|
|
53
58
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
54
|
-
type
|
|
59
|
+
type __VLS_TypePropsToOption<T> = {
|
|
55
60
|
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
56
61
|
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
57
62
|
} : {
|
|
@@ -59,8 +64,3 @@ type __VLS_TypePropsToRuntimeProps<T> = {
|
|
|
59
64
|
required: true;
|
|
60
65
|
};
|
|
61
66
|
};
|
|
62
|
-
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
63
|
-
new (): {
|
|
64
|
-
$slots: S;
|
|
65
|
-
};
|
|
66
|
-
};
|
|
@@ -2,7 +2,7 @@ import '@synergy-design-system/components/components/icon/icon.js';
|
|
|
2
2
|
import type { SynErrorEvent, SynIcon, SynLoadEvent } from '@synergy-design-system/components';
|
|
3
3
|
export type { SynLoadEvent } from '@synergy-design-system/components';
|
|
4
4
|
export type { SynErrorEvent } from '@synergy-design-system/components';
|
|
5
|
-
declare const _default: import("vue").DefineComponent<
|
|
5
|
+
declare const _default: import("vue").DefineComponent<__VLS_TypePropsToOption<{
|
|
6
6
|
/**
|
|
7
7
|
* The name of the icon to draw.
|
|
8
8
|
* Available names depend on the icon library being used.
|
|
@@ -30,7 +30,7 @@ declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimePr
|
|
|
30
30
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
31
31
|
"syn-load": (e: SynLoadEvent) => void;
|
|
32
32
|
"syn-error": (e: SynErrorEvent) => void;
|
|
33
|
-
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<
|
|
33
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<{
|
|
34
34
|
/**
|
|
35
35
|
* The name of the icon to draw.
|
|
36
36
|
* Available names depend on the icon library being used.
|
|
@@ -58,7 +58,7 @@ declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimePr
|
|
|
58
58
|
}, {}, {}>;
|
|
59
59
|
export default _default;
|
|
60
60
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
61
|
-
type
|
|
61
|
+
type __VLS_TypePropsToOption<T> = {
|
|
62
62
|
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
63
63
|
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
64
64
|
} : {
|
|
@@ -2,7 +2,7 @@ import '@synergy-design-system/components/components/icon-button/icon-button.js'
|
|
|
2
2
|
import type { SynBlurEvent, SynFocusEvent, SynIconButton } from '@synergy-design-system/components';
|
|
3
3
|
export type { SynBlurEvent } from '@synergy-design-system/components';
|
|
4
4
|
export type { SynFocusEvent } from '@synergy-design-system/components';
|
|
5
|
-
declare const _default: import("vue").DefineComponent<
|
|
5
|
+
declare const _default: import("vue").DefineComponent<__VLS_TypePropsToOption<{
|
|
6
6
|
/**
|
|
7
7
|
* The name of the icon to draw.
|
|
8
8
|
* Available names depend on the icon library being used.
|
|
@@ -58,7 +58,7 @@ declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimePr
|
|
|
58
58
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
59
59
|
"syn-blur": (e: SynBlurEvent) => void;
|
|
60
60
|
"syn-focus": (e: SynFocusEvent) => void;
|
|
61
|
-
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<
|
|
61
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<{
|
|
62
62
|
/**
|
|
63
63
|
* The name of the icon to draw.
|
|
64
64
|
* Available names depend on the icon library being used.
|
|
@@ -113,7 +113,7 @@ declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimePr
|
|
|
113
113
|
}, {}, {}>;
|
|
114
114
|
export default _default;
|
|
115
115
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
116
|
-
type
|
|
116
|
+
type __VLS_TypePropsToOption<T> = {
|
|
117
117
|
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
118
118
|
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
119
119
|
} : {
|
|
@@ -6,7 +6,7 @@ export type { SynClearEvent } from '@synergy-design-system/components';
|
|
|
6
6
|
export type { SynFocusEvent } 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<__VLS_TypePropsToOption<{
|
|
10
10
|
title?: string | undefined;
|
|
11
11
|
/**
|
|
12
12
|
* The type of input.
|
|
@@ -14,7 +14,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
14
14
|
* Defaults
|
|
15
15
|
to `text`.
|
|
16
16
|
*/
|
|
17
|
-
type?: "number" | "
|
|
17
|
+
type?: "number" | "search" | "time" | "text" | "date" | "datetime-local" | "email" | "password" | "tel" | "url" | undefined;
|
|
18
18
|
/**
|
|
19
19
|
* The name of the input, submitted as a name/value pair with form data.
|
|
20
20
|
*/
|
|
@@ -137,7 +137,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
137
137
|
* Tells the browser what type of data will be entered by the user, allowing it to display the appropriate virtual
|
|
138
138
|
keyboard on supportive devices.
|
|
139
139
|
*/
|
|
140
|
-
inputmode?: "
|
|
140
|
+
inputmode?: "search" | "text" | "email" | "tel" | "url" | "none" | "decimal" | "numeric" | undefined;
|
|
141
141
|
/**
|
|
142
142
|
* Support for two way data binding
|
|
143
143
|
*/
|
|
@@ -150,7 +150,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
150
150
|
callBlur: () => void | undefined;
|
|
151
151
|
callSelect: () => void | undefined;
|
|
152
152
|
callSetSelectionRange: (selectionStart: number, selectionEnd: number, selectionDirection?: "none" | "forward" | "backward" | undefined) => void | undefined;
|
|
153
|
-
callSetRangeText: (replacement: string, start?: number | undefined, end?: number | undefined, selectMode?: "
|
|
153
|
+
callSetRangeText: (replacement: string, start?: number | undefined, end?: number | undefined, selectMode?: "select" | "end" | "start" | "preserve" | undefined) => void | undefined;
|
|
154
154
|
callShowPicker: () => void | undefined;
|
|
155
155
|
callStepUp: () => void | undefined;
|
|
156
156
|
callStepDown: () => void | undefined;
|
|
@@ -166,7 +166,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
166
166
|
"syn-input": (e: SynInputEvent) => void;
|
|
167
167
|
"update:modelValue": (newValue: string) => void;
|
|
168
168
|
"syn-clear": (e: SynClearEvent) => void;
|
|
169
|
-
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<
|
|
169
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<{
|
|
170
170
|
title?: string | undefined;
|
|
171
171
|
/**
|
|
172
172
|
* The type of input.
|
|
@@ -174,7 +174,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
174
174
|
* Defaults
|
|
175
175
|
to `text`.
|
|
176
176
|
*/
|
|
177
|
-
type?: "number" | "
|
|
177
|
+
type?: "number" | "search" | "time" | "text" | "date" | "datetime-local" | "email" | "password" | "tel" | "url" | undefined;
|
|
178
178
|
/**
|
|
179
179
|
* The name of the input, submitted as a name/value pair with form data.
|
|
180
180
|
*/
|
|
@@ -297,7 +297,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
297
297
|
* Tells the browser what type of data will be entered by the user, allowing it to display the appropriate virtual
|
|
298
298
|
keyboard on supportive devices.
|
|
299
299
|
*/
|
|
300
|
-
inputmode?: "
|
|
300
|
+
inputmode?: "search" | "text" | "email" | "tel" | "url" | "none" | "decimal" | "numeric" | undefined;
|
|
301
301
|
/**
|
|
302
302
|
* Support for two way data binding
|
|
303
303
|
*/
|
|
@@ -322,8 +322,13 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
322
322
|
"decrement-number-stepper"?(_: {}): any;
|
|
323
323
|
}>;
|
|
324
324
|
export default _default;
|
|
325
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
326
|
+
new (): {
|
|
327
|
+
$slots: S;
|
|
328
|
+
};
|
|
329
|
+
};
|
|
325
330
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
326
|
-
type
|
|
331
|
+
type __VLS_TypePropsToOption<T> = {
|
|
327
332
|
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
328
333
|
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
329
334
|
} : {
|
|
@@ -331,8 +336,3 @@ type __VLS_TypePropsToRuntimeProps<T> = {
|
|
|
331
336
|
required: true;
|
|
332
337
|
};
|
|
333
338
|
};
|
|
334
|
-
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
335
|
-
new (): {
|
|
336
|
-
$slots: S;
|
|
337
|
-
};
|
|
338
|
-
};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import '@synergy-design-system/components/components/menu-item/menu-item.js';
|
|
2
|
-
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<
|
|
2
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_TypePropsToOption<{
|
|
3
3
|
/**
|
|
4
4
|
* The type of menu item to render.
|
|
5
5
|
* To use `checked`, this value must be set to `checkbox`.
|
|
@@ -28,7 +28,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
28
28
|
callHandleTypeChange: () => void | undefined;
|
|
29
29
|
callGetTextLabel: () => string | undefined;
|
|
30
30
|
callIsSubmenu: () => boolean | undefined;
|
|
31
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<
|
|
31
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<{
|
|
32
32
|
/**
|
|
33
33
|
* The type of menu item to render.
|
|
34
34
|
* To use `checked`, this value must be set to `checkbox`.
|
|
@@ -58,8 +58,13 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
58
58
|
submenu?(_: {}): any;
|
|
59
59
|
}>;
|
|
60
60
|
export default _default;
|
|
61
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
62
|
+
new (): {
|
|
63
|
+
$slots: S;
|
|
64
|
+
};
|
|
65
|
+
};
|
|
61
66
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
62
|
-
type
|
|
67
|
+
type __VLS_TypePropsToOption<T> = {
|
|
63
68
|
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
64
69
|
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
65
70
|
} : {
|
|
@@ -67,8 +72,3 @@ type __VLS_TypePropsToRuntimeProps<T> = {
|
|
|
67
72
|
required: true;
|
|
68
73
|
};
|
|
69
74
|
};
|
|
70
|
-
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
71
|
-
new (): {
|
|
72
|
-
$slots: S;
|
|
73
|
-
};
|
|
74
|
-
};
|
|
@@ -4,7 +4,7 @@ export type { SynShowEvent } from '@synergy-design-system/components';
|
|
|
4
4
|
export type { SynHideEvent } 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<__VLS_TypePropsToOption<{
|
|
8
8
|
/**
|
|
9
9
|
* The navigation item's href target.
|
|
10
10
|
If provided, the navigation item will use an anchor tag otherwise it will use a button tag.
|
|
@@ -47,7 +47,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
47
47
|
"syn-focus": (e: SynFocusEvent) => void;
|
|
48
48
|
"syn-show": (e: SynShowEvent) => void;
|
|
49
49
|
"syn-hide": (e: SynHideEvent) => void;
|
|
50
|
-
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<
|
|
50
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<{
|
|
51
51
|
/**
|
|
52
52
|
* The navigation item's href target.
|
|
53
53
|
If provided, the navigation item will use an anchor tag otherwise it will use a button tag.
|
|
@@ -92,8 +92,13 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
92
92
|
children?(_: {}): any;
|
|
93
93
|
}>;
|
|
94
94
|
export default _default;
|
|
95
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
96
|
+
new (): {
|
|
97
|
+
$slots: S;
|
|
98
|
+
};
|
|
99
|
+
};
|
|
95
100
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
96
|
-
type
|
|
101
|
+
type __VLS_TypePropsToOption<T> = {
|
|
97
102
|
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
98
103
|
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
99
104
|
} : {
|
|
@@ -101,8 +106,3 @@ type __VLS_TypePropsToRuntimeProps<T> = {
|
|
|
101
106
|
required: true;
|
|
102
107
|
};
|
|
103
108
|
};
|
|
104
|
-
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
105
|
-
new (): {
|
|
106
|
-
$slots: S;
|
|
107
|
-
};
|
|
108
|
-
};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import '@synergy-design-system/components/components/optgroup/optgroup.js';
|
|
2
|
-
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<
|
|
2
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_TypePropsToOption<{
|
|
3
3
|
/**
|
|
4
4
|
* Disables all options in the optgroup.
|
|
5
5
|
*/
|
|
@@ -11,7 +11,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
11
11
|
label?: string | undefined;
|
|
12
12
|
}>, {
|
|
13
13
|
callHandleDisabledChange: () => void | undefined;
|
|
14
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<
|
|
14
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<{
|
|
15
15
|
/**
|
|
16
16
|
* Disables all options in the optgroup.
|
|
17
17
|
*/
|
|
@@ -28,8 +28,13 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
28
28
|
suffix?(_: {}): any;
|
|
29
29
|
}>;
|
|
30
30
|
export default _default;
|
|
31
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
32
|
+
new (): {
|
|
33
|
+
$slots: S;
|
|
34
|
+
};
|
|
35
|
+
};
|
|
31
36
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
32
|
-
type
|
|
37
|
+
type __VLS_TypePropsToOption<T> = {
|
|
33
38
|
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
34
39
|
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
35
40
|
} : {
|
|
@@ -37,8 +42,3 @@ type __VLS_TypePropsToRuntimeProps<T> = {
|
|
|
37
42
|
required: true;
|
|
38
43
|
};
|
|
39
44
|
};
|
|
40
|
-
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
41
|
-
new (): {
|
|
42
|
-
$slots: S;
|
|
43
|
-
};
|
|
44
|
-
};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import '@synergy-design-system/components/components/option/option.js';
|
|
2
|
-
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<
|
|
2
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_TypePropsToOption<{
|
|
3
3
|
/**
|
|
4
4
|
* The option's value.
|
|
5
5
|
* When selected, the containing form control will receive this value.
|
|
@@ -18,7 +18,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
18
18
|
callHandleSelectedChange: () => void | undefined;
|
|
19
19
|
callHandleValueChange: () => void | undefined;
|
|
20
20
|
callGetTextLabel: () => string | undefined;
|
|
21
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<
|
|
21
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<{
|
|
22
22
|
/**
|
|
23
23
|
* The option's value.
|
|
24
24
|
* When selected, the containing form control will receive this value.
|
|
@@ -38,8 +38,13 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
38
38
|
suffix?(_: {}): any;
|
|
39
39
|
}>;
|
|
40
40
|
export default _default;
|
|
41
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
42
|
+
new (): {
|
|
43
|
+
$slots: S;
|
|
44
|
+
};
|
|
45
|
+
};
|
|
41
46
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
42
|
-
type
|
|
47
|
+
type __VLS_TypePropsToOption<T> = {
|
|
43
48
|
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
44
49
|
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
45
50
|
} : {
|
|
@@ -47,8 +52,3 @@ type __VLS_TypePropsToRuntimeProps<T> = {
|
|
|
47
52
|
required: true;
|
|
48
53
|
};
|
|
49
54
|
};
|
|
50
|
-
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
51
|
-
new (): {
|
|
52
|
-
$slots: S;
|
|
53
|
-
};
|
|
54
|
-
};
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import '@synergy-design-system/components/components/popup/popup.js';
|
|
2
2
|
import type { SynRepositionEvent } from '@synergy-design-system/components';
|
|
3
3
|
export type { SynRepositionEvent } from '@synergy-design-system/components';
|
|
4
|
-
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<
|
|
4
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_TypePropsToOption<{
|
|
5
5
|
/**
|
|
6
6
|
* The element the popup will be anchored to.
|
|
7
7
|
* If the anchor lives outside of the popup, you can provide the anchor
|
|
@@ -51,7 +51,7 @@ 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?: "anchor" | "end" | "start" | "center" | undefined;
|
|
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,
|
|
@@ -140,7 +140,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
140
140
|
callReposition: () => void | undefined;
|
|
141
141
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
142
142
|
"syn-reposition": (e: SynRepositionEvent) => void;
|
|
143
|
-
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<
|
|
143
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<{
|
|
144
144
|
/**
|
|
145
145
|
* The element the popup will be anchored to.
|
|
146
146
|
* If the anchor lives outside of the popup, you can provide the anchor
|
|
@@ -190,7 +190,7 @@ 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?: "anchor" | "end" | "start" | "center" | undefined;
|
|
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,
|
|
@@ -282,8 +282,13 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
282
282
|
anchor?(_: {}): any;
|
|
283
283
|
}>;
|
|
284
284
|
export default _default;
|
|
285
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
286
|
+
new (): {
|
|
287
|
+
$slots: S;
|
|
288
|
+
};
|
|
289
|
+
};
|
|
285
290
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
286
|
-
type
|
|
291
|
+
type __VLS_TypePropsToOption<T> = {
|
|
287
292
|
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
288
293
|
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
289
294
|
} : {
|
|
@@ -291,8 +296,3 @@ type __VLS_TypePropsToRuntimeProps<T> = {
|
|
|
291
296
|
required: true;
|
|
292
297
|
};
|
|
293
298
|
};
|
|
294
|
-
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
295
|
-
new (): {
|
|
296
|
-
$slots: S;
|
|
297
|
-
};
|
|
298
|
-
};
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import '@synergy-design-system/components/components/prio-nav/prio-nav.js';
|
|
2
|
-
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<
|
|
2
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_TypePropsToOption<{
|
|
3
3
|
/**
|
|
4
4
|
* The components priority menu label.
|
|
5
5
|
This will be shown after the priority menu 3 dots link
|
|
6
6
|
*/
|
|
7
7
|
priorityMenuLabel?: string | undefined;
|
|
8
|
-
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<
|
|
8
|
+
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<{
|
|
9
9
|
/**
|
|
10
10
|
* The components priority menu label.
|
|
11
11
|
This will be shown after the priority menu 3 dots link
|
|
@@ -15,8 +15,13 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
15
15
|
default?(_: {}): any;
|
|
16
16
|
}>;
|
|
17
17
|
export default _default;
|
|
18
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
19
|
+
new (): {
|
|
20
|
+
$slots: S;
|
|
21
|
+
};
|
|
22
|
+
};
|
|
18
23
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
19
|
-
type
|
|
24
|
+
type __VLS_TypePropsToOption<T> = {
|
|
20
25
|
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
21
26
|
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
22
27
|
} : {
|
|
@@ -24,8 +29,3 @@ type __VLS_TypePropsToRuntimeProps<T> = {
|
|
|
24
29
|
required: true;
|
|
25
30
|
};
|
|
26
31
|
};
|
|
27
|
-
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
28
|
-
new (): {
|
|
29
|
-
$slots: S;
|
|
30
|
-
};
|
|
31
|
-
};
|
|
@@ -2,7 +2,7 @@ import '@synergy-design-system/components/components/radio/radio.js';
|
|
|
2
2
|
import type { SynBlurEvent, SynFocusEvent } from '@synergy-design-system/components';
|
|
3
3
|
export type { SynBlurEvent } from '@synergy-design-system/components';
|
|
4
4
|
export type { SynFocusEvent } from '@synergy-design-system/components';
|
|
5
|
-
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<
|
|
5
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_TypePropsToOption<{
|
|
6
6
|
/**
|
|
7
7
|
* The radio's value.
|
|
8
8
|
* When selected, the radio group will receive this value.
|
|
@@ -24,7 +24,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
24
24
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
25
25
|
"syn-blur": (e: SynBlurEvent) => void;
|
|
26
26
|
"syn-focus": (e: SynFocusEvent) => void;
|
|
27
|
-
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<
|
|
27
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<{
|
|
28
28
|
/**
|
|
29
29
|
* The radio's value.
|
|
30
30
|
* When selected, the radio group will receive this value.
|
|
@@ -47,8 +47,13 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
47
47
|
default?(_: {}): any;
|
|
48
48
|
}>;
|
|
49
49
|
export default _default;
|
|
50
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
51
|
+
new (): {
|
|
52
|
+
$slots: S;
|
|
53
|
+
};
|
|
54
|
+
};
|
|
50
55
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
51
|
-
type
|
|
56
|
+
type __VLS_TypePropsToOption<T> = {
|
|
52
57
|
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
53
58
|
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
54
59
|
} : {
|
|
@@ -56,8 +61,3 @@ type __VLS_TypePropsToRuntimeProps<T> = {
|
|
|
56
61
|
required: true;
|
|
57
62
|
};
|
|
58
63
|
};
|
|
59
|
-
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
60
|
-
new (): {
|
|
61
|
-
$slots: S;
|
|
62
|
-
};
|
|
63
|
-
};
|
|
@@ -2,7 +2,7 @@ import '@synergy-design-system/components/components/radio-button/radio-button.j
|
|
|
2
2
|
import type { SynBlurEvent, SynFocusEvent } from '@synergy-design-system/components';
|
|
3
3
|
export type { SynBlurEvent } from '@synergy-design-system/components';
|
|
4
4
|
export type { SynFocusEvent } from '@synergy-design-system/components';
|
|
5
|
-
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<
|
|
5
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_TypePropsToOption<{
|
|
6
6
|
/**
|
|
7
7
|
* The radio's value.
|
|
8
8
|
* When selected, the radio group will receive this value.
|
|
@@ -25,7 +25,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
25
25
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
26
26
|
"syn-blur": (e: SynBlurEvent) => void;
|
|
27
27
|
"syn-focus": (e: SynFocusEvent) => void;
|
|
28
|
-
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<
|
|
28
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<{
|
|
29
29
|
/**
|
|
30
30
|
* The radio's value.
|
|
31
31
|
* When selected, the radio group will receive this value.
|
|
@@ -50,8 +50,13 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
50
50
|
suffix?(_: {}): any;
|
|
51
51
|
}>;
|
|
52
52
|
export default _default;
|
|
53
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
54
|
+
new (): {
|
|
55
|
+
$slots: S;
|
|
56
|
+
};
|
|
57
|
+
};
|
|
53
58
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
54
|
-
type
|
|
59
|
+
type __VLS_TypePropsToOption<T> = {
|
|
55
60
|
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
56
61
|
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
57
62
|
} : {
|
|
@@ -59,8 +64,3 @@ type __VLS_TypePropsToRuntimeProps<T> = {
|
|
|
59
64
|
required: true;
|
|
60
65
|
};
|
|
61
66
|
};
|
|
62
|
-
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
63
|
-
new (): {
|
|
64
|
-
$slots: S;
|
|
65
|
-
};
|
|
66
|
-
};
|
|
@@ -3,7 +3,7 @@ import type { SynChangeEvent, SynInputEvent, SynInvalidEvent } from '@synergy-de
|
|
|
3
3
|
export type { SynChangeEvent } from '@synergy-design-system/components';
|
|
4
4
|
export type { SynInputEvent } from '@synergy-design-system/components';
|
|
5
5
|
export type { SynInvalidEvent } from '@synergy-design-system/components';
|
|
6
|
-
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<
|
|
6
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_TypePropsToOption<{
|
|
7
7
|
/**
|
|
8
8
|
* The radio group's label.
|
|
9
9
|
* Required for proper accessibility.
|
|
@@ -57,7 +57,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
57
57
|
"syn-change": (e: SynChangeEvent) => void;
|
|
58
58
|
"syn-input": (e: SynInputEvent) => void;
|
|
59
59
|
"update:modelValue": (newValue: string) => void;
|
|
60
|
-
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<
|
|
60
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<{
|
|
61
61
|
/**
|
|
62
62
|
* The radio group's label.
|
|
63
63
|
* Required for proper accessibility.
|
|
@@ -110,8 +110,13 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
110
110
|
"help-text"?(_: {}): any;
|
|
111
111
|
}>;
|
|
112
112
|
export default _default;
|
|
113
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
114
|
+
new (): {
|
|
115
|
+
$slots: S;
|
|
116
|
+
};
|
|
117
|
+
};
|
|
113
118
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
114
|
-
type
|
|
119
|
+
type __VLS_TypePropsToOption<T> = {
|
|
115
120
|
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
116
121
|
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
117
122
|
} : {
|
|
@@ -119,8 +124,3 @@ type __VLS_TypePropsToRuntimeProps<T> = {
|
|
|
119
124
|
required: true;
|
|
120
125
|
};
|
|
121
126
|
};
|
|
122
|
-
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
123
|
-
new (): {
|
|
124
|
-
$slots: S;
|
|
125
|
-
};
|
|
126
|
-
};
|
|
@@ -10,7 +10,7 @@ export type { SynAfterShowEvent } from '@synergy-design-system/components';
|
|
|
10
10
|
export type { SynHideEvent } from '@synergy-design-system/components';
|
|
11
11
|
export type { SynAfterHideEvent } from '@synergy-design-system/components';
|
|
12
12
|
export type { SynInvalidEvent } from '@synergy-design-system/components';
|
|
13
|
-
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<
|
|
13
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_TypePropsToOption<{
|
|
14
14
|
/**
|
|
15
15
|
* The name of the select, submitted as a name/value pair with form data.
|
|
16
16
|
*/
|
|
@@ -126,7 +126,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
126
126
|
"syn-hide": (e: SynHideEvent) => void;
|
|
127
127
|
"syn-after-hide": (e: SynAfterHideEvent) => void;
|
|
128
128
|
"syn-clear": (e: SynClearEvent) => void;
|
|
129
|
-
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<
|
|
129
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<{
|
|
130
130
|
/**
|
|
131
131
|
* The name of the select, submitted as a name/value pair with form data.
|
|
132
132
|
*/
|
|
@@ -239,8 +239,13 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
239
239
|
"help-text"?(_: {}): any;
|
|
240
240
|
}>;
|
|
241
241
|
export default _default;
|
|
242
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
243
|
+
new (): {
|
|
244
|
+
$slots: S;
|
|
245
|
+
};
|
|
246
|
+
};
|
|
242
247
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
243
|
-
type
|
|
248
|
+
type __VLS_TypePropsToOption<T> = {
|
|
244
249
|
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
245
250
|
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
246
251
|
} : {
|
|
@@ -248,8 +253,3 @@ type __VLS_TypePropsToRuntimeProps<T> = {
|
|
|
248
253
|
required: true;
|
|
249
254
|
};
|
|
250
255
|
};
|
|
251
|
-
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
252
|
-
new (): {
|
|
253
|
-
$slots: S;
|
|
254
|
-
};
|
|
255
|
-
};
|
|
@@ -4,7 +4,7 @@ export type { SynShowEvent } from '@synergy-design-system/components';
|
|
|
4
4
|
export type { SynAfterShowEvent } from '@synergy-design-system/components';
|
|
5
5
|
export type { SynHideEvent } from '@synergy-design-system/components';
|
|
6
6
|
export type { SynAfterHideEvent } from '@synergy-design-system/components';
|
|
7
|
-
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<
|
|
7
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_TypePropsToOption<{
|
|
8
8
|
/**
|
|
9
9
|
* Indicates whether or not the side-nav is open.
|
|
10
10
|
You can toggle this attribute to show and hide the side-nav, or you can use the `show()` and
|
|
@@ -47,7 +47,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
47
47
|
"syn-after-show": (e: SynAfterShowEvent) => void;
|
|
48
48
|
"syn-hide": (e: SynHideEvent) => void;
|
|
49
49
|
"syn-after-hide": (e: SynAfterHideEvent) => void;
|
|
50
|
-
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<
|
|
50
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<{
|
|
51
51
|
/**
|
|
52
52
|
* Indicates whether or not the side-nav is open.
|
|
53
53
|
You can toggle this attribute to show and hide the side-nav, or you can use the `show()` and
|
|
@@ -89,8 +89,13 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
89
89
|
footer?(_: {}): any;
|
|
90
90
|
}>;
|
|
91
91
|
export default _default;
|
|
92
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
93
|
+
new (): {
|
|
94
|
+
$slots: S;
|
|
95
|
+
};
|
|
96
|
+
};
|
|
92
97
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
93
|
-
type
|
|
98
|
+
type __VLS_TypePropsToOption<T> = {
|
|
94
99
|
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
95
100
|
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
96
101
|
} : {
|
|
@@ -98,8 +103,3 @@ type __VLS_TypePropsToRuntimeProps<T> = {
|
|
|
98
103
|
required: true;
|
|
99
104
|
};
|
|
100
105
|
};
|
|
101
|
-
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
102
|
-
new (): {
|
|
103
|
-
$slots: S;
|
|
104
|
-
};
|
|
105
|
-
};
|
|
@@ -5,7 +5,7 @@ export type { SynChangeEvent } from '@synergy-design-system/components';
|
|
|
5
5
|
export type { SynInputEvent } from '@synergy-design-system/components';
|
|
6
6
|
export type { SynFocusEvent } from '@synergy-design-system/components';
|
|
7
7
|
export type { SynInvalidEvent } from '@synergy-design-system/components';
|
|
8
|
-
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<
|
|
8
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_TypePropsToOption<{
|
|
9
9
|
title?: string | undefined;
|
|
10
10
|
/**
|
|
11
11
|
* The name of the switch, submitted as a name/value pair with form data.
|
|
@@ -65,7 +65,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
65
65
|
"syn-change": (e: SynChangeEvent) => void;
|
|
66
66
|
"syn-input": (e: SynInputEvent) => void;
|
|
67
67
|
"update:modelValue": (newValue: boolean) => void;
|
|
68
|
-
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<
|
|
68
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<{
|
|
69
69
|
title?: string | undefined;
|
|
70
70
|
/**
|
|
71
71
|
* The name of the switch, submitted as a name/value pair with form data.
|
|
@@ -120,8 +120,13 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
120
120
|
"help-text"?(_: {}): any;
|
|
121
121
|
}>;
|
|
122
122
|
export default _default;
|
|
123
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
124
|
+
new (): {
|
|
125
|
+
$slots: S;
|
|
126
|
+
};
|
|
127
|
+
};
|
|
123
128
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
124
|
-
type
|
|
129
|
+
type __VLS_TypePropsToOption<T> = {
|
|
125
130
|
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
126
131
|
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
127
132
|
} : {
|
|
@@ -129,8 +134,3 @@ type __VLS_TypePropsToRuntimeProps<T> = {
|
|
|
129
134
|
required: true;
|
|
130
135
|
};
|
|
131
136
|
};
|
|
132
|
-
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
133
|
-
new (): {
|
|
134
|
-
$slots: S;
|
|
135
|
-
};
|
|
136
|
-
};
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import '@synergy-design-system/components/components/tag/tag.js';
|
|
2
2
|
import type { SynRemoveEvent } from '@synergy-design-system/components';
|
|
3
3
|
export type { SynRemoveEvent } from '@synergy-design-system/components';
|
|
4
|
-
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<
|
|
4
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_TypePropsToOption<{
|
|
5
5
|
/**
|
|
6
6
|
* The tag's size.
|
|
7
7
|
*/
|
|
@@ -12,7 +12,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
12
12
|
removable?: boolean | undefined;
|
|
13
13
|
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
14
14
|
"syn-remove": (e: SynRemoveEvent) => void;
|
|
15
|
-
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<
|
|
15
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<{
|
|
16
16
|
/**
|
|
17
17
|
* The tag's size.
|
|
18
18
|
*/
|
|
@@ -27,8 +27,13 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
27
27
|
default?(_: {}): any;
|
|
28
28
|
}>;
|
|
29
29
|
export default _default;
|
|
30
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
31
|
+
new (): {
|
|
32
|
+
$slots: S;
|
|
33
|
+
};
|
|
34
|
+
};
|
|
30
35
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
31
|
-
type
|
|
36
|
+
type __VLS_TypePropsToOption<T> = {
|
|
32
37
|
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
33
38
|
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
34
39
|
} : {
|
|
@@ -36,8 +41,3 @@ type __VLS_TypePropsToRuntimeProps<T> = {
|
|
|
36
41
|
required: true;
|
|
37
42
|
};
|
|
38
43
|
};
|
|
39
|
-
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
40
|
-
new (): {
|
|
41
|
-
$slots: S;
|
|
42
|
-
};
|
|
43
|
-
};
|
|
@@ -5,7 +5,7 @@ export type { SynChangeEvent } from '@synergy-design-system/components';
|
|
|
5
5
|
export type { SynFocusEvent } from '@synergy-design-system/components';
|
|
6
6
|
export type { SynInputEvent } from '@synergy-design-system/components';
|
|
7
7
|
export type { SynInvalidEvent } from '@synergy-design-system/components';
|
|
8
|
-
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<
|
|
8
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_TypePropsToOption<{
|
|
9
9
|
title?: string | undefined;
|
|
10
10
|
/**
|
|
11
11
|
* The name of the textarea, submitted as a name/value pair with form data.
|
|
@@ -99,7 +99,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
99
99
|
* Tells the browser what type of data will be entered by the user, allowing it to display the appropriate virtual
|
|
100
100
|
keyboard on supportive devices.
|
|
101
101
|
*/
|
|
102
|
-
inputmode?: "
|
|
102
|
+
inputmode?: "search" | "text" | "email" | "tel" | "url" | "none" | "decimal" | "numeric" | undefined;
|
|
103
103
|
/**
|
|
104
104
|
* Support for two way data binding
|
|
105
105
|
*/
|
|
@@ -112,16 +112,102 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
112
112
|
callBlur: () => void | undefined;
|
|
113
113
|
callSelect: () => void | undefined;
|
|
114
114
|
callScrollPosition: (position?: {
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
115
|
+
/**
|
|
116
|
+
* @summary Textareas collect data from the user and allow multiple lines of text.
|
|
117
|
+
* @documentation https://synergy.style/components/textarea
|
|
118
|
+
* @status stable
|
|
119
|
+
* @since 2.0
|
|
120
|
+
*
|
|
121
|
+
* @slot label - The textarea's label. Alternatively, you can use the `label` attribute.
|
|
122
|
+
* @slot help-text - Text that describes how to use the input. Alternatively, you can use the `help-text` attribute.
|
|
123
|
+
*
|
|
124
|
+
* @event syn-blur - Emitted when the control loses focus.
|
|
125
|
+
* @event syn-change - Emitted when an alteration to the control's value is committed by the user.
|
|
126
|
+
* @event syn-focus - Emitted when the control gains focus.
|
|
127
|
+
* @event syn-input - Emitted when the control receives input.
|
|
128
|
+
* @event syn-invalid - Emitted when the form control has been checked for validity and its constraints aren't satisfied.
|
|
129
|
+
*
|
|
130
|
+
* @csspart form-control - The form control that wraps the label, input, and help text.
|
|
131
|
+
* @csspart form-control-label - The label's wrapper.
|
|
132
|
+
* @csspart form-control-input - The input's wrapper.
|
|
133
|
+
* @csspart form-control-help-text - The help text's wrapper.
|
|
134
|
+
* @csspart base - The component's base wrapper.
|
|
135
|
+
* @csspart textarea - The internal `<textarea>` control.
|
|
136
|
+
*/
|
|
137
|
+
top?: number | undefined;
|
|
138
|
+
/**
|
|
139
|
+
* @summary Textareas collect data from the user and allow multiple lines of text.
|
|
140
|
+
* @documentation https://synergy.style/components/textarea
|
|
141
|
+
* @status stable
|
|
142
|
+
* @since 2.0
|
|
143
|
+
*
|
|
144
|
+
* @slot label - The textarea's label. Alternatively, you can use the `label` attribute.
|
|
145
|
+
* @slot help-text - Text that describes how to use the input. Alternatively, you can use the `help-text` attribute.
|
|
146
|
+
*
|
|
147
|
+
* @event syn-blur - Emitted when the control loses focus.
|
|
148
|
+
* @event syn-change - Emitted when an alteration to the control's value is committed by the user.
|
|
149
|
+
* @event syn-focus - Emitted when the control gains focus.
|
|
150
|
+
* @event syn-input - Emitted when the control receives input.
|
|
151
|
+
* @event syn-invalid - Emitted when the form control has been checked for validity and its constraints aren't satisfied.
|
|
152
|
+
*
|
|
153
|
+
* @csspart form-control - The form control that wraps the label, input, and help text.
|
|
154
|
+
* @csspart form-control-label - The label's wrapper.
|
|
155
|
+
* @csspart form-control-input - The input's wrapper.
|
|
156
|
+
* @csspart form-control-help-text - The help text's wrapper.
|
|
157
|
+
* @csspart base - The component's base wrapper.
|
|
158
|
+
* @csspart textarea - The internal `<textarea>` control.
|
|
159
|
+
*/
|
|
118
160
|
left?: number | undefined;
|
|
119
161
|
} | undefined) => {
|
|
162
|
+
/**
|
|
163
|
+
* @summary Textareas collect data from the user and allow multiple lines of text.
|
|
164
|
+
* @documentation https://synergy.style/components/textarea
|
|
165
|
+
* @status stable
|
|
166
|
+
* @since 2.0
|
|
167
|
+
*
|
|
168
|
+
* @slot label - The textarea's label. Alternatively, you can use the `label` attribute.
|
|
169
|
+
* @slot help-text - Text that describes how to use the input. Alternatively, you can use the `help-text` attribute.
|
|
170
|
+
*
|
|
171
|
+
* @event syn-blur - Emitted when the control loses focus.
|
|
172
|
+
* @event syn-change - Emitted when an alteration to the control's value is committed by the user.
|
|
173
|
+
* @event syn-focus - Emitted when the control gains focus.
|
|
174
|
+
* @event syn-input - Emitted when the control receives input.
|
|
175
|
+
* @event syn-invalid - Emitted when the form control has been checked for validity and its constraints aren't satisfied.
|
|
176
|
+
*
|
|
177
|
+
* @csspart form-control - The form control that wraps the label, input, and help text.
|
|
178
|
+
* @csspart form-control-label - The label's wrapper.
|
|
179
|
+
* @csspart form-control-input - The input's wrapper.
|
|
180
|
+
* @csspart form-control-help-text - The help text's wrapper.
|
|
181
|
+
* @csspart base - The component's base wrapper.
|
|
182
|
+
* @csspart textarea - The internal `<textarea>` control.
|
|
183
|
+
*/
|
|
120
184
|
top: number;
|
|
185
|
+
/**
|
|
186
|
+
* @summary Textareas collect data from the user and allow multiple lines of text.
|
|
187
|
+
* @documentation https://synergy.style/components/textarea
|
|
188
|
+
* @status stable
|
|
189
|
+
* @since 2.0
|
|
190
|
+
*
|
|
191
|
+
* @slot label - The textarea's label. Alternatively, you can use the `label` attribute.
|
|
192
|
+
* @slot help-text - Text that describes how to use the input. Alternatively, you can use the `help-text` attribute.
|
|
193
|
+
*
|
|
194
|
+
* @event syn-blur - Emitted when the control loses focus.
|
|
195
|
+
* @event syn-change - Emitted when an alteration to the control's value is committed by the user.
|
|
196
|
+
* @event syn-focus - Emitted when the control gains focus.
|
|
197
|
+
* @event syn-input - Emitted when the control receives input.
|
|
198
|
+
* @event syn-invalid - Emitted when the form control has been checked for validity and its constraints aren't satisfied.
|
|
199
|
+
*
|
|
200
|
+
* @csspart form-control - The form control that wraps the label, input, and help text.
|
|
201
|
+
* @csspart form-control-label - The label's wrapper.
|
|
202
|
+
* @csspart form-control-input - The input's wrapper.
|
|
203
|
+
* @csspart form-control-help-text - The help text's wrapper.
|
|
204
|
+
* @csspart base - The component's base wrapper.
|
|
205
|
+
* @csspart textarea - The internal `<textarea>` control.
|
|
206
|
+
*/
|
|
121
207
|
left: number;
|
|
122
208
|
} | undefined;
|
|
123
209
|
callSetSelectionRange: (selectionStart: number, selectionEnd: number, selectionDirection?: "none" | "forward" | "backward" | undefined) => void | undefined;
|
|
124
|
-
callSetRangeText: (replacement: string, start?: number | undefined, end?: number | undefined, selectMode?: "
|
|
210
|
+
callSetRangeText: (replacement: string, start?: number | undefined, end?: number | undefined, selectMode?: "select" | "end" | "start" | "preserve" | undefined) => void | undefined;
|
|
125
211
|
callCheckValidity: () => boolean | undefined;
|
|
126
212
|
callGetForm: () => HTMLFormElement | null | undefined;
|
|
127
213
|
callReportValidity: () => boolean | undefined;
|
|
@@ -133,7 +219,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
133
219
|
"syn-change": (e: SynChangeEvent) => void;
|
|
134
220
|
"syn-input": (e: SynInputEvent) => void;
|
|
135
221
|
"update:modelValue": (newValue: string) => void;
|
|
136
|
-
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<
|
|
222
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<{
|
|
137
223
|
title?: string | undefined;
|
|
138
224
|
/**
|
|
139
225
|
* The name of the textarea, submitted as a name/value pair with form data.
|
|
@@ -227,7 +313,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
227
313
|
* Tells the browser what type of data will be entered by the user, allowing it to display the appropriate virtual
|
|
228
314
|
keyboard on supportive devices.
|
|
229
315
|
*/
|
|
230
|
-
inputmode?: "
|
|
316
|
+
inputmode?: "search" | "text" | "email" | "tel" | "url" | "none" | "decimal" | "numeric" | undefined;
|
|
231
317
|
/**
|
|
232
318
|
* Support for two way data binding
|
|
233
319
|
*/
|
|
@@ -244,8 +330,13 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
244
330
|
"help-text"?(_: {}): any;
|
|
245
331
|
}>;
|
|
246
332
|
export default _default;
|
|
333
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
334
|
+
new (): {
|
|
335
|
+
$slots: S;
|
|
336
|
+
};
|
|
337
|
+
};
|
|
247
338
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
248
|
-
type
|
|
339
|
+
type __VLS_TypePropsToOption<T> = {
|
|
249
340
|
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
250
341
|
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
251
342
|
} : {
|
|
@@ -253,8 +344,3 @@ type __VLS_TypePropsToRuntimeProps<T> = {
|
|
|
253
344
|
required: true;
|
|
254
345
|
};
|
|
255
346
|
};
|
|
256
|
-
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
257
|
-
new (): {
|
|
258
|
-
$slots: S;
|
|
259
|
-
};
|
|
260
|
-
};
|
package/package.json
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"url": "https://www.sick.com"
|
|
5
5
|
},
|
|
6
6
|
"dependencies": {
|
|
7
|
-
"@synergy-design-system/components": "^1.17.
|
|
7
|
+
"@synergy-design-system/components": "^1.17.2"
|
|
8
8
|
},
|
|
9
9
|
"description": "Vue3 wrappers for the Synergy Design System",
|
|
10
10
|
"exports": {
|
|
@@ -40,9 +40,9 @@
|
|
|
40
40
|
"directory": "packages/vue"
|
|
41
41
|
},
|
|
42
42
|
"type": "module",
|
|
43
|
-
"version": "1.17.
|
|
43
|
+
"version": "1.17.2",
|
|
44
44
|
"devDependencies": {
|
|
45
45
|
"@vue/tsconfig": "^0.5.1",
|
|
46
|
-
"vue": "^3.4.
|
|
46
|
+
"vue": "^3.4.24"
|
|
47
47
|
}
|
|
48
48
|
}
|