monkey-style-guide 2.0.113 → 2.0.114
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/lib/components/date-range-picker/date-range-picker.component.mjs +17 -17
- package/fesm2015/monkey-style-guide.mjs +16 -16
- package/fesm2015/monkey-style-guide.mjs.map +1 -1
- package/fesm2020/monkey-style-guide.mjs +16 -16
- package/fesm2020/monkey-style-guide.mjs.map +1 -1
- package/lib/components/date-range-picker/date-range-picker.component.d.ts +6 -7
- package/monkey-style-guide-2.0.114.tgz +0 -0
- package/package.json +1 -1
- package/monkey-style-guide-2.0.113.tgz +0 -0
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { OnInit, EventEmitter, ChangeDetectorRef } from '@angular/core';
|
|
2
2
|
import { ControlValueAccessor, FormBuilder, FormGroup } from '@angular/forms';
|
|
3
|
-
import * as moment_ from 'moment';
|
|
4
3
|
import * as i0 from "@angular/core";
|
|
5
4
|
export declare class MonkeyDateRangePickerComponent implements ControlValueAccessor, OnInit {
|
|
6
5
|
private fb;
|
|
@@ -26,8 +25,8 @@ export declare class MonkeyDateRangePickerComponent implements ControlValueAcces
|
|
|
26
25
|
private today;
|
|
27
26
|
private onModelChange;
|
|
28
27
|
private onModelTouched;
|
|
29
|
-
_dateFirst:
|
|
30
|
-
_dateSecond:
|
|
28
|
+
_dateFirst: any;
|
|
29
|
+
_dateSecond: any;
|
|
31
30
|
_id: string;
|
|
32
31
|
_daysArrFirst: any[];
|
|
33
32
|
_daysArrSecond: any[];
|
|
@@ -48,12 +47,12 @@ export declare class MonkeyDateRangePickerComponent implements ControlValueAcces
|
|
|
48
47
|
writeValue(value: any): void;
|
|
49
48
|
nextMonth(): void;
|
|
50
49
|
previousMonth(): void;
|
|
51
|
-
todayCheck(day:
|
|
52
|
-
isSelected(day:
|
|
50
|
+
todayCheck(day: any): boolean;
|
|
51
|
+
isSelected(day: any): any;
|
|
53
52
|
isDisabled(day: any): any;
|
|
54
53
|
isFirstSelected(day: any): any;
|
|
55
|
-
isLastSelected(day:
|
|
56
|
-
selectedDate(day:
|
|
54
|
+
isLastSelected(day: any): any;
|
|
55
|
+
selectedDate(day: any): void;
|
|
57
56
|
selectRangeOfDays(days: number): void;
|
|
58
57
|
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyDateRangePickerComponent, never>;
|
|
59
58
|
static ɵcmp: i0.ɵɵComponentDeclaration<MonkeyDateRangePickerComponent, "monkey-date-range-picker", never, { "label": "label"; "helperMessage": "helperMessage"; "i18n": "i18n"; "infoMessage": "infoMessage"; "errorMessage": "errorMessage"; "minDate": "minDate"; "value": "value"; }, { "onChange": "onChange"; }, never, never>;
|
|
Binary file
|
package/package.json
CHANGED
|
Binary file
|