@onecx/angular-accelerator 4.38.0 → 4.40.0
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/esm2020/lib/utils/dateutils.mjs +4 -1
- package/fesm2015/onecx-angular-accelerator.mjs +4 -1
- package/fesm2015/onecx-angular-accelerator.mjs.map +1 -1
- package/fesm2020/onecx-angular-accelerator.mjs +4 -1
- package/fesm2020/onecx-angular-accelerator.mjs.map +1 -1
- package/lib/utils/dateutils.d.ts +1 -0
- package/package.json +1 -1
|
@@ -3414,6 +3414,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
3414
3414
|
type: Inject,
|
|
3415
3415
|
args: [LOCALE_ID]
|
|
3416
3416
|
}] }]; } });
|
|
3417
|
+
function isValidDate(value) {
|
|
3418
|
+
return value instanceof Date && !isNaN(value);
|
|
3419
|
+
}
|
|
3417
3420
|
|
|
3418
3421
|
let lastTranslateLoaderTimerId = 0;
|
|
3419
3422
|
function createRemoteComponentTranslateLoader(http, baseUrlReplaySubject$, translationCacheService) {
|
|
@@ -3444,5 +3447,5 @@ function enumToDropdownOptions(translateService, enumType, translationKeyPrefix)
|
|
|
3444
3447
|
* Generated bundle index. Do not edit.
|
|
3445
3448
|
*/
|
|
3446
3449
|
|
|
3447
|
-
export { AdvancedDirective, AngularAcceleratorMissingTranslationHandler, AngularAcceleratorModule, AngularAcceleratorPrimeNgModule, AppConfigService, AsyncTranslateLoader, BreadcrumbService, CachingTranslateLoader, ColorUtils, ColumnGroupSelectionComponent, ColumnType, CustomGroupColumnSelectorComponent, DataLayoutSelectionComponent, DataListGridComponent, DataListGridSortingComponent, DataTableComponent, DataViewComponent, DateUtils, DiagramComponent, DynamicPipe, GroupByCountDiagramComponent, IfBreakpointDirective, IfPermissionDirective, InteractiveDataViewComponent, ObjectUtils, OcxTimeAgoPipe, PageHeaderComponent, SearchConfigComponent, SearchHeaderComponent, SrcDirective, TranslateCombinedLoader, TranslationCacheService, createRemoteComponentTranslateLoader, createTranslateLoader, enumToDropdownOptions, flattenObject };
|
|
3450
|
+
export { AdvancedDirective, AngularAcceleratorMissingTranslationHandler, AngularAcceleratorModule, AngularAcceleratorPrimeNgModule, AppConfigService, AsyncTranslateLoader, BreadcrumbService, CachingTranslateLoader, ColorUtils, ColumnGroupSelectionComponent, ColumnType, CustomGroupColumnSelectorComponent, DataLayoutSelectionComponent, DataListGridComponent, DataListGridSortingComponent, DataTableComponent, DataViewComponent, DateUtils, DiagramComponent, DynamicPipe, GroupByCountDiagramComponent, IfBreakpointDirective, IfPermissionDirective, InteractiveDataViewComponent, ObjectUtils, OcxTimeAgoPipe, PageHeaderComponent, SearchConfigComponent, SearchHeaderComponent, SrcDirective, TranslateCombinedLoader, TranslationCacheService, createRemoteComponentTranslateLoader, createTranslateLoader, enumToDropdownOptions, flattenObject, isValidDate };
|
|
3448
3451
|
//# sourceMappingURL=onecx-angular-accelerator.mjs.map
|