@yqg/simple 1.0.1-beta.1.6 → 1.0.2
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/src/constant/fields.ts
CHANGED
|
@@ -10,11 +10,11 @@ import moment from 'moment';
|
|
|
10
10
|
import type { Def } from '@yqg/type';
|
|
11
11
|
|
|
12
12
|
import DefValue from '../component/def-value.vue';
|
|
13
|
-
import { dateTimeDef } from './common-fields';
|
|
13
|
+
import { dateTimeDef } from './common-fields.ts';
|
|
14
14
|
|
|
15
|
-
import type { CommonObject } from './common-fields';
|
|
15
|
+
import type { CommonObject } from './common-fields.ts';
|
|
16
16
|
|
|
17
|
-
export * from './common-fields';
|
|
17
|
+
export * from './common-fields.ts';
|
|
18
18
|
|
|
19
19
|
export const extendsDefValue = (options: CommonObject): CommonObject => ({
|
|
20
20
|
extends: DefValue,
|
|
@@ -5,15 +5,15 @@
|
|
|
5
5
|
*/
|
|
6
6
|
|
|
7
7
|
// 导出所有工具函数类型
|
|
8
|
-
export * from './tool';
|
|
9
|
-
export * from './keyCodeMap';
|
|
10
|
-
export * from './local-storage';
|
|
11
|
-
export * from './object';
|
|
12
|
-
export * from './enum';
|
|
13
|
-
export * from './format-map';
|
|
14
|
-
export * from './json';
|
|
8
|
+
export * from './tool.ts';
|
|
9
|
+
export * from './keyCodeMap.ts';
|
|
10
|
+
export * from './local-storage.ts';
|
|
11
|
+
export * from './object.ts';
|
|
12
|
+
export * from './enum.ts';
|
|
13
|
+
export * from './format-map.ts';
|
|
14
|
+
export * from './json.ts';
|
|
15
15
|
|
|
16
16
|
// 导出 Storage 类
|
|
17
|
-
export { default as Storage } from './storage';
|
|
18
|
-
export { default as swimLaneStorage } from './swim-lane';
|
|
17
|
+
export { default as Storage } from './storage.ts';
|
|
18
|
+
export { default as swimLaneStorage } from './swim-lane.ts';
|
|
19
19
|
|