@sellmate/design-system-vue 0.0.8 → 0.0.10
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/dist/components.d.ts +1 -0
- package/dist/components.js +5 -0
- package/lib/components.ts +7 -0
- package/package.json +3 -3
package/dist/components.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { type StencilVueComponent } from '@stencil/vue-output-target/runtime';
|
|
2
2
|
import type { JSX } from '@sellmate/design-system';
|
|
3
|
+
export declare const SdBadge: StencilVueComponent<JSX.SdBadge>;
|
|
3
4
|
export declare const SdButton: StencilVueComponent<JSX.SdButton>;
|
|
4
5
|
export declare const SdCheckbox: StencilVueComponent<JSX.SdCheckbox>;
|
|
5
6
|
export declare const SdDateBox: StencilVueComponent<JSX.SdDateBox>;
|
package/dist/components.js
CHANGED
|
@@ -2,6 +2,11 @@
|
|
|
2
2
|
/* tslint:disable */
|
|
3
3
|
/* auto-generated vue proxies */
|
|
4
4
|
import { defineContainer } from '@stencil/vue-output-target/runtime';
|
|
5
|
+
export const SdBadge = /*@__PURE__*/ defineContainer('sd-badge', undefined, [
|
|
6
|
+
'size',
|
|
7
|
+
'color',
|
|
8
|
+
'label'
|
|
9
|
+
]);
|
|
5
10
|
export const SdButton = /*@__PURE__*/ defineContainer('sd-button', undefined, [
|
|
6
11
|
'variant',
|
|
7
12
|
'size',
|
package/lib/components.ts
CHANGED
|
@@ -8,6 +8,13 @@ import type { JSX } from '@sellmate/design-system';
|
|
|
8
8
|
|
|
9
9
|
|
|
10
10
|
|
|
11
|
+
export const SdBadge: StencilVueComponent<JSX.SdBadge> = /*@__PURE__*/ defineContainer<JSX.SdBadge>('sd-badge', undefined, [
|
|
12
|
+
'size',
|
|
13
|
+
'color',
|
|
14
|
+
'label'
|
|
15
|
+
]);
|
|
16
|
+
|
|
17
|
+
|
|
11
18
|
export const SdButton: StencilVueComponent<JSX.SdButton> = /*@__PURE__*/ defineContainer<JSX.SdButton>('sd-button', undefined, [
|
|
12
19
|
'variant',
|
|
13
20
|
'size',
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sellmate/design-system-vue",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.10",
|
|
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.
|
|
48
|
+
"@sellmate/design-system": "^0.0.10",
|
|
49
49
|
"@stencil/vue-output-target": "^0.11.8"
|
|
50
50
|
},
|
|
51
51
|
"peerDependencies": {
|
|
52
52
|
"vue": ">=3.0.0"
|
|
53
53
|
},
|
|
54
|
-
"gitHead": "
|
|
54
|
+
"gitHead": "7d797d8d330432e8a5a567082ea997fb7527fe26"
|
|
55
55
|
}
|