@synergy-design-system/vue 2.11.5 → 2.11.6
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 +18 -29
- package/dist/components/SynVueBadge.vue.d.ts +10 -13
- package/dist/components/SynVueBreadcrumb.vue.d.ts +12 -17
- package/dist/components/SynVueBreadcrumbItem.vue.d.ts +18 -34
- package/dist/components/SynVueButtonGroup.vue.d.ts +12 -17
- package/dist/components/SynVueCard.vue.d.ts +12 -17
- package/dist/components/SynVueDivider.vue.d.ts +5 -9
- package/dist/components/SynVueMenuItem.vue.d.ts +20 -41
- package/dist/components/SynVueMenuLabel.vue.d.ts +2 -1
- package/dist/components/SynVueOptgroup.vue.d.ts +15 -23
- package/dist/components/SynVueOption.vue.d.ts +17 -29
- package/dist/components/SynVuePrioNav.vue.d.ts +2 -1
- package/dist/components/SynVueProgressBar.vue.d.ts +18 -29
- package/dist/components/SynVueProgressRing.vue.d.ts +14 -21
- package/dist/components/SynVueRangeTick.vue.d.ts +10 -13
- package/dist/components/SynVueTabPanel.vue.d.ts +14 -21
- package/package.json +3 -3
|
@@ -1,44 +1,33 @@
|
|
|
1
1
|
import '@synergy-design-system/components/components/accordion/accordion.js';
|
|
2
2
|
import type { SynAccordion } from '@synergy-design-system/components';
|
|
3
|
-
|
|
4
|
-
slots: {
|
|
5
|
-
default?(_: {}): any;
|
|
6
|
-
};
|
|
7
|
-
refs: {
|
|
8
|
-
nativeElement: unknown;
|
|
9
|
-
};
|
|
10
|
-
attrs: Partial<{}>;
|
|
11
|
-
};
|
|
12
|
-
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
13
|
-
declare const __VLS_component: import("vue").DefineComponent<{
|
|
3
|
+
type __VLS_Props = {
|
|
14
4
|
/**
|
|
15
5
|
* Indicates whether or not multiple `<syn-detail>` elements can be open at the same time.
|
|
16
6
|
*/
|
|
17
|
-
closeOthers?: SynAccordion[
|
|
7
|
+
closeOthers?: SynAccordion['closeOthers'];
|
|
18
8
|
/**
|
|
19
9
|
* Draws the accordion and the slotted `<syn-details>` as contained elements.
|
|
20
10
|
*/
|
|
21
|
-
contained?: SynAccordion[
|
|
11
|
+
contained?: SynAccordion['contained'];
|
|
22
12
|
/**
|
|
23
13
|
* The size that should be applied to all slotted `<syn-details>` elements
|
|
24
14
|
*/
|
|
25
|
-
size?: SynAccordion[
|
|
26
|
-
}
|
|
15
|
+
size?: SynAccordion['size'];
|
|
16
|
+
};
|
|
17
|
+
declare function __VLS_template(): {
|
|
18
|
+
attrs: Partial<{}>;
|
|
19
|
+
slots: {
|
|
20
|
+
default?(_: {}): any;
|
|
21
|
+
};
|
|
22
|
+
refs: {
|
|
23
|
+
nativeElement: unknown;
|
|
24
|
+
};
|
|
25
|
+
rootEl: any;
|
|
26
|
+
};
|
|
27
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
28
|
+
declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {
|
|
27
29
|
nativeElement: import("vue").Ref<SynAccordion | undefined, SynAccordion | undefined>;
|
|
28
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{
|
|
29
|
-
/**
|
|
30
|
-
* Indicates whether or not multiple `<syn-detail>` elements can be open at the same time.
|
|
31
|
-
*/
|
|
32
|
-
closeOthers?: SynAccordion["closeOthers"];
|
|
33
|
-
/**
|
|
34
|
-
* Draws the accordion and the slotted `<syn-details>` as contained elements.
|
|
35
|
-
*/
|
|
36
|
-
contained?: SynAccordion["contained"];
|
|
37
|
-
/**
|
|
38
|
-
* The size that should be applied to all slotted `<syn-details>` elements
|
|
39
|
-
*/
|
|
40
|
-
size?: SynAccordion["size"];
|
|
41
|
-
}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
30
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
42
31
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
43
32
|
export default _default;
|
|
44
33
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
@@ -1,28 +1,25 @@
|
|
|
1
1
|
import '@synergy-design-system/components/components/badge/badge.js';
|
|
2
2
|
import type { SynBadge } from '@synergy-design-system/components';
|
|
3
|
+
type __VLS_Props = {
|
|
4
|
+
/**
|
|
5
|
+
* The badge's theme variant.
|
|
6
|
+
*/
|
|
7
|
+
variant?: SynBadge['variant'];
|
|
8
|
+
};
|
|
3
9
|
declare function __VLS_template(): {
|
|
10
|
+
attrs: Partial<{}>;
|
|
4
11
|
slots: {
|
|
5
12
|
default?(_: {}): any;
|
|
6
13
|
};
|
|
7
14
|
refs: {
|
|
8
15
|
nativeElement: unknown;
|
|
9
16
|
};
|
|
10
|
-
|
|
17
|
+
rootEl: any;
|
|
11
18
|
};
|
|
12
19
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
13
|
-
declare const __VLS_component: import("vue").DefineComponent<{
|
|
14
|
-
/**
|
|
15
|
-
* The badge's theme variant.
|
|
16
|
-
*/
|
|
17
|
-
variant?: SynBadge["variant"];
|
|
18
|
-
}, {
|
|
20
|
+
declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {
|
|
19
21
|
nativeElement: import("vue").Ref<SynBadge | undefined, SynBadge | undefined>;
|
|
20
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{
|
|
21
|
-
/**
|
|
22
|
-
* The badge's theme variant.
|
|
23
|
-
*/
|
|
24
|
-
variant?: SynBadge["variant"];
|
|
25
|
-
}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
22
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
26
23
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
27
24
|
export default _default;
|
|
28
25
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
@@ -1,32 +1,27 @@
|
|
|
1
1
|
import '@synergy-design-system/components/components/breadcrumb/breadcrumb.js';
|
|
2
2
|
import type { SynBreadcrumb } from '@synergy-design-system/components';
|
|
3
|
+
type __VLS_Props = {
|
|
4
|
+
/**
|
|
5
|
+
* The label to use for the breadcrumb control.
|
|
6
|
+
* This will not be shown on the screen, but it will be announced by
|
|
7
|
+
screen readers and other assistive devices to provide more context for users.
|
|
8
|
+
*/
|
|
9
|
+
label?: SynBreadcrumb['label'];
|
|
10
|
+
};
|
|
3
11
|
declare function __VLS_template(): {
|
|
12
|
+
attrs: Partial<{}>;
|
|
4
13
|
slots: {
|
|
5
14
|
default?(_: {}): any;
|
|
6
15
|
};
|
|
7
16
|
refs: {
|
|
8
17
|
nativeElement: unknown;
|
|
9
18
|
};
|
|
10
|
-
|
|
19
|
+
rootEl: any;
|
|
11
20
|
};
|
|
12
21
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
13
|
-
declare const __VLS_component: import("vue").DefineComponent<{
|
|
14
|
-
/**
|
|
15
|
-
* The label to use for the breadcrumb control.
|
|
16
|
-
* This will not be shown on the screen, but it will be announced by
|
|
17
|
-
screen readers and other assistive devices to provide more context for users.
|
|
18
|
-
*/
|
|
19
|
-
label?: SynBreadcrumb["label"];
|
|
20
|
-
}, {
|
|
22
|
+
declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {
|
|
21
23
|
nativeElement: import("vue").Ref<SynBreadcrumb | undefined, SynBreadcrumb | undefined>;
|
|
22
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{
|
|
23
|
-
/**
|
|
24
|
-
* The label to use for the breadcrumb control.
|
|
25
|
-
* This will not be shown on the screen, but it will be announced by
|
|
26
|
-
screen readers and other assistive devices to provide more context for users.
|
|
27
|
-
*/
|
|
28
|
-
label?: SynBreadcrumb["label"];
|
|
29
|
-
}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
24
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
30
25
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
31
26
|
export default _default;
|
|
32
27
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
@@ -1,54 +1,38 @@
|
|
|
1
1
|
import '@synergy-design-system/components/components/breadcrumb-item/breadcrumb-item.js';
|
|
2
2
|
import type { SynBreadcrumbItem } from '@synergy-design-system/components';
|
|
3
|
-
|
|
4
|
-
slots: {
|
|
5
|
-
default?(_: {}): any;
|
|
6
|
-
};
|
|
7
|
-
refs: {
|
|
8
|
-
nativeElement: unknown;
|
|
9
|
-
};
|
|
10
|
-
attrs: Partial<{}>;
|
|
11
|
-
};
|
|
12
|
-
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
13
|
-
declare const __VLS_component: import("vue").DefineComponent<{
|
|
3
|
+
type __VLS_Props = {
|
|
14
4
|
/**
|
|
15
5
|
* Optional URL to direct the user to when the breadcrumb item is activated.
|
|
16
6
|
* When set, a link will be rendered
|
|
17
7
|
internally.
|
|
18
8
|
* When unset, a button will be rendered instead.
|
|
19
9
|
*/
|
|
20
|
-
href?: SynBreadcrumbItem[
|
|
10
|
+
href?: SynBreadcrumbItem['href'];
|
|
21
11
|
/**
|
|
22
12
|
* Tells the browser where to open the link.
|
|
23
13
|
* Only used when `href` is set.
|
|
24
14
|
*/
|
|
25
|
-
target?: SynBreadcrumbItem[
|
|
15
|
+
target?: SynBreadcrumbItem['target'];
|
|
26
16
|
/**
|
|
27
17
|
* The `rel` attribute to use on the link.
|
|
28
18
|
* Only used when `href` is set.
|
|
29
19
|
*/
|
|
30
|
-
rel?: SynBreadcrumbItem[
|
|
31
|
-
}
|
|
20
|
+
rel?: SynBreadcrumbItem['rel'];
|
|
21
|
+
};
|
|
22
|
+
declare function __VLS_template(): {
|
|
23
|
+
attrs: Partial<{}>;
|
|
24
|
+
slots: {
|
|
25
|
+
default?(_: {}): any;
|
|
26
|
+
};
|
|
27
|
+
refs: {
|
|
28
|
+
nativeElement: unknown;
|
|
29
|
+
};
|
|
30
|
+
rootEl: any;
|
|
31
|
+
};
|
|
32
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
33
|
+
declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {
|
|
32
34
|
nativeElement: import("vue").Ref<SynBreadcrumbItem | undefined, SynBreadcrumbItem | undefined>;
|
|
33
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{
|
|
34
|
-
/**
|
|
35
|
-
* Optional URL to direct the user to when the breadcrumb item is activated.
|
|
36
|
-
* When set, a link will be rendered
|
|
37
|
-
internally.
|
|
38
|
-
* When unset, a button will be rendered instead.
|
|
39
|
-
*/
|
|
40
|
-
href?: SynBreadcrumbItem["href"];
|
|
41
|
-
/**
|
|
42
|
-
* Tells the browser where to open the link.
|
|
43
|
-
* Only used when `href` is set.
|
|
44
|
-
*/
|
|
45
|
-
target?: SynBreadcrumbItem["target"];
|
|
46
|
-
/**
|
|
47
|
-
* The `rel` attribute to use on the link.
|
|
48
|
-
* Only used when `href` is set.
|
|
49
|
-
*/
|
|
50
|
-
rel?: SynBreadcrumbItem["rel"];
|
|
51
|
-
}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
35
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
52
36
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
53
37
|
export default _default;
|
|
54
38
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
@@ -1,32 +1,27 @@
|
|
|
1
1
|
import '@synergy-design-system/components/components/button-group/button-group.js';
|
|
2
2
|
import type { SynButtonGroup } from '@synergy-design-system/components';
|
|
3
|
+
type __VLS_Props = {
|
|
4
|
+
/**
|
|
5
|
+
* A label to use for the button group.
|
|
6
|
+
* This won't be displayed on the screen, but it will be announced by assistive
|
|
7
|
+
devices when interacting with the control and is strongly recommended.
|
|
8
|
+
*/
|
|
9
|
+
label?: SynButtonGroup['label'];
|
|
10
|
+
};
|
|
3
11
|
declare function __VLS_template(): {
|
|
12
|
+
attrs: Partial<{}>;
|
|
4
13
|
slots: {
|
|
5
14
|
default?(_: {}): any;
|
|
6
15
|
};
|
|
7
16
|
refs: {
|
|
8
17
|
nativeElement: unknown;
|
|
9
18
|
};
|
|
10
|
-
|
|
19
|
+
rootEl: any;
|
|
11
20
|
};
|
|
12
21
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
13
|
-
declare const __VLS_component: import("vue").DefineComponent<{
|
|
14
|
-
/**
|
|
15
|
-
* A label to use for the button group.
|
|
16
|
-
* This won't be displayed on the screen, but it will be announced by assistive
|
|
17
|
-
devices when interacting with the control and is strongly recommended.
|
|
18
|
-
*/
|
|
19
|
-
label?: SynButtonGroup["label"];
|
|
20
|
-
}, {
|
|
22
|
+
declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {
|
|
21
23
|
nativeElement: import("vue").Ref<SynButtonGroup | undefined, SynButtonGroup | undefined>;
|
|
22
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{
|
|
23
|
-
/**
|
|
24
|
-
* A label to use for the button group.
|
|
25
|
-
* This won't be displayed on the screen, but it will be announced by assistive
|
|
26
|
-
devices when interacting with the control and is strongly recommended.
|
|
27
|
-
*/
|
|
28
|
-
label?: SynButtonGroup["label"];
|
|
29
|
-
}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
24
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
30
25
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
31
26
|
export default _default;
|
|
32
27
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
@@ -1,32 +1,27 @@
|
|
|
1
1
|
import '@synergy-design-system/components/components/card/card.js';
|
|
2
2
|
import type { SynCard } from '@synergy-design-system/components';
|
|
3
|
+
type __VLS_Props = {
|
|
4
|
+
/**
|
|
5
|
+
* Draws the card with sharp edges.
|
|
6
|
+
* Can be used e.g.
|
|
7
|
+
* when nesting multiple syn-cards to create hierarchy.
|
|
8
|
+
*/
|
|
9
|
+
sharp?: SynCard['sharp'];
|
|
10
|
+
};
|
|
3
11
|
declare function __VLS_template(): {
|
|
12
|
+
attrs: Partial<{}>;
|
|
4
13
|
slots: {
|
|
5
14
|
default?(_: {}): any;
|
|
6
15
|
};
|
|
7
16
|
refs: {
|
|
8
17
|
nativeElement: unknown;
|
|
9
18
|
};
|
|
10
|
-
|
|
19
|
+
rootEl: any;
|
|
11
20
|
};
|
|
12
21
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
13
|
-
declare const __VLS_component: import("vue").DefineComponent<{
|
|
14
|
-
/**
|
|
15
|
-
* Draws the card with sharp edges.
|
|
16
|
-
* Can be used e.g.
|
|
17
|
-
* when nesting multiple syn-cards to create hierarchy.
|
|
18
|
-
*/
|
|
19
|
-
sharp?: SynCard["sharp"];
|
|
20
|
-
}, {
|
|
22
|
+
declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {
|
|
21
23
|
nativeElement: import("vue").Ref<SynCard | undefined, SynCard | undefined>;
|
|
22
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{
|
|
23
|
-
/**
|
|
24
|
-
* Draws the card with sharp edges.
|
|
25
|
-
* Can be used e.g.
|
|
26
|
-
* when nesting multiple syn-cards to create hierarchy.
|
|
27
|
-
*/
|
|
28
|
-
sharp?: SynCard["sharp"];
|
|
29
|
-
}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
24
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
30
25
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
31
26
|
export default _default;
|
|
32
27
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
@@ -1,16 +1,12 @@
|
|
|
1
1
|
import '@synergy-design-system/components/components/divider/divider.js';
|
|
2
2
|
import type { SynDivider } from '@synergy-design-system/components';
|
|
3
|
-
|
|
3
|
+
type __VLS_Props = {
|
|
4
4
|
/**
|
|
5
5
|
* Draws the divider in a vertical orientation.
|
|
6
6
|
*/
|
|
7
|
-
vertical?: SynDivider[
|
|
8
|
-
}
|
|
7
|
+
vertical?: SynDivider['vertical'];
|
|
8
|
+
};
|
|
9
|
+
declare const _default: import("vue").DefineComponent<__VLS_Props, {
|
|
9
10
|
nativeElement: import("vue").Ref<SynDivider | undefined, SynDivider | undefined>;
|
|
10
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{
|
|
11
|
-
/**
|
|
12
|
-
* Draws the divider in a vertical orientation.
|
|
13
|
-
*/
|
|
14
|
-
vertical?: SynDivider["vertical"];
|
|
15
|
-
}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
11
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
16
12
|
export default _default;
|
|
@@ -1,64 +1,43 @@
|
|
|
1
1
|
import '@synergy-design-system/components/components/menu-item/menu-item.js';
|
|
2
2
|
import type { SynMenuItem } from '@synergy-design-system/components';
|
|
3
|
-
|
|
4
|
-
slots: {
|
|
5
|
-
default?(_: {}): any;
|
|
6
|
-
};
|
|
7
|
-
refs: {
|
|
8
|
-
nativeElement: unknown;
|
|
9
|
-
};
|
|
10
|
-
attrs: Partial<{}>;
|
|
11
|
-
};
|
|
12
|
-
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
13
|
-
declare const __VLS_component: import("vue").DefineComponent<{
|
|
3
|
+
type __VLS_Props = {
|
|
14
4
|
/**
|
|
15
5
|
* The type of menu item to render.
|
|
16
6
|
* To use `checked`, this value must be set to `checkbox`.
|
|
17
7
|
*/
|
|
18
|
-
type?: SynMenuItem[
|
|
8
|
+
type?: SynMenuItem['type'];
|
|
19
9
|
/**
|
|
20
10
|
* Draws the item in a checked state.
|
|
21
11
|
*/
|
|
22
|
-
checked?: SynMenuItem[
|
|
12
|
+
checked?: SynMenuItem['checked'];
|
|
23
13
|
/**
|
|
24
14
|
* A unique value to store in the menu item.
|
|
25
15
|
* This can be used as a way to identify menu items when selected.
|
|
26
16
|
*/
|
|
27
|
-
value?: SynMenuItem[
|
|
17
|
+
value?: SynMenuItem['value'];
|
|
28
18
|
/**
|
|
29
19
|
* Draws the menu item in a loading state.
|
|
30
20
|
*/
|
|
31
|
-
loading?: SynMenuItem[
|
|
21
|
+
loading?: SynMenuItem['loading'];
|
|
32
22
|
/**
|
|
33
23
|
* Draws the menu item in a disabled state, preventing selection.
|
|
34
24
|
*/
|
|
35
|
-
disabled?: SynMenuItem[
|
|
36
|
-
}
|
|
25
|
+
disabled?: SynMenuItem['disabled'];
|
|
26
|
+
};
|
|
27
|
+
declare function __VLS_template(): {
|
|
28
|
+
attrs: Partial<{}>;
|
|
29
|
+
slots: {
|
|
30
|
+
default?(_: {}): any;
|
|
31
|
+
};
|
|
32
|
+
refs: {
|
|
33
|
+
nativeElement: unknown;
|
|
34
|
+
};
|
|
35
|
+
rootEl: any;
|
|
36
|
+
};
|
|
37
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
38
|
+
declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {
|
|
37
39
|
nativeElement: import("vue").Ref<SynMenuItem | undefined, SynMenuItem | undefined>;
|
|
38
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{
|
|
39
|
-
/**
|
|
40
|
-
* The type of menu item to render.
|
|
41
|
-
* To use `checked`, this value must be set to `checkbox`.
|
|
42
|
-
*/
|
|
43
|
-
type?: SynMenuItem["type"];
|
|
44
|
-
/**
|
|
45
|
-
* Draws the item in a checked state.
|
|
46
|
-
*/
|
|
47
|
-
checked?: SynMenuItem["checked"];
|
|
48
|
-
/**
|
|
49
|
-
* A unique value to store in the menu item.
|
|
50
|
-
* This can be used as a way to identify menu items when selected.
|
|
51
|
-
*/
|
|
52
|
-
value?: SynMenuItem["value"];
|
|
53
|
-
/**
|
|
54
|
-
* Draws the menu item in a loading state.
|
|
55
|
-
*/
|
|
56
|
-
loading?: SynMenuItem["loading"];
|
|
57
|
-
/**
|
|
58
|
-
* Draws the menu item in a disabled state, preventing selection.
|
|
59
|
-
*/
|
|
60
|
-
disabled?: SynMenuItem["disabled"];
|
|
61
|
-
}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
40
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
62
41
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
63
42
|
export default _default;
|
|
64
43
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
@@ -1,13 +1,14 @@
|
|
|
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
|
+
attrs: Partial<{}>;
|
|
4
5
|
slots: {
|
|
5
6
|
default?(_: {}): any;
|
|
6
7
|
};
|
|
7
8
|
refs: {
|
|
8
9
|
nativeElement: unknown;
|
|
9
10
|
};
|
|
10
|
-
|
|
11
|
+
rootEl: any;
|
|
11
12
|
};
|
|
12
13
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
13
14
|
declare const __VLS_component: import("vue").DefineComponent<{}, {
|
|
@@ -1,38 +1,30 @@
|
|
|
1
1
|
import '@synergy-design-system/components/components/optgroup/optgroup.js';
|
|
2
2
|
import type { SynOptgroup } from '@synergy-design-system/components';
|
|
3
|
+
type __VLS_Props = {
|
|
4
|
+
/**
|
|
5
|
+
* Disables all options in the optgroup.
|
|
6
|
+
*/
|
|
7
|
+
disabled?: SynOptgroup['disabled'];
|
|
8
|
+
/**
|
|
9
|
+
* The optgroups label.
|
|
10
|
+
* If you need to display HTML, use the `label` slot instead.
|
|
11
|
+
*/
|
|
12
|
+
label?: SynOptgroup['label'];
|
|
13
|
+
};
|
|
3
14
|
declare function __VLS_template(): {
|
|
15
|
+
attrs: Partial<{}>;
|
|
4
16
|
slots: {
|
|
5
17
|
default?(_: {}): any;
|
|
6
18
|
};
|
|
7
19
|
refs: {
|
|
8
20
|
nativeElement: unknown;
|
|
9
21
|
};
|
|
10
|
-
|
|
22
|
+
rootEl: any;
|
|
11
23
|
};
|
|
12
24
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
13
|
-
declare const __VLS_component: import("vue").DefineComponent<{
|
|
14
|
-
/**
|
|
15
|
-
* Disables all options in the optgroup.
|
|
16
|
-
*/
|
|
17
|
-
disabled?: SynOptgroup["disabled"];
|
|
18
|
-
/**
|
|
19
|
-
* The optgroups label.
|
|
20
|
-
* If you need to display HTML, use the `label` slot instead.
|
|
21
|
-
*/
|
|
22
|
-
label?: SynOptgroup["label"];
|
|
23
|
-
}, {
|
|
25
|
+
declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {
|
|
24
26
|
nativeElement: import("vue").Ref<SynOptgroup | undefined, SynOptgroup | undefined>;
|
|
25
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{
|
|
26
|
-
/**
|
|
27
|
-
* Disables all options in the optgroup.
|
|
28
|
-
*/
|
|
29
|
-
disabled?: SynOptgroup["disabled"];
|
|
30
|
-
/**
|
|
31
|
-
* The optgroups label.
|
|
32
|
-
* If you need to display HTML, use the `label` slot instead.
|
|
33
|
-
*/
|
|
34
|
-
label?: SynOptgroup["label"];
|
|
35
|
-
}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
27
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
36
28
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
37
29
|
export default _default;
|
|
38
30
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
@@ -1,16 +1,6 @@
|
|
|
1
1
|
import '@synergy-design-system/components/components/option/option.js';
|
|
2
2
|
import type { SynOption } from '@synergy-design-system/components';
|
|
3
|
-
|
|
4
|
-
slots: {
|
|
5
|
-
default?(_: {}): any;
|
|
6
|
-
};
|
|
7
|
-
refs: {
|
|
8
|
-
nativeElement: unknown;
|
|
9
|
-
};
|
|
10
|
-
attrs: Partial<{}>;
|
|
11
|
-
};
|
|
12
|
-
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
13
|
-
declare const __VLS_component: import("vue").DefineComponent<{
|
|
3
|
+
type __VLS_Props = {
|
|
14
4
|
/**
|
|
15
5
|
* The option's value.
|
|
16
6
|
* When selected, the containing form control will receive this value.
|
|
@@ -19,28 +9,26 @@ declare const __VLS_component: import("vue").DefineComponent<{
|
|
|
19
9
|
* Values may not contain spaces, as spaces are used as delimiters when listing
|
|
20
10
|
multiple values.
|
|
21
11
|
*/
|
|
22
|
-
value?: SynOption[
|
|
12
|
+
value?: SynOption['value'];
|
|
23
13
|
/**
|
|
24
14
|
* Draws the option in a disabled state, preventing selection.
|
|
25
15
|
*/
|
|
26
|
-
disabled?: SynOption[
|
|
27
|
-
}
|
|
16
|
+
disabled?: SynOption['disabled'];
|
|
17
|
+
};
|
|
18
|
+
declare function __VLS_template(): {
|
|
19
|
+
attrs: Partial<{}>;
|
|
20
|
+
slots: {
|
|
21
|
+
default?(_: {}): any;
|
|
22
|
+
};
|
|
23
|
+
refs: {
|
|
24
|
+
nativeElement: unknown;
|
|
25
|
+
};
|
|
26
|
+
rootEl: any;
|
|
27
|
+
};
|
|
28
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
29
|
+
declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {
|
|
28
30
|
nativeElement: import("vue").Ref<SynOption | undefined, SynOption | undefined>;
|
|
29
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{
|
|
30
|
-
/**
|
|
31
|
-
* The option's value.
|
|
32
|
-
* When selected, the containing form control will receive this value.
|
|
33
|
-
* The value must be unique
|
|
34
|
-
from other options in the same group.
|
|
35
|
-
* Values may not contain spaces, as spaces are used as delimiters when listing
|
|
36
|
-
multiple values.
|
|
37
|
-
*/
|
|
38
|
-
value?: SynOption["value"];
|
|
39
|
-
/**
|
|
40
|
-
* Draws the option in a disabled state, preventing selection.
|
|
41
|
-
*/
|
|
42
|
-
disabled?: SynOption["disabled"];
|
|
43
|
-
}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
31
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
44
32
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
45
33
|
export default _default;
|
|
46
34
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
@@ -1,13 +1,14 @@
|
|
|
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
|
+
attrs: Partial<{}>;
|
|
4
5
|
slots: {
|
|
5
6
|
default?(_: {}): any;
|
|
6
7
|
};
|
|
7
8
|
refs: {
|
|
8
9
|
nativeElement: unknown;
|
|
9
10
|
};
|
|
10
|
-
|
|
11
|
+
rootEl: any;
|
|
11
12
|
};
|
|
12
13
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
13
14
|
declare const __VLS_component: import("vue").DefineComponent<{}, {
|
|
@@ -1,44 +1,33 @@
|
|
|
1
1
|
import '@synergy-design-system/components/components/progress-bar/progress-bar.js';
|
|
2
2
|
import type { SynProgressBar } from '@synergy-design-system/components';
|
|
3
|
-
|
|
4
|
-
slots: {
|
|
5
|
-
default?(_: {}): any;
|
|
6
|
-
};
|
|
7
|
-
refs: {
|
|
8
|
-
nativeElement: unknown;
|
|
9
|
-
};
|
|
10
|
-
attrs: Partial<{}>;
|
|
11
|
-
};
|
|
12
|
-
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
13
|
-
declare const __VLS_component: import("vue").DefineComponent<{
|
|
3
|
+
type __VLS_Props = {
|
|
14
4
|
/**
|
|
15
5
|
* The current progress as a percentage, 0 to 100.
|
|
16
6
|
*/
|
|
17
|
-
value?: SynProgressBar[
|
|
7
|
+
value?: SynProgressBar['value'];
|
|
18
8
|
/**
|
|
19
9
|
* When true, percentage is ignored, the label is hidden, and the progress bar is drawn in an indeterminate state.
|
|
20
10
|
*/
|
|
21
|
-
indeterminate?: SynProgressBar[
|
|
11
|
+
indeterminate?: SynProgressBar['indeterminate'];
|
|
22
12
|
/**
|
|
23
13
|
* A custom label for assistive devices.
|
|
24
14
|
*/
|
|
25
|
-
label?: SynProgressBar[
|
|
26
|
-
}
|
|
15
|
+
label?: SynProgressBar['label'];
|
|
16
|
+
};
|
|
17
|
+
declare function __VLS_template(): {
|
|
18
|
+
attrs: Partial<{}>;
|
|
19
|
+
slots: {
|
|
20
|
+
default?(_: {}): any;
|
|
21
|
+
};
|
|
22
|
+
refs: {
|
|
23
|
+
nativeElement: unknown;
|
|
24
|
+
};
|
|
25
|
+
rootEl: any;
|
|
26
|
+
};
|
|
27
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
28
|
+
declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {
|
|
27
29
|
nativeElement: import("vue").Ref<SynProgressBar | undefined, SynProgressBar | undefined>;
|
|
28
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{
|
|
29
|
-
/**
|
|
30
|
-
* The current progress as a percentage, 0 to 100.
|
|
31
|
-
*/
|
|
32
|
-
value?: SynProgressBar["value"];
|
|
33
|
-
/**
|
|
34
|
-
* When true, percentage is ignored, the label is hidden, and the progress bar is drawn in an indeterminate state.
|
|
35
|
-
*/
|
|
36
|
-
indeterminate?: SynProgressBar["indeterminate"];
|
|
37
|
-
/**
|
|
38
|
-
* A custom label for assistive devices.
|
|
39
|
-
*/
|
|
40
|
-
label?: SynProgressBar["label"];
|
|
41
|
-
}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
30
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
42
31
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
43
32
|
export default _default;
|
|
44
33
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
@@ -1,36 +1,29 @@
|
|
|
1
1
|
import '@synergy-design-system/components/components/progress-ring/progress-ring.js';
|
|
2
2
|
import type { SynProgressRing } from '@synergy-design-system/components';
|
|
3
|
+
type __VLS_Props = {
|
|
4
|
+
/**
|
|
5
|
+
* The current progress as a percentage, 0 to 100.
|
|
6
|
+
*/
|
|
7
|
+
value?: SynProgressRing['value'];
|
|
8
|
+
/**
|
|
9
|
+
* A custom label for assistive devices.
|
|
10
|
+
*/
|
|
11
|
+
label?: SynProgressRing['label'];
|
|
12
|
+
};
|
|
3
13
|
declare function __VLS_template(): {
|
|
14
|
+
attrs: Partial<{}>;
|
|
4
15
|
slots: {
|
|
5
16
|
default?(_: {}): any;
|
|
6
17
|
};
|
|
7
18
|
refs: {
|
|
8
19
|
nativeElement: unknown;
|
|
9
20
|
};
|
|
10
|
-
|
|
21
|
+
rootEl: any;
|
|
11
22
|
};
|
|
12
23
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
13
|
-
declare const __VLS_component: import("vue").DefineComponent<{
|
|
14
|
-
/**
|
|
15
|
-
* The current progress as a percentage, 0 to 100.
|
|
16
|
-
*/
|
|
17
|
-
value?: SynProgressRing["value"];
|
|
18
|
-
/**
|
|
19
|
-
* A custom label for assistive devices.
|
|
20
|
-
*/
|
|
21
|
-
label?: SynProgressRing["label"];
|
|
22
|
-
}, {
|
|
24
|
+
declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {
|
|
23
25
|
nativeElement: import("vue").Ref<SynProgressRing | undefined, SynProgressRing | undefined>;
|
|
24
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{
|
|
25
|
-
/**
|
|
26
|
-
* The current progress as a percentage, 0 to 100.
|
|
27
|
-
*/
|
|
28
|
-
value?: SynProgressRing["value"];
|
|
29
|
-
/**
|
|
30
|
-
* A custom label for assistive devices.
|
|
31
|
-
*/
|
|
32
|
-
label?: SynProgressRing["label"];
|
|
33
|
-
}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
26
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
34
27
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
35
28
|
export default _default;
|
|
36
29
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
@@ -1,28 +1,25 @@
|
|
|
1
1
|
import '@synergy-design-system/components/components/range-tick/range-tick.js';
|
|
2
2
|
import type { SynRangeTick } from '@synergy-design-system/components';
|
|
3
|
+
type __VLS_Props = {
|
|
4
|
+
/**
|
|
5
|
+
* Whether the tick should be shown as a subdivision.
|
|
6
|
+
*/
|
|
7
|
+
subdivision?: SynRangeTick['subdivision'];
|
|
8
|
+
};
|
|
3
9
|
declare function __VLS_template(): {
|
|
10
|
+
attrs: Partial<{}>;
|
|
4
11
|
slots: {
|
|
5
12
|
default?(_: {}): any;
|
|
6
13
|
};
|
|
7
14
|
refs: {
|
|
8
15
|
nativeElement: unknown;
|
|
9
16
|
};
|
|
10
|
-
|
|
17
|
+
rootEl: any;
|
|
11
18
|
};
|
|
12
19
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
13
|
-
declare const __VLS_component: import("vue").DefineComponent<{
|
|
14
|
-
/**
|
|
15
|
-
* Whether the tick should be shown as a subdivision.
|
|
16
|
-
*/
|
|
17
|
-
subdivision?: SynRangeTick["subdivision"];
|
|
18
|
-
}, {
|
|
20
|
+
declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {
|
|
19
21
|
nativeElement: import("vue").Ref<SynRangeTick | undefined, SynRangeTick | undefined>;
|
|
20
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{
|
|
21
|
-
/**
|
|
22
|
-
* Whether the tick should be shown as a subdivision.
|
|
23
|
-
*/
|
|
24
|
-
subdivision?: SynRangeTick["subdivision"];
|
|
25
|
-
}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
22
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
26
23
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
27
24
|
export default _default;
|
|
28
25
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
@@ -1,36 +1,29 @@
|
|
|
1
1
|
import '@synergy-design-system/components/components/tab-panel/tab-panel.js';
|
|
2
2
|
import type { SynTabPanel } from '@synergy-design-system/components';
|
|
3
|
+
type __VLS_Props = {
|
|
4
|
+
/**
|
|
5
|
+
* The tab panel's name.
|
|
6
|
+
*/
|
|
7
|
+
name?: SynTabPanel['name'];
|
|
8
|
+
/**
|
|
9
|
+
* When true, the tab panel will be shown.
|
|
10
|
+
*/
|
|
11
|
+
active?: SynTabPanel['active'];
|
|
12
|
+
};
|
|
3
13
|
declare function __VLS_template(): {
|
|
14
|
+
attrs: Partial<{}>;
|
|
4
15
|
slots: {
|
|
5
16
|
default?(_: {}): any;
|
|
6
17
|
};
|
|
7
18
|
refs: {
|
|
8
19
|
nativeElement: unknown;
|
|
9
20
|
};
|
|
10
|
-
|
|
21
|
+
rootEl: any;
|
|
11
22
|
};
|
|
12
23
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
13
|
-
declare const __VLS_component: import("vue").DefineComponent<{
|
|
14
|
-
/**
|
|
15
|
-
* The tab panel's name.
|
|
16
|
-
*/
|
|
17
|
-
name?: SynTabPanel["name"];
|
|
18
|
-
/**
|
|
19
|
-
* When true, the tab panel will be shown.
|
|
20
|
-
*/
|
|
21
|
-
active?: SynTabPanel["active"];
|
|
22
|
-
}, {
|
|
24
|
+
declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {
|
|
23
25
|
nativeElement: import("vue").Ref<SynTabPanel | undefined, SynTabPanel | undefined>;
|
|
24
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{
|
|
25
|
-
/**
|
|
26
|
-
* The tab panel's name.
|
|
27
|
-
*/
|
|
28
|
-
name?: SynTabPanel["name"];
|
|
29
|
-
/**
|
|
30
|
-
* When true, the tab panel will be shown.
|
|
31
|
-
*/
|
|
32
|
-
active?: SynTabPanel["active"];
|
|
33
|
-
}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
26
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
34
27
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
35
28
|
export default _default;
|
|
36
29
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
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": "^2.11.
|
|
7
|
+
"@synergy-design-system/components": "^2.11.6"
|
|
8
8
|
},
|
|
9
9
|
"description": "Vue3 wrappers for the Synergy Design System",
|
|
10
10
|
"exports": {
|
|
@@ -40,10 +40,10 @@
|
|
|
40
40
|
"directory": "packages/vue"
|
|
41
41
|
},
|
|
42
42
|
"type": "module",
|
|
43
|
-
"version": "2.11.
|
|
43
|
+
"version": "2.11.6",
|
|
44
44
|
"devDependencies": {
|
|
45
45
|
"@vue/tsconfig": "^0.5.1",
|
|
46
|
-
"vue": "^3.5.
|
|
46
|
+
"vue": "^3.5.12"
|
|
47
47
|
},
|
|
48
48
|
"peerDependencies": {
|
|
49
49
|
"@synergy-design-system/tokens": "^2.13.0"
|