Skip to content

Commit 123c320

Browse files
committed
chore: fix styles
1 parent 1f1a503 commit 123c320

26 files changed

+5588
-7450
lines changed

examples-standalone/coffee-warehouse/angular.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,8 @@
3030
"index": "src/index.html",
3131
"browser": "src/main.ts",
3232
"polyfills": [
33-
"zone.js"
33+
"zone.js",
34+
"@angular/localize/init"
3435
],
3536
"tsConfig": "tsconfig.app.json",
3637
"assets": [

examples-standalone/coffee-warehouse/package-lock.json

Lines changed: 4867 additions & 6763 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples-standalone/coffee-warehouse/package.json

Lines changed: 23 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,15 @@
1010
},
1111
"private": true,
1212
"dependencies": {
13-
"@angular/animations": "^20.3.15",
14-
"@angular/common": "^20.3.15",
15-
"@angular/compiler": "^20.3.15",
16-
"@angular/core": "^20.3.15",
17-
"@angular/forms": "^20.3.15",
18-
"@angular/localize": "^20.3.15",
19-
"@angular/platform-browser": "^20.3.15",
20-
"@angular/platform-browser-dynamic": "^20.3.15",
21-
"@angular/router": "^20.3.15",
13+
"@angular/animations": "^21.0.2",
14+
"@angular/common": "^21.0.2",
15+
"@angular/compiler": "^21.0.2",
16+
"@angular/core": "^21.0.2",
17+
"@angular/forms": "^21.0.2",
18+
"@angular/localize": "^21.0.2",
19+
"@angular/platform-browser": "^21.0.2",
20+
"@angular/platform-browser-dynamic": "^21.0.2",
21+
"@angular/router": "^21.0.2",
2222
"@progress/kendo-angular-buttons": "21.1.0",
2323
"@progress/kendo-angular-charts": "^21.1.0",
2424
"@progress/kendo-angular-common": "21.1.0",
@@ -44,22 +44,27 @@
4444
"@progress/kendo-angular-tooltip": "21.1.0",
4545
"@progress/kendo-angular-treeview": "21.1.0",
4646
"@progress/kendo-angular-utils": "21.1.0",
47-
"@progress/kendo-data-query": "^1.7.2",
48-
"@progress/kendo-drawing": "^1.23.1",
49-
"@progress/kendo-licensing": "^1.7.2",
50-
"@progress/kendo-svg-icons": "^4.5.0",
47+
"@progress/kendo-data-query": "^1.0.0",
48+
"@progress/kendo-drawing": "^1.21.0",
49+
"@progress/kendo-licensing": "^1.7.0",
50+
"@progress/kendo-svg-icons": "^4.0.0",
5151
"@progress/kendo-theme-default": "^12.3.0",
5252
"@progress/kendo-theme-material": "^12.3.0",
5353
"@progress/kendo-theme-bootstrap": "^12.3.0",
5454
"hammerjs": "^2.0.0",
5555
"rxjs": "~7.8.0",
5656
"tslib": "^2.3.0",
57-
"zone.js": "~0.15.1"
57+
"zone.js": "~0.15.1",
58+
"@progress/kendo-angular-indicators": "21.1.0",
59+
"@progress/kendo-angular-conversational-ui": "21.1.0",
60+
"@progress/kendo-angular-menu": "21.1.0",
61+
"@progress/kendo-angular-pager": "21.1.0",
62+
"@progress/kendo-angular-upload": "21.1.0"
5863
},
5964
"devDependencies": {
60-
"@angular/build": "^20.3.12",
61-
"@angular/cli": "^20.3.12",
62-
"@angular/compiler-cli": "^20.3.15",
65+
"@angular/build": "^21.0.1",
66+
"@angular/cli": "^21.0.1",
67+
"@angular/compiler-cli": "^21.0.2",
6368
"@types/jasmine": "~5.1.0",
6469
"jasmine-core": "~5.1.0",
6570
"karma": "~6.4.0",
@@ -69,4 +74,4 @@
6974
"karma-jasmine-html-reporter": "~2.1.0",
7075
"typescript": "~5.9.3"
7176
}
72-
}
77+
}

examples-standalone/coffee-warehouse/src/app/app.component.ts

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,20 @@
11
import { Component, OnDestroy, OnInit } from "@angular/core";
2-
import { NavigationStart, Router, RouterEvent } from "@angular/router";
2+
import { NavigationStart, Router, RouterOutlet } from "@angular/router";
33
import { MessageService } from "@progress/kendo-angular-l10n";
44
import {
55
DrawerComponent,
66
DrawerMode,
77
DrawerSelectEvent,
8+
KENDO_LAYOUT,
89
} from "@progress/kendo-angular-layout";
910
import { CustomMessagesService } from "./services/custom-messages.service";
1011
import { gridIcon, chartLineMarkersIcon, calendarIcon, userIcon, infoCircleIcon } from "@progress/kendo-svg-icons";
12+
import { HeaderComponent } from "./header/header.component";
1113

12-
@Component({
13-
selector: "app-root",
14-
templateUrl: "./app.component.html",
15-
standalone: false
14+
@Component({
15+
selector: "app-root",
16+
templateUrl: "./app.component.html",
17+
imports: [KENDO_LAYOUT, RouterOutlet, HeaderComponent]
1618
})
1719
export class AppComponent implements OnInit, OnDestroy {
1820
public selected = "Team";
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
import { ApplicationConfig, LOCALE_ID, provideZoneChangeDetection } from '@angular/core';
2+
import { provideRouter } from '@angular/router';
3+
import { provideAnimations } from '@angular/platform-browser/animations';
4+
import { provideHttpClient, withInterceptorsFromDi } from '@angular/common/http';
5+
import { MessageService } from '@progress/kendo-angular-l10n';
6+
7+
import { routes } from './app.routes';
8+
import { CustomMessagesService } from './services/custom-messages.service';
9+
import { ProfileImageService } from './services/profile-image.service';
10+
11+
import '@progress/kendo-angular-intl/locales/en/all';
12+
import '@progress/kendo-angular-intl/locales/es/all';
13+
import '@progress/kendo-angular-intl/locales/fr/all';
14+
15+
export const appConfig: ApplicationConfig = {
16+
providers: [
17+
provideZoneChangeDetection({ eventCoalescing: true }),
18+
provideRouter(routes),
19+
provideAnimations(),
20+
provideHttpClient(withInterceptorsFromDi()),
21+
{ provide: MessageService, useClass: CustomMessagesService },
22+
{ provide: LOCALE_ID, useValue: 'en-US' },
23+
ProfileImageService
24+
]
25+
};

examples-standalone/coffee-warehouse/src/app/app.module.ts

Lines changed: 0 additions & 85 deletions
This file was deleted.
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
import { Routes } from '@angular/router';
2+
import { TeamComponent } from './components/team/team.component';
3+
import { DashboardComponent } from './components/dashboard/dashboard.component';
4+
import { PlanningComponent } from './components/planning/planning.component';
5+
import { ProfileComponent } from './components/profile/profile.component';
6+
import { InfoComponent } from './components/info/info.component';
7+
8+
export const routes: Routes = [
9+
{ path: '', component: TeamComponent },
10+
{ path: 'dashboard', component: DashboardComponent },
11+
{ path: 'planning', component: PlanningComponent },
12+
{ path: 'profile', component: ProfileComponent },
13+
{ path: 'info', component: InfoComponent }
14+
];

0 commit comments

Comments
 (0)