@stytch/vanilla-js 5.9.3 → 5.10.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/CHANGELOG.md +22 -0
- package/dist/adminPortal/components/SettingsSection.d.ts +2 -1
- package/dist/adminPortal/index.esm.js +2 -2
- package/dist/adminPortal/index.js +2 -2
- package/dist/adminPortal/settings/{OrgSettingsEmailDomainsSection.d.ts → OrgSettingsUserOnboardingSection.d.ts} +1 -1
- package/dist/adminPortal/utils/AdminPortalUIConfigRoleDisplayProvider.d.ts +10 -0
- package/dist/adminPortal/utils/getDisplay.d.ts +3 -0
- package/dist/adminPortal/utils/oAuthProviders.d.ts +2 -0
- package/dist/adminPortal/utils/useConnections.d.ts +11 -0
- package/dist/adminPortal/utils/useGetRoleSortOrder.d.ts +2 -0
- package/dist/adminPortal/utils/useRbac.d.ts +2 -0
- package/dist/adminPortal/utils/useRoleSortFn.d.ts +4 -5
- package/dist/b2b/index.esm.js +3 -3
- package/dist/b2b/index.headless.esm.js +3 -3
- package/dist/b2b/index.headless.js +2 -2
- package/dist/b2b/index.js +2 -2
- package/dist/{extractErrorMessage-Ctw0yaGs.js → extractErrorMessage-BThIxj3y.js} +1 -1
- package/dist/{extractErrorMessage-D81ze9XY.js → extractErrorMessage-C3sgO9Ia.js} +1 -1
- package/dist/index.esm.js +1 -1
- package/dist/index.headless.esm.js +56 -52
- package/dist/index.headless.js +56 -52
- package/dist/index.js +1 -1
- package/dist/{internal-C-jiPhWR.js → internal-Bq-MGoJK.js} +96 -96
- package/dist/{internal-CNzve7Hh.js → internal-DhpbqDn_.js} +96 -96
- package/dist/utils/uniqueValuesSplitOnSpaces.d.ts +3 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,27 @@
|
|
|
1
1
|
# @stytch/vanilla-js
|
|
2
2
|
|
|
3
|
+
## 5.10.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 3ca3f83: Added the ability to sort RBAC roles in Admin Portal
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- f5334f1: Added the option to change sso_jit_provisioning in Admin Portal's Organization Settings
|
|
12
|
+
- 59fbc0c: Add OAuth Tenant settings to Admin Portal's Organization Settings
|
|
13
|
+
- 59fbc0c: Improve Admin Portal's Organization settings User onboarding UI
|
|
14
|
+
- Updated dependencies [5f9a5bf]
|
|
15
|
+
- @stytch/core@2.34.4
|
|
16
|
+
|
|
17
|
+
## 5.9.4
|
|
18
|
+
|
|
19
|
+
### Patch Changes
|
|
20
|
+
|
|
21
|
+
- 67cbee6a: Add DFPPA to OTP Email Login Or Create
|
|
22
|
+
- Updated dependencies [67cbee6a]
|
|
23
|
+
- @stytch/core@2.34.3
|
|
24
|
+
|
|
3
25
|
## 5.9.3
|
|
4
26
|
|
|
5
27
|
### Patch Changes
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
export declare const SettingsSection: ({ children, title, tooltipText, }: {
|
|
2
|
+
export declare const SettingsSection: ({ children, title, tooltipText, titleVariant, }: {
|
|
3
3
|
children: React.ReactNode;
|
|
4
4
|
title: React.ReactNode;
|
|
5
5
|
tooltipText?: string | undefined;
|
|
6
|
+
titleVariant?: "h4" | "body2" | undefined;
|
|
6
7
|
}) => React.JSX.Element;
|