@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.41 kB
TypeScript
import { EventEmitter } from '@angular/core';
import { ADCILabels, ADCIOptions, ADCIViewButton } from '../../interface';
import * as i0 from "@angular/core";
export declare class ADCBaseContainerComponent {
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;
onViewChange: EventEmitter<string>;
onNext: EventEmitter<void>;
onToday: EventEmitter<void>;
onPrevious: EventEmitter<void>;
constructor(labels: ADCILabels | null, options: ADCIOptions);
viewChangeHandler(view: string): void;
previousHandler(): void;
onGoToToday(): void;
nextHandler(): 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; }; }, { "onViewChange": "viewChange"; "onNext": "next"; "onToday": "today"; "onPrevious": "previous"; }, never, ["*"], true, never>;
}