identity-admin-ui 1.12.22 → 1.12.23
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/lib/cjs/index.js +2 -2
- package/lib/cjs/types/hooks/useLocales.d.ts +2 -0
- package/lib/cjs/types/layouts/config.d.ts +2 -0
- package/lib/esm/index.js +2 -2
- package/lib/esm/types/hooks/useLocales.d.ts +2 -0
- package/lib/esm/types/layouts/config.d.ts +2 -0
- package/lib/index.d.ts +2 -0
- package/package.json +1 -1
|
@@ -4,12 +4,14 @@ export default function useLocales(): {
|
|
|
4
4
|
currentLang: {
|
|
5
5
|
label: string;
|
|
6
6
|
value: import("../helpers/Localization/LocalesEnums").Languages;
|
|
7
|
+
index: string;
|
|
7
8
|
systemValue: import("@mui/material/locale").Localization;
|
|
8
9
|
icon: import("../helpers/Contsants").Flags;
|
|
9
10
|
};
|
|
10
11
|
allLangs: {
|
|
11
12
|
label: string;
|
|
12
13
|
value: import("../helpers/Localization/LocalesEnums").Languages;
|
|
14
|
+
index: string;
|
|
13
15
|
systemValue: import("@mui/material/locale").Localization;
|
|
14
16
|
icon: import("../helpers/Contsants").Flags;
|
|
15
17
|
}[];
|
|
@@ -23,12 +23,14 @@ export declare const defaultSettings: SettingsValueProps;
|
|
|
23
23
|
export declare const allLangs: {
|
|
24
24
|
label: string;
|
|
25
25
|
value: Languages;
|
|
26
|
+
index: string;
|
|
26
27
|
systemValue: import("@mui/material/locale").Localization;
|
|
27
28
|
icon: Flags;
|
|
28
29
|
}[];
|
|
29
30
|
export declare const defaultLang: {
|
|
30
31
|
label: string;
|
|
31
32
|
value: Languages;
|
|
33
|
+
index: string;
|
|
32
34
|
systemValue: import("@mui/material/locale").Localization;
|
|
33
35
|
icon: Flags;
|
|
34
36
|
};
|
package/lib/index.d.ts
CHANGED
|
@@ -925,12 +925,14 @@ declare function useLocales(): {
|
|
|
925
925
|
currentLang: {
|
|
926
926
|
label: string;
|
|
927
927
|
value: Languages;
|
|
928
|
+
index: string;
|
|
928
929
|
systemValue: _mui_material_locale.Localization;
|
|
929
930
|
icon: Flags;
|
|
930
931
|
};
|
|
931
932
|
allLangs: {
|
|
932
933
|
label: string;
|
|
933
934
|
value: Languages;
|
|
935
|
+
index: string;
|
|
934
936
|
systemValue: _mui_material_locale.Localization;
|
|
935
937
|
icon: Flags;
|
|
936
938
|
}[];
|