@dataclouder/ngx-core 0.1.24 → 0.1.25
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.
|
@@ -44,6 +44,7 @@ export declare class LoadingBarService {
|
|
|
44
44
|
* Use this method to indicate successful completion of a process with visual feedback.
|
|
45
45
|
*/
|
|
46
46
|
successAndHide(): void;
|
|
47
|
+
errorAndHide(): void;
|
|
47
48
|
infoAndHide(): void;
|
|
48
49
|
/**
|
|
49
50
|
* Demonstrates the loading bar by simulating progress from 0% to 100% over 5 seconds.
|
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
export interface ILangTranslation {
|
|
2
|
+
en: string;
|
|
3
|
+
es: string;
|
|
4
|
+
}
|
|
1
5
|
export interface ILanguageData {
|
|
2
6
|
nativeName: string;
|
|
3
7
|
flag: string;
|
|
@@ -5,6 +9,8 @@ export interface ILanguageData {
|
|
|
5
9
|
i: number;
|
|
6
10
|
llmKnowledge: number;
|
|
7
11
|
countries: string[];
|
|
8
|
-
translations:
|
|
12
|
+
translations: ILangTranslation;
|
|
13
|
+
flagImg?: string;
|
|
14
|
+
status: 'ready' | 'commingsoon' | 'almostready';
|
|
9
15
|
}
|
|
10
16
|
export declare const LANGUAGES: Record<string, ILanguageData>;
|