@sellmate/design-system-vue 0.0.30 → 0.0.31
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 +8 -0
- package/lib/components.ts +10 -0
- package/package.json +3 -3
package/dist/components.d.ts
CHANGED
|
@@ -14,6 +14,7 @@ export declare const SdLoadingSpinner: StencilVueComponent<JSX.SdLoadingSpinner>
|
|
|
14
14
|
export declare const SdPagination: StencilVueComponent<JSX.SdPagination>;
|
|
15
15
|
export declare const SdPopover: StencilVueComponent<JSX.SdPopover>;
|
|
16
16
|
export declare const SdPortal: StencilVueComponent<JSX.SdPortal>;
|
|
17
|
+
export declare const SdProgress: StencilVueComponent<JSX.SdProgress>;
|
|
17
18
|
export declare const SdSelect: StencilVueComponent<JSX.SdSelect>;
|
|
18
19
|
export declare const SdSelectMultiple: StencilVueComponent<JSX.SdSelectMultiple>;
|
|
19
20
|
export declare const SdSelectMultipleGroup: StencilVueComponent<JSX.SdSelectMultipleGroup>;
|
package/dist/components.js
CHANGED
|
@@ -147,6 +147,14 @@ export const SdPortal = /*@__PURE__*/ defineContainer('sd-portal', undefined, [
|
|
|
147
147
|
], [
|
|
148
148
|
'sdClose'
|
|
149
149
|
]);
|
|
150
|
+
export const SdProgress = /*@__PURE__*/ defineContainer('sd-progress', undefined, [
|
|
151
|
+
'type',
|
|
152
|
+
'status',
|
|
153
|
+
'percentage',
|
|
154
|
+
'size',
|
|
155
|
+
'strokeWidth',
|
|
156
|
+
'label'
|
|
157
|
+
]);
|
|
150
158
|
export const SdSelect = /*@__PURE__*/ defineContainer('sd-select', undefined, [
|
|
151
159
|
'value',
|
|
152
160
|
'label',
|
package/lib/components.ts
CHANGED
|
@@ -182,6 +182,16 @@ export const SdPortal: StencilVueComponent<JSX.SdPortal> = /*@__PURE__*/ defineC
|
|
|
182
182
|
]);
|
|
183
183
|
|
|
184
184
|
|
|
185
|
+
export const SdProgress: StencilVueComponent<JSX.SdProgress> = /*@__PURE__*/ defineContainer<JSX.SdProgress>('sd-progress', undefined, [
|
|
186
|
+
'type',
|
|
187
|
+
'status',
|
|
188
|
+
'percentage',
|
|
189
|
+
'size',
|
|
190
|
+
'strokeWidth',
|
|
191
|
+
'label'
|
|
192
|
+
]);
|
|
193
|
+
|
|
194
|
+
|
|
185
195
|
export const SdSelect: StencilVueComponent<JSX.SdSelect> = /*@__PURE__*/ defineContainer<JSX.SdSelect>('sd-select', undefined, [
|
|
186
196
|
'value',
|
|
187
197
|
'label',
|
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.31",
|
|
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.31",
|
|
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": "41f495e4833d6f6ab1be62f7f88272c24a60037e"
|
|
55
55
|
}
|