@solar-taro/ui-sun 2.8.10 → 2.9.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 (81) hide show
  1. package/CHANGELOG.md +14 -0
  2. package/fab/fab.vue.d.ts +5 -1
  3. package/fab/index.scss +51 -0
  4. package/index.d.ts +1 -0
  5. package/index.js +31 -29
  6. package/index10.js +19 -25
  7. package/index11.js +24 -33
  8. package/index12.js +33 -75
  9. package/index13.js +75 -19
  10. package/index14.js +19 -49
  11. package/index15.js +46 -141
  12. package/index16.js +142 -27
  13. package/index17.js +29 -21
  14. package/index18.js +20 -42
  15. package/index19.js +42 -23
  16. package/index20.js +21 -9
  17. package/index21.js +10 -27
  18. package/index22.js +29 -18
  19. package/index23.js +17 -118
  20. package/index24.js +34 -14
  21. package/index25.js +118 -9
  22. package/index26.js +14 -11
  23. package/index27.js +5 -5
  24. package/index28.js +10 -7
  25. package/index29.js +6 -8
  26. package/index30.js +9 -9
  27. package/index31.js +10 -2
  28. package/index32.js +2 -7
  29. package/index33.js +1 -1
  30. package/index34.js +1 -1
  31. package/index35.js +1 -1
  32. package/index36.js +1 -1
  33. package/index37.js +1 -1
  34. package/index38.js +7 -2
  35. package/index39.js +1 -1
  36. package/index4.js +1 -1
  37. package/index40.js +1 -1
  38. package/index41.js +1 -1
  39. package/index42.js +1 -1
  40. package/index43.js +1 -1
  41. package/index44.js +1 -1
  42. package/index45.js +1 -1
  43. package/index46.js +1 -1
  44. package/index47.js +1 -1
  45. package/index48.js +1 -1
  46. package/index49.js +1 -1
  47. package/index53.js +1 -1
  48. package/index54.js +2 -66
  49. package/index55.js +526 -12
  50. package/index56.js +3 -25
  51. package/index57.js +65 -13
  52. package/index58.js +12 -526
  53. package/index59.js +25 -3
  54. package/index60.js +14 -26
  55. package/index61.js +2 -2
  56. package/index62.js +2 -506
  57. package/index63.js +24 -77
  58. package/index64.js +2 -70
  59. package/index65.js +484 -47
  60. package/index66.js +54 -518
  61. package/index67.js +70 -2
  62. package/index68.js +69 -2
  63. package/index69.js +543 -2
  64. package/index70.js +2 -4
  65. package/index72.js +2 -4
  66. package/index73.js +4 -2
  67. package/index75.js +4 -2
  68. package/index76.js +2 -48
  69. package/index77.js +2 -82
  70. package/index79.js +2 -2
  71. package/index8.js +16 -30
  72. package/index80.js +48 -2
  73. package/index81.js +82 -2
  74. package/index82.js +4 -0
  75. package/index83.js +4 -0
  76. package/index84.js +4 -0
  77. package/index9.js +29 -17
  78. package/package.json +1 -1
  79. package/toggle/index.d.ts +1 -0
  80. package/toggle/index.scss +95 -0
  81. package/toggle/index.vue.d.ts +16 -0
package/index21.js CHANGED
@@ -1,35 +1,18 @@
1
- import { defineComponent as s, computed as o, renderSlot as l, normalizeClass as u, createElementVNode as d, mergeProps as b, openBlock as c, createElementBlock as p } from "vue";
2
- const m = l, i = u, B = d, _ = b, f = c, z = p, k = /* @__PURE__ */ s({
3
- __name: "table",
1
+ import { defineComponent as o, renderSlot as t, mergeProps as r, openBlock as n, createElementBlock as s } from "vue";
2
+ const a = t, l = r, p = n, c = s, u = /* @__PURE__ */ o({
3
+ __name: "table-row",
4
4
  props: {
5
- rounded: { type: Boolean, default: !0 },
6
- bordered: { type: Boolean },
7
- outerBordered: { type: Boolean, default: !0 },
8
- zebra: { type: Boolean },
9
- size: { default: "default" },
10
- layout: {}
5
+ head: { type: Boolean },
6
+ foot: { type: Boolean }
11
7
  },
12
- setup(r) {
13
- const e = r, n = o(() => ({
14
- "sun-tb-rounded": e.rounded,
15
- "sun-tb-bordered": e.bordered,
16
- "sun-tb-outer-bordered": e.outerBordered,
17
- [`sun-tb-size-${e.size}`]: e.size
18
- })), a = o(() => ({
19
- "sun-tb-zebra": e.zebra,
20
- [`sun-tb-layout-${e.layout}`]: e.layout
21
- }));
22
- return (t, y) => (f(), z("view", _(t.$attrs, {
23
- class: ["sun-tb", n.value]
8
+ setup(m) {
9
+ return (e, d) => (p(), c("view", l(e.$attrs, {
10
+ class: ["sun-tb-row", { "sun-tb-head": e.head, "sun-tb-foot": e.foot }]
24
11
  }), [
25
- B("view", {
26
- class: i(["sun-tb-inner", a.value])
27
- }, [
28
- m(t.$slots, "default")
29
- ], 2)
12
+ a(e.$slots, "default")
30
13
  ], 16));
31
14
  }
32
15
  });
33
16
  export {
34
- k as default
17
+ u as default
35
18
  };
package/index22.js CHANGED
@@ -1,24 +1,35 @@
1
- import { defineComponent as n, computed as a, renderSlot as l, normalizeClass as r, openBlock as c, createElementBlock as p } from "vue";
2
- const u = l, d = r, m = c, _ = p, g = /* @__PURE__ */ n({
3
- __name: "index",
1
+ import { defineComponent as s, computed as o, renderSlot as l, normalizeClass as u, createElementVNode as d, mergeProps as b, openBlock as c, createElementBlock as p } from "vue";
2
+ const m = l, i = u, B = d, _ = b, f = c, z = p, k = /* @__PURE__ */ s({
3
+ __name: "table",
4
4
  props: {
5
- type: { default: "solid" },
6
- color: {},
7
- shape: { default: "round" }
5
+ rounded: { type: Boolean, default: !0 },
6
+ bordered: { type: Boolean },
7
+ outerBordered: { type: Boolean, default: !0 },
8
+ zebra: { type: Boolean },
9
+ size: { default: "default" },
10
+ layout: {}
8
11
  },
9
- setup(o) {
10
- const e = o, t = a(() => [
11
- `sun-tag-${e.type}`,
12
- `sun-tag-${e.color}`,
13
- `sun-tag-${e.shape}`
14
- ]);
15
- return (s, i) => (m(), _("view", {
16
- class: d(["sun-tag", t.value])
17
- }, [
18
- u(s.$slots, "default")
19
- ], 2));
12
+ setup(r) {
13
+ const e = r, n = o(() => ({
14
+ "sun-tb-rounded": e.rounded,
15
+ "sun-tb-bordered": e.bordered,
16
+ "sun-tb-outer-bordered": e.outerBordered,
17
+ [`sun-tb-size-${e.size}`]: e.size
18
+ })), a = o(() => ({
19
+ "sun-tb-zebra": e.zebra,
20
+ [`sun-tb-layout-${e.layout}`]: e.layout
21
+ }));
22
+ return (t, y) => (f(), z("view", _(t.$attrs, {
23
+ class: ["sun-tb", n.value]
24
+ }), [
25
+ B("view", {
26
+ class: i(["sun-tb-inner", a.value])
27
+ }, [
28
+ m(t.$slots, "default")
29
+ ], 2)
30
+ ], 16));
20
31
  }
21
32
  });
22
33
  export {
23
- g as default
34
+ k as default
24
35
  };
package/index23.js CHANGED
@@ -1,125 +1,24 @@
1
- import { defineComponent as I, ref as f, computed as a, onActivated as D, onMounted as L, onUnmounted as N, renderList as A, Fragment as M, openBlock as E, createElementBlock as K, renderSlot as R, normalizeStyle as j, createCommentVNode as q, toDisplayString as O, createTextVNode as Q, unref as U, withCtx as W, createBlock as X, mergeProps as Y } from "vue";
2
- import { withPixel as b } from "@solar-kit/core";
3
- import { rpxToPx as G, vibrator as H } from "@solar-taro/core";
4
- import { createSelectorQuery as J } from "@tarojs/taro";
5
- import Z from "./index16.js";
6
- const ee = A, te = M, s = E, c = K, z = R, g = j, re = q, le = O, oe = Q, B = U, ie = W, ne = X, ae = Y, se = ["id", "refresher-enabled", "refresher-triggered", "refresher-background", "scroll-x", "scroll-y", "scroll-top", "scroll-left"], ue = {
7
- key: 1,
8
- class: "sun-virtual-scroll-placeholder",
9
- style: { display: "flex", "justify-content": "center", "align-items": "center", height: "85%" }
10
- };
11
- let ce = 1;
12
- const he = /* @__PURE__ */ I({
1
+ import { defineComponent as n, computed as a, renderSlot as l, normalizeClass as r, openBlock as c, createElementBlock as p } from "vue";
2
+ const u = l, d = r, m = c, _ = p, g = /* @__PURE__ */ n({
13
3
  __name: "index",
14
4
  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-${ce++}` },
23
- bottomSpace: { default: 0 },
24
- loading: { type: Boolean },
25
- loadingText: { default: "Loading" }
5
+ type: { default: "solid" },
6
+ color: {},
7
+ shape: { default: "round" }
26
8
  },
27
- emits: ["refresh", "lower"],
28
- setup($, { emit: x }) {
29
- const y = x, r = $;
30
- let m, i = 0, S = !1;
31
- const u = f(0), v = f(0), p = f(0), h = f(0), t = a(() => r.direction === "vertical"), _ = a(() => ({
32
- right: t.value ? "0" : "auto",
33
- transform: `translate${t.value ? "Y" : "X"}(${p.value}px)`,
34
- "white-space": t.value ? "normal" : "nowrap"
35
- })), n = a(() => typeof r.itemSize == "number" ? r.itemSize : r.itemSize.endsWith("rpx") ? G(parseFloat(r.itemSize)) : parseFloat(r.itemSize)), C = a(() => n.value * r.items.length), T = a(() => ({
36
- [t.value ? "height" : "width"]: b(C.value + r.bottomSpace)
37
- })), F = a(() => ({
38
- display: t.value ? "block" : "inline-block",
39
- [t.value ? "height" : "width"]: b(n.value)
40
- })), P = a(
41
- () => r.items.slice(
42
- Math.max(v.value - u.value, 0),
43
- v.value + u.value * 2
44
- )
45
- );
46
- function V({ detail: e }) {
47
- m && cancelAnimationFrame(m), m = requestAnimationFrame(() => {
48
- i = t.value ? e.scrollTop : e.scrollLeft, v.value = ~~(i / n.value), v.value > u.value - 1 ? p.value = i - n.value * u.value - i % n.value : p.value = i - i % (n.value * u.value), m = 0;
49
- });
50
- }
51
- function w() {
52
- setTimeout(() => {
53
- J().select(`#${r.id}`).boundingClientRect((e) => {
54
- if (S) return;
55
- if (e = e, !(e != null && e.height) || !(e != null && e.width))
56
- return w();
57
- const { height: l, width: o } = e, d = t.value ? l : o;
58
- u.value = Math.ceil(d / n.value);
59
- }).exec();
60
- }, 50);
61
- }
62
- return D(() => {
63
- h.value = i;
64
- }), L(() => {
65
- w();
66
- }), N(() => {
67
- S = !0;
68
- }), (e, l) => (s(), c("scroll-view", ae(e.$attrs, {
69
- id: e.id,
70
- class: "sun-virtual-scroll",
71
- "refresher-enabled": e.refresher,
72
- "refresher-triggered": e.refreshing,
73
- "refresher-background": e.refresherBg,
74
- "scroll-x": !t.value,
75
- "scroll-y": t.value,
76
- "scroll-top": t.value ? h.value : 0,
77
- "scroll-left": t.value ? 0 : h.value,
78
- enhanced: !0,
79
- "lower-threshold": 300,
80
- onScrollPassive: l[0] || (l[0] = (o) => V(o)),
81
- onRefresherrefresh: l[1] || (l[1] = (o) => {
82
- B(H).short("light"), y("refresh");
83
- }),
84
- onScrolltolower: l[2] || (l[2] = (o) => y("lower"))
85
- }), [
86
- e.items.length ? (s(), c("view", {
87
- key: 0,
88
- class: "sun-virtual-scroll-content-container",
89
- style: g(_.value)
90
- }, [
91
- (s(!0), c(te, null, ee(P.value, (o, d) => {
92
- var k;
93
- return s(), c("view", {
94
- key: (k = o[e.itemKey]) != null ? k : d,
95
- class: "sun-virtual-scroll-item",
96
- style: g(F.value)
97
- }, [
98
- z(e.$slots, "default", {
99
- item: o,
100
- index: d
101
- })
102
- ], 4);
103
- }), 128))
104
- ], 4)) : (s(), c("view", ue, [
105
- e.loading ? (s(), ne(B(Z), {
106
- key: 0,
107
- size: "large"
108
- }, {
109
- default: ie(() => [
110
- oe(le(e.loadingText), 1)
111
- ]),
112
- _: 1
113
- })) : z(e.$slots, "empty", { key: 1 })
114
- ])),
115
- e.items.length ? (s(), c("view", {
116
- key: 2,
117
- class: "sun-virtual-scroll-spacer",
118
- style: g(T.value)
119
- }, null, 4)) : re("", !0)
120
- ], 16, se));
9
+ setup(o) {
10
+ const e = o, t = a(() => [
11
+ `sun-tag-${e.type}`,
12
+ `sun-tag-${e.color}`,
13
+ `sun-tag-${e.shape}`
14
+ ]);
15
+ return (s, i) => (m(), _("view", {
16
+ class: d(["sun-tag", t.value])
17
+ }, [
18
+ u(s.$slots, "default")
19
+ ], 2));
121
20
  }
122
21
  });
123
22
  export {
124
- he as default
23
+ g as default
125
24
  };
package/index24.js CHANGED
@@ -1,16 +1,36 @@
1
- import { renderSlot as r, mergeProps as o, openBlock as t, createElementBlock as s } from "vue";
2
- import c from "./index32.js";
3
- const n = {}, a = r, l = o, f = t, m = s;
4
- function _(e, p) {
5
- return f(), m("view", l(e.$attrs, {
6
- class: "sun-fab",
7
- "hover-class": "hover",
8
- "hover-stay-time": "200"
9
- }), [
10
- a(e.$slots, "default")
11
- ], 16);
12
- }
13
- const u = /* @__PURE__ */ c(n, [["render", _]]);
1
+ import { defineComponent as r, mergeModels as d, useModel as c, computed as u, createElementVNode as i, normalizeClass as m, openBlock as g, createElementBlock as p } from "vue";
2
+ const t = i, v = m, f = g, k = p, w = /* @__PURE__ */ r({
3
+ __name: "index",
4
+ props: /* @__PURE__ */ d({
5
+ disabled: { type: Boolean },
6
+ color: { default: "primary" }
7
+ }, {
8
+ modelValue: { type: Boolean },
9
+ modelModifiers: {}
10
+ }),
11
+ emits: ["update:modelValue"],
12
+ setup(s) {
13
+ const o = s, l = c(s, "modelValue"), n = u(() => [
14
+ `sun-toggle-${o.color}`,
15
+ {
16
+ "sun-toggle-disabled": o.disabled,
17
+ "sun-toggle-checked": l.value
18
+ }
19
+ ]);
20
+ function a() {
21
+ o.disabled || (l.value = !l.value);
22
+ }
23
+ return (B, e) => (f(), k("view", {
24
+ class: v(["sun-toggle", n.value]),
25
+ "hover-class": "hover",
26
+ onTap: e[0] || (e[0] = (V) => a())
27
+ }, e[1] || (e[1] = [
28
+ t("view", { class: "sun-toggle-toggle-icon-wrapper" }, [
29
+ t("view", { class: "sun-toggle-toggle-icon" })
30
+ ], -1)
31
+ ]), 34));
32
+ }
33
+ });
14
34
  export {
15
- u as default
35
+ w as default
16
36
  };
package/index25.js CHANGED
@@ -1,16 +1,125 @@
1
- import { defineComponent as c, computed as s, normalizeClass as t, openBlock as a, createElementBlock as l } from "vue";
2
- const r = t, i = a, m = l, d = /* @__PURE__ */ c({
1
+ import { defineComponent as I, ref as f, computed as a, onActivated as D, onMounted as L, onUnmounted as N, renderList as A, Fragment as M, openBlock as E, createElementBlock as K, renderSlot as R, normalizeStyle as j, createCommentVNode as q, toDisplayString as O, createTextVNode as Q, unref as U, withCtx as W, createBlock as X, mergeProps as Y } from "vue";
2
+ import { withPixel as b } from "@solar-kit/core";
3
+ import { rpxToPx as G, vibrator as H } from "@solar-taro/core";
4
+ import { createSelectorQuery as J } from "@tarojs/taro";
5
+ import Z from "./index17.js";
6
+ const ee = A, te = M, s = E, c = K, z = R, g = j, re = q, le = O, oe = Q, B = U, ie = W, ne = X, ae = Y, se = ["id", "refresher-enabled", "refresher-triggered", "refresher-background", "scroll-x", "scroll-y", "scroll-top", "scroll-left"], ue = {
7
+ key: 1,
8
+ class: "sun-virtual-scroll-placeholder",
9
+ style: { display: "flex", "justify-content": "center", "align-items": "center", height: "85%" }
10
+ };
11
+ let ce = 1;
12
+ const he = /* @__PURE__ */ I({
3
13
  __name: "index",
4
14
  props: {
5
- name: {}
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-${ce++}` },
23
+ bottomSpace: { default: 0 },
24
+ loading: { type: Boolean },
25
+ loadingText: { default: "Loading" }
6
26
  },
7
- setup(e) {
8
- const n = e, o = s(() => `ionicon-${n.name}`);
9
- return (p, _) => (i(), m("view", {
10
- class: r(["sun-icon ionicon", o.value])
11
- }, null, 2));
27
+ emits: ["refresh", "lower"],
28
+ setup($, { emit: x }) {
29
+ const y = x, r = $;
30
+ let m, i = 0, S = !1;
31
+ const u = f(0), v = f(0), p = f(0), h = f(0), t = a(() => r.direction === "vertical"), _ = a(() => ({
32
+ right: t.value ? "0" : "auto",
33
+ transform: `translate${t.value ? "Y" : "X"}(${p.value}px)`,
34
+ "white-space": t.value ? "normal" : "nowrap"
35
+ })), n = a(() => typeof r.itemSize == "number" ? r.itemSize : r.itemSize.endsWith("rpx") ? G(parseFloat(r.itemSize)) : parseFloat(r.itemSize)), C = a(() => n.value * r.items.length), T = a(() => ({
36
+ [t.value ? "height" : "width"]: b(C.value + r.bottomSpace)
37
+ })), F = a(() => ({
38
+ display: t.value ? "block" : "inline-block",
39
+ [t.value ? "height" : "width"]: b(n.value)
40
+ })), P = a(
41
+ () => r.items.slice(
42
+ Math.max(v.value - u.value, 0),
43
+ v.value + u.value * 2
44
+ )
45
+ );
46
+ function V({ detail: e }) {
47
+ m && cancelAnimationFrame(m), m = requestAnimationFrame(() => {
48
+ i = t.value ? e.scrollTop : e.scrollLeft, v.value = ~~(i / n.value), v.value > u.value - 1 ? p.value = i - n.value * u.value - i % n.value : p.value = i - i % (n.value * u.value), m = 0;
49
+ });
50
+ }
51
+ function w() {
52
+ setTimeout(() => {
53
+ J().select(`#${r.id}`).boundingClientRect((e) => {
54
+ if (S) return;
55
+ if (e = e, !(e != null && e.height) || !(e != null && e.width))
56
+ return w();
57
+ const { height: l, width: o } = e, d = t.value ? l : o;
58
+ u.value = Math.ceil(d / n.value);
59
+ }).exec();
60
+ }, 50);
61
+ }
62
+ return D(() => {
63
+ h.value = i;
64
+ }), L(() => {
65
+ w();
66
+ }), N(() => {
67
+ S = !0;
68
+ }), (e, l) => (s(), c("scroll-view", ae(e.$attrs, {
69
+ id: e.id,
70
+ class: "sun-virtual-scroll",
71
+ "refresher-enabled": e.refresher,
72
+ "refresher-triggered": e.refreshing,
73
+ "refresher-background": e.refresherBg,
74
+ "scroll-x": !t.value,
75
+ "scroll-y": t.value,
76
+ "scroll-top": t.value ? h.value : 0,
77
+ "scroll-left": t.value ? 0 : h.value,
78
+ enhanced: !0,
79
+ "lower-threshold": 300,
80
+ onScrollPassive: l[0] || (l[0] = (o) => V(o)),
81
+ onRefresherrefresh: l[1] || (l[1] = (o) => {
82
+ B(H).short("light"), y("refresh");
83
+ }),
84
+ onScrolltolower: l[2] || (l[2] = (o) => y("lower"))
85
+ }), [
86
+ e.items.length ? (s(), c("view", {
87
+ key: 0,
88
+ class: "sun-virtual-scroll-content-container",
89
+ style: g(_.value)
90
+ }, [
91
+ (s(!0), c(te, null, ee(P.value, (o, d) => {
92
+ var k;
93
+ return s(), c("view", {
94
+ key: (k = o[e.itemKey]) != null ? k : d,
95
+ class: "sun-virtual-scroll-item",
96
+ style: g(F.value)
97
+ }, [
98
+ z(e.$slots, "default", {
99
+ item: o,
100
+ index: d
101
+ })
102
+ ], 4);
103
+ }), 128))
104
+ ], 4)) : (s(), c("view", ue, [
105
+ e.loading ? (s(), ne(B(Z), {
106
+ key: 0,
107
+ size: "large"
108
+ }, {
109
+ default: ie(() => [
110
+ oe(le(e.loadingText), 1)
111
+ ]),
112
+ _: 1
113
+ })) : z(e.$slots, "empty", { key: 1 })
114
+ ])),
115
+ e.items.length ? (s(), c("view", {
116
+ key: 2,
117
+ class: "sun-virtual-scroll-spacer",
118
+ style: g(T.value)
119
+ }, null, 4)) : re("", !0)
120
+ ], 16, se));
12
121
  }
13
122
  });
14
123
  export {
15
- d as default
124
+ he as default
16
125
  };
package/index26.js CHANGED
@@ -1,13 +1,16 @@
1
- import { renderSlot as t, openBlock as n, createElementBlock as r } from "vue";
2
- import s from "./index32.js";
3
- const c = {}, o = t, l = n, _ = r, d = { class: "sun-list-header" };
4
- function a(e, f) {
5
- return l(), _("view", d, [
6
- o(e.$slots, "default"),
7
- o(e.$slots, "end")
8
- ]);
9
- }
10
- const p = /* @__PURE__ */ s(c, [["render", a]]);
1
+ import { defineComponent as c, computed as s, normalizeClass as t, openBlock as a, createElementBlock as l } from "vue";
2
+ const r = t, i = a, m = l, d = /* @__PURE__ */ c({
3
+ __name: "index",
4
+ props: {
5
+ name: {}
6
+ },
7
+ setup(e) {
8
+ const n = e, o = s(() => `ionicon-${n.name}`);
9
+ return (p, _) => (i(), m("view", {
10
+ class: r(["sun-icon ionicon", o.value])
11
+ }, null, 2));
12
+ }
13
+ });
11
14
  export {
12
- p as default
15
+ d as default
13
16
  };
package/index27.js CHANGED
@@ -1,13 +1,13 @@
1
1
  import { renderSlot as t, openBlock as n, createElementBlock as r } from "vue";
2
- import c from "./index32.js";
3
- const s = {}, o = t, l = n, _ = r, a = { class: "sun-page-header" };
4
- function d(e, f) {
5
- return l(), _("view", a, [
2
+ import s from "./index38.js";
3
+ const c = {}, o = t, l = n, _ = r, d = { class: "sun-list-header" };
4
+ function a(e, f) {
5
+ return l(), _("view", d, [
6
6
  o(e.$slots, "default"),
7
7
  o(e.$slots, "end")
8
8
  ]);
9
9
  }
10
- const p = /* @__PURE__ */ c(s, [["render", d]]);
10
+ const p = /* @__PURE__ */ s(c, [["render", a]]);
11
11
  export {
12
12
  p as default
13
13
  };
package/index28.js CHANGED
@@ -1,10 +1,13 @@
1
- import { mergeProps as o, openBlock as r, createElementBlock as t } from "vue";
2
- import c from "./index32.js";
3
- const n = {}, s = o, _ = r, l = t;
4
- function m(e, a) {
5
- return _(), l("view", s(e.$attrs, { class: "sun-skeleton" }), " ", 16);
1
+ import { renderSlot as t, openBlock as n, createElementBlock as r } from "vue";
2
+ import c from "./index38.js";
3
+ const s = {}, o = t, l = n, _ = r, a = { class: "sun-page-header" };
4
+ function d(e, f) {
5
+ return l(), _("view", a, [
6
+ o(e.$slots, "default"),
7
+ o(e.$slots, "end")
8
+ ]);
6
9
  }
7
- const i = /* @__PURE__ */ c(n, [["render", m]]);
10
+ const p = /* @__PURE__ */ c(s, [["render", d]]);
8
11
  export {
9
- i as default
12
+ p as default
10
13
  };
package/index29.js CHANGED
@@ -1,12 +1,10 @@
1
- import { renderSlot as o, mergeProps as r, openBlock as t, createElementBlock as s } from "vue";
2
- import n from "./index32.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);
1
+ import { mergeProps as o, openBlock as r, createElementBlock as t } from "vue";
2
+ import c from "./index38.js";
3
+ const n = {}, s = o, _ = r, l = t;
4
+ function m(e, a) {
5
+ return _(), l("view", s(e.$attrs, { class: "sun-skeleton" }), " ", 16);
8
6
  }
9
- const i = /* @__PURE__ */ n(c, [["render", u]]);
7
+ const i = /* @__PURE__ */ c(n, [["render", m]]);
10
8
  export {
11
9
  i as default
12
10
  };
package/index30.js CHANGED
@@ -1,12 +1,12 @@
1
- import { renderSlot as t, openBlock as o, createElementBlock as n } from "vue";
2
- import r from "./index32.js";
3
- const c = {}, s = t, l = o, _ = n, a = { class: "sun-title" };
4
- function d(e, f) {
5
- return l(), _("view", a, [
6
- s(e.$slots, "default")
7
- ]);
1
+ import { renderSlot as o, mergeProps as r, openBlock as t, createElementBlock as s } from "vue";
2
+ import n from "./index38.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
8
  }
9
- const p = /* @__PURE__ */ r(c, [["render", d]]);
9
+ const i = /* @__PURE__ */ n(c, [["render", u]]);
10
10
  export {
11
- p as default
11
+ i as default
12
12
  };
package/index31.js CHANGED
@@ -1,4 +1,12 @@
1
- import f from "./index7.js";
1
+ import { renderSlot as t, openBlock as o, createElementBlock as n } from "vue";
2
+ import r from "./index38.js";
3
+ const c = {}, s = t, l = o, _ = n, a = { class: "sun-title" };
4
+ function d(e, f) {
5
+ return l(), _("view", a, [
6
+ s(e.$slots, "default")
7
+ ]);
8
+ }
9
+ const p = /* @__PURE__ */ r(c, [["render", d]]);
2
10
  export {
3
- f as default
11
+ p as default
4
12
  };
package/index32.js CHANGED
@@ -1,9 +1,4 @@
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 f from "./index3.js";
7
2
  export {
8
- s as default
3
+ f as default
9
4
  };
package/index33.js CHANGED
@@ -1,4 +1,4 @@
1
- import f from "./index4.js";
1
+ import f from "./index5.js";
2
2
  export {
3
3
  f as default
4
4
  };
package/index34.js CHANGED
@@ -1,4 +1,4 @@
1
- import f from "./index3.js";
1
+ import f from "./index26.js";
2
2
  export {
3
3
  f as default
4
4
  };
package/index35.js CHANGED
@@ -1,4 +1,4 @@
1
- import f from "./index6.js";
1
+ import f from "./index9.js";
2
2
  export {
3
3
  f as default
4
4
  };
package/index36.js CHANGED
@@ -1,4 +1,4 @@
1
- import f from "./index15.js";
1
+ import f from "./index11.js";
2
2
  export {
3
3
  f as default
4
4
  };
package/index37.js CHANGED
@@ -1,4 +1,4 @@
1
- import f from "./index25.js";
1
+ import f from "./index6.js";
2
2
  export {
3
3
  f as default
4
4
  };
package/index38.js CHANGED
@@ -1,4 +1,9 @@
1
- import f from "./index16.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/index39.js CHANGED
@@ -1,4 +1,4 @@
1
- import f from "./index10.js";
1
+ import f from "./index13.js";
2
2
  export {
3
3
  f as default
4
4
  };
package/index4.js CHANGED
@@ -1,6 +1,6 @@
1
1
  import { defineComponent as o, unref as r, openBlock as t, createBlock as c } from "vue";
2
2
  import { router as a } from "@solar-taro/core";
3
- import m from "./index25.js";
3
+ import m from "./index26.js";
4
4
  const n = r, p = t, _ = c, b = /* @__PURE__ */ o({
5
5
  __name: "index",
6
6
  setup(s) {
package/index40.js CHANGED
@@ -1,4 +1,4 @@
1
- import f from "./index9.js";
1
+ import f from "./index10.js";
2
2
  export {
3
3
  f as default
4
4
  };
package/index41.js CHANGED
@@ -1,4 +1,4 @@
1
- import f from "./index8.js";
1
+ import f from "./index14.js";
2
2
  export {
3
3
  f as default
4
4
  };