@byteluck-fe/runtime-engine 2.0.21 → 2.0.24
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/runtime-engine.js +2076 -2013
- package/dist/src/constant/controls/table-import.d.ts +1 -1
- package/dist/src/constant/page/address.d.ts +5 -5
- package/dist/src/entry_desktop/controls/rok-grid-table/components/interface/constant.d.ts +1 -1
- package/dist/src/entry_desktop/controls/rok-grid-table/hooks/useNonePage.d.ts +2 -2
- package/dist/src/entry_desktop/controls/rok-list-view-title/rule-filter/sok-advanced-filter/utils/auth.d.ts +1 -1
- package/dist/src/entry_desktop/views/list-application/hooks/useListApplication.d.ts +2 -2
- package/dist/src/hooks/atomic/useDataPagination.d.ts +1 -1
- package/dist/src/hooks/controls/ElectronicSignature/useElectronicSignature.d.ts +5 -5
- package/dist/src/hooks/controls/dataView/const.d.ts +5 -5
- package/dist/src/utils/controls/dateUtils.d.ts +6 -6
- package/dist/src/utils/tools/dataFormat.d.ts +1 -1
- package/dist/src/utils/tools/globalModules.d.ts +2 -1
- package/package.json +1 -1
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
export declare const AdressTypeName: () => Readonly<{
|
|
2
|
-
country:
|
|
3
|
-
province:
|
|
4
|
-
abroadProvince:
|
|
5
|
-
city:
|
|
6
|
-
district:
|
|
2
|
+
country: string;
|
|
3
|
+
province: string;
|
|
4
|
+
abroadProvince: string;
|
|
5
|
+
city: string;
|
|
6
|
+
district: string;
|
|
7
7
|
}>;
|
|
8
8
|
export declare const SubAdressType: Readonly<{
|
|
9
9
|
country: string;
|
|
@@ -19,8 +19,8 @@ export declare const useNonePage: (params: {
|
|
|
19
19
|
isNoNext: ComputedRef<boolean>;
|
|
20
20
|
pageConfig: ComputedRef<(typing.FormDataPageRequest$List$PageListDataQuery$$_1 & typing.NoCountSizeDto) | undefined>;
|
|
21
21
|
cantPrev: ComputedRef<boolean>;
|
|
22
|
-
selectedText: ComputedRef<
|
|
23
|
-
checkSelectedText: ComputedRef<
|
|
22
|
+
selectedText: ComputedRef<string>;
|
|
23
|
+
checkSelectedText: ComputedRef<string>;
|
|
24
24
|
gotoPageOfNoCount: (type: string) => void;
|
|
25
25
|
cantNext: ComputedRef<boolean>;
|
|
26
26
|
pageInputGetPopupContainer: (triggerNode: any) => any;
|
|
@@ -4,6 +4,6 @@ declare let showVirtualOrg: boolean;
|
|
|
4
4
|
declare let showExternalOrg: boolean;
|
|
5
5
|
declare let currentOrgType: OrganizeType;
|
|
6
6
|
declare let currentDepartmentOrgType: DepartmentType;
|
|
7
|
-
declare function newOrgText():
|
|
7
|
+
declare function newOrgText(): string;
|
|
8
8
|
declare function isOpenNewOrg(): any;
|
|
9
9
|
export { showVirtualOrg, showExternalOrg, currentOrgType, currentDepartmentOrgType, newOrgText, isOpenNewOrg, };
|
|
@@ -11,8 +11,8 @@ export declare function useListApplication(store: any, route: any, router: any,
|
|
|
11
11
|
isOpen: Ref<boolean>;
|
|
12
12
|
eventVal: Ref<{}>;
|
|
13
13
|
menusData: ComputedRef<{
|
|
14
|
-
label:
|
|
15
|
-
tip:
|
|
14
|
+
label: string;
|
|
15
|
+
tip: string;
|
|
16
16
|
click: () => void;
|
|
17
17
|
}[]>;
|
|
18
18
|
cardBarWidth: Ref<string>;
|
|
@@ -13,5 +13,5 @@ export default function useDataPagination<T = any>(list: Ref<T[]> | ComputedRef<
|
|
|
13
13
|
serverPagination: ComputedRef<boolean>;
|
|
14
14
|
spinning: Ref<boolean>;
|
|
15
15
|
setSpinning: (flag: boolean) => void;
|
|
16
|
-
showTotal: (total: number) =>
|
|
16
|
+
showTotal: (total: number) => string;
|
|
17
17
|
};
|
|
@@ -5,8 +5,8 @@ import { PropsInstanceType } from '../../../constant';
|
|
|
5
5
|
export declare const useElectronicSignature: (props: PropsInstanceType<CONTROL_TYPE.ELECTRONIC_SIGNATURE>, errorToast: (message: string) => void) => {
|
|
6
6
|
queryStatus: () => void;
|
|
7
7
|
signStatus: Ref<{
|
|
8
|
-
name:
|
|
9
|
-
tips:
|
|
8
|
+
name: string;
|
|
9
|
+
tips: string;
|
|
10
10
|
type: string;
|
|
11
11
|
status: string;
|
|
12
12
|
}>;
|
|
@@ -15,9 +15,9 @@ export declare const useElectronicSignature: (props: PropsInstanceType<CONTROL_T
|
|
|
15
15
|
staHover: () => Promise<void>;
|
|
16
16
|
signMemberLists: Ref<any>;
|
|
17
17
|
memberSignSta: {
|
|
18
|
-
Pending:
|
|
19
|
-
Completed:
|
|
20
|
-
Rejected:
|
|
18
|
+
Pending: string;
|
|
19
|
+
Completed: string;
|
|
20
|
+
Rejected: string;
|
|
21
21
|
};
|
|
22
22
|
loading: Ref<boolean>;
|
|
23
23
|
mobileShowPopup: Ref<boolean>;
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
export declare function messageMap(): {
|
|
2
2
|
form: {
|
|
3
|
-
saveAs:
|
|
4
|
-
save:
|
|
3
|
+
saveAs: string;
|
|
4
|
+
save: string;
|
|
5
5
|
};
|
|
6
6
|
process: {
|
|
7
|
-
saveAs:
|
|
8
|
-
save:
|
|
7
|
+
saveAs: string;
|
|
8
|
+
save: string;
|
|
9
9
|
};
|
|
10
10
|
opertaion: {
|
|
11
|
-
button:
|
|
11
|
+
button: string;
|
|
12
12
|
};
|
|
13
13
|
};
|
|
@@ -1,37 +1,37 @@
|
|
|
1
1
|
export declare const dataRangeSettingList: () => ({
|
|
2
|
-
label:
|
|
2
|
+
label: string;
|
|
3
3
|
value: string;
|
|
4
4
|
col: number;
|
|
5
5
|
time: number[];
|
|
6
6
|
exclude: string[];
|
|
7
7
|
} | {
|
|
8
|
-
label:
|
|
8
|
+
label: string;
|
|
9
9
|
value: string;
|
|
10
10
|
col: number;
|
|
11
11
|
time: number[];
|
|
12
12
|
exclude?: undefined;
|
|
13
13
|
})[];
|
|
14
14
|
export declare const datePickerSettingList: () => ({
|
|
15
|
-
label:
|
|
15
|
+
label: string;
|
|
16
16
|
value: string;
|
|
17
17
|
col: number;
|
|
18
18
|
time: number;
|
|
19
19
|
exclude: string[];
|
|
20
20
|
} | {
|
|
21
|
-
label:
|
|
21
|
+
label: string;
|
|
22
22
|
value: string;
|
|
23
23
|
col: number;
|
|
24
24
|
time: number;
|
|
25
25
|
exclude?: undefined;
|
|
26
26
|
})[];
|
|
27
27
|
export declare const searchDateRangeSettingList: () => ({
|
|
28
|
-
label:
|
|
28
|
+
label: string;
|
|
29
29
|
value: string;
|
|
30
30
|
col: number;
|
|
31
31
|
time: number[];
|
|
32
32
|
exclude: string[];
|
|
33
33
|
} | {
|
|
34
|
-
label:
|
|
34
|
+
label: string;
|
|
35
35
|
value: string;
|
|
36
36
|
col: number;
|
|
37
37
|
time: number[];
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare function formatDecimal(decimal: any, micrometer: boolean, precision: number):
|
|
1
|
+
export declare function formatDecimal(decimal: any, micrometer: boolean, precision: number): string;
|
|
@@ -7,6 +7,7 @@ import * as ModelDrivenEngine from '@byteluck-fe/model-driven-engine';
|
|
|
7
7
|
import * as GlobalShared from '@byteluck-fe/global-shared';
|
|
8
8
|
import * as CustomControlSdkMain from '@byteluck-fe/custom-control-sdk/main';
|
|
9
9
|
import * as CustomControlSdkMainRuntime from '@byteluck-fe/custom-control-sdk/runtime';
|
|
10
|
+
import * as i18n from '@byteluck-fe/locale-message';
|
|
10
11
|
import * as vue from 'vue';
|
|
11
12
|
import * as vant from 'vant';
|
|
12
13
|
import * as Antd from 'ant-design-vue';
|
|
@@ -24,7 +25,7 @@ export declare function globalModules(isPc: boolean): {
|
|
|
24
25
|
'@byteluck-fe/custom-control-sdk/runtime': typeof CustomControlSdkMainRuntime;
|
|
25
26
|
'@byteluck-fe/global-shared': typeof GlobalShared;
|
|
26
27
|
'@byteluck/global-shared': typeof GlobalShared;
|
|
27
|
-
'@byteluck-fe/locale-message':
|
|
28
|
+
'@byteluck-fe/locale-message': typeof i18n;
|
|
28
29
|
} & ({
|
|
29
30
|
'ant-design-vue': typeof Antd;
|
|
30
31
|
vant: {};
|