@aplus-frontend/ui 0.4.10 → 0.4.11
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 +42 -36
- package/es/src/ap-field/date/index.vue.mjs +98 -65
- package/es/src/ap-field/date-range/index.vue.mjs +98 -70
- package/es/src/ap-field/hooks/use-date-timezone.d.ts +7 -0
- package/es/src/ap-field/hooks/use-date-timezone.mjs +10 -0
- package/es/src/ap-field/hooks/use-default-presets.d.ts +3 -2
- package/es/src/ap-field/hooks/use-default-presets.mjs +8 -8
- package/es/src/ap-field/interface.d.ts +8 -2
- package/es/src/business/ap-ladder/ApLadder.vue.d.ts +6 -2
- package/es/src/business/ap-ladder/ApLadder.vue2.mjs +118 -95
- package/es/src/business/ap-ladder/index.d.ts +3 -1
- package/es/src/full-screen/index.d.ts +3 -0
- package/es/src/full-screen/index.mjs +2 -0
- package/es/src/full-screen/index.vue.d.ts +43 -0
- package/es/src/full-screen/index.vue.mjs +84 -0
- package/es/src/full-screen/index.vue2.mjs +4 -0
- package/es/src/full-screen/interface.d.ts +50 -0
- package/es/src/full-screen/interface.mjs +1 -0
- package/es/src/full-screen/style/css.d.ts +0 -0
- package/es/src/full-screen/style/css.js +1 -0
- package/es/src/full-screen/style/index.d.ts +0 -0
- package/es/src/full-screen/style/index.js +1 -0
- package/es/src/hooks/index.d.ts +1 -0
- package/es/src/hooks/index.mjs +6 -4
- package/es/src/hooks/useFullScreen.d.ts +8 -0
- package/es/src/hooks/useFullScreen.mjs +50 -0
- package/es/src/index.d.ts +2 -0
- package/es/src/index.mjs +243 -237
- package/es/src/path-map.mjs +3 -1
- package/es/src/portal/index.d.ts +3 -0
- package/es/src/portal/index.mjs +2 -0
- package/es/src/portal/index.vue.d.ts +18 -0
- package/es/src/portal/index.vue.mjs +21 -0
- package/es/src/portal/index.vue2.mjs +4 -0
- package/es/src/portal/interface.d.ts +2 -0
- package/es/src/portal/interface.mjs +1 -0
- package/es/src/portal/style/css.d.ts +1 -0
- package/es/src/portal/style/css.js +1 -0
- package/es/src/portal/style/index.d.ts +1 -0
- package/es/src/portal/style/index.js +1 -0
- package/lib/index.js +1 -1
- package/lib/src/ap-field/date/index.vue.js +1 -1
- package/lib/src/ap-field/date-range/index.vue.js +1 -1
- package/lib/src/ap-field/hooks/use-date-timezone.d.ts +7 -0
- package/lib/src/ap-field/hooks/use-date-timezone.js +1 -0
- package/lib/src/ap-field/hooks/use-default-presets.d.ts +3 -2
- package/lib/src/ap-field/hooks/use-default-presets.js +1 -1
- package/lib/src/ap-field/interface.d.ts +8 -2
- package/lib/src/business/ap-ladder/ApLadder.vue.d.ts +6 -2
- package/lib/src/business/ap-ladder/ApLadder.vue2.js +1 -1
- package/lib/src/business/ap-ladder/index.d.ts +3 -1
- package/lib/src/full-screen/index.d.ts +3 -0
- package/lib/src/full-screen/index.js +1 -0
- package/lib/src/full-screen/index.vue.d.ts +43 -0
- package/lib/src/full-screen/index.vue.js +1 -0
- package/lib/src/full-screen/index.vue2.js +1 -0
- package/lib/src/full-screen/interface.d.ts +50 -0
- package/lib/src/full-screen/interface.js +1 -0
- package/lib/src/full-screen/style/css.cjs +1 -0
- package/lib/src/full-screen/style/css.d.ts +0 -0
- package/lib/src/full-screen/style/index.cjs +1 -0
- package/lib/src/full-screen/style/index.d.ts +0 -0
- package/lib/src/hooks/index.d.ts +1 -0
- package/lib/src/hooks/index.js +1 -1
- package/lib/src/hooks/useFullScreen.d.ts +8 -0
- package/lib/src/hooks/useFullScreen.js +1 -0
- package/lib/src/index.d.ts +2 -0
- package/lib/src/index.js +1 -1
- package/lib/src/path-map.js +1 -1
- package/lib/src/portal/index.d.ts +3 -0
- package/lib/src/portal/index.js +1 -0
- package/lib/src/portal/index.vue.d.ts +18 -0
- package/lib/src/portal/index.vue.js +1 -0
- package/lib/src/portal/index.vue2.js +1 -0
- package/lib/src/portal/interface.d.ts +2 -0
- package/lib/src/portal/interface.js +1 -0
- package/lib/src/portal/style/css.cjs +1 -0
- package/lib/src/portal/style/css.d.ts +1 -0
- package/lib/src/portal/style/index.cjs +1 -0
- package/lib/src/portal/style/index.d.ts +1 -0
- package/package.json +3 -3
- package/theme/ap-form/ap-form-item.css +4 -0
- package/theme/ap-form/ap-form-item.less +7 -0
- package/theme/ap-form/index.css +18 -0
- package/theme/ap-form/item-text-group.css +14 -0
- package/theme/ap-form/item-text-group.less +11 -1
- package/theme/ap-form/item-text.css +14 -0
- package/theme/ap-form/search-form.css +4 -0
- package/theme/ap-table/ap-table.css +18 -0
- package/theme/ap-table-modal/index.css +18 -0
- package/theme/editable-table/index.css +18 -0
- package/theme/full-screen/index.css +6 -0
- package/theme/full-screen/index.less +12 -0
- package/theme/index.css +24 -0
- package/theme/index.less +1 -0
package/es/src/hooks/index.d.ts
CHANGED
package/es/src/hooks/index.mjs
CHANGED
|
@@ -1,10 +1,12 @@
|
|
|
1
1
|
import { useMessage as r } from "./useMessage.mjs";
|
|
2
|
-
import { useControllableValue as
|
|
3
|
-
import { useManualRef as
|
|
2
|
+
import { useControllableValue as t } from "./useControllableValue.mjs";
|
|
3
|
+
import { useManualRef as f } from "./useManualRef.mjs";
|
|
4
4
|
import { useThrottleRef as a } from "./useThrottleRef.mjs";
|
|
5
|
+
import { useFullScreen as p } from "./useFullScreen.mjs";
|
|
5
6
|
export {
|
|
6
|
-
|
|
7
|
-
|
|
7
|
+
t as useControllableValue,
|
|
8
|
+
p as useFullScreen,
|
|
9
|
+
f as useManualRef,
|
|
8
10
|
r as useMessage,
|
|
9
11
|
a as useThrottleRef
|
|
10
12
|
};
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { Ref, WritableComputedRef, ComputedRef } from 'vue';
|
|
2
|
+
export declare const useFullScreen: (target?: Ref<HTMLElement | null | undefined>) => {
|
|
3
|
+
target: WritableComputedRef<HTMLElement | null | undefined, HTMLElement | null | undefined>;
|
|
4
|
+
full: ComputedRef<boolean>;
|
|
5
|
+
enter: (force?: boolean) => Promise<boolean>;
|
|
6
|
+
exit: (force?: boolean) => Promise<boolean>;
|
|
7
|
+
toggle: (force?: boolean) => Promise<boolean>;
|
|
8
|
+
};
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import { computed as r, unref as u, isRef as d, ref as f, watch as v } from "vue";
|
|
2
|
+
const a = /* @__PURE__ */ new WeakMap(), o = /* @__PURE__ */ new Set();
|
|
3
|
+
document.addEventListener("fullscreenchange", () => {
|
|
4
|
+
if (o.forEach((e) => e.value = !1), document.fullscreenElement) {
|
|
5
|
+
const e = a.get(
|
|
6
|
+
document.fullscreenElement
|
|
7
|
+
);
|
|
8
|
+
e && (e.value = !0);
|
|
9
|
+
}
|
|
10
|
+
});
|
|
11
|
+
const h = (e = f(null)) => {
|
|
12
|
+
const i = r({
|
|
13
|
+
get: () => u(e),
|
|
14
|
+
set: (t) => {
|
|
15
|
+
d(e) && (e.value = t);
|
|
16
|
+
}
|
|
17
|
+
}), l = f(!1);
|
|
18
|
+
o.add(l), v(
|
|
19
|
+
() => e.value,
|
|
20
|
+
(t, n) => {
|
|
21
|
+
t && a.set(t, l), n && a.delete(n);
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
immediate: !0,
|
|
25
|
+
flush: "post"
|
|
26
|
+
}
|
|
27
|
+
);
|
|
28
|
+
async function c(t = !1) {
|
|
29
|
+
await s();
|
|
30
|
+
const n = u(e);
|
|
31
|
+
return n && (t || !document.fullscreenElement) ? (await n.requestFullscreen(), l.value = !0, !0) : !1;
|
|
32
|
+
}
|
|
33
|
+
async function s(t = !1) {
|
|
34
|
+
const n = u(e);
|
|
35
|
+
return t || n && document.fullscreenElement === n ? (await document.exitFullscreen(), l.value = !1, !0) : !1;
|
|
36
|
+
}
|
|
37
|
+
async function m(t = !1) {
|
|
38
|
+
return await (u(l) ? s(t) : c(t));
|
|
39
|
+
}
|
|
40
|
+
return {
|
|
41
|
+
target: i,
|
|
42
|
+
full: r(() => u(l)),
|
|
43
|
+
enter: c,
|
|
44
|
+
exit: s,
|
|
45
|
+
toggle: m
|
|
46
|
+
};
|
|
47
|
+
};
|
|
48
|
+
export {
|
|
49
|
+
h as useFullScreen
|
|
50
|
+
};
|
package/es/src/index.d.ts
CHANGED
package/es/src/index.mjs
CHANGED
|
@@ -1,251 +1,257 @@
|
|
|
1
|
-
import { APConfigProvider as
|
|
2
|
-
import { ApForm as
|
|
3
|
-
import { ApField as
|
|
4
|
-
import { adminToken as
|
|
5
|
-
import { ApActionItem as
|
|
1
|
+
import { APConfigProvider as c } from "./config-provider/index.mjs";
|
|
2
|
+
import { ApForm as I } from "./ap-form/index.mjs";
|
|
3
|
+
import { ApField as b } from "./ap-field/index.mjs";
|
|
4
|
+
import { adminToken as D, aplusToken as C } from "./design-token/index.mjs";
|
|
5
|
+
import { ApActionItem as h } from "./ap-action/index.mjs";
|
|
6
6
|
import "./work-order-modal/index.mjs";
|
|
7
7
|
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 P } from "./check-card/index.mjs";
|
|
12
|
+
import { ApModal as L } from "./ap-modal/index.mjs";
|
|
13
13
|
import "./ap-list/index.mjs";
|
|
14
14
|
import "./ap-button/index.mjs";
|
|
15
|
-
import { ApDrawer as
|
|
15
|
+
import { ApDrawer as y } from "./ap-drawer/index.mjs";
|
|
16
16
|
import "./business/index.mjs";
|
|
17
|
-
import { ApTable as
|
|
17
|
+
import { ApTable as M } from "./ap-table/index.mjs";
|
|
18
18
|
import "./editable-table/index.mjs";
|
|
19
19
|
import "./ap-descriptions/index.mjs";
|
|
20
20
|
import "./scroll-bar/index.mjs";
|
|
21
21
|
import "./scroll-view/index.mjs";
|
|
22
|
-
import
|
|
23
|
-
import
|
|
24
|
-
import {
|
|
25
|
-
import {
|
|
26
|
-
import {
|
|
27
|
-
import {
|
|
28
|
-
import {
|
|
29
|
-
import {
|
|
30
|
-
import {
|
|
31
|
-
import { default as
|
|
32
|
-
import { default as
|
|
33
|
-
import { default as
|
|
34
|
-
import { default as
|
|
35
|
-
import { default as
|
|
36
|
-
import { default as
|
|
37
|
-
import { default as
|
|
38
|
-
import { default as
|
|
39
|
-
import { default as
|
|
40
|
-
import { default as
|
|
41
|
-
import { default as
|
|
42
|
-
import { default as
|
|
43
|
-
import { default as
|
|
44
|
-
import { default as
|
|
45
|
-
import { default as
|
|
46
|
-
import { default as
|
|
47
|
-
import { default as
|
|
48
|
-
import { default as
|
|
49
|
-
import {
|
|
50
|
-
import { default as
|
|
51
|
-
import {
|
|
52
|
-
import { default as
|
|
53
|
-
import { default as
|
|
54
|
-
import { default as
|
|
55
|
-
import { default as
|
|
56
|
-
import { default as
|
|
57
|
-
import { default as
|
|
58
|
-
import { default as
|
|
59
|
-
import { default as
|
|
60
|
-
import { default as
|
|
61
|
-
import { default as
|
|
62
|
-
import { default as
|
|
63
|
-
import { default as
|
|
64
|
-
import { default as
|
|
65
|
-
import { default as
|
|
66
|
-
import {
|
|
67
|
-
import {
|
|
68
|
-
import {
|
|
69
|
-
import {
|
|
70
|
-
import { default as
|
|
71
|
-
import { default as
|
|
72
|
-
import {
|
|
73
|
-
import { default as
|
|
74
|
-
import {
|
|
75
|
-
import { default as
|
|
76
|
-
import {
|
|
77
|
-
import { default as
|
|
78
|
-
import { default as
|
|
79
|
-
import { default as
|
|
80
|
-
import {
|
|
81
|
-
import { default as
|
|
82
|
-
import {
|
|
83
|
-
import {
|
|
84
|
-
import {
|
|
85
|
-
import {
|
|
86
|
-
import {
|
|
87
|
-
import {
|
|
88
|
-
import {
|
|
89
|
-
import {
|
|
90
|
-
import {
|
|
91
|
-
import {
|
|
92
|
-
import {
|
|
93
|
-
import {
|
|
94
|
-
import {
|
|
95
|
-
import {
|
|
96
|
-
import {
|
|
97
|
-
import {
|
|
98
|
-
import {
|
|
99
|
-
import {
|
|
100
|
-
import {
|
|
101
|
-
import {
|
|
102
|
-
import {
|
|
103
|
-
import {
|
|
104
|
-
import {
|
|
105
|
-
import {
|
|
106
|
-
import {
|
|
107
|
-
import {
|
|
108
|
-
import {
|
|
109
|
-
import {
|
|
110
|
-
import {
|
|
111
|
-
import { default as
|
|
112
|
-
import {
|
|
113
|
-
import {
|
|
114
|
-
import {
|
|
115
|
-
import {
|
|
116
|
-
import { default as
|
|
117
|
-
import {
|
|
118
|
-
import { default as
|
|
119
|
-
import {
|
|
120
|
-
import { default as
|
|
22
|
+
import "./portal/index.mjs";
|
|
23
|
+
import "./full-screen/index.mjs";
|
|
24
|
+
import { configProviderProps as k } from "./config-provider/config-provider-props.mjs";
|
|
25
|
+
import { DEFAULT_NAMESPACE as B, DEFAULT_UIMODE as K, configProviderContextKey as U } from "./config-provider/constants.mjs";
|
|
26
|
+
import { keysOf as V, provideGlobalConfig as W, useGlobalConfig as _ } from "./config-provider/hooks/use-global-config.mjs";
|
|
27
|
+
import { buildLocaleContext as H, buildTranslator as j, localeContextKey as q, translate as J, useLocale as Q } from "./config-provider/hooks/use-locale.mjs";
|
|
28
|
+
import { defaultNamespace as Y, namespaceContextKey as Z, useGetDerivedNamespace as $, useNamespace as oo } from "./config-provider/hooks/use-namespace.mjs";
|
|
29
|
+
import { ConfigProvider as ro, globalConfigCached as to } from "./config-provider/config-provider.mjs";
|
|
30
|
+
import { ApFormItemText as ao } from "./ap-form/items/text/index.mjs";
|
|
31
|
+
import { default as fo } from "./ap-form/items/text-area/index.vue.mjs";
|
|
32
|
+
import { default as xo } from "./ap-form/items/number/index.vue.mjs";
|
|
33
|
+
import { default as Ao } from "./ap-form/items/date/index.vue.mjs";
|
|
34
|
+
import { default as io } from "./ap-form/items/date-range/index.vue.mjs";
|
|
35
|
+
import { default as co } from "./ap-form/items/radio/index.vue.mjs";
|
|
36
|
+
import { default as Io } from "./ap-form/items/select/index.vue.mjs";
|
|
37
|
+
import { default as bo } from "./ap-form/items/switch/index.vue.mjs";
|
|
38
|
+
import { default as Do } from "./ap-form/items/checkbox/index.vue.mjs";
|
|
39
|
+
import { default as go } from "./ap-form/items/text/password.vue.mjs";
|
|
40
|
+
import { default as Go } from "./ap-form/item/index.vue.mjs";
|
|
41
|
+
import { default as Eo } from "./ap-form/item-group/index.vue.mjs";
|
|
42
|
+
import { default as No } from "./ap-form/list/index.vue.mjs";
|
|
43
|
+
import { default as wo } from "./ap-form/search-form/index.vue.mjs";
|
|
44
|
+
import { default as Ro } from "./ap-form/modal-form/index.vue.mjs";
|
|
45
|
+
import { default as vo } from "./ap-form/dependency/index.vue.mjs";
|
|
46
|
+
import { default as Ko } from "./ap-form/set/index.vue.mjs";
|
|
47
|
+
import { default as Oo } from "./ap-form/drawer-form/index.vue.mjs";
|
|
48
|
+
import { default as Wo } from "./ap-form/render/control.vue.mjs";
|
|
49
|
+
import { default as zo } from "./ap-form/render/item.vue.mjs";
|
|
50
|
+
import { default as jo } from "./ap-form/provider/index.vue.mjs";
|
|
51
|
+
import { ApFieldText as Jo } from "./ap-field/text/index.mjs";
|
|
52
|
+
import { default as Xo } from "./ap-field/checkbox/index.vue.mjs";
|
|
53
|
+
import { default as Zo } from "./ap-field/date/index.vue.mjs";
|
|
54
|
+
import { default as oe } from "./ap-field/number/index.vue.mjs";
|
|
55
|
+
import { default as re } from "./ap-field/radio/index.vue.mjs";
|
|
56
|
+
import { default as pe } from "./ap-field/switch/index.vue.mjs";
|
|
57
|
+
import { default as me } from "./ap-field/text-area/index.vue.mjs";
|
|
58
|
+
import { default as le } from "./ap-field/date-range/index.vue.mjs";
|
|
59
|
+
import { default as de } from "./ap-field/select/index.vue.mjs";
|
|
60
|
+
import { default as Ae } from "./ap-field/text/password.vue.mjs";
|
|
61
|
+
import { default as ie } from "./ap-field/slider/index.vue.mjs";
|
|
62
|
+
import { default as ce } from "./ap-field/segmented/index.vue.mjs";
|
|
63
|
+
import { default as Ie } from "./ap-field/rate/index.vue.mjs";
|
|
64
|
+
import { default as be } from "./ap-action/item-modal/index.vue.mjs";
|
|
65
|
+
import { default as De } from "./ap-action/item-popconfirm/index.vue.mjs";
|
|
66
|
+
import { default as ge } from "./ap-action/item-dropdown/index.vue.mjs";
|
|
67
|
+
import { default as Ge } from "./ap-action/group/index.vue.mjs";
|
|
68
|
+
import { DictCode as Ee, langMap as Le } from "./work-order-modal/interfaces.mjs";
|
|
69
|
+
import { createWorkOrderModal as ye } from "./work-order-modal/createWorkOrder.mjs";
|
|
70
|
+
import { default as Me } from "./work-order-modal/work-order-modal.vue.mjs";
|
|
71
|
+
import { default as ke } from "./ap-tag/ap-tag.vue.mjs";
|
|
72
|
+
import { default as Be } from "./ap-tag/ap-tag-group.vue.mjs";
|
|
73
|
+
import { default as Ue } from "./ap-info-layout/ApInfoLayout.vue.mjs";
|
|
74
|
+
import { NeedNameKeyDefault as Ve } from "./ap-upload/apUploadTypes.mjs";
|
|
75
|
+
import { default as _e } from "./ap-upload/apUpload.vue.mjs";
|
|
76
|
+
import { ApDownLoadNeedNameKeyDefault as He } from "./ap-download/interface.mjs";
|
|
77
|
+
import { default as qe } from "./ap-download/ap-download.vue.mjs";
|
|
78
|
+
import { default as Qe } from "./check-card/group.vue.mjs";
|
|
79
|
+
import { default as Ye } from "./ap-list/index.vue.mjs";
|
|
80
|
+
import { default as $e } from "./ap-button/ap-button.vue.mjs";
|
|
81
|
+
import { default as er } from "./ap-button/ap-action-button.vue.mjs";
|
|
82
|
+
import { ApTransformDataHelper as tr } from "./utils/ap-trans-data/index.mjs";
|
|
83
|
+
import { default as ar } from "./business/ap-table-modal/index.mjs";
|
|
84
|
+
import { useTableModal as fr } from "./business/ap-table-modal/hooks/use-table-modal.mjs";
|
|
85
|
+
import { useTableSelectModal as xr } from "./business/ap-table-modal/hooks/use-table-select-modal.mjs";
|
|
86
|
+
import { ApAttachment as ur } from "./business/ap-attachment/index.mjs";
|
|
87
|
+
import { ApBatchAction as sr } from "./business/ap-batch-action/index.mjs";
|
|
88
|
+
import { ApBatchActionGroup as nr } from "./business/ap-batch-action-group/index.mjs";
|
|
89
|
+
import { ApButtonGroup as Fr } from "./business/ap-button-group/index.mjs";
|
|
90
|
+
import { ApCard as Tr } from "./business/ap-card/index.mjs";
|
|
91
|
+
import { ApExpandAlert as Sr } from "./business/ap-expand-alert/index.mjs";
|
|
92
|
+
import { ApExportGroupActionType as Cr } from "./business/ap-export-group/interface.mjs";
|
|
93
|
+
import { ApExportGroup as hr } from "./business/ap-export-group/index.mjs";
|
|
94
|
+
import { handleExportDownload as Pr } from "./business/ap-export-group/handleExportDownload.mjs";
|
|
95
|
+
import { convertExportField as Lr } from "./business/ap-export-group/convertExportField.mjs";
|
|
96
|
+
import { ApImage as yr } from "./business/ap-image/index.mjs";
|
|
97
|
+
import { ApInputRadio as Mr } from "./business/ap-input-radio/index.mjs";
|
|
98
|
+
import { ApLabel as kr, ApLabelGroup as vr } from "./business/ap-label/index.mjs";
|
|
99
|
+
import { locales as Kr } from "./business/ap-ladder/interface.mjs";
|
|
100
|
+
import { ApLadder as Or } from "./business/ap-ladder/index.mjs";
|
|
101
|
+
import { ApSelectLayout as Wr } from "./business/ap-select-layout/index.mjs";
|
|
102
|
+
import { ApStatus as zr, ApStatusGroup as Hr } from "./business/ap-status/index.mjs";
|
|
103
|
+
import { ApTitle as qr } from "./business/ap-title/index.mjs";
|
|
104
|
+
import { usePageListApTable as Qr } from "./business/hooks/usePageListApTable.mjs";
|
|
105
|
+
import { useTableRefresh as Yr } from "./business/hooks/useTableRefresh.mjs";
|
|
106
|
+
import { computedRecords as $r, flattenColumns as ot, formatDataIndex as et, formatNumber as rt } from "./business/ap-summary/utils.mjs";
|
|
107
|
+
import { ApSummary as pt } from "./business/ap-summary/index.mjs";
|
|
108
|
+
import { ApNeedNameKeyDefault as mt } from "./business/ap-appendix/interface.mjs";
|
|
109
|
+
import { ApAppendix as lt } from "./business/ap-appendix/index.mjs";
|
|
110
|
+
import { ApExtensionSelect as dt, ApGroupSearch as ut, ApPopoverSelect as At } from "./business/ap-group-search/index.mjs";
|
|
111
|
+
import { default as it } from "./business/ap-upload-file/ap-upload-single/ap-upload-single.vue.mjs";
|
|
112
|
+
import { default as ct } from "./business/batch-input-group/index.vue.mjs";
|
|
113
|
+
import { default as It } from "./business/batch-input-group/form-item.vue.mjs";
|
|
114
|
+
import { ApSizeInput as bt } from "./business/ap-size-input/index.mjs";
|
|
115
|
+
import { useTablePaging as Dt } from "./ap-table/hooks/use-table-paging.mjs";
|
|
116
|
+
import { default as gt } from "./editable-table/index.vue.mjs";
|
|
117
|
+
import { default as Gt } from "./editable-table/form-item.vue.mjs";
|
|
118
|
+
import { default as Et } from "./ap-descriptions/ap-descriptions.vue.mjs";
|
|
119
|
+
import { ensureRangeValue as Nt } from "./scroll-bar/utils/index.mjs";
|
|
120
|
+
import { default as wt } from "./scroll-bar/index.vue.mjs";
|
|
121
|
+
import { default as Rt } from "./scroll-bar/internal.vue.mjs";
|
|
122
|
+
import { default as vt } from "./scroll-view/index.vue.mjs";
|
|
123
|
+
import { default as Kt } from "./portal/index.vue.mjs";
|
|
124
|
+
import { default as Ot } from "./full-screen/index.vue.mjs";
|
|
121
125
|
export {
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
ot as
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
126
|
+
c as APConfigProvider,
|
|
127
|
+
er as ApActionButton,
|
|
128
|
+
Ge as ApActionGroup,
|
|
129
|
+
h as ApActionItem,
|
|
130
|
+
ge as ApActionItemDropdown,
|
|
131
|
+
be as ApActionItemModal,
|
|
132
|
+
De as ApActionItemPopconfirm,
|
|
133
|
+
lt as ApAppendix,
|
|
134
|
+
ur as ApAttachment,
|
|
135
|
+
sr as ApBatchAction,
|
|
136
|
+
nr as ApBatchActionGroup,
|
|
137
|
+
$e as ApButton,
|
|
138
|
+
Fr as ApButtonGroup,
|
|
139
|
+
Tr as ApCard,
|
|
140
|
+
Et as ApDescriptions,
|
|
141
|
+
He as ApDownLoadNeedNameKeyDefault,
|
|
142
|
+
qe as ApDownload,
|
|
143
|
+
y as ApDrawer,
|
|
144
|
+
Sr as ApExpandAlert,
|
|
145
|
+
hr as ApExportGroup,
|
|
146
|
+
Cr as ApExportGroupActionType,
|
|
147
|
+
dt as ApExtensionSelect,
|
|
148
|
+
b as ApField,
|
|
149
|
+
Xo as ApFieldCheckbox,
|
|
150
|
+
Zo as ApFieldDate,
|
|
151
|
+
le as ApFieldDateRange,
|
|
152
|
+
oe as ApFieldNumber,
|
|
153
|
+
Ae as ApFieldPassword,
|
|
154
|
+
re as ApFieldRadio,
|
|
155
|
+
Ie as ApFieldRate,
|
|
156
|
+
ce as ApFieldSegmented,
|
|
157
|
+
de as ApFieldSelect,
|
|
158
|
+
ie as ApFieldSlider,
|
|
159
|
+
pe as ApFieldSwitch,
|
|
160
|
+
Jo as ApFieldText,
|
|
161
|
+
me as ApFieldTextArea,
|
|
162
|
+
I as ApForm,
|
|
163
|
+
Wo as ApFormControlRender,
|
|
164
|
+
vo as ApFormDependency,
|
|
165
|
+
Oo as ApFormDrawerForm,
|
|
166
|
+
Go as ApFormItem,
|
|
167
|
+
It as ApFormItemBatchInput,
|
|
168
|
+
Do as ApFormItemCheckbox,
|
|
169
|
+
Ao as ApFormItemDate,
|
|
170
|
+
io as ApFormItemDateRange,
|
|
171
|
+
Eo as ApFormItemGroup,
|
|
172
|
+
xo as ApFormItemNumber,
|
|
173
|
+
co as ApFormItemRadio,
|
|
174
|
+
zo as ApFormItemRender,
|
|
175
|
+
Io as ApFormItemSelect,
|
|
176
|
+
bo as ApFormItemSwitch,
|
|
177
|
+
ao as ApFormItemText,
|
|
178
|
+
fo as ApFormItemTextArea,
|
|
179
|
+
go as ApFormItemTextPassword,
|
|
180
|
+
No as ApFormList,
|
|
181
|
+
Ro as ApFormModalForm,
|
|
182
|
+
jo as ApFormProvider,
|
|
183
|
+
wo as ApFormSearchForm,
|
|
184
|
+
Ko as ApFormSet,
|
|
185
|
+
ut as ApGroupSearch,
|
|
186
|
+
yr as ApImage,
|
|
187
|
+
Ue as ApInfoLayout,
|
|
188
|
+
Mr as ApInputRadio,
|
|
189
|
+
kr as ApLabel,
|
|
190
|
+
vr as ApLabelGroup,
|
|
191
|
+
Or as ApLadder,
|
|
192
|
+
Ye as ApList,
|
|
193
|
+
L as ApModal,
|
|
194
|
+
mt as ApNeedNameKeyDefault,
|
|
195
|
+
At as ApPopoverSelect,
|
|
196
|
+
Wr as ApSelectLayout,
|
|
197
|
+
bt as ApSizeInput,
|
|
198
|
+
zr as ApStatus,
|
|
199
|
+
Hr as ApStatusGroup,
|
|
200
|
+
pt as ApSummary,
|
|
201
|
+
M as ApTable,
|
|
202
|
+
ar as ApTableModal,
|
|
203
|
+
ke as ApTag,
|
|
204
|
+
Be as ApTagGroup,
|
|
205
|
+
qr as ApTitle,
|
|
206
|
+
tr as ApTransformDataHelper,
|
|
207
|
+
_e as ApUpload,
|
|
208
|
+
it as ApUploadSingle,
|
|
209
|
+
ct as BatchInputGroup,
|
|
210
|
+
P as CheckCard,
|
|
211
|
+
Qe as CheckCardGroup,
|
|
212
|
+
ro as ConfigProvider,
|
|
213
|
+
B as DEFAULT_NAMESPACE,
|
|
214
|
+
K as DEFAULT_UIMODE,
|
|
215
|
+
Ee as DictCode,
|
|
216
|
+
gt as EditableTable,
|
|
217
|
+
Gt as EditableTableFormItem,
|
|
218
|
+
Ot as FullScreen,
|
|
219
|
+
Rt as InternalScrollBar,
|
|
220
|
+
Ve as NeedNameKeyDefault,
|
|
221
|
+
Kt as Portal,
|
|
222
|
+
wt as ScrollBar,
|
|
223
|
+
vt as ScrollView,
|
|
224
|
+
Me as WorkOrderModal,
|
|
225
|
+
D as adminToken,
|
|
226
|
+
C as aplusToken,
|
|
227
|
+
H as buildLocaleContext,
|
|
228
|
+
j as buildTranslator,
|
|
229
|
+
$r as computedRecords,
|
|
230
|
+
U as configProviderContextKey,
|
|
231
|
+
k as configProviderProps,
|
|
232
|
+
Lr as convertExportField,
|
|
233
|
+
ye as createWorkOrderModal,
|
|
234
|
+
Y as defaultNamespace,
|
|
235
|
+
Nt as ensureRangeValue,
|
|
236
|
+
ot as flattenColumns,
|
|
237
|
+
et as formatDataIndex,
|
|
238
|
+
rt as formatNumber,
|
|
239
|
+
to as globalConfigCached,
|
|
240
|
+
Pr as handleExportDownload,
|
|
241
|
+
V as keysOf,
|
|
242
|
+
Le as langMap,
|
|
243
|
+
q as localeContextKey,
|
|
244
|
+
Kr as locales,
|
|
245
|
+
Z as namespaceContextKey,
|
|
246
|
+
W as provideGlobalConfig,
|
|
247
|
+
J as translate,
|
|
248
|
+
$ as useGetDerivedNamespace,
|
|
249
|
+
_ as useGlobalConfig,
|
|
250
|
+
Q as useLocale,
|
|
251
|
+
oo as useNamespace,
|
|
252
|
+
Qr as usePageListApTable,
|
|
253
|
+
fr as useTableModal,
|
|
254
|
+
Dt as useTablePaging,
|
|
255
|
+
Yr as useTableRefresh,
|
|
256
|
+
xr as useTableSelectModal
|
|
251
257
|
};
|
package/es/src/path-map.mjs
CHANGED
|
@@ -86,7 +86,9 @@ const e = {
|
|
|
86
86
|
ApUploadSingle: ["business", "ap-upload-file", "ap-upload-single"],
|
|
87
87
|
BatchInputGroup: ["business", "batch-input-group"],
|
|
88
88
|
ApFormControlRender: ["ap-form", "render"],
|
|
89
|
-
ApFormItemRender: ["ap-form", "render"]
|
|
89
|
+
ApFormItemRender: ["ap-form", "render"],
|
|
90
|
+
Portal: ["portal"],
|
|
91
|
+
FullScreen: ["full-screen"]
|
|
90
92
|
};
|
|
91
93
|
export {
|
|
92
94
|
e as default
|