Skip to content

Commit d0e7ecf

Browse files
author
pipeline
committed
v32.2.3 is released
1 parent 2582de5 commit d0e7ecf

File tree

2,310 files changed

+43392
-2599
lines changed

Some content is hidden

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

2,310 files changed

+43392
-2599
lines changed

README.md

Lines changed: 1360 additions & 195 deletions
Large diffs are not rendered by default.

controls/barcodegenerator/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## [Unreleased]
44

5-
## 32.1.25 (2026-01-27)
5+
## 32.2.3 (2026-02-05)
66

77
### Barcode
88

controls/base/src/dom.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -321,7 +321,10 @@ export function selectAll(selector: string, context: Document | Element = docume
321321
* @returns {string} ?
322322
* @private
323323
*/
324-
function querySelectId(selector: string): string {
324+
function querySelectId(selector: string): string {
325+
if (selector.indexOf('\\#') !== -1) {
326+
return selector;
327+
}
325328
const charRegex: RegExp = /(!|"|\$|%|&|'|\(|\)|\*|\/|:|;|<|=|\?|@|\]|\^|`|{|}|\||\+|~)/g;
326329
if (selector.match(/#[0-9]/g) || selector.match(charRegex)) {
327330
const idList: string[] = selector.split(',');

controls/blockeditor/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## [Unreleased]
44

5-
## 32.1.25 (2026-01-27)
5+
## 32.2.3 (2026-02-05)
66

77
### Block Editor
88

controls/blockeditor/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@
5858
],
5959
"repository": {
6060
"type": "git",
61-
"url": "https://github.com/essential-studio/ej2-blockeditor-component.git"
61+
"url": "https://github.com/syncfusion/ej2-javascript-ui-controls.git"
6262
},
6363
"scripts": {
6464
"build": "gulp build",

controls/charts/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## [Unreleased]
44

5-
## 32.1.25 (2026-01-27)
5+
## 32.2.3 (2026-02-05)
66

77
### Chart
88

controls/data/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## [Unreleased]
44

5-
## 32.1.25 (2026-01-27)
5+
## 32.2.3 (2026-02-05)
66

77
### DataManager
88

controls/diagrams/karma.conf.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,8 @@ module.exports = function (config) {
3737
{ pattern: "node_modules/@syncfusion/ej2-navigations/**/*.js", included: false },
3838
{ pattern: "node_modules/@syncfusion/ej2-splitbuttons/**/*.js", included: false },
3939
{ pattern: "node_modules/es6-promise/dist/es6-promise.js", included: false },
40-
{ pattern: 'spec/**/*.json', included: false }
40+
{ pattern: 'spec/**/*.json', included: false },
41+
{ pattern: 'spec/diagram/visio/Vsdx/*.vsdx', watched: false, served: true, included: false }
4142
// Add dependent package's script files here
4243
],
4344

controls/diagrams/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-diagrams",
3-
"version": "32.1.24",
3+
"version": "32.1.25",
44
"description": "Feature-rich diagram control to create diagrams like flow charts, organizational charts, mind maps, and BPMN diagrams. Its rich feature set includes built-in shapes, editing, serializing, exporting, printing, overview, data binding, and automatic layouts.",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",
Binary file not shown.

0 commit comments

Comments
 (0)