mapa-library-ui 0.1.0 → 0.1.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/esm2020/src/lib/components/dialog/dialog.mjs +7 -0
- package/esm2020/src/lib/components/dialog/lib/components/button/public-api.mjs +6 -0
- package/esm2020/src/lib/components/dialog/lib/components/button/src/button.component.mjs +23 -0
- package/esm2020/src/lib/components/dialog/lib/components/button/src/button.module.mjs +19 -0
- package/esm2020/src/lib/components/dialog/lib/components/dialog/public-api.mjs +6 -0
- package/esm2020/src/lib/components/dialog/lib/components/dialog/src/dialog.component.mjs +50 -0
- package/esm2020/src/lib/components/dialog/lib/components/dialog/src/dialog.module.mjs +36 -0
- package/esm2020/src/lib/components/dialog/lib/components/icon/public-api.mjs +6 -0
- package/esm2020/src/lib/components/dialog/lib/components/icon/src/icon.component.mjs +26 -0
- package/esm2020/src/lib/components/dialog/lib/components/icon/src/icon.module.mjs +19 -0
- package/esm2020/src/lib/components/dialog/lib/core/interfaces/dialog-data.interface.mjs +2 -0
- package/esm2020/src/lib/components/dialog/mapa-library-ui-src-lib-components-dialog.mjs +2 -2
- package/fesm2015/mapa-library-ui-src-lib-components-dialog.mjs +126 -255
- package/fesm2015/mapa-library-ui-src-lib-components-dialog.mjs.map +1 -1
- package/fesm2020/mapa-library-ui-src-lib-components-dialog.mjs +124 -252
- package/fesm2020/mapa-library-ui-src-lib-components-dialog.mjs.map +1 -1
- package/mapa-library-ui-0.1.1.tgz +0 -0
- package/package.json +1 -1
- package/src/lib/components/dialog/dialog.d.ts +3 -0
- package/src/lib/components/dialog/index.d.ts +1 -1
- package/src/lib/components/dialog/lib/components/button/public-api.d.ts +2 -0
- package/src/lib/components/dialog/lib/components/button/src/button.component.d.ts +10 -0
- package/src/lib/components/dialog/lib/components/button/src/button.module.d.ts +9 -0
- package/src/lib/components/dialog/lib/components/dialog/public-api.d.ts +2 -0
- package/src/lib/components/dialog/lib/components/dialog/src/dialog.component.d.ts +19 -0
- package/src/lib/components/dialog/lib/components/dialog/src/dialog.module.d.ts +11 -0
- package/src/lib/components/dialog/lib/components/icon/public-api.d.ts +2 -0
- package/src/lib/components/dialog/lib/components/icon/src/icon.component.d.ts +13 -0
- package/src/lib/components/dialog/lib/components/icon/src/icon.module.d.ts +9 -0
- package/src/lib/components/dialog/lib/core/interfaces/dialog-data.interface.d.ts +9 -0
- package/esm2020/src/lib/components/dialog/chart.mjs +0 -5
- package/esm2020/src/lib/components/dialog/lib/components/chart/public-api.mjs +0 -6
- package/esm2020/src/lib/components/dialog/lib/components/chart/src/chart.component.mjs +0 -99
- package/esm2020/src/lib/components/dialog/lib/components/chart/src/chart.module.mjs +0 -32
- package/esm2020/src/lib/components/dialog/lib/components/dropdown/public-api.mjs +0 -6
- package/esm2020/src/lib/components/dialog/lib/components/dropdown/src/dropdown.component.mjs +0 -103
- package/esm2020/src/lib/components/dialog/lib/components/dropdown/src/dropdown.module.mjs +0 -63
- package/esm2020/src/lib/components/dialog/lib/core/elements/dropdown.mjs +0 -8
- package/esm2020/src/lib/components/dialog/lib/core/elements/element-base.mjs +0 -26
- package/esm2020/src/lib/components/dialog/lib/core/elements/element-search.mjs +0 -2
- package/esm2020/src/lib/components/dialog/lib/core/elements/errors.mjs +0 -2
- package/esm2020/src/lib/components/dialog/lib/core/interfaces/chart-options.interface.mjs +0 -2
- package/esm2020/src/lib/components/dialog/lib/core/interfaces/option.interface.mjs +0 -2
- package/mapa-library-ui-0.1.0.tgz +0 -0
- package/src/lib/components/dialog/chart.d.ts +0 -1
- package/src/lib/components/dialog/lib/components/chart/public-api.d.ts +0 -2
- package/src/lib/components/dialog/lib/components/chart/src/chart.component.d.ts +0 -13
- package/src/lib/components/dialog/lib/components/chart/src/chart.module.d.ts +0 -10
- package/src/lib/components/dialog/lib/components/dropdown/public-api.d.ts +0 -2
- package/src/lib/components/dialog/lib/components/dropdown/src/dropdown.component.d.ts +0 -30
- package/src/lib/components/dialog/lib/components/dropdown/src/dropdown.module.d.ts +0 -13
- package/src/lib/components/dialog/lib/core/elements/dropdown.d.ts +0 -4
- package/src/lib/components/dialog/lib/core/elements/element-base.d.ts +0 -49
- package/src/lib/components/dialog/lib/core/elements/element-search.d.ts +0 -6
- package/src/lib/components/dialog/lib/core/elements/errors.d.ts +0 -7
- package/src/lib/components/dialog/lib/core/interfaces/chart-options.interface.d.ts +0 -19
- package/src/lib/components/dialog/lib/core/interfaces/option.interface.d.ts +0 -4
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
import { AfterViewInit, OnDestroy, OnInit } from "@angular/core";
|
|
2
|
-
import { FormControl } from "@angular/forms";
|
|
3
|
-
import { MatSelect } from "@angular/material/select";
|
|
4
|
-
import { ReplaySubject } from "rxjs/internal/ReplaySubject";
|
|
5
|
-
import { Subject } from "rxjs/internal/Subject";
|
|
6
|
-
import { ElementOption } from "../../../core/interfaces/option.interface";
|
|
7
|
-
import { Dropdown } from "../../../core/elements/dropdown";
|
|
8
|
-
import * as i0 from "@angular/core";
|
|
9
|
-
export declare class MapaDropdownComponent implements OnInit, AfterViewInit, OnDestroy {
|
|
10
|
-
formControl: FormControl;
|
|
11
|
-
formControlSearch: FormControl;
|
|
12
|
-
element: Dropdown;
|
|
13
|
-
border: "soft" | "tag" | "highlight" | null | undefined;
|
|
14
|
-
dropdown: MatSelect;
|
|
15
|
-
filteredOptions: ReplaySubject<ElementOption[]>;
|
|
16
|
-
protected filteredOptionsCache: ElementOption[];
|
|
17
|
-
protected _onDestroy: Subject<void>;
|
|
18
|
-
isIndeterminate: boolean;
|
|
19
|
-
isChecked: boolean;
|
|
20
|
-
constructor();
|
|
21
|
-
ngOnInit(): void;
|
|
22
|
-
ngAfterViewInit(): void;
|
|
23
|
-
ngOnDestroy(): void;
|
|
24
|
-
protected filterOptions(): void;
|
|
25
|
-
protected setInitialValue(): void;
|
|
26
|
-
protected setToggleAllCheckboxState(): void;
|
|
27
|
-
toggleSelectAll(selectAllValue: boolean): void;
|
|
28
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MapaDropdownComponent, never>;
|
|
29
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MapaDropdownComponent, "mapa-dropdown", never, { "formControl": "formControl"; "formControlSearch": "formControlSearch"; "element": "element"; "border": "border"; }, {}, never, never, false, never>;
|
|
30
|
-
}
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./dropdown.component";
|
|
3
|
-
import * as i2 from "@angular/common";
|
|
4
|
-
import * as i3 from "@angular/forms";
|
|
5
|
-
import * as i4 from "@angular/material/list";
|
|
6
|
-
import * as i5 from "@angular/material/icon";
|
|
7
|
-
import * as i6 from "@angular/material/select";
|
|
8
|
-
import * as i7 from "ngx-mat-select-search";
|
|
9
|
-
export declare class MapaDropdownModule {
|
|
10
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MapaDropdownModule, never>;
|
|
11
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<MapaDropdownModule, [typeof i1.MapaDropdownComponent], [typeof i2.CommonModule, typeof i3.FormsModule, typeof i3.ReactiveFormsModule, typeof i4.MatListModule, typeof i5.MatIconModule, typeof i6.MatSelectModule, typeof i7.NgxMatSelectSearchModule], [typeof i1.MapaDropdownComponent]>;
|
|
12
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<MapaDropdownModule>;
|
|
13
|
-
}
|
|
@@ -1,49 +0,0 @@
|
|
|
1
|
-
import { ElementOption } from "../interfaces/option.interface";
|
|
2
|
-
import { ElementSearch } from "./element-search";
|
|
3
|
-
import { Errors } from "./errors";
|
|
4
|
-
export declare class ElementBase {
|
|
5
|
-
value: string;
|
|
6
|
-
key: string;
|
|
7
|
-
label: string;
|
|
8
|
-
required: boolean;
|
|
9
|
-
order: number;
|
|
10
|
-
controlType: string;
|
|
11
|
-
type: string;
|
|
12
|
-
placeholder?: string;
|
|
13
|
-
hint?: string;
|
|
14
|
-
prefix?: string;
|
|
15
|
-
suffix?: string;
|
|
16
|
-
autosize?: boolean;
|
|
17
|
-
autosizeMinWidth?: string;
|
|
18
|
-
autosizeMaxWidth?: string;
|
|
19
|
-
autosizeMinRow?: number;
|
|
20
|
-
autosizeMaxRow?: number;
|
|
21
|
-
options: ElementOption[];
|
|
22
|
-
multiple?: boolean;
|
|
23
|
-
search?: ElementSearch;
|
|
24
|
-
maxLength: string | number | null;
|
|
25
|
-
errors?: Errors;
|
|
26
|
-
constructor(options?: {
|
|
27
|
-
value?: string;
|
|
28
|
-
key?: string;
|
|
29
|
-
label?: string;
|
|
30
|
-
required?: boolean;
|
|
31
|
-
order?: number;
|
|
32
|
-
controlType?: string;
|
|
33
|
-
type?: string;
|
|
34
|
-
placeholder?: string;
|
|
35
|
-
hint?: string;
|
|
36
|
-
prefix?: string;
|
|
37
|
-
suffix?: string;
|
|
38
|
-
autosize?: boolean;
|
|
39
|
-
autosizeMinWidth?: string;
|
|
40
|
-
autosizeMaxWidth?: string;
|
|
41
|
-
autosizeMinRow?: number;
|
|
42
|
-
autosizeMaxRow?: number;
|
|
43
|
-
options?: ElementOption[];
|
|
44
|
-
multiple?: boolean;
|
|
45
|
-
search?: ElementSearch;
|
|
46
|
-
maxLength?: string | number | null;
|
|
47
|
-
errors?: Errors;
|
|
48
|
-
});
|
|
49
|
-
}
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
import { ApexAxisChartSeries, ApexTitleSubtitle, ApexChart, ApexXAxis, ApexFill, ApexStroke, ApexMarkers, ApexYAxis, ApexLegend, ApexResponsive } from "ng-apexcharts";
|
|
2
|
-
import { Dropdown } from "../elements/dropdown";
|
|
3
|
-
import { FormControl } from "@angular/forms";
|
|
4
|
-
export type ChartOptions = {
|
|
5
|
-
series: ApexAxisChartSeries;
|
|
6
|
-
chart: ApexChart;
|
|
7
|
-
title: ApexTitleSubtitle;
|
|
8
|
-
xaxis: ApexXAxis;
|
|
9
|
-
stroke?: ApexStroke;
|
|
10
|
-
fill?: ApexFill;
|
|
11
|
-
markers?: ApexMarkers;
|
|
12
|
-
yaxis?: ApexYAxis;
|
|
13
|
-
legend?: ApexLegend;
|
|
14
|
-
responsive?: ApexResponsive[];
|
|
15
|
-
dropdown?: {
|
|
16
|
-
element: Dropdown;
|
|
17
|
-
formControl: FormControl;
|
|
18
|
-
};
|
|
19
|
-
};
|