-
Notifications
You must be signed in to change notification settings - Fork 4.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update menu, add guides section and replace accessibility doc
- Loading branch information
1 parent
55cbc09
commit a7f0657
Showing
19 changed files
with
96 additions
and
53 deletions.
There are no files selected for viewing
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
...case/doc/accessibility/formcontrolsdoc.ts → ...c/guides/accessibility/formcontrolsdoc.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
...case/doc/accessibility/semantichtmldoc.ts → ...c/guides/accessibility/semantichtmldoc.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
.../showcase/doc/accessibility/waiariadoc.ts → ...se/doc/guides/accessibility/waiariadoc.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
18 changes: 9 additions & 9 deletions
18
.../accessibility/accessibilitydoc.module.ts → ...p/showcase/doc/guides/guidesdoc.module.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,20 @@ | ||
import { CommonModule } from '@angular/common'; | ||
import { NgModule } from '@angular/core'; | ||
import { AppDocModule } from '../../layout/doc/app.doc.module'; | ||
import { AppCodeModule } from '../../layout/doc/app.code.component'; | ||
import { FormsModule } from '@angular/forms'; | ||
import { RouterModule } from '@angular/router'; | ||
import { CheckboxModule } from 'primeng/checkbox'; | ||
import { AppDocModule } from '../../layout/doc/app.doc.module'; | ||
import { AppCodeModule } from '../../layout/doc/app.code.component'; | ||
import { ColorsDoc } from './colorsdoc'; | ||
import { FormControlsDoc } from './formcontrolsdoc'; | ||
import { IntroductionDoc } from './introductiondoc'; | ||
import { SemanticHTMLDoc } from './semantichtmldoc'; | ||
import { WAIARIADoc } from './waiariadoc'; | ||
import { WCAGDoc } from './wcagdoc'; | ||
import { ColorsDoc } from './accessibility/colorsdoc'; | ||
import { FormControlsDoc } from './accessibility/formcontrolsdoc'; | ||
import { IntroductionDoc } from './accessibility/introductiondoc'; | ||
import { SemanticHTMLDoc } from './accessibility/semantichtmldoc'; | ||
import { WAIARIADoc } from './accessibility/waiariadoc'; | ||
import { WCAGDoc } from './accessibility/wcagdoc'; | ||
|
||
@NgModule({ | ||
imports: [CommonModule, AppCodeModule, AppDocModule, RouterModule, FormsModule, CheckboxModule], | ||
exports: [AppDocModule], | ||
declarations: [ColorsDoc, FormControlsDoc, IntroductionDoc, SemanticHTMLDoc, WAIARIADoc, WCAGDoc] | ||
}) | ||
export class AccessibilityDocModule {} | ||
export class GuidesDocModule {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
9 changes: 0 additions & 9 deletions
9
src/app/showcase/pages/accessibility/accessibilitydemo-routing.module.ts
This file was deleted.
Oops, something went wrong.
11 changes: 0 additions & 11 deletions
11
src/app/showcase/pages/accessibility/accessibilitydemo.module.ts
This file was deleted.
Oops, something went wrong.
File renamed without changes.
12 changes: 6 additions & 6 deletions
12
...essibility/accessibilitydemo.component.ts → ...essibility/accessibilitydemo.component.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1 change: 1 addition & 0 deletions
1
src/app/showcase/pages/guides/csslayer/csslayerdemo.component.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
<app-doc docTitle="CSS Layer - PrimeNG" header="CSS Layer"></app-doc> |
9 changes: 9 additions & 0 deletions
9
src/app/showcase/pages/guides/csslayer/csslayerdemo.component.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
import { Component } from '@angular/core'; | ||
|
||
@Component({ | ||
selector: 'css-layer', | ||
templateUrl: './csslayerdemo.component.html' | ||
}) | ||
export class CssLayerDemoComponent { | ||
docs = []; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
import { NgModule } from '@angular/core'; | ||
import { RouterModule } from '@angular/router'; | ||
import { AccessibilityDemoComponent } from './accessibility/accessibilitydemo.component'; | ||
import { TemplateUpdateDemoComponent } from './templateupdate/templateupdatedemo.component'; | ||
import { CssLayerDemoComponent } from './csslayer/csslayerdemo.component'; | ||
|
||
@NgModule({ | ||
imports: [ | ||
RouterModule.forChild([ | ||
{ path: '', redirectTo: 'accessibility', pathMatch: 'full' }, | ||
{ path: 'accessibility', component: AccessibilityDemoComponent }, | ||
{ path: 'templateupdate', component: TemplateUpdateDemoComponent }, | ||
{ path: 'csslayer', component: CssLayerDemoComponent } | ||
]) | ||
], | ||
exports: [RouterModule] | ||
}) | ||
export class GuidesRoutingModule {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
import { CommonModule } from '@angular/common'; | ||
import { NgModule } from '@angular/core'; | ||
import { AccessibilityDemoComponent } from './accessibility/accessibilitydemo.component'; | ||
import { GuidesRoutingModule } from './guides-routing.module'; | ||
import { TemplateUpdateDemoComponent } from './templateupdate/templateupdatedemo.component'; | ||
import { CssLayerDemoComponent } from './csslayer/csslayerdemo.component'; | ||
import { GuidesDocModule } from '../../doc/guides/guidesdoc.module'; | ||
|
||
@NgModule({ | ||
imports: [CommonModule, GuidesRoutingModule, GuidesDocModule], | ||
declarations: [AccessibilityDemoComponent, TemplateUpdateDemoComponent, CssLayerDemoComponent] | ||
}) | ||
export class GuidesModule {} |
1 change: 1 addition & 0 deletions
1
src/app/showcase/pages/guides/templateupdate/templateupdatedemo.component.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
<app-doc docTitle="Template Update - PrimeNG" header="Template Update"></app-doc> |
9 changes: 9 additions & 0 deletions
9
src/app/showcase/pages/guides/templateupdate/templateupdatedemo.component.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
import { Component } from '@angular/core'; | ||
|
||
@Component({ | ||
selector: 'template-update', | ||
templateUrl: './templateupdatedemo.component.html' | ||
}) | ||
export class TemplateUpdateDemoComponent { | ||
docs = []; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters