mapa-library-ui 1.8.0 → 2.0.1

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.
Files changed (42) hide show
  1. package/README.md +2 -3
  2. package/fesm2022/mapa-library-ui-src-lib-components-capability.mjs +42 -35
  3. package/fesm2022/mapa-library-ui-src-lib-components-capability.mjs.map +1 -1
  4. package/fesm2022/mapa-library-ui-src-lib-components-chart.mjs +42 -35
  5. package/fesm2022/mapa-library-ui-src-lib-components-chart.mjs.map +1 -1
  6. package/fesm2022/mapa-library-ui-src-lib-components-datepicker.mjs +648 -125
  7. package/fesm2022/mapa-library-ui-src-lib-components-datepicker.mjs.map +1 -1
  8. package/fesm2022/mapa-library-ui-src-lib-components-dropdown-tree.mjs +42 -35
  9. package/fesm2022/mapa-library-ui-src-lib-components-dropdown-tree.mjs.map +1 -1
  10. package/fesm2022/mapa-library-ui-src-lib-components-dropdown.mjs +42 -35
  11. package/fesm2022/mapa-library-ui-src-lib-components-dropdown.mjs.map +1 -1
  12. package/fesm2022/mapa-library-ui-src-lib-components-filters.mjs +42 -35
  13. package/fesm2022/mapa-library-ui-src-lib-components-filters.mjs.map +1 -1
  14. package/fesm2022/mapa-library-ui-src-lib-components-form.mjs +569 -322
  15. package/fesm2022/mapa-library-ui-src-lib-components-form.mjs.map +1 -1
  16. package/fesm2022/mapa-library-ui-src-lib-components-input.mjs +42 -35
  17. package/fesm2022/mapa-library-ui-src-lib-components-input.mjs.map +1 -1
  18. package/fesm2022/mapa-library-ui-src-lib-components-scale-parameterization.mjs +42 -35
  19. package/fesm2022/mapa-library-ui-src-lib-components-scale-parameterization.mjs.map +1 -1
  20. package/fesm2022/mapa-library-ui-src-lib-components-scale.mjs +42 -35
  21. package/fesm2022/mapa-library-ui-src-lib-components-scale.mjs.map +1 -1
  22. package/fesm2022/mapa-library-ui-src-lib-components-table.mjs +522 -581
  23. package/fesm2022/mapa-library-ui-src-lib-components-table.mjs.map +1 -1
  24. package/fesm2022/mapa-library-ui-src-lib-components-textarea.mjs +42 -35
  25. package/fesm2022/mapa-library-ui-src-lib-components-textarea.mjs.map +1 -1
  26. package/fesm2022/mapa-library-ui-src-lib-components-warning.mjs +42 -35
  27. package/fesm2022/mapa-library-ui-src-lib-components-warning.mjs.map +1 -1
  28. package/fesm2022/mapa-library-ui-src-lib-core-utils.mjs +1 -4
  29. package/fesm2022/mapa-library-ui-src-lib-core-utils.mjs.map +1 -1
  30. package/fesm2022/mapa-library-ui.mjs +1272 -1018
  31. package/fesm2022/mapa-library-ui.mjs.map +1 -1
  32. package/index.d.ts +347 -186
  33. package/mapa-library-ui-2.0.1.tgz +0 -0
  34. package/package.json +3 -10
  35. package/src/lib/components/datepicker/index.d.ts +165 -27
  36. package/src/lib/components/group-report/index.d.ts +6 -1
  37. package/src/lib/components/table/index.d.ts +150 -99
  38. package/src/lib/core/utils/index.d.ts +1 -2
  39. package/fesm2022/mapa-library-ui-src-lib-components-datepicker-range.mjs +0 -733
  40. package/fesm2022/mapa-library-ui-src-lib-components-datepicker-range.mjs.map +0 -1
  41. package/mapa-library-ui-1.8.0.tgz +0 -0
  42. package/src/lib/components/datepicker-range/index.d.ts +0 -207
package/index.d.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  import { FormControl, NgModel, AbstractControl, FormGroup, ControlValueAccessor } from '@angular/forms';
2
2
  import * as i0 from '@angular/core';
3
- import { EventEmitter, OnInit, AfterViewInit, ElementRef, OnChanges, OnDestroy, Renderer2, SimpleChanges, InjectionToken, Provider, PipeTransform, ChangeDetectorRef, DoCheck, Injector, TemplateRef, ApplicationRef } from '@angular/core';
3
+ import { EventEmitter, OnInit, AfterViewInit, ElementRef, OnChanges, OnDestroy, Renderer2, SimpleChanges, InjectionToken, Provider, PipeTransform, ChangeDetectorRef, Injector, TemplateRef, ApplicationRef } from '@angular/core';
4
4
  import { ApexAxisChartSeries, ApexChart, ApexTitleSubtitle, ApexXAxis, ApexStroke, ApexFill, ApexMarkers, ApexYAxis, ApexLegend, ApexResponsive } from 'ng-apexcharts';
5
5
  import { UrlTree, Params } from '@angular/router';
6
6
  import { MatInput } from '@angular/material/input';
@@ -12,11 +12,11 @@ export { PartialMapaUiTexts, ValidationTextResolver } from 'mapa-frontend-i18n';
12
12
  import { DomSanitizer, SafeResourceUrl } from '@angular/platform-browser';
13
13
  import * as mapa_library_ui from 'mapa-library-ui';
14
14
  import { MatAccordion } from '@angular/material/expansion';
15
- import { MatDatepicker } from '@angular/material/datepicker';
16
- import { MatDialogRef, MatDialog, MatDialogConfig } from '@angular/material/dialog';
17
15
  import { ConnectedPosition } from '@angular/cdk/overlay';
18
- import { Sort, MatSort } from '@angular/material/sort';
19
- import { MatTableDataSource, MatTable } from '@angular/material/table';
16
+ import { DatepickerValue } from 'ngxsmk-datepicker';
17
+ import { MatDialogRef, MatDialog, MatDialogConfig } from '@angular/material/dialog';
18
+ import { Sort, MatSort, SortDirection } from '@angular/material/sort';
19
+ import { MatTableDataSource } from '@angular/material/table';
20
20
  import { MatIconRegistry } from '@angular/material/icon';
21
21
  import { MatMenuTrigger } from '@angular/material/menu';
22
22
  import { HttpClient } from '@angular/common/http';
@@ -146,12 +146,52 @@ declare class DropdownTree extends ElementBase {
146
146
  controlType: string;
147
147
  }
148
148
 
149
+ type DatepickerMode = 'single' | 'range' | 'multiple';
150
+ /**
151
+ * Atalho de período exibido no painel do modo `range`.
152
+ *
153
+ * Use `daysBack` para uma faixa relativa a hoje (resolvida por
154
+ * `getRelativeDateRange`) ou `startDate`/`endDate` para uma faixa fixa. Quando
155
+ * ambos são informados, a faixa fixa prevalece.
156
+ */
157
+ interface DatepickerPreset {
158
+ label: string;
159
+ daysBack?: number;
160
+ startDate?: Date;
161
+ endDate?: Date;
162
+ }
163
+ type ElementBaseOptions = NonNullable<ConstructorParameters<typeof ElementBase>[0]>;
164
+ interface DatepickerOptions extends ElementBaseOptions {
165
+ mode?: DatepickerMode;
166
+ disabledDates?: (string | Date)[];
167
+ isInvalidDate?: (date: Date) => boolean;
168
+ presets?: DatepickerPreset[];
169
+ presetsLabel?: string;
170
+ calendars?: 1 | 2 | 3;
171
+ weekStart?: number | null;
172
+ closeOnSelect?: boolean;
173
+ }
149
174
  declare class Datepicker extends ElementBase {
150
175
  controlType: string;
176
+ mode: DatepickerMode;
177
+ disabledDates?: (string | Date)[];
178
+ isInvalidDate?: (date: Date) => boolean;
179
+ presets?: DatepickerPreset[];
180
+ /** Rótulo do gatilho de presets enquanto nenhum atalho está ativo. */
181
+ presetsLabel?: string;
182
+ /** `undefined` resolve para 2 no modo `range` e 1 nos demais. */
183
+ calendars?: 1 | 2 | 3;
184
+ weekStart: number | null;
185
+ closeOnSelect: boolean;
186
+ constructor(options?: DatepickerOptions);
151
187
  }
152
-
153
- declare class DatepickerRange extends ElementBase {
188
+ /**
189
+ * @deprecated Use `Datepicker` with `mode: "range"`.
190
+ * Kept as a compatibility bridge for 2.x consumers.
191
+ */
192
+ declare class DatepickerRange extends Datepicker {
154
193
  controlType: string;
194
+ constructor(options?: DatepickerOptions);
155
195
  }
156
196
 
157
197
  declare class InputText extends ElementBase {
@@ -238,14 +278,19 @@ interface TableColumnStatus {
238
278
  label?: string[];
239
279
  color?: string[];
240
280
  textColor?: string[];
241
- style?: "square" | "round";
281
+ style?: 'square' | 'round';
242
282
  }
243
283
  interface TableColumn {
244
284
  key: string;
245
285
  label: string;
286
+ /** @deprecated Prefer `sortable` in new integrations. */
246
287
  sort?: boolean;
288
+ sortable?: boolean;
247
289
  status?: TableColumnStatus;
290
+ /** @deprecated Prefer `dateFormat` in new integrations. */
248
291
  mask?: string;
292
+ dateFormat?: string;
293
+ fallback?: string;
249
294
  width?: string;
250
295
  collapse?: string;
251
296
  align?: string;
@@ -398,6 +443,7 @@ type ValidationMessageContext = ValidationContext;
398
443
  declare const MAPA_UI_TEXTS: InjectionToken<Partial<{
399
444
  common: Partial<{
400
445
  selectAll: string;
446
+ retry: string;
401
447
  }>;
402
448
  filters: Partial<{
403
449
  clear: string;
@@ -434,6 +480,12 @@ declare const MAPA_UI_TEXTS: InjectionToken<Partial<{
434
480
  table: Partial<{
435
481
  emptyTitle: string;
436
482
  emptySubtitle: string;
483
+ loading: string;
484
+ errorTitle: string;
485
+ selectAllVisible: string;
486
+ selectionColumn: string;
487
+ selectRow: string;
488
+ selectNamedRow: (item: string) => string;
437
489
  }>;
438
490
  validation: Partial<{
439
491
  cnpj: ValidationTextResolver;
@@ -502,12 +554,6 @@ declare class SafeHtmlPipe implements PipeTransform {
502
554
  static ɵpipe: i0.ɵɵPipeDeclaration<SafeHtmlPipe, "safeHtml", true>;
503
555
  }
504
556
 
505
- declare class CPFPipe implements PipeTransform {
506
- transform(cpfValue: string | number | null | undefined): string;
507
- static ɵfac: i0.ɵɵFactoryDeclaration<CPFPipe, never>;
508
- static ɵpipe: i0.ɵɵPipeDeclaration<CPFPipe, "cpf", true>;
509
- }
510
-
511
557
  type MapaDateLocale = "pt-BR" | "en" | "es";
512
558
  type MapaDateFormat = "DD/MM/YYYY" | "MM/DD/YYYY";
513
559
  type DateInput$1 = Date | string | number | null | undefined;
@@ -517,7 +563,6 @@ declare function normalizeDateLocale(value: unknown): MapaDateLocale;
517
563
  declare function getActiveDateLocale(): MapaDateLocale;
518
564
  declare function isMonthFirstDateLocale(locale?: MapaDateLocale): boolean;
519
565
  declare function getActiveDateFormat(locale?: MapaDateLocale): MapaDateFormat;
520
- declare function getActiveMaterialDateFormat(locale?: MapaDateLocale): string;
521
566
  declare function getDateInputMask(_locale?: MapaDateLocale): string;
522
567
  declare function formatDateForLocale(date: Date, locale?: MapaDateLocale): string;
523
568
  declare function parseLocaleDateValue(value: string, locale?: MapaDateLocale): Date | null;
@@ -559,6 +604,39 @@ declare function toUtcRangeStartIso(value: DateInput$1): string | undefined;
559
604
  declare function toUtcRangeEndIso(value: DateInput$1): string | undefined;
560
605
  declare function toUtcDayExclusiveEndIso(value: DateInput$1): string | undefined;
561
606
 
607
+ /**
608
+ * Locale de data ativo exposto como sinal.
609
+ *
610
+ * `getActiveDateLocale()` lê do localStorage, que não é reativo. Em vez de
611
+ * consultar o valor a cada ciclo de change detection, observamos o
612
+ * `textsSignal` do `MapaI18nService`: toda troca de idioma do ecossistema
613
+ * passa por `setTexts()`. Como effects do Angular são agendados e não
614
+ * síncronos, quando o corpo do effect roda a gravação no localStorage feita
615
+ * logo após o `setTexts()` já aconteceu.
616
+ *
617
+ * Root-provided de propósito: um effect para toda a aplicação em vez de um por
618
+ * instância de datepicker.
619
+ */
620
+ declare class MapaDateLocaleService {
621
+ private readonly i18n;
622
+ private readonly localeState;
623
+ readonly localeSignal: i0.Signal<MapaDateLocale>;
624
+ constructor();
625
+ /**
626
+ * Relê o locale do storage. Cinto de segurança para consumidores que trocam
627
+ * o idioma sem passar por `setTexts()`.
628
+ */
629
+ refresh(): void;
630
+ static ɵfac: i0.ɵɵFactoryDeclaration<MapaDateLocaleService, never>;
631
+ static ɵprov: i0.ɵɵInjectableDeclaration<MapaDateLocaleService>;
632
+ }
633
+
634
+ declare class CPFPipe implements PipeTransform {
635
+ transform(cpfValue: string | number | null | undefined): string;
636
+ static ɵfac: i0.ɵɵFactoryDeclaration<CPFPipe, never>;
637
+ static ɵpipe: i0.ɵɵPipeDeclaration<CPFPipe, "cpf", true>;
638
+ }
639
+
562
640
  declare class LocaleDatePipe implements PipeTransform {
563
641
  transform(value: DateInput$1, dateStyle?: LocaleDateStyle): string;
564
642
  static ɵfac: i0.ɵɵFactoryDeclaration<LocaleDatePipe, never>;
@@ -1367,100 +1445,131 @@ declare class CheckboxComponent {
1367
1445
  static ɵcmp: i0.ɵɵComponentDeclaration<CheckboxComponent, "mapa-checkbox", never, { "color": { "alias": "color"; "required": false; }; "formControl": { "alias": "formControl"; "required": false; }; }, {}, never, never, true, never>;
1368
1446
  }
1369
1447
 
1370
- declare const MAPA_DATEPICKER_FORMATS: {
1371
- parse: {
1372
- dateInput: string;
1373
- };
1374
- display: {
1375
- dateInput: string;
1376
- monthYearLabel: string;
1377
- dateA11yLabel: string;
1378
- monthYearA11yLabel: string;
1379
- };
1380
- };
1448
+ interface MapaDatepickerRangeValue {
1449
+ startDate: string | null;
1450
+ endDate: string | null;
1451
+ }
1452
+ /** @deprecated Use `MapaDatepickerRangeValue`. */
1453
+ type MapaDatepickerRangeControlValue = MapaDatepickerRangeValue;
1454
+ /** @deprecated Use `FormGroup`. */
1455
+ type MapaDatepickerRangeFormGroup = FormGroup;
1456
+ type MapaDatepickerControlValue = string | MapaDatepickerRangeValue | string[] | null;
1457
+ /** Preset já resolvido em datas concretas, pronto para o dropdown. */
1458
+ interface MapaDatepickerPresetEntry {
1459
+ label: string;
1460
+ range: [Date, Date];
1461
+ }
1381
1462
  declare class MapaDatepicker implements OnInit {
1382
1463
  private readonly cdr;
1464
+ private readonly destroyRef;
1465
+ private readonly i18n;
1466
+ private readonly dateLocale;
1383
1467
  formGroup: FormGroup;
1384
1468
  element: Datepicker;
1385
- private readonly destroyRef;
1386
- readonly formDatepicker: FormGroup<{
1387
- date: FormControl<Date | null>;
1469
+ openedChange: EventEmitter<boolean>;
1470
+ private toggleButton?;
1471
+ private picker?;
1472
+ /** Controle do consumidor, resolvido por `element.key` no `ngOnInit`. */
1473
+ control: FormControl<MapaDatepickerControlValue>;
1474
+ /** Camada visível: strings mascaradas. `single` usa apenas `startDate`. */
1475
+ readonly formDisplay: FormGroup<{
1476
+ startDate: FormControl<string | null>;
1477
+ endDate: FormControl<string | null>;
1388
1478
  }>;
1389
- formControl: FormControl<string | null>;
1390
- constructor(cdr: ChangeDetectorRef);
1479
+ /** Camada do calendário: `Date`, no formato que o ngxsmk consome. */
1480
+ readonly pickerValue: i0.WritableSignal<DatepickerValue>;
1481
+ private readonly isOpenState;
1482
+ private readonly isPresetsOpenState;
1483
+ private localeState;
1484
+ private syncing;
1485
+ private presetsCache?;
1486
+ readonly overlayPositions: ConnectedPosition[];
1487
+ /**
1488
+ * Referências estáveis: com OnPush, devolver um literal novo a cada ciclo
1489
+ * marcaria o input do ngxsmk como alterado em toda change detection.
1490
+ */
1491
+ readonly ngxsmkClasses: {
1492
+ inputGroup: string;
1493
+ };
1494
+ private readonly emptyDisabledDates;
1495
+ private readonly neverInvalid;
1496
+ private readonly localeSync;
1391
1497
  ngOnInit(): void;
1392
- get minDate(): Date | null;
1393
- get maxDate(): Date | null;
1498
+ mode(): DatepickerMode;
1499
+ isOpen(): boolean;
1500
+ isDisabled(): boolean;
1501
+ isReadonly(): boolean;
1394
1502
  hasValue(): boolean;
1395
- cleanDatepicker(): void;
1396
- private syncDatepickerControl;
1397
- private updateExternalControl;
1398
- closePicker(picker: MatDatepicker<Date>): void;
1399
- private areDatesEqual;
1503
+ showClear(): boolean;
1504
+ shouldShowError(): boolean;
1505
+ /** Texto somente leitura do modo `multiple` — evita chaves novas de i18n. */
1506
+ selectedLabel(): string;
1507
+ mask(): string;
1508
+ singlePlaceholder(): string;
1509
+ get startDatePlaceholder(): string;
1510
+ get endDatePlaceholder(): string;
1511
+ ngxsmkLocale(): string;
1512
+ displayFormat(): string;
1513
+ minDate(): Date | null;
1514
+ maxDate(): Date | null;
1515
+ disabledDates(): (string | Date)[];
1516
+ isInvalidDate(): (date: Date) => boolean;
1517
+ /**
1518
+ * Um mês por padrão em todos os modos, para o painel ficar na largura do
1519
+ * campo. Dois meses são opt-in via `element.calendars`.
1520
+ */
1521
+ calendars(): number;
1522
+ weekStart(): number | null;
1523
+ /**
1524
+ * Presets já resolvidos em datas. Memoizado pela referência de
1525
+ * `element.presets` para não reconstruir `Date`s a cada change detection.
1526
+ *
1527
+ * Alimenta o nosso dropdown, não o painel nativo do ngxsmk: o layout dele é
1528
+ * ditado por media queries duplicadas que nenhum input ou variável controla
1529
+ * (coluna lateral acima de 992px, cards de 45px acima de 1024px), e o input
1530
+ * `classes` do componente de presets é morto — o template dele nunca o lê.
1531
+ */
1532
+ presetList(): MapaDatepickerPresetEntry[];
1533
+ hasPresets(): boolean;
1534
+ isPresetsOpen(): boolean;
1535
+ isPresetActive(entry: MapaDatepickerPresetEntry): boolean;
1536
+ presetsTriggerLabel(): string;
1537
+ togglePresets(): void;
1538
+ closePresets(): void;
1539
+ applyPreset(entry: MapaDatepickerPresetEntry): void;
1540
+ toggleCalendar(): void;
1541
+ closeCalendar(): void;
1542
+ handleOverlayOutsideClick(event: Event): void;
1543
+ handleEscape(): void;
1544
+ /** Seleção vinda do calendário. */
1545
+ handlePickerValue(value: DatepickerValue): void;
1546
+ clear(event?: Event): void;
1547
+ private locale;
1548
+ private handleLocaleChange;
1549
+ /** Digitação no campo mascarado. Passa o texto adiante verbatim. */
1550
+ private handleDisplayChange;
1551
+ private applyExternal;
1552
+ private emitExternal;
1553
+ private patchDisplay;
1554
+ private toPickerValue;
1555
+ private toExternal;
1556
+ private toDisplayValue;
1557
+ /** Forma canônica usada só para comparar — nunca é gravada no controle. */
1558
+ private serializeExternal;
1559
+ private emptyValue;
1560
+ private asRangeValue;
1561
+ private asPickerRange;
1562
+ private isCompleteRange;
1563
+ private shouldCloseAfterSelect;
1564
+ private buildPresetEntries;
1565
+ private resolvePreset;
1566
+ private setOpenState;
1400
1567
  static ɵfac: i0.ɵɵFactoryDeclaration<MapaDatepicker, never>;
1401
- static ɵcmp: i0.ɵɵComponentDeclaration<MapaDatepicker, "mapa-datepicker", never, { "formGroup": { "alias": "formGroup"; "required": false; }; "element": { "alias": "element"; "required": false; }; }, {}, never, never, true, never>;
1568
+ static ɵcmp: i0.ɵɵComponentDeclaration<MapaDatepicker, "mapa-datepicker, mapa-datepicker-range", never, { "formGroup": { "alias": "formGroup"; "required": true; }; "element": { "alias": "element"; "required": true; }; }, { "openedChange": "openedChange"; }, never, never, true, never>;
1402
1569
  }
1403
1570
 
1404
- interface MapaDatepickerRangeControlValue {
1405
- startDate: string | null;
1406
- endDate: string | null;
1407
- }
1408
- type MapaDatepickerRangeFormGroup = FormGroup;
1409
- type MapaDatepickerInternalRangeValue = {
1410
- startDate: Date | null;
1411
- endDate: Date | null;
1412
- };
1413
- type MapaDatepickerInternalRangeFormGroup = FormGroup<{
1414
- startDate: FormControl<MapaDatepickerInternalRangeValue["startDate"]>;
1415
- endDate: FormControl<MapaDatepickerInternalRangeValue["endDate"]>;
1416
- }>;
1417
- type MapaDatepickerRangeDisplayFormGroup = FormGroup<{
1418
- startDate: FormControl<string | null>;
1419
- endDate: FormControl<string | null>;
1420
- }>;
1421
- declare function getMapaDatepickerRangeFormats(): {
1422
- parse: {
1423
- dateInput: string;
1424
- };
1425
- display: {
1426
- dateInput: string;
1427
- monthYearLabel: string;
1428
- dateA11yLabel: string;
1429
- monthYearA11yLabel: string;
1430
- };
1431
- };
1432
- declare class MapaDatepickerRange implements OnInit, DoCheck {
1433
- private readonly i18n;
1434
- private readonly cdr;
1435
- formGroup: FormGroup;
1436
- element: DatepickerRange;
1437
- private readonly destroyRef;
1438
- private readonly dateAdapter;
1439
- private readonly emptyValue;
1440
- private currentLocale;
1441
- readonly formDatepicker: MapaDatepickerInternalRangeFormGroup;
1442
- readonly formDisplay: MapaDatepickerRangeDisplayFormGroup;
1443
- rangeControl: FormControl<MapaDatepickerRangeControlValue | null>;
1444
- constructor(i18n: MapaI18nService, cdr: ChangeDetectorRef);
1445
- get texts(): mapa_frontend_i18n.MapaUiTextGroups;
1446
- get dateInputMask(): string;
1447
- get activeDateFormat(): string;
1448
- ngOnInit(): void;
1449
- ngDoCheck(): void;
1450
- get startDatePlaceholder(): string;
1451
- get endDatePlaceholder(): string;
1452
- private syncFromExternal;
1453
- private updateExternalFromDisplay;
1454
- private updateExternalFromDatepicker;
1455
- private patchExternalValue;
1456
- private areDatesEqual;
1457
- cleanDatepicker(): void;
1458
- private getLocale;
1459
- private syncLocaleSettings;
1460
- static ɵfac: i0.ɵɵFactoryDeclaration<MapaDatepickerRange, never>;
1461
- static ɵcmp: i0.ɵɵComponentDeclaration<MapaDatepickerRange, "mapa-datepicker-range", never, { "formGroup": { "alias": "formGroup"; "required": false; }; "element": { "alias": "element"; "required": false; }; }, {}, never, never, true, never>;
1462
- }
1463
- type MapaDatepickerRangeComponent = MapaDatepickerRange;
1571
+ /** @deprecated Use `MapaDatepicker`. */
1572
+ type MapaDatepickerRangeComponent = MapaDatepicker;
1464
1573
 
1465
1574
  declare class MapaDialogComponent {
1466
1575
  data: any;
@@ -1853,105 +1962,157 @@ declare class MapaSvgIconComponent implements OnChanges {
1853
1962
 
1854
1963
  declare function customPaginatorFactory(i18n: MapaI18nService, injector: Injector): MatPaginatorIntl;
1855
1964
 
1856
- declare class MapaTableComponent implements AfterViewInit, OnChanges {
1857
- private cdr;
1858
- private readonly i18n;
1859
- columns: TableColumn[];
1860
- data: TableRowData[];
1965
+ type DataTableAlignment = 'start' | 'center' | 'end';
1966
+ type DataTableSortDirection = SortDirection;
1967
+ type DataTableColumn = TableColumn;
1968
+ interface DataTablePageChange {
1969
+ pageIndex: number;
1970
+ pageSize: number;
1971
+ }
1972
+ interface DataTableSortChange {
1973
+ active: string;
1974
+ direction: DataTableSortDirection;
1975
+ }
1976
+ interface DataTableSelectionChange {
1977
+ selectedKeys: string[];
1978
+ }
1979
+ interface MapaTableCellContext {
1980
+ $implicit: unknown;
1981
+ row: unknown;
1982
+ column: TableColumn;
1983
+ }
1984
+ declare class MapaTableCellDirective {
1985
+ columnKey: string;
1986
+ readonly templateRef: TemplateRef<MapaTableCellContext>;
1987
+ static ngTemplateContextGuard(_directive: MapaTableCellDirective, context: unknown): context is MapaTableCellContext;
1988
+ static ɵfac: i0.ɵɵFactoryDeclaration<MapaTableCellDirective, never>;
1989
+ static ɵdir: i0.ɵɵDirectiveDeclaration<MapaTableCellDirective, "ng-template[mapaTableCell]", never, { "columnKey": { "alias": "mapaTableCell"; "required": true; }; }, {}, never, never, true, never>;
1990
+ }
1991
+ declare class MapaTableComponent {
1992
+ columns: readonly TableColumn[];
1993
+ data: readonly unknown[];
1994
+ rowKey: string;
1995
+ caption: string;
1996
+ selectable?: boolean;
1997
+ showSelectAll: boolean;
1998
+ selectedKeys?: readonly string[];
1999
+ selectionLabelKey: string;
2000
+ /** @deprecated Prefer `selectable`. */
2001
+ checkbox?: boolean;
2002
+ /** @deprecated Prefer `selectedKeys`, `rowKey` and `selectionChange`. */
2003
+ selection?: SelectionModel<TableRowData>;
2004
+ loading?: boolean;
2005
+ finished?: boolean;
2006
+ error: boolean;
2007
+ emptyTitle?: string;
2008
+ emptySubtitle?: string | null;
2009
+ errorTitle?: string;
2010
+ errorSubtitle?: string | null;
2011
+ retryLabel?: string;
2012
+ /** @deprecated Prefer the individual state inputs. */
2013
+ status: TableStatus;
2014
+ /** @deprecated Prefer `emptyTitle` and `emptySubtitle`. */
2015
+ empty: TableEmptyState;
2016
+ pagination?: boolean;
1861
2017
  pageIndex: number;
1862
2018
  pageSize: number;
1863
2019
  totalCount: number;
2020
+ pageSizeOptions: readonly number[];
2021
+ /** @deprecated The paginator derives its pages from `totalCount` and `pageSize`. */
1864
2022
  totalPages: number;
1865
- checkbox: boolean | undefined;
1866
- selection: SelectionModel<TableRowData> | undefined;
1867
- actions?: MenuItem[] | undefined;
1868
- filterControl: FormControl<string | null> | undefined;
1869
- menuItems: MenuItem[];
1870
- menu: boolean | undefined;
2023
+ /** @deprecated Prefer `pagination`. */
1871
2024
  showPaginator: boolean;
1872
- status: TableStatus;
1873
- empty: TableEmptyState;
1874
2025
  paginatorShowFirstButton: boolean;
1875
2026
  paginatorShowLastButton: boolean;
1876
2027
  paginatorRenderButtonsNumber: number;
1877
2028
  paginatorHideDefaultArrows: boolean;
1878
- trigger: MatMenuTrigger;
1879
- table?: MatTable<TableRowData>;
1880
- rowClick: EventEmitter<RowClickEvent>;
1881
- selectedRows: EventEmitter<SelectedTableRow[]>;
1882
- onChangePage: EventEmitter<PageEvent>;
1883
- onSortChange: EventEmitter<Sort>;
1884
- paginator: MatPaginator;
1885
- sort: MatSort;
1886
- dataSource: MatTableDataSource<TableRowData>;
1887
- displayedColumns: string[];
1888
- currentSort: Sort | undefined;
1889
- desktopTableVisible: boolean;
2029
+ sortActive: string;
2030
+ sortDirection: DataTableSortDirection;
2031
+ /** @deprecated Prefer projected cells for new integrations. */
2032
+ actions?: MenuItem[];
2033
+ /** @deprecated Prefer projected cells for new integrations. */
2034
+ menuItems: MenuItem[];
2035
+ /** @deprecated The presence of a `menu` column controls menu rendering. */
2036
+ menu?: boolean;
2037
+ /** @deprecated Prefer filtering in the consuming feature. */
2038
+ filterControl?: FormControl<string | null>;
2039
+ readonly pageChange: EventEmitter<DataTablePageChange>;
2040
+ readonly sortChange: EventEmitter<DataTableSortChange>;
2041
+ readonly selectionChange: EventEmitter<DataTableSelectionChange>;
2042
+ readonly retry: EventEmitter<void>;
2043
+ /** @deprecated Prefer `pageChange`. */
2044
+ readonly onChangePage: EventEmitter<PageEvent>;
2045
+ /** @deprecated Prefer `sortChange`. */
2046
+ readonly onSortChange: EventEmitter<Sort>;
2047
+ /** @deprecated Prefer `selectionChange`. */
2048
+ readonly selectedRows: EventEmitter<SelectedTableRow<TableRowData>[]>;
2049
+ readonly rowClick: EventEmitter<RowClickEvent<TableRowData>>;
2050
+ private readonly projectedCells;
2051
+ private readonly cdr;
1890
2052
  private readonly destroyRef;
1891
- private filterControlSubscription?;
1892
- constructor(cdr: ChangeDetectorRef, i18n: MapaI18nService);
1893
- get texts(): mapa_frontend_i18n.MapaUiTextGroups;
1894
- get selectAllLabel(): string;
1895
- get paginatorPageIndex(): number;
1896
- get shouldShowPaginator(): boolean;
1897
- get resolvedEmptyTitle(): string;
1898
- get resolvedEmptySubtitle(): string | null;
1899
- get skeletonRows(): number[];
1900
- ngAfterViewInit(): void;
1901
- ngOnChanges(changes: SimpleChanges): void;
1902
- private hasViewStateChanges;
1903
- private refreshTableState;
1904
- private rebuildDesktopTable;
1905
- trackColumn(index: number, column: TableColumn): string;
1906
- getSkeletonColumnWidth(column: TableColumn): string;
1907
- setupFilter(): void;
1908
- isAllSelected(): boolean;
1909
- toggleAllRows(): void;
1910
- checkboxLabel(row?: TableRowData): string;
1911
- sortData(column: TableColumn): void;
1912
- sortDataFunction(sort: Sort): void;
1913
- emitRowClick(row: TableRowData, action: string): void;
1914
- toggleSelection(row: TableRowData): void;
1915
- getSelectedValues(): void;
1916
- generateColumns(): void;
1917
- columnExists(columns: TableColumn[], key: string): boolean;
1918
- generateGroupData(): void;
1919
- isBoolean(column: TableColumn, row: TableRowData): boolean;
1920
- isMaskedData(column: TableColumn, row: TableRowData): boolean;
1921
- getValueAsDate(column: TableColumn, row: TableRowData): Date;
1922
- getCellClass(column: TableColumn, row: TableRowData): string;
1923
- getCellBg(column: TableColumn, row: TableRowData): string;
1924
- getCellTextColor(column: TableColumn, row: TableRowData): string;
1925
- getValue(row: {
1926
- value?: string | number | null;
1927
- }): string;
1928
- changePage(event: PageEvent): void;
1929
- toggleMenu(): void;
1930
- getBackgroundColor(column: TableColumn, row: TableRowData): string;
1931
- getTextColor(column: TableColumn, row: TableRowData): string;
1932
- hasCustomClass(column: TableColumn, row: TableRowData, key: string): boolean;
1933
- getCustomClass(column: TableColumn, row: TableRowData, key: string): string;
1934
- hasCellStyleClass(row: TableRowData, key: string): boolean;
1935
- getCellStyleClass(row: TableRowData, key: string): string;
1936
- handleMenu(selected: MenuActionEvent<unknown>): void;
1937
- hasIndividualMenu(row: TableRowData | undefined): boolean;
1938
- getMenuItems(row: TableRowData | undefined): MenuItem[];
1939
- getActionItems(row: TableRowData | undefined): MenuItem[];
1940
- getStatusLabel(column: TableColumn, row: TableRowData): string;
1941
- getCellContent(row: TableRowData, key: string): string;
1942
- hasActionsColumn(): boolean;
1943
- hasMenuColumn(): boolean;
1944
- setSvgName(image: string): string;
2053
+ private readonly i18n;
2054
+ private localSort;
2055
+ private filterValue;
2056
+ private observedFilter?;
2057
+ private filterSubscription?;
2058
+ protected get texts(): mapa_frontend_i18n.MapaUiTextGroups;
2059
+ protected get visibleData(): readonly unknown[];
2060
+ protected get isSelectable(): boolean;
2061
+ protected get isLoading(): boolean;
2062
+ protected get isFinished(): boolean;
2063
+ protected get resolvedEmptyTitle(): string;
2064
+ protected get resolvedEmptySubtitle(): string | null;
2065
+ protected get resolvedErrorTitle(): string;
2066
+ protected get resolvedErrorSubtitle(): string | null;
2067
+ protected get resolvedRetryLabel(): string;
2068
+ protected get zeroBasedPageIndex(): number;
2069
+ protected get shouldShowPaginator(): boolean;
2070
+ protected get skeletonRows(): number[];
2071
+ protected skeletonColumnWidth(column: TableColumn): string;
2072
+ protected rowIdentity(row: unknown, index: number): unknown;
2073
+ protected getRowKey(row: unknown): string;
2074
+ protected isSelected(row: unknown): boolean;
2075
+ protected allVisibleSelected(): boolean;
2076
+ protected someVisibleSelected(): boolean;
2077
+ protected toggleRow(row: unknown, selected: boolean): void;
2078
+ protected toggleVisibleRows(selected: boolean): void;
2079
+ protected selectionLabel(row: unknown): string;
2080
+ protected cellTemplate(columnKey: string): TemplateRef<MapaTableCellContext> | null;
2081
+ protected isSortable(column: TableColumn): boolean;
2082
+ protected ariaSort(column: TableColumn): 'ascending' | 'descending' | 'none' | null;
2083
+ protected sortIcon(column: TableColumn): string;
2084
+ protected changeSort(column: TableColumn): void;
2085
+ protected handlePage(event: PageEvent): void;
2086
+ protected cellValue(row: unknown, column: TableColumn): string;
2087
+ protected dateValue(row: unknown, column: TableColumn): Date | null;
2088
+ protected dateFormat(column: TableColumn): string | null;
2089
+ protected statusLabel(column: TableColumn, row: unknown): string;
2090
+ protected statusBackground(column: TableColumn, row: unknown): string | null;
2091
+ protected statusTextColor(column: TableColumn, row: unknown): string | null;
2092
+ protected cellClasses(column: TableColumn, row: unknown): string[];
2093
+ protected isCenterAligned(column: TableColumn): boolean;
2094
+ protected isEndAligned(column: TableColumn): boolean;
2095
+ protected getActionItems(row: unknown): MenuItem[];
2096
+ protected getMenuItems(row: unknown): MenuItem[];
2097
+ protected emitAction(row: unknown, item: MenuActionItem, event: Event): void;
2098
+ protected emitRowInteraction(event: Event, row: unknown): void;
2099
+ protected emitRowKeyboard(event: KeyboardEvent, row: unknown): void;
2100
+ protected route(item: MenuActionItem): string | unknown[] | UrlTree | null;
2101
+ protected queryParams(item: MenuActionItem): Params | null;
2102
+ protected svgName(svg: string): string;
2103
+ private activeSort;
2104
+ private activeDirection;
2105
+ private emitLegacySelection;
2106
+ private observeFilterControl;
1945
2107
  private getColumnValue;
1946
- private getColumnRecord;
1947
- private getRecordStringValue;
1948
- private getStatusIndex;
2108
+ private statusIndex;
2109
+ private normalizeCollapse;
1949
2110
  private getFilterValue;
1950
2111
  private getMenuActionItems;
1951
- private isMenuItem;
1952
- private isTableRowData;
2112
+ private asRow;
2113
+ private isInteractiveTarget;
1953
2114
  static ɵfac: i0.ɵɵFactoryDeclaration<MapaTableComponent, never>;
1954
- static ɵcmp: i0.ɵɵComponentDeclaration<MapaTableComponent, "mapa-table", never, { "columns": { "alias": "columns"; "required": false; }; "data": { "alias": "data"; "required": false; }; "pageIndex": { "alias": "pageIndex"; "required": false; }; "pageSize": { "alias": "pageSize"; "required": false; }; "totalCount": { "alias": "totalCount"; "required": false; }; "totalPages": { "alias": "totalPages"; "required": false; }; "checkbox": { "alias": "checkbox"; "required": false; }; "selection": { "alias": "selection"; "required": false; }; "actions": { "alias": "actions"; "required": false; }; "filterControl": { "alias": "filterControl"; "required": false; }; "menuItems": { "alias": "menuItems"; "required": false; }; "menu": { "alias": "menu"; "required": false; }; "showPaginator": { "alias": "showPaginator"; "required": false; }; "status": { "alias": "status"; "required": false; }; "empty": { "alias": "empty"; "required": false; }; "paginatorShowFirstButton": { "alias": "paginatorShowFirstButton"; "required": false; }; "paginatorShowLastButton": { "alias": "paginatorShowLastButton"; "required": false; }; "paginatorRenderButtonsNumber": { "alias": "paginatorRenderButtonsNumber"; "required": false; }; "paginatorHideDefaultArrows": { "alias": "paginatorHideDefaultArrows"; "required": false; }; }, { "rowClick": "rowClick"; "selectedRows": "selectedRows"; "onChangePage": "onChangePage"; "onSortChange": "onSortChange"; }, never, never, true, never>;
2115
+ static ɵcmp: i0.ɵɵComponentDeclaration<MapaTableComponent, "mapa-table", never, { "columns": { "alias": "columns"; "required": false; }; "data": { "alias": "data"; "required": false; }; "rowKey": { "alias": "rowKey"; "required": false; }; "caption": { "alias": "caption"; "required": false; }; "selectable": { "alias": "selectable"; "required": false; }; "showSelectAll": { "alias": "showSelectAll"; "required": false; }; "selectedKeys": { "alias": "selectedKeys"; "required": false; }; "selectionLabelKey": { "alias": "selectionLabelKey"; "required": false; }; "checkbox": { "alias": "checkbox"; "required": false; }; "selection": { "alias": "selection"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "finished": { "alias": "finished"; "required": false; }; "error": { "alias": "error"; "required": false; }; "emptyTitle": { "alias": "emptyTitle"; "required": false; }; "emptySubtitle": { "alias": "emptySubtitle"; "required": false; }; "errorTitle": { "alias": "errorTitle"; "required": false; }; "errorSubtitle": { "alias": "errorSubtitle"; "required": false; }; "retryLabel": { "alias": "retryLabel"; "required": false; }; "status": { "alias": "status"; "required": false; }; "empty": { "alias": "empty"; "required": false; }; "pagination": { "alias": "pagination"; "required": false; }; "pageIndex": { "alias": "pageIndex"; "required": false; }; "pageSize": { "alias": "pageSize"; "required": false; }; "totalCount": { "alias": "totalCount"; "required": false; }; "pageSizeOptions": { "alias": "pageSizeOptions"; "required": false; }; "totalPages": { "alias": "totalPages"; "required": false; }; "showPaginator": { "alias": "showPaginator"; "required": false; }; "paginatorShowFirstButton": { "alias": "paginatorShowFirstButton"; "required": false; }; "paginatorShowLastButton": { "alias": "paginatorShowLastButton"; "required": false; }; "paginatorRenderButtonsNumber": { "alias": "paginatorRenderButtonsNumber"; "required": false; }; "paginatorHideDefaultArrows": { "alias": "paginatorHideDefaultArrows"; "required": false; }; "sortActive": { "alias": "sortActive"; "required": false; }; "sortDirection": { "alias": "sortDirection"; "required": false; }; "actions": { "alias": "actions"; "required": false; }; "menuItems": { "alias": "menuItems"; "required": false; }; "menu": { "alias": "menu"; "required": false; }; "filterControl": { "alias": "filterControl"; "required": false; }; }, { "pageChange": "pageChange"; "sortChange": "sortChange"; "selectionChange": "selectionChange"; "retry": "retry"; "onChangePage": "onChangePage"; "onSortChange": "onSortChange"; "selectedRows": "selectedRows"; "rowClick": "rowClick"; }, ["projectedCells"], never, true, never>;
1955
2116
  }
1956
2117
 
1957
2118
  interface Tag {
@@ -2109,5 +2270,5 @@ declare class MapaScaleParameterizationComponent {
2109
2270
  static ɵcmp: i0.ɵɵComponentDeclaration<MapaScaleParameterizationComponent, "mapa-scale-parameterization", never, { "data": { "alias": "data"; "required": false; }; "showProgressbar": { "alias": "showProgressbar"; "required": false; }; "showInterval": { "alias": "showInterval"; "required": false; }; "showDots": { "alias": "showDots"; "required": false; }; }, {}, never, never, true, never>;
2110
2271
  }
2111
2272
 
2112
- export { AIH_ESTADOS, AIH_TIPOS, BubblePaginationDirective, ButtonComponent, ButtonIconComponent, CEPRange, CID_NAME, CID_REGEX, CORES, CPFPipe, CapabilityClassificationService, CheckboxComponent, Datepicker, DatepickerRange, Dropdown, DropdownTree, ESTADOS, ESTADOS_SIGLA, ElementBase, FiltersComponent, HtmlSanitizerService, IPTUCREATE, IPTUMASKS, IPTUVALIDATE, IconComponent, InputText, LOCALIZACAO_BAIRROS, LOCALIZACAO_CIDADES, LOCALIZACAO_COMPLEMENTOS, LOCALIZACAO_ESTADOS, LOCALIZACAO_LOGRADOUROS, LOCALIZACAO_RUAS, LocaleDatePipe, LocaleDateTimePipe, MAPA_DATEPICKER_FORMATS, MAPA_UI_TEXTS, MASKSIE, MapaBenchmarkChartComponent, MapaBenchmarkIndicatorComponent, MapaBreadcrumbComponent, MapaCapabilityComparativeChartComponent, MapaCapabilityComparativeComponent, MapaCapabilityComparativeHeaderComponent, MapaCapabilityDetailComponent, MapaCapabilityDotComponent, MapaCapabilityExpandComponent, MapaCapabilityIndicatorChartComponent, MapaCapabilityIndicatorComponent, MapaCapabilityIndicatorListComponent, MapaCapabilityIntervalBarComponent, MapaCapabilityIntervalComponent, MapaChartComponent, MapaDatepicker, MapaDatepickerRange, MapaDetailsComponent, MapaDialogComponent, MapaDropdownComponent, MapaDropdownTreeComponent, MapaEmptyStateComponent, MapaFormComponent, MapaFormErrorsComponent, MapaGroupReportComponent, MapaI18nService, MapaInputComponent, MapaMaskAutofillSyncDirective, MapaMenuComponent, MapaNavListComponent, MapaProgressbarComponent, MapaScaleComponent, MapaScaleParameterizationComponent, MapaSvgIconComponent, MapaTableComponent, MapaTextareaComponent, MapaTooltipComponent, MapaTooltipDirective, MapaWarningComponent, MatInputAutosizeDirective, PLACAS_INVALID, PLACAS_RANGE, RadioButton, RadioButtonComponent, ReportItemComponent, SafeHtmlPipe, SlideToggle, SlideToggleComponent, TagComponent, Textarea, ValidationMessageResolverService, addDays, addMonthsToDateValue, allNumbersAreSame, buildDetailedIndicatorSections, buildIndicatorCollections, cep_ranges, create_aih, create_cartaocredito, create_certidao, create_cnh, create_cnhespelho, create_cnpj, create_cns, create_cpf, create_ect, create_iptu, create_iptu_ctba, create_iptu_sp, create_pispasep, create_processo, create_renachestadual, create_renachseguranca, create_renavam, create_titulo, create_titulo_atual, creditCardValidator, currencyToNumber, customPaginatorFactory, faker_iptu, fillString, formatBrazilianDate, formatDateAsDayMonthYear, formatDateAsMonthDayYear, formatDateByLanguage, formatDateForLocale, formatDateTimeByLanguage, formatDateValue, formatLocaleDate, formatLocaleDateTime, generateInscricaoEstadual, getActiveDateFormat, getActiveDateLocale, getActiveMaterialDateFormat, getAllDigits, getAllWords, getDateFormatByLanguage, getDateInputMask, getDateTimeFormatByLanguage, getDayOfMonthFromDateValue, getDefaultDateRange, getMapaDatepickerRangeFormats, getRelativeDateRange, getSpecialProperty, getYearFromDateValue, isAfterDateValue, isArray, isDateValue, isMonthFirstDateLocale, isNil, isNumber, isPresent, isString, isValidDateByLanguage, isValidDateValue, makeGenericFaker, maskBr, mask_iptu, mergeMapaUiTexts, modulo11, modulo11Custom, modulo11a, normalizeDateInput, normalizeDateLocale, normalizeLookup, normalizeText, numberToCurrency, openDialog, parseBrazilianDate, parseDateByLanguage, parseDateFieldValue, parseDateValue, parseDateValueFns, parseLocaleDateValue, processCaretTraps, provideMapaUiTexts, rand, randArray, randomEstadoSigla, randomLetter, randomLetterOrNumber, randomNumber, reformatDateStringForLanguage, rg_rj, rg_sp, sanitizeHtmlContent, setTimeOnDateValue, slugify, toDatepickerLocale, toIsoDateByLanguage, toIsoDateByLanguageWithUtcTime, toIsoDateValue, toIsoDateValueWithTime, toIsoDateValueWithUtcTime, toUtcDayExclusiveEndIso, toUtcRangeEndIso, toUtcRangeStartIso, utilsBr, validateBr, validate_aih, validate_cartaocredito, validate_celular, validate_cep, validate_certidao, validate_chassi, validate_cnh, validate_cnhespelho, validate_cnpj, validate_cns, validate_cpf, validate_currency, validate_datahora, validate_datetime, validate_ect, validate_inscricaoestadual, validate_iptu, validate_iptu_contagem, validate_iptu_ctba, validate_iptu_sp, validate_number, validate_pispasep, validate_placa, validate_porcentagem, validate_processo, validate_renachestadual, validate_renachseguranca, validate_renavam, validate_rg, validate_sped, validate_telefone, validate_time, validate_titulo };
2113
- export type { ActionButton, Benchmark, BenchmarkMark, BenchmarkingChart, Classification as BenchmarkingClassification, BigObject, Breadpiece, ButtonIcon, Candidate, Capability, CapabilityClassification, CapabilityComparative, CapabilityItem, ChartOptions, Classification$1 as Classification, Competence$1 as Competence, DataNode, DateFormatPattern, DateInput$1 as DateInput, DateTimeFormatPattern, DatepickerLocale, DetailedIndicatorItem, DetailedIndicatorSection, DialogData, Dimension$1 as Dimension, ElementOption, ElementSearch, ElementTreeNode, Errors, EstadosType, EvaluationBenchmarkResult, Dimension$2 as GroupReportDimension, GroupReportItem, IndicatorCollectionOptions, IndicatorCollections, Indicators, LocaleDateStyle, LowReliabilityReport, MapaDateFormat, MapaDateLocale, MapaDatepickerRangeComponent, MapaDatepickerRangeControlValue, MapaDatepickerRangeFormGroup, MapaUiTexts, MaskType, Masks, MasksIE, MenuActionEvent, MenuActionItem, MenuItem, ProgressBar$1 as ProgressBar, ReportItem, ReportItemMenuItem, RowClickEvent, Scale$1 as Scale, Competence as ScaleParameterizationCompetence, Dimension as ScaleParameterizationDimension, ProgressBar as ScaleParameterizationProgressBar, Scale as ScaleParameterizationScale, SelectedTableRow, Status, TableCellStyleClass, TableColumn, TableColumnStatus, TableEmptyState, TableRowData, TableStatus, Tag, ValidationMessageContext };
2273
+ export { AIH_ESTADOS, AIH_TIPOS, BubblePaginationDirective, ButtonComponent, ButtonIconComponent, CEPRange, CID_NAME, CID_REGEX, CORES, CPFPipe, CapabilityClassificationService, CheckboxComponent, Datepicker, DatepickerRange, Dropdown, DropdownTree, ESTADOS, ESTADOS_SIGLA, ElementBase, FiltersComponent, HtmlSanitizerService, IPTUCREATE, IPTUMASKS, IPTUVALIDATE, IconComponent, InputText, LOCALIZACAO_BAIRROS, LOCALIZACAO_CIDADES, LOCALIZACAO_COMPLEMENTOS, LOCALIZACAO_ESTADOS, LOCALIZACAO_LOGRADOUROS, LOCALIZACAO_RUAS, LocaleDatePipe, LocaleDateTimePipe, MAPA_UI_TEXTS, MASKSIE, MapaBenchmarkChartComponent, MapaBenchmarkIndicatorComponent, MapaBreadcrumbComponent, MapaCapabilityComparativeChartComponent, MapaCapabilityComparativeComponent, MapaCapabilityComparativeHeaderComponent, MapaCapabilityDetailComponent, MapaCapabilityDotComponent, MapaCapabilityExpandComponent, MapaCapabilityIndicatorChartComponent, MapaCapabilityIndicatorComponent, MapaCapabilityIndicatorListComponent, MapaCapabilityIntervalBarComponent, MapaCapabilityIntervalComponent, MapaChartComponent, MapaDateLocaleService, MapaDatepicker, MapaDatepicker as MapaDatepickerRange, MapaDetailsComponent, MapaDialogComponent, MapaDropdownComponent, MapaDropdownTreeComponent, MapaEmptyStateComponent, MapaFormComponent, MapaFormErrorsComponent, MapaGroupReportComponent, MapaI18nService, MapaInputComponent, MapaMaskAutofillSyncDirective, MapaMenuComponent, MapaNavListComponent, MapaProgressbarComponent, MapaScaleComponent, MapaScaleParameterizationComponent, MapaSvgIconComponent, MapaTableCellDirective, MapaTableComponent, MapaTextareaComponent, MapaTooltipComponent, MapaTooltipDirective, MapaWarningComponent, MatInputAutosizeDirective, PLACAS_INVALID, PLACAS_RANGE, RadioButton, RadioButtonComponent, ReportItemComponent, SafeHtmlPipe, SlideToggle, SlideToggleComponent, TagComponent, Textarea, ValidationMessageResolverService, addDays, addMonthsToDateValue, allNumbersAreSame, buildDetailedIndicatorSections, buildIndicatorCollections, cep_ranges, create_aih, create_cartaocredito, create_certidao, create_cnh, create_cnhespelho, create_cnpj, create_cns, create_cpf, create_ect, create_iptu, create_iptu_ctba, create_iptu_sp, create_pispasep, create_processo, create_renachestadual, create_renachseguranca, create_renavam, create_titulo, create_titulo_atual, creditCardValidator, currencyToNumber, customPaginatorFactory, faker_iptu, fillString, formatBrazilianDate, formatDateAsDayMonthYear, formatDateAsMonthDayYear, formatDateByLanguage, formatDateForLocale, formatDateTimeByLanguage, formatDateValue, formatLocaleDate, formatLocaleDateTime, generateInscricaoEstadual, getActiveDateFormat, getActiveDateLocale, getAllDigits, getAllWords, getDateFormatByLanguage, getDateInputMask, getDateTimeFormatByLanguage, getDayOfMonthFromDateValue, getDefaultDateRange, getRelativeDateRange, getSpecialProperty, getYearFromDateValue, isAfterDateValue, isArray, isDateValue, isMonthFirstDateLocale, isNil, isNumber, isPresent, isString, isValidDateByLanguage, isValidDateValue, makeGenericFaker, maskBr, mask_iptu, mergeMapaUiTexts, modulo11, modulo11Custom, modulo11a, normalizeDateInput, normalizeDateLocale, normalizeLookup, normalizeText, numberToCurrency, openDialog, parseBrazilianDate, parseDateByLanguage, parseDateFieldValue, parseDateValue, parseDateValueFns, parseLocaleDateValue, processCaretTraps, provideMapaUiTexts, rand, randArray, randomEstadoSigla, randomLetter, randomLetterOrNumber, randomNumber, reformatDateStringForLanguage, rg_rj, rg_sp, sanitizeHtmlContent, setTimeOnDateValue, slugify, toDatepickerLocale, toIsoDateByLanguage, toIsoDateByLanguageWithUtcTime, toIsoDateValue, toIsoDateValueWithTime, toIsoDateValueWithUtcTime, toUtcDayExclusiveEndIso, toUtcRangeEndIso, toUtcRangeStartIso, utilsBr, validateBr, validate_aih, validate_cartaocredito, validate_celular, validate_cep, validate_certidao, validate_chassi, validate_cnh, validate_cnhespelho, validate_cnpj, validate_cns, validate_cpf, validate_currency, validate_datahora, validate_datetime, validate_ect, validate_inscricaoestadual, validate_iptu, validate_iptu_contagem, validate_iptu_ctba, validate_iptu_sp, validate_number, validate_pispasep, validate_placa, validate_porcentagem, validate_processo, validate_renachestadual, validate_renachseguranca, validate_renavam, validate_rg, validate_sped, validate_telefone, validate_time, validate_titulo };
2274
+ export type { ActionButton, Benchmark, BenchmarkMark, BenchmarkingChart, Classification as BenchmarkingClassification, BigObject, Breadpiece, ButtonIcon, Candidate, Capability, CapabilityClassification, CapabilityComparative, CapabilityItem, ChartOptions, Classification$1 as Classification, Competence$1 as Competence, DataNode, DataTableAlignment, DataTableColumn, DataTablePageChange, DataTableSelectionChange, DataTableSortChange, DataTableSortDirection, DateFormatPattern, DateInput$1 as DateInput, DateTimeFormatPattern, DatepickerLocale, DatepickerMode, DatepickerOptions, DatepickerPreset, DetailedIndicatorItem, DetailedIndicatorSection, DialogData, Dimension$1 as Dimension, ElementOption, ElementSearch, ElementTreeNode, Errors, EstadosType, EvaluationBenchmarkResult, Dimension$2 as GroupReportDimension, GroupReportItem, IndicatorCollectionOptions, IndicatorCollections, Indicators, LocaleDateStyle, LowReliabilityReport, MapaDateFormat, MapaDateLocale, MapaDatepickerControlValue, MapaDatepickerPresetEntry, MapaDatepickerRangeComponent, MapaDatepickerRangeControlValue, MapaDatepickerRangeFormGroup, MapaDatepickerRangeValue, MapaTableCellContext, MapaUiTexts, MaskType, Masks, MasksIE, MenuActionEvent, MenuActionItem, MenuItem, ProgressBar$1 as ProgressBar, ReportItem, ReportItemMenuItem, RowClickEvent, Scale$1 as Scale, Competence as ScaleParameterizationCompetence, Dimension as ScaleParameterizationDimension, ProgressBar as ScaleParameterizationProgressBar, Scale as ScaleParameterizationScale, SelectedTableRow, Status, TableCellStyleClass, TableColumn, TableColumnStatus, TableEmptyState, TableRowData, TableStatus, Tag, ValidationMessageContext };