@morozeckiy/dd-lib 0.6.4 → 0.7.0
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/lib-date-input/lib-date-input.component.mjs +115 -0
- package/esm2022/lib/lib-date-range/lib-date-range.component.mjs +1 -1
- package/esm2022/public-api.mjs +2 -1
- package/fesm2022/morozeckiy-dd-lib.mjs +121 -18
- package/fesm2022/morozeckiy-dd-lib.mjs.map +1 -1
- package/lib/lib-date-input/lib-date-input.component.d.ts +27 -0
- package/morozeckiy-dd-lib-0.7.0.tgz +0 -0
- package/package.json +1 -1
- package/public-api.d.ts +1 -0
- package/morozeckiy-dd-lib-0.6.4.tgz +0 -0
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { ControlValueAccessor } from "@angular/forms";
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class LibDateInputComponent implements ControlValueAccessor, OnInit {
|
|
5
|
+
static idCounter: number;
|
|
6
|
+
topSide?: boolean;
|
|
7
|
+
dateId?: string;
|
|
8
|
+
placeholder?: string;
|
|
9
|
+
label?: string;
|
|
10
|
+
required?: boolean;
|
|
11
|
+
isShownCalendar: boolean;
|
|
12
|
+
disabled: boolean;
|
|
13
|
+
selectedDateStr?: string;
|
|
14
|
+
selectedDate?: Date;
|
|
15
|
+
onTouchedCallback?: (() => void);
|
|
16
|
+
ngOnInit(): void;
|
|
17
|
+
openCalendar(): void;
|
|
18
|
+
closeCalendar(): void;
|
|
19
|
+
setPeriod($event: Date | undefined): void;
|
|
20
|
+
changeStrDate($event: string): void;
|
|
21
|
+
propagateChange(_value: Date | undefined): void;
|
|
22
|
+
registerOnChange(fn: any): void;
|
|
23
|
+
registerOnTouched(fn: any): void;
|
|
24
|
+
writeValue($event: Date): void;
|
|
25
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LibDateInputComponent, never>;
|
|
26
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LibDateInputComponent, "dd-lib-date-input", never, { "topSide": { "alias": "topSide"; "required": false; }; "dateId": { "alias": "dateId"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "label": { "alias": "label"; "required": false; }; "required": { "alias": "required"; "required": false; }; }, {}, never, never, true, never>;
|
|
27
|
+
}
|
|
Binary file
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -26,6 +26,7 @@ export * from './lib/lib-tabs-fragment/lib-tabs-fragment.component';
|
|
|
26
26
|
export * from './lib/lib-textarea/lib-textarea.component';
|
|
27
27
|
export * from './lib/lib-file-loader/lib-file-loader.component';
|
|
28
28
|
export * from './lib/lib-date-range/lib-date-range.component';
|
|
29
|
+
export * from './lib/lib-date-input/lib-date-input.component';
|
|
29
30
|
export * from './lib/lib-filter/lib-filter.component';
|
|
30
31
|
export * from './lib/lib-info-card/lib-info-card.component';
|
|
31
32
|
export * from './lib/utils/decorators';
|
|
Binary file
|