@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 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;