diff --git a/.gitignore b/.gitignore index 204e1b2e..ad5b4f6b 100644 --- a/.gitignore +++ b/.gitignore @@ -39,3 +39,4 @@ testem.log Thumbs.db .angular +.nx diff --git a/packages/core/state/src/lib/+state/app/app.reducer.ts b/packages/core/state/src/lib/+state/app/app.reducer.ts index 27244a93..370064f1 100644 --- a/packages/core/state/src/lib/+state/app/app.reducer.ts +++ b/packages/core/state/src/lib/+state/app/app.reducer.ts @@ -1,5 +1,5 @@ import { Action, createReducer, on } from '@ngrx/store'; -import * as dayjs from 'dayjs'; +import dayjs from 'dayjs'; import { STORE } from '@console-core/config'; import { EActionStatus, IAppState, INotification } from '@console-core/types'; diff --git a/packages/modules/ui/src/lib/components/atoms/copyright/copyright.component.ts b/packages/modules/ui/src/lib/components/atoms/copyright/copyright.component.ts index c2f2545d..1defd75a 100644 --- a/packages/modules/ui/src/lib/components/atoms/copyright/copyright.component.ts +++ b/packages/modules/ui/src/lib/components/atoms/copyright/copyright.component.ts @@ -1,5 +1,5 @@ import { Component, ChangeDetectionStrategy } from '@angular/core'; -import * as dayjs from 'dayjs'; +import dayjs from 'dayjs'; import { APP, ROUTER } from '@console-core/config'; @Component({ diff --git a/packages/modules/ui/src/lib/components/organisms/data-list-order/data-list-order.component.ts b/packages/modules/ui/src/lib/components/organisms/data-list-order/data-list-order.component.ts index 51634b07..e434342f 100644 --- a/packages/modules/ui/src/lib/components/organisms/data-list-order/data-list-order.component.ts +++ b/packages/modules/ui/src/lib/components/organisms/data-list-order/data-list-order.component.ts @@ -5,8 +5,8 @@ import { Input, OnInit, } from '@angular/core'; -import * as dayjs from 'dayjs'; -import * as relativeTime from 'dayjs/plugin/relativeTime'; +import dayjs from 'dayjs'; +import relativeTime from 'dayjs/plugin/relativeTime'; import { IoRestorecommerceProductPhysicalVariant, diff --git a/packages/modules/ui/src/lib/components/organisms/data-list/data-list-item.component.ts b/packages/modules/ui/src/lib/components/organisms/data-list/data-list-item.component.ts index 16db4c85..b184d873 100644 --- a/packages/modules/ui/src/lib/components/organisms/data-list/data-list-item.component.ts +++ b/packages/modules/ui/src/lib/components/organisms/data-list/data-list-item.component.ts @@ -4,8 +4,8 @@ import { HostBinding, Input, } from '@angular/core'; -import * as dayjs from 'dayjs'; -import * as relativeTime from 'dayjs/plugin/relativeTime'; +import dayjs from 'dayjs'; +import relativeTime from 'dayjs/plugin/relativeTime'; dayjs.extend(relativeTime); diff --git a/packages/modules/ui/src/lib/components/templates/private/private-template.component.ts b/packages/modules/ui/src/lib/components/templates/private/private-template.component.ts index da315f0c..4dff9fa2 100644 --- a/packages/modules/ui/src/lib/components/templates/private/private-template.component.ts +++ b/packages/modules/ui/src/lib/components/templates/private/private-template.component.ts @@ -44,7 +44,7 @@ export class RcPrivateTemplateComponent implements OnInit, OnDestroy { clearTimeout(this.resizeTimeout); this.resizeTimeout = setTimeout(() => { this.isResizing = false; - }, 500); // Wait for 500ms after the resize event stops firing + }, 500) as unknown as number; // Wait for 500ms after the resize event stops firing } menuTopLinks = [ diff --git a/tsconfig.base.json b/tsconfig.base.json index 9ba08030..2084caed 100644 --- a/tsconfig.base.json +++ b/tsconfig.base.json @@ -13,6 +13,7 @@ "lib": ["es2020", "dom"], "skipLibCheck": true, "skipDefaultLibCheck": true, + "allowSyntheticDefaultImports": true, "baseUrl": ".", "paths": { "@console-core/config": ["packages/core/config/src/index.ts"],