@huyooo/ui 0.12.2 → 0.13.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/dist/CustomTable-BBcd4nNL.js +278 -0
- package/dist/PaySubscriptions-Bxh35MKo.js +1280 -0
- package/dist/PricingPlans-BRJPtzFK.js +405 -0
- package/dist/{ReferrerReferees-DhS91Ulf.js → ReferrerReferees-Hh88qOrp.js} +1 -1
- package/dist/UserMenuInvitationsItem.vue_vue_type_script_setup_true_lang-_BUbnxAH.js +521 -0
- package/dist/{WidthContainer-ektCstwj.js → WidthContainer-CjKGJYG4.js} +2 -2
- package/dist/common/paymentReturn.d.ts +9 -0
- package/dist/common.js +2 -2
- package/dist/components/Pay/PaymentReturnPage.vue.d.ts +7 -0
- package/dist/components/UserMenu/parts/UserSubscriptionBaseInformation.vue.d.ts +2 -0
- package/dist/composables/Billing/useBillingPlans.d.ts +39 -0
- package/dist/composables/Billing/useBillingSubscriptionSummary.d.ts +52 -0
- package/dist/composables/Billing/usePaymentReturn.d.ts +33 -0
- package/dist/composables/UserMenu/useUserMenu.d.ts +1 -1
- package/dist/main.js +154 -147
- package/dist/pay.d.ts +3 -0
- package/dist/pay.js +15 -8
- package/dist/referrer.js +1 -1
- package/dist/style.css +1 -1
- package/dist/user.js +1 -1
- package/dist/utils/billingFetch.d.ts +1 -0
- package/package.json +1 -1
- package/dist/CustomTable-BUkwlbzN.js +0 -272
- package/dist/PaySubscriptions-DS4kJNb_.js +0 -531
- package/dist/PricingPlans-CfW_mv5_.js +0 -279
- package/dist/UserMenuInvitationsItem.vue_vue_type_script_setup_true_lang-9cF5hBYc.js +0 -508
package/dist/pay.d.ts
CHANGED
|
@@ -1,6 +1,9 @@
|
|
|
1
1
|
export { default as PaySubscriptions } from './components/Pay/PaySubscriptions.vue';
|
|
2
|
+
export { default as PaymentReturnPage } from './components/Pay/PaymentReturnPage.vue';
|
|
2
3
|
export { default as PricingFAQ, type PricingFAQItem } from './components/Pay/PricingFAQ.vue';
|
|
3
4
|
export { default as PricingPlans } from './components/Pay/PricingPlans.vue';
|
|
5
|
+
export { PAYMENT_RETURN_PATH, type PaymentReturnScene, parsePaymentReturnQuery, resolvePaymentReturnTarget } from './common/paymentReturn';
|
|
6
|
+
export { usePaymentPolling, usePaymentReturnPage, verifyPaymentStatus, type PaymentVerifyResult, } from './composables/Billing/usePaymentReturn';
|
|
4
7
|
export { useBillingPlans, type BillingFeatureItem, type BillingInterval, type BillingIntervalKey, type BillingIntervalTab, type BillingPlan, type BillingPrice, type BillingProduct, type BillingProductFeature, type BillingSubscription, } from './composables/Billing/useBillingPlans';
|
|
5
8
|
export { useBillingSubscriptionSummary, type BillingSubscriptionSummary, type BillingSubscriptionSummaryCurrent, type BillingSubscriptionSummaryFeature, type BillingSubscriptionSummaryPendingInvoice, type BillingSubscriptionSummaryPointsBalance, type BillingSubscriptionSummaryQuota, } from './composables/Billing/useBillingSubscriptionSummary';
|
|
6
9
|
export { useSubscriptionCheckout } from './composables/Billing/useSubscriptionCheckout';
|
package/dist/pay.js
CHANGED
|
@@ -1,11 +1,18 @@
|
|
|
1
|
-
import { P as
|
|
2
|
-
import { P as
|
|
3
|
-
import { u as
|
|
1
|
+
import { P as s, u as r, a as n, b as t, v as u } from "./PaySubscriptions-Bxh35MKo.js";
|
|
2
|
+
import { P as i, a as o, b as m, c as y, p as l, r as g } from "./PricingPlans-BRJPtzFK.js";
|
|
3
|
+
import { u as c, a as R } from "./useSubscriptionCheckout-DNLuRGmx.js";
|
|
4
4
|
export {
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
5
|
+
i as PAYMENT_RETURN_PATH,
|
|
6
|
+
s as PaySubscriptions,
|
|
7
|
+
o as PaymentReturnPage,
|
|
8
|
+
m as PricingFAQ,
|
|
9
|
+
y as PricingPlans,
|
|
10
|
+
l as parsePaymentReturnQuery,
|
|
11
|
+
g as resolvePaymentReturnTarget,
|
|
12
|
+
c as useBillingPlans,
|
|
9
13
|
r as useBillingSubscriptionSummary,
|
|
10
|
-
|
|
14
|
+
n as usePaymentPolling,
|
|
15
|
+
t as usePaymentReturnPage,
|
|
16
|
+
R as useSubscriptionCheckout,
|
|
17
|
+
u as verifyPaymentStatus
|
|
11
18
|
};
|
package/dist/referrer.js
CHANGED