Skip to content

Commit 0415e63

Browse files
committed
chore: add scheduler
1 parent e49a77c commit 0415e63

File tree

10 files changed

+1038
-53
lines changed

10 files changed

+1038
-53
lines changed

examples-standalone/kendoangular-landing-page/package-lock.json

Lines changed: 87 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples-standalone/kendoangular-landing-page/package.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,17 +38,19 @@
3838
"@progress/kendo-angular-pdf-export": "18.5.2",
3939
"@progress/kendo-angular-popup": "18.5.2",
4040
"@progress/kendo-angular-progressbar": "18.5.2",
41+
"@progress/kendo-angular-scheduler": "^18.5.2",
4142
"@progress/kendo-angular-toolbar": "18.5.2",
4243
"@progress/kendo-angular-treeview": "18.5.2",
4344
"@progress/kendo-angular-utils": "18.5.2",
4445
"@progress/kendo-data-query": "^1.0.0",
45-
"@progress/kendo-drawing": "^1.17.2",
46+
"@progress/kendo-drawing": "^1.21.0",
4647
"@progress/kendo-licensing": "^1.5.0",
4748
"@progress/kendo-svg-icons": "^4.0.0",
4849
"@progress/kendo-theme-default": "^10.3.1",
4950
"rxjs": "~7.8.0",
5051
"tslib": "^2.3.0",
51-
"zone.js": "~0.15.0"
52+
"zone.js": "~0.15.0",
53+
"@progress/kendo-angular-tooltip": "18.5.2"
5254
},
5355
"devDependencies": {
5456
"@angular-devkit/build-angular": "^19.1.3",

examples-standalone/kendoangular-landing-page/src/app/app.component.html

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<div
22
id="app"
3-
style="display: flex; flex-direction: column; width: 630px; height: 680px; margin-left: 8px; gap: 30px;"
3+
style="display: flex; flex-direction: column; width: 630px; height: 680px; margin-left: 7px; gap: 30px;"
44
>
55
<div>
66
<app-transactions-dashboard></app-transactions-dashboard>
@@ -15,4 +15,5 @@
1515
<app-bottom-right></app-bottom-right>
1616
</div>
1717
</div>
18-
</div>
18+
</div>
19+
<!-- <app-scheduler></app-scheduler> -->

examples-standalone/kendoangular-landing-page/src/app/app.component.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,13 @@ import { RouterOutlet, RouterLink, RouterLinkActive } from '@angular/router';
33
import { BottomLeftComponent } from './components/bottom-left/bottom-left.component';
44
import { TransactionsDashboardComponent } from './components/transactions-dashboard/transactions-dashboard.component';
55
import { BottomRightComponent } from './components/bottom-right/bottom-right.component';
6+
import { SchedulerComponent } from "./components/scheduler/scheduler.component";
67

78
@Component({
89
selector: 'app-root',
910
encapsulation: ViewEncapsulation.None,
1011
standalone: true,
11-
imports: [RouterOutlet, RouterLink, RouterLinkActive, BottomLeftComponent,BottomRightComponent, TransactionsDashboardComponent],
12+
imports: [RouterOutlet, RouterLink, RouterLinkActive, BottomLeftComponent, BottomRightComponent, TransactionsDashboardComponent, SchedulerComponent],
1213
templateUrl: './app.component.html',
1314
styleUrl: './app.component.css'
1415
})

examples-standalone/kendoangular-landing-page/src/app/app.module.ts

Lines changed: 0 additions & 45 deletions
This file was deleted.

examples-standalone/kendoangular-landing-page/src/app/components/bottom-right/bottom-right.component.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
.k-form-buttons {
66
margin-top: 1.5rem;
77
display: flex;
8-
justify-content: flex-end;
8+
justify-content: flex-start;
99
gap: 0.5rem;
1010
}
1111

@@ -32,4 +32,4 @@ kendo-formfield {
3232
}
3333
.k-radio {
3434
border: 1px solid var(--kendo-color-border, rgba(0, 0, 0, 0.08)) !important;
35-
}
35+
}

0 commit comments

Comments
 (0)