@stytch/react 18.2.0 → 18.3.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,11 @@
1
1
  # @stytch/react
2
2
 
3
+ ## 18.3.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 3183b459: Add `AdminPortalMemberManagement` component to `@stytch/react/b2b/adminPortal`
8
+
3
9
  ## 18.2.0
4
10
 
5
11
  ### Minor Changes
@@ -38,6 +38,14 @@ type AdminPortalOrgSettingsProps = AdminPortalOrgSettingsMountOptions;
38
38
  * See the {@link https://stytch.com/docs/b2b/sdks/javascript-sdk online reference}
39
39
  */
40
40
  declare const AdminPortalOrgSettings: (props: ExcludeInjectedOptions<AdminPortalOrgSettingsMountOptions>) => JSX.Element;
41
- export { AdminPortalSSO, AdminPortalOrgSettings };
41
+ type AdminPortalMemberManagementProps = AdminPortalComponentProps;
42
+ /**
43
+ * The Admin Portal member management UI component.
44
+ * This component must be rendered within a {@link StytchB2BProvider}.
45
+ *
46
+ * See the {@link https://stytch.com/docs/b2b/sdks/javascript-sdk online reference}
47
+ */
48
+ declare const AdminPortalMemberManagement: (props: ExcludeInjectedOptions<AdminPortalComponentProps>) => JSX.Element;
49
+ export { AdminPortalSSO, AdminPortalOrgSettings, AdminPortalMemberManagement };
42
50
  export { AdminPortalB2BProducts } from "@stytch/vanilla-js/b2b/adminPortal";
43
- export type { AdminPortalSSOProps, AdminPortalOrgSettingsProps };
51
+ export type { AdminPortalSSOProps, AdminPortalOrgSettingsProps, AdminPortalMemberManagementProps };
@@ -38,6 +38,14 @@ type AdminPortalOrgSettingsProps = AdminPortalOrgSettingsMountOptions;
38
38
  * See the {@link https://stytch.com/docs/b2b/sdks/javascript-sdk online reference}
39
39
  */
40
40
  declare const AdminPortalOrgSettings: (props: ExcludeInjectedOptions<AdminPortalOrgSettingsMountOptions>) => JSX.Element;
41
- export { AdminPortalSSO, AdminPortalOrgSettings };
41
+ type AdminPortalMemberManagementProps = AdminPortalComponentProps;
42
+ /**
43
+ * The Admin Portal member management UI component.
44
+ * This component must be rendered within a {@link StytchB2BProvider}.
45
+ *
46
+ * See the {@link https://stytch.com/docs/b2b/sdks/javascript-sdk online reference}
47
+ */
48
+ declare const AdminPortalMemberManagement: (props: ExcludeInjectedOptions<AdminPortalComponentProps>) => JSX.Element;
49
+ export { AdminPortalSSO, AdminPortalOrgSettings, AdminPortalMemberManagement };
42
50
  export { AdminPortalB2BProducts } from "@stytch/vanilla-js/b2b/adminPortal";
43
- export type { AdminPortalSSOProps, AdminPortalOrgSettingsProps };
51
+ export type { AdminPortalSSOProps, AdminPortalOrgSettingsProps, AdminPortalMemberManagementProps };