@frontegg/types 6.156.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.
- package/Localizations/AdminPortalLocalizations/appDialog.d.ts +11 -0
- package/Localizations/AdminPortalLocalizations/appDialog.js +1 -0
- package/Localizations/AdminPortalLocalizations/index.d.ts +3 -1
- package/Localizations/AdminPortalLocalizations/index.js +1 -0
- package/Localizations/AdminPortalLocalizations/profile.d.ts +4 -0
- package/Localizations/AdminPortalLocalizations/users.d.ts +4 -0
- package/index.js +1 -1
- package/node/Localizations/AdminPortalLocalizations/appDialog.js +5 -0
- package/node/Localizations/AdminPortalLocalizations/index.js +11 -0
- package/node/index.js +1 -1
- package/package.json +2 -2
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -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
|
|
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;
|
|
@@ -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
|
package/index.js
CHANGED
|
@@ -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
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@frontegg/types",
|
|
3
|
-
"version": "6.
|
|
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.
|
|
9
|
+
"@frontegg/redux-store": "6.157.0-alpha.0",
|
|
10
10
|
"csstype": "^3.0.9",
|
|
11
11
|
"deepmerge": "^4.2.2"
|
|
12
12
|
},
|