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
}

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

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,14 @@ export class SwitchComponent 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 toggle(): void {
7482
return this.ej2Instances.toggle();
7583
}

components/charts/dist/ej2-vue-charts.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/charts/dist/ej2-vue-charts.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/charts/dist/es6/ej2-vue-charts.es2015.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/charts/dist/es6/ej2-vue-charts.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/charts/dist/es6/ej2-vue-charts.es5.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/charts/dist/es6/ej2-vue-charts.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/charts/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-charts",
3-
"version": "17.1.47",
3+
"version": "17.1.49",
44
"description": "Feature-rich chart control with built-in support for over 25 chart types, technical indictors, trendline, zooming, tooltip, selection, crosshair and trackball. for Vue",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/charts/src/sparkline/sparkline.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { Sparkline } from '@syncfusion/ej2-charts';
44
import { RangeBandSettingsDirective, RangeBandSettingDirective, RangeBandSettingsPlugin, RangeBandSettingPlugin } from './rangebandsettings.directive'
55

66

7-
export const properties: string[] = ['axisSettings', 'border', 'containerArea', 'dataLabelSettings', 'dataSource', 'enablePersistence', 'enableRtl', 'endPointColor', 'fill', 'format', 'height', 'highPointColor', 'lineWidth', 'locale', 'lowPointColor', 'markerSettings', 'negativePointColor', 'opacity', 'padding', 'palette', 'rangeBandSettings', 'startPointColor', 'theme', 'tiePointColor', 'tooltipSettings', 'type', 'useGroupingSeparator', 'valueType', 'width', 'xName', 'yName', 'axisRendering', 'dataLabelRendering', 'load', 'loaded', 'markerRendering', 'pointRegionMouseClick', 'pointRegionMouseMove', 'pointRendering', 'resize', 'seriesRendering', 'sparklineMouseClick', 'sparklineMouseMove', 'tooltipInitialize'];
7+
export const properties: string[] = ['axisSettings', 'border', 'containerArea', 'dataLabelSettings', 'dataSource', 'enablePersistence', 'enableRtl', 'endPointColor', 'fill', 'format', 'height', 'highPointColor', 'lineWidth', 'locale', 'lowPointColor', 'markerSettings', 'negativePointColor', 'opacity', 'padding', 'palette', 'query', 'rangeBandSettings', 'startPointColor', 'theme', 'tiePointColor', 'tooltipSettings', 'type', 'useGroupingSeparator', 'valueType', 'width', 'xName', 'yName', 'axisRendering', 'dataLabelRendering', 'load', 'loaded', 'markerRendering', 'pointRegionMouseClick', 'pointRegionMouseMove', 'pointRendering', 'resize', 'seriesRendering', 'sparklineMouseClick', 'sparklineMouseMove', 'tooltipInitialize'];
88
export const modelProps: string[] = [];
99

1010
/**

components/circulargauge/CHANGELOG.md

Lines changed: 8 additions & 0 deletions

components/documenteditor/CHANGELOG.md

Lines changed: 9 additions & 0 deletions

components/documenteditor/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-documenteditor",
3-
"version": "17.1.48",
3+
"version": "17.1.49",
44
"description": "Feature-rich document editor control with built-in support for context menu, options pane and dialogs. for Vue",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

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

Lines changed: 3 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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

Lines changed: 3 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

components/dropdowns/dist/es6/ej2-vue-dropdowns.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/dropdowns/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-dropdowns",
3-
"version": "17.1.48",
3+
"version": "17.1.49",
44
"description": "Essential JS 2 DropDown Components for Vue",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/dropdowns/src/list-box/listbox.component.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,10 @@ export class ListBoxComponent extends ComponentBase {
8282
return this.ej2Instances.enableItems(items, enable);
8383
}
8484

85+
public focusIn(): void {
86+
return this.ej2Instances.focusIn();
87+
}
88+
8589
public getDataByValue(value: string | number | boolean): Object | string | number | boolean {
8690
return this.ej2Instances.getDataByValue(value);
8791
}

components/gantt/dist/ej2-vue-gantt.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/gantt/dist/ej2-vue-gantt.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/gantt/dist/es6/ej2-vue-gantt.es2015.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/gantt/dist/es6/ej2-vue-gantt.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/gantt/dist/es6/ej2-vue-gantt.es5.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/gantt/dist/es6/ej2-vue-gantt.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/gantt/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-gantt",
3-
"version": "17.1.47",
3+
"version": "17.1.49",
44
"description": "Essential JS 2 Gantt Component for Vue",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/gantt/src/gantt/gantt.component.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,8 +88,8 @@ export class GanttComponent extends ComponentBase {
8888
return this.ej2Instances.addRecord(data, rowPosition, rowIndex);
8989
}
9090

91-
public cancelEdit(scrollTop: number): void {
92-
return this.ej2Instances.cancelEdit(scrollTop);
91+
public cancelEdit(): void {
92+
return this.ej2Instances.cancelEdit();
9393
}
9494

9595
public clearFiltering(): void {

components/grids/CHANGELOG.md

Lines changed: 17 additions & 0 deletions

components/inplaceeditor/CHANGELOG.md

Lines changed: 17 additions & 1 deletion

components/inputs/CHANGELOG.md

Lines changed: 8 additions & 0 deletions

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

Lines changed: 3 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

components/inputs/dist/es6/ej2-vue-inputs.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.

0 commit comments

Comments
 (0)