@frontegg/types 6.104.0 → 6.105.0-alpha.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.
@@ -82,7 +82,7 @@ export interface AllAccountsLocalization {
82
82
  * Load more button text
83
83
  * @default 'Load more'
84
84
  * */
85
- loadMoreText: string;
85
+ showMoreText: string;
86
86
  };
87
87
  /**
88
88
  * Create account dialog strings
@@ -203,6 +203,11 @@ export interface AllAccountsLocalization {
203
203
  * Single account view strings
204
204
  * */
205
205
  singleAccountView: {
206
+ /**
207
+ * Page title. Will be shown next to back button
208
+ * @default 'All Accounts'
209
+ */
210
+ pageTitle: string;
206
211
  /**
207
212
  * Create sub-account button text
208
213
  * @default 'Create Sub-Account'
@@ -229,10 +234,25 @@ export interface AllAccountsLocalization {
229
234
  * */
230
235
  subAccounts: string;
231
236
  /**
232
- * Assigned also to sub-accounts text
233
- * @default 'Assigned also to sub-account'
237
+ * Have access to subaccounts text
238
+ * @default 'have access to sub‒accounts'
239
+ * */
240
+ haveAccessToSubAccounts: string;
241
+ /**
242
+ * Edit account button text
243
+ * @default 'Edit'
244
+ * */
245
+ editAccountBtnText: string;
246
+ /**
247
+ * Users tab text
248
+ * @default 'Users'
234
249
  * */
235
- assignedAlsoToSubAccount: string;
250
+ usersTab: string;
251
+ /**
252
+ * Sub-accounts tab text
253
+ * @default 'Sub-Accounts'
254
+ * */
255
+ subAccountsTab: string;
236
256
  };
237
257
  /**
238
258
  * Single account users table strings
@@ -253,6 +273,96 @@ export interface AllAccountsLocalization {
253
273
  * @default 'Roles'
254
274
  * */
255
275
  rolesColumn: string;
276
+ /**
277
+ * Sub-accounts access column name
278
+ * @default 'Sub-Accounts Access'
279
+ * */
280
+ subAccountsAccessColumn: string;
281
+ /**
282
+ * Pending for approval status text
283
+ * @default 'Pending for approval'
284
+ * */
285
+ pendingApprovalStatus: string;
286
+ /**
287
+ * Pending for activation status text
288
+ * @default 'Pending for activation'
289
+ * */
290
+ pendingActivationStatus: string;
291
+ /**
292
+ * Me tooltip text
293
+ * @default 'Me'
294
+ */
295
+ meTooltip: string;
296
+ /**
297
+ * Edit user roles button text
298
+ * @default 'Edit user roles'
299
+ * */
300
+ editUserRolesBtnText: string;
301
+ /**
302
+ * Delete user button text
303
+ * @default 'Delete user'
304
+ * */
305
+ deleteUserBtnText: string;
306
+ };
307
+ /**
308
+ * Single account add users dialog strings
309
+ */
310
+ singleAccountView_AddUsersDialog: {
311
+ /**
312
+ * Add users dialog title
313
+ * @default 'Invite Users to {{accountName}}'
314
+ * */
315
+ title: string;
316
+ /**
317
+ * Email input label
318
+ * @default 'Email'
319
+ * */
320
+ emailInputLabel: string;
321
+ /**
322
+ * Email input placeholder
323
+ * @default 'Enter email'
324
+ */
325
+ emailInputPlaceholder: string;
326
+ /**
327
+ * Cancel button text
328
+ * @default 'Cancel'
329
+ */
330
+ cancelBtnText: string;
331
+ /**
332
+ * Invite button text
333
+ * @default 'Invite'
334
+ * */
335
+ inviteBtnText: string;
336
+ /**
337
+ * Email validation error text
338
+ * @default 'Email must be valid'
339
+ * */
340
+ emailValidationError: string;
341
+ /**
342
+ * Email is required error text
343
+ * @default 'Email is required'
344
+ * */
345
+ emailRequiredError: string;
346
+ /**
347
+ * Roles is required error text
348
+ * @default 'At least one role is required'
349
+ * */
350
+ rolesRequiredError: string;
351
+ /**
352
+ * Select role label
353
+ * @default 'Select Role'
354
+ * */
355
+ selectRoleLabel: string;
356
+ /**
357
+ * Multiple roles label
358
+ * @default 'Multiple Roles'
359
+ * */
360
+ multipleRolesLabel: string;
361
+ /**
362
+ * Give access to all sub-accounts label
363
+ * @default 'Also give access to existing and future sub-accounts of {{accountName}}'
364
+ * */
365
+ giveAccessToAllSubAccountsLabel: string;
256
366
  };
257
367
  /**
258
368
  * Single account sub-accounts table strings
package/index.js CHANGED
@@ -1,4 +1,4 @@
1
- /** @license Frontegg v6.104.0
1
+ /** @license Frontegg v6.105.0-alpha.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.104.0
1
+ /** @license Frontegg v6.105.0-alpha.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.104.0",
3
+ "version": "6.105.0-alpha.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.104.0",
9
+ "@frontegg/redux-store": "6.105.0-alpha.0",
10
10
  "csstype": "^3.0.9",
11
11
  "deepmerge": "^4.2.2"
12
12
  },