@sellmate/design-system-vue 1.0.0 → 1.0.2
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 -2
- package/dist/index.d.ts +3 -2
- package/dist/index.js +2 -2
- package/lib/components.ts +13 -2
- package/lib/index.ts +40 -2
- package/package.json +3 -3
package/dist/components.d.ts
CHANGED
|
@@ -21,6 +21,7 @@ export declare const SdPagination: StencilVueComponent<JSX.SdPagination, JSX.SdP
|
|
|
21
21
|
export declare const SdPopover: StencilVueComponent<JSX.SdPopover>;
|
|
22
22
|
export declare const SdPortal: StencilVueComponent<JSX.SdPortal>;
|
|
23
23
|
export declare const SdProgress: StencilVueComponent<JSX.SdProgress>;
|
|
24
|
+
export declare const SdRadio: StencilVueComponent<JSX.SdRadio, JSX.SdRadio["value"]>;
|
|
24
25
|
export declare const SdRadioButtonGroup: StencilVueComponent<JSX.SdRadioButtonGroup, JSX.SdRadioButtonGroup["value"]>;
|
|
25
26
|
export declare const SdRadioGroup: StencilVueComponent<JSX.SdRadioGroup, JSX.SdRadioGroup["value"]>;
|
|
26
27
|
export declare const SdSelect: StencilVueComponent<JSX.SdSelect, JSX.SdSelect["value"]>;
|
package/dist/components.js
CHANGED
|
@@ -91,7 +91,6 @@ export const SdFilePicker = /*@__PURE__*/ defineContainer('sd-file-picker', unde
|
|
|
91
91
|
'inline',
|
|
92
92
|
'multiple',
|
|
93
93
|
'accept',
|
|
94
|
-
'width',
|
|
95
94
|
'sdUpdate'
|
|
96
95
|
], [
|
|
97
96
|
'sdUpdate'
|
|
@@ -245,6 +244,15 @@ export const SdProgress = /*@__PURE__*/ defineContainer('sd-progress', undefined
|
|
|
245
244
|
'strokeWidth',
|
|
246
245
|
'label'
|
|
247
246
|
]);
|
|
247
|
+
export const SdRadio = /*@__PURE__*/ defineContainer('sd-radio', undefined, [
|
|
248
|
+
'value',
|
|
249
|
+
'disabled',
|
|
250
|
+
'val',
|
|
251
|
+
'label',
|
|
252
|
+
'sdUpdate'
|
|
253
|
+
], [
|
|
254
|
+
'sdUpdate'
|
|
255
|
+
], 'value', 'sdUpdate', undefined);
|
|
248
256
|
export const SdRadioButtonGroup = /*@__PURE__*/ defineContainer('sd-radio-button-group', undefined, [
|
|
249
257
|
'value',
|
|
250
258
|
'radioOptions',
|
|
@@ -260,7 +268,7 @@ export const SdRadioGroup = /*@__PURE__*/ defineContainer('sd-radio-group', unde
|
|
|
260
268
|
'radioOptions',
|
|
261
269
|
'direction',
|
|
262
270
|
'disabled',
|
|
263
|
-
'
|
|
271
|
+
'groupName',
|
|
264
272
|
'sdUpdate'
|
|
265
273
|
], [
|
|
266
274
|
'sdUpdate'
|
package/dist/index.d.ts
CHANGED
|
@@ -1,2 +1,3 @@
|
|
|
1
|
-
export * from
|
|
2
|
-
export * from
|
|
1
|
+
export * from './components';
|
|
2
|
+
export * from './plugin';
|
|
3
|
+
export type { SdTableSortDir, SdTableColumn, Row as SdTableRow, SelectOption, SelectOptionGroup, SelectEvents, SelectMultipleEvents, SelectStyleProps, RadioValue, RadioOption, ButtonVariant, ButtonSize, Rule, ValidatableField, SdModalCardButtonProps, SdTooltipProps, TagColor, TagSize, ToastType, CheckedType, Type as DateBoxType, TabOption, } from '@sellmate/design-system';
|
package/dist/index.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export * from
|
|
2
|
-
export * from
|
|
1
|
+
export * from './components';
|
|
2
|
+
export * from './plugin';
|
package/lib/components.ts
CHANGED
|
@@ -116,7 +116,6 @@ export const SdFilePicker: StencilVueComponent<JSX.SdFilePicker, JSX.SdFilePicke
|
|
|
116
116
|
'inline',
|
|
117
117
|
'multiple',
|
|
118
118
|
'accept',
|
|
119
|
-
'width',
|
|
120
119
|
'sdUpdate'
|
|
121
120
|
], [
|
|
122
121
|
'sdUpdate'
|
|
@@ -300,6 +299,18 @@ export const SdProgress: StencilVueComponent<JSX.SdProgress> = /*@__PURE__*/ def
|
|
|
300
299
|
]);
|
|
301
300
|
|
|
302
301
|
|
|
302
|
+
export const SdRadio: StencilVueComponent<JSX.SdRadio, JSX.SdRadio["value"]> = /*@__PURE__*/ defineContainer<JSX.SdRadio, JSX.SdRadio["value"]>('sd-radio', undefined, [
|
|
303
|
+
'value',
|
|
304
|
+
'disabled',
|
|
305
|
+
'val',
|
|
306
|
+
'label',
|
|
307
|
+
'sdUpdate'
|
|
308
|
+
], [
|
|
309
|
+
'sdUpdate'
|
|
310
|
+
],
|
|
311
|
+
'value', 'sdUpdate', undefined);
|
|
312
|
+
|
|
313
|
+
|
|
303
314
|
export const SdRadioButtonGroup: StencilVueComponent<JSX.SdRadioButtonGroup, JSX.SdRadioButtonGroup["value"]> = /*@__PURE__*/ defineContainer<JSX.SdRadioButtonGroup, JSX.SdRadioButtonGroup["value"]>('sd-radio-button-group', undefined, [
|
|
304
315
|
'value',
|
|
305
316
|
'radioOptions',
|
|
@@ -318,7 +329,7 @@ export const SdRadioGroup: StencilVueComponent<JSX.SdRadioGroup, JSX.SdRadioGrou
|
|
|
318
329
|
'radioOptions',
|
|
319
330
|
'direction',
|
|
320
331
|
'disabled',
|
|
321
|
-
'
|
|
332
|
+
'groupName',
|
|
322
333
|
'sdUpdate'
|
|
323
334
|
], [
|
|
324
335
|
'sdUpdate'
|
package/lib/index.ts
CHANGED
|
@@ -1,2 +1,40 @@
|
|
|
1
|
-
export * from
|
|
2
|
-
export * from
|
|
1
|
+
export * from './components';
|
|
2
|
+
export * from './plugin';
|
|
3
|
+
|
|
4
|
+
// Export commonly used types for Vue usage
|
|
5
|
+
export type {
|
|
6
|
+
// Table types
|
|
7
|
+
SdTableSortDir,
|
|
8
|
+
SdTableColumn,
|
|
9
|
+
Row as SdTableRow,
|
|
10
|
+
// Select types
|
|
11
|
+
SelectOption,
|
|
12
|
+
SelectOptionGroup,
|
|
13
|
+
SelectEvents,
|
|
14
|
+
SelectMultipleEvents,
|
|
15
|
+
SelectStyleProps,
|
|
16
|
+
// Radio types
|
|
17
|
+
RadioValue,
|
|
18
|
+
RadioOption,
|
|
19
|
+
// Button types
|
|
20
|
+
ButtonVariant,
|
|
21
|
+
ButtonSize,
|
|
22
|
+
// Form types
|
|
23
|
+
Rule,
|
|
24
|
+
ValidatableField,
|
|
25
|
+
// Modal types
|
|
26
|
+
SdModalCardButtonProps,
|
|
27
|
+
// Tooltip types
|
|
28
|
+
SdTooltipProps,
|
|
29
|
+
// Tag types
|
|
30
|
+
TagColor,
|
|
31
|
+
TagSize,
|
|
32
|
+
// Toast types
|
|
33
|
+
ToastType,
|
|
34
|
+
// Checkbox types
|
|
35
|
+
CheckedType,
|
|
36
|
+
// Date types
|
|
37
|
+
Type as DateBoxType,
|
|
38
|
+
// Tab types
|
|
39
|
+
TabOption,
|
|
40
|
+
} from '@sellmate/design-system';
|
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.2",
|
|
4
4
|
"description": "Design System - Vue Component Wrappers",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"vue",
|
|
@@ -45,11 +45,11 @@
|
|
|
45
45
|
"vue": "^3.4.38"
|
|
46
46
|
},
|
|
47
47
|
"dependencies": {
|
|
48
|
-
"@sellmate/design-system": "^1.0.
|
|
48
|
+
"@sellmate/design-system": "^1.0.1",
|
|
49
49
|
"@stencil/vue-output-target": "^0.11.8"
|
|
50
50
|
},
|
|
51
51
|
"peerDependencies": {
|
|
52
52
|
"vue": ">=3.0.0"
|
|
53
53
|
},
|
|
54
|
-
"gitHead": "
|
|
54
|
+
"gitHead": "7ed8dfc2b3860b29f8494d9655f57b96b39df520"
|
|
55
55
|
}
|