diff --git a/src/app/components/dialog/dialog.ts b/src/app/components/dialog/dialog.ts index f59723a20d2..65c404aa3b7 100755 --- a/src/app/components/dialog/dialog.ts +++ b/src/app/components/dialog/dialog.ts @@ -1064,4 +1064,3 @@ export class Dialog implements AfterContentInit, OnInit, OnDestroy { declarations: [Dialog] }) export class DialogModule {} - diff --git a/src/app/components/tooltip/tooltip.ts b/src/app/components/tooltip/tooltip.ts index 038d05533d1..f623e528f9c 100755 --- a/src/app/components/tooltip/tooltip.ts +++ b/src/app/components/tooltip/tooltip.ts @@ -668,9 +668,7 @@ export class Tooltip implements AfterViewInit, OnDestroy { this.el.nativeElement.removeEventListener('click', this.clickListener); } if (tooltipEvent === 'focus' || tooltipEvent === 'both') { - - let target = this.getTarget(this.el.nativeElement); - + let target = this.getTarget(this.el.nativeElement); target.removeEventListener('focus', this.focusListener); target.removeEventListener('blur', this.blurListener); @@ -734,4 +732,3 @@ export class Tooltip implements AfterViewInit, OnDestroy { declarations: [Tooltip] }) export class TooltipModule {} - diff --git a/src/app/showcase/doc/contribution/contribution.module.ts b/src/app/showcase/doc/contribution/contribution.module.ts index c1dd62f3321..1448eb10239 100644 --- a/src/app/showcase/doc/contribution/contribution.module.ts +++ b/src/app/showcase/doc/contribution/contribution.module.ts @@ -11,7 +11,6 @@ import { BenefitsDoc } from './benefitsdoc'; import { ClaDoc } from './cladoc'; import { KeyPointsDoc } from './keypoints'; - @NgModule({ imports: [CommonModule, RouterModule, AppCodeModule, AppDocModule], declarations: [IntroductionDoc, HelpNeededDoc, KeyPointsDoc, CommunicationDoc, PathwayDoc, BenefitsDoc, ClaDoc], diff --git a/src/app/showcase/doc/contribution/helpneededdoc.ts b/src/app/showcase/doc/contribution/helpneededdoc.ts index c956a83d958..fa983031a98 100644 --- a/src/app/showcase/doc/contribution/helpneededdoc.ts +++ b/src/app/showcase/doc/contribution/helpneededdoc.ts @@ -4,26 +4,24 @@ import { Component } from '@angular/core'; selector: 'helpneeded-doc', template: ` -

PrimeNG is a community-driven project backed by the expertise and sponsorship of PrimeTek, and we appreciate any help you can provide. Here are some areas where you can contribute:

-

Issue Triage

-

Help us manage issues by;

- +

PrimeNG is a community-driven project backed by the expertise and sponsorship of PrimeTek, and we appreciate any help you can provide. Here are some areas where you can contribute:

+

Issue Triage

+

Help us manage issues by;

+ -

Sending Pull Requests

-

We encourage you to send pull requests, especially for issues tagged with the help-needed label.

+

Sending Pull Requests

+

We encourage you to send pull requests, especially for issues tagged with the help-needed label.

-

Community Support

-

- Assist other users by participating in the issue tracker, GitHub discussions, and the - PrimeLand Discord server. Your expertise can help others solve problems and improve their experience with PrimeNG. -

+

Community Support

+

+ Assist other users by participating in the issue tracker, GitHub discussions, and the + PrimeLand Discord server. Your expertise can help others solve problems and improve their experience with PrimeNG. +

` }) -export class HelpNeededDoc { - -} +export class HelpNeededDoc {} diff --git a/src/app/showcase/doc/contribution/keypoints.ts b/src/app/showcase/doc/contribution/keypoints.ts index b125eeac039..266855bd552 100644 --- a/src/app/showcase/doc/contribution/keypoints.ts +++ b/src/app/showcase/doc/contribution/keypoints.ts @@ -4,13 +4,11 @@ import { Component } from '@angular/core'; selector: 'keypoints-doc', template: ` -

- PrimeNG has several add-ons such as UI Kit, Premium Templates, and Blocks that rely on design tokens and styling. Any core structural changes, such as adding new props, events, or updating design tokens, should be communicated with the - core team to ensure consistency and compatibility. -

+

+ PrimeNG has several add-ons such as UI Kit, Premium Templates, and Blocks that rely on design tokens and styling. Any core structural changes, such as adding new props, events, or updating design tokens, should be communicated with + the core team to ensure consistency and compatibility. +

` }) -export class KeyPointsDoc { - -} +export class KeyPointsDoc {} diff --git a/src/app/showcase/doc/contribution/pathwaydoc.ts b/src/app/showcase/doc/contribution/pathwaydoc.ts index b5ffd0d5e31..f418aa927e0 100644 --- a/src/app/showcase/doc/contribution/pathwaydoc.ts +++ b/src/app/showcase/doc/contribution/pathwaydoc.ts @@ -4,18 +4,16 @@ import { Component } from '@angular/core'; selector: 'pathway-doc', template: ` -

PrimeTek offers an organization structure involving contributors and the core team:

-

Contributor Role

-

After a certain period of frequent contributions, a community member is offered the Contributor role. On average, it may take about three months, but the exact duration can vary depending on the individual commitment.

+

PrimeTek offers an organization structure involving contributors and the core team:

+

Contributor Role

+

After a certain period of frequent contributions, a community member is offered the Contributor role. On average, it may take about three months, but the exact duration can vary depending on the individual commitment.

-

Committer Role

-

If a contributor actively participates in the codebase and PRs, their role may be upgraded to a Committer level, providing direct commit access to the PrimeNG codebase.

+

Committer Role

+

If a contributor actively participates in the codebase and PRs, their role may be upgraded to a Committer level, providing direct commit access to the PrimeNG codebase.

-

Employment

-

PrimeTek prefers to hire team members from open source committers, so you may be offered a full-time position when a position becomes available.

+

Employment

+

PrimeTek prefers to hire team members from open source committers, so you may be offered a full-time position when a position becomes available.

` }) -export class PathwayDoc { - -} +export class PathwayDoc {} diff --git a/src/app/showcase/pages/contribution/contribution-routing.module.ts b/src/app/showcase/pages/contribution/contribution-routing.module.ts index 90c36197bb2..58544789aab 100755 --- a/src/app/showcase/pages/contribution/contribution-routing.module.ts +++ b/src/app/showcase/pages/contribution/contribution-routing.module.ts @@ -2,7 +2,6 @@ import { NgModule } from '@angular/core'; import { RouterModule } from '@angular/router'; import { ContributionComponent } from './contribution'; - @NgModule({ imports: [RouterModule.forChild([{ path: '', component: ContributionComponent }])], exports: [RouterModule]