@sellmate/design-system-vue 1.0.27 → 1.0.29
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 -0
- package/dist/components.js +53 -5
- package/lib/components.ts +59 -5
- package/package.json +2 -2
package/dist/components.d.ts
CHANGED
|
@@ -3,6 +3,7 @@ import type { JSX } from '@sellmate/design-system';
|
|
|
3
3
|
export declare const SdBadge: StencilVueComponent<JSX.SdBadge>;
|
|
4
4
|
export declare const SdButton: StencilVueComponent<JSX.SdButton>;
|
|
5
5
|
export declare const SdButtonV2: StencilVueComponent<JSX.SdButtonV2>;
|
|
6
|
+
export declare const SdCalendar: StencilVueComponent<JSX.SdCalendar>;
|
|
6
7
|
export declare const SdCard: StencilVueComponent<JSX.SdCard>;
|
|
7
8
|
export declare const SdCheckbox: StencilVueComponent<JSX.SdCheckbox, JSX.SdCheckbox["value"]>;
|
|
8
9
|
export declare const SdDateBox: StencilVueComponent<JSX.SdDateBox>;
|
|
@@ -28,6 +29,7 @@ export declare const SdRadioButtonGroup: StencilVueComponent<JSX.SdRadioButtonGr
|
|
|
28
29
|
export declare const SdRadioGroup: StencilVueComponent<JSX.SdRadioGroup, JSX.SdRadioGroup["value"]>;
|
|
29
30
|
export declare const SdSelect: StencilVueComponent<JSX.SdSelect, JSX.SdSelect["value"]>;
|
|
30
31
|
export declare const SdSelectDropdown: StencilVueComponent<JSX.SdSelectDropdown>;
|
|
32
|
+
export declare const SdSelectGroup: StencilVueComponent<JSX.SdSelectGroup>;
|
|
31
33
|
export declare const SdSelectMultiple: StencilVueComponent<JSX.SdSelectMultiple, JSX.SdSelectMultiple["value"]>;
|
|
32
34
|
export declare const SdSelectMultipleGroup: StencilVueComponent<JSX.SdSelectMultipleGroup, JSX.SdSelectMultipleGroup["value"]>;
|
|
33
35
|
export declare const SdSelectOption: StencilVueComponent<JSX.SdSelectOption>;
|
|
@@ -37,6 +39,7 @@ export declare const SdTabs: StencilVueComponent<JSX.SdTabs, JSX.SdTabs["value"]
|
|
|
37
39
|
export declare const SdTag: StencilVueComponent<JSX.SdTag>;
|
|
38
40
|
export declare const SdTextarea: StencilVueComponent<JSX.SdTextarea, JSX.SdTextarea["value"]>;
|
|
39
41
|
export declare const SdToast: StencilVueComponent<JSX.SdToast>;
|
|
42
|
+
export declare const SdToastContainer: StencilVueComponent<JSX.SdToastContainer>;
|
|
40
43
|
export declare const SdToggle: StencilVueComponent<JSX.SdToggle, JSX.SdToggle["value"]>;
|
|
41
44
|
export declare const SdToggleButton: StencilVueComponent<JSX.SdToggleButton, JSX.SdToggleButton["value"]>;
|
|
42
45
|
export declare const SdTooltip: StencilVueComponent<JSX.SdTooltip>;
|
package/dist/components.js
CHANGED
|
@@ -34,6 +34,15 @@ export const SdButtonV2 = /*@__PURE__*/ defineContainer('sd-button-v2', undefine
|
|
|
34
34
|
], [
|
|
35
35
|
'sdClick'
|
|
36
36
|
]);
|
|
37
|
+
export const SdCalendar = /*@__PURE__*/ defineContainer('sd-calendar', undefined, [
|
|
38
|
+
'value',
|
|
39
|
+
'selectable',
|
|
40
|
+
'events',
|
|
41
|
+
'eventColors',
|
|
42
|
+
'sdSelect'
|
|
43
|
+
], [
|
|
44
|
+
'sdSelect'
|
|
45
|
+
]);
|
|
37
46
|
export const SdCard = /*@__PURE__*/ defineContainer('sd-card', undefined, [
|
|
38
47
|
'bordered',
|
|
39
48
|
'sdClass'
|
|
@@ -345,6 +354,36 @@ export const SdSelectDropdown = /*@__PURE__*/ defineContainer('sd-select-dropdow
|
|
|
345
354
|
'sdOptionFiltered',
|
|
346
355
|
'sdScroll'
|
|
347
356
|
]);
|
|
357
|
+
export const SdSelectGroup = /*@__PURE__*/ defineContainer('sd-select-group', undefined, [
|
|
358
|
+
'value',
|
|
359
|
+
'options',
|
|
360
|
+
'placeholder',
|
|
361
|
+
'optionPlaceholder',
|
|
362
|
+
'width',
|
|
363
|
+
'dropdownHeight',
|
|
364
|
+
'autoFocus',
|
|
365
|
+
'disabled',
|
|
366
|
+
'clearable',
|
|
367
|
+
'searchable',
|
|
368
|
+
'label',
|
|
369
|
+
'insideLabel',
|
|
370
|
+
'useLabelRequired',
|
|
371
|
+
'labelTooltip',
|
|
372
|
+
'labelTooltipProps',
|
|
373
|
+
'rules',
|
|
374
|
+
'error',
|
|
375
|
+
'containerStyle',
|
|
376
|
+
'triggerStyle',
|
|
377
|
+
'dropdownStyle',
|
|
378
|
+
'optionStyle',
|
|
379
|
+
'labelStyle',
|
|
380
|
+
'optionRenderer',
|
|
381
|
+
'sdUpdate',
|
|
382
|
+
'sdDropDownShow'
|
|
383
|
+
], [
|
|
384
|
+
'sdUpdate',
|
|
385
|
+
'sdDropDownShow'
|
|
386
|
+
]);
|
|
348
387
|
export const SdSelectMultiple = /*@__PURE__*/ defineContainer('sd-select-multiple', undefined, [
|
|
349
388
|
'value',
|
|
350
389
|
'options',
|
|
@@ -475,14 +514,23 @@ export const SdToast = /*@__PURE__*/ defineContainer('sd-toast', undefined, [
|
|
|
475
514
|
'message',
|
|
476
515
|
'link',
|
|
477
516
|
'linkLabel',
|
|
478
|
-
'buttonLabel',
|
|
479
517
|
'useClose',
|
|
480
518
|
'type',
|
|
481
|
-
'sdClose'
|
|
482
|
-
'sdButtonClick'
|
|
519
|
+
'sdClose'
|
|
483
520
|
], [
|
|
484
|
-
'sdClose'
|
|
485
|
-
|
|
521
|
+
'sdClose'
|
|
522
|
+
]);
|
|
523
|
+
export const SdToastContainer = /*@__PURE__*/ defineContainer('sd-toast-container', undefined, [
|
|
524
|
+
'position',
|
|
525
|
+
'maxVisible',
|
|
526
|
+
'defaultDuration',
|
|
527
|
+
'gap',
|
|
528
|
+
'zIndex',
|
|
529
|
+
'sdToastShow',
|
|
530
|
+
'sdToastDismiss'
|
|
531
|
+
], [
|
|
532
|
+
'sdToastShow',
|
|
533
|
+
'sdToastDismiss'
|
|
486
534
|
]);
|
|
487
535
|
export const SdToggle = /*@__PURE__*/ defineContainer('sd-toggle', undefined, [
|
|
488
536
|
'value',
|
package/lib/components.ts
CHANGED
|
@@ -46,6 +46,17 @@ export const SdButtonV2: StencilVueComponent<JSX.SdButtonV2> = /*@__PURE__*/ def
|
|
|
46
46
|
]);
|
|
47
47
|
|
|
48
48
|
|
|
49
|
+
export const SdCalendar: StencilVueComponent<JSX.SdCalendar> = /*@__PURE__*/ defineContainer<JSX.SdCalendar>('sd-calendar', undefined, [
|
|
50
|
+
'value',
|
|
51
|
+
'selectable',
|
|
52
|
+
'events',
|
|
53
|
+
'eventColors',
|
|
54
|
+
'sdSelect'
|
|
55
|
+
], [
|
|
56
|
+
'sdSelect'
|
|
57
|
+
]);
|
|
58
|
+
|
|
59
|
+
|
|
49
60
|
export const SdCard: StencilVueComponent<JSX.SdCard> = /*@__PURE__*/ defineContainer<JSX.SdCard>('sd-card', undefined, [
|
|
50
61
|
'bordered',
|
|
51
62
|
'sdClass'
|
|
@@ -418,6 +429,38 @@ export const SdSelectDropdown: StencilVueComponent<JSX.SdSelectDropdown> = /*@__
|
|
|
418
429
|
]);
|
|
419
430
|
|
|
420
431
|
|
|
432
|
+
export const SdSelectGroup: StencilVueComponent<JSX.SdSelectGroup> = /*@__PURE__*/ defineContainer<JSX.SdSelectGroup>('sd-select-group', undefined, [
|
|
433
|
+
'value',
|
|
434
|
+
'options',
|
|
435
|
+
'placeholder',
|
|
436
|
+
'optionPlaceholder',
|
|
437
|
+
'width',
|
|
438
|
+
'dropdownHeight',
|
|
439
|
+
'autoFocus',
|
|
440
|
+
'disabled',
|
|
441
|
+
'clearable',
|
|
442
|
+
'searchable',
|
|
443
|
+
'label',
|
|
444
|
+
'insideLabel',
|
|
445
|
+
'useLabelRequired',
|
|
446
|
+
'labelTooltip',
|
|
447
|
+
'labelTooltipProps',
|
|
448
|
+
'rules',
|
|
449
|
+
'error',
|
|
450
|
+
'containerStyle',
|
|
451
|
+
'triggerStyle',
|
|
452
|
+
'dropdownStyle',
|
|
453
|
+
'optionStyle',
|
|
454
|
+
'labelStyle',
|
|
455
|
+
'optionRenderer',
|
|
456
|
+
'sdUpdate',
|
|
457
|
+
'sdDropDownShow'
|
|
458
|
+
], [
|
|
459
|
+
'sdUpdate',
|
|
460
|
+
'sdDropDownShow'
|
|
461
|
+
]);
|
|
462
|
+
|
|
463
|
+
|
|
421
464
|
export const SdSelectMultiple: StencilVueComponent<JSX.SdSelectMultiple, JSX.SdSelectMultiple["value"]> = /*@__PURE__*/ defineContainer<JSX.SdSelectMultiple, JSX.SdSelectMultiple["value"]>('sd-select-multiple', undefined, [
|
|
422
465
|
'value',
|
|
423
466
|
'options',
|
|
@@ -568,14 +611,25 @@ export const SdToast: StencilVueComponent<JSX.SdToast> = /*@__PURE__*/ defineCon
|
|
|
568
611
|
'message',
|
|
569
612
|
'link',
|
|
570
613
|
'linkLabel',
|
|
571
|
-
'buttonLabel',
|
|
572
614
|
'useClose',
|
|
573
615
|
'type',
|
|
574
|
-
'sdClose'
|
|
575
|
-
'sdButtonClick'
|
|
616
|
+
'sdClose'
|
|
576
617
|
], [
|
|
577
|
-
'sdClose'
|
|
578
|
-
|
|
618
|
+
'sdClose'
|
|
619
|
+
]);
|
|
620
|
+
|
|
621
|
+
|
|
622
|
+
export const SdToastContainer: StencilVueComponent<JSX.SdToastContainer> = /*@__PURE__*/ defineContainer<JSX.SdToastContainer>('sd-toast-container', undefined, [
|
|
623
|
+
'position',
|
|
624
|
+
'maxVisible',
|
|
625
|
+
'defaultDuration',
|
|
626
|
+
'gap',
|
|
627
|
+
'zIndex',
|
|
628
|
+
'sdToastShow',
|
|
629
|
+
'sdToastDismiss'
|
|
630
|
+
], [
|
|
631
|
+
'sdToastShow',
|
|
632
|
+
'sdToastDismiss'
|
|
579
633
|
]);
|
|
580
634
|
|
|
581
635
|
|
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.29",
|
|
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.29",
|
|
49
49
|
"@stencil/vue-output-target": "^0.11.8"
|
|
50
50
|
},
|
|
51
51
|
"peerDependencies": {
|