Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
41 changes: 3 additions & 38 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@ const ACCORDION_NAVIGATION_KEYS = new Set('up down arrowup arrowdown home end'.s

export interface IAccordionEventArgs extends IExpansionPanelEventArgs {
owner: IgxAccordionComponent;
/** Provides a reference to the `IgxExpansionPanelComponent` which was expanded/collapsed. */
/** Provides a reference to the expansion panel which was expanded/collapsed. */
panel: IgxExpansionPanelBase;
}

export interface IAccordionCancelableEventArgs extends IExpansionPanelCancelableEventArgs {
owner: IgxAccordionComponent;
/** Provides a reference to the `IgxExpansionPanelComponent` which is currently expanding/collapsing. */
/** Provides a reference to the expansion panel which is currently expanding/collapsing. */
panel: IgxExpansionPanelBase;
/** Enables canceling the expansion/collapse operation. */
cancel: boolean;
Expand All @@ -28,7 +28,7 @@ export interface IAccordionCancelableEventArgs extends IExpansionPanelCancelable
let NEXT_ID = 0;

/**
* IgxAccordion is a container-based component that contains that can house multiple expansion panels.
* Accordion is a container-based component that contains that can house multiple expansion panels.
*
* @igxModule IgxAccordionModule
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ export class IgxActionStripComponent implements IgxActionStripToken, AfterViewIn


/**
* Getter for the 'display' property of the current `IgxActionStrip`
* Getter for the 'display' property of the current action strip
*/
@HostBinding('style.display')
private get display(): string {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ export class IgxButtonGroupComponent implements AfterViewInit, OnDestroy {
}

/**
* Returns the CSS class of the item content of the `IgxButtonGroup`.
* Returns the CSS class of the item content of the button group.
* ```typescript
* @ViewChild("MyChild")
* public buttonG: IgxButtonGroupComponent;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* This file contains all the directives used by the @link IgxCalendarComponent.
* This file contains all the directives used by the @link calendar.
* Except for the directives which are used for templating the calendar itself
* you should generally not use them directly.
*
Expand Down
12 changes: 6 additions & 6 deletions projects/igniteui-angular/card/src/card/card.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { Component, Directive, HostBinding, Input, OnInit, OnChanges, SimpleChan
let NEXT_ID = 0;

/**
* IgxCardMedia is container for the card media section.
* Card media is container for the card media section.
* Use it to wrap images and videos.
*/
@Directive({
Expand Down Expand Up @@ -52,7 +52,7 @@ export class IgxCardMediaDirective {
}

/**
* IgxCardHeader is container for the card header
* Card header is container for the card header
*/
@Component({
selector: 'igx-card-header',
Expand All @@ -79,7 +79,7 @@ export class IgxCardHeaderComponent {
}

/**
* IgxCardThumbnail is container for the card thumbnail section.
* Card thumbnail is container for the card thumbnail section.
* Use it to wrap anything you want to be used as a thumbnail.
*/
@Directive({
Expand Down Expand Up @@ -116,7 +116,7 @@ export class IgxCardHeaderSubtitleDirective {
public cssClass = 'igx-card-header__subtitle';
}
/**
* IgxCardContent is container for the card content.
* Card content is container for the card content.
*/
@Directive({
// eslint-disable-next-line @angular-eslint/directive-selector
Expand All @@ -130,7 +130,7 @@ export class IgxCardContentDirective {
}

/**
* IgxCardFooter is container for the card footer
* Card footer is container for the card footer
*/
@Directive({
// eslint-disable-next-line @angular-eslint/directive-selector
Expand Down Expand Up @@ -264,7 +264,7 @@ export const IgxCardActionsLayout = {
export type IgxCardActionsLayout = (typeof IgxCardActionsLayout)[keyof typeof IgxCardActionsLayout];

/**
* IgxCardActions is container for the card actions.
* Card actions is container for the card actions.
*/
@Component({
selector: 'igx-card-actions',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,7 @@ export class IgxCarouselComponent extends IgxCarouselComponentBase implements On

/**
* An event that is emitted after a slide transition has happened.
* Provides references to the `IgxCarouselComponent` and `IgxSlideComponent` as event arguments.
* Provides references to the carousel and slide as event arguments.
* ```html
* <igx-carousel (slideChanged)="slideChanged($event)"></igx-carousel>
* ```
Expand All @@ -322,7 +322,7 @@ export class IgxCarouselComponent extends IgxCarouselComponentBase implements On

/**
* An event that is emitted after a slide has been added to the carousel.
* Provides references to the `IgxCarouselComponent` and `IgxSlideComponent` as event arguments.
* Provides references to the carousel and slide as event arguments.
* ```html
* <igx-carousel (slideAdded)="slideAdded($event)"></igx-carousel>
* ```
Expand All @@ -333,7 +333,7 @@ export class IgxCarouselComponent extends IgxCarouselComponentBase implements On

/**
* An event that is emitted after a slide has been removed from the carousel.
* Provides references to the `IgxCarouselComponent` and `IgxSlideComponent` as event arguments.
* Provides references to the carousel and slide as event arguments.
* ```html
* <igx-carousel (slideRemoved)="slideRemoved($event)"></igx-carousel>
* ```
Expand All @@ -344,7 +344,7 @@ export class IgxCarouselComponent extends IgxCarouselComponentBase implements On

/**
* An event that is emitted after the carousel has been paused.
* Provides a reference to the `IgxCarouselComponent` as an event argument.
* Provides a reference to the carousel as an event argument.
* ```html
* <igx-carousel (carouselPaused)="carouselPaused($event)"></igx-carousel>
* ```
Expand All @@ -355,7 +355,7 @@ export class IgxCarouselComponent extends IgxCarouselComponentBase implements On

/**
* An event that is emitted after the carousel has resumed transitioning between `slides`.
* Provides a reference to the `IgxCarouselComponent` as an event argument.
* Provides a reference to the carousel as an event argument.
* ```html
* <igx-carousel (carouselPlaying)="carouselPlaying($event)"></igx-carousel>
* ```
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { CarouselAnimationDirection, IgxSlideComponentBase } from './carousel-ba

/**
* A slide component that usually holds an image and/or a caption text.
* IgxSlideComponent is usually a child component of an IgxCarouselComponent.
* Slide is usually a child component of an carousel.
*
* ```
* <igx-slide [input bindings] >
Expand Down
Loading
Loading