@sellmate/design-system-vue 1.0.66 → 1.0.68
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 +22 -2
- package/lib/components.ts +25 -2
- package/package.json +2 -2
package/dist/components.d.ts
CHANGED
|
@@ -8,6 +8,7 @@ export declare const SdButtonV2: StencilVueComponent<JSX.SdButtonV2>;
|
|
|
8
8
|
export declare const SdCalendar: StencilVueComponent<JSX.SdCalendar>;
|
|
9
9
|
export declare const SdCard: StencilVueComponent<JSX.SdCard>;
|
|
10
10
|
export declare const SdCheckbox: StencilVueComponent<JSX.SdCheckbox, JSX.SdCheckbox["value"]>;
|
|
11
|
+
export declare const SdChip: StencilVueComponent<JSX.SdChip, JSX.SdChip["value"]>;
|
|
11
12
|
export declare const SdCircleProgress: StencilVueComponent<JSX.SdCircleProgress>;
|
|
12
13
|
export declare const SdConfirmModal: StencilVueComponent<JSX.SdConfirmModal>;
|
|
13
14
|
export declare const SdDateBox: StencilVueComponent<JSX.SdDateBox>;
|
package/dist/components.js
CHANGED
|
@@ -103,6 +103,23 @@ export const SdCheckbox = /*@__PURE__*/ defineContainer('sd-checkbox', undefined
|
|
|
103
103
|
], [
|
|
104
104
|
'sdUpdate'
|
|
105
105
|
], 'value', 'sdUpdate', undefined);
|
|
106
|
+
export const SdChip = /*@__PURE__*/ defineContainer('sd-chip', undefined, [
|
|
107
|
+
'name',
|
|
108
|
+
'value',
|
|
109
|
+
'error',
|
|
110
|
+
'disabled',
|
|
111
|
+
'placeholder',
|
|
112
|
+
'rules',
|
|
113
|
+
'sdUpdate',
|
|
114
|
+
'sdRemove',
|
|
115
|
+
'sdFocus',
|
|
116
|
+
'sdBlur'
|
|
117
|
+
], [
|
|
118
|
+
'sdUpdate',
|
|
119
|
+
'sdRemove',
|
|
120
|
+
'sdFocus',
|
|
121
|
+
'sdBlur'
|
|
122
|
+
], 'value', 'sdUpdate', undefined);
|
|
106
123
|
export const SdCircleProgress = /*@__PURE__*/ defineContainer('sd-circle-progress', undefined, [
|
|
107
124
|
'indeterminate',
|
|
108
125
|
'value',
|
|
@@ -315,7 +332,7 @@ export const SdGuide = /*@__PURE__*/ defineContainer('sd-guide', undefined, [
|
|
|
315
332
|
'type',
|
|
316
333
|
'label',
|
|
317
334
|
'message',
|
|
318
|
-
'
|
|
335
|
+
'url',
|
|
319
336
|
'popupTitle',
|
|
320
337
|
'popupWidth'
|
|
321
338
|
]);
|
|
@@ -370,6 +387,7 @@ export const SdLoadingContainer = /*@__PURE__*/ defineContainer('sd-loading-cont
|
|
|
370
387
|
export const SdLoadingModal = /*@__PURE__*/ defineContainer('sd-loading-modal', undefined, [
|
|
371
388
|
'state',
|
|
372
389
|
'message',
|
|
390
|
+
'useButton',
|
|
373
391
|
'buttonLabel',
|
|
374
392
|
'width',
|
|
375
393
|
'height',
|
|
@@ -377,7 +395,9 @@ export const SdLoadingModal = /*@__PURE__*/ defineContainer('sd-loading-modal',
|
|
|
377
395
|
], [
|
|
378
396
|
'sdClick'
|
|
379
397
|
]);
|
|
380
|
-
export const SdModalContainer = /*@__PURE__*/ defineContainer('sd-modal-container', undefined
|
|
398
|
+
export const SdModalContainer = /*@__PURE__*/ defineContainer('sd-modal-container', undefined, [
|
|
399
|
+
'autoRemove'
|
|
400
|
+
]);
|
|
381
401
|
export const SdNumberInput = /*@__PURE__*/ defineContainer('sd-number-input', undefined, [
|
|
382
402
|
'size',
|
|
383
403
|
'min',
|
package/lib/components.ts
CHANGED
|
@@ -127,6 +127,26 @@ export const SdCheckbox: StencilVueComponent<JSX.SdCheckbox, JSX.SdCheckbox["val
|
|
|
127
127
|
'value', 'sdUpdate', undefined);
|
|
128
128
|
|
|
129
129
|
|
|
130
|
+
export const SdChip: StencilVueComponent<JSX.SdChip, JSX.SdChip["value"]> = /*@__PURE__*/ defineContainer<JSX.SdChip, JSX.SdChip["value"]>('sd-chip', undefined, [
|
|
131
|
+
'name',
|
|
132
|
+
'value',
|
|
133
|
+
'error',
|
|
134
|
+
'disabled',
|
|
135
|
+
'placeholder',
|
|
136
|
+
'rules',
|
|
137
|
+
'sdUpdate',
|
|
138
|
+
'sdRemove',
|
|
139
|
+
'sdFocus',
|
|
140
|
+
'sdBlur'
|
|
141
|
+
], [
|
|
142
|
+
'sdUpdate',
|
|
143
|
+
'sdRemove',
|
|
144
|
+
'sdFocus',
|
|
145
|
+
'sdBlur'
|
|
146
|
+
],
|
|
147
|
+
'value', 'sdUpdate', undefined);
|
|
148
|
+
|
|
149
|
+
|
|
130
150
|
export const SdCircleProgress: StencilVueComponent<JSX.SdCircleProgress> = /*@__PURE__*/ defineContainer<JSX.SdCircleProgress>('sd-circle-progress', undefined, [
|
|
131
151
|
'indeterminate',
|
|
132
152
|
'value',
|
|
@@ -370,7 +390,7 @@ export const SdGuide: StencilVueComponent<JSX.SdGuide> = /*@__PURE__*/ defineCon
|
|
|
370
390
|
'type',
|
|
371
391
|
'label',
|
|
372
392
|
'message',
|
|
373
|
-
'
|
|
393
|
+
'url',
|
|
374
394
|
'popupTitle',
|
|
375
395
|
'popupWidth'
|
|
376
396
|
]);
|
|
@@ -434,6 +454,7 @@ export const SdLoadingContainer: StencilVueComponent<JSX.SdLoadingContainer> = /
|
|
|
434
454
|
export const SdLoadingModal: StencilVueComponent<JSX.SdLoadingModal> = /*@__PURE__*/ defineContainer<JSX.SdLoadingModal>('sd-loading-modal', undefined, [
|
|
435
455
|
'state',
|
|
436
456
|
'message',
|
|
457
|
+
'useButton',
|
|
437
458
|
'buttonLabel',
|
|
438
459
|
'width',
|
|
439
460
|
'height',
|
|
@@ -443,7 +464,9 @@ export const SdLoadingModal: StencilVueComponent<JSX.SdLoadingModal> = /*@__PURE
|
|
|
443
464
|
]);
|
|
444
465
|
|
|
445
466
|
|
|
446
|
-
export const SdModalContainer: StencilVueComponent<JSX.SdModalContainer> = /*@__PURE__*/ defineContainer<JSX.SdModalContainer>('sd-modal-container', undefined
|
|
467
|
+
export const SdModalContainer: StencilVueComponent<JSX.SdModalContainer> = /*@__PURE__*/ defineContainer<JSX.SdModalContainer>('sd-modal-container', undefined, [
|
|
468
|
+
'autoRemove'
|
|
469
|
+
]);
|
|
447
470
|
|
|
448
471
|
|
|
449
472
|
export const SdNumberInput: StencilVueComponent<JSX.SdNumberInput, JSX.SdNumberInput["value"]> = /*@__PURE__*/ defineContainer<JSX.SdNumberInput, JSX.SdNumberInput["value"]>('sd-number-input', undefined, [
|
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.68",
|
|
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.68",
|
|
49
49
|
"@stencil/vue-output-target": "^0.11.8"
|
|
50
50
|
},
|
|
51
51
|
"peerDependencies": {
|