@aplus-frontend/ui 0.6.0-beta.17 → 0.6.0-beta.18
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 +118 -109
- package/es/src/ap-field/date-range/index.vue.mjs +8 -7
- package/es/src/ap-field/number/index.vue.d.ts +2 -4
- package/es/src/ap-field/radio/index.vue.d.ts +2 -4
- package/es/src/ap-field/rate/index.vue.d.ts +2 -4
- package/es/src/ap-field/select/index.vue.d.ts +3 -6
- package/es/src/ap-field/slider/index.vue.d.ts +2 -4
- package/es/src/ap-field/text/index.vue2.mjs +42 -44
- package/es/src/ap-field/text/password.vue.mjs +15 -17
- package/es/src/ap-field/text-area/index.vue.d.ts +2 -2
- package/es/src/ap-field/tree-select/index.vue.mjs +31 -30
- package/es/src/ap-form/ap-form.vue2.mjs +18 -17
- package/es/src/ap-form/dependency/index.vue.mjs +24 -23
- package/es/src/ap-form/drawer-form/index.vue.d.ts +9 -7
- package/es/src/ap-form/drawer-form/index.vue.mjs +58 -49
- package/es/src/ap-form/interface.d.ts +2 -2
- package/es/src/ap-form/item/index.vue.d.ts +5 -10
- package/es/src/ap-form/items/select/index.vue.mjs +12 -14
- package/es/src/ap-form/items/text/password.vue.mjs +9 -9
- package/es/src/ap-form/items/text-area/index.vue.d.ts +5 -5
- package/es/src/ap-form/items/tree-select/index.vue.mjs +12 -14
- package/es/src/ap-form/modal-form/index.vue.d.ts +9 -7
- package/es/src/ap-form/modal-form/index.vue.mjs +64 -55
- package/es/src/ap-form/provider/index.vue.mjs +6 -5
- package/es/src/ap-form/search-form/index.vue.d.ts +2 -2
- package/es/src/ap-form/set/index.vue.mjs +7 -6
- package/es/src/ap-grid/editable/form-item.vue.mjs +1 -1
- package/es/src/ap-grid/hooks/use-editable-columns.mjs +17 -17
- package/es/src/ap-grid/index.vue.mjs +79 -75
- package/es/src/ap-grid/interface.d.ts +13 -0
- package/es/src/ap-list/index.vue.d.ts +2 -9
- package/es/src/ap-list/index.vue.mjs +116 -106
- package/es/src/ap-list/interface.d.ts +20 -0
- package/es/src/ap-table/ap-table.vue.d.ts +10 -2
- package/es/src/ap-table/ap-table.vue2.mjs +87 -83
- package/es/src/ap-table/components/setting/modal/index.vue2.mjs +12 -11
- package/es/src/ap-table/constants.d.ts +4 -4
- package/es/src/ap-table/hooks/use-table-paging-ng.d.ts +9 -2
- package/es/src/ap-table/hooks/use-table-paging-ng.mjs +113 -105
- package/es/src/ap-table/interface.d.ts +14 -1
- package/es/src/ap-table/utils.d.ts +3 -3
- package/es/src/business/ap-keep-alive/cacher/cacher.d.ts +10 -0
- package/es/src/business/ap-keep-alive/cacher/lru-cacher.d.ts +16 -0
- package/es/src/business/ap-keep-alive/cacher/lru-cacher.mjs +43 -0
- package/es/src/business/ap-keep-alive/hook.d.ts +10 -0
- package/es/src/business/ap-keep-alive/hook.mjs +31 -0
- package/es/src/business/ap-keep-alive/index.d.ts +101 -0
- package/es/src/business/ap-keep-alive/index.mjs +13 -0
- package/es/src/business/ap-keep-alive/interface.d.ts +35 -0
- package/es/src/business/ap-keep-alive/interface.mjs +54 -0
- package/es/src/business/ap-keep-alive/keep-alive.d.ts +51 -0
- package/es/src/business/ap-keep-alive/keep-alive.mjs +154 -0
- package/es/src/business/ap-keep-alive/keeper/ap-form-keeper.d.ts +7 -0
- package/es/src/business/ap-keep-alive/keeper/ap-form-keeper.mjs +21 -0
- package/es/src/business/ap-keep-alive/keeper/ap-grid-keeper.d.ts +14 -0
- package/es/src/business/ap-keep-alive/keeper/ap-grid-keeper.mjs +27 -0
- package/es/src/business/ap-keep-alive/keeper/ap-list-keeper.d.ts +13 -0
- package/es/src/business/ap-keep-alive/keeper/ap-list-keeper.mjs +18 -0
- package/es/src/business/ap-keep-alive/keeper/ap-radio-group-keeper.d.ts +6 -0
- package/es/src/business/ap-keep-alive/keeper/ap-radio-group-keeper.mjs +17 -0
- package/es/src/business/ap-keep-alive/keeper/ap-search-form-keeper.d.ts +7 -0
- package/es/src/business/ap-keep-alive/keeper/ap-search-form-keeper.mjs +18 -0
- package/es/src/business/ap-keep-alive/keeper/ap-table-keeper.d.ts +13 -0
- package/es/src/business/ap-keep-alive/keeper/ap-table-keeper.mjs +18 -0
- package/es/src/business/ap-keep-alive/keeper/ap-view-keeper.d.ts +6 -0
- package/es/src/business/ap-keep-alive/keeper/ap-view-keeper.mjs +12 -0
- package/es/src/business/ap-keep-alive/keeper/edit-grid-keeper.d.ts +6 -0
- package/es/src/business/ap-keep-alive/keeper/edit-grid-keeper.mjs +18 -0
- package/es/src/business/ap-keep-alive/keeper/edit-table-keeper.d.ts +6 -0
- package/es/src/business/ap-keep-alive/keeper/edit-table-keeper.mjs +18 -0
- package/es/src/business/ap-keep-alive/keeper/index.d.ts +3 -0
- package/es/src/business/ap-keep-alive/keeper/index.mjs +27 -0
- package/es/src/business/ap-keep-alive/keeper/step-keeper.d.ts +6 -0
- package/es/src/business/ap-keep-alive/keeper/step-keeper.mjs +17 -0
- package/es/src/business/ap-keep-alive/keeper/tab-keeper.d.ts +6 -0
- package/es/src/business/ap-keep-alive/keeper/tab-keeper.mjs +17 -0
- package/es/src/business/ap-keep-alive/utils.d.ts +22 -0
- package/es/src/business/ap-keep-alive/utils.mjs +41 -0
- package/es/src/business/ap-table-modal/hooks/use-create-table-modal.d.ts +4 -1
- package/es/src/business/ap-table-modal/hooks/use-table-modal.d.ts +4 -1
- package/es/src/business/ap-table-modal/hooks/use-table-select-modal.d.ts +4 -1
- package/es/src/business/ap-table-modal/index.d.ts +32 -5
- package/es/src/business/ap-table-modal/table-modal.vue.d.ts +14 -3
- package/es/src/business/ap-view/components/main-button-content.vue.d.ts +1 -1
- package/es/src/business/ap-view/components/menu-list-content.vue.d.ts +1 -1
- package/es/src/business/batch-input-group/form-item.vue.mjs +14 -13
- package/es/src/business/batch-input-group/index.vue.mjs +9 -8
- package/es/src/business/hooks/usePageListApTable.d.ts +4 -1
- package/es/src/business/index.d.ts +1 -0
- package/es/src/business/index.mjs +18 -16
- package/es/src/editable-table/form-item.vue.mjs +23 -23
- package/es/src/full-screen/interface.d.ts +5 -6
- package/es/src/index.mjs +199 -190
- package/es/src/mask/index.vue.mjs +21 -20
- package/es/src/resize-observer/interface.d.ts +2 -3
- package/es/src/scroll-bar/interface.d.ts +7 -7
- package/es/src/scroll-view/interface.d.ts +2 -3
- package/es/src/splitter/SplitBar.vue2.mjs +1 -0
- package/es/src/splitter/Splitter.vue2.mjs +1 -0
- package/es/src/text/group.vue.mjs +7 -6
- package/es/src/text/index.vue.mjs +20 -19
- package/es/src/version.d.ts +1 -1
- package/es/src/version.mjs +1 -1
- package/es/src/work-order-modal/work-order-modal.vue.d.ts +1 -1
- package/lib/index.js +1 -1
- package/lib/src/ap-field/date-range/index.vue.js +1 -1
- package/lib/src/ap-field/number/index.vue.d.ts +2 -4
- package/lib/src/ap-field/radio/index.vue.d.ts +2 -4
- package/lib/src/ap-field/rate/index.vue.d.ts +2 -4
- package/lib/src/ap-field/select/index.vue.d.ts +3 -6
- package/lib/src/ap-field/slider/index.vue.d.ts +2 -4
- package/lib/src/ap-field/text/index.vue2.js +1 -1
- package/lib/src/ap-field/text/password.vue.js +1 -1
- package/lib/src/ap-field/text-area/index.vue.d.ts +2 -2
- package/lib/src/ap-field/tree-select/index.vue.js +1 -1
- package/lib/src/ap-form/ap-form.vue2.js +1 -1
- package/lib/src/ap-form/dependency/index.vue.js +1 -1
- package/lib/src/ap-form/drawer-form/index.vue.d.ts +9 -7
- package/lib/src/ap-form/drawer-form/index.vue.js +1 -1
- package/lib/src/ap-form/interface.d.ts +2 -2
- package/lib/src/ap-form/item/index.vue.d.ts +5 -10
- package/lib/src/ap-form/items/select/index.vue.js +1 -1
- package/lib/src/ap-form/items/text/password.vue.js +1 -1
- package/lib/src/ap-form/items/text-area/index.vue.d.ts +5 -5
- package/lib/src/ap-form/items/tree-select/index.vue.js +1 -1
- package/lib/src/ap-form/modal-form/index.vue.d.ts +9 -7
- package/lib/src/ap-form/modal-form/index.vue.js +1 -1
- package/lib/src/ap-form/provider/index.vue.js +1 -1
- package/lib/src/ap-form/search-form/index.vue.d.ts +2 -2
- package/lib/src/ap-form/set/index.vue.js +1 -1
- package/lib/src/ap-grid/editable/form-item.vue.js +1 -1
- package/lib/src/ap-grid/hooks/use-editable-columns.js +1 -1
- package/lib/src/ap-grid/index.vue.js +1 -1
- package/lib/src/ap-grid/interface.d.ts +13 -0
- package/lib/src/ap-list/index.vue.d.ts +2 -9
- package/lib/src/ap-list/index.vue.js +1 -1
- package/lib/src/ap-list/interface.d.ts +20 -0
- package/lib/src/ap-table/ap-table.vue.d.ts +10 -2
- package/lib/src/ap-table/ap-table.vue2.js +1 -1
- package/lib/src/ap-table/components/setting/modal/index.vue2.js +1 -1
- package/lib/src/ap-table/constants.d.ts +4 -4
- package/lib/src/ap-table/hooks/use-table-paging-ng.d.ts +9 -2
- package/lib/src/ap-table/hooks/use-table-paging-ng.js +1 -1
- package/lib/src/ap-table/interface.d.ts +14 -1
- package/lib/src/ap-table/utils.d.ts +3 -3
- package/lib/src/business/ap-keep-alive/cacher/cacher.d.ts +10 -0
- package/lib/src/business/ap-keep-alive/cacher/lru-cacher.d.ts +16 -0
- package/lib/src/business/ap-keep-alive/cacher/lru-cacher.js +1 -0
- package/lib/src/business/ap-keep-alive/hook.d.ts +10 -0
- package/lib/src/business/ap-keep-alive/hook.js +1 -0
- package/lib/src/business/ap-keep-alive/index.d.ts +101 -0
- package/lib/src/business/ap-keep-alive/index.js +1 -0
- package/lib/src/business/ap-keep-alive/interface.d.ts +35 -0
- package/lib/src/business/ap-keep-alive/interface.js +1 -0
- package/lib/src/business/ap-keep-alive/keep-alive.d.ts +51 -0
- package/lib/src/business/ap-keep-alive/keep-alive.js +1 -0
- package/lib/src/business/ap-keep-alive/keeper/ap-form-keeper.d.ts +7 -0
- package/lib/src/business/ap-keep-alive/keeper/ap-form-keeper.js +1 -0
- package/lib/src/business/ap-keep-alive/keeper/ap-grid-keeper.d.ts +14 -0
- package/lib/src/business/ap-keep-alive/keeper/ap-grid-keeper.js +1 -0
- package/lib/src/business/ap-keep-alive/keeper/ap-list-keeper.d.ts +13 -0
- package/lib/src/business/ap-keep-alive/keeper/ap-list-keeper.js +1 -0
- package/lib/src/business/ap-keep-alive/keeper/ap-radio-group-keeper.d.ts +6 -0
- package/lib/src/business/ap-keep-alive/keeper/ap-radio-group-keeper.js +1 -0
- package/lib/src/business/ap-keep-alive/keeper/ap-search-form-keeper.d.ts +7 -0
- package/lib/src/business/ap-keep-alive/keeper/ap-search-form-keeper.js +1 -0
- package/lib/src/business/ap-keep-alive/keeper/ap-table-keeper.d.ts +13 -0
- package/lib/src/business/ap-keep-alive/keeper/ap-table-keeper.js +1 -0
- package/lib/src/business/ap-keep-alive/keeper/ap-view-keeper.d.ts +6 -0
- package/lib/src/business/ap-keep-alive/keeper/ap-view-keeper.js +1 -0
- package/lib/src/business/ap-keep-alive/keeper/edit-grid-keeper.d.ts +6 -0
- package/lib/src/business/ap-keep-alive/keeper/edit-grid-keeper.js +1 -0
- package/lib/src/business/ap-keep-alive/keeper/edit-table-keeper.d.ts +6 -0
- package/lib/src/business/ap-keep-alive/keeper/edit-table-keeper.js +1 -0
- package/lib/src/business/ap-keep-alive/keeper/index.d.ts +3 -0
- package/lib/src/business/ap-keep-alive/keeper/index.js +1 -0
- package/lib/src/business/ap-keep-alive/keeper/step-keeper.d.ts +6 -0
- package/lib/src/business/ap-keep-alive/keeper/step-keeper.js +1 -0
- package/lib/src/business/ap-keep-alive/keeper/tab-keeper.d.ts +6 -0
- package/lib/src/business/ap-keep-alive/keeper/tab-keeper.js +1 -0
- package/lib/src/business/ap-keep-alive/utils.d.ts +22 -0
- package/lib/src/business/ap-keep-alive/utils.js +1 -0
- package/lib/src/business/ap-table-modal/hooks/use-create-table-modal.d.ts +4 -1
- package/lib/src/business/ap-table-modal/hooks/use-table-modal.d.ts +4 -1
- package/lib/src/business/ap-table-modal/hooks/use-table-select-modal.d.ts +4 -1
- package/lib/src/business/ap-table-modal/index.d.ts +32 -5
- package/lib/src/business/ap-table-modal/table-modal.vue.d.ts +14 -3
- package/lib/src/business/ap-view/components/main-button-content.vue.d.ts +1 -1
- package/lib/src/business/ap-view/components/menu-list-content.vue.d.ts +1 -1
- package/lib/src/business/batch-input-group/form-item.vue.js +1 -1
- package/lib/src/business/batch-input-group/index.vue.js +2 -2
- package/lib/src/business/hooks/usePageListApTable.d.ts +4 -1
- package/lib/src/business/index.d.ts +1 -0
- package/lib/src/business/index.js +1 -1
- package/lib/src/editable-table/form-item.vue.js +1 -1
- package/lib/src/full-screen/interface.d.ts +5 -6
- package/lib/src/index.js +1 -1
- package/lib/src/mask/index.vue.js +1 -1
- package/lib/src/resize-observer/interface.d.ts +2 -3
- package/lib/src/scroll-bar/interface.d.ts +7 -7
- package/lib/src/scroll-view/interface.d.ts +2 -3
- package/lib/src/splitter/SplitBar.vue2.js +1 -1
- package/lib/src/splitter/Splitter.vue2.js +1 -1
- package/lib/src/text/group.vue.js +1 -1
- package/lib/src/text/index.vue.js +1 -1
- package/lib/src/version.d.ts +1 -1
- package/lib/src/version.js +1 -1
- package/lib/src/work-order-modal/work-order-modal.vue.d.ts +1 -1
- package/package.json +5 -4
- package/theme/ap-action/item.css +1 -1
- package/theme/ap-action/item.less +1 -1
- package/theme/ap-grid/index.css +6 -1
- package/theme/ap-grid/index.less +5 -0
- package/theme/ap-table/ap-table.css +6 -1
- package/theme/ap-table/ap-table.less +5 -0
- package/theme/ap-table-modal/index.css +6 -1
- package/theme/editable-table/index.css +1 -1
- package/theme/index.css +13 -1
- package/theme/ui-mode.css +2 -0
- package/theme/ui-mode.less +4 -0
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { isVNode as
|
|
2
|
-
import { Button as V, Flex as te, Space as le, Modal as
|
|
1
|
+
import { isVNode as A, defineComponent as D, useSlots as L, ref as p, watch as G, cloneVNode as I, computed as K, createVNode as u, mergeProps as b, unref as s, createElementBlock as W, openBlock as g, Fragment as H, createBlock as P, createCommentVNode as J, withCtx as h, createElementVNode as Q, normalizeClass as X, normalizeStyle as Y, renderSlot as w, resolveDynamicComponent as N, createTextVNode as Z, toDisplayString as ee } from "vue";
|
|
2
|
+
import { Button as V, Flex as te, Space as le, Modal as ae } from "@aplus-frontend/antdv";
|
|
3
3
|
import "../ap-form.vue.mjs";
|
|
4
4
|
import "../../hooks/index.mjs";
|
|
5
|
-
import { getSingleVNode as
|
|
5
|
+
import { getSingleVNode as oe } from "../../utils/slot.mjs";
|
|
6
6
|
import "../../config-provider/index.mjs";
|
|
7
7
|
import { omit as se } from "lodash-unified";
|
|
8
8
|
import { useControllableValue as ne } from "../../hooks/useControllableValue.mjs";
|
|
@@ -10,10 +10,11 @@ import { useLocale as ie } from "../../config-provider/hooks/use-locale.mjs";
|
|
|
10
10
|
import { useGlobalConfig as re } from "../../config-provider/hooks/use-global-config.mjs";
|
|
11
11
|
import { useNamespace as ue } from "../../config-provider/hooks/use-namespace.mjs";
|
|
12
12
|
import de from "../ap-form.vue2.mjs";
|
|
13
|
-
function S(
|
|
14
|
-
return typeof
|
|
13
|
+
function S(m) {
|
|
14
|
+
return typeof m == "function" || Object.prototype.toString.call(m) === "[object Object]" && !A(m);
|
|
15
15
|
}
|
|
16
|
-
const
|
|
16
|
+
const Re = /* @__PURE__ */ D({
|
|
17
|
+
name: "ApFormModalForm",
|
|
17
18
|
__name: "index",
|
|
18
19
|
props: {
|
|
19
20
|
layout: {
|
|
@@ -90,48 +91,48 @@ const Me = /* @__PURE__ */ L({
|
|
|
90
91
|
submitTimeout: {}
|
|
91
92
|
},
|
|
92
93
|
emits: ["update:open"],
|
|
93
|
-
setup(
|
|
94
|
+
setup(m, {
|
|
94
95
|
expose: x,
|
|
95
|
-
emit:
|
|
96
|
+
emit: M
|
|
96
97
|
}) {
|
|
97
|
-
const
|
|
98
|
-
value:
|
|
98
|
+
const a = m, v = L(), R = M, o = p(), T = p(0), c = p(), i = p(!1), {
|
|
99
|
+
value: _,
|
|
99
100
|
updateValue: f
|
|
100
|
-
} = ne(
|
|
101
|
+
} = ne(a, R, {
|
|
101
102
|
valuePropName: "open",
|
|
102
103
|
defaultValue: !1,
|
|
103
104
|
beforeUpdateValue(e) {
|
|
104
|
-
return e && (
|
|
105
|
+
return e && (T.value += 1), !0;
|
|
105
106
|
}
|
|
106
107
|
}), {
|
|
107
|
-
t:
|
|
108
|
+
t: y
|
|
108
109
|
} = ie(), U = re("uiMode", "aplus"), {
|
|
109
110
|
b: j,
|
|
110
|
-
e:
|
|
111
|
+
e: F
|
|
111
112
|
} = ue("ap-form-modal-form");
|
|
112
|
-
G(() =>
|
|
113
|
+
G(() => o.value, (e) => {
|
|
113
114
|
var t;
|
|
114
|
-
e &&
|
|
115
|
+
e && c.value && ((t = e.setFieldsValue) == null || t.call(e, c.value), c.value = void 0);
|
|
115
116
|
});
|
|
116
|
-
const
|
|
117
|
+
const C = oe(v.trigger), B = C ? I(C, {
|
|
117
118
|
onClick: () => {
|
|
118
119
|
f(!0);
|
|
119
120
|
}
|
|
120
121
|
}) : null, O = K(() => {
|
|
121
122
|
var t, l, r, d;
|
|
122
123
|
const e = [];
|
|
123
|
-
if (
|
|
124
|
+
if (a.submitter === !1)
|
|
124
125
|
return null;
|
|
125
|
-
if (
|
|
126
|
+
if (a.showCancel) {
|
|
126
127
|
let n;
|
|
127
128
|
e.push(u(V, {
|
|
128
129
|
onClick: k,
|
|
129
130
|
disabled: i.value
|
|
130
|
-
}, S(n =
|
|
131
|
+
}, S(n = y("ap.common.cancelText")) ? n : {
|
|
131
132
|
default: () => [n]
|
|
132
133
|
}));
|
|
133
134
|
}
|
|
134
|
-
return ((t =
|
|
135
|
+
return ((t = a.submitter) == null ? void 0 : t.resetButtonProps) !== !1 && e.push(u(V, b(((l = a.submitter) == null ? void 0 : l.resetButtonProps) || {}, {
|
|
135
136
|
key: "reset",
|
|
136
137
|
disabled: i.value,
|
|
137
138
|
onClick: z,
|
|
@@ -139,41 +140,41 @@ const Me = /* @__PURE__ */ L({
|
|
|
139
140
|
}), {
|
|
140
141
|
default: () => {
|
|
141
142
|
var n;
|
|
142
|
-
return [((n =
|
|
143
|
+
return [((n = a.submitter) == null ? void 0 : n.resetText) || y("ap.common.resetText")];
|
|
143
144
|
}
|
|
144
|
-
})), ((r =
|
|
145
|
+
})), ((r = a.submitter) == null ? void 0 : r.submitButtonProps) !== !1 && e.push(u(V, b({
|
|
145
146
|
type: "primary",
|
|
146
147
|
key: "submit",
|
|
147
148
|
htmlType: "submit"
|
|
148
|
-
}, ((d =
|
|
149
|
+
}, ((d = a.submitter) == null ? void 0 : d.submitButtonProps) || {}, {
|
|
149
150
|
loading: i.value
|
|
150
151
|
}), {
|
|
151
152
|
default: () => {
|
|
152
153
|
var n;
|
|
153
|
-
return [((n =
|
|
154
|
+
return [((n = a.submitter) == null ? void 0 : n.submitText) || y("ap.common.okText")];
|
|
154
155
|
}
|
|
155
156
|
})), u(te, {
|
|
156
157
|
justify: "flex-end",
|
|
157
|
-
key: s(
|
|
158
|
-
class: [
|
|
158
|
+
key: s(T),
|
|
159
|
+
class: [F("footer"), s(U) === "admin" ? F("footer-admin") : null]
|
|
159
160
|
}, {
|
|
160
|
-
default: () => [
|
|
161
|
+
default: () => [v.submitter ? v.submitter(e) : u(le, null, S(e) ? e : {
|
|
161
162
|
default: () => [e]
|
|
162
163
|
})]
|
|
163
164
|
});
|
|
164
165
|
});
|
|
165
166
|
function z() {
|
|
166
167
|
var e, t, l;
|
|
167
|
-
|
|
168
|
+
a.submitter !== !1 && ((e = o.value) == null || e.resetFields(), (l = (t = a.submitter) == null ? void 0 : t.onReset) == null || l.call(t));
|
|
168
169
|
}
|
|
169
170
|
async function E(e) {
|
|
170
171
|
var t, l, r;
|
|
171
|
-
if (
|
|
172
|
+
if (a.submitter !== !1)
|
|
172
173
|
try {
|
|
173
|
-
(l = (t =
|
|
174
|
-
const d = (r =
|
|
175
|
-
if (
|
|
176
|
-
const q = setTimeout(() => i.value = !1,
|
|
174
|
+
(l = (t = a.submitter) == null ? void 0 : t.onSubmit) == null || l.call(t), i.value = !0;
|
|
175
|
+
const d = (r = a.onFinish) == null ? void 0 : r.call(a, e);
|
|
176
|
+
if (a.submitTimeout && d instanceof Promise) {
|
|
177
|
+
const q = setTimeout(() => i.value = !1, a.submitTimeout);
|
|
177
178
|
d.finally(() => {
|
|
178
179
|
clearTimeout(q), i.value = !1;
|
|
179
180
|
});
|
|
@@ -190,48 +191,56 @@ const Me = /* @__PURE__ */ L({
|
|
|
190
191
|
!e && s(i) || f(e);
|
|
191
192
|
}
|
|
192
193
|
return x({
|
|
193
|
-
resetFields: () => {
|
|
194
|
+
resetFields: async () => {
|
|
194
195
|
var e;
|
|
195
|
-
(e =
|
|
196
|
+
(e = o.value) == null || e.resetFields();
|
|
196
197
|
},
|
|
197
198
|
clearValidate: (e) => {
|
|
198
199
|
var t;
|
|
199
|
-
(t =
|
|
200
|
+
(t = o.value) == null || t.clearValidate(e);
|
|
200
201
|
},
|
|
201
202
|
validateFields: (e, t) => {
|
|
202
203
|
var l;
|
|
203
|
-
return (l =
|
|
204
|
+
return (l = o.value) == null ? void 0 : l.validateFields(e, t);
|
|
204
205
|
},
|
|
205
206
|
getFieldsValue: (e) => {
|
|
206
207
|
var t;
|
|
207
|
-
return (t =
|
|
208
|
+
return (t = o.value) == null ? void 0 : t.getFieldsValue(e);
|
|
208
209
|
},
|
|
209
210
|
validate: (e, t) => {
|
|
210
211
|
var l;
|
|
211
|
-
return (l =
|
|
212
|
+
return (l = o.value) == null ? void 0 : l.validate(e, t);
|
|
212
213
|
},
|
|
213
214
|
scrollToField: (e, t = {}) => {
|
|
214
215
|
var l;
|
|
215
|
-
(l =
|
|
216
|
+
(l = o.value) == null || l.scrollToField(e, t);
|
|
216
217
|
},
|
|
217
218
|
setFieldValue: (e, t) => {
|
|
218
219
|
var l, r;
|
|
219
|
-
(r = (l =
|
|
220
|
+
(r = (l = o.value) == null ? void 0 : l.setFieldValue) == null || r.call(l, e, t);
|
|
220
221
|
},
|
|
221
222
|
setFieldsValue: (e) => {
|
|
222
223
|
var t, l;
|
|
223
|
-
if (!
|
|
224
|
-
|
|
224
|
+
if (!o.value) {
|
|
225
|
+
c.value = e;
|
|
225
226
|
return;
|
|
226
227
|
}
|
|
227
|
-
(l = (t =
|
|
228
|
+
(l = (t = o.value) == null ? void 0 : t.setFieldsValue) == null || l.call(t, e);
|
|
228
229
|
},
|
|
229
230
|
getInternalInstance: (e) => {
|
|
230
231
|
var t;
|
|
231
|
-
return (t =
|
|
232
|
+
return (t = o.value) == null ? void 0 : t.getInternalInstance(e);
|
|
233
|
+
},
|
|
234
|
+
getFieldsValueTransformed(e) {
|
|
235
|
+
var t;
|
|
236
|
+
return (t = o.value) == null ? void 0 : t.getFieldsValueTransformed(e);
|
|
237
|
+
},
|
|
238
|
+
validateFieldsReturnTransformed(e, t) {
|
|
239
|
+
var l;
|
|
240
|
+
return (l = o.value) == null ? void 0 : l.validateFieldsReturnTransformed(e, t);
|
|
232
241
|
}
|
|
233
|
-
}), (e, t) => (g(), W(H, null, [u(s(
|
|
234
|
-
open: s(
|
|
242
|
+
}), (e, t) => (g(), W(H, null, [u(s(ae), b(e.modalProps, {
|
|
243
|
+
open: s(_),
|
|
235
244
|
footer: null,
|
|
236
245
|
width: e.width,
|
|
237
246
|
class: s(j)(),
|
|
@@ -241,18 +250,18 @@ const Me = /* @__PURE__ */ L({
|
|
|
241
250
|
"onUpdate:open": $,
|
|
242
251
|
onCancel: k
|
|
243
252
|
}), {
|
|
244
|
-
title:
|
|
245
|
-
default:
|
|
253
|
+
title: h(() => [w(e.$slots, "title", {}, () => [Z(ee(a.title), 1)])]),
|
|
254
|
+
default: h(() => [u(de, b({
|
|
246
255
|
ref_key: "formRef",
|
|
247
|
-
ref:
|
|
248
|
-
}, s(se)(
|
|
256
|
+
ref: o
|
|
257
|
+
}, s(se)(a, ["modalProps", "open", "onUpdate:open", "title", "width", "onFinish", "submitter"]), {
|
|
249
258
|
onFinish: E
|
|
250
259
|
}), {
|
|
251
|
-
default:
|
|
260
|
+
default: h(() => {
|
|
252
261
|
var l;
|
|
253
262
|
return [Q("div", {
|
|
254
263
|
style: Y((l = e.modalProps) == null ? void 0 : l.bodyStyle),
|
|
255
|
-
class: X(s(
|
|
264
|
+
class: X(s(F)("content"))
|
|
256
265
|
}, [w(e.$slots, "default")], 6), (g(), P(N(O.value)))];
|
|
257
266
|
}),
|
|
258
267
|
_: 3
|
|
@@ -264,5 +273,5 @@ const Me = /* @__PURE__ */ L({
|
|
|
264
273
|
}
|
|
265
274
|
});
|
|
266
275
|
export {
|
|
267
|
-
|
|
276
|
+
Re as default
|
|
268
277
|
};
|
|
@@ -1,14 +1,15 @@
|
|
|
1
|
-
import { defineComponent as s, ref as g, renderSlot as
|
|
2
|
-
import { useInjectFormProvider as
|
|
1
|
+
import { defineComponent as s, ref as g, renderSlot as m } from "vue";
|
|
2
|
+
import { useInjectFormProvider as t, useProvideFormProvider as u } from "./context.mjs";
|
|
3
3
|
const h = /* @__PURE__ */ s({
|
|
4
|
+
name: "ApFormProvider",
|
|
4
5
|
__name: "index",
|
|
5
6
|
props: {
|
|
6
7
|
onFormChange: { type: Function },
|
|
7
8
|
onFormFinish: { type: Function }
|
|
8
9
|
},
|
|
9
10
|
setup(F) {
|
|
10
|
-
const o = F, n = g({}), e =
|
|
11
|
-
return
|
|
11
|
+
const o = F, n = g({}), e = t();
|
|
12
|
+
return u({
|
|
12
13
|
triggerFormChange(r, i) {
|
|
13
14
|
o != null && o.onFormChange && o.onFormChange(r, {
|
|
14
15
|
changedFields: i,
|
|
@@ -31,7 +32,7 @@ const h = /* @__PURE__ */ s({
|
|
|
31
32
|
const i = { ...n.value };
|
|
32
33
|
delete i[r], n.value = i, e == null || e.unregisterForm(r);
|
|
33
34
|
}
|
|
34
|
-
}), (r, i) =>
|
|
35
|
+
}), (r, i) => m(r.$slots, "default");
|
|
35
36
|
}
|
|
36
37
|
});
|
|
37
38
|
export {
|
|
@@ -816,7 +816,7 @@ declare function __VLS_template(): {
|
|
|
816
816
|
hideRequiredMark: boolean;
|
|
817
817
|
validateOnRuleChange: boolean;
|
|
818
818
|
syncToUrl: boolean | ((values: Recordable, type: "get" | "set") => Recordable);
|
|
819
|
-
}> & Omit<Readonly< ApFormProps> & Readonly<{}>, "validate" | "
|
|
819
|
+
}> & Omit<Readonly< ApFormProps> & Readonly<{}>, "validate" | "registerWatch" | "setFieldsValue" | "setFieldValue" | "resetFields" | "clearValidate" | "validateFields" | "getFieldsValue" | "scrollToField" | "getInternalInstance" | "validateFieldsReturnTransformed" | "getFieldsValueTransformed" | ("layout" | "colon" | "labelAlign" | "validateTrigger" | "hideRequiredMark" | "validateOnRuleChange" | "syncToUrl")> & ShallowUnwrapRef<{
|
|
820
820
|
setFieldsValue: (fields: Partial<any>) => void;
|
|
821
821
|
setFieldValue: (name: NamePath, value: any, triggerChange?: boolean, optimizeFn?: UpdateModelOptimizeFn) => void;
|
|
822
822
|
resetFields: () => Promise<void>;
|
|
@@ -1651,7 +1651,7 @@ declare const __VLS_component: DefineComponent<ApFormSearchFormProps, {
|
|
|
1651
1651
|
hideRequiredMark: boolean;
|
|
1652
1652
|
validateOnRuleChange: boolean;
|
|
1653
1653
|
syncToUrl: boolean | ((values: Recordable, type: "get" | "set") => Recordable);
|
|
1654
|
-
}> & Omit<Readonly< ApFormProps> & Readonly<{}>, "validate" | "
|
|
1654
|
+
}> & Omit<Readonly< ApFormProps> & Readonly<{}>, "validate" | "registerWatch" | "setFieldsValue" | "setFieldValue" | "resetFields" | "clearValidate" | "validateFields" | "getFieldsValue" | "scrollToField" | "getInternalInstance" | "validateFieldsReturnTransformed" | "getFieldsValueTransformed" | ("layout" | "colon" | "labelAlign" | "validateTrigger" | "hideRequiredMark" | "validateOnRuleChange" | "syncToUrl")> & ShallowUnwrapRef<{
|
|
1655
1655
|
setFieldsValue: (fields: Partial<any>) => void;
|
|
1656
1656
|
setFieldValue: (name: NamePath, value: any, triggerChange?: boolean, optimizeFn?: UpdateModelOptimizeFn) => void;
|
|
1657
1657
|
resetFields: () => Promise<void>;
|
|
@@ -1,8 +1,9 @@
|
|
|
1
|
-
import { defineComponent as c, useSlots as u, ref as f, watchEffect as p, cloneVNode as d, onMounted as V, createElementBlock as _, openBlock as
|
|
1
|
+
import { defineComponent as c, useSlots as u, ref as f, watchEffect as p, cloneVNode as d, onMounted as V, createElementBlock as _, openBlock as l, Fragment as y, renderList as F, createBlock as k, resolveDynamicComponent as h } from "vue";
|
|
2
2
|
import { useInjectForm as v } from "../context.mjs";
|
|
3
3
|
import { isFunction as w, cloneDeep as x } from "lodash-unified";
|
|
4
4
|
import { isPromise as B } from "@fruits-chain/utils";
|
|
5
|
-
const
|
|
5
|
+
const S = /* @__PURE__ */ c({
|
|
6
|
+
name: "ApFormSet",
|
|
6
7
|
__name: "index",
|
|
7
8
|
props: {
|
|
8
9
|
name: {},
|
|
@@ -11,11 +12,11 @@ const j = /* @__PURE__ */ c({
|
|
|
11
12
|
transform: {}
|
|
12
13
|
},
|
|
13
14
|
setup(s) {
|
|
14
|
-
const { internalInstance: t } = v(), a = u(), e = s,
|
|
15
|
+
const { internalInstance: t } = v(), a = u(), e = s, m = f([]);
|
|
15
16
|
return p(() => {
|
|
16
17
|
if (a != null && a.default) {
|
|
17
18
|
const n = a.default();
|
|
18
|
-
|
|
19
|
+
m.value = n.map((r, o) => {
|
|
19
20
|
const i = e.as === "array" ? [e.name, o] : [e.name, r.props.name];
|
|
20
21
|
return d(r, { name: i });
|
|
21
22
|
});
|
|
@@ -27,9 +28,9 @@ const j = /* @__PURE__ */ c({
|
|
|
27
28
|
initialValue: x(n),
|
|
28
29
|
transform: e.transform
|
|
29
30
|
});
|
|
30
|
-
}), (n, r) => (
|
|
31
|
+
}), (n, r) => (l(!0), _(y, null, F(m.value, (o, i) => (l(), k(h(o), { key: i }))), 128));
|
|
31
32
|
}
|
|
32
33
|
});
|
|
33
34
|
export {
|
|
34
|
-
|
|
35
|
+
S as default
|
|
35
36
|
};
|
|
@@ -10,7 +10,7 @@ import { useNamespace as le } from "../../config-provider/hooks/use-namespace.mj
|
|
|
10
10
|
import { useGlobalConfig as ne } from "../../config-provider/hooks/use-global-config.mjs";
|
|
11
11
|
import fe from "../index.vue.mjs";
|
|
12
12
|
const Ce = /* @__PURE__ */ P({
|
|
13
|
-
name: "
|
|
13
|
+
name: "EditableGridFormItem",
|
|
14
14
|
__name: "form-item",
|
|
15
15
|
props: {
|
|
16
16
|
dropdownPrefixCls: {},
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { useSlots as
|
|
2
|
-
import { isFunction as
|
|
1
|
+
import { useSlots as y, computed as E, unref as m } from "vue";
|
|
2
|
+
import { isFunction as R, isArray as s } from "lodash-unified";
|
|
3
3
|
import { getEditableTableTitle as k, mergeClass as A } from "../../editable-table/utils.mjs";
|
|
4
4
|
import { updateFormProps as q, getFieldProps as v } from "../../ap-table/utils.mjs";
|
|
5
5
|
import "../../config-provider/index.mjs";
|
|
@@ -10,8 +10,8 @@ const M = (n, f) => {
|
|
|
10
10
|
const {
|
|
11
11
|
em: b,
|
|
12
12
|
be: x
|
|
13
|
-
} = S("editable-grid"), g =
|
|
14
|
-
return
|
|
13
|
+
} = S("editable-grid"), g = y(), [, h] = w();
|
|
14
|
+
return E(() => {
|
|
15
15
|
const l = n.columns;
|
|
16
16
|
if (!l)
|
|
17
17
|
return [];
|
|
@@ -19,40 +19,40 @@ const M = (n, f) => {
|
|
|
19
19
|
return C.map((e) => ({
|
|
20
20
|
...e,
|
|
21
21
|
children: o(e.children || []),
|
|
22
|
-
title: k(e, x("table-header", "title"), b("header-cell", "required"), g.headerCell, m(h).
|
|
22
|
+
title: k(e, x("table-header", "title"), b("header-cell", "required"), g.headerCell, m(h).colorTextTertiary),
|
|
23
23
|
// tips: 已经处理了title,传递tooltip为undefined不会再内部处理
|
|
24
24
|
tooltip: void 0,
|
|
25
25
|
customRender({
|
|
26
26
|
value: r,
|
|
27
27
|
originalNode: F,
|
|
28
|
-
...
|
|
28
|
+
...t
|
|
29
29
|
}) {
|
|
30
|
-
const i =
|
|
30
|
+
const i = R(e.editable) ? e.editable(t.text, t.record, t.index) : !!e.editable;
|
|
31
31
|
let d = F;
|
|
32
32
|
if (i) {
|
|
33
|
-
const
|
|
33
|
+
const a = q(e, v(e.fieldProps, {
|
|
34
34
|
value: r,
|
|
35
|
-
...
|
|
35
|
+
...t
|
|
36
36
|
})), c = {};
|
|
37
|
-
n.onFieldChange && (c[`onUpdate:${
|
|
37
|
+
n.onFieldChange && (c[`onUpdate:${a.valuePropName || "value"}`] = (T) => {
|
|
38
38
|
var u;
|
|
39
|
-
return (u = n.onFieldChange) == null ? void 0 : u.call(n,
|
|
39
|
+
return (u = n.onFieldChange) == null ? void 0 : u.call(n, t.index, e.dataIndex, T);
|
|
40
40
|
});
|
|
41
41
|
const N = s(e.dataIndex) ? e.dataIndex : [e.dataIndex], I = {
|
|
42
|
-
name: [...s(n.name) ? n.name : [n.name],
|
|
43
|
-
...
|
|
42
|
+
name: [...s(n.name) ? n.name : [n.name], t.index, ...N],
|
|
43
|
+
...a || {},
|
|
44
44
|
field: {
|
|
45
45
|
style: "width: 100%",
|
|
46
|
-
...(
|
|
46
|
+
...(a == null ? void 0 : a.field) || {},
|
|
47
47
|
...c,
|
|
48
|
-
class: A("is-editable",
|
|
48
|
+
class: A("is-editable", a.class)
|
|
49
49
|
}
|
|
50
50
|
};
|
|
51
|
-
d = G(e, I,
|
|
51
|
+
d = G(e, I, t.record, m(f));
|
|
52
52
|
}
|
|
53
53
|
return e.customRender ? e.customRender({
|
|
54
54
|
value: r,
|
|
55
|
-
...
|
|
55
|
+
...t,
|
|
56
56
|
editable: i,
|
|
57
57
|
originalNode: d
|
|
58
58
|
}) : d;
|