Blame view

lib/_template/soc-date-box.d.ts 1.12 KB
75f29219   Anan Sangthongtum   first commit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
import { OnInit, EventEmitter, AfterViewInit } from '@angular/core';
import { ControlValueAccessor } from '@angular/forms';
import { Common } from '../_services/common.service';
import 'devextreme-intl';
export declare class SocDateBoxComponent implements ControlValueAccessor, OnInit, AfterViewInit {
    private common;
    id: string;
    width: string;
    type: string;
    value: any;
    max: any;
    min: any;
    acceptCustomValue: boolean;
    maxZoomLevel: string;
    minZoomLevel: string;
    valueChange: EventEmitter<string>;
    openOnFieldClick: boolean;
    disabled: boolean;
    interval: number;
    showAnalogClock: boolean;
    format: {
        formatter: (date: any) => string;
        parser: (date: any) => Date;
    };
    constructor(common: Common);
    ngOnInit(): Promise<void>;
    ngAfterViewInit(): void;
    onOpened(): void;
    onValueChanged(e: any): void;
    /** START Bind Value */
    onModelChange: Function;
    onModelTouched: Function;
    writeValue(value: any): void;
    registerOnChange(fn: Function): void;
    registerOnTouched(fn: Function): void;
}
export declare class SharedDateBoxModule {
}