Skip to content

Commit 016fb51

Browse files
Merge pull request #686 from Syncfusion-Content/hotfix/hotfix-v27.2.2
DOCINFRA-2341_merged_using_automation
2 parents df7ada5 + 534c7e4 commit 016fb51

File tree

92 files changed

+151
-188
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

92 files changed

+151
-188
lines changed

ej2-angular/code-snippet/common/bootstrap5.3-cs2/src/styles.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
:root {
2-
--color-sf-primary: 104, 134, 164;
2+
--color-sf-primary: rgba(13,110,253,1);
33
}
44

55
@import 'node_modules/@syncfusion/ej2-base/styles/bootstrap5.3.css';

ej2-angular/code-snippet/common/clone-draggable/src/app.component.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@ standalone: true,
99
selector: 'app-root',
1010
template:` <div id='container'>
1111
<div #ele class='element'><p class='drag'>Draggable Element </p></div>
12-
</div> `
12+
</div> `,
13+
styleUrls: ['../index.css']
1314
})
1415

1516
export class AppComponent {

ej2-angular/code-snippet/common/drag-area/src/app.component.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@ standalone: true,
1010
template:` <div id='container'>
1111
<div id='droppable'><p class='drop'>Drop target </p></div>
1212
<div id='draggable'><p class='drag'>Draggable Element </p></div>
13-
</div> `
13+
</div> `,
14+
styleUrls: ['../index.css']
1415
})
1516

1617
export class AppComponent {

ej2-angular/code-snippet/common/drag-drop-action-cs1/src/app.component.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@ standalone: true,
1313
template:` <div id='container'>
1414
<div id='droppable'><p class='drop'>Drop target </p></div>
1515
<div id='draggable'><p class='drag'>Draggable Element </p></div>
16-
</div> `
16+
</div> `,
17+
styleUrls: ['../index.css']
1718
})
1819

1920
export class AppComponent {

ej2-angular/code-snippet/common/draggable-default-cs1/src/app.component.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@ standalone: true,
1212
selector: 'app-root',
1313
template:` <div id='container'>
1414
<div #ele class='element'><p class='drag'>Draggable Element </p></div>
15-
</div> `
15+
</div> `,
16+
styleUrls: ['../index.css']
1617
})
1718

1819
export class AppComponent {

ej2-angular/code-snippet/common/droppable-default-cs1/src/app.component.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@ standalone: true,
1212
selector: 'app-root',
1313
template:` <div id='container'>
1414
<div #droppable class='droppable'><p class='drop'>Drop target </p></div>
15-
</div> `
15+
</div> `,
16+
styleUrls: ['../index.css']
1617
})
1718

1819
export class AppComponent {

ej2-angular/code-snippet/common/fluent2-cs2/angular.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,13 +34,13 @@
3434
"budgets": [
3535
{
3636
"type": "initial",
37-
"maximumWarning": "500kb",
38-
"maximumError": "1mb"
37+
"maximumWarning": "1.5mb",
38+
"maximumError": "2mb"
3939
},
4040
{
4141
"type": "anyComponentStyle",
42-
"maximumWarning": "2kb",
43-
"maximumError": "4kb"
42+
"maximumWarning": "650kb",
43+
"maximumError": "700kb"
4444
}
4545
],
4646
"outputHashing": "all"

ej2-angular/code-snippet/common/fluent2-cs2/src/styles.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
:root {
2-
--color-sf-primary: 104, 134, 164;
2+
--color-sf-primary: #0f6cbd;
33
}
44

55
@import 'node_modules/@syncfusion/ej2-base/styles/fluent2.css';

ej2-angular/code-snippet/tree-view/treeview-node-check-cs1/index.css

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,4 @@
1616
margin: 0 auto;
1717
}
1818

19-
#treeparent {
20-
display: block;
21-
max-width: 400px;
22-
max-height: 320px;
23-
margin: auto;
24-
overflow: auto;
25-
border: 1px solid #dddddd;
26-
border-radius: 3px;
27-
}
19+

ej2-angular/code-snippet/tree-view/treeview-node-check-cs1/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
"@syncfusion/ej2-base": "*",
1919
"@syncfusion/ej2-inputs": "*",
2020
"@syncfusion/ej2-buttons": "*",
21+
"@syncfusion/ej2-navigations": "*",
2122
"@syncfusion/ej2-angular-base": "*",
2223
"@syncfusion/ej2-angular-inputs": "*",
2324
"@angular/animations": "17.1.2",
@@ -42,4 +43,4 @@
4243
"karma-jasmine-html-reporter": "2.0.0",
4344
"typescript": "5.3.3"
4445
}
45-
}
46+
}

ej2-angular/code-snippet/tree-view/treeview-node-check-cs1/src/app.component.ts

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,9 @@ import { NgModule } from '@angular/core'
22
import { BrowserModule } from '@angular/platform-browser'
33
import { FormsModule } from '@angular/forms'
44
import { TreeViewModule } from '@syncfusion/ej2-angular-navigations'
5-
6-
7-
8-
9-
import { Component, Inject, ViewChild } from '@angular/core';
10-
import { TreeViewComponent, NodeKeyPressEventArgs, NodeClickEventArgs } from '@syncfusion/ej2-angular-navigations';
5+
import { NodeKeyPressEventArgs, NodeClickEventArgs } from '@syncfusion/ej2-navigations';
6+
import { Component, ViewChild } from '@angular/core';
7+
import { TreeViewComponent } from '@syncfusion/ej2-angular-navigations';
118
/**
129
* TreeView Checkboxes sample
1310
*/

ej2-angular/code-snippet/tree-view/treeview-node-check-cs1/src/styles.css

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,14 @@
44
@import 'node_modules/@syncfusion/ej2-buttons/styles/material.css';
55
@import 'node_modules/@syncfusion/ej2-angular-base/styles/material.css';
66
@import 'node_modules/@syncfusion/ej2-angular-navigations/styles/material.css';
7-
@import 'node_modules/@syncfusion/ej2-angular-inputs/styles/material.css';
7+
@import 'node_modules/@syncfusion/ej2-angular-inputs/styles/material.css';
8+
9+
#treeparent {
10+
display: block;
11+
max-width: 400px;
12+
max-height: 320px;
13+
margin: auto;
14+
overflow: auto;
15+
border: 1px solid #dddddd;
16+
border-radius: 3px;
17+
}

ej2-angular/code-snippet/tree-view/validation-cs1/index.css

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -16,18 +16,4 @@
1616
margin: 0 auto;
1717
}
1818

19-
#treeparent {
20-
display: block;
21-
max-width: 400px;
22-
max-height: 320px;
23-
margin: auto;
24-
overflow: auto;
25-
border: 1px solid #dddddd;
26-
border-radius: 3px;
27-
}
2819

29-
#display {
30-
max-width: 500px;
31-
margin: auto;
32-
padding: 10px;
33-
}

ej2-angular/code-snippet/tree-view/validation-cs1/package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@
1717
"@syncfusion/ej2-angular-navigations": "*",
1818
"@syncfusion/ej2-base": "*",
1919
"@syncfusion/ej2-inputs": "*",
20-
"@syncfusion/ej2-buttons": "*",
20+
"@syncfusion/ej2-buttons": "*",
21+
"@syncfusion/ej2-navigations": "*",
2122
"@syncfusion/ej2-angular-base": "*",
2223
"@syncfusion/ej2-angular-inputs": "*",
2324
"@angular/animations": "17.1.2",
@@ -42,4 +43,4 @@
4243
"karma-jasmine-html-reporter": "2.0.0",
4344
"typescript": "5.3.3"
4445
}
45-
}
46+
}

ej2-angular/code-snippet/tree-view/validation-cs1/src/app.component.ts

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,9 @@
11
import { NgModule } from '@angular/core'
22
import { BrowserModule } from '@angular/platform-browser'
33
import { FormsModule } from '@angular/forms'
4-
import { TreeViewModule } from '@syncfusion/ej2-angular-navigations'
5-
6-
7-
8-
4+
import { TreeViewModule, TreeViewComponent } from '@syncfusion/ej2-angular-navigations';
95
import { Component, ViewChild } from '@angular/core';
10-
import { TreeViewComponent, NodeEditEventArgs } from '@syncfusion/ej2-angular-navigations';
6+
import { NodeEditEventArgs } from '@syncfusion/ej2-navigations';
117

128
@Component({
139
imports: [

ej2-angular/code-snippet/tree-view/validation-cs1/src/styles.css

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,20 @@
44
@import 'node_modules/@syncfusion/ej2-buttons/styles/material.css';
55
@import 'node_modules/@syncfusion/ej2-angular-base/styles/material.css';
66
@import 'node_modules/@syncfusion/ej2-angular-navigations/styles/material.css';
7-
@import 'node_modules/@syncfusion/ej2-angular-inputs/styles/material.css';
7+
@import 'node_modules/@syncfusion/ej2-angular-inputs/styles/material.css';
8+
9+
#treeparent {
10+
display: block;
11+
max-width: 400px;
12+
max-height: 320px;
13+
margin: auto;
14+
overflow: auto;
15+
border: 1px solid #dddddd;
16+
border-radius: 3px;
17+
}
18+
19+
#display {
20+
max-width: 500px;
21+
margin: auto;
22+
padding: 10px;
23+
}

ej2-angular/dashboard-layout/how-to/initializing-dashboard-using-systemjs.md

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
---
22
layout: post
3-
title: Initializing dashboard using systemjs in Angular Dashboard layout component | Syncfusion
3+
title: Angular Dashboard layout component with SystemJS | Syncfusion
44
description: Learn here all about Initializing dashboard using systemjs in Syncfusion Angular Dashboard layout component of Syncfusion Essential JS 2 and more.
55
platform: ej2-angular
66
control: Initializing dashboard using systemjs
77
documentation: ug
88
domainurl: ##DomainURL##
99
---
1010

11-
# Initializing dashboard using systemjs in Angular Dashboard layout component
11+
# SystemJS Initialization in Angular Dashboard layout component
1212

1313
DashboardLayout can also be initialized using `SystemJS` as follows.
1414

@@ -22,7 +22,7 @@ DashboardLayout can also be initialized using `SystemJS` as follows.
2222
npm install
2323
```
2424
25-
For more information, refer to [Angular sample setup](https://angular.io/guide/setup).
25+
For more information, refer to [Angular sample setup](https://v17.angular.io/guide/setup-local).
2626
2727
* Install Syncfusion DashboardLayout package using below command.
2828
@@ -212,11 +212,15 @@ The following example shows a basic DashboardLayout by adding the panels propert
212212
{% include code-snippet/dashboard-layout/getting-started-cs2/src/app.component.ts %}
213213
{% endhighlight %}
214214

215+
{% highlight ts tabtitle="default-style.css" %}
216+
{% include code-snippet/dashboard-layout/getting-started-cs2/src/default-style.css %}
217+
{% endhighlight %}
218+
215219
{% highlight ts tabtitle="main.ts" %}
216220
{% include code-snippet/dashboard-layout/getting-started-cs2/src/main.ts %}
217221
{% endhighlight %}
218222
{% endtabs %}
219223

220224
{% previewsample "page.domainurl/samples/dashboard-layout/getting-started-cs2" %}
221225

222-
> You can refer to our [Angular Dashboard Layout](https://www.syncfusion.com/angular-ui-components/angular-dashboard-layout) feature tour page for its groundbreaking feature representations. You can also explore our [Angular Dashboard Layout example](https://ej2.syncfusion.com/angular/demos/#/material/dashboard-layout/default) to knows how to present and manipulate data.
226+
> You can refer to our [Angular Dashboard Layout](https://www.syncfusion.com/angular-ui-components/angular-dashboard-layout) feature tour page for its groundbreaking feature representations. You can also explore our [Angular Dashboard Layout example](https://ej2.syncfusion.com/angular/demos/#/material/dashboard-layout/default) to knows how to present and manipulate data.

ej2-angular/dashboard-layout/interaction-with-panels/dragging-moving-of-panels.md

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
layout: post
3-
title: Dragging moving of panels in Angular Dashboard layout component | Syncfusion
3+
title: Dragging panels in Angular Dashboard layout component | Syncfusion
44
description: Learn here all about Dragging moving of panels in Syncfusion Angular Dashboard layout component of Syncfusion Essential JS 2 and more.
55
platform: ej2-angular
66
control: Dragging moving of panels
@@ -26,6 +26,10 @@ The following sample demonstrates dragging and pushing of panels. For example, w
2626
{% include code-snippet/dashboard-layout/dragging-of-panels-cs1/src/app.component.ts %}
2727
{% endhighlight %}
2828

29+
{% highlight ts tabtitle="default-style.css" %}
30+
{% include code-snippet/dashboard-layout/dragging-of-panels-cs1/src/default-style.css %}
31+
{% endhighlight %}
32+
2933
{% highlight ts tabtitle="main.ts" %}
3034
{% include code-snippet/dashboard-layout/dragging-of-panels-cs1/src/main.ts %}
3135
{% endhighlight %}
@@ -44,6 +48,10 @@ The following sample demonstrates customizing the dragging handler of the panels
4448
{% include code-snippet/dashboard-layout/customizing-the-dragging-handler-cs1/src/app.component.ts %}
4549
{% endhighlight %}
4650

51+
{% highlight ts tabtitle="default-style.css" %}
52+
{% include code-snippet/dashboard-layout/customizing-the-dragging-handler-cs1/src/default-style.css %}
53+
{% endhighlight %}
54+
4755
{% highlight ts tabtitle="main.ts" %}
4856
{% include code-snippet/dashboard-layout/customizing-the-dragging-handler-cs1/src/main.ts %}
4957
{% endhighlight %}
@@ -62,11 +70,15 @@ The following sample demonstrates Dashboard Layout with dragging support disable
6270
{% include code-snippet/dashboard-layout/disable-dragging-cs1/src/app.component.ts %}
6371
{% endhighlight %}
6472

73+
{% highlight ts tabtitle="default-style.css" %}
74+
{% include code-snippet/dashboard-layout/disable-dragging-cs1/src/default-style.css %}
75+
{% endhighlight %}
76+
6577
{% highlight ts tabtitle="main.ts" %}
6678
{% include code-snippet/dashboard-layout/disable-dragging-cs1/src/main.ts %}
6779
{% endhighlight %}
6880
{% endtabs %}
6981

7082
{% previewsample "page.domainurl/samples/dashboard-layout/disable-dragging-cs1" %}
7183

72-
> You can refer to our [Angular Dashboard Layout](https://www.syncfusion.com/angular-ui-components/angular-dashboard-layout) feature tour page for its groundbreaking feature representations. You can also explore our [Angular Dashboard Layout example](https://ej2.syncfusion.com/angular/demos/#/material/dashboard-layout/default) to knows how to present and manipulate data.
84+
> You can refer to our [Angular Dashboard Layout](https://www.syncfusion.com/angular-ui-components/angular-dashboard-layout) feature tour page for its groundbreaking feature representations. You can also explore our [Angular Dashboard Layout example](https://ej2.syncfusion.com/angular/demos/#/material/dashboard-layout/default) to knows how to present and manipulate data.

ej2-angular/dashboard-layout/interaction-with-panels/moving-panels.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,15 @@ The following sample demonstrates moving a panel programmatically to a new posit
3131
{% include code-snippet/dashboard-layout/moving-cs1/src/app.component.ts %}
3232
{% endhighlight %}
3333

34+
{% highlight ts tabtitle="default-style.css" %}
35+
{% include code-snippet/dashboard-layout/moving-cs1/src/default-style.css %}
36+
{% endhighlight %}
37+
3438
{% highlight ts tabtitle="main.ts" %}
3539
{% include code-snippet/dashboard-layout/moving-cs1/src/main.ts %}
3640
{% endhighlight %}
3741
{% endtabs %}
3842

3943
{% previewsample "page.domainurl/samples/dashboard-layout/moving-cs1" %}
4044

41-
> You can refer to our [Angular Dashboard Layout](https://www.syncfusion.com/angular-ui-components/angular-dashboard-layout) feature tour page for its groundbreaking feature representations. You can also explore our [Angular Dashboard Layout example](https://ej2.syncfusion.com/angular/demos/#/material/dashboard-layout/default) to knows how to present and manipulate data.
45+
> You can refer to our [Angular Dashboard Layout](https://www.syncfusion.com/angular-ui-components/angular-dashboard-layout) feature tour page for its groundbreaking feature representations. You can also explore our [Angular Dashboard Layout example](https://ej2.syncfusion.com/angular/demos/#/material/dashboard-layout/default) to knows how to present and manipulate data.

ej2-angular/dashboard-layout/interaction-with-panels/resizing-of-panels.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,10 @@ The following sample demonstrates how to enable and disable the resizing of pane
2626
{% include code-snippet/dashboard-layout/resizing-of-panels-cs1/src/app.component.ts %}
2727
{% endhighlight %}
2828

29+
{% highlight ts tabtitle="default-style.css" %}
30+
{% include code-snippet/dashboard-layout/resizing-of-panels-cs1/src/default-style.css %}
31+
{% endhighlight %}
32+
2933
{% highlight ts tabtitle="main.ts" %}
3034
{% include code-snippet/dashboard-layout/resizing-of-panels-cs1/src/main.ts %}
3135
{% endhighlight %}
@@ -54,11 +58,15 @@ The following sample demonstrates resizing panels programmatically in the Dashbo
5458
{% include code-snippet/dashboard-layout/resize-panel-cs1/src/app.component.ts %}
5559
{% endhighlight %}
5660

61+
{% highlight ts tabtitle="default-style.css" %}
62+
{% include code-snippet/dashboard-layout/resize-panel-cs1/src/default-style.css %}
63+
{% endhighlight %}
64+
5765
{% highlight ts tabtitle="main.ts" %}
5866
{% include code-snippet/dashboard-layout/resize-panel-cs1/src/main.ts %}
5967
{% endhighlight %}
6068
{% endtabs %}
6169

6270
{% previewsample "page.domainurl/samples/dashboard-layout/resize-panel-cs1" %}
6371

64-
> You can refer to our [Angular Dashboard Layout](https://www.syncfusion.com/angular-ui-components/angular-dashboard-layout) feature tour page for its groundbreaking feature representations. You can also explore our [Angular Dashboard Layout example](https://ej2.syncfusion.com/angular/demos/#/material/dashboard-layout/default) to knows how to present and manipulate data.
72+
> You can refer to our [Angular Dashboard Layout](https://www.syncfusion.com/angular-ui-components/angular-dashboard-layout) feature tour page for its groundbreaking feature representations. You can also explore our [Angular Dashboard Layout example](https://ej2.syncfusion.com/angular/demos/#/material/dashboard-layout/default) to knows how to present and manipulate data.

ej2-angular/dashboard-layout/responsive-adaptive.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,15 @@ The following sample demonstrates the usage of the `mediaQuery` property to turn
2121
{% include code-snippet/dashboard-layout/responsive-adaptive-cs1/src/app.component.ts %}
2222
{% endhighlight %}
2323

24+
{% highlight ts tabtitle="default-style.css" %}
25+
{% include code-snippet/dashboard-layout/responsive-adaptive-cs1/src/default-style.css %}
26+
{% endhighlight %}
27+
2428
{% highlight ts tabtitle="main.ts" %}
2529
{% include code-snippet/dashboard-layout/responsive-adaptive-cs1/src/main.ts %}
2630
{% endhighlight %}
2731
{% endtabs %}
2832

2933
{% previewsample "page.domainurl/samples/dashboard-layout/responsive-adaptive-cs1" %}
3034

31-
> You can refer to our [Angular Dashboard Layout](https://www.syncfusion.com/angular-ui-components/angular-dashboard-layout) feature tour page for its groundbreaking feature representations. You can also explore our [Angular Dashboard Layout example](https://ej2.syncfusion.com/angular/demos/#/material/dashboard-layout/default) to knows how to present and manipulate data.
35+
> You can refer to our [Angular Dashboard Layout](https://www.syncfusion.com/angular-ui-components/angular-dashboard-layout) feature tour page for its groundbreaking feature representations. You can also explore our [Angular Dashboard Layout example](https://ej2.syncfusion.com/angular/demos/#/material/dashboard-layout/default) to knows how to present and manipulate data.

ej2-angular/dashboard-layout/save-restore.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,15 @@ The following sample demonstrates how to save and restore the state of the panel
1919
{% include code-snippet/dashboard-layout/save-restore-cs1/src/app.component.ts %}
2020
{% endhighlight %}
2121

22+
{% highlight ts tabtitle="default-style.css" %}
23+
{% include code-snippet/dashboard-layout/save-restore-cs1/src/default-style.css %}
24+
{% endhighlight %}
25+
2226
{% highlight ts tabtitle="main.ts" %}
2327
{% include code-snippet/dashboard-layout/save-restore-cs1/src/main.ts %}
2428
{% endhighlight %}
2529
{% endtabs %}
2630

2731
{% previewsample "page.domainurl/samples/dashboard-layout/save-restore-cs1" %}
2832

29-
> You can refer to our [Angular Dashboard Layout](https://www.syncfusion.com/angular-ui-components/angular-dashboard-layout) feature tour page for its groundbreaking feature representations. You can also explore our [Angular Dashboard Layout example](https://ej2.syncfusion.com/angular/demos/#/material/dashboard-layout/default) to knows how to present and manipulate data.
33+
> You can refer to our [Angular Dashboard Layout](https://www.syncfusion.com/angular-ui-components/angular-dashboard-layout) feature tour page for its groundbreaking feature representations. You can also explore our [Angular Dashboard Layout example](https://ej2.syncfusion.com/angular/demos/#/material/dashboard-layout/default) to knows how to present and manipulate data.

0 commit comments

Comments
 (0)