Skip to content

Commit c892345

Browse files
committed
chore(typedoc): fixing warnings
1 parent 405eaf0 commit c892345

24 files changed

+81
-91
lines changed

.github/workflows/nodejs.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -20,22 +20,26 @@ jobs:
2020

2121
steps:
2222
- name: Checkout
23-
uses: actions/checkout@v2
23+
uses: actions/checkout@v3
2424
- name: Use Node.js ${{ matrix.node-version }}
25-
uses: actions/setup-node@v2
25+
uses: actions/setup-node@v3
2626
with:
2727
node-version: ${{ matrix.node-version }}
2828
cache: 'npm'
2929
- name: Install packages
3030
run: npm ci
31-
- name: Lint
31+
- name: Lint Lib
3232
run: npm run lint:lib
3333
env:
3434
NODE_OPTIONS: --max_old_space_size=4096
3535
- name: Lint i18n
3636
run: npm run lint:i18n
37-
- name: Build
37+
- name: Build Lib
3838
run: npm run build:lib
39+
- name: Build TypeDoc & SassDoc
40+
run: |
41+
npm run build:typedoc:en:production
42+
npm run build:sassdoc:en:production
3943
- name: Test
4044
run: |
4145
npm run test:lib
@@ -49,11 +53,7 @@ jobs:
4953
npm run build:i18n
5054
npm run test:i18n:dist
5155
- name: Publish to coveralls.io
52-
if: github.repository == 'IgniteUI/igniteui-angular' && matrix.node-version == '14.x'
56+
if: github.repository == 'IgniteUI/igniteui-angular' && matrix.node-version == '16.x'
5357
uses: coverallsapp/[email protected]
5458
with:
5559
github-token: ${{ github.token }}
56-
- name: Build TypeDoc & SassDoc
57-
run: |
58-
npm run build:typedoc:en:production
59-
npm run build:sassdoc:en:production

projects/igniteui-angular/src/lib/combo/combo-add-item.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ export class IgxComboAddItemComponent extends IgxComboItemComponent {
1717
}
1818

1919
/**
20-
* @inheritdoc
20+
* @inheritDoc
2121
*/
2222
public clicked(event?) {// eslint-disable-line
2323
this.comboAPI.disableTransitions = false;

projects/igniteui-angular/src/lib/combo/combo-item.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ export class IgxComboItemComponent extends IgxDropDownItemComponent {
9696
}
9797

9898
/**
99-
* @inheritdoc
99+
* @inheritDoc
100100
*/
101101
public clicked(event): void {
102102
this.comboAPI.disableTransitions = false;

projects/igniteui-angular/src/lib/drop-down/drop-down-item.component.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import { IgxDropDownItemBaseDirective } from './drop-down-item.base';
1414
})
1515
export class IgxDropDownItemComponent extends IgxDropDownItemBaseDirective {
1616
/**
17-
* @inheritdoc
17+
* @inheritDoc
1818
*/
1919
public get focused(): boolean {
2020
let focusedState = this._focused;
@@ -27,13 +27,13 @@ export class IgxDropDownItemComponent extends IgxDropDownItemBaseDirective {
2727
}
2828

2929
/**
30-
* @inheritdoc
30+
* @inheritDoc
3131
*/
3232
public set focused(value: boolean) {
3333
this._focused = value;
3434
}
3535
/**
36-
* @inheritdoc
36+
* @inheritDoc
3737
*/
3838
public get selected(): boolean {
3939
if (this.hasIndex) {
@@ -44,7 +44,7 @@ export class IgxDropDownItemComponent extends IgxDropDownItemBaseDirective {
4444
}
4545

4646
/**
47-
* @inheritdoc
47+
* @inheritDoc
4848
*/
4949
public set selected(value: boolean) {
5050
if (this.isHeader) {
@@ -67,7 +67,7 @@ export class IgxDropDownItemComponent extends IgxDropDownItemBaseDirective {
6767
}
6868

6969
/**
70-
* @inheritdoc
70+
* @inheritDoc
7171
*/
7272
public clicked(event): void {
7373
if (!this.isSelectable) {

projects/igniteui-angular/src/lib/grids/common/crud.service.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { IGridEditDoneEventArgs, IGridEditEventArgs, IRowDataEventArgs } from '.
44
import { GridType, RowType } from './grid.interface';
55
import { Subject } from 'rxjs';
66
import { copyDescriptors, isEqual } from '../../core/utils';
7-
import { FormControl, FormGroup } from '@angular/forms';
7+
import { FormGroup } from '@angular/forms';
88

99
export class IgxEditRow {
1010
public transactionState: any;
@@ -113,7 +113,7 @@ export class IgxCell {
113113

114114
public set editValue(value) {
115115
const formControl = this.grid.validation.getFormControl(this.id.rowID, this.column.field);
116-
116+
117117
if (this.grid.validationTrigger === 'change') {
118118
// in case trigger is change, mark as touched.
119119
formControl.setValue(value);
@@ -389,7 +389,7 @@ export class IgxRowCrudState extends IgxCellCrudState {
389389
this.grid.validation.clear(id);
390390
} else {
391391
this.grid.validation.update(id, rowEditArgs.oldValue);
392-
}
392+
}
393393
} else if (this.row.getClassName() === IgxEditRow.name) {
394394
rowEditArgs = this.grid.gridAPI.update_row(this.row, this.row.newData, event);
395395
nonCancelableArgs = this.rowEditDone(rowEditArgs.oldValue, event);

projects/igniteui-angular/src/lib/grids/grid/grid.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1060,7 +1060,7 @@ export class IgxGridComponent extends IgxGridBaseDirective implements GridType,
10601060
}
10611061

10621062
/**
1063-
* @inheritdoc
1063+
* @inheritDoc
10641064
*/
10651065
public getSelectedData(formatters = false, headers = false): any[] {
10661066
if (this.groupingExpressions.length || this.hasDetails) {

projects/igniteui-angular/src/lib/grids/pivot-grid/pivot-grid.pipes.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -344,7 +344,7 @@ export class IgxFilterPivotItemsPipe implements PipeTransform {
344344
}
345345
}
346346

347-
interface GridStyleCSSProperty {
347+
export interface GridStyleCSSProperty {
348348
[prop: string]: any;
349349
}
350350

projects/igniteui-angular/src/lib/grids/tree-grid/tree-grid.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -673,7 +673,7 @@ export class IgxTreeGridComponent extends IgxGridBaseDirective implements GridTy
673673
}
674674

675675
/**
676-
* @inheritdoc
676+
* @inheritDoc
677677
*/
678678
public getSelectedData(formatters = false, headers = false): any[] {
679679
let source = [];

projects/igniteui-angular/src/lib/select/select-positioning-strategy.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import { Optional } from '@angular/core';
88

99
/** @hidden @internal */
1010
export class SelectPositioningStrategy extends BaseFitPositionStrategy implements IPositionStrategy {
11-
/** @inheritdoc */
11+
/** @inheritDoc */
1212
public settings: PositionSettings;
1313

1414
private _selectDefaultSettings = {
@@ -30,7 +30,7 @@ export class SelectPositioningStrategy extends BaseFitPositionStrategy implement
3030
this.settings = Object.assign({}, this._selectDefaultSettings, settings);
3131
}
3232

33-
/** @inheritdoc */
33+
/** @inheritDoc */
3434
public position(contentElement: HTMLElement,
3535
size: Size,
3636
document?: Document,

projects/igniteui-angular/src/lib/services/overlay/position/auto-position-strategy.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import { BaseFitPositionStrategy } from './base-fit-position-strategy';
99
*/
1010
export class AutoPositionStrategy extends BaseFitPositionStrategy {
1111

12-
/** @inheritdoc */
12+
/** @inheritDoc */
1313
protected fitInViewport(element: HTMLElement, connectedFit: ConnectedFit) {
1414
const transformString: string[] = [];
1515
if (connectedFit.fitHorizontal.back < 0 || connectedFit.fitHorizontal.forward < 0) {

0 commit comments

Comments
 (0)