@sellmate/design-system-vue 1.0.37 → 1.0.38
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 +3 -1
- package/dist/components.js +31 -8
- package/dist/index.d.ts +1 -1
- package/lib/components.ts +35 -8
- package/lib/index.ts +0 -2
- package/package.json +2 -2
package/dist/components.d.ts
CHANGED
|
@@ -6,6 +6,7 @@ export declare const SdButtonV2: StencilVueComponent<JSX.SdButtonV2>;
|
|
|
6
6
|
export declare const SdCalendar: StencilVueComponent<JSX.SdCalendar>;
|
|
7
7
|
export declare const SdCard: StencilVueComponent<JSX.SdCard>;
|
|
8
8
|
export declare const SdCheckbox: StencilVueComponent<JSX.SdCheckbox, JSX.SdCheckbox["value"]>;
|
|
9
|
+
export declare const SdConfirmModal: StencilVueComponent<JSX.SdConfirmModal>;
|
|
9
10
|
export declare const SdDateBox: StencilVueComponent<JSX.SdDateBox>;
|
|
10
11
|
export declare const SdDatePicker: StencilVueComponent<JSX.SdDatePicker, JSX.SdDatePicker["value"]>;
|
|
11
12
|
export declare const SdDateRangePicker: StencilVueComponent<JSX.SdDateRangePicker, JSX.SdDateRangePicker["value"]>;
|
|
@@ -18,7 +19,8 @@ export declare const SdGuide: StencilVueComponent<JSX.SdGuide>;
|
|
|
18
19
|
export declare const SdIcon: StencilVueComponent<JSX.SdIcon>;
|
|
19
20
|
export declare const SdInput: StencilVueComponent<JSX.SdInput, JSX.SdInput["value"]>;
|
|
20
21
|
export declare const SdLoadingSpinner: StencilVueComponent<JSX.SdLoadingSpinner>;
|
|
21
|
-
export declare const
|
|
22
|
+
export declare const SdModalContainer: StencilVueComponent<JSX.SdModalContainer>;
|
|
23
|
+
export declare const SdNoticeModal: StencilVueComponent<JSX.SdNoticeModal>;
|
|
22
24
|
export declare const SdNumberInput: StencilVueComponent<JSX.SdNumberInput, JSX.SdNumberInput["value"]>;
|
|
23
25
|
export declare const SdPagination: StencilVueComponent<JSX.SdPagination, JSX.SdPagination["currentPage"]>;
|
|
24
26
|
export declare const SdPopover: StencilVueComponent<JSX.SdPopover>;
|
package/dist/components.js
CHANGED
|
@@ -58,6 +58,25 @@ export const SdCheckbox = /*@__PURE__*/ defineContainer('sd-checkbox', undefined
|
|
|
58
58
|
], [
|
|
59
59
|
'sdUpdate'
|
|
60
60
|
], 'value', 'sdUpdate', undefined);
|
|
61
|
+
export const SdConfirmModal = /*@__PURE__*/ defineContainer('sd-confirm-modal', undefined, [
|
|
62
|
+
'type',
|
|
63
|
+
'modalTitle',
|
|
64
|
+
'titleClass',
|
|
65
|
+
'topMessage',
|
|
66
|
+
'bottomMessage',
|
|
67
|
+
'mainButtonName',
|
|
68
|
+
'mainButtonLabel',
|
|
69
|
+
'subButtonLabel',
|
|
70
|
+
'tagPreset',
|
|
71
|
+
'tagLabel',
|
|
72
|
+
'slotLabel',
|
|
73
|
+
'tagContents',
|
|
74
|
+
'sdClose',
|
|
75
|
+
'sdConfirm'
|
|
76
|
+
], [
|
|
77
|
+
'sdClose',
|
|
78
|
+
'sdConfirm'
|
|
79
|
+
]);
|
|
61
80
|
export const SdDateBox = /*@__PURE__*/ defineContainer('sd-date-box', undefined, [
|
|
62
81
|
'date',
|
|
63
82
|
'disabled',
|
|
@@ -202,15 +221,18 @@ export const SdInput = /*@__PURE__*/ defineContainer('sd-input', undefined, [
|
|
|
202
221
|
export const SdLoadingSpinner = /*@__PURE__*/ defineContainer('sd-loading-spinner', undefined, [
|
|
203
222
|
'color'
|
|
204
223
|
]);
|
|
205
|
-
export const
|
|
206
|
-
|
|
207
|
-
'system',
|
|
208
|
-
'useCloseButton',
|
|
224
|
+
export const SdModalContainer = /*@__PURE__*/ defineContainer('sd-modal-container', undefined);
|
|
225
|
+
export const SdNoticeModal = /*@__PURE__*/ defineContainer('sd-notice-modal', undefined, [
|
|
209
226
|
'modalTitle',
|
|
210
|
-
'
|
|
211
|
-
'
|
|
212
|
-
'
|
|
213
|
-
'
|
|
227
|
+
'titleClass',
|
|
228
|
+
'topMessage',
|
|
229
|
+
'bottomMessage',
|
|
230
|
+
'mainButtonLabel',
|
|
231
|
+
'subButtonLabel',
|
|
232
|
+
'tagPreset',
|
|
233
|
+
'tagLabel',
|
|
234
|
+
'slotLabel',
|
|
235
|
+
'tagContents',
|
|
214
236
|
'sdClose',
|
|
215
237
|
'sdConfirm'
|
|
216
238
|
], [
|
|
@@ -501,6 +523,7 @@ export const SdSelectV2 = /*@__PURE__*/ defineContainer('sd-select-v2', undefine
|
|
|
501
523
|
'labelTooltip',
|
|
502
524
|
'labelTooltipProps',
|
|
503
525
|
'emitValue',
|
|
526
|
+
'width',
|
|
504
527
|
'sdUpdate',
|
|
505
528
|
'sdDropDownShow'
|
|
506
529
|
], [
|
package/dist/index.d.ts
CHANGED
|
@@ -2,4 +2,4 @@ import '@sellmate/design-system/styles.css';
|
|
|
2
2
|
export * from './components';
|
|
3
3
|
export * from './plugin';
|
|
4
4
|
export { default as SdTable } from './SdTable';
|
|
5
|
-
export type { SdTableSortDir, SdTableColumn, Row as SdTableRow, SelectOption, SelectOptionGroup, SelectEvents, SelectMultipleEvents, SelectStyleProps, RadioValue, RadioOption, ButtonVariant, ButtonSize, ButtonV2Name, DropdownButtonItem, DropdownButtonName, DropdownButtonSize, DropdownButtonValue, Rule, ValidatableField,
|
|
5
|
+
export type { SdTableSortDir, SdTableColumn, Row as SdTableRow, SelectOption, SelectOptionGroup, SelectEvents, SelectMultipleEvents, SelectStyleProps, RadioValue, RadioOption, ButtonVariant, ButtonSize, ButtonV2Name, DropdownButtonItem, DropdownButtonName, DropdownButtonSize, DropdownButtonValue, Rule, ValidatableField, SdTooltipProps, TagName, ToastType, CheckedType, Type as DateBoxType, TabOption, } from '@sellmate/design-system';
|
package/lib/components.ts
CHANGED
|
@@ -77,6 +77,27 @@ export const SdCheckbox: StencilVueComponent<JSX.SdCheckbox, JSX.SdCheckbox["val
|
|
|
77
77
|
'value', 'sdUpdate', undefined);
|
|
78
78
|
|
|
79
79
|
|
|
80
|
+
export const SdConfirmModal: StencilVueComponent<JSX.SdConfirmModal> = /*@__PURE__*/ defineContainer<JSX.SdConfirmModal>('sd-confirm-modal', undefined, [
|
|
81
|
+
'type',
|
|
82
|
+
'modalTitle',
|
|
83
|
+
'titleClass',
|
|
84
|
+
'topMessage',
|
|
85
|
+
'bottomMessage',
|
|
86
|
+
'mainButtonName',
|
|
87
|
+
'mainButtonLabel',
|
|
88
|
+
'subButtonLabel',
|
|
89
|
+
'tagPreset',
|
|
90
|
+
'tagLabel',
|
|
91
|
+
'slotLabel',
|
|
92
|
+
'tagContents',
|
|
93
|
+
'sdClose',
|
|
94
|
+
'sdConfirm'
|
|
95
|
+
], [
|
|
96
|
+
'sdClose',
|
|
97
|
+
'sdConfirm'
|
|
98
|
+
]);
|
|
99
|
+
|
|
100
|
+
|
|
80
101
|
export const SdDateBox: StencilVueComponent<JSX.SdDateBox> = /*@__PURE__*/ defineContainer<JSX.SdDateBox>('sd-date-box', undefined, [
|
|
81
102
|
'date',
|
|
82
103
|
'disabled',
|
|
@@ -249,15 +270,20 @@ export const SdLoadingSpinner: StencilVueComponent<JSX.SdLoadingSpinner> = /*@__
|
|
|
249
270
|
]);
|
|
250
271
|
|
|
251
272
|
|
|
252
|
-
export const
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
273
|
+
export const SdModalContainer: StencilVueComponent<JSX.SdModalContainer> = /*@__PURE__*/ defineContainer<JSX.SdModalContainer>('sd-modal-container', undefined);
|
|
274
|
+
|
|
275
|
+
|
|
276
|
+
export const SdNoticeModal: StencilVueComponent<JSX.SdNoticeModal> = /*@__PURE__*/ defineContainer<JSX.SdNoticeModal>('sd-notice-modal', undefined, [
|
|
256
277
|
'modalTitle',
|
|
257
|
-
'
|
|
258
|
-
'
|
|
259
|
-
'
|
|
260
|
-
'
|
|
278
|
+
'titleClass',
|
|
279
|
+
'topMessage',
|
|
280
|
+
'bottomMessage',
|
|
281
|
+
'mainButtonLabel',
|
|
282
|
+
'subButtonLabel',
|
|
283
|
+
'tagPreset',
|
|
284
|
+
'tagLabel',
|
|
285
|
+
'slotLabel',
|
|
286
|
+
'tagContents',
|
|
261
287
|
'sdClose',
|
|
262
288
|
'sdConfirm'
|
|
263
289
|
], [
|
|
@@ -590,6 +616,7 @@ export const SdSelectV2: StencilVueComponent<JSX.SdSelectV2, JSX.SdSelectV2["val
|
|
|
590
616
|
'labelTooltip',
|
|
591
617
|
'labelTooltipProps',
|
|
592
618
|
'emitValue',
|
|
619
|
+
'width',
|
|
593
620
|
'sdUpdate',
|
|
594
621
|
'sdDropDownShow'
|
|
595
622
|
], [
|
package/lib/index.ts
CHANGED
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.38",
|
|
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.38",
|
|
49
49
|
"@stencil/vue-output-target": "^0.11.8"
|
|
50
50
|
},
|
|
51
51
|
"peerDependencies": {
|