mapa-frontend-i18n 1.2.2 → 1.3.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/index.d.ts CHANGED
@@ -47,6 +47,7 @@ interface InitializeAppLanguageOptions {
47
47
  declare function initializeAppLanguage(options?: InitializeAppLanguageOptions): AppLanguage;
48
48
 
49
49
  interface ValidationContext {
50
+ actualLength?: number;
50
51
  max?: string | number;
51
52
  min?: string | number;
52
53
  requiredLength?: number;
@@ -84,6 +85,14 @@ interface MapaUiTextGroups {
84
85
  rangeLabel: (page: number, pageSize: number, length: number) => string;
85
86
  showingRangeLabel: (page: number, pageSize: number, length: number) => string;
86
87
  };
88
+ warning: {
89
+ lowReliabilityTitle: string;
90
+ expirationLimitTitle: string;
91
+ };
92
+ table: {
93
+ emptyTitle: string;
94
+ emptySubtitle: string;
95
+ };
87
96
  validation: {
88
97
  cnpj: ValidationTextResolver;
89
98
  cpf: ValidationTextResolver;
@@ -152,6 +161,14 @@ declare const MAPA_UI_TEXTS_PT_BR: {
152
161
  rangeLabel: (page: number, pageSize: number, length: number) => string;
153
162
  showingRangeLabel: (page: number, pageSize: number, length: number) => string;
154
163
  };
164
+ warning: {
165
+ lowReliabilityTitle: string;
166
+ expirationLimitTitle: string;
167
+ };
168
+ table: {
169
+ emptyTitle: string;
170
+ emptySubtitle: string;
171
+ };
155
172
  validation: {
156
173
  cnpj: string;
157
174
  cpf: string;
@@ -167,4 +184,4 @@ declare const MAPA_UI_TEXTS_PT_BR: {
167
184
  declare function getMapaUiTexts(language: AppLanguage): PartialMapaUiTexts;
168
185
 
169
186
  export { ANGULAR_RUNTIME_TRANSLATIONS, APP_LANGUAGE_OPTIONS, APP_LANGUAGE_STORAGE_KEY, DEFAULT_APP_LANGUAGE, MAPA_UI_TEXTS_PT_BR, MA_TRANSLATIONS, MCA_TRANSLATIONS, MENU_TRANSLATIONS, MF_TRANSLATIONS, MGA_TRANSLATIONS, MGC_TRANSLATIONS, MO_TRANSLATIONS, MP_TRANSLATIONS, MV_TRANSLATIONS, applyDocumentLanguage, applyPaginatorIntl, formatPaginatorRange, formatPaginatorShowingRange, getAngularLocale, getAppLanguageOption, getIntlLocale, getMapaUiTexts, getPaginatorNavigationLabels, getStoredAppLanguage, initializeAppLanguage, isAppLanguage, persistAppLanguage, resolveAppLanguage };
170
- export type { AppLanguage, AppLanguageOption, InitializeAppLanguageOptions, PartialMapaUiTexts };
187
+ export type { AppLanguage, AppLanguageOption, InitializeAppLanguageOptions, MapaUiTextGroups, PartialMapaUiTexts, ValidationContext, ValidationTextResolver };
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mapa-frontend-i18n",
3
- "version": "1.2.2",
3
+ "version": "1.3.0",
4
4
  "peerDependencies": {
5
5
  "@angular/localize": "^20.0.0"
6
6
  },
Binary file