@done-coding/admin-core 0.16.0 → 0.17.0

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 (54) hide show
  1. package/es/components/app-layout/AppBody.vue.mjs +1 -1
  2. package/es/components/app-layout/AppBody.vue2.mjs +43 -39
  3. package/es/components/app-layout/AppPage.vue.mjs +2 -2
  4. package/es/components/app-layout/AppPage.vue2.mjs +114 -105
  5. package/es/components/display/TabsHeader.vue.mjs +2 -2
  6. package/es/components/display/TabsHeader.vue2.mjs +31 -32
  7. package/es/components/display/TabsRefineFlow.vue.mjs +30 -32
  8. package/es/components/display/TabsTile.vue.mjs +2 -2
  9. package/es/components/display/WatchSize.vue.mjs +34 -31
  10. package/es/components/form/FormMain.vue.mjs +2 -2
  11. package/es/components/form/FormMain.vue2.mjs +80 -75
  12. package/es/components/form/FormSearch.vue.mjs +1 -1
  13. package/es/components/form/FormSearch.vue2.mjs +82 -80
  14. package/es/components/form/FormSubmitPanel.vue2.mjs +11 -10
  15. package/es/components/form/use-layout-by-container.mjs +20 -0
  16. package/es/components/list-page/ListPage.vue.mjs +2 -2
  17. package/es/components/list-page/ListPage.vue2.mjs +167 -137
  18. package/es/components/list-page/use-sticky.mjs +41 -0
  19. package/es/components/modal/ConfirmModal.vue.mjs +3 -2
  20. package/es/components/modal/ConfirmModal.vue2.mjs +104 -55
  21. package/es/components/modal/DetailModal.vue.mjs +40 -34
  22. package/es/components/modal/ModalPorter.vue.mjs +20 -23
  23. package/es/components/table/TableMain.vue.mjs +1 -1
  24. package/es/components/table/TableMain.vue2.mjs +27 -28
  25. package/es/hooks/activated.mjs +16 -24
  26. package/es/hooks/use-breakpoint.mjs +17 -21
  27. package/es/hooks/use-channel-viewport-height.mjs +26 -8
  28. package/es/hooks/use-observe-size.mjs +26 -0
  29. package/es/index.mjs +177 -173
  30. package/es/inject/key.mjs +18 -15
  31. package/es/style.css +1 -1
  32. package/es/utils/dom.mjs +11 -1
  33. package/package.json +2 -2
  34. package/types/components/app-layout/AppPage.vue.d.ts +8 -0
  35. package/types/components/display/TabsTile.vue.d.ts +2 -2
  36. package/types/components/display/WatchSize.vue.d.ts +4 -0
  37. package/types/components/display/types.d.ts +1 -5
  38. package/types/components/form/FormItem.vue.d.ts +8 -8
  39. package/types/components/form/FormMain.vue.d.ts +1 -12
  40. package/types/components/form/FormSubmitPanel.vue.d.ts +1 -1
  41. package/types/components/form/types.d.ts +1 -0
  42. package/types/components/form/use-layout-by-container.d.ts +11 -0
  43. package/types/components/list-page/ListPage.vue.d.ts +6 -1
  44. package/types/components/list-page/types.d.ts +5 -0
  45. package/types/components/list-page/use-sticky.d.ts +19 -0
  46. package/types/components/modal/ConfirmModal.vue.d.ts +15 -3
  47. package/types/components/modal/DetailModal.vue.d.ts +4 -1
  48. package/types/components/panel/PanelItemNestForm.vue.d.ts +1 -1
  49. package/types/hooks/index.d.ts +1 -0
  50. package/types/hooks/use-channel-viewport-height.d.ts +2 -1
  51. package/types/hooks/use-observe-size.d.ts +7 -0
  52. package/types/inject/key.d.ts +8 -2
  53. package/types/injectInfo.json.d.ts +1 -1
  54. package/types/utils/dom.d.ts +1 -0
@@ -1,7 +1,8 @@
1
- import { defineComponent as H, ref as w, computed as i, provide as C, watch as b, openBlock as y, createBlock as S, createSlots as V, withCtx as r, createElementVNode as $, normalizeStyle as x, renderSlot as h } from "vue";
2
- import _ from "./HeightProvider.vue.mjs";
3
- import { useChannelViewportHeight as k } from "../../hooks/use-channel-viewport-height.mjs";
4
- const F = /* @__PURE__ */ H({
1
+ import { defineComponent as H, ref as u, computed as i, provide as f, watch as v, openBlock as w, createBlock as C, createSlots as S, withCtx as a, createElementVNode as V, normalizeStyle as _, renderSlot as r } from "vue";
2
+ import b from "./HeightProvider.vue.mjs";
3
+ import { useChannelViewportHeight as x } from "../../hooks/use-channel-viewport-height.mjs";
4
+ import { SCOPE_VIEWPORT_MAX_HEIGHT as $ } from "../../inject/key.mjs";
5
+ const k = /* @__PURE__ */ H({
5
6
  __name: "TabsRefineFlow",
6
7
  props: {
7
8
  viewportHeight: {},
@@ -12,47 +13,44 @@ const F = /* @__PURE__ */ H({
12
13
  refineReduceHeight: { default: 0 }
13
14
  },
14
15
  emits: ["viewportHeightChange"],
15
- setup(n, { emit: d }) {
16
- const e = n, p = d, a = e.channel ? Symbol.for(e.channel) : void 0, { viewportHeightFinal: c, parentLevel: o } = k(e), l = w(0), s = i(() => e.padding[0] + e.padding[2]), g = i(() => ({
17
- padding: e.padding.map((t) => `${t}px`).join(" "),
16
+ setup(n, { emit: p }) {
17
+ const t = n, h = p, { viewportHeightFinal: d, nearestScope: l } = x(t), o = u(0), s = i(() => t.padding[0] + t.padding[2]), c = i(() => ({
18
+ padding: t.padding.map((e) => `${e}px`).join(" "),
18
19
  boxSizing: "border-box"
19
- })), v = i(
20
+ })), g = i(
20
21
  () => Math.max(
21
- c.value - s.value - e.refineReduceHeight,
22
+ d.value - s.value - t.refineReduceHeight,
22
23
  0
23
24
  )
24
- ), m = i(
25
- () => o.value > 0 ? o.value : 1
26
- ), u = i(() => m.value + 1), f = (t) => {
27
- l.value = t, p("viewportHeightChange", t);
25
+ ), m = (e) => {
26
+ o.value = e, h("viewportHeightChange", e);
28
27
  };
29
- return a && C(a, {
30
- viewportHeight: i(() => l.value),
31
- // level 有意取 setup 期一次性快照(channel 不响应式),非误丢响应性,定向 disable。
32
- // eslint-disable-next-line vue/no-ref-object-destructure
33
- level: u.value
34
- }), b(
28
+ return f($, {
29
+ scope: t.channel,
30
+ viewportMaxHeight: i(() => o.value),
31
+ parent: l
32
+ }), v(
35
33
  // eslint-disable-next-line vue/no-setup-props-destructure
36
- () => e.channel,
34
+ () => t.channel,
37
35
  () => console.error("[TabsMain] channel 不支持响应式变更,当前值已忽略。")
38
- ), (t, L) => (y(), S(_, {
39
- viewportHeight: v.value,
36
+ ), (e, y) => (w(), C(b, {
37
+ viewportHeight: g.value,
40
38
  minHeight: n.minHeight,
41
- onChildViewportHeightChange: f
42
- }, V({
43
- default: r(() => [
44
- $("div", {
45
- style: x(g.value)
39
+ onChildViewportHeightChange: m
40
+ }, S({
41
+ default: a(() => [
42
+ V("div", {
43
+ style: _(c.value)
46
44
  }, [
47
- h(t.$slots, "default")
45
+ r(e.$slots, "default")
48
46
  ], 4)
49
47
  ]),
50
48
  _: 2
51
49
  }, [
52
- t.$slots.header ? {
50
+ e.$slots.header ? {
53
51
  name: "header",
54
- fn: r(() => [
55
- h(t.$slots, "header")
52
+ fn: a(() => [
53
+ r(e.$slots, "header")
56
54
  ]),
57
55
  key: "0"
58
56
  } : void 0
@@ -60,5 +58,5 @@ const F = /* @__PURE__ */ H({
60
58
  }
61
59
  });
62
60
  export {
63
- F as default
61
+ k as default
64
62
  };
@@ -1,7 +1,7 @@
1
1
  import o from "./TabsTile.vue2.mjs";
2
2
  /* empty css */
3
3
  import t from "../../_virtual/_plugin-vue_export-helper.mjs";
4
- const f = /* @__PURE__ */ t(o, [["__scopeId", "data-v-39fad9e5"]]);
4
+ const m = /* @__PURE__ */ t(o, [["__scopeId", "data-v-0843fa11"]]);
5
5
  export {
6
- f as default
6
+ m as default
7
7
  };
@@ -1,50 +1,53 @@
1
- import { defineComponent as d, ref as m, nextTick as l, onUpdated as u, onBeforeUnmount as g, openBlock as f, createElementBlock as p, renderSlot as v } from "vue";
2
- import w from "lodash/debounce";
3
- import { useActivatedExec as C, useActivatedEvent as b } from "../../hooks/activated.mjs";
4
- const E = /* @__PURE__ */ d({
1
+ import { defineComponent as l, shallowRef as u, nextTick as m, onUpdated as f, openBlock as g, createElementBlock as v, renderSlot as p } from "vue";
2
+ import b from "lodash/debounce";
3
+ import { useObserveSize as w } from "../../hooks/use-observe-size.mjs";
4
+ import { useActivated as z } from "../../hooks/activated.mjs";
5
+ const x = /* @__PURE__ */ l({
5
6
  __name: "WatchSize",
6
7
  props: {
7
- mode: { default: "height" }
8
+ mode: { default: "height" },
9
+ observeResize: { type: Boolean, default: !1 },
10
+ debounceTime: { default: 16 }
8
11
  },
9
12
  emits: ["heightChange", "widthChange"],
10
- setup(r, { emit: c }) {
11
- const s = r, i = c, t = m(), e = w(() => {
12
- l(() => {
13
- var n, o, a, h;
14
- switch (s.mode) {
13
+ setup(c, { emit: d }) {
14
+ const o = c, n = d, i = u(), e = b(() => {
15
+ m(() => {
16
+ var t, a, s, r;
17
+ switch (o.mode) {
15
18
  case "height":
16
- i("heightChange", ((n = t.value) == null ? void 0 : n.clientHeight) || 0);
19
+ n("heightChange", ((t = i.value) == null ? void 0 : t.clientHeight) || 0);
17
20
  break;
18
21
  case "width":
19
- i("widthChange", ((o = t.value) == null ? void 0 : o.clientWidth) || 0);
22
+ n("widthChange", ((a = i.value) == null ? void 0 : a.clientWidth) || 0);
20
23
  break;
21
24
  case "both":
22
- i("heightChange", ((a = t.value) == null ? void 0 : a.clientHeight) || 0), i("widthChange", ((h = t.value) == null ? void 0 : h.clientWidth) || 0);
25
+ n("heightChange", ((s = i.value) == null ? void 0 : s.clientHeight) || 0), n("widthChange", ((r = i.value) == null ? void 0 : r.clientWidth) || 0);
23
26
  break;
24
27
  }
25
28
  });
26
- }, 16);
27
- return C(() => {
28
- e();
29
- }), b(
30
- () => {
31
- window.addEventListener("resize", e);
32
- },
33
- () => {
34
- window.removeEventListener("resize", e);
35
- }
36
- ), u(() => {
37
- e();
38
- }), g(() => {
39
- e(), e.flush();
40
- }), (n, o) => (f(), p("div", {
29
+ }, o.debounceTime);
30
+ w({
31
+ getTarget: () => i.value,
32
+ onResize: () => e(),
33
+ enabled: () => o.observeResize,
34
+ // 关 hook 内防抖:emitSizeChange 已是跨 RO / window.resize / 激活三源共享的单层防抖,
35
+ // 不宜在 hook 层再叠一层(否则 RO 路径双重防抖)。
36
+ debounce: 0
37
+ });
38
+ const { isActivated: h } = z((t) => {
39
+ t.isActivated ? (e(), window.addEventListener("resize", e)) : (window.removeEventListener("resize", e), t.triggerType === "unmounted" ? (e(), e.flush()) : e.cancel());
40
+ });
41
+ return f(() => {
42
+ h.value && e();
43
+ }), (t, a) => (g(), v("div", {
41
44
  ref_key: "box",
42
- ref: t
45
+ ref: i
43
46
  }, [
44
- v(n.$slots, "default")
47
+ p(t.$slots, "default")
45
48
  ], 512));
46
49
  }
47
50
  });
48
51
  export {
49
- E as default
52
+ x as default
50
53
  };
@@ -1,7 +1,7 @@
1
1
  import o from "./FormMain.vue2.mjs";
2
2
  /* empty css */
3
3
  import r from "../../_virtual/_plugin-vue_export-helper.mjs";
4
- const p = /* @__PURE__ */ r(o, [["__scopeId", "data-v-83b1b718"]]);
4
+ const c = /* @__PURE__ */ r(o, [["__scopeId", "data-v-cc2ea388"]]);
5
5
  export {
6
- p as default
6
+ c as default
7
7
  };
@@ -1,10 +1,11 @@
1
- import { defineComponent as Y, shallowRef as B, provide as p, computed as o, ref as L, watch as b, openBlock as E, createBlock as V, unref as F, withCtx as v, createVNode as j, createElementBlock as H, Fragment as U, renderList as q, withDirectives as z, mergeProps as x, renderSlot as R, vShow as J } from "vue";
2
- import { ElForm as Q, ElRow as W, ElCol as X } from "element-plus";
3
- import Z from "./FormItem.vue.mjs";
4
- import { FORM_ITEM_CHANGE_LOADING as ee, stringifyFormData as te, parseFormData as le, generateFormData as ae, resolveFormLayout as M } from "./utils.mjs";
5
- import { createNestFormExposeMap as re } from "./nest-registry.mjs";
6
- import { FORM_NEST_REGISTRY_KEY as oe, NEST_LAYOUT_SCALE_KEY as se } from "../../inject/key.mjs";
7
- const pe = /* @__PURE__ */ Y({
1
+ import { defineComponent as Y, shallowRef as H, provide as h, computed as s, ref as _, watch as b, openBlock as F, createBlock as V, unref as E, withCtx as v, createVNode as j, createElementBlock as U, Fragment as q, renderList as z, withDirectives as J, mergeProps as x, renderSlot as B, vShow as Q } from "vue";
2
+ import { useFormLayoutByContainer as W } from "./use-layout-by-container.mjs";
3
+ import { ElForm as X, ElRow as Z, ElCol as ee } from "element-plus";
4
+ import te from "./FormItem.vue.mjs";
5
+ import { FORM_ITEM_CHANGE_LOADING as ae, stringifyFormData as le, parseFormData as oe, generateFormData as re, resolveFormLayout as R } from "./utils.mjs";
6
+ import { createNestFormExposeMap as se } from "./nest-registry.mjs";
7
+ import { FORM_NEST_REGISTRY_KEY as ne, NEST_LAYOUT_SCALE_KEY as ie } from "../../inject/key.mjs";
8
+ const Ee = /* @__PURE__ */ Y({
8
9
  name: "FormMain",
9
10
  inheritAttrs: !0,
10
11
  __name: "FormMain",
@@ -13,104 +14,108 @@ const pe = /* @__PURE__ */ Y({
13
14
  data: {},
14
15
  layout: {},
15
16
  rowGutter: { default: 8 },
16
- layoutScale: { default: 1 }
17
+ layoutScale: { default: 1 },
18
+ layoutByContainer: { type: Boolean, default: !1 }
17
19
  },
18
20
  emits: ["loadingChange", "visibleChange", "submit"],
19
- setup(d, { expose: K, emit: N }) {
20
- const r = d, y = N, s = B(), f = re();
21
- p(oe, f);
22
- const A = o(() => r.layoutScale ?? 1);
23
- p(se, A);
24
- const n = L([]), i = L({}), w = o(() => !!n.value.length), g = o(() => Object.keys(i.value).filter(
25
- (e) => i.value[e]
26
- )), D = o(() => r.list.filter((e) => !g.value.includes(e.key))), G = o(() => D.value.length > 0), I = (e) => e;
27
- K({
21
+ setup(d, { expose: M, emit: K }) {
22
+ const o = d, y = K, r = H(), { resolveLayoutByContainer: N } = W({
23
+ enabled: () => o.layoutByContainer,
24
+ getForm: () => r.value
25
+ }), f = se();
26
+ h(ne, f);
27
+ const A = s(() => o.layoutScale ?? 1);
28
+ h(ie, A);
29
+ const i = _([]), n = _({}), C = s(() => !!i.value.length), g = s(() => Object.keys(n.value).filter(
30
+ (e) => n.value[e]
31
+ )), D = s(() => o.list.filter((e) => !g.value.includes(e.key))), G = s(() => D.value.length > 0), I = (e) => e;
32
+ M({
28
33
  validate: async () => {
29
- if (!s.value) return Promise.reject(new Error("实例化未完成"));
30
- const e = new Promise((l, a) => {
34
+ if (!r.value) return Promise.reject(new Error("实例化未完成"));
35
+ const e = new Promise((a, l) => {
31
36
  var u;
32
- (u = s.value) == null || u.validate((P, C) => {
37
+ (u = r.value) == null || u.validate((P, L) => {
33
38
  if (P)
34
- l();
39
+ a();
35
40
  else {
36
- const m = { ...C || {} };
41
+ const m = { ...L || {} };
37
42
  Object.keys(m).forEach((c) => {
38
- var _;
39
- g.value.includes(c) && (console.log(`当前${c}被隐藏,移除校验`, m[c]), delete m[c], (_ = s.value) == null || _.clearValidate(c));
40
- }), Object.keys(m).length === 0 ? l() : a(C);
43
+ var O;
44
+ g.value.includes(c) && (console.log(`当前${c}被隐藏,移除校验`, m[c]), delete m[c], (O = r.value) == null || O.clearValidate(c));
45
+ }), Object.keys(m).length === 0 ? a() : l(L);
41
46
  }
42
47
  });
43
- }), t = Object.entries(f).filter(([l]) => !g.value.includes(l)).map(([, l]) => l.validate());
48
+ }), t = Object.entries(f).filter(([a]) => !g.value.includes(a)).map(([, a]) => a.validate());
44
49
  await Promise.all([e, ...t]);
45
50
  },
46
51
  resetFields: () => {
47
- if (!s.value) return console.error("实例化未完成");
48
- s.value.resetFields(), Object.values(f).forEach((e) => e.resetFields());
52
+ if (!r.value) return console.error("实例化未完成");
53
+ r.value.resetFields(), Object.values(f).forEach((e) => e.resetFields());
49
54
  },
50
55
  clearValidate: (e) => {
51
- if (!s.value) return console.error("实例化未完成");
52
- s.value.clearValidate(e), Object.values(f).forEach((t) => t.clearValidate());
56
+ if (!r.value) return console.error("实例化未完成");
57
+ r.value.clearValidate(e), Object.values(f).forEach((t) => t.clearValidate());
53
58
  },
54
- generate: () => ae(r.list),
55
- parse: (e) => le(e, r.list),
56
- stringify: () => te(r.data, r.list)
59
+ generate: () => re(o.list),
60
+ parse: (e) => oe(e, o.list),
61
+ stringify: () => le(o.data, o.list)
57
62
  });
58
- const h = o(() => r.list), S = o(() => h.value.reduce((e, t) => (t.rules && (typeof t.rules == "function" ? e[t.key] = t.rules({
59
- data: r.data,
63
+ const p = s(() => o.list), w = s(() => p.value.reduce((e, t) => (t.rules && (typeof t.rules == "function" ? e[t.key] = t.rules({
64
+ data: o.data,
60
65
  config: t
61
- }) : e[t.key] = t.rules), e), {})), k = o(() => n.value.reduce(
66
+ }) : e[t.key] = t.rules), e), {})), S = s(() => i.value.reduce(
62
67
  (e, t) => (e[t.key] = [
63
68
  {
64
69
  validator: () => [new Error(`${t.label}${t.message}`)]
65
70
  }
66
71
  ], e),
67
72
  {}
68
- )), T = o(() => {
69
- const e = Object.keys(S.value), t = Object.keys(k.value);
70
- return [...new Set(e.concat(t))].reduce((a, u) => (a[u] = [
71
- ...S.value[u] || [],
72
- ...k.value[u] || []
73
- ], a), {});
73
+ )), T = s(() => {
74
+ const e = Object.keys(w.value), t = Object.keys(S.value);
75
+ return [...new Set(e.concat(t))].reduce((l, u) => (l[u] = [
76
+ ...w.value[u] || [],
77
+ ...S.value[u] || []
78
+ ], l), {});
74
79
  });
75
- p(ee, ({ key: e, message: t }) => {
80
+ h(ae, ({ key: e, message: t }) => {
76
81
  if (!e)
77
82
  return console.error("更新状态未传入key, 此处忽略");
78
- const l = n.value.findIndex((a) => a.key === e);
79
- l === -1 ? t && n.value.push({
83
+ const a = i.value.findIndex((l) => l.key === e);
84
+ a === -1 ? t && i.value.push({
80
85
  key: e,
81
86
  message: t,
82
- label: r.list.find((a) => a.key === e).label
83
- }) : t ? n.value.splice(l, 1, {
87
+ label: o.list.find((l) => l.key === e).label
88
+ }) : t ? i.value.splice(a, 1, {
84
89
  key: e,
85
90
  message: t,
86
- label: r.list.find((a) => a.key === e).label
87
- }) : n.value.splice(l, 1);
91
+ label: o.list.find((l) => l.key === e).label
92
+ }) : i.value.splice(a, 1);
88
93
  });
89
94
  const $ = ({
90
95
  status: e,
91
96
  config: { key: t }
92
97
  }) => {
93
- (i.value[t] || !1) !== e && (i.value[t] = e);
94
- }, O = (e) => {
95
- const t = r.layoutScale ?? 1;
96
- return {
97
- ...M(r.layout, t),
98
- ...M(e, t)
98
+ (n.value[t] || !1) !== e && (n.value[t] = e);
99
+ }, k = (e) => {
100
+ const t = o.layoutScale ?? 1, a = {
101
+ ...R(o.layout, t),
102
+ ...R(e, t)
99
103
  };
104
+ return N(a);
100
105
  };
101
106
  return b(
102
- h,
107
+ p,
103
108
  (e) => {
104
- const t = e.map((l) => l.key);
105
- Object.keys(i.value).forEach((l) => {
106
- t.includes(l) || delete i.value[l];
109
+ const t = e.map((a) => a.key);
110
+ Object.keys(n.value).forEach((a) => {
111
+ t.includes(a) || delete n.value[a];
107
112
  });
108
113
  },
109
114
  {
110
115
  immediate: !0
111
116
  }
112
- ), b(w, () => {
113
- y("loadingChange", w.value);
117
+ ), b(C, () => {
118
+ y("loadingChange", C.value);
114
119
  }), b(
115
120
  G,
116
121
  (e) => {
@@ -119,37 +124,37 @@ const pe = /* @__PURE__ */ Y({
119
124
  {
120
125
  immediate: !0
121
126
  }
122
- ), (e, t) => (E(), V(F(Q), {
127
+ ), (e, t) => (F(), V(E(X), {
123
128
  ref_key: "elForm",
124
- ref: s,
129
+ ref: r,
125
130
  class: "dc-form-main",
126
131
  model: d.data,
127
132
  rules: T.value
128
133
  }, {
129
134
  default: v(() => [
130
- j(F(W), { gutter: d.rowGutter }, {
135
+ j(E(Z), { gutter: d.rowGutter }, {
131
136
  default: v(() => [
132
- (E(!0), H(U, null, q(h.value, (l) => z((E(), V(F(X), x({
133
- key: l.key
134
- }, { ref_for: !0 }, O(l.layout)), {
137
+ (F(!0), U(q, null, z(p.value, (a) => J((F(), V(E(ee), x({
138
+ key: a.key
139
+ }, { ref_for: !0 }, k(a.layout)), {
135
140
  default: v(() => [
136
- j(Z, {
141
+ j(te, {
137
142
  data: d.data,
138
- config: I(l),
143
+ config: I(a),
139
144
  onViewHideChange: $,
140
- onSubmit: t[0] || (t[0] = (a) => y("submit", a))
145
+ onSubmit: t[0] || (t[0] = (l) => y("submit", l))
141
146
  }, {
142
- default: v((a) => [
143
- R(e.$slots, l.key, x({ ref_for: !0 }, a), void 0, !0)
147
+ default: v((l) => [
148
+ B(e.$slots, a.key, x({ ref_for: !0 }, l), void 0, !0)
144
149
  ]),
145
150
  _: 2
146
151
  }, 1032, ["data", "config"])
147
152
  ]),
148
153
  _: 2
149
154
  }, 1040)), [
150
- [J, !(i.value[l.key] ?? !1)]
155
+ [Q, !(n.value[a.key] ?? !1)]
151
156
  ])), 128)),
152
- R(e.$slots, "default", { mergeLayout: O }, void 0, !0)
157
+ B(e.$slots, "default", { mergeLayout: k }, void 0, !0)
153
158
  ]),
154
159
  _: 3
155
160
  }, 8, ["gutter"])
@@ -159,5 +164,5 @@ const pe = /* @__PURE__ */ Y({
159
164
  }
160
165
  });
161
166
  export {
162
- pe as default
167
+ Ee as default
163
168
  };
@@ -1,7 +1,7 @@
1
1
  import o from "./FormSearch.vue2.mjs";
2
2
  /* empty css */
3
3
  import r from "../../_virtual/_plugin-vue_export-helper.mjs";
4
- const e = /* @__PURE__ */ r(o, [["__scopeId", "data-v-eb50264d"]]);
4
+ const e = /* @__PURE__ */ r(o, [["__scopeId", "data-v-b96e10f6"]]);
5
5
  export {
6
6
  e as default
7
7
  };