@frontegg/types 6.84.0 → 6.85.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/Localizations/AdminPortalLocalizations/allAccounts.d.ts +11 -0
- package/Localizations/AdminPortalLocalizations/allAccounts.js +1 -0
- package/Localizations/AdminPortalLocalizations/index.d.ts +3 -1
- package/Localizations/AdminPortalLocalizations/index.js +1 -0
- package/Localizations/LoginBoxLocalization/signup.d.ts +8 -0
- package/ThemeOptions/LoginBoxTheme/SignupPageTheme.d.ts +5 -0
- package/index.js +1 -1
- package/node/Localizations/AdminPortalLocalizations/allAccounts.js +5 -0
- package/node/Localizations/AdminPortalLocalizations/index.js +11 -0
- package/node/index.js +1 -1
- package/package.json +2 -2
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -14,6 +14,7 @@ import { SubscriptionsLocalization } from './subscriptions';
|
|
|
14
14
|
import { AllUsersLocalization } from './allUsers';
|
|
15
15
|
import { ProvisioningLocalization } from './provisioning';
|
|
16
16
|
import { UsersGroupsLocalization } from './groups';
|
|
17
|
+
import { AllAccountsLocalization } from './allAccounts';
|
|
17
18
|
export * from './navigation';
|
|
18
19
|
export * from './profile';
|
|
19
20
|
export * from './personalTokens';
|
|
@@ -30,4 +31,5 @@ export * from './webhooks';
|
|
|
30
31
|
export * from './subscriptions';
|
|
31
32
|
export * from './allUsers';
|
|
32
33
|
export * from './provisioning';
|
|
33
|
-
export
|
|
34
|
+
export * from './allAccounts';
|
|
35
|
+
export declare type AdminPortalLocalization = NavigationLocalization & ProfileLocalization & PersonalTokensLocalization & AuditLogsLocalization & ApiTokensLocalization & AccountSettingsLocalization & PrivacyLocalization & SecurityLocalization & RolesLocalization & SsoLocalization & UsersLocalization & UsersGroupsLocalization & WebhooksLocalization & SubscriptionsLocalization & AllUsersLocalization & ProvisioningLocalization & AllAccountsLocalization;
|
|
@@ -174,6 +174,14 @@ export interface SignupLocalizationOptions {
|
|
|
174
174
|
testimonialComponent?: TestimonialComponentLocalization;
|
|
175
175
|
titleDescriptionComponent?: TitleDescriptionComponentLocalization;
|
|
176
176
|
};
|
|
177
|
+
firstNameInputLabel: string;
|
|
178
|
+
firstNameInputPlaceholder: string;
|
|
179
|
+
firstNameIsRequired: string;
|
|
180
|
+
firstNameMinLengthIs3: string;
|
|
181
|
+
lastNameInputLabel: string;
|
|
182
|
+
lastNameInputPlaceholder: string;
|
|
183
|
+
lastNameIsRequired: string;
|
|
184
|
+
lastNameMinLengthIs3: string;
|
|
177
185
|
}
|
|
178
186
|
export interface SignupLocalization {
|
|
179
187
|
/**
|
|
@@ -82,6 +82,11 @@ export interface SignupPageComponentsTheme {
|
|
|
82
82
|
passwordMeter?: {
|
|
83
83
|
enabled?: boolean;
|
|
84
84
|
};
|
|
85
|
+
/**
|
|
86
|
+
* use this flag if you want to separate full name to first and last name.
|
|
87
|
+
* by default: false.
|
|
88
|
+
*/
|
|
89
|
+
splitFullName?: boolean;
|
|
85
90
|
}
|
|
86
91
|
export interface SignupPageThemeOptions extends LoginBoxCommonThemeOptions, SignupPageComponentsTheme {
|
|
87
92
|
}
|
package/index.js
CHANGED
|
@@ -178,4 +178,15 @@ Object.keys(_provisioning).forEach(function (key) {
|
|
|
178
178
|
return _provisioning[key];
|
|
179
179
|
}
|
|
180
180
|
});
|
|
181
|
+
});
|
|
182
|
+
var _allAccounts = require("./allAccounts");
|
|
183
|
+
Object.keys(_allAccounts).forEach(function (key) {
|
|
184
|
+
if (key === "default" || key === "__esModule") return;
|
|
185
|
+
if (key in exports && exports[key] === _allAccounts[key]) return;
|
|
186
|
+
Object.defineProperty(exports, key, {
|
|
187
|
+
enumerable: true,
|
|
188
|
+
get: function () {
|
|
189
|
+
return _allAccounts[key];
|
|
190
|
+
}
|
|
191
|
+
});
|
|
181
192
|
});
|
package/node/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@frontegg/types",
|
|
3
|
-
"version": "6.
|
|
3
|
+
"version": "6.85.0",
|
|
4
4
|
"main": "./node/index.js",
|
|
5
5
|
"author": "Frontegg LTD",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"dependencies": {
|
|
8
8
|
"@babel/runtime": "^7.18.6",
|
|
9
|
-
"@frontegg/redux-store": "6.
|
|
9
|
+
"@frontegg/redux-store": "6.85.0",
|
|
10
10
|
"csstype": "^3.0.9",
|
|
11
11
|
"deepmerge": "^4.2.2"
|
|
12
12
|
},
|