@frontegg/types 7.40.0 → 7.41.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.
- package/FronteggAppOptions.d.ts +4 -0
- package/Localizations/AdminPortalLocalizations/profile.d.ts +1 -0
- package/Localizations/AdminPortalLocalizations/users.d.ts +4 -0
- package/ThemeOptions/LoginBoxTheme/LoginBoxCommon.d.ts +2 -1
- package/index.js +1 -1
- package/node/index.js +1 -1
- package/package.json +2 -2
package/FronteggAppOptions.d.ts
CHANGED
|
@@ -81,6 +81,10 @@ export interface FronteggAppOptions extends FronteggStoreOptions, PrivateOptions
|
|
|
81
81
|
* Option to override the CDN url for loading Frontegg UI elements
|
|
82
82
|
*/
|
|
83
83
|
cdnUrl?: string;
|
|
84
|
+
/**
|
|
85
|
+
* Option to override the Assets url for loading Frontegg UI elements
|
|
86
|
+
*/
|
|
87
|
+
assetsUrl?: string;
|
|
84
88
|
/**
|
|
85
89
|
* Option to override the sso guides CDN url
|
|
86
90
|
*/
|
|
@@ -312,6 +312,10 @@ export interface UsersLocalization {
|
|
|
312
312
|
* Error message displayed if phone is not valid phone number
|
|
313
313
|
*/
|
|
314
314
|
phoneIsInvalid: string;
|
|
315
|
+
/**
|
|
316
|
+
* Phone number input tooltip for extra information
|
|
317
|
+
*/
|
|
318
|
+
phoneTooltip: string;
|
|
315
319
|
/**
|
|
316
320
|
* User roles select input label
|
|
317
321
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Color, ExtendedCSSProperties } from '../../Common';
|
|
2
2
|
import { BaseTheme, BaseThemeOptions, SocialLoginsThemeOptions } from '../index';
|
|
3
|
-
import {
|
|
3
|
+
import { ButtonThemeOptions, CustomComponent, ILogosComponent, InputThemeOptions, ITestimonialComponent, SideElement } from '../ComponentsOptions';
|
|
4
4
|
/**
|
|
5
5
|
* @RootElement
|
|
6
6
|
* - @WrapperElement
|
|
@@ -35,6 +35,7 @@ interface LogoComponent {
|
|
|
35
35
|
}
|
|
36
36
|
export interface PhoneNumberOptions {
|
|
37
37
|
dropdownStyle?: ExtendedCSSProperties;
|
|
38
|
+
searchBarStyle?: ExtendedCSSProperties;
|
|
38
39
|
dropdownItemStyle?: ExtendedCSSProperties;
|
|
39
40
|
selectArrowStyle?: ExtendedCSSProperties;
|
|
40
41
|
}
|
package/index.js
CHANGED
package/node/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@frontegg/types",
|
|
3
|
-
"version": "7.
|
|
3
|
+
"version": "7.41.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.
|
|
9
|
+
"@frontegg/redux-store": "7.41.0-alpha.1",
|
|
10
10
|
"csstype": "^3.0.9",
|
|
11
11
|
"deepmerge": "^4.2.2"
|
|
12
12
|
},
|