Skip to content

Commit 4380de5

Browse files
author
pipeline
committed
v26.2.13 is released
1 parent a095796 commit 4380de5

File tree

95 files changed

+1410
-281
lines changed

Some content is hidden

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

95 files changed

+1410
-281
lines changed

controls/barcodegenerator/CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## [Unreleased]
44

5-
## 26.2.12 (2024-09-03)
5+
## 26.2.13 (2024-09-05)
66

77
### Barcode
88

controls/buttons/CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## [Unreleased]
44

5-
## 26.2.12 (2024-09-03)
5+
## 26.2.13 (2024-09-05)
66

77
### Switch
88

controls/calendars/CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## [Unreleased]
44

5-
## 26.2.12 (2024-09-03)
5+
## 26.2.13 (2024-09-05)
66

77
### DateTimePicker
88

controls/charts/CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## [Unreleased]
44

5-
## 26.2.12 (2024-09-03)
5+
## 26.2.13 (2024-09-05)
66

77
### Chart
88

controls/diagrams/CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## [Unreleased]
44

5-
## 26.2.12 (2024-09-03)
5+
## 26.2.13 (2024-09-05)
66

77
### Diagram
88

controls/documenteditor/CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## [Unreleased]
44

5-
## 26.2.12 (2024-09-03)
5+
## 26.2.13 (2024-09-05)
66

77
### DocumentEditor
88

controls/drawings/CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## [Unreleased]
44

5-
## 26.2.12 (2024-09-03)
5+
## 26.2.13 (2024-09-05)
66

77
### Drawings
88

controls/dropdowns/CHANGELOG.md

+14
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,20 @@
22

33
## [Unreleased]
44

5+
## 26.2.13 (2024-09-05)
6+
7+
### ComboBox
8+
9+
#### Bug Fixes
10+
11+
- `#FB60719` - The issue where the "Change Event Was Not Triggered When Removing Bound Value Using the Backspace Key" has been resolved.
12+
13+
### DropDownTree
14+
15+
#### Bug Fixes
16+
17+
- `#I622674` - The issue where, when multi selection is enabled, selected items were just appended into one string for the aria-label in the Dropdown Tree has been resolved.
18+
519
## 26.2.11 (2024-08-27)
620

721
### MultiSelect

controls/dropdowns/node_modules/@types/node/README.md

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

controls/dropdowns/node_modules/aws-sdk/README.md

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

controls/dropdowns/node_modules/axios/README.md

+4-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

controls/dropdowns/node_modules/picocolors/README.md

+158-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

controls/dropdowns/spec/drop-down-tree/drop-down-tree.spec.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -1337,7 +1337,7 @@ describe('DropdownTree', () => {
13371337
let ele = ddtreeObj.element;
13381338
ele.focus();
13391339
ddtreeObj.showPopup();
1340-
expect(((ddtreeObj).element.parentElement as any).ariaLabel).toBe('Australia New South Wales');
1340+
expect(((ddtreeObj).element.parentElement as any).ariaLabel).toBe('Australia, New South Wales');
13411341
ddtreeObj.value = ['7'];
13421342
ddtreeObj.dataBind();
13431343
expect((ddtreeObj as any).element.value).toBe("Brazil");
@@ -1354,12 +1354,12 @@ describe('DropdownTree', () => {
13541354
let ele = ddtreeObj.element;
13551355
ele.focus();
13561356
ddtreeObj.showPopup();
1357-
expect(((ddtreeObj).element.parentElement as any).ariaLabel).toBe('Victoria Western Australia Ceará');
1357+
expect(((ddtreeObj).element.parentElement as any).ariaLabel).toBe('Victoria, Western Australia, Ceará');
13581358
ddtreeObj.value = ['1'];
13591359
ddtreeObj.dataBind();
13601360
expect((ddtreeObj as any).element.value).toBe("Australia");
13611361
expect(((ddtreeObj).element.parentElement as any).ariaLabel).toBe('Australia');
13621362
(ddtreeObj as any).onFocusOut();
13631363
});
13641364

1365-
});
1365+
});

controls/dropdowns/src/combo-box/combo-box.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -927,7 +927,7 @@ export class ComboBox extends DropDownList {
927927
this.onChangeEvent(e);
928928
}
929929
}
930-
} else if (this.allowCustom && this.isInteracted) {
930+
} else if (this.allowCustom && this.isFocused) {
931931
this.isSelectCustom = true;
932932
}
933933
}

controls/dropdowns/src/drop-down-list/drop-down-list.ts

+3
Original file line numberDiff line numberDiff line change
@@ -150,6 +150,7 @@ export class DropDownList extends DropDownBase implements IInput {
150150
protected selectedElementID: string;
151151
private preselectedIndex: number;
152152
private isTouched: boolean = false;
153+
protected isFocused: boolean = false;
153154
private clearButton: HTMLElement;
154155

155156
/**
@@ -845,6 +846,7 @@ export class DropDownList extends DropDownBase implements IInput {
845846
this.isActive = false;
846847
this.beforePopupOpen = false;
847848
}
849+
this.isFocused = false;
848850
}
849851

850852
protected focusOutAction(e?: MouseEvent | KeyboardEventArgs): void {
@@ -879,6 +881,7 @@ export class DropDownList extends DropDownBase implements IInput {
879881
this.trigger('focus', args);
880882
}
881883
this.updateIconState();
884+
this.isFocused = true;
882885
}
883886

884887
private resetValueHandler(e: Event): void {

controls/dropdowns/src/drop-down-tree/drop-down-tree.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -2247,7 +2247,7 @@ export class DropDownTree extends Component<HTMLElement> implements INotifyPrope
22472247
this.currentText = this.text;
22482248
this.currentValue = this.value;
22492249
if (!isNOU(this.value) && this.value.length > 0 && !isNOU(this.currentText)) {
2250-
this.inputWrapper.setAttribute('aria-label', this.currentText.split(',').join(' '));
2250+
this.inputWrapper.setAttribute('aria-label', this.currentText.replace(/,/g, ', '));
22512251
}
22522252
if (this.isInitialized) {
22532253
this.triggerChangeEvent();
@@ -3150,7 +3150,7 @@ export class DropDownTree extends Component<HTMLElement> implements INotifyPrope
31503150
this.currentText = this.text;
31513151
this.currentValue = this.value;
31523152
if (!isNOU(this.value) && this.value.length > 0 && !isNOU(this.currentText)) {
3153-
this.inputWrapper.setAttribute('aria-label', this.currentText.split(',').join(' '));
3153+
this.inputWrapper.setAttribute('aria-label', this.currentText.replace(/,/g, ', '));
31543154
}
31553155
else {
31563156
this.inputWrapper.setAttribute('aria-label', this.getModuleName());

controls/dropdowns/src/mention/mention.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -966,7 +966,7 @@ export class Mention extends DropDownBase {
966966

967967
private getLastLetter(text: string): string {
968968
if (isNullOrUndefined(text)) {return ''; }
969-
const textValue: string = text.replace(/\u00A0/g, ' ');
969+
const textValue: string = text.indexOf('\u200B') > -1 ? text.replace(/\u200B/g, '').replace(/\u00A0/g, ' ') : text.replace(/\u00A0/g, ' ');
970970
const words: string[] = textValue.split(/\s+/);
971971
const wordCnt: number = words.length - 1;
972972
return words[wordCnt as number].trim();

controls/ej2/node_modules/@syncfusion/ej2-pdf/node_modules/@types/node/README.md

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

controls/ej2/node_modules/aws-sdk/README.md

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)