@idmwx/idmui-report 3.3.2 → 3.3.4
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/Invoice/src/orm/index.vue.d.ts +10 -10
- package/dist/Stoppage/src/index.vue.d.ts +1 -0
- package/dist/index.js +3579 -3627
- 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
|
+
}
|
|
@@ -1,6 +1,14 @@
|
|
|
1
1
|
export default _sfc_main;
|
|
2
2
|
declare namespace _sfc_main {
|
|
3
|
+
const name: string;
|
|
3
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
|
+
}
|
|
4
12
|
function data(): {
|
|
5
13
|
account: {
|
|
6
14
|
CNY: {
|
|
@@ -30,12 +38,8 @@ declare namespace _sfc_main {
|
|
|
30
38
|
maxColspans: number;
|
|
31
39
|
totalInUS: number;
|
|
32
40
|
};
|
|
33
|
-
namespace
|
|
34
|
-
|
|
35
|
-
export const type: ObjectConstructor;
|
|
36
|
-
function _default(): {};
|
|
37
|
-
export { _default as default };
|
|
38
|
-
}
|
|
41
|
+
namespace computed {
|
|
42
|
+
function computeTime(): (time: any, format?: string) => string;
|
|
39
43
|
}
|
|
40
44
|
namespace watch {
|
|
41
45
|
export namespace report_1 {
|
|
@@ -44,8 +48,4 @@ declare namespace _sfc_main {
|
|
|
44
48
|
}
|
|
45
49
|
export { report_1 as report };
|
|
46
50
|
}
|
|
47
|
-
namespace computed {
|
|
48
|
-
function computeTime(): (time: any, format?: string) => string;
|
|
49
|
-
}
|
|
50
|
-
function mounted(): void;
|
|
51
51
|
}
|