Skip to content

Commit 1b00ff2

Browse files
author
pipeline
committed
v20.2.36 is released
1 parent 7486061 commit 1b00ff2

File tree

479 files changed

+7795
-694
lines changed

Some content is hidden

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

479 files changed

+7795
-694
lines changed

package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ej2-angular-samples",
3-
"version": "20.1.47",
3+
"version": "20.2.36",
44
"private": true,
55
"dependencies": {
66
"@angular/animations": "~10.0.0",
@@ -96,7 +96,6 @@
9696
"markdown-it": "^8.4.0",
9797
"marked": "^0.3.19",
9898
"moment-timezone": "^0.5.14",
99-
"primeng": "^10.0.0",
10099
"require-dir": "^0.3.2",
101100
"requirejs": "^2.2.0",
102101
"rimraf": "^2.6.1",

src/app/badge/notification-stackb.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

src/app/badge/notification.css

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,7 @@ body.material-dark .sample_container.badge-notification .layout,
1919
body.tailwind-dark .sample_container.badge-notification .layout,
2020
body.bootstrap-dark .sample_container.badge-notification .layout,
2121
body.fabric-dark .sample_container.badge-notification .layout,
22-
.bootstrap5-dark .sample_container.badge-notification .layout,
23-
.fluent-dark .sample_container.badge-notification .layout {
22+
.bootstrap5-dark .sample_container.badge-notification .layout {
2423
background: inherit;
2524
border: 1px solid #FFFFFF;
2625
color: #FFFFFF;

src/app/breadcrumb/address-bar-stackb.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

src/app/breadcrumb/address-bar.component.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -229,5 +229,6 @@ export class AddressBarController {
229229
// To refresh Breadcrumb control state when reset button clicked
230230
public btnClick() {
231231
this.breadcrumbObj.items = this.initialBreadcrumbItems;
232+
this.breadcrumbItems = this.initialBreadcrumbItems;
232233
}
233234
}

src/app/button/button-group-stackb.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

src/app/button/button-group.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<div id="text" class="e-btn-group">
1515
<input type="radio" id="left" name="align" value="left" />
1616
<label class="e-btn" for="left">Left</label>
17-
<input type="radio" id="center" name="align" value="center" disabled />
17+
<input type="radio" id="center" name="align" value="center" />
1818
<label class="e-btn" for="center">Center</label>
1919
<input type="radio" id="right" name="align" value="right" />
2020
<label class="e-btn" for="right">Right</label>
@@ -52,7 +52,7 @@
5252
</p>
5353
<ul>
5454
<li><b>Default:</b> Triggers action on button click.</li>
55-
<li><b>Single selection:</b> Radio type behavior selects a single button and submits its value to the server on form submission. This is showcased with the second button disabled, by default.</li>
55+
<li><b>Single selection:</b> Radio type behavior selects a single button and submits its value to the server on form submission. This is showcased with the first button selected, by default.</li>
5656
<li><b>Multiple selection:</b> Checkbox type behavior selects multiple buttons and submits its selected values to the server on form submission. This is showcased with the first button selected, by default.</li>
5757
</ul>
5858
<p>

src/app/carousel/api.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<div id="action-description">
2-
<p>This sample demonstrates the properties available in the <b>Angular Carousel</b> component.</p>
2+
<p>This sample demonstrates the properties available in the <a href="https://www.syncfusion.com/angular-ui-components/angular-carousel" target="_blank">Angular Carousel</a> component.</p>
33
</div>
44
<div class="control-section api-carousel-section">
55
<div class="col-lg-9 content-wrapper">

src/app/carousel/data-binding-stackb.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

src/app/carousel/data-binding.component.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { Component, ViewEncapsulation } from '@angular/core';
2-
import { CarouselAnimationSettingsModel, CarouselButtonVisibility } from '@syncfusion/ej2-angular-navigations';
2+
import { CarouselAnimationEffect, CarouselButtonVisibility } from '@syncfusion/ej2-angular-navigations';
33

44
@Component({
55
selector: 'control-content',
@@ -9,7 +9,7 @@ import { CarouselAnimationSettingsModel, CarouselButtonVisibility } from '@syncf
99
})
1010
export class CarouselDataBindingComponent {
1111

12-
public carouselAnimation: CarouselAnimationSettingsModel = { effect: 'Fade' };
12+
public carouselAnimation: CarouselAnimationEffect = 'Fade';
1313

1414
public productDetails: Record<string, string | number>[] = [
1515
{

0 commit comments

Comments
 (0)