@synergy-design-system/vue 2.71.0 → 2.72.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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,20 @@
1
1
  # @synergy-design-system/vue
2
2
 
3
+ ## 2.72.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [#1128](https://github.com/synergy-design-system/synergy-design-system/pull/1128) [`7de2441`](https://github.com/synergy-design-system/synergy-design-system/commit/7de244110cf55bb3788e26f65704194bfc861412) Thanks [@schilchSICKAG](https://github.com/schilchSICKAG)! - Released on: 2025-12-09
8
+
9
+ feat: ✨ Add a new `shadow` propertry to `<syn-card>` (#1107)
10
+
11
+ Using `<syn-card shadow></syn-card>` will draw the card with a shadow. This can be used when the card has to stand out visually, for example in dashboards.
12
+
13
+ ### Patch Changes
14
+
15
+ - Updated dependencies [[`7de2441`](https://github.com/synergy-design-system/synergy-design-system/commit/7de244110cf55bb3788e26f65704194bfc861412)]:
16
+ - @synergy-design-system/components@2.72.0
17
+
3
18
  ## 2.71.0
4
19
 
5
20
  ### Patch Changes
@@ -1,5 +1,10 @@
1
1
  import { SynCard } from '@synergy-design-system/components';
2
2
  type __VLS_Props = {
3
+ /**
4
+ * Draws the card with a shadow.
5
+ * Can be used when the card has to stand out visually, for example in dashboards.
6
+ */
7
+ shadow?: SynCard['shadow'];
3
8
  /**
4
9
  * Draws the card with sharp edges.
5
10
  * Can be used e.g.
@@ -3,6 +3,7 @@ import "@synergy-design-system/components/components/card/card.js";
3
3
  const _sfc_main = /* @__PURE__ */ defineComponent({
4
4
  __name: "SynVueCard",
5
5
  props: {
6
+ shadow: {},
6
7
  sharp: {}
7
8
  },
8
9
  setup(__props, { expose: __expose }) {
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.71.0"
7
+ "@synergy-design-system/components": "^2.72.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.71.0",
43
+ "version": "2.72.0",
44
44
  "devDependencies": {
45
45
  "@vitejs/plugin-vue": "^5.2.4",
46
46
  "@vue/tsconfig": "^0.7.0",
@@ -41,6 +41,12 @@ defineExpose({
41
41
 
42
42
  // Map attributes
43
43
  const props = defineProps<{
44
+ /**
45
+ * Draws the card with a shadow.
46
+ * Can be used when the card has to stand out visually, for example in dashboards.
47
+ */
48
+ shadow?: SynCard['shadow'];
49
+
44
50
  /**
45
51
  * Draws the card with sharp edges.
46
52
  * Can be used e.g.