ngx-wapp-components 3.0.31 → 3.0.32
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/package.json
CHANGED
|
@@ -2551,6 +2551,7 @@ declare class WEditCalendarComponent implements OnInit, OnChanges, ControlValueA
|
|
|
2551
2551
|
isTouched: boolean;
|
|
2552
2552
|
onChange: any;
|
|
2553
2553
|
onTouch: any;
|
|
2554
|
+
ngModelTouched: boolean;
|
|
2554
2555
|
ngOnInit(): void;
|
|
2555
2556
|
ngOnChanges(changes: SimpleChanges): void;
|
|
2556
2557
|
writeValue(value: any): void;
|
|
@@ -2563,6 +2564,8 @@ declare class WEditCalendarComponent implements OnInit, OnChanges, ControlValueA
|
|
|
2563
2564
|
onDateChanged(): void;
|
|
2564
2565
|
isRequiredValid(): boolean;
|
|
2565
2566
|
isRequiredValidNgModel(): boolean;
|
|
2567
|
+
onDateBlur(): void;
|
|
2568
|
+
isNgModelInvalid(): boolean;
|
|
2566
2569
|
static ɵfac: i0.ɵɵFactoryDeclaration<WEditCalendarComponent, never>;
|
|
2567
2570
|
static ɵcmp: i0.ɵɵComponentDeclaration<WEditCalendarComponent, "w-edit-calendar", never, { "minDate": { "alias": "minDate"; "required": false; }; "maxDate": { "alias": "maxDate"; "required": false; }; "label": { "alias": "label"; "required": false; }; "showLabel": { "alias": "showLabel"; "required": false; }; "showTime": { "alias": "showTime"; "required": false; }; "showSeconds": { "alias": "showSeconds"; "required": false; }; "timeOnly": { "alias": "timeOnly"; "required": false; }; "showIcon": { "alias": "showIcon"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "size": { "alias": "size"; "required": false; }; "formControl": { "alias": "formControl"; "required": false; }; "displayInlineBlock": { "alias": "displayInlineBlock"; "required": false; }; "required": { "alias": "required"; "required": false; }; "requiredErrorDescription": { "alias": "requiredErrorDescription"; "required": false; }; "someErrorDescription": { "alias": "someErrorDescription"; "required": false; }; "removePaddingTop": { "alias": "removePaddingTop"; "required": false; }; "firstDayOfWeek": { "alias": "firstDayOfWeek"; "required": false; }; "tooltip": { "alias": "tooltip"; "required": false; }; "tooltipPosition": { "alias": "tooltipPosition"; "required": false; }; "dataType": { "alias": "dataType"; "required": false; }; "viewType": { "alias": "viewType"; "required": false; }; "monthMode": { "alias": "monthMode"; "required": false; }; "readonlyInput": { "alias": "readonlyInput"; "required": false; }; "keepInvalid": { "alias": "keepInvalid"; "required": false; }; "dateFormat": { "alias": "dateFormat"; "required": false; }; }, { "onChangeEvent": "onChange"; }, never, never, false, never>;
|
|
2568
2571
|
}
|