@frontegg/types 6.95.0-alpha.0 → 6.95.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.
- package/ThemeOptions/AdminPortalThemeOptions.d.ts +18 -0
- package/index.js +1 -1
- package/node/index.js +1 -1
- package/package.json +2 -2
|
@@ -162,6 +162,16 @@ export interface SeverityChipTheme {
|
|
|
162
162
|
*/
|
|
163
163
|
success?: ExtendedCSSProperties;
|
|
164
164
|
}
|
|
165
|
+
export interface TreeGraphTheme {
|
|
166
|
+
/**
|
|
167
|
+
* Styling applying for tree graph node
|
|
168
|
+
*/
|
|
169
|
+
node?: ExtendedCSSProperties;
|
|
170
|
+
/**
|
|
171
|
+
* Styling applying for tree graph lines color
|
|
172
|
+
*/
|
|
173
|
+
linesColor?: Color;
|
|
174
|
+
}
|
|
165
175
|
export interface AdminPortalCommonOptions extends BaseThemeOptions {
|
|
166
176
|
/**
|
|
167
177
|
* Option to customize admin portal table
|
|
@@ -171,7 +181,14 @@ export interface AdminPortalCommonOptions extends BaseThemeOptions {
|
|
|
171
181
|
* Option to customize admin portal select/drop down list
|
|
172
182
|
*/
|
|
173
183
|
selectTheme?: SelectTheme;
|
|
184
|
+
/**
|
|
185
|
+
* Option to customize admin portal severity chip
|
|
186
|
+
*/
|
|
174
187
|
severityChipTheme?: SeverityChipTheme;
|
|
188
|
+
/**
|
|
189
|
+
* Option to customize admin portal severity chip
|
|
190
|
+
*/
|
|
191
|
+
treeGraphTheme?: TreeGraphTheme;
|
|
175
192
|
}
|
|
176
193
|
export interface AdminPortalThemeOptions extends AdminPortalCommonOptions {
|
|
177
194
|
themeName?: BasicThemeName;
|
|
@@ -192,4 +209,5 @@ export interface AdminPortalTheme extends BaseTheme {
|
|
|
192
209
|
tableTheme: TableTheme;
|
|
193
210
|
selectTheme: SelectTheme;
|
|
194
211
|
severityChipTheme: SeverityChipTheme;
|
|
212
|
+
treeGraphTheme: TreeGraphTheme;
|
|
195
213
|
}
|
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": "6.95.0
|
|
3
|
+
"version": "6.95.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.95.0
|
|
9
|
+
"@frontegg/redux-store": "6.95.0",
|
|
10
10
|
"csstype": "^3.0.9",
|
|
11
11
|
"deepmerge": "^4.2.2"
|
|
12
12
|
},
|