@stytch/vanilla-js 5.5.3 → 5.6.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,23 @@
1
1
  # @stytch/vanilla-js
2
2
 
3
+ ## 5.6.0
4
+
5
+ ### Minor Changes
6
+
7
+ - e0e84646: Adds support for GitHub as a B2B OAuth provider.
8
+
9
+ ### Patch Changes
10
+
11
+ - 7b85ee62: Admin Portal's Okta SAML SSO configuration can now be manually configured
12
+ - Updated dependencies [e0e84646]
13
+ - @stytch/core@2.31.0
14
+
15
+ ## 5.5.4
16
+
17
+ ### Patch Changes
18
+
19
+ - 42982634: Admin Portal's SSO configuration page now has improved IdP specific instructions.
20
+
3
21
  ## 5.5.3
4
22
 
5
23
  ### Patch Changes
@@ -0,0 +1,6 @@
1
+ import React from 'react';
2
+ export declare const IdpField: ({ title, value, isCopyable }: {
3
+ title: string;
4
+ value: string;
5
+ isCopyable?: boolean | undefined;
6
+ }) => React.JSX.Element;
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ export declare const Instruction: ({ children }: {
3
+ children: React.ReactNode;
4
+ }) => React.JSX.Element;
@@ -0,0 +1,6 @@
1
+ import React from 'react';
2
+ interface InstructionSetProps {
3
+ children: React.ReactNode;
4
+ }
5
+ export declare const InstructionSet: ({ children }: InstructionSetProps) => React.JSX.Element;
6
+ export {};
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ export declare const PaddedContainer: ({ children }: {
3
+ children: React.ReactNode;
4
+ }) => React.JSX.Element;