@xn-lib/component 0.1.12 → 0.1.13
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.
|
@@ -10,15 +10,16 @@ interface Props {
|
|
|
10
10
|
value: CascaderValue | null;
|
|
11
11
|
virtualScroll?: boolean;
|
|
12
12
|
optionHeight?: number;
|
|
13
|
+
selectWidth?: number;
|
|
13
14
|
}
|
|
14
15
|
declare function prev(): void;
|
|
15
16
|
declare function next(): void;
|
|
16
17
|
declare function enter(): boolean;
|
|
17
|
-
declare var
|
|
18
|
+
declare var __VLS_32: {}, __VLS_71: {};
|
|
18
19
|
type __VLS_Slots = {} & {
|
|
19
|
-
'not-found'?: (props: typeof
|
|
20
|
+
'not-found'?: (props: typeof __VLS_32) => any;
|
|
20
21
|
} & {
|
|
21
|
-
'not-found'?: (props: typeof
|
|
22
|
+
'not-found'?: (props: typeof __VLS_71) => any;
|
|
22
23
|
};
|
|
23
24
|
declare const __VLS_base: import("vue").DefineComponent<Props, {
|
|
24
25
|
prev: typeof prev;
|