Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 2ab65f7

Browse files
committed
feat(template): drop UnpatchModule
BREAKING CHANGE: The UnpatchModule was dropped. Use the standalone import instead.
1 parent 3a7f914 commit 2ab65f7

File tree

35 files changed

+65
-86
lines changed

35 files changed

+65
-86
lines changed

apps/demos/src/app/features/concepts/coalescing/coalescing.module.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { NgModule } from '@angular/core';
22
import { CommonModule } from '@angular/common';
33
import { RouterModule } from '@angular/router';
44
import { RxPush } from '@rx-angular/template/push';
5-
import { UnpatchModule } from '@rx-angular/template/unpatch';
5+
import { RxUnpatch } from '@rx-angular/template/unpatch';
66

77
import { ROUTES } from './coalescing.routes';
88
import { CoalescingComponent } from './coalescing/coalescing.component';
@@ -19,7 +19,7 @@ const DECLARATIONS = [CoalescingComponent];
1919
RouterModule.forChild(ROUTES),
2020
VisualizerModule,
2121
StrategySelectModule,
22-
UnpatchModule,
22+
RxUnpatch,
2323
MatButtonModule,
2424
RxPush,
2525
],

apps/demos/src/app/features/concepts/nested-vs-injected/nested-vs-injected.module.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { RouterModule } from '@angular/router';
44
import { ROUTES } from './nested-vs-injected.routes';
55
import { MatLegacyButtonModule as MatButtonModule } from '@angular/material/legacy-button';
66
import { DirtyChecksModule } from '../../../shared/debug-helper/dirty-checks';
7-
import { UnpatchModule } from '@rx-angular/template/unpatch';
7+
import { RxUnpatch } from '@rx-angular/template/unpatch';
88
import { DetectChangesInjectedComponent } from './injected/detect-changes.injected.component';
99
import { CdDefaultModule } from '../../../shared/debug-helper/cd-default/cd-default.module';
1010
import { VisualizerModule } from '../../../shared/debug-helper/visualizer';
@@ -39,7 +39,7 @@ import { MatButtonToggleModule } from '@angular/material/button-toggle';
3939
RouterModule.forChild(ROUTES),
4040
MatButtonModule,
4141
DirtyChecksModule,
42-
UnpatchModule,
42+
RxUnpatch,
4343
CdDefaultModule,
4444
VisualizerModule,
4545
CdOnPushModule,

apps/demos/src/app/features/concepts/passing-values/passing-values.module.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import { RouterModule } from '@angular/router';
77
import { ROUTES } from './passing-values.routes';
88
import { MatLegacyButtonModule as MatButtonModule } from '@angular/material/legacy-button';
99
import { RxPush } from '@rx-angular/template/push';
10-
import { UnpatchModule } from '@rx-angular/template/unpatch';
10+
import { RxUnpatch } from '@rx-angular/template/unpatch';
1111
import { PassingValuesComponent } from './passing-values.component';
1212
import { VisualizerModule } from '../../../shared/debug-helper/visualizer';
1313
import { ValueProvidersModule } from '../../../shared/debug-helper/value-provider';
@@ -29,7 +29,7 @@ import { FormsModule } from '@angular/forms';
2929
MatIconModule,
3030
RecursiveModule,
3131
FormsModule,
32-
UnpatchModule,
32+
RxUnpatch,
3333
MatButtonModule,
3434
RxPush,
3535
],

apps/demos/src/app/features/concepts/projected-views/projected-views.module.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { NgModule } from '@angular/core';
22
import { CommonModule } from '@angular/common';
33
import { RouterModule } from '@angular/router';
4-
import { UnpatchModule } from '@rx-angular/template/unpatch';
4+
import { RxUnpatch } from '@rx-angular/template/unpatch';
55
import { StrategySelectModule } from '../../../shared/debug-helper/strategy-select/strategy-select.module';
66
import { ROUTES } from './projected-views.routes';
77
import { ProjectedViewsComponent } from './projected-views.component';
@@ -21,7 +21,7 @@ import { MatLegacyButtonModule as MatButtonModule } from '@angular/material/lega
2121
CommonModule,
2222
RouterModule.forChild(ROUTES),
2323
VisualizerModule,
24-
UnpatchModule,
24+
RxUnpatch,
2525
MatButtonModule,
2626
RxLetModule,
2727
StrategySelectModule,

apps/demos/src/app/features/concepts/scheduling/scheduling.module.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { RouterModule } from '@angular/router';
44
import { SchedulingComponent } from './scheduling/scheduling.component';
55
import { RxPush } from '@rx-angular/template/push';
66
import { RxLet } from '@rx-angular/template/let';
7-
import { UnpatchModule } from '@rx-angular/template/unpatch';
7+
import { RxUnpatch } from '@rx-angular/template/unpatch';
88
import { ROUTES } from './scheduling.routes';
99
import { MatLegacyButtonModule as MatButtonModule } from '@angular/material/legacy-button';
1010
import { VisualizerModule } from '../../../shared/debug-helper/visualizer';
@@ -18,7 +18,7 @@ const DECLARATIONS = [SchedulingComponent];
1818
RouterModule.forChild(ROUTES),
1919
RxLet,
2020
RxPush,
21-
UnpatchModule,
21+
RxUnpatch,
2222
MatButtonModule,
2323
VisualizerModule,
2424
],

apps/demos/src/app/features/concepts/view-vs-embedded-view/view-vs-embedded-view.module.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { OriginalLetDirective } from './original-let.directive';
44
import { Poc1LetDirective } from './poc1-let.directive';
55
import { ViewVsEmbeddedViewComponent } from './view-vs-embedded-view.component';
66
import { VisualizerModule } from '../../../shared/debug-helper/visualizer';
7-
import { UnpatchModule } from '@rx-angular/template/unpatch';
7+
import { RxUnpatch } from '@rx-angular/template/unpatch';
88
import { MatLegacyButtonModule as MatButtonModule } from '@angular/material/legacy-button';
99

1010
@NgModule({
@@ -14,6 +14,6 @@ import { MatLegacyButtonModule as MatButtonModule } from '@angular/material/lega
1414
ViewVsEmbeddedViewComponent,
1515
],
1616
exports: [Poc1LetDirective],
17-
imports: [CommonModule, VisualizerModule, UnpatchModule, MatButtonModule],
17+
imports: [CommonModule, VisualizerModule, RxUnpatch, MatButtonModule],
1818
})
1919
export class ViewVsEmbeddedViewModule {}

apps/demos/src/app/features/concepts/zone-patched-apis/zone-patched-apis.module.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { RouterModule } from '@angular/router';
44
import { ROUTES } from './zone-patched-apis.routes';
55
import { MatLegacyButtonModule as MatButtonModule } from '@angular/material/legacy-button';
66
import { RxPush } from '@rx-angular/template/push';
7-
import { UnpatchModule } from '@rx-angular/template/unpatch';
7+
import { RxUnpatch } from '@rx-angular/template/unpatch';
88
import { ZonePatchedApisComponent } from './zone-patched-apis.component';
99
import { DirtyChecksModule } from '../../../shared/debug-helper/dirty-checks';
1010
import { VisualizerModule } from '../../../shared/debug-helper/visualizer/visualizer.module';
@@ -18,7 +18,7 @@ import { ValueProvidersModule } from '../../../shared/debug-helper/value-provide
1818
RouterModule.forChild(ROUTES),
1919
MatButtonModule,
2020
DirtyChecksModule,
21-
UnpatchModule,
21+
RxUnpatch,
2222
RxPush,
2323
VisualizerModule,
2424
CdDefaultModule,

apps/demos/src/app/features/experiments/structural-directives/rx-switch-poc/rx-switch-poc.module.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { ROUTES } from './rx-switch-poc.routes';
55
import { VisualizerModule } from '../../../../shared/debug-helper/visualizer';
66
import { RxPush } from '@rx-angular/template/push';
77
import { RxLet } from '@rx-angular/template/let';
8-
import { UnpatchModule } from '@rx-angular/template/unpatch';
8+
import { RxUnpatch } from '@rx-angular/template/unpatch';
99
import { MatLegacyButtonModule as MatButtonModule } from '@angular/material/legacy-button';
1010
import { RxSwitchPocComponent } from './rx-switch-poc.component';
1111
import { DirtyChecksModule } from '../../../../shared/debug-helper/dirty-checks';
@@ -23,7 +23,7 @@ import { ValueProvidersModule } from '../../../../shared/debug-helper/value-prov
2323
CommonModule,
2424
RouterModule.forChild(ROUTES),
2525
VisualizerModule,
26-
UnpatchModule,
26+
RxUnpatch,
2727
MatButtonModule,
2828
DirtyChecksModule,
2929
RxPush,

apps/demos/src/app/features/template/pipes/memo-poc/memo-poc.module.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { CommonModule } from '@angular/common';
22
import { NgModule } from '@angular/core';
33
import { MatLegacyButtonModule as MatButtonModule } from '@angular/material/legacy-button';
44
import { RouterModule } from '@angular/router';
5-
import { UnpatchModule } from '@rx-angular/template/unpatch';
5+
import { RxUnpatch } from '@rx-angular/template/unpatch';
66
import { DirtyChecksModule } from '../../../../shared/debug-helper/dirty-checks';
77
import { MemoPocComponent } from './memo-poc.component';
88
import { ROUTES } from './memo-poc.routes';
@@ -21,7 +21,7 @@ const DECLARATIONS = [MemoPocComponent, FibonacciPipe, FibonacciMemoPipe];
2121
PushModule,
2222
DirtyChecksModule,
2323
MatButtonModule,
24-
UnpatchModule,
24+
RxUnpatch,
2525
MatButtonToggleModule,
2626
MemoModule,
2727
],

apps/demos/src/app/features/template/pipes/pipe-poc/pipe-poc.module.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { MatLegacyButtonModule as MatButtonModule } from '@angular/material/lega
44
import { RouterModule } from '@angular/router';
55
import { RxPush } from '@rx-angular/template/push';
66
import { RxLet } from '@rx-angular/template/let';
7-
import { UnpatchModule } from '@rx-angular/template/unpatch';
7+
import { RxUnpatch } from '@rx-angular/template/unpatch';
88
import { PipeModule } from '../../../../rx-angular-pocs/template/pipes/pipe/pipe.module';
99
import { DirtyChecksModule } from '../../../../shared/debug-helper/dirty-checks';
1010
import { PipePocComponent } from './pipe-poc.component';
@@ -20,7 +20,7 @@ const DECLARATIONS = [PipePocComponent];
2020
PipeModule,
2121
DirtyChecksModule,
2222
MatButtonModule,
23-
UnpatchModule,
23+
RxUnpatch,
2424
RxPush,
2525
RxLet,
2626
],

apps/demos/src/app/features/template/push/push-basic/push-basic.module.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { NgModule } from '@angular/core';
33
import { MatLegacyButtonModule as MatButtonModule } from '@angular/material/legacy-button';
44
import { RouterModule } from '@angular/router';
55
import { RxPush } from '@rx-angular/template/push';
6-
import { UnpatchModule } from '@rx-angular/template/unpatch';
6+
import { RxUnpatch } from '@rx-angular/template/unpatch';
77
import { DirtyChecksModule } from '../../../../shared/debug-helper/dirty-checks/index';
88
import { PushBasicComponent } from './push-basic.component';
99
import { ROUTES } from './push-basic.routes';
@@ -18,7 +18,7 @@ const DECLARATIONS = [PushBasicComponent];
1818
RxPush,
1919
DirtyChecksModule,
2020
MatButtonModule,
21-
UnpatchModule,
21+
RxUnpatch,
2222
],
2323
exports: [DECLARATIONS],
2424
})

apps/demos/src/app/features/template/push/push-vs-async/push-vs-async.module.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import { MatIconModule } from '@angular/material/icon';
88
import { MatLegacyInputModule as MatInputModule } from '@angular/material/legacy-input';
99
import { RouterModule } from '@angular/router';
1010
import { RxPush } from '@rx-angular/template/push';
11-
import { UnpatchModule } from '@rx-angular/template/unpatch';
11+
import { RxUnpatch } from '@rx-angular/template/unpatch';
1212
import { DirtyChecksModule } from '../../../../shared/debug-helper/dirty-checks';
1313
import { ValueProvidersModule } from '../../../../shared/debug-helper/value-provider/value-providers.module';
1414
import { VisualizerModule } from '../../../../shared/debug-helper/visualizer/visualizer.module';
@@ -26,7 +26,7 @@ const DECLARATIONS = [PushVsAsyncComponent];
2626
RxPush,
2727
DirtyChecksModule,
2828
MatButtonModule,
29-
UnpatchModule,
29+
RxUnpatch,
3030
VisualizerModule,
3131
MatFormFieldModule,
3232
MatInputModule,

apps/demos/src/app/features/template/render-callback/render-callback.module.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import { RENDER_CALLBACK_ROUTES } from './render-callback.routes';
99
import { MatLegacyButtonModule as MatButtonModule } from '@angular/material/legacy-button';
1010
import { RxPush } from '@rx-angular/template/push';
1111
import { RxLet } from '@rx-angular/template/let';
12-
import { UnpatchModule } from '@rx-angular/template/unpatch';
12+
import { RxUnpatch } from '@rx-angular/template/unpatch';
1313

1414
@NgModule({
1515
declarations: [RenderCallbackComponent],
@@ -20,7 +20,7 @@ import { UnpatchModule } from '@rx-angular/template/unpatch';
2020
MatDividerModule,
2121
DirtyChecksModule,
2222
MatButtonModule,
23-
UnpatchModule,
23+
RxUnpatch,
2424
RxPush,
2525
RxLet,
2626
],

apps/demos/src/app/features/template/rx-for/list-actions/list-actions.module.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import { RouterModule } from '@angular/router';
1010
import { RxPush } from '@rx-angular/template/push';
1111
import { RxLet } from '@rx-angular/template/let';
1212
import { RxFor } from '@rx-angular/template/for';
13-
import { UnpatchModule } from '@rx-angular/template/unpatch';
13+
import { RxUnpatch } from '@rx-angular/template/unpatch';
1414
import { DirtyChecksModule } from '../../../../shared/debug-helper/dirty-checks';
1515
import { ValueProvidersModule } from '../../../../shared/debug-helper/value-provider/value-providers.module';
1616
import { VisualizerModule } from '../../../../shared/debug-helper/visualizer/visualizer.module';
@@ -30,7 +30,7 @@ const DECLARATIONS = [ListActionsComponent];
3030
RxPush,
3131
DirtyChecksModule,
3232
MatButtonModule,
33-
UnpatchModule,
33+
RxUnpatch,
3434
VisualizerModule,
3535
MatFormFieldModule,
3636
MatInputModule,

apps/demos/src/app/features/template/rx-for/nested-lists/nested-lists.module.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { RxFor } from '@rx-angular/template/for';
44
import { RxLet } from '@rx-angular/template/let';
55
import { RxPush } from '@rx-angular/template/push';
66
import { VisualizerModule } from '../../../../shared/debug-helper/visualizer';
7-
import { UnpatchModule } from '@rx-angular/template/unpatch';
7+
import { RxUnpatch } from '@rx-angular/template/unpatch';
88
import { MatLegacyButtonModule as MatButtonModule } from '@angular/material/legacy-button';
99
import { DirtyChecksModule } from '../../../../shared/debug-helper/dirty-checks';
1010
import { ValueModule } from '../../../../shared/debug-helper/work';
@@ -30,7 +30,7 @@ const DECLARATIONS = [
3030
imports: [
3131
CommonModule,
3232
VisualizerModule,
33-
UnpatchModule,
33+
RxUnpatch,
3434
MatButtonModule,
3535
DirtyChecksModule,
3636
ValueModule,

apps/demos/src/app/features/template/rx-let/lazy-loading-components/lazy-loading-components.module.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { RouterModule } from '@angular/router';
44
import { ROUTES } from './lazy-loading-components.routes';
55
import { LazyLoadingComponentsComponent } from './lazy-loading-components.component';
66
import { RxLet } from '@rx-angular/template/let';
7-
import { UnpatchModule } from '@rx-angular/template/unpatch';
7+
import { RxUnpatch } from '@rx-angular/template/unpatch';
88
import { GhostElementsModule } from '../../../../shared/ghost-elements';
99
import { MatLegacyButtonModule as MatButtonModule } from '@angular/material/legacy-button';
1010
import { VisualizerModule } from '../../../../shared/debug-helper/visualizer';
@@ -26,7 +26,7 @@ const DECLARATIONS = [
2626
CommonModule,
2727
RouterModule.forChild(ROUTES),
2828
RxLet,
29-
UnpatchModule,
29+
RxUnpatch,
3030
GhostElementsModule,
3131
MatButtonModule,
3232
VisualizerModule,

apps/demos/src/app/features/template/rx-let/let-template-binding/let-template-binding.module.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import { MatIconModule } from '@angular/material/icon';
1111
import { MatLegacyProgressSpinnerModule as MatProgressSpinnerModule } from '@angular/material/legacy-progress-spinner';
1212
import { RxPush } from '@rx-angular/template/push';
1313
import { RxLet } from '@rx-angular/template/let';
14-
import { UnpatchModule } from '@rx-angular/template/unpatch';
14+
import { RxUnpatch } from '@rx-angular/template/unpatch';
1515
import { MatBadgeModule } from '@angular/material/badge';
1616
import { ToStringPipe } from './to-string.pipe';
1717

@@ -31,7 +31,7 @@ const DECLARATIONS = [
3131
MatButtonModule,
3232
MatIconModule,
3333
MatProgressSpinnerModule,
34-
UnpatchModule,
34+
RxUnpatch,
3535
RxPush,
3636
MatBadgeModule,
3737
RxLet,

apps/demos/src/app/features/template/rx-let/ng-if-hack/ng-if-hack.module.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { ROUTES } from './ng-if-hack.routes';
66
import { NgIfHackComponent } from './ng-if-hack.component';
77
import { RxPush } from '@rx-angular/template/push';
88
import { RxLet } from '@rx-angular/template/let';
9-
import { UnpatchModule } from '@rx-angular/template/unpatch';
9+
import { RxUnpatch } from '@rx-angular/template/unpatch';
1010
import { NgxSkeletonLoaderModule } from 'ngx-skeleton-loader';
1111
import { MatIconModule } from '@angular/material/icon';
1212
import { ValueProvidersModule } from '../../../../shared/debug-helper/value-provider';
@@ -34,7 +34,7 @@ const DECLARATIONS = [
3434
RouterModule.forChild(ROUTES),
3535
DirtyChecksModule,
3636
RxLet,
37-
UnpatchModule,
37+
RxUnpatch,
3838
NgxSkeletonLoaderModule,
3939
MatIconModule,
4040
ValueProvidersModule,

apps/demos/src/app/features/template/rx-let/preloading-images/preloading-images.module.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { DirtyChecksModule } from '../../../../shared/debug-helper/dirty-checks'
55
import { ROUTES } from './preloading-images.routes';
66
import { PreloadingImagesComponent } from './preloading-images.component';
77
import { RxLet } from '@rx-angular/template/let';
8-
import { UnpatchModule } from '@rx-angular/template/unpatch';
8+
import { RxUnpatch } from '@rx-angular/template/unpatch';
99
import { NgxSkeletonLoaderModule } from 'ngx-skeleton-loader';
1010
import { MatIconModule } from '@angular/material/icon';
1111
import { ValueProvidersModule } from '../../../../shared/debug-helper/value-provider';
@@ -21,7 +21,7 @@ const DECLARATIONS = [PreloadingImagesComponent];
2121
RouterModule.forChild(ROUTES),
2222
DirtyChecksModule,
2323
RxLet,
24-
UnpatchModule,
24+
RxUnpatch,
2525
NgxSkeletonLoaderModule,
2626
MatIconModule,
2727
ValueProvidersModule,

apps/demos/src/app/features/template/strategies/comparison/comparison.module.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { RouterModule } from '@angular/router';
44
import { MatLegacyButtonModule as MatButtonModule } from '@angular/material/legacy-button';
55
import { RxPush } from '@rx-angular/template/push';
66
import { RxLet } from '@rx-angular/template/let';
7-
import { UnpatchModule } from '@rx-angular/template/unpatch';
7+
import { RxUnpatch } from '@rx-angular/template/unpatch';
88
import { ComparisonComponent } from './comparison.component';
99

1010
import { MatLegacyCheckboxModule as MatCheckboxModule } from '@angular/material/legacy-checkbox';
@@ -24,7 +24,7 @@ import { RxIf } from '@rx-angular/template/if';
2424
CommonModule,
2525
RouterModule.forChild(ROUTES),
2626
MatButtonModule,
27-
UnpatchModule,
27+
RxUnpatch,
2828
VisualizerModule,
2929
SiblingModule,
3030
MatCheckboxModule,

apps/demos/src/app/features/template/template-shell.module.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ const ROUTES: Routes = [
4242
{
4343
path: 'unpatch',
4444
loadChildren: () =>
45-
import('./unpatch/unpatch.module').then((m) => m.UnpatchModule),
45+
import('./unpatch/unpatch.module').then((m) => m.RxUnpatch),
4646
},
4747
{
4848
path: 'rx-context',

apps/demos/src/app/features/template/unpatch/comparison/unpatch-comparison.module.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { NgModule } from '@angular/core';
22
import { CommonModule } from '@angular/common';
33
import { RouterModule } from '@angular/router';
4-
import { UnpatchModule } from '@rx-angular/template/unpatch';
4+
import { RxUnpatch } from '@rx-angular/template/unpatch';
55
import { ComparisonUnpatchComponent } from './comparison-unpatch.component';
66
import { ROUTES } from './comparison.routes';
77
import { RunOutsideZoneDirective } from './runOutsideZone.directive';
@@ -16,7 +16,7 @@ const DECLARATIONS = [ComparisonUnpatchComponent, RunOutsideZoneDirective];
1616
CommonModule,
1717
MatButtonModule,
1818
RouterModule.forChild(ROUTES),
19-
UnpatchModule,
19+
RxUnpatch,
2020
DirtyChecksModule,
2121
],
2222
exports: [DECLARATIONS],

0 commit comments

Comments
 (0)