Skip to content

Commit e371eac

Browse files
author
Zoran Liu
committed
update version
1 parent 00be998 commit e371eac

6 files changed

Lines changed: 21 additions & 7 deletions

File tree

apps/demo/src/app/app.component.html

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,3 +70,11 @@ <h2>Getting up and running...</h2>
7070
combo-box:
7171
<fab-combo-box></fab-combo-box>
7272
</div>
73+
74+
<div>
75+
callout:
76+
<button #calloutTarget (click)="handCalloutClicked()">{{ showCallout ? 'hide callout' : 'show callout' }}</button>
77+
<fab-callout *ngIf="showCallout" [target]="calloutTarget" (onDismiss)="showCallout = false">
78+
<div>I am a callout</div>
79+
</fab-callout>
80+
</div>

apps/demo/src/app/app.component.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -623,4 +623,10 @@ export class AppComponent {
623623
onRatingChanged({ rating }) {
624624
console.log(rating)
625625
}
626+
627+
handCalloutClicked() {
628+
if (!this.showCallout) {
629+
this.showCallout = true;
630+
}
631+
}
626632
}

libs/core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@angular-react/core",
3-
"version": "5.0.0-alpha",
3+
"version": "4.1.0",
44
"description": "Use React components inside Angular",
55
"author": {
66
"name": "Ben Feely",

libs/fabric/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@angular-react/fabric",
3-
"version": "5.0.0-alpha",
3+
"version": "4.1.0",
44
"description": "Use Fabric React components inside Angular",
55
"author": {
66
"name": "Ben Feely",
@@ -34,7 +34,7 @@
3434
"tslib": "^2.0.0"
3535
},
3636
"peerDependencies": {
37-
"@angular-react/core": "^5.0.0-alpha",
37+
"@angular-react/core": "^4.1.0",
3838
"@angular/common": "^13.3.0",
3939
"@angular/core": "^13.3.0",
4040
"@angular/platform-browser-dynamic": "^13.3.0",

libs/semantic-ui/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@angular-react/semantic-ui",
3-
"version": "5.0.0-alpha",
3+
"version": "4.1.0",
44
"description": "Use Semantic-UI React components inside Angular",
55
"author": "Ben Feely <http://benfeely.com>",
66
"license": "MIT",
@@ -23,7 +23,7 @@
2323
"tslib": "^2.0.0"
2424
},
2525
"peerDependencies": {
26-
"@angular-react/core": "^4.0.0",
26+
"@angular-react/core": "^4.1.0",
2727
"@angular/common": "^13.3.0",
2828
"@angular/core": "^13.3.0",
2929
"@angular/platform-browser-dynamic": "^13.3.0",

libs/toolkit/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "angular-react-toolkit",
3-
"version": "5.0.0-alpha",
3+
"version": "4.1.0",
44
"license": "MIT",
55
"bugs": {
66
"url": "https://github.com/microsoft/angular-react/issues"
@@ -21,7 +21,7 @@
2121
"private": false,
2222
"sideEffects": false,
2323
"peerDependencies": {
24-
"@angular-react/core": "^4.0.0",
24+
"@angular-react/core": "^4.1.0",
2525
"@angular/common": "^13.3.0",
2626
"@angular/core": "^13.3.0",
2727
"@angular/platform-browser-dynamic": "^13.3.0",

0 commit comments

Comments
 (0)