Skip to content

Commit

Permalink
update Accordion | selectors
Browse files Browse the repository at this point in the history
  • Loading branch information
mehmetcetin01140 committed Nov 7, 2024
1 parent 961e20a commit 36b9b2e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/app/components/accordion/accordion.ts
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ export interface AccordionToggleIconTemplateContext {
* @group Components
*/
@Component({
selector: 'p-accordion-panel',
selector: 'p-accordion-panel, p-accordionpanel',
imports: [CommonModule],
standalone: true,
template: `<ng-content />`,
Expand Down Expand Up @@ -122,7 +122,7 @@ export class AccordionPanel extends BaseComponent {
* @group Components
*/
@Component({
selector: 'p-accordion-header',
selector: 'p-accordion-header, p-accordionheader',
imports: [CommonModule, ChevronDownIcon, ChevronUpIcon, Ripple],
standalone: true,
template: `
Expand Down Expand Up @@ -310,7 +310,7 @@ export class AccordionHeader extends BaseComponent {
}

@Component({
selector: 'p-accordion-content',
selector: 'p-accordion-content, p-accordioncontent',
imports: [CommonModule],
standalone: true,
template: ` <div class="p-accordioncontent-content">
Expand Down Expand Up @@ -368,7 +368,7 @@ export class AccordionContent extends BaseComponent {
* @group Components
*/
@Component({
selector: 'p-accordionTab, p-accordion-tab',
selector: 'p-accordionTab, p-accordion-tab, p-accordiontab',
standalone: true,
imports: [CommonModule, ChevronDownIcon, ChevronUpIcon],
template: `
Expand Down

0 comments on commit 36b9b2e

Please sign in to comment.