@aplus-frontend/ui 0.5.28 → 0.5.30

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.
Files changed (69) hide show
  1. package/es/index.mjs +86 -82
  2. package/es/src/ap-field/interface.d.ts +3 -0
  3. package/es/src/ap-grid/editable/form-item.vue.mjs +20 -19
  4. package/es/src/ap-grid/editable/index.vue.mjs +23 -22
  5. package/es/src/ap-grid/index.vue.mjs +149 -138
  6. package/es/src/ap-grid/interface.d.ts +9 -0
  7. package/es/src/ap-grid/utils/col.mjs +92 -81
  8. package/es/src/ap-grid/utils/table.mjs +2 -2
  9. package/es/src/ap-table/hooks/use-table-paging-ng.mjs +52 -52
  10. package/es/src/business/ap-product-info/ApProductInfo.d.ts +22 -25
  11. package/es/src/business/ap-product-info/ApProductInfo.mjs +59 -0
  12. package/es/src/business/ap-product-info/constans.d.ts +11 -14
  13. package/es/src/business/ap-product-info/constans.mjs +21 -0
  14. package/es/src/business/ap-product-info/index.d.ts +86 -0
  15. package/es/src/business/ap-product-info/index.mjs +7 -0
  16. package/es/src/business/ap-product-info/interface.d.ts +9 -7
  17. package/es/src/business/ap-product-info/interface.mjs +1 -0
  18. package/es/src/business/ap-product-info/style/css.d.ts +0 -0
  19. package/es/src/business/ap-product-info/style/css.js +1 -0
  20. package/es/src/business/ap-product-info/style/index.d.ts +0 -0
  21. package/es/src/business/ap-product-info/style/index.js +1 -0
  22. package/es/src/business/hooks/index.d.ts +1 -0
  23. package/es/src/business/hooks/index.mjs +6 -4
  24. package/es/src/business/hooks/useGridRefresh.d.ts +17 -0
  25. package/es/src/business/hooks/useGridRefresh.mjs +17 -0
  26. package/es/src/business/index.d.ts +1 -0
  27. package/es/src/business/index.mjs +21 -19
  28. package/es/src/components.d.ts +1 -0
  29. package/es/src/full-screen/index.vue.mjs +17 -16
  30. package/es/src/full-screen/interface.d.ts +2 -1
  31. package/es/src/index.mjs +75 -71
  32. package/es/src/path-map.mjs +1 -0
  33. package/lib/index.js +1 -1
  34. package/lib/src/ap-field/interface.d.ts +3 -0
  35. package/lib/src/ap-grid/editable/form-item.vue.js +1 -1
  36. package/lib/src/ap-grid/editable/index.vue.js +1 -1
  37. package/lib/src/ap-grid/index.vue.js +1 -1
  38. package/lib/src/ap-grid/interface.d.ts +9 -0
  39. package/lib/src/ap-grid/utils/col.js +1 -1
  40. package/lib/src/ap-grid/utils/table.js +1 -1
  41. package/lib/src/ap-table/hooks/use-table-paging-ng.js +1 -1
  42. package/lib/src/business/ap-product-info/ApProductInfo.d.ts +22 -25
  43. package/lib/src/business/ap-product-info/ApProductInfo.js +1 -0
  44. package/lib/src/business/ap-product-info/constans.d.ts +11 -14
  45. package/lib/src/business/ap-product-info/constans.js +1 -0
  46. package/lib/src/business/ap-product-info/index.d.ts +86 -0
  47. package/lib/src/business/ap-product-info/index.js +1 -0
  48. package/lib/src/business/ap-product-info/interface.d.ts +9 -7
  49. package/lib/src/business/ap-product-info/interface.js +1 -0
  50. package/lib/src/business/ap-product-info/style/css.cjs +1 -0
  51. package/lib/src/business/ap-product-info/style/css.d.ts +0 -0
  52. package/lib/src/business/ap-product-info/style/index.cjs +1 -0
  53. package/lib/src/business/ap-product-info/style/index.d.ts +0 -0
  54. package/lib/src/business/hooks/index.d.ts +1 -0
  55. package/lib/src/business/hooks/index.js +1 -1
  56. package/lib/src/business/hooks/useGridRefresh.d.ts +17 -0
  57. package/lib/src/business/hooks/useGridRefresh.js +1 -0
  58. package/lib/src/business/index.d.ts +1 -0
  59. package/lib/src/business/index.js +1 -1
  60. package/lib/src/components.d.ts +1 -0
  61. package/lib/src/full-screen/index.vue.js +1 -1
  62. package/lib/src/full-screen/interface.d.ts +2 -1
  63. package/lib/src/index.js +1 -1
  64. package/lib/src/path-map.js +1 -1
  65. package/package.json +1 -1
  66. package/theme/ap-product-info/ap-product-info.css +87 -0
  67. package/theme/ap-product-info/ap-product-info.less +100 -0
  68. package/theme/index.css +87 -0
  69. package/theme/index.less +1 -0
@@ -1 +1,87 @@
1
+ import { CreateComponentPublicInstanceWithMixins, ExtractPropTypes, PropType, ComponentOptionsMixin, PublicProps, GlobalComponents, GlobalDirectives, ComponentProvideOptions, ComponentOptionsBase, VNodeProps, AllowedComponentProps, ComponentCustomProps, Plugin } from 'vue';
2
+ import { ApProductInfoValue } from './interface';
1
3
  export * from './interface';
4
+ declare const ApProductInfo: {
5
+ new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly< ExtractPropTypes<{
6
+ title: {
7
+ type: StringConstructor;
8
+ default: string;
9
+ };
10
+ imgSrc: {
11
+ type: StringConstructor;
12
+ default: string;
13
+ };
14
+ preview: {
15
+ type: BooleanConstructor;
16
+ default: boolean;
17
+ };
18
+ values: {
19
+ type: PropType< ApProductInfoValue[]>;
20
+ default: () => never[];
21
+ };
22
+ }>> & Readonly<{}>, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
23
+ values: ApProductInfoValue[];
24
+ title: string;
25
+ preview: boolean;
26
+ imgSrc: string;
27
+ }, true, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
28
+ P: {};
29
+ B: {};
30
+ D: {};
31
+ C: {};
32
+ M: {};
33
+ Defaults: {};
34
+ }, Readonly< ExtractPropTypes<{
35
+ title: {
36
+ type: StringConstructor;
37
+ default: string;
38
+ };
39
+ imgSrc: {
40
+ type: StringConstructor;
41
+ default: string;
42
+ };
43
+ preview: {
44
+ type: BooleanConstructor;
45
+ default: boolean;
46
+ };
47
+ values: {
48
+ type: PropType< ApProductInfoValue[]>;
49
+ default: () => never[];
50
+ };
51
+ }>> & Readonly<{}>, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, {
52
+ values: ApProductInfoValue[];
53
+ title: string;
54
+ preview: boolean;
55
+ imgSrc: string;
56
+ }>;
57
+ __isFragment?: never;
58
+ __isTeleport?: never;
59
+ __isSuspense?: never;
60
+ } & ComponentOptionsBase<Readonly< ExtractPropTypes<{
61
+ title: {
62
+ type: StringConstructor;
63
+ default: string;
64
+ };
65
+ imgSrc: {
66
+ type: StringConstructor;
67
+ default: string;
68
+ };
69
+ preview: {
70
+ type: BooleanConstructor;
71
+ default: boolean;
72
+ };
73
+ values: {
74
+ type: PropType< ApProductInfoValue[]>;
75
+ default: () => never[];
76
+ };
77
+ }>> & Readonly<{}>, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
78
+ values: ApProductInfoValue[];
79
+ title: string;
80
+ preview: boolean;
81
+ imgSrc: string;
82
+ }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & ( Plugin & (new (...args: any[]) => {
83
+ $props: {
84
+ onClick?: () => void;
85
+ };
86
+ }));
87
+ export { ApProductInfo };
@@ -0,0 +1,7 @@
1
+ import { withInstall as o } from "@aplus-frontend/utils";
2
+ import t from "./ApProductInfo.mjs";
3
+ import "./interface.mjs";
4
+ const f = o(t);
5
+ export {
6
+ f as ApProductInfo
7
+ };
@@ -1,11 +1,13 @@
1
+ import { VNode } from 'vue';
1
2
  export interface ApProductInfoProps {
2
3
  imgSrc?: string;
4
+ preview?: boolean;
3
5
  title?: string;
4
- asku?: string;
5
- asin?: {
6
- value: string;
7
- href: string;
8
- };
9
- msku?: string;
10
- onTitleClick?: () => void;
6
+ values?: ApProductInfoValue[];
7
+ }
8
+ export interface ApProductInfoValue {
9
+ label?: string;
10
+ link?: string;
11
+ col?: number;
12
+ value?: string | number | VNode | (() => VNode);
11
13
  }
File without changes
@@ -0,0 +1 @@
1
+ import '@aplus-frontend/ui/theme/ap-product-info/ap-product-info.css';
@@ -0,0 +1 @@
1
+ import '@aplus-frontend/ui/theme/ap-product-info/ap-product-info.less';
@@ -1,3 +1,4 @@
1
1
  export * from './usePageListApTable';
2
2
  export * from './useTableRefresh';
3
3
  export * from './usePageListApGrid';
4
+ export * from './useGridRefresh';
@@ -1,8 +1,10 @@
1
1
  import { usePageListApTable as o } from "./usePageListApTable.mjs";
2
- import { useTableRefresh as p } from "./useTableRefresh.mjs";
3
- import { usePageListApGrid as a } from "./usePageListApGrid.mjs";
2
+ import { useTableRefresh as f } from "./useTableRefresh.mjs";
3
+ import { usePageListApGrid as t } from "./usePageListApGrid.mjs";
4
+ import { useGridRefresh as i } from "./useGridRefresh.mjs";
4
5
  export {
5
- a as usePageListApGrid,
6
+ i as useGridRefresh,
7
+ t as usePageListApGrid,
6
8
  o as usePageListApTable,
7
- p as useTableRefresh
9
+ f as useTableRefresh
8
10
  };
@@ -0,0 +1,17 @@
1
+ import { Ref } from 'vue';
2
+ import { ApGridExpose } from '../../ap-grid';
3
+ export interface UseGridRefreshOption {
4
+ /**
5
+ * apTable实例
6
+ */
7
+ apTableRef?: Ref<ApGridExpose | undefined | null>;
8
+ /**
9
+ * 刷新类型,reset:重置,submit:提交
10
+ */
11
+ refreshType?: 'reset' | 'submit';
12
+ /**
13
+ * 刷新前执行,返回false则不执行
14
+ */
15
+ refreshBefore?: () => boolean;
16
+ }
17
+ export declare function useGridRefresh(option?: UseGridRefreshOption): void;
@@ -0,0 +1,17 @@
1
+ import { onMounted as m, onActivated as b } from "vue";
2
+ function l(e) {
3
+ const a = (["reset", "submit", void 0].includes(e == null ? void 0 : e.refreshType) ? e == null ? void 0 : e.refreshType : "submit") ?? "submit", r = (e == null ? void 0 : e.refreshBefore) ?? (() => !0);
4
+ let s = !0;
5
+ m(() => {
6
+ s = !1;
7
+ }), b(() => {
8
+ const c = r == null ? void 0 : r();
9
+ s || c && setTimeout(() => {
10
+ var u, f;
11
+ (f = (u = e == null ? void 0 : e.apTableRef) == null ? void 0 : u.value) == null || f[a]();
12
+ });
13
+ });
14
+ }
15
+ export {
16
+ l as useGridRefresh
17
+ };
@@ -20,4 +20,5 @@ export * from './ap-group-search';
20
20
  export * from './ap-upload-file';
21
21
  export * from './batch-input-group';
22
22
  export * from './ap-size-input';
23
+ export * from './ap-product-info';
23
24
  export { ApTransformDataHelper } from '../utils/ap-trans-data';
@@ -1,17 +1,17 @@
1
1
  import { default as A } from "./ap-table-modal/index.mjs";
2
2
  import { ApAttachment as x } from "./ap-attachment/index.mjs";
3
- import { ApBatchAction as f } from "./ap-batch-action/index.mjs";
4
- import { ApBatchActionGroup as l } from "./ap-batch-action-group/index.mjs";
5
- import { ApButtonGroup as i } from "./ap-button-group/index.mjs";
3
+ import { ApBatchAction as a } from "./ap-batch-action/index.mjs";
4
+ import { ApBatchActionGroup as n } from "./ap-batch-action-group/index.mjs";
5
+ import { ApButtonGroup as c } from "./ap-button-group/index.mjs";
6
6
  import { ApCard as d } from "./ap-card/index.mjs";
7
7
  import { ApExpandAlert as G } from "./ap-expand-alert/index.mjs";
8
8
  import { ApExportGroup as h } from "./ap-export-group/index.mjs";
9
- import { ApImage as b } from "./ap-image/index.mjs";
10
- import { ApInputRadio as E } from "./ap-input-radio/index.mjs";
9
+ import { ApImage as L } from "./ap-image/index.mjs";
10
+ import { ApInputRadio as B } from "./ap-input-radio/index.mjs";
11
11
  import { ApLabel as T, ApLabelGroup as y } from "./ap-label/index.mjs";
12
- import { ApLadder as v } from "./ap-ladder/index.mjs";
13
- import { ApSelectLayout as C } from "./ap-select-layout/index.mjs";
14
- import { ApStatus as H, ApStatusGroup as M } from "./ap-status/index.mjs";
12
+ import { ApLadder as g } from "./ap-ladder/index.mjs";
13
+ import { ApSelectLayout as z } from "./ap-select-layout/index.mjs";
14
+ import { ApStatus as D, ApStatusGroup as H } from "./ap-status/index.mjs";
15
15
  import { ApTitle as R } from "./ap-title/index.mjs";
16
16
  import "./hooks/index.mjs";
17
17
  import { ApSummary as k } from "./ap-summary/index.mjs";
@@ -20,30 +20,32 @@ import { ApExtensionSelect as J, ApGroupSearch as K, ApPopoverSelect as N } from
20
20
  import "./ap-upload-file/index.mjs";
21
21
  import "./batch-input-group/index.mjs";
22
22
  import { ApSizeInput as Q } from "./ap-size-input/index.mjs";
23
- import { ApTransformDataHelper as V } from "../utils/ap-trans-data/index.mjs";
23
+ import { ApProductInfo as V } from "./ap-product-info/index.mjs";
24
+ import { ApTransformDataHelper as X } from "../utils/ap-trans-data/index.mjs";
24
25
  export {
25
26
  w as ApAppendix,
26
27
  x as ApAttachment,
27
- f as ApBatchAction,
28
- l as ApBatchActionGroup,
29
- i as ApButtonGroup,
28
+ a as ApBatchAction,
29
+ n as ApBatchActionGroup,
30
+ c as ApButtonGroup,
30
31
  d as ApCard,
31
32
  G as ApExpandAlert,
32
33
  h as ApExportGroup,
33
34
  J as ApExtensionSelect,
34
35
  K as ApGroupSearch,
35
- b as ApImage,
36
- E as ApInputRadio,
36
+ L as ApImage,
37
+ B as ApInputRadio,
37
38
  T as ApLabel,
38
39
  y as ApLabelGroup,
39
- v as ApLadder,
40
+ g as ApLadder,
40
41
  N as ApPopoverSelect,
41
- C as ApSelectLayout,
42
+ V as ApProductInfo,
43
+ z as ApSelectLayout,
42
44
  Q as ApSizeInput,
43
- H as ApStatus,
44
- M as ApStatusGroup,
45
+ D as ApStatus,
46
+ H as ApStatusGroup,
45
47
  k as ApSummary,
46
48
  A as ApTableModal,
47
49
  R as ApTitle,
48
- V as ApTransformDataHelper
50
+ X as ApTransformDataHelper
49
51
  };
@@ -14,6 +14,7 @@ declare module '@vue/runtime-core' {
14
14
  ApLabel: typeof components.ApLabel;
15
15
  ApLabelGroup: typeof components.ApLabelGroup;
16
16
  ApLadder: typeof components.ApLadder;
17
+ ApProductInfo: typeof components.ApProductInfo;
17
18
  ApSelectLayout: typeof components.ApSelectLayout;
18
19
  ApStatus: typeof components.ApStatus;
19
20
  ApStatusGroup: typeof components.ApStatusGroup;
@@ -1,4 +1,4 @@
1
- import { defineComponent as R, ref as i, watch as E, unref as a, computed as n, createBlock as m, openBlock as d, withCtx as v, resolveDynamicComponent as z, mergeProps as C, renderSlot as F, createElementVNode as N, normalizeClass as S } from "vue";
1
+ import { defineComponent as R, ref as i, watch as E, unref as a, computed as n, createBlock as d, openBlock as m, withCtx as v, resolveDynamicComponent as z, mergeProps as C, renderSlot as F, createElementVNode as N, normalizeClass as S } from "vue";
2
2
  import "../hooks/index.mjs";
3
3
  import "../portal/index.mjs";
4
4
  import "../config-provider/index.mjs";
@@ -11,7 +11,8 @@ const H = /* @__PURE__ */ R({
11
11
  __name: "index",
12
12
  props: {
13
13
  wrapperElementName: { default: "div" },
14
- zIndex: { default: 2147483647 }
14
+ zIndex: { default: 2147483647 },
15
+ to: { default: "body" }
15
16
  },
16
17
  setup(L, { expose: w }) {
17
18
  const {
@@ -19,49 +20,49 @@ const H = /* @__PURE__ */ R({
19
20
  full: b,
20
21
  enter: y,
21
22
  exit: _
22
- } = I(), { b: x, bm: g, be: k } = $("full-screen"), t = i(!1), l = i(), p = h(document.body), u = i();
23
+ } = I(), { b: g, bm: k, be: x } = $("full-screen"), t = i(!1), l = i(), p = h(document.body), u = i();
23
24
  E(
24
25
  () => a(b),
25
26
  (e) => {
26
27
  e || (t.value = !1, l.value = void 0);
27
28
  }
28
29
  );
29
- async function o(e, r = !1) {
30
- await s(), t.value = !0, l.value = e, e === "browser" ? y(r) : p.value = !0;
30
+ async function r(e, o = !1) {
31
+ await s(), t.value = !0, l.value = e, e === "browser" ? y(o) : p.value = !0;
31
32
  }
32
33
  async function s(e = !1) {
33
34
  t.value = !1, l.value === "browser" ? await _(e) : p.value = !1, l.value = void 0;
34
35
  }
35
- async function c(e, r = !1) {
36
- t.value ? l.value !== e ? await o(e, r) : await s(r) : await o(e, r);
36
+ async function c(e, o = !1) {
37
+ t.value ? l.value !== e ? await r(e, o) : await s(o) : await r(e, o);
37
38
  }
38
39
  return w({
39
40
  target: n(() => a(f)),
40
41
  portalRoot: n(() => a(u)),
41
42
  full: n(() => a(t)),
42
43
  mode: n(() => a(l)),
43
- enter: o,
44
+ enter: r,
44
45
  exit: s,
45
46
  toggle: c
46
- }), (e, r) => (d(), m(a(B), {
47
- to: "body",
47
+ }), (e, o) => (m(), d(a(B), {
48
+ to: e.to,
48
49
  disabled: l.value !== "window"
49
50
  }, {
50
51
  default: v(() => [
51
- (d(), m(z(e.wrapperElementName), C({
52
+ (m(), d(z(e.wrapperElementName), C({
52
53
  ref_key: "target",
53
54
  ref: f
54
55
  }, e.$attrs, {
55
56
  class: [
56
- a(x)("wrapper"),
57
- t.value && l.value === "window" ? a(g)("wrapper", "full") : null
57
+ a(g)("wrapper"),
58
+ t.value && l.value === "window" ? a(k)("wrapper", "full") : null
58
59
  ],
59
60
  style: { zIndex: t.value && l.value === "window" ? e.zIndex : "unset" }
60
61
  }), {
61
62
  default: v(() => [
62
63
  F(e.$slots, "default", {
63
64
  full: t.value,
64
- enter: o,
65
+ enter: r,
65
66
  exit: s,
66
67
  toggle: c,
67
68
  mode: l.value,
@@ -70,14 +71,14 @@ const H = /* @__PURE__ */ R({
70
71
  N("div", {
71
72
  ref_key: "portalRootRef",
72
73
  ref: u,
73
- class: S(a(k)("wrapper", "portal-root"))
74
+ class: S(a(x)("wrapper", "portal-root"))
74
75
  }, null, 2)
75
76
  ]),
76
77
  _: 3
77
78
  }, 16, ["class", "style"]))
78
79
  ]),
79
80
  _: 3
80
- }, 8, ["disabled"]));
81
+ }, 8, ["to", "disabled"]));
81
82
  }
82
83
  });
83
84
  export {
@@ -1,4 +1,5 @@
1
1
  import { ComputedRef } from 'vue';
2
+ import { PortalProps } from '../portal';
2
3
  export type FullScreenMode = 'browser' | 'window';
3
4
  export type FullScreenProps = {
4
5
  /**
@@ -9,7 +10,7 @@ export type FullScreenProps = {
9
10
  * 全屏状态下的css zIndex 默认为2^31 - 1
10
11
  */
11
12
  zIndex?: number;
12
- };
13
+ } & Pick<PortalProps, 'to'>;
13
14
  export type FullScreenExpose = {
14
15
  /**
15
16
  * 全屏的目标元素
package/es/src/index.mjs CHANGED
@@ -8,8 +8,8 @@ import "./ap-tag/index.mjs";
8
8
  import "./ap-info-layout/index.mjs";
9
9
  import "./ap-upload/index.mjs";
10
10
  import "./ap-download/index.mjs";
11
- import { CheckCard as y } from "./check-card/index.mjs";
12
- import { ApModal as R } from "./ap-modal/index.mjs";
11
+ import { CheckCard as R } from "./check-card/index.mjs";
12
+ import { ApModal as M } from "./ap-modal/index.mjs";
13
13
  import "./ap-list/index.mjs";
14
14
  import "./ap-button/index.mjs";
15
15
  import { ApDrawer as k } from "./ap-drawer/index.mjs";
@@ -42,8 +42,8 @@ import { default as De } from "./ap-form/items/switch/index.vue.mjs";
42
42
  import { default as Ge } from "./ap-form/items/checkbox/index.vue.mjs";
43
43
  import { default as Pe } from "./ap-form/items/text/password.vue.mjs";
44
44
  import { default as Le } from "./ap-form/items/tree-select/index.vue.mjs";
45
- import { default as ye } from "./ap-form/item/index.vue.mjs";
46
- import { default as Re } from "./ap-form/item-group/index.vue.mjs";
45
+ import { default as Re } from "./ap-form/item/index.vue.mjs";
46
+ import { default as Me } from "./ap-form/item-group/index.vue.mjs";
47
47
  import { default as ke } from "./ap-form/list/index.vue.mjs";
48
48
  import { default as Be } from "./ap-form/search-form/index.vue.mjs";
49
49
  import { default as Oe } from "./ap-form/modal-form/index.vue.mjs";
@@ -69,7 +69,7 @@ import { default as go } from "./ap-field/rate/index.vue.mjs";
69
69
  import { default as ho } from "./ap-field/tree-select/index.vue.mjs";
70
70
  import { default as Eo } from "./ap-action/item-modal/index.vue.mjs";
71
71
  import { default as No } from "./ap-action/item-popconfirm/index.vue.mjs";
72
- import { default as Mo } from "./ap-action/item-dropdown/index.vue.mjs";
72
+ import { default as yo } from "./ap-action/item-dropdown/index.vue.mjs";
73
73
  import { default as wo } from "./ap-action/group/index.vue.mjs";
74
74
  import { DictCode as vo, langMap as Bo } from "./work-order-modal/interfaces.mjs";
75
75
  import { createWorkOrderModal as Oo } from "./work-order-modal/createWorkOrder.mjs";
@@ -95,8 +95,8 @@ import { ApBatchAction as Dr } from "./business/ap-batch-action/index.mjs";
95
95
  import { ApBatchActionGroup as Gr } from "./business/ap-batch-action-group/index.mjs";
96
96
  import { ApButtonGroup as Pr } from "./business/ap-button-group/index.mjs";
97
97
  import { ApCard as Lr } from "./business/ap-card/index.mjs";
98
- import { ApExpandAlert as yr } from "./business/ap-expand-alert/index.mjs";
99
- import { ApExportGroupActionType as Rr } from "./business/ap-export-group/interface.mjs";
98
+ import { ApExpandAlert as Rr } from "./business/ap-expand-alert/index.mjs";
99
+ import { ApExportGroupActionType as Mr } from "./business/ap-export-group/interface.mjs";
100
100
  import { ApExportGroup as kr } from "./business/ap-export-group/index.mjs";
101
101
  import { handleExportDownload as Br } from "./business/ap-export-group/handleExportDownload.mjs";
102
102
  import { convertExportField as Or } from "./business/ap-export-group/convertExportField.mjs";
@@ -111,41 +111,43 @@ import { ApTitle as tt } from "./business/ap-title/index.mjs";
111
111
  import { usePageListApTable as at } from "./business/hooks/usePageListApTable.mjs";
112
112
  import { useTableRefresh as ft } from "./business/hooks/useTableRefresh.mjs";
113
113
  import { usePageListApGrid as dt } from "./business/hooks/usePageListApGrid.mjs";
114
- import { computedRecords as ut, flattenColumns as st, formatDataIndex as At, formatNumber as it } from "./business/ap-summary/utils.mjs";
115
- import { ApSummary as ct } from "./business/ap-summary/index.mjs";
116
- import { ApNeedNameKeyDefault as It } from "./business/ap-appendix/interface.mjs";
117
- import { ApAppendix as bt } from "./business/ap-appendix/index.mjs";
118
- import { ApExtensionSelect as Ct, ApGroupSearch as Dt, ApPopoverSelect as gt } from "./business/ap-group-search/index.mjs";
119
- import { default as ht } from "./business/ap-upload-file/ap-upload-single/ap-upload-single.vue.mjs";
120
- import { default as Et } from "./business/batch-input-group/index.vue.mjs";
121
- import { default as Nt } from "./business/batch-input-group/form-item.vue.mjs";
122
- import { ApSizeInput as Mt } from "./business/ap-size-input/index.mjs";
123
- import { useTablePaging as wt } from "./ap-table/hooks/use-table-paging.mjs";
124
- import { default as vt } from "./editable-table/index.vue.mjs";
125
- import { default as Kt } from "./editable-table/form-item.vue.mjs";
126
- import { default as Ut } from "./ap-descriptions/ap-descriptions.vue.mjs";
127
- import { ensureRangeValue as Vt } from "./scroll-bar/utils/index.mjs";
128
- import { default as _t } from "./scroll-bar/index.vue.mjs";
129
- import { default as jt } from "./scroll-bar/internal.vue.mjs";
130
- import { default as Jt } from "./scroll-view/index.vue.mjs";
131
- import { default as Xt } from "./portal/index.vue.mjs";
132
- import { default as Zt } from "./full-screen/index.vue.mjs";
133
- import { default as ep } from "./resize-observer/index.vue.mjs";
134
- import { default as rp } from "./ap-grid/index.vue.mjs";
135
- import { default as pp } from "./ap-grid/editable/index.vue.mjs";
136
- import { default as mp } from "./ap-grid/editable/form-item.vue.mjs";
137
- import { default as lp } from "./text/index.vue.mjs";
138
- import { default as xp } from "./text/group.vue.mjs";
139
- import { default as sp } from "./mask/index.vue.mjs";
114
+ import { useGridRefresh as ut } from "./business/hooks/useGridRefresh.mjs";
115
+ import { computedRecords as At, flattenColumns as it, formatDataIndex as nt, formatNumber as ct } from "./business/ap-summary/utils.mjs";
116
+ import { ApSummary as It } from "./business/ap-summary/index.mjs";
117
+ import { ApNeedNameKeyDefault as bt } from "./business/ap-appendix/interface.mjs";
118
+ import { ApAppendix as Ct } from "./business/ap-appendix/index.mjs";
119
+ import { ApExtensionSelect as gt, ApGroupSearch as Gt, ApPopoverSelect as ht } from "./business/ap-group-search/index.mjs";
120
+ import { default as Et } from "./business/ap-upload-file/ap-upload-single/ap-upload-single.vue.mjs";
121
+ import { default as Nt } from "./business/batch-input-group/index.vue.mjs";
122
+ import { default as yt } from "./business/batch-input-group/form-item.vue.mjs";
123
+ import { ApSizeInput as wt } from "./business/ap-size-input/index.mjs";
124
+ import { ApProductInfo as vt } from "./business/ap-product-info/index.mjs";
125
+ import { useTablePaging as Kt } from "./ap-table/hooks/use-table-paging.mjs";
126
+ import { default as Ut } from "./editable-table/index.vue.mjs";
127
+ import { default as Vt } from "./editable-table/form-item.vue.mjs";
128
+ import { default as _t } from "./ap-descriptions/ap-descriptions.vue.mjs";
129
+ import { ensureRangeValue as jt } from "./scroll-bar/utils/index.mjs";
130
+ import { default as Jt } from "./scroll-bar/index.vue.mjs";
131
+ import { default as Xt } from "./scroll-bar/internal.vue.mjs";
132
+ import { default as Zt } from "./scroll-view/index.vue.mjs";
133
+ import { default as ep } from "./portal/index.vue.mjs";
134
+ import { default as rp } from "./full-screen/index.vue.mjs";
135
+ import { default as pp } from "./resize-observer/index.vue.mjs";
136
+ import { default as mp } from "./ap-grid/index.vue.mjs";
137
+ import { default as lp } from "./ap-grid/editable/index.vue.mjs";
138
+ import { default as xp } from "./ap-grid/editable/form-item.vue.mjs";
139
+ import { default as sp } from "./text/index.vue.mjs";
140
+ import { default as ip } from "./text/group.vue.mjs";
141
+ import { default as cp } from "./mask/index.vue.mjs";
140
142
  export {
141
143
  b as APConfigProvider,
142
144
  dr as ApActionButton,
143
145
  wo as ApActionGroup,
144
146
  L as ApActionItem,
145
- Mo as ApActionItemDropdown,
147
+ yo as ApActionItemDropdown,
146
148
  Eo as ApActionItemModal,
147
149
  No as ApActionItemPopconfirm,
148
- bt as ApAppendix,
150
+ Ct as ApAppendix,
149
151
  Sr as ApAttachment,
150
152
  Dr as ApBatchAction,
151
153
  Gr as ApBatchActionGroup,
@@ -153,14 +155,14 @@ export {
153
155
  Pr as ApButtonGroup,
154
156
  Lr as ApCard,
155
157
  ur as ApConfirmButton,
156
- Ut as ApDescriptions,
158
+ _t as ApDescriptions,
157
159
  $o as ApDownLoadNeedNameKeyDefault,
158
160
  or as ApDownload,
159
161
  k as ApDrawer,
160
- yr as ApExpandAlert,
162
+ Rr as ApExpandAlert,
161
163
  kr as ApExportGroup,
162
- Rr as ApExportGroupActionType,
163
- Ct as ApExtensionSelect,
164
+ Mr as ApExportGroupActionType,
165
+ gt as ApExtensionSelect,
164
166
  g as ApField,
165
167
  oo as ApFieldCheckbox,
166
168
  to as ApFieldDate,
@@ -180,12 +182,12 @@ export {
180
182
  qe as ApFormControlRender,
181
183
  ze as ApFormDependency,
182
184
  He as ApFormDrawerForm,
183
- ye as ApFormItem,
184
- Nt as ApFormItemBatchInput,
185
+ Re as ApFormItem,
186
+ yt as ApFormItemBatchInput,
185
187
  Ge as ApFormItemCheckbox,
186
188
  ne as ApFormItemDate,
187
189
  Fe as ApFormItemDateRange,
188
- Re as ApFormItemGroup,
190
+ Me as ApFormItemGroup,
189
191
  Ae as ApFormItemNumber,
190
192
  Te as ApFormItemRadio,
191
193
  Qe as ApFormItemRender,
@@ -200,8 +202,8 @@ export {
200
202
  Ye as ApFormProvider,
201
203
  Be as ApFormSearchForm,
202
204
  We as ApFormSet,
203
- rp as ApGrid,
204
- Dt as ApGroupSearch,
205
+ mp as ApGrid,
206
+ Gt as ApGroupSearch,
205
207
  zr as ApImage,
206
208
  qo as ApInfoLayout,
207
209
  Wr as ApInputRadio,
@@ -209,58 +211,59 @@ export {
209
211
  jr as ApLabelGroup,
210
212
  Xr as ApLadder,
211
213
  ar as ApList,
212
- R as ApModal,
213
- It as ApNeedNameKeyDefault,
214
- gt as ApPopoverSelect,
214
+ M as ApModal,
215
+ bt as ApNeedNameKeyDefault,
216
+ ht as ApPopoverSelect,
217
+ vt as ApProductInfo,
215
218
  Zr as ApSelectLayout,
216
- Mt as ApSizeInput,
219
+ wt as ApSizeInput,
217
220
  et as ApStatus,
218
221
  ot as ApStatusGroup,
219
- ct as ApSummary,
222
+ It as ApSummary,
220
223
  B as ApTable,
221
224
  nr as ApTableModal,
222
225
  Wo as ApTag,
223
226
  Ho as ApTagGroup,
224
- lp as ApText,
225
- xp as ApTextGroup,
227
+ sp as ApText,
228
+ ip as ApTextGroup,
226
229
  tt as ApTitle,
227
230
  Ar as ApTransformDataHelper,
228
231
  Yo as ApUpload,
229
- ht as ApUploadSingle,
230
- Et as BatchInputGroup,
231
- y as CheckCard,
232
+ Et as ApUploadSingle,
233
+ Nt as BatchInputGroup,
234
+ R as CheckCard,
232
235
  tr as CheckCardGroup,
233
236
  me as ConfigProvider,
234
237
  z as DEFAULT_NAMESPACE,
235
238
  V as DEFAULT_UIMODE,
236
239
  vo as DictCode,
237
- pp as EditableGrid,
238
- mp as EditableGridFormItem,
239
- vt as EditableTable,
240
- Kt as EditableTableFormItem,
241
- Zt as FullScreen,
242
- jt as InternalScrollBar,
243
- sp as Mask,
240
+ lp as EditableGrid,
241
+ xp as EditableGridFormItem,
242
+ Ut as EditableTable,
243
+ Vt as EditableTableFormItem,
244
+ rp as FullScreen,
245
+ Xt as InternalScrollBar,
246
+ cp as Mask,
244
247
  Qo as NeedNameKeyDefault,
245
- Xt as Portal,
246
- ep as ResizeObserver,
247
- _t as ScrollBar,
248
- Jt as ScrollView,
248
+ ep as Portal,
249
+ pp as ResizeObserver,
250
+ Jt as ScrollBar,
251
+ Zt as ScrollView,
249
252
  zo as WorkOrderModal,
250
253
  h as adminToken,
251
254
  P as aplusToken,
252
255
  Q as buildLocaleContext,
253
256
  X as buildTranslator,
254
- ut as computedRecords,
257
+ At as computedRecords,
255
258
  W as configProviderContextKey,
256
259
  O as configProviderProps,
257
260
  Or as convertExportField,
258
261
  Oo as createWorkOrderModal,
259
262
  oe as defaultNamespace,
260
- Vt as ensureRangeValue,
261
- st as flattenColumns,
262
- At as formatDataIndex,
263
- it as formatNumber,
263
+ jt as ensureRangeValue,
264
+ it as flattenColumns,
265
+ nt as formatDataIndex,
266
+ ct as formatNumber,
264
267
  fe as globalConfigCached,
265
268
  Br as handleExportDownload,
266
269
  H as keysOf,
@@ -272,12 +275,13 @@ export {
272
275
  Z as translate,
273
276
  te as useGetDerivedNamespace,
274
277
  q as useGlobalConfig,
278
+ ut as useGridRefresh,
275
279
  $ as useLocale,
276
280
  pe as useNamespace,
277
281
  dt as usePageListApGrid,
278
282
  at as usePageListApTable,
279
283
  Fr as useTableModal,
280
- wt as useTablePaging,
284
+ Kt as useTablePaging,
281
285
  ft as useTableRefresh,
282
286
  Tr as useTableSelectModal
283
287
  };