@frontegg/nextjs 6.7.5 → 6.7.6-alpha.3572609983
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/index.cjs.js +4 -3
- package/index.esm.js +4 -3
- package/package.json +2 -2
- package/CHANGELOG.md +0 -58
package/index.cjs.js
CHANGED
|
@@ -85,9 +85,9 @@ var Connector$1 = function Connector(_props) {
|
|
|
85
85
|
|
|
86
86
|
var router = _props.router,
|
|
87
87
|
appName = _props.appName,
|
|
88
|
-
hostedLoginBox = _props.hostedLoginBox
|
|
89
|
-
_props.customLoginBox
|
|
90
|
-
|
|
88
|
+
hostedLoginBox = _props.hostedLoginBox,
|
|
89
|
+
customLoginBox = _props.customLoginBox,
|
|
90
|
+
props = __rest(_props, ["router", "appName", "hostedLoginBox", "customLoginBox"]);
|
|
91
91
|
|
|
92
92
|
var isSSR = typeof window === 'undefined';
|
|
93
93
|
var baseName = (_a = props.basename) !== null && _a !== void 0 ? _a : router.basePath;
|
|
@@ -131,6 +131,7 @@ var Connector$1 = function Connector(_props) {
|
|
|
131
131
|
} catch (e) {
|
|
132
132
|
createdApp = js.initialize(Object.assign(Object.assign({}, props), {
|
|
133
133
|
hostedLoginBox: hostedLoginBox !== null && hostedLoginBox !== void 0 ? hostedLoginBox : false,
|
|
134
|
+
customLoginBox: customLoginBox !== null && customLoginBox !== void 0 ? customLoginBox : false,
|
|
134
135
|
basename: (_a = props.basename) !== null && _a !== void 0 ? _a : baseName,
|
|
135
136
|
authOptions: Object.assign(Object.assign({}, props.authOptions), {
|
|
136
137
|
onRedirectTo: onRedirectTo
|
package/index.esm.js
CHANGED
|
@@ -59,9 +59,9 @@ var Connector$1 = function Connector(_props) {
|
|
|
59
59
|
|
|
60
60
|
var router = _props.router,
|
|
61
61
|
appName = _props.appName,
|
|
62
|
-
hostedLoginBox = _props.hostedLoginBox
|
|
63
|
-
_props.customLoginBox
|
|
64
|
-
|
|
62
|
+
hostedLoginBox = _props.hostedLoginBox,
|
|
63
|
+
customLoginBox = _props.customLoginBox,
|
|
64
|
+
props = __rest(_props, ["router", "appName", "hostedLoginBox", "customLoginBox"]);
|
|
65
65
|
|
|
66
66
|
var isSSR = typeof window === 'undefined';
|
|
67
67
|
var baseName = (_a = props.basename) !== null && _a !== void 0 ? _a : router.basePath;
|
|
@@ -105,6 +105,7 @@ var Connector$1 = function Connector(_props) {
|
|
|
105
105
|
} catch (e) {
|
|
106
106
|
createdApp = initialize(Object.assign(Object.assign({}, props), {
|
|
107
107
|
hostedLoginBox: hostedLoginBox !== null && hostedLoginBox !== void 0 ? hostedLoginBox : false,
|
|
108
|
+
customLoginBox: customLoginBox !== null && customLoginBox !== void 0 ? customLoginBox : false,
|
|
108
109
|
basename: (_a = props.basename) !== null && _a !== void 0 ? _a : baseName,
|
|
109
110
|
authOptions: Object.assign(Object.assign({}, props.authOptions), {
|
|
110
111
|
onRedirectTo: onRedirectTo
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@frontegg/nextjs",
|
|
3
|
-
"version": "6.7.
|
|
3
|
+
"version": "6.7.6-alpha.3572609983",
|
|
4
4
|
"dependencies": {
|
|
5
5
|
"@frontegg/js": "6.46.0",
|
|
6
6
|
"@frontegg/react-hooks": "6.46.0",
|
|
@@ -16,4 +16,4 @@
|
|
|
16
16
|
"main": "./index.cjs.js",
|
|
17
17
|
"module": "./index.esm.js",
|
|
18
18
|
"typings": "./index.d.ts"
|
|
19
|
-
}
|
|
19
|
+
}
|
package/CHANGELOG.md
DELETED
|
@@ -1,58 +0,0 @@
|
|
|
1
|
-
# Change Log
|
|
2
|
-
|
|
3
|
-
## [6.7.5](https://github.com/frontegg/frontegg-nextjs/compare/v6.7.4...v6.7.5) (2022-11-28)
|
|
4
|
-
|
|
5
|
-
# v6.7.5
|
|
6
|
-
- Update hide fields API according to new security tabs naming
|
|
7
|
-
- Changed max length for secret fields to 100 characters
|
|
8
|
-
- Added support for customizing invite user dialog fields
|
|
9
|
-
- Added support for admin portal pre-defined theme options (dark, vivid, modern, and classic themes)
|
|
10
|
-
- Added support for customizing admin portal navigation hover color
|
|
11
|
-
- Fixed typo of Andorra country in countries dropdown
|
|
12
|
-
- Fixed select popup alignment issue
|
|
13
|
-
- Changed no local authentication feature to also hide the sign-up form when there is no local authentication option (use only social logins and SSO for signing up)
|
|
14
|
-
- Added mock for feature flags API for admin portal preview mode
|
|
15
|
-
- Fixed resend invitation and activate your account API calls
|
|
16
|
-
- Fixed creating custom webhook on the Admin Portal is sent with the event ID and not with the event Key
|
|
17
|
-
- Added support for customizing fields and tabs in the admin portal
|
|
18
|
-
|
|
19
|
-
### NextJS Wrapper 6.7.5:
|
|
20
|
-
- Updated next readme to include hosted login box integration
|
|
21
|
-
|
|
22
|
-
## [6.7.4](https://github.com/frontegg/frontegg-nextjs/compare/v6.7.3...v6.7.4) (2022-11-15)
|
|
23
|
-
|
|
24
|
-
- Fixed redirect to the app after signing up without forced email verification
|
|
25
|
-
- Fixed admin portal dark theme
|
|
26
|
-
- Added the ability to customize fields and tabs in the admin portal
|
|
27
|
-
- Fixed cleaning up error messages on sign up page when re-visiting the page
|
|
28
|
-
- Fixed resizing the login box when the logo is null
|
|
29
|
-
- Fix the ReCaptcha timeout issue
|
|
30
|
-
|
|
31
|
-
## [6.7.3](https://github.com/frontegg/frontegg-nextjs/compare/v6.7.2...v6.7.3) (2022-11-11)
|
|
32
|
-
|
|
33
|
-
- FR-9186 - support ssr with session and refresh token
|
|
34
|
-
- FR-9614 - Add support for innerThemeProvider for admin portal pages and tabs
|
|
35
|
-
|
|
36
|
-
- FR-9186 - fix pipeline
|
|
37
|
-
### AdminPortal 6.36.0:
|
|
38
|
-
-
|
|
39
|
-
|
|
40
|
-
### AdminPortal 6.35.0:
|
|
41
|
-
-
|
|
42
|
-
### AdminPortal 6.34.0:
|
|
43
|
-
-
|
|
44
|
-
|
|
45
|
-
### NextJS Wrapper 6.7.3:
|
|
46
|
-
- FR-9544 - remove console logs
|
|
47
|
-
- FR-9544 - Add support for keep session a live
|
|
48
|
-
- FR-9187 - split cookie if exceeds length of 4096
|
|
49
|
-
|
|
50
|
-
## [6.7.2](https://github.com/frontegg/frontegg-nextjs/compare/v6.7.1...v6.7.2) (2022-10-26)
|
|
51
|
-
|
|
52
|
-
### AdminPortal 6.34.0:
|
|
53
|
-
-
|
|
54
|
-
|
|
55
|
-
### NextJS Wrapper 6.7.2:
|
|
56
|
-
- FR-9186 - Fix Changelog
|
|
57
|
-
- FR-9186 - Generate changelog for pre-release / releases based on AdminPortal and LoginBox changes
|
|
58
|
-
|