@synergy-design-system/vue 2.11.3 → 2.11.4
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.
|
@@ -50,6 +50,13 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
50
50
|
* Syncs the popup width or height to that of the trigger element.
|
|
51
51
|
*/
|
|
52
52
|
sync?: SynDropdown["sync"];
|
|
53
|
+
/**
|
|
54
|
+
* The dropdown will close when the user interacts outside of this element (e.g.
|
|
55
|
+
* clicking).
|
|
56
|
+
* Useful for composing other
|
|
57
|
+
components that use a dropdown internally.
|
|
58
|
+
*/
|
|
59
|
+
containingElement?: SynDropdown["containingElement"];
|
|
53
60
|
}, {
|
|
54
61
|
nativeElement: import("vue").Ref<SynDropdown | undefined, SynDropdown | undefined>;
|
|
55
62
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
@@ -99,6 +106,13 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
99
106
|
* Syncs the popup width or height to that of the trigger element.
|
|
100
107
|
*/
|
|
101
108
|
sync?: SynDropdown["sync"];
|
|
109
|
+
/**
|
|
110
|
+
* The dropdown will close when the user interacts outside of this element (e.g.
|
|
111
|
+
* clicking).
|
|
112
|
+
* Useful for composing other
|
|
113
|
+
components that use a dropdown internally.
|
|
114
|
+
*/
|
|
115
|
+
containingElement?: SynDropdown["containingElement"];
|
|
102
116
|
}> & Readonly<{
|
|
103
117
|
"onSyn-after-hide"?: ((e: SynAfterHideEvent) => any) | undefined;
|
|
104
118
|
"onSyn-after-show"?: ((e: SynAfterShowEvent) => any) | undefined;
|
|
@@ -64,6 +64,12 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
64
64
|
*/
|
|
65
65
|
form?: SynRange["form"];
|
|
66
66
|
/**
|
|
67
|
+
* A function used to format the tooltip's value.
|
|
68
|
+
The value of the thumb is passed as the only argument.
|
|
69
|
+
The function should return a string to display in the tooltip.
|
|
70
|
+
*/
|
|
71
|
+
tooltipFormatter?: SynRange["tooltipFormatter"];
|
|
72
|
+
/**
|
|
67
73
|
* Support for two way data binding
|
|
68
74
|
*/
|
|
69
75
|
modelValue?: SynRange["value"];
|
|
@@ -129,6 +135,12 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
129
135
|
*/
|
|
130
136
|
form?: SynRange["form"];
|
|
131
137
|
/**
|
|
138
|
+
* A function used to format the tooltip's value.
|
|
139
|
+
The value of the thumb is passed as the only argument.
|
|
140
|
+
The function should return a string to display in the tooltip.
|
|
141
|
+
*/
|
|
142
|
+
tooltipFormatter?: SynRange["tooltipFormatter"];
|
|
143
|
+
/**
|
|
132
144
|
* Support for two way data binding
|
|
133
145
|
*/
|
|
134
146
|
modelValue?: SynRange["value"];
|
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.4"
|
|
8
8
|
},
|
|
9
9
|
"description": "Vue3 wrappers for the Synergy Design System",
|
|
10
10
|
"exports": {
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
"directory": "packages/vue"
|
|
41
41
|
},
|
|
42
42
|
"type": "module",
|
|
43
|
-
"version": "2.11.
|
|
43
|
+
"version": "2.11.4",
|
|
44
44
|
"devDependencies": {
|
|
45
45
|
"@vue/tsconfig": "^0.5.1",
|
|
46
46
|
"vue": "^3.5.11"
|
|
@@ -95,6 +95,14 @@ dropdowns that allow for multiple interactions.
|
|
|
95
95
|
* Syncs the popup width or height to that of the trigger element.
|
|
96
96
|
*/
|
|
97
97
|
sync?: SynDropdown['sync'];
|
|
98
|
+
|
|
99
|
+
/**
|
|
100
|
+
* The dropdown will close when the user interacts outside of this element (e.g.
|
|
101
|
+
* clicking).
|
|
102
|
+
* Useful for composing other
|
|
103
|
+
components that use a dropdown internally.
|
|
104
|
+
*/
|
|
105
|
+
containingElement?: SynDropdown['containingElement'];
|
|
98
106
|
}>();
|
|
99
107
|
|
|
100
108
|
// Make sure prop binding only forwards the props that are actually there.
|
|
@@ -132,6 +132,13 @@ The form must be in the same document or shadow root for this to work.
|
|
|
132
132
|
*/
|
|
133
133
|
form?: SynRange['form'];
|
|
134
134
|
|
|
135
|
+
/**
|
|
136
|
+
* A function used to format the tooltip's value.
|
|
137
|
+
The value of the thumb is passed as the only argument.
|
|
138
|
+
The function should return a string to display in the tooltip.
|
|
139
|
+
*/
|
|
140
|
+
tooltipFormatter?: SynRange['tooltipFormatter'];
|
|
141
|
+
|
|
135
142
|
/**
|
|
136
143
|
* Support for two way data binding
|
|
137
144
|
*/
|