@sellmate/design-system-vue 1.0.75 → 1.0.77
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 +4 -14
- package/dist/components.js +16 -197
- package/dist/index.d.ts +1 -1
- package/lib/components.ts +16 -220
- package/lib/index.ts +0 -4
- package/package.json +2 -2
package/dist/components.d.ts
CHANGED
|
@@ -34,23 +34,14 @@ export declare const SdNumberInput: StencilVueComponent<JSX.SdNumberInput, JSX.S
|
|
|
34
34
|
export declare const SdPagination: StencilVueComponent<JSX.SdPagination, JSX.SdPagination["currentPage"]>;
|
|
35
35
|
export declare const SdPopover: StencilVueComponent<JSX.SdPopover>;
|
|
36
36
|
export declare const SdPortal: StencilVueComponent<JSX.SdPortal>;
|
|
37
|
-
export declare const SdProgress: StencilVueComponent<JSX.SdProgress>;
|
|
38
37
|
export declare const SdRadio: StencilVueComponent<JSX.SdRadio, JSX.SdRadio["value"]>;
|
|
39
38
|
export declare const SdRadioButton: StencilVueComponent<JSX.SdRadioButton, JSX.SdRadioButton["value"]>;
|
|
40
39
|
export declare const SdRadioGroup: StencilVueComponent<JSX.SdRadioGroup, JSX.SdRadioGroup["value"]>;
|
|
41
40
|
export declare const SdSelect: StencilVueComponent<JSX.SdSelect, JSX.SdSelect["value"]>;
|
|
42
|
-
export declare const
|
|
43
|
-
export declare const
|
|
44
|
-
export declare const
|
|
45
|
-
export declare const
|
|
46
|
-
export declare const SdSelectOption: StencilVueComponent<JSX.SdSelectOption>;
|
|
47
|
-
export declare const SdSelectOptionGroup: StencilVueComponent<JSX.SdSelectOptionGroup>;
|
|
48
|
-
export declare const SdSelectSearchInput: StencilVueComponent<JSX.SdSelectSearchInput>;
|
|
49
|
-
export declare const SdSelectV2: StencilVueComponent<JSX.SdSelectV2, JSX.SdSelectV2["value"]>;
|
|
50
|
-
export declare const SdSelectV2ListItem: StencilVueComponent<JSX.SdSelectV2ListItem>;
|
|
51
|
-
export declare const SdSelectV2ListItemSearch: StencilVueComponent<JSX.SdSelectV2ListItemSearch>;
|
|
52
|
-
export declare const SdSelectV2Listbox: StencilVueComponent<JSX.SdSelectV2Listbox>;
|
|
53
|
-
export declare const SdSelectV2Trigger: StencilVueComponent<JSX.SdSelectV2Trigger>;
|
|
41
|
+
export declare const SdSelectListItem: StencilVueComponent<JSX.SdSelectListItem>;
|
|
42
|
+
export declare const SdSelectListItemSearch: StencilVueComponent<JSX.SdSelectListItemSearch>;
|
|
43
|
+
export declare const SdSelectListbox: StencilVueComponent<JSX.SdSelectListbox>;
|
|
44
|
+
export declare const SdSelectTrigger: StencilVueComponent<JSX.SdSelectTrigger>;
|
|
54
45
|
export declare const SdSwitch: StencilVueComponent<JSX.SdSwitch, JSX.SdSwitch["value"]>;
|
|
55
46
|
export declare const SdTable: StencilVueComponent<JSX.SdTable, JSX.SdTable["selected"]>;
|
|
56
47
|
export declare const SdTabs: StencilVueComponent<JSX.SdTabs, JSX.SdTabs["value"]>;
|
|
@@ -65,4 +56,3 @@ export declare const SdToastContainer: StencilVueComponent<JSX.SdToastContainer>
|
|
|
65
56
|
export declare const SdToggle: StencilVueComponent<JSX.SdToggle, JSX.SdToggle["value"]>;
|
|
66
57
|
export declare const SdTooltip: StencilVueComponent<JSX.SdTooltip>;
|
|
67
58
|
export declare const SdTr: StencilVueComponent<JSX.SdTr>;
|
|
68
|
-
export declare const TableTest: StencilVueComponent<JSX.TableTest>;
|
package/dist/components.js
CHANGED
|
@@ -487,14 +487,6 @@ export const SdPortal = /*@__PURE__*/ defineContainer('sd-portal', undefined, [
|
|
|
487
487
|
], [
|
|
488
488
|
'sdClose'
|
|
489
489
|
]);
|
|
490
|
-
export const SdProgress = /*@__PURE__*/ defineContainer('sd-progress', undefined, [
|
|
491
|
-
'type',
|
|
492
|
-
'error',
|
|
493
|
-
'percentage',
|
|
494
|
-
'size',
|
|
495
|
-
'strokeWidth',
|
|
496
|
-
'label'
|
|
497
|
-
]);
|
|
498
490
|
export const SdRadio = /*@__PURE__*/ defineContainer('sd-radio', undefined, [
|
|
499
491
|
'value',
|
|
500
492
|
'val',
|
|
@@ -525,180 +517,6 @@ export const SdRadioGroup = /*@__PURE__*/ defineContainer('sd-radio-group', unde
|
|
|
525
517
|
'sdUpdate'
|
|
526
518
|
], 'value', 'sdUpdate', undefined);
|
|
527
519
|
export const SdSelect = /*@__PURE__*/ defineContainer('sd-select', undefined, [
|
|
528
|
-
'value',
|
|
529
|
-
'options',
|
|
530
|
-
'placeholder',
|
|
531
|
-
'optionPlaceholder',
|
|
532
|
-
'width',
|
|
533
|
-
'dropdownHeight',
|
|
534
|
-
'autoFocus',
|
|
535
|
-
'disabled',
|
|
536
|
-
'clearable',
|
|
537
|
-
'searchable',
|
|
538
|
-
'label',
|
|
539
|
-
'labelWidth',
|
|
540
|
-
'addonLabel',
|
|
541
|
-
'addonAlign',
|
|
542
|
-
'icon',
|
|
543
|
-
'labelTooltip',
|
|
544
|
-
'labelTooltipProps',
|
|
545
|
-
'rules',
|
|
546
|
-
'error',
|
|
547
|
-
'optionRenderer',
|
|
548
|
-
'name',
|
|
549
|
-
'sdUpdate',
|
|
550
|
-
'sdDropDownShow'
|
|
551
|
-
], [
|
|
552
|
-
'sdUpdate',
|
|
553
|
-
'sdDropDownShow'
|
|
554
|
-
], 'value', 'sdUpdate', undefined);
|
|
555
|
-
export const SdSelectDropdown = /*@__PURE__*/ defineContainer('sd-select-dropdown', undefined, [
|
|
556
|
-
'itemIndex',
|
|
557
|
-
'value',
|
|
558
|
-
'options',
|
|
559
|
-
'width',
|
|
560
|
-
'dropdownHeight',
|
|
561
|
-
'searchable',
|
|
562
|
-
'optionPlaceholder',
|
|
563
|
-
'useCheckbox',
|
|
564
|
-
'useAll',
|
|
565
|
-
'sdOptionClick',
|
|
566
|
-
'sdOptionFiltered',
|
|
567
|
-
'sdScroll'
|
|
568
|
-
], [
|
|
569
|
-
'sdOptionClick',
|
|
570
|
-
'sdOptionFiltered',
|
|
571
|
-
'sdScroll'
|
|
572
|
-
]);
|
|
573
|
-
export const SdSelectGroup = /*@__PURE__*/ defineContainer('sd-select-group', undefined, [
|
|
574
|
-
'value',
|
|
575
|
-
'options',
|
|
576
|
-
'placeholder',
|
|
577
|
-
'optionPlaceholder',
|
|
578
|
-
'width',
|
|
579
|
-
'dropdownHeight',
|
|
580
|
-
'autoFocus',
|
|
581
|
-
'disabled',
|
|
582
|
-
'clearable',
|
|
583
|
-
'searchable',
|
|
584
|
-
'label',
|
|
585
|
-
'labelWidth',
|
|
586
|
-
'addonLabel',
|
|
587
|
-
'addonAlign',
|
|
588
|
-
'icon',
|
|
589
|
-
'labelTooltip',
|
|
590
|
-
'labelTooltipProps',
|
|
591
|
-
'rules',
|
|
592
|
-
'error',
|
|
593
|
-
'containerStyle',
|
|
594
|
-
'triggerStyle',
|
|
595
|
-
'dropdownStyle',
|
|
596
|
-
'optionStyle',
|
|
597
|
-
'labelStyle',
|
|
598
|
-
'optionRenderer',
|
|
599
|
-
'name',
|
|
600
|
-
'sdUpdate',
|
|
601
|
-
'sdDropDownShow'
|
|
602
|
-
], [
|
|
603
|
-
'sdUpdate',
|
|
604
|
-
'sdDropDownShow'
|
|
605
|
-
]);
|
|
606
|
-
export const SdSelectMultiple = /*@__PURE__*/ defineContainer('sd-select-multiple', undefined, [
|
|
607
|
-
'value',
|
|
608
|
-
'options',
|
|
609
|
-
'placeholder',
|
|
610
|
-
'optionPlaceholder',
|
|
611
|
-
'width',
|
|
612
|
-
'dropdownHeight',
|
|
613
|
-
'autoFocus',
|
|
614
|
-
'disabled',
|
|
615
|
-
'clearable',
|
|
616
|
-
'searchable',
|
|
617
|
-
'useAll',
|
|
618
|
-
'useCheckbox',
|
|
619
|
-
'label',
|
|
620
|
-
'labelWidth',
|
|
621
|
-
'icon',
|
|
622
|
-
'labelTooltip',
|
|
623
|
-
'labelTooltipProps',
|
|
624
|
-
'rules',
|
|
625
|
-
'error',
|
|
626
|
-
'optionRenderer',
|
|
627
|
-
'sdUpdate',
|
|
628
|
-
'sdDropDownShow'
|
|
629
|
-
], [
|
|
630
|
-
'sdUpdate',
|
|
631
|
-
'sdDropDownShow'
|
|
632
|
-
], 'value', 'sdUpdate', undefined);
|
|
633
|
-
export const SdSelectMultipleGroup = /*@__PURE__*/ defineContainer('sd-select-multiple-group', undefined, [
|
|
634
|
-
'value',
|
|
635
|
-
'options',
|
|
636
|
-
'placeholder',
|
|
637
|
-
'optionPlaceholder',
|
|
638
|
-
'width',
|
|
639
|
-
'dropdownHeight',
|
|
640
|
-
'disabled',
|
|
641
|
-
'clearable',
|
|
642
|
-
'searchable',
|
|
643
|
-
'useCheckbox',
|
|
644
|
-
'useAll',
|
|
645
|
-
'allCheckedLabel',
|
|
646
|
-
'allCheckOptionLabel',
|
|
647
|
-
'label',
|
|
648
|
-
'labelWidth',
|
|
649
|
-
'icon',
|
|
650
|
-
'labelTooltip',
|
|
651
|
-
'labelTooltipProps',
|
|
652
|
-
'rules',
|
|
653
|
-
'error',
|
|
654
|
-
'containerStyle',
|
|
655
|
-
'triggerStyle',
|
|
656
|
-
'dropdownStyle',
|
|
657
|
-
'optionStyle',
|
|
658
|
-
'labelStyle',
|
|
659
|
-
'optionRenderer',
|
|
660
|
-
'sdUpdate',
|
|
661
|
-
'sdDropDownShow'
|
|
662
|
-
], [
|
|
663
|
-
'sdUpdate',
|
|
664
|
-
'sdDropDownShow'
|
|
665
|
-
], 'value', 'sdUpdate', undefined);
|
|
666
|
-
export const SdSelectOption = /*@__PURE__*/ defineContainer('sd-select-option', undefined, [
|
|
667
|
-
'option',
|
|
668
|
-
'index',
|
|
669
|
-
'isSelected',
|
|
670
|
-
'isFocused',
|
|
671
|
-
'optionStyle',
|
|
672
|
-
'disabled',
|
|
673
|
-
'useCheckbox',
|
|
674
|
-
'optionClick'
|
|
675
|
-
], [
|
|
676
|
-
'optionClick'
|
|
677
|
-
]);
|
|
678
|
-
export const SdSelectOptionGroup = /*@__PURE__*/ defineContainer('sd-select-option-group', undefined, [
|
|
679
|
-
'option',
|
|
680
|
-
'index',
|
|
681
|
-
'isSelected',
|
|
682
|
-
'isFocused',
|
|
683
|
-
'optionStyle',
|
|
684
|
-
'disabled',
|
|
685
|
-
'useCheckbox',
|
|
686
|
-
'useIndicator',
|
|
687
|
-
'countInfo',
|
|
688
|
-
'optionClick'
|
|
689
|
-
], [
|
|
690
|
-
'optionClick'
|
|
691
|
-
]);
|
|
692
|
-
export const SdSelectSearchInput = /*@__PURE__*/ defineContainer('sd-select-search-input', undefined, [
|
|
693
|
-
'isScrolled',
|
|
694
|
-
'searchText',
|
|
695
|
-
'sdSearchInput',
|
|
696
|
-
'sdSearchFocus'
|
|
697
|
-
], [
|
|
698
|
-
'sdSearchInput',
|
|
699
|
-
'sdSearchFocus'
|
|
700
|
-
]);
|
|
701
|
-
export const SdSelectV2 = /*@__PURE__*/ defineContainer('sd-select-v2', undefined, [
|
|
702
520
|
'type',
|
|
703
521
|
'value',
|
|
704
522
|
'options',
|
|
@@ -719,6 +537,9 @@ export const SdSelectV2 = /*@__PURE__*/ defineContainer('sd-select-v2', undefine
|
|
|
719
537
|
'labelTooltipProps',
|
|
720
538
|
'emitValue',
|
|
721
539
|
'width',
|
|
540
|
+
'useSearch',
|
|
541
|
+
'allSelectedLabel',
|
|
542
|
+
'useSelectAll',
|
|
722
543
|
'name',
|
|
723
544
|
'sdUpdate',
|
|
724
545
|
'sdDropDownShow'
|
|
@@ -726,7 +547,7 @@ export const SdSelectV2 = /*@__PURE__*/ defineContainer('sd-select-v2', undefine
|
|
|
726
547
|
'sdUpdate',
|
|
727
548
|
'sdDropDownShow'
|
|
728
549
|
], 'value', 'sdUpdate', undefined);
|
|
729
|
-
export const
|
|
550
|
+
export const SdSelectListItem = /*@__PURE__*/ defineContainer('sd-select-list-item', undefined, [
|
|
730
551
|
'option',
|
|
731
552
|
'depth',
|
|
732
553
|
'isSelected',
|
|
@@ -737,7 +558,7 @@ export const SdSelectV2ListItem = /*@__PURE__*/ defineContainer('sd-select-v2-li
|
|
|
737
558
|
], [
|
|
738
559
|
'sdListItemClick'
|
|
739
560
|
]);
|
|
740
|
-
export const
|
|
561
|
+
export const SdSelectListItemSearch = /*@__PURE__*/ defineContainer('sd-select-list-item-search', undefined, [
|
|
741
562
|
'isScrolled',
|
|
742
563
|
'sdSearchFilter',
|
|
743
564
|
'sdSearchFocus'
|
|
@@ -745,11 +566,13 @@ export const SdSelectV2ListItemSearch = /*@__PURE__*/ defineContainer('sd-select
|
|
|
745
566
|
'sdSearchFilter',
|
|
746
567
|
'sdSearchFocus'
|
|
747
568
|
]);
|
|
748
|
-
export const
|
|
569
|
+
export const SdSelectListbox = /*@__PURE__*/ defineContainer('sd-select-listbox', undefined, [
|
|
749
570
|
'type',
|
|
750
571
|
'options',
|
|
751
572
|
'value',
|
|
752
573
|
'emitValue',
|
|
574
|
+
'useSearch',
|
|
575
|
+
'useSelectAll',
|
|
753
576
|
'triggerWidth',
|
|
754
577
|
'maxWidth',
|
|
755
578
|
'maxHeight',
|
|
@@ -757,7 +580,7 @@ export const SdSelectV2Listbox = /*@__PURE__*/ defineContainer('sd-select-v2-lis
|
|
|
757
580
|
], [
|
|
758
581
|
'sdOptionSelect'
|
|
759
582
|
]);
|
|
760
|
-
export const
|
|
583
|
+
export const SdSelectTrigger = /*@__PURE__*/ defineContainer('sd-select-trigger', undefined, [
|
|
761
584
|
'displayText',
|
|
762
585
|
'placeholder',
|
|
763
586
|
'disabled',
|
|
@@ -833,7 +656,9 @@ export const SdTbody = /*@__PURE__*/ defineContainer('sd-tbody', undefined, [
|
|
|
833
656
|
export const SdTd = /*@__PURE__*/ defineContainer('sd-td', undefined, [
|
|
834
657
|
'field',
|
|
835
658
|
'rowKey',
|
|
836
|
-
'align'
|
|
659
|
+
'align',
|
|
660
|
+
'rowspan',
|
|
661
|
+
'colspan'
|
|
837
662
|
]);
|
|
838
663
|
export const SdTextLink = /*@__PURE__*/ defineContainer('sd-text-link', undefined, [
|
|
839
664
|
'label',
|
|
@@ -891,7 +716,10 @@ export const SdThead = /*@__PURE__*/ defineContainer('sd-thead', undefined, [
|
|
|
891
716
|
'scrolledLeft',
|
|
892
717
|
'scrolledRight',
|
|
893
718
|
'rows',
|
|
894
|
-
'columnWidths'
|
|
719
|
+
'columnWidths',
|
|
720
|
+
'sdColumnSort'
|
|
721
|
+
], [
|
|
722
|
+
'sdColumnSort'
|
|
895
723
|
]);
|
|
896
724
|
export const SdToast = /*@__PURE__*/ defineContainer('sd-toast', undefined, [
|
|
897
725
|
'icon',
|
|
@@ -943,12 +771,3 @@ export const SdTr = /*@__PURE__*/ defineContainer('sd-tr', undefined, [
|
|
|
943
771
|
'rowKey',
|
|
944
772
|
'row'
|
|
945
773
|
]);
|
|
946
|
-
export const TableTest = /*@__PURE__*/ defineContainer('table-test', undefined, [
|
|
947
|
-
'columns',
|
|
948
|
-
'rows',
|
|
949
|
-
'bordered',
|
|
950
|
-
'striped',
|
|
951
|
-
'tableReady'
|
|
952
|
-
], [
|
|
953
|
-
'tableReady'
|
|
954
|
-
]);
|
package/dist/index.d.ts
CHANGED
|
@@ -6,4 +6,4 @@ export type { VirtualRow } from './composables/useSdTableVirtualScroll';
|
|
|
6
6
|
export { sdModal, SdModalVuePlugin } from './sdModal';
|
|
7
7
|
export { sdLoading } from '@sellmate/design-system/utils';
|
|
8
8
|
export type { SdLoadingShowOptions } from '@sellmate/design-system/utils';
|
|
9
|
-
export type { SdTableColumn, Row as SdTableRow, SelectOption,
|
|
9
|
+
export type { SdTableColumn, Row as SdTableRow, SelectOption, 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
|
@@ -570,16 +570,6 @@ export const SdPortal: StencilVueComponent<JSX.SdPortal> = /*@__PURE__*/ defineC
|
|
|
570
570
|
]);
|
|
571
571
|
|
|
572
572
|
|
|
573
|
-
export const SdProgress: StencilVueComponent<JSX.SdProgress> = /*@__PURE__*/ defineContainer<JSX.SdProgress>('sd-progress', undefined, [
|
|
574
|
-
'type',
|
|
575
|
-
'error',
|
|
576
|
-
'percentage',
|
|
577
|
-
'size',
|
|
578
|
-
'strokeWidth',
|
|
579
|
-
'label'
|
|
580
|
-
]);
|
|
581
|
-
|
|
582
|
-
|
|
583
573
|
export const SdRadio: StencilVueComponent<JSX.SdRadio, JSX.SdRadio["value"]> = /*@__PURE__*/ defineContainer<JSX.SdRadio, JSX.SdRadio["value"]>('sd-radio', undefined, [
|
|
584
574
|
'value',
|
|
585
575
|
'val',
|
|
@@ -619,199 +609,6 @@ export const SdRadioGroup: StencilVueComponent<JSX.SdRadioGroup, JSX.SdRadioGrou
|
|
|
619
609
|
|
|
620
610
|
|
|
621
611
|
export const SdSelect: StencilVueComponent<JSX.SdSelect, JSX.SdSelect["value"]> = /*@__PURE__*/ defineContainer<JSX.SdSelect, JSX.SdSelect["value"]>('sd-select', undefined, [
|
|
622
|
-
'value',
|
|
623
|
-
'options',
|
|
624
|
-
'placeholder',
|
|
625
|
-
'optionPlaceholder',
|
|
626
|
-
'width',
|
|
627
|
-
'dropdownHeight',
|
|
628
|
-
'autoFocus',
|
|
629
|
-
'disabled',
|
|
630
|
-
'clearable',
|
|
631
|
-
'searchable',
|
|
632
|
-
'label',
|
|
633
|
-
'labelWidth',
|
|
634
|
-
'addonLabel',
|
|
635
|
-
'addonAlign',
|
|
636
|
-
'icon',
|
|
637
|
-
'labelTooltip',
|
|
638
|
-
'labelTooltipProps',
|
|
639
|
-
'rules',
|
|
640
|
-
'error',
|
|
641
|
-
'optionRenderer',
|
|
642
|
-
'name',
|
|
643
|
-
'sdUpdate',
|
|
644
|
-
'sdDropDownShow'
|
|
645
|
-
], [
|
|
646
|
-
'sdUpdate',
|
|
647
|
-
'sdDropDownShow'
|
|
648
|
-
],
|
|
649
|
-
'value', 'sdUpdate', undefined);
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
export const SdSelectDropdown: StencilVueComponent<JSX.SdSelectDropdown> = /*@__PURE__*/ defineContainer<JSX.SdSelectDropdown>('sd-select-dropdown', undefined, [
|
|
653
|
-
'itemIndex',
|
|
654
|
-
'value',
|
|
655
|
-
'options',
|
|
656
|
-
'width',
|
|
657
|
-
'dropdownHeight',
|
|
658
|
-
'searchable',
|
|
659
|
-
'optionPlaceholder',
|
|
660
|
-
'useCheckbox',
|
|
661
|
-
'useAll',
|
|
662
|
-
'sdOptionClick',
|
|
663
|
-
'sdOptionFiltered',
|
|
664
|
-
'sdScroll'
|
|
665
|
-
], [
|
|
666
|
-
'sdOptionClick',
|
|
667
|
-
'sdOptionFiltered',
|
|
668
|
-
'sdScroll'
|
|
669
|
-
]);
|
|
670
|
-
|
|
671
|
-
|
|
672
|
-
export const SdSelectGroup: StencilVueComponent<JSX.SdSelectGroup> = /*@__PURE__*/ defineContainer<JSX.SdSelectGroup>('sd-select-group', undefined, [
|
|
673
|
-
'value',
|
|
674
|
-
'options',
|
|
675
|
-
'placeholder',
|
|
676
|
-
'optionPlaceholder',
|
|
677
|
-
'width',
|
|
678
|
-
'dropdownHeight',
|
|
679
|
-
'autoFocus',
|
|
680
|
-
'disabled',
|
|
681
|
-
'clearable',
|
|
682
|
-
'searchable',
|
|
683
|
-
'label',
|
|
684
|
-
'labelWidth',
|
|
685
|
-
'addonLabel',
|
|
686
|
-
'addonAlign',
|
|
687
|
-
'icon',
|
|
688
|
-
'labelTooltip',
|
|
689
|
-
'labelTooltipProps',
|
|
690
|
-
'rules',
|
|
691
|
-
'error',
|
|
692
|
-
'containerStyle',
|
|
693
|
-
'triggerStyle',
|
|
694
|
-
'dropdownStyle',
|
|
695
|
-
'optionStyle',
|
|
696
|
-
'labelStyle',
|
|
697
|
-
'optionRenderer',
|
|
698
|
-
'name',
|
|
699
|
-
'sdUpdate',
|
|
700
|
-
'sdDropDownShow'
|
|
701
|
-
], [
|
|
702
|
-
'sdUpdate',
|
|
703
|
-
'sdDropDownShow'
|
|
704
|
-
]);
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
export const SdSelectMultiple: StencilVueComponent<JSX.SdSelectMultiple, JSX.SdSelectMultiple["value"]> = /*@__PURE__*/ defineContainer<JSX.SdSelectMultiple, JSX.SdSelectMultiple["value"]>('sd-select-multiple', undefined, [
|
|
708
|
-
'value',
|
|
709
|
-
'options',
|
|
710
|
-
'placeholder',
|
|
711
|
-
'optionPlaceholder',
|
|
712
|
-
'width',
|
|
713
|
-
'dropdownHeight',
|
|
714
|
-
'autoFocus',
|
|
715
|
-
'disabled',
|
|
716
|
-
'clearable',
|
|
717
|
-
'searchable',
|
|
718
|
-
'useAll',
|
|
719
|
-
'useCheckbox',
|
|
720
|
-
'label',
|
|
721
|
-
'labelWidth',
|
|
722
|
-
'icon',
|
|
723
|
-
'labelTooltip',
|
|
724
|
-
'labelTooltipProps',
|
|
725
|
-
'rules',
|
|
726
|
-
'error',
|
|
727
|
-
'optionRenderer',
|
|
728
|
-
'sdUpdate',
|
|
729
|
-
'sdDropDownShow'
|
|
730
|
-
], [
|
|
731
|
-
'sdUpdate',
|
|
732
|
-
'sdDropDownShow'
|
|
733
|
-
],
|
|
734
|
-
'value', 'sdUpdate', undefined);
|
|
735
|
-
|
|
736
|
-
|
|
737
|
-
export const SdSelectMultipleGroup: StencilVueComponent<JSX.SdSelectMultipleGroup, JSX.SdSelectMultipleGroup["value"]> = /*@__PURE__*/ defineContainer<JSX.SdSelectMultipleGroup, JSX.SdSelectMultipleGroup["value"]>('sd-select-multiple-group', undefined, [
|
|
738
|
-
'value',
|
|
739
|
-
'options',
|
|
740
|
-
'placeholder',
|
|
741
|
-
'optionPlaceholder',
|
|
742
|
-
'width',
|
|
743
|
-
'dropdownHeight',
|
|
744
|
-
'disabled',
|
|
745
|
-
'clearable',
|
|
746
|
-
'searchable',
|
|
747
|
-
'useCheckbox',
|
|
748
|
-
'useAll',
|
|
749
|
-
'allCheckedLabel',
|
|
750
|
-
'allCheckOptionLabel',
|
|
751
|
-
'label',
|
|
752
|
-
'labelWidth',
|
|
753
|
-
'icon',
|
|
754
|
-
'labelTooltip',
|
|
755
|
-
'labelTooltipProps',
|
|
756
|
-
'rules',
|
|
757
|
-
'error',
|
|
758
|
-
'containerStyle',
|
|
759
|
-
'triggerStyle',
|
|
760
|
-
'dropdownStyle',
|
|
761
|
-
'optionStyle',
|
|
762
|
-
'labelStyle',
|
|
763
|
-
'optionRenderer',
|
|
764
|
-
'sdUpdate',
|
|
765
|
-
'sdDropDownShow'
|
|
766
|
-
], [
|
|
767
|
-
'sdUpdate',
|
|
768
|
-
'sdDropDownShow'
|
|
769
|
-
],
|
|
770
|
-
'value', 'sdUpdate', undefined);
|
|
771
|
-
|
|
772
|
-
|
|
773
|
-
export const SdSelectOption: StencilVueComponent<JSX.SdSelectOption> = /*@__PURE__*/ defineContainer<JSX.SdSelectOption>('sd-select-option', undefined, [
|
|
774
|
-
'option',
|
|
775
|
-
'index',
|
|
776
|
-
'isSelected',
|
|
777
|
-
'isFocused',
|
|
778
|
-
'optionStyle',
|
|
779
|
-
'disabled',
|
|
780
|
-
'useCheckbox',
|
|
781
|
-
'optionClick'
|
|
782
|
-
], [
|
|
783
|
-
'optionClick'
|
|
784
|
-
]);
|
|
785
|
-
|
|
786
|
-
|
|
787
|
-
export const SdSelectOptionGroup: StencilVueComponent<JSX.SdSelectOptionGroup> = /*@__PURE__*/ defineContainer<JSX.SdSelectOptionGroup>('sd-select-option-group', undefined, [
|
|
788
|
-
'option',
|
|
789
|
-
'index',
|
|
790
|
-
'isSelected',
|
|
791
|
-
'isFocused',
|
|
792
|
-
'optionStyle',
|
|
793
|
-
'disabled',
|
|
794
|
-
'useCheckbox',
|
|
795
|
-
'useIndicator',
|
|
796
|
-
'countInfo',
|
|
797
|
-
'optionClick'
|
|
798
|
-
], [
|
|
799
|
-
'optionClick'
|
|
800
|
-
]);
|
|
801
|
-
|
|
802
|
-
|
|
803
|
-
export const SdSelectSearchInput: StencilVueComponent<JSX.SdSelectSearchInput> = /*@__PURE__*/ defineContainer<JSX.SdSelectSearchInput>('sd-select-search-input', undefined, [
|
|
804
|
-
'isScrolled',
|
|
805
|
-
'searchText',
|
|
806
|
-
'sdSearchInput',
|
|
807
|
-
'sdSearchFocus'
|
|
808
|
-
], [
|
|
809
|
-
'sdSearchInput',
|
|
810
|
-
'sdSearchFocus'
|
|
811
|
-
]);
|
|
812
|
-
|
|
813
|
-
|
|
814
|
-
export const SdSelectV2: StencilVueComponent<JSX.SdSelectV2, JSX.SdSelectV2["value"]> = /*@__PURE__*/ defineContainer<JSX.SdSelectV2, JSX.SdSelectV2["value"]>('sd-select-v2', undefined, [
|
|
815
612
|
'type',
|
|
816
613
|
'value',
|
|
817
614
|
'options',
|
|
@@ -832,6 +629,9 @@ export const SdSelectV2: StencilVueComponent<JSX.SdSelectV2, JSX.SdSelectV2["val
|
|
|
832
629
|
'labelTooltipProps',
|
|
833
630
|
'emitValue',
|
|
834
631
|
'width',
|
|
632
|
+
'useSearch',
|
|
633
|
+
'allSelectedLabel',
|
|
634
|
+
'useSelectAll',
|
|
835
635
|
'name',
|
|
836
636
|
'sdUpdate',
|
|
837
637
|
'sdDropDownShow'
|
|
@@ -842,7 +642,7 @@ export const SdSelectV2: StencilVueComponent<JSX.SdSelectV2, JSX.SdSelectV2["val
|
|
|
842
642
|
'value', 'sdUpdate', undefined);
|
|
843
643
|
|
|
844
644
|
|
|
845
|
-
export const
|
|
645
|
+
export const SdSelectListItem: StencilVueComponent<JSX.SdSelectListItem> = /*@__PURE__*/ defineContainer<JSX.SdSelectListItem>('sd-select-list-item', undefined, [
|
|
846
646
|
'option',
|
|
847
647
|
'depth',
|
|
848
648
|
'isSelected',
|
|
@@ -855,7 +655,7 @@ export const SdSelectV2ListItem: StencilVueComponent<JSX.SdSelectV2ListItem> = /
|
|
|
855
655
|
]);
|
|
856
656
|
|
|
857
657
|
|
|
858
|
-
export const
|
|
658
|
+
export const SdSelectListItemSearch: StencilVueComponent<JSX.SdSelectListItemSearch> = /*@__PURE__*/ defineContainer<JSX.SdSelectListItemSearch>('sd-select-list-item-search', undefined, [
|
|
859
659
|
'isScrolled',
|
|
860
660
|
'sdSearchFilter',
|
|
861
661
|
'sdSearchFocus'
|
|
@@ -865,11 +665,13 @@ export const SdSelectV2ListItemSearch: StencilVueComponent<JSX.SdSelectV2ListIte
|
|
|
865
665
|
]);
|
|
866
666
|
|
|
867
667
|
|
|
868
|
-
export const
|
|
668
|
+
export const SdSelectListbox: StencilVueComponent<JSX.SdSelectListbox> = /*@__PURE__*/ defineContainer<JSX.SdSelectListbox>('sd-select-listbox', undefined, [
|
|
869
669
|
'type',
|
|
870
670
|
'options',
|
|
871
671
|
'value',
|
|
872
672
|
'emitValue',
|
|
673
|
+
'useSearch',
|
|
674
|
+
'useSelectAll',
|
|
873
675
|
'triggerWidth',
|
|
874
676
|
'maxWidth',
|
|
875
677
|
'maxHeight',
|
|
@@ -879,7 +681,7 @@ export const SdSelectV2Listbox: StencilVueComponent<JSX.SdSelectV2Listbox> = /*@
|
|
|
879
681
|
]);
|
|
880
682
|
|
|
881
683
|
|
|
882
|
-
export const
|
|
684
|
+
export const SdSelectTrigger: StencilVueComponent<JSX.SdSelectTrigger> = /*@__PURE__*/ defineContainer<JSX.SdSelectTrigger>('sd-select-trigger', undefined, [
|
|
883
685
|
'displayText',
|
|
884
686
|
'placeholder',
|
|
885
687
|
'disabled',
|
|
@@ -970,7 +772,9 @@ export const SdTbody: StencilVueComponent<JSX.SdTbody> = /*@__PURE__*/ defineCon
|
|
|
970
772
|
export const SdTd: StencilVueComponent<JSX.SdTd> = /*@__PURE__*/ defineContainer<JSX.SdTd>('sd-td', undefined, [
|
|
971
773
|
'field',
|
|
972
774
|
'rowKey',
|
|
973
|
-
'align'
|
|
775
|
+
'align',
|
|
776
|
+
'rowspan',
|
|
777
|
+
'colspan'
|
|
974
778
|
]);
|
|
975
779
|
|
|
976
780
|
|
|
@@ -1035,7 +839,10 @@ export const SdThead: StencilVueComponent<JSX.SdThead> = /*@__PURE__*/ defineCon
|
|
|
1035
839
|
'scrolledLeft',
|
|
1036
840
|
'scrolledRight',
|
|
1037
841
|
'rows',
|
|
1038
|
-
'columnWidths'
|
|
842
|
+
'columnWidths',
|
|
843
|
+
'sdColumnSort'
|
|
844
|
+
], [
|
|
845
|
+
'sdColumnSort'
|
|
1039
846
|
]);
|
|
1040
847
|
|
|
1041
848
|
|
|
@@ -1099,14 +906,3 @@ export const SdTr: StencilVueComponent<JSX.SdTr> = /*@__PURE__*/ defineContainer
|
|
|
1099
906
|
'row'
|
|
1100
907
|
]);
|
|
1101
908
|
|
|
1102
|
-
|
|
1103
|
-
export const TableTest: StencilVueComponent<JSX.TableTest> = /*@__PURE__*/ defineContainer<JSX.TableTest>('table-test', undefined, [
|
|
1104
|
-
'columns',
|
|
1105
|
-
'rows',
|
|
1106
|
-
'bordered',
|
|
1107
|
-
'striped',
|
|
1108
|
-
'tableReady'
|
|
1109
|
-
], [
|
|
1110
|
-
'tableReady'
|
|
1111
|
-
]);
|
|
1112
|
-
|
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.77",
|
|
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.77",
|
|
49
49
|
"@stencil/vue-output-target": "^0.11.8"
|
|
50
50
|
},
|
|
51
51
|
"peerDependencies": {
|