@frontegg/types 6.99.0 → 6.100.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.
@@ -278,12 +278,16 @@ export interface AccountSettingsLocalization {
278
278
  */
279
279
  preview: string;
280
280
  /**
281
- * Custom login reset changes button label
281
+ * Custom login cancel button label
282
282
  */
283
- resetChanges: string;
283
+ cancel: string;
284
284
  /**
285
285
  * Custom login save button label
286
286
  */
287
287
  save: string;
288
+ /**
289
+ * Validation error for logo input
290
+ */
291
+ logoInputError: string;
288
292
  };
289
293
  }
@@ -179,6 +179,10 @@ export interface SsoLocalization {
179
179
  * Metadata File dropzone label
180
180
  */
181
181
  metadataFileLabel: string;
182
+ /**
183
+ * Metadata File dropzone label for sso guides
184
+ */
185
+ metadataFileLabelGuides: string;
182
186
  /**
183
187
  * Metadata File dropzone description text
184
188
  */
@@ -39,8 +39,14 @@ export interface PageThemeOptions extends BaseThemeOptions {
39
39
  cardListItemStyle?: ExtendedCSSProperties;
40
40
  };
41
41
  }
42
+ export interface CustomLoginStyles {
43
+ loginBoxPreview?: {
44
+ container?: ExtendedCSSProperties;
45
+ };
46
+ }
42
47
  export interface AccountPageThemeOptions extends PageThemeOptions {
43
48
  fieldsProperties?: AccountFieldsProperties;
49
+ customLogin?: CustomLoginStyles;
44
50
  }
45
51
  export interface SecurityPageThemeOptions extends PageThemeOptions {
46
52
  tabsProperties?: SecurityTabsProperties;
@@ -186,9 +192,13 @@ export interface AdminPortalCommonOptions extends BaseThemeOptions {
186
192
  */
187
193
  severityChipTheme?: SeverityChipTheme;
188
194
  /**
189
- * Option to customize admin portal severity chip
195
+ * Option to customize admin portal tree graph theme
190
196
  */
191
197
  treeGraphTheme?: TreeGraphTheme;
198
+ /**
199
+ * Option to customize admin portal drop zone
200
+ */
201
+ dropZone?: ExtendedCSSProperties;
192
202
  }
193
203
  export interface AdminPortalThemeOptions extends AdminPortalCommonOptions {
194
204
  themeName?: BasicThemeName;
@@ -210,4 +220,5 @@ export interface AdminPortalTheme extends BaseTheme {
210
220
  selectTheme: SelectTheme;
211
221
  severityChipTheme: SeverityChipTheme;
212
222
  treeGraphTheme: TreeGraphTheme;
223
+ dropZone: ExtendedCSSProperties;
213
224
  }
package/index.js CHANGED
@@ -1,4 +1,4 @@
1
- /** @license Frontegg v6.99.0
1
+ /** @license Frontegg v6.100.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 v6.99.0
1
+ /** @license Frontegg v6.100.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": "6.99.0",
3
+ "version": "6.100.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": "6.99.0",
9
+ "@frontegg/redux-store": "6.100.0-alpha.1",
10
10
  "csstype": "^3.0.9",
11
11
  "deepmerge": "^4.2.2"
12
12
  },