@stytch/vanilla-js 5.9.4 → 5.10.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/CHANGELOG.md CHANGED
@@ -1,5 +1,25 @@
1
1
  # @stytch/vanilla-js
2
2
 
3
+ ## 5.10.1
4
+
5
+ ### Patch Changes
6
+
7
+ - f9e1a9b: In Admin Portal member management, indicate when an organization requires MFA of all members
8
+
9
+ ## 5.10.0
10
+
11
+ ### Minor Changes
12
+
13
+ - 3ca3f83: Added the ability to sort RBAC roles in Admin Portal
14
+
15
+ ### Patch Changes
16
+
17
+ - f5334f1: Added the option to change sso_jit_provisioning in Admin Portal's Organization Settings
18
+ - 59fbc0c: Add OAuth Tenant settings to Admin Portal's Organization Settings
19
+ - 59fbc0c: Improve Admin Portal's Organization settings User onboarding UI
20
+ - Updated dependencies [5f9a5bf]
21
+ - @stytch/core@2.34.4
22
+
3
23
  ## 5.9.4
4
24
 
5
25
  ### 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;