@idmwx/idmui-report 3.3.2 → 3.3.3
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/Comparison/index.d.ts +2 -2
- package/dist/Comparison/src/orm.vue.d.ts +35 -0
- package/dist/index.js +3566 -3611
- package/dist/index.umd.cjs +7 -7
- package/dist/style.css +1 -1
- package/package.json +1 -1
- package/dist/Comparison/src/opi.vue.d.ts +0 -54
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Plugin } from 'vue';
|
|
2
|
-
import
|
|
2
|
+
import OrmComparisonReport from './src/orm.vue';
|
|
3
3
|
import FliComparisonReport from './src/fli.vue';
|
|
4
4
|
export declare const ComparisonPlugin: Plugin;
|
|
5
|
-
export {
|
|
5
|
+
export { OrmComparisonReport, FliComparisonReport };
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
export default _sfc_main;
|
|
2
|
+
declare namespace _sfc_main {
|
|
3
|
+
const name: string;
|
|
4
|
+
const components: undefined;
|
|
5
|
+
namespace props {
|
|
6
|
+
namespace report {
|
|
7
|
+
export const type: ObjectConstructor;
|
|
8
|
+
function _default(): {};
|
|
9
|
+
export { _default as default };
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
const emits: string[];
|
|
13
|
+
function data(): {
|
|
14
|
+
advisory: undefined;
|
|
15
|
+
id: undefined;
|
|
16
|
+
editable: boolean;
|
|
17
|
+
};
|
|
18
|
+
namespace computed {
|
|
19
|
+
function computeUTCTime(): (time: any, format?: string) => string;
|
|
20
|
+
function computeColor(): (data: any) => "" | "fail" | "success";
|
|
21
|
+
function compareTime(): (actual: any, recmd: any) => any;
|
|
22
|
+
function computeSummary(): (data: any, type: any) => string;
|
|
23
|
+
function computeBlankHtml(): (html: any) => boolean;
|
|
24
|
+
}
|
|
25
|
+
namespace watch {
|
|
26
|
+
export namespace report_1 {
|
|
27
|
+
function handler(): void;
|
|
28
|
+
const immediate: boolean;
|
|
29
|
+
}
|
|
30
|
+
export { report_1 as report };
|
|
31
|
+
}
|
|
32
|
+
namespace methods {
|
|
33
|
+
function handleCommit(key: any, value: any): Promise<void>;
|
|
34
|
+
}
|
|
35
|
+
}
|