Skip to content

Commit 2f9fffd

Browse files
author
pipeline
committed
v19.2.56 is released
1 parent 8aedec6 commit 2f9fffd

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

+227
-50
lines changed

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.2.55 (2021-08-11)
5+
## 19.2.47 (2021-07-13)
66

77
### Checkbox
88

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": "19.2.46",
3+
"version": "19.2.55",
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/buttons/src/button/button.component.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,6 @@ for (let props of modelProps) {
2323

2424
export const isExecute: any = gh ? false : true;
2525

26-
export let tempProxy: any;
27-
2826
/**
2927
* Represents the Essential JS 2 VueJS Button Component
3028
* ```html
@@ -59,7 +57,6 @@ export class ButtonComponent extends ComponentBase {
5957
this.bindProperties();
6058
this.ej2Instances._setProperties = this.ej2Instances.setProperties;
6159
this.ej2Instances.setProperties = this.setProperties;
62-
tempProxy = this;
6360
}
6461
public setProperties(prop: any, muteOnChange: boolean): void {
6562
if(this.isVue3) {

components/buttons/src/check-box/checkbox.component.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,6 @@ for (let props of modelProps) {
2424

2525
export const isExecute: any = gh ? false : true;
2626

27-
export let tempProxy: any;
28-
2927
/**
3028
* Represents the Essential JS 2 VueJS CheckBox Component
3129
* ```html
@@ -65,7 +63,6 @@ export class CheckBoxComponent extends ComponentBase {
6563
this.bindProperties();
6664
this.ej2Instances._setProperties = this.ej2Instances.setProperties;
6765
this.ej2Instances.setProperties = this.setProperties;
68-
tempProxy = this;
6966
}
7067
public setProperties(prop: any, muteOnChange: boolean): void {
7168
if(this.isVue3) {

components/buttons/src/chips/chiplist.component.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,6 @@ for (let props of modelProps) {
2424

2525
export const isExecute: any = gh ? false : true;
2626

27-
export let tempProxy: any;
28-
2927
/**
3028
* Represents the Essential JS 2 VueJS ChipList Component.
3129
* ```html
@@ -60,7 +58,6 @@ export class ChipListComponent extends ComponentBase {
6058
this.bindProperties();
6159
this.ej2Instances._setProperties = this.ej2Instances.setProperties;
6260
this.ej2Instances.setProperties = this.setProperties;
63-
tempProxy = this;
6461
}
6562
public setProperties(prop: any, muteOnChange: boolean): void {
6663
if(this.isVue3) {

components/buttons/src/radio-button/radiobutton.component.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,6 @@ for (let props of modelProps) {
2424

2525
export const isExecute: any = gh ? false : true;
2626

27-
export let tempProxy: any;
28-
2927
/**
3028
* Represents the Essential JS 2 VueJS RadioButton Component
3129
* ```html
@@ -65,7 +63,6 @@ export class RadioButtonComponent extends ComponentBase {
6563
this.bindProperties();
6664
this.ej2Instances._setProperties = this.ej2Instances.setProperties;
6765
this.ej2Instances.setProperties = this.setProperties;
68-
tempProxy = this;
6966
}
7067
public setProperties(prop: any, muteOnChange: boolean): void {
7168
if(this.isVue3) {

components/buttons/src/switch/switch.component.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,6 @@ for (let props of modelProps) {
2424

2525
export const isExecute: any = gh ? false : true;
2626

27-
export let tempProxy: any;
28-
2927
/**
3028
* Represents the Essential JS 2 VueJS Switch Component.
3129
* ```html
@@ -65,7 +63,6 @@ export class SwitchComponent extends ComponentBase {
6563
this.bindProperties();
6664
this.ej2Instances._setProperties = this.ej2Instances.setProperties;
6765
this.ej2Instances.setProperties = this.setProperties;
68-
tempProxy = this;
6966
}
7067
public setProperties(prop: any, muteOnChange: boolean): void {
7168
if(this.isVue3) {

components/calendars/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-calendars",
3-
"version": "19.2.47",
3+
"version": "19.2.55",
44
"description": "A complete package of date or time components with built-in features such as date formatting, inline editing, multiple (range) selection, range restriction, month and year selection, strict mode, and globalization. for Vue",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/charts/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.2.56 (2021-08-17)
6+
7+
### Chart
8+
9+
#### Bug Fixes
10+
11+
- `#337487` - Query selector issue fixed for container ID.
12+
513
## 19.2.55 (2021-08-11)
614

715
### Chart

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": "19.2.51",
3+
"version": "19.2.55",
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",

0 commit comments

Comments
 (0)