@voicenter-team/voicenter-ui-plus 0.0.13 → 0.0.15
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/library/super.mjs +3356 -3318
- package/library/super.mjs.map +1 -1
- package/library/super.umd.js +6 -6
- package/library/super.umd.js.map +1 -1
- package/library/types/src/components/VcButton/VcButton.types.d.ts +1 -1
- package/library/types/src/components/index.d.ts +39 -1
- package/package.json +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export declare type ButtonType = 'default' | 'outline' | 'borderless';
|
|
2
2
|
export declare type ButtonIconType = 'default' | 'outline' | 'hoverless' | 'plain';
|
|
3
|
-
export declare type ButtonColor = 'primary' | 'secondary' | 'destructive | success | warning';
|
|
3
|
+
export declare type ButtonColor = 'primary' | 'secondary' | 'destructive' | 'success' | 'warning';
|
|
4
4
|
export declare type ButtonSize = 'large' | 'middle' | 'small';
|
|
5
5
|
export declare type ButtonElementType = 'submit' | 'reset' | 'button';
|
|
@@ -41,9 +41,47 @@ import VcVerticalTabs from './VcVerticalTabs/VcVerticalTabs.vue';
|
|
|
41
41
|
import VcViewSwitcher from './VcViewSwitcher/VcViewSwitcher.vue';
|
|
42
42
|
import VcWizard from './VcWizard/VcWizard.vue';
|
|
43
43
|
export * from './VcButton';
|
|
44
|
-
export { VcCard };
|
|
44
|
+
export { VcCard as Card };
|
|
45
45
|
export { VcCheckbox };
|
|
46
46
|
export { VcCheckboxGroup };
|
|
47
|
+
export { VcCollapse };
|
|
48
|
+
export { VcCollapseItem };
|
|
49
|
+
export { VcColorPicker };
|
|
50
|
+
export { VcDatetimeRangePicker };
|
|
51
|
+
export { VcDelimitedList };
|
|
52
|
+
export { VcExtendedDatetimeRangePicker };
|
|
53
|
+
export { VcFileUploader };
|
|
54
|
+
export { VcForm };
|
|
55
|
+
export { VcFormItem };
|
|
56
|
+
export { VcHyperLink };
|
|
57
|
+
export { VcIconPicker };
|
|
58
|
+
export { VcInput };
|
|
59
|
+
export { VcInputNumber };
|
|
60
|
+
export { VcLoading };
|
|
61
|
+
export { VcModal };
|
|
62
|
+
export { VcPagination };
|
|
63
|
+
export { VcPopover };
|
|
64
|
+
export { VcProgress };
|
|
65
|
+
export { VcRadio };
|
|
66
|
+
export { VcRadioGroup };
|
|
67
|
+
export { VcRadioTabs };
|
|
68
|
+
export { VcSelect };
|
|
69
|
+
export { VcSkeletonLoader };
|
|
70
|
+
export { VcSoundPlayer };
|
|
71
|
+
export { VcSplitButton };
|
|
72
|
+
export { VcSwitch };
|
|
73
|
+
export { VcTable };
|
|
74
|
+
export { VcTabs };
|
|
75
|
+
export { VcTabNav };
|
|
76
|
+
export { VcTabPane };
|
|
77
|
+
export { VcTag };
|
|
78
|
+
export { VcTree };
|
|
79
|
+
export { VcTreeSelect };
|
|
80
|
+
export { VcTagInput };
|
|
81
|
+
export { VcTimeInput };
|
|
82
|
+
export { VcVerticalTabs };
|
|
83
|
+
export { VcViewSwitcher };
|
|
84
|
+
export { VcWizard };
|
|
47
85
|
declare const _default: {
|
|
48
86
|
VcButton: import("vue").DefineComponent<{
|
|
49
87
|
size: {
|