Skip to content

Commit 1d1b944

Browse files
author
pipeline
committed
v17.1.50 is released
1 parent 8bf747a commit 1d1b944

File tree

75 files changed

+300
-60
lines changed

Some content is hidden

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

75 files changed

+300
-60
lines changed

components/base/CHANGELOG.md

Lines changed: 1 addition & 1 deletion

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

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/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: 24 additions & 0 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: 24 additions & 0 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/src/button/button.component.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,13 @@ export class ButtonComponent extends ComponentBase {
5151
return createElement('button', (this as any).$slots.default);
5252
}
5353

54+
public click(): void {
55+
return this.ej2Instances.click();
56+
}
57+
58+
public focusIn(): void {
59+
return this.ej2Instances.focusIn();
60+
}
5461
}
5562

5663
export const ButtonPlugin = {

components/buttons/src/check-box/checkbox.component.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,13 @@ export class CheckBoxComponent extends ComponentBase {
7070
return createElement('input', (this as any).$slots.default);
7171
}
7272

73+
public click(): void {
74+
return this.ej2Instances.click();
75+
}
76+
77+
public focusIn(): void {
78+
return this.ej2Instances.focusIn();
79+
}
7380
}
7481

7582
export const CheckBoxPlugin = {

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

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,14 @@ export class RadioButtonComponent extends ComponentBase {
7070
return createElement('input', (this as any).$slots.default);
7171
}
7272

73+
public click(): void {
74+
return this.ej2Instances.click();
75+
}
76+
77+
public focusIn(): void {
78+
return this.ej2Instances.focusIn();
79+
}
80+
7381
public getSelectedValue(): string {
7482
return this.ej2Instances.getSelectedValue();
7583
}

0 commit comments

Comments
 (0)