Skip to content

Commit d148e39

Browse files
committed
fix(standalone): use specific imports instead of the generic CommonModule
1 parent 86b52d1 commit d148e39

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

projects/interacto-angular/src/lib/components/linear-history/linear-history.component.ts

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,17 @@
11
import {AfterViewInit, Component, ElementRef, Input, Optional, ViewChild} from '@angular/core';
22
import {Bindings, RedoNTimes, Undoable, UndoHistory, UndoHistoryBase, UndoNTimes} from 'interacto';
3-
import {CommonModule} from '@angular/common';
43
import {UndoBinderDirective} from '../../directives/undo-binder.directive';
54
import {RedoBinderDirective} from '../../directives/redo-binder.directive';
5+
import {NgFor, NgIf} from '@angular/common';
66

77
@Component({
88
selector: 'io-linear-history',
99
templateUrl: './linear-history.component.html',
1010
styleUrls: ['./linear-history.component.css'],
1111
standalone: true,
1212
imports: [
13-
CommonModule,
13+
NgFor,
14+
NgIf,
1415
UndoBinderDirective,
1516
RedoBinderDirective
1617
]

projects/interacto-angular/src/lib/components/tree-history/tree-history.component.ts

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import {CommonModule, KeyValue} from '@angular/common';
1+
import {KeyValue, KeyValuePipe, NgClass, NgFor, NgStyle} from '@angular/common';
22
import {
33
AfterViewInit,
44
ChangeDetectionStrategy,
@@ -25,7 +25,10 @@ import {LongTouchBinderDirective} from '../../directives/long-touch-binder.direc
2525
styleUrls: ['./tree-history.component.css'],
2626
standalone: true,
2727
imports: [
28-
CommonModule,
28+
NgClass,
29+
NgStyle,
30+
NgFor,
31+
KeyValuePipe,
2932
UndoBinderDirective,
3033
RedoBinderDirective,
3134
ClickBinderDirective,

0 commit comments

Comments
 (0)