Skip to content

Commit 4d78d12

Browse files
author
pipeline
committed
v16.4.52 is released
1 parent 40c65fc commit 4d78d12

File tree

282 files changed

+725
-973
lines changed

Some content is hidden

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

282 files changed

+725
-973
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
* New [GitHub issue](https://github.com/syncfusion/ej2-vue-ui-components/issues/issues/new).
3838
* Ask your query in [Stack Overflow](https://stackoverflow.com/) with tag `syncfusion` and `ej2`.
3939
## License
40-
Check the license detail [here](https://github.com/syncfusion/ej2-vue-ui-components/blob/master/license).
40+
Check the license detail [here](https://github.com/syncfusion/ej2-vue-ui-components/blob/master/LICENSE).
4141
## Changelog
4242
Check the changelog [here](https://ej2.syncfusion.com/vue/documentation/release-notes?utm_source=npm&utm_campaign=ej2-vue-ui-components)
4343
© Copyright 2018 Syncfusion, Inc. All Rights Reserved.

components/base/CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## [Unreleased]
44

5-
## 17.1.1-beta (2019-01-22)
5+
## 16.4.46 (2019-01-08)
66

77
### Common
88

components/base/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -80,5 +80,5 @@ Check the license detail [here](https://github.com/syncfusion/ej2-vue-ui-compone
8080

8181
Check the changelog [here](https://ej2.syncfusion.com/vue/documentation/release-notes?utm_source=npm&utm_campaign=ej2-vue-base)
8282

83-
© Copyright 2018 Syncfusion, Inc. All Rights Reserved.
83+
© Copyright 2019 Syncfusion, Inc. All Rights Reserved.
8484
The Syncfusion Essential Studio license and copyright applies to this distribution.

components/base/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-vue-base",
3-
"version": "16.3.31",
3+
"version": "16.4.46",
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/buttons/CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## [Unreleased]
44

5-
## 17.1.1-beta (2019-01-22)
5+
## 16.4.40-beta (2018-12-10)
66

77
### Chips
88

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

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

components/buttons/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-vue-buttons",
3-
"version": "16.2.41",
3+
"version": "16.4.47",
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/check-box/checkbox.component.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ export class CheckBoxComponent 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/buttons/src/radio-button/radiobutton.component.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ export class RadioButtonComponent 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/buttons/src/switch/switch.component.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ export class SwitchComponent 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/buttons/styles/button/highcontrast-light.scss

-1
This file was deleted.

components/buttons/styles/check-box/highcontrast-light.scss

-1
This file was deleted.

components/buttons/styles/chips/highcontrast-light.scss

-1
This file was deleted.

components/buttons/styles/highcontrast-light.scss

-5
This file was deleted.

components/buttons/styles/radio-button/highcontrast-light.scss

-1
This file was deleted.

components/buttons/styles/switch/highcontrast-light.scss

-1
This file was deleted.

components/calendars/CHANGELOG.md

+36-6
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,13 @@
22

33
## [Unreleased]
44

5-
## 17.1.1-beta (2019-01-22)
5+
## 16.4.52 (2019-02-05)
66

7-
### TimePicker
8-
9-
#### Breaking Changes
7+
### Calendar
108

11-
- TimePicker pop-up will position at the center of the viewport in mobile resolution.
9+
#### Bug Fixes
1210

13-
### Calendar
11+
- Tabindex support has been provided.
1412

1513
#### New Features
1614

@@ -20,14 +18,46 @@
2018

2119
#### New Features
2220

21+
- Now, date type skeleton support has been provided for the format property.
22+
2323
- Added the Islamic DatePicker support.
2424

25+
#### Bug Fixes
26+
27+
- Tabindex support has been provided.
28+
2529
### DateTimePicker
2630

2731
#### New Features
2832

33+
- Now, scrollTo support has been added for the TimePicker pop-up element of the DateTimePicker. This is used to set the scroll position to the given time value when no value is selected in the popup list.
34+
2935
- Added the Islamic DateTimePicker support.
3036

37+
#### Bug Fixes
38+
39+
- Tabindex support has been provided.
40+
41+
### DateRangePicker
42+
43+
#### Bug Fixes
44+
45+
- Tabindex support has been provided.
46+
47+
### TimePicker
48+
49+
#### Bug Fixes
50+
51+
- Tabindex support has been provided.
52+
53+
## 16.4.48 (2019-01-22)
54+
55+
### TimePicker
56+
57+
#### Breaking Changes
58+
59+
- TimePicker pop-up will position at the center of the viewport in mobile resolution.
60+
3161
## 16.4.47 (2019-01-16)
3262

3363
### TimePicker

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

+3-3
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

+1-1
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

+6-6
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

+1-1
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

+6-6
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

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

components/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": "16.2.41",
3+
"version": "16.4.48",
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

+1-1
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

+1-1
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])) {

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

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

0 commit comments

Comments
 (0)