Skip to content

Commit 863a34c

Browse files
author
pipeline
committed
v19.3.45 is released
1 parent 368ede1 commit 863a34c

Some content is hidden

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

49 files changed

+200
-46
lines changed

components/barcodegenerator/src/barcode-generator/barcodegenerator.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { BarcodeGenerator } from '@syncfusion/ej2-barcode-generator';
66

77

88
// {{VueImport}}
9-
export const properties: string[] = ['backgroundColor', 'displayText', 'enableCheckSum', 'enablePersistence', 'enableRtl', 'foreColor', 'height', 'locale', 'margin', 'mode', 'type', 'value', 'width', 'invalid'];
9+
export const properties: string[] = ['islazyUpdate', 'backgroundColor', 'displayText', 'enableCheckSum', 'enablePersistence', 'enableRtl', 'foreColor', 'height', 'locale', 'margin', 'mode', 'type', 'value', 'width', 'invalid'];
1010
export const modelProps: string[] = [];
1111

1212
export const testProp: any = getProps({props: properties});

components/barcodegenerator/src/datamatrix-generator/datamatrixgenerator.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { DataMatrixGenerator } from '@syncfusion/ej2-barcode-generator';
66

77

88
// {{VueImport}}
9-
export const properties: string[] = ['backgroundColor', 'displayText', 'enablePersistence', 'enableRtl', 'encoding', 'foreColor', 'height', 'locale', 'margin', 'mode', 'size', 'value', 'width', 'xDimension', 'invalid'];
9+
export const properties: string[] = ['islazyUpdate', 'backgroundColor', 'displayText', 'enablePersistence', 'enableRtl', 'encoding', 'foreColor', 'height', 'locale', 'margin', 'mode', 'size', 'value', 'width', 'xDimension', 'invalid'];
1010
export const modelProps: string[] = [];
1111

1212
export const testProp: any = getProps({props: properties});

components/barcodegenerator/src/qrcode-generator/qrcodegenerator.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { QRCodeGenerator } from '@syncfusion/ej2-barcode-generator';
66

77

88
// {{VueImport}}
9-
export const properties: string[] = ['backgroundColor', 'displayText', 'enablePersistence', 'enableRtl', 'errorCorrectionLevel', 'foreColor', 'height', 'locale', 'margin', 'mode', 'value', 'version', 'width', 'xDimension', 'invalid'];
9+
export const properties: string[] = ['islazyUpdate', 'backgroundColor', 'displayText', 'enablePersistence', 'enableRtl', 'errorCorrectionLevel', 'foreColor', 'height', 'locale', 'margin', 'mode', 'value', 'version', 'width', 'xDimension', 'invalid'];
1010
export const modelProps: string[] = [];
1111

1212
export const testProp: any = getProps({props: properties});

components/buttons/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-
## 19.3.44 (2021-10-05)
5+
## 19.3.45 (2021-10-12)
66

77
### Chips
88

components/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-
## 19.3.44 (2021-10-05)
5+
## 19.3.45 (2021-10-12)
66

77
### Chart
88

components/diagrams/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+
## 19.3.45 (2021-10-12)
6+
7+
### Diagram
8+
9+
#### Bug Fixes
10+
11+
- `#I342681` - The issue "BPMN Task shape becomes ellipse shape when printing the diagram" has been fixed.
12+
513
## 19.3.44 (2021-10-05)
614

715
### Diagram

components/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-vue-diagrams",
3-
"version": "19.2.62",
3+
"version": "19.3.44",
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. for Vue",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/documenteditor/CHANGELOG.md

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

33
## [Unreleased]
44

5+
## 19.3.45 (2021-10-12)
6+
7+
### Document Editor
8+
9+
#### Bug Fixes
10+
11+
- `#I341435` - Optimized the content change event triggering in Document Editor.
12+
- `#I340867` - Selection issue after applying character format is resolved.
13+
- `#I341335` - Resolved the text formatting preservation for merge fields.
14+
- `#I339239`, `#I339242`, `#I339021` - Resolved the text arrangement issue for RTL documents.
15+
- `#I335659` - Resolved the undo/redo some text in RTL mode.
16+
- `#I340643` - Resolved the comment mark removal issue in comment delete.
17+
- `#I339335` - Resolved the hanging issue in editing document with Hebrew text.
18+
- `#I340121` - Resolved the issue with elbow connector rendering as line connector.
19+
- `#I339453` - Resolved the rendering issue in fixed table width case.
20+
- `#I341119` - Resolved the image with top and bottom wrapping overlapping issue with table.
21+
22+
#### New Features
23+
24+
- `#I343497` - Added support to render the texture style for table cell shading.
25+
526
## 19.3.44 (2021-10-05)
627

728
### Document Editor

components/documenteditor/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-vue-documenteditor",
3-
"version": "19.18.7",
3+
"version": "19.3.44",
44
"description": "Feature-rich document editor control with built-in support for context menu, options pane and dialogs. for Vue",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/dropdowns/CHANGELOG.md

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

33
## [Unreleased]
44

5+
## 19.3.45 (2021-10-12)
6+
7+
### ComboBox
8+
9+
#### Bug Fixes
10+
11+
- `#I343666` - Issue with "data list is not updated to the popup while changing the query property on dynamically with filtering mode" has been resolved.
12+
513
## 19.3.44 (2021-10-05)
614

715
### Dropdown Tree
@@ -13,6 +21,7 @@
1321
#### Bug Fixes
1422

1523
- `#I342360`, `#I342351` - The issue with "The Dropdown Tree component is not rendered when providing an id that starts with an integer type" has been resolved.
24+
- `I341114` - Issue with "When listbox is selected with checkbox, drag and drop is not working properly" has been resolved.
1625

1726
## 19.2.62 (2021-09-14)
1827

0 commit comments

Comments
 (0)