@huyooo/ui 2.1.8 → 2.1.12
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/dist/PricingPlans-rArK_Fv1.js +394 -0
- package/dist/main.js +1 -1
- package/dist/pay.js +1 -1
- package/dist/style.css +1 -1
- package/package.json +29 -15
- package/dist/PricingPlans-qRWHwi9x.js +0 -421
|
@@ -0,0 +1,394 @@
|
|
|
1
|
+
/* empty css */
|
|
2
|
+
import "./userMenuModal-D-nDaYqM.js";
|
|
3
|
+
import "./apiClients-CWSwNzGk.js";
|
|
4
|
+
/* empty css */
|
|
5
|
+
import { defineComponent as Q, computed as T, onMounted as J, onUnmounted as oe, openBlock as t, createElementBlock as n, createElementVNode as i, unref as e, createBlock as V, toDisplayString as a, createVNode as p, withCtx as h, createTextVNode as B, resolveDirective as ce, withDirectives as ue, normalizeClass as w, Fragment as I, renderList as C, createCommentVNode as P } from "vue";
|
|
6
|
+
import { Spin as X, Button as R, Message as de } from "@arco-design/web-vue";
|
|
7
|
+
import { useRoute as _e, useRouter as ge } from "vue-router";
|
|
8
|
+
import { a as Pe } from "./PaySubscriptions-pEZtjp1g.js";
|
|
9
|
+
import { _ as z } from "./_plugin-vue_export-helper-CHgC5LLL.js";
|
|
10
|
+
import { L as me, a as fe, b as pe } from "./LandingPageSectionHeader-3hiuw6G0.js";
|
|
11
|
+
import { Icon as Y } from "@iconify/vue";
|
|
12
|
+
import { u as ve, a as ye } from "./useSubscriptionCheckout-Dmg0kt4F.js";
|
|
13
|
+
import { u as he } from "./useEnsureAuthenticated-RZ1DflLz.js";
|
|
14
|
+
const _t = "/Pay/Return";
|
|
15
|
+
function M(r) {
|
|
16
|
+
const d = typeof r.scene == "string" ? r.scene : null, o = typeof r.orderId == "string" ? r.orderId : null, c = typeof r.returnTo == "string" ? r.returnTo.trim() : null, g = c != null && c.startsWith("/") && !c.startsWith("//") ? c : null;
|
|
17
|
+
return d !== "subscription" && d !== "recharge" && d !== "agreement" ? {
|
|
18
|
+
scene: null,
|
|
19
|
+
orderId: o,
|
|
20
|
+
returnTo: g
|
|
21
|
+
} : {
|
|
22
|
+
scene: d,
|
|
23
|
+
orderId: (o == null ? void 0 : o.trim()) || null,
|
|
24
|
+
returnTo: g
|
|
25
|
+
};
|
|
26
|
+
}
|
|
27
|
+
function ke(r, d) {
|
|
28
|
+
const {
|
|
29
|
+
returnTo: o
|
|
30
|
+
} = M(r);
|
|
31
|
+
return o || d;
|
|
32
|
+
}
|
|
33
|
+
const be = {
|
|
34
|
+
class: "payment-return-page"
|
|
35
|
+
}, Ie = {
|
|
36
|
+
class: "payment-return-card"
|
|
37
|
+
}, Ce = {
|
|
38
|
+
key: 1,
|
|
39
|
+
class: "payment-return-icon success"
|
|
40
|
+
}, Te = {
|
|
41
|
+
key: 2,
|
|
42
|
+
class: "payment-return-icon failed"
|
|
43
|
+
}, we = {
|
|
44
|
+
key: 3,
|
|
45
|
+
class: "payment-return-actions"
|
|
46
|
+
}, Be = {
|
|
47
|
+
key: 4,
|
|
48
|
+
class: "payment-return-actions"
|
|
49
|
+
}, Re = /* @__PURE__ */ Q({
|
|
50
|
+
__name: "PaymentReturnPage",
|
|
51
|
+
props: {
|
|
52
|
+
defaultReturnTo: {
|
|
53
|
+
default: "/Pricing"
|
|
54
|
+
}
|
|
55
|
+
},
|
|
56
|
+
setup(r) {
|
|
57
|
+
const d = r, o = _e(), c = ge();
|
|
58
|
+
function g() {
|
|
59
|
+
return ke(o.query, d.defaultReturnTo);
|
|
60
|
+
}
|
|
61
|
+
const {
|
|
62
|
+
phase: u,
|
|
63
|
+
message: v,
|
|
64
|
+
checking: L,
|
|
65
|
+
confirmPayment: A,
|
|
66
|
+
stopPolling: F,
|
|
67
|
+
verifyNow: D
|
|
68
|
+
} = Pe(g), S = T(() => u.value === "success" ? "支付成功" : u.value === "failed" ? "支付未完成" : "正在确认支付");
|
|
69
|
+
function $() {
|
|
70
|
+
c.replace(g());
|
|
71
|
+
}
|
|
72
|
+
async function N() {
|
|
73
|
+
const {
|
|
74
|
+
scene: m,
|
|
75
|
+
orderId: l
|
|
76
|
+
} = M(o.query);
|
|
77
|
+
if (!m || !l) {
|
|
78
|
+
de.error("支付参数无效");
|
|
79
|
+
return;
|
|
80
|
+
}
|
|
81
|
+
const k = await D(m, l);
|
|
82
|
+
if (k.error) {
|
|
83
|
+
u.value = "failed", v.value = k.message || "确认支付失败";
|
|
84
|
+
return;
|
|
85
|
+
}
|
|
86
|
+
if (k.success) {
|
|
87
|
+
u.value = "success", v.value = k.message || "支付成功", window.setTimeout(() => {
|
|
88
|
+
c.replace(g());
|
|
89
|
+
}, 1200);
|
|
90
|
+
return;
|
|
91
|
+
}
|
|
92
|
+
v.value = k.message || "等待支付确认...";
|
|
93
|
+
}
|
|
94
|
+
return J(() => {
|
|
95
|
+
const {
|
|
96
|
+
scene: m,
|
|
97
|
+
orderId: l
|
|
98
|
+
} = M(o.query);
|
|
99
|
+
if (!m || !l) {
|
|
100
|
+
u.value = "failed", v.value = "缺少支付回跳参数";
|
|
101
|
+
return;
|
|
102
|
+
}
|
|
103
|
+
if (m === "agreement") {
|
|
104
|
+
u.value = "success", v.value = "签约流程已完成,正在返回...", window.setTimeout(() => {
|
|
105
|
+
c.replace(g());
|
|
106
|
+
}, 1200);
|
|
107
|
+
return;
|
|
108
|
+
}
|
|
109
|
+
A(m, l);
|
|
110
|
+
}), oe(F), (m, l) => (t(), n("div", be, [i("div", Ie, [e(u) === "loading" ? (t(), V(e(X), {
|
|
111
|
+
key: 0,
|
|
112
|
+
size: 36
|
|
113
|
+
})) : e(u) === "success" ? (t(), n("div", Ce, "✓")) : (t(), n("div", Te, "!")), i("h1", null, a(S.value), 1), i("p", null, a(e(v)), 1), e(u) === "loading" ? (t(), n("div", we, [p(e(R), {
|
|
114
|
+
loading: e(L),
|
|
115
|
+
type: "primary",
|
|
116
|
+
onClick: N
|
|
117
|
+
}, {
|
|
118
|
+
default: h(() => [...l[0] || (l[0] = [B(" 我已完成支付 ", -1)])]),
|
|
119
|
+
_: 1
|
|
120
|
+
}, 8, ["loading"]), p(e(R), {
|
|
121
|
+
onClick: $
|
|
122
|
+
}, {
|
|
123
|
+
default: h(() => [...l[1] || (l[1] = [B("返回", -1)])]),
|
|
124
|
+
_: 1
|
|
125
|
+
})])) : (t(), n("div", Be, [p(e(R), {
|
|
126
|
+
type: "primary",
|
|
127
|
+
onClick: $
|
|
128
|
+
}, {
|
|
129
|
+
default: h(() => [...l[2] || (l[2] = [B("返回", -1)])]),
|
|
130
|
+
_: 1
|
|
131
|
+
})]))])]));
|
|
132
|
+
}
|
|
133
|
+
}), gt = /* @__PURE__ */ z(Re, [["__scopeId", "data-v-65b534f9"]]), Le = /* @__PURE__ */ Q({
|
|
134
|
+
__name: "PricingFAQ",
|
|
135
|
+
props: {
|
|
136
|
+
title: {
|
|
137
|
+
default: "订阅常见问题"
|
|
138
|
+
},
|
|
139
|
+
subtitle: {
|
|
140
|
+
default: "关于试用、付款、配额、升级和取消订阅的说明。"
|
|
141
|
+
},
|
|
142
|
+
activeKeys: {
|
|
143
|
+
default: () => []
|
|
144
|
+
},
|
|
145
|
+
faqItems: {
|
|
146
|
+
default: void 0
|
|
147
|
+
}
|
|
148
|
+
},
|
|
149
|
+
setup(r) {
|
|
150
|
+
const d = [{
|
|
151
|
+
question: "可以先试用再付费吗?",
|
|
152
|
+
answer: "可以。支持试用的方案会在卡片按钮上标明试用天数。试用期间可使用对应方案能力,到期后再决定是否继续订阅。"
|
|
153
|
+
}, {
|
|
154
|
+
question: "月付和年付有什么区别?",
|
|
155
|
+
answer: "月付适合短期验证和灵活使用,年付适合稳定团队和长期项目,通常会有更优惠的价格。"
|
|
156
|
+
}, {
|
|
157
|
+
question: "已有订阅后可以升级或切换方案吗?",
|
|
158
|
+
answer: "可以。升级或切换方案时,系统会根据当前订阅和新方案计算差额;如需补差价,会跳转到支付页面完成支付。"
|
|
159
|
+
}, {
|
|
160
|
+
question: "取消订阅后还能继续使用吗?",
|
|
161
|
+
answer: "可以。取消订阅后,当前计费周期内仍可继续使用,周期结束后订阅权益将停止续期。"
|
|
162
|
+
}, {
|
|
163
|
+
question: "配额什么时候重置?",
|
|
164
|
+
answer: "配额按订阅周期重置,不一定是自然月月初。例如您在 4 月 15 日订阅月付方案,下一次配额重置通常发生在 5 月 15 日。"
|
|
165
|
+
}, {
|
|
166
|
+
question: "不同方案的技术支持有什么区别?",
|
|
167
|
+
answer: "基础方案适合个人和轻量团队,包含常规支持;更高等级方案面向正式团队和生产场景,通常包含更高优先级支持。"
|
|
168
|
+
}, {
|
|
169
|
+
question: "是否支持退款?",
|
|
170
|
+
answer: "订阅可随时取消。退款规则以付费服务协议为准,如遇到重复扣费或异常支付,可以联系支持团队处理。"
|
|
171
|
+
}, {
|
|
172
|
+
question: "使用订阅服务有什么限制?",
|
|
173
|
+
answer: "请按正常业务场景使用服务,禁止共享、转售订阅或用于违法违规场景。严重滥用可能导致服务受限或账户终止。"
|
|
174
|
+
}], o = r, c = T(() => o.faqItems ?? d);
|
|
175
|
+
return (g, u) => (t(), V(me, {
|
|
176
|
+
class: "PricingFAQ"
|
|
177
|
+
}, {
|
|
178
|
+
BlockHeader: h(() => [p(pe, {
|
|
179
|
+
title: r.title,
|
|
180
|
+
subtitle: r.subtitle
|
|
181
|
+
}, null, 8, ["title", "subtitle"])]),
|
|
182
|
+
BlockBody: h(() => [p(fe, {
|
|
183
|
+
"active-keys": r.activeKeys,
|
|
184
|
+
"faq-items": c.value
|
|
185
|
+
}, null, 8, ["active-keys", "faq-items"])]),
|
|
186
|
+
_: 1
|
|
187
|
+
}));
|
|
188
|
+
}
|
|
189
|
+
}), Pt = /* @__PURE__ */ z(Le, [["__scopeId", "data-v-fcab2f05"]]), Se = {
|
|
190
|
+
class: "PricingPlans"
|
|
191
|
+
}, $e = {
|
|
192
|
+
class: "PricingPlans__trialMain"
|
|
193
|
+
}, qe = {
|
|
194
|
+
class: "PricingPlans__trialCopy"
|
|
195
|
+
}, Ae = {
|
|
196
|
+
key: 0,
|
|
197
|
+
class: "PricingPlans__trialFeatures"
|
|
198
|
+
}, Fe = {
|
|
199
|
+
key: 0,
|
|
200
|
+
class: "PricingPlans__trialAction"
|
|
201
|
+
}, De = {
|
|
202
|
+
key: 1,
|
|
203
|
+
class: "PricingPlans__trialStatus"
|
|
204
|
+
}, Ne = {
|
|
205
|
+
key: 1,
|
|
206
|
+
class: "PricingPlans__toolbar"
|
|
207
|
+
}, xe = {
|
|
208
|
+
key: 0,
|
|
209
|
+
class: "PricingPlans__toggle",
|
|
210
|
+
role: "tablist",
|
|
211
|
+
"aria-label": "计费周期"
|
|
212
|
+
}, Ee = ["onClick"], Me = {
|
|
213
|
+
key: 0,
|
|
214
|
+
class: "PricingPlans__toggleBadge"
|
|
215
|
+
}, Qe = {
|
|
216
|
+
key: 1,
|
|
217
|
+
class: "PricingPlans__note"
|
|
218
|
+
}, Ve = {
|
|
219
|
+
class: "PricingPlans__badgeRow"
|
|
220
|
+
}, ze = {
|
|
221
|
+
class: "PricingPlans__header"
|
|
222
|
+
}, He = {
|
|
223
|
+
class: "PricingPlans__price"
|
|
224
|
+
}, Ge = {
|
|
225
|
+
key: 0,
|
|
226
|
+
class: "PricingPlans__originalPrice"
|
|
227
|
+
}, Ke = {
|
|
228
|
+
class: "PricingPlans__amount"
|
|
229
|
+
}, Oe = {
|
|
230
|
+
class: "PricingPlans__cycle"
|
|
231
|
+
}, Ue = {
|
|
232
|
+
key: 0,
|
|
233
|
+
class: "PricingPlans__promotion"
|
|
234
|
+
}, We = {
|
|
235
|
+
class: "PricingPlans__summary"
|
|
236
|
+
}, je = {
|
|
237
|
+
class: "PricingPlans__featureGroups"
|
|
238
|
+
}, Ye = {
|
|
239
|
+
class: "PricingPlans__features"
|
|
240
|
+
}, Je = {
|
|
241
|
+
key: 3,
|
|
242
|
+
class: "PricingPlans__empty"
|
|
243
|
+
}, Xe = /* @__PURE__ */ Q({
|
|
244
|
+
__name: "PricingPlans",
|
|
245
|
+
props: {
|
|
246
|
+
appName: {
|
|
247
|
+
default: "Huyooo"
|
|
248
|
+
},
|
|
249
|
+
defaultInterval: {
|
|
250
|
+
default: "month"
|
|
251
|
+
},
|
|
252
|
+
note: {
|
|
253
|
+
default: ""
|
|
254
|
+
}
|
|
255
|
+
},
|
|
256
|
+
setup(r) {
|
|
257
|
+
const d = r, {
|
|
258
|
+
products: o,
|
|
259
|
+
plans: c,
|
|
260
|
+
currentSubscription: g,
|
|
261
|
+
listLoading: u,
|
|
262
|
+
billingInterval: v,
|
|
263
|
+
billingIntervalTabs: L,
|
|
264
|
+
setBillingInterval: A,
|
|
265
|
+
currentTrial: F,
|
|
266
|
+
isCurrentPlan: D,
|
|
267
|
+
isRecommendedPlan: S,
|
|
268
|
+
isFreePlan: $,
|
|
269
|
+
isPlanActionDisabled: N,
|
|
270
|
+
getDisplayPrice: m,
|
|
271
|
+
getDisplayOriginalPrice: l,
|
|
272
|
+
getDisplayCycle: k,
|
|
273
|
+
getPromotionLabel: H,
|
|
274
|
+
getBadgeLabels: Z,
|
|
275
|
+
getButtonLabel: ee,
|
|
276
|
+
getPlanSummary: G,
|
|
277
|
+
getFeatureGroups: K,
|
|
278
|
+
loadCurrentSubscription: O,
|
|
279
|
+
refresh: te
|
|
280
|
+
} = ve(d.defaultInterval), b = T(() => {
|
|
281
|
+
if (!g.value)
|
|
282
|
+
for (const f of o.value) {
|
|
283
|
+
const _ = f.prices.find((x) => x.type === "free");
|
|
284
|
+
if (_)
|
|
285
|
+
return {
|
|
286
|
+
...f,
|
|
287
|
+
features: _.features ?? [],
|
|
288
|
+
selectedPrice: _
|
|
289
|
+
};
|
|
290
|
+
}
|
|
291
|
+
}), q = T(() => c.value.filter((f) => !$(f))), ne = T(() => !!localStorage.getItem("jwtToken")), U = T(() => !!F.value), {
|
|
292
|
+
checkout: se,
|
|
293
|
+
isCheckingOut: ie
|
|
294
|
+
} = ye({
|
|
295
|
+
currentSubscription: g,
|
|
296
|
+
refreshCurrentSubscription: O
|
|
297
|
+
}), {
|
|
298
|
+
ensureAuthenticated: re
|
|
299
|
+
} = he();
|
|
300
|
+
function ae(f) {
|
|
301
|
+
return f === 1 ? "适合团队协作与更高频使用" : "适合个人和轻量团队使用";
|
|
302
|
+
}
|
|
303
|
+
function W(f) {
|
|
304
|
+
return K(f.features).flatMap((_) => _.items).slice(0, 3);
|
|
305
|
+
}
|
|
306
|
+
function le() {
|
|
307
|
+
re(() => {
|
|
308
|
+
O();
|
|
309
|
+
});
|
|
310
|
+
}
|
|
311
|
+
return J(() => {
|
|
312
|
+
te();
|
|
313
|
+
}), (f, _) => {
|
|
314
|
+
const x = ce("motion-slide-top");
|
|
315
|
+
return t(), n("section", Se, [ue((t(), V(e(X), {
|
|
316
|
+
loading: e(u),
|
|
317
|
+
tip: "数据加载中",
|
|
318
|
+
class: "PricingPlans__spin"
|
|
319
|
+
}, {
|
|
320
|
+
default: h(() => [b.value ? (t(), n("article", {
|
|
321
|
+
key: 0,
|
|
322
|
+
class: w(["PricingPlans__trial", {
|
|
323
|
+
"is-current": U.value
|
|
324
|
+
}])
|
|
325
|
+
}, [i("div", $e, [i("div", qe, [i("h2", null, a(b.value.name), 1), i("p", null, a(b.value.description || e(G)(b.value, 0)), 1), W(b.value).length ? (t(), n("ul", Ae, [(t(!0), n(I, null, C(W(b.value), (s) => (t(), n("li", {
|
|
326
|
+
key: s.title
|
|
327
|
+
}, [p(e(Y), {
|
|
328
|
+
icon: "mingcute:check-circle-fill",
|
|
329
|
+
class: "PricingPlans__trialFeatureIcon"
|
|
330
|
+
}), i("span", null, a(s.title), 1)]))), 128))])) : P("", !0)]), ne.value ? U.value ? (t(), n("div", De, " 已开通 ")) : P("", !0) : (t(), n("div", Fe, [p(e(R), {
|
|
331
|
+
size: "large",
|
|
332
|
+
class: "PricingPlans__trialButton",
|
|
333
|
+
onClick: le
|
|
334
|
+
}, {
|
|
335
|
+
default: h(() => [..._[0] || (_[0] = [B(" 免费注册 ", -1)])]),
|
|
336
|
+
_: 1
|
|
337
|
+
})]))])], 2)) : P("", !0), q.value.length ? (t(), n("div", Ne, [e(L).length > 1 ? (t(), n("div", xe, [(t(!0), n(I, null, C(e(L), (s) => (t(), n("button", {
|
|
338
|
+
key: s.value,
|
|
339
|
+
type: "button",
|
|
340
|
+
class: w(["PricingPlans__toggleItem", {
|
|
341
|
+
"is-active": e(v) === s.value
|
|
342
|
+
}]),
|
|
343
|
+
onClick: (E) => e(A)(s.value)
|
|
344
|
+
}, [i("span", null, a(s.label), 1), s.badge ? (t(), n("span", Me, a(s.badge), 1)) : P("", !0)], 10, Ee))), 128))])) : P("", !0), r.note ? (t(), n("p", Qe, a(r.note), 1)) : P("", !0)])) : P("", !0), q.value.length ? (t(), n("div", {
|
|
345
|
+
key: 2,
|
|
346
|
+
class: w(["PricingPlans__grid", {
|
|
347
|
+
"PricingPlans__grid--compact": q.value.length <= 2
|
|
348
|
+
}])
|
|
349
|
+
}, [(t(!0), n(I, null, C(q.value, (s, E) => (t(), n("article", {
|
|
350
|
+
key: s.id,
|
|
351
|
+
class: w(["PricingPlans__card", {
|
|
352
|
+
"is-recommended": e(S)(s),
|
|
353
|
+
"is-current": e(D)(s)
|
|
354
|
+
}])
|
|
355
|
+
}, [i("div", Ve, [(t(!0), n(I, null, C(e(Z)(s), (y) => (t(), n("span", {
|
|
356
|
+
key: y.type,
|
|
357
|
+
class: w(["PricingPlans__badge", `is-${y.type}`])
|
|
358
|
+
}, a(y.label), 3))), 128))]), i("div", ze, [i("h2", null, a(s.name), 1), i("p", null, a(s.description || ae(E)), 1)]), i("div", He, [e(l)(s) ? (t(), n("span", Ge, " ¥" + a(e(l)(s)), 1)) : P("", !0), _[1] || (_[1] = i("span", {
|
|
359
|
+
class: "PricingPlans__currency"
|
|
360
|
+
}, "¥", -1)), i("span", Ke, a(e(m)(s)), 1), i("span", Oe, a(e(k)(s)), 1)]), e(H)(s) ? (t(), n("p", Ue, a(e(H)(s)), 1)) : P("", !0), i("p", We, a(e(G)(s, E)), 1), p(e(R), {
|
|
361
|
+
long: "",
|
|
362
|
+
size: "large",
|
|
363
|
+
class: "PricingPlans__button",
|
|
364
|
+
type: e(S)(s) ? "primary" : "outline",
|
|
365
|
+
loading: e(ie)(s),
|
|
366
|
+
disabled: e(N)(s),
|
|
367
|
+
onClick: (y) => e(se)(s)
|
|
368
|
+
}, {
|
|
369
|
+
default: h(() => [B(a(e(ee)(s)), 1)]),
|
|
370
|
+
_: 2
|
|
371
|
+
}, 1032, ["type", "loading", "disabled", "onClick"]), _[2] || (_[2] = i("div", {
|
|
372
|
+
class: "PricingPlans__divider"
|
|
373
|
+
}, null, -1)), i("div", je, [(t(!0), n(I, null, C(e(K)(s.features), (y) => (t(), n("section", {
|
|
374
|
+
key: y.title,
|
|
375
|
+
class: "PricingPlans__featureGroup"
|
|
376
|
+
}, [i("h3", null, a(y.title), 1), i("ul", Ye, [(t(!0), n(I, null, C(y.items, (j) => (t(), n("li", {
|
|
377
|
+
key: j.title
|
|
378
|
+
}, [p(e(Y), {
|
|
379
|
+
icon: "mingcute:check-circle-fill",
|
|
380
|
+
class: "PricingPlans__featureIcon"
|
|
381
|
+
}), i("span", null, a(j.title), 1)]))), 128))])]))), 128))])], 2))), 128))], 2)) : !b.value && !e(u) ? (t(), n("div", Je, " 当前暂无可订阅方案 ")) : P("", !0)]),
|
|
382
|
+
_: 1
|
|
383
|
+
}, 8, ["loading"])), [[x]])]);
|
|
384
|
+
};
|
|
385
|
+
}
|
|
386
|
+
}), mt = /* @__PURE__ */ z(Xe, [["__scopeId", "data-v-3c0af18c"]]);
|
|
387
|
+
export {
|
|
388
|
+
_t as P,
|
|
389
|
+
gt as a,
|
|
390
|
+
Pt as b,
|
|
391
|
+
mt as c,
|
|
392
|
+
M as p,
|
|
393
|
+
ke as r
|
|
394
|
+
};
|
package/dist/main.js
CHANGED
|
@@ -32,7 +32,7 @@ import { C as h7, a as g7 } from "./CollapseItem-DUzZA6tx.js";
|
|
|
32
32
|
import { C as m7, E as L7 } from "./CustomTable-BY0oHLXc.js";
|
|
33
33
|
import { M as w7, a as y7 } from "./Menu-uCexrsKP.js";
|
|
34
34
|
import { P as x7, u as v7, a as Z7, v as V7 } from "./PaySubscriptions-pEZtjp1g.js";
|
|
35
|
-
import { P as U7, a as E7, b as k7, c as S7, p as A7, r as G7 } from "./PricingPlans-
|
|
35
|
+
import { P as U7, a as E7, b as k7, c as S7, p as A7, r as G7 } from "./PricingPlans-rArK_Fv1.js";
|
|
36
36
|
import { useBillingSubscriptionSummary as P7 } from "./useBillingSubscriptionSummary-BC3G0N4t.js";
|
|
37
37
|
import { R as B7 } from "./ReferrerReferees-t5s4LzbY.js";
|
|
38
38
|
import { _ as T7 } from "./Upload.vue_vue_type_script_setup_true_lang-DsrqOACa.js";
|
package/dist/pay.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { P as e, u as t, a as n, v as r } from "./PaySubscriptions-pEZtjp1g.js";
|
|
2
|
-
import { P as i, a as o, b as P, c as p, p as m, r as c } from "./PricingPlans-
|
|
2
|
+
import { P as i, a as o, b as P, c as p, p as m, r as c } from "./PricingPlans-rArK_Fv1.js";
|
|
3
3
|
import { u as g, a as y } from "./useSubscriptionCheckout-Dmg0kt4F.js";
|
|
4
4
|
import { useBillingSubscriptionSummary as R } from "./useBillingSubscriptionSummary-BC3G0N4t.js";
|
|
5
5
|
import { c as b, u as x, a as v, b as O } from "./useBillingStatusOptions-C6edto7H.js";
|