@aplus-frontend/ui 0.1.14 → 0.1.16
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 +56 -54
- package/es/src/ap-table/ap-table.vue.mjs +132 -129
- package/es/src/ap-table/interface.d.ts +20 -13
- package/es/src/ap-table/utils.d.ts +8340 -1
- package/es/src/ap-table/utils.mjs +135 -79
- package/es/src/business/ap-input-radio/ApInputRadio.vue2.mjs +31 -28
- package/es/src/business/ap-input-radio/interface.d.ts +1 -1
- package/es/src/business/ap-label/style.css +3 -0
- package/es/src/business/ap-status/ApStatusGroup.vue2.mjs +12 -14
- package/es/src/business/index.d.ts +2 -2
- package/es/src/business/index.mjs +20 -18
- package/es/src/config-provider/config-provider-props.d.ts +5 -1
- package/es/src/config-provider/config-provider-props.mjs +4 -0
- package/es/src/config-provider/config-provider.d.ts +10 -1
- package/es/src/config-provider/config-provider.mjs +18 -17
- package/es/src/config-provider/constants.d.ts +6 -2
- package/es/src/config-provider/hooks/use-global-config.d.ts +5 -1
- package/es/src/config-provider/index.d.ts +20 -1
- package/es/src/editable-table/form-item.vue.mjs +85 -72
- package/es/src/editable-table/index.vue.d.ts +1 -0
- package/es/src/editable-table/index.vue.mjs +118 -95
- package/es/src/editable-table/interface.d.ts +6 -1
- package/es/src/editable-table/utils.mjs +31 -30
- package/es/src/hooks/useControllableValue.mjs +3 -0
- package/es/src/index.mjs +45 -43
- package/es/src/theme/antd-global-overwrite/admin/form.css +10 -12
- package/es/src/theme/antd-global-overwrite/admin/index.css +117 -45
- package/es/src/theme/antd-global-overwrite/admin/pagination.css +54 -16
- package/es/src/theme/antd-global-overwrite/admin/table.css +53 -17
- package/es/src/theme/antd-global-overwrite/aplus/form.css +28 -21
- package/es/src/theme/antd-global-overwrite/aplus/index.css +159 -74
- package/es/src/theme/antd-global-overwrite/aplus/pagination.css +66 -20
- package/es/src/theme/antd-global-overwrite/aplus/table.css +65 -33
- package/es/src/theme/ap-label/ap-label.css +3 -0
- package/es/src/utils/ap-trans-data/index.d.ts +11 -0
- package/es/src/utils/ap-trans-data/index.mjs +20 -0
- package/lib/index.js +1 -1
- package/lib/src/ap-table/ap-table.vue.js +1 -1
- package/lib/src/ap-table/interface.d.ts +20 -13
- package/lib/src/ap-table/utils.d.ts +8340 -1
- package/lib/src/ap-table/utils.js +1 -1
- package/lib/src/business/ap-input-radio/ApInputRadio.vue2.js +1 -1
- package/lib/src/business/ap-input-radio/interface.d.ts +1 -1
- package/lib/src/business/ap-label/style.css +3 -0
- package/lib/src/business/ap-status/ApStatusGroup.vue2.js +1 -1
- package/lib/src/business/index.d.ts +2 -2
- package/lib/src/business/index.js +1 -1
- package/lib/src/config-provider/config-provider-props.d.ts +5 -1
- package/lib/src/config-provider/config-provider-props.js +1 -1
- package/lib/src/config-provider/config-provider.d.ts +10 -1
- package/lib/src/config-provider/config-provider.js +1 -1
- package/lib/src/config-provider/constants.d.ts +6 -2
- package/lib/src/config-provider/hooks/use-global-config.d.ts +5 -1
- package/lib/src/config-provider/index.d.ts +20 -1
- package/lib/src/editable-table/form-item.vue.js +1 -1
- package/lib/src/editable-table/index.vue.d.ts +1 -0
- package/lib/src/editable-table/index.vue.js +1 -1
- package/lib/src/editable-table/interface.d.ts +6 -1
- package/lib/src/editable-table/utils.js +1 -1
- package/lib/src/hooks/useControllableValue.js +1 -1
- package/lib/src/index.js +1 -1
- package/lib/src/theme/antd-global-overwrite/admin/form.css +10 -12
- package/lib/src/theme/antd-global-overwrite/admin/index.css +117 -45
- package/lib/src/theme/antd-global-overwrite/admin/pagination.css +54 -16
- package/lib/src/theme/antd-global-overwrite/admin/table.css +53 -17
- package/lib/src/theme/antd-global-overwrite/aplus/form.css +28 -21
- package/lib/src/theme/antd-global-overwrite/aplus/index.css +159 -74
- package/lib/src/theme/antd-global-overwrite/aplus/pagination.css +66 -20
- package/lib/src/theme/antd-global-overwrite/aplus/table.css +65 -33
- package/lib/src/theme/ap-label/ap-label.css +3 -0
- package/lib/src/utils/ap-trans-data/index.d.ts +11 -0
- package/lib/src/utils/ap-trans-data/index.js +1 -0
- package/package.json +3 -3
|
@@ -1,42 +1,43 @@
|
|
|
1
|
-
import { isVNode as f, createVNode as
|
|
2
|
-
import { isFunction as
|
|
3
|
-
import { apTableFormItemMap as c, noRenderAsFormItemValueList as
|
|
1
|
+
import { isVNode as f, createVNode as n, mergeProps as d } from "vue";
|
|
2
|
+
import { isFunction as p, isArray as s, isBoolean as a, omit as u } from "lodash-unified";
|
|
3
|
+
import { apTableFormItemMap as c, noRenderAsFormItemValueList as m, apTableRenderItemMap as y } from "../ap-table/constants.mjs";
|
|
4
4
|
import { isDef as b } from "../utils/index.mjs";
|
|
5
5
|
import { getValueStr as g } from "../ap-field/number/helper.mjs";
|
|
6
6
|
import T from "scroll-into-view-if-needed";
|
|
7
7
|
import { Typography as C } from "ant-design-vue";
|
|
8
8
|
import "../ap-form/index.mjs";
|
|
9
|
-
import I from "../ap-
|
|
10
|
-
|
|
9
|
+
import { objectToString as I } from "../ap-table/utils.mjs";
|
|
10
|
+
import P from "../ap-form/ap-form-item.vue.mjs";
|
|
11
|
+
function R(e) {
|
|
11
12
|
return typeof e == "function" || Object.prototype.toString.call(e) === "[object Object]" && !f(e);
|
|
12
13
|
}
|
|
13
|
-
function
|
|
14
|
+
function F(e) {
|
|
14
15
|
return c[e];
|
|
15
16
|
}
|
|
16
|
-
function
|
|
17
|
+
function N(e) {
|
|
17
18
|
if (!e.fieldProps)
|
|
18
19
|
return !1;
|
|
19
|
-
const r =
|
|
20
|
-
return b(r.required) ? r.required : (
|
|
20
|
+
const r = p(e.fieldProps) ? e.fieldProps({}) : e.fieldProps;
|
|
21
|
+
return b(r.required) ? r.required : (s(r.rules) ? r.rules : r.rules ? [r.rules] : []).some((t) => t.required);
|
|
21
22
|
}
|
|
22
|
-
function
|
|
23
|
+
function V(e, r) {
|
|
23
24
|
if (e.valueType === "text" || e.valueType === "textArea")
|
|
24
25
|
return r || "--";
|
|
25
26
|
if (e.valueType === "number") {
|
|
26
|
-
const o = e.fieldProps ?
|
|
27
|
+
const o = e.fieldProps ? p(e.fieldProps) ? e.fieldProps({}) : e.fieldProps : {};
|
|
27
28
|
return g(r, o) || "--";
|
|
28
29
|
}
|
|
29
|
-
return r;
|
|
30
|
+
return I(r);
|
|
30
31
|
}
|
|
31
|
-
function
|
|
32
|
+
function O(e, r) {
|
|
32
33
|
const o = [e];
|
|
33
34
|
if (r) {
|
|
34
|
-
const t =
|
|
35
|
+
const t = s(r) ? r : [r];
|
|
35
36
|
o.unshift(...t);
|
|
36
37
|
}
|
|
37
38
|
return o.join(" ");
|
|
38
39
|
}
|
|
39
|
-
function
|
|
40
|
+
function k(e, r = document.body, o = {}) {
|
|
40
41
|
const t = r.querySelectorAll("tr.ant-table-row")[e];
|
|
41
42
|
t && T(t, {
|
|
42
43
|
scrollMode: "if-needed",
|
|
@@ -45,8 +46,8 @@ function N(e, r = document.body, o = {}) {
|
|
|
45
46
|
...o
|
|
46
47
|
});
|
|
47
48
|
}
|
|
48
|
-
function
|
|
49
|
-
return
|
|
49
|
+
function h(e, r, o) {
|
|
50
|
+
return m.includes(e.valueType) ? o : e.copyable || e.ellipsis ? n(C.Paragraph, {
|
|
50
51
|
copyable: e.copyable ? {
|
|
51
52
|
text: r,
|
|
52
53
|
tooltip: !1
|
|
@@ -57,34 +58,34 @@ function V(e, r, o) {
|
|
|
57
58
|
...e.ellipsis,
|
|
58
59
|
tooltip: r
|
|
59
60
|
} : !1,
|
|
60
|
-
content: e.ellipsis ?
|
|
61
|
+
content: e.ellipsis ? V(e, r) : o
|
|
61
62
|
}, null) : o;
|
|
62
63
|
}
|
|
63
|
-
function
|
|
64
|
+
function B(e, r, o, t) {
|
|
64
65
|
let l;
|
|
65
66
|
if (e.valueType)
|
|
66
67
|
if (r) {
|
|
67
|
-
const i =
|
|
68
|
-
l =
|
|
68
|
+
const i = F(e.valueType);
|
|
69
|
+
l = n(i, o, null);
|
|
69
70
|
} else {
|
|
70
|
-
const i =
|
|
71
|
-
l =
|
|
71
|
+
const i = y[e.valueType];
|
|
72
|
+
l = h(e, t, n(i, d(o.field, {
|
|
72
73
|
mode: "read"
|
|
73
74
|
}), null));
|
|
74
75
|
}
|
|
75
76
|
if (e.customRenderFormItem) {
|
|
76
77
|
const i = e.customRenderFormItem(e, o.field, r);
|
|
77
|
-
l =
|
|
78
|
+
l = n(P, u(o, ["field"]), R(i) ? i : {
|
|
78
79
|
default: () => [i]
|
|
79
80
|
});
|
|
80
81
|
}
|
|
81
82
|
return l;
|
|
82
83
|
}
|
|
83
84
|
export {
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
85
|
+
N as getColumnIsRequired,
|
|
86
|
+
F as getEditableComponent,
|
|
87
|
+
B as getFinalNode,
|
|
88
|
+
V as getRawDisplayValue,
|
|
89
|
+
O as mergeClass,
|
|
90
|
+
k as scrollToRowIndex
|
|
90
91
|
};
|
package/es/src/index.mjs
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { Icon as n, SvgIcon as A } from "./icon/index.mjs";
|
|
2
|
-
import { APConfigProvider as
|
|
2
|
+
import { APConfigProvider as T } from "./config-provider/index.mjs";
|
|
3
3
|
import { Scrollbar as C } from "./scroll-bar/index.mjs";
|
|
4
4
|
import { CollapseContainer as I, ScrollContainer as b } from "./container/index.mjs";
|
|
5
|
-
import { IconPicker as
|
|
5
|
+
import { IconPicker as D } from "./icon-picker/index.mjs";
|
|
6
6
|
import "./locale/index.mjs";
|
|
7
7
|
import { BasicArrow as h, BasicHelp as R, BasicTitle as v } from "./basic/index.mjs";
|
|
8
|
-
import { ExpandTransition as w, ExpandXTransition as B, FadeTransition as M, ScaleRotateTransition as k, ScaleTransition as L, ScrollXReverseTransition as N, ScrollXTransition as y, ScrollYReverseTransition as E, ScrollYTransition as K, SlideXReverseTransition as X, SlideXTransition as Y, SlideYReverseTransition as
|
|
8
|
+
import { ExpandTransition as w, ExpandXTransition as B, FadeTransition as M, ScaleRotateTransition as k, ScaleTransition as L, ScrollXReverseTransition as N, ScrollXTransition as y, ScrollYReverseTransition as E, ScrollYTransition as K, SlideXReverseTransition as X, SlideXTransition as Y, SlideYReverseTransition as H, SlideYTransition as O } 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";
|
|
11
11
|
import { BaseButton as J } from "./base-button/index.mjs";
|
|
@@ -19,7 +19,7 @@ import "./pro-table/index.mjs";
|
|
|
19
19
|
import { ApForm as io } from "./ap-form/index.mjs";
|
|
20
20
|
import { ApField as uo } from "./ap-field/index.mjs";
|
|
21
21
|
import { adminToken as Ao, aplusToken as co } from "./design-token/index.mjs";
|
|
22
|
-
import { ApActionItem as
|
|
22
|
+
import { ApActionItem as Fo } from "./ap-action/index.mjs";
|
|
23
23
|
import "./ap-custom-column/index.mjs";
|
|
24
24
|
import "./work-order-modal/index.mjs";
|
|
25
25
|
import "./ap-tag/index.mjs";
|
|
@@ -29,13 +29,13 @@ 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 { ApBatchAction as
|
|
32
|
+
import { ApBatchAction as Do, ApExpandAlert as Po, ApExportGroup as ho, ApInputRadio as Ro, ApLabel as vo, ApLabelGroup as Go, ApSelectLayout as wo, ApStatus as Bo, 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
36
|
import { configProviderProps as No } from "./config-provider/config-provider-props.mjs";
|
|
37
37
|
import { configProviderContextKey as Eo, tableDefaultConfig as Ko } from "./config-provider/constants.mjs";
|
|
38
|
-
import { keysOf as Yo, provideGlobalConfig as
|
|
38
|
+
import { keysOf as Yo, provideGlobalConfig as Ho, useGlobalConfig as Oo } from "./config-provider/hooks/use-global-config.mjs";
|
|
39
39
|
import { buildLocaleContext as zo, buildTranslator as Uo, localeContextKey as jo, translate as qo, useLocale as Jo } from "./config-provider/hooks/use-locale.mjs";
|
|
40
40
|
import { defaultNamespace as Vo, namespaceContextKey as Zo, useGetDerivedNamespace as _o, useNamespace as $o } from "./config-provider/hooks/use-namespace.mjs";
|
|
41
41
|
import { ConfigProvider as ee, globalConfigCached as re } from "./config-provider/config-provider.mjs";
|
|
@@ -45,11 +45,11 @@ import { default as le } from "./transition/collapse-transition.vue.mjs";
|
|
|
45
45
|
import { useDescription as se } from "./description/use-description.mjs";
|
|
46
46
|
import { useComponentRegister as xe } from "./pro-form/hooks/use-component-register.mjs";
|
|
47
47
|
import { useForm as ne } from "./pro-form/hooks/use-form.mjs";
|
|
48
|
-
import { isComponentFormSchema as ce, isSlotFormSchema as
|
|
48
|
+
import { isComponentFormSchema as ce, isSlotFormSchema as Te } from "./pro-form/types/form.mjs";
|
|
49
49
|
import { default as Ce } from "./pro-form/components/api-cascader.vue.mjs";
|
|
50
50
|
import { default as Ie } from "./pro-form/components/api-radio-group.vue.mjs";
|
|
51
51
|
import { default as ge } from "./pro-form/components/api-select.vue.mjs";
|
|
52
|
-
import { default as
|
|
52
|
+
import { default as Pe } from "./pro-form/components/api-transfer.vue.mjs";
|
|
53
53
|
import { default as Re } from "./pro-form/components/api-tree.vue.mjs";
|
|
54
54
|
import { default as Ge } from "./pro-form/components/radio-button-group.vue.mjs";
|
|
55
55
|
import { default as Be } from "./pro-form/pro-form.vue.mjs";
|
|
@@ -57,7 +57,7 @@ import { default as ke } from "./pro-form/components/api-tree-select.vue.mjs";
|
|
|
57
57
|
import { default as Ne } from "./pro-form/table-form.vue.mjs";
|
|
58
58
|
import { default as Ee } from "./pro-form/table-form-inner.vue.mjs";
|
|
59
59
|
import { default as Xe } from "./base-button/modal-button.vue.mjs";
|
|
60
|
-
import { default as
|
|
60
|
+
import { default as He } from "./base-button/pop-confirm-button.vue.mjs";
|
|
61
61
|
import { useModalContext as We } from "./modal/hooks/use-modal-context.mjs";
|
|
62
62
|
import { useModal as Ue, useModalInner as je } from "./modal/hooks/use-modal.mjs";
|
|
63
63
|
import { default as Je } from "./pro-table/pro-table.vue.mjs";
|
|
@@ -72,10 +72,10 @@ import { default as sr } from "./ap-form/items/date/index.vue.mjs";
|
|
|
72
72
|
import { default as xr } from "./ap-form/items/date-range/index.vue.mjs";
|
|
73
73
|
import { default as nr } from "./ap-form/items/radio/index.vue.mjs";
|
|
74
74
|
import { default as cr } from "./ap-form/items/select/index.vue.mjs";
|
|
75
|
-
import { default as
|
|
75
|
+
import { default as Fr } from "./ap-form/items/switch/index.vue.mjs";
|
|
76
76
|
import { default as Sr } from "./ap-form/items/checkbox/index.vue.mjs";
|
|
77
77
|
import { default as br } from "./ap-form/items/text/password.vue.mjs";
|
|
78
|
-
import { default as
|
|
78
|
+
import { default as Dr } from "./ap-form/ap-form-item.vue.mjs";
|
|
79
79
|
import { default as hr } from "./ap-form/ap-form-item-group/index.vue.mjs";
|
|
80
80
|
import { default as vr } from "./ap-form/ap-form-list.vue.mjs";
|
|
81
81
|
import { default as wr } from "./ap-form/search-form/index.vue.mjs";
|
|
@@ -84,7 +84,7 @@ import { ApFieldText as Lr } from "./ap-field/text/index.mjs";
|
|
|
84
84
|
import { default as yr } from "./ap-field/checkbox/index.vue.mjs";
|
|
85
85
|
import { default as Kr } from "./ap-field/date/index.vue.mjs";
|
|
86
86
|
import { default as Yr } from "./ap-field/number/index.vue.mjs";
|
|
87
|
-
import { default as
|
|
87
|
+
import { default as Or } from "./ap-field/radio/index.vue.mjs";
|
|
88
88
|
import { default as zr } from "./ap-field/switch/index.vue.mjs";
|
|
89
89
|
import { default as jr } from "./ap-field/text-area/index.vue.mjs";
|
|
90
90
|
import { default as Jr } from "./ap-field/date-range/index.vue.mjs";
|
|
@@ -99,10 +99,10 @@ import { default as st } from "./ap-action/item-dropdown/index.vue.mjs";
|
|
|
99
99
|
import { default as xt } from "./ap-action/group/index.vue.mjs";
|
|
100
100
|
import { generateTableList as nt } from "./ap-custom-column/utils.mjs";
|
|
101
101
|
import { useCacheColumnSetting as ct } from "./ap-custom-column/useCacheColumnSetting.mjs";
|
|
102
|
-
import { default as
|
|
102
|
+
import { default as Ft } from "./ap-custom-column/custom-column.vue.mjs";
|
|
103
103
|
import { default as St } from "./ap-custom-column/column-select.vue.mjs";
|
|
104
104
|
import { DictCode as bt } from "./work-order-modal/interfaces.mjs";
|
|
105
|
-
import { createWorkOrderModal as
|
|
105
|
+
import { createWorkOrderModal as Dt } from "./work-order-modal/createWorkOrder.mjs";
|
|
106
106
|
import { default as ht } from "./work-order-modal/work-order-modal.vue.mjs";
|
|
107
107
|
import { default as vt } from "./ap-tag/ap-tag.vue.mjs";
|
|
108
108
|
import { default as wt } from "./ap-tag/ap-tag-group.vue.mjs";
|
|
@@ -111,27 +111,28 @@ import { NeedNameKeyDefault as Lt } from "./ap-upload/apUploadTypes.mjs";
|
|
|
111
111
|
import { default as yt } from "./ap-upload/apUpload.vue.mjs";
|
|
112
112
|
import { ApDownLoadNeedNameKeyDefault as Kt } from "./ap-download/interface.mjs";
|
|
113
113
|
import { default as Yt } from "./ap-download/ap-download.vue.mjs";
|
|
114
|
-
import { default as
|
|
114
|
+
import { default as Ot } from "./check-card/group.vue.mjs";
|
|
115
115
|
import { default as zt } from "./ap-list/index.vue.mjs";
|
|
116
|
-
import {
|
|
117
|
-
import {
|
|
118
|
-
import { default as Vt } from "./
|
|
119
|
-
import { default as _t } from "./editable-table/
|
|
120
|
-
import { default as oa } from "./
|
|
116
|
+
import { ApTransformDataHelper as jt } from "./utils/ap-trans-data/index.mjs";
|
|
117
|
+
import { useTablePaging as Jt } from "./ap-table/hooks/use-table-paging.mjs";
|
|
118
|
+
import { default as Vt } from "./ap-table/ap-table.vue.mjs";
|
|
119
|
+
import { default as _t } from "./editable-table/index.vue.mjs";
|
|
120
|
+
import { default as oa } from "./editable-table/form-item.vue.mjs";
|
|
121
|
+
import { default as ra } from "./ap-descriptions/ap-descriptions.vue.mjs";
|
|
121
122
|
export {
|
|
122
|
-
|
|
123
|
+
T as APConfigProvider,
|
|
123
124
|
xt as ApActionGroup,
|
|
124
|
-
|
|
125
|
+
Fo as ApActionItem,
|
|
125
126
|
st as ApActionItemDropdown,
|
|
126
127
|
ft as ApActionItemModal,
|
|
127
128
|
lt as ApActionItemPopconfirm,
|
|
128
|
-
|
|
129
|
-
|
|
129
|
+
Do as ApBatchAction,
|
|
130
|
+
Ft as ApCustomColumn,
|
|
130
131
|
St as ApCustomSelect,
|
|
131
|
-
|
|
132
|
+
ra as ApDescriptions,
|
|
132
133
|
Kt as ApDownLoadNeedNameKeyDefault,
|
|
133
134
|
Yt as ApDownload,
|
|
134
|
-
|
|
135
|
+
Po as ApExpandAlert,
|
|
135
136
|
ho as ApExportGroup,
|
|
136
137
|
uo as ApField,
|
|
137
138
|
yr as ApFieldCheckbox,
|
|
@@ -139,7 +140,7 @@ export {
|
|
|
139
140
|
Jr as ApFieldDateRange,
|
|
140
141
|
Yr as ApFieldNumber,
|
|
141
142
|
_r as ApFieldPassword,
|
|
142
|
-
|
|
143
|
+
Or as ApFieldRadio,
|
|
143
144
|
at as ApFieldRate,
|
|
144
145
|
rt as ApFieldSegmented,
|
|
145
146
|
Vr as ApFieldSelect,
|
|
@@ -148,7 +149,7 @@ export {
|
|
|
148
149
|
Lr as ApFieldText,
|
|
149
150
|
jr as ApFieldTextArea,
|
|
150
151
|
io as ApForm,
|
|
151
|
-
|
|
152
|
+
Dr as ApFormItem,
|
|
152
153
|
Sr as ApFormItemCheckbox,
|
|
153
154
|
sr as ApFormItemDate,
|
|
154
155
|
xr as ApFormItemDateRange,
|
|
@@ -156,7 +157,7 @@ export {
|
|
|
156
157
|
lr as ApFormItemNumber,
|
|
157
158
|
nr as ApFormItemRadio,
|
|
158
159
|
cr as ApFormItemSelect,
|
|
159
|
-
|
|
160
|
+
Fr as ApFormItemSwitch,
|
|
160
161
|
ar as ApFormItemText,
|
|
161
162
|
fr as ApFormItemTextArea,
|
|
162
163
|
br as ApFormItemTextPassword,
|
|
@@ -172,15 +173,16 @@ export {
|
|
|
172
173
|
wo as ApSelectLayout,
|
|
173
174
|
Bo as ApStatus,
|
|
174
175
|
Mo as ApStatusGroup,
|
|
175
|
-
|
|
176
|
+
Vt as ApTable,
|
|
176
177
|
vt as ApTag,
|
|
177
178
|
wt as ApTagGroup,
|
|
178
179
|
ko as ApTitle,
|
|
180
|
+
jt as ApTransformDataHelper,
|
|
179
181
|
yt as ApUpload,
|
|
180
182
|
Ce as ApiCascader,
|
|
181
183
|
Ie as ApiRadioGroup,
|
|
182
184
|
ge as ApiSelect,
|
|
183
|
-
|
|
185
|
+
Pe as ApiTransfer,
|
|
184
186
|
Re as ApiTree,
|
|
185
187
|
ke as ApiTreeSelect,
|
|
186
188
|
J as BaseButton,
|
|
@@ -189,7 +191,7 @@ export {
|
|
|
189
191
|
R as BasicHelp,
|
|
190
192
|
v as BasicTitle,
|
|
191
193
|
So as CheckCard,
|
|
192
|
-
|
|
194
|
+
Ot as CheckCardGroup,
|
|
193
195
|
I as CollapseContainer,
|
|
194
196
|
le as CollapseTransition,
|
|
195
197
|
ee as ConfigProvider,
|
|
@@ -201,17 +203,17 @@ export {
|
|
|
201
203
|
bt as DictCode,
|
|
202
204
|
lo as Dropdown,
|
|
203
205
|
_e as EditTableHeaderIcon,
|
|
204
|
-
|
|
205
|
-
|
|
206
|
+
_t as EditableTable,
|
|
207
|
+
oa as EditableTableFormItem,
|
|
206
208
|
w as ExpandTransition,
|
|
207
209
|
B as ExpandXTransition,
|
|
208
210
|
M as FadeTransition,
|
|
209
211
|
j as Field,
|
|
210
212
|
n as Icon,
|
|
211
|
-
|
|
213
|
+
D as IconPicker,
|
|
212
214
|
Xe as ModalButton,
|
|
213
215
|
Lt as NeedNameKeyDefault,
|
|
214
|
-
|
|
216
|
+
He as PopConfirmButton,
|
|
215
217
|
Be as ProForm,
|
|
216
218
|
Je as ProTable,
|
|
217
219
|
Ne as ProTableForm,
|
|
@@ -227,8 +229,8 @@ export {
|
|
|
227
229
|
C as Scrollbar,
|
|
228
230
|
X as SlideXReverseTransition,
|
|
229
231
|
Y as SlideXTransition,
|
|
230
|
-
|
|
231
|
-
|
|
232
|
+
H as SlideYReverseTransition,
|
|
233
|
+
O as SlideYTransition,
|
|
232
234
|
V as StrengthMeter,
|
|
233
235
|
A as SvgIcon,
|
|
234
236
|
Ve as TableAction,
|
|
@@ -241,17 +243,17 @@ export {
|
|
|
241
243
|
Eo as configProviderContextKey,
|
|
242
244
|
No as configProviderProps,
|
|
243
245
|
fo as createPrompt,
|
|
244
|
-
|
|
246
|
+
Dt as createWorkOrderModal,
|
|
245
247
|
Vo as defaultNamespace,
|
|
246
248
|
fe as en,
|
|
247
249
|
nt as generateTableList,
|
|
248
250
|
re as globalConfigCached,
|
|
249
251
|
ce as isComponentFormSchema,
|
|
250
|
-
|
|
252
|
+
Te as isSlotFormSchema,
|
|
251
253
|
Yo as keysOf,
|
|
252
254
|
jo as localeContextKey,
|
|
253
255
|
Zo as namespaceContextKey,
|
|
254
|
-
|
|
256
|
+
Ho as provideGlobalConfig,
|
|
255
257
|
Ko as tableDefaultConfig,
|
|
256
258
|
qo as translate,
|
|
257
259
|
ct as useCacheColumnSetting,
|
|
@@ -259,13 +261,13 @@ export {
|
|
|
259
261
|
se as useDescription,
|
|
260
262
|
ne as useForm,
|
|
261
263
|
_o as useGetDerivedNamespace,
|
|
262
|
-
|
|
264
|
+
Oo as useGlobalConfig,
|
|
263
265
|
Jo as useLocale,
|
|
264
266
|
Ue as useModal,
|
|
265
267
|
We as useModalContext,
|
|
266
268
|
je as useModalInner,
|
|
267
269
|
$o as useNamespace,
|
|
268
270
|
rr as useTable,
|
|
269
|
-
|
|
271
|
+
Jt as useTablePaging,
|
|
270
272
|
ae as zhCn
|
|
271
273
|
};
|
|
@@ -10,13 +10,6 @@
|
|
|
10
10
|
.ant-form .ant-form-item-control .ant-form-item-explain-error {
|
|
11
11
|
font-size: 12px;
|
|
12
12
|
}
|
|
13
|
-
.ant-form .ant-form-item-control .ant-radio-wrapper .ant-radio.ant-radio-checked .ant-radio-inner {
|
|
14
|
-
background-color: #ffffff;
|
|
15
|
-
border-color: #34b77c;
|
|
16
|
-
}
|
|
17
|
-
.ant-form .ant-form-item-control .ant-radio-wrapper .ant-radio.ant-radio-checked .ant-radio-inner::after {
|
|
18
|
-
background-color: #34b77c;
|
|
19
|
-
}
|
|
20
13
|
.ant-form .ant-form-item-control .ant-select.ant-select-open .ant-select-selection-item {
|
|
21
14
|
color: #bfbfbf;
|
|
22
15
|
}
|
|
@@ -44,22 +37,27 @@
|
|
|
44
37
|
input.ant-input[disabled] {
|
|
45
38
|
color: #666666;
|
|
46
39
|
}
|
|
47
|
-
div[class
|
|
40
|
+
div[class$='-basic-table-form-container'] form[class$='-basic-form--compact'],
|
|
41
|
+
div[class$='-basic-table-form-container ap-table--sticky'] form[class$='-basic-form--compact'] {
|
|
48
42
|
padding: 16px;
|
|
49
43
|
}
|
|
50
|
-
div[class
|
|
44
|
+
div[class$='-basic-table-form-container'] form[class$='-basic-form--compact'] div.ant-col[tableaction] .ant-form-item-control-input-content,
|
|
45
|
+
div[class$='-basic-table-form-container ap-table--sticky'] form[class$='-basic-form--compact'] div.ant-col[tableaction] .ant-form-item-control-input-content {
|
|
51
46
|
display: flex;
|
|
52
47
|
align-items: center;
|
|
53
48
|
justify-content: flex-end;
|
|
54
49
|
}
|
|
55
|
-
div[class
|
|
50
|
+
div[class$='-basic-table-form-container'] form[class$='-basic-form--compact'] div.ant-col[tableaction] .ant-form-item-control-input-content button.ant-btn-primary,
|
|
51
|
+
div[class$='-basic-table-form-container ap-table--sticky'] form[class$='-basic-form--compact'] div.ant-col[tableaction] .ant-form-item-control-input-content button.ant-btn-primary {
|
|
56
52
|
order: 1;
|
|
57
53
|
}
|
|
58
|
-
div[class
|
|
54
|
+
div[class$='-basic-table-form-container'] form[class$='-basic-form--compact'] div.ant-col[tableaction] .ant-form-item-control-input-content button.ant-btn-default,
|
|
55
|
+
div[class$='-basic-table-form-container ap-table--sticky'] form[class$='-basic-form--compact'] div.ant-col[tableaction] .ant-form-item-control-input-content button.ant-btn-default {
|
|
59
56
|
order: 2;
|
|
60
57
|
margin-right: 0;
|
|
61
58
|
}
|
|
62
|
-
div[class
|
|
59
|
+
div[class$='-basic-table-form-container'] form[class$='-basic-form--compact'] div.ant-col[tableaction] .ant-form-item-control-input-content button.ant-btn-link,
|
|
60
|
+
div[class$='-basic-table-form-container ap-table--sticky'] form[class$='-basic-form--compact'] div.ant-col[tableaction] .ant-form-item-control-input-content button.ant-btn-link {
|
|
63
61
|
order: 3;
|
|
64
62
|
margin-left: 0.5rem;
|
|
65
63
|
}
|