@sellmate/design-system-vue 1.0.49 → 1.0.50
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 +10 -0
- package/lib/components.ts +12 -0
- package/package.json +2 -2
package/dist/components.d.ts
CHANGED
|
@@ -17,6 +17,7 @@ export declare const SdField: StencilVueComponent<JSX.SdField>;
|
|
|
17
17
|
export declare const SdFilePicker: StencilVueComponent<JSX.SdFilePicker, JSX.SdFilePicker["value"]>;
|
|
18
18
|
export declare const SdFloatingPortal: StencilVueComponent<JSX.SdFloatingPortal>;
|
|
19
19
|
export declare const SdForm: StencilVueComponent<JSX.SdForm>;
|
|
20
|
+
export declare const SdGhostButton: StencilVueComponent<JSX.SdGhostButton>;
|
|
20
21
|
export declare const SdGuide: StencilVueComponent<JSX.SdGuide>;
|
|
21
22
|
export declare const SdIcon: StencilVueComponent<JSX.SdIcon>;
|
|
22
23
|
export declare const SdInput: StencilVueComponent<JSX.SdInput, JSX.SdInput["value"]>;
|
package/dist/components.js
CHANGED
|
@@ -217,6 +217,16 @@ export const SdForm = /*@__PURE__*/ defineContainer('sd-form', undefined, [
|
|
|
217
217
|
'sdSubmit',
|
|
218
218
|
'sdValidationError'
|
|
219
219
|
]);
|
|
220
|
+
export const SdGhostButton = /*@__PURE__*/ defineContainer('sd-ghost-button', undefined, [
|
|
221
|
+
'icon',
|
|
222
|
+
'size',
|
|
223
|
+
'intent',
|
|
224
|
+
'ariaLabel',
|
|
225
|
+
'disabled',
|
|
226
|
+
'sdClick'
|
|
227
|
+
], [
|
|
228
|
+
'sdClick'
|
|
229
|
+
]);
|
|
220
230
|
export const SdGuide = /*@__PURE__*/ defineContainer('sd-guide', undefined, [
|
|
221
231
|
'type',
|
|
222
232
|
'label',
|
package/lib/components.ts
CHANGED
|
@@ -262,6 +262,18 @@ export const SdForm: StencilVueComponent<JSX.SdForm> = /*@__PURE__*/ defineConta
|
|
|
262
262
|
]);
|
|
263
263
|
|
|
264
264
|
|
|
265
|
+
export const SdGhostButton: StencilVueComponent<JSX.SdGhostButton> = /*@__PURE__*/ defineContainer<JSX.SdGhostButton>('sd-ghost-button', undefined, [
|
|
266
|
+
'icon',
|
|
267
|
+
'size',
|
|
268
|
+
'intent',
|
|
269
|
+
'ariaLabel',
|
|
270
|
+
'disabled',
|
|
271
|
+
'sdClick'
|
|
272
|
+
], [
|
|
273
|
+
'sdClick'
|
|
274
|
+
]);
|
|
275
|
+
|
|
276
|
+
|
|
265
277
|
export const SdGuide: StencilVueComponent<JSX.SdGuide> = /*@__PURE__*/ defineContainer<JSX.SdGuide>('sd-guide', undefined, [
|
|
266
278
|
'type',
|
|
267
279
|
'label',
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sellmate/design-system-vue",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.50",
|
|
4
4
|
"description": "Design System - Vue Component Wrappers",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"vue",
|
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
"vue": "^3.4.38"
|
|
46
46
|
},
|
|
47
47
|
"dependencies": {
|
|
48
|
-
"@sellmate/design-system": "^1.0.
|
|
48
|
+
"@sellmate/design-system": "^1.0.50",
|
|
49
49
|
"@stencil/vue-output-target": "^0.11.8"
|
|
50
50
|
},
|
|
51
51
|
"peerDependencies": {
|