@synergy-design-system/vue 2.5.0 → 2.7.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (49) hide show
  1. package/dist/components/SynVueAccordion.vue.d.ts +12 -10
  2. package/dist/components/SynVueAlert.vue.d.ts +8 -8
  3. package/dist/components/SynVueBadge.vue.d.ts +8 -6
  4. package/dist/components/SynVueBreadcrumb.vue.d.ts +8 -6
  5. package/dist/components/SynVueBreadcrumbItem.vue.d.ts +12 -10
  6. package/dist/components/SynVueButton.vue.d.ts +38 -38
  7. package/dist/components/SynVueButtonGroup.vue.d.ts +8 -6
  8. package/dist/components/SynVueCard.vue.d.ts +8 -6
  9. package/dist/components/SynVueCheckbox.vue.d.ts +22 -22
  10. package/dist/components/SynVueDetails.vue.d.ts +10 -10
  11. package/dist/components/SynVueDialog.vue.d.ts +6 -6
  12. package/dist/components/SynVueDivider.vue.d.ts +2 -2
  13. package/dist/components/SynVueDrawer.vue.d.ts +10 -10
  14. package/dist/components/SynVueDropdown.vue.d.ts +16 -16
  15. package/dist/components/SynVueFile.vue.d.ts +32 -32
  16. package/dist/components/SynVueHeader.vue.d.ts +4 -4
  17. package/dist/components/SynVueIcon.vue.d.ts +8 -8
  18. package/dist/components/SynVueIconButton.vue.d.ts +20 -20
  19. package/dist/components/SynVueInput.vue.d.ts +60 -60
  20. package/dist/components/SynVueMenuItem.vue.d.ts +16 -14
  21. package/dist/components/SynVueMenuLabel.vue.d.ts +6 -4
  22. package/dist/components/SynVueNavItem.vue.d.ts +14 -14
  23. package/dist/components/SynVueOptgroup.vue.d.ts +10 -8
  24. package/dist/components/SynVueOption.vue.d.ts +10 -8
  25. package/dist/components/SynVuePopup.vue.d.ts +44 -44
  26. package/dist/components/SynVuePrioNav.vue.d.ts +6 -4
  27. package/dist/components/SynVueProgressBar.vue.d.ts +12 -10
  28. package/dist/components/SynVueProgressRing.vue.d.ts +10 -8
  29. package/dist/components/SynVueRadio.vue.d.ts +6 -6
  30. package/dist/components/SynVueRadioButton.vue.d.ts +8 -8
  31. package/dist/components/SynVueRadioGroup.vue.d.ts +16 -16
  32. package/dist/components/SynVueRange.vue.d.ts +154 -0
  33. package/dist/components/SynVueRangeTick.vue.d.ts +34 -0
  34. package/dist/components/SynVueSelect.vue.d.ts +34 -34
  35. package/dist/components/SynVueSideNav.vue.d.ts +6 -6
  36. package/dist/components/SynVueSwitch.vue.d.ts +20 -20
  37. package/dist/components/SynVueTab.vue.d.ts +8 -8
  38. package/dist/components/SynVueTabGroup.vue.d.ts +10 -10
  39. package/dist/components/SynVueTabPanel.vue.d.ts +10 -8
  40. package/dist/components/SynVueTag.vue.d.ts +4 -4
  41. package/dist/components/SynVueTextarea.vue.d.ts +46 -46
  42. package/dist/components/SynVueTooltip.vue.d.ts +16 -16
  43. package/dist/index.d.ts +2 -0
  44. package/package.json +4 -4
  45. package/src/components/SynVueDropdown.vue +2 -1
  46. package/src/components/SynVueRange.vue +210 -0
  47. package/src/components/SynVueRangeTick.vue +62 -0
  48. package/src/components/SynVueSelect.vue +3 -1
  49. package/src/index.js +2 -0
@@ -10,24 +10,24 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
10
10
  * You can toggle this attribute to show and hide the details, or you
11
11
  can use the `show()` and `hide()` methods and this attribute will reflect the details' open state.
12
12
  */
13
- open?: boolean | undefined;
13
+ open?: SynDetails["open"];
14
14
  /**
15
15
  * The summary to show in the header.
16
16
  * If you need to display HTML, use the `summary` slot instead.
17
17
  */
18
- summary?: string | undefined;
18
+ summary?: SynDetails["summary"];
19
19
  /**
20
20
  * Disables the details so it can't be toggled.
21
21
  */
22
- disabled?: boolean | undefined;
22
+ disabled?: SynDetails["disabled"];
23
23
  /**
24
24
  * Draws the details as contained element.
25
25
  */
26
- contained?: boolean | undefined;
26
+ contained?: SynDetails["contained"];
27
27
  /**
28
28
  * The details's size.
29
29
  */
30
- size?: "medium" | "large" | undefined;
30
+ size?: SynDetails["size"];
31
31
  }>, {
32
32
  nativeElement: import("vue").Ref<SynDetails | undefined>;
33
33
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
@@ -41,24 +41,24 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
41
41
  * You can toggle this attribute to show and hide the details, or you
42
42
  can use the `show()` and `hide()` methods and this attribute will reflect the details' open state.
43
43
  */
44
- open?: boolean | undefined;
44
+ open?: SynDetails["open"];
45
45
  /**
46
46
  * The summary to show in the header.
47
47
  * If you need to display HTML, use the `summary` slot instead.
48
48
  */
49
- summary?: string | undefined;
49
+ summary?: SynDetails["summary"];
50
50
  /**
51
51
  * Disables the details so it can't be toggled.
52
52
  */
53
- disabled?: boolean | undefined;
53
+ disabled?: SynDetails["disabled"];
54
54
  /**
55
55
  * Draws the details as contained element.
56
56
  */
57
- contained?: boolean | undefined;
57
+ contained?: SynDetails["contained"];
58
58
  /**
59
59
  * The details's size.
60
60
  */
61
- size?: "medium" | "large" | undefined;
61
+ size?: SynDetails["size"];
62
62
  }>>> & {
63
63
  "onSyn-show"?: ((e: SynShowEvent) => any) | undefined;
64
64
  "onSyn-after-show"?: ((e: SynAfterShowEvent) => any) | undefined;
@@ -12,20 +12,20 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
12
12
  * You can toggle this attribute to show and hide the dialog, or you can
13
13
  use the `show()` and `hide()` methods and this attribute will reflect the dialog's open state.
14
14
  */
15
- open?: boolean | undefined;
15
+ open?: SynDialog["open"];
16
16
  /**
17
17
  * The dialog's label as displayed in the header.
18
18
  * You should always include a relevant label even when using
19
19
  `no-header`, as it is required for proper accessibility.
20
20
  * If you need to display HTML, use the `label` slot instead.
21
21
  */
22
- label?: string | undefined;
22
+ label?: SynDialog["label"];
23
23
  /**
24
24
  * Disables the header.
25
25
  * This will also remove the default close button, so please ensure you provide an easy,
26
26
  accessible way for users to dismiss the dialog.
27
27
  */
28
- noHeader?: boolean | undefined;
28
+ noHeader?: SynDialog["noHeader"];
29
29
  }>, {
30
30
  nativeElement: import("vue").Ref<SynDialog | undefined>;
31
31
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
@@ -41,20 +41,20 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
41
41
  * You can toggle this attribute to show and hide the dialog, or you can
42
42
  use the `show()` and `hide()` methods and this attribute will reflect the dialog's open state.
43
43
  */
44
- open?: boolean | undefined;
44
+ open?: SynDialog["open"];
45
45
  /**
46
46
  * The dialog's label as displayed in the header.
47
47
  * You should always include a relevant label even when using
48
48
  `no-header`, as it is required for proper accessibility.
49
49
  * If you need to display HTML, use the `label` slot instead.
50
50
  */
51
- label?: string | undefined;
51
+ label?: SynDialog["label"];
52
52
  /**
53
53
  * Disables the header.
54
54
  * This will also remove the default close button, so please ensure you provide an easy,
55
55
  accessible way for users to dismiss the dialog.
56
56
  */
57
- noHeader?: boolean | undefined;
57
+ noHeader?: SynDialog["noHeader"];
58
58
  }>>> & {
59
59
  "onSyn-show"?: ((e: SynShowEvent) => any) | undefined;
60
60
  "onSyn-after-show"?: ((e: SynAfterShowEvent) => any) | undefined;
@@ -4,14 +4,14 @@ declare const _default: import("vue").DefineComponent<__VLS_TypePropsToOption<{
4
4
  /**
5
5
  * Draws the divider in a vertical orientation.
6
6
  */
7
- vertical?: boolean | undefined;
7
+ vertical?: SynDivider["vertical"];
8
8
  }>, {
9
9
  nativeElement: import("vue").Ref<SynDivider | undefined>;
10
10
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<{
11
11
  /**
12
12
  * Draws the divider in a vertical orientation.
13
13
  */
14
- vertical?: boolean | undefined;
14
+ vertical?: SynDivider["vertical"];
15
15
  }>>>, {}, {}>;
16
16
  export default _default;
17
17
  type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
@@ -12,30 +12,30 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
12
12
  * You can toggle this attribute to show and hide the drawer, or you can
13
13
  use the `show()` and `hide()` methods and this attribute will reflect the drawer's open state.
14
14
  */
15
- open?: boolean | undefined;
15
+ open?: SynDrawer["open"];
16
16
  /**
17
17
  * The drawer's label as displayed in the header.
18
18
  * You should always include a relevant label even when using
19
19
  `no-header`, as it is required for proper accessibility.
20
20
  * If you need to display HTML, use the `label` slot instead.
21
21
  */
22
- label?: string | undefined;
22
+ label?: SynDrawer["label"];
23
23
  /**
24
24
  * The direction from which the drawer will open.
25
25
  */
26
- placement?: "top" | "end" | "bottom" | "start" | undefined;
26
+ placement?: SynDrawer["placement"];
27
27
  /**
28
28
  * By default, the drawer slides out of its containing block (usually the viewport).
29
29
  * To make the drawer slide out of
30
30
  its parent element, set this attribute and add `position: relative` to the parent.
31
31
  */
32
- contained?: boolean | undefined;
32
+ contained?: SynDrawer["contained"];
33
33
  /**
34
34
  * Removes the header.
35
35
  * This will also remove the default close button, so please ensure you provide an easy,
36
36
  accessible way for users to dismiss the drawer.
37
37
  */
38
- noHeader?: boolean | undefined;
38
+ noHeader?: SynDrawer["noHeader"];
39
39
  }>, {
40
40
  nativeElement: import("vue").Ref<SynDrawer | undefined>;
41
41
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
@@ -51,30 +51,30 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
51
51
  * You can toggle this attribute to show and hide the drawer, or you can
52
52
  use the `show()` and `hide()` methods and this attribute will reflect the drawer's open state.
53
53
  */
54
- open?: boolean | undefined;
54
+ open?: SynDrawer["open"];
55
55
  /**
56
56
  * The drawer's label as displayed in the header.
57
57
  * You should always include a relevant label even when using
58
58
  `no-header`, as it is required for proper accessibility.
59
59
  * If you need to display HTML, use the `label` slot instead.
60
60
  */
61
- label?: string | undefined;
61
+ label?: SynDrawer["label"];
62
62
  /**
63
63
  * The direction from which the drawer will open.
64
64
  */
65
- placement?: "top" | "end" | "bottom" | "start" | undefined;
65
+ placement?: SynDrawer["placement"];
66
66
  /**
67
67
  * By default, the drawer slides out of its containing block (usually the viewport).
68
68
  * To make the drawer slide out of
69
69
  its parent element, set this attribute and add `position: relative` to the parent.
70
70
  */
71
- contained?: boolean | undefined;
71
+ contained?: SynDrawer["contained"];
72
72
  /**
73
73
  * Removes the header.
74
74
  * This will also remove the default close button, so please ensure you provide an easy,
75
75
  accessible way for users to dismiss the drawer.
76
76
  */
77
- noHeader?: boolean | undefined;
77
+ noHeader?: SynDrawer["noHeader"];
78
78
  }>>> & {
79
79
  "onSyn-show"?: ((e: SynShowEvent) => any) | undefined;
80
80
  "onSyn-after-show"?: ((e: SynAfterShowEvent) => any) | undefined;
@@ -10,42 +10,42 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
10
10
  * You can toggle this attribute to show and hide the dropdown, or you
11
11
  can use the `show()` and `hide()` methods and this attribute will reflect the dropdown's open state.
12
12
  */
13
- open?: boolean | undefined;
13
+ open?: SynDropdown["open"];
14
14
  /**
15
15
  * The preferred placement of the dropdown panel.
16
16
  * Note that the actual placement may vary as needed to keep the panel
17
17
  inside of the viewport.
18
18
  */
19
- placement?: "top" | "bottom" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "right" | "right-start" | "right-end" | "left" | "left-start" | "left-end" | undefined;
19
+ placement?: SynDropdown["placement"];
20
20
  /**
21
21
  * Disables the dropdown so the panel will not open.
22
22
  */
23
- disabled?: boolean | undefined;
23
+ disabled?: SynDropdown["disabled"];
24
24
  /**
25
25
  * By default, the dropdown is closed when an item is selected.
26
26
  * This attribute will keep it open instead.
27
27
  * Useful for
28
28
  dropdowns that allow for multiple interactions.
29
29
  */
30
- stayOpenOnSelect?: boolean | undefined;
30
+ stayOpenOnSelect?: SynDropdown["stayOpenOnSelect"];
31
31
  /**
32
32
  * The distance in pixels from which to offset the panel away from its trigger.
33
33
  */
34
- distance?: number | undefined;
34
+ distance?: SynDropdown["distance"];
35
35
  /**
36
36
  * The distance in pixels from which to offset the panel along its trigger.
37
37
  */
38
- skidding?: number | undefined;
38
+ skidding?: SynDropdown["skidding"];
39
39
  /**
40
40
  * Enable this option to prevent the panel from being clipped when the component is placed inside a container with
41
41
  `overflow: auto|scroll`.
42
42
  * Hoisting uses a fixed positioning strategy that works in many, but not all, scenarios.
43
43
  */
44
- hoist?: boolean | undefined;
44
+ hoist?: SynDropdown["hoist"];
45
45
  /**
46
46
  * Syncs the popup width or height to that of the trigger element.
47
47
  */
48
- sync?: SynDropdown['sync'];
48
+ sync?: SynDropdown["sync"];
49
49
  }>, {
50
50
  nativeElement: import("vue").Ref<SynDropdown | undefined>;
51
51
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
@@ -59,42 +59,42 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
59
59
  * You can toggle this attribute to show and hide the dropdown, or you
60
60
  can use the `show()` and `hide()` methods and this attribute will reflect the dropdown's open state.
61
61
  */
62
- open?: boolean | undefined;
62
+ open?: SynDropdown["open"];
63
63
  /**
64
64
  * The preferred placement of the dropdown panel.
65
65
  * Note that the actual placement may vary as needed to keep the panel
66
66
  inside of the viewport.
67
67
  */
68
- placement?: "top" | "bottom" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "right" | "right-start" | "right-end" | "left" | "left-start" | "left-end" | undefined;
68
+ placement?: SynDropdown["placement"];
69
69
  /**
70
70
  * Disables the dropdown so the panel will not open.
71
71
  */
72
- disabled?: boolean | undefined;
72
+ disabled?: SynDropdown["disabled"];
73
73
  /**
74
74
  * By default, the dropdown is closed when an item is selected.
75
75
  * This attribute will keep it open instead.
76
76
  * Useful for
77
77
  dropdowns that allow for multiple interactions.
78
78
  */
79
- stayOpenOnSelect?: boolean | undefined;
79
+ stayOpenOnSelect?: SynDropdown["stayOpenOnSelect"];
80
80
  /**
81
81
  * The distance in pixels from which to offset the panel away from its trigger.
82
82
  */
83
- distance?: number | undefined;
83
+ distance?: SynDropdown["distance"];
84
84
  /**
85
85
  * The distance in pixels from which to offset the panel along its trigger.
86
86
  */
87
- skidding?: number | undefined;
87
+ skidding?: SynDropdown["skidding"];
88
88
  /**
89
89
  * Enable this option to prevent the panel from being clipped when the component is placed inside a container with
90
90
  `overflow: auto|scroll`.
91
91
  * Hoisting uses a fixed positioning strategy that works in many, but not all, scenarios.
92
92
  */
93
- hoist?: boolean | undefined;
93
+ hoist?: SynDropdown["hoist"];
94
94
  /**
95
95
  * Syncs the popup width or height to that of the trigger element.
96
96
  */
97
- sync?: SynDropdown['sync'];
97
+ sync?: SynDropdown["sync"];
98
98
  }>>> & {
99
99
  "onSyn-show"?: ((e: SynShowEvent) => any) | undefined;
100
100
  "onSyn-after-show"?: ((e: SynAfterShowEvent) => any) | undefined;
@@ -12,11 +12,11 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
12
12
  via its length property.
13
13
  [see MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/file#getting_information_on_selected_files)
14
14
  */
15
- files?: FileList | null | undefined;
15
+ files?: SynFile["files"];
16
16
  /**
17
17
  * The name of the file control, submitted as a name/value pair with form data.
18
18
  */
19
- name?: string | undefined;
19
+ name?: SynFile["name"];
20
20
  /**
21
21
  * The value of the file control contains a string that represents the path of the selected file.
22
22
  If multiple files are selected, the value represents the first file in the list.
@@ -24,46 +24,46 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
24
24
  Beware that the only valid value when setting a file control is an empty string!
25
25
  [see MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/file#value)
26
26
  */
27
- value?: string | undefined;
27
+ value?: SynFile["value"];
28
28
  /**
29
29
  * The file control's size.
30
30
  */
31
- size?: "medium" | "large" | "small" | undefined;
31
+ size?: SynFile["size"];
32
32
  /**
33
33
  * The file control's label.
34
34
  * If you need to display HTML, use the `label` slot instead.
35
35
  */
36
- label?: string | undefined;
36
+ label?: SynFile["label"];
37
37
  /**
38
38
  * The file control's help text.
39
39
  If you need to display HTML, use the `help-text` slot instead.
40
40
  */
41
- helpText?: string | undefined;
41
+ helpText?: SynFile["helpText"];
42
42
  /**
43
43
  * Disables the file control.
44
44
  */
45
- disabled?: boolean | undefined;
45
+ disabled?: SynFile["disabled"];
46
46
  /**
47
47
  * Draw the file control as a drop area
48
48
  */
49
- droparea?: boolean | undefined;
49
+ droparea?: SynFile["droparea"];
50
50
  /**
51
51
  * Comma separated list of supported file types
52
52
  [see MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/accept)
53
53
  */
54
- accept?: string | undefined;
54
+ accept?: SynFile["accept"];
55
55
  /**
56
56
  * Specifies the types of files that the server accepts.
57
57
  Can be set either to user or environment.
58
58
  Works only when not using a droparea!
59
59
  [see MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/capture)
60
60
  */
61
- capture?: "user" | "environment" | undefined;
61
+ capture?: SynFile["capture"];
62
62
  /**
63
63
  * Indicates whether the user can select more than one file.
64
64
  [see MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/file#multiple)
65
65
  */
66
- multiple?: boolean | undefined;
66
+ multiple?: SynFile["multiple"];
67
67
  /**
68
68
  * Indicates that the file control should let the user select directories instead of files.
69
69
  When a directory is selected, the directory and its entire hierarchy of contents are included
@@ -71,7 +71,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
71
71
  Note: This is a non-standard attribute but is supported in the major browsers.
72
72
  [see MDN](https://developer.mozilla.org/en-US/docs/Web/API/HTMLInputElement/webkitdirectory)
73
73
  */
74
- webkitdirectory?: boolean | undefined;
74
+ webkitdirectory?: SynFile["webkitdirectory"];
75
75
  /**
76
76
  * By default, form controls are associated with the nearest containing `<form>` element.
77
77
  This attribute allows you to place the form control outside of a form and associate it
@@ -79,19 +79,19 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
79
79
  * The form must be in the same document
80
80
  or shadow root for this to work.
81
81
  */
82
- form?: string | undefined;
82
+ form?: SynFile["form"];
83
83
  /**
84
84
  * Makes the input a required field.
85
85
  */
86
- required?: boolean | undefined;
86
+ required?: SynFile["required"];
87
87
  /**
88
88
  * Suppress the value from being displayed in the file control
89
89
  */
90
- hideValue?: boolean | undefined;
90
+ hideValue?: SynFile["hideValue"];
91
91
  /**
92
92
  * Support for two way data binding
93
93
  */
94
- modelValue?: FileList | null | undefined;
94
+ modelValue?: SynFile["files"];
95
95
  }>, {
96
96
  nativeElement: import("vue").Ref<SynFile | undefined>;
97
97
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
@@ -108,11 +108,11 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
108
108
  via its length property.
109
109
  [see MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/file#getting_information_on_selected_files)
110
110
  */
111
- files?: FileList | null | undefined;
111
+ files?: SynFile["files"];
112
112
  /**
113
113
  * The name of the file control, submitted as a name/value pair with form data.
114
114
  */
115
- name?: string | undefined;
115
+ name?: SynFile["name"];
116
116
  /**
117
117
  * The value of the file control contains a string that represents the path of the selected file.
118
118
  If multiple files are selected, the value represents the first file in the list.
@@ -120,46 +120,46 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
120
120
  Beware that the only valid value when setting a file control is an empty string!
121
121
  [see MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/file#value)
122
122
  */
123
- value?: string | undefined;
123
+ value?: SynFile["value"];
124
124
  /**
125
125
  * The file control's size.
126
126
  */
127
- size?: "medium" | "large" | "small" | undefined;
127
+ size?: SynFile["size"];
128
128
  /**
129
129
  * The file control's label.
130
130
  * If you need to display HTML, use the `label` slot instead.
131
131
  */
132
- label?: string | undefined;
132
+ label?: SynFile["label"];
133
133
  /**
134
134
  * The file control's help text.
135
135
  If you need to display HTML, use the `help-text` slot instead.
136
136
  */
137
- helpText?: string | undefined;
137
+ helpText?: SynFile["helpText"];
138
138
  /**
139
139
  * Disables the file control.
140
140
  */
141
- disabled?: boolean | undefined;
141
+ disabled?: SynFile["disabled"];
142
142
  /**
143
143
  * Draw the file control as a drop area
144
144
  */
145
- droparea?: boolean | undefined;
145
+ droparea?: SynFile["droparea"];
146
146
  /**
147
147
  * Comma separated list of supported file types
148
148
  [see MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/accept)
149
149
  */
150
- accept?: string | undefined;
150
+ accept?: SynFile["accept"];
151
151
  /**
152
152
  * Specifies the types of files that the server accepts.
153
153
  Can be set either to user or environment.
154
154
  Works only when not using a droparea!
155
155
  [see MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/capture)
156
156
  */
157
- capture?: "user" | "environment" | undefined;
157
+ capture?: SynFile["capture"];
158
158
  /**
159
159
  * Indicates whether the user can select more than one file.
160
160
  [see MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/file#multiple)
161
161
  */
162
- multiple?: boolean | undefined;
162
+ multiple?: SynFile["multiple"];
163
163
  /**
164
164
  * Indicates that the file control should let the user select directories instead of files.
165
165
  When a directory is selected, the directory and its entire hierarchy of contents are included
@@ -167,7 +167,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
167
167
  Note: This is a non-standard attribute but is supported in the major browsers.
168
168
  [see MDN](https://developer.mozilla.org/en-US/docs/Web/API/HTMLInputElement/webkitdirectory)
169
169
  */
170
- webkitdirectory?: boolean | undefined;
170
+ webkitdirectory?: SynFile["webkitdirectory"];
171
171
  /**
172
172
  * By default, form controls are associated with the nearest containing `<form>` element.
173
173
  This attribute allows you to place the form control outside of a form and associate it
@@ -175,19 +175,19 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
175
175
  * The form must be in the same document
176
176
  or shadow root for this to work.
177
177
  */
178
- form?: string | undefined;
178
+ form?: SynFile["form"];
179
179
  /**
180
180
  * Makes the input a required field.
181
181
  */
182
- required?: boolean | undefined;
182
+ required?: SynFile["required"];
183
183
  /**
184
184
  * Suppress the value from being displayed in the file control
185
185
  */
186
- hideValue?: boolean | undefined;
186
+ hideValue?: SynFile["hideValue"];
187
187
  /**
188
188
  * Support for two way data binding
189
189
  */
190
- modelValue?: FileList | null | undefined;
190
+ modelValue?: SynFile["files"];
191
191
  }>>> & {
192
192
  "onSyn-blur"?: ((e: SynBlurEvent) => any) | undefined;
193
193
  "onSyn-focus"?: ((e: SynFocusEvent) => any) | undefined;
@@ -8,7 +8,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
8
8
  * The headers label.
9
9
  * If you need to display HTML, use the `label` slot instead.
10
10
  */
11
- label?: string | undefined;
11
+ label?: SynHeader["label"];
12
12
  /**
13
13
  * Defines the current visibility and icon of the burger-menu icon.
14
14
  The menu button is added automatically if the component finds a syn-side-nav in non-rail mode.
@@ -17,7 +17,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
17
17
  - open: The burger menu is visible and shows the close icon
18
18
  - closed: The burger menu is visible and shows the open icon
19
19
  */
20
- burgerMenu?: "open" | "hidden" | "closed" | undefined;
20
+ burgerMenu?: SynHeader["burgerMenu"];
21
21
  }>, {
22
22
  nativeElement: import("vue").Ref<SynHeader | undefined>;
23
23
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
@@ -29,7 +29,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
29
29
  * The headers label.
30
30
  * If you need to display HTML, use the `label` slot instead.
31
31
  */
32
- label?: string | undefined;
32
+ label?: SynHeader["label"];
33
33
  /**
34
34
  * Defines the current visibility and icon of the burger-menu icon.
35
35
  The menu button is added automatically if the component finds a syn-side-nav in non-rail mode.
@@ -38,7 +38,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
38
38
  - open: The burger menu is visible and shows the close icon
39
39
  - closed: The burger menu is visible and shows the open icon
40
40
  */
41
- burgerMenu?: "open" | "hidden" | "closed" | undefined;
41
+ burgerMenu?: SynHeader["burgerMenu"];
42
42
  }>>> & {
43
43
  "onSyn-burger-menu-closed"?: ((e: SynBurgerMenuClosedEvent) => any) | undefined;
44
44
  "onSyn-burger-menu-hidden"?: ((e: SynBurgerMenuHiddenEvent) => any) | undefined;
@@ -7,23 +7,23 @@ declare const _default: import("vue").DefineComponent<__VLS_TypePropsToOption<{
7
7
  * The name of the icon to draw.
8
8
  * Available names depend on the icon library being used.
9
9
  */
10
- name?: SynIcon['name'];
10
+ name?: SynIcon["name"];
11
11
  /**
12
12
  * An external URL of an SVG file.
13
13
  * Be sure you trust the content you are including, as it will be executed as code and
14
14
  can result in XSS attacks.
15
15
  */
16
- src?: SynIcon['src'];
16
+ src?: SynIcon["src"];
17
17
  /**
18
18
  * An alternate description to use for assistive devices.
19
19
  * If omitted, the icon will be considered presentational and
20
20
  ignored by assistive devices.
21
21
  */
22
- label?: string | undefined;
22
+ label?: SynIcon["label"];
23
23
  /**
24
24
  * The name of a registered custom icon library.
25
25
  */
26
- library?: string | undefined;
26
+ library?: SynIcon["library"];
27
27
  }>, {
28
28
  nativeElement: import("vue").Ref<SynIcon | undefined>;
29
29
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
@@ -34,23 +34,23 @@ declare const _default: import("vue").DefineComponent<__VLS_TypePropsToOption<{
34
34
  * The name of the icon to draw.
35
35
  * Available names depend on the icon library being used.
36
36
  */
37
- name?: SynIcon['name'];
37
+ name?: SynIcon["name"];
38
38
  /**
39
39
  * An external URL of an SVG file.
40
40
  * Be sure you trust the content you are including, as it will be executed as code and
41
41
  can result in XSS attacks.
42
42
  */
43
- src?: SynIcon['src'];
43
+ src?: SynIcon["src"];
44
44
  /**
45
45
  * An alternate description to use for assistive devices.
46
46
  * If omitted, the icon will be considered presentational and
47
47
  ignored by assistive devices.
48
48
  */
49
- label?: string | undefined;
49
+ label?: SynIcon["label"];
50
50
  /**
51
51
  * The name of a registered custom icon library.
52
52
  */
53
- library?: string | undefined;
53
+ library?: SynIcon["library"];
54
54
  }>>> & {
55
55
  "onSyn-error"?: ((e: SynErrorEvent) => any) | undefined;
56
56
  "onSyn-load"?: ((e: SynLoadEvent) => any) | undefined;