vft 0.0.119 → 0.0.121

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.
Files changed (81) hide show
  1. package/attributes.json +1 -1
  2. package/es/component.js +25 -23
  3. package/es/components/backtop/backtop.vue2.js +3 -2
  4. package/es/components/button/button.vue2.js +21 -21
  5. package/es/components/context-menu/context-menu.vue2.js +3 -2
  6. package/es/components/date-picker/date-picker-com/basic-month-table.vue2.js +53 -57
  7. package/es/components/footer-layout/footer-layout.vue2.js +3 -2
  8. package/es/components/header-layout/header-layout.vue2.js +3 -2
  9. package/es/components/index.js +269 -261
  10. package/es/components/md-container/md-container.vue2.js +3 -2
  11. package/es/components/menu/menu-item.vue2.js +3 -2
  12. package/es/components/menu/sub-menu.vue2.js +3 -2
  13. package/es/components/message/message.vue2.js +12 -12
  14. package/es/components/modal/index.js +15 -0
  15. package/es/components/modal/modal.vue.js +4 -0
  16. package/es/components/modal/modal.vue2.js +92 -0
  17. package/es/components/modal/style/css.js +4 -0
  18. package/es/components/modal/style/index.js +4 -0
  19. package/es/components/modal/use/use-modal.js +95 -0
  20. package/es/components/multiple-tabs/multiple-tabs.vue2.js +15 -14
  21. package/es/components/multiple-tabs/tab-content.vue2.js +11 -12
  22. package/es/components/multiple-tabs/use/use-multiple-tabs.js +22 -23
  23. package/es/components/result/result.vue2.js +3 -2
  24. package/es/components/side-menu/side-menu.vue2.js +26 -25
  25. package/es/components/super-form/component-map.js +24 -23
  26. package/es/components/super-form/super-form-action.vue2.js +28 -29
  27. package/es/components/super-form/super-form-item.vue2.js +132 -123
  28. package/es/components/super-form/super-form.vue2.js +139 -136
  29. package/es/components/super-form/use/use-form-events.js +144 -139
  30. package/es/components/table/field.js +90 -52
  31. package/es/components/table/index.js +15 -12
  32. package/es/components/table/types.js +1 -0
  33. package/es/components/tabs/tab-nav.vue2.js +3 -2
  34. package/es/components/upload/upload-content.vue2.js +2 -2
  35. package/es/components/upload/upload.vue2.js +40 -49
  36. package/es/index.js +354 -346
  37. package/es/package.json.js +1 -1
  38. package/lib/component.cjs +1 -1
  39. package/lib/components/backtop/backtop.vue2.cjs +1 -1
  40. package/lib/components/button/button.vue2.cjs +1 -1
  41. package/lib/components/context-menu/context-menu.vue2.cjs +1 -1
  42. package/lib/components/date-picker/date-picker-com/basic-month-table.vue2.cjs +1 -1
  43. package/lib/components/footer-layout/footer-layout.vue2.cjs +1 -1
  44. package/lib/components/header-layout/header-layout.vue2.cjs +1 -1
  45. package/lib/components/index.cjs +1 -1
  46. package/lib/components/md-container/md-container.vue2.cjs +1 -1
  47. package/lib/components/menu/menu-item.vue2.cjs +1 -1
  48. package/lib/components/menu/sub-menu.vue2.cjs +1 -1
  49. package/lib/components/message/message.vue2.cjs +1 -1
  50. package/lib/components/modal/index.cjs +1 -0
  51. package/lib/components/modal/modal.vue.cjs +1 -0
  52. package/lib/components/modal/modal.vue2.cjs +1 -0
  53. package/lib/components/modal/style/css.cjs +1 -0
  54. package/lib/components/modal/style/index.cjs +1 -0
  55. package/lib/components/modal/use/use-modal.cjs +1 -0
  56. package/lib/components/multiple-tabs/multiple-tabs.vue2.cjs +1 -1
  57. package/lib/components/multiple-tabs/tab-content.vue2.cjs +1 -1
  58. package/lib/components/multiple-tabs/use/use-multiple-tabs.cjs +1 -1
  59. package/lib/components/result/result.vue2.cjs +1 -1
  60. package/lib/components/side-menu/side-menu.vue2.cjs +1 -1
  61. package/lib/components/super-form/component-map.cjs +1 -1
  62. package/lib/components/super-form/super-form-action.vue2.cjs +1 -1
  63. package/lib/components/super-form/super-form-item.vue2.cjs +1 -1
  64. package/lib/components/super-form/super-form.vue2.cjs +1 -1
  65. package/lib/components/super-form/use/use-form-events.cjs +1 -1
  66. package/lib/components/table/field.cjs +1 -1
  67. package/lib/components/table/index.cjs +1 -1
  68. package/lib/components/table/types.cjs +1 -0
  69. package/lib/components/tabs/tab-nav.vue2.cjs +1 -1
  70. package/lib/components/upload/upload-content.vue2.cjs +1 -1
  71. package/lib/components/upload/upload.vue2.cjs +1 -1
  72. package/lib/index.cjs +1 -1
  73. package/lib/package.json.cjs +1 -1
  74. package/package.json +3 -3
  75. package/tags.json +1 -1
  76. package/theme-style/src/index.scss +1 -0
  77. package/theme-style/src/modal.scss +0 -0
  78. package/theme-style/vft-modal.css +0 -0
  79. package/web-types.json +1 -1
  80. /package/es/components/{table/type.js → modal/types.js} +0 -0
  81. /package/lib/components/{table/type.cjs → modal/types.cjs} +0 -0
@@ -1,4 +1,4 @@
1
- import { defineComponent as k, computed as w, unref as c, useSlots as $, createVNode as d, mergeProps as q, withDirectives as z, vShow as X, isVNode as Y, createTextVNode as Q } from "vue";
1
+ import { defineComponent as F, computed as w, unref as f, useSlots as $, createVNode as p, mergeProps as O, withDirectives as z, vShow as X, isVNode as Y, createTextVNode as Q } from "vue";
2
2
  import { VftDivider as Z } from "../divider/index.js";
3
3
  import "../icon/index.js";
4
4
  import "../avatar/index.js";
@@ -10,7 +10,7 @@ import "../collapse-transition/index.js";
10
10
  import "../tooltip/index.js";
11
11
  import "../popover/index.js";
12
12
  import "../menu/index.js";
13
- import { isFunction as E, isBoolean as K, cloneDeep as _, isNull as ee, upperFirst as te } from "@vft/utils";
13
+ import { isFunction as R, isBoolean as K, cloneDeep as _, isNull as ee, upperFirst as te } from "@vft/utils";
14
14
  import "../context-menu/context-menu.vue2.js";
15
15
  import "../multiple-tabs/index.js";
16
16
  import "../header-layout/index.js";
@@ -37,7 +37,7 @@ import "../clamp-toggle/index.js";
37
37
  import "../page-wrapper/index.js";
38
38
  import "../exception/index.js";
39
39
  import "../search/index.js";
40
- import { VftFormItem as re } from "../form/index.js";
40
+ import { VftFormItem as oe } from "../form/index.js";
41
41
  import "../button/index.js";
42
42
  import "../checkbox/index.js";
43
43
  import "../radio/index.js";
@@ -57,7 +57,7 @@ import "../image-viewer/index.js";
57
57
  import "../list-cell/index.js";
58
58
  import "../dialog/index.js";
59
59
  import "../date-time-select/index.js";
60
- import { VftCol as L } from "../col/index.js";
60
+ import { VftCol as k } from "../col/index.js";
61
61
  import "../row/index.js";
62
62
  import "../horizontal-menu/index.js";
63
63
  import "../time-picker/index.js";
@@ -76,6 +76,7 @@ import "../autocomplete/index.js";
76
76
  import "./index.js";
77
77
  import "../progress/index.js";
78
78
  import "../upload/index.js";
79
+ import "../modal/index.js";
79
80
  import "../md-container/index.js";
80
81
  import "../md-comment/index.js";
81
82
  import "../md-tabs/index.js";
@@ -83,20 +84,20 @@ import "../md-vue-playground/index.js";
83
84
  import "../md-code-demo/index.js";
84
85
  import "../md-code-tabs/index.js";
85
86
  import "../message/index.js";
86
- import { useNamespace as oe } from "../../hooks/use-namespace/index.js";
87
+ import { useNamespace as re } from "../../hooks/use-namespace/index.js";
87
88
  import "@popperjs/core";
88
89
  import "lodash";
89
90
  import "../../hooks/use-z-index/index.js";
90
91
  import "@vueuse/core";
91
92
  import "../../utils/ns-cover.js";
92
- import { FormCompEnum as s, componentMap as B, isInput as ie, isDatePicker as ne, isRangePicker as se } from "./component-map.js";
93
- import { createPlaceholderMessage as F } from "./use/helper.js";
93
+ import { FormCompEnum as s, componentMap as L, isInput as ie, isDatePicker as ne, isRangePicker as se } from "./component-map.js";
94
+ import { createPlaceholderMessage as B } from "./use/helper.js";
94
95
  function v(t) {
95
96
  return typeof t == "function" || Object.prototype.toString.call(t) === "[object Object]" && !Y(t);
96
97
  }
97
- const me = k({
98
+ const me = F({
98
99
  inheritAttrs: !1
99
- }), $t = /* @__PURE__ */ k({
100
+ }), zt = /* @__PURE__ */ F({
100
101
  ...me,
101
102
  __name: "super-form-item",
102
103
  props: {
@@ -113,25 +114,25 @@ const me = k({
113
114
  }
114
115
  },
115
116
  setup(t) {
116
- const D = oe("super-form"), p = w(() => {
117
+ const D = re("super-form"), d = w(() => {
117
118
  const {
118
- mergeDynamicData: o
119
+ mergeDynamicData: r
119
120
  } = t.formProps;
120
121
  return {
121
122
  field: t.schema.field,
122
123
  model: t.formModel,
123
124
  values: {
124
- ...o,
125
+ ...r,
125
126
  ...t.allDefaultValues,
126
127
  ...t.formModel
127
128
  },
128
129
  schema: t.schema
129
130
  };
130
- }), S = w(() => {
131
+ }), x = w(() => {
131
132
  let {
132
- componentProps: o = {}
133
+ componentProps: r = {}
133
134
  } = t.schema;
134
- E(o) && (o = o({
135
+ R(r) && (r = r({
135
136
  schema: t.schema,
136
137
  tableAction: t.tableAction,
137
138
  formModel: t.formModel,
@@ -169,218 +170,226 @@ const me = k({
169
170
  }], [s.MONTHRANGE_PICKER, {
170
171
  type: s.MONTHRANGE_PICKER
171
172
  }]]);
172
- return e.has(t.schema.component) && (o = Object.assign(e.get(t.schema.component) || {}, o)), o;
173
+ return e.has(t.schema.component) && (r = Object.assign(e.get(t.schema.component) || {}, r)), r;
173
174
  }), H = w(() => {
174
175
  const {
175
- disabled: o
176
+ disabled: r
176
177
  } = t.formProps, {
177
178
  dynamicDisabled: e
178
179
  } = t.schema, {
179
180
  disabled: a = !1
180
- } = c(S);
181
- let m = !!o || a;
182
- return K(e) && (m = e), E(e) && (m = e(c(p))), m;
181
+ } = f(x);
182
+ let m = !!r || a;
183
+ return K(e) && (m = e), R(e) && (m = e(f(d))), m;
183
184
  });
184
185
  function j() {
185
186
  const {
186
- show: o,
187
+ show: r,
187
188
  ifShow: e
188
189
  } = t.schema, {
189
190
  showAdvancedButton: a
190
191
  } = t.formProps, m = a && K(t.isAdvanced) ? t.isAdvanced : !0;
191
- let l = !0, f = !0;
192
- return K(o) && (l = o), K(e) && (f = e), E(o) && (l = o(c(p))), E(e) && (f = e(c(p))), l = l && m, {
192
+ let l = !0, u = !0;
193
+ return K(r) && (l = r), K(e) && (u = e), R(r) && (l = r(f(d))), R(e) && (u = e(f(d))), l = l && m, {
193
194
  isShow: l,
194
- isIfShow: f
195
+ isIfShow: u
195
196
  };
196
197
  }
197
198
  function G() {
198
199
  const {
199
- rules: o = [],
200
+ rules: r = [],
200
201
  component: e,
201
202
  rulesMessageJoinLabel: a,
202
203
  label: m,
203
204
  dynamicRule: l,
204
- required: f,
205
- dynamicRuleAdd: C = !0
205
+ required: u,
206
+ dynamicRuleAdd: A = !0
206
207
  } = t.schema;
207
- if (E(l) && !C)
208
- return l(c(p));
209
- let r = _(o);
208
+ if (R(l) && !A)
209
+ return l(f(d));
210
+ let o = _(r);
210
211
  const {
211
- rulesMessageJoinLabel: I
212
- } = t.formProps, b = Reflect.has(t.schema, "rulesMessageJoinLabel") ? a : I, R = F(e, `${b ? m : ""}`);
213
- function y(n, i) {
214
- const P = n.message || R;
215
- return i === void 0 || ee(i) || Array.isArray(i) && i.length === 0 || typeof i == "string" && i.trim() === "" || typeof i == "object" && Reflect.has(i, "checked") && Reflect.has(i, "halfChecked") && Array.isArray(i.checked) && Array.isArray(i.halfChecked) && i.checked.length === 0 && i.halfChecked.length === 0 ? Promise.reject(P) : Promise.resolve();
212
+ rulesMessageJoinLabel: g
213
+ } = t.formProps, y = Reflect.has(t.schema, "rulesMessageJoinLabel") ? a : g, I = B(e, `${y ? m : ""}`);
214
+ function M(n, i) {
215
+ const E = n.message || I;
216
+ return i === void 0 || ee(i) || Array.isArray(i) && i.length === 0 || typeof i == "string" && i.trim() === "" || typeof i == "object" && Reflect.has(i, "checked") && Reflect.has(i, "halfChecked") && Array.isArray(i.checked) && Array.isArray(i.halfChecked) && i.checked.length === 0 && i.halfChecked.length === 0 ? Promise.reject(E) : Promise.resolve();
216
217
  }
217
- const h = E(f) ? f(c(p)) : f;
218
- h && (!r || r.length === 0 ? r = [{
219
- required: h,
220
- validator: y
221
- }] : r.findIndex((i) => Reflect.has(i, "required")) === -1 && r.unshift({
222
- required: h,
223
- validator: y
218
+ const b = R(u) ? u(f(d)) : u;
219
+ b && (!o || o.length === 0 ? o = [{
220
+ required: b,
221
+ validator: M
222
+ }] : o.findIndex((i) => Reflect.has(i, "required")) === -1 && o.unshift({
223
+ required: b,
224
+ validator: M
224
225
  }));
225
- const g = r.findIndex((n) => Reflect.has(n, "required") && !Reflect.has(n, "validator"));
226
- if (g !== -1) {
227
- const n = r[g], {
226
+ const h = o.findIndex((n) => Reflect.has(n, "required") && !Reflect.has(n, "validator"));
227
+ if (h !== -1) {
228
+ const n = o[h], {
228
229
  isShow: i
229
230
  } = j();
230
- i || (n.required = !1), e && (Reflect.has(n, "type") || (n.type = e === "InputNumber" ? "number" : "string"), n.message = n.message || R, (e.includes("Input") || e.includes("Textarea")) && (n.whitespace = !0));
231
+ i || (n.required = !1), e && (Reflect.has(n, "type") || (n.type = e === "InputNumber" ? "number" : "string"), n.message = n.message || I, (e.includes("Input") || e.includes("Textarea")) && (n.whitespace = !0));
231
232
  }
232
- const u = r.findIndex((n) => n.min), A = r.findIndex((n) => n.max);
233
- function M(n, i, P = "all") {
234
- const x = (n == null ? void 0 : n.length) || 0;
235
- return ["min", "all"].includes(P) && x < r[i].min ? Promise.reject(m + "至少为" + r[i].min + "位") : ["max", "all"].includes(P) && x > r[i].max ? Promise.reject(m + "最多" + r[i].max + "位") : Promise.resolve();
233
+ const c = o.findIndex((n) => n.min), P = o.findIndex((n) => n.max);
234
+ function C(n, i, E = "all") {
235
+ const S = (n == null ? void 0 : n.length) || 0;
236
+ return ["min", "all"].includes(E) && S < o[i].min ? Promise.reject(m + "至少为" + o[i].min + "位") : ["max", "all"].includes(E) && S > o[i].max ? Promise.reject(m + "最多" + o[i].max + "位") : Promise.resolve();
236
237
  }
237
- (u !== -1 || A !== -1) && (u !== -1 && A !== -1 && !r[u].validator && !r[u].message ? r[u].validator = (n, i) => M(i, u) : u !== -1 && !r[u].validator && !r[u].message ? r[u].validator = (n, i) => M(i, u, "min") : A !== -1 && !r[A].validator && !r[A].message && (r[A].validator = (n, i) => M(i, A, "max")));
238
- const T = r.findIndex((n) => n.len);
239
- return T !== -1 && (r[T].validator = (n, i) => i.length !== r[T].len ? Promise.reject(m + "必须是" + r[T].len + "位") : Promise.resolve()), E(l) && C && r.push(l(c(p))), r;
238
+ (c !== -1 || P !== -1) && (c !== -1 && P !== -1 && !o[c].validator && !o[c].message ? o[c].validator = (n, i) => C(i, c) : c !== -1 && !o[c].validator && !o[c].message ? o[c].validator = (n, i) => C(i, c, "min") : P !== -1 && !o[P].validator && !o[P].message && (o[P].validator = (n, i) => C(i, P, "max")));
239
+ const T = o.findIndex((n) => n.len);
240
+ return T !== -1 && (o[T].validator = (n, i) => i.length !== o[T].len ? Promise.reject(m + "必须是" + o[T].len + "位") : Promise.resolve()), R(l) && A && o.push(l(f(d))), o;
240
241
  }
241
242
  const U = () => {
242
243
  var n;
243
244
  const {
244
- renderComponentContent: o,
245
+ renderComponentContent: r,
245
246
  component: e,
246
247
  field: a,
247
248
  changeEvent: m = "change",
248
249
  valueField: l,
249
- label: f,
250
- placeholderJoinLabel: C = !0
250
+ label: u,
251
+ placeholderJoinLabel: A = !0
251
252
  } = t.schema;
252
- let r = m;
253
- ie(e) ? r = "input" : (ne(e) || e === s.TIME_PICKER) && (r = "update:modelValue");
254
- const I = `on${te(r)}`, b = {
255
- [I]: (...i) => {
256
- const [P] = i;
257
- g[I] && g[I](...i);
258
- const x = P ? P.target : null, W = x ? x.value : P;
253
+ let o = m;
254
+ ie(e) ? o = "input" : (ne(e) || e === s.TIME_PICKER) && (o = "update:modelValue");
255
+ const g = `on${te(o)}`, y = {
256
+ [g]: (...i) => {
257
+ const [E] = i;
258
+ h[g] && h[g](...i);
259
+ const S = E ? E.target : null, W = S ? S.value : E;
259
260
  t.setFormModel(a, W, t.schema);
260
261
  }
261
- }, R = B.get(e), {
262
- autoSetPlaceHolder: y,
263
- size: h
264
- } = t.formProps, g = {
262
+ }, I = L.get(e), {
263
+ autoSetPlaceHolder: M,
264
+ size: b
265
+ } = t.formProps, h = {
265
266
  clearable: !0,
266
- size: h,
267
- ...c(S),
268
- disabled: c(H)
267
+ size: b,
268
+ ...f(x),
269
+ disabled: f(H)
269
270
  };
270
- !g.disabled && y && !se(e) && e && (g.placeholder = ((n = c(S)) == null ? void 0 : n.placeholder) || F(e, C ? f : ""));
271
- const A = {
271
+ !h.disabled && M && !se(e) && e && (h.placeholder = ((n = f(x)) == null ? void 0 : n.placeholder) || B(e, A ? u : ""));
272
+ const P = {
272
273
  [l || "model-value"]: t.formModel[a]
273
- }, M = {
274
- ...b,
275
- ...g,
276
- ...A
274
+ }, C = {
275
+ ...y,
276
+ ...h,
277
+ ...P
277
278
  };
278
- if (!o)
279
- return d(R, M, null);
280
- const T = E(o) ? {
281
- ...o(c(p))
279
+ if (!r)
280
+ return p(I, C, null);
281
+ const T = R(r) ? {
282
+ ...r(f(d))
282
283
  } : {
283
- default: () => o
284
+ default: () => r
284
285
  };
285
- return d(R, M, v(T) ? T : {
286
+ return p(I, C, v(T) ? T : {
286
287
  default: () => [T]
287
288
  });
288
289
  };
289
290
  function N() {
290
291
  const {
291
- showLabel: o = !0,
292
+ showLabel: r = !0,
292
293
  label: e,
293
294
  subLabel: a
294
295
  } = t.schema;
295
- return o && e ? a ? d("span", null, [e, Q(" "), d("span", null, [a])]) : e : void 0;
296
+ return r && e ? a ? p("span", null, [e, Q(" "), p("span", null, [a])]) : e : void 0;
296
297
  }
297
298
  const V = $();
298
- function O(o, e = "default", a) {
299
- if (!o || !Reflect.has(o, e))
299
+ function q(r, e = "default", a) {
300
+ if (!r || !Reflect.has(r, e))
300
301
  return null;
301
- if (!E(o[e]))
302
+ if (!R(r[e]))
302
303
  return console.error(`${e} is not a function!`), null;
303
- const m = o[e];
304
+ const m = r[e];
304
305
  return m ? m(a) : null;
305
306
  }
306
307
  function J() {
307
308
  const {
308
- itemProps: o,
309
+ itemProps: r,
309
310
  slot: e,
310
311
  render: a,
311
312
  field: m,
312
313
  suffix: l,
313
- prefix: f,
314
- prefixParentStyle: C
314
+ prefix: u,
315
+ prefixParentStyle: A
315
316
  } = t.schema, {
316
- autoCleanErrorMessage: r
317
- } = t.formProps, I = () => e ? O(V, e, c(p)) : a ? a(c(p)) : U(), b = !!l, R = !!f, y = E(l) ? l(c(p)) : l, h = E(f) ? f(c(p)) : f, g = () => {
317
+ autoCleanErrorMessage: o
318
+ } = t.formProps, g = () => e ? q(V, e, f(d)) : a ? a(f(d)) : U(), y = !!l, I = !!u, M = R(l) ? l(f(d)) : l, b = R(u) ? u(f(d)) : u, h = () => {
318
319
  t.updateSchema([{
319
320
  field: m,
320
321
  itemProps: {
321
322
  error: ""
322
323
  }
323
324
  }]);
324
- }, u = () => d(re, q({
325
+ }, c = () => p(oe, O({
325
326
  prop: m,
326
327
  class: [{
327
- [D.is(l)]: b
328
+ [D.is(l)]: y
328
329
  }, D.e("item")]
329
- }, o, {
330
- "onUpdate:error": r ? g : null,
330
+ }, r, {
331
+ "onUpdate:error": o ? h : null,
331
332
  rules: G()
332
333
  }), {
333
- default: () => [d("div", {
334
+ default: () => [p("div", {
334
335
  class: D.e("container")
335
- }, [d("div", {
336
+ }, [p("div", {
336
337
  class: D.e("content")
337
- }, [I()]), b && d("span", {
338
+ }, [g()]), y && p("span", {
338
339
  class: D.m("suffix")
339
- }, [y])])],
340
+ }, [M])])],
340
341
  label: N() ? () => N() : void 0
341
342
  });
342
- return R ? d("div", {
343
- style: C
344
- }, [d("span", {
343
+ return I ? p("div", {
344
+ style: A
345
+ }, [p("span", {
345
346
  class: D.m("prefix")
346
- }, [h]), u()]) : u();
347
+ }, [b]), c()]) : c();
347
348
  }
348
349
  return () => {
349
- let o;
350
+ let r;
350
351
  const {
351
352
  colProps: e = {},
352
353
  colSlot: a,
353
354
  renderColContent: m,
354
355
  component: l,
355
- render: f
356
+ render: u,
357
+ quickColSpan: A
356
358
  } = t.schema;
357
- if (!B.has(l) && !m && !f)
359
+ if (!L.has(l) && !m && !u)
358
360
  return null;
359
361
  const {
360
- baseColProps: C = {}
361
- } = t.formProps, r = {
362
- ...C,
362
+ baseColProps: o = {},
363
+ quickColSpan: g
364
+ } = t.formProps, y = g ? {
365
+ span: Math.floor(24 / g),
366
+ ...o
367
+ } : {}, I = A ? {
368
+ span: Math.floor(24 / A),
363
369
  ...e
370
+ } : {}, M = {
371
+ ...y,
372
+ ...I
364
373
  }, {
365
- isIfShow: I,
366
- isShow: b
367
- } = j(), R = c(p), y = () => a ? O(V, a, R) : m ? m(R) : J();
374
+ isIfShow: b,
375
+ isShow: h
376
+ } = j(), c = f(d), P = () => a ? q(V, a, c) : m ? m(c) : J();
368
377
  if (l === s.DIVIDER) {
369
- let h;
370
- return d(L, q({
378
+ let C;
379
+ return p(k, O({
371
380
  span: 24
372
- }, e), {
373
- default: () => [d(Z, c(S), v(h = N()) ? h : {
374
- default: () => [h]
381
+ }, I), {
382
+ default: () => [p(Z, f(x), v(C = N()) ? C : {
383
+ default: () => [C]
375
384
  })]
376
385
  });
377
386
  }
378
- return I && z(d(L, r, v(o = y()) ? o : {
379
- default: () => [o]
380
- }), [[X, b]]);
387
+ return b && z(p(k, M, v(r = P()) ? r : {
388
+ default: () => [r]
389
+ }), [[X, h]]);
381
390
  };
382
391
  }
383
392
  });
384
393
  export {
385
- $t as default
394
+ zt as default
386
395
  };