Trevin Chow
21 hours ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
5 changed files with
15 additions and
11 deletions
-
apps/client/src/main.ts
-
libs/ui/src/lib/entity-logo/entity-logo.component.stories.ts
-
libs/ui/src/lib/fire-calculator/fire-calculator.component.stories.ts
-
libs/ui/src/lib/symbol-autocomplete/symbol-autocomplete.component.stories.ts
-
libs/ui/src/lib/tags-selector/tags-selector.component.stories.ts
|
|
|
@ -22,7 +22,7 @@ import { |
|
|
|
import { MatSnackBarModule } from '@angular/material/snack-bar'; |
|
|
|
import { MatTooltipModule } from '@angular/material/tooltip'; |
|
|
|
import { bootstrapApplication } from '@angular/platform-browser'; |
|
|
|
import { provideAnimations } from '@angular/platform-browser/animations'; |
|
|
|
import { provideAnimationsAsync } from '@angular/platform-browser/animations/async'; |
|
|
|
import { RouterModule, TitleStrategy } from '@angular/router'; |
|
|
|
import { ServiceWorkerModule } from '@angular/service-worker'; |
|
|
|
import { provideIonicAngular } from '@ionic/angular/standalone'; |
|
|
|
@ -79,7 +79,7 @@ import { environment } from './environments/environment'; |
|
|
|
), |
|
|
|
LanguageService, |
|
|
|
ModulePreloadService, |
|
|
|
provideAnimations(), |
|
|
|
provideAnimationsAsync(), |
|
|
|
provideHttpClient(withInterceptorsFromDi()), |
|
|
|
provideIonicAngular(), |
|
|
|
provideMarkdown(), |
|
|
|
|
|
|
|
@ -1,6 +1,6 @@ |
|
|
|
import { CommonModule } from '@angular/common'; |
|
|
|
import { importProvidersFrom } from '@angular/core'; |
|
|
|
import { provideNoopAnimations } from '@angular/platform-browser/animations'; |
|
|
|
import { provideAnimationsAsync } from '@angular/platform-browser/animations/async'; |
|
|
|
import { applicationConfig, Meta, StoryObj } from '@storybook/angular'; |
|
|
|
|
|
|
|
import { EntityLogoImageSourceServiceMock } from '../mocks/entity-logo-image-source.service.mock'; |
|
|
|
@ -13,7 +13,7 @@ export default { |
|
|
|
decorators: [ |
|
|
|
applicationConfig({ |
|
|
|
providers: [ |
|
|
|
provideNoopAnimations(), |
|
|
|
provideAnimationsAsync('noop'), |
|
|
|
importProvidersFrom(CommonModule), |
|
|
|
{ |
|
|
|
provide: EntityLogoImageSourceService, |
|
|
|
|
|
|
|
@ -8,7 +8,7 @@ import { provideNativeDateAdapter } from '@angular/material/core'; |
|
|
|
import { MatDatepickerModule } from '@angular/material/datepicker'; |
|
|
|
import { MatFormFieldModule } from '@angular/material/form-field'; |
|
|
|
import { MatInputModule } from '@angular/material/input'; |
|
|
|
import { NoopAnimationsModule } from '@angular/platform-browser/animations'; |
|
|
|
import { provideAnimationsAsync } from '@angular/platform-browser/animations/async'; |
|
|
|
import { moduleMetadata } from '@storybook/angular'; |
|
|
|
import type { Meta, StoryObj } from '@storybook/angular'; |
|
|
|
import { NgxSkeletonLoaderModule } from 'ngx-skeleton-loader'; |
|
|
|
@ -32,10 +32,13 @@ export default { |
|
|
|
MatFormFieldModule, |
|
|
|
MatInputModule, |
|
|
|
NgxSkeletonLoaderModule, |
|
|
|
NoopAnimationsModule, |
|
|
|
ReactiveFormsModule |
|
|
|
], |
|
|
|
providers: [FireCalculatorService, provideNativeDateAdapter()] |
|
|
|
providers: [ |
|
|
|
FireCalculatorService, |
|
|
|
provideAnimationsAsync('noop'), |
|
|
|
provideNativeDateAdapter() |
|
|
|
] |
|
|
|
}) |
|
|
|
] |
|
|
|
} as Meta<GfFireCalculatorComponent>; |
|
|
|
|
|
|
|
@ -9,7 +9,7 @@ import { |
|
|
|
NgControl, |
|
|
|
ReactiveFormsModule |
|
|
|
} from '@angular/forms'; |
|
|
|
import { provideNoopAnimations } from '@angular/platform-browser/animations'; |
|
|
|
import { provideAnimationsAsync } from '@angular/platform-browser/animations/async'; |
|
|
|
import { applicationConfig, Meta, StoryObj } from '@storybook/angular'; |
|
|
|
|
|
|
|
import { HttpClientMock } from '../mocks/httpClient.mock'; |
|
|
|
@ -75,7 +75,7 @@ export default { |
|
|
|
decorators: [ |
|
|
|
applicationConfig({ |
|
|
|
providers: [ |
|
|
|
provideNoopAnimations(), |
|
|
|
provideAnimationsAsync('noop'), |
|
|
|
importProvidersFrom(CommonModule, FormsModule, ReactiveFormsModule), |
|
|
|
{ |
|
|
|
provide: NgControl, |
|
|
|
|
|
|
|
@ -1,6 +1,6 @@ |
|
|
|
import { CommonModule } from '@angular/common'; |
|
|
|
import '@angular/localize/init'; |
|
|
|
import { NoopAnimationsModule } from '@angular/platform-browser/animations'; |
|
|
|
import { provideAnimationsAsync } from '@angular/platform-browser/animations/async'; |
|
|
|
import { Meta, moduleMetadata, StoryObj } from '@storybook/angular'; |
|
|
|
|
|
|
|
import { GfTagsSelectorComponent } from './tags-selector.component'; |
|
|
|
@ -10,7 +10,8 @@ export default { |
|
|
|
component: GfTagsSelectorComponent, |
|
|
|
decorators: [ |
|
|
|
moduleMetadata({ |
|
|
|
imports: [CommonModule, NoopAnimationsModule] |
|
|
|
imports: [CommonModule], |
|
|
|
providers: [provideAnimationsAsync('noop')] |
|
|
|
}) |
|
|
|
] |
|
|
|
} as Meta<GfTagsSelectorComponent>; |
|
|
|
|