@frontegg/types 6.111.0 → 6.112.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.
@@ -13,11 +13,6 @@ export interface AllAccountsLocalization {
13
13
  * @default 'Create New Account'
14
14
  */
15
15
  createNewAccount: string;
16
- /**
17
- * Search input placeholder
18
- * @default 'Search for any text'
19
- * */
20
- searchPlaceholder: string;
21
16
  /**
22
17
  * Switch view toggle button text
23
18
  * @default 'Table'
@@ -28,6 +23,17 @@ export interface AllAccountsLocalization {
28
23
  * @default 'Graph'
29
24
  * */
30
25
  toggleTextGraph: string;
26
+ /**
27
+ * Search account input placeholder
28
+ * also used in single account view
29
+ * @default 'Search by account name'
30
+ * */
31
+ searchAccountPlaceholder: string;
32
+ /**
33
+ * No accounts found text
34
+ * @default 'No account found'
35
+ */
36
+ noAccountFound: string;
31
37
  };
32
38
  /**
33
39
  * All accounts table strings
@@ -218,11 +224,6 @@ export interface AllAccountsLocalization {
218
224
  * @default 'Invite Users'
219
225
  * */
220
226
  inviteUsers: string;
221
- /**
222
- * Search input placeholder
223
- * @default 'Search for any text'
224
- * */
225
- searchPlaceholder: string;
226
227
  /**
227
228
  * Users count text
228
229
  * @default 'Users'
@@ -258,6 +259,11 @@ export interface AllAccountsLocalization {
258
259
  * @default 'Sub-Accounts'
259
260
  * */
260
261
  subAccountsTab: string;
262
+ /**
263
+ * Search user input placeholder
264
+ * @default 'Search by email'
265
+ */
266
+ searchUserPlaceholder: string;
261
267
  };
262
268
  /**
263
269
  * Single account users table strings
package/index.js CHANGED
@@ -1,4 +1,4 @@
1
- /** @license Frontegg v6.111.0
1
+ /** @license Frontegg v6.112.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/node/index.js CHANGED
@@ -1,4 +1,4 @@
1
- /** @license Frontegg v6.111.0
1
+ /** @license Frontegg v6.112.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.111.0",
3
+ "version": "6.112.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.111.0",
9
+ "@frontegg/redux-store": "6.112.0",
10
10
  "csstype": "^3.0.9",
11
11
  "deepmerge": "^4.2.2"
12
12
  },