@sellmate/design-system-vue 0.0.1 → 0.0.3
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 +13 -1
- package/lib/components.ts +15 -1
- package/package.json +3 -3
package/dist/components.d.ts
CHANGED
|
@@ -5,6 +5,7 @@ export declare const SdCheckbox: StencilVueComponent<JSX.SdCheckbox>;
|
|
|
5
5
|
export declare const SdDateBox: StencilVueComponent<JSX.SdDateBox>;
|
|
6
6
|
export declare const SdDatePicker: StencilVueComponent<JSX.SdDatePicker>;
|
|
7
7
|
export declare const SdDateRangePicker: StencilVueComponent<JSX.SdDateRangePicker>;
|
|
8
|
+
export declare const SdGuide: StencilVueComponent<JSX.SdGuide>;
|
|
8
9
|
export declare const SdIcon: StencilVueComponent<JSX.SdIcon>;
|
|
9
10
|
export declare const SdInput: StencilVueComponent<JSX.SdInput, JSX.SdInput["value"]>;
|
|
10
11
|
export declare const SdPagination: StencilVueComponent<JSX.SdPagination>;
|
package/dist/components.js
CHANGED
|
@@ -10,8 +10,12 @@ export const SdButton = /*@__PURE__*/ defineContainer('sd-button', undefined, [
|
|
|
10
10
|
'disabled',
|
|
11
11
|
'type',
|
|
12
12
|
'icon',
|
|
13
|
+
'iconColor',
|
|
14
|
+
'iconSize',
|
|
13
15
|
'iconRight',
|
|
14
16
|
'noHover',
|
|
17
|
+
'buttonStyle',
|
|
18
|
+
'iconStyle',
|
|
15
19
|
'sdClick'
|
|
16
20
|
], [
|
|
17
21
|
'sdClick'
|
|
@@ -60,12 +64,20 @@ export const SdDateRangePicker = /*@__PURE__*/ defineContainer('sd-date-range-pi
|
|
|
60
64
|
], [
|
|
61
65
|
'sdChange'
|
|
62
66
|
]);
|
|
67
|
+
export const SdGuide = /*@__PURE__*/ defineContainer('sd-guide', undefined, [
|
|
68
|
+
'type',
|
|
69
|
+
'popupTitle',
|
|
70
|
+
'message',
|
|
71
|
+
'guideUrl',
|
|
72
|
+
'popupWidth'
|
|
73
|
+
]);
|
|
63
74
|
export const SdIcon = /*@__PURE__*/ defineContainer('sd-icon', undefined, [
|
|
64
75
|
'name',
|
|
65
76
|
'size',
|
|
66
77
|
'color',
|
|
67
78
|
'rotate',
|
|
68
|
-
'label'
|
|
79
|
+
'label',
|
|
80
|
+
'iconStyle'
|
|
69
81
|
]);
|
|
70
82
|
export const SdInput = /*@__PURE__*/ defineContainer('sd-input', undefined, [
|
|
71
83
|
'value',
|
package/lib/components.ts
CHANGED
|
@@ -16,8 +16,12 @@ export const SdButton: StencilVueComponent<JSX.SdButton> = /*@__PURE__*/ defineC
|
|
|
16
16
|
'disabled',
|
|
17
17
|
'type',
|
|
18
18
|
'icon',
|
|
19
|
+
'iconColor',
|
|
20
|
+
'iconSize',
|
|
19
21
|
'iconRight',
|
|
20
22
|
'noHover',
|
|
23
|
+
'buttonStyle',
|
|
24
|
+
'iconStyle',
|
|
21
25
|
'sdClick'
|
|
22
26
|
], [
|
|
23
27
|
'sdClick'
|
|
@@ -76,12 +80,22 @@ export const SdDateRangePicker: StencilVueComponent<JSX.SdDateRangePicker> = /*@
|
|
|
76
80
|
]);
|
|
77
81
|
|
|
78
82
|
|
|
83
|
+
export const SdGuide: StencilVueComponent<JSX.SdGuide> = /*@__PURE__*/ defineContainer<JSX.SdGuide>('sd-guide', undefined, [
|
|
84
|
+
'type',
|
|
85
|
+
'popupTitle',
|
|
86
|
+
'message',
|
|
87
|
+
'guideUrl',
|
|
88
|
+
'popupWidth'
|
|
89
|
+
]);
|
|
90
|
+
|
|
91
|
+
|
|
79
92
|
export const SdIcon: StencilVueComponent<JSX.SdIcon> = /*@__PURE__*/ defineContainer<JSX.SdIcon>('sd-icon', undefined, [
|
|
80
93
|
'name',
|
|
81
94
|
'size',
|
|
82
95
|
'color',
|
|
83
96
|
'rotate',
|
|
84
|
-
'label'
|
|
97
|
+
'label',
|
|
98
|
+
'iconStyle'
|
|
85
99
|
]);
|
|
86
100
|
|
|
87
101
|
|
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.3",
|
|
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.3",
|
|
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": "18eee2439f545dab72b53287ae04f799519cfda9"
|
|
55
55
|
}
|