Skip to content

Commit 17c6440

Browse files
author
pipeline
committed
v23.1.43 is released
1 parent 1d6648c commit 17c6440

Some content is hidden

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

52 files changed

+234
-211
lines changed

components/barcodegenerator/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22

33
## [Unreleased]
44

5+
## 23.1.43 (2023-10-31)
6+
7+
### Barcode
8+
9+
#### Bug Fixes
10+
11+
- `#I508544` - Now, the DataMatrix barcode is rendered properly with alphanumeric values.
12+
513
## 19.1.63 (2021-05-13)
614

715
### Barcode

components/base/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22

33
## [Unreleased]
44

5+
## 23.1.43 (2023-10-31)
6+
7+
### Common
8+
9+
#### Bug Fixes
10+
11+
- `#I507537`, `#I508879`, `#I505342` - Resolved `chart` loading delays to enhance overall performance.
12+
513
## 23.1.38 (2023-09-26)
614

715
### Common

components/base/releasenotes/README.md

Lines changed: 0 additions & 183 deletions
This file was deleted.

components/base/src/complex-array-base.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,8 +217,10 @@ export class ArrayBase<T> {
217217
this.list[i].propCollection.dataSource = this.list[i].dataSource;
218218
this.list[i].hasChanges = true;
219219
}
220-
isSourceChanged = (JSON.stringify(this.list[i].propCollection.dataSource) !==
220+
if (this.list[i].property !== "series") {
221+
isSourceChanged = (JSON.stringify(this.list[i].propCollection.dataSource) !==
221222
JSON.stringify(childrenDataSource[i].propCollection.dataSource));
223+
}
222224
}
223225
isSourceChanged = this.list[i].hasChanges !== childrenDataSource[i].hasChanges;
224226
}
Binary file not shown.
-73 Bytes
Binary file not shown.
-74 Bytes
Binary file not shown.
Binary file not shown.
-74 Bytes
Binary file not shown.
-75 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)