@dataclouder/ngx-core 0.1.23 → 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.
@@ -39,6 +39,8 @@ import { FieldsetModule } from 'primeng/fieldset';
39
39
  import * as i4$2 from 'primeng/chip';
40
40
  import { ChipModule } from 'primeng/chip';
41
41
  import { AvatarModule } from 'primeng/avatar';
42
+ import { toSignal } from '@angular/core/rxjs-interop';
43
+ import { map } from 'rxjs/operators';
42
44
  import { firstValueFrom, tap, catchError, lastValueFrom, throwError } from 'rxjs';
43
45
  import * as i4$3 from 'primeng/textarea';
44
46
  import { TextareaModule } from 'primeng/textarea';
@@ -362,6 +364,20 @@ class LoadingBarService {
362
364
  this.hideProgressBar();
363
365
  }, 1100);
364
366
  }
367
+ errorAndHide() {
368
+ // Clear any existing progress interval
369
+ if (this.progressInterval) {
370
+ clearInterval(this.progressInterval);
371
+ this.progressInterval = null;
372
+ }
373
+ this.isShowing = true;
374
+ this.mode = 'indeterminate';
375
+ this.progress = 100;
376
+ this.color = '#FF0000';
377
+ setTimeout(() => {
378
+ this.hideProgressBar();
379
+ }, 1100);
380
+ }
365
381
  infoAndHide() {
366
382
  // Clear any existing progress interval
367
383
  if (this.progressInterval) {
@@ -978,6 +994,61 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.4", ngImpor
978
994
  type: Directive
979
995
  }], ctorParameters: () => [] });
980
996
 
997
+ class EntityBaseFormComponent {
998
+ constructor() {
999
+ this.route = inject(ActivatedRoute);
1000
+ this.router = inject(Router);
1001
+ this.entity = signal(undefined);
1002
+ this.entityId = toSignal(this.route.paramMap.pipe(map((params) => params.get('id'))));
1003
+ this.loadEntityEffect = effect(async () => {
1004
+ const id = this.entityId();
1005
+ if (id) {
1006
+ try {
1007
+ const entity = await this.entityCommunicationService.findOne(id);
1008
+ if (entity) {
1009
+ this.entity.set(entity);
1010
+ this.patchForm(entity);
1011
+ }
1012
+ }
1013
+ catch (err) {
1014
+ console.error('Error loading entity', err);
1015
+ // TODO: Consider adding a generic error toast message
1016
+ }
1017
+ }
1018
+ else {
1019
+ // if there is no id, we create a new entity
1020
+ try {
1021
+ const newEntity = await this.entityCommunicationService.createOrUpdate({});
1022
+ if (newEntity?._id) {
1023
+ // we replace the url to avoid creating a new entity when the user goes back
1024
+ this.router.navigate([newEntity._id], { relativeTo: this.route, replaceUrl: true });
1025
+ }
1026
+ }
1027
+ catch (err) {
1028
+ console.error('Error creating new entity', err);
1029
+ // TODO: Consider adding a generic error toast message
1030
+ }
1031
+ }
1032
+ }, { allowSignalWrites: true });
1033
+ }
1034
+ async save() {
1035
+ if (this.form.invalid) {
1036
+ // TODO: add toast notification
1037
+ console.error('Form is invalid');
1038
+ }
1039
+ const entityData = { ...this.form.value, _id: this.entityId() };
1040
+ const result = await this.entityCommunicationService.createOrUpdate(entityData);
1041
+ this.entity.set(result);
1042
+ this.patchForm(result);
1043
+ return result;
1044
+ }
1045
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.4", ngImport: i0, type: EntityBaseFormComponent, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
1046
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.4", type: EntityBaseFormComponent, isStandalone: true, ngImport: i0 }); }
1047
+ }
1048
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.4", ngImport: i0, type: EntityBaseFormComponent, decorators: [{
1049
+ type: Directive
1050
+ }] });
1051
+
981
1052
  const TOAST_ALERTS_TOKEN = new InjectionToken('Toast alerts Service');
982
1053
  class ToastAlertsAbstractService {
983
1054
  }
@@ -989,7 +1060,7 @@ function provideToastAlert(serviceImplementation) {
989
1060
  },
990
1061
  ];
991
1062
  }
992
- // @deprecated, moved to ngx-tts
1063
+ // @deprecated, moved to ngx-vertex
993
1064
  var AudioSpeed;
994
1065
  (function (AudioSpeed) {
995
1066
  AudioSpeed["VerySlow"] = "verySlow";
@@ -1731,6 +1802,7 @@ const LANGUAGES = {
1731
1802
  en: {
1732
1803
  nativeName: 'English',
1733
1804
  flag: '🇺🇸', // Using US flag as a primary example
1805
+ flagImg: 'assets/flags/us.svg',
1734
1806
  code: 'en',
1735
1807
  i: 1,
1736
1808
  llmKnowledge: 100,
@@ -1739,10 +1811,12 @@ const LANGUAGES = {
1739
1811
  en: 'English',
1740
1812
  es: 'Inglés',
1741
1813
  },
1814
+ status: 'ready',
1742
1815
  },
1743
1816
  es: {
1744
1817
  nativeName: 'Español',
1745
1818
  flag: '🇪🇸', // Using Spain flag as a primary example
1819
+ flagImg: 'assets/flags/es.svg',
1746
1820
  code: 'es',
1747
1821
  i: 2,
1748
1822
  llmKnowledge: 99,
@@ -1772,10 +1846,12 @@ const LANGUAGES = {
1772
1846
  en: 'Spanish',
1773
1847
  es: 'Español',
1774
1848
  },
1849
+ status: 'almostready',
1775
1850
  },
1776
1851
  de: {
1777
1852
  nativeName: 'Deutsch',
1778
1853
  flag: '🇩🇪',
1854
+ flagImg: 'assets/flags/de.svg',
1779
1855
  code: 'de',
1780
1856
  i: 3,
1781
1857
  llmKnowledge: 97,
@@ -1784,10 +1860,12 @@ const LANGUAGES = {
1784
1860
  en: 'German',
1785
1861
  es: 'Alemán',
1786
1862
  },
1863
+ status: 'almostready',
1787
1864
  },
1788
1865
  fr: {
1789
1866
  nativeName: 'Français',
1790
1867
  flag: '🇫🇷',
1868
+ flagImg: 'assets/flags/fr.svg',
1791
1869
  code: 'fr',
1792
1870
  i: 4,
1793
1871
  llmKnowledge: 96,
@@ -1796,10 +1874,12 @@ const LANGUAGES = {
1796
1874
  en: 'French',
1797
1875
  es: 'Francés',
1798
1876
  },
1877
+ status: 'almostready',
1799
1878
  },
1800
1879
  zh: {
1801
1880
  nativeName: '中文 (Zhōngwén)',
1802
1881
  flag: '🇨🇳',
1882
+ flagImg: 'assets/flags/cn.svg',
1803
1883
  code: 'zh',
1804
1884
  i: 5,
1805
1885
  llmKnowledge: 94,
@@ -1808,10 +1888,12 @@ const LANGUAGES = {
1808
1888
  en: 'Chinese (Mandarin)',
1809
1889
  es: 'Chino (Mandarín)',
1810
1890
  },
1891
+ status: 'almostready',
1811
1892
  },
1812
1893
  it: {
1813
1894
  nativeName: 'Italiano',
1814
1895
  flag: '🇮🇹',
1896
+ flagImg: 'assets/flags/it.svg',
1815
1897
  code: 'it',
1816
1898
  i: 6,
1817
1899
  llmKnowledge: 93,
@@ -1820,10 +1902,12 @@ const LANGUAGES = {
1820
1902
  en: 'Italian',
1821
1903
  es: 'Italiano',
1822
1904
  },
1905
+ status: 'almostready',
1823
1906
  },
1824
1907
  pt: {
1825
1908
  nativeName: 'Português',
1826
1909
  flag: '🇧🇷',
1910
+ flagImg: 'assets/flags/br.svg',
1827
1911
  code: 'pt',
1828
1912
  i: 7,
1829
1913
  llmKnowledge: 92,
@@ -1832,10 +1916,12 @@ const LANGUAGES = {
1832
1916
  en: 'Portuguese',
1833
1917
  es: 'Portugués',
1834
1918
  },
1919
+ status: 'ready',
1835
1920
  },
1836
1921
  ja: {
1837
1922
  nativeName: '日本語 (Nihongo)',
1838
1923
  flag: '🇯🇵',
1924
+ flagImg: 'assets/flags/jp.svg',
1839
1925
  code: 'ja',
1840
1926
  i: 8,
1841
1927
  llmKnowledge: 91,
@@ -1844,10 +1930,12 @@ const LANGUAGES = {
1844
1930
  en: 'Japanese',
1845
1931
  es: 'Japonés',
1846
1932
  },
1933
+ status: 'almostready',
1847
1934
  },
1848
1935
  nl: {
1849
1936
  nativeName: 'Nederlands',
1850
1937
  flag: '🇳🇱',
1938
+ flagImg: 'assets/flags/nl.svg',
1851
1939
  code: 'nl',
1852
1940
  i: 9,
1853
1941
  llmKnowledge: 90,
@@ -1856,10 +1944,12 @@ const LANGUAGES = {
1856
1944
  en: 'Dutch',
1857
1945
  es: 'Neerlandés',
1858
1946
  },
1947
+ status: 'commingsoon',
1859
1948
  },
1860
1949
  ru: {
1861
1950
  nativeName: 'Русский (Russkiy)',
1862
1951
  flag: '🇷🇺',
1952
+ flagImg: 'assets/flags/ru.svg',
1863
1953
  code: 'ru',
1864
1954
  i: 10, // Adjusted index
1865
1955
  llmKnowledge: 89,
@@ -1868,10 +1958,12 @@ const LANGUAGES = {
1868
1958
  en: 'Russian',
1869
1959
  es: 'Ruso',
1870
1960
  },
1961
+ status: 'commingsoon',
1871
1962
  },
1872
1963
  ko: {
1873
1964
  nativeName: '한국어 (Hangugeo)',
1874
1965
  flag: '🇰🇷',
1966
+ flagImg: 'assets/flags/kr.svg',
1875
1967
  code: 'ko',
1876
1968
  i: 11,
1877
1969
  llmKnowledge: 87,
@@ -1880,10 +1972,12 @@ const LANGUAGES = {
1880
1972
  en: 'Korean',
1881
1973
  es: 'Coreano',
1882
1974
  },
1975
+ status: 'almostready',
1883
1976
  },
1884
1977
  pl: {
1885
1978
  nativeName: 'Polski',
1886
1979
  flag: '🇵🇱',
1980
+ flagImg: 'assets/flags/pl.svg',
1887
1981
  code: 'pl',
1888
1982
  i: 12,
1889
1983
  llmKnowledge: 86,
@@ -1892,10 +1986,12 @@ const LANGUAGES = {
1892
1986
  en: 'Polish',
1893
1987
  es: 'Polaco',
1894
1988
  },
1989
+ status: 'commingsoon',
1895
1990
  },
1896
1991
  sv: {
1897
1992
  nativeName: 'Svenska',
1898
1993
  flag: '🇸🇪',
1994
+ flagImg: 'assets/flags/se.svg',
1899
1995
  code: 'sv',
1900
1996
  i: 13,
1901
1997
  llmKnowledge: 85,
@@ -1904,10 +2000,12 @@ const LANGUAGES = {
1904
2000
  en: 'Swedish',
1905
2001
  es: 'Sueco',
1906
2002
  },
2003
+ status: 'commingsoon',
1907
2004
  },
1908
2005
  tr: {
1909
2006
  nativeName: 'Türkçe',
1910
2007
  flag: '🇹🇷',
2008
+ flagImg: 'assets/flags/tr.svg',
1911
2009
  code: 'tr',
1912
2010
  i: 14,
1913
2011
  llmKnowledge: 84,
@@ -1916,10 +2014,12 @@ const LANGUAGES = {
1916
2014
  en: 'Turkish',
1917
2015
  es: 'Turco',
1918
2016
  },
2017
+ status: 'commingsoon',
1919
2018
  },
1920
2019
  ar: {
1921
2020
  nativeName: 'العربية (Al-Arabiyyah)',
1922
2021
  flag: '🇸🇦',
2022
+ flagImg: 'assets/flags/sa.svg',
1923
2023
  code: 'ar',
1924
2024
  i: 15,
1925
2025
  llmKnowledge: 83,
@@ -1954,10 +2054,12 @@ const LANGUAGES = {
1954
2054
  en: 'Arabic',
1955
2055
  es: 'Árabe',
1956
2056
  },
2057
+ status: 'commingsoon',
1957
2058
  },
1958
2059
  vi: {
1959
2060
  nativeName: 'Tiếng Việt',
1960
2061
  flag: '🇻🇳',
2062
+ flagImg: 'assets/flags/vn.svg',
1961
2063
  code: 'vi',
1962
2064
  i: 16,
1963
2065
  llmKnowledge: 82,
@@ -1966,10 +2068,12 @@ const LANGUAGES = {
1966
2068
  en: 'Vietnamese',
1967
2069
  es: 'Vietnamita',
1968
2070
  },
2071
+ status: 'commingsoon',
1969
2072
  },
1970
2073
  id: {
1971
2074
  nativeName: 'Bahasa Indonesia',
1972
2075
  flag: '🇮🇩',
2076
+ flagImg: 'assets/flags/id.svg',
1973
2077
  code: 'id',
1974
2078
  i: 17,
1975
2079
  llmKnowledge: 81,
@@ -1978,10 +2082,12 @@ const LANGUAGES = {
1978
2082
  en: 'Indonesian',
1979
2083
  es: 'Indonesio',
1980
2084
  },
2085
+ status: 'commingsoon',
1981
2086
  },
1982
2087
  da: {
1983
2088
  nativeName: 'Dansk',
1984
2089
  flag: '🇩🇰',
2090
+ flagImg: 'assets/flags/dk.svg',
1985
2091
  code: 'da',
1986
2092
  i: 18,
1987
2093
  llmKnowledge: 80,
@@ -1990,10 +2096,12 @@ const LANGUAGES = {
1990
2096
  en: 'Danish',
1991
2097
  es: 'Danés',
1992
2098
  },
2099
+ status: 'commingsoon',
1993
2100
  },
1994
2101
  no: {
1995
2102
  nativeName: 'Norsk',
1996
2103
  flag: '🇳🇴',
2104
+ flagImg: 'assets/flags/no.svg',
1997
2105
  code: 'no',
1998
2106
  i: 19,
1999
2107
  llmKnowledge: 79,
@@ -2002,10 +2110,12 @@ const LANGUAGES = {
2002
2110
  en: 'Norwegian',
2003
2111
  es: 'Noruego',
2004
2112
  },
2113
+ status: 'commingsoon',
2005
2114
  },
2006
2115
  fi: {
2007
2116
  nativeName: 'Suomi',
2008
2117
  flag: '🇫🇮',
2118
+ flagImg: 'assets/flags/fi.svg',
2009
2119
  code: 'fi',
2010
2120
  i: 20,
2011
2121
  llmKnowledge: 78,
@@ -2014,10 +2124,12 @@ const LANGUAGES = {
2014
2124
  en: 'Finnish',
2015
2125
  es: 'Finlandés',
2016
2126
  },
2127
+ status: 'commingsoon',
2017
2128
  },
2018
2129
  cs: {
2019
2130
  nativeName: 'Čeština',
2020
2131
  flag: '🇨🇿',
2132
+ flagImg: 'assets/flags/cz.svg',
2021
2133
  code: 'cs',
2022
2134
  i: 21,
2023
2135
  llmKnowledge: 77,
@@ -2026,10 +2138,12 @@ const LANGUAGES = {
2026
2138
  en: 'Czech',
2027
2139
  es: 'Checo',
2028
2140
  },
2141
+ status: 'commingsoon',
2029
2142
  },
2030
2143
  el: {
2031
2144
  nativeName: 'Ελληνικά (Elliniká)',
2032
2145
  flag: '🇬🇷',
2146
+ flagImg: 'assets/flags/gr.svg',
2033
2147
  code: 'el',
2034
2148
  i: 22,
2035
2149
  llmKnowledge: 76,
@@ -2038,10 +2152,12 @@ const LANGUAGES = {
2038
2152
  en: 'Greek',
2039
2153
  es: 'Griego',
2040
2154
  },
2155
+ status: 'commingsoon',
2041
2156
  },
2042
2157
  hu: {
2043
2158
  nativeName: 'Magyar',
2044
2159
  flag: '🇭🇺',
2160
+ flagImg: 'assets/flags/hu.svg',
2045
2161
  code: 'hu',
2046
2162
  i: 23,
2047
2163
  llmKnowledge: 75,
@@ -2050,10 +2166,12 @@ const LANGUAGES = {
2050
2166
  en: 'Hungarian',
2051
2167
  es: 'Húngaro',
2052
2168
  },
2169
+ status: 'commingsoon',
2053
2170
  },
2054
2171
  ro: {
2055
2172
  nativeName: 'Română',
2056
2173
  flag: '🇷🇴',
2174
+ flagImg: 'assets/flags/ro.svg',
2057
2175
  code: 'ro',
2058
2176
  i: 24,
2059
2177
  llmKnowledge: 74,
@@ -2062,10 +2180,12 @@ const LANGUAGES = {
2062
2180
  en: 'Romanian',
2063
2181
  es: 'Rumano',
2064
2182
  },
2183
+ status: 'commingsoon',
2065
2184
  },
2066
2185
  uk: {
2067
2186
  nativeName: 'Українська (Ukrainska)',
2068
2187
  flag: '🇺🇦',
2188
+ flagImg: 'assets/flags/ua.svg',
2069
2189
  code: 'uk',
2070
2190
  i: 25,
2071
2191
  llmKnowledge: 73,
@@ -2074,10 +2194,12 @@ const LANGUAGES = {
2074
2194
  en: 'Ukrainian',
2075
2195
  es: 'Ucraniano',
2076
2196
  },
2197
+ status: 'commingsoon',
2077
2198
  },
2078
2199
  he: {
2079
2200
  nativeName: 'עברית (Ivrit)',
2080
2201
  flag: '🇮🇱',
2202
+ flagImg: 'assets/flags/il.svg',
2081
2203
  code: 'he',
2082
2204
  i: 26,
2083
2205
  llmKnowledge: 72,
@@ -2086,10 +2208,12 @@ const LANGUAGES = {
2086
2208
  en: 'Hebrew',
2087
2209
  es: 'Hebreo',
2088
2210
  },
2211
+ status: 'commingsoon',
2089
2212
  },
2090
2213
  th: {
2091
2214
  nativeName: 'ภาษาไทย (Phasa Thai)',
2092
2215
  flag: '🇹🇭',
2216
+ flagImg: 'assets/flags/th.svg',
2093
2217
  code: 'th',
2094
2218
  i: 27,
2095
2219
  llmKnowledge: 71,
@@ -2098,10 +2222,12 @@ const LANGUAGES = {
2098
2222
  en: 'Thai',
2099
2223
  es: 'Tailandés',
2100
2224
  },
2225
+ status: 'commingsoon',
2101
2226
  },
2102
2227
  hi: {
2103
2228
  nativeName: 'हिन्दी (Hindī)',
2104
2229
  flag: '🇮🇳',
2230
+ flagImg: 'assets/flags/in.svg',
2105
2231
  code: 'hi',
2106
2232
  i: 28,
2107
2233
  llmKnowledge: 70,
@@ -2110,10 +2236,12 @@ const LANGUAGES = {
2110
2236
  en: 'Hindi',
2111
2237
  es: 'Hindi',
2112
2238
  },
2239
+ status: 'commingsoon',
2113
2240
  },
2114
2241
  ca: {
2115
2242
  nativeName: 'Català',
2116
2243
  flag: '🇪🇸',
2244
+ flagImg: 'assets/flags/es.svg',
2117
2245
  code: 'ca',
2118
2246
  i: 29,
2119
2247
  llmKnowledge: 69,
@@ -2122,10 +2250,12 @@ const LANGUAGES = {
2122
2250
  en: 'Catalan',
2123
2251
  es: 'Catalán',
2124
2252
  },
2253
+ status: 'commingsoon',
2125
2254
  },
2126
2255
  bg: {
2127
2256
  nativeName: 'Български (Balgarski)',
2128
2257
  flag: '🇧🇬',
2258
+ flagImg: 'assets/flags/bg.svg',
2129
2259
  code: 'bg',
2130
2260
  i: 30,
2131
2261
  llmKnowledge: 68,
@@ -2134,10 +2264,40 @@ const LANGUAGES = {
2134
2264
  en: 'Bulgarian',
2135
2265
  es: 'Búlgaro',
2136
2266
  },
2267
+ status: 'commingsoon',
2268
+ },
2269
+ eo: {
2270
+ nativeName: 'Esperanto',
2271
+ flag: '🇺🇳', // Usando la bandera de la ONU por su naturaleza internacional
2272
+ flagImg: 'assets/flags/eo.svg',
2273
+ code: 'eo',
2274
+ i: 59,
2275
+ llmKnowledge: 90,
2276
+ countries: ['Worldwide (constructed language)'],
2277
+ translations: {
2278
+ en: 'Esperanto',
2279
+ es: 'Esperanto',
2280
+ },
2281
+ status: 'commingsoon',
2282
+ },
2283
+ ia: {
2284
+ nativeName: 'Interlingua',
2285
+ flag: '🇺🇳', // Usando la bandera de la ONU por su naturaleza internacional
2286
+ flagImg: 'assets/flags/ia.svg',
2287
+ code: 'ia',
2288
+ i: 60,
2289
+ llmKnowledge: 85,
2290
+ countries: ['Worldwide (constructed language)'],
2291
+ translations: {
2292
+ en: 'Interlingua',
2293
+ es: 'Interlingua',
2294
+ },
2295
+ status: 'commingsoon',
2137
2296
  },
2138
2297
  hr: {
2139
2298
  nativeName: 'Hrvatski',
2140
2299
  flag: '🇭🇷',
2300
+ flagImg: 'assets/flags/hr.svg',
2141
2301
  code: 'hr',
2142
2302
  i: 31,
2143
2303
  llmKnowledge: 67,
@@ -2146,10 +2306,12 @@ const LANGUAGES = {
2146
2306
  en: 'Croatian',
2147
2307
  es: 'Croata',
2148
2308
  },
2309
+ status: 'commingsoon',
2149
2310
  },
2150
2311
  sk: {
2151
2312
  nativeName: 'Slovenčina',
2152
2313
  flag: '🇸🇰',
2314
+ flagImg: 'assets/flags/sk.svg',
2153
2315
  code: 'sk',
2154
2316
  i: 32,
2155
2317
  llmKnowledge: 66,
@@ -2158,10 +2320,12 @@ const LANGUAGES = {
2158
2320
  en: 'Slovak',
2159
2321
  es: 'Eslovaco',
2160
2322
  },
2323
+ status: 'commingsoon',
2161
2324
  },
2162
2325
  fil: {
2163
2326
  nativeName: 'Filipino',
2164
2327
  flag: '🇵🇭',
2328
+ flagImg: 'assets/flags/ph.svg',
2165
2329
  code: 'fil',
2166
2330
  i: 33,
2167
2331
  llmKnowledge: 65,
@@ -2170,11 +2334,13 @@ const LANGUAGES = {
2170
2334
  en: 'Filipino',
2171
2335
  es: 'Filipino',
2172
2336
  },
2337
+ status: 'commingsoon',
2173
2338
  },
2174
2339
  tl: {
2175
2340
  // Tagalog often used as base for Filipino, but distinct ISO code
2176
2341
  nativeName: 'Tagalog',
2177
2342
  flag: '🇵🇭',
2343
+ flagImg: 'assets/flags/ph.svg',
2178
2344
  code: 'tl',
2179
2345
  i: 34,
2180
2346
  llmKnowledge: 64,
@@ -2183,10 +2349,12 @@ const LANGUAGES = {
2183
2349
  en: 'Tagalog',
2184
2350
  es: 'Tagalo',
2185
2351
  },
2352
+ status: 'commingsoon',
2186
2353
  },
2187
2354
  lt: {
2188
2355
  nativeName: 'Lietuvių',
2189
2356
  flag: '🇱🇹',
2357
+ flagImg: 'assets/flags/lt.svg',
2190
2358
  code: 'lt',
2191
2359
  i: 35,
2192
2360
  llmKnowledge: 63,
@@ -2195,10 +2363,12 @@ const LANGUAGES = {
2195
2363
  en: 'Lithuanian',
2196
2364
  es: 'Lituano',
2197
2365
  },
2366
+ status: 'commingsoon',
2198
2367
  },
2199
2368
  lv: {
2200
2369
  nativeName: 'Latviešu',
2201
2370
  flag: '🇱🇻',
2371
+ flagImg: 'assets/flags/lv.svg',
2202
2372
  code: 'lv',
2203
2373
  i: 36,
2204
2374
  llmKnowledge: 62,
@@ -2207,10 +2377,12 @@ const LANGUAGES = {
2207
2377
  en: 'Latvian',
2208
2378
  es: 'Letón',
2209
2379
  },
2380
+ status: 'commingsoon',
2210
2381
  },
2211
2382
  sl: {
2212
2383
  nativeName: 'Slovenščina',
2213
2384
  flag: '🇸🇮',
2385
+ flagImg: 'assets/flags/si.svg',
2214
2386
  code: 'sl',
2215
2387
  i: 37,
2216
2388
  llmKnowledge: 61,
@@ -2219,10 +2391,12 @@ const LANGUAGES = {
2219
2391
  en: 'Slovenian',
2220
2392
  es: 'Esloveno',
2221
2393
  },
2394
+ status: 'commingsoon',
2222
2395
  },
2223
2396
  et: {
2224
2397
  nativeName: 'Eesti',
2225
2398
  flag: '🇪🇪',
2399
+ flagImg: 'assets/flags/ee.svg',
2226
2400
  code: 'et',
2227
2401
  i: 38,
2228
2402
  llmKnowledge: 60,
@@ -2231,10 +2405,12 @@ const LANGUAGES = {
2231
2405
  en: 'Estonian',
2232
2406
  es: 'Estonio',
2233
2407
  },
2408
+ status: 'commingsoon',
2234
2409
  },
2235
2410
  ms: {
2236
2411
  nativeName: 'Bahasa Melayu',
2237
2412
  flag: '🇲🇾',
2413
+ flagImg: 'assets/flags/my.svg',
2238
2414
  code: 'ms',
2239
2415
  i: 39,
2240
2416
  llmKnowledge: 59,
@@ -2243,10 +2419,12 @@ const LANGUAGES = {
2243
2419
  en: 'Malay',
2244
2420
  es: 'Malayo',
2245
2421
  },
2422
+ status: 'commingsoon',
2246
2423
  },
2247
2424
  sw: {
2248
2425
  nativeName: 'Kiswahili',
2249
2426
  flag: '🇹🇿',
2427
+ flagImg: 'assets/flags/tz.svg',
2250
2428
  code: 'sw',
2251
2429
  i: 40,
2252
2430
  llmKnowledge: 58,
@@ -2255,10 +2433,12 @@ const LANGUAGES = {
2255
2433
  en: 'Swahili',
2256
2434
  es: 'Suajili',
2257
2435
  },
2436
+ status: 'commingsoon',
2258
2437
  },
2259
2438
  fa: {
2260
2439
  nativeName: 'فارسی (Fārsī)',
2261
2440
  flag: '🇮🇷',
2441
+ flagImg: 'assets/flags/ir.svg',
2262
2442
  code: 'fa',
2263
2443
  i: 41,
2264
2444
  llmKnowledge: 57,
@@ -2267,10 +2447,12 @@ const LANGUAGES = {
2267
2447
  en: 'Persian/Farsi',
2268
2448
  es: 'Persa',
2269
2449
  },
2450
+ status: 'commingsoon',
2270
2451
  },
2271
2452
  bn: {
2272
2453
  nativeName: 'বাংলা (Bangla)',
2273
2454
  flag: '🇧🇩',
2455
+ flagImg: 'assets/flags/bd.svg',
2274
2456
  code: 'bn',
2275
2457
  i: 42,
2276
2458
  llmKnowledge: 56,
@@ -2279,10 +2461,12 @@ const LANGUAGES = {
2279
2461
  en: 'Bengali',
2280
2462
  es: 'Bengalí',
2281
2463
  },
2464
+ status: 'commingsoon',
2282
2465
  },
2283
2466
  ur: {
2284
2467
  nativeName: 'اردو (Urdū)',
2285
2468
  flag: '🇵🇰',
2469
+ flagImg: 'assets/flags/pk.svg',
2286
2470
  code: 'ur',
2287
2471
  i: 43,
2288
2472
  llmKnowledge: 55,
@@ -2291,10 +2475,12 @@ const LANGUAGES = {
2291
2475
  en: 'Urdu',
2292
2476
  es: 'Urdu',
2293
2477
  },
2478
+ status: 'commingsoon',
2294
2479
  },
2295
2480
  sr: {
2296
2481
  nativeName: 'Српски (Srpski)',
2297
2482
  flag: '🇷🇸',
2483
+ flagImg: 'assets/flags/rs.svg',
2298
2484
  code: 'sr',
2299
2485
  i: 44,
2300
2486
  llmKnowledge: 54,
@@ -2303,10 +2489,12 @@ const LANGUAGES = {
2303
2489
  en: 'Serbian',
2304
2490
  es: 'Serbio',
2305
2491
  },
2492
+ status: 'commingsoon',
2306
2493
  },
2307
2494
  is: {
2308
2495
  nativeName: 'Íslenska',
2309
2496
  flag: '🇮🇸',
2497
+ flagImg: 'assets/flags/is.svg',
2310
2498
  code: 'is',
2311
2499
  i: 45,
2312
2500
  llmKnowledge: 53,
@@ -2315,10 +2503,12 @@ const LANGUAGES = {
2315
2503
  en: 'Icelandic',
2316
2504
  es: 'Islandés',
2317
2505
  },
2506
+ status: 'commingsoon',
2318
2507
  },
2319
2508
  ta: {
2320
2509
  nativeName: 'தமிழ் (Tamiḻ)',
2321
2510
  flag: '🇱🇰',
2511
+ flagImg: 'assets/flags/lk.svg',
2322
2512
  code: 'ta',
2323
2513
  i: 46,
2324
2514
  llmKnowledge: 52,
@@ -2327,10 +2517,12 @@ const LANGUAGES = {
2327
2517
  en: 'Tamil',
2328
2518
  es: 'Tamil',
2329
2519
  },
2520
+ status: 'commingsoon',
2330
2521
  },
2331
2522
  mr: {
2332
2523
  nativeName: 'मराठी (Marāṭhī)',
2333
2524
  flag: '🇮🇳',
2525
+ flagImg: 'assets/flags/in.svg',
2334
2526
  code: 'mr',
2335
2527
  i: 47,
2336
2528
  llmKnowledge: 51,
@@ -2339,10 +2531,12 @@ const LANGUAGES = {
2339
2531
  en: 'Marathi',
2340
2532
  es: 'Maratí',
2341
2533
  },
2534
+ status: 'commingsoon',
2342
2535
  },
2343
2536
  my: {
2344
2537
  nativeName: 'မြန်မာဘာသာ (Myanmar)',
2345
2538
  flag: '🇲🇲',
2539
+ flagImg: 'assets/flags/mm.svg',
2346
2540
  code: 'my',
2347
2541
  i: 48,
2348
2542
  llmKnowledge: 50,
@@ -2351,10 +2545,12 @@ const LANGUAGES = {
2351
2545
  en: 'Burmese',
2352
2546
  es: 'Birmano',
2353
2547
  },
2548
+ status: 'commingsoon',
2354
2549
  },
2355
2550
  cy: {
2356
2551
  nativeName: 'Cymraeg',
2357
2552
  flag: '🏴󠁧󠁢󠁷󠁬󠁳󠁿',
2553
+ flagImg: 'assets/flags/cy.svg',
2358
2554
  code: 'cy',
2359
2555
  i: 49,
2360
2556
  llmKnowledge: 49,
@@ -2363,10 +2559,12 @@ const LANGUAGES = {
2363
2559
  en: 'Welsh',
2364
2560
  es: 'Galés',
2365
2561
  },
2562
+ status: 'commingsoon',
2366
2563
  },
2367
2564
  ha: {
2368
2565
  nativeName: 'Hausa',
2369
2566
  flag: '🇳🇬',
2567
+ flagImg: 'assets/flags/ng.svg',
2370
2568
  code: 'ha',
2371
2569
  i: 50,
2372
2570
  llmKnowledge: 48,
@@ -2375,10 +2573,12 @@ const LANGUAGES = {
2375
2573
  en: 'Hausa',
2376
2574
  es: 'Hausa',
2377
2575
  },
2576
+ status: 'commingsoon',
2378
2577
  },
2379
2578
  eu: {
2380
2579
  nativeName: 'Euskara',
2381
2580
  flag: '🇪🇸',
2581
+ flagImg: 'assets/flags/es.svg',
2382
2582
  code: 'eu',
2383
2583
  i: 51,
2384
2584
  llmKnowledge: 47,
@@ -2387,10 +2587,12 @@ const LANGUAGES = {
2387
2587
  en: 'Basque',
2388
2588
  es: 'Vasco',
2389
2589
  },
2590
+ status: 'commingsoon',
2390
2591
  },
2391
2592
  ga: {
2392
2593
  nativeName: 'Gaeilge',
2393
2594
  flag: '🇮🇪',
2595
+ flagImg: 'assets/flags/ie.svg',
2394
2596
  code: 'ga',
2395
2597
  i: 52,
2396
2598
  llmKnowledge: 46,
@@ -2399,10 +2601,12 @@ const LANGUAGES = {
2399
2601
  en: 'Irish',
2400
2602
  es: 'Irlandés',
2401
2603
  },
2604
+ status: 'commingsoon',
2402
2605
  },
2403
2606
  sd: {
2404
2607
  nativeName: 'سنڌي (Sindhī)',
2405
2608
  flag: '🇵🇰',
2609
+ flagImg: 'assets/flags/pk.svg',
2406
2610
  code: 'sd',
2407
2611
  i: 53,
2408
2612
  llmKnowledge: 45,
@@ -2411,10 +2615,12 @@ const LANGUAGES = {
2411
2615
  en: 'Sindhi',
2412
2616
  es: 'Sindi',
2413
2617
  },
2618
+ status: 'commingsoon',
2414
2619
  },
2415
2620
  am: {
2416
2621
  nativeName: 'አማርኛ (Amarəñña)',
2417
2622
  flag: '🇪🇹',
2623
+ flagImg: 'assets/flags/et.svg',
2418
2624
  code: 'am',
2419
2625
  i: 54,
2420
2626
  llmKnowledge: 44,
@@ -2423,10 +2629,12 @@ const LANGUAGES = {
2423
2629
  en: 'Amharic',
2424
2630
  es: 'Amárico',
2425
2631
  },
2632
+ status: 'commingsoon',
2426
2633
  },
2427
2634
  jv: {
2428
2635
  nativeName: 'Basa Jawa',
2429
2636
  flag: '🇮🇩',
2637
+ flagImg: 'assets/flags/id.svg',
2430
2638
  code: 'jv',
2431
2639
  i: 55,
2432
2640
  llmKnowledge: 43,
@@ -2435,10 +2643,12 @@ const LANGUAGES = {
2435
2643
  en: 'Javanese',
2436
2644
  es: 'Javanés',
2437
2645
  },
2646
+ status: 'commingsoon',
2438
2647
  },
2439
2648
  km: {
2440
2649
  nativeName: 'ភាសាខ្មែរ (Phéasa Khmér)',
2441
2650
  flag: '🇰🇭',
2651
+ flagImg: 'assets/flags/kh.svg',
2442
2652
  code: 'km',
2443
2653
  i: 56,
2444
2654
  llmKnowledge: 42,
@@ -2447,10 +2657,12 @@ const LANGUAGES = {
2447
2657
  en: 'Khmer',
2448
2658
  es: 'Jemer',
2449
2659
  },
2660
+ status: 'commingsoon',
2450
2661
  },
2451
2662
  yo: {
2452
2663
  nativeName: 'Yorùbá',
2453
2664
  flag: '🇳🇬',
2665
+ flagImg: 'assets/flags/ng.svg',
2454
2666
  code: 'yo',
2455
2667
  i: 57,
2456
2668
  llmKnowledge: 41,
@@ -2459,10 +2671,12 @@ const LANGUAGES = {
2459
2671
  en: 'Yoruba',
2460
2672
  es: 'Yoruba',
2461
2673
  },
2674
+ status: 'commingsoon',
2462
2675
  },
2463
2676
  gl: {
2464
2677
  nativeName: 'Galego',
2465
2678
  flag: '🇪🇸',
2679
+ flagImg: 'assets/flags/es.svg',
2466
2680
  code: 'gl',
2467
2681
  i: 58,
2468
2682
  llmKnowledge: 40,
@@ -2471,6 +2685,7 @@ const LANGUAGES = {
2471
2685
  en: 'Galician',
2472
2686
  es: 'Gallego',
2473
2687
  },
2688
+ status: 'commingsoon',
2474
2689
  },
2475
2690
  };
2476
2691
 
@@ -2483,5 +2698,5 @@ const LANGUAGES = {
2483
2698
  * Generated bundle index. Do not edit.
2484
2699
  */
2485
2700
 
2486
- export { AudioSpeed, AudioSpeedReverse, ChatUserSettings, ConfirmComponent, ConfirmService, DCFilterBarComponent, DCProgressToastComponent, DcAuditableViewerComponent, DcExtensionsViewerComponent, DcLearnableViewerComponent, DcManageableViewerComponent, DcReactionsViewerComponent, EModelQuality, EmptyStateComponent, EntityBaseListComponent, EntityCommunicationService, GetPathPipe, HTTP_CORE_CONFIG, HttpCoreService, IAIModel, LANGUAGES, LoadingBarComponent, LoadingBarService, ModelQualityOptions, OptionValue, PaginationBase, PromptService, QuickTableComponent, TOAST_ALERTS_TOKEN, ToastAlertsAbstractService, availibleFilters, extractJsonFromString, formatCamelCaseString, provideToastAlert, sortOptions, sortTypes };
2701
+ export { AudioSpeed, AudioSpeedReverse, ChatUserSettings, ConfirmComponent, ConfirmService, DCFilterBarComponent, DCProgressToastComponent, DcAuditableViewerComponent, DcExtensionsViewerComponent, DcLearnableViewerComponent, DcManageableViewerComponent, DcReactionsViewerComponent, EModelQuality, EmptyStateComponent, EntityBaseFormComponent, EntityBaseListComponent, EntityCommunicationService, GetPathPipe, HTTP_CORE_CONFIG, HttpCoreService, IAIModel, LANGUAGES, LoadingBarComponent, LoadingBarService, ModelQualityOptions, OptionValue, PaginationBase, PromptService, QuickTableComponent, TOAST_ALERTS_TOKEN, ToastAlertsAbstractService, availibleFilters, extractJsonFromString, formatCamelCaseString, provideToastAlert, sortOptions, sortTypes };
2487
2702
  //# sourceMappingURL=dataclouder-ngx-core.mjs.map