mapa-library-ui 2.1.1 → 2.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/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 +48 -3
- 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-scale-parameterization.mjs +39 -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 +39 -0
- 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 +797 -25
- package/fesm2022/mapa-library-ui.mjs.map +1 -1
- package/index.d.ts +451 -4
- package/mapa-library-ui-2.2.0.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.1.tgz +0 -0
|
@@ -4,10 +4,12 @@ import { EventEmitter } from '@angular/core';
|
|
|
4
4
|
declare class ButtonComponent {
|
|
5
5
|
color: 'primary' | 'accent' | 'basic' | null | undefined;
|
|
6
6
|
disabled: boolean;
|
|
7
|
+
shape: 'pill' | 'rounded';
|
|
8
|
+
fullWidth: boolean;
|
|
7
9
|
clicked: EventEmitter<void>;
|
|
8
10
|
onClick(): void;
|
|
9
11
|
static ɵfac: i0.ɵɵFactoryDeclaration<ButtonComponent, never>;
|
|
10
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ButtonComponent, "mapa-button", never, { "color": { "alias": "color"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, { "clicked": "clicked"; }, never, ["*"], true, never>;
|
|
12
|
+
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>;
|
|
11
13
|
}
|
|
12
14
|
|
|
13
15
|
export { ButtonComponent };
|
|
@@ -12,10 +12,12 @@ import { MatAccordion } from '@angular/material/expansion';
|
|
|
12
12
|
declare class ButtonComponent {
|
|
13
13
|
color: 'primary' | 'accent' | 'basic' | null | undefined;
|
|
14
14
|
disabled: boolean;
|
|
15
|
+
shape: 'pill' | 'rounded';
|
|
16
|
+
fullWidth: boolean;
|
|
15
17
|
clicked: EventEmitter<void>;
|
|
16
18
|
onClick(): void;
|
|
17
19
|
static ɵfac: i0.ɵɵFactoryDeclaration<ButtonComponent, never>;
|
|
18
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ButtonComponent, "mapa-button", never, { "color": { "alias": "color"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, { "clicked": "clicked"; }, never, ["*"], true, never>;
|
|
20
|
+
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>;
|
|
19
21
|
}
|
|
20
22
|
|
|
21
23
|
interface ElementTreeNode {
|
|
@@ -274,6 +276,7 @@ interface CapabilityClassification {
|
|
|
274
276
|
|
|
275
277
|
interface Classification {
|
|
276
278
|
classificationId?: number;
|
|
279
|
+
classificationCode?: string;
|
|
277
280
|
classificationName?: string;
|
|
278
281
|
classificationColor?: string;
|
|
279
282
|
classificationBg?: string;
|
|
@@ -8,10 +8,12 @@ import { MatDialogRef, MatDialog, MatDialogConfig } from '@angular/material/dial
|
|
|
8
8
|
declare class ButtonComponent {
|
|
9
9
|
color: 'primary' | 'accent' | 'basic' | null | undefined;
|
|
10
10
|
disabled: boolean;
|
|
11
|
+
shape: 'pill' | 'rounded';
|
|
12
|
+
fullWidth: boolean;
|
|
11
13
|
clicked: EventEmitter<void>;
|
|
12
14
|
onClick(): void;
|
|
13
15
|
static ɵfac: i0.ɵɵFactoryDeclaration<ButtonComponent, never>;
|
|
14
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ButtonComponent, "mapa-button", never, { "color": { "alias": "color"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, { "clicked": "clicked"; }, never, ["*"], true, never>;
|
|
16
|
+
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>;
|
|
15
17
|
}
|
|
16
18
|
|
|
17
19
|
declare class IconComponent {
|
|
@@ -10,10 +10,12 @@ import * as rxjs from 'rxjs';
|
|
|
10
10
|
declare class ButtonComponent {
|
|
11
11
|
color: 'primary' | 'accent' | 'basic' | null | undefined;
|
|
12
12
|
disabled: boolean;
|
|
13
|
+
shape: 'pill' | 'rounded';
|
|
14
|
+
fullWidth: boolean;
|
|
13
15
|
clicked: EventEmitter<void>;
|
|
14
16
|
onClick(): void;
|
|
15
17
|
static ɵfac: i0.ɵɵFactoryDeclaration<ButtonComponent, never>;
|
|
16
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ButtonComponent, "mapa-button", never, { "color": { "alias": "color"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, { "clicked": "clicked"; }, never, ["*"], true, never>;
|
|
18
|
+
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>;
|
|
17
19
|
}
|
|
18
20
|
|
|
19
21
|
declare class IconComponent {
|
|
@@ -5,10 +5,12 @@ import { FormControl, ControlValueAccessor, FormGroup } from '@angular/forms';
|
|
|
5
5
|
declare class ButtonComponent {
|
|
6
6
|
color: 'primary' | 'accent' | 'basic' | null | undefined;
|
|
7
7
|
disabled: boolean;
|
|
8
|
+
shape: 'pill' | 'rounded';
|
|
9
|
+
fullWidth: boolean;
|
|
8
10
|
clicked: EventEmitter<void>;
|
|
9
11
|
onClick(): void;
|
|
10
12
|
static ɵfac: i0.ɵɵFactoryDeclaration<ButtonComponent, never>;
|
|
11
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ButtonComponent, "mapa-button", never, { "color": { "alias": "color"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, { "clicked": "clicked"; }, never, ["*"], true, never>;
|
|
13
|
+
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>;
|
|
12
14
|
}
|
|
13
15
|
|
|
14
16
|
interface ElementTreeNode {
|
|
@@ -4,6 +4,7 @@ import { SortDirection, Sort } from '@angular/material/sort';
|
|
|
4
4
|
|
|
5
5
|
interface Classification {
|
|
6
6
|
classificationId?: number;
|
|
7
|
+
classificationCode?: string;
|
|
7
8
|
classificationName?: string;
|
|
8
9
|
classificationColor?: string;
|
|
9
10
|
classificationBg?: string;
|
|
@@ -79,6 +80,7 @@ interface GroupReportRow extends Record<string, GroupReportRowValue> {
|
|
|
79
80
|
}
|
|
80
81
|
|
|
81
82
|
declare class MapaGroupReportComponent implements OnChanges {
|
|
83
|
+
private readonly i18n;
|
|
82
84
|
groupReport: GroupReportItem[];
|
|
83
85
|
showGroupReportGeneral: boolean;
|
|
84
86
|
onSortChange: EventEmitter<Sort>;
|
|
@@ -116,6 +116,7 @@ declare function customPaginatorFactory(i18n: MapaI18nService, injector: Injecto
|
|
|
116
116
|
|
|
117
117
|
interface Classification {
|
|
118
118
|
classificationId?: number;
|
|
119
|
+
classificationCode?: string;
|
|
119
120
|
classificationName?: string;
|
|
120
121
|
classificationColor?: string;
|
|
121
122
|
classificationBg?: string;
|
|
@@ -267,6 +268,7 @@ declare class MapaTableComponent {
|
|
|
267
268
|
protected cellTemplate(columnKey: string): TemplateRef<MapaTableCellContext> | null;
|
|
268
269
|
protected isSortable(column: TableColumn): boolean;
|
|
269
270
|
protected ariaSort(column: TableColumn): 'ascending' | 'descending' | 'none' | null;
|
|
271
|
+
protected isSorted(column: TableColumn): boolean;
|
|
270
272
|
protected sortIcon(column: TableColumn): string;
|
|
271
273
|
protected changeSort(column: TableColumn): void;
|
|
272
274
|
protected handlePage(event: PageEvent): void;
|
|
Binary file
|