Migrates the ngrx-etc immer functionallity to ngrx-immer. Do not forget to uninstall ngrx-etc and install ngrx-immer and immer3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
{ | |
"extends": "../../.eslintrc.json", | |
"overrides": [ | |
{ | |
"files": [ | |
"*.ts" | |
], | |
"rules": { | |
"no-restricted-imports": [ | |
"error", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$Themes = "C:\Users\{user}\AppData\Local\Programs\oh-my-posh\themes\" | |
$RandomTheme = Get-ChildItem $Themes -name | Select-Object -index $(Random $((Get-ChildItem $Themes).Count)) | |
oh-my-posh init pwsh --config "$Themes\$RandomTheme" | Invoke-Expression |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
fit('Then follow through navigation reproduction', async () => { | |
let isAuthenticated$ = new ReplaySubject<boolean>(1); | |
let mockedAuthStore = jasmine.createSpyObj<AuthStore>(AuthStore.name, [], { | |
isAuthenticated$ | |
}); | |
const router = await minimalRender( | |
[ | |
{ path: '', component: DummyHomeComponent }, | |
...routes |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { NEVER, of } from 'rxjs'; | |
import { filter, switchMap } from 'rxjs/operators'; | |
import { TestScheduler } from 'rxjs/testing'; | |
import { echo, echoGroup } from './echo'; | |
const testScheduler = () => | |
new TestScheduler((actual, expected) => { | |
expect(actual).toEqual(expected); | |
}); |
This file has been truncated, but you can view the full file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*! tailwindcss v2.0.3 | MIT License | https://tailwindcss.com */ | |
/*! modern-normalize v1.0.0 | MIT License | https://github.com/sindresorhus/modern-normalize */ | |
/* | |
Document | |
======== | |
*/ | |
/** |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { | |
EventObject, | |
StateMachine, | |
InterpreterOptions, | |
MachineOptions, | |
StateConfig, | |
interpret, | |
Actor, | |
} from 'xstate' | |
import { from, BehaviorSubject, Observable, merge } from 'rxjs' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { Component, OnInit, ViewChild } from '@angular/core' | |
import { MapInfoWindow, MapMarker, GoogleMap } from '@angular/google-maps' | |
@Component({ | |
selector: 'app-root', | |
templateUrl: './app.component.html', | |
styleUrls: ['./app.component.css'], | |
}) | |
export class AppComponent implements OnInit { | |
@ViewChild(GoogleMap, { static: false }) map: GoogleMap |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<google-map | |
height="500px" | |
width="100%" | |
[zoom]="zoom" | |
[center]="center" | |
[options]="options" | |
(mapClick)="click($event)" | |
> | |
<map-marker | |
#markerElem |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export class AppComponent implements OnInit { | |
@ViewChild(MapInfoWindow, { static: false }) infoWindow: MapInfoWindow | |
infoContent = '' | |
openInfo(marker: MapMarker, content) { | |
this.infoContent = content | |
this.infoWindow.open(marker) | |
} | |
} |
NewerOlder