@sellmate/design-system-vue 0.0.56 → 0.0.58

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.
@@ -26,7 +26,7 @@ export const SdButton = /*@__PURE__*/ defineContainer('sd-button', undefined, [
26
26
  ]);
27
27
  export const SdCard = /*@__PURE__*/ defineContainer('sd-card', undefined, [
28
28
  'bordered',
29
- 'class'
29
+ 'cardClassName'
30
30
  ]);
31
31
  export const SdCheckbox = /*@__PURE__*/ defineContainer('sd-checkbox', undefined, [
32
32
  'checked',
package/dist/plugin.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  import type { App } from 'vue';
2
- export declare const StencilTestVuePlugin: {
2
+ export declare const StencilVuePlugin: {
3
3
  install(_app: App): void;
4
4
  };
5
- export default StencilTestVuePlugin;
5
+ export default StencilVuePlugin;
package/dist/plugin.js CHANGED
@@ -1,7 +1,7 @@
1
1
  import { defineCustomElements } from '@sellmate/design-system/loader';
2
- export const StencilTestVuePlugin = {
2
+ export const StencilVuePlugin = {
3
3
  install(_app) {
4
4
  defineCustomElements();
5
5
  },
6
6
  };
7
- export default StencilTestVuePlugin;
7
+ export default StencilVuePlugin;
package/lib/components.ts CHANGED
@@ -36,7 +36,7 @@ export const SdButton: StencilVueComponent<JSX.SdButton> = /*@__PURE__*/ defineC
36
36
 
37
37
  export const SdCard: StencilVueComponent<JSX.SdCard> = /*@__PURE__*/ defineContainer<JSX.SdCard>('sd-card', undefined, [
38
38
  'bordered',
39
- 'class'
39
+ 'cardClassName'
40
40
  ]);
41
41
 
42
42
 
package/lib/plugin.ts CHANGED
@@ -1,10 +1,10 @@
1
1
  import { defineCustomElements } from '@sellmate/design-system/loader';
2
2
  import type { App } from 'vue';
3
3
 
4
- export const StencilTestVuePlugin = {
4
+ export const StencilVuePlugin = {
5
5
  install(_app: App) {
6
6
  defineCustomElements();
7
7
  },
8
8
  };
9
9
 
10
- export default StencilTestVuePlugin;
10
+ export default StencilVuePlugin;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sellmate/design-system-vue",
3
- "version": "0.0.56",
3
+ "version": "0.0.58",
4
4
  "description": "Design System - Vue Component Wrappers",
5
5
  "keywords": [
6
6
  "vue",
@@ -45,11 +45,11 @@
45
45
  "vue": "^3.4.38"
46
46
  },
47
47
  "dependencies": {
48
- "@sellmate/design-system": "^0.0.55",
48
+ "@sellmate/design-system": "^0.0.56",
49
49
  "@stencil/vue-output-target": "^0.11.8"
50
50
  },
51
51
  "peerDependencies": {
52
52
  "vue": ">=3.0.0"
53
53
  },
54
- "gitHead": "7321b70e305dd0177f37d3c518217c0d675d77f1"
54
+ "gitHead": "bd639f1c664b680b44a40540998c72001781756c"
55
55
  }