@asadi/angular-date-components
Version:
`Angular Date Components` is a comprehensive angular library of date-related components designed to meet the needs of applications that require localization based on various calendar systems. While the package currently includes two powerful components (S
27 lines (26 loc) • 1.47 kB
TypeScript
import { EventEmitter } from '@angular/core';
import { ADCILabels, ADCIOptions, ADCIToolbar, ADCIViewButton } from '../../interface';
import * as i0 from "@angular/core";
export declare class ADCBaseContainerComponent implements ADCIToolbar {
labels: ADCILabels | null;
private options;
direction: 'rtl' | 'ltr';
currentView: string;
private _views;
set views(value: ADCIViewButton[]);
get views(): ADCIViewButton[];
disableNext: boolean;
disableToday: boolean;
disablePrevious: boolean;
onViewChangeEvent: EventEmitter<string>;
onNextEvent: EventEmitter<void>;
onTodayEvent: EventEmitter<void>;
onPreviousEvent: EventEmitter<void>;
constructor(labels: ADCILabels | null, options: ADCIOptions);
onViewChange(view: string): void;
onPrevious(): void;
onToday(): void;
onNext(): void;
static ɵfac: i0.ɵɵFactoryDeclaration<ADCBaseContainerComponent, [{ optional: true; }, null]>;
static ɵcmp: i0.ɵɵComponentDeclaration<ADCBaseContainerComponent, "adc-base-container", never, { "views": { "alias": "views"; "required": false; }; "disableNext": { "alias": "disableNext"; "required": false; }; "disableToday": { "alias": "disableToday"; "required": false; }; "disablePrevious": { "alias": "disablePrevious"; "required": false; }; }, { "onViewChangeEvent": "viewChange"; "onNextEvent": "next"; "onTodayEvent": "today"; "onPreviousEvent": "previous"; }, never, ["*"], true, never>;
}