@frontegg/types 6.155.0 → 6.157.0-alpha.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.
@@ -0,0 +1,11 @@
1
+ export interface AppDialogLocalization {
2
+ /**
3
+ * App dialog
4
+ */
5
+ appDialog: {
6
+ /**
7
+ * Dialog aria label
8
+ */
9
+ dialogAriaLabel: string;
10
+ };
11
+ }
@@ -15,6 +15,7 @@ import { AllUsersLocalization } from './allUsers';
15
15
  import { ProvisioningLocalization } from './provisioning';
16
16
  import { UsersGroupsLocalization } from './groups';
17
17
  import { AllAccountsLocalization } from './allAccounts';
18
+ import { AppDialogLocalization } from './appDialog';
18
19
  export * from './navigation';
19
20
  export * from './profile';
20
21
  export * from './personalTokens';
@@ -32,4 +33,5 @@ export * from './subscriptions';
32
33
  export * from './allUsers';
33
34
  export * from './provisioning';
34
35
  export * from './allAccounts';
35
- export declare type AdminPortalLocalization = NavigationLocalization & ProfileLocalization & PersonalTokensLocalization & AuditLogsLocalization & ApiTokensLocalization & AccountSettingsLocalization & PrivacyLocalization & SecurityLocalization & RolesLocalization & SsoLocalization & UsersLocalization & UsersGroupsLocalization & WebhooksLocalization & SubscriptionsLocalization & AllUsersLocalization & ProvisioningLocalization & AllAccountsLocalization;
36
+ export * from './appDialog';
37
+ export declare type AdminPortalLocalization = NavigationLocalization & ProfileLocalization & PersonalTokensLocalization & AuditLogsLocalization & ApiTokensLocalization & AccountSettingsLocalization & PrivacyLocalization & SecurityLocalization & RolesLocalization & SsoLocalization & UsersLocalization & UsersGroupsLocalization & WebhooksLocalization & SubscriptionsLocalization & AllUsersLocalization & ProvisioningLocalization & AllAccountsLocalization & AppDialogLocalization;
@@ -15,4 +15,5 @@ export * from './subscriptions';
15
15
  export * from './allUsers';
16
16
  export * from './provisioning';
17
17
  export * from './allAccounts';
18
+ export * from './appDialog';
18
19
  export {};
@@ -64,6 +64,10 @@ export interface ProfileLocalization {
64
64
  */
65
65
  removeImage: string;
66
66
  disabledEditPhoneNumberTooltip: string;
67
+ /**
68
+ * Profile page edit avatar button aria label
69
+ */
70
+ editAvatarButtonAriaLabel: string;
67
71
  };
68
72
  /**
69
73
  * Edit user name and title Dialog strings
@@ -331,6 +331,10 @@ export interface UsersLocalization {
331
331
  edit: string;
332
332
  day: string;
333
333
  days: string;
334
+ /**
335
+ * Edit invite link button aria label
336
+ */
337
+ editInviteLinkAriaLabel: string;
334
338
  };
335
339
  /**
336
340
  * Deactivate invitation link dialog strings
package/index.js CHANGED
@@ -1,4 +1,4 @@
1
- /** @license Frontegg v6.155.0
1
+ /** @license Frontegg v6.157.0-alpha.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.
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
@@ -189,4 +189,15 @@ Object.keys(_allAccounts).forEach(function (key) {
189
189
  return _allAccounts[key];
190
190
  }
191
191
  });
192
+ });
193
+ var _appDialog = require("./appDialog");
194
+ Object.keys(_appDialog).forEach(function (key) {
195
+ if (key === "default" || key === "__esModule") return;
196
+ if (key in exports && exports[key] === _appDialog[key]) return;
197
+ Object.defineProperty(exports, key, {
198
+ enumerable: true,
199
+ get: function () {
200
+ return _appDialog[key];
201
+ }
202
+ });
192
203
  });
package/node/index.js CHANGED
@@ -1,4 +1,4 @@
1
- /** @license Frontegg v6.155.0
1
+ /** @license Frontegg v6.157.0-alpha.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.155.0",
3
+ "version": "6.157.0-alpha.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.155.0",
9
+ "@frontegg/redux-store": "6.157.0-alpha.0",
10
10
  "csstype": "^3.0.9",
11
11
  "deepmerge": "^4.2.2"
12
12
  },