@ningboyz/vue 1.0.26 → 1.0.28
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/package.json
CHANGED
package/types/all.d.ts
CHANGED
|
@@ -8,8 +8,12 @@ interface AllComponents {
|
|
|
8
8
|
export function install(app: App): void;
|
|
9
9
|
|
|
10
10
|
declare module "@vue/runtime-core" {
|
|
11
|
-
export interface GlobalComponents extends AllComponents {
|
|
11
|
+
export interface GlobalComponents extends AllComponents {
|
|
12
|
+
["yz-desgin"]: typeof YzDesginer;
|
|
13
|
+
}
|
|
12
14
|
}
|
|
13
15
|
|
|
16
|
+
|
|
17
|
+
|
|
14
18
|
export * from "./components/core/component";
|
|
15
19
|
export * from "./components/stimulsoft/desginer/desginer";
|
|
@@ -3,11 +3,18 @@ import { YzComponent } from "../../core/component";
|
|
|
3
3
|
|
|
4
4
|
export declare const YzDesginer: YzComponent<YzDesginerProps, {}, YzDesginerSlots, YzDesginerMethod>;
|
|
5
5
|
|
|
6
|
+
export namespace YzDesginerPropTypes {
|
|
7
|
+
export type ListData = TWldy.IWldyDataResponse[];
|
|
8
|
+
}
|
|
9
|
+
|
|
6
10
|
export type YzDesginerProps = {
|
|
7
|
-
listData:
|
|
11
|
+
listData: YzDesginerPropTypes.ListData;
|
|
8
12
|
};
|
|
9
13
|
|
|
10
|
-
export type YzDesginerMethod = {
|
|
14
|
+
export type YzDesginerMethod = {
|
|
15
|
+
onOK: () => void;
|
|
16
|
+
} & YzDesginerEmits;
|
|
17
|
+
|
|
11
18
|
export type YzDesginerEmits = {
|
|
12
19
|
(event: "saveReport", fileName: string, json: string): void;
|
|
13
20
|
};
|