Skip to content

Commit 281056e

Browse files
Copilotdkamburov
andauthored
feat(docs): preserve @memberof tags, keep @igxModule/@igxGroup/@example intact
Also do not modify @memberof/@memberof tag lines per reviewer feedback. 78 files updated with generic class name descriptions. Agent-Logs-Url: https://github.com/IgniteUI/igniteui-angular/sessions/6cda1570-4ce7-4e42-a7a8-eac9eff61035 Co-authored-by: dkamburov <1182001+dkamburov@users.noreply.github.com>
1 parent 2cba50f commit 281056e

47 files changed

Lines changed: 377 additions & 377 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

projects/igniteui-angular/button-group/src/button-group/button-group.component.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -323,7 +323,7 @@ export class IgxButtonGroupComponent implements AfterViewInit, OnDestroy {
323323
* }
324324
* ```
325325
*
326-
* @memberOf {@link button group}
326+
* @memberOf {@link IgxButtonGroupComponent}
327327
*/
328328
public selectButton(index: number) {
329329
if (index >= this.buttons.length || index < 0) {
@@ -391,7 +391,7 @@ export class IgxButtonGroupComponent implements AfterViewInit, OnDestroy {
391391
* }
392392
* ```
393393
*
394-
* @memberOf {@link button group}
394+
* @memberOf {@link IgxButtonGroupComponent}
395395
*/
396396
public deselectButton(index: number) {
397397
if (index >= this.buttons.length || index < 0) {

projects/igniteui-angular/calendar/src/calendar/calendar.component.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ export class IgxCalendarComponent extends IgxCalendarBaseDirective implements Af
9696
* ```html
9797
* <igx-calendar id="my-first-calendar"></igx-calendar>
9898
* ```
99-
* @memberof calendar
99+
* @memberof IgxCalendarComponent
100100
*/
101101
@HostBinding('attr.id')
102102
@Input()
@@ -265,7 +265,7 @@ export class IgxCalendarComponent extends IgxCalendarBaseDirective implements Af
265265
* ```typescript
266266
* let headerTitleTemplate = this.calendar.headerTitleTeamplate;
267267
* ```
268-
* @memberof calendar
268+
* @memberof IgxCalendarComponent
269269
*/
270270
public get headerTitleTemplate(): any {
271271
if (this.headerTitleTemplateDirective) {
@@ -281,7 +281,7 @@ export class IgxCalendarComponent extends IgxCalendarBaseDirective implements Af
281281
* ```html
282282
* <igx-calendar headerTitleTemplateDirective="igxCalendarHeaderTitle"></igx-calendar>
283283
* ```
284-
* @memberof calendar
284+
* @memberof IgxCalendarComponent
285285
*/
286286
public set headerTitleTemplate(directive: any) {
287287
this.headerTitleTemplateDirective = directive;
@@ -294,7 +294,7 @@ export class IgxCalendarComponent extends IgxCalendarBaseDirective implements Af
294294
* ```typescript
295295
* let headerTemplate = this.calendar.headerTeamplate;
296296
* ```
297-
* @memberof calendar
297+
* @memberof IgxCalendarComponent
298298
*/
299299
public get headerTemplate(): any {
300300
if (this.headerTemplateDirective) {
@@ -310,7 +310,7 @@ export class IgxCalendarComponent extends IgxCalendarBaseDirective implements Af
310310
* ```html
311311
* <igx-calendar headerTemplateDirective="igxCalendarHeader"></igx-calendar>
312312
* ```
313-
* @memberof calendar
313+
* @memberof IgxCalendarComponent
314314
*/
315315
public set headerTemplate(directive: any) {
316316
this.headerTemplateDirective = directive;
@@ -338,7 +338,7 @@ export class IgxCalendarComponent extends IgxCalendarBaseDirective implements Af
338338
* ```html
339339
* <igx-calendar subheaderTemplate="igxCalendarSubheader"></igx-calendar>
340340
* ```
341-
* @memberof calendar
341+
* @memberof IgxCalendarComponent
342342
*/
343343
public set subheaderTemplate(directive: any) {
344344
this.subheaderTemplateDirective = directive;

projects/igniteui-angular/calendar/src/calendar/common/calendar-view.directive.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -84,23 +84,23 @@ export abstract class IgxCalendarViewDirective implements ControlValueAccessor {
8484
/**
8585
* Emits an event when a selection is made in the view.
8686
* Provides reference the `date` property in the component.
87-
* @memberof calendar view
87+
* @memberof IgxCalendarViewDirective
8888
*/
8989
@Output()
9090
public selected = new EventEmitter<Date>();
9191

9292
/**
9393
* Emits an event when a page changes in the view.
9494
* Provides reference the `date` property in the component.
95-
* @memberof calendar view
95+
* @memberof IgxCalendarViewDirective
9696
* @hidden @internal
9797
*/
9898
@Output()
9999
public pageChanged = new EventEmitter<Date>();
100100

101101
/**
102102
* Emits an event when the active date has changed.
103-
* @memberof calendar view
103+
* @memberof IgxCalendarViewDirective
104104
* @hidden @internal
105105
*/
106106
@Output()
@@ -152,7 +152,7 @@ export abstract class IgxCalendarViewDirective implements ControlValueAccessor {
152152
* let date = this.view.date;
153153
* ```
154154
*
155-
* @memberof years view
155+
* @memberof IgxYearsViewComponent
156156
*/
157157
@Input()
158158
public set date(value: Date) {
@@ -172,7 +172,7 @@ export abstract class IgxCalendarViewDirective implements ControlValueAccessor {
172172
* let locale = this.view.locale;
173173
* ```
174174
*
175-
* @memberof calendar view
175+
* @memberof IgxCalendarViewDirective
176176
*/
177177
@Input()
178178
public get locale(): string {
@@ -184,7 +184,7 @@ export abstract class IgxCalendarViewDirective implements ControlValueAccessor {
184184
* Expects a valid BCP 47 language tag.
185185
* Default value is `"en"`.
186186
*
187-
* @memberof calendar view
187+
* @memberof IgxCalendarViewDirective
188188
*/
189189
public set locale(value: string) {
190190
this._locale = value;

projects/igniteui-angular/calendar/src/calendar/months-view/months-view.component.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ export class IgxMonthsViewComponent extends IgxCalendarViewDirective implements
5050
* let monthsViewId = this.monthsView.id;
5151
* ```
5252
*
53-
* @memberof months view
53+
* @memberof IgxMonthsViewComponent
5454
*/
5555
@HostBinding("attr.id")
5656
@Input()
@@ -94,7 +94,7 @@ export class IgxMonthsViewComponent extends IgxCalendarViewDirective implements
9494
* <igx-months-view> [monthFormat]="short'"</igx-months-view>
9595
* ```
9696
*
97-
* @memberof months view
97+
* @memberof IgxMonthsViewComponent
9898
*/
9999
public set monthFormat(value: any) {
100100
this._monthFormat = value;

projects/igniteui-angular/calendar/src/calendar/years-view/years-view.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ export class IgxYearsViewComponent extends IgxCalendarViewDirective implements C
9191
* <igx-years-view [yearFormat]="numeric"></igx-years-view>
9292
* ```
9393
*
94-
* @memberof years view
94+
* @memberof IgxYearsViewComponent
9595
*/
9696
public set yearFormat(value: any) {
9797
this._yearFormat = value;

0 commit comments

Comments
 (0)