@stytch/vanilla-js 5.2.0 → 5.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,24 @@
1
1
  # @stytch/vanilla-js
2
2
 
3
+ ## 5.3.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 160124c9: Add Admin Portal SCIM UI. The Admin Portal SCIM UI can be rendered using the `mountAdminPortalSCIM` function from `@stytch/vanilla-js/b2b/adminPortal`.
8
+
9
+ ### Patch Changes
10
+
11
+ - 37c38c09: Added focus/hover to search bar in Admin Portal
12
+ - ee18f0c9: Improved navigation in Admin Portal
13
+ - fb578f50: Improved UX in Admin Portal
14
+ - 72314f6d: Improved UX for Admin Portal's Organization Settings
15
+ - 32da5166: Left align Add Role assignment button in Admin Portal Org settings
16
+ - 59e04104: Admin Portal buttons are now more consistent
17
+ - 2d4fe0e2: Admin Portal's improved Switch component
18
+ - d4cb6cbe: Admin Portal tables now use fixed widths
19
+ - 81c4138b: Warn members before they remove their own ability to assign roles in Admin Portal
20
+ - 4acd968d: Reordered components in Admin Portal Member Management details
21
+
3
22
  ## 5.2.0
4
23
 
5
24
  ### Minor Changes
@@ -9,10 +28,16 @@
9
28
  ### Patch Changes
10
29
 
11
30
  - ac74c5e7: Handle discovered organizations supporting JIT provisioning by OAuth tenant
12
- - Updated dependencies [b21b3fe6]
13
31
  - Updated dependencies [ac74c5e7]
14
32
  - @stytch/core@2.26.0
15
33
 
34
+ ## 5.1.2
35
+
36
+ ### Patch Changes
37
+
38
+ - Updated dependencies [b21b3fe6]
39
+ - @stytch/core@2.25.1
40
+
16
41
  ## 5.1.1
17
42
 
18
43
  ### Patch Changes
@@ -0,0 +1,6 @@
1
+ import { Field } from '../scim/scimInfo';
2
+ import React from 'react';
3
+ export declare const SCIMFields: <T extends string>({ fields, connection, }: {
4
+ fields: Field<T>[] | undefined;
5
+ connection: Record<T, string>;
6
+ }) => React.JSX.Element;
@@ -1,8 +1,10 @@
1
1
  export { mountAdminPortalSSO } from './sso/mountAdminPortalSSO';
2
2
  export { mountAdminPortalOrgSettings } from './settings/mountAdminPortalOrgSettings';
3
3
  export { mountAdminPortalMemberManagement } from './memberManagement/mountAdminPortalMemberManagement';
4
+ export { mountAdminPortalSCIM } from './scim/mountAdminPortalSCIM';
4
5
  export type { AdminPortalSSOMountOptions } from './sso/mountAdminPortalSSO';
5
6
  export type { AdminPortalOrgSettingsMountOptions } from './settings/mountAdminPortalOrgSettings';
6
7
  export { AdminPortalB2BProducts } from './settings/AdminPortalOrgSettings';
7
8
  export type { AdminPortalMemberManagementMountOptions } from './memberManagement/mountAdminPortalMemberManagement';
9
+ export type { AdminPortalSCIMMountOptions } from './scim/mountAdminPortalSCIM';
8
10
  export type { AdminPortalStyleConfig } from './AdminPortalStyleConfig';