@synergy-design-system/vue 2.14.2 → 2.14.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.
@@ -15,14 +15,6 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
15
15
  */
16
16
  name?: SynSelect["name"];
17
17
  /**
18
- * The current value of the select, submitted as a name/value pair with form data.
19
- * When `multiple` is enabled, the
20
- value attribute will be a space-delimited list of values based on the options selected, and the value property will
21
- be an array.
22
- * **For this reason, values must not contain spaces.**
23
- */
24
- value?: SynSelect["value"];
25
- /**
26
18
  * The select's size.
27
19
  */
28
20
  size?: SynSelect["size"];
@@ -98,6 +90,14 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
98
90
  */
99
91
  getTag?: SynSelect["getTag"];
100
92
  /**
93
+ * The current value of the select, submitted as a name/value pair with form data.
94
+ * When `multiple` is enabled, the
95
+ value attribute will be a space-delimited list of values based on the options selected, and the value property will
96
+ be an array.
97
+ * **For this reason, values must not contain spaces.**
98
+ */
99
+ value?: SynSelect["value"];
100
+ /**
101
101
  * Support for two way data binding
102
102
  */
103
103
  modelValue?: SynSelect["value"];
@@ -121,14 +121,6 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
121
121
  */
122
122
  name?: SynSelect["name"];
123
123
  /**
124
- * The current value of the select, submitted as a name/value pair with form data.
125
- * When `multiple` is enabled, the
126
- value attribute will be a space-delimited list of values based on the options selected, and the value property will
127
- be an array.
128
- * **For this reason, values must not contain spaces.**
129
- */
130
- value?: SynSelect["value"];
131
- /**
132
124
  * The select's size.
133
125
  */
134
126
  size?: SynSelect["size"];
@@ -204,6 +196,14 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
204
196
  */
205
197
  getTag?: SynSelect["getTag"];
206
198
  /**
199
+ * The current value of the select, submitted as a name/value pair with form data.
200
+ * When `multiple` is enabled, the
201
+ value attribute will be a space-delimited list of values based on the options selected, and the value property will
202
+ be an array.
203
+ * **For this reason, values must not contain spaces.**
204
+ */
205
+ value?: SynSelect["value"];
206
+ /**
207
207
  * Support for two way data binding
208
208
  */
209
209
  modelValue?: SynSelect["value"];
@@ -5,7 +5,6 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
5
5
  __name: "SynVueSelect",
6
6
  props: {
7
7
  name: {},
8
- value: {},
9
8
  size: {},
10
9
  placeholder: {},
11
10
  multiple: {},
@@ -20,6 +19,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
20
19
  form: {},
21
20
  required: {},
22
21
  getTag: {},
22
+ value: {},
23
23
  modelValue: {}
24
24
  },
25
25
  emits: ["syn-change", "syn-clear", "syn-input", "syn-focus", "syn-blur", "syn-show", "syn-after-show", "syn-hide", "syn-after-hide", "syn-invalid", "update:modelValue"],
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.14.2"
7
+ "@synergy-design-system/components": "^2.14.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.14.2",
43
+ "version": "2.14.4",
44
44
  "devDependencies": {
45
45
  "@vitejs/plugin-vue": "^5.2.0",
46
46
  "@vue/tsconfig": "^0.5.1",
@@ -50,7 +50,7 @@
50
50
  "vue": "^3.5.13"
51
51
  },
52
52
  "peerDependencies": {
53
- "@synergy-design-system/tokens": "^2.15.0"
53
+ "@synergy-design-system/tokens": "^2.15.1"
54
54
  },
55
55
  "scripts": {
56
56
  "_build": "vite build"
@@ -81,15 +81,6 @@ const props = defineProps<{
81
81
  */
82
82
  name?: SynSelect['name'];
83
83
 
84
- /**
85
- * The current value of the select, submitted as a name/value pair with form data.
86
- * When `multiple` is enabled, the
87
- value attribute will be a space-delimited list of values based on the options selected, and the value property will
88
- be an array.
89
- * **For this reason, values must not contain spaces.**
90
- */
91
- value?: SynSelect['value'];
92
-
93
84
  /**
94
85
  * The select's size.
95
86
  */
@@ -179,6 +170,15 @@ the specified value.
179
170
  */
180
171
  getTag?: SynSelect['getTag'];
181
172
 
173
+ /**
174
+ * The current value of the select, submitted as a name/value pair with form data.
175
+ * When `multiple` is enabled, the
176
+ value attribute will be a space-delimited list of values based on the options selected, and the value property will
177
+ be an array.
178
+ * **For this reason, values must not contain spaces.**
179
+ */
180
+ value?: SynSelect['value'];
181
+
182
182
  /**
183
183
  * Support for two way data binding
184
184
  */