@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 +26 -1
- package/dist/adminPortal/components/ScimFields.d.ts +6 -0
- package/dist/adminPortal/index.d.ts +2 -0
- package/dist/adminPortal/index.esm.js +2 -2
- package/dist/adminPortal/index.js +2 -2
- package/dist/adminPortal/scim/AdminPortalSCIM.d.ts +18 -0
- package/dist/adminPortal/scim/SCIMConnectionDetailsScreen.d.ts +5 -0
- package/dist/adminPortal/scim/SCIMNewConnectionConfigureScreen.d.ts +5 -0
- package/dist/adminPortal/scim/SCIMNewConnectionScreen.d.ts +2 -0
- package/dist/adminPortal/scim/SCIMRouter.d.ts +45 -0
- package/dist/adminPortal/scim/SCIMScreen.d.ts +2 -0
- package/dist/adminPortal/scim/mountAdminPortalSCIM.d.ts +15 -0
- package/dist/adminPortal/scim/scimInfo.d.ts +175 -0
- package/dist/adminPortal/shared/components/types.d.ts +1 -0
- package/dist/adminPortal/utils/useScimConnection.d.ts +2 -2
- package/dist/b2b/index.headless.esm.js +1 -1
- package/dist/b2b/index.headless.js +1 -1
- package/dist/index.esm.js +1 -1
- package/dist/index.headless.esm.js +1 -1
- package/dist/index.headless.js +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
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
|
|
@@ -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';
|