autumn-js 0.1.38 → 0.1.40
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/libraries/backend/better-auth.d.mts +2 -1
- package/dist/libraries/backend/better-auth.d.ts +2 -1
- package/dist/libraries/react/{chunk-DEPJ74S4.mjs → chunk-GGJKNVL6.mjs} +27 -26
- package/dist/libraries/react/components/checkout-dialog/checkout-dialog-synced.css +6 -0
- package/dist/libraries/react/components/checkout-dialog/checkout-dialog-synced.d.mts +1 -1
- package/dist/libraries/react/components/checkout-dialog/checkout-dialog-synced.d.ts +1 -1
- package/dist/libraries/react/components/checkout-dialog/checkout-dialog-synced.js +4894 -4891
- package/dist/libraries/react/components/checkout-dialog/checkout-dialog-synced.mjs +11 -11
- package/dist/libraries/react/components/paywall-dialog/paywall-dialog-synced.css +6 -0
- package/dist/libraries/react/components/paywall-dialog/paywall-dialog-synced.js +94 -94
- package/dist/libraries/react/components/paywall-dialog/paywall-dialog-synced.mjs +11 -11
- package/dist/libraries/react/components/pricing-table/pricing-table-synced.css +6 -0
- package/dist/libraries/react/components/pricing-table/pricing-table-synced.js +543 -540
- package/dist/libraries/react/components/pricing-table/pricing-table-synced.mjs +11 -11
- package/dist/libraries/react/components/ui/dialog.mjs +2 -2
- package/dist/libraries/react/components/ui/popover.mjs +2 -2
- package/dist/libraries/react/index.js +544 -541
- package/dist/libraries/react/index.mjs +545 -542
- package/dist/styles/global.css +6 -0
- package/package.json +2 -2
- package/dist/libraries/react/{chunk-YCHPTRJA.mjs → chunk-I274Z7T2.mjs} +3 -3
- package/dist/libraries/react/{chunk-47KEC6LH.mjs → chunk-MHAXHLX4.mjs} +3 -3
package/dist/styles/global.css
CHANGED
|
@@ -590,6 +590,9 @@ video:where(.au-root, .au-root *) {
|
|
|
590
590
|
.au-animate-spin {
|
|
591
591
|
animation: au-spin 1s linear infinite;
|
|
592
592
|
}
|
|
593
|
+
.au-cursor-not-allowed {
|
|
594
|
+
cursor: not-allowed;
|
|
595
|
+
}
|
|
593
596
|
.au-cursor-pointer {
|
|
594
597
|
cursor: pointer;
|
|
595
598
|
}
|
|
@@ -925,6 +928,9 @@ video:where(.au-root, .au-root *) {
|
|
|
925
928
|
.au-opacity-70 {
|
|
926
929
|
opacity: 0.7;
|
|
927
930
|
}
|
|
931
|
+
.au-opacity-80 {
|
|
932
|
+
opacity: 0.8;
|
|
933
|
+
}
|
|
928
934
|
.au-shadow {
|
|
929
935
|
--tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
|
|
930
936
|
--tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "autumn-js",
|
|
3
3
|
"description": "Autumn JS Library",
|
|
4
|
-
"version": "0.1.
|
|
4
|
+
"version": "0.1.40",
|
|
5
5
|
"repository": "github:useautumn/autumn-js",
|
|
6
6
|
"homepage": "https://docs.useautumn.com",
|
|
7
7
|
"main": "./dist/sdk/index.js",
|
|
@@ -143,7 +143,7 @@
|
|
|
143
143
|
"typescript": "^5.8.3"
|
|
144
144
|
},
|
|
145
145
|
"peerDependencies": {
|
|
146
|
-
"better-auth": "^1.3.
|
|
146
|
+
"better-auth": "^1.3.17",
|
|
147
147
|
"better-call": "^1.0.12",
|
|
148
148
|
"convex": "^1.25.4"
|
|
149
149
|
},
|
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
|
|
3
|
+
import {
|
|
4
|
+
useSize
|
|
5
|
+
} from "./chunk-QEWVBDWJ.mjs";
|
|
3
6
|
import {
|
|
4
7
|
Combination_default,
|
|
5
8
|
DismissableLayer,
|
|
@@ -13,9 +16,6 @@ import {
|
|
|
13
16
|
Presence,
|
|
14
17
|
useId
|
|
15
18
|
} from "./chunk-5TLRC3ED.mjs";
|
|
16
|
-
import {
|
|
17
|
-
useSize
|
|
18
|
-
} from "./chunk-QEWVBDWJ.mjs";
|
|
19
19
|
import {
|
|
20
20
|
Primitive,
|
|
21
21
|
composeEventHandlers,
|
|
@@ -1,8 +1,5 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
|
|
3
|
-
import {
|
|
4
|
-
X
|
|
5
|
-
} from "./chunk-2OHJ6PS6.mjs";
|
|
6
3
|
import {
|
|
7
4
|
Combination_default,
|
|
8
5
|
DismissableLayer,
|
|
@@ -11,6 +8,9 @@ import {
|
|
|
11
8
|
hideOthers,
|
|
12
9
|
useFocusGuards
|
|
13
10
|
} from "./chunk-4QVAJKUF.mjs";
|
|
11
|
+
import {
|
|
12
|
+
X
|
|
13
|
+
} from "./chunk-2OHJ6PS6.mjs";
|
|
14
14
|
import {
|
|
15
15
|
Presence,
|
|
16
16
|
useId
|