zhihao-ui 1.2.7 → 1.2.8

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 (46) hide show
  1. package/dist/es/{BaseInfo-CboHDiqp.js → BaseInfo-Dv-eon6t.js} +1 -1
  2. package/dist/es/Button-DBbUF88w.js +51 -0
  3. package/dist/es/{DatePicker-AcRbvS-8.js → DatePicker-CWQoV03Q.js} +13 -13
  4. package/dist/es/{DetailHeader-CoaVXtN3.js → DetailHeader-C_mAB8-2.js} +3 -3
  5. package/dist/es/{DetailSubTitle-Csp4LjFx.js → DetailSubTitle-DD7Yllhf.js} +2 -2
  6. package/dist/es/Dialog-DyDSVm-6.js +109 -0
  7. package/dist/es/{DiyDataTable-CP7yYQaU.js → DiyDataTable-cJVfvtax.js} +4 -4
  8. package/dist/es/{EditInfoPair-DBbRqppY.js → EditInfoPair-D0b5jY5Y.js} +3 -3
  9. package/dist/es/{FileWrapper-BwQhQopY.js → FileWrapper-CMSYWmEz.js} +4 -4
  10. package/dist/es/{Grid-B-FutGih.js → Grid-B5O9dZNI.js} +1 -1
  11. package/dist/es/{InfoPair-WmMCXoUh.js → InfoPair-Do3sSVw-.js} +3 -3
  12. package/dist/es/{Input-DFnH7_jo.js → Input-DVpd0Yte.js} +11 -11
  13. package/dist/es/{Loading-BW6Doqh_.js → Loading-DwtfOhMD.js} +2 -2
  14. package/dist/es/{Map-IjNHD4K5.js → Map-CMiThYaG.js} +641 -315
  15. package/dist/es/MessageBox-BowhqMYW.js +48 -0
  16. package/dist/es/{MoneyInput-BwkFhS2B.js → MoneyInput-CaTrJLi1.js} +7 -7
  17. package/dist/es/{PageHeadPanel-BhR3Bq1A.js → PageHeadPanel-_mKu2rMQ.js} +2 -2
  18. package/dist/es/{ToolTips-BEYXkt4n.js → ToolTips-BTCP0N--.js} +3 -3
  19. package/dist/es/index.js +30 -28
  20. package/dist/es/{utils-B1dH8Kx6.js → utils-DZ8-2Fg2.js} +1 -1
  21. package/dist/es/{vendor-Cu-cEPs_.js → vendor-BY-fHNA3.js} +9646 -8896
  22. package/dist/index.css +1 -1
  23. package/dist/types/components/ButtonGroup/ButtonGroup.test.d.ts +1 -0
  24. package/dist/types/components/ButtonGroup/ButtonGroup.vue.d.ts +37 -0
  25. package/dist/types/components/ButtonGroup/index.d.ts +38 -0
  26. package/dist/types/components/Dialog/Dialog.test.d.ts +1 -0
  27. package/dist/types/components/Dialog/Dialog.vue.d.ts +187 -14
  28. package/dist/types/components/Dialog/index.d.ts +296 -25
  29. package/dist/types/components/Dialog/types.d.ts +15 -5
  30. package/dist/types/components/Map/Map.vue.d.ts +15 -5
  31. package/dist/types/components/Map/index.d.ts +27 -0
  32. package/dist/types/components/Map/interface/entity/render.d.ts +32 -0
  33. package/dist/types/components/Map/interface/entity/shipInfoVo.d.ts +4 -0
  34. package/dist/types/components/Map/interface/index.d.ts +1 -0
  35. package/dist/types/components/Map/render/canvasRender/canvasRender.d.ts +5 -3
  36. package/dist/types/components/Map/render/drawPolygon.d.ts +9 -0
  37. package/dist/types/components/MessageBox/MessageBox.test.d.ts +1 -0
  38. package/dist/types/components/MessageBox/MessageBox.vue.d.ts +11 -218
  39. package/dist/types/components/MessageBox/index.d.ts +4 -342
  40. package/dist/types/components/index.d.ts +1 -0
  41. package/dist/umd/index.css +1 -1
  42. package/dist/umd/index.umd.cjs +25 -17
  43. package/package.json +1 -1
  44. package/dist/es/Button-C1Q6WvkI.js +0 -32
  45. package/dist/es/Dialog-CtU-qGdR.js +0 -74
  46. package/dist/es/MessageBox-CjuBt74R.js +0 -100
@@ -1,5 +1,5 @@
1
1
  import { defineComponent as h, ref as o, provide as n, watch as i, resolveComponent as p, openBlock as m, createBlock as W, withCtx as v, renderSlot as b } from "vue";
2
- import { w as g } from "./utils-B1dH8Kx6.js";
2
+ import { w as g } from "./utils-DZ8-2Fg2.js";
3
3
  const C = /* @__PURE__ */ h({
4
4
  name: "ZhBaseInfo",
5
5
  __name: "BaseInfo",
@@ -0,0 +1,51 @@
1
+ import { defineComponent as a, openBlock as r, createBlock as u, unref as c, mergeProps as p, withCtx as l, renderSlot as i } from "vue";
2
+ import { E as f, a as d } from "./vendor-BY-fHNA3.js";
3
+ import { w as _ } from "./utils-DZ8-2Fg2.js";
4
+ const h = /* @__PURE__ */ a({
5
+ name: "ZhButton",
6
+ inheritAttrs: !1,
7
+ __name: "Button",
8
+ emits: ["click"],
9
+ setup(n, { emit: t }) {
10
+ const e = t, s = (o) => {
11
+ e("click", o);
12
+ };
13
+ return (o, v) => (r(), u(c(f), p(o.$attrs, {
14
+ class: "zh-button",
15
+ onClick: s
16
+ }), {
17
+ default: l(() => [
18
+ i(o.$slots, "default", {}, void 0, !0)
19
+ ]),
20
+ _: 3
21
+ }, 16));
22
+ }
23
+ }), m = (n, t) => {
24
+ const e = n.__vccOpts || n;
25
+ for (const [s, o] of t)
26
+ e[s] = o;
27
+ return e;
28
+ }, B = /* @__PURE__ */ m(h, [["__scopeId", "data-v-59ad2ca5"]]), C = _(B), k = /* @__PURE__ */ a({
29
+ name: "ZhButtonGroup",
30
+ inheritAttrs: !1,
31
+ __name: "ButtonGroup",
32
+ props: {
33
+ template: { default: "" }
34
+ },
35
+ setup(n) {
36
+ return (t, e) => (r(), u(c(d), p(t.$attrs, {
37
+ class: ["zh-button-group", { "operation-fix-button": t.template === "operation-fix-button" }]
38
+ }), {
39
+ default: l(() => [
40
+ i(t.$slots, "default", {}, void 0, !0)
41
+ ]),
42
+ _: 3
43
+ }, 16, ["class"]));
44
+ }
45
+ }), b = /* @__PURE__ */ m(k, [["__scopeId", "data-v-08e5ab10"]]), g = _(b);
46
+ export {
47
+ B as Z,
48
+ m as _,
49
+ C as a,
50
+ g as b
51
+ };
@@ -1,6 +1,6 @@
1
1
  import { defineComponent as d, openBlock as u, createElementBlock as f, normalizeClass as h, createVNode as D, unref as M, mergeProps as _ } from "vue";
2
- import { h as g, a as Y } from "./vendor-Cu-cEPs_.js";
3
- import { w as A } from "./utils-B1dH8Kx6.js";
2
+ import { h as g, b as Y } from "./vendor-BY-fHNA3.js";
3
+ import { w as A } from "./utils-DZ8-2Fg2.js";
4
4
  const p = "--", m = "YYYY-MM-DDTHH:mm:ss", T = "YYYY-MM-DDT23:59:59", E = "YYYY-MM-DD", i = (e, l = E) => e ? g(e).format(l).replace("Invalid date", p) : p, N = (e) => typeof e == "number" ? !0 : typeof e == "string" ? !isNaN(parseFloat(e)) : !1;
5
5
  function O(e) {
6
6
  const l = ["角", "分"], c = ["零", "壹", "贰", "叁", "肆", "伍", "陆", "柒", "捌", "玖"], s = [
@@ -8,17 +8,17 @@ function O(e) {
8
8
  ["", "拾", "佰", "仟"]
9
9
  ], n = e < 0 ? "负" : "";
10
10
  e = Math.abs(e);
11
- let o = "";
12
- for (let a = 0; a < l.length; a++)
13
- o += (c[Math.floor(e * 10 * Math.pow(10, a)) % 10] + l[a]).replace(/零./, "");
14
- o = o || "整", e = Math.floor(e);
15
- for (let a = 0; a < s[0].length && e > 0; a++) {
11
+ let a = "";
12
+ for (let o = 0; o < l.length; o++)
13
+ a += (c[Math.floor(e * 10 * Math.pow(10, o)) % 10] + l[o]).replace(/零./, "");
14
+ a = a || "整", e = Math.floor(e);
15
+ for (let o = 0; o < s[0].length && e > 0; o++) {
16
16
  let t = "";
17
17
  for (let r = 0; r < s[1].length && e > 0; r++)
18
18
  t = c[e % 10] + s[1][r] + t, e = Math.floor(e / 10);
19
- o = t.replace(/(零.)*零$/, "").replace(/^$/, "零") + s[0][a] + o;
19
+ a = t.replace(/(零.)*零$/, "").replace(/^$/, "零") + s[0][o] + a;
20
20
  }
21
- return n + o.replace(/(零.)*零元/, "元").replace(/(零.)+/g, "零").replace(/^整$/, "零元整");
21
+ return n + a.replace(/(零.)*零元/, "元").replace(/(零.)+/g, "零").replace(/^整$/, "零元整");
22
22
  }
23
23
  const k = /* @__PURE__ */ d({
24
24
  name: "zh-date-picker",
@@ -30,10 +30,10 @@ const k = /* @__PURE__ */ d({
30
30
  },
31
31
  emits: ["update:modelValue", "change"],
32
32
  setup(e, { emit: l }) {
33
- const c = e, s = l, n = (t) => Array.isArray(t) ? [i(t[0], m), i(t[1], T)] : t && i(t, m), o = (t) => {
33
+ const c = e, s = l, n = (t) => Array.isArray(t) ? [i(t[0], m), i(t[1], T)] : t && i(t, m), a = (t) => {
34
34
  const r = n(t);
35
35
  s("update:modelValue", r);
36
- }, a = (t) => {
36
+ }, o = (t) => {
37
37
  const r = n(t);
38
38
  s("change", r);
39
39
  };
@@ -43,8 +43,8 @@ const k = /* @__PURE__ */ d({
43
43
  D(M(Y), _(t.$attrs, {
44
44
  style: c.style,
45
45
  "model-value": c.modelValue,
46
- "onUpdate:modelValue": o,
47
- onChange: a
46
+ "onUpdate:modelValue": a,
47
+ onChange: o
48
48
  }), null, 16, ["style", "model-value"])
49
49
  ], 2));
50
50
  }
@@ -1,7 +1,7 @@
1
1
  import { defineComponent as h, useSlots as p, openBlock as a, createElementBlock as o, createElementVNode as e, renderSlot as l, toDisplayString as i, Fragment as m, renderList as u, unref as n, normalizeClass as g, createCommentVNode as k } from "vue";
2
- import { D as v } from "./DatePicker-AcRbvS-8.js";
3
- import { _ as D } from "./Button-C1Q6WvkI.js";
4
- import { w as y } from "./utils-B1dH8Kx6.js";
2
+ import { D as v } from "./DatePicker-CWQoV03Q.js";
3
+ import { _ as D } from "./Button-DBbUF88w.js";
4
+ import { w as y } from "./utils-DZ8-2Fg2.js";
5
5
  const I = { class: "common-card" }, b = { class: "detail-header" }, E = { class: "detail-header--left" }, H = { class: "title common-title" }, M = { class: "info-pair--label" }, $ = { class: "info-pair--value" }, C = {
6
6
  key: 1,
7
7
  class: "detail-header--right"
@@ -1,6 +1,6 @@
1
1
  import { defineComponent as r, openBlock as o, createElementBlock as s, createElementVNode as l, createTextVNode as a, toDisplayString as t, createCommentVNode as p, normalizeClass as c, renderSlot as m, unref as d } from "vue";
2
- import { D as u } from "./DatePicker-AcRbvS-8.js";
3
- import { w as f } from "./utils-B1dH8Kx6.js";
2
+ import { D as u } from "./DatePicker-CWQoV03Q.js";
3
+ import { w as f } from "./utils-DZ8-2Fg2.js";
4
4
  const _ = { class: "info-pair" }, v = { class: "info-pair--title" }, h = {
5
5
  key: 0,
6
6
  class: "info-pair--title--tip"
@@ -0,0 +1,109 @@
1
+ import { defineComponent as v, useModel as b, computed as w, openBlock as r, createBlock as T, unref as D, mergeProps as M, withCtx as o, renderSlot as s, createElementVNode as c, createVNode as u, createTextVNode as p, toDisplayString as t, createElementBlock as z, createCommentVNode as E, mergeModels as m } from "vue";
2
+ import { Z as f } from "./Button-DBbUF88w.js";
3
+ import { c as Z } from "./vendor-BY-fHNA3.js";
4
+ import { w as I } from "./utils-DZ8-2Fg2.js";
5
+ const N = { class: "title" }, O = {
6
+ key: 0,
7
+ class: "sub-title"
8
+ }, S = { class: "zh-dialog__footer" }, $ = /* @__PURE__ */ v({
9
+ __name: "Dialog",
10
+ props: /* @__PURE__ */ m({
11
+ title: {},
12
+ subTitle: {},
13
+ cancelButtonText: { default: "取消" },
14
+ confirmButtonText: { default: "确定" },
15
+ confirmButtonDisabled: { type: Boolean, default: !1 },
16
+ closeOnClickModal: { type: Boolean, default: !1 },
17
+ size: { default: "middle" },
18
+ width: {},
19
+ appendToBody: { type: Boolean },
20
+ appendTo: {},
21
+ beforeClose: {},
22
+ destroyOnClose: { type: Boolean },
23
+ closeOnPressEscape: { type: Boolean },
24
+ lockScroll: { type: Boolean },
25
+ modal: { type: Boolean },
26
+ openDelay: {},
27
+ closeDelay: {},
28
+ top: {},
29
+ modelValue: { type: Boolean },
30
+ modalClass: {},
31
+ zIndex: {},
32
+ trapFocus: { type: Boolean },
33
+ headerAriaLevel: {},
34
+ center: { type: Boolean },
35
+ alignCenter: { type: Boolean },
36
+ closeIcon: {},
37
+ draggable: { type: Boolean },
38
+ overflow: { type: Boolean },
39
+ fullscreen: { type: Boolean },
40
+ showClose: { type: Boolean },
41
+ ariaLevel: {}
42
+ }, {
43
+ modelValue: { type: Boolean, default: !0 },
44
+ modelModifiers: {}
45
+ }),
46
+ emits: /* @__PURE__ */ m(["cancel", "confirm", "close"], ["update:modelValue"]),
47
+ setup(d, { emit: B }) {
48
+ const a = d, l = b(d, "modelValue"), n = B, y = () => {
49
+ n("close");
50
+ }, h = () => {
51
+ l.value = !1, n("cancel");
52
+ }, C = () => {
53
+ l.value = !1, n("confirm");
54
+ }, g = {
55
+ small: "400px",
56
+ middle: "600px",
57
+ large: "800px",
58
+ extraLarge: "920px"
59
+ }, V = w(() => a.width ? a.width : g[a.size]);
60
+ return (e, i) => (r(), T(D(Z), M({
61
+ modelValue: l.value,
62
+ "onUpdate:modelValue": i[0] || (i[0] = (k) => l.value = k),
63
+ class: "zh-dialog"
64
+ }, e.$attrs, {
65
+ width: V.value,
66
+ "close-on-click-modal": e.closeOnClickModal,
67
+ onClose: y
68
+ }), {
69
+ header: o(() => [
70
+ s(e.$slots, "header", {}, () => [
71
+ c("div", N, t(e.title), 1),
72
+ e.subTitle ? (r(), z("div", O, t(e.subTitle), 1)) : E("", !0)
73
+ ])
74
+ ]),
75
+ footer: o(() => [
76
+ s(e.$slots, "footer", {}, () => [
77
+ c("div", S, [
78
+ u(f, {
79
+ plain: "",
80
+ onClick: h
81
+ }, {
82
+ default: o(() => [
83
+ p(t(e.cancelButtonText), 1)
84
+ ]),
85
+ _: 1
86
+ }),
87
+ u(f, {
88
+ type: "primary",
89
+ disabled: e.confirmButtonDisabled,
90
+ onClick: C
91
+ }, {
92
+ default: o(() => [
93
+ p(t(e.confirmButtonText), 1)
94
+ ]),
95
+ _: 1
96
+ }, 8, ["disabled"])
97
+ ])
98
+ ])
99
+ ]),
100
+ default: o(() => [
101
+ s(e.$slots, "default")
102
+ ]),
103
+ _: 3
104
+ }, 16, ["modelValue", "width", "close-on-click-modal"]));
105
+ }
106
+ }), A = I($);
107
+ export {
108
+ A as Z
109
+ };
@@ -1,8 +1,8 @@
1
1
  import { defineComponent as B, useModel as N, ref as D, openBlock as s, createBlock as h, unref as i, withCtx as p, createVNode as g, createElementBlock as u, Fragment as Z, renderList as H, normalizeClass as E, toDisplayString as m, createCommentVNode as y, createElementVNode as v, createTextVNode as w, mergeModels as z } from "vue";
2
- import { D as P } from "./DatePicker-AcRbvS-8.js";
3
- import { c as _, d as V, e as j, f as K, g as k, i as C, j as G, k as L, E as T } from "./vendor-Cu-cEPs_.js";
4
- import { _ as J } from "./Button-C1Q6WvkI.js";
5
- import { w as Q } from "./utils-B1dH8Kx6.js";
2
+ import { D as P } from "./DatePicker-CWQoV03Q.js";
3
+ import { d as _, e as V, f as j, g as K, i as k, j as C, k as G, l as L, E as T } from "./vendor-BY-fHNA3.js";
4
+ import { _ as J } from "./Button-DBbUF88w.js";
5
+ import { w as Q } from "./utils-DZ8-2Fg2.js";
6
6
  var b = /* @__PURE__ */ ((f) => (f.AUTOCOMPLETE = "autocomplete", f.FORMAT = "format", f))(b || {});
7
7
  const W = { key: 0 }, X = {
8
8
  key: 1,
@@ -1,7 +1,7 @@
1
1
  import { defineComponent as l, openBlock as o, createElementBlock as s, createElementVNode as a, createTextVNode as r, toDisplayString as t, createCommentVNode as p, normalizeClass as c, renderSlot as d, unref as m } from "vue";
2
- import { D as f } from "./DatePicker-AcRbvS-8.js";
3
- import { _ } from "./Button-C1Q6WvkI.js";
4
- import { w as u } from "./utils-B1dH8Kx6.js";
2
+ import { D as f } from "./DatePicker-CWQoV03Q.js";
3
+ import { _ } from "./Button-DBbUF88w.js";
4
+ import { w as u } from "./utils-DZ8-2Fg2.js";
5
5
  const v = { class: "info-pair" }, h = { class: "info-pair--title" }, E = {
6
6
  key: 0,
7
7
  class: "info-pair--title--tip"
@@ -1,8 +1,8 @@
1
1
  import { defineComponent as f, openBlock as i, createElementBlock as o, toDisplayString as n, createCommentVNode as s, createElementVNode as t, createVNode as p, unref as m, withCtx as _, createTextVNode as u } from "vue";
2
- import { D as w } from "./DatePicker-AcRbvS-8.js";
3
- import { l as y } from "./vendor-Cu-cEPs_.js";
4
- import { _ as h } from "./Button-C1Q6WvkI.js";
5
- import { w as v } from "./utils-B1dH8Kx6.js";
2
+ import { D as w } from "./DatePicker-CWQoV03Q.js";
3
+ import { m as y } from "./vendor-BY-fHNA3.js";
4
+ import { _ as h } from "./Button-DBbUF88w.js";
5
+ import { w as v } from "./utils-DZ8-2Fg2.js";
6
6
  const k = { class: "file_wrapper" }, x = {
7
7
  key: 0,
8
8
  class: "header"
@@ -1,5 +1,5 @@
1
1
  import { defineComponent as $, onBeforeMount as B, useSlots as C, ref as k, computed as f, onMounted as L, onActivated as S, onUnmounted as j, onDeactivated as M, provide as p, watch as z, openBlock as P, createElementBlock as R, normalizeStyle as Z, renderSlot as D } from "vue";
2
- import { w as H } from "./utils-B1dH8Kx6.js";
2
+ import { w as H } from "./utils-DZ8-2Fg2.js";
3
3
  const N = /* @__PURE__ */ $({
4
4
  name: "zh-grid",
5
5
  __name: "Grid",
@@ -1,7 +1,7 @@
1
1
  import { defineComponent as l, openBlock as i, createElementBlock as s, createElementVNode as a, createTextVNode as r, toDisplayString as t, createCommentVNode as p, normalizeClass as c, renderSlot as m, unref as f } from "vue";
2
- import { D as d } from "./DatePicker-AcRbvS-8.js";
3
- import { _ } from "./Button-C1Q6WvkI.js";
4
- import { w as u } from "./utils-B1dH8Kx6.js";
2
+ import { D as d } from "./DatePicker-CWQoV03Q.js";
3
+ import { _ } from "./Button-DBbUF88w.js";
4
+ import { w as u } from "./utils-DZ8-2Fg2.js";
5
5
  const v = { class: "info-pair" }, h = { class: "info-pair--title" }, I = {
6
6
  key: 0,
7
7
  class: "info-pair--title--tip"
@@ -1,7 +1,7 @@
1
- import { defineComponent as b, useAttrs as v, useModel as Z, openBlock as h, createElementBlock as I, normalizeClass as z, createVNode as S, unref as $, mergeProps as N, createSlots as x, renderList as _, withCtx as y, renderSlot as B, normalizeProps as M, guardReactiveProps as k, mergeModels as E, normalizeStyle as j } from "vue";
2
- import { k as C } from "./vendor-Cu-cEPs_.js";
3
- import { _ as P } from "./Button-C1Q6WvkI.js";
4
- import { w as U } from "./utils-B1dH8Kx6.js";
1
+ import { defineComponent as b, useAttrs as v, useModel as k, openBlock as h, createElementBlock as I, normalizeClass as z, createVNode as S, unref as $, mergeProps as N, createSlots as x, renderList as _, withCtx as y, renderSlot as B, normalizeProps as M, guardReactiveProps as C, mergeModels as E, normalizeStyle as j } from "vue";
2
+ import { l as P } from "./vendor-BY-fHNA3.js";
3
+ import { _ as U } from "./Button-DBbUF88w.js";
4
+ import { w as Z } from "./utils-DZ8-2Fg2.js";
5
5
  const A = /* @__PURE__ */ b({
6
6
  name: "zh-input",
7
7
  __name: "Input",
@@ -16,13 +16,13 @@ const A = /* @__PURE__ */ b({
16
16
  }),
17
17
  emits: ["update:modelValue"],
18
18
  setup(d) {
19
- const o = v(), r = d, l = Z(d, "modelValue"), s = () => {
19
+ const o = v(), r = d, l = k(d, "modelValue"), s = () => {
20
20
  (o.max || Number(o.max) === 0) && Number(l.value) >= o.max && (l.value = o.max.toString()), (o.min || Number(o.min) === 0) && Number(l.value) <= o.min && (l.value = o.min.toString());
21
21
  };
22
22
  return (m, p) => (h(), I("div", {
23
23
  class: z(r.class)
24
24
  }, [
25
- S($(C), N(m.$attrs, {
25
+ S($(P), N(m.$attrs, {
26
26
  modelValue: l.value,
27
27
  "onUpdate:modelValue": p[0] || (p[0] = (a) => l.value = a),
28
28
  size: m.size,
@@ -31,13 +31,13 @@ const A = /* @__PURE__ */ b({
31
31
  _(m.$slots, (a, g) => ({
32
32
  name: a,
33
33
  fn: y((t) => [
34
- B(m.$slots, a, M(k(t)), void 0, !0)
34
+ B(m.$slots, a, M(C(t)), void 0, !0)
35
35
  ])
36
36
  }))
37
37
  ]), 1040, ["modelValue", "size"])
38
38
  ], 2));
39
39
  }
40
- }), H = /* @__PURE__ */ P(A, [["__scopeId", "data-v-75a9ec9f"]]), G = U(H), L = /* @__PURE__ */ b({
40
+ }), H = /* @__PURE__ */ U(A, [["__scopeId", "data-v-75a9ec9f"]]), G = Z(H), L = /* @__PURE__ */ b({
41
41
  name: "zh-input-number",
42
42
  __name: "InputNumber",
43
43
  props: {
@@ -64,7 +64,7 @@ const A = /* @__PURE__ */ b({
64
64
  class: z(["input-number", r.class]),
65
65
  style: j(r.style)
66
66
  }, [
67
- S($(C), N(t.$attrs, {
67
+ S($(P), N(t.$attrs, {
68
68
  "model-value": r.modelValue,
69
69
  "onUpdate:modelValue": g,
70
70
  onBlur: p,
@@ -74,13 +74,13 @@ const A = /* @__PURE__ */ b({
74
74
  _(Object.keys(t.$slots), (u) => ({
75
75
  name: u,
76
76
  fn: y((c) => [
77
- B(t.$slots, u, M(k(c)), void 0, !0)
77
+ B(t.$slots, u, M(C(c)), void 0, !0)
78
78
  ])
79
79
  }))
80
80
  ]), 1040, ["model-value"])
81
81
  ], 6));
82
82
  }
83
- }), O = /* @__PURE__ */ P(L, [["__scopeId", "data-v-32d536a9"]]), J = U(O);
83
+ }), O = /* @__PURE__ */ U(L, [["__scopeId", "data-v-32d536a9"]]), J = Z(O);
84
84
  export {
85
85
  O as I,
86
86
  G as Z,
@@ -1,6 +1,6 @@
1
1
  import { defineComponent as t, openBlock as a, createElementBlock as s, createElementVNode as o } from "vue";
2
- import { _ as e } from "./Button-C1Q6WvkI.js";
3
- import { w as i } from "./utils-B1dH8Kx6.js";
2
+ import { _ as e } from "./Button-DBbUF88w.js";
3
+ import { w as i } from "./utils-DZ8-2Fg2.js";
4
4
  const r = { class: "loading-box" }, c = /* @__PURE__ */ t({
5
5
  name: "zh-loading",
6
6
  __name: "Loading",