monkey-style-guide 2.0.135 → 2.0.136
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/assets/scss/partials/components/_date-range-picker.scss +36 -0
- package/esm2020/lib/components/date-range-picker/date-range-picker.component.mjs +78 -4
- package/fesm2015/monkey-style-guide.mjs +76 -3
- package/fesm2015/monkey-style-guide.mjs.map +1 -1
- package/fesm2020/monkey-style-guide.mjs +75 -3
- package/fesm2020/monkey-style-guide.mjs.map +1 -1
- package/lib/components/date-range-picker/date-range-picker.component.d.ts +7 -0
- package/monkey-style-guide-2.0.136.tgz +0 -0
- package/package.json +1 -1
- package/monkey-style-guide-2.0.135.tgz +0 -0
|
@@ -16,7 +16,11 @@ export declare class MonkeyDateRangePickerComponent implements ControlValueAcces
|
|
|
16
16
|
actions: {
|
|
17
17
|
[s: string]: string;
|
|
18
18
|
};
|
|
19
|
+
from: string;
|
|
20
|
+
to: string;
|
|
21
|
+
of: string;
|
|
19
22
|
today: string;
|
|
23
|
+
select: string;
|
|
20
24
|
};
|
|
21
25
|
infoMessage: string;
|
|
22
26
|
errorMessage: string;
|
|
@@ -26,6 +30,7 @@ export declare class MonkeyDateRangePickerComponent implements ControlValueAcces
|
|
|
26
30
|
private today;
|
|
27
31
|
private onModelChange;
|
|
28
32
|
private onModelTouched;
|
|
33
|
+
private unsubscribeAll;
|
|
29
34
|
_dateFirst: any;
|
|
30
35
|
_dateSecond: any;
|
|
31
36
|
_id: string;
|
|
@@ -34,6 +39,8 @@ export declare class MonkeyDateRangePickerComponent implements ControlValueAcces
|
|
|
34
39
|
_dateForm: FormGroup;
|
|
35
40
|
_disabled: boolean;
|
|
36
41
|
_minDate: any;
|
|
42
|
+
_startDate: any;
|
|
43
|
+
_endDate: any;
|
|
37
44
|
constructor(fb: FormBuilder, cdr: ChangeDetectorRef);
|
|
38
45
|
private initDateRange;
|
|
39
46
|
private createCalendar;
|
|
Binary file
|
package/package.json
CHANGED
|
Binary file
|