@sellmate/design-system-vue 0.0.43 → 0.0.45
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 +19 -0
- package/lib/components.ts +21 -0
- package/package.json +2 -2
package/dist/components.d.ts
CHANGED
|
@@ -11,6 +11,7 @@ export declare const SdGuide: StencilVueComponent<JSX.SdGuide>;
|
|
|
11
11
|
export declare const SdIcon: StencilVueComponent<JSX.SdIcon>;
|
|
12
12
|
export declare const SdInput: StencilVueComponent<JSX.SdInput, JSX.SdInput["value"]>;
|
|
13
13
|
export declare const SdLoadingSpinner: StencilVueComponent<JSX.SdLoadingSpinner>;
|
|
14
|
+
export declare const SdModalCard: StencilVueComponent<JSX.SdModalCard>;
|
|
14
15
|
export declare const SdPagination: StencilVueComponent<JSX.SdPagination>;
|
|
15
16
|
export declare const SdPopover: StencilVueComponent<JSX.SdPopover>;
|
|
16
17
|
export declare const SdPortal: StencilVueComponent<JSX.SdPortal>;
|
package/dist/components.js
CHANGED
|
@@ -76,6 +76,7 @@ export const SdGuide = /*@__PURE__*/ defineContainer('sd-guide', undefined, [
|
|
|
76
76
|
'label',
|
|
77
77
|
'message',
|
|
78
78
|
'guideUrl',
|
|
79
|
+
'popupTitle',
|
|
79
80
|
'popupWidth'
|
|
80
81
|
]);
|
|
81
82
|
export const SdIcon = /*@__PURE__*/ defineContainer('sd-icon', undefined, [
|
|
@@ -113,6 +114,21 @@ export const SdInput = /*@__PURE__*/ defineContainer('sd-input', undefined, [
|
|
|
113
114
|
'sdBlur'
|
|
114
115
|
], 'value', 'sdInput', undefined);
|
|
115
116
|
export const SdLoadingSpinner = /*@__PURE__*/ defineContainer('sd-loading-spinner', undefined);
|
|
117
|
+
export const SdModalCard = /*@__PURE__*/ defineContainer('sd-modal-card', undefined, [
|
|
118
|
+
'type',
|
|
119
|
+
'system',
|
|
120
|
+
'useCloseButton',
|
|
121
|
+
'modalTitle',
|
|
122
|
+
'buttonFlexDirection',
|
|
123
|
+
'buttonProps',
|
|
124
|
+
'message',
|
|
125
|
+
'modalClass',
|
|
126
|
+
'sdClose',
|
|
127
|
+
'sdConfirm'
|
|
128
|
+
], [
|
|
129
|
+
'sdClose',
|
|
130
|
+
'sdConfirm'
|
|
131
|
+
]);
|
|
116
132
|
export const SdPagination = /*@__PURE__*/ defineContainer('sd-pagination', undefined, [
|
|
117
133
|
'currentPage',
|
|
118
134
|
'lastPage',
|
|
@@ -289,6 +305,9 @@ export const SdTableBackup = /*@__PURE__*/ defineContainer('sd-table-backup', un
|
|
|
289
305
|
'useInternalPagination',
|
|
290
306
|
'useRowsPerPageSelect',
|
|
291
307
|
'rowsPerPageOption',
|
|
308
|
+
'useVirtualScroll',
|
|
309
|
+
'virtualRowHeight',
|
|
310
|
+
'virtualBufferSize',
|
|
292
311
|
'sdSelectChange',
|
|
293
312
|
'sdPageChange',
|
|
294
313
|
'sdRowsPerPageChange'
|
package/lib/components.ts
CHANGED
|
@@ -96,6 +96,7 @@ export const SdGuide: StencilVueComponent<JSX.SdGuide> = /*@__PURE__*/ defineCon
|
|
|
96
96
|
'label',
|
|
97
97
|
'message',
|
|
98
98
|
'guideUrl',
|
|
99
|
+
'popupTitle',
|
|
99
100
|
'popupWidth'
|
|
100
101
|
]);
|
|
101
102
|
|
|
@@ -142,6 +143,23 @@ export const SdInput: StencilVueComponent<JSX.SdInput, JSX.SdInput["value"]> = /
|
|
|
142
143
|
export const SdLoadingSpinner: StencilVueComponent<JSX.SdLoadingSpinner> = /*@__PURE__*/ defineContainer<JSX.SdLoadingSpinner>('sd-loading-spinner', undefined);
|
|
143
144
|
|
|
144
145
|
|
|
146
|
+
export const SdModalCard: StencilVueComponent<JSX.SdModalCard> = /*@__PURE__*/ defineContainer<JSX.SdModalCard>('sd-modal-card', undefined, [
|
|
147
|
+
'type',
|
|
148
|
+
'system',
|
|
149
|
+
'useCloseButton',
|
|
150
|
+
'modalTitle',
|
|
151
|
+
'buttonFlexDirection',
|
|
152
|
+
'buttonProps',
|
|
153
|
+
'message',
|
|
154
|
+
'modalClass',
|
|
155
|
+
'sdClose',
|
|
156
|
+
'sdConfirm'
|
|
157
|
+
], [
|
|
158
|
+
'sdClose',
|
|
159
|
+
'sdConfirm'
|
|
160
|
+
]);
|
|
161
|
+
|
|
162
|
+
|
|
145
163
|
export const SdPagination: StencilVueComponent<JSX.SdPagination> = /*@__PURE__*/ defineContainer<JSX.SdPagination>('sd-pagination', undefined, [
|
|
146
164
|
'currentPage',
|
|
147
165
|
'lastPage',
|
|
@@ -338,6 +356,9 @@ export const SdTableBackup: StencilVueComponent<JSX.SdTableBackup> = /*@__PURE__
|
|
|
338
356
|
'useInternalPagination',
|
|
339
357
|
'useRowsPerPageSelect',
|
|
340
358
|
'rowsPerPageOption',
|
|
359
|
+
'useVirtualScroll',
|
|
360
|
+
'virtualRowHeight',
|
|
361
|
+
'virtualBufferSize',
|
|
341
362
|
'sdSelectChange',
|
|
342
363
|
'sdPageChange',
|
|
343
364
|
'sdRowsPerPageChange'
|
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.45",
|
|
4
4
|
"description": "Design System - Vue Component Wrappers",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"vue",
|
|
@@ -51,5 +51,5 @@
|
|
|
51
51
|
"peerDependencies": {
|
|
52
52
|
"vue": ">=3.0.0"
|
|
53
53
|
},
|
|
54
|
-
"gitHead": "
|
|
54
|
+
"gitHead": "f003daede050974e202b23dfef30bc1e68f25465"
|
|
55
55
|
}
|