@dazhicheng/ui 1.6.27 → 1.6.29

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.
@@ -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 y } from "../packages/hooks/src/useElementScreenshot.js";
16
+ import { useElementScreenshot as b } from "../packages/hooks/src/useElementScreenshot.js";
17
17
  import "vue-router";
18
- import { GlobalConfig as g } from "./useSetup.js";
19
- function O(r = "png") {
20
- const e = r === "jpeg" ? "jpg" : "png";
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 h(r, e) {
24
- return new File([r], e, { type: r.type || "image/png" });
24
+ function $(t, e) {
25
+ return new File([t], e, { type: t.type || "image/png" });
25
26
  }
26
- function d(r) {
27
- return new Promise((e, s) => {
27
+ function d(t) {
28
+ return new Promise((e, l) => {
28
29
  const o = new FileReader();
29
- o.onload = () => e(o.result), o.onerror = () => s(o.error ?? new Error("Blob 转 DataURL 失败")), o.readAsDataURL(r);
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 x(r, e, s) {
33
- const n = `${s || e.dir || "notice"}/${Date.now()}_${r.name}`, t = new FormData();
34
- t.append("key", n), t.append("policy", e.policy), t.append("x-oss-signature-version", e.version), t.append("x-oss-signature", e.signature), t.append("x-oss-credential", e.x_oss_credential), t.append("x-oss-date", e.x_oss_date), t.append("x-oss-security-token", e.security_token), e.callback && t.append("callback", e.callback), t.append("success_action_status", "200"), t.append("file", r);
35
- const a = await fetch(e.host, { method: "POST", body: t });
36
- if (!a.ok && a.status !== 203)
37
- throw new Error(`OSS 上传失败: ${a.status}`);
38
- return n;
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 k(r) {
41
- const e = r ?? g.uploadOssApi;
42
- if (!e)
43
- throw new Error("未配置 uploadOssApi,请先通过 setup({ uploadOssApi }) 或在 options 中传入 uploadOssApi");
44
- return e;
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 p(r, e) {
47
- const s = k(e == null ? void 0 : e.uploadOssApi), o = (e == null ? void 0 : e.format) ?? "png", n = (e == null ? void 0 : e.fileName) ?? O(o), t = h(r, n), a = await s(t), c = await x(t, a, e == null ? void 0 : e.ossDir);
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 G() {
51
- const r = y();
52
- async function e(n, t) {
53
- const a = await r.captureToBlob(n, t);
54
- return p(a, t);
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 s(n, t) {
57
- const a = await r.captureToBlob(n, t), [c, i] = await Promise.all([d(a), p(a, t)]);
58
- return { ...i, dataUrl: c };
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(n, t) {
61
- const { ossDir: a, fileName: c, uploadOssApi: i, output: m, ...f } = t, u = await r.captureComponent(n, {
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
- }), b = {
65
- format: t.format,
66
- quality: t.quality,
67
- ossDir: a,
68
- fileName: c,
69
- uploadOssApi: i
70
- }, l = await p(u, b);
71
- if (m === "blob")
72
- return l;
73
- const w = await d(u);
74
- return { ...l, dataUrl: w };
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: s,
87
+ captureToDataUrl: l,
79
88
  captureComponent: o,
80
- isCapturing: r.isCapturing
89
+ isCapturing: t.isCapturing
81
90
  };
82
91
  }
83
92
  export {
84
- G as useScreenshotOss
93
+ J as useScreenshotOss
85
94
  };
@@ -1,8 +1,10 @@
1
1
  import t from "xe-utils";
2
- const i = {
2
+ import { getPostSignatureForObsUploadHuaweiOss as i, getFileUrlOss as s } from "../api/oss.js";
3
+ const a = {
3
4
  userId: void 0,
4
- uploadOssApi: void 0,
5
- uploadOssViewApi: void 0,
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: "pageIndex",
15
+ currentPageField: "currentPage",
14
16
  pageSizeField: "pageSize",
15
17
  totalField: "total",
16
- dataField: "list",
18
+ dataField: "records",
17
19
  tableRowId: "id",
18
20
  emptyText: "暂无数据",
19
21
  noSearchText: "请先点击查询",
20
22
  keyboardConfig: {
21
23
  isClip: !1
22
24
  },
23
- useHttpCache: !1,
25
+ useHttpCache: !0,
24
26
  mouseConfig: {
25
27
  selected: !1
26
28
  },
29
+ isReloadResetToFirstPage: !1,
27
30
  pagerConfig: {
28
- pageSize: 300,
29
- pageSizes: [300, 500, 1e3, 2e3]
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: "outer",
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
- }, s = (e) => t.merge(i, e ?? {});
55
+ }, r = (e) => t.merge(a, e ?? {});
53
56
  export {
54
- i as GlobalConfig,
55
- s as setup
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 M } from "./components/tt-select/index.js";
13
- import { TtText as b } from "./components/tt-text/index.js";
14
- import { TtUpload as w } from "./components/tt-upload/index.js";
15
- import { TtNavAnchor as R } from "./components/tt-nav-anchor/index.js";
16
- import { TtApiComponent as h } from "./components/tt-api-component/index.js";
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 g } from "./hooks/useSetup.js";
19
- import { TtLog as A } from "./components/tt-log/index.js";
20
- import { TtPanelSelect as P } from "./components/tt-panel-select/index.js";
21
- import { TtRadioGroup as S } from "./components/tt-radio-group/index.js";
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 Mo } from "./components/tt-loading/index.js";
31
- import { TtTable as wo, TtTableAction as Ro, TtTableButton as ho } from "./components/tt-table/index.js";
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 So } from "./hooks/useDataPermissionOptions.js";
34
- import { useBasicDataOptions as Do } from "./hooks/useBasicDataOptions.js";
35
- import { usePanelSelectSchemas as Fo } from "./hooks/usePanelSelectSchemas.js";
36
- import { CODES as Lo, GROUP_BY as Eo } from "./hooks/basicDataCodes.js";
37
- import { useFormat as Uo } from "./hooks/useFormat.js";
38
- import { useLoading as zo } from "./hooks/useLoading.js";
39
- import { useScreenshotOss as Go } from "./hooks/useScreenshotOss.js";
40
- import { createUppercaseInputProps as Vo, toUppercaseInputValue as _o, uppercaseInputProps as $o } from "./utils/uppercaseInput.js";
41
- import { setupDrawer as C } from "./components/tt-drawer/src/index.js";
42
- import { useShowDrawer as yo } from "./components/tt-drawer/src/index.js";
43
- import { setupModal as D } from "./components/tt-modal/src/index.js";
44
- import { useShowModal as Xo } from "./components/tt-modal/src/index.js";
45
- import { default as Zo } from "./directives/disabled-tip/index.js";
46
- import { default as Jo } from "./directives/auto-tip/index.js";
47
- import { showTtDrawer as Qo, useDrawerRender as Wo } from "./components/tt-drawer/src/hooks/useDrawerRender.js";
48
- import { useDrawerResizable as rr } from "./components/tt-drawer/src/hooks/useResizable.js";
49
- import { showTtModal as tr, useModalRender as mr } from "./components/tt-modal/src/hooks/useModalRender.js";
50
- import { closeAllTtModal as ar, closeTtModal as fr, openTtModal as sr, ttModal as dr } from "./components/tt-modal/src/utils/modal-service.js";
51
- import { default as lr } from "./directives/dialog-resize/index.js";
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 xr } from "./components/tt-form/src/group-form/useGroupForm.js";
54
- import { COMPONENT_MAP as nr } from "./components/tt-form/src/config.js";
55
- import { useForm as Mr } from "./components/tt-form/src/useForm.js";
56
- import { TtImageViewer as wr } from "./components/tt-image/src/components/ImageViewer.js";
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 Sr, useTableFormContext as Cr } from "./components/tt-table/src/hooks/useTableContext.js";
60
- import { useTableFormRender as Ir, useTableRender as Fr } from "./components/tt-table/src/hooks/useTableRender.js";
61
- import { ttUploadProps as Lr } from "./components/tt-upload/src/typing.js";
62
- const I = [
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
- M,
68
+ g,
68
69
  f,
69
- b,
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
- h,
78
- A,
79
- P,
80
- S
81
- ], F = (o) => {
82
- I.forEach((r) => o.use(r)), Object.keys(e).forEach((r) => {
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
- }), C(o), D(o);
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: F,
96
+ install: D,
96
97
  /**
97
98
  * 全局参数设置
98
99
  * @param options 全局参数
99
100
  * @returns 合并后的全局参数
100
101
  */
101
- setup: g
102
+ setup: P
102
103
  };
103
104
  export {
104
- Lo as CODES,
105
- nr as COMPONENT_MAP,
106
- Eo as GROUP_BY,
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
- h as TtApiComponent,
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
- wr as TtImageViewer,
120
- Mo as TtLoading,
121
- A as TtLog,
120
+ Rr as TtImageViewer,
121
+ go as TtLoading,
122
+ R as TtLog,
122
123
  so as TtModal,
123
- R as TtNavAnchor,
124
- P as TtPanelSelect,
125
- S as TtRadioGroup,
126
- M as TtSelect,
124
+ w as TtNavAnchor,
125
+ S as TtPanelSelect,
126
+ h as TtRadioGroup,
127
+ g as TtSelect,
127
128
  x as TtSubIcon,
128
- wo as TtTable,
129
- Ro as TtTableAction,
130
- ho as TtTableButton,
131
- b as TtText,
132
- w as TtUpload,
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
- Jo as autoTip,
135
- ar as closeAllTtModal,
136
- fr as closeTtModal,
137
- Vo as createUppercaseInputProps,
135
+ or as autoTip,
136
+ ir as closeAllTtModal,
137
+ lr as closeTtModal,
138
+ jo as createUppercaseInputProps,
138
139
  to as default,
139
- lr as dialogResize,
140
- Zo as disabledTip,
140
+ nr as dialogResize,
141
+ Qo as disabledTip,
141
142
  eo as formAdapter,
142
- sr as openTtModal,
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
- C as setupDrawer,
146
- D as setupModal,
147
- Qo as showTtDrawer,
148
- tr as showTtModal,
149
- _o as toUppercaseInputValue,
150
- dr as ttModal,
151
- Lr as ttUploadProps,
152
- $o as uppercaseInputProps,
153
- Do as useBasicDataOptions,
154
- So as useDataPermissionOptions,
155
- Wo as useDrawerRender,
156
- rr as useDrawerResizable,
157
- Mr as useForm,
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
- Uo as useFormat,
160
- xr as useGroupForm,
161
- zo as useLoading,
163
+ Go as useFormat,
164
+ gr as useGroupForm,
165
+ Ho as useLoading,
162
166
  no as useModalForm,
163
- mr as useModalRender,
164
- Fo as usePanelSelectSchemas,
165
- Go as useScreenshotOss,
166
- yo as useShowDrawer,
167
- Xo as useShowModal,
168
- Sr as useTableContext,
169
- Cr as useTableFormContext,
170
- Ir as useTableFormRender,
171
- Fr as useTableRender,
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
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dazhicheng/ui",
3
- "version": "1.6.27",
3
+ "version": "1.6.29",
4
4
  "description": "",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.js",