@evoke-platform/ui-components 1.0.0-dev.193 → 1.0.0-dev.194
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.
@@ -20,4 +20,4 @@ export declare class InvalidDate implements Temporal {
|
|
20
20
|
}
|
21
21
|
export declare type CalendarDate = LocalDate | InvalidDate | LocalDateTime;
|
22
22
|
export declare function isValidDate(date: CalendarDate): date is LocalDate | LocalDateTime;
|
23
|
-
export { nativeJs, LocalDate, LocalDateTime } from '@js-joda/core';
|
23
|
+
export { nativeJs, LocalDate, LocalDateTime, Instant, ZoneOffset } from '@js-joda/core';
|
@@ -44,4 +44,4 @@ export function isValidDate(date) {
|
|
44
44
|
return date.invalid !== true;
|
45
45
|
}
|
46
46
|
// Re-export type and utility function from Joda for convenience.
|
47
|
-
export { nativeJs, LocalDate, LocalDateTime } from '@js-joda/core';
|
47
|
+
export { nativeJs, LocalDate, LocalDateTime, Instant, ZoneOffset } from '@js-joda/core';
|