Skip to content

Commit 87c44eb

Browse files
Integrated latest changes at 11-22-2024 10:34:25 PM
1 parent 709ae3f commit 87c44eb

File tree

19 files changed

+33
-29
lines changed

19 files changed

+33
-29
lines changed

ej2-angular-toc.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@
143143
<ul>
144144
<li><a href="/ej2-angular/ui-kit/overview">Overview</a></li>
145145
<li><a href="/ej2-angular/ui-kit/getting-started">Getting Started</a></li>
146-
<li><a href="/ej2-angular/ui-kit/build-your-first-angular-app-with-blocks.md">Build your first Angular app with our blocks</a></li>
146+
<li><a href="/ej2-angular/ui-kit/build-your-first-angular-app-with-blocks">Build your first Angular app with our blocks</a></li>
147147
</ul>
148148
</li>
149149
<li>

ej2-angular/code-snippet/schedule/default-cs30/src/app.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import { DayService, WeekService, WorkWeekService, MonthService, AgendaService,
77

88

99
import { Component, ViewChild } from '@angular/core';
10-
import { ScheduleComponent, EventSettingsModel, DayService, WeekService, WorkWeekService, MonthService, View } from '@syncfusion/ej2-angular-schedule';
10+
import { ScheduleComponent, EventSettingsModel, View } from '@syncfusion/ej2-angular-schedule';
1111
import { ButtonComponent } from '@syncfusion/ej2-angular-buttons';
1212

1313
@Component({

ej2-angular/code-snippet/schedule/editor-header-footer-cs1/src/app.component.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { NgModule } from '@angular/core'
22
import { BrowserModule } from '@angular/platform-browser'
33
import { ScheduleModule } from '@syncfusion/ej2-angular-schedule'
44
import { AgendaService, MonthAgendaService} from '@syncfusion/ej2-angular-schedule'
5-
5+
import {CommonModule} from '@angular/common';
66
import { Component, ViewEncapsulation, ViewChild } from '@angular/core';
77
import {
88
ScheduleComponent, MonthService, DayService, WeekService,
@@ -11,7 +11,7 @@ import {
1111
@Component({
1212
imports: [
1313

14-
ScheduleModule
14+
ScheduleModule, CommonModule
1515
],
1616

1717
providers: [DayService,

ej2-angular/code-snippet/schedule/editor-window-cs8/src/app.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { NgModule } from '@angular/core'
22
import { BrowserModule } from '@angular/platform-browser'
33
import { ScheduleModule } from '@syncfusion/ej2-angular-schedule'
44
import { DropDownListModule } from '@syncfusion/ej2-angular-dropdowns'
5-
import { TimePickerModule } from '@syncfusion/ej2-angular-calendars'
5+
import { DateTimePickerModule, TimePickerModule } from '@syncfusion/ej2-angular-calendars'
66
import { DayService, WeekService, WorkWeekService, MonthService, AgendaService, MonthAgendaService} from '@syncfusion/ej2-angular-schedule'
77

88

ej2-angular/code-snippet/schedule/event-data-bound-cs1/src/app.component.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { TimePickerModule } from '@syncfusion/ej2-angular-calendars'
55
import { DayService, WeekService, WorkWeekService, MonthService, AgendaService, MonthAgendaService} from '@syncfusion/ej2-angular-schedule'
66

77

8-
8+
import { CommonModule } from '@angular/common';
99
import { Component, ViewChild } from '@angular/core';
1010
import { eventsData } from './datasource';
1111
import { EventSettingsModel,
@@ -15,7 +15,8 @@ import { EventSettingsModel,
1515
imports: [
1616

1717
ScheduleModule,
18-
TimePickerModule
18+
TimePickerModule,
19+
CommonModule
1920
],
2021

2122
providers: [DayService,

ej2-angular/code-snippet/schedule/event-data-bound-cs2/src/app.component.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { TimePickerModule } from '@syncfusion/ej2-angular-calendars'
55
import { DayService, WeekService, WorkWeekService, MonthService, AgendaService, MonthAgendaService} from '@syncfusion/ej2-angular-schedule'
66

77

8-
8+
import { CommonModule } from '@angular/common';
99
import { Component, ViewChild } from '@angular/core';
1010
import { eventsData } from './datasource';
1111
import { EventSettingsModel,
@@ -15,7 +15,8 @@ import { EventSettingsModel,
1515
imports: [
1616

1717
ScheduleModule,
18-
TimePickerModule
18+
TimePickerModule,
19+
CommonModule
1920
],
2021

2122
providers: [DayService,

ej2-angular/code-snippet/schedule/event-template-cs1/src/app.component.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { TimePickerModule } from '@syncfusion/ej2-angular-calendars'
55
import { DayService, WeekService, WorkWeekService, MonthService, AgendaService, MonthAgendaService} from '@syncfusion/ej2-angular-schedule'
66

77

8-
8+
import { CommonModule } from '@angular/common';
99
import { Component, ViewChild, ElementRef } from '@angular/core';
1010
import { eventsData } from './datasource';
1111
import {
@@ -15,7 +15,8 @@ import {
1515
imports: [
1616

1717
ScheduleModule,
18-
TimePickerModule
18+
TimePickerModule,
19+
CommonModule
1920
],
2021

2122
providers: [DayService,

ej2-angular/code-snippet/schedule/quick-popup-cs1/src/app.component.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { BrowserModule } from '@angular/platform-browser'
33
import { ScheduleModule } from '@syncfusion/ej2-angular-schedule'
44

55

6-
6+
import { CommonModule } from '@angular/common';
77
import { Component, ViewChild, ViewEncapsulation } from '@angular/core';
88
import { isNullOrUndefined } from '@syncfusion/ej2-base';
99
import { ScheduleComponent, CurrentAction, EventSettingsModel, DayService, WeekService, WorkWeekService, MonthService, PopupOpenEventArgs, AgendaService,
@@ -12,7 +12,7 @@ import { scheduleData } from './datasource';
1212
@Component({
1313
imports: [
1414

15-
ScheduleModule
15+
ScheduleModule, CommonModule
1616
],
1717
standalone: true,
1818
selector: 'app-root',

ej2-angular/code-snippet/schedule/resource-field-cs1/src/app.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { NgModule } from '@angular/core'
22
import { BrowserModule } from '@angular/platform-browser'
33
import { ScheduleModule } from '@syncfusion/ej2-angular-schedule'
4-
import { TimePickerModule } from '@syncfusion/ej2-angular-calendars'
4+
import { DateTimePickerModule, TimePickerModule } from '@syncfusion/ej2-angular-calendars'
55
import { MultiSelectModule } from '@syncfusion/ej2-angular-dropdowns'
66

77

ej2-angular/code-snippet/schedule/resource-field-cs2/src/app.component.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { NgModule } from '@angular/core'
22
import { BrowserModule } from '@angular/platform-browser'
33
import { ScheduleModule, RecurrenceEditorModule } from '@syncfusion/ej2-angular-schedule'
4-
import { TimePickerModule } from '@syncfusion/ej2-angular-calendars'
4+
import { DateTimePickerModule, TimePickerModule } from '@syncfusion/ej2-angular-calendars'
55
import { DayService, WeekService, WorkWeekService, MonthService, AgendaService, MonthAgendaService} from '@syncfusion/ej2-angular-schedule'
66

77

@@ -10,7 +10,7 @@ import { Component, ViewChild } from '@angular/core';
1010
import { ChangeEventArgs } from '@syncfusion/ej2-calendars';
1111
import { extend, isNullOrUndefined } from '@syncfusion/ej2-base';
1212
import { DateTimePicker } from '@syncfusion/ej2-calendars';
13-
import { EventSettingsModel, DayService, WeekService, WorkWeekService, MonthService, PopupOpenEventArgs, RecurrenceEditor, ScheduleComponent } from '@syncfusion/ej2-angular-schedule';
13+
import { EventSettingsModel, PopupOpenEventArgs, RecurrenceEditor, ScheduleComponent } from '@syncfusion/ej2-angular-schedule';
1414
import { eventData } from './datasource';
1515
@Component({
1616
imports: [

ej2-angular/code-snippet/schedule/resource-field-cs3/src/app.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { NgModule } from '@angular/core'
22
import { BrowserModule } from '@angular/platform-browser'
33
import { ScheduleModule } from '@syncfusion/ej2-angular-schedule'
44
import { DropDownListModule } from '@syncfusion/ej2-angular-dropdowns'
5-
import { TimePickerModule } from '@syncfusion/ej2-angular-calendars'
5+
import { DateTimePickerModule, TimePickerModule } from '@syncfusion/ej2-angular-calendars'
66

77

88

ej2-angular/code-snippet/schedule/resource-field-cs4/src/app.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { BrowserModule } from '@angular/platform-browser'
33
import { ScheduleModule } from '@syncfusion/ej2-angular-schedule'
44
import { DropDownListModule } from '@syncfusion/ej2-angular-dropdowns'
55
import { RatingModule } from '@syncfusion/ej2-angular-inputs'
6-
import { TimePickerModule } from '@syncfusion/ej2-angular-calendars'
6+
import { DateTimePickerModule, TimePickerModule } from '@syncfusion/ej2-angular-calendars'
77

88
import { Component, ViewChild, ElementRef } from '@angular/core';
99
import { DropDownList } from '@syncfusion/ej2-dropdowns';

ej2-angular/code-snippet/schedule/resource-field-cs5/src/app.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { NgModule } from '@angular/core'
22
import { BrowserModule } from '@angular/platform-browser'
33
import { ScheduleModule } from '@syncfusion/ej2-angular-schedule'
44
import { DropDownListModule } from '@syncfusion/ej2-angular-dropdowns'
5-
import { TimePickerModule } from '@syncfusion/ej2-angular-calendars'
5+
import { DateTimePickerModule, TimePickerModule } from '@syncfusion/ej2-angular-calendars'
66

77

88

ej2-angular/code-snippet/schedule/tooltip-cs1/src/app.component.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,16 @@ import { TimePickerModule } from '@syncfusion/ej2-angular-calendars'
55
import { DayService, WeekService, WorkWeekService, MonthService, AgendaService, MonthAgendaService, TimelineViewsService, EventSettingsModel} from '@syncfusion/ej2-angular-schedule'
66

77

8-
8+
import { CommonModule } from '@angular/common';
99
import { Component } from '@angular/core';
1010
import { eventsData } from './datasource';
1111

1212
@Component({
1313
imports: [
1414

1515
ScheduleModule,
16-
TimePickerModule
16+
TimePickerModule,
17+
CommonModule
1718
],
1819

1920
providers: [DayService,

ej2-angular/getting-started/angular-cli.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ A good way to start with Angular is by generating a new application using the [A
2626
npm install -g @angular/cli
2727
```
2828

29-
> For Angular 18, it default for generates a standalone application. Detailed instructions on creating Syncfusion Angular standalone components using the latest version, please refer to the [Standalone guide](./angular-standalone).
29+
> For Angular 19, it default for generates a standalone application. Detailed instructions on creating Syncfusion Angular standalone components using the latest version, please refer to the [Standalone guide](./angular-standalone).
3030
3131

3232
### Installing a specific version

ej2-angular/getting-started/angular-standalone.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -71,13 +71,10 @@ In `src/app/app.component.ts`, you can use column directives with the `<ejs-grid
7171
```typescript
7272
import { Component } from '@angular/core';
7373
import { GridModule, PagerModule } from '@syncfusion/ej2-angular-grids';
74-
import { CommonModule } from '@angular/common';
75-
import { RouterOutlet } from '@angular/router';
7674

7775
@Component({
7876
selector: 'app-root',
79-
standalone: true,
80-
imports: [GridModule, PagerModule, CommonModule, RouterOutlet],
77+
imports: [GridModule, PagerModule],
8178
template: `
8279
<h1>
8380
Syncfusion Angular UI Grid!
@@ -92,6 +89,7 @@ import { RouterOutlet } from '@angular/router';
9289
</e-columns>
9390
</ejs-grid>
9491
`
92+
styleUrl: './app.component.css'
9593
})
9694
export class AppComponent {
9795
public data: Object[] = [

ej2-angular/schedule/accessibility.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ The Scheduler component's accessibility levels are ensured through an [accessibi
8989

9090
The accessibility compliance of the Scheduler component is shown in the following sample. Open the [sample](https://ej2.syncfusion.com/accessibility/schedule.html) in a new window to evaluate the accessibility of the Scheduler component with accessibility tools.
9191

92-
{% previewsample "https://ej2.syncfusion.com/accessibility/schedule.html" %}
92+
{% previewsample "page.domainurl/samples/schedule/default-cs1" %}
9393

9494
## See also
9595

ej2-angular/system-requirement.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ ng --version
2424

2525
## Node.js
2626

27-
Angular requires an [active LTS or maintenance LTS](https://nodejs.org/about/releases) version of Node.js.
27+
Angular requires an [active LTS or maintenance LTS](https://nodejs.org/en/about/previous-releases) version of Node.js.
2828

2929
For more information on installing Node.js, see [nodejs.org](https://nodejs.org/en/). To check the version of Node.js running on the system, run `node -v` in a terminal window.
3030

@@ -38,6 +38,7 @@ The following table represents the supported Angular versions by different Syncf
3838

3939
| Version | Syncfusion Angular components version |
4040
| ------------- | ------------- |
41+
| [Angular v19](https://blog.angular.dev/meet-angular-v19-7b29dfd05b84/) | 26.1.35 and above |
4142
| [Angular v18](https://blog.angular.dev/angular-v18-is-now-available-e79d5ac0affe/) | 25.2.3 and above |
4243
| [Angular v17](https://blog.angular.io/introducing-angular-v17-4d7033312e4b/) | 23.2.4 and above |
4344
| [Angular v16](https://blog.angular.io/angular-v16-is-here-4d7a28ec680d/) | 21.1.39 and above |
@@ -55,4 +56,4 @@ The following table represents the supported Angular versions by different Syncf
5556

5657
* [Upgrade guide](https://ej2.syncfusion.com/angular/documentation/upgrade/upgrading-syncfusion/)
5758

58-
* [Setting up the local environment and workspace](https://angular.io/guide/setup-local#setting-up-the-local-environment-and-workspace)
59+
* [Setting up the local environment and workspace](https://v17.angular.io/guide/setup-local#setting-up-the-local-environment-and-workspace)

ej2-angular/upgrade/version-compatibility.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ The following table represents the supported Angular versions by different Syncf
1616

1717
| Version | Syncfusion Angular components version |
1818
| ------------- | ------------- |
19+
| [Angular v19](https://blog.angular.dev/meet-angular-v19-7b29dfd05b84/) | 26.1.35 and above |
1920
| [Angular v18](https://blog.angular.dev/angular-v18-is-now-available-e79d5ac0affe/) | 25.2.3 and above |
2021
| [Angular v17](https://blog.angular.io/introducing-angular-v17-4d7033312e4b/) | 23.2.4 and above |
2122
| [Angular v16](https://blog.angular.io/angular-v16-is-here-4d7a28ec680d/) | 21.1.39 and above |

0 commit comments

Comments
 (0)