@xn-lib/component 0.1.7 → 0.1.9
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.
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export * from '
|
|
2
|
-
export * from '
|
|
3
|
-
export * from '
|
|
4
|
-
export * from '
|
|
1
|
+
export * from './cascader';
|
|
2
|
+
export * from './tag';
|
|
3
|
+
export * from './transfer';
|
|
4
|
+
export * from './virtual-list';
|
|
5
5
|
export type DefaultType = 'success' | 'info' | 'warning' | 'danger' | 'primary' | 'default';
|
|
6
6
|
export type DefaultSize = 'small' | 'default' | 'large';
|
|
@@ -21,7 +21,7 @@ declare const __VLS_base: import("vue").DefineComponent<import("vue").ExtractPro
|
|
|
21
21
|
readonly required: true;
|
|
22
22
|
};
|
|
23
23
|
readonly mode: {
|
|
24
|
-
readonly type: import("vue").PropType<import("
|
|
24
|
+
readonly type: import("vue").PropType<import("..").VirtualListMode>;
|
|
25
25
|
readonly default: "fixed";
|
|
26
26
|
};
|
|
27
27
|
readonly itemSize: {
|
|
@@ -72,7 +72,7 @@ declare const __VLS_base: import("vue").DefineComponent<import("vue").ExtractPro
|
|
|
72
72
|
readonly required: true;
|
|
73
73
|
};
|
|
74
74
|
readonly mode: {
|
|
75
|
-
readonly type: import("vue").PropType<import("
|
|
75
|
+
readonly type: import("vue").PropType<import("..").VirtualListMode>;
|
|
76
76
|
readonly default: "fixed";
|
|
77
77
|
};
|
|
78
78
|
readonly itemSize: {
|
|
@@ -112,7 +112,7 @@ declare const __VLS_base: import("vue").DefineComponent<import("vue").ExtractPro
|
|
|
112
112
|
"onReach-bottom"?: ((event: Event) => any) | undefined;
|
|
113
113
|
}>, {
|
|
114
114
|
readonly itemSize: number | ((item: any) => number);
|
|
115
|
-
readonly mode: import("
|
|
115
|
+
readonly mode: import("..").VirtualListMode;
|
|
116
116
|
readonly minItemSize: number;
|
|
117
117
|
readonly itemKey: string;
|
|
118
118
|
readonly pageMode: boolean;
|