@acorex/core 20.7.37 → 20.7.38
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/date-time/index.d.ts +19 -17
- package/fesm2022/acorex-core-date-time.mjs +80 -66
- package/fesm2022/acorex-core-date-time.mjs.map +1 -1
- package/fesm2022/acorex-core-locale.mjs +19 -2
- package/fesm2022/acorex-core-locale.mjs.map +1 -1
- package/fesm2022/acorex-core-translation.mjs +30 -4
- package/fesm2022/acorex-core-translation.mjs.map +1 -1
- package/locale/index.d.ts +5 -0
- package/package.json +1 -1
- package/translation/index.d.ts +2 -0
package/package.json
CHANGED
package/translation/index.d.ts
CHANGED
|
@@ -113,6 +113,8 @@ declare class AXTranslationService {
|
|
|
113
113
|
readonly langChanges$: Observable<string>;
|
|
114
114
|
readonly currentLocale$: Observable<string>;
|
|
115
115
|
constructor();
|
|
116
|
+
private preloadLocaleTranslations;
|
|
117
|
+
private peekTranslation;
|
|
116
118
|
setActiveLang(lang: AXTranslateLang): void;
|
|
117
119
|
getActiveLang(): AXTranslateLang;
|
|
118
120
|
getDefaultLang(): AXTranslateLang;
|