@dazhicheng/ui 1.6.27 → 1.6.28
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/api/oss.d.ts +10 -0
- package/dist/api/oss.js +26 -0
- package/dist/components/tt-upload/index.d.ts +38 -23
- package/dist/components/tt-upload/src/TtUpload.vue.d.ts +19 -10
- package/dist/components/tt-upload/src/TtUpload.vue.js +185 -169
- package/dist/components/tt-upload/src/typing.d.ts +33 -2
- package/dist/components/tt-upload/src/typing.js +5 -0
- package/dist/components/types.d.ts +6 -4
- package/dist/hooks/useFormSchemasLink.d.ts +44 -8
- package/dist/hooks/useFormSchemasLink.js +258 -200
- package/dist/hooks/useScreenshotOss.d.ts +5 -3
- package/dist/hooks/useScreenshotOss.js +57 -48
- package/dist/hooks/useSetup.js +16 -13
- package/dist/index.d.ts +1 -0
- package/dist/index.js +102 -98
- package/package.json +1 -1
|
@@ -13,73 +13,82 @@ import "../node_modules/.pnpm/crypto-js@4.2.0/node_modules/crypto-js/enc-utf8.js
|
|
|
13
13
|
import "../node_modules/.pnpm/crypto-js@4.2.0/node_modules/crypto-js/mode-ecb.js";
|
|
14
14
|
import "../node_modules/.pnpm/crypto-js@4.2.0/node_modules/crypto-js/pad-pkcs7.js";
|
|
15
15
|
import "lodash-es";
|
|
16
|
-
import { useElementScreenshot as
|
|
16
|
+
import { useElementScreenshot as b } from "../packages/hooks/src/useElementScreenshot.js";
|
|
17
17
|
import "vue-router";
|
|
18
|
-
import { GlobalConfig as
|
|
19
|
-
|
|
20
|
-
|
|
18
|
+
import { GlobalConfig as m } from "./useSetup.js";
|
|
19
|
+
import { getPostSignatureForObsUploadHuaweiOss as g } from "../api/oss.js";
|
|
20
|
+
function T(t = "png") {
|
|
21
|
+
const e = t === "jpeg" ? "jpg" : "png";
|
|
21
22
|
return `screenshot-${Date.now()}.${e}`;
|
|
22
23
|
}
|
|
23
|
-
function
|
|
24
|
-
return new File([
|
|
24
|
+
function $(t, e) {
|
|
25
|
+
return new File([t], e, { type: t.type || "image/png" });
|
|
25
26
|
}
|
|
26
|
-
function d(
|
|
27
|
-
return new Promise((e,
|
|
27
|
+
function d(t) {
|
|
28
|
+
return new Promise((e, l) => {
|
|
28
29
|
const o = new FileReader();
|
|
29
|
-
o.onload = () => e(o.result), o.onerror = () =>
|
|
30
|
+
o.onload = () => e(o.result), o.onerror = () => l(o.error ?? new Error("Blob 转 DataURL 失败")), o.readAsDataURL(t);
|
|
30
31
|
});
|
|
31
32
|
}
|
|
32
|
-
async function
|
|
33
|
-
const
|
|
34
|
-
|
|
35
|
-
const
|
|
36
|
-
if (!
|
|
37
|
-
throw new Error(`OSS 上传失败: ${
|
|
38
|
-
return
|
|
33
|
+
async function _(t, e, l) {
|
|
34
|
+
const c = (l || e.dir || "notice").replace(/\/+$/, ""), a = c ? `${c}/${Date.now()}_${t.name}` : `${Date.now()}_${t.name}`, r = new FormData();
|
|
35
|
+
r.append("key", a), r.append("policy", e.policy), r.append("x-oss-signature-version", e.version), r.append("x-oss-signature", e.signature), r.append("x-oss-credential", e.x_oss_credential), r.append("x-oss-date", e.x_oss_date), r.append("x-oss-security-token", e.security_token), e.callback && r.append("callback", e.callback), r.append("success_action_status", "200"), r.append("file", t);
|
|
36
|
+
const n = await fetch(e.host, { method: "POST", body: r });
|
|
37
|
+
if (!n.ok && n.status !== 203 && n.status !== 200)
|
|
38
|
+
throw new Error(`OSS 上传失败: ${n.status}`);
|
|
39
|
+
return a;
|
|
39
40
|
}
|
|
40
|
-
function
|
|
41
|
-
const e = r
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
41
|
+
async function h(t, e, l) {
|
|
42
|
+
const c = (l || e.dir || "notice").replace(/\/+$/, ""), a = c ? `${c}/${Date.now()}_${t.name}` : `${Date.now()}_${t.name}`, r = new FormData();
|
|
43
|
+
r.append("key", a), r.append("policy", e.policy), r.append("AccessKeyId", e.accessKeyId), r.append("signature", e.signature), e.security_token && r.append("x-obs-security-token", e.security_token), e.callbackUrl && r.append("callbackUrl", e.callbackUrl), e.callbackBody && r.append("callbackBody", e.callbackBody), e.callbackBodyType && r.append("callbackBodyType", e.callbackBodyType), e.callback && r.append("callback", e.callback), r.append("success_action_status", "200"), r.append("file", t);
|
|
44
|
+
const n = await fetch(e.host, { method: "POST", body: r });
|
|
45
|
+
if (!n.ok && n.status !== 204 && n.status !== 200)
|
|
46
|
+
throw new Error(`OBS 上传失败: ${n.status}`);
|
|
47
|
+
return a;
|
|
45
48
|
}
|
|
46
|
-
async function
|
|
47
|
-
|
|
48
|
-
return { blob: r, file: t, ossKey: c };
|
|
49
|
+
async function O(t, e, l, o) {
|
|
50
|
+
return (o ?? m.ossType ?? "huawei") === "aliyun" ? _(t, e, l) : h(t, e, l);
|
|
49
51
|
}
|
|
50
|
-
function
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
52
|
+
function B(t) {
|
|
53
|
+
return t ?? m.uploadOssApi ?? g;
|
|
54
|
+
}
|
|
55
|
+
async function i(t, e) {
|
|
56
|
+
const l = B(e == null ? void 0 : e.uploadOssApi), o = (e == null ? void 0 : e.format) ?? "png", c = (e == null ? void 0 : e.fileName) ?? T(o), a = $(t, c), r = await l(a), n = await O(a, r, e == null ? void 0 : e.ossDir, e == null ? void 0 : e.ossType);
|
|
57
|
+
return { blob: t, file: a, ossKey: n };
|
|
58
|
+
}
|
|
59
|
+
function J() {
|
|
60
|
+
const t = b();
|
|
61
|
+
async function e(c, a) {
|
|
62
|
+
const r = await t.captureToBlob(c, a);
|
|
63
|
+
return i(r, a);
|
|
55
64
|
}
|
|
56
|
-
async function
|
|
57
|
-
const
|
|
58
|
-
return { ...
|
|
65
|
+
async function l(c, a) {
|
|
66
|
+
const r = await t.captureToBlob(c, a), [n, p] = await Promise.all([d(r), i(r, a)]);
|
|
67
|
+
return { ...p, dataUrl: n };
|
|
59
68
|
}
|
|
60
|
-
async function o(
|
|
61
|
-
const { ossDir:
|
|
69
|
+
async function o(c, a) {
|
|
70
|
+
const { ossDir: r, fileName: n, uploadOssApi: p, output: y, ...f } = a, s = await t.captureComponent(c, {
|
|
62
71
|
...f,
|
|
63
72
|
output: "blob"
|
|
64
|
-
}),
|
|
65
|
-
format:
|
|
66
|
-
quality:
|
|
67
|
-
ossDir:
|
|
68
|
-
fileName:
|
|
69
|
-
uploadOssApi:
|
|
70
|
-
},
|
|
71
|
-
if (
|
|
72
|
-
return
|
|
73
|
-
const
|
|
74
|
-
return { ...
|
|
73
|
+
}), w = {
|
|
74
|
+
format: a.format,
|
|
75
|
+
quality: a.quality,
|
|
76
|
+
ossDir: r,
|
|
77
|
+
fileName: n,
|
|
78
|
+
uploadOssApi: p
|
|
79
|
+
}, u = await i(s, w);
|
|
80
|
+
if (y === "blob")
|
|
81
|
+
return u;
|
|
82
|
+
const k = await d(s);
|
|
83
|
+
return { ...u, dataUrl: k };
|
|
75
84
|
}
|
|
76
85
|
return {
|
|
77
86
|
captureToBlob: e,
|
|
78
|
-
captureToDataUrl:
|
|
87
|
+
captureToDataUrl: l,
|
|
79
88
|
captureComponent: o,
|
|
80
|
-
isCapturing:
|
|
89
|
+
isCapturing: t.isCapturing
|
|
81
90
|
};
|
|
82
91
|
}
|
|
83
92
|
export {
|
|
84
|
-
|
|
93
|
+
J as useScreenshotOss
|
|
85
94
|
};
|
package/dist/hooks/useSetup.js
CHANGED
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
import t from "xe-utils";
|
|
2
|
-
|
|
2
|
+
import { getPostSignatureForObsUploadHuaweiOss as i, getFileUrlOss as s } from "../api/oss.js";
|
|
3
|
+
const a = {
|
|
3
4
|
userId: void 0,
|
|
4
|
-
|
|
5
|
-
|
|
5
|
+
ossType: "huawei",
|
|
6
|
+
uploadOssApi: i,
|
|
7
|
+
uploadOssViewApi: s,
|
|
6
8
|
showMask: !0,
|
|
7
9
|
confirmContent: "确定要关闭吗?",
|
|
8
10
|
table: {
|
|
@@ -10,31 +12,32 @@ const i = {
|
|
|
10
12
|
setColumnsApi: void 0,
|
|
11
13
|
updateColumnsApi: void 0,
|
|
12
14
|
isAreaCheckboxSelection: !1,
|
|
13
|
-
currentPageField: "
|
|
15
|
+
currentPageField: "currentPage",
|
|
14
16
|
pageSizeField: "pageSize",
|
|
15
17
|
totalField: "total",
|
|
16
|
-
dataField: "
|
|
18
|
+
dataField: "records",
|
|
17
19
|
tableRowId: "id",
|
|
18
20
|
emptyText: "暂无数据",
|
|
19
21
|
noSearchText: "请先点击查询",
|
|
20
22
|
keyboardConfig: {
|
|
21
23
|
isClip: !1
|
|
22
24
|
},
|
|
23
|
-
useHttpCache: !
|
|
25
|
+
useHttpCache: !0,
|
|
24
26
|
mouseConfig: {
|
|
25
27
|
selected: !1
|
|
26
28
|
},
|
|
29
|
+
isReloadResetToFirstPage: !1,
|
|
27
30
|
pagerConfig: {
|
|
28
|
-
|
|
29
|
-
|
|
31
|
+
currentPage: 1,
|
|
32
|
+
pageSize: 20,
|
|
33
|
+
pageSizes: [10, 20, 50, 80, 100, 300]
|
|
30
34
|
},
|
|
31
35
|
showSetting: !0,
|
|
32
36
|
showRefresh: !0,
|
|
33
37
|
showExport: !1,
|
|
34
38
|
defaultDisplayFields: [],
|
|
35
|
-
isReloadResetToFirstPage: !0,
|
|
36
39
|
stripe: !0,
|
|
37
|
-
border: "
|
|
40
|
+
border: "none",
|
|
38
41
|
size: "mini",
|
|
39
42
|
columnsKey: ""
|
|
40
43
|
},
|
|
@@ -49,8 +52,8 @@ const i = {
|
|
|
49
52
|
isSelectFirstOption: !1,
|
|
50
53
|
renderType: "table"
|
|
51
54
|
}
|
|
52
|
-
},
|
|
55
|
+
}, r = (e) => t.merge(a, e ?? {});
|
|
53
56
|
export {
|
|
54
|
-
|
|
55
|
-
|
|
57
|
+
a as GlobalConfig,
|
|
58
|
+
r as setup
|
|
56
59
|
};
|
package/dist/index.d.ts
CHANGED
|
@@ -17,6 +17,7 @@ export * from './components/tt-image';
|
|
|
17
17
|
export * from './components/tt-loading';
|
|
18
18
|
export * from './components/tt-table';
|
|
19
19
|
export * from './components/tt-upload';
|
|
20
|
+
export * from './api/oss';
|
|
20
21
|
export * from './components/tt-nav-anchor';
|
|
21
22
|
export * from './components/tt-api-component';
|
|
22
23
|
export * from './components/tt-log';
|
package/dist/index.js
CHANGED
|
@@ -9,16 +9,16 @@ import { TtImage as T } from "./components/tt-image/index.js";
|
|
|
9
9
|
import { RenderDrawer as n } from "./components/tt-drawer/index.js";
|
|
10
10
|
import { RenderModal as c } from "./components/tt-modal/index.js";
|
|
11
11
|
import { TtModal as so } from "./components/tt-modal/index.js";
|
|
12
|
-
import { TtSelect as
|
|
13
|
-
import { TtText as
|
|
14
|
-
import { TtUpload as
|
|
15
|
-
import { TtNavAnchor as
|
|
16
|
-
import { TtApiComponent as
|
|
12
|
+
import { TtSelect as g } from "./components/tt-select/index.js";
|
|
13
|
+
import { TtText as M } from "./components/tt-text/index.js";
|
|
14
|
+
import { TtUpload as b } from "./components/tt-upload/index.js";
|
|
15
|
+
import { TtNavAnchor as w } from "./components/tt-nav-anchor/index.js";
|
|
16
|
+
import { TtApiComponent as O } from "./components/tt-api-component/index.js";
|
|
17
17
|
import * as e from "./directives/index.js";
|
|
18
|
-
import { setup as
|
|
19
|
-
import { TtLog as
|
|
20
|
-
import { TtPanelSelect as
|
|
21
|
-
import { TtRadioGroup as
|
|
18
|
+
import { setup as P } from "./hooks/useSetup.js";
|
|
19
|
+
import { TtLog as R } from "./components/tt-log/index.js";
|
|
20
|
+
import { TtPanelSelect as S } from "./components/tt-panel-select/index.js";
|
|
21
|
+
import { TtRadioGroup as h } from "./components/tt-radio-group/index.js";
|
|
22
22
|
import { setXHR as lo } from "./utils/xhr.js";
|
|
23
23
|
/* empty css */
|
|
24
24
|
/* empty css */
|
|
@@ -27,62 +27,63 @@ import { setXHR as lo } from "./utils/xhr.js";
|
|
|
27
27
|
/* empty css */
|
|
28
28
|
import { default as xo } from "./components/tt-area/TtArea.vue.js";
|
|
29
29
|
import { useModalForm as no } from "./components/tt-modal-form/useModalForm.js";
|
|
30
|
-
import { TtLoading as
|
|
31
|
-
import { TtTable as
|
|
30
|
+
import { TtLoading as go } from "./components/tt-loading/index.js";
|
|
31
|
+
import { TtTable as bo, TtTableAction as wo, TtTableButton as Oo } from "./components/tt-table/index.js";
|
|
32
|
+
import { getFileUrlOss as Ro, getPostSignatureForObsUploadHuaweiOss as So, getPostSignatureForOssUploadOss as ho } from "./api/oss.js";
|
|
32
33
|
import { useFormSchemasLink as Ao } from "./hooks/useFormSchemasLink.js";
|
|
33
|
-
import { useDataPermissionOptions as
|
|
34
|
-
import { useBasicDataOptions as
|
|
35
|
-
import { usePanelSelectSchemas as
|
|
36
|
-
import { CODES as
|
|
37
|
-
import { useFormat as
|
|
38
|
-
import { useLoading as
|
|
39
|
-
import { useScreenshotOss as
|
|
40
|
-
import { createUppercaseInputProps as
|
|
41
|
-
import { setupDrawer as
|
|
42
|
-
import { useShowDrawer as
|
|
43
|
-
import { setupModal as
|
|
44
|
-
import { useShowModal as
|
|
45
|
-
import { default as
|
|
46
|
-
import { default as
|
|
47
|
-
import { showTtDrawer as
|
|
48
|
-
import { useDrawerResizable as
|
|
49
|
-
import { showTtModal as
|
|
50
|
-
import { closeAllTtModal as
|
|
51
|
-
import { default as
|
|
34
|
+
import { useDataPermissionOptions as Do } from "./hooks/useDataPermissionOptions.js";
|
|
35
|
+
import { useBasicDataOptions as Uo } from "./hooks/useBasicDataOptions.js";
|
|
36
|
+
import { usePanelSelectSchemas as Eo } from "./hooks/usePanelSelectSchemas.js";
|
|
37
|
+
import { CODES as vo, GROUP_BY as zo } from "./hooks/basicDataCodes.js";
|
|
38
|
+
import { useFormat as Go } from "./hooks/useFormat.js";
|
|
39
|
+
import { useLoading as Ho } from "./hooks/useLoading.js";
|
|
40
|
+
import { useScreenshotOss as _o } from "./hooks/useScreenshotOss.js";
|
|
41
|
+
import { createUppercaseInputProps as jo, toUppercaseInputValue as yo, uppercaseInputProps as Xo } from "./utils/uppercaseInput.js";
|
|
42
|
+
import { setupDrawer as F } from "./components/tt-drawer/src/index.js";
|
|
43
|
+
import { useShowDrawer as Zo } from "./components/tt-drawer/src/index.js";
|
|
44
|
+
import { setupModal as A } from "./components/tt-modal/src/index.js";
|
|
45
|
+
import { useShowModal as Jo } from "./components/tt-modal/src/index.js";
|
|
46
|
+
import { default as Qo } from "./directives/disabled-tip/index.js";
|
|
47
|
+
import { default as or } from "./directives/auto-tip/index.js";
|
|
48
|
+
import { showTtDrawer as er, useDrawerRender as tr } from "./components/tt-drawer/src/hooks/useDrawerRender.js";
|
|
49
|
+
import { useDrawerResizable as pr } from "./components/tt-drawer/src/hooks/useResizable.js";
|
|
50
|
+
import { showTtModal as fr, useModalRender as sr } from "./components/tt-modal/src/hooks/useModalRender.js";
|
|
51
|
+
import { closeAllTtModal as ir, closeTtModal as lr, openTtModal as ur, ttModal as xr } from "./components/tt-modal/src/utils/modal-service.js";
|
|
52
|
+
import { default as nr } from "./directives/dialog-resize/index.js";
|
|
52
53
|
import * as ro from "zod";
|
|
53
|
-
import { useGroupForm as
|
|
54
|
-
import { COMPONENT_MAP as
|
|
55
|
-
import { useForm as
|
|
56
|
-
import { TtImageViewer as
|
|
54
|
+
import { useGroupForm as gr } from "./components/tt-form/src/group-form/useGroupForm.js";
|
|
55
|
+
import { COMPONENT_MAP as br } from "./components/tt-form/src/config.js";
|
|
56
|
+
import { useForm as Or } from "./components/tt-form/src/useForm.js";
|
|
57
|
+
import { TtImageViewer as Rr } from "./components/tt-image/src/components/ImageViewer.js";
|
|
57
58
|
import { vTtLoading as hr } from "./components/tt-loading/src/directive.js";
|
|
58
59
|
import { Loading as Ar } from "./components/tt-loading/src/service.js";
|
|
59
|
-
import { useTableContext as
|
|
60
|
-
import { useTableFormRender as
|
|
61
|
-
import { ttUploadProps as
|
|
62
|
-
const
|
|
60
|
+
import { useTableContext as Dr, useTableFormContext as Ir } from "./components/tt-table/src/hooks/useTableContext.js";
|
|
61
|
+
import { useTableFormRender as Lr, useTableRender as Er } from "./components/tt-table/src/hooks/useTableRender.js";
|
|
62
|
+
import { ttUploadProps as vr } from "./components/tt-upload/src/typing.js";
|
|
63
|
+
const C = [
|
|
63
64
|
p,
|
|
64
65
|
n,
|
|
65
66
|
c,
|
|
66
67
|
l,
|
|
67
|
-
|
|
68
|
+
g,
|
|
68
69
|
f,
|
|
69
|
-
|
|
70
|
+
M,
|
|
70
71
|
a,
|
|
71
72
|
i,
|
|
72
73
|
T,
|
|
74
|
+
b,
|
|
73
75
|
w,
|
|
74
|
-
R,
|
|
75
76
|
u,
|
|
76
77
|
x,
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
],
|
|
82
|
-
|
|
78
|
+
O,
|
|
79
|
+
R,
|
|
80
|
+
S,
|
|
81
|
+
h
|
|
82
|
+
], D = (o) => {
|
|
83
|
+
C.forEach((r) => o.use(r)), Object.keys(e).forEach((r) => {
|
|
83
84
|
const t = e[r], m = r.replace(/([A-Z])/g, "-$1").toLowerCase();
|
|
84
85
|
o.directive(m, t);
|
|
85
|
-
}),
|
|
86
|
+
}), F(o), A(o);
|
|
86
87
|
};
|
|
87
88
|
function eo(o) {
|
|
88
89
|
s(o == null ? void 0 : o.components), d(o == null ? void 0 : o.defineRules, o == null ? void 0 : o.modelPropNameMap);
|
|
@@ -92,83 +93,86 @@ const to = {
|
|
|
92
93
|
* 安装组件
|
|
93
94
|
* @param app Vue 应用实例
|
|
94
95
|
*/
|
|
95
|
-
install:
|
|
96
|
+
install: D,
|
|
96
97
|
/**
|
|
97
98
|
* 全局参数设置
|
|
98
99
|
* @param options 全局参数
|
|
99
100
|
* @returns 合并后的全局参数
|
|
100
101
|
*/
|
|
101
|
-
setup:
|
|
102
|
+
setup: P
|
|
102
103
|
};
|
|
103
104
|
export {
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
105
|
+
vo as CODES,
|
|
106
|
+
br as COMPONENT_MAP,
|
|
107
|
+
zo as GROUP_BY,
|
|
107
108
|
Ar as Loading,
|
|
108
109
|
n as RenderDrawer,
|
|
109
110
|
c as RenderModal,
|
|
110
111
|
ao as TtAddButton,
|
|
111
112
|
u as TtAddIcon,
|
|
112
|
-
|
|
113
|
+
O as TtApiComponent,
|
|
113
114
|
xo as TtArea,
|
|
114
115
|
p as TtButton,
|
|
115
116
|
a as TtCheckbox,
|
|
116
117
|
f as TtEmpty,
|
|
117
118
|
l as TtIcon,
|
|
118
119
|
T as TtImage,
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
120
|
+
Rr as TtImageViewer,
|
|
121
|
+
go as TtLoading,
|
|
122
|
+
R as TtLog,
|
|
122
123
|
so as TtModal,
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
124
|
+
w as TtNavAnchor,
|
|
125
|
+
S as TtPanelSelect,
|
|
126
|
+
h as TtRadioGroup,
|
|
127
|
+
g as TtSelect,
|
|
127
128
|
x as TtSubIcon,
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
129
|
+
bo as TtTable,
|
|
130
|
+
wo as TtTableAction,
|
|
131
|
+
Oo as TtTableButton,
|
|
132
|
+
M as TtText,
|
|
133
|
+
b as TtUpload,
|
|
133
134
|
s as addComponent,
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
135
|
+
or as autoTip,
|
|
136
|
+
ir as closeAllTtModal,
|
|
137
|
+
lr as closeTtModal,
|
|
138
|
+
jo as createUppercaseInputProps,
|
|
138
139
|
to as default,
|
|
139
|
-
|
|
140
|
-
|
|
140
|
+
nr as dialogResize,
|
|
141
|
+
Qo as disabledTip,
|
|
141
142
|
eo as formAdapter,
|
|
142
|
-
|
|
143
|
+
Ro as getFileUrlOss,
|
|
144
|
+
So as getPostSignatureForObsUploadHuaweiOss,
|
|
145
|
+
ho as getPostSignatureForOssUploadOss,
|
|
146
|
+
ur as openTtModal,
|
|
143
147
|
d as setConfig,
|
|
144
148
|
lo as setXHR,
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
149
|
+
F as setupDrawer,
|
|
150
|
+
A as setupModal,
|
|
151
|
+
er as showTtDrawer,
|
|
152
|
+
fr as showTtModal,
|
|
153
|
+
yo as toUppercaseInputValue,
|
|
154
|
+
xr as ttModal,
|
|
155
|
+
vr as ttUploadProps,
|
|
156
|
+
Xo as uppercaseInputProps,
|
|
157
|
+
Uo as useBasicDataOptions,
|
|
158
|
+
Do as useDataPermissionOptions,
|
|
159
|
+
tr as useDrawerRender,
|
|
160
|
+
pr as useDrawerResizable,
|
|
161
|
+
Or as useForm,
|
|
158
162
|
Ao as useFormSchemasLink,
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
163
|
+
Go as useFormat,
|
|
164
|
+
gr as useGroupForm,
|
|
165
|
+
Ho as useLoading,
|
|
162
166
|
no as useModalForm,
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
167
|
+
sr as useModalRender,
|
|
168
|
+
Eo as usePanelSelectSchemas,
|
|
169
|
+
_o as useScreenshotOss,
|
|
170
|
+
Zo as useShowDrawer,
|
|
171
|
+
Jo as useShowModal,
|
|
172
|
+
Dr as useTableContext,
|
|
173
|
+
Ir as useTableFormContext,
|
|
174
|
+
Lr as useTableFormRender,
|
|
175
|
+
Er as useTableRender,
|
|
172
176
|
hr as vTtLoading,
|
|
173
177
|
ro as z
|
|
174
178
|
};
|