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+
}

0 commit comments

Comments
 (0)