mapa-library-ui 2.3.0 → 2.5.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.
- package/fesm2022/mapa-library-ui-src-lib-components-capability.mjs +10 -0
- package/fesm2022/mapa-library-ui-src-lib-components-capability.mjs.map +1 -1
- package/fesm2022/mapa-library-ui-src-lib-components-chart.mjs +10 -0
- package/fesm2022/mapa-library-ui-src-lib-components-chart.mjs.map +1 -1
- package/fesm2022/mapa-library-ui-src-lib-components-datepicker.mjs +10 -0
- package/fesm2022/mapa-library-ui-src-lib-components-datepicker.mjs.map +1 -1
- package/fesm2022/mapa-library-ui-src-lib-components-dropdown-tree.mjs +10 -0
- package/fesm2022/mapa-library-ui-src-lib-components-dropdown-tree.mjs.map +1 -1
- package/fesm2022/mapa-library-ui-src-lib-components-dropdown.mjs +10 -0
- package/fesm2022/mapa-library-ui-src-lib-components-dropdown.mjs.map +1 -1
- package/fesm2022/mapa-library-ui-src-lib-components-filters.mjs +10 -0
- package/fesm2022/mapa-library-ui-src-lib-components-filters.mjs.map +1 -1
- package/fesm2022/mapa-library-ui-src-lib-components-form.mjs +10 -0
- package/fesm2022/mapa-library-ui-src-lib-components-form.mjs.map +1 -1
- package/fesm2022/mapa-library-ui-src-lib-components-group-report.mjs +10 -0
- package/fesm2022/mapa-library-ui-src-lib-components-group-report.mjs.map +1 -1
- package/fesm2022/mapa-library-ui-src-lib-components-input.mjs +10 -0
- package/fesm2022/mapa-library-ui-src-lib-components-input.mjs.map +1 -1
- package/fesm2022/mapa-library-ui-src-lib-components-scale-parameterization.mjs +10 -0
- package/fesm2022/mapa-library-ui-src-lib-components-scale-parameterization.mjs.map +1 -1
- package/fesm2022/mapa-library-ui-src-lib-components-scale.mjs +10 -0
- package/fesm2022/mapa-library-ui-src-lib-components-scale.mjs.map +1 -1
- package/fesm2022/mapa-library-ui-src-lib-components-table.mjs +10 -0
- package/fesm2022/mapa-library-ui-src-lib-components-table.mjs.map +1 -1
- package/fesm2022/mapa-library-ui-src-lib-components-textarea.mjs +10 -0
- package/fesm2022/mapa-library-ui-src-lib-components-textarea.mjs.map +1 -1
- package/fesm2022/mapa-library-ui-src-lib-components-warning.mjs +10 -0
- package/fesm2022/mapa-library-ui-src-lib-components-warning.mjs.map +1 -1
- package/fesm2022/mapa-library-ui.mjs +145 -15
- package/fesm2022/mapa-library-ui.mjs.map +1 -1
- package/index.d.ts +82 -4
- package/mapa-library-ui-2.5.1.tgz +0 -0
- package/package.json +6 -2
- package/mapa-library-ui-2.3.0.tgz +0 -0
package/index.d.ts
CHANGED
|
@@ -302,6 +302,39 @@ interface MapaReportLegendData {
|
|
|
302
302
|
groups: MapaReportLegendGroup[];
|
|
303
303
|
expanded?: boolean;
|
|
304
304
|
}
|
|
305
|
+
interface MapaReportMetadata {
|
|
306
|
+
id?: string | number;
|
|
307
|
+
label: string;
|
|
308
|
+
value?: string | null;
|
|
309
|
+
}
|
|
310
|
+
interface MapaReportFinalClassification {
|
|
311
|
+
classificationId: number;
|
|
312
|
+
label: string;
|
|
313
|
+
description?: string;
|
|
314
|
+
color?: string;
|
|
315
|
+
}
|
|
316
|
+
interface MapaReportParameterizationCompetence {
|
|
317
|
+
id: string | number;
|
|
318
|
+
name: string;
|
|
319
|
+
description?: string;
|
|
320
|
+
value: number;
|
|
321
|
+
direction?: MapaReportDirection;
|
|
322
|
+
dimensions?: MapaReportDimension[];
|
|
323
|
+
}
|
|
324
|
+
interface MapaReportParameterizationSection {
|
|
325
|
+
id: string | number;
|
|
326
|
+
name?: string;
|
|
327
|
+
description?: string;
|
|
328
|
+
value?: number;
|
|
329
|
+
competences: MapaReportParameterizationCompetence[];
|
|
330
|
+
}
|
|
331
|
+
interface MapaReportParameterizationData {
|
|
332
|
+
name: string;
|
|
333
|
+
value: number;
|
|
334
|
+
finalClassification?: MapaReportFinalClassification;
|
|
335
|
+
metadata?: MapaReportMetadata[];
|
|
336
|
+
sections: MapaReportParameterizationSection[];
|
|
337
|
+
}
|
|
305
338
|
interface MapaReportDimension {
|
|
306
339
|
id: string | number;
|
|
307
340
|
name: string;
|
|
@@ -637,6 +670,16 @@ declare const MAPA_UI_TEXTS: InjectionToken<Partial<{
|
|
|
637
670
|
groupAverageTitle: string;
|
|
638
671
|
groupDistributionLabel: string;
|
|
639
672
|
overallPercentageTitle: string;
|
|
673
|
+
summarizedReportTitle: string;
|
|
674
|
+
detailedReportTitle: string;
|
|
675
|
+
competenciesAndDimensionsTitle: string;
|
|
676
|
+
parameterizationRankingTitle: string;
|
|
677
|
+
groupsTitle: string;
|
|
678
|
+
competenciesTitle: string;
|
|
679
|
+
finalClassificationTitle: string;
|
|
680
|
+
evaluationDateTitle: string;
|
|
681
|
+
unitTitle: string;
|
|
682
|
+
positionTitle: string;
|
|
640
683
|
scaleConceptTitle: string;
|
|
641
684
|
psychosocialFactorsTitle: string;
|
|
642
685
|
editConclusionLabel: string;
|
|
@@ -1340,7 +1383,7 @@ declare class ButtonComponent {
|
|
|
1340
1383
|
}
|
|
1341
1384
|
|
|
1342
1385
|
type TagSize = 'small' | 'medium' | 'large';
|
|
1343
|
-
type TagAppearance = '
|
|
1386
|
+
type TagAppearance = 'solid' | 'tonal';
|
|
1344
1387
|
type TagShape = 'pill' | 'rounded';
|
|
1345
1388
|
type TagCasing = 'auto' | 'uppercase' | 'natural';
|
|
1346
1389
|
declare class MapaClassificationTagComponent {
|
|
@@ -2403,6 +2446,36 @@ declare class MapaReportPointsWidgetComponent {
|
|
|
2403
2446
|
static ɵcmp: i0.ɵɵComponentDeclaration<MapaReportPointsWidgetComponent, "mapa-report-points-widget", never, { "heading": { "alias": "heading"; "required": true; "isSignal": true; }; "data": { "alias": "data"; "required": true; "isSignal": true; }; "palette": { "alias": "palette"; "required": false; "isSignal": true; }; "mode": { "alias": "mode"; "required": false; "isSignal": true; }; }, { "mode": "modeChange"; }, never, never, true, never>;
|
|
2404
2447
|
}
|
|
2405
2448
|
|
|
2449
|
+
interface ParameterizationSummaryRow {
|
|
2450
|
+
id: string;
|
|
2451
|
+
name: string;
|
|
2452
|
+
value: number;
|
|
2453
|
+
}
|
|
2454
|
+
type MapaReportParameterizationViewMode = 'summarized' | 'detailed';
|
|
2455
|
+
declare class MapaReportParameterizationWidgetComponent {
|
|
2456
|
+
protected readonly i18n: MapaI18nService;
|
|
2457
|
+
protected readonly segments: number[];
|
|
2458
|
+
readonly heading: i0.InputSignal<MapaReportHeading>;
|
|
2459
|
+
readonly data: i0.InputSignal<MapaReportParameterizationData>;
|
|
2460
|
+
readonly legend: i0.InputSignal<MapaReportLegendGroup[]>;
|
|
2461
|
+
readonly palette: i0.InputSignal<MapaReportPalette>;
|
|
2462
|
+
readonly content: i0.InputSignal<"all" | "report" | "ranking">;
|
|
2463
|
+
readonly mode: i0.ModelSignal<MapaReportParameterizationViewMode>;
|
|
2464
|
+
protected readonly metadata: i0.Signal<mapa_library_ui.MapaReportMetadata[]>;
|
|
2465
|
+
protected readonly summaryRows: i0.Signal<ParameterizationSummaryRow[]>;
|
|
2466
|
+
protected readonly rankingViews: i0.Signal<MapaReportRankingView[]>;
|
|
2467
|
+
protected safeValue(value: number | undefined): number;
|
|
2468
|
+
protected filledSegments(value: number | undefined): number;
|
|
2469
|
+
protected direction(value?: MapaReportDirection): MapaReportDirection;
|
|
2470
|
+
protected directionArrow(value?: MapaReportDirection): string;
|
|
2471
|
+
protected directionLabel(value?: MapaReportDirection): string;
|
|
2472
|
+
protected hasClassification(dimension: MapaReportDimension): boolean;
|
|
2473
|
+
private rankingDimensions;
|
|
2474
|
+
private isNumber;
|
|
2475
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MapaReportParameterizationWidgetComponent, never>;
|
|
2476
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MapaReportParameterizationWidgetComponent, "mapa-report-parameterization-widget", never, { "heading": { "alias": "heading"; "required": true; "isSignal": true; }; "data": { "alias": "data"; "required": true; "isSignal": true; }; "legend": { "alias": "legend"; "required": false; "isSignal": true; }; "palette": { "alias": "palette"; "required": false; "isSignal": true; }; "content": { "alias": "content"; "required": false; "isSignal": true; }; "mode": { "alias": "mode"; "required": false; "isSignal": true; }; }, { "mode": "modeChange"; }, never, never, true, never>;
|
|
2477
|
+
}
|
|
2478
|
+
|
|
2406
2479
|
interface RankingRow extends Record<string, unknown> {
|
|
2407
2480
|
name: string;
|
|
2408
2481
|
description?: string;
|
|
@@ -2438,6 +2511,7 @@ declare class MapaReportRankingTableWidgetComponent {
|
|
|
2438
2511
|
protected selectView(id: string): void;
|
|
2439
2512
|
protected classification(row: RankingRow, key: string): Classification$1 | undefined;
|
|
2440
2513
|
protected value(row: RankingRow, key: string): string;
|
|
2514
|
+
protected hasClassification(row: RankingRow, key: string): boolean;
|
|
2441
2515
|
protected direction(row: RankingRow, key: string): MapaReportDirection | undefined;
|
|
2442
2516
|
protected directionArrow(row: RankingRow, key: string): string;
|
|
2443
2517
|
protected directionLabel(row: RankingRow, key: string): string;
|
|
@@ -2456,17 +2530,21 @@ declare class MapaReportRankingTableWidgetComponent {
|
|
|
2456
2530
|
static ɵcmp: i0.ɵɵComponentDeclaration<MapaReportRankingTableWidgetComponent, "mapa-report-ranking-table-widget", never, { "heading": { "alias": "heading"; "required": false; "isSignal": true; }; "views": { "alias": "views"; "required": false; "isSignal": true; }; "view": { "alias": "view"; "required": false; "isSignal": true; }; "palette": { "alias": "palette"; "required": false; "isSignal": true; }; "showAverage": { "alias": "showAverage"; "required": false; "isSignal": true; }; "showScoreOnHover": { "alias": "showScoreOnHover"; "required": false; "isSignal": true; }; "entryColumnLabel": { "alias": "entryColumnLabel"; "required": false; "isSignal": true; }; "note": { "alias": "note"; "required": false; "isSignal": true; }; "averageLabel": { "alias": "averageLabel"; "required": false; "isSignal": true; }; }, { "view": "viewChange"; }, never, never, true, never>;
|
|
2457
2531
|
}
|
|
2458
2532
|
|
|
2533
|
+
type MapaResultTrackAppearance = 'rounded' | 'segmented' | 'stepped';
|
|
2459
2534
|
declare class MapaResultTrackComponent {
|
|
2460
2535
|
private readonly i18n;
|
|
2461
2536
|
readonly name: i0.InputSignal<string>;
|
|
2462
2537
|
readonly value: i0.InputSignal<number>;
|
|
2463
2538
|
readonly color: i0.InputSignal<string>;
|
|
2464
2539
|
readonly mode: i0.InputSignal<"linear" | "diverging">;
|
|
2465
|
-
readonly appearance: i0.InputSignal<
|
|
2540
|
+
readonly appearance: i0.InputSignal<MapaResultTrackAppearance>;
|
|
2466
2541
|
readonly direction: i0.InputSignal<MapaReportDirection>;
|
|
2467
2542
|
readonly showValue: i0.InputSignal<boolean>;
|
|
2468
2543
|
readonly ariaLabel: i0.InputSignal<string | undefined>;
|
|
2544
|
+
protected readonly steps: number[];
|
|
2469
2545
|
protected readonly safeValue: i0.Signal<number>;
|
|
2546
|
+
protected readonly filledSteps: i0.Signal<number>;
|
|
2547
|
+
protected stepFill(step: number): number;
|
|
2470
2548
|
protected readonly fillLeft: i0.Signal<number>;
|
|
2471
2549
|
protected readonly fillWidth: i0.Signal<number>;
|
|
2472
2550
|
protected readonly badgePosition: i0.Signal<number>;
|
|
@@ -2720,5 +2798,5 @@ declare class MapaScaleParameterizationComponent {
|
|
|
2720
2798
|
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>;
|
|
2721
2799
|
}
|
|
2722
2800
|
|
|
2723
|
-
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, MapaClassificationTagComponent, MapaConclusionCardComponent, MapaDateLocaleService, MapaDatepicker, MapaDatepicker as MapaDatepickerRange, MapaDetailsComponent, MapaDialogComponent, MapaDropdownComponent, MapaDropdownTreeComponent, MapaEmptyStateComponent, MapaFormComponent, MapaFormErrorsComponent, MapaGroupReportComponent, MapaI18nService, MapaInputComponent, MapaMaskAutofillSyncDirective, MapaMenuComponent, MapaNavListComponent, MapaProgressbarComponent, MapaReportGroupProfileWidgetComponent, MapaReportIndicatorsWidgetComponent, MapaReportLegendComponent, MapaReportPointsWidgetComponent, MapaReportPsychosocialWidgetComponent, MapaReportRankingTableWidgetComponent, MapaReportScaleWidgetComponent, MapaReportSocioemotionalWidgetComponent, MapaResultTrackComponent, 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 };
|
|
2724
|
-
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, MapaConclusionCardData, MapaConclusionCardVariant, MapaConclusionMetadata, MapaDateFormat, MapaDateLocale, MapaDatepickerControlValue, MapaDatepickerPresetEntry, MapaDatepickerRangeComponent, MapaDatepickerRangeControlValue, MapaDatepickerRangeFormGroup, MapaDatepickerRangeValue, MapaReportDimension, MapaReportDirection, MapaReportGroupProfileData, MapaReportGroupProfileDimension, MapaReportGroupProfileSlice, MapaReportHeading, MapaReportIndicator, MapaReportIndicatorGroup, MapaReportIndicatorsViewMode, MapaReportLegendData, MapaReportLegendGroup, MapaReportLegendItem, MapaReportPalette, MapaReportPointsData, MapaReportPointsViewMode, MapaReportPsychosocialData, MapaReportRankingDimension, MapaReportRankingEntry, MapaReportRankingView, MapaReportScale, MapaReportScaleGroup, MapaReportScaleViewMode, MapaReportSocioemotionalCompetence, MapaReportSocioemotionalData, 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 };
|
|
2801
|
+
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, MapaClassificationTagComponent, MapaConclusionCardComponent, MapaDateLocaleService, MapaDatepicker, MapaDatepicker as MapaDatepickerRange, MapaDetailsComponent, MapaDialogComponent, MapaDropdownComponent, MapaDropdownTreeComponent, MapaEmptyStateComponent, MapaFormComponent, MapaFormErrorsComponent, MapaGroupReportComponent, MapaI18nService, MapaInputComponent, MapaMaskAutofillSyncDirective, MapaMenuComponent, MapaNavListComponent, MapaProgressbarComponent, MapaReportGroupProfileWidgetComponent, MapaReportIndicatorsWidgetComponent, MapaReportLegendComponent, MapaReportParameterizationWidgetComponent, MapaReportPointsWidgetComponent, MapaReportPsychosocialWidgetComponent, MapaReportRankingTableWidgetComponent, MapaReportScaleWidgetComponent, MapaReportSocioemotionalWidgetComponent, MapaResultTrackComponent, 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 };
|
|
2802
|
+
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, MapaConclusionCardData, MapaConclusionCardVariant, MapaConclusionMetadata, MapaDateFormat, MapaDateLocale, MapaDatepickerControlValue, MapaDatepickerPresetEntry, MapaDatepickerRangeComponent, MapaDatepickerRangeControlValue, MapaDatepickerRangeFormGroup, MapaDatepickerRangeValue, MapaReportDimension, MapaReportDirection, MapaReportFinalClassification, MapaReportGroupProfileData, MapaReportGroupProfileDimension, MapaReportGroupProfileSlice, MapaReportHeading, MapaReportIndicator, MapaReportIndicatorGroup, MapaReportIndicatorsViewMode, MapaReportLegendData, MapaReportLegendGroup, MapaReportLegendItem, MapaReportMetadata, MapaReportPalette, MapaReportParameterizationCompetence, MapaReportParameterizationData, MapaReportParameterizationSection, MapaReportParameterizationViewMode, MapaReportPointsData, MapaReportPointsViewMode, MapaReportPsychosocialData, MapaReportRankingDimension, MapaReportRankingEntry, MapaReportRankingView, MapaReportScale, MapaReportScaleGroup, MapaReportScaleViewMode, MapaReportSocioemotionalCompetence, MapaReportSocioemotionalData, MapaResultTrackAppearance, 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 };
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mapa-library-ui",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.5.1",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@angular/animations": "^20.3.0",
|
|
6
6
|
"@angular/cdk": "^20.2.0",
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"@angular/material": "^20.2.0",
|
|
12
12
|
"@angular/router": "^20.3.0",
|
|
13
13
|
"apexcharts": "^5.10.3",
|
|
14
|
-
"mapa-frontend-i18n": "^2.
|
|
14
|
+
"mapa-frontend-i18n": "^2.3.0",
|
|
15
15
|
"ng-apexcharts": "^2.3.0",
|
|
16
16
|
"ngx-mask": "^20.0.3",
|
|
17
17
|
"ngx-mat-select-search": "^8.0.4",
|
|
@@ -136,6 +136,10 @@
|
|
|
136
136
|
"types": "./index.d.ts",
|
|
137
137
|
"default": "./fesm2022/mapa-library-ui.mjs"
|
|
138
138
|
},
|
|
139
|
+
"./report-parameterization": {
|
|
140
|
+
"types": "./index.d.ts",
|
|
141
|
+
"default": "./fesm2022/mapa-library-ui.mjs"
|
|
142
|
+
},
|
|
139
143
|
"./report-psychosocial": {
|
|
140
144
|
"types": "./index.d.ts",
|
|
141
145
|
"default": "./fesm2022/mapa-library-ui.mjs"
|
|
Binary file
|