@stytch/vanilla-js 4.16.2 → 4.17.1

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,30 @@
1
1
  # @stytch/vanilla-js
2
2
 
3
+ ## 4.17.1
4
+
5
+ ### Patch Changes
6
+
7
+ - c0cae756: Mark Admin Portal Organization UI config properties as optional
8
+ - 6701e5fa: Fix bug when organization has no active SCIM connections
9
+ - Updated dependencies [77b72734]
10
+ - Updated dependencies [6701e5fa]
11
+ - @stytch/core@2.21.2
12
+
13
+ ## 4.17.0
14
+
15
+ ### Minor Changes
16
+
17
+ - 127aa71a: Add `container.borderWidth` and `container.padding` to the Admin Portal style configuration
18
+ - bb2e68bc: Support custom role display names and descriptions in organization settings and SSO Admin Portal components
19
+
20
+ ### Patch Changes
21
+
22
+ - e55e9eef: Honor more custom themed input and button properties
23
+ - 016aa6dd: Added SCIM groups to Admin portal Organization settings
24
+ - Updated dependencies [016aa6dd]
25
+ - Updated dependencies [2ba86715]
26
+ - @stytch/core@2.21.1
27
+
3
28
  ## 4.16.2
4
29
 
5
30
  ### 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 {};