@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.
- package/es/index.mjs +86 -82
- package/es/src/ap-field/interface.d.ts +3 -0
- package/es/src/ap-grid/editable/form-item.vue.mjs +20 -19
- package/es/src/ap-grid/editable/index.vue.mjs +23 -22
- package/es/src/ap-grid/index.vue.mjs +149 -138
- package/es/src/ap-grid/interface.d.ts +9 -0
- package/es/src/ap-grid/utils/col.mjs +92 -81
- package/es/src/ap-grid/utils/table.mjs +2 -2
- package/es/src/ap-table/hooks/use-table-paging-ng.mjs +52 -52
- package/es/src/business/ap-product-info/ApProductInfo.d.ts +22 -25
- package/es/src/business/ap-product-info/ApProductInfo.mjs +59 -0
- package/es/src/business/ap-product-info/constans.d.ts +11 -14
- package/es/src/business/ap-product-info/constans.mjs +21 -0
- package/es/src/business/ap-product-info/index.d.ts +86 -0
- package/es/src/business/ap-product-info/index.mjs +7 -0
- package/es/src/business/ap-product-info/interface.d.ts +9 -7
- package/es/src/business/ap-product-info/interface.mjs +1 -0
- package/es/src/business/ap-product-info/style/css.d.ts +0 -0
- package/es/src/business/ap-product-info/style/css.js +1 -0
- package/es/src/business/ap-product-info/style/index.d.ts +0 -0
- package/es/src/business/ap-product-info/style/index.js +1 -0
- package/es/src/business/hooks/index.d.ts +1 -0
- package/es/src/business/hooks/index.mjs +6 -4
- package/es/src/business/hooks/useGridRefresh.d.ts +17 -0
- package/es/src/business/hooks/useGridRefresh.mjs +17 -0
- package/es/src/business/index.d.ts +1 -0
- package/es/src/business/index.mjs +21 -19
- package/es/src/components.d.ts +1 -0
- package/es/src/full-screen/index.vue.mjs +17 -16
- package/es/src/full-screen/interface.d.ts +2 -1
- package/es/src/index.mjs +75 -71
- package/es/src/path-map.mjs +1 -0
- package/lib/index.js +1 -1
- package/lib/src/ap-field/interface.d.ts +3 -0
- package/lib/src/ap-grid/editable/form-item.vue.js +1 -1
- package/lib/src/ap-grid/editable/index.vue.js +1 -1
- package/lib/src/ap-grid/index.vue.js +1 -1
- package/lib/src/ap-grid/interface.d.ts +9 -0
- package/lib/src/ap-grid/utils/col.js +1 -1
- package/lib/src/ap-grid/utils/table.js +1 -1
- package/lib/src/ap-table/hooks/use-table-paging-ng.js +1 -1
- package/lib/src/business/ap-product-info/ApProductInfo.d.ts +22 -25
- package/lib/src/business/ap-product-info/ApProductInfo.js +1 -0
- package/lib/src/business/ap-product-info/constans.d.ts +11 -14
- package/lib/src/business/ap-product-info/constans.js +1 -0
- package/lib/src/business/ap-product-info/index.d.ts +86 -0
- package/lib/src/business/ap-product-info/index.js +1 -0
- package/lib/src/business/ap-product-info/interface.d.ts +9 -7
- package/lib/src/business/ap-product-info/interface.js +1 -0
- package/lib/src/business/ap-product-info/style/css.cjs +1 -0
- package/lib/src/business/ap-product-info/style/css.d.ts +0 -0
- package/lib/src/business/ap-product-info/style/index.cjs +1 -0
- package/lib/src/business/ap-product-info/style/index.d.ts +0 -0
- package/lib/src/business/hooks/index.d.ts +1 -0
- package/lib/src/business/hooks/index.js +1 -1
- package/lib/src/business/hooks/useGridRefresh.d.ts +17 -0
- package/lib/src/business/hooks/useGridRefresh.js +1 -0
- package/lib/src/business/index.d.ts +1 -0
- package/lib/src/business/index.js +1 -1
- package/lib/src/components.d.ts +1 -0
- package/lib/src/full-screen/index.vue.js +1 -1
- package/lib/src/full-screen/interface.d.ts +2 -1
- package/lib/src/index.js +1 -1
- package/lib/src/path-map.js +1 -1
- package/package.json +1 -1
- package/theme/ap-product-info/ap-product-info.css +87 -0
- package/theme/ap-product-info/ap-product-info.less +100 -0
- package/theme/index.css +87 -0
- 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 };
|
|
@@ -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
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
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
|
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
File without changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import '@aplus-frontend/ui/theme/ap-product-info/ap-product-info.css';
|
|
File without changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import '@aplus-frontend/ui/theme/ap-product-info/ap-product-info.less';
|
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
import { usePageListApTable as o } from "./usePageListApTable.mjs";
|
|
2
|
-
import { useTableRefresh as
|
|
3
|
-
import { usePageListApGrid as
|
|
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
|
-
|
|
6
|
+
i as useGridRefresh,
|
|
7
|
+
t as usePageListApGrid,
|
|
6
8
|
o as usePageListApTable,
|
|
7
|
-
|
|
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
|
+
};
|
|
@@ -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
|
|
4
|
-
import { ApBatchActionGroup as
|
|
5
|
-
import { ApButtonGroup as
|
|
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
|
|
10
|
-
import { ApInputRadio as
|
|
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
|
|
13
|
-
import { ApSelectLayout as
|
|
14
|
-
import { ApStatus as
|
|
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 {
|
|
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
|
-
|
|
28
|
-
|
|
29
|
-
|
|
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
|
-
|
|
36
|
-
|
|
36
|
+
L as ApImage,
|
|
37
|
+
B as ApInputRadio,
|
|
37
38
|
T as ApLabel,
|
|
38
39
|
y as ApLabelGroup,
|
|
39
|
-
|
|
40
|
+
g as ApLadder,
|
|
40
41
|
N as ApPopoverSelect,
|
|
41
|
-
|
|
42
|
+
V as ApProductInfo,
|
|
43
|
+
z as ApSelectLayout,
|
|
42
44
|
Q as ApSizeInput,
|
|
43
|
-
|
|
44
|
-
|
|
45
|
+
D as ApStatus,
|
|
46
|
+
H as ApStatusGroup,
|
|
45
47
|
k as ApSummary,
|
|
46
48
|
A as ApTableModal,
|
|
47
49
|
R as ApTitle,
|
|
48
|
-
|
|
50
|
+
X as ApTransformDataHelper
|
|
49
51
|
};
|
package/es/src/components.d.ts
CHANGED
|
@@ -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
|
|
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:
|
|
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
|
|
30
|
-
await s(), t.value = !0, l.value = e, e === "browser" ? y(
|
|
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,
|
|
36
|
-
t.value ? l.value !== e ? await
|
|
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:
|
|
44
|
+
enter: r,
|
|
44
45
|
exit: s,
|
|
45
46
|
toggle: c
|
|
46
|
-
}), (e,
|
|
47
|
-
to:
|
|
47
|
+
}), (e, o) => (m(), d(a(B), {
|
|
48
|
+
to: e.to,
|
|
48
49
|
disabled: l.value !== "window"
|
|
49
50
|
}, {
|
|
50
51
|
default: v(() => [
|
|
51
|
-
(
|
|
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(
|
|
57
|
-
t.value && l.value === "window" ? a(
|
|
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:
|
|
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(
|
|
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
|
|
12
|
-
import { ApModal as
|
|
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
|
|
46
|
-
import { default as
|
|
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
|
|
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
|
|
99
|
-
import { ApExportGroupActionType as
|
|
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 {
|
|
115
|
-
import {
|
|
116
|
-
import {
|
|
117
|
-
import {
|
|
118
|
-
import {
|
|
119
|
-
import {
|
|
120
|
-
import { default as Et } from "./business/
|
|
121
|
-
import { default as Nt } from "./business/batch-input-group/
|
|
122
|
-
import {
|
|
123
|
-
import {
|
|
124
|
-
import {
|
|
125
|
-
import {
|
|
126
|
-
import { default as Ut } from "./
|
|
127
|
-
import {
|
|
128
|
-
import { default as _t } from "./
|
|
129
|
-
import {
|
|
130
|
-
import { default as Jt } from "./scroll-
|
|
131
|
-
import { default as Xt } from "./
|
|
132
|
-
import { default as Zt } from "./
|
|
133
|
-
import { default as ep } from "./
|
|
134
|
-
import { default as rp } from "./
|
|
135
|
-
import { default as pp } from "./
|
|
136
|
-
import { default as mp } from "./ap-grid/
|
|
137
|
-
import { default as lp } from "./
|
|
138
|
-
import { default as xp } from "./
|
|
139
|
-
import { default as sp } from "./
|
|
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
|
-
|
|
147
|
+
yo as ApActionItemDropdown,
|
|
146
148
|
Eo as ApActionItemModal,
|
|
147
149
|
No as ApActionItemPopconfirm,
|
|
148
|
-
|
|
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
|
-
|
|
158
|
+
_t as ApDescriptions,
|
|
157
159
|
$o as ApDownLoadNeedNameKeyDefault,
|
|
158
160
|
or as ApDownload,
|
|
159
161
|
k as ApDrawer,
|
|
160
|
-
|
|
162
|
+
Rr as ApExpandAlert,
|
|
161
163
|
kr as ApExportGroup,
|
|
162
|
-
|
|
163
|
-
|
|
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
|
-
|
|
184
|
-
|
|
185
|
+
Re as ApFormItem,
|
|
186
|
+
yt as ApFormItemBatchInput,
|
|
185
187
|
Ge as ApFormItemCheckbox,
|
|
186
188
|
ne as ApFormItemDate,
|
|
187
189
|
Fe as ApFormItemDateRange,
|
|
188
|
-
|
|
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
|
-
|
|
204
|
-
|
|
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
|
-
|
|
213
|
-
|
|
214
|
-
|
|
214
|
+
M as ApModal,
|
|
215
|
+
bt as ApNeedNameKeyDefault,
|
|
216
|
+
ht as ApPopoverSelect,
|
|
217
|
+
vt as ApProductInfo,
|
|
215
218
|
Zr as ApSelectLayout,
|
|
216
|
-
|
|
219
|
+
wt as ApSizeInput,
|
|
217
220
|
et as ApStatus,
|
|
218
221
|
ot as ApStatusGroup,
|
|
219
|
-
|
|
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
|
-
|
|
225
|
-
|
|
227
|
+
sp as ApText,
|
|
228
|
+
ip as ApTextGroup,
|
|
226
229
|
tt as ApTitle,
|
|
227
230
|
Ar as ApTransformDataHelper,
|
|
228
231
|
Yo as ApUpload,
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
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
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
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
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
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
|
-
|
|
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
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
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
|
-
|
|
284
|
+
Kt as useTablePaging,
|
|
281
285
|
ft as useTableRefresh,
|
|
282
286
|
Tr as useTableSelectModal
|
|
283
287
|
};
|