@authowl/react 0.18.10 → 0.19.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.
- package/dist/index.cjs +1434 -1280
- package/dist/index.d.cts +56 -3
- package/dist/index.d.ts +56 -3
- package/dist/index.js +1420 -1265
- package/dist/styles.css +4 -0
- package/package.json +2 -2
package/dist/styles.css
CHANGED
|
@@ -284,6 +284,10 @@
|
|
|
284
284
|
.ba-organization-menu-item small { overflow: hidden; color: var(--ba-muted); text-overflow: ellipsis; white-space: nowrap; }
|
|
285
285
|
.ba-organization-menu-actions { margin-top: 6px; padding-top: 6px; border-top: 1px solid var(--ba-divider); }
|
|
286
286
|
.ba-organization-menu-actions .ba-menu-item { padding: 9px; }
|
|
287
|
+
.ba-invitation-overlay { position: fixed; inset: 0; z-index: 1100; display: grid; place-items: center; padding: 24px; background: var(--ba-overlay); }
|
|
288
|
+
.ba-invitation-panel { width: min(420px, 100%); padding: 24px; border: 1px solid var(--ba-border); border-radius: 14px; background: var(--ba-surface); color: var(--ba-fg); box-shadow: 0 24px 70px rgba(0,0,0,0.3); }
|
|
289
|
+
.ba-invitation-panel .ba-title { margin: 0 0 8px; }
|
|
290
|
+
.ba-invitation-actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
|
|
287
291
|
.ba-organization-overlay { position: fixed; inset: 0; z-index: 1100; display: grid; place-items: center; padding: 24px; background: var(--ba-overlay); }
|
|
288
292
|
.ba-organization-modal { width: min(920px, 100%); max-height: min(820px, calc(100dvh - 48px)); overflow: auto; border: 1px solid var(--ba-border); border-radius: 14px; background: var(--ba-surface); color: var(--ba-fg); box-shadow: 0 24px 70px rgba(0,0,0,0.3); }
|
|
289
293
|
.ba-organization-modal-header { position: sticky; top: 0; z-index: 3; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 18px 22px; border-bottom: 1px solid var(--ba-divider); background: var(--ba-surface); }
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@authowl/react",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.19.0",
|
|
4
4
|
"description": "React provider, hooks, and drop-in components for AuthOwl, the multi-tenant auth SaaS.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"publishConfig": {
|
|
@@ -47,7 +47,7 @@
|
|
|
47
47
|
"LICENSE"
|
|
48
48
|
],
|
|
49
49
|
"dependencies": {
|
|
50
|
-
"@authowl/core": "0.
|
|
50
|
+
"@authowl/core": "0.16.0"
|
|
51
51
|
},
|
|
52
52
|
"peerDependencies": {
|
|
53
53
|
"react": ">=18",
|