Skip to content
This repository was archived by the owner on Nov 30, 2022. It is now read-only.

Commit 1a568ac

Browse files
release 1.0.0@alpha1
1 parent 10ae219 commit 1a568ac

File tree

4 files changed

+15
-4
lines changed

4 files changed

+15
-4
lines changed

Diff for: CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
<a name="1.0.0-alpha.1"></a>
2+
# [1.0.0-alpha.1](https://github.com/fivethree-team/component-library/compare/v1.0.0-alpha.0...v1.0.0-alpha.1) (2019-11-15)
3+
4+
5+
### Features
6+
7+
* **popover:** animations, scroll and resize handling ([21a1102](https://github.com/fivethree-team/component-library/commit/21a1102))
8+
* **popover:** force positioning ([10ae219](https://github.com/fivethree-team/component-library/commit/10ae219))
9+
10+
11+
112
# [1.0.0-alpha.0](https://github.com/fivethree-team/fivethree/compare/v0.9.6...v1.0.0-alpha.0) (2019-11-13)
213

314

Diff for: package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@fivethree/core",
3-
"version": "1.0.0-alpha.0",
3+
"version": "1.0.0-alpha.1",
44
"author": "Fivethree Team",
55
"homepage": "https://fivethree.io/",
66
"description": "Fivethree Web Components",

Diff for: projects/core/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@fivethree/core",
3-
"version": "1.0.0-alpha.0",
3+
"version": "1.0.0-alpha.1",
44
"description": "Fivethree Core Components",
55
"keywords": [
66
"fivethree",
@@ -47,4 +47,4 @@
4747
"url": "https://github.com/fivethree-team/fivethree/issues"
4848
},
4949
"homepage": "https://github.com/fivethree-team/fivethree#readme"
50-
}
50+
}

Diff for: projects/core/src/lib/popover/popover-element.directive.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ export class PopoverElementDirective implements AfterViewInit {
3030
open() {
3131
this.show = true;
3232
}
33-
hide() {
33+
close() {
3434
this.show = false;
3535
}
3636

0 commit comments

Comments
 (0)