@frontegg/types 6.66.0-alpha.5 → 6.66.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.
@@ -16,21 +16,21 @@ interface AuditsMetadata extends PageMetadata {
16
16
  paginationMode?: 'virtual' | 'pages';
17
17
  }
18
18
  export declare type NavigationMetadata = {
19
- profile?: PageMetadata; /** extend with 'interface ProfileMetadata extends PageMetadata {}' */
20
- privacy?: PageMetadata; /** extend with 'interface PrivacyMetadata extends PageMetadata {}' */
21
- usage?: PageMetadata; /** extend with 'interface UsageMetadata extends PageMetadata {}' */
22
- account?: PageMetadata; /** extend with 'interface AccountMetadata extends PageMetadata {}' */
19
+ profile?: PageMetadata /** extend with 'interface ProfileMetadata extends PageMetadata {}' */;
20
+ privacy?: PageMetadata /** extend with 'interface PrivacyMetadata extends PageMetadata {}' */;
21
+ usage?: PageMetadata /** extend with 'interface UsageMetadata extends PageMetadata {}' */;
22
+ account?: PageMetadata /** extend with 'interface AccountMetadata extends PageMetadata {}' */;
23
23
  users?: UsersMetadata;
24
- allUsers?: PageMetadata; /** extend with 'export interface AllUsersMetadata extends PageMetadata {}' */
25
- roles?: PageMetadata; /** extend with 'interface RolesMetadata extends PageMetadata {}' */
26
- security?: PageMetadata; /** extend with 'interface SecurityMetadata extends PageMetadata {}' */
27
- sso?: PageMetadata; /** extend with 'interface SsoMetadata extends PageMetadata {}' */
28
- multipleSSO?: PageMetadata; /** extend with 'interface MultipleSsoMetadata extends PageMetadata {}' */
24
+ allUsers?: PageMetadata /** extend with 'export interface AllUsersMetadata extends PageMetadata {}' */;
25
+ roles?: PageMetadata /** extend with 'interface RolesMetadata extends PageMetadata {}' */;
26
+ security?: PageMetadata /** extend with 'interface SecurityMetadata extends PageMetadata {}' */;
27
+ sso?: PageMetadata /** extend with 'interface SsoMetadata extends PageMetadata {}' */;
28
+ multipleSSO?: PageMetadata /** extend with 'interface MultipleSsoMetadata extends PageMetadata {}' */;
29
29
  audits?: AuditsMetadata;
30
- webhooks?: PageMetadata; /** extend with 'interface WebhooksMetadata extends PageMetadata {}' */
31
- apiTokens?: PageMetadata; /** extend with 'interface ApiTokensMetadata extends PageMetadata {}' */
32
- personalApiTokens?: PageMetadata; /** extend with 'interface ApiTokensMetadata extends PageMetadata {}' */
33
- subscriptions?: PageMetadata; /** extend with 'interface SubscriptionsMetadata extends PageMetadata {}' */
30
+ webhooks?: PageMetadata /** extend with 'interface WebhooksMetadata extends PageMetadata {}' */;
31
+ apiTokens?: PageMetadata /** extend with 'interface ApiTokensMetadata extends PageMetadata {}' */;
32
+ personalApiTokens?: PageMetadata /** extend with 'interface ApiTokensMetadata extends PageMetadata {}' */;
33
+ subscriptions?: PageMetadata /** extend with 'interface SubscriptionsMetadata extends PageMetadata {}' */;
34
34
  };
35
35
  declare type PaletteOptions = {
36
36
  primary?: PaletteColorOptions;
@@ -1,154 +1,154 @@
1
1
  import { ScimConnectionSource } from '@frontegg/rest-api';
2
2
  export interface ProvisioningLocalization {
3
3
  /**
4
- * Provisioning page strings
5
- */
4
+ * Provisioning page strings
5
+ */
6
6
  provisioning: {
7
7
  /**
8
- * Provisioning tabs title
9
- */
8
+ * Provisioning tabs title
9
+ */
10
10
  tabTitle: string;
11
11
  } & {
12
12
  [K in ScimConnectionSource]: string;
13
13
  };
14
14
  provisioning_Header: {
15
15
  /**
16
- * Add connection button text
17
- */
16
+ * Add connection button text
17
+ */
18
18
  addConnection: string;
19
19
  };
20
20
  provisioning_Table: {
21
21
  /**
22
- * Name column title
23
- */
22
+ * Name column title
23
+ */
24
24
  nameColumn: string;
25
25
  /**
26
- * Provider column title
27
- */
26
+ * Provider column title
27
+ */
28
28
  providerColumn: string;
29
29
  /**
30
- * Status column title
31
- */
30
+ * Status column title
31
+ */
32
32
  statusColumn: string;
33
33
  /**
34
- * Users column title
35
- */
34
+ * Users column title
35
+ */
36
36
  usersColumn: string;
37
37
  /**
38
- * createdAt column title
39
- */
38
+ * createdAt column title
39
+ */
40
40
  createdAtColumn: string;
41
41
  /**
42
- * Empty state title
43
- */
42
+ * Empty state title
43
+ */
44
44
  emptyStateTitle: string;
45
45
  /**
46
- * Empty state sub-title
47
- */
46
+ * Empty state sub-title
47
+ */
48
48
  emptyStateSubTitle: string;
49
49
  /**
50
- * Delete connection action
51
- */
50
+ * Delete connection action
51
+ */
52
52
  deleteConnectionAction: string;
53
53
  /**
54
- * Pause connection action
55
- */
54
+ * Pause connection action
55
+ */
56
56
  pauseConnectionAction: string;
57
57
  /**
58
- * Resume connection action
59
- */
58
+ * Resume connection action
59
+ */
60
60
  resumeConnectionAction: string;
61
61
  /**
62
- * Pending status chip
63
- */
62
+ * Pending status chip
63
+ */
64
64
  pendingStatusChip: string;
65
65
  /**
66
- * Linked status chip
67
- */
66
+ * Linked status chip
67
+ */
68
68
  linkedStatusChip: string;
69
69
  /**
70
- * Paused status chip
71
- */
70
+ * Paused status chip
71
+ */
72
72
  pausedStatusChip: string;
73
73
  };
74
74
  provisioning_AddConnectionDialog: {
75
75
  /**
76
- * Add connection dialog title
77
- */
76
+ * Add connection dialog title
77
+ */
78
78
  dialogTitle: string;
79
79
  /**
80
- * Done button text
81
- */
80
+ * Done button text
81
+ */
82
82
  doneBtn: string;
83
83
  /**
84
- * Submit button text
85
- */
84
+ * Submit button text
85
+ */
86
86
  submitBtn: string;
87
87
  /**
88
- * Cancel button text
89
- */
88
+ * Cancel button text
89
+ */
90
90
  cancelBtn: string;
91
91
  /**
92
- * Name label text
93
- */
92
+ * Name label text
93
+ */
94
94
  nameLabel: string;
95
95
  /**
96
- * Provider label text
97
- */
96
+ * Provider label text
97
+ */
98
98
  directoryProviderLabel: string;
99
99
  /**
100
- * Name placeholder text
101
- */
100
+ * Name placeholder text
101
+ */
102
102
  namePlaceholder: string;
103
103
  /**
104
- * Provider placeholder text
105
- */
104
+ * Provider placeholder text
105
+ */
106
106
  directoryProviderPlaceholder: string;
107
107
  /**
108
- * Set up integration title
109
- */
108
+ * Set up integration title
109
+ */
110
110
  setUpIntegrationTitle: string;
111
111
  /**
112
- * Set up integration subtitle
113
- */
112
+ * Set up integration subtitle
113
+ */
114
114
  setUpIntegrationSubTitle: string;
115
115
  /**
116
- * Provisioning url label
117
- */
116
+ * Provisioning url label
117
+ */
118
118
  provisioningUrl: string;
119
119
  /**
120
- * Provisioning token label
121
- */
120
+ * Provisioning token label
121
+ */
122
122
  provisioningToken: string;
123
123
  /**
124
- * Provisioning token will be visible only once alert text
125
- */
124
+ * Provisioning token will be visible only once alert text
125
+ */
126
126
  provisioningTokenAlert: string;
127
127
  /**
128
- * Required field text
129
- */
128
+ * Required field text
129
+ */
130
130
  validation_requiredField: string;
131
131
  };
132
132
  provisioning_deleteConnectionDialog: {
133
133
  /**
134
- * Delete connection dialog title
135
- */
134
+ * Delete connection dialog title
135
+ */
136
136
  dialogTitle: string;
137
137
  /**
138
- * Delete button text
139
- */
138
+ * Delete button text
139
+ */
140
140
  deleteBtn: string;
141
141
  /**
142
- * Cancel button text
143
- */
142
+ * Cancel button text
143
+ */
144
144
  cancelBtn: string;
145
145
  /**
146
- * Text Pt.1
147
- */
146
+ * Text Pt.1
147
+ */
148
148
  textPartOne: string;
149
149
  /**
150
- * Text Pt.2
151
- */
150
+ * Text Pt.2
151
+ */
152
152
  textPartTwo: string;
153
153
  };
154
154
  }
@@ -318,28 +318,28 @@ export interface SecurityLocalization {
318
318
  */
319
319
  sameDomainError: string;
320
320
  /**
321
- * Change restriction dialog confirm button
322
- */
321
+ * Change restriction dialog confirm button
322
+ */
323
323
  changeRestrictionStrategyDialogConfirmButton: string;
324
324
  /**
325
- * Change restriction dialog cancel button
326
- */
325
+ * Change restriction dialog cancel button
326
+ */
327
327
  changeRestrictionStrategyDialogCancelButton: string;
328
328
  /**
329
- * Change restriction to allow dialog title
330
- */
329
+ * Change restriction to allow dialog title
330
+ */
331
331
  changeRestrictionStrategyDialogTitleAllow: string;
332
332
  /**
333
- * Change restriction to deny dialog title
334
- */
333
+ * Change restriction to deny dialog title
334
+ */
335
335
  changeRestrictionStrategyDialogTitleDeny: string;
336
336
  /**
337
- * Change restriction to allow dialog message
338
- */
337
+ * Change restriction to allow dialog message
338
+ */
339
339
  changeRestrictionStrategyDialogMessageAllow: string;
340
340
  /**
341
- * Change restriction to deny dialog message
342
- */
341
+ * Change restriction to deny dialog message
342
+ */
343
343
  changeRestrictionStrategyDialogMessageDeny: string;
344
344
  /**
345
345
  * No domains being blocked alert message
@@ -457,12 +457,12 @@ export interface SecurityLocalization {
457
457
  */
458
458
  ipDescriptionRequiredMessage: string;
459
459
  /**
460
- * Delete IP dialog delete button
461
- */
460
+ * Delete IP dialog delete button
461
+ */
462
462
  deleteIpDialogDeleteButton: string;
463
463
  /**
464
- * Delete IP dialog cancel button
465
- */
464
+ * Delete IP dialog cancel button
465
+ */
466
466
  deleteIpDialogCancelButton: string;
467
467
  /**
468
468
  * Delete IP dialog title
@@ -477,48 +477,48 @@ export interface SecurityLocalization {
477
477
  */
478
478
  deleteCidrDialogMessageAfterMessage: string;
479
479
  /**
480
- * Change restriction dialog delete button
481
- */
480
+ * Change restriction dialog delete button
481
+ */
482
482
  changeRestrictionStrategyDialogDeleteButton: string;
483
483
  /**
484
- * Change restriction dialog cancel button
485
- */
484
+ * Change restriction dialog cancel button
485
+ */
486
486
  changeRestrictionStrategyDialogCancelButton: string;
487
487
  /**
488
- * Change restriction to allow dialog title
489
- */
488
+ * Change restriction to allow dialog title
489
+ */
490
490
  changeRestrictionStrategyDialogTitleAllow: string;
491
491
  /**
492
- * Change restriction to deny dialog title
493
- */
492
+ * Change restriction to deny dialog title
493
+ */
494
494
  changeRestrictionStrategyDialogTitleDeny: string;
495
495
  /**
496
- * Change restriction to allow dialog message
497
- */
496
+ * Change restriction to allow dialog message
497
+ */
498
498
  changeRestrictionStrategyDialogMessageAllow: string;
499
499
  /**
500
- * Change restriction to deny dialog message
501
- */
500
+ * Change restriction to deny dialog message
501
+ */
502
502
  changeRestrictionStrategyDialogMessageDeny: string;
503
503
  /**
504
- * Add my ip button text
505
- */
504
+ * Add my ip button text
505
+ */
506
506
  addMyIp: string;
507
507
  /**
508
- * Add my ip dialog confirm button
509
- */
508
+ * Add my ip dialog confirm button
509
+ */
510
510
  AddMyIpDialogConfirmButton: string;
511
511
  /**
512
- * Add my ip dialog cancel button
513
- */
512
+ * Add my ip dialog cancel button
513
+ */
514
514
  AddMyIpDialogCancelButton: string;
515
515
  /**
516
- * Add my ip to allow dialog title
517
- */
516
+ * Add my ip to allow dialog title
517
+ */
518
518
  AddMyIpDialogTitle: string;
519
519
  /**
520
- * Add my ip to allow dialog message
521
- */
520
+ * Add my ip to allow dialog message
521
+ */
522
522
  AddMyIpDialogMessage: string;
523
523
  /**
524
524
  * Text for empty state screen - when all fields are hidden
@@ -1,8 +1,8 @@
1
1
  export interface SsoLocalization {
2
2
  provisioningAndSSO: {
3
3
  /**
4
- * Single sign on & Provisioning page title
5
- */
4
+ * Single sign on & Provisioning page title
5
+ */
6
6
  pageTitle: string;
7
7
  };
8
8
  /**
@@ -32,8 +32,8 @@ export interface UsersLocalization {
32
32
  */
33
33
  rolesHeader: string;
34
34
  /**
35
- * Table user organization column header
36
- */
35
+ * Table user organization column header
36
+ */
37
37
  organizationHeader: string;
38
38
  /**
39
39
  * Table user joined date column header
@@ -1,4 +1,4 @@
1
- import { TestimonialComponentLocalization, TitleDescriptionComponentLocalization, ValuesComponentLocalization } from "./SplitPageTypes";
1
+ import { TestimonialComponentLocalization, TitleDescriptionComponentLocalization, ValuesComponentLocalization } from './SplitPageTypes';
2
2
  export interface SignupLocalizationOptions {
3
3
  /**
4
4
  * Sign up page title
@@ -10,7 +10,7 @@ const generateMainColorObject = color => {
10
10
  light: rgbToHex(lighten(color, 0.4)),
11
11
  dark: rgbToHex(darken(color, 0.15)),
12
12
  hover: rgbToHex(darken(color, 0.15)),
13
- active: rgbToHex(darken(color, 0.20))
13
+ active: rgbToHex(darken(color, 0.2))
14
14
  };
15
15
  }
16
16
  };
@@ -1,4 +1,4 @@
1
- import { ExtendedCSSProperties } from "../Common";
1
+ import { ExtendedCSSProperties } from '../Common';
2
2
  export interface DisclaimerOptions {
3
3
  hasCheckbox: boolean;
4
4
  disclaimerContainerStyle?: ExtendedCSSProperties;
@@ -5,8 +5,8 @@ export interface CustomContainerProps extends CustomLocalizationProps {
5
5
  className: string;
6
6
  }
7
7
  export interface ComponentKeyRender {
8
- 'pageHeader': CustomContainerProps;
9
- 'pageFooter': CustomContainerProps;
10
- 'boxHeader': CustomContainerProps;
11
- 'boxFooter': CustomContainerProps;
8
+ pageHeader: CustomContainerProps;
9
+ pageFooter: CustomContainerProps;
10
+ boxHeader: CustomContainerProps;
11
+ boxFooter: CustomContainerProps;
12
12
  }
@@ -212,9 +212,9 @@ interface LoginBoxOptionalCommon {
212
212
  */
213
213
  socialLogins?: SocialLoginsThemeOptions;
214
214
  /**
215
- * Option to customize login box back to login button by providing
216
- * css style for every state (base, hover, focus, disabled, etc...)
217
- */
215
+ * Option to customize login box back to login button by providing
216
+ * css style for every state (base, hover, focus, disabled, etc...)
217
+ */
218
218
  backToLoginStyle?: ExtendedCSSProperties;
219
219
  }
220
220
  export interface LoginBoxCommonTheme extends BaseTheme, LoginBoxOptionalCommon {
package/index.js CHANGED
@@ -1,4 +1,4 @@
1
- /** @license Frontegg v6.66.0-alpha.5
1
+ /** @license Frontegg v6.66.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.
@@ -19,7 +19,7 @@ const generateMainColorObject = color => {
19
19
  light: (0, _colorManipulator.rgbToHex)((0, _colorManipulator.lighten)(color, 0.4)),
20
20
  dark: (0, _colorManipulator.rgbToHex)((0, _colorManipulator.darken)(color, 0.15)),
21
21
  hover: (0, _colorManipulator.rgbToHex)((0, _colorManipulator.darken)(color, 0.15)),
22
- active: (0, _colorManipulator.rgbToHex)((0, _colorManipulator.darken)(color, 0.20))
22
+ active: (0, _colorManipulator.rgbToHex)((0, _colorManipulator.darken)(color, 0.2))
23
23
  };
24
24
  }
25
25
  };
package/node/index.js CHANGED
@@ -1,4 +1,4 @@
1
- /** @license Frontegg v6.66.0-alpha.5
1
+ /** @license Frontegg v6.66.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.66.0-alpha.5",
3
+ "version": "6.66.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.66.0-alpha.5",
9
+ "@frontegg/redux-store": "6.66.0",
10
10
  "csstype": "^3.0.9",
11
11
  "deepmerge": "^4.2.2"
12
12
  },