@idmwx/idmui-report 4.0.0 → 4.0.9

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/README.md CHANGED
@@ -1,18 +1,18 @@
1
- # Vue 3 + TypeScript + Vite
2
-
3
- This template should help get you started developing with Vue 3 and TypeScript in Vite. The template uses Vue 3 `<script setup>` SFCs, check out the [script setup docs](https://v3.vuejs.org/api/sfc-script-setup.html#sfc-script-setup) to learn more.
4
-
5
- ## Recommended IDE Setup
6
-
7
- - [VS Code](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin).
8
-
9
- ## Type Support For `.vue` Imports in TS
10
-
11
- TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin) to make the TypeScript language service aware of `.vue` types.
12
-
13
- If the standalone TypeScript plugin doesn't feel fast enough to you, Volar has also implemented a [Take Over Mode](https://github.com/johnsoncodehk/volar/discussions/471#discussioncomment-1361669) that is more performant. You can enable it by the following steps:
14
-
15
- 1. Disable the built-in TypeScript Extension
16
- 1. Run `Extensions: Show Built-in Extensions` from VSCode's command palette
17
- 2. Find `TypeScript and JavaScript Language Features`, right click and select `Disable (Workspace)`
18
- 2. Reload the VSCode window by running `Developer: Reload Window` from the command palette.
1
+ # Vue 3 + TypeScript + Vite
2
+
3
+ This template should help get you started developing with Vue 3 and TypeScript in Vite. The template uses Vue 3 `<script setup>` SFCs, check out the [script setup docs](https://v3.vuejs.org/api/sfc-script-setup.html#sfc-script-setup) to learn more.
4
+
5
+ ## Recommended IDE Setup
6
+
7
+ - [VS Code](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin).
8
+
9
+ ## Type Support For `.vue` Imports in TS
10
+
11
+ TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin) to make the TypeScript language service aware of `.vue` types.
12
+
13
+ If the standalone TypeScript plugin doesn't feel fast enough to you, Volar has also implemented a [Take Over Mode](https://github.com/johnsoncodehk/volar/discussions/471#discussioncomment-1361669) that is more performant. You can enable it by the following steps:
14
+
15
+ 1. Disable the built-in TypeScript Extension
16
+ 1. Run `Extensions: Show Built-in Extensions` from VSCode's command palette
17
+ 2. Find `TypeScript and JavaScript Language Features`, right click and select `Disable (Workspace)`
18
+ 2. Reload the VSCode window by running `Developer: Reload Window` from the command palette.
@@ -0,0 +1,4 @@
1
+ import { Plugin } from 'vue';
2
+ import EeasReport from './src/orm.vue';
3
+ export declare const EeasReportPlugin: Plugin;
4
+ export { EeasReport };
@@ -0,0 +1,34 @@
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
+ remarks: undefined;
15
+ editable: boolean;
16
+ loading: boolean;
17
+ };
18
+ namespace computed {
19
+ function computeUTCTime(): (time: any, format?: string) => string;
20
+ function computeLat(): (lat: any) => any;
21
+ function computeLng(): (lng: any) => any;
22
+ function computeBlankHtml(): (html: any) => boolean;
23
+ }
24
+ namespace watch {
25
+ export namespace report_1 {
26
+ function handler(nVal: any, oVal: any): void;
27
+ const immediate: boolean;
28
+ }
29
+ export { report_1 as report };
30
+ }
31
+ namespace methods {
32
+ function handleCommit(content: any): void;
33
+ }
34
+ }
@@ -1,4 +1,5 @@
1
1
  import { Plugin } from 'vue';
2
2
  import StoppageReport from './src/index.vue';
3
+ import MergeStoppageReport from './src/mergeStoppage.vue';
3
4
  export declare const StoppageReportPlugin: Plugin;
4
- export { StoppageReport };
5
+ export { StoppageReport, MergeStoppageReport };
@@ -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
+ remarks: undefined;
15
+ editable: boolean;
16
+ loading: boolean;
17
+ };
18
+ namespace computed {
19
+ function computeUTCTime(): (time: any, format?: string) => string;
20
+ function computeLat(): (lat: any) => any;
21
+ function computeLng(): (lng: any) => any;
22
+ function computeRoundPrecision(): (data: any, precision?: number) => any;
23
+ function computeBlankHtml(): (html: any) => boolean;
24
+ }
25
+ namespace watch {
26
+ export namespace report_1 {
27
+ function handler(newV: any): void;
28
+ const immediate: boolean;
29
+ }
30
+ export { report_1 as report };
31
+ }
32
+ namespace methods {
33
+ function handleCommit(content: any): void;
34
+ }
35
+ }