@sellmate/design-system-vue 1.0.49 → 1.0.51
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 +31 -2
- package/lib/components.ts +33 -2
- 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
|
@@ -194,9 +194,28 @@ export const SdFilePicker = /*@__PURE__*/ defineContainer('sd-file-picker', unde
|
|
|
194
194
|
'inline',
|
|
195
195
|
'multiple',
|
|
196
196
|
'accept',
|
|
197
|
-
'
|
|
197
|
+
'maxFileSize',
|
|
198
|
+
'maxTotalSize',
|
|
199
|
+
'maxFiles',
|
|
200
|
+
'name',
|
|
201
|
+
'label',
|
|
202
|
+
'addonLabel',
|
|
203
|
+
'hint',
|
|
204
|
+
'errorMessage',
|
|
205
|
+
'width',
|
|
206
|
+
'rules',
|
|
207
|
+
'error',
|
|
208
|
+
'status',
|
|
209
|
+
'icon',
|
|
210
|
+
'labelTooltip',
|
|
211
|
+
'labelTooltipProps',
|
|
212
|
+
'focused',
|
|
213
|
+
'hovered',
|
|
214
|
+
'sdUpdate',
|
|
215
|
+
'sdReject'
|
|
198
216
|
], [
|
|
199
|
-
'sdUpdate'
|
|
217
|
+
'sdUpdate',
|
|
218
|
+
'sdReject'
|
|
200
219
|
], 'value', 'sdUpdate', undefined);
|
|
201
220
|
export const SdFloatingPortal = /*@__PURE__*/ defineContainer('sd-floating-portal', undefined, [
|
|
202
221
|
'to',
|
|
@@ -217,6 +236,16 @@ export const SdForm = /*@__PURE__*/ defineContainer('sd-form', undefined, [
|
|
|
217
236
|
'sdSubmit',
|
|
218
237
|
'sdValidationError'
|
|
219
238
|
]);
|
|
239
|
+
export const SdGhostButton = /*@__PURE__*/ defineContainer('sd-ghost-button', undefined, [
|
|
240
|
+
'icon',
|
|
241
|
+
'size',
|
|
242
|
+
'intent',
|
|
243
|
+
'ariaLabel',
|
|
244
|
+
'disabled',
|
|
245
|
+
'sdClick'
|
|
246
|
+
], [
|
|
247
|
+
'sdClick'
|
|
248
|
+
]);
|
|
220
249
|
export const SdGuide = /*@__PURE__*/ defineContainer('sd-guide', undefined, [
|
|
221
250
|
'type',
|
|
222
251
|
'label',
|
package/lib/components.ts
CHANGED
|
@@ -232,9 +232,28 @@ export const SdFilePicker: StencilVueComponent<JSX.SdFilePicker, JSX.SdFilePicke
|
|
|
232
232
|
'inline',
|
|
233
233
|
'multiple',
|
|
234
234
|
'accept',
|
|
235
|
-
'
|
|
235
|
+
'maxFileSize',
|
|
236
|
+
'maxTotalSize',
|
|
237
|
+
'maxFiles',
|
|
238
|
+
'name',
|
|
239
|
+
'label',
|
|
240
|
+
'addonLabel',
|
|
241
|
+
'hint',
|
|
242
|
+
'errorMessage',
|
|
243
|
+
'width',
|
|
244
|
+
'rules',
|
|
245
|
+
'error',
|
|
246
|
+
'status',
|
|
247
|
+
'icon',
|
|
248
|
+
'labelTooltip',
|
|
249
|
+
'labelTooltipProps',
|
|
250
|
+
'focused',
|
|
251
|
+
'hovered',
|
|
252
|
+
'sdUpdate',
|
|
253
|
+
'sdReject'
|
|
236
254
|
], [
|
|
237
|
-
'sdUpdate'
|
|
255
|
+
'sdUpdate',
|
|
256
|
+
'sdReject'
|
|
238
257
|
],
|
|
239
258
|
'value', 'sdUpdate', undefined);
|
|
240
259
|
|
|
@@ -262,6 +281,18 @@ export const SdForm: StencilVueComponent<JSX.SdForm> = /*@__PURE__*/ defineConta
|
|
|
262
281
|
]);
|
|
263
282
|
|
|
264
283
|
|
|
284
|
+
export const SdGhostButton: StencilVueComponent<JSX.SdGhostButton> = /*@__PURE__*/ defineContainer<JSX.SdGhostButton>('sd-ghost-button', undefined, [
|
|
285
|
+
'icon',
|
|
286
|
+
'size',
|
|
287
|
+
'intent',
|
|
288
|
+
'ariaLabel',
|
|
289
|
+
'disabled',
|
|
290
|
+
'sdClick'
|
|
291
|
+
], [
|
|
292
|
+
'sdClick'
|
|
293
|
+
]);
|
|
294
|
+
|
|
295
|
+
|
|
265
296
|
export const SdGuide: StencilVueComponent<JSX.SdGuide> = /*@__PURE__*/ defineContainer<JSX.SdGuide>('sd-guide', undefined, [
|
|
266
297
|
'type',
|
|
267
298
|
'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.51",
|
|
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.51",
|
|
49
49
|
"@stencil/vue-output-target": "^0.11.8"
|
|
50
50
|
},
|
|
51
51
|
"peerDependencies": {
|