Skip to content

Commit 5c37666

Browse files
author
pipeline
committed
v17.1.38 is released
1 parent 6d10048 commit 5c37666

File tree

281 files changed

+1155
-265
lines changed

Some content is hidden

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

281 files changed

+1155
-265
lines changed

components/base/CHANGELOG.md

+8

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": "17.1.1",
3+
"version": "17.1.32",
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

+20

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

+1-1
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": "17.1.1",
3+
"version": "17.1.32",
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
@@ -53,7 +53,7 @@ export class CheckBoxComponent extends ComponentBase {
5353
}
5454
}
5555
public trigger(eventName: string, eventProp: {[key:string]:Object}): void {
56-
if (eventName === 'change' && this.models && (this.models.length !== 0)) {
56+
if ((eventName === 'change' || eventName === 'input') && this.models && (this.models.length !== 0)) {
5757
let key: string[] = this.models.toString().match(/checked|value/) || [];
5858
let propKey: string = key[0];
5959
if (eventProp && key && !isUndefined(eventProp[propKey])) {

components/buttons/src/radio-button/radiobutton.component.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ export class RadioButtonComponent extends ComponentBase {
5353
}
5454
}
5555
public trigger(eventName: string, eventProp: {[key:string]:Object}): void {
56-
if (eventName === 'change' && this.models && (this.models.length !== 0)) {
56+
if ((eventName === 'change' || eventName === 'input') && this.models && (this.models.length !== 0)) {
5757
let key: string[] = this.models.toString().match(/checked|value/) || [];
5858
let propKey: string = key[0];
5959
if (eventProp && key && !isUndefined(eventProp[propKey])) {

components/buttons/src/switch/switch.component.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ export class SwitchComponent extends ComponentBase {
5353
}
5454
}
5555
public trigger(eventName: string, eventProp: {[key:string]:Object}): void {
56-
if (eventName === 'change' && this.models && (this.models.length !== 0)) {
56+
if ((eventName === 'change' || eventName === 'input') && this.models && (this.models.length !== 0)) {
5757
let key: string[] = this.models.toString().match(/checked|value/) || [];
5858
let propKey: string = key[0];
5959
if (eventProp && key && !isUndefined(eventProp[propKey])) {
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
@import 'button/bootstrap4.scss';
2+
@import 'check-box/bootstrap4.scss';
3+
@import 'radio-button/bootstrap4.scss';
4+
@import 'switch/bootstrap4.scss';
5+
@import 'chips/bootstrap4.scss';
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
@import 'ej2-buttons/styles/button/bootstrap4.scss';
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
@import 'ej2-buttons/styles/check-box/bootstrap4.scss';
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
@import 'ej2-buttons/styles/chips/bootstrap4.scss';
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
@import 'ej2-buttons/styles/radio-button/bootstrap4.scss';
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
@import 'ej2-buttons/styles/switch/bootstrap4.scss';

components/calendars/CHANGELOG.md

+1

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

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

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

+5-5
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": "17.1.1",
3+
"version": "17.1.32",
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
@@ -53,7 +53,7 @@ export class CalendarComponent extends ComponentBase {
5353
}
5454
}
5555
public trigger(eventName: string, eventProp: {[key:string]:Object}): void {
56-
if (eventName === 'change' && this.models && (this.models.length !== 0)) {
56+
if ((eventName === 'change' || eventName === 'input') && this.models && (this.models.length !== 0)) {
5757
let key: string[] = this.models.toString().match(/checked|value/) || [];
5858
let propKey: string = key[0];
5959
if (eventProp && key && !isUndefined(eventProp[propKey])) {

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ export class DatePickerComponent extends ComponentBase {
5353
}
5454
}
5555
public trigger(eventName: string, eventProp: {[key:string]:Object}): void {
56-
if (eventName === 'change' && this.models && (this.models.length !== 0)) {
56+
if ((eventName === 'change' || eventName === 'input') && this.models && (this.models.length !== 0)) {
5757
let key: string[] = this.models.toString().match(/checked|value/) || [];
5858
let propKey: string = key[0];
5959
if (eventProp && key && !isUndefined(eventProp[propKey])) {

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ export class DateRangePickerComponent extends ComponentBase {
5454
}
5555
}
5656
public trigger(eventName: string, eventProp: {[key:string]:Object}): void {
57-
if (eventName === 'change' && this.models && (this.models.length !== 0)) {
57+
if ((eventName === 'change' || eventName === 'input') && this.models && (this.models.length !== 0)) {
5858
let key: string[] = this.models.toString().match(/checked|value/) || [];
5959
let propKey: string = key[0];
6060
if (eventProp && key && !isUndefined(eventProp[propKey])) {

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ export class DateTimePickerComponent extends ComponentBase {
5353
}
5454
}
5555
public trigger(eventName: string, eventProp: {[key:string]:Object}): void {
56-
if (eventName === 'change' && this.models && (this.models.length !== 0)) {
56+
if ((eventName === 'change' || eventName === 'input') && this.models && (this.models.length !== 0)) {
5757
let key: string[] = this.models.toString().match(/checked|value/) || [];
5858
let propKey: string = key[0];
5959
if (eventProp && key && !isUndefined(eventProp[propKey])) {

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ export class TimePickerComponent extends ComponentBase {
5353
}
5454
}
5555
public trigger(eventName: string, eventProp: {[key:string]:Object}): void {
56-
if (eventName === 'change' && this.models && (this.models.length !== 0)) {
56+
if ((eventName === 'change' || eventName === 'input') && this.models && (this.models.length !== 0)) {
5757
let key: string[] = this.models.toString().match(/checked|value/) || [];
5858
let propKey: string = key[0];
5959
if (eventProp && key && !isUndefined(eventProp[propKey])) {
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
@import 'calendar/bootstrap4.scss';
2+
@import 'timepicker/bootstrap4.scss';
3+
@import 'datepicker/bootstrap4.scss';
4+
@import 'daterangepicker/bootstrap4.scss';
5+
@import 'datetimepicker/bootstrap4.scss';
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
@import 'ej2-calendars/styles/calendar/bootstrap4.scss';
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
@import 'ej2-calendars/styles/datepicker/bootstrap4.scss';
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
@import 'ej2-calendars/styles/daterangepicker/bootstrap4.scss';
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
@import 'ej2-calendars/styles/datetimepicker/bootstrap4.scss';
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
@import 'ej2-calendars/styles/timepicker/bootstrap4.scss';

components/charts/CHANGELOG.md

+28-7

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

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

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

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

0 commit comments

Comments
 (0)