Skip to content

Commit 82d9a2f

Browse files
author
pipeline
committed
v20.3.59 is released
1 parent 505fdb0 commit 82d9a2f

Some content is hidden

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

50 files changed

+1622
-3200
lines changed

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+
## 20.3.59 (2022-11-29)
6+
7+
### Common
8+
9+
#### Bug Fixes
10+
11+
- `#I415706` - The issue with "Schedule component module injection is not working in the Vue 3 script setup" has been resolved.
12+
513
## 20.3.49 (2022-10-11)
614

715
### Common

components/base/src/component-base.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@ import Vue from 'vue';
6363
}
6464
let injectables: any = getValue('$root.$options.provide', this);
6565
let vueInjectables: any = getValue('$parent.$options.provide', this);
66+
vueInjectables = !isNullOrUndefined(vueInjectables) ? vueInjectables : getValue('$.parent.provides', this);
6667
if (this.hasInjectedModules && !isExecute) {
6768
let prevModule: Object[] = [];
6869
if (injectables && injectables.managed) {
@@ -108,6 +109,9 @@ import Vue from 'vue';
108109
} else if (this.$parent) {
109110
provide = getValue('$parent.$options.provide', this);
110111
}
112+
if (isNullOrUndefined(provide) && !isNullOrUndefined(this.$)) {
113+
provide = getValue('$.parent.provides', this);
114+
}
111115
if (provide) {
112116
// tslint:disable:no-any
113117
let injectables: any = provide;

components/buttons/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-buttons",
3-
"version": "20.3.57",
3+
"version": "20.3.58",
44
"description": "A package of feature-rich Essential JS 2 components such as Button, CheckBox, RadioButton and Switch. for Vue",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/charts/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-charts",
3-
"version": "20.3.57",
3+
"version": "20.3.58",
44
"description": "Feature-rich chart control with built-in support for over 25 chart types, technical indictors, trendline, zooming, tooltip, selection, crosshair and trackball. for Vue",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/circulargauge/CHANGELOG.md

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

66
## [Unreleased]
77

8-
## 20.3.58 (2022-11-22)
8+
## 20.3.59 (2022-11-29)
99

1010
### Circular Gauge
1111

components/diagrams/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@
1010

1111
- `#I418455` - Now, the resize handle has been rendered properly while set node pivot as 0,0.
1212
- `#I418026` - Now, the annotation for the swimlane child node is updated properly after dragging it outside the swimlane.
13+
- `#FB38642` - Now, the arg cancel property for sourcePoint and targetPoint change is working properly.
14+
- `#I419333` - Now, dragging a object outside the diagram canvas from symbol palette is updated properly.
15+
- `#I397852` - Now, defining connector without source or target id while injecting Line Routing is rendered properly.
16+
- `#I42108` - The issue on hovering the node ports has been resolved.
1317

1418
## 20.3.57 (2022-11-15)
1519

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": "20.3.57",
3+
"version": "20.3.58",
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: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,15 @@
22

33
## [Unreleased]
44

5+
## 20.3.59 (2022-11-29)
6+
7+
### Document Editor
8+
9+
#### Bug Fixes
10+
11+
- `#I417535` - The page number is not updated properly while inserting TOC.
12+
- `#I418000` , `#F178993` - Resolved the tab character width issue.
13+
514
## 20.3.58 (2022-11-22)
615

716
### 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": "20.3.57",
3+
"version": "20.3.58",
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: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,20 @@
22

33
## [Unreleased]
44

5+
## 20.3.59 (2022-11-29)
6+
7+
### ListBox
8+
9+
#### Bug Fixes
10+
11+
- `#F37860` - Issue with "Command button not working properly for multiselect in ListBox in Mac" has been resolved.
12+
13+
### ComboBox
14+
15+
#### Bug Fixes
16+
17+
- `#I417583` - The issue "Selected value is not updated based on value when dynamically updating datasource" has been resolved.
18+
519
## 20.3.58 (2022-11-22)
620

721
### MultiSelect

components/dropdowns/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-dropdowns",
3-
"version": "20.3.56",
3+
"version": "20.3.58",
44
"description": "Essential JS 2 DropDown Components for Vue",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/gantt/CHANGELOG.md

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

33
## [Unreleased]
44

5+
## 20.3.59 (2022-11-29)
6+
7+
### Gantt
8+
9+
#### Bug Fixes
10+
11+
- `#I419062` - Edit type issue when datasource is undefined issue has been fixed.
12+
- `#I417042` - A console error is thrown when updating the parent task's start date.
13+
- `#I419262` - The dependency line is rendered even after cancel.
14+
515
## 20.3.58 (2022-11-22)
616

717
### Gantt

components/gantt/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-gantt",
3-
"version": "20.3.57",
3+
"version": "20.3.58",
44
"description": "Essential JS 2 Gantt Component for Vue",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

0 commit comments

Comments
 (0)