@stytch/react 18.1.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,17 @@
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
+
9
+ ## 18.2.0
10
+
11
+ ### Minor Changes
12
+
13
+ - 1ade8d93: Add `AdminPortalOrgSettings` component to `@stytch/react/b2b/adminPortal`
14
+
3
15
  ## 18.1.0
4
16
 
5
17
  ### Minor Changes
@@ -1,5 +1,5 @@
1
1
  /// <reference types="react" />
2
- import { AdminPortalStyleConfig } from "@stytch/vanilla-js/b2b/adminPortal";
2
+ import { AdminPortalStyleConfig, AdminPortalOrgSettingsMountOptions } from "@stytch/vanilla-js/b2b/adminPortal";
3
3
  import { StytchB2BHeadlessClient } from "@stytch/vanilla-js/b2b/headless";
4
4
  import { PartialDeep } from "type-fest";
5
5
  interface AdminPortalComponentProps {
@@ -30,5 +30,22 @@ type AdminPortalSSOProps = AdminPortalComponentProps;
30
30
  * See the {@link https://stytch.com/docs/b2b/sdks/javascript-sdk online reference}
31
31
  */
32
32
  declare const AdminPortalSSO: (props: ExcludeInjectedOptions<AdminPortalComponentProps>) => JSX.Element;
33
- export { AdminPortalSSO };
34
- export type { AdminPortalSSOProps };
33
+ type AdminPortalOrgSettingsProps = AdminPortalOrgSettingsMountOptions;
34
+ /**
35
+ * The Admin Portal Organization Settings UI component.
36
+ * This component must be rendered within a {@link StytchB2BProvider}.
37
+ *
38
+ * See the {@link https://stytch.com/docs/b2b/sdks/javascript-sdk online reference}
39
+ */
40
+ declare const AdminPortalOrgSettings: (props: ExcludeInjectedOptions<AdminPortalOrgSettingsMountOptions>) => JSX.Element;
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 };
50
+ export { AdminPortalB2BProducts } from "@stytch/vanilla-js/b2b/adminPortal";
51
+ export type { AdminPortalSSOProps, AdminPortalOrgSettingsProps, AdminPortalMemberManagementProps };
@@ -1,5 +1,5 @@
1
1
  /// <reference types="react" />
2
- import { AdminPortalStyleConfig } from "@stytch/vanilla-js/b2b/adminPortal";
2
+ import { AdminPortalStyleConfig, AdminPortalOrgSettingsMountOptions } from "@stytch/vanilla-js/b2b/adminPortal";
3
3
  import { StytchB2BHeadlessClient } from "@stytch/vanilla-js/b2b/headless";
4
4
  import { PartialDeep } from "type-fest";
5
5
  interface AdminPortalComponentProps {
@@ -30,5 +30,22 @@ type AdminPortalSSOProps = AdminPortalComponentProps;
30
30
  * See the {@link https://stytch.com/docs/b2b/sdks/javascript-sdk online reference}
31
31
  */
32
32
  declare const AdminPortalSSO: (props: ExcludeInjectedOptions<AdminPortalComponentProps>) => JSX.Element;
33
- export { AdminPortalSSO };
34
- export type { AdminPortalSSOProps };
33
+ type AdminPortalOrgSettingsProps = AdminPortalOrgSettingsMountOptions;
34
+ /**
35
+ * The Admin Portal Organization Settings UI component.
36
+ * This component must be rendered within a {@link StytchB2BProvider}.
37
+ *
38
+ * See the {@link https://stytch.com/docs/b2b/sdks/javascript-sdk online reference}
39
+ */
40
+ declare const AdminPortalOrgSettings: (props: ExcludeInjectedOptions<AdminPortalOrgSettingsMountOptions>) => JSX.Element;
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 };
50
+ export { AdminPortalB2BProducts } from "@stytch/vanilla-js/b2b/adminPortal";
51
+ export type { AdminPortalSSOProps, AdminPortalOrgSettingsProps, AdminPortalMemberManagementProps };