@frontegg/types 6.95.0-alpha.1 → 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.
@@ -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
@@ -1,4 +1,4 @@
1
- /** @license Frontegg v6.95.0-alpha.1
1
+ /** @license Frontegg v6.95.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.95.0-alpha.1
1
+ /** @license Frontegg v6.95.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.95.0-alpha.1",
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-alpha.1",
9
+ "@frontegg/redux-store": "6.95.0",
10
10
  "csstype": "^3.0.9",
11
11
  "deepmerge": "^4.2.2"
12
12
  },