@aplus-frontend/ui 0.1.2 → 0.1.3
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 -41
- package/es/src/business/ap-input-radio/ApInputRadio.vue.d.ts +37 -0
- package/es/src/business/ap-input-radio/ApInputRadio.vue.mjs +4 -0
- package/es/src/business/ap-input-radio/ApInputRadio.vue2.mjs +59 -0
- package/es/src/business/ap-input-radio/index.d.ts +3 -0
- package/es/src/business/ap-input-radio/interface.d.ts +14 -0
- package/es/src/business/ap-input-radio/style.css +7 -0
- package/es/src/business/index.d.ts +152 -1
- package/es/src/business/index.mjs +15 -12
- package/es/src/editable-table/hooks/use-get-columns.mjs +46 -64
- package/es/src/editable-table/interface.d.ts +2 -3
- package/es/src/editable-table/utils.d.ts +1 -0
- package/es/src/editable-table/utils.mjs +75 -35
- package/es/src/index.mjs +188 -187
- package/es/src/theme/ap-input-radio/ap-input-radio.css +7 -0
- package/lib/index.js +1 -1
- package/lib/src/business/ap-input-radio/ApInputRadio.vue.d.ts +37 -0
- package/lib/src/business/ap-input-radio/ApInputRadio.vue.js +1 -0
- package/lib/src/business/ap-input-radio/ApInputRadio.vue2.js +1 -0
- package/lib/src/business/ap-input-radio/index.d.ts +3 -0
- package/lib/src/business/ap-input-radio/interface.d.ts +14 -0
- package/lib/src/business/ap-input-radio/style.css +7 -0
- package/lib/src/business/index.d.ts +152 -1
- package/lib/src/business/index.js +1 -1
- package/lib/src/editable-table/hooks/use-get-columns.js +1 -1
- package/lib/src/editable-table/interface.d.ts +2 -3
- package/lib/src/editable-table/utils.d.ts +1 -0
- package/lib/src/editable-table/utils.js +1 -1
- package/lib/src/index.js +1 -1
- package/lib/src/theme/ap-input-radio/ap-input-radio.css +7 -0
- package/package.json +3 -3
|
@@ -29,10 +29,9 @@ export type EditableColumnType<RecordType = any, ValueType extends ApTableValueT
|
|
|
29
29
|
*/
|
|
30
30
|
valueEnum?: ValueEnum;
|
|
31
31
|
/**
|
|
32
|
-
*
|
|
33
|
-
* @deprecated 未实现,请使用`customRender`
|
|
32
|
+
* 自定义表单,适用于内置`valueType`不满足的情况下使用
|
|
34
33
|
*/
|
|
35
|
-
customRenderFormItem?: (config: EditableColumnType<RecordType, ValueType
|
|
34
|
+
customRenderFormItem?: (config: EditableColumnType<RecordType, ValueType>, fieldProps: Record<string, any>, editable: boolean) => any;
|
|
36
35
|
/**
|
|
37
36
|
* 指定值类型(将会用于普通列和可编辑表格的渲染)
|
|
38
37
|
*/
|
|
@@ -27,3 +27,4 @@ export declare function mergeClass(current: string, classNames?: string | string
|
|
|
27
27
|
* @param options
|
|
28
28
|
*/
|
|
29
29
|
export declare function scrollToRowIndex(index: number, container?: HTMLElement, options?: StandardBehaviorOptions): void;
|
|
30
|
+
export declare function getFinalNode(column: EditableColumnType, editable: boolean, innerProps: Record<string, any>, value: any): any;
|
|
@@ -1,50 +1,90 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
5
|
-
import
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
1
|
+
import { isVNode as f, createVNode as s, mergeProps as d } from "vue";
|
|
2
|
+
import { isFunction as n, isArray as p, isBoolean as a, omit as u } from "lodash-unified";
|
|
3
|
+
import { apTableFormItemMap as c, noRenderAsFormItemValueList as y, apTableRenderItemMap as m } from "../ap-table/constants.mjs";
|
|
4
|
+
import { isDef as b } from "../utils/index.mjs";
|
|
5
|
+
import { getValueStr as g } from "../ap-field/number/helper.mjs";
|
|
6
|
+
import T from "scroll-into-view-if-needed";
|
|
7
|
+
import { Typography as C } from "ant-design-vue";
|
|
8
|
+
import "../ap-form/index.mjs";
|
|
9
|
+
import I from "../ap-form/ap-form-item.vue.mjs";
|
|
10
|
+
function P(e) {
|
|
11
|
+
return typeof e == "function" || Object.prototype.toString.call(e) === "[object Object]" && !f(e);
|
|
12
|
+
}
|
|
13
|
+
function R(e) {
|
|
14
|
+
return c[e];
|
|
15
|
+
}
|
|
16
|
+
function _(e) {
|
|
17
|
+
if (!e.fieldProps)
|
|
14
18
|
return !1;
|
|
15
|
-
const
|
|
16
|
-
return
|
|
17
|
-
}
|
|
18
|
-
function
|
|
19
|
-
if (
|
|
20
|
-
return
|
|
21
|
-
if (
|
|
22
|
-
const o =
|
|
23
|
-
return
|
|
19
|
+
const r = n(e.fieldProps) ? e.fieldProps({}) : e.fieldProps;
|
|
20
|
+
return b(r.required) ? r.required : (p(r.rules) ? r.rules : r.rules ? [r.rules] : []).some((t) => t.required);
|
|
21
|
+
}
|
|
22
|
+
function F(e, r) {
|
|
23
|
+
if (e.valueType === "text" || e.valueType === "textArea")
|
|
24
|
+
return r || "--";
|
|
25
|
+
if (e.valueType === "number") {
|
|
26
|
+
const o = e.fieldProps ? n(e.fieldProps) ? e.fieldProps({}) : e.fieldProps : {};
|
|
27
|
+
return g(r, o) || "--";
|
|
24
28
|
}
|
|
25
|
-
return
|
|
29
|
+
return r;
|
|
26
30
|
}
|
|
27
|
-
function
|
|
28
|
-
const o = [
|
|
29
|
-
if (
|
|
30
|
-
const t =
|
|
31
|
+
function D(e, r) {
|
|
32
|
+
const o = [e];
|
|
33
|
+
if (r) {
|
|
34
|
+
const t = p(r) ? r : [r];
|
|
31
35
|
o.unshift(...t);
|
|
32
36
|
}
|
|
33
37
|
return o.join(" ");
|
|
34
38
|
}
|
|
35
|
-
function
|
|
36
|
-
const t =
|
|
37
|
-
console.log(t), t &&
|
|
39
|
+
function N(e, r = document.body, o = {}) {
|
|
40
|
+
const t = r.querySelectorAll("tr.ant-table-row")[e];
|
|
41
|
+
console.log(t), t && T(t, {
|
|
38
42
|
scrollMode: "if-needed",
|
|
39
43
|
block: "nearest",
|
|
40
44
|
behavior: "smooth",
|
|
41
45
|
...o
|
|
42
46
|
});
|
|
43
47
|
}
|
|
48
|
+
function V(e, r, o) {
|
|
49
|
+
return y.includes(e.valueType) ? o : e.copyable || e.ellipsis ? s(C.Paragraph, {
|
|
50
|
+
copyable: e.copyable ? {
|
|
51
|
+
text: r,
|
|
52
|
+
tooltip: !1
|
|
53
|
+
} : !1,
|
|
54
|
+
ellipsis: e.ellipsis ? a(e.ellipsis) ? {
|
|
55
|
+
tooltip: r
|
|
56
|
+
} : {
|
|
57
|
+
...e.ellipsis,
|
|
58
|
+
tooltip: r
|
|
59
|
+
} : !1,
|
|
60
|
+
content: e.ellipsis ? F(e, r) : o
|
|
61
|
+
}, null) : o;
|
|
62
|
+
}
|
|
63
|
+
function O(e, r, o, t) {
|
|
64
|
+
let l;
|
|
65
|
+
if (e.valueType)
|
|
66
|
+
if (r) {
|
|
67
|
+
const i = R(e.valueType);
|
|
68
|
+
l = s(i, o, null);
|
|
69
|
+
} else {
|
|
70
|
+
const i = m[e.valueType];
|
|
71
|
+
l = V(e, t, s(i, d(o.field, {
|
|
72
|
+
mode: "read"
|
|
73
|
+
}), null));
|
|
74
|
+
}
|
|
75
|
+
if (e.customRenderFormItem) {
|
|
76
|
+
const i = e.customRenderFormItem(e, o.field, r);
|
|
77
|
+
l = s(I, u(o, ["field"]), P(i) ? i : {
|
|
78
|
+
default: () => [i]
|
|
79
|
+
});
|
|
80
|
+
}
|
|
81
|
+
return l;
|
|
82
|
+
}
|
|
44
83
|
export {
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
84
|
+
_ as getColumnIsRequired,
|
|
85
|
+
R as getEditableComponent,
|
|
86
|
+
O as getFinalNode,
|
|
87
|
+
F as getRawDisplayValue,
|
|
88
|
+
D as mergeClass,
|
|
89
|
+
N as scrollToRowIndex
|
|
50
90
|
};
|
package/es/src/index.mjs
CHANGED
|
@@ -4,7 +4,7 @@ import { Scrollbar as C } from "./scroll-bar/index.mjs";
|
|
|
4
4
|
import { CollapseContainer as I, ScrollContainer as b } from "./container/index.mjs";
|
|
5
5
|
import { IconPicker as P } from "./icon-picker/index.mjs";
|
|
6
6
|
import "./locale/index.mjs";
|
|
7
|
-
import { BasicArrow as
|
|
7
|
+
import { BasicArrow as R, BasicHelp as h, BasicTitle as v } from "./basic/index.mjs";
|
|
8
8
|
import { ExpandTransition as M, ExpandXTransition as k, FadeTransition as w, ScaleRotateTransition as B, ScaleTransition as L, ScrollXReverseTransition as y, ScrollXTransition as E, ScrollYReverseTransition as N, ScrollYTransition as X, SlideXReverseTransition as K, SlideXTransition as Y, SlideYReverseTransition as O, SlideYTransition as H } from "./transition/index.mjs";
|
|
9
9
|
import { Description as z } from "./description/index.mjs";
|
|
10
10
|
import { Field as j } from "./pro-form/index.mjs";
|
|
@@ -29,188 +29,189 @@ import "./ap-download/index.mjs";
|
|
|
29
29
|
import { CheckCard as So } from "./check-card/index.mjs";
|
|
30
30
|
import { ApModal as bo } from "./ap-modal/index.mjs";
|
|
31
31
|
import "./ap-list/index.mjs";
|
|
32
|
-
import { ApExpandAlert as Po, ApExportGroup as Do, ApLabel as ho, ApSelectLayout as
|
|
32
|
+
import { ApExpandAlert as Po, ApExportGroup as Do, ApInputRadio as Ro, ApLabel as ho, ApSelectLayout as vo, ApStatus as Go, ApStatusGroup as Mo, ApTitle as ko } from "./business/index.mjs";
|
|
33
33
|
import "./ap-table/index.mjs";
|
|
34
34
|
import "./editable-table/index.mjs";
|
|
35
35
|
import "./ap-descriptions/index.mjs";
|
|
36
|
-
import { configProviderProps as
|
|
37
|
-
import { configProviderContextKey as
|
|
38
|
-
import { keysOf as
|
|
39
|
-
import { buildLocaleContext as
|
|
40
|
-
import { defaultNamespace as
|
|
41
|
-
import { ConfigProvider as
|
|
42
|
-
import { default as
|
|
43
|
-
import { default as
|
|
44
|
-
import { default as
|
|
45
|
-
import { useDescription as
|
|
46
|
-
import { useComponentRegister as
|
|
47
|
-
import { useForm as
|
|
48
|
-
import { isComponentFormSchema as
|
|
49
|
-
import { default as
|
|
50
|
-
import { default as
|
|
51
|
-
import { default as
|
|
52
|
-
import { default as
|
|
53
|
-
import { default as
|
|
36
|
+
import { configProviderProps as Bo } from "./config-provider/config-provider-props.mjs";
|
|
37
|
+
import { configProviderContextKey as yo, tableDefaultConfig as Eo } from "./config-provider/constants.mjs";
|
|
38
|
+
import { keysOf as Xo, provideGlobalConfig as Ko, useGlobalConfig as Yo } from "./config-provider/hooks/use-global-config.mjs";
|
|
39
|
+
import { buildLocaleContext as Ho, buildTranslator as Wo, localeContextKey as zo, translate as Uo, useLocale as jo } from "./config-provider/hooks/use-locale.mjs";
|
|
40
|
+
import { defaultNamespace as Jo, namespaceContextKey as Qo, useGetDerivedNamespace as Vo, useNamespace as Zo } from "./config-provider/hooks/use-namespace.mjs";
|
|
41
|
+
import { ConfigProvider as $o, globalConfigCached as oe } from "./config-provider/config-provider.mjs";
|
|
42
|
+
import { default as re } from "./locale/lang/zh-cn.mjs";
|
|
43
|
+
import { default as ae } from "./locale/lang/en.mjs";
|
|
44
|
+
import { default as fe } from "./transition/collapse-transition.vue.mjs";
|
|
45
|
+
import { useDescription as le } from "./description/use-description.mjs";
|
|
46
|
+
import { useComponentRegister as se } from "./pro-form/hooks/use-component-register.mjs";
|
|
47
|
+
import { useForm as xe } from "./pro-form/hooks/use-form.mjs";
|
|
48
|
+
import { isComponentFormSchema as ne, isSlotFormSchema as Ae } from "./pro-form/types/form.mjs";
|
|
49
|
+
import { default as Fe } from "./pro-form/components/api-cascader.vue.mjs";
|
|
50
|
+
import { default as Ce } from "./pro-form/components/api-radio-group.vue.mjs";
|
|
51
|
+
import { default as Ie } from "./pro-form/components/api-select.vue.mjs";
|
|
52
|
+
import { default as ge } from "./pro-form/components/api-transfer.vue.mjs";
|
|
53
|
+
import { default as De } from "./pro-form/components/api-tree.vue.mjs";
|
|
54
54
|
import { default as he } from "./pro-form/components/radio-button-group.vue.mjs";
|
|
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 { useModalContext as
|
|
62
|
-
import { useModal as
|
|
63
|
-
import { default as
|
|
64
|
-
import { default as
|
|
65
|
-
import { default as
|
|
66
|
-
import { default as
|
|
67
|
-
import { useTable as
|
|
68
|
-
import { ApFormItemText as
|
|
69
|
-
import { default as
|
|
70
|
-
import { default as
|
|
71
|
-
import { default as
|
|
72
|
-
import { default as
|
|
73
|
-
import { default as
|
|
74
|
-
import { default as
|
|
75
|
-
import { default as
|
|
76
|
-
import { default as
|
|
77
|
-
import { default as
|
|
78
|
-
import { default as
|
|
79
|
-
import { default as
|
|
80
|
-
import { default as
|
|
81
|
-
import { default as
|
|
82
|
-
import { default as
|
|
83
|
-
import { ApFieldText as
|
|
84
|
-
import { default as
|
|
85
|
-
import { default as
|
|
86
|
-
import { default as
|
|
87
|
-
import { default as
|
|
88
|
-
import { default as
|
|
89
|
-
import { default as
|
|
90
|
-
import { default as
|
|
91
|
-
import { default as
|
|
92
|
-
import { default as
|
|
93
|
-
import { default as
|
|
94
|
-
import { default as
|
|
95
|
-
import { default as
|
|
96
|
-
import { default as
|
|
97
|
-
import { default as
|
|
98
|
-
import { default as
|
|
99
|
-
import { default as
|
|
100
|
-
import { generateTableList as
|
|
101
|
-
import { useCacheColumnSetting as
|
|
102
|
-
import { default as
|
|
103
|
-
import { default as
|
|
104
|
-
import { DictCode as
|
|
105
|
-
import { createWorkOrderModal as
|
|
106
|
-
import { default as
|
|
107
|
-
import { default as
|
|
108
|
-
import { default as
|
|
109
|
-
import { default as
|
|
110
|
-
import { NeedNameKeyDefault as
|
|
111
|
-
import { default as
|
|
112
|
-
import { default as
|
|
113
|
-
import { default as
|
|
114
|
-
import { default as
|
|
115
|
-
import { useTablePaging as
|
|
116
|
-
import { default as
|
|
117
|
-
import { default as
|
|
118
|
-
import { default as
|
|
119
|
-
import { default as
|
|
55
|
+
import { default as Ge } from "./pro-form/pro-form.vue.mjs";
|
|
56
|
+
import { default as ke } from "./pro-form/components/api-tree-select.vue.mjs";
|
|
57
|
+
import { default as Be } from "./pro-form/table-form.vue.mjs";
|
|
58
|
+
import { default as ye } from "./pro-form/table-form-inner.vue.mjs";
|
|
59
|
+
import { default as Ne } from "./base-button/modal-button.vue.mjs";
|
|
60
|
+
import { default as Ke } from "./base-button/pop-confirm-button.vue.mjs";
|
|
61
|
+
import { useModalContext as Oe } from "./modal/hooks/use-modal-context.mjs";
|
|
62
|
+
import { useModal as We, useModalInner as ze } from "./modal/hooks/use-modal.mjs";
|
|
63
|
+
import { default as je } from "./pro-table/pro-table.vue.mjs";
|
|
64
|
+
import { default as Je } from "./pro-table/components/table-action.vue.mjs";
|
|
65
|
+
import { default as Ve } from "./pro-table/components/edit-table-header-icon.vue.mjs";
|
|
66
|
+
import { default as _e } from "./pro-table/components/table-image.vue.mjs";
|
|
67
|
+
import { useTable as or } from "./pro-table/hooks/use-table.mjs";
|
|
68
|
+
import { ApFormItemText as rr } from "./ap-form/items/text/index.mjs";
|
|
69
|
+
import { default as ar } from "./ap-form/items/text-area/index.vue.mjs";
|
|
70
|
+
import { default as fr } from "./ap-form/items/number/index.vue.mjs";
|
|
71
|
+
import { default as lr } from "./ap-form/items/date/index.vue.mjs";
|
|
72
|
+
import { default as sr } from "./ap-form/items/date-range/index.vue.mjs";
|
|
73
|
+
import { default as xr } from "./ap-form/items/radio/index.vue.mjs";
|
|
74
|
+
import { default as nr } from "./ap-form/items/select/index.vue.mjs";
|
|
75
|
+
import { default as cr } from "./ap-form/items/switch/index.vue.mjs";
|
|
76
|
+
import { default as Tr } from "./ap-form/items/checkbox/index.vue.mjs";
|
|
77
|
+
import { default as Sr } from "./ap-form/items/text/password.vue.mjs";
|
|
78
|
+
import { default as br } from "./ap-form/ap-form-item.vue.mjs";
|
|
79
|
+
import { default as Pr } from "./ap-form/ap-form-item-group/index.vue.mjs";
|
|
80
|
+
import { default as Rr } from "./ap-form/ap-form-list.vue.mjs";
|
|
81
|
+
import { default as vr } from "./ap-form/search-form/index.vue.mjs";
|
|
82
|
+
import { default as Mr } from "./ap-form/modal-form/index.vue.mjs";
|
|
83
|
+
import { ApFieldText as wr } from "./ap-field/text/index.mjs";
|
|
84
|
+
import { default as Lr } from "./ap-field/checkbox/index.vue.mjs";
|
|
85
|
+
import { default as Er } from "./ap-field/date/index.vue.mjs";
|
|
86
|
+
import { default as Xr } from "./ap-field/number/index.vue.mjs";
|
|
87
|
+
import { default as Yr } from "./ap-field/radio/index.vue.mjs";
|
|
88
|
+
import { default as Hr } from "./ap-field/switch/index.vue.mjs";
|
|
89
|
+
import { default as zr } from "./ap-field/text-area/index.vue.mjs";
|
|
90
|
+
import { default as jr } from "./ap-field/date-range/index.vue.mjs";
|
|
91
|
+
import { default as Jr } from "./ap-field/select/index.vue.mjs";
|
|
92
|
+
import { default as Vr } from "./ap-field/text/password.vue.mjs";
|
|
93
|
+
import { default as _r } from "./ap-field/slider/index.vue.mjs";
|
|
94
|
+
import { default as ot } from "./ap-field/segmented/index.vue.mjs";
|
|
95
|
+
import { default as rt } from "./ap-field/rate/index.vue.mjs";
|
|
96
|
+
import { default as at } from "./ap-action/item-modal/index.vue.mjs";
|
|
97
|
+
import { default as ft } from "./ap-action/item-popconfirm/index.vue.mjs";
|
|
98
|
+
import { default as lt } from "./ap-action/item-dropdown/index.vue.mjs";
|
|
99
|
+
import { default as st } from "./ap-action/group/index.vue.mjs";
|
|
100
|
+
import { generateTableList as xt } from "./ap-custom-column/utils.mjs";
|
|
101
|
+
import { useCacheColumnSetting as nt } from "./ap-custom-column/useCacheColumnSetting.mjs";
|
|
102
|
+
import { default as ct } from "./ap-custom-column/custom-column.vue.mjs";
|
|
103
|
+
import { default as Tt } from "./ap-custom-column/column-select.vue.mjs";
|
|
104
|
+
import { DictCode as St } from "./work-order-modal/interfaces.mjs";
|
|
105
|
+
import { createWorkOrderModal as bt } from "./work-order-modal/createWorkOrder.mjs";
|
|
106
|
+
import { default as Pt } from "./work-order-modal/work-order-modal.vue.mjs";
|
|
107
|
+
import { default as Rt } from "./ap-tag/ap-tag.vue.mjs";
|
|
108
|
+
import { default as vt } from "./ap-tag/ap-tag-group.vue.mjs";
|
|
109
|
+
import { default as Mt } from "./ap-layout/ap-info-layout/ap-info-layout.vue.mjs";
|
|
110
|
+
import { NeedNameKeyDefault as wt } from "./ap-upload/apUploadTypes.mjs";
|
|
111
|
+
import { default as Lt } from "./ap-upload/apUpload.vue.mjs";
|
|
112
|
+
import { default as Et } from "./ap-download/ap-download.vue.mjs";
|
|
113
|
+
import { default as Xt } from "./check-card/group.vue.mjs";
|
|
114
|
+
import { default as Yt } from "./ap-list/index.vue.mjs";
|
|
115
|
+
import { useTablePaging as Ht } from "./ap-table/hooks/use-table-paging.mjs";
|
|
116
|
+
import { default as zt } from "./ap-table/ap-table.vue.mjs";
|
|
117
|
+
import { default as jt } from "./editable-table/index.vue.mjs";
|
|
118
|
+
import { default as Jt } from "./editable-table/form-item.vue.mjs";
|
|
119
|
+
import { default as Vt } from "./ap-descriptions/ap-descriptions.vue.mjs";
|
|
120
120
|
export {
|
|
121
121
|
F as APConfigProvider,
|
|
122
|
-
|
|
122
|
+
st as ApActionGroup,
|
|
123
123
|
To as ApActionItem,
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
124
|
+
lt as ApActionItemDropdown,
|
|
125
|
+
at as ApActionItemModal,
|
|
126
|
+
ft as ApActionItemPopconfirm,
|
|
127
|
+
ct as ApCustomColumn,
|
|
128
|
+
Tt as ApCustomSelect,
|
|
129
|
+
Vt as ApDescriptions,
|
|
130
|
+
Et as ApDownload,
|
|
131
131
|
Po as ApExpandAlert,
|
|
132
132
|
Do as ApExportGroup,
|
|
133
133
|
uo as ApField,
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
134
|
+
Lr as ApFieldCheckbox,
|
|
135
|
+
Er as ApFieldDate,
|
|
136
|
+
jr as ApFieldDateRange,
|
|
137
|
+
Xr as ApFieldNumber,
|
|
138
|
+
Vr as ApFieldPassword,
|
|
139
|
+
Yr as ApFieldRadio,
|
|
140
|
+
rt as ApFieldRate,
|
|
141
|
+
ot as ApFieldSegmented,
|
|
142
|
+
Jr as ApFieldSelect,
|
|
143
|
+
_r as ApFieldSlider,
|
|
144
|
+
Hr as ApFieldSwitch,
|
|
145
|
+
wr as ApFieldText,
|
|
146
|
+
zr as ApFieldTextArea,
|
|
147
147
|
io as ApForm,
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
148
|
+
br as ApFormItem,
|
|
149
|
+
Tr as ApFormItemCheckbox,
|
|
150
|
+
lr as ApFormItemDate,
|
|
151
|
+
sr as ApFormItemDateRange,
|
|
152
|
+
Pr as ApFormItemGroup,
|
|
153
|
+
fr as ApFormItemNumber,
|
|
154
|
+
xr as ApFormItemRadio,
|
|
155
|
+
nr as ApFormItemSelect,
|
|
156
|
+
cr as ApFormItemSwitch,
|
|
157
|
+
rr as ApFormItemText,
|
|
158
|
+
ar as ApFormItemTextArea,
|
|
159
|
+
Sr as ApFormItemTextPassword,
|
|
160
|
+
Rr as ApFormList,
|
|
161
|
+
Mr as ApFormModalForm,
|
|
162
|
+
vr as ApFormSearchForm,
|
|
163
|
+
Mt as ApInfoLayout,
|
|
164
|
+
Ro as ApInputRadio,
|
|
164
165
|
ho as ApLabel,
|
|
165
|
-
|
|
166
|
+
Yt as ApList,
|
|
166
167
|
bo as ApModal,
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
168
|
+
vo as ApSelectLayout,
|
|
169
|
+
Go as ApStatus,
|
|
170
|
+
Mo as ApStatusGroup,
|
|
171
|
+
zt as ApTable,
|
|
172
|
+
Rt as ApTag,
|
|
173
|
+
vt as ApTagGroup,
|
|
174
|
+
ko as ApTitle,
|
|
175
|
+
Lt as ApUpload,
|
|
176
|
+
Fe as ApiCascader,
|
|
177
|
+
Ce as ApiRadioGroup,
|
|
178
|
+
Ie as ApiSelect,
|
|
179
|
+
ge as ApiTransfer,
|
|
180
|
+
De as ApiTree,
|
|
181
|
+
ke as ApiTreeSelect,
|
|
181
182
|
J as BaseButton,
|
|
182
183
|
_ as BaseModal,
|
|
183
|
-
|
|
184
|
-
|
|
184
|
+
R as BasicArrow,
|
|
185
|
+
h as BasicHelp,
|
|
185
186
|
v as BasicTitle,
|
|
186
187
|
So as CheckCard,
|
|
187
|
-
|
|
188
|
+
Xt as CheckCardGroup,
|
|
188
189
|
I as CollapseContainer,
|
|
189
|
-
|
|
190
|
-
|
|
190
|
+
fe as CollapseTransition,
|
|
191
|
+
$o as ConfigProvider,
|
|
191
192
|
to as CountdownButton,
|
|
192
193
|
ao as CountdownInput,
|
|
193
194
|
oo as CropperAvatar,
|
|
194
195
|
eo as CropperImage,
|
|
195
196
|
z as Description,
|
|
196
|
-
|
|
197
|
+
St as DictCode,
|
|
197
198
|
lo as Dropdown,
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
199
|
+
Ve as EditTableHeaderIcon,
|
|
200
|
+
jt as EditableTable,
|
|
201
|
+
Jt as EditableTableFormItem,
|
|
201
202
|
M as ExpandTransition,
|
|
202
203
|
k as ExpandXTransition,
|
|
203
204
|
w as FadeTransition,
|
|
204
205
|
j as Field,
|
|
205
206
|
n as Icon,
|
|
206
207
|
P as IconPicker,
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
208
|
+
Ne as ModalButton,
|
|
209
|
+
wt as NeedNameKeyDefault,
|
|
210
|
+
Ke as PopConfirmButton,
|
|
211
|
+
Ge as ProForm,
|
|
212
|
+
je as ProTable,
|
|
213
|
+
Be as ProTableForm,
|
|
214
|
+
ye as ProTableFormInner,
|
|
214
215
|
he as RadioButtonGroup,
|
|
215
216
|
B as ScaleRotateTransition,
|
|
216
217
|
L as ScaleTransition,
|
|
@@ -226,41 +227,41 @@ export {
|
|
|
226
227
|
H as SlideYTransition,
|
|
227
228
|
V as StrengthMeter,
|
|
228
229
|
A as SvgIcon,
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
230
|
+
Je as TableAction,
|
|
231
|
+
_e as TableImg,
|
|
232
|
+
Pt as WorkOrderModal,
|
|
232
233
|
Ao as adminToken,
|
|
233
234
|
co as aplusToken,
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
235
|
+
Ho as buildLocaleContext,
|
|
236
|
+
Wo as buildTranslator,
|
|
237
|
+
yo as configProviderContextKey,
|
|
238
|
+
Bo as configProviderProps,
|
|
238
239
|
fo as createPrompt,
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
240
|
+
bt as createWorkOrderModal,
|
|
241
|
+
Jo as defaultNamespace,
|
|
242
|
+
ae as en,
|
|
243
|
+
xt as generateTableList,
|
|
244
|
+
oe as globalConfigCached,
|
|
245
|
+
ne as isComponentFormSchema,
|
|
246
|
+
Ae as isSlotFormSchema,
|
|
247
|
+
Xo as keysOf,
|
|
248
|
+
zo as localeContextKey,
|
|
249
|
+
Qo as namespaceContextKey,
|
|
250
|
+
Ko as provideGlobalConfig,
|
|
251
|
+
Eo as tableDefaultConfig,
|
|
252
|
+
Uo as translate,
|
|
253
|
+
nt as useCacheColumnSetting,
|
|
254
|
+
se as useComponentRegister,
|
|
255
|
+
le as useDescription,
|
|
256
|
+
xe as useForm,
|
|
257
|
+
Vo as useGetDerivedNamespace,
|
|
258
|
+
Yo as useGlobalConfig,
|
|
259
|
+
jo as useLocale,
|
|
260
|
+
We as useModal,
|
|
261
|
+
Oe as useModalContext,
|
|
262
|
+
ze as useModalInner,
|
|
263
|
+
Zo as useNamespace,
|
|
264
|
+
or as useTable,
|
|
265
|
+
Ht as useTablePaging,
|
|
266
|
+
re as zhCn
|
|
266
267
|
};
|