@kengic/vue 0.5.21-beta.2 → 0.5.21
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,3 +1,14 @@
|
|
1
1
|
import { InjectionKey } from 'vue';
|
2
|
+
import { IKgFormItemSlotControl } from '../KgForm.Item/index.vm';
|
3
|
+
export declare type IKgSlots = {
|
4
|
+
KgSearch?: {
|
5
|
+
left?: () => any;
|
6
|
+
};
|
7
|
+
KgSubmit?: {
|
8
|
+
'KgForm.Item'?: {
|
9
|
+
[variable: string]: (args: IKgFormItemSlotControl) => any;
|
10
|
+
};
|
11
|
+
};
|
12
|
+
};
|
2
13
|
/** 注入 kgSlots 参数. */
|
3
|
-
export declare const DI_KG_SLOTS: InjectionKey<
|
14
|
+
export declare const DI_KG_SLOTS: InjectionKey<IKgSlots | undefined>;
|