Skip to content
Closed
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
6,847 changes: 3,650 additions & 3,197 deletions package-lock.json

Large diffs are not rendered by default.

28 changes: 14 additions & 14 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,26 +12,26 @@
},
"private": true,
"dependencies": {
"@angular/animations": "^18.2.8",
"@angular/cdk": "^18.2.9",
"@angular/common": "^18.2.8",
"@angular/compiler": "^18.2.8",
"@angular/core": "^18.2.8",
"@angular/forms": "^18.2.8",
"@angular/material": "^18.2.9",
"@angular/platform-browser": "^18.2.8",
"@angular/platform-browser-dynamic": "^18.2.8",
"@angular/router": "^18.2.8",
"@angular/animations": "^19.2.8",
"@angular/cdk": "^19.2.11",
"@angular/common": "^19.2.8",
"@angular/compiler": "^19.2.8",
"@angular/core": "^19.2.8",
"@angular/forms": "^19.2.8",
"@angular/material": "^19.2.11",
"@angular/platform-browser": "^19.2.8",
"@angular/platform-browser-dynamic": "^19.2.8",
"@angular/router": "^19.2.8",
"chart.js": "^4.4.5",
"ng2-charts": "^6.0.1",
"rxjs": "~7.8.0",
"tslib": "^2.8.0",
"zone.js": "^0.14.10"
"zone.js": "^0.15.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^18.2.9",
"@angular/cli": "^18.2.9",
"@angular/compiler-cli": "^18.2.8",
"@angular-devkit/build-angular": "^19.2.9",
"@angular/cli": "^19.2.9",
"@angular/compiler-cli": "^19.2.8",
"@types/jasmine": "~5.1.0",
"angular-cli-ghpages": "^2.0.3",
"jasmine-core": "~5.2.0",
Expand Down
7 changes: 4 additions & 3 deletions src/app/admin/users/users.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,10 @@ import { MatSort } from '@angular/material/sort';
import { ChartData, ChartOptions, ChartType } from 'chart.js';

@Component({
selector: 'app-users',
templateUrl: './users.component.html',
styleUrls: ['./users.component.scss']
selector: 'app-users',
templateUrl: './users.component.html',
styleUrls: ['./users.component.scss'],
standalone: false
})
export class UsersComponent implements OnInit {

Expand Down
5 changes: 4 additions & 1 deletion src/app/app.component.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,10 @@ import { Component, Input } from '@angular/core';
import { ThemeMode } from './theme-switch/theme-switch.component';
import { AppRoutingModule } from './app-routing.module';

@Component({ selector: 'app-theme-switch', template: '<h3>switch theme</h3>' })
@Component({
selector: 'app-theme-switch', template: '<h3>switch theme</h3>',
standalone: false
})
class ThemeSwitchStubComponent {
@Input() mode: ThemeMode;
}
Expand Down
7 changes: 4 additions & 3 deletions src/app/app.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,10 @@ import { ThemeMode } from './theme-switch/theme-switch.component';
export const THEME_MODE = btoa('poln_landing_page_theme_mode');

@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.scss']
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.scss'],
standalone: false
})
export class AppComponent {
disabled = true;
Expand Down
7 changes: 4 additions & 3 deletions src/app/page-not-found/page-not-found.component.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
import { Component, OnInit } from '@angular/core';

@Component({
selector: 'app-page-not-found',
templateUrl: './page-not-found.component.html',
styleUrls: ['./page-not-found.component.scss']
selector: 'app-page-not-found',
templateUrl: './page-not-found.component.html',
styleUrls: ['./page-not-found.component.scss'],
standalone: false
})
export class PageNotFoundComponent implements OnInit {

Expand Down
7 changes: 4 additions & 3 deletions src/app/theme-switch/theme-switch.component.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
import { Component, EventEmitter, Input, OnInit, Output } from '@angular/core';

@Component({
selector: 'app-theme-switch',
templateUrl: './theme-switch.component.html',
styleUrls: ['./theme-switch.component.sass']
selector: 'app-theme-switch',
templateUrl: './theme-switch.component.html',
styleUrls: ['./theme-switch.component.sass'],
standalone: false
})
export class ThemeSwitchComponent implements OnInit {

Expand Down
7 changes: 4 additions & 3 deletions src/app/welcome/credo/credo.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,10 @@ import { environment } from '@env/environment';
import { Component, OnInit } from '@angular/core';

@Component({
selector: 'app-credo',
templateUrl: './credo.component.html',
styleUrls: ['./credo.component.scss']
selector: 'app-credo',
templateUrl: './credo.component.html',
styleUrls: ['./credo.component.scss'],
standalone: false
})
export class CredoComponent implements OnInit {
title = environment.title;
Expand Down
7 changes: 4 additions & 3 deletions src/app/welcome/deck-wp/deck-wp.component.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
import { Component, OnInit } from '@angular/core';

@Component({
selector: 'app-deck-wp',
templateUrl: './deck-wp.component.html',
styleUrls: ['./deck-wp.component.scss']
selector: 'app-deck-wp',
templateUrl: './deck-wp.component.html',
styleUrls: ['./deck-wp.component.scss'],
standalone: false
})
export class DeckWpComponent implements OnInit {

Expand Down
7 changes: 4 additions & 3 deletions src/app/welcome/intro-video/intro-video.component.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
import { Component, OnInit } from '@angular/core';

@Component({
selector: 'app-intro-video',
templateUrl: './intro-video.component.html',
styleUrls: ['./intro-video.component.scss']
selector: 'app-intro-video',
templateUrl: './intro-video.component.html',
styleUrls: ['./intro-video.component.scss'],
standalone: false
})
export class IntroVideoComponent implements OnInit {

Expand Down
7 changes: 4 additions & 3 deletions src/app/welcome/social-media/social-media.component.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
import { Component, OnInit } from '@angular/core';

@Component({
selector: 'app-social-media',
templateUrl: './social-media.component.html',
styleUrls: ['./social-media.component.scss']
selector: 'app-social-media',
templateUrl: './social-media.component.html',
styleUrls: ['./social-media.component.scss'],
standalone: false
})
export class SocialMediaComponent implements OnInit {

Expand Down
7 changes: 4 additions & 3 deletions src/app/welcome/waitlist/activate/activate.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,10 @@ import { catchError, finalize, of } from 'rxjs';
import { PreregisterService } from '../preregister.service';

@Component({
selector: 'app-activate',
templateUrl: './activate.component.html',
styleUrls: ['./activate.component.scss']
selector: 'app-activate',
templateUrl: './activate.component.html',
styleUrls: ['./activate.component.scss'],
standalone: false
})
export class ActivateComponent implements OnInit {

Expand Down
7 changes: 4 additions & 3 deletions src/app/welcome/waitlist/register/register.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,10 @@ import { Component, OnInit } from '@angular/core';
import { AbstractControl, NonNullableFormBuilder, ValidationErrors, Validators } from '@angular/forms';

@Component({
selector: 'app-register',
templateUrl: './register.component.html',
styleUrls: ['./register.component.scss']
selector: 'app-register',
templateUrl: './register.component.html',
styleUrls: ['./register.component.scss'],
standalone: false
})
export class RegisterComponent implements OnInit {

Expand Down
30 changes: 24 additions & 6 deletions src/app/welcome/welcome.component.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,22 +6,40 @@ import { MatCardModule } from '@angular/material/card';

import { Component } from '@angular/core';

@Component({ selector: 'app-credo', template: '<h1>credo</h1>' })
@Component({
selector: 'app-credo', template: '<h1>credo</h1>',
standalone: false
})
class CredoStubComponent { }

@Component({ selector: 'app-actors', template: '<h1>actors</h1>' })
@Component({
selector: 'app-actors', template: '<h1>actors</h1>',
standalone: false
})
class ActorsStubComponent { }

@Component({ selector: 'app-values', template: '<h2>value</h2>' })
@Component({
selector: 'app-values', template: '<h2>value</h2>',
standalone: false
})
class ValuesStubComponent { }

@Component({ selector: 'app-social-media', template: '<h2>social-media</h2>' })
@Component({
selector: 'app-social-media', template: '<h2>social-media</h2>',
standalone: false
})
class SocialMediaStubComponent { }

@Component({ selector: 'app-deck-wp', template: '<h2>social-media</h2>' })
@Component({
selector: 'app-deck-wp', template: '<h2>social-media</h2>',
standalone: false
})
class DeckWpStubComponent { }

@Component({ selector: 'app-intro-video', template: '<h2>video</h2>' })
@Component({
selector: 'app-intro-video', template: '<h2>video</h2>',
standalone: false
})
class IntroVideoStubComponent { }

describe('WelcomeComponent', () => {
Expand Down
7 changes: 4 additions & 3 deletions src/app/welcome/welcome.component.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
import { Component, OnInit } from '@angular/core';

@Component({
selector: 'app-welcome',
templateUrl: './welcome.component.html',
styleUrls: ['./welcome.component.scss']
selector: 'app-welcome',
templateUrl: './welcome.component.html',
styleUrls: ['./welcome.component.scss'],
standalone: false
})
export class WelcomeComponent implements OnInit {
constructor() { }
Expand Down