@solar-taro/ui-sun 1.1.0 → 1.1.2

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/index18.js CHANGED
@@ -1,4 +1,120 @@
1
- import f from "./index4.js";
1
+ import { defineComponent as F, ref as f, computed as i, onMounted as N, renderList as P, Fragment as I, openBlock as E, createElementBlock as L, renderSlot as D, normalizeStyle as M, createElementVNode as A, toDisplayString as K, createTextVNode as R, unref as j, withCtx as q, createBlock as O, createCommentVNode as Q, mergeProps as W } from "vue";
2
+ import { withPixel as S } from "@solar-kit/core";
3
+ import { rpxToPx as X, vibrator as Y } from "@solar-taro/core";
4
+ import { createSelectorQuery as G } from "@tarojs/taro";
5
+ import H from "./index13.js";
6
+ const J = P, U = I, a = E, u = L, w = D, p = M, Z = A, ee = K, te = R, k = j, re = q, le = O, b = Q, oe = W, ne = ["id", "refresher-enabled", "refresher-triggered", "refresher-background", "scroll-x", "scroll-y"], ie = {
7
+ key: 0,
8
+ class: "sun-virtual-scroll-placeholder",
9
+ style: { display: "flex", "justify-content": "center", "align-items": "center", height: "85%" }
10
+ };
11
+ let se = 1;
12
+ const de = /* @__PURE__ */ F({
13
+ __name: "index",
14
+ props: {
15
+ refreshing: { type: Boolean },
16
+ refresher: { type: Boolean },
17
+ refresherBg: { default: "transparent" },
18
+ direction: { default: "vertical" },
19
+ items: {},
20
+ itemSize: {},
21
+ itemKey: {},
22
+ id: { default: () => `sun-virtual-scroll-${se++}` },
23
+ bottomSpace: { default: 0 },
24
+ loading: { type: Boolean },
25
+ loadingText: { default: "Loading" }
26
+ },
27
+ emits: ["refresh", "lower"],
28
+ setup(z, { emit: B }) {
29
+ const h = B, r = z;
30
+ let c;
31
+ const s = f(0), m = f(0), d = f(0), l = i(() => r.direction === "vertical"), $ = i(() => ({
32
+ right: l.value ? "0" : "auto",
33
+ transform: `translate${l.value ? "Y" : "X"}(${d.value}px)`,
34
+ "white-space": l.value ? "normal" : "nowrap"
35
+ })), n = i(() => typeof r.itemSize == "number" ? r.itemSize : r.itemSize.endsWith("rpx") ? X(parseFloat(r.itemSize)) : parseFloat(r.itemSize)), x = i(() => n.value * r.items.length), _ = i(() => ({
36
+ [l.value ? "height" : "width"]: S(x.value + r.bottomSpace)
37
+ })), C = i(() => ({
38
+ display: l.value ? "block" : "inline-block",
39
+ [l.value ? "height" : "width"]: S(n.value)
40
+ })), V = i(
41
+ () => r.items.slice(
42
+ Math.max(m.value - s.value, 0),
43
+ m.value + s.value * 2
44
+ )
45
+ );
46
+ function T({ detail: e }) {
47
+ c && cancelAnimationFrame(c), c = requestAnimationFrame(() => {
48
+ const t = l.value ? e.scrollTop : e.scrollLeft;
49
+ m.value = ~~(t / n.value), m.value > s.value - 1 ? d.value = t - n.value * s.value - t % n.value : d.value = t - t % (n.value * s.value), c = 0;
50
+ });
51
+ }
52
+ function g() {
53
+ setTimeout(() => {
54
+ G().select(`#${r.id}`).boundingClientRect((e) => {
55
+ if (!e)
56
+ return g();
57
+ const { height: t, width: o } = e, v = l.value ? t : o;
58
+ s.value = Math.ceil(v / n.value);
59
+ }).exec();
60
+ });
61
+ }
62
+ return N(() => {
63
+ g();
64
+ }), (e, t) => (a(), u("scroll-view", oe(e.$attrs, {
65
+ id: e.id,
66
+ class: "sun-virtual-scroll",
67
+ "refresher-enabled": e.refresher,
68
+ "refresher-triggered": e.refreshing,
69
+ "refresher-background": e.refresherBg,
70
+ "scroll-x": !l.value,
71
+ "scroll-y": l.value,
72
+ enhanced: !0,
73
+ "enable-passive": !0,
74
+ "lower-threshold": 300,
75
+ onScrollPassive: t[0] || (t[0] = (o) => T(o)),
76
+ onRefresherrefresh: t[1] || (t[1] = (o) => {
77
+ k(Y).short("light"), h("refresh");
78
+ }),
79
+ onScrolltolower: t[2] || (t[2] = (o) => h("lower"))
80
+ }), [
81
+ Z("view", {
82
+ class: "sun-virtual-scroll-content-container",
83
+ style: p($.value)
84
+ }, [
85
+ (a(!0), u(U, null, J(V.value, (o, v) => {
86
+ var y;
87
+ return a(), u("view", {
88
+ key: (y = o[e.itemKey]) != null ? y : v,
89
+ class: "sun-virtual-scroll-item",
90
+ style: p(C.value)
91
+ }, [
92
+ w(e.$slots, "default", {
93
+ item: o,
94
+ index: v
95
+ })
96
+ ], 4);
97
+ }), 128))
98
+ ], 4),
99
+ e.items.length ? b("", !0) : (a(), u("view", ie, [
100
+ e.loading ? (a(), le(k(H), {
101
+ key: 0,
102
+ spinning: !0
103
+ }, {
104
+ default: re(() => [
105
+ te(ee(e.loadingText), 1)
106
+ ]),
107
+ _: 1
108
+ })) : w(e.$slots, "empty", { key: 1 })
109
+ ])),
110
+ e.items.length ? (a(), u("view", {
111
+ key: 1,
112
+ class: "sun-virtual-scroll-spacer",
113
+ style: p(_.value)
114
+ }, null, 4)) : b("", !0)
115
+ ], 16, ne));
116
+ }
117
+ });
2
118
  export {
3
- f as default
119
+ de as default
4
120
  };
package/index19.js CHANGED
@@ -1,9 +1,12 @@
1
- const s = (t, e) => {
2
- const o = t.__vccOpts || t;
3
- for (const [r, c] of e)
4
- o[r] = c;
5
- return o;
6
- };
1
+ import { renderSlot as r, mergeProps as o, openBlock as t, createElementBlock as n } from "vue";
2
+ import c from "./index30.js";
3
+ const s = {}, l = r, a = o, f = t, _ = n;
4
+ function m(e, p) {
5
+ return f(), _("view", a(e.$attrs, { class: "sun-fab" }), [
6
+ l(e.$slots, "default")
7
+ ], 16);
8
+ }
9
+ const u = /* @__PURE__ */ c(s, [["render", m]]);
7
10
  export {
8
- s as default
11
+ u as default
9
12
  };
package/index2.js CHANGED
@@ -1,35 +1,15 @@
1
- import { defineComponent as c, mergeModels as r, useModel as i, renderSlot as p, createElementVNode as u, normalizeClass as m, openBlock as _, createElementBlock as f } from "vue";
2
- const d = p, n = u, v = m, x = _, B = f, k = { class: "sun-accordion-content" }, w = { class: "sun-accordion-content-inner" }, C = /* @__PURE__ */ c({
3
- __name: "index",
4
- props: /* @__PURE__ */ r({
5
- disabled: { type: Boolean }
6
- }, {
7
- expanded: { type: Boolean },
8
- expandedModifiers: {}
9
- }),
10
- emits: ["update:expanded"],
11
- setup(o) {
12
- const l = o, e = i(o, "expanded");
13
- function t() {
14
- l.disabled || (e.value = !e.value);
15
- }
16
- return (s, a) => (x(), B("view", {
17
- class: v(["sun-accordion", { "sun-accordion-expanded": e.value }])
18
- }, [
19
- n("view", {
20
- class: "sun-accordion-header",
21
- onTap: a[0] || (a[0] = (E) => t())
22
- }, [
23
- d(s.$slots, "default")
24
- ], 32),
25
- n("view", k, [
26
- n("view", w, [
27
- d(s.$slots, "content", { toggle: t })
28
- ])
29
- ])
30
- ], 2));
1
+ import { loadFontFace as o } from "@tarojs/taro";
2
+ const n = {
3
+ install() {
4
+ o({
5
+ family: "ionicon",
6
+ global: !0,
7
+ source: 'url("https://img.omofresh.com/fonts/ionicon.ttf")',
8
+ success: console.log,
9
+ fail: console.error
10
+ });
31
11
  }
32
- });
12
+ };
33
13
  export {
34
- C as default
14
+ n as SolarSun
35
15
  };
package/index20.js CHANGED
@@ -1,4 +1,12 @@
1
- import f from "./index2.js";
1
+ import { renderSlot as o, mergeProps as r, openBlock as t, createElementBlock as s } from "vue";
2
+ import n from "./index30.js";
3
+ const c = {}, l = o, m = r, _ = t, a = s;
4
+ function u(e, d) {
5
+ return _(), a("view", m(e.$attrs, { class: "sun-sudoku-item" }), [
6
+ l(e.$slots, "default")
7
+ ], 16);
8
+ }
9
+ const i = /* @__PURE__ */ n(c, [["render", u]]);
2
10
  export {
3
- f as default
11
+ i as default
4
12
  };
package/index21.js CHANGED
@@ -1,4 +1,4 @@
1
- import f from "./index5.js";
1
+ import f from "./index3.js";
2
2
  export {
3
3
  f as default
4
4
  };
package/index22.js CHANGED
@@ -1,4 +1,4 @@
1
- import f from "./index6.js";
1
+ import f from "./index7.js";
2
2
  export {
3
3
  f as default
4
4
  };
package/index23.js CHANGED
@@ -1,4 +1,4 @@
1
- import f from "./index10.js";
1
+ import f from "./index5.js";
2
2
  export {
3
3
  f as default
4
4
  };
package/index24.js CHANGED
@@ -1,4 +1,4 @@
1
- import f from "./index7.js";
1
+ import f from "./index4.js";
2
2
  export {
3
3
  f as default
4
4
  };
package/index25.js CHANGED
@@ -1,4 +1,4 @@
1
- import f from "./index3.js";
1
+ import f from "./index8.js";
2
2
  export {
3
3
  f as default
4
4
  };
package/index26.js CHANGED
@@ -1,4 +1,4 @@
1
- import f from "./index8.js";
1
+ import f from "./index9.js";
2
2
  export {
3
3
  f as default
4
4
  };
package/index27.js CHANGED
@@ -1,4 +1,4 @@
1
- import f from "./index9.js";
1
+ import f from "./index11.js";
2
2
  export {
3
3
  f as default
4
4
  };
package/index3.js CHANGED
@@ -1,24 +1,35 @@
1
- import { defineComponent as n, computed as l, renderSlot as c, normalizeClass as r, openBlock as a, createElementBlock as p } from "vue";
2
- const u = c, i = r, d = a, m = p, h = /* @__PURE__ */ n({
1
+ import { defineComponent as c, mergeModels as r, useModel as i, renderSlot as p, createElementVNode as u, normalizeClass as m, openBlock as _, createElementBlock as f } from "vue";
2
+ const d = p, n = u, v = m, x = _, B = f, k = { class: "sun-accordion-content" }, w = { class: "sun-accordion-content-inner" }, C = /* @__PURE__ */ c({
3
3
  __name: "index",
4
- props: {
5
- type: { default: "translucent" },
6
- size: { default: "default" },
7
- color: {}
8
- },
4
+ props: /* @__PURE__ */ r({
5
+ disabled: { type: Boolean }
6
+ }, {
7
+ expanded: { type: Boolean },
8
+ expandedModifiers: {}
9
+ }),
10
+ emits: ["update:expanded"],
9
11
  setup(o) {
10
- const e = o, s = l(() => [
11
- `sun-chip-${e.size}`,
12
- `sun-chip-${e.type}`,
13
- `sun-chip-${e.color}`
14
- ]);
15
- return (t, _) => (d(), m("view", {
16
- class: i(["sun-chip", s.value])
12
+ const l = o, e = i(o, "expanded");
13
+ function t() {
14
+ l.disabled || (e.value = !e.value);
15
+ }
16
+ return (s, a) => (x(), B("view", {
17
+ class: v(["sun-accordion", { "sun-accordion-expanded": e.value }])
17
18
  }, [
18
- u(t.$slots, "default")
19
+ n("view", {
20
+ class: "sun-accordion-header",
21
+ onTap: a[0] || (a[0] = (E) => t())
22
+ }, [
23
+ d(s.$slots, "default")
24
+ ], 32),
25
+ n("view", k, [
26
+ n("view", w, [
27
+ d(s.$slots, "content", { toggle: t })
28
+ ])
29
+ ])
19
30
  ], 2));
20
31
  }
21
32
  });
22
33
  export {
23
- h as default
34
+ C as default
24
35
  };
package/index30.js CHANGED
@@ -1,4 +1,9 @@
1
- import f from "./index14.js";
1
+ const s = (t, e) => {
2
+ const o = t.__vccOpts || t;
3
+ for (const [r, c] of e)
4
+ o[r] = c;
5
+ return o;
6
+ };
2
7
  export {
3
- f as default
8
+ s as default
4
9
  };
package/index31.js CHANGED
@@ -1,4 +1,4 @@
1
- import f from "./index11.js";
1
+ import f from "./index14.js";
2
2
  export {
3
3
  f as default
4
4
  };
package/index32.js CHANGED
@@ -1,4 +1,4 @@
1
- import f from "./index15.js";
1
+ import f from "./index18.js";
2
2
  export {
3
3
  f as default
4
4
  };
package/index33.js CHANGED
@@ -1,5 +1,4 @@
1
- const o = Symbol(), t = Symbol();
1
+ import f from "./index15.js";
2
2
  export {
3
- o as ACTIVE_CHILD,
4
- t as PARENT
3
+ f as default
5
4
  };
package/index34.js ADDED
@@ -0,0 +1,4 @@
1
+ import f from "./index16.js";
2
+ export {
3
+ f as default
4
+ };
package/index35.js ADDED
@@ -0,0 +1,4 @@
1
+ import f from "./index17.js";
2
+ export {
3
+ f as default
4
+ };
package/index36.js ADDED
@@ -0,0 +1,4 @@
1
+ import f from "./index10.js";
2
+ export {
3
+ f as default
4
+ };
package/index37.js ADDED
@@ -0,0 +1,4 @@
1
+ import f from "./index6.js";
2
+ export {
3
+ f as default
4
+ };
package/index38.js ADDED
@@ -0,0 +1,5 @@
1
+ const o = Symbol(), t = Symbol();
2
+ export {
3
+ o as ACTIVE_CHILD,
4
+ t as PARENT
5
+ };
package/index4.js CHANGED
@@ -1,21 +1,24 @@
1
- import { defineComponent as o, renderSlot as r, mergeProps as s, openBlock as n, createElementBlock as a } from "vue";
2
- const l = r, p = s, c = n, f = a, _ = /* @__PURE__ */ o({
3
- __name: "fab-group",
1
+ import { defineComponent as n, computed as l, renderSlot as c, normalizeClass as r, openBlock as a, createElementBlock as p } from "vue";
2
+ const u = c, i = r, d = a, m = p, h = /* @__PURE__ */ n({
3
+ __name: "index",
4
4
  props: {
5
- offsetY: {
6
- type: [Number, String],
7
- default: 0
8
- }
5
+ type: { default: "translucent" },
6
+ size: { default: "default" },
7
+ color: {}
9
8
  },
10
- setup(t) {
11
- return (e, m) => (c(), f("view", p(e.$attrs, {
12
- class: "sun-fab-group",
13
- style: { bottom: `calc(${15 + +t.offsetY}px + var(--safe-bottom))` }
14
- }), [
15
- l(e.$slots, "default")
16
- ], 16));
9
+ setup(o) {
10
+ const e = o, s = l(() => [
11
+ `sun-chip-${e.size}`,
12
+ `sun-chip-${e.type}`,
13
+ `sun-chip-${e.color}`
14
+ ]);
15
+ return (t, _) => (d(), m("view", {
16
+ class: i(["sun-chip", s.value])
17
+ }, [
18
+ u(t.$slots, "default")
19
+ ], 2));
17
20
  }
18
21
  });
19
22
  export {
20
- _ as default
23
+ h as default
21
24
  };
package/index5.js CHANGED
@@ -1,23 +1,24 @@
1
- import { defineComponent as d, ref as l, onActivated as c, onDeactivated as s, renderSlot as u, createCommentVNode as f } from "vue";
2
- const i = u, m = f, v = /* @__PURE__ */ d({
1
+ import { defineComponent as n, computed as s, toDisplayString as a, normalizeClass as c, normalizeStyle as i, openBlock as p, createElementBlock as u } from "vue";
2
+ const m = a, _ = c, d = i, g = p, k = u, v = /* @__PURE__ */ n({
3
3
  __name: "index",
4
4
  props: {
5
- delay: { default: 50 },
6
- hook: { default: "activated" }
5
+ progress: {},
6
+ size: {},
7
+ strokeWidth: {},
8
+ color: { default: "primary" }
7
9
  },
8
- setup(r) {
9
- const o = r, e = l(!1);
10
- let t;
11
- function a() {
12
- t = setTimeout(() => {
13
- e.value = !0;
14
- }, o.delay);
15
- }
16
- return o.hook === "created" && a(), c(() => {
17
- a();
18
- }), s(() => {
19
- e.value = !1, t && clearTimeout(t);
20
- }), (n, p) => e.value ? i(n.$slots, "default", { key: 0 }) : m("", !0);
10
+ setup(o) {
11
+ const e = o, r = s(() => ({
12
+ "--progress": e.progress,
13
+ "--size": e.size,
14
+ "--stroke-width": e.strokeWidth
15
+ })), t = s(() => [
16
+ `sun-circular-progress-${e.color}`
17
+ ]), l = s(() => +(e.progress * 100).toFixed(1));
18
+ return (y, z) => (g(), k("view", {
19
+ class: _(["sun-circular-progress", t.value]),
20
+ style: d(r.value)
21
+ }, m(l.value) + "%", 7));
21
22
  }
22
23
  });
23
24
  export {
package/index6.js CHANGED
@@ -1,30 +1,21 @@
1
- import { defineComponent as i, renderSlot as d, createElementVNode as s, openBlock as c, createElementBlock as l } from "vue";
2
- import { withPixel as t } from "@solar-kit/core";
3
- import { getNavbarRect as p } from "@solar-taro/core";
4
- const a = d, o = s, g = c, m = l, v = { class: "sun-navbar-inner" }, b = { class: "sun-navbar-center" }, k = /* @__PURE__ */ i({
5
- __name: "index",
6
- setup(_) {
7
- const e = p(), r = {
8
- "--navbar-height": t(e.height),
9
- "--navbar-content-height": t(e.buttonHeight),
10
- "--navbar-padding-top": t(e.paddingTop),
11
- "--navbar-padding-bottom": t(e.paddingBottom),
12
- "--navbar-padding-left": t(e.paddingLeft),
13
- "--navbar-padding-right": t(e.paddingRight)
14
- };
15
- return (n, h) => (g(), m("view", {
16
- class: "sun-navbar",
17
- style: r
18
- }, [
19
- o("view", v, [
20
- a(n.$slots, "default"),
21
- o("view", b, [
22
- a(n.$slots, "center")
23
- ])
24
- ])
25
- ]));
1
+ import { defineComponent as o, renderSlot as r, mergeProps as s, openBlock as n, createElementBlock as a } from "vue";
2
+ const l = r, p = s, c = n, f = a, _ = /* @__PURE__ */ o({
3
+ __name: "fab-group",
4
+ props: {
5
+ offsetY: {
6
+ type: [Number, String],
7
+ default: 0
8
+ }
9
+ },
10
+ setup(t) {
11
+ return (e, m) => (c(), f("view", p(e.$attrs, {
12
+ class: "sun-fab-group",
13
+ style: { bottom: `calc(${15 + +t.offsetY}px + var(--safe-bottom))` }
14
+ }), [
15
+ l(e.$slots, "default")
16
+ ], 16));
26
17
  }
27
18
  });
28
19
  export {
29
- k as default
20
+ _ as default
30
21
  };
package/index7.js CHANGED
@@ -1,60 +1,16 @@
1
- import { defineComponent as l, renderSlot as s, createElementVNode as a, mergeProps as f, withModifiers as p, normalizeClass as i, normalizeStyle as u, openBlock as d, createElementBlock as c } from "vue";
2
- const n = s, t = a, v = f, m = p, y = i, g = u, w = d, S = c, x = { class: "sun-popover-trigger" }, k = /* @__PURE__ */ l({
1
+ import { defineComponent as t, computed as c, renderSlot as l, normalizeClass as a, openBlock as r, createElementBlock as i } from "vue";
2
+ const m = l, p = a, _ = r, u = i, k = /* @__PURE__ */ t({
3
3
  __name: "index",
4
4
  props: {
5
- /** 是否显示 */
6
- show: {
7
- type: Boolean,
8
- default: void 0
9
- },
10
- /** popover的横轴位置:left,right,start,end,center */
11
- x: {
12
- type: String,
13
- default: "left"
14
- },
15
- /** popover的纵轴位置:top,bottom,start,end,center */
16
- y: {
17
- type: String,
18
- default: "center"
19
- },
20
- /** 横轴偏移度 */
21
- offsetX: {
22
- type: String,
23
- default: "7.5rpx"
24
- },
25
- /** 纵轴偏移度 */
26
- offsetY: {
27
- type: String,
28
- default: "7.5rpx"
29
- },
30
- /** popover背景 */
31
- bg: {
32
- type: String,
33
- default: "#fff"
34
- },
35
- /** popover文字颜色 */
36
- color: {
37
- type: String,
38
- default: "#000"
39
- }
5
+ name: {}
40
6
  },
41
7
  setup(e) {
42
- return (o, r) => (w(), S("view", {
43
- class: y(["sun-popover", [{ "sun-popover-show": e.show }, `sun-popover-x-${e.x}`, `sun-popover-y-${e.y}`]]),
44
- style: g({ "--popover-x-offset": e.offsetX, "--popover-y-offset": e.offsetY, "--popover-background": e.bg }),
45
- onTap: m(($) => !1, ["stop"])
8
+ const n = e, o = c(() => `ionicon-${n.name}`);
9
+ return (s, d) => (_(), u("view", {
10
+ class: p(["sun-icon ionicon", o.value])
46
11
  }, [
47
- t("view", x, [
48
- n(o.$slots, "default")
49
- ]),
50
- t("view", v(o.$attrs, {
51
- class: "sun-popover-container",
52
- style: { color: e.color }
53
- }), [
54
- r[0] || (r[0] = t("view", { class: "sun-popover-arrow" }, null, -1)),
55
- n(o.$slots, "content")
56
- ], 16)
57
- ], 38));
12
+ m(s.$slots, "default")
13
+ ], 2));
58
14
  }
59
15
  });
60
16
  export {
package/index8.js CHANGED
@@ -1,25 +1,25 @@
1
- import { defineComponent as p, inject as a, getCurrentInstance as c, onUnmounted as m, unref as u, renderSlot as i, mergeProps as _, openBlock as f, createElementBlock as v } from "vue";
2
- import { ACTIVE_CHILD as d, PARENT as g } from "./index33.js";
3
- const o = u, k = i, C = _, B = f, E = v, $ = /* @__PURE__ */ p({
4
- __name: "segment-btn",
1
+ import { defineComponent as d, ref as l, onActivated as c, onDeactivated as s, renderSlot as u, createCommentVNode as f } from "vue";
2
+ const i = u, m = f, v = /* @__PURE__ */ d({
3
+ __name: "index",
5
4
  props: {
6
- value: {}
5
+ delay: { default: 50 },
6
+ hook: { default: "activated" }
7
7
  },
8
- setup(b) {
9
- const l = a(d), e = a(g), n = c();
10
- return m(() => {
11
- e.unlink(n);
12
- }), e.link(n), (t, r) => {
13
- var s;
14
- return B(), E("view", C(t.$attrs, {
15
- class: ["sun-segment-btn", { "sun-segment-btn-active": ((s = o(l)) == null ? void 0 : s.props.value) === t.value }],
16
- onTap: r[0] || (r[0] = (I) => o(e).active(o(n)))
17
- }), [
18
- k(t.$slots, "default")
19
- ], 16);
20
- };
8
+ setup(r) {
9
+ const o = r, e = l(!1);
10
+ let t;
11
+ function a() {
12
+ t = setTimeout(() => {
13
+ e.value = !0;
14
+ }, o.delay);
15
+ }
16
+ return o.hook === "created" && a(), c(() => {
17
+ a();
18
+ }), s(() => {
19
+ e.value = !1, t && clearTimeout(t);
20
+ }), (n, p) => e.value ? i(n.$slots, "default", { key: 0 }) : m("", !0);
21
21
  }
22
22
  });
23
23
  export {
24
- $ as default
24
+ v as default
25
25
  };