Skip to content

Commit d8e21e1

Browse files
committed
refactor(table): static ngAcceptInputType_ for boolean inputs
1 parent 9c35c23 commit d8e21e1

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

projects/coreui-angular/src/lib/table/table.directive.ts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import { BooleanInput } from '@angular/cdk/coercion';
12
import {
23
afterRenderEffect,
34
booleanAttribute,
@@ -19,6 +20,13 @@ import { Breakpoints, Colors } from '../coreui.types';
1920
}
2021
})
2122
export class TableDirective {
23+
static ngAcceptInputType_bordered: BooleanInput;
24+
static ngAcceptInputType_borderless: BooleanInput;
25+
static ngAcceptInputType_hover: BooleanInput;
26+
static ngAcceptInputType_small: BooleanInput;
27+
static ngAcceptInputType_striped: BooleanInput;
28+
static ngAcceptInputType_stripedColumns: BooleanInput;
29+
2230
readonly #renderer = inject(Renderer2);
2331
readonly #hostElement = inject(ElementRef);
2432

0 commit comments

Comments
 (0)