Skip to content

Commit 2f06471

Browse files
author
pipeline
committed
v16.4.45 is released
1 parent a03cdaa commit 2f06471

File tree

76 files changed

+207
-100
lines changed

Some content is hidden

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

76 files changed

+207
-100
lines changed

components/calendars/CHANGELOG.md

Lines changed: 23 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,29 +2,23 @@
22

33
## [Unreleased]
44

5-
## 16.4.44 (2018-12-24)
5+
## 16.4.45 (2018-12-24)
66

77
### DatePicker
88

99
#### Bug Fixes
1010

11-
- Fixed the `allowEdit` issue in mobile mode.
11+
- DatePicker will allow assigning string value when type system configuration is disabled.
1212

1313
#### New Features
1414

1515
- Added the Islamic DatePicker support.
1616

17-
### DateRangePicker
18-
19-
#### Bug Fixes
20-
21-
- Fixed the localization issue in preset `custom range` element.
22-
2317
### TimePicker
2418

2519
#### Bug Fixes
2620

27-
- Fixed the component destroy issue when `showClearButton` in disabled state.
21+
- Pop-up positioning support has been provided.
2822

2923
### Calendar
3024

@@ -38,6 +32,26 @@
3832

3933
- Added the Islamic DateTimePicker support.
4034

35+
## 16.4.44 (2018-12-24)
36+
37+
### DatePicker
38+
39+
#### Bug Fixes
40+
41+
- Fixed the `allowEdit` issue in mobile mode.
42+
43+
### DateRangePicker
44+
45+
#### Bug Fixes
46+
47+
- Fixed the localization issue in preset `custom range` element.
48+
49+
### TimePicker
50+
51+
#### Bug Fixes
52+
53+
- Fixed the component destroy issue when `showClearButton` in disabled state.
54+
4155
## 16.4.42 (2018-12-14)
4256

4357
### Calendar

components/calendars/dist/ej2-vue-calendars.umd.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

components/calendars/dist/ej2-vue-calendars.umd.min.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

components/calendars/dist/es6/ej2-vue-calendars.es2015.js

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

components/calendars/dist/es6/ej2-vue-calendars.es2015.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

components/calendars/dist/es6/ej2-vue-calendars.es5.js

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

components/calendars/dist/es6/ej2-vue-calendars.es5.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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": "16.4.42",
3+
"version": "16.4.44",
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
@@ -39,7 +39,7 @@ export class CalendarComponent extends ComponentBase {
3939
this.bindProperties();
4040
}
4141
public trigger(eventName: string, eventProp: {[key:string]:Object}): void {
42-
if (eventName === 'change' && this.models && (this.models.length !== 0)) {
42+
if ((eventName === 'change' || eventName === 'input') && this.models && (this.models.length !== 0)) {
4343
let key: string[] = this.models.toString().match(/checked|value/) || [];
4444
let propKey: string = key[0];
4545
if (eventProp && key && !isUndefined(eventProp[propKey])) {

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ export class DatePickerComponent extends ComponentBase {
3939
this.bindProperties();
4040
}
4141
public trigger(eventName: string, eventProp: {[key:string]:Object}): void {
42-
if (eventName === 'change' && this.models && (this.models.length !== 0)) {
42+
if ((eventName === 'change' || eventName === 'input') && this.models && (this.models.length !== 0)) {
4343
let key: string[] = this.models.toString().match(/checked|value/) || [];
4444
let propKey: string = key[0];
4545
if (eventProp && key && !isUndefined(eventProp[propKey])) {

0 commit comments

Comments
 (0)