Skip to content

Commit 40c65fc

Browse files
author
pipeline
committed
v17.1.1-beta is released
1 parent 3970d21 commit 40c65fc

File tree

280 files changed

+1018
-577
lines changed

Some content is hidden

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

280 files changed

+1018
-577
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-
## 16.4.46 (2019-01-08)
5+
## 17.1.1-beta (2019-01-22)
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 2019 Syncfusion, Inc. All Rights Reserved.
83+
© Copyright 2018 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.4.46",
3+
"version": "16.3.31",
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-
## 16.4.40-beta (2018-12-10)
5+
## 17.1.1-beta (2019-01-22)
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.4.47",
3+
"version": "16.2.41",
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' || eventName === 'input') && this.models && (this.models.length !== 0)) {
42+
if (eventName === 'change' && 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' || eventName === 'input') && this.models && (this.models.length !== 0)) {
42+
if (eventName === 'change' && 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' || eventName === 'input') && this.models && (this.models.length !== 0)) {
42+
if (eventName === 'change' && 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])) {
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
@import 'ej2-buttons/styles/button/highcontrast-light.scss';
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
@import 'ej2-buttons/styles/check-box/highcontrast-light.scss';
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
@import 'ej2-buttons/styles/chips/highcontrast-light.scss';
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
@import 'button/highcontrast-light.scss';
2+
@import 'check-box/highcontrast-light.scss';
3+
@import 'radio-button/highcontrast-light.scss';
4+
@import 'switch/highcontrast-light.scss';
5+
@import 'chips/highcontrast-light.scss';
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
@import 'ej2-buttons/styles/radio-button/highcontrast-light.scss';
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
@import 'ej2-buttons/styles/switch/highcontrast-light.scss';

components/calendars/CHANGELOG.md

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

33
## [Unreleased]
44

5-
## 16.4.48 (2019-01-16)
5+
## 17.1.1-beta (2019-01-22)
66

77
### TimePicker
88

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.4.47",
3+
"version": "16.2.41",
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' || eventName === 'input') && this.models && (this.models.length !== 0)) {
42+
if (eventName === 'change' && 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' || eventName === 'input') && this.models && (this.models.length !== 0)) {
42+
if (eventName === 'change' && 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' || eventName === 'input') && this.models && (this.models.length !== 0)) {
43+
if (eventName === 'change' && 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])) {

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { ComponentBase, EJComponentDecorator } from '@syncfusion/ej2-vue-base';
44
import { DateTimePicker } from '@syncfusion/ej2-calendars';
55

66

7-
export const properties: string[] = ['allowEdit', 'calendarMode', 'cssClass', 'depth', 'enablePersistence', 'enableRtl', 'enabled', 'firstDayOfWeek', 'floatLabelType', 'format', 'isMultiSelection', 'locale', 'max', 'min', 'placeholder', 'readonly', 'showClearButton', 'showTodayButton', 'start', 'step', 'strictMode', 'timeFormat', 'value', 'values', 'weekNumber', 'width', 'zIndex', 'blur', 'change', 'close', 'created', 'destroyed', 'focus', 'navigated', 'open', 'renderDayCell'];
7+
export const properties: string[] = ['allowEdit', 'calendarMode', 'cssClass', 'depth', 'enablePersistence', 'enableRtl', 'enabled', 'firstDayOfWeek', 'floatLabelType', 'format', 'isMultiSelection', 'locale', 'max', 'min', 'placeholder', 'readonly', 'scrollTo', 'showClearButton', 'showTodayButton', 'start', 'step', 'strictMode', 'timeFormat', 'value', 'values', 'weekNumber', 'width', 'zIndex', 'blur', 'change', 'close', 'created', 'destroyed', 'focus', 'navigated', 'open', 'renderDayCell'];
88
export const modelProps: string[] = ['value'];
99

1010
/**
@@ -39,7 +39,7 @@ export class DateTimePickerComponent extends ComponentBase {
3939
this.bindProperties();
4040
}
4141
public trigger(eventName: string, eventProp: {[key:string]:Object}): void {
42-
if ((eventName === 'change' || eventName === 'input') && this.models && (this.models.length !== 0)) {
42+
if (eventName === 'change' && 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)