Skip to content

Commit 2e562eb

Browse files
author
pipeline
committed
v19.2.44 is released
1 parent fe0a7c1 commit 2e562eb

File tree

851 files changed

+86639
-18330
lines changed

Some content is hidden

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

851 files changed

+86639
-18330
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ej2-angular-samples",
3-
"version": "19.1.63",
3+
"version": "19.2.44",
44
"private": true,
55
"dependencies": {
66
"@angular/animations": "~10.0.0",

sampleOrder.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -704,7 +704,9 @@
704704
"default": "Default functionalities",
705705
"custom-toolbar": "Custom Toolbar",
706706
"right-to-left": "Right To Left",
707-
"form-filling": "Form Filling"
707+
"form-filling": "Form Filling",
708+
"hand-written": "Handwritten Signature",
709+
"form-designer": "Form Designer"
708710
}
709711
},
710712
"pivot-table": {
@@ -1051,6 +1053,7 @@
10511053
"paging-api": "Paging API",
10521054
"default-scrolling": "Default Scrolling",
10531055
"virtual-scrolling": "Virtual Scrolling",
1056+
"infinite-scrolling": "Infinite Scrolling",
10541057
"selection": "Default Selection",
10551058
"selection-api": "Selection API",
10561059
"checkbox-selection": "Checkbox Selection",

src/app/auto-complete/custom-filtering-stackb.json

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

src/app/auto-complete/custom-filtering.component.ts

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -75,9 +75,12 @@ export class CustomFilteringAutoCompleteComponent {
7575
// pass the filter data source to updateData method.
7676
e.updateData(data, null);
7777
let popupElement: HTMLElement = document.getElementById('books_popup');
78-
let lists: Element[] = <NodeListOf<Element> & Element[]>popupElement.querySelectorAll('.e-list-item');
79-
// For highlight the typed characters, pass the result data and list items to highlightSearch method.
80-
this.highlightSearch(lists, result);
78+
if (popupElement)
79+
{
80+
let lists: Element[] = <NodeListOf<Element> & Element[]>popupElement.querySelectorAll('.e-list-item');
81+
// For highlight the typed characters, pass the result data and list items to highlightSearch method.
82+
this.highlightSearch(lists, result);
83+
}
8184
}
8285

8386
public highlightSearch(listItems: Element[], result: any): void {

src/app/avatar/badge-stackb.json

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

src/app/avatar/badge.css

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@
1010
margin: 7px;
1111
}
1212

13+
.tailwind .sample_container.avatar-badge .avatar-sub-block {
14+
margin: 9px;
15+
}
16+
1317
.sample_container.avatar-badge .avatar-block {
1418
display: inline-block;
1519
vertical-align: top;

src/app/avatar/card-stackb.json

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

src/app/avatar/card.css

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,11 @@
4343
box-shadow: 0 16px 28px -8px rgba(0, 0, 0, .36), 0 4px 15px 0 rgba(0, 0, 0, .12), 0 8px 10px -5px rgba(0, 0, 0, .2);
4444
}
4545

46+
.tailwind .e-custom-card .e-avatar {
47+
height: 3em;
48+
width: 3em;
49+
}
50+
4651
.e-card.e-custom-card :nth-child(3) {
4752
padding: 12px 0px 20px 0px;
4853
height: 130px;

src/app/avatar/list-view-stackb.json

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

src/app/avatar/list-view.css

Lines changed: 5 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)