Browse Source

update: remove unused imports

pull/24777/head
sumeyye 1 month ago
parent
commit
849e60f5eb
  1. 14
      npm/ng-packs/packages/components/extensible/src/lib/components/extensible-table/extensible-table.component.ts
  2. 4
      npm/ng-packs/packages/theme-shared/src/lib/components/button/button.component.ts

14
npm/ng-packs/packages/components/extensible/src/lib/components/extensible-table/extensible-table.component.ts

@ -4,8 +4,6 @@ import {
ChangeDetectorRef,
Component,
computed,
ContentChild,
EventEmitter,
inject,
Injector,
LOCALE_ID,
@ -14,12 +12,11 @@ import {
signal,
TemplateRef,
TrackByFunction,
ViewChild,
input,
effect,
output,
contentChild,
viewChild
viewChild,
} from '@angular/core';
import { AsyncPipe, isPlatformBrowser, NgComponentOutlet, NgTemplateOutlet } from '@angular/common';
@ -111,9 +108,12 @@ export class ExtensibleTableComponent<R = any> implements AfterViewInit, OnDestr
});
readonly actionsTemplate = input<TemplateRef<any> | undefined>(undefined);
readonly selectable = input(false);
readonly selectionTypeInput = input<SelectionType | keyof typeof SelectionType>(SelectionType.multiClick, {
alias: 'selectionType',
});
readonly selectionTypeInput = input<SelectionType | keyof typeof SelectionType>(
SelectionType.multiClick,
{
alias: 'selectionType',
},
);
readonly selected = input<any[]>([]);
readonly infiniteScroll = input(false);
readonly isLoading = input(false);

4
npm/ng-packs/packages/theme-shared/src/lib/components/button/button.component.ts

@ -4,14 +4,12 @@ import {
ElementRef,
OnInit,
Renderer2,
ViewChild,
computed,
effect,
inject,
input,
output,
signal,
viewChild
viewChild,
} from '@angular/core';
import { ABP, StopPropagationDirective } from '@abp/ng.core';

Loading…
Cancel
Save