Skip to content

Commit

Permalink
chore(deps): bump deps
Browse files Browse the repository at this point in the history
  • Loading branch information
nvsukhanov committed Jul 29, 2024
1 parent c243a25 commit d412bf6
Show file tree
Hide file tree
Showing 30 changed files with 7,469 additions and 5,846 deletions.
3 changes: 3 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@
],
"overrides": [
{
"parserOptions": {
"project": ["./tsconfig.*?.json"]
},
"plugins": [
"@nx"
],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { FormBuilder, FormControl, ReactiveFormsModule, Validators } from '@angu
import { Observable, Subscription, filter, of, startWith, switchMap } from 'rxjs';
import { AsyncPipe } from '@angular/common';
import { MatBadge } from '@angular/material/badge';
import { concatLatestFrom } from '@ngrx/effects';
import { concatLatestFrom } from '@ngrx/operators';
import { Store } from '@ngrx/store';
import { ControlSchemeBindingType, ValidationMessagesDirective } from '@app/shared-misc';
import { HideOnSmallScreenDirective } from '@app/shared-components';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import { MatDialog, MatDialogModule } from '@angular/material/dialog';
import { MatDividerModule } from '@angular/material/divider';
import { MatInputModule } from '@angular/material/input';
import { ReactiveFormsModule } from '@angular/forms';
import { concatLatestFrom } from '@ngrx/effects';
import { concatLatestFrom } from '@ngrx/operators';
import { AsyncPipe } from '@angular/common';
import { ControlSchemeBindingType, ValidationErrorsL10nMap, ValidationMessagesDirective, transformRelativeDegToAbsoluteDeg } from '@app/shared-misc';
import { HideOnSmallScreenDirective, ToggleControlComponent } from '@app/shared-components';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { Observable, filter, map, switchMap, take } from 'rxjs';
import { MatButtonModule } from '@angular/material/button';
import { TranslocoPipe, TranslocoService } from '@ngneat/transloco';
import { Router } from '@angular/router';
import { concatLatestFrom } from '@ngrx/effects';
import { concatLatestFrom } from '@ngrx/operators';
import { AsyncPipe } from '@angular/common';
import { IUnsavedChangesComponent, RoutesBuilderService, TitleService } from '@app/shared-misc';
import { BreadcrumbsService, ConfirmationDialogModule, ConfirmationDialogService, FeatureToolbarControlsDirective } from '@app/shared-components';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { Router, RouterLink } from '@angular/router';
import { MatCardModule } from '@angular/material/card';
import { MatDialog, MatDialogModule } from '@angular/material/dialog';
import { filter, of, take } from 'rxjs';
import { concatLatestFrom } from '@ngrx/effects';
import { concatLatestFrom } from '@ngrx/operators';
import { AsyncPipe } from '@angular/common';
import { RoutesBuilderService, ScreenSizeObserverService, TitleService } from '@app/shared-misc';
import {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { MatSelectModule } from '@angular/material/select';
import { TranslocoPipe } from '@ngneat/transloco';
import { Observable, Subscription, map, of, startWith, switchMap } from 'rxjs';
import { Store } from '@ngrx/store';
import { concatLatestFrom } from '@ngrx/effects';
import { concatLatestFrom } from '@ngrx/operators';
import { AsyncPipe } from '@angular/common';
import { ControlSchemeBindingType } from '@app/shared-misc';
import { IoTypeToL10nKeyPipe, PortIdToPortNamePipe } from '@app/shared-components';
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { Store } from '@ngrx/store';
import { AbstractControl, AsyncValidatorFn, ValidationErrors } from '@angular/forms';
import { Observable, map, startWith, take } from 'rxjs';
import { concatLatestFrom } from '@ngrx/effects';
import { concatLatestFrom } from '@ngrx/operators';

import { CONTROL_SCHEMES_VALIDATION_SELECTORS } from './control-schemes-validation.selectors';
import { CONTROL_SCHEME_NAME_IS_NOT_UNIQUE } from './control-schemes-validation-errors';
Expand Down
3 changes: 2 additions & 1 deletion modules/store/src/lib/effects/attached-io-modes.effects.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
import { Injectable } from '@angular/core';
import { Actions, concatLatestFrom, createEffect, ofType } from '@ngrx/effects';
import { Actions, createEffect, ofType } from '@ngrx/effects';
import { Store } from '@ngrx/store';
import { filter, map, mergeMap, takeUntil } from 'rxjs';
import { PortModeInboundMessage } from 'rxpoweredup';
import { concatLatestFrom } from '@ngrx/operators';

import { ATTACHED_IOS_ACTIONS, ATTACHED_IO_MODES_ACTIONS } from '../actions';
import { ATTACHED_IO_MODES_SELECTORS } from '../selectors';
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
import { Actions, concatLatestFrom, createEffect, ofType } from '@ngrx/effects';
import { Actions, createEffect, ofType } from '@ngrx/effects';
import { EMPTY, Observable, combineLatest, filter, from, map, mergeMap, of, pairwise, startWith, switchMap, take, takeUntil } from 'rxjs';
import { Action, Store } from '@ngrx/store';
import { inject } from '@angular/core';
import { concatLatestFrom } from '@ngrx/operators';
import { ControlSchemeBindingType } from '@app/shared-misc';

import { attachedIosIdFn } from '../../reducers';
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
import { Actions, concatLatestFrom, createEffect, ofType } from '@ngrx/effects';
import { Actions, createEffect, ofType } from '@ngrx/effects';
import { filter, map } from 'rxjs';
import { Store } from '@ngrx/store';
import { inject } from '@angular/core';
import { concatLatestFrom } from '@ngrx/operators';

import { PORT_TASKS_ACTIONS } from '../../actions';
import { PORT_TASKS_SELECTORS } from '../../selectors';
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
import { Actions, concatLatestFrom, createEffect, ofType } from '@ngrx/effects';
import { Actions, createEffect, ofType } from '@ngrx/effects';
import { MonoTypeOperatorFunction, Observable, catchError, concatWith, filter, forkJoin, last, map, of, switchMap, timeout } from 'rxjs';
import { inject } from '@angular/core';
import { Store } from '@ngrx/store';
import { concatLatestFrom } from '@ngrx/operators';
import { APP_CONFIG, IAppConfig } from '@app/shared-misc';

import { CONTROL_SCHEME_ACTIONS } from '../../../actions';
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
import { Actions, concatLatestFrom, createEffect, ofType } from '@ngrx/effects';
import { Actions, createEffect, ofType } from '@ngrx/effects';
import { filter, map } from 'rxjs';
import { inject } from '@angular/core';
import { Store } from '@ngrx/store';
import { concatLatestFrom } from '@ngrx/operators';

import { CONTROL_SCHEME_ACTIONS, HUBS_ACTIONS } from '../../actions';
import { CONTROL_SCHEME_SELECTORS } from '../../selectors';
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
import { Actions, concatLatestFrom, createEffect, ofType } from '@ngrx/effects';
import { Actions, createEffect, ofType } from '@ngrx/effects';
import { Observable, catchError, filter, forkJoin, map, mergeMap, of, switchMap, take, timeout } from 'rxjs';
import { Action, Store } from '@ngrx/store';
import { inject } from '@angular/core';
import { Dictionary } from '@ngrx/entity';
import { concatLatestFrom } from '@ngrx/operators';
import { APP_CONFIG, IAppConfig } from '@app/shared-misc';

import { ITaskRunner, TASK_RUNNER } from './i-task-runner';
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
import { concatLatestFrom, createEffect } from '@ngrx/effects';
import { createEffect } from '@ngrx/effects';
import { NEVER, Observable, filter, fromEvent, map, mergeMap, mergeWith, switchMap, take } from 'rxjs';
import { Action, Store } from '@ngrx/store';
import { inject } from '@angular/core';
import { concatLatestFrom } from '@ngrx/operators';
import { ControllerInputType, ControllerType } from '@app/controller-profiles';
import { WINDOW } from '@app/shared-misc';

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
import { Actions, concatLatestFrom, createEffect, ofType } from '@ngrx/effects';
import { Actions, createEffect, ofType } from '@ngrx/effects';
import { inject } from '@angular/core';
import { Action, Store } from '@ngrx/store';
import { Observable, animationFrames, filter, map, switchMap } from 'rxjs';
import { concatLatestFrom } from '@ngrx/operators';
import { ControllerType, GamepadProfileFactoryService, GamepadSettings, IControllerProfile } from '@app/controller-profiles';
import { WINDOW } from '@app/shared-misc';

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
import { Actions, concatLatestFrom, createEffect, ofType } from '@ngrx/effects';
import { Actions, createEffect, ofType } from '@ngrx/effects';
import { inject } from '@angular/core';
import { map } from 'rxjs';
import { Store } from '@ngrx/store';
import { concatLatestFrom } from '@ngrx/operators';
import { HubProfileFactoryService } from '@app/controller-profiles';

import { CONTROLLERS_ACTIONS, HUBS_ACTIONS } from '../../../actions';
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
import { Actions, concatLatestFrom, createEffect, ofType } from '@ngrx/effects';
import { Actions, createEffect, ofType } from '@ngrx/effects';
import { inject } from '@angular/core';
import { fromEvent, map, switchMap, take } from 'rxjs';
import { Store } from '@ngrx/store';
import { concatLatestFrom } from '@ngrx/operators';
import { KeyboardProfileFactoryService } from '@app/controller-profiles';
import { WINDOW } from '@app/shared-misc';

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
import { concatLatestFrom, createEffect } from '@ngrx/effects';
import { createEffect } from '@ngrx/effects';
import { inject } from '@angular/core';
import { Store } from '@ngrx/store';
import { Observable, filter, fromEvent, map } from 'rxjs';
import { concatLatestFrom } from '@ngrx/operators';
import { WINDOW } from '@app/shared-misc';

import { CONTROLLERS_ACTIONS } from '../../../actions';
Expand Down
3 changes: 2 additions & 1 deletion modules/store/src/lib/effects/hub-port-mode-info-effects.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
import { Injectable } from '@angular/core';
import { Actions, concatLatestFrom, createEffect, ofType } from '@ngrx/effects';
import { Actions, createEffect, ofType } from '@ngrx/effects';
import { Store } from '@ngrx/store';
import { map, mergeMap, takeUntil, zip } from 'rxjs';
import { PortModeInformationName, PortModeInformationSymbol, PortModeInformationType, PortModeName, PortModeSymbol } from 'rxpoweredup';
import { concatLatestFrom } from '@ngrx/operators';

import { ATTACHED_IO_MODES_ACTIONS, HUB_PORT_MODE_INFO_ACTIONS } from '../actions';
import { HubStorageService } from '../hub-storage.service';
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
import { Actions, concatLatestFrom, createEffect, ofType } from '@ngrx/effects';
import { Actions, createEffect, ofType } from '@ngrx/effects';
import { filter, mergeMap } from 'rxjs';
import { Store } from '@ngrx/store';
import { inject } from '@angular/core';
import { concatLatestFrom } from '@ngrx/operators';

import { HUBS_ACTIONS } from '../../actions';
import { HUBS_SELECTORS } from '../../selectors';
Expand Down
3 changes: 2 additions & 1 deletion modules/store/src/lib/effects/hub/discover-hub.effect.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
import { Actions, concatLatestFrom, createEffect, ofType } from '@ngrx/effects';
import { Actions, createEffect, ofType } from '@ngrx/effects';
import { catchError, combineLatestWith, map, mergeMap, of, switchMap, takeUntil } from 'rxjs';
import { IHub, MessageLoggingMiddleware, connectHub } from 'rxpoweredup';
import { inject } from '@angular/core';
import { Store } from '@ngrx/store';
import { concatLatestFrom } from '@ngrx/operators';
import { APP_CONFIG, IAppConfig, NAVIGATOR, PrefixedConsoleLoggerFactoryService } from '@app/shared-misc';

import { SETTINGS_FEATURE } from '../../reducers';
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
import { Actions, concatLatestFrom, createEffect, ofType } from '@ngrx/effects';
import { Actions, createEffect, ofType } from '@ngrx/effects';
import { inject } from '@angular/core';
import { catchError, map, mergeMap, of } from 'rxjs';
import { Store } from '@ngrx/store';
import { PortModeName, ValueTransformers } from 'rxpoweredup';
import { concatLatestFrom } from '@ngrx/operators';

import { ATTACHED_IO_PORT_MODE_INFO_SELECTORS } from '../../selectors';
import { HUBS_ACTIONS } from '../../actions';
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
import { Actions, concatLatestFrom, createEffect, ofType } from '@ngrx/effects';
import { Actions, createEffect, ofType } from '@ngrx/effects';
import { inject } from '@angular/core';
import { catchError, map, mergeMap, of } from 'rxjs';
import { Store } from '@ngrx/store';
import { PortModeName, ValueTransformers } from 'rxpoweredup';
import { concatLatestFrom } from '@ngrx/operators';

import { ATTACHED_IO_PORT_MODE_INFO_SELECTORS } from '../../selectors';
import { HUBS_ACTIONS } from '../../actions';
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
import { Actions, concatLatestFrom, createEffect, ofType } from '@ngrx/effects';
import { Actions, createEffect, ofType } from '@ngrx/effects';
import { inject } from '@angular/core';
import { tap } from 'rxjs';
import { DOCUMENT } from '@angular/common';
import { Store } from '@ngrx/store';
import { concatLatestFrom } from '@ngrx/operators';

import { SETTINGS_ACTIONS } from '../../actions';

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import {
takeUntil
} from 'rxjs';
import { IHub, MotorServoEndState, PortModeName, ValueTransformers } from 'rxpoweredup';
import { concatLatestFrom } from '@ngrx/effects';
import { concatLatestFrom } from '@ngrx/operators';
import { Store } from '@ngrx/store';
import { APP_CONFIG, IAppConfig, transformRelativeDegToAbsoluteDeg } from '@app/shared-misc';

Expand Down
5 changes: 4 additions & 1 deletion nx.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,10 @@
"inputs": [
"default",
"{workspaceRoot}/.eslintrc.json"
]
],
"options": {
"maxWarnings": 0
}
},
"test": {
"cache": true,
Expand Down
Loading

0 comments on commit d412bf6

Please sign in to comment.