@synergy-design-system/vue 2.29.1 → 2.30.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.
@@ -11,6 +11,11 @@ export type { SynAfterHideEvent } from '@synergy-design-system/components';
11
11
  export type { SynInvalidEvent } from '@synergy-design-system/components';
12
12
  declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
13
13
  /**
14
+ * The delimiter to use when setting the value when `multiple` is enabled.
15
+ The default is a space, but you can set it to a comma or other character.
16
+ */
17
+ delimiter?: SynSelect["delimiter"];
18
+ /**
14
19
  * The name of the select, submitted as a name/value pair with form data.
15
20
  */
16
21
  name?: SynSelect["name"];
@@ -117,6 +122,11 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
117
122
  "syn-clear": (e: SynClearEvent) => any;
118
123
  }, string, import('vue').PublicProps, Readonly<{
119
124
  /**
125
+ * The delimiter to use when setting the value when `multiple` is enabled.
126
+ The default is a space, but you can set it to a comma or other character.
127
+ */
128
+ delimiter?: SynSelect["delimiter"];
129
+ /**
120
130
  * The name of the select, submitted as a name/value pair with form data.
121
131
  */
122
132
  name?: SynSelect["name"];
@@ -4,6 +4,7 @@ const _hoisted_1 = ["value"];
4
4
  const _sfc_main = /* @__PURE__ */ defineComponent({
5
5
  __name: "SynVueSelect",
6
6
  props: {
7
+ delimiter: {},
7
8
  name: {},
8
9
  size: {},
9
10
  placeholder: {},
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.29.1"
7
+ "@synergy-design-system/components": "^2.30.0"
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.29.1",
43
+ "version": "2.30.0",
44
44
  "devDependencies": {
45
45
  "@vitejs/plugin-vue": "^5.2.3",
46
46
  "@vue/tsconfig": "^0.7.0",
@@ -77,6 +77,12 @@ defineExpose({
77
77
  // Map attributes
78
78
  const props = defineProps<{
79
79
  /**
80
+ * The delimiter to use when setting the value when `multiple` is enabled.
81
+ The default is a space, but you can set it to a comma or other character.
82
+ */
83
+ delimiter?: SynSelect['delimiter'];
84
+
85
+ /**
80
86
  * The name of the select, submitted as a name/value pair with form data.
81
87
  */
82
88
  name?: SynSelect['name'];