datex-ui 1.1.8 → 1.1.9
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.
package/dist/datex.d.ts
CHANGED
|
@@ -38,6 +38,9 @@ export declare class Datex {
|
|
|
38
38
|
getStartDate(): Date;
|
|
39
39
|
getEndDate(): Date | null;
|
|
40
40
|
setTheme(theme: DatexTheme): void;
|
|
41
|
+
setThemeMode(mode: "light" | "dark" | "auto"): void;
|
|
42
|
+
getThemeMode(): "light" | "dark" | "auto";
|
|
43
|
+
getCurrentThemeMode(): "light" | "dark";
|
|
41
44
|
updateValidation(validation: DatexValidation): void;
|
|
42
45
|
validateDate(date: Date): ValidationResult;
|
|
43
46
|
validateDateRange(startDate: Date, endDate: Date): ValidationResult;
|
|
@@ -81,7 +84,9 @@ export declare class Datex {
|
|
|
81
84
|
private handleDateClick;
|
|
82
85
|
private handleDateHover;
|
|
83
86
|
private handleMonthYearChange;
|
|
87
|
+
private handleTimeChange;
|
|
84
88
|
private updateView;
|
|
89
|
+
private updateTimePickerControls;
|
|
85
90
|
private updateMonthsInView;
|
|
86
91
|
private updateCalendars;
|
|
87
92
|
private renderCalendar;
|