bitfront-library
Version:
Angular CLI project with components and classes used by other Angular projects of the BIT foundation.
21 lines (20 loc) • 1.14 kB
TypeScript
import { ChangeDetectorRef } from "@angular/core";
import { AyudaService } from "../../service/ayuda.service";
import { BitCustomComponent } from "./bit-custom.component";
import * as i0 from "@angular/core";
/** Clase general para componentes personalizados de tipo Fecha como puede ser BitDate, BitTime y BitDateTime */
export declare abstract class BitCalendarComponent extends BitCustomComponent {
protected ayudaService: AyudaService;
protected changeDetectorRef: ChangeDetectorRef;
fechaMinima: Date;
fechaMaxima: Date;
calendarReadOnlyInput: boolean;
rangoAnyoMinimo: string;
rangoAnyoMaximo: string;
yearRange: string;
constructor(ayudaService: AyudaService, changeDetectorRef: ChangeDetectorRef);
ngOnInit(): void;
LOCALE_ES: any;
static ɵfac: i0.ɵɵFactoryDef<BitCalendarComponent, never>;
static ɵdir: i0.ɵɵDirectiveDefWithMeta<BitCalendarComponent, never, never, { "fechaMinima": "fechaMinima"; "fechaMaxima": "fechaMaxima"; "calendarReadOnlyInput": "calendarReadOnlyInput"; "rangoAnyoMinimo": "rangoAnyoMinimo"; "rangoAnyoMaximo": "rangoAnyoMaximo"; }, {}, never>;
}