Skip to content

Commit 21f7659

Browse files
author
pipeline
committed
v19.2.48 is released
1 parent 7781fb8 commit 21f7659

File tree

1,559 files changed

+154
-183
lines changed

Some content is hidden

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

1,559 files changed

+154
-183
lines changed
File renamed without changes.

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

-3
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 vue Barcode Component
3028
* ```html
@@ -59,7 +57,6 @@ export class BarcodeGeneratorComponent 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/barcodegenerator/src/datamatrix-generator/datamatrixgenerator.component.ts renamed to src/barcodegenerator/src/datamatrix-generator/datamatrixgenerator.component.ts

-3
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 vue DataMatrix Component
3028
* ```html
@@ -59,7 +57,6 @@ export class DataMatrixGeneratorComponent 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/barcodegenerator/src/qrcode-generator/qrcodegenerator.component.ts renamed to src/barcodegenerator/src/qrcode-generator/qrcodegenerator.component.ts

-3
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 vue QRCode Component
3028
* ```html
@@ -59,7 +57,6 @@ export class QRCodeGeneratorComponent 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/base/CHANGELOG.md renamed to src/base/CHANGELOG.md

+6
File renamed without changes.
File renamed without changes.
File renamed without changes.

components/base/src/component-base.ts renamed to src/base/src/component-base.ts

+10-7
Original file line numberDiff line numberDiff line change
@@ -206,12 +206,15 @@ import Vue from 'vue';
206206
tempObj[key] = childSlot.props[key];
207207
});
208208
}
209-
if ((/[s]\b/).test(tagRef) && !(/[s]\b/).test(tagName) && innerDirValues) {
210-
items[tagName] =tempObj;
211-
}
212-
else {
213-
items[tagName].push(tempObj);
214-
}
209+
if ((/[s]\b/).test(tagRef) && innerDirValues) {
210+
if (!(/[s]\b/).test(tagName) || innerDirValues.length) {
211+
items[tagName] = tempObj;
212+
} else {
213+
items[tagName].push(tempObj);
214+
}
215+
} else {
216+
items[tagName].push(tempObj);
217+
}
215218
}
216219
return items;
217220
}
@@ -251,7 +254,7 @@ import Vue from 'vue';
251254
}
252255
if (slot.length > 1) {
253256
items = Object.keys(items).length == 0 && !items.length ? [] : items;
254-
if (childSlot.prop) { items.push(childSlot.prop); }
257+
if (childSlot.props) { items.push(childSlot.props); }
255258
}
256259
else {
257260
items = childSlot.props ? (<any>Object).assign(items, childSlot.props) : items;
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

components/buttons/CHANGELOG.md renamed to src/buttons/CHANGELOG.md

-2
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

components/calendars/package.json renamed to src/calendars/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-vue-calendars",
3-
"version": "19.2.46",
3+
"version": "19.2.47",
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/calendars/src/calendar/calendar.component.ts renamed to src/calendars/src/calendar/calendar.component.ts

-3
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 Calendar Component.
3129
* ```html
@@ -65,7 +63,6 @@ export class CalendarComponent 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/src/datepicker/datepicker.component.ts renamed to src/calendars/src/datepicker/datepicker.component.ts

-3
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 DatePicker Component.
3129
* ```html
@@ -65,7 +63,6 @@ export class DatePickerComponent 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/src/daterangepicker/daterangepicker.component.ts renamed to src/calendars/src/daterangepicker/daterangepicker.component.ts

-3
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,6 @@ for (let props of modelProps) {
2525

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

28-
export let tempProxy: any;
29-
3028
/**
3129
* Represents the Essential JS 2 VueJS DateRangePicker Component.
3230
* ```html
@@ -66,7 +64,6 @@ export class DateRangePickerComponent extends ComponentBase {
6664
this.bindProperties();
6765
this.ej2Instances._setProperties = this.ej2Instances.setProperties;
6866
this.ej2Instances.setProperties = this.setProperties;
69-
tempProxy = this;
7067
}
7168
public setProperties(prop: any, muteOnChange: boolean): void {
7269
if(this.isVue3) {

components/calendars/src/datetimepicker/datetimepicker.component.ts renamed to src/calendars/src/datetimepicker/datetimepicker.component.ts

-3
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 DateTimePicker Component.
3129
* ```html
@@ -65,7 +63,6 @@ export class DateTimePickerComponent 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) {
File renamed without changes.
File renamed without changes.

components/calendars/src/timepicker/timepicker.component.ts renamed to src/calendars/src/timepicker/timepicker.component.ts

-3
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 TimePicker Component.
3129
* ```html
@@ -65,7 +63,6 @@ export class TimePickerComponent 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) {
File renamed without changes.

components/charts/CHANGELOG.md renamed to src/charts/CHANGELOG.md

-2
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

components/circulargauge/CHANGELOG.md renamed to src/circulargauge/CHANGELOG.md

-2
File renamed without changes.
File renamed without changes.

components/diagrams/CHANGELOG.md renamed to src/diagrams/CHANGELOG.md

+7
File renamed without changes.
File renamed without changes.
File renamed without changes.

components/diagrams/src/diagram/diagram.component.ts renamed to src/diagrams/src/diagram/diagram.component.ts

-3
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,6 @@ for (let props of modelProps) {
3232

3333
export const isExecute: any = gh ? false : true;
3434

35-
export let tempProxy: any;
36-
3735
/**
3836
* Represents vue Diagram Component
3937
* ```html
@@ -68,7 +66,6 @@ export class DiagramComponent extends ComponentBase {
6866
this.bindProperties();
6967
this.ej2Instances._setProperties = this.ej2Instances.setProperties;
7068
this.ej2Instances.setProperties = this.setProperties;
71-
tempProxy = this;
7269
}
7370
public setProperties(prop: any, muteOnChange: boolean): void {
7471
if(this.isVue3) {
File renamed without changes.

0 commit comments

Comments
 (0)