Skip to content

Commit f2e360e

Browse files
committed
update release
1 parent e124561 commit f2e360e

File tree

7 files changed

+37
-4
lines changed

7 files changed

+37
-4
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,11 @@
11

2+
<a name="0.16.6"></a>
3+
# [v0.16.6](https://github.com/PioneerCode/pioneer-charts/releases/tag/0.16.6) (2018-12-31)
4+
5+
### Added
6+
- Pagination component.
7+
- Dialog component.
8+
29
<a name="0.15.0"></a>
310
# [v0.15.0](https://github.com/PioneerCode/pioneer-charts/releases/tag/0.15.0) (2018-12-19)
411

apps/docs/src/app/pages/docs/components/helpers/dialog/dialog.component.html

+15
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,24 @@
1919
<div class="col-sm">
2020
<h3>Markup</h3>
2121
<pc-prism language="markup" [code]="markupCode"></pc-prism>
22+
</div>
23+
</div>
24+
</section>
25+
<section class="pc-doc-section">
26+
<div class="row">
27+
<div class="col-sm">
28+
<h3>Event</h3>
2229
<pc-prism language="javascript" [code]="callCode"></pc-prism>
2330
</div>
2431
</div>
2532
</section>
33+
<section class="pc-doc-section">
34+
<div class="row">
35+
<div class="col-sm">
36+
<h3>API</h3>
37+
<pc-prism language="javascript" [code]="importCode"></pc-prism>
38+
</div>
39+
</div>
40+
</section>
2641
</div>
2742
</pc-doc-layout>

apps/docs/src/app/pages/docs/components/helpers/dialog/dialog.component.ts

+11
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ import { JumpNavLevel, IJumpNav } from 'apps/docs/src/app/components/jump-nav/ju
1111
})
1212
export class DialogComponent {
1313
public markupCode = `<pcac-dialog>Hello!</pcac-dialog>`;
14+
public importCode = `import { PcacDialogModule } from '@pioneer-code/pioneer-charts';`;
1415
public callCode = `@ViewChild(PcacDialogComponent) dialog: PcacDialogComponent;
1516
1617
openDialog(): void {
@@ -26,6 +27,16 @@ openDialog(): void {
2627
key: 'Markup',
2728
value: 'markup',
2829
level: JumpNavLevel.h2
30+
},
31+
{
32+
key: 'Event',
33+
value: 'event',
34+
level: JumpNavLevel.h2
35+
},
36+
{
37+
key: 'API',
38+
value: 'api',
39+
level: JumpNavLevel.h2
2940
}
3041
] as IJumpNav[];
3142

apps/docs/src/app/pages/docs/components/helpers/pagination/pagination.component.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ export class PaginationComponent {
1616
totalItemsInCollection: 100,
1717
show: true
1818
} as IPcacPaginationConfig;
19-
19+
public importCode = `import { PcacPaginationModule } from '@pioneer-code/pioneer-charts';`;
2020
public jumpNav = [
2121
{
2222
key: 'Pagination',
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
export const environment = {
22
production: true,
3-
version: '0.16.4'
3+
version: '0.16.7'
44
};

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "pioneer-charts",
3-
"version": "0.16.6",
3+
"version": "0.16.7",
44
"scripts": {
55
"ng": "ng",
66
"start": "ng serve pioneer-charts-dev",

projects/pcac/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
"type": "git",
2323
"url": "https://github.com/PioneerCode/pioneer-charts"
2424
},
25-
"version": "0.16.6",
25+
"version": "0.16.7",
2626
"license": "MIT",
2727
"devDependencies": {
2828
"@types/d3": "^5.0.1",

0 commit comments

Comments
 (0)