ngx-edu-sharing-metaqs2 0.9.36 → 0.9.37
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/esm2022/lib/collection-count-history/collection-count-history.component.mjs +3 -3
- package/esm2022/lib/collection-count-history/monthpicker/monthpicker.component.mjs +31 -5
- package/esm2022/lib/components/filter/datepicker/datepicker.component.mjs +32 -6
- package/esm2022/lib/components/quality-matrix/quality_matrix.mjs +19 -14
- package/esm2022/lib/counts-with-history/counts-with-history.component.mjs +5 -3
- package/esm2022/lib/tree-license/tree-license.component.mjs +5 -3
- package/fesm2022/ngx-edu-sharing-metaqs2.mjs +83 -24
- package/fesm2022/ngx-edu-sharing-metaqs2.mjs.map +1 -1
- package/lib/collection-count-history/monthpicker/monthpicker.component.d.ts +7 -3
- package/lib/components/filter/datepicker/datepicker.component.d.ts +7 -3
- package/package.json +1 -1
|
@@ -1,21 +1,25 @@
|
|
|
1
|
-
import { OnDestroy } from '@angular/core';
|
|
1
|
+
import { ElementRef, OnDestroy, OnInit } from '@angular/core';
|
|
2
2
|
import { FormControl, FormGroup } from '@angular/forms';
|
|
3
3
|
import { MatDatepicker } from '@angular/material/datepicker';
|
|
4
4
|
import { DateTime } from 'luxon';
|
|
5
|
-
import { MatDateFormats } from '@angular/material/core';
|
|
5
|
+
import { MatDateFormats, MatRipple } from '@angular/material/core';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
7
|
export declare const datePickerFormats: MatDateFormats;
|
|
8
|
-
export declare class MonthpickerComponent implements OnDestroy {
|
|
8
|
+
export declare class MonthpickerComponent implements OnInit, OnDestroy {
|
|
9
9
|
startView: 'month' | 'year' | 'multi-year';
|
|
10
10
|
inputGroup: FormGroup<{
|
|
11
11
|
start: FormControl<DateTime<boolean>>;
|
|
12
12
|
end: FormControl<DateTime<boolean>>;
|
|
13
13
|
}>;
|
|
14
14
|
disabled: boolean;
|
|
15
|
+
protected start: ElementRef<HTMLInputElement>;
|
|
16
|
+
protected readonly ripple: MatRipple;
|
|
15
17
|
constructor();
|
|
16
18
|
protected setStart(date: DateTime<boolean>, picker: MatDatepicker<DateTime<boolean>>): void;
|
|
17
19
|
protected setEnd(date: DateTime<boolean>, picker: MatDatepicker<DateTime<boolean>>): void;
|
|
20
|
+
ngOnInit(): void;
|
|
18
21
|
ngOnDestroy(): void;
|
|
22
|
+
focus(): void;
|
|
19
23
|
static ɵfac: i0.ɵɵFactoryDeclaration<MonthpickerComponent, never>;
|
|
20
24
|
static ɵcmp: i0.ɵɵComponentDeclaration<MonthpickerComponent, "metaqs2-monthpicker", never, { "startView": { "alias": "startView"; "required": false; }; "inputGroup": { "alias": "inputGroup"; "required": true; }; "disabled": { "alias": "disabled"; "required": false; }; }, {}, never, never, true, never>;
|
|
21
25
|
}
|
|
@@ -1,15 +1,19 @@
|
|
|
1
|
-
import { OnDestroy } from '@angular/core';
|
|
1
|
+
import { ElementRef, OnDestroy, OnInit } from '@angular/core';
|
|
2
2
|
import { FormControl, FormGroup } from '@angular/forms';
|
|
3
3
|
import { DateTime } from 'luxon';
|
|
4
|
+
import { MatRipple } from '@angular/material/core';
|
|
4
5
|
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class DatepickerComponent implements OnDestroy {
|
|
6
|
+
export declare class DatepickerComponent implements OnInit, OnDestroy {
|
|
6
7
|
disabled: boolean;
|
|
7
8
|
inputGroup: FormGroup<{
|
|
8
9
|
start: FormControl<DateTime<boolean>>;
|
|
9
10
|
end: FormControl<DateTime<boolean>>;
|
|
10
11
|
}>;
|
|
11
|
-
|
|
12
|
+
protected start: ElementRef<HTMLInputElement>;
|
|
13
|
+
protected ripple: MatRipple;
|
|
14
|
+
ngOnInit(): void;
|
|
12
15
|
ngOnDestroy(): void;
|
|
16
|
+
focus(): void;
|
|
13
17
|
static ɵfac: i0.ɵɵFactoryDeclaration<DatepickerComponent, never>;
|
|
14
18
|
static ɵcmp: i0.ɵɵComponentDeclaration<DatepickerComponent, "metaqs2-datepicker", never, { "disabled": { "alias": "disabled"; "required": false; }; "inputGroup": { "alias": "inputGroup"; "required": true; }; }, {}, never, never, true, never>;
|
|
15
19
|
}
|
package/package.json
CHANGED