mapa-library-ui 0.0.8
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 +24 -0
- package/esm2022/lib/core/directives/custom-paginator.directive.mjs +183 -0
- package/esm2022/lib/core/directives/mat-input-autosize.directive.mjs +96 -0
- package/esm2022/lib/core/elements/dropdown.mjs +8 -0
- package/esm2022/lib/core/elements/element-base.mjs +21 -0
- package/esm2022/lib/core/elements/input-text.mjs +8 -0
- package/esm2022/lib/core/interfaces/option.interface.mjs +2 -0
- package/esm2022/mapa-library-ui.mjs +5 -0
- package/esm2022/public-api.mjs +10 -0
- package/esm2022/src/lib/components/button/mapa-library-ui-src-lib-components-button.mjs +5 -0
- package/esm2022/src/lib/components/button/public-api.mjs +6 -0
- package/esm2022/src/lib/components/button/src/button.component.mjs +23 -0
- package/esm2022/src/lib/components/button/src/button.module.mjs +19 -0
- package/esm2022/src/lib/components/button-icon/mapa-library-ui-src-lib-components-button-icon.mjs +5 -0
- package/esm2022/src/lib/components/button-icon/public-api.mjs +6 -0
- package/esm2022/src/lib/components/button-icon/src/button-icon.component.mjs +34 -0
- package/esm2022/src/lib/components/button-icon/src/button-icon.module.mjs +28 -0
- package/esm2022/src/lib/components/checkbox/mapa-library-ui-src-lib-components-checkbox.mjs +5 -0
- package/esm2022/src/lib/components/checkbox/public-api.mjs +6 -0
- package/esm2022/src/lib/components/checkbox/src/checkbox.component.mjs +17 -0
- package/esm2022/src/lib/components/checkbox/src/checkbox.module.mjs +35 -0
- package/esm2022/src/lib/components/dialog/button/public-api.mjs +6 -0
- package/esm2022/src/lib/components/dialog/button/src/button.component.mjs +23 -0
- package/esm2022/src/lib/components/dialog/button/src/button.module.mjs +19 -0
- package/esm2022/src/lib/components/dialog/icon/public-api.mjs +6 -0
- package/esm2022/src/lib/components/dialog/icon/src/icon.component.mjs +26 -0
- package/esm2022/src/lib/components/dialog/icon/src/icon.module.mjs +19 -0
- package/esm2022/src/lib/components/dialog/mapa-library-ui-src-lib-components-dialog.mjs +5 -0
- package/esm2022/src/lib/components/dialog/shared-public-api.mjs +6 -0
- package/esm2022/src/lib/components/dropdown/mapa-library-ui-src-lib-components-dropdown.mjs +5 -0
- package/esm2022/src/lib/components/dropdown/public-api.mjs +6 -0
- package/esm2022/src/lib/components/dropdown/src/dropdown.component.mjs +26 -0
- package/esm2022/src/lib/components/dropdown/src/dropdown.module.mjs +36 -0
- package/esm2022/src/lib/components/dropdown/src/option/option.component.mjs +26 -0
- package/esm2022/src/lib/components/empty/mapa-library-ui-src-lib-components-empty.mjs +5 -0
- package/esm2022/src/lib/components/empty/public-api.mjs +6 -0
- package/esm2022/src/lib/components/empty/src/empty.component.mjs +11 -0
- package/esm2022/src/lib/components/empty/src/empty.module.mjs +24 -0
- package/esm2022/src/lib/components/filters/button/public-api.mjs +6 -0
- package/esm2022/src/lib/components/filters/button/src/button.component.mjs +23 -0
- package/esm2022/src/lib/components/filters/button/src/button.module.mjs +19 -0
- package/esm2022/src/lib/components/filters/icon/public-api.mjs +6 -0
- package/esm2022/src/lib/components/filters/icon/src/icon.component.mjs +26 -0
- package/esm2022/src/lib/components/filters/icon/src/icon.module.mjs +19 -0
- package/esm2022/src/lib/components/filters/mapa-library-ui-src-lib-components-filters.mjs +5 -0
- package/esm2022/src/lib/components/filters/shared-public-api.mjs +6 -0
- package/esm2022/src/lib/components/icon/mapa-library-ui-src-lib-components-icon.mjs +5 -0
- package/esm2022/src/lib/components/icon/public-api.mjs +6 -0
- package/esm2022/src/lib/components/icon/src/icon.component.mjs +26 -0
- package/esm2022/src/lib/components/icon/src/icon.module.mjs +19 -0
- package/esm2022/src/lib/components/input/mapa-library-ui-src-lib-components-input.mjs +5 -0
- package/esm2022/src/lib/components/input/public-api.mjs +6 -0
- package/esm2022/src/lib/components/input/src/input.component.mjs +27 -0
- package/esm2022/src/lib/components/input/src/input.module.mjs +46 -0
- package/esm2022/src/lib/components/nav-list/mapa-library-ui-src-lib-components-nav-list.mjs +5 -0
- package/esm2022/src/lib/components/nav-list/public-api.mjs +6 -0
- package/esm2022/src/lib/components/nav-list/src/nav-list.component.mjs +26 -0
- package/esm2022/src/lib/components/nav-list/src/nav-list.module.mjs +18 -0
- package/esm2022/src/lib/components/radio-button/mapa-library-ui-src-lib-components-radio-button.mjs +5 -0
- package/esm2022/src/lib/components/radio-button/public-api.mjs +6 -0
- package/esm2022/src/lib/components/radio-button/src/radio-button.component.mjs +26 -0
- package/esm2022/src/lib/components/radio-button/src/radio-button.module.mjs +28 -0
- package/esm2022/src/lib/components/report-item/mapa-library-ui-src-lib-components-report-item.mjs +5 -0
- package/esm2022/src/lib/components/report-item/public-api.mjs +6 -0
- package/esm2022/src/lib/components/report-item/src/report-item.component.mjs +34 -0
- package/esm2022/src/lib/components/report-item/src/report-item.module.mjs +32 -0
- package/esm2022/src/lib/components/table/mapa-library-ui-src-lib-components-table.mjs +5 -0
- package/esm2022/src/lib/components/table/public-api.mjs +6 -0
- package/esm2022/src/lib/components/table/src/paginator_customization.mjs +9 -0
- package/esm2022/src/lib/components/table/src/table.component.mjs +112 -0
- package/esm2022/src/lib/components/table/src/table.module.mjs +49 -0
- package/esm2022/src/lib/components/tag/mapa-library-ui-src-lib-components-tag.mjs +5 -0
- package/esm2022/src/lib/components/tag/public-api.mjs +6 -0
- package/esm2022/src/lib/components/tag/tag.component.mjs +15 -0
- package/esm2022/src/lib/components/tag/tag.module.mjs +24 -0
- package/esm2022/src/lib/components/warning/mapa-library-ui-src-lib-components-warning.mjs +5 -0
- package/esm2022/src/lib/components/warning/public-api.mjs +6 -0
- package/esm2022/src/lib/components/warning/src/warning.component.mjs +16 -0
- package/esm2022/src/lib/components/warning/src/warning.module.mjs +26 -0
- package/fesm2022/mapa-library-ui-src-lib-components-button-icon.mjs +70 -0
- package/fesm2022/mapa-library-ui-src-lib-components-button-icon.mjs.map +1 -0
- package/fesm2022/mapa-library-ui-src-lib-components-button.mjs +50 -0
- package/fesm2022/mapa-library-ui-src-lib-components-button.mjs.map +1 -0
- package/fesm2022/mapa-library-ui-src-lib-components-checkbox.mjs +60 -0
- package/fesm2022/mapa-library-ui-src-lib-components-checkbox.mjs.map +1 -0
- package/fesm2022/mapa-library-ui-src-lib-components-dialog.mjs +97 -0
- package/fesm2022/mapa-library-ui-src-lib-components-dialog.mjs.map +1 -0
- package/fesm2022/mapa-library-ui-src-lib-components-dropdown.mjs +91 -0
- package/fesm2022/mapa-library-ui-src-lib-components-dropdown.mjs.map +1 -0
- package/fesm2022/mapa-library-ui-src-lib-components-empty.mjs +43 -0
- package/fesm2022/mapa-library-ui-src-lib-components-empty.mjs.map +1 -0
- package/fesm2022/mapa-library-ui-src-lib-components-filters.mjs +97 -0
- package/fesm2022/mapa-library-ui-src-lib-components-filters.mjs.map +1 -0
- package/fesm2022/mapa-library-ui-src-lib-components-icon.mjs +53 -0
- package/fesm2022/mapa-library-ui-src-lib-components-icon.mjs.map +1 -0
- package/fesm2022/mapa-library-ui-src-lib-components-input.mjs +81 -0
- package/fesm2022/mapa-library-ui-src-lib-components-input.mjs.map +1 -0
- package/fesm2022/mapa-library-ui-src-lib-components-nav-list.mjs +52 -0
- package/fesm2022/mapa-library-ui-src-lib-components-nav-list.mjs.map +1 -0
- package/fesm2022/mapa-library-ui-src-lib-components-radio-button.mjs +62 -0
- package/fesm2022/mapa-library-ui-src-lib-components-radio-button.mjs.map +1 -0
- package/fesm2022/mapa-library-ui-src-lib-components-report-item.mjs +74 -0
- package/fesm2022/mapa-library-ui-src-lib-components-report-item.mjs.map +1 -0
- package/fesm2022/mapa-library-ui-src-lib-components-table.mjs +174 -0
- package/fesm2022/mapa-library-ui-src-lib-components-table.mjs.map +1 -0
- package/fesm2022/mapa-library-ui-src-lib-components-tag.mjs +47 -0
- package/fesm2022/mapa-library-ui-src-lib-components-tag.mjs.map +1 -0
- package/fesm2022/mapa-library-ui-src-lib-components-warning.mjs +50 -0
- package/fesm2022/mapa-library-ui-src-lib-components-warning.mjs.map +1 -0
- package/fesm2022/mapa-library-ui.mjs +323 -0
- package/fesm2022/mapa-library-ui.mjs.map +1 -0
- package/index.d.ts +5 -0
- package/lib/core/directives/custom-paginator.directive.d.ts +33 -0
- package/lib/core/directives/mat-input-autosize.directive.d.ts +26 -0
- package/lib/core/elements/dropdown.d.ts +4 -0
- package/lib/core/elements/element-base.d.ts +37 -0
- package/lib/core/elements/input-text.d.ts +4 -0
- package/lib/core/interfaces/option.interface.d.ts +4 -0
- package/mapa-library-ui-0.0.8.tgz +0 -0
- package/package.json +115 -0
- package/public-api.d.ts +6 -0
- package/src/lib/components/button/index.d.ts +5 -0
- package/src/lib/components/button/public-api.d.ts +2 -0
- package/src/lib/components/button/src/button.component.d.ts +10 -0
- package/src/lib/components/button/src/button.module.d.ts +9 -0
- package/src/lib/components/button-icon/index.d.ts +5 -0
- package/src/lib/components/button-icon/public-api.d.ts +2 -0
- package/src/lib/components/button-icon/src/button-icon.component.d.ts +20 -0
- package/src/lib/components/button-icon/src/button-icon.module.d.ts +9 -0
- package/src/lib/components/checkbox/index.d.ts +5 -0
- package/src/lib/components/checkbox/public-api.d.ts +2 -0
- package/src/lib/components/checkbox/src/checkbox.component.d.ts +8 -0
- package/src/lib/components/checkbox/src/checkbox.module.d.ts +10 -0
- package/src/lib/components/dialog/button/public-api.d.ts +2 -0
- package/src/lib/components/dialog/button/src/button.component.d.ts +10 -0
- package/src/lib/components/dialog/button/src/button.module.d.ts +9 -0
- package/src/lib/components/dialog/icon/public-api.d.ts +2 -0
- package/src/lib/components/dialog/icon/src/icon.component.d.ts +13 -0
- package/src/lib/components/dialog/icon/src/icon.module.d.ts +9 -0
- package/src/lib/components/dialog/index.d.ts +5 -0
- package/src/lib/components/dialog/shared-public-api.d.ts +2 -0
- package/src/lib/components/dropdown/index.d.ts +5 -0
- package/src/lib/components/dropdown/public-api.d.ts +2 -0
- package/src/lib/components/dropdown/src/dropdown.component.d.ts +12 -0
- package/src/lib/components/dropdown/src/dropdown.module.d.ts +12 -0
- package/src/lib/components/dropdown/src/option/option.component.d.ts +12 -0
- package/src/lib/components/empty/index.d.ts +5 -0
- package/src/lib/components/empty/public-api.d.ts +2 -0
- package/src/lib/components/empty/src/empty.component.d.ts +5 -0
- package/src/lib/components/empty/src/empty.module.d.ts +8 -0
- package/src/lib/components/filters/button/public-api.d.ts +2 -0
- package/src/lib/components/filters/button/src/button.component.d.ts +10 -0
- package/src/lib/components/filters/button/src/button.module.d.ts +9 -0
- package/src/lib/components/filters/icon/public-api.d.ts +2 -0
- package/src/lib/components/filters/icon/src/icon.component.d.ts +13 -0
- package/src/lib/components/filters/icon/src/icon.module.d.ts +9 -0
- package/src/lib/components/filters/index.d.ts +5 -0
- package/src/lib/components/filters/shared-public-api.d.ts +2 -0
- package/src/lib/components/icon/index.d.ts +5 -0
- package/src/lib/components/icon/public-api.d.ts +2 -0
- package/src/lib/components/icon/src/icon.component.d.ts +13 -0
- package/src/lib/components/icon/src/icon.module.d.ts +9 -0
- package/src/lib/components/input/index.d.ts +5 -0
- package/src/lib/components/input/public-api.d.ts +2 -0
- package/src/lib/components/input/src/input.component.d.ts +11 -0
- package/src/lib/components/input/src/input.module.d.ts +13 -0
- package/src/lib/components/nav-list/index.d.ts +5 -0
- package/src/lib/components/nav-list/public-api.d.ts +2 -0
- package/src/lib/components/nav-list/src/nav-list.component.d.ts +13 -0
- package/src/lib/components/nav-list/src/nav-list.module.d.ts +8 -0
- package/src/lib/components/radio-button/index.d.ts +5 -0
- package/src/lib/components/radio-button/public-api.d.ts +2 -0
- package/src/lib/components/radio-button/src/radio-button.component.d.ts +15 -0
- package/src/lib/components/radio-button/src/radio-button.module.d.ts +9 -0
- package/src/lib/components/report-item/index.d.ts +5 -0
- package/src/lib/components/report-item/public-api.d.ts +2 -0
- package/src/lib/components/report-item/src/report-item.component.d.ts +20 -0
- package/src/lib/components/report-item/src/report-item.module.d.ts +10 -0
- package/src/lib/components/table/index.d.ts +5 -0
- package/src/lib/components/table/public-api.d.ts +2 -0
- package/src/lib/components/table/src/paginator_customization.d.ts +2 -0
- package/src/lib/components/table/src/table.component.d.ts +36 -0
- package/src/lib/components/table/src/table.module.d.ts +13 -0
- package/src/lib/components/tag/index.d.ts +5 -0
- package/src/lib/components/tag/public-api.d.ts +2 -0
- package/src/lib/components/tag/tag.component.d.ts +7 -0
- package/src/lib/components/tag/tag.module.d.ts +8 -0
- package/src/lib/components/warning/index.d.ts +5 -0
- package/src/lib/components/warning/public-api.d.ts +2 -0
- package/src/lib/components/warning/src/warning.component.d.ts +7 -0
- package/src/lib/components/warning/src/warning.module.d.ts +9 -0
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class ButtonComponent {
|
|
4
|
+
color: 'primary' | 'accent' | 'basic' | null | undefined;
|
|
5
|
+
disabled: boolean;
|
|
6
|
+
clicked: EventEmitter<void>;
|
|
7
|
+
onClick(): void;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ButtonComponent, never>;
|
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ButtonComponent, "mapa-button", never, { "color": { "alias": "color"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, { "clicked": "clicked"; }, never, ["*"], false, never>;
|
|
10
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./button.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "@angular/material/button";
|
|
5
|
+
export declare class MapaButtonModule {
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MapaButtonModule, never>;
|
|
7
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<MapaButtonModule, [typeof i1.ButtonComponent], [typeof i2.CommonModule, typeof i3.MatButtonModule], [typeof i1.ButtonComponent]>;
|
|
8
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<MapaButtonModule>;
|
|
9
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export interface ButtonIcon {
|
|
4
|
+
id: string;
|
|
5
|
+
icon: string;
|
|
6
|
+
description: string;
|
|
7
|
+
objectData: string;
|
|
8
|
+
}
|
|
9
|
+
export declare class ButtonIconComponent {
|
|
10
|
+
id: string;
|
|
11
|
+
description: string;
|
|
12
|
+
icon: string;
|
|
13
|
+
objectData: string;
|
|
14
|
+
buttonData: any;
|
|
15
|
+
clicked: EventEmitter<string>;
|
|
16
|
+
ngOnInit(): void;
|
|
17
|
+
onClick(id: string): void;
|
|
18
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ButtonIconComponent, never>;
|
|
19
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ButtonIconComponent, "mapa-button-icon", never, { "buttonData": { "alias": "buttonData"; "required": false; }; }, { "clicked": "clicked"; }, never, never, false, never>;
|
|
20
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./button-icon.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "@angular/material/icon";
|
|
5
|
+
export declare class MapaButtonIconModule {
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MapaButtonIconModule, never>;
|
|
7
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<MapaButtonIconModule, [typeof i1.ButtonIconComponent], [typeof i2.CommonModule, typeof i3.MatIconModule], [typeof i1.ButtonIconComponent]>;
|
|
8
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<MapaButtonIconModule>;
|
|
9
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { FormControl } from '@angular/forms';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class CheckboxComponent {
|
|
4
|
+
color: 'primary' | 'basic' | null | undefined;
|
|
5
|
+
formControl: FormControl;
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CheckboxComponent, never>;
|
|
7
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CheckboxComponent, "mapa-checkbox", never, { "color": { "alias": "color"; "required": false; }; "formControl": { "alias": "formControl"; "required": false; }; }, {}, never, never, false, never>;
|
|
8
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./checkbox.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "@angular/forms";
|
|
5
|
+
import * as i4 from "@angular/material/checkbox";
|
|
6
|
+
export declare class MapaCheckboxModule {
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MapaCheckboxModule, never>;
|
|
8
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<MapaCheckboxModule, [typeof i1.CheckboxComponent], [typeof i2.CommonModule, typeof i3.FormsModule, typeof i3.ReactiveFormsModule, typeof i4.MatCheckboxModule], [typeof i1.CheckboxComponent]>;
|
|
9
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<MapaCheckboxModule>;
|
|
10
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class ButtonComponent {
|
|
4
|
+
color: 'primary' | 'accent' | 'basic' | null | undefined;
|
|
5
|
+
disabled: boolean;
|
|
6
|
+
clicked: EventEmitter<void>;
|
|
7
|
+
onClick(): void;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ButtonComponent, never>;
|
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ButtonComponent, "mapa-button", never, { "color": { "alias": "color"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, { "clicked": "clicked"; }, never, ["*"], false, never>;
|
|
10
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./button.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "@angular/material/button";
|
|
5
|
+
export declare class MapaButtonModule {
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MapaButtonModule, never>;
|
|
7
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<MapaButtonModule, [typeof i1.ButtonComponent], [typeof i2.CommonModule, typeof i3.MatButtonModule], [typeof i1.ButtonComponent]>;
|
|
8
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<MapaButtonModule>;
|
|
9
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { MatIconRegistry } from "@angular/material/icon";
|
|
2
|
+
import { DomSanitizer } from '@angular/platform-browser';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class IconComponent {
|
|
5
|
+
private matIconRegistry;
|
|
6
|
+
private domSanitizer;
|
|
7
|
+
svg: string | null | undefined;
|
|
8
|
+
constructor(matIconRegistry: MatIconRegistry, domSanitizer: DomSanitizer);
|
|
9
|
+
ngOnChanges(): void;
|
|
10
|
+
registerCustomIcons(svg: string): void;
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<IconComponent, never>;
|
|
12
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IconComponent, "mapa-icon", never, { "svg": { "alias": "svg"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
13
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./icon.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "@angular/material/icon";
|
|
5
|
+
export declare class MapaIconModule {
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MapaIconModule, never>;
|
|
7
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<MapaIconModule, [typeof i1.IconComponent], [typeof i2.CommonModule, typeof i3.MatIconModule], [typeof i1.IconComponent]>;
|
|
8
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<MapaIconModule>;
|
|
9
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { FormControl } from '@angular/forms';
|
|
2
|
+
import { Dropdown } from 'mapa-library-ui';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class MapaDropdownComponent {
|
|
5
|
+
formControl: FormControl;
|
|
6
|
+
element: Dropdown;
|
|
7
|
+
border: 'soft__border' | null | undefined;
|
|
8
|
+
opened: boolean;
|
|
9
|
+
toggleOptions(): void;
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MapaDropdownComponent, never>;
|
|
11
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MapaDropdownComponent, "mapa-dropdown", never, { "formControl": { "alias": "formControl"; "required": false; }; "element": { "alias": "element"; "required": false; }; "border": { "alias": "border"; "required": false; }; }, {}, never, never, false, never>;
|
|
12
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./dropdown.component";
|
|
3
|
+
import * as i2 from "./option/option.component";
|
|
4
|
+
import * as i3 from "@angular/common";
|
|
5
|
+
import * as i4 from "@angular/forms";
|
|
6
|
+
import * as i5 from "@angular/material/list";
|
|
7
|
+
import * as i6 from "@angular/material/icon";
|
|
8
|
+
export declare class MapaDropdownModule {
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MapaDropdownModule, never>;
|
|
10
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<MapaDropdownModule, [typeof i1.MapaDropdownComponent, typeof i2.MapaOptionComponent], [typeof i3.CommonModule, typeof i4.FormsModule, typeof i4.ReactiveFormsModule, typeof i5.MatListModule, typeof i6.MatIconModule], [typeof i1.MapaDropdownComponent]>;
|
|
11
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<MapaDropdownModule>;
|
|
12
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { FormControl } from '@angular/forms';
|
|
2
|
+
import { Dropdown, ElementOption } from 'mapa-library-ui';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class MapaOptionComponent {
|
|
5
|
+
control: FormControl;
|
|
6
|
+
element: Dropdown;
|
|
7
|
+
optionsFilter: ElementOption[];
|
|
8
|
+
constructor();
|
|
9
|
+
emit(option: ElementOption): void;
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MapaOptionComponent, never>;
|
|
11
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MapaOptionComponent, "mapa-option", never, { "control": { "alias": "control"; "required": false; }; "element": { "alias": "element"; "required": false; }; }, {}, never, never, false, never>;
|
|
12
|
+
}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class MapaEmptyStateComponent {
|
|
3
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MapaEmptyStateComponent, never>;
|
|
4
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MapaEmptyStateComponent, "mapa-empty", never, {}, {}, never, never, false, never>;
|
|
5
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./empty.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
export declare class MapaEmptyStateModule {
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MapaEmptyStateModule, never>;
|
|
6
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<MapaEmptyStateModule, [typeof i1.MapaEmptyStateComponent], [typeof i2.CommonModule], [typeof i1.MapaEmptyStateComponent]>;
|
|
7
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<MapaEmptyStateModule>;
|
|
8
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class ButtonComponent {
|
|
4
|
+
color: 'primary' | 'accent' | 'basic' | null | undefined;
|
|
5
|
+
disabled: boolean;
|
|
6
|
+
clicked: EventEmitter<void>;
|
|
7
|
+
onClick(): void;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ButtonComponent, never>;
|
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ButtonComponent, "mapa-button", never, { "color": { "alias": "color"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, { "clicked": "clicked"; }, never, ["*"], false, never>;
|
|
10
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./button.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "@angular/material/button";
|
|
5
|
+
export declare class MapaButtonModule {
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MapaButtonModule, never>;
|
|
7
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<MapaButtonModule, [typeof i1.ButtonComponent], [typeof i2.CommonModule, typeof i3.MatButtonModule], [typeof i1.ButtonComponent]>;
|
|
8
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<MapaButtonModule>;
|
|
9
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { MatIconRegistry } from "@angular/material/icon";
|
|
2
|
+
import { DomSanitizer } from '@angular/platform-browser';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class IconComponent {
|
|
5
|
+
private matIconRegistry;
|
|
6
|
+
private domSanitizer;
|
|
7
|
+
svg: string | null | undefined;
|
|
8
|
+
constructor(matIconRegistry: MatIconRegistry, domSanitizer: DomSanitizer);
|
|
9
|
+
ngOnChanges(): void;
|
|
10
|
+
registerCustomIcons(svg: string): void;
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<IconComponent, never>;
|
|
12
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IconComponent, "mapa-icon", never, { "svg": { "alias": "svg"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
13
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./icon.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "@angular/material/icon";
|
|
5
|
+
export declare class MapaIconModule {
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MapaIconModule, never>;
|
|
7
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<MapaIconModule, [typeof i1.IconComponent], [typeof i2.CommonModule, typeof i3.MatIconModule], [typeof i1.IconComponent]>;
|
|
8
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<MapaIconModule>;
|
|
9
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { MatIconRegistry } from "@angular/material/icon";
|
|
2
|
+
import { DomSanitizer } from '@angular/platform-browser';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class IconComponent {
|
|
5
|
+
private matIconRegistry;
|
|
6
|
+
private domSanitizer;
|
|
7
|
+
svg: string | null | undefined;
|
|
8
|
+
constructor(matIconRegistry: MatIconRegistry, domSanitizer: DomSanitizer);
|
|
9
|
+
ngOnChanges(): void;
|
|
10
|
+
registerCustomIcons(svg: string): void;
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<IconComponent, never>;
|
|
12
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IconComponent, "mapa-icon", never, { "svg": { "alias": "svg"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
13
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./icon.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "@angular/material/icon";
|
|
5
|
+
export declare class MapaIconModule {
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MapaIconModule, never>;
|
|
7
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<MapaIconModule, [typeof i1.IconComponent], [typeof i2.CommonModule, typeof i3.MatIconModule], [typeof i1.IconComponent]>;
|
|
8
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<MapaIconModule>;
|
|
9
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { FormControl } from '@angular/forms';
|
|
2
|
+
import { InputText } from 'mapa-library-ui';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class MapaInputComponent {
|
|
5
|
+
formControl: FormControl;
|
|
6
|
+
element: InputText;
|
|
7
|
+
hasValue(): boolean;
|
|
8
|
+
clearValue(): void;
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MapaInputComponent, never>;
|
|
10
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MapaInputComponent, "mapa-input", never, { "formControl": { "alias": "formControl"; "required": false; }; "element": { "alias": "element"; "required": false; }; }, {}, never, never, false, never>;
|
|
11
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./input.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "@angular/forms";
|
|
5
|
+
import * as i4 from "@angular/material/form-field";
|
|
6
|
+
import * as i5 from "@angular/material/input";
|
|
7
|
+
import * as i6 from "@angular/material/icon";
|
|
8
|
+
import * as i7 from "mapa-library-ui";
|
|
9
|
+
export declare class MapaInputModule {
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MapaInputModule, never>;
|
|
11
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<MapaInputModule, [typeof i1.MapaInputComponent], [typeof i2.CommonModule, typeof i3.FormsModule, typeof i3.ReactiveFormsModule, typeof i4.MatFormFieldModule, typeof i5.MatInputModule, typeof i6.MatIconModule, typeof i7.MatInputAutosizeDirective], [typeof i1.MapaInputComponent]>;
|
|
12
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<MapaInputModule>;
|
|
13
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import { ElementOption } from 'mapa-library-ui';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class MapaNavListComponent {
|
|
5
|
+
options: ElementOption[];
|
|
6
|
+
label: string;
|
|
7
|
+
clicked: EventEmitter<ElementOption>;
|
|
8
|
+
defaultLabel: string;
|
|
9
|
+
selected: ElementOption;
|
|
10
|
+
emit(option: ElementOption): void;
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MapaNavListComponent, never>;
|
|
12
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MapaNavListComponent, "mapa-nav-list", never, { "options": { "alias": "options"; "required": false; }; "label": { "alias": "label"; "required": false; }; }, { "clicked": "clicked"; }, never, never, false, never>;
|
|
13
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./nav-list.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
export declare class MapaNavListModule {
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MapaNavListModule, never>;
|
|
6
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<MapaNavListModule, [typeof i1.MapaNavListComponent], [typeof i2.CommonModule], [typeof i1.MapaNavListComponent]>;
|
|
7
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<MapaNavListModule>;
|
|
8
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export interface RadioButtonOption {
|
|
4
|
+
value: string;
|
|
5
|
+
label: string;
|
|
6
|
+
}
|
|
7
|
+
export declare class RadioButtonComponent {
|
|
8
|
+
options: RadioButtonOption[];
|
|
9
|
+
optionSelected: EventEmitter<string>;
|
|
10
|
+
selectedOption: string;
|
|
11
|
+
constructor();
|
|
12
|
+
onChange(optionValue: string): void;
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<RadioButtonComponent, never>;
|
|
14
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<RadioButtonComponent, "mapa-radio-button", never, { "options": { "alias": "options"; "required": false; }; }, { "optionSelected": "optionSelected"; }, never, never, false, never>;
|
|
15
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./radio-button.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "@angular/material/radio";
|
|
5
|
+
export declare class MapaRadioButtonModule {
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MapaRadioButtonModule, never>;
|
|
7
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<MapaRadioButtonModule, [typeof i1.RadioButtonComponent], [typeof i2.CommonModule, typeof i3.MatRadioModule], [typeof i1.RadioButtonComponent]>;
|
|
8
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<MapaRadioButtonModule>;
|
|
9
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export interface ReportItem {
|
|
4
|
+
id: string;
|
|
5
|
+
icon: string;
|
|
6
|
+
description: string;
|
|
7
|
+
objectData: string;
|
|
8
|
+
}
|
|
9
|
+
export declare class ReportItemComponent {
|
|
10
|
+
itemData: any;
|
|
11
|
+
clicked: EventEmitter<string>;
|
|
12
|
+
id: string;
|
|
13
|
+
description: string;
|
|
14
|
+
icon: string;
|
|
15
|
+
objectData: string;
|
|
16
|
+
ngOnInit(): void;
|
|
17
|
+
onClick(id: string): void;
|
|
18
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ReportItemComponent, never>;
|
|
19
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ReportItemComponent, "mapa-report-item", never, { "itemData": { "alias": "itemData"; "required": false; }; }, { "clicked": "clicked"; }, never, never, false, never>;
|
|
20
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./report-item.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "@angular/material/icon";
|
|
5
|
+
import * as i4 from "@angular/material/menu";
|
|
6
|
+
export declare class MapaReportItemModule {
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MapaReportItemModule, never>;
|
|
8
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<MapaReportItemModule, [typeof i1.ReportItemComponent], [typeof i2.CommonModule, typeof i3.MatIconModule, typeof i4.MatMenuModule], [typeof i1.ReportItemComponent]>;
|
|
9
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<MapaReportItemModule>;
|
|
10
|
+
}
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import { SelectionModel } from '@angular/cdk/collections';
|
|
2
|
+
import { EventEmitter } from '@angular/core';
|
|
3
|
+
import { MatPaginator } from '@angular/material/paginator';
|
|
4
|
+
import { MatSort, Sort } from '@angular/material/sort';
|
|
5
|
+
import { MatTableDataSource } from '@angular/material/table';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
export declare class MapaTableComponent {
|
|
8
|
+
columns: TableColumn[];
|
|
9
|
+
data: Object[];
|
|
10
|
+
checkbox: boolean | undefined;
|
|
11
|
+
actions: boolean | undefined;
|
|
12
|
+
paginator: MatPaginator;
|
|
13
|
+
sort: MatSort;
|
|
14
|
+
tableData: EventEmitter<any[]>;
|
|
15
|
+
rowClick: EventEmitter<string>;
|
|
16
|
+
dataSource: MatTableDataSource<Object>;
|
|
17
|
+
displayedColumns: string[];
|
|
18
|
+
currentSort: Sort | undefined;
|
|
19
|
+
selection: SelectionModel<any>;
|
|
20
|
+
ngAfterViewInit(): void;
|
|
21
|
+
isAllSelected(): boolean;
|
|
22
|
+
toggleAllRows(): void;
|
|
23
|
+
checkboxLabel(row?: any): string;
|
|
24
|
+
sortData(sortKey: string): void;
|
|
25
|
+
sortDataFunction(sort: Sort): void;
|
|
26
|
+
compare(a: any, b: any, isAsc: boolean): number;
|
|
27
|
+
createObjectFromSelection(): void;
|
|
28
|
+
handleRowClick(id: string): void;
|
|
29
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MapaTableComponent, never>;
|
|
30
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MapaTableComponent, "mapa-table", never, { "columns": { "alias": "columns"; "required": false; }; "data": { "alias": "data"; "required": false; }; "checkbox": { "alias": "checkbox"; "required": false; }; "actions": { "alias": "actions"; "required": false; }; }, { "tableData": "tableData"; "rowClick": "rowClick"; }, never, never, false, never>;
|
|
31
|
+
}
|
|
32
|
+
export interface TableColumn {
|
|
33
|
+
key: string;
|
|
34
|
+
label: string;
|
|
35
|
+
sort: boolean;
|
|
36
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./table.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "@angular/material/checkbox";
|
|
5
|
+
import * as i4 from "@angular/material/icon";
|
|
6
|
+
import * as i5 from "@angular/material/paginator";
|
|
7
|
+
import * as i6 from "@angular/material/table";
|
|
8
|
+
import * as i7 from "mapa-library-ui";
|
|
9
|
+
export declare class MapaTableModule {
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MapaTableModule, never>;
|
|
11
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<MapaTableModule, [typeof i1.MapaTableComponent], [typeof i2.CommonModule, typeof i3.MatCheckboxModule, typeof i4.MatIconModule, typeof i5.MatPaginatorModule, typeof i6.MatTableModule, typeof i7.BubblePaginationDirective], [typeof i1.MapaTableComponent]>;
|
|
12
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<MapaTableModule>;
|
|
13
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class TagComponent {
|
|
3
|
+
text: string | undefined;
|
|
4
|
+
color: 'highlight' | null | undefined;
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TagComponent, never>;
|
|
6
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TagComponent, "mapa-tag", never, { "text": { "alias": "text"; "required": false; }; "color": { "alias": "color"; "required": false; }; }, {}, never, never, false, never>;
|
|
7
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./tag.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
export declare class MapaTagModule {
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MapaTagModule, never>;
|
|
6
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<MapaTagModule, [typeof i1.TagComponent], [typeof i2.CommonModule], [typeof i1.TagComponent]>;
|
|
7
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<MapaTagModule>;
|
|
8
|
+
}
|