@stytch/vanilla-js 4.16.2 → 4.17.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 +15 -0
- package/dist/adminPortal/AdminPortalStyleConfig.d.ts +8 -0
- package/dist/adminPortal/components/RolesList.d.ts +12 -0
- package/dist/adminPortal/index.esm.js +2 -2
- package/dist/adminPortal/index.js +2 -2
- package/dist/adminPortal/memberManagement/AdminPortalMemberManagement.d.ts +4 -1
- package/dist/adminPortal/settings/AdminPortalOrgSettings.d.ts +2 -1
- package/dist/adminPortal/sso/AdminPortalSSO.d.ts +11 -1
- package/dist/adminPortal/sso/mountAdminPortalSSO.d.ts +1 -1
- package/dist/adminPortal/utils/useAdminPortalConfig.d.ts +3 -0
- package/dist/adminPortal/utils/useMutateScimConnection.d.ts +4 -0
- package/dist/adminPortal/utils/useRoleSortFn.d.ts +4 -0
- package/dist/adminPortal/utils/useScimConnection.d.ts +4 -0
- package/dist/adminPortal/utils/useScimConnectionGroups.d.ts +6 -0
- package/dist/adminPortal/utils/useSsoConnections.d.ts +3 -1
- 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 +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# @stytch/vanilla-js
|
|
2
2
|
|
|
3
|
+
## 4.17.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 127aa71a: Add `container.borderWidth` and `container.padding` to the Admin Portal style configuration
|
|
8
|
+
- bb2e68bc: Support custom role display names and descriptions in organization settings and SSO Admin Portal components
|
|
9
|
+
|
|
10
|
+
### Patch Changes
|
|
11
|
+
|
|
12
|
+
- e55e9eef: Honor more custom themed input and button properties
|
|
13
|
+
- 016aa6dd: Added SCIM groups to Admin portal Organization settings
|
|
14
|
+
- Updated dependencies [016aa6dd]
|
|
15
|
+
- Updated dependencies [2ba86715]
|
|
16
|
+
- @stytch/core@2.21.1
|
|
17
|
+
|
|
3
18
|
## 4.16.2
|
|
4
19
|
|
|
5
20
|
### Patch Changes
|
|
@@ -23,6 +23,14 @@ export interface AdminPortalStyleConfig {
|
|
|
23
23
|
* The width of the Admin Portal container.
|
|
24
24
|
*/
|
|
25
25
|
width: string;
|
|
26
|
+
/**
|
|
27
|
+
* The border width of the Admin Portal container.
|
|
28
|
+
*/
|
|
29
|
+
borderWidth: string | number;
|
|
30
|
+
/**
|
|
31
|
+
* The padding of the Admin Portal container.
|
|
32
|
+
*/
|
|
33
|
+
padding: string | number;
|
|
26
34
|
};
|
|
27
35
|
/**
|
|
28
36
|
* The configuration object for colors used in the Admin Portal.
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
interface RolesListProps {
|
|
3
|
+
roles: readonly {
|
|
4
|
+
role_id: string;
|
|
5
|
+
}[] | readonly string[];
|
|
6
|
+
/**
|
|
7
|
+
* Specifies whether to omit `stytch_member` if there are other roles present
|
|
8
|
+
*/
|
|
9
|
+
hideStytchMemberWithOtherRoles?: boolean;
|
|
10
|
+
}
|
|
11
|
+
export declare const RolesList: ({ hideStytchMemberWithOtherRoles, roles }: RolesListProps) => React.JSX.Element;
|
|
12
|
+
export {};
|