Skip to content

Commit 3e5a360

Browse files
Merge pull request #694 from Syncfusion-Content/hotfix/hotfix-v27.2.2
DOCINFRA-2341_merged_using_automation
2 parents 70528bc + e21199d commit 3e5a360

File tree

132 files changed

+302
-314
lines changed

Some content is hidden

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

132 files changed

+302
-314
lines changed

ej2-angular-toc.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -917,7 +917,7 @@
917917
</ul>
918918
</li>
919919
<li><a href="/ej2-angular/diagram/overview">Overview Control</a></li>
920-
<li><a href="/ej2-angular/diagram/ej1-api-migration">Migration from Essential JS 1</a></li>
920+
<li><a href="/ej2-angular/diagram/ej1-api-migration">Migration from Essential® JS 1</a></li>
921921
<li><a href="https://ej2.syncfusion.com/angular/documentation/api/diagram/">API Reference</a></li>
922922
</ul>
923923
</li>

ej2-angular/code-snippet/chips/default-cs1/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
<link href="styles.css" rel="stylesheet" />
1111
</head>
1212
<body>
13-
<my-app>
13+
<app-root>
1414
<div id='loader'>LOADING....</div>
15-
</my-app>
15+
</app-root>
1616
</body>
1717
</html>

ej2-angular/code-snippet/chips/default-cs1/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@
1313
"@angular/core": "17.1.2",
1414
"@angular/platform-browser": "17.1.2",
1515
"@angular/platform-browser-dynamic": "17.1.2",
16-
"@syncfusion/ej2-base": "*",
16+
"@syncfusion/ej2-base": "*",
17+
"@syncfusion/ej2-buttons": "*",
1718
"@syncfusion/ej2-angular-buttons": "*",
1819
"@syncfusion/ej2-angular-base": "*",
1920
"@angular/animations": "17.1.2",

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ imports: [
1515

1616

1717
standalone: true,
18-
selector: 'my-app',
18+
selector: 'app-root',
1919
template: `<ejs-chiplist text="Janet Leverling"></ejs-chiplist>`
2020
})
2121
export class AppComponent {
Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
11

22
@import 'node_modules/@syncfusion/ej2-angular-base/styles/material.css';
3-
@import 'node_modules/@syncfusion/ej2-angular-buttons/styles/material.css';
3+
@import 'node_modules/@syncfusion/ej2-angular-buttons/styles/material.css';
4+
5+
#loader {
6+
color: #008cff;
7+
height: 40px;
8+
width: 30%;
9+
position: absolute;
10+
font-family: 'Helvetica Neue','calibiri';
11+
font-size:16px;
12+
top: 45%;
13+
left: 45%;
14+
}
15+
Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
1-
<!DOCTYPE html>
2-
<html lang="en">
3-
<head>
4-
<title>Angular DropDownTree</title>
5-
<meta charset="utf-8" />
6-
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7-
<meta name="description" content="Typescript Toolbar Controls" />
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<title>Angular DropDownTree</title>
5+
<meta charset="utf-8" />
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7+
<meta name="description" content="Angular DropDownTree Controls" />
88

9-
<meta name="author" content="Syncfusion" />
10-
<link href="index.css" rel="stylesheet" />
11-
</head>
12-
<body>
13-
<div id="wrapper" style='margin-top: 20px'>
14-
<app-container>
15-
<div id='loader'>LOADING....</div>
16-
</app-container>
17-
</div>
18-
</body>
19-
</html>
9+
<meta name="author" content="Syncfusion" />
10+
<link href="index.css" rel="stylesheet" />
11+
</head>
12+
<body>
13+
<div id="wrapper" style='margin-top: 20px'>
14+
<app-root>
15+
<div id='loader'>LOADING....</div>
16+
</app-root>
17+
</div>
18+
</body>
19+
</html>

ej2-angular/code-snippet/dropdowntree/getting-started-cs1/src/app.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ imports: [
1515

1616

1717
standalone: true,
18-
selector: 'app-container',
18+
selector: 'app-root',
1919
// specifies the template string for the DropDownTree component
2020
template: `<ejs-dropdowntree id='dropdowntree' [fields]='fields' placeholder='Select a Item'></ejs-dropdowntree>`
2121
})

ej2-angular/code-snippet/tooltip/getting-started-cs7/index.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
<link href="index.css" rel="stylesheet" />
1111
</head>
1212
<body>
13-
<my-app>
13+
<app-root>
1414
<div id='loader'>LOADING....</div>
15-
</my-app>
15+
</app-root>
1616
</body>
17-
</html>
17+
</html>

ej2-angular/code-snippet/tooltip/getting-started-cs7/src/app.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ imports: [
1616

1717

1818
standalone: true,
19-
selector: 'my-app',
19+
selector: 'app-root',
2020
template: `
2121
<div id='container' style="display: inline-block; position: relative; left: 50%;top: 100px;transform: translateX(-50%);">
2222
<ejs-tooltip id='tooltip' content='Tooltip content' target="#target">

ej2-angular/code-snippet/tooltip/getting-started-cs8/index.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
<link href="index.css" rel="stylesheet" />
1111
</head>
1212
<body>
13-
<my-app>
13+
<app-root>
1414
<div id='loader'>LOADING....</div>
15-
</my-app>
15+
</app-root>
1616
</body>
17-
</html>
17+
</html>

ej2-angular/code-snippet/tooltip/getting-started-cs8/src/app.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ imports: [
1616

1717

1818
standalone: true,
19-
selector: 'my-app',
19+
selector: 'app-root',
2020
template: `
2121
<div id="tool">
2222
<ejs-tooltip target='.e-info' position='RightCenter'>

ej2-angular/diagram/accessibility.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
layout: post
3-
title: Accessibility in Angular Diagram component | Syncfusion
4-
description: Learn here all about Accessibility in Syncfusion Angular Diagram component of Syncfusion Essential JS 2 and more.
3+
title: Accessibility in Angular Diagram component | Syncfusion®
4+
description: Learn here all about Accessibility in Syncfusion® Angular Diagram component of Syncfusion Essential® JS 2 and more.
55
platform: ej2-angular
66
control: Accessibility
77
documentation: ug
@@ -104,15 +104,15 @@ Attribute provides the text label with some default description for below elemen
104104

105105
### Mobile device support
106106

107-
Syncfusion Diagram component are more user-friendly and accessible to individuals using mobile devices, including those with disabilities. These are designed to be responsive, adaptable to various screen sizes and orientations, and touch-friendly.
107+
Syncfusion® Diagram component are more user-friendly and accessible to individuals using mobile devices, including those with disabilities. These are designed to be responsive, adaptable to various screen sizes and orientations, and touch-friendly.
108108

109109
### Screen Reader Support
110110

111111
The Diagram component supports and its information was dictated properly by the screen readers based on the ARIA attributes and content.
112112

113113
### Keyboard navigation support
114114

115-
Syncfusion Diagram component support keyboard navigation, allowing users who rely on alternate methods to effortlessly navigate and interact with the component.
115+
Syncfusion® Diagram component support keyboard navigation, allowing users who rely on alternate methods to effortlessly navigate and interact with the component.
116116

117117
## Keyboard interaction
118118

@@ -144,4 +144,4 @@ The accessibility compliance of the Diagram component is shown in the following
144144

145145
## See also
146146

147-
- [Accessibility in Syncfusion Angular components](../common/accessibility)
147+
- [Accessibility in Syncfusion® Angular components](../common/accessibility)

ej2-angular/diagram/automatic-layout.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
layout: post
3-
title: Automatic layout in Angular Diagram component | Syncfusion
4-
description: Learn here all about Automatic layout in Syncfusion Angular Diagram component of Syncfusion Essential JS 2 and more.
3+
title: Automatic layout in Angular Diagram component | Syncfusion®
4+
description: Learn here all about Automatic layout in Syncfusion® Angular Diagram component of Syncfusion Essential® JS 2 and more.
55
platform: ej2-angular
66
control: Automatic layout
77
documentation: ug

ej2-angular/diagram/bezier-controlPoint.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
layout: post
3-
title: Bezier control points interaction in Angular Diagram component | Syncfusion
4-
description: Learn here all about Connectors in Syncfusion Angular Diagram component of Syncfusion Essential JS 2 and more.
3+
title: Bezier control points interaction in Angular Diagram component | Syncfusion®
4+
description: Learn here all about Connectors in Syncfusion® Angular Diagram component of Syncfusion Essential® JS 2 and more.
55
platform: ej2-angular
66
control: Bezier control points interaction
77
documentation: ug

ej2-angular/diagram/bezier-segEditOrientation.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
layout: post
3-
title: Bezier Segment edit orientation in Angular Diagram component | Syncfusion
4-
description: Learn here all about Connectors in Syncfusion Angular Diagram component of Syncfusion Essential JS 2 and more.
3+
title: Bezier Segment edit orientation in Angular Diagram component | Syncfusion®
4+
description: Learn here all about Connectors in Syncfusion® Angular Diagram component of Syncfusion Essential® JS 2 and more.
55
platform: ej2-angular
66
control: Bezier Segment edit orientation
77
documentation: ug

ej2-angular/diagram/bpmn-activities.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
layout: post
3-
title: Bpmn activity in Angular Diagram component | Syncfusion
4-
description: Learn here all about Bpmn shapes in Syncfusion Angular Diagram component of Syncfusion Essential JS 2 and more.
3+
title: Bpmn activity in Angular Diagram component | Syncfusion®
4+
description: Learn here all about Bpmn shapes in Syncfusion® Angular Diagram component of Syncfusion Essential® JS 2 and more.
55
platform: ej2-angular
66
control: Bpmn activity
77
documentation: ug

ej2-angular/diagram/bpmn-dataObject.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
layout: post
3-
title: Bpmn DataObject in Angular Diagram component | Syncfusion
4-
description: Learn here all about Bpmn shapes in Syncfusion Angular Diagram component of Syncfusion Essential JS 2 and more.
3+
title: Bpmn DataObject in Angular Diagram component | Syncfusion®
4+
description: Learn here all about Bpmn shapes in Syncfusion® Angular Diagram component of Syncfusion Essential® JS 2 and more.
55
platform: ej2-angular
66
control: Bpmn DataObject
77
documentation: ug

ej2-angular/diagram/bpmn-dataSource.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
layout: post
3-
title: Bpmn Datasource in Angular Diagram component | Syncfusion
4-
description: Learn here all about Bpmn shapes in Syncfusion Angular Diagram component of Syncfusion Essential JS 2 and more.
3+
title: Bpmn Datasource in Angular Diagram component | Syncfusion®
4+
description: Learn here all about Bpmn shapes in Syncfusion® Angular Diagram component of Syncfusion Essential® JS 2 and more.
55
platform: ej2-angular
66
control: Bpmn Datasource
77
documentation: ug

ej2-angular/diagram/bpmn-events.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
layout: post
3-
title: Bpmn Events in Angular Diagram component | Syncfusion
4-
description: Learn here all about Bpmn shapes in Syncfusion Angular Diagram component of Syncfusion Essential JS 2 and more.
3+
title: Bpmn Events in Angular Diagram component | Syncfusion®
4+
description: Learn here all about Bpmn shapes in Syncfusion® Angular Diagram component of Syncfusion Essential® JS 2 and more.
55
platform: ej2-angular
66
control: Bpmn Events
77
documentation: ug

ej2-angular/diagram/bpmn-expandedSubProcess.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
layout: post
3-
title: Bpmn Expanded subProcess in Angular Diagram component | Syncfusion
4-
description: Learn here all about Bpmn shapes in Syncfusion Angular Diagram component of Syncfusion Essential JS 2 and more.
3+
title: Bpmn Expanded subProcess in Angular Diagram component | Syncfusion®
4+
description: Learn here all about Bpmn shapes in Syncfusion® Angular Diagram component of Syncfusion Essential® JS 2 and more.
55
platform: ej2-angular
66
control: Bpmn Expanded subProcess
77
documentation: ug

ej2-angular/diagram/bpmn-flows.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
layout: post
3-
title: Bpmn Flows in Angular Diagram component | Syncfusion
4-
description: Learn here all about Bpmn shapes in Syncfusion Angular Diagram component of Syncfusion Essential JS 2 and more.
3+
title: Bpmn Flows in Angular Diagram component | Syncfusion®
4+
description: Learn here all about Bpmn shapes in Syncfusion® Angular Diagram component of Syncfusion Essential® JS 2 and more.
55
platform: ej2-angular
66
control: Bpmn Flows
77
documentation: ug

ej2-angular/diagram/bpmn-gateway.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
layout: post
3-
title: Bpmn Gateway in Angular Diagram component | Syncfusion
4-
description: Learn here all about Bpmn shapes in Syncfusion Angular Diagram component of Syncfusion Essential JS 2 and more.
3+
title: Bpmn Gateway in Angular Diagram component | Syncfusion®
4+
description: Learn here all about Bpmn shapes in Syncfusion® Angular Diagram component of Syncfusion Essential® JS 2 and more.
55
platform: ej2-angular
66
control: Bpmn Gateway
77
documentation: ug

ej2-angular/diagram/bpmn-group.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
layout: post
3-
title: Bpmn Events in Angular Diagram component | Syncfusion
4-
description: Learn here all about Bpmn shapes in Syncfusion Angular Diagram component of Syncfusion Essential JS 2 and more.
3+
title: Bpmn Events in Angular Diagram component | Syncfusion®
4+
description: Learn here all about Bpmn shapes in Syncfusion® Angular Diagram component of Syncfusion Essential® JS 2 and more.
55
platform: ej2-angular
66
control: Bpmn Events
77
documentation: ug

ej2-angular/diagram/bpmn-shapes.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
layout: post
3-
title: Bpmn shapes in Angular Diagram component | Syncfusion
4-
description: Learn here all about Bpmn shapes in Syncfusion Angular Diagram component of Syncfusion Essential JS 2 and more.
3+
title: Bpmn shapes in Angular Diagram component | Syncfusion®
4+
description: Learn here all about Bpmn shapes in Syncfusion® Angular Diagram component of Syncfusion Essential® JS 2 and more.
55
platform: ej2-angular
66
control: Bpmn shapes
77
documentation: ug

ej2-angular/diagram/bpmn-textAnnotation.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
layout: post
3-
title: Bpmn Text annotation in Angular Diagram component | Syncfusion
4-
description: Learn here all about Bpmn shapes in Syncfusion Angular Diagram component of Syncfusion Essential JS 2 and more.
3+
title: Bpmn Text annotation in Angular Diagram component | Syncfusion®
4+
description: Learn here all about Bpmn shapes in Syncfusion® Angular Diagram component of Syncfusion Essential® JS 2 and more.
55
platform: ej2-angular
66
control: Bpmn Text annotation
77
documentation: ug

ej2-angular/diagram/commands.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
layout: post
3-
title: Commands in Angular Diagram component | Syncfusion
4-
description: Learn here all about Commands in Syncfusion Angular Diagram component of Syncfusion Essential JS 2 and more.
3+
title: Commands in Angular Diagram component | Syncfusion®
4+
description: Learn here all about Commands in Syncfusion® Angular Diagram component of Syncfusion Essential® JS 2 and more.
55
platform: ej2-angular
66
control: Commands
77
documentation: ug

ej2-angular/diagram/complex-layout.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
layout: post
3-
title: Complex hierarchical tree layout in Angular Diagram component | Syncfusion
4-
description: Learn here all about Automatic layout in Syncfusion Angular Diagram component of Syncfusion Essential JS 2 and more.
3+
title: Complex hierarchical tree layout in Angular Diagram component | Syncfusion®
4+
description: Learn here all about Automatic layout in Syncfusion® Angular Diagram component of Syncfusion Essential® JS 2 and more.
55
platform: ej2-angular
66
control: Complex hierarchical tree layout
77
documentation: ug

ej2-angular/diagram/connector-bezier.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
layout: post
3-
title: Bezier connectors in Angular Diagram component | Syncfusion
4-
description: Learn here all about Connectors in Syncfusion Angular Diagram component of Syncfusion Essential JS 2 and more.
3+
title: Bezier connectors in Angular Diagram component | Syncfusion®
4+
description: Learn here all about Connectors in Syncfusion® Angular Diagram component of Syncfusion Essential® JS 2 and more.
55
platform: ej2-angular
66
control: Connectors
77
documentation: ug

ej2-angular/diagram/connector-customization.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
layout: post
3-
title: Connector customization in Angular Diagram component | Syncfusion
4-
description: Learn here all about Connectors in Syncfusion Angular Diagram component of Syncfusion Essential JS 2 and more.
3+
title: Connector customization in Angular Diagram component | Syncfusion®
4+
description: Learn here all about Connectors in Syncfusion® Angular Diagram component of Syncfusion Essential® JS 2 and more.
55
platform: ej2-angular
66
control: Connector customization
77
documentation: ug

ej2-angular/diagram/connector-events.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
layout: post
3-
title: Connectors in Angular Diagram component | Syncfusion
4-
description: Learn here all about Connectors in Syncfusion Angular Diagram component of Syncfusion Essential JS 2 and more.
3+
title: Connectors in Angular Diagram component | Syncfusion®
4+
description: Learn here all about Connectors in Syncfusion® Angular Diagram component of Syncfusion Essential® JS 2 and more.
55
platform: ej2-angular
66
control: Connectors
77
documentation: ug

ej2-angular/diagram/connector-interaction.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
layout: post
3-
title: Connector Interaction in Angular Diagram component | Syncfusion
4-
description: Learn here all about Connectors in Syncfusion Angular Diagram component of Syncfusion Essential JS 2 and more.
3+
title: Connector Interaction in Angular Diagram component | Syncfusion®
4+
description: Learn here all about Connectors in Syncfusion® Angular Diagram component of Syncfusion Essential® JS 2 and more.
55
platform: ej2-angular
66
control: Connector Interaction
77
documentation: ug

ej2-angular/diagram/connector-labels.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
layout: post
3-
title: Connector Labels in Angular Diagram component | Syncfusion
4-
description: Learn here all about Labels in Syncfusion Angular Diagram component of Syncfusion Essential JS 2 and more.
3+
title: Connector Labels in Angular Diagram component | Syncfusion®
4+
description: Learn here all about Labels in Syncfusion® Angular Diagram component of Syncfusion Essential® JS 2 and more.
55
platform: ej2-angular
66
control: Connector Labels
77
documentation: ug

ej2-angular/diagram/connector-orthogonal.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
layout: post
3-
title: Orthogonal connectors in Angular Diagram component | Syncfusion
4-
description: Learn here all about Connectors in Syncfusion Angular Diagram component of Syncfusion Essential JS 2 and more.
3+
title: Orthogonal connectors in Angular Diagram component | Syncfusion®
4+
description: Learn here all about Connectors in Syncfusion® Angular Diagram component of Syncfusion Essential® JS 2 and more.
55
platform: ej2-angular
66
control: Orthogonal
77
documentation: ug

0 commit comments

Comments
 (0)