Skip to content

Commit

Permalink
refactor: replace @ViewChild with signal counterpart
Browse files Browse the repository at this point in the history
  • Loading branch information
javiermarinros committed Mar 15, 2024
1 parent d8689a3 commit 393001e
Showing 1 changed file with 1 addition and 16 deletions.
Original file line number Diff line number Diff line change
@@ -1,21 +1,6 @@
import {CdkDrag, CdkDragEnd, CdkDragMove} from '@angular/cdk/drag-drop';
import {NgComponentOutlet} from "@angular/common";
import {
AfterViewInit,
Component,
DestroyRef,
ElementRef,
EventEmitter,
Input,
OnChanges,
OnInit,
Output,
QueryList,
signal,
SimpleChanges,
ViewChild, viewChildren,
ViewChildren
} from '@angular/core';
import {AfterViewInit, Component, DestroyRef, ElementRef, EventEmitter, Input, OnChanges, OnInit, Output, signal, SimpleChanges, ViewChild, viewChildren} from '@angular/core';
import {takeUntilDestroyed} from "@angular/core/rxjs-interop";
import {Subscription} from 'rxjs';
import {InViewportDirective} from '../../directives/in-viewport.directive';
Expand Down

0 comments on commit 393001e

Please sign in to comment.