Skip to content

Commit ed64eea

Browse files
author
pipeline
committed
v24.2.3 is released
1 parent e4c064c commit ed64eea

File tree

85 files changed

+222
-78
lines changed

Some content is hidden

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

85 files changed

+222
-78
lines changed

components/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-
## 24.1.47 (2024-01-23)
5+
## 24.2.3 (2024-01-31)
66

77
### Barcode
88

components/base/CHANGELOG.md

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

33
## [Unreleased]
44

5-
## 24.1.47 (2024-01-23)
5+
## 24.2.3 (2024-01-31)
6+
7+
### Common
8+
9+
#### Bug Fixes
10+
11+
- `#I528934` - The issue with "Reactivity is not working in Vue Grid component" has been resolved.
12+
13+
## 24.1.41 (2023-12-18)
614

715
### Common
816

components/base/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-base",
3-
"version": "19.3.53",
3+
"version": "24.1.41",
44
"description": "A common package of Essential JS 2 base Vue libraries, methods and class definitions",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/base/src/component-base.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* Vue Component Base
33
*/
44
import * as Vue from 'vue';
5-
import { isNullOrUndefined, extend, getValue } from '@syncfusion/ej2-base';
5+
import { isNullOrUndefined, extend, getValue, setProxyToRaw } from '@syncfusion/ej2-base';
66

77
function _interopRequireWildcard(obj: any) { if (obj && obj.__esModule) { return obj; } else { let newObj: any = {}; if (obj != null) { for (let key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[`${key}`] = obj[`${key}`]; } } newObj.default = obj; return newObj; } }
88

@@ -515,4 +515,6 @@ export function getProps(options: any = {}): any {
515515
}
516516
}
517517
return [options.newprops, options.watch];
518-
}
518+
}
519+
520+
if (!isExecute) setProxyToRaw(aVue.toRaw);

components/calendars/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+
## 24.2.3 (2024-01-31)
6+
7+
### DateTimePicker
8+
9+
#### Bug Fixes
10+
11+
- `#I541657` - Fixed an issue where the change event in the DateTimePicker was firing after the first time losing focus when milliseconds were included.
12+
513
## 24.1.47 (2024-01-23)
614

715
### DateRangePicker

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": "24.1.44",
3+
"version": "24.1.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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ export let CalendarComponent: DefineVueComponent<CalendarModel> = vueDefineComp
2929
provide() { return { custom: this.custom } },
3030
data() {
3131
return {
32-
ej2Instance: new Calendar({}) as any,
32+
ej2Instances: new Calendar({}) as any,
3333
propKeys: properties as string[],
3434
models: modelProps as string[],
3535
hasChildDirective: false as boolean,

components/calendars/src/datepicker/datepicker.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ export let DatePickerComponent: DefineVueComponent<DatePickerModel> = vueDefine
2929
provide() { return { custom: this.custom } },
3030
data() {
3131
return {
32-
ej2Instance: new DatePicker({}) as any,
32+
ej2Instances: new DatePicker({}) as any,
3333
propKeys: properties as string[],
3434
models: modelProps as string[],
3535
hasChildDirective: false as boolean,

components/calendars/src/daterangepicker/daterangepicker.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ export let DateRangePickerComponent: DefineVueComponent<DateRangePickerModel> =
3030
provide() { return { custom: this.custom } },
3131
data() {
3232
return {
33-
ej2Instance: new DateRangePicker({}) as any,
33+
ej2Instances: new DateRangePicker({}) as any,
3434
propKeys: properties as string[],
3535
models: modelProps as string[],
3636
hasChildDirective: true as boolean,

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ export let DateTimePickerComponent: DefineVueComponent<DateTimePickerModel> = v
2929
provide() { return { custom: this.custom } },
3030
data() {
3131
return {
32-
ej2Instance: new DateTimePicker({}) as any,
32+
ej2Instances: new DateTimePicker({}) as any,
3333
propKeys: properties as string[],
3434
models: modelProps as string[],
3535
hasChildDirective: false as boolean,

0 commit comments

Comments
 (0)