@frontegg/types 6.84.0-alpha.3 → 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.
@@ -0,0 +1,11 @@
1
+ export interface AllAccountsLocalization {
2
+ /**
3
+ * All accounts page strings
4
+ */
5
+ allAccounts: {
6
+ /**
7
+ * All accounts page title
8
+ */
9
+ pageTitle: string;
10
+ };
11
+ }
@@ -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 declare type AdminPortalLocalization = NavigationLocalization & ProfileLocalization & PersonalTokensLocalization & AuditLogsLocalization & ApiTokensLocalization & AccountSettingsLocalization & PrivacyLocalization & SecurityLocalization & RolesLocalization & SsoLocalization & UsersLocalization & UsersGroupsLocalization & WebhooksLocalization & SubscriptionsLocalization & AllUsersLocalization & ProvisioningLocalization;
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;
@@ -14,4 +14,5 @@ export * from './webhooks';
14
14
  export * from './subscriptions';
15
15
  export * from './allUsers';
16
16
  export * from './provisioning';
17
+ export * from './allAccounts';
17
18
  export {};
@@ -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
@@ -1,4 +1,4 @@
1
- /** @license Frontegg v6.84.0-alpha.3
1
+ /** @license Frontegg v6.85.0
2
2
  *
3
3
  * This source code is licensed under the MIT license found in the
4
4
  * LICENSE file in the root directory of this source tree.
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
@@ -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
@@ -1,4 +1,4 @@
1
- /** @license Frontegg v6.84.0-alpha.3
1
+ /** @license Frontegg v6.85.0
2
2
  *
3
3
  * This source code is licensed under the MIT license found in the
4
4
  * LICENSE file in the root directory of this source tree.
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@frontegg/types",
3
- "version": "6.84.0-alpha.3",
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.84.0-alpha.3",
9
+ "@frontegg/redux-store": "6.85.0",
10
10
  "csstype": "^3.0.9",
11
11
  "deepmerge": "^4.2.2"
12
12
  },