mapa-library-ui 2.5.1 → 2.5.3
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
|
@@ -2454,7 +2454,6 @@ interface ParameterizationSummaryRow {
|
|
|
2454
2454
|
type MapaReportParameterizationViewMode = 'summarized' | 'detailed';
|
|
2455
2455
|
declare class MapaReportParameterizationWidgetComponent {
|
|
2456
2456
|
protected readonly i18n: MapaI18nService;
|
|
2457
|
-
protected readonly segments: number[];
|
|
2458
2457
|
readonly heading: i0.InputSignal<MapaReportHeading>;
|
|
2459
2458
|
readonly data: i0.InputSignal<MapaReportParameterizationData>;
|
|
2460
2459
|
readonly legend: i0.InputSignal<MapaReportLegendGroup[]>;
|
|
@@ -2462,10 +2461,15 @@ declare class MapaReportParameterizationWidgetComponent {
|
|
|
2462
2461
|
readonly content: i0.InputSignal<"all" | "report" | "ranking">;
|
|
2463
2462
|
readonly mode: i0.ModelSignal<MapaReportParameterizationViewMode>;
|
|
2464
2463
|
protected readonly metadata: i0.Signal<mapa_library_ui.MapaReportMetadata[]>;
|
|
2464
|
+
/** Classificação final do resultado: tag neutra logo abaixo do nome da parametrização. */
|
|
2465
|
+
protected readonly finalClassification: i0.Signal<mapa_library_ui.MapaReportFinalClassification | null>;
|
|
2466
|
+
/**
|
|
2467
|
+
* O resumo mostra o valor por grupo; seções sem agrupamento (sem nota de
|
|
2468
|
+
* grupo) caem para as competências.
|
|
2469
|
+
*/
|
|
2465
2470
|
protected readonly summaryRows: i0.Signal<ParameterizationSummaryRow[]>;
|
|
2466
2471
|
protected readonly rankingViews: i0.Signal<MapaReportRankingView[]>;
|
|
2467
2472
|
protected safeValue(value: number | undefined): number;
|
|
2468
|
-
protected filledSegments(value: number | undefined): number;
|
|
2469
2473
|
protected direction(value?: MapaReportDirection): MapaReportDirection;
|
|
2470
2474
|
protected directionArrow(value?: MapaReportDirection): string;
|
|
2471
2475
|
protected directionLabel(value?: MapaReportDirection): string;
|
|
@@ -2531,6 +2535,7 @@ declare class MapaReportRankingTableWidgetComponent {
|
|
|
2531
2535
|
}
|
|
2532
2536
|
|
|
2533
2537
|
type MapaResultTrackAppearance = 'rounded' | 'segmented' | 'stepped';
|
|
2538
|
+
type MapaResultTrackStyle = 'thick' | 'thin';
|
|
2534
2539
|
declare class MapaResultTrackComponent {
|
|
2535
2540
|
private readonly i18n;
|
|
2536
2541
|
readonly name: i0.InputSignal<string>;
|
|
@@ -2538,6 +2543,7 @@ declare class MapaResultTrackComponent {
|
|
|
2538
2543
|
readonly color: i0.InputSignal<string>;
|
|
2539
2544
|
readonly mode: i0.InputSignal<"linear" | "diverging">;
|
|
2540
2545
|
readonly appearance: i0.InputSignal<MapaResultTrackAppearance>;
|
|
2546
|
+
readonly style: i0.InputSignal<MapaResultTrackStyle>;
|
|
2541
2547
|
readonly direction: i0.InputSignal<MapaReportDirection>;
|
|
2542
2548
|
readonly showValue: i0.InputSignal<boolean>;
|
|
2543
2549
|
readonly ariaLabel: i0.InputSignal<string | undefined>;
|
|
@@ -2550,7 +2556,7 @@ declare class MapaResultTrackComponent {
|
|
|
2550
2556
|
protected readonly badgePosition: i0.Signal<number>;
|
|
2551
2557
|
protected readonly label: i0.Signal<string>;
|
|
2552
2558
|
static ɵfac: i0.ɵɵFactoryDeclaration<MapaResultTrackComponent, never>;
|
|
2553
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MapaResultTrackComponent, "mapa-result-track", never, { "name": { "alias": "name"; "required": true; "isSignal": true; }; "value": { "alias": "value"; "required": true; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; "mode": { "alias": "mode"; "required": false; "isSignal": true; }; "appearance": { "alias": "appearance"; "required": false; "isSignal": true; }; "direction": { "alias": "direction"; "required": false; "isSignal": true; }; "showValue": { "alias": "showValue"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
2559
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MapaResultTrackComponent, "mapa-result-track", never, { "name": { "alias": "name"; "required": true; "isSignal": true; }; "value": { "alias": "value"; "required": true; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; "mode": { "alias": "mode"; "required": false; "isSignal": true; }; "appearance": { "alias": "appearance"; "required": false; "isSignal": true; }; "style": { "alias": "style"; "required": false; "isSignal": true; }; "direction": { "alias": "direction"; "required": false; "isSignal": true; }; "showValue": { "alias": "showValue"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
2554
2560
|
}
|
|
2555
2561
|
|
|
2556
2562
|
interface Dimension$1 {
|
|
@@ -2799,4 +2805,4 @@ declare class MapaScaleParameterizationComponent {
|
|
|
2799
2805
|
}
|
|
2800
2806
|
|
|
2801
2807
|
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 };
|
|
2808
|
+
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, MapaResultTrackStyle, 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
|
Binary file
|