@kengic/vue 0.2.1-beta.10 → 0.2.1-beta.11
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/kengic-vue.js +744 -742
- package/dist/src/components/KgControl/addon/KgControl.Addon.Lookup.Modal.d.ts +1 -1
- package/dist/src/components/KgControl/addon/KgControl.Addon.Lookup.d.ts +1 -1
- package/dist/src/consts/i18n/en.d.ts +1 -0
- package/dist/src/consts/i18n/index.d.ts +2 -0
- package/dist/src/consts/i18n/zh_CN.d.ts +1 -0
- package/package.json +1 -1
|
@@ -6,7 +6,7 @@ export declare const getProps: () => {
|
|
|
6
6
|
'onUpdate:visible': PropType<(value: boolean) => void>;
|
|
7
7
|
onKgOk: PropType<(value: string | Array<string>, record: IKgTableRecord | Array<IKgTableRecord>) => void>;
|
|
8
8
|
};
|
|
9
|
-
export declare type
|
|
9
|
+
export declare type IProps = Partial<ExtractPropTypes<ReturnType<typeof getProps>>>;
|
|
10
10
|
declare const _default: import("vue").DefineComponent<{
|
|
11
11
|
visible: PropType<boolean>;
|
|
12
12
|
'onUpdate:visible': PropType<(value: boolean) => void>;
|
|
@@ -4,7 +4,7 @@ import { IKgTableRecord } from '../../KgTable';
|
|
|
4
4
|
export declare const getProps: () => {
|
|
5
5
|
onKgOk: PropType<(value: any, row: IKgTableRecord) => void>;
|
|
6
6
|
};
|
|
7
|
-
export declare type
|
|
7
|
+
export declare type IProps = Partial<ExtractPropTypes<ReturnType<typeof getProps>>>;
|
|
8
8
|
declare const _default: import("vue").DefineComponent<{
|
|
9
9
|
onKgOk: PropType<(value: any, row: IKgTableRecord<{}>) => void>;
|
|
10
10
|
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "kgOk"[], "kgOk", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<ExtractPropTypes<{
|
|
@@ -21,6 +21,7 @@ export declare const KG_I18N: {
|
|
|
21
21
|
lookup: string;
|
|
22
22
|
button: string;
|
|
23
23
|
confirmDelete: string;
|
|
24
|
+
deleteSuccess: string;
|
|
24
25
|
emptyText: string;
|
|
25
26
|
KgSearch: {
|
|
26
27
|
title: string;
|
|
@@ -60,6 +61,7 @@ export declare const KG_I18N: {
|
|
|
60
61
|
lookup: string;
|
|
61
62
|
button: string;
|
|
62
63
|
confirmDelete: string;
|
|
64
|
+
deleteSuccess: string;
|
|
63
65
|
emptyText: string;
|
|
64
66
|
KgSearch: {
|
|
65
67
|
title: string;
|