@frontegg/types 7.83.0 → 7.84.0-alpha.1

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.
@@ -400,6 +400,18 @@ export interface UsersLocalization {
400
400
  * Next button text
401
401
  */
402
402
  nextButton: string;
403
+ /**
404
+ * Roles label
405
+ */
406
+ rolesLabel: string;
407
+ /**
408
+ * Roles placeholder
409
+ */
410
+ rolesPlaceholder: string;
411
+ /**
412
+ * Roles is required
413
+ */
414
+ rolesIsRequired: string;
403
415
  };
404
416
  /**
405
417
  * Invitation Link dialog strings
@@ -457,6 +469,10 @@ export interface UsersLocalization {
457
469
  * Days plural
458
470
  */
459
471
  days: string;
472
+ /**
473
+ * Roles label
474
+ */
475
+ rolesLabel: string;
460
476
  };
461
477
  /**
462
478
  * Edit user access time dialog strings
@@ -46,4 +46,8 @@ export interface PrivateOptions {
46
46
  * default: false
47
47
  */
48
48
  isMultiApp?: boolean;
49
+ /**
50
+ * Builder mode fiber update listener
51
+ */
52
+ onFiberUpdateListener?: () => void;
49
53
  }
@@ -85,4 +85,5 @@ export interface ThemePalette {
85
85
  switchButton: PaletteColor;
86
86
  divider: Color;
87
87
  loader: Color;
88
+ getContrastText?: () => any;
88
89
  }
package/index.js CHANGED
@@ -1,4 +1,4 @@
1
- /** @license Frontegg v7.83.0
1
+ /** @license Frontegg v7.84.0-alpha.1
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 v7.83.0
1
+ /** @license Frontegg v7.84.0-alpha.1
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": "7.83.0",
3
+ "version": "7.84.0-alpha.1",
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": "7.83.0",
9
+ "@frontegg/redux-store": "7.84.0-alpha.1",
10
10
  "csstype": "^3.0.9",
11
11
  "deepmerge": "^4.2.2"
12
12
  },