Update Component check list authored by Roman Gromov's avatar Roman Gromov
...@@ -23,7 +23,7 @@ $block-background: $primary-background !default; ...@@ -23,7 +23,7 @@ $block-background: $primary-background !default;
pages: number[]; pages: number[];
``` ```
* - [ ] @Input(), @Output() variables * - [ ] Input, Output variables
```typescript ```typescript
@PropertyApi({ @PropertyApi({
description: 'Icon for link', description: 'Icon for link',
...@@ -48,7 +48,7 @@ $block-background: $primary-background !default; ...@@ -48,7 +48,7 @@ $block-background: $primary-background !default;
@Output('on-click') onClick = new EventEmitter<number>(); @Output('on-click') onClick = new EventEmitter<number>();
``` ```
* - [ ] @HostBinding, @ViewChild, @ViewChildren, @ContentChild, @ContentChildren * - [ ] HostBinding, ViewChild, ViewChildren, ContentChild, ContentChildren
```typescript ```typescript
@HostBinding('attr.host') readonly host = 'jnt-dropdown-host'; @HostBinding('attr.host') readonly host = 'jnt-dropdown-host';
@ViewChild('calendarTemplate', {static: true}) calendarTemplate; @ViewChild('calendarTemplate', {static: true}) calendarTemplate;
... ...
......