@slyxup/ui 2.4.0 → 2.5.1
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/LICENSE +21 -0
- package/README.md +116 -16
- package/dist/components/BillingPortal/BillingPortal.d.ts +18 -16
- package/dist/components/BillingPortal/BillingPortal.d.ts.map +1 -1
- package/dist/components/BillingPortal/BillingPortal.js +9 -55
- package/dist/components/BillingPortal/BillingPortal.js.map +1 -1
- package/dist/components/CopyField.d.ts +9 -0
- package/dist/components/CopyField.d.ts.map +1 -0
- package/dist/components/CopyField.js +29 -0
- package/dist/components/CopyField.js.map +1 -0
- package/dist/components/CurrentPlanCard/CurrentPlanCard.d.ts +30 -0
- package/dist/components/CurrentPlanCard/CurrentPlanCard.d.ts.map +1 -0
- package/dist/components/CurrentPlanCard/CurrentPlanCard.js +40 -0
- package/dist/components/CurrentPlanCard/CurrentPlanCard.js.map +1 -0
- package/dist/components/EmptyState.d.ts +10 -0
- package/dist/components/EmptyState.d.ts.map +1 -0
- package/dist/components/EmptyState.js +8 -0
- package/dist/components/EmptyState.js.map +1 -0
- package/dist/components/InvoicesTable/InvoicesTable.d.ts +20 -0
- package/dist/components/InvoicesTable/InvoicesTable.d.ts.map +1 -0
- package/dist/components/InvoicesTable/InvoicesTable.js +33 -0
- package/dist/components/InvoicesTable/InvoicesTable.js.map +1 -0
- package/dist/components/OtpInput.d.ts +15 -0
- package/dist/components/OtpInput.d.ts.map +1 -0
- package/dist/components/OtpInput.js +58 -0
- package/dist/components/OtpInput.js.map +1 -0
- package/dist/components/PasswordStrength.d.ts +11 -0
- package/dist/components/PasswordStrength.d.ts.map +1 -0
- package/dist/components/PasswordStrength.js +34 -0
- package/dist/components/PasswordStrength.js.map +1 -0
- package/dist/components/PlanCard/PlanCard.d.ts +29 -0
- package/dist/components/PlanCard/PlanCard.d.ts.map +1 -0
- package/dist/components/PlanCard/PlanCard.js +46 -0
- package/dist/components/PlanCard/PlanCard.js.map +1 -0
- package/dist/components/PricingTable/PricingTable.d.ts +18 -15
- package/dist/components/PricingTable/PricingTable.d.ts.map +1 -1
- package/dist/components/PricingTable/PricingTable.js +16 -47
- package/dist/components/PricingTable/PricingTable.js.map +1 -1
- package/dist/components/SignIn/SignIn.js +1 -1
- package/dist/components/SignIn/SignIn.js.map +1 -1
- package/dist/components/SignUp/SignUp.js +1 -1
- package/dist/components/SignUp/SignUp.js.map +1 -1
- package/dist/components/SubscriptionStatus/SubscriptionStatus.d.ts +12 -0
- package/dist/components/SubscriptionStatus/SubscriptionStatus.d.ts.map +1 -0
- package/dist/components/SubscriptionStatus/SubscriptionStatus.js +31 -0
- package/dist/components/SubscriptionStatus/SubscriptionStatus.js.map +1 -0
- package/dist/index.d.ts +13 -5
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +12 -3
- package/dist/index.js.map +1 -1
- package/dist/lib/scoped-theme.d.ts +10 -0
- package/dist/lib/scoped-theme.d.ts.map +1 -0
- package/dist/lib/scoped-theme.js +20 -0
- package/dist/lib/scoped-theme.js.map +1 -0
- package/dist/react/hooks/useBilling.d.ts +23 -1
- package/dist/react/hooks/useBilling.d.ts.map +1 -1
- package/dist/react/hooks/useBilling.js +43 -4
- package/dist/react/hooks/useBilling.js.map +1 -1
- package/dist/react/provider/SlyxUpProvider.js +1 -1
- package/dist/react/provider/SlyxUpProvider.js.map +1 -1
- package/dist/styles.d.ts +1 -1
- package/dist/styles.d.ts.map +1 -1
- package/dist/styles.js +91 -0
- package/dist/styles.js.map +1 -1
- package/dist/theme.d.ts.map +1 -1
- package/dist/theme.js.map +1 -1
- package/package.json +8 -8
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@slyxup/ui",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.5.1",
|
|
4
4
|
"description": "SlyxUp UI components — auth, billing, Paddle checkout",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -8,11 +8,6 @@
|
|
|
8
8
|
"files": [
|
|
9
9
|
"dist"
|
|
10
10
|
],
|
|
11
|
-
"scripts": {
|
|
12
|
-
"build": "tsc -p tsconfig.json",
|
|
13
|
-
"typecheck": "tsc --noEmit",
|
|
14
|
-
"test": "vitest run --passWithNoTests"
|
|
15
|
-
},
|
|
16
11
|
"repository": {
|
|
17
12
|
"type": "git",
|
|
18
13
|
"url": "git+https://github.com/slyxup/stack.git",
|
|
@@ -31,7 +26,7 @@
|
|
|
31
26
|
"react": "^18 || ^19"
|
|
32
27
|
},
|
|
33
28
|
"dependencies": {
|
|
34
|
-
"@slyxup/core": "
|
|
29
|
+
"@slyxup/core": "2.0.1"
|
|
35
30
|
},
|
|
36
31
|
"devDependencies": {
|
|
37
32
|
"@testing-library/dom": "^10.4.0",
|
|
@@ -41,5 +36,10 @@
|
|
|
41
36
|
"react": "^18.3.1",
|
|
42
37
|
"react-dom": "^18.3.1",
|
|
43
38
|
"vitest": "^4.1.11"
|
|
39
|
+
},
|
|
40
|
+
"scripts": {
|
|
41
|
+
"build": "tsc -p tsconfig.json",
|
|
42
|
+
"typecheck": "tsc --noEmit",
|
|
43
|
+
"test": "vitest run --passWithNoTests"
|
|
44
44
|
}
|
|
45
|
-
}
|
|
45
|
+
}
|