Skip to content

Commit

Permalink
update release
Browse files Browse the repository at this point in the history
  • Loading branch information
chad-ramos committed Dec 31, 2018
1 parent e124561 commit f2e360e
Show file tree
Hide file tree
Showing 7 changed files with 37 additions and 4 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,11 @@

<a name="0.16.6"></a>
# [v0.16.6](https://github.com/PioneerCode/pioneer-charts/releases/tag/0.16.6) (2018-12-31)

### Added
- Pagination component.
- Dialog component.

<a name="0.15.0"></a>
# [v0.15.0](https://github.com/PioneerCode/pioneer-charts/releases/tag/0.15.0) (2018-12-19)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,24 @@
<div class="col-sm">
<h3>Markup</h3>
<pc-prism language="markup" [code]="markupCode"></pc-prism>
</div>
</div>
</section>
<section class="pc-doc-section">
<div class="row">
<div class="col-sm">
<h3>Event</h3>
<pc-prism language="javascript" [code]="callCode"></pc-prism>
</div>
</div>
</section>
<section class="pc-doc-section">
<div class="row">
<div class="col-sm">
<h3>API</h3>
<pc-prism language="javascript" [code]="importCode"></pc-prism>
</div>
</div>
</section>
</div>
</pc-doc-layout>
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ import { JumpNavLevel, IJumpNav } from 'apps/docs/src/app/components/jump-nav/ju
})
export class DialogComponent {
public markupCode = `<pcac-dialog>Hello!</pcac-dialog>`;
public importCode = `import { PcacDialogModule } from '@pioneer-code/pioneer-charts';`;
public callCode = `@ViewChild(PcacDialogComponent) dialog: PcacDialogComponent;
openDialog(): void {
Expand All @@ -26,6 +27,16 @@ openDialog(): void {
key: 'Markup',
value: 'markup',
level: JumpNavLevel.h2
},
{
key: 'Event',
value: 'event',
level: JumpNavLevel.h2
},
{
key: 'API',
value: 'api',
level: JumpNavLevel.h2
}
] as IJumpNav[];

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export class PaginationComponent {
totalItemsInCollection: 100,
show: true
} as IPcacPaginationConfig;

public importCode = `import { PcacPaginationModule } from '@pioneer-code/pioneer-charts';`;
public jumpNav = [
{
key: 'Pagination',
Expand Down
2 changes: 1 addition & 1 deletion apps/docs/src/environments/environment.prod.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export const environment = {
production: true,
version: '0.16.4'
version: '0.16.7'
};
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "pioneer-charts",
"version": "0.16.6",
"version": "0.16.7",
"scripts": {
"ng": "ng",
"start": "ng serve pioneer-charts-dev",
Expand Down
2 changes: 1 addition & 1 deletion projects/pcac/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"type": "git",
"url": "https://github.com/PioneerCode/pioneer-charts"
},
"version": "0.16.6",
"version": "0.16.7",
"license": "MIT",
"devDependencies": {
"@types/d3": "^5.0.1",
Expand Down

0 comments on commit f2e360e

Please sign in to comment.