@ardium-ui/ui 5.0.0-alpha.91 → 5.0.0-alpha.92
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.
|
@@ -6,6 +6,9 @@ import { ArdCalendarDefaults } from './calendar.defaults';
|
|
|
6
6
|
import { ArdCalendarDaysViewHeaderTemplateDirective, ArdCalendarDayTemplateDirective, ArdCalendarFloatingMonthTemplateDirective, ArdCalendarMonthsViewHeaderTemplateDirective, ArdCalendarMonthTemplateDirective, ArdCalendarWeekdayTemplateDirective, ArdCalendarYearsViewHeaderTemplateDirective, ArdCalendarYearTemplateDirective } from './calendar.directives';
|
|
7
7
|
import { _CalendarTemplateRepositoryDirective } from './calendar.internal-directives';
|
|
8
8
|
import { ArdCalendarFilterFn, ArdCalendarView, ArdMultiCalendarLocation } from './calendar.types';
|
|
9
|
+
import { DaysViewComponent } from './views/days-view/days-view.component';
|
|
10
|
+
import { MonthsViewComponent } from './views/months-view/months-view.component';
|
|
11
|
+
import { YearsViewComponent } from './views/years-view/years-view.component';
|
|
9
12
|
import * as i0 from "@angular/core";
|
|
10
13
|
export declare abstract class _AbstractCalendar<T> extends _FormFieldComponentBase implements OnChanges {
|
|
11
14
|
abstract readonly componentId: string;
|
|
@@ -31,9 +34,12 @@ export declare abstract class _AbstractCalendar<T> extends _FormFieldComponentBa
|
|
|
31
34
|
readonly autoFocus: import("@angular/core").InputSignalWithTransform<boolean, BooleanLike>;
|
|
32
35
|
readonly staticHeight: import("@angular/core").InputSignalWithTransform<boolean, BooleanLike>;
|
|
33
36
|
readonly hideFloatingMonth: import("@angular/core").InputSignalWithTransform<boolean, BooleanLike>;
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
+
readonly daysViewComponent: Signal<DaysViewComponent>;
|
|
38
|
+
readonly monthsViewComponent: Signal<MonthsViewComponent>;
|
|
39
|
+
readonly yearsViewComponent: Signal<YearsViewComponent>;
|
|
40
|
+
openDaysView(): void;
|
|
41
|
+
openMonthsView(): void;
|
|
42
|
+
openYearsView(): void;
|
|
37
43
|
readonly selectionStart: import("@angular/core").WritableSignal<Date | null>;
|
|
38
44
|
readonly selectionEnd: import("@angular/core").WritableSignal<Date | null>;
|
|
39
45
|
abstract readonly endDate: Signal<Date | null>;
|
|
@@ -28,6 +28,8 @@ export interface CalendarYearsViewHeaderContext {
|
|
|
28
28
|
prevPage: () => void;
|
|
29
29
|
openMonthsView: () => void;
|
|
30
30
|
openDaysView: () => void;
|
|
31
|
+
onFocus: (event: FocusEvent) => void;
|
|
32
|
+
onBlur: (event: FocusEvent) => void;
|
|
31
33
|
canGoToNextPage: boolean;
|
|
32
34
|
canGoToPreviousPage: boolean;
|
|
33
35
|
hideNextPageButton: boolean;
|
|
@@ -41,6 +43,8 @@ export interface CalendarMonthsViewHeaderContext {
|
|
|
41
43
|
prevPage: () => void;
|
|
42
44
|
openDaysView: () => void;
|
|
43
45
|
openYearsView: () => void;
|
|
46
|
+
onFocus: (event: FocusEvent) => void;
|
|
47
|
+
onBlur: (event: FocusEvent) => void;
|
|
44
48
|
canGoToNextPage: boolean;
|
|
45
49
|
canGoToPreviousPage: boolean;
|
|
46
50
|
hideNextPageButton: boolean;
|
|
@@ -56,6 +60,8 @@ export interface CalendarDaysViewHeaderContext {
|
|
|
56
60
|
prevYear: () => void;
|
|
57
61
|
openYearsView: () => void;
|
|
58
62
|
openMonthsView: () => void;
|
|
63
|
+
onFocus: (event: FocusEvent) => void;
|
|
64
|
+
onBlur: (event: FocusEvent) => void;
|
|
59
65
|
canGoToNextPage: boolean;
|
|
60
66
|
canGoToPreviousPage: boolean;
|
|
61
67
|
hideNextPageButton: boolean;
|