Skip to content

Commit a03cdaa

Browse files
author
pipeline
committed
v16.4.44 is released
1 parent 489b7fc commit a03cdaa

File tree

100 files changed

+418
-113
lines changed

Some content is hidden

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

100 files changed

+418
-113
lines changed

components/base/package.json

Lines changed: 2 additions & 1 deletion
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.42",
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",
@@ -19,6 +19,7 @@
1919
"type": "git",
2020
"url": "https://github.com/syncfusion/ej2-vue-ui-components.git"
2121
},
22+
"homepage": "https://www.syncfusion.com/vue-ui-components",
2223
"main": "./dist/ej2-vue-base.umd.min.js",
2324
"module": "./index.js",
2425
"readme": "ReadMe.md",

components/buttons/dist/ej2-vue-buttons.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/buttons/dist/ej2-vue-buttons.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/buttons/dist/es6/ej2-vue-buttons.es2015.js

Lines changed: 3 additions & 3 deletions
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

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/buttons/dist/es6/ej2-vue-buttons.es5.js

Lines changed: 3 additions & 3 deletions
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

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/buttons/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-buttons",
3-
"version": "16.4.40",
3+
"version": "16.4.42",
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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])) {

0 commit comments

Comments
 (0)