mapa-library-ui 2.1.2 → 2.2.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/README.md +85 -5
- package/fesm2022/mapa-library-ui-src-lib-components-breadcrumb.mjs +10 -2
- package/fesm2022/mapa-library-ui-src-lib-components-breadcrumb.mjs.map +1 -1
- package/fesm2022/mapa-library-ui-src-lib-components-button.mjs +8 -2
- package/fesm2022/mapa-library-ui-src-lib-components-button.mjs.map +1 -1
- package/fesm2022/mapa-library-ui-src-lib-components-capability.mjs +50 -5
- package/fesm2022/mapa-library-ui-src-lib-components-capability.mjs.map +1 -1
- package/fesm2022/mapa-library-ui-src-lib-components-chart.mjs +48 -3
- package/fesm2022/mapa-library-ui-src-lib-components-chart.mjs.map +1 -1
- package/fesm2022/mapa-library-ui-src-lib-components-datepicker.mjs +39 -0
- package/fesm2022/mapa-library-ui-src-lib-components-datepicker.mjs.map +1 -1
- package/fesm2022/mapa-library-ui-src-lib-components-dialog.mjs +9 -3
- package/fesm2022/mapa-library-ui-src-lib-components-dialog.mjs.map +1 -1
- package/fesm2022/mapa-library-ui-src-lib-components-dropdown-tree.mjs +48 -3
- package/fesm2022/mapa-library-ui-src-lib-components-dropdown-tree.mjs.map +1 -1
- package/fesm2022/mapa-library-ui-src-lib-components-dropdown.mjs +48 -3
- package/fesm2022/mapa-library-ui-src-lib-components-dropdown.mjs.map +1 -1
- package/fesm2022/mapa-library-ui-src-lib-components-filters.mjs +50 -5
- package/fesm2022/mapa-library-ui-src-lib-components-filters.mjs.map +1 -1
- package/fesm2022/mapa-library-ui-src-lib-components-form.mjs +49 -4
- package/fesm2022/mapa-library-ui-src-lib-components-form.mjs.map +1 -1
- package/fesm2022/mapa-library-ui-src-lib-components-group-report.mjs +197 -150
- package/fesm2022/mapa-library-ui-src-lib-components-group-report.mjs.map +1 -1
- package/fesm2022/mapa-library-ui-src-lib-components-input.mjs +48 -3
- package/fesm2022/mapa-library-ui-src-lib-components-input.mjs.map +1 -1
- package/fesm2022/mapa-library-ui-src-lib-components-report-item.mjs +43 -4
- package/fesm2022/mapa-library-ui-src-lib-components-report-item.mjs.map +1 -1
- package/fesm2022/mapa-library-ui-src-lib-components-scale-parameterization.mjs +47 -6
- package/fesm2022/mapa-library-ui-src-lib-components-scale-parameterization.mjs.map +1 -1
- package/fesm2022/mapa-library-ui-src-lib-components-scale.mjs +44 -4
- package/fesm2022/mapa-library-ui-src-lib-components-scale.mjs.map +1 -1
- package/fesm2022/mapa-library-ui-src-lib-components-table.mjs +46 -4
- package/fesm2022/mapa-library-ui-src-lib-components-table.mjs.map +1 -1
- package/fesm2022/mapa-library-ui-src-lib-components-textarea.mjs +39 -0
- package/fesm2022/mapa-library-ui-src-lib-components-textarea.mjs.map +1 -1
- package/fesm2022/mapa-library-ui-src-lib-components-warning.mjs +39 -0
- package/fesm2022/mapa-library-ui-src-lib-components-warning.mjs.map +1 -1
- package/fesm2022/mapa-library-ui.mjs +807 -32
- package/fesm2022/mapa-library-ui.mjs.map +1 -1
- package/index.d.ts +451 -4
- package/mapa-library-ui-2.2.1.tgz +0 -0
- package/package.json +50 -2
- package/src/lib/components/breadcrumb/index.d.ts +3 -1
- package/src/lib/components/button/index.d.ts +3 -1
- package/src/lib/components/capability/index.d.ts +4 -1
- package/src/lib/components/dialog/index.d.ts +3 -1
- package/src/lib/components/filters/index.d.ts +3 -1
- package/src/lib/components/form/index.d.ts +3 -1
- package/src/lib/components/group-report/index.d.ts +2 -0
- package/src/lib/components/scale/index.d.ts +1 -0
- package/src/lib/components/scale-parameterization/index.d.ts +1 -0
- package/src/lib/components/table/index.d.ts +2 -0
- package/mapa-library-ui-2.1.2.tgz +0 -0
package/index.d.ts
CHANGED
|
@@ -240,6 +240,7 @@ type ChartOptions = {
|
|
|
240
240
|
|
|
241
241
|
interface Classification$1 {
|
|
242
242
|
classificationId?: number;
|
|
243
|
+
classificationCode?: string;
|
|
243
244
|
classificationName?: string;
|
|
244
245
|
classificationColor?: string;
|
|
245
246
|
classificationBg?: string;
|
|
@@ -273,6 +274,149 @@ interface MenuActionEvent<TData = unknown> {
|
|
|
273
274
|
data: TData;
|
|
274
275
|
}
|
|
275
276
|
|
|
277
|
+
type MapaReportDirection = 'positive' | 'negative';
|
|
278
|
+
type MapaReportPalette = 'current' | 'legacy';
|
|
279
|
+
interface MapaReportHeading {
|
|
280
|
+
title: string;
|
|
281
|
+
description?: string;
|
|
282
|
+
}
|
|
283
|
+
interface MapaReportLegendItem {
|
|
284
|
+
id?: string | number;
|
|
285
|
+
label: string;
|
|
286
|
+
range?: string;
|
|
287
|
+
description?: string;
|
|
288
|
+
color?: string;
|
|
289
|
+
classification?: Classification$1;
|
|
290
|
+
}
|
|
291
|
+
interface MapaReportLegendGroup {
|
|
292
|
+
id?: string | number;
|
|
293
|
+
title?: string;
|
|
294
|
+
description?: string;
|
|
295
|
+
direction?: MapaReportDirection;
|
|
296
|
+
items: MapaReportLegendItem[];
|
|
297
|
+
}
|
|
298
|
+
interface MapaReportLegendData {
|
|
299
|
+
title?: string;
|
|
300
|
+
intro?: string;
|
|
301
|
+
groupsTitle?: string;
|
|
302
|
+
groups: MapaReportLegendGroup[];
|
|
303
|
+
expanded?: boolean;
|
|
304
|
+
}
|
|
305
|
+
interface MapaReportDimension {
|
|
306
|
+
id: string | number;
|
|
307
|
+
name: string;
|
|
308
|
+
description?: string;
|
|
309
|
+
concept?: string;
|
|
310
|
+
value?: number;
|
|
311
|
+
direction?: MapaReportDirection;
|
|
312
|
+
classification?: Classification$1;
|
|
313
|
+
}
|
|
314
|
+
interface MapaReportScale extends MapaReportDimension {
|
|
315
|
+
dimensions?: MapaReportDimension[];
|
|
316
|
+
}
|
|
317
|
+
interface MapaReportScaleGroup {
|
|
318
|
+
id: string | number;
|
|
319
|
+
name?: string;
|
|
320
|
+
scales: MapaReportScale[];
|
|
321
|
+
}
|
|
322
|
+
interface MapaReportIndicator extends MapaReportDimension {
|
|
323
|
+
risk?: 'precipitation' | 'negligence';
|
|
324
|
+
dimensions?: MapaReportDimension[];
|
|
325
|
+
}
|
|
326
|
+
interface MapaReportIndicatorGroup {
|
|
327
|
+
id: string | number;
|
|
328
|
+
name: string;
|
|
329
|
+
column?: number;
|
|
330
|
+
indicators: MapaReportIndicator[];
|
|
331
|
+
}
|
|
332
|
+
interface MapaReportPsychosocialData {
|
|
333
|
+
readingIntro?: string;
|
|
334
|
+
legendGroups?: MapaReportLegendGroup[];
|
|
335
|
+
globalAverage?: number;
|
|
336
|
+
globalDescription?: string;
|
|
337
|
+
factors?: MapaReportIndicatorGroup[];
|
|
338
|
+
}
|
|
339
|
+
interface MapaReportSocioemotionalCompetence {
|
|
340
|
+
id: string | number;
|
|
341
|
+
name: string;
|
|
342
|
+
description?: string;
|
|
343
|
+
skills: MapaReportDimension[];
|
|
344
|
+
}
|
|
345
|
+
interface MapaReportPointsData {
|
|
346
|
+
strong: MapaReportDimension[];
|
|
347
|
+
attention: MapaReportDimension[];
|
|
348
|
+
strongHeading?: MapaReportHeading;
|
|
349
|
+
attentionHeading?: MapaReportHeading;
|
|
350
|
+
}
|
|
351
|
+
interface MapaReportSocioemotionalData {
|
|
352
|
+
legend?: MapaReportLegendData;
|
|
353
|
+
competencies: MapaReportSocioemotionalCompetence[];
|
|
354
|
+
vulnerabilityLegend?: MapaReportLegendData;
|
|
355
|
+
vulnerabilities: MapaReportScale[];
|
|
356
|
+
}
|
|
357
|
+
interface MapaConclusionMetadata {
|
|
358
|
+
label: string;
|
|
359
|
+
value?: string | null;
|
|
360
|
+
emphasized?: boolean;
|
|
361
|
+
}
|
|
362
|
+
type MapaConclusionCardVariant = 'overall' | 'individual';
|
|
363
|
+
interface MapaConclusionCardData {
|
|
364
|
+
title: string;
|
|
365
|
+
context?: string;
|
|
366
|
+
body?: string;
|
|
367
|
+
variant?: MapaConclusionCardVariant;
|
|
368
|
+
classification?: Classification$1;
|
|
369
|
+
metadata?: MapaConclusionMetadata[];
|
|
370
|
+
emptyText?: string;
|
|
371
|
+
}
|
|
372
|
+
interface MapaReportGroupProfileSlice {
|
|
373
|
+
id?: string | number;
|
|
374
|
+
label?: string;
|
|
375
|
+
/** Share of the group, in percent. Slices of a dimension should add up to 100. */
|
|
376
|
+
value: number;
|
|
377
|
+
color?: string;
|
|
378
|
+
classification?: Classification$1;
|
|
379
|
+
/** Draws the marker used to point at a single person inside the group. */
|
|
380
|
+
highlighted?: boolean;
|
|
381
|
+
}
|
|
382
|
+
interface MapaReportGroupProfileDimension {
|
|
383
|
+
id?: string | number;
|
|
384
|
+
name: string;
|
|
385
|
+
direction?: MapaReportDirection;
|
|
386
|
+
slices: MapaReportGroupProfileSlice[];
|
|
387
|
+
}
|
|
388
|
+
interface MapaReportGroupProfileData {
|
|
389
|
+
/** Scale being profiled, shown above the pills. */
|
|
390
|
+
name: string;
|
|
391
|
+
direction?: MapaReportDirection;
|
|
392
|
+
/** Group average, in percent. */
|
|
393
|
+
average?: number;
|
|
394
|
+
dimensions: MapaReportGroupProfileDimension[];
|
|
395
|
+
}
|
|
396
|
+
interface MapaReportRankingDimension {
|
|
397
|
+
id?: string | number;
|
|
398
|
+
name: string;
|
|
399
|
+
value?: number | string;
|
|
400
|
+
direction?: MapaReportDirection;
|
|
401
|
+
classification?: Classification$1;
|
|
402
|
+
}
|
|
403
|
+
interface MapaReportRankingEntry {
|
|
404
|
+
id?: string | number;
|
|
405
|
+
name: string;
|
|
406
|
+
/** Secondary line under the name — CPF, participant count, unit… */
|
|
407
|
+
description?: string;
|
|
408
|
+
/** Overall percentage, rendered when `showAverage` is on. */
|
|
409
|
+
average?: number;
|
|
410
|
+
dimensions: MapaReportRankingDimension[];
|
|
411
|
+
}
|
|
412
|
+
interface MapaReportRankingView {
|
|
413
|
+
id: string;
|
|
414
|
+
label: string;
|
|
415
|
+
/** Material icon ligature for the mode switch. */
|
|
416
|
+
icon?: string;
|
|
417
|
+
entries: MapaReportRankingEntry[];
|
|
418
|
+
}
|
|
419
|
+
|
|
276
420
|
interface TableColumnStatus {
|
|
277
421
|
label?: string[];
|
|
278
422
|
color?: string[];
|
|
@@ -465,6 +609,41 @@ declare const MAPA_UI_TEXTS: InjectionToken<Partial<{
|
|
|
465
609
|
negativeDirectionLabel: string;
|
|
466
610
|
positiveDirectionLabel: string;
|
|
467
611
|
}>;
|
|
612
|
+
report: Partial<{
|
|
613
|
+
summarized: string;
|
|
614
|
+
detailed: string;
|
|
615
|
+
list: string;
|
|
616
|
+
chart: string;
|
|
617
|
+
viewModeLabel: string;
|
|
618
|
+
readingInformationTitle: string;
|
|
619
|
+
dimensionTitle: string;
|
|
620
|
+
conceptTitle: string;
|
|
621
|
+
classificationTitle: string;
|
|
622
|
+
resultReadingTitle: string;
|
|
623
|
+
resultTitle: string;
|
|
624
|
+
globalAverageTitle: string;
|
|
625
|
+
factorsTitle: string;
|
|
626
|
+
strongPointsTitle: string;
|
|
627
|
+
attentionPointsTitle: string;
|
|
628
|
+
vulnerabilitiesTitle: string;
|
|
629
|
+
positiveDirectionLabel: string;
|
|
630
|
+
negativeDirectionLabel: string;
|
|
631
|
+
lowerIntensityLabel: string;
|
|
632
|
+
higherIntensityLabel: string;
|
|
633
|
+
noClassification: string;
|
|
634
|
+
emptyState: string;
|
|
635
|
+
interpretationTitle: string;
|
|
636
|
+
detailedListLabel: string;
|
|
637
|
+
groupAverageTitle: string;
|
|
638
|
+
groupDistributionLabel: string;
|
|
639
|
+
overallPercentageTitle: string;
|
|
640
|
+
scaleConceptTitle: string;
|
|
641
|
+
psychosocialFactorsTitle: string;
|
|
642
|
+
editConclusionLabel: string;
|
|
643
|
+
meterLabel: (name: string, value: number) => string;
|
|
644
|
+
gaugeLabel: (name: string, value: number) => string;
|
|
645
|
+
itemCountLabel: (count: number) => string;
|
|
646
|
+
}>;
|
|
468
647
|
paginator: Partial<{
|
|
469
648
|
itemsPerPage: string;
|
|
470
649
|
nextPage: string;
|
|
@@ -1143,17 +1322,43 @@ declare class MapaBenchmarkIndicatorComponent {
|
|
|
1143
1322
|
|
|
1144
1323
|
declare class MapaBreadcrumbComponent {
|
|
1145
1324
|
items: Breadpiece[];
|
|
1325
|
+
separator: string;
|
|
1326
|
+
ariaLabel: string;
|
|
1146
1327
|
static ɵfac: i0.ɵɵFactoryDeclaration<MapaBreadcrumbComponent, never>;
|
|
1147
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MapaBreadcrumbComponent, "mapa-breadcrumb", never, { "items": { "alias": "items"; "required": false; }; }, {}, never, never, true, never>;
|
|
1328
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MapaBreadcrumbComponent, "mapa-breadcrumb", never, { "items": { "alias": "items"; "required": false; }; "separator": { "alias": "separator"; "required": false; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; }; }, {}, never, never, true, never>;
|
|
1148
1329
|
}
|
|
1149
1330
|
|
|
1150
1331
|
declare class ButtonComponent {
|
|
1151
1332
|
color: 'primary' | 'accent' | 'basic' | null | undefined;
|
|
1152
1333
|
disabled: boolean;
|
|
1334
|
+
shape: 'pill' | 'rounded';
|
|
1335
|
+
fullWidth: boolean;
|
|
1153
1336
|
clicked: EventEmitter<void>;
|
|
1154
1337
|
onClick(): void;
|
|
1155
1338
|
static ɵfac: i0.ɵɵFactoryDeclaration<ButtonComponent, never>;
|
|
1156
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ButtonComponent, "mapa-button", never, { "color": { "alias": "color"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, { "clicked": "clicked"; }, never, ["*"], true, never>;
|
|
1339
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ButtonComponent, "mapa-button", never, { "color": { "alias": "color"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "shape": { "alias": "shape"; "required": false; }; "fullWidth": { "alias": "fullWidth"; "required": false; }; }, { "clicked": "clicked"; }, never, ["*"], true, never>;
|
|
1340
|
+
}
|
|
1341
|
+
|
|
1342
|
+
type TagSize = 'small' | 'medium' | 'large';
|
|
1343
|
+
type TagAppearance = 'soft' | 'solid' | 'tonal';
|
|
1344
|
+
type TagShape = 'pill' | 'rounded';
|
|
1345
|
+
type TagCasing = 'auto' | 'uppercase' | 'natural';
|
|
1346
|
+
declare class MapaClassificationTagComponent {
|
|
1347
|
+
private readonly i18n;
|
|
1348
|
+
readonly classification: i0.InputSignal<Classification$1 | null | undefined>;
|
|
1349
|
+
readonly size: i0.InputSignal<TagSize>;
|
|
1350
|
+
readonly appearance: i0.InputSignal<TagAppearance>;
|
|
1351
|
+
readonly shape: i0.InputSignal<TagShape>;
|
|
1352
|
+
readonly casing: i0.InputSignal<TagCasing>;
|
|
1353
|
+
/** Shown when there is no classification; defaults to the i18n text. */
|
|
1354
|
+
readonly fallbackLabel: i0.InputSignal<string | undefined>;
|
|
1355
|
+
protected readonly label: i0.Signal<string>;
|
|
1356
|
+
protected readonly background: i0.Signal<string>;
|
|
1357
|
+
protected readonly foreground: i0.Signal<string>;
|
|
1358
|
+
protected readonly border: i0.Signal<string>;
|
|
1359
|
+
protected readonly usesNaturalCasing: i0.Signal<boolean>;
|
|
1360
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MapaClassificationTagComponent, never>;
|
|
1361
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MapaClassificationTagComponent, "mapa-classification-tag", never, { "classification": { "alias": "classification"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "appearance": { "alias": "appearance"; "required": false; "isSignal": true; }; "shape": { "alias": "shape"; "required": false; "isSignal": true; }; "casing": { "alias": "casing"; "required": false; "isSignal": true; }; "fallbackLabel": { "alias": "fallbackLabel"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
1157
1362
|
}
|
|
1158
1363
|
|
|
1159
1364
|
declare class ButtonIconComponent implements OnInit, OnChanges {
|
|
@@ -1444,6 +1649,24 @@ declare class CheckboxComponent {
|
|
|
1444
1649
|
static ɵcmp: i0.ɵɵComponentDeclaration<CheckboxComponent, "mapa-checkbox", never, { "color": { "alias": "color"; "required": false; }; "formControl": { "alias": "formControl"; "required": false; }; }, {}, never, never, true, never>;
|
|
1445
1650
|
}
|
|
1446
1651
|
|
|
1652
|
+
declare class MapaConclusionCardComponent {
|
|
1653
|
+
private readonly i18n;
|
|
1654
|
+
readonly data: i0.InputSignal<MapaConclusionCardData>;
|
|
1655
|
+
readonly editable: i0.InputSignal<boolean>;
|
|
1656
|
+
/** Overrides the edit action label; defaults to the i18n text. */
|
|
1657
|
+
readonly editLabel: i0.InputSignal<string | undefined>;
|
|
1658
|
+
readonly expanded: i0.ModelSignal<boolean>;
|
|
1659
|
+
readonly edit: i0.OutputEmitterRef<void>;
|
|
1660
|
+
protected readonly panelId: string;
|
|
1661
|
+
protected readonly editCaption: i0.Signal<string>;
|
|
1662
|
+
protected readonly isOverall: i0.Signal<boolean>;
|
|
1663
|
+
protected readonly icon: i0.Signal<"auto_awesome" | "article">;
|
|
1664
|
+
protected readonly metadata: i0.Signal<mapa_library_ui.MapaConclusionMetadata[]>;
|
|
1665
|
+
protected readonly hasConclusion: i0.Signal<boolean>;
|
|
1666
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MapaConclusionCardComponent, never>;
|
|
1667
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MapaConclusionCardComponent, "mapa-conclusion-card", never, { "data": { "alias": "data"; "required": true; "isSignal": true; }; "editable": { "alias": "editable"; "required": false; "isSignal": true; }; "editLabel": { "alias": "editLabel"; "required": false; "isSignal": true; }; "expanded": { "alias": "expanded"; "required": false; "isSignal": true; }; }, { "expanded": "expandedChange"; "edit": "edit"; }, never, never, true, never>;
|
|
1668
|
+
}
|
|
1669
|
+
|
|
1447
1670
|
interface MapaDatepickerRangeValue {
|
|
1448
1671
|
startDate: string | null;
|
|
1449
1672
|
endDate: string | null;
|
|
@@ -1846,6 +2069,7 @@ declare class MapaTableComponent {
|
|
|
1846
2069
|
protected cellTemplate(columnKey: string): TemplateRef<MapaTableCellContext> | null;
|
|
1847
2070
|
protected isSortable(column: TableColumn): boolean;
|
|
1848
2071
|
protected ariaSort(column: TableColumn): 'ascending' | 'descending' | 'none' | null;
|
|
2072
|
+
protected isSorted(column: TableColumn): boolean;
|
|
1849
2073
|
protected sortIcon(column: TableColumn): string;
|
|
1850
2074
|
protected changeSort(column: TableColumn): void;
|
|
1851
2075
|
protected handlePage(event: PageEvent): void;
|
|
@@ -1922,6 +2146,7 @@ interface GroupReportRow extends Record<string, GroupReportRowValue> {
|
|
|
1922
2146
|
}
|
|
1923
2147
|
|
|
1924
2148
|
declare class MapaGroupReportComponent implements OnChanges {
|
|
2149
|
+
private readonly i18n;
|
|
1925
2150
|
groupReport: GroupReportItem[];
|
|
1926
2151
|
showGroupReportGeneral: boolean;
|
|
1927
2152
|
onSortChange: EventEmitter<Sort>;
|
|
@@ -2028,6 +2253,228 @@ declare class ReportItemComponent implements OnChanges {
|
|
|
2028
2253
|
static ɵcmp: i0.ɵɵComponentDeclaration<ReportItemComponent, "mapa-report-item", never, { "itemData": { "alias": "itemData"; "required": false; }; "menuItems": { "alias": "menuItems"; "required": false; }; }, { "clicked": "clicked"; "emitMenu": "emitMenu"; }, never, never, true, never>;
|
|
2029
2254
|
}
|
|
2030
2255
|
|
|
2256
|
+
declare class MapaReportGroupProfileWidgetComponent {
|
|
2257
|
+
protected readonly i18n: MapaI18nService;
|
|
2258
|
+
readonly heading: i0.InputSignal<MapaReportHeading | undefined>;
|
|
2259
|
+
readonly data: i0.InputSignal<MapaReportGroupProfileData | undefined>;
|
|
2260
|
+
readonly palette: i0.InputSignal<MapaReportPalette>;
|
|
2261
|
+
readonly showAverage: i0.InputSignal<boolean>;
|
|
2262
|
+
readonly showLegend: i0.InputSignal<boolean>;
|
|
2263
|
+
/** Overrides the legend derived from the slice classifications. */
|
|
2264
|
+
readonly legend: i0.InputSignal<MapaReportLegendItem[] | undefined>;
|
|
2265
|
+
/** Overrides the caption above each pill; defaults to the i18n text. */
|
|
2266
|
+
readonly distributionLabel: i0.InputSignal<string | undefined>;
|
|
2267
|
+
/** Overrides the group average caption; defaults to the i18n text. */
|
|
2268
|
+
readonly averageLabel: i0.InputSignal<string | undefined>;
|
|
2269
|
+
protected readonly distributionCaption: i0.Signal<string>;
|
|
2270
|
+
protected readonly averageCaption: i0.Signal<string>;
|
|
2271
|
+
protected readonly dimensions: i0.Signal<MapaReportGroupProfileDimension[]>;
|
|
2272
|
+
protected readonly average: i0.Signal<number | null>;
|
|
2273
|
+
/** The track only takes whole percentages; the caption keeps the precision. */
|
|
2274
|
+
protected readonly averageText: i0.Signal<string>;
|
|
2275
|
+
protected readonly legendItems: i0.Signal<MapaReportLegendItem[]>;
|
|
2276
|
+
/** Zero-width slices would still cost a pill seam, so they are dropped. */
|
|
2277
|
+
protected slices(dimension: MapaReportGroupProfileDimension): MapaReportGroupProfileSlice[];
|
|
2278
|
+
protected width(slice: MapaReportGroupProfileSlice): number;
|
|
2279
|
+
protected sliceColor(slice: MapaReportGroupProfileSlice): string;
|
|
2280
|
+
protected sliceLabel(slice: MapaReportGroupProfileSlice): string;
|
|
2281
|
+
protected sliceValue(slice: MapaReportGroupProfileSlice): string;
|
|
2282
|
+
protected sliceTitle(slice: MapaReportGroupProfileSlice): string;
|
|
2283
|
+
/** The values line above each pill, in the same order as the slices. */
|
|
2284
|
+
protected valuesLabel(dimension: MapaReportGroupProfileDimension): string;
|
|
2285
|
+
protected pillLabel(dimension: MapaReportGroupProfileDimension): string;
|
|
2286
|
+
protected direction(dimension?: MapaReportGroupProfileDimension): MapaReportDirection | undefined;
|
|
2287
|
+
protected directionArrow(dimension?: MapaReportGroupProfileDimension): string;
|
|
2288
|
+
protected directionLabel(dimension?: MapaReportGroupProfileDimension): string;
|
|
2289
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MapaReportGroupProfileWidgetComponent, never>;
|
|
2290
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MapaReportGroupProfileWidgetComponent, "mapa-report-group-profile-widget", never, { "heading": { "alias": "heading"; "required": false; "isSignal": true; }; "data": { "alias": "data"; "required": false; "isSignal": true; }; "palette": { "alias": "palette"; "required": false; "isSignal": true; }; "showAverage": { "alias": "showAverage"; "required": false; "isSignal": true; }; "showLegend": { "alias": "showLegend"; "required": false; "isSignal": true; }; "legend": { "alias": "legend"; "required": false; "isSignal": true; }; "distributionLabel": { "alias": "distributionLabel"; "required": false; "isSignal": true; }; "averageLabel": { "alias": "averageLabel"; "required": false; "isSignal": true; }; }, {}, never, ["[mapaReportGroupProfileFilters]"], true, never>;
|
|
2291
|
+
}
|
|
2292
|
+
|
|
2293
|
+
type MapaReportIndicatorsViewMode = 'list' | 'chart' | 'detailed';
|
|
2294
|
+
declare class MapaReportIndicatorsWidgetComponent {
|
|
2295
|
+
protected readonly i18n: MapaI18nService;
|
|
2296
|
+
readonly heading: i0.InputSignal<MapaReportHeading>;
|
|
2297
|
+
readonly groups: i0.InputSignal<MapaReportIndicatorGroup[]>;
|
|
2298
|
+
readonly legendGroups: i0.InputSignal<MapaReportLegendGroup[]>;
|
|
2299
|
+
readonly legendTitle: i0.InputSignal<string | undefined>;
|
|
2300
|
+
readonly legendIntro: i0.InputSignal<string | undefined>;
|
|
2301
|
+
readonly legendExpanded: i0.InputSignal<boolean>;
|
|
2302
|
+
/** Overrides the detailed toggle label; defaults to the i18n text. */
|
|
2303
|
+
readonly detailedViewLabel: i0.InputSignal<string | undefined>;
|
|
2304
|
+
/** Overrides the narrow-screen detailed toggle label. */
|
|
2305
|
+
readonly compactDetailedViewLabel: i0.InputSignal<string | undefined>;
|
|
2306
|
+
readonly palette: i0.InputSignal<MapaReportPalette>;
|
|
2307
|
+
readonly mode: i0.ModelSignal<MapaReportIndicatorsViewMode>;
|
|
2308
|
+
protected readonly detailedViewCaption: i0.Signal<string>;
|
|
2309
|
+
protected readonly compactDetailedViewCaption: i0.Signal<string>;
|
|
2310
|
+
protected readonly indicators: i0.Signal<MapaReportIndicator[]>;
|
|
2311
|
+
protected readonly indicatorColumns: i0.Signal<MapaReportIndicatorGroup[][]>;
|
|
2312
|
+
protected color(indicator: MapaReportIndicator): string;
|
|
2313
|
+
protected value(indicator: MapaReportIndicator): number;
|
|
2314
|
+
protected foreground(indicator: MapaReportIndicator): string;
|
|
2315
|
+
protected directionArrow(indicator: MapaReportIndicator): string;
|
|
2316
|
+
protected directionLabel(indicator: MapaReportIndicator): string;
|
|
2317
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MapaReportIndicatorsWidgetComponent, never>;
|
|
2318
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MapaReportIndicatorsWidgetComponent, "mapa-report-indicators-widget", never, { "heading": { "alias": "heading"; "required": true; "isSignal": true; }; "groups": { "alias": "groups"; "required": false; "isSignal": true; }; "legendGroups": { "alias": "legendGroups"; "required": false; "isSignal": true; }; "legendTitle": { "alias": "legendTitle"; "required": false; "isSignal": true; }; "legendIntro": { "alias": "legendIntro"; "required": false; "isSignal": true; }; "legendExpanded": { "alias": "legendExpanded"; "required": false; "isSignal": true; }; "detailedViewLabel": { "alias": "detailedViewLabel"; "required": false; "isSignal": true; }; "compactDetailedViewLabel": { "alias": "compactDetailedViewLabel"; "required": false; "isSignal": true; }; "palette": { "alias": "palette"; "required": false; "isSignal": true; }; "mode": { "alias": "mode"; "required": false; "isSignal": true; }; }, { "mode": "modeChange"; }, never, never, true, never>;
|
|
2319
|
+
}
|
|
2320
|
+
|
|
2321
|
+
declare class MapaReportLegendComponent {
|
|
2322
|
+
protected readonly i18n: MapaI18nService;
|
|
2323
|
+
readonly title: i0.InputSignal<string | undefined>;
|
|
2324
|
+
readonly intro: i0.InputSignal<string | undefined>;
|
|
2325
|
+
readonly groupsTitle: i0.InputSignal<string | undefined>;
|
|
2326
|
+
readonly groups: i0.InputSignal<MapaReportLegendGroup[]>;
|
|
2327
|
+
readonly expanded: i0.InputSignal<boolean>;
|
|
2328
|
+
readonly appearance: i0.InputSignal<"default" | "psychosocial">;
|
|
2329
|
+
protected directionArrow(direction?: MapaReportDirection): string;
|
|
2330
|
+
protected directionLabel(direction?: MapaReportDirection): string;
|
|
2331
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MapaReportLegendComponent, never>;
|
|
2332
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MapaReportLegendComponent, "mapa-report-legend", never, { "title": { "alias": "title"; "required": false; "isSignal": true; }; "intro": { "alias": "intro"; "required": false; "isSignal": true; }; "groupsTitle": { "alias": "groupsTitle"; "required": false; "isSignal": true; }; "groups": { "alias": "groups"; "required": false; "isSignal": true; }; "expanded": { "alias": "expanded"; "required": false; "isSignal": true; }; "appearance": { "alias": "appearance"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
2333
|
+
}
|
|
2334
|
+
|
|
2335
|
+
type MapaReportScaleViewMode = 'summarized' | 'detailed';
|
|
2336
|
+
declare class MapaReportScaleWidgetComponent {
|
|
2337
|
+
protected readonly i18n: MapaI18nService;
|
|
2338
|
+
readonly heading: i0.InputSignal<MapaReportHeading>;
|
|
2339
|
+
readonly groups: i0.InputSignal<MapaReportScaleGroup[]>;
|
|
2340
|
+
readonly legendGroups: i0.InputSignal<MapaReportLegendGroup[]>;
|
|
2341
|
+
readonly legendTitle: i0.InputSignal<string | undefined>;
|
|
2342
|
+
readonly legendIntro: i0.InputSignal<string | undefined>;
|
|
2343
|
+
readonly legendGroupsTitle: i0.InputSignal<string | undefined>;
|
|
2344
|
+
readonly legendExpanded: i0.InputSignal<boolean>;
|
|
2345
|
+
readonly palette: i0.InputSignal<MapaReportPalette>;
|
|
2346
|
+
readonly mode: i0.ModelSignal<MapaReportScaleViewMode>;
|
|
2347
|
+
protected readonly scales: i0.Signal<MapaReportScale[]>;
|
|
2348
|
+
protected color(scale: MapaReportDimension): string;
|
|
2349
|
+
protected value(scale: MapaReportDimension): number;
|
|
2350
|
+
protected direction(dimension: MapaReportDimension, scale?: MapaReportScale): MapaReportDirection;
|
|
2351
|
+
protected directionArrow(dimension: MapaReportDimension, scale?: MapaReportScale): string;
|
|
2352
|
+
protected directionLabel(dimension: MapaReportDimension, scale?: MapaReportScale): string;
|
|
2353
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MapaReportScaleWidgetComponent, never>;
|
|
2354
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MapaReportScaleWidgetComponent, "mapa-report-scale-widget", never, { "heading": { "alias": "heading"; "required": true; "isSignal": true; }; "groups": { "alias": "groups"; "required": false; "isSignal": true; }; "legendGroups": { "alias": "legendGroups"; "required": false; "isSignal": true; }; "legendTitle": { "alias": "legendTitle"; "required": false; "isSignal": true; }; "legendIntro": { "alias": "legendIntro"; "required": false; "isSignal": true; }; "legendGroupsTitle": { "alias": "legendGroupsTitle"; "required": false; "isSignal": true; }; "legendExpanded": { "alias": "legendExpanded"; "required": false; "isSignal": true; }; "palette": { "alias": "palette"; "required": false; "isSignal": true; }; "mode": { "alias": "mode"; "required": false; "isSignal": true; }; }, { "mode": "modeChange"; }, never, never, true, never>;
|
|
2355
|
+
}
|
|
2356
|
+
|
|
2357
|
+
declare class MapaReportSocioemotionalWidgetComponent {
|
|
2358
|
+
protected readonly i18n: MapaI18nService;
|
|
2359
|
+
protected readonly gaugeSegments: {
|
|
2360
|
+
index: number;
|
|
2361
|
+
x1: number;
|
|
2362
|
+
y1: number;
|
|
2363
|
+
x2: number;
|
|
2364
|
+
y2: number;
|
|
2365
|
+
}[];
|
|
2366
|
+
readonly heading: i0.InputSignal<MapaReportHeading>;
|
|
2367
|
+
readonly data: i0.InputSignal<MapaReportSocioemotionalData>;
|
|
2368
|
+
readonly palette: i0.InputSignal<MapaReportPalette>;
|
|
2369
|
+
protected clamp(value?: number): number;
|
|
2370
|
+
protected activeSegmentCount(value?: number): number;
|
|
2371
|
+
protected classificationLabel(classification?: Classification$1): string;
|
|
2372
|
+
protected directionArrow(direction?: 'positive' | 'negative'): string;
|
|
2373
|
+
protected skillHeadingLabel(name: string, direction?: 'positive' | 'negative'): string;
|
|
2374
|
+
protected vulnerabilityDimensions(scale: MapaReportScale): MapaReportDimension[];
|
|
2375
|
+
protected gaugeColor(classification?: Classification$1): string;
|
|
2376
|
+
protected gaugeValueText(value: number | undefined, classification?: Classification$1): string;
|
|
2377
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MapaReportSocioemotionalWidgetComponent, never>;
|
|
2378
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MapaReportSocioemotionalWidgetComponent, "mapa-report-socioemotional-widget", never, { "heading": { "alias": "heading"; "required": true; "isSignal": true; }; "data": { "alias": "data"; "required": true; "isSignal": true; }; "palette": { "alias": "palette"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
2379
|
+
}
|
|
2380
|
+
|
|
2381
|
+
declare class MapaReportPsychosocialWidgetComponent {
|
|
2382
|
+
protected readonly i18n: MapaI18nService;
|
|
2383
|
+
readonly heading: i0.InputSignal<MapaReportHeading>;
|
|
2384
|
+
readonly data: i0.InputSignal<MapaReportPsychosocialData>;
|
|
2385
|
+
readonly palette: i0.InputSignal<MapaReportPalette>;
|
|
2386
|
+
protected color(indicator: MapaReportIndicator): string;
|
|
2387
|
+
protected directionArrow(direction?: MapaReportDirection): string;
|
|
2388
|
+
protected directionLabel(direction?: MapaReportDirection): string;
|
|
2389
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MapaReportPsychosocialWidgetComponent, never>;
|
|
2390
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MapaReportPsychosocialWidgetComponent, "mapa-report-psychosocial-widget", never, { "heading": { "alias": "heading"; "required": true; "isSignal": true; }; "data": { "alias": "data"; "required": true; "isSignal": true; }; "palette": { "alias": "palette"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
2391
|
+
}
|
|
2392
|
+
|
|
2393
|
+
type MapaReportPointsViewMode = 'summarized' | 'detailed';
|
|
2394
|
+
declare class MapaReportPointsWidgetComponent {
|
|
2395
|
+
protected readonly i18n: MapaI18nService;
|
|
2396
|
+
readonly heading: i0.InputSignal<MapaReportHeading>;
|
|
2397
|
+
readonly data: i0.InputSignal<MapaReportPointsData>;
|
|
2398
|
+
readonly palette: i0.InputSignal<MapaReportPalette>;
|
|
2399
|
+
readonly mode: i0.ModelSignal<MapaReportPointsViewMode>;
|
|
2400
|
+
protected color(item: MapaReportDimension, fallback: string): string;
|
|
2401
|
+
protected countLabel(count: number): string;
|
|
2402
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MapaReportPointsWidgetComponent, never>;
|
|
2403
|
+
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
|
+
}
|
|
2405
|
+
|
|
2406
|
+
interface RankingRow extends Record<string, unknown> {
|
|
2407
|
+
name: string;
|
|
2408
|
+
description?: string;
|
|
2409
|
+
average?: number;
|
|
2410
|
+
}
|
|
2411
|
+
declare class MapaReportRankingTableWidgetComponent {
|
|
2412
|
+
protected readonly i18n: MapaI18nService;
|
|
2413
|
+
readonly heading: i0.InputSignal<MapaReportHeading | undefined>;
|
|
2414
|
+
readonly views: i0.InputSignal<MapaReportRankingView[]>;
|
|
2415
|
+
/** Id of the active view; two-way so the host can drive or observe it. */
|
|
2416
|
+
readonly view: i0.ModelSignal<string | undefined>;
|
|
2417
|
+
readonly palette: i0.InputSignal<MapaReportPalette>;
|
|
2418
|
+
readonly showAverage: i0.InputSignal<boolean>;
|
|
2419
|
+
/**
|
|
2420
|
+
* Swaps the classification chip for the raw score and direction while the
|
|
2421
|
+
* cell is hovered or focused. Off by default — the chip already carries the
|
|
2422
|
+
* reading, so the swap only makes the table jump under the cursor.
|
|
2423
|
+
*/
|
|
2424
|
+
readonly showScoreOnHover: i0.InputSignal<boolean>;
|
|
2425
|
+
/** Header of the first column, per view id. Falls back to the view label. */
|
|
2426
|
+
readonly entryColumnLabel: i0.InputSignal<string | undefined>;
|
|
2427
|
+
/** Footnote under the table. */
|
|
2428
|
+
readonly note: i0.InputSignal<string | undefined>;
|
|
2429
|
+
/** Header of the average column; defaults to the i18n text. */
|
|
2430
|
+
readonly averageLabel: i0.InputSignal<string | undefined>;
|
|
2431
|
+
private readonly sort;
|
|
2432
|
+
protected readonly visibleViews: i0.Signal<MapaReportRankingView[]>;
|
|
2433
|
+
protected readonly activeView: i0.Signal<MapaReportRankingView>;
|
|
2434
|
+
protected readonly entries: i0.Signal<MapaReportRankingEntry[]>;
|
|
2435
|
+
protected readonly columns: i0.Signal<TableColumn[]>;
|
|
2436
|
+
protected readonly rows: i0.Signal<RankingRow[]>;
|
|
2437
|
+
protected handleSortChange(change: DataTableSortChange): void;
|
|
2438
|
+
protected selectView(id: string): void;
|
|
2439
|
+
protected classification(row: RankingRow, key: string): Classification$1 | undefined;
|
|
2440
|
+
protected value(row: RankingRow, key: string): string;
|
|
2441
|
+
protected direction(row: RankingRow, key: string): MapaReportDirection | undefined;
|
|
2442
|
+
protected directionArrow(row: RankingRow, key: string): string;
|
|
2443
|
+
protected directionLabel(row: RankingRow, key: string): string;
|
|
2444
|
+
protected averageOf(row: RankingRow): string;
|
|
2445
|
+
protected trackColumn(index: number, column: TableColumn): string;
|
|
2446
|
+
private toRow;
|
|
2447
|
+
private cell;
|
|
2448
|
+
private sortRows;
|
|
2449
|
+
/**
|
|
2450
|
+
* Dimensions sort by classification rank so the columns order by severity,
|
|
2451
|
+
* not by the label that happens to be printed in the chip.
|
|
2452
|
+
*/
|
|
2453
|
+
private sortValue;
|
|
2454
|
+
private columnKey;
|
|
2455
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MapaReportRankingTableWidgetComponent, never>;
|
|
2456
|
+
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
|
+
}
|
|
2458
|
+
|
|
2459
|
+
declare class MapaResultTrackComponent {
|
|
2460
|
+
private readonly i18n;
|
|
2461
|
+
readonly name: i0.InputSignal<string>;
|
|
2462
|
+
readonly value: i0.InputSignal<number>;
|
|
2463
|
+
readonly color: i0.InputSignal<string>;
|
|
2464
|
+
readonly mode: i0.InputSignal<"linear" | "diverging">;
|
|
2465
|
+
readonly appearance: i0.InputSignal<"rounded" | "segmented">;
|
|
2466
|
+
readonly direction: i0.InputSignal<MapaReportDirection>;
|
|
2467
|
+
readonly showValue: i0.InputSignal<boolean>;
|
|
2468
|
+
readonly ariaLabel: i0.InputSignal<string | undefined>;
|
|
2469
|
+
protected readonly safeValue: i0.Signal<number>;
|
|
2470
|
+
protected readonly fillLeft: i0.Signal<number>;
|
|
2471
|
+
protected readonly fillWidth: i0.Signal<number>;
|
|
2472
|
+
protected readonly badgePosition: i0.Signal<number>;
|
|
2473
|
+
protected readonly label: i0.Signal<string>;
|
|
2474
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MapaResultTrackComponent, never>;
|
|
2475
|
+
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>;
|
|
2476
|
+
}
|
|
2477
|
+
|
|
2031
2478
|
interface Dimension$1 {
|
|
2032
2479
|
dimensionName: string;
|
|
2033
2480
|
direction: string;
|
|
@@ -2273,5 +2720,5 @@ declare class MapaScaleParameterizationComponent {
|
|
|
2273
2720
|
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>;
|
|
2274
2721
|
}
|
|
2275
2722
|
|
|
2276
|
-
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 };
|
|
2277
|
-
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 };
|
|
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 };
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mapa-library-ui",
|
|
3
|
-
"version": "2.1
|
|
3
|
+
"version": "2.2.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.2.0",
|
|
15
15
|
"ng-apexcharts": "^2.3.0",
|
|
16
16
|
"ngx-mask": "^20.0.3",
|
|
17
17
|
"ngx-mat-select-search": "^8.0.4",
|
|
@@ -112,6 +112,54 @@
|
|
|
112
112
|
"types": "./src/lib/components/report-item/index.d.ts",
|
|
113
113
|
"default": "./fesm2022/mapa-library-ui-src-lib-components-report-item.mjs"
|
|
114
114
|
},
|
|
115
|
+
"./classification-tag": {
|
|
116
|
+
"types": "./index.d.ts",
|
|
117
|
+
"default": "./fesm2022/mapa-library-ui.mjs"
|
|
118
|
+
},
|
|
119
|
+
"./conclusion-card": {
|
|
120
|
+
"types": "./index.d.ts",
|
|
121
|
+
"default": "./fesm2022/mapa-library-ui.mjs"
|
|
122
|
+
},
|
|
123
|
+
"./report-group-profile": {
|
|
124
|
+
"types": "./index.d.ts",
|
|
125
|
+
"default": "./fesm2022/mapa-library-ui.mjs"
|
|
126
|
+
},
|
|
127
|
+
"./report-indicators": {
|
|
128
|
+
"types": "./index.d.ts",
|
|
129
|
+
"default": "./fesm2022/mapa-library-ui.mjs"
|
|
130
|
+
},
|
|
131
|
+
"./report-legend": {
|
|
132
|
+
"types": "./index.d.ts",
|
|
133
|
+
"default": "./fesm2022/mapa-library-ui.mjs"
|
|
134
|
+
},
|
|
135
|
+
"./report-points": {
|
|
136
|
+
"types": "./index.d.ts",
|
|
137
|
+
"default": "./fesm2022/mapa-library-ui.mjs"
|
|
138
|
+
},
|
|
139
|
+
"./report-psychosocial": {
|
|
140
|
+
"types": "./index.d.ts",
|
|
141
|
+
"default": "./fesm2022/mapa-library-ui.mjs"
|
|
142
|
+
},
|
|
143
|
+
"./report-ranking-table": {
|
|
144
|
+
"types": "./index.d.ts",
|
|
145
|
+
"default": "./fesm2022/mapa-library-ui.mjs"
|
|
146
|
+
},
|
|
147
|
+
"./report-scale": {
|
|
148
|
+
"types": "./index.d.ts",
|
|
149
|
+
"default": "./fesm2022/mapa-library-ui.mjs"
|
|
150
|
+
},
|
|
151
|
+
"./report-socioemotional": {
|
|
152
|
+
"types": "./index.d.ts",
|
|
153
|
+
"default": "./fesm2022/mapa-library-ui.mjs"
|
|
154
|
+
},
|
|
155
|
+
"./report-widgets": {
|
|
156
|
+
"types": "./index.d.ts",
|
|
157
|
+
"default": "./fesm2022/mapa-library-ui.mjs"
|
|
158
|
+
},
|
|
159
|
+
"./result-track": {
|
|
160
|
+
"types": "./index.d.ts",
|
|
161
|
+
"default": "./fesm2022/mapa-library-ui.mjs"
|
|
162
|
+
},
|
|
115
163
|
"./scale": {
|
|
116
164
|
"types": "./src/lib/components/scale/index.d.ts",
|
|
117
165
|
"default": "./fesm2022/mapa-library-ui-src-lib-components-scale.mjs"
|
|
@@ -7,8 +7,10 @@ interface Breadpiece {
|
|
|
7
7
|
|
|
8
8
|
declare class MapaBreadcrumbComponent {
|
|
9
9
|
items: Breadpiece[];
|
|
10
|
+
separator: string;
|
|
11
|
+
ariaLabel: string;
|
|
10
12
|
static ɵfac: i0.ɵɵFactoryDeclaration<MapaBreadcrumbComponent, never>;
|
|
11
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MapaBreadcrumbComponent, "mapa-breadcrumb", never, { "items": { "alias": "items"; "required": false; }; }, {}, never, never, true, never>;
|
|
13
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MapaBreadcrumbComponent, "mapa-breadcrumb", never, { "items": { "alias": "items"; "required": false; }; "separator": { "alias": "separator"; "required": false; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; }; }, {}, never, never, true, never>;
|
|
12
14
|
}
|
|
13
15
|
|
|
14
16
|
export { MapaBreadcrumbComponent };
|