Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions templates/angular-example/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@
"@angular/platform-browser": "^21.0.0",
"@angular/platform-browser-dynamic": "^21.0.0",
"@angular/router": "^21.0.0",
"@junobuild/core": "^3.4.0",
"@junobuild/functions": "^0.5.4",
"@junobuild/core": "^5.1.0",
"@junobuild/functions": "^0.5.6",
"nanoid": "^5.1.5",
"rxjs": "~7.8.2",
"tslib": "^2.8.1",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,15 @@
Example App
</h1>
<p class="py-4 md:max-w-lg dark:text-white">
Explore this demo app built with Angular, Tailwind, and
Try out this demo app to discover
<a
href="https://juno.build"
rel="noopener noreferrer"
target="_blank"
class="underline"
>
Juno</a
>, showcasing a practical application of these technologies.
>.
</p>

<app-auth>
Expand Down

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,7 +1 @@
<div class="gap flex flex-col">
<app-login-with-google />

<app-passkey />

<app-login-with-ii />
</div>
<app-button (click)="signIn()">Sign in for dev</app-button>
Original file line number Diff line number Diff line change
@@ -1,11 +1,17 @@
import { Component } from '@angular/core';
import { PasskeyComponent } from '../passkey/passkey/passkey.component';
import { LoginComponentWithII } from '../login-with-ii/login-with-ii.component';
import { LoginComponentWithGoogle } from '../login-with-google/login-with-google.component';
import { signIn } from '@junobuild/core';
import { ButtonComponent } from '../button/button.component';

@Component({
selector: 'app-login',
imports: [LoginComponentWithII, PasskeyComponent, LoginComponentWithGoogle],
imports: [ButtonComponent],
templateUrl: './login.component.html',
})
export class LoginComponent {}
export class LoginComponent {
async signIn() {
// Sign in for local development and E2E only
await signIn({
dev: {},
});
}
}

This file was deleted.

This file was deleted.

This file was deleted.

Loading
Loading