@synergy-design-system/vue 1.26.3 → 1.27.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.
@@ -18,6 +18,10 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
18
18
  this attribute can typically be omitted.
19
19
  */
20
20
  size?: "small" | "medium" | "large" | undefined;
21
+ /**
22
+ * Draws a pill-style radio button with rounded edges.
23
+ */
24
+ pill?: boolean | undefined;
21
25
  }>, {
22
26
  callHandleDisabledChange: () => void | undefined;
23
27
  callFocus: (options?: FocusOptions | undefined) => void | undefined;
@@ -42,6 +46,10 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
42
46
  this attribute can typically be omitted.
43
47
  */
44
48
  size?: "small" | "medium" | "large" | undefined;
49
+ /**
50
+ * Draws a pill-style radio button with rounded edges.
51
+ */
52
+ pill?: boolean | undefined;
45
53
  }>>> & {
46
54
  "onSyn-blur"?: ((e: SynBlurEvent) => any) | undefined;
47
55
  "onSyn-focus"?: ((e: SynFocusEvent) => any) | undefined;
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": "^1.26.3"
7
+ "@synergy-design-system/components": "^1.27.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": "1.26.3",
43
+ "version": "1.27.0",
44
44
  "devDependencies": {
45
45
  "@vue/tsconfig": "^0.5.1",
46
46
  "vue": "^3.4.24"
@@ -70,6 +70,11 @@ const props = defineProps<{
70
70
  this attribute can typically be omitted.
71
71
  */
72
72
  'size'?: SynRadioButton['size'];
73
+
74
+ /**
75
+ * Draws a pill-style radio button with rounded edges.
76
+ */
77
+ 'pill'?: SynRadioButton['pill'];
73
78
  }>();
74
79
 
75
80
  // Make sure prop binding only forwards the props that are actually there.