@sellmate/design-system-vue 1.4.0 → 1.5.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.
@@ -5,6 +5,7 @@ export declare const SdBadge: StencilVueComponent<JSX.SdBadge>;
5
5
  export declare const SdBarcodeInput: StencilVueComponent<JSX.SdBarcodeInput, JSX.SdBarcodeInput["value"]>;
6
6
  export declare const SdButton: StencilVueComponent<JSX.SdButton>;
7
7
  export declare const SdCalendar: StencilVueComponent<JSX.SdCalendar, JSX.SdCalendar["value"]>;
8
+ export declare const SdCallout: StencilVueComponent<JSX.SdCallout>;
8
9
  export declare const SdCard: StencilVueComponent<JSX.SdCard>;
9
10
  export declare const SdCheckbox: StencilVueComponent<JSX.SdCheckbox, JSX.SdCheckbox["value"]>;
10
11
  export declare const SdChip: StencilVueComponent<JSX.SdChip, JSX.SdChip["value"]>;
@@ -66,12 +66,17 @@ export const SdCalendar = /*@__PURE__*/ defineContainer('sd-calendar', undefined
66
66
  'value',
67
67
  'selectable',
68
68
  'events',
69
+ 'elevated',
69
70
  'sdUpdate',
70
71
  'sdViewChange'
71
72
  ], [
72
73
  'sdUpdate',
73
74
  'sdViewChange'
74
75
  ], 'value', 'sdUpdate', undefined);
76
+ export const SdCallout = /*@__PURE__*/ defineContainer('sd-callout', undefined, [
77
+ 'type',
78
+ 'message'
79
+ ]);
75
80
  export const SdCard = /*@__PURE__*/ defineContainer('sd-card', undefined, [
76
81
  'bordered',
77
82
  'sdClass'
package/lib/components.ts CHANGED
@@ -81,6 +81,7 @@ export const SdCalendar: StencilVueComponent<JSX.SdCalendar, JSX.SdCalendar["val
81
81
  'value',
82
82
  'selectable',
83
83
  'events',
84
+ 'elevated',
84
85
  'sdUpdate',
85
86
  'sdViewChange'
86
87
  ], [
@@ -90,6 +91,12 @@ export const SdCalendar: StencilVueComponent<JSX.SdCalendar, JSX.SdCalendar["val
90
91
  'value', 'sdUpdate', undefined);
91
92
 
92
93
 
94
+ export const SdCallout: StencilVueComponent<JSX.SdCallout> = /*@__PURE__*/ defineContainer<JSX.SdCallout>('sd-callout', undefined, [
95
+ 'type',
96
+ 'message'
97
+ ]);
98
+
99
+
93
100
  export const SdCard: StencilVueComponent<JSX.SdCard> = /*@__PURE__*/ defineContainer<JSX.SdCard>('sd-card', undefined, [
94
101
  'bordered',
95
102
  'sdClass'
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sellmate/design-system-vue",
3
- "version": "1.4.0",
3
+ "version": "1.5.0",
4
4
  "description": "Design System - Vue Component Wrappers",
5
5
  "keywords": [
6
6
  "vue",
@@ -47,7 +47,7 @@
47
47
  "vue": "^3.4.38"
48
48
  },
49
49
  "dependencies": {
50
- "@sellmate/design-system": "^1.4.0",
50
+ "@sellmate/design-system": "^1.5.0",
51
51
  "@stencil/vue-output-target": "^0.11.8"
52
52
  },
53
53
  "peerDependencies": {