Skip to content

Commit bbff062

Browse files
author
pipeline
committed
v19.2.56 is released
1 parent 703b794 commit bbff062

File tree

185 files changed

+3056
-4195
lines changed

Some content is hidden

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

185 files changed

+3056
-4195
lines changed

controls/base/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## [Unreleased]
44

5-
## 19.2.55 (2021-08-11)
5+
## 19.2.56 (2021-08-17)
66

77
### Common
88

controls/buttons/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## [Unreleased]
44

5-
## 19.2.55 (2021-08-11)
5+
## 19.2.56 (2021-08-17)
66

77
### Checkbox
88

controls/calendars/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-calendars",
3-
"version": "19.2.47",
3+
"version": "19.2.55",
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.",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

controls/charts/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22

33
## [Unreleased]
44

5+
## 19.2.56 (2021-08-17)
6+
7+
### Chart
8+
9+
#### Bug Fixes
10+
11+
- `#337487` - Query selector issue fixed for container ID.
12+
513
## 19.2.55 (2021-08-11)
614

715
### Chart

controls/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-charts",
3-
"version": "19.2.51",
3+
"version": "19.2.55",
44
"description": "Feature-rich chart control with built-in support for over 25 chart types, technical indictors, trendline, zooming, tooltip, selection, crosshair and trackball.",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

controls/charts/spec/chart/user-interaction/crosshair.spec.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -681,8 +681,8 @@ describe('Chart Crosshair', () => {
681681
expect(element2.getAttribute('fill') == 'green' || element2.getAttribute('fill') == null ).toBe(true);
682682
done();
683683
};
684-
chartObj.crosshair.horizontalColor= 'red';
685-
chartObj.crosshair.verticalColor = 'green';
684+
chartObj.crosshair.horizontalLineColor = 'red';
685+
chartObj.crosshair.verticalLineColor = 'green';
686686
chartObj.loaded = loaded;
687687
chartObj.refresh();
688688
});

controls/charts/src/chart/chart-model.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,13 +67,13 @@ export interface CrosshairSettingsModel {
6767
* The color of the border that accepts value in hex and rgba as a valid CSS color string.
6868
* @default ''
6969
*/
70-
verticalColor?: string;
70+
verticalLineColor?: string;
7171

7272
/**
7373
* The color of the border that accepts value in hex and rgba as a valid CSS color string.
7474
* @default ''
7575
*/
76-
horizontalColor?: string;
76+
horizontalLineColor?: string;
7777

7878
/**
7979
* The opacity for background.

controls/charts/src/chart/chart.ts

Lines changed: 14 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -179,15 +179,15 @@ export class CrosshairSettings extends ChildProperty<CrosshairSettings> {
179179
* @default ''
180180
*/
181181
@Property('')
182-
public verticalColor: string;
183-
182+
public verticalLineColor: string;
183+
184184
/**
185185
* The color of the border that accepts value in hex and rgba as a valid CSS color string.
186186
* @default ''
187187
*/
188188
@Property('')
189-
public horizontalColor: string;
190-
189+
public horizontalLineColor: string;
190+
191191
/**
192192
* The opacity for background.
193193
* @default 1
@@ -1566,12 +1566,18 @@ export class Chart extends Component<HTMLElement> implements INotifyPropertyChan
15661566
* Return the proper ID when the special character exist in the ID
15671567
*/
15681568
private isIdHasSpecialCharacter(elementId: string): string {
1569-
const regex: RegExp = /^[A-Za-z0-9 ]+$/;
1569+
const regex: RegExp = /^[A-Za-z ]+$/;
1570+
const numberRegex: RegExp = /^[0-9 ]+$/;
15701571
let childElementId: string = '';
15711572
if (!regex.test(elementId)) {
1572-
for (let i: number = 0; i < elementId.length; i++) {
1573+
let start: number = 0;
1574+
if (numberRegex.test(elementId[0])) {
1575+
childElementId += ('\\3' + elementId[0]);
1576+
start = 1;
1577+
}
1578+
for (let i: number = start; i < elementId.length; i++) {
15731579
if (!regex.test(elementId[i]) && elementId.indexOf('-') === -1 &&
1574-
elementId.indexOf('_') === -1 && elementId.indexOf('\\') === -1) {
1580+
elementId.indexOf('_') === -1 && elementId.indexOf('\\') === -1 && !numberRegex.test(elementId[i])) {
15751581
childElementId += ('\\' + elementId[i]);
15761582
} else {
15771583
childElementId += elementId[i];
@@ -3786,4 +3792,4 @@ export class Chart extends Component<HTMLElement> implements INotifyPropertyChan
37863792
}
37873793
}
37883794
}
3789-
}
3795+
}

controls/charts/src/chart/user-interaction/crosshair.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ export class Crosshair {
159159
}
160160
options = new PathOption(
161161
this.elementID + '_HorizontalLine', 'none', crosshair.line.width,
162-
crosshair.horizontalColor || crosshair.line.color || chart.themeStyle.crosshairLine, crosshair.opacity, crosshair.dashArray, horizontalCross
162+
crosshair.horizontalLineColor || crosshair.line.color || chart.themeStyle.crosshairLine, crosshair.opacity, crosshair.dashArray, horizontalCross
163163
);
164164
this.drawCrosshairLine(options, cross, chartRect.x, this.valueY, chartRect.width, 0, horizontalCross);
165165
/**
@@ -168,7 +168,7 @@ export class Crosshair {
168168
*/
169169
options = new PathOption(
170170
this.elementID + '_VerticalLine', 'none', crosshair.line.width,
171-
crosshair.verticalColor || crosshair.line.color || chart.themeStyle.crosshairLine, crosshair.opacity, crosshair.dashArray, verticalCross
171+
crosshair.verticalLineColor || crosshair.line.color || chart.themeStyle.crosshairLine, crosshair.opacity, crosshair.dashArray, verticalCross
172172
);
173173
this.drawCrosshairLine(options, cross, this.valueX, chartRect.y, 0, chartRect.height, verticalCross);
174174
this.renderAxisTooltip(chart, chartRect, <Element>axisTooltipGroup);
@@ -181,12 +181,12 @@ export class Crosshair {
181181
axisTooltipGroup = chart.renderer.createGroup({ 'id': this.elementID + '_crosshair_axis' });
182182
options = new PathOption(
183183
this.elementID + '_HorizontalLine', 'none', crosshair.line.width,
184-
crosshair.horizontalColor || crosshair.line.color || chart.themeStyle.crosshairLine, crosshair.opacity, crosshair.dashArray, horizontalCross
184+
crosshair.horizontalLineColor || crosshair.line.color || chart.themeStyle.crosshairLine, crosshair.opacity, crosshair.dashArray, horizontalCross
185185
);
186186
this.renderCrosshairLine(options, crossGroup);
187187
options = new PathOption(
188188
this.elementID + '_VerticalLine', 'none', crosshair.line.width,
189-
crosshair.verticalColor || crosshair.line.color || chart.themeStyle.crosshairLine, crosshair.opacity, crosshair.dashArray, verticalCross
189+
crosshair.verticalLineColor || crosshair.line.color || chart.themeStyle.crosshairLine, crosshair.opacity, crosshair.dashArray, verticalCross
190190
);
191191
this.renderCrosshairLine(options, crossGroup);
192192
crossGroup.appendChild(axisTooltipGroup);

controls/data/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## [Unreleased]
44

5-
## 19.2.55 (2021-08-11)
5+
## 19.2.56 (2021-08-17)
66

77
### DataManager
88

controls/documenteditor/CHANGELOG.md

Lines changed: 43 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,55 @@
22

33
## [Unreleased]
44

5+
## 19.2.56 (2021-08-17)
6+
7+
### Document Editor
8+
9+
#### Bug Fixes
10+
11+
- `#I337569` - Resolved the table relayout issue for the document with compatibility mode.
12+
- `#I331349` - Resolved the text content clipping issue.
13+
- `#I336632` - Resolved the next style hierarchy issue .
14+
515
## 19.2.55 (2021-08-11)
616

717
### Document Editor
818

19+
#### New Features
20+
21+
- `#I256210`,`#F150773`,`#I295055`,`#I295551`,`#I324037`,`#I326715` - Added support for keep with next and keep lines together.
22+
923
#### Bug Fixes
1024

11-
- `#I334754, #F167429` - Resolved the localization issue.
25+
- `#I334754`, `#F167429` - Resolved the localization issue.
1226
- `#I333264` - Resolved the before spacing issue for the paragraph starting in new page.
27+
- `#I333226` - Resolved the underline issue.
28+
- `#I332508` - Resolved the tracking of multiline tracking and empty paragraph revision.
29+
- `#I335858`, `#F148494` - Resolved the script error in component destroy.
30+
- `#F166420` - Resolved the SFDT exporting issue with shape.
31+
- `#I332253` - Resolved the cut paste hyperlink with track changes enabled.
32+
- `#I335409` - Resolved user list updating issue in restrict editing pane.
33+
- `#I328976` - Table and document content is not layouted properly.
34+
- `#I331333` - Resolved the page unresponsive issue in splitting the nested tables.
35+
- `#I331763` - Resolve the shifting issue in the table with table positioning property on relayouting
36+
- `#I330233` - Resolved the extra page adding issue when using update field.
37+
- `#I329790`, `#I331351` - Table is now layouted based on compatibility mode.
38+
- `#I332483` - Resolved the issue on bookmark shifting while removing document content.
39+
- `#I331762` - Table with merged cell is now layouted properly.
40+
- `#I330485` - OlePicture is now preserved as normal picture.
41+
- `#I330776` - Resolved the casing issue in the generated suggestions.
42+
- `#I330982` - Resolved the unexpected characters when pasting using Java server-side library.
43+
- `#I325741` - Resolved the footnote layouting issue when opening a document.
44+
- `#I331634` - Resolved the issue on updating the table cell width.
45+
- `#I331274` - Table positioning property is now preserved properly.
46+
- `#I331667` - Document with BuildingBlockGallery content control type is now exported properly.
47+
- `#I331452` - Resolved the layout issue on footnote inside the table.
48+
- `#I331606` - Document with content control block saving issue is now exported properly.
49+
- `#I331667`, `#I332223` - Shape in footer is now preserved properly.
50+
- `#I330686`, `#I331349`, `#I310463` - Shape fill is now preserved properly.
51+
- `#I332333` - Zoom value is now updated properly in status bar.
52+
- `#I330165`, `#I327647`, `#I324515` - Resolved the worst case scenario issues in comment editing and deleting.
53+
- `#I319210` - The changes and comment tab in the review pane will be visible only if at least one tracked change or comment is present respectively in the document.
1354

1455
## 19.2.49 (2021-07-27)
1556

@@ -80,7 +121,7 @@
80121

81122
- `#I278021`, `#I301809` - Added table paste options.
82123
- `#I165071`, `#I226674`, `#I229069`, `#I231373`, `#I241445`, `#I251719`, `#I251720`, `#I267474`, `#I284190`, `#I287633`, `#I291766`, `#I295055`, `#I295549`, `#I298036`, `#I297705`, `#I301313`, `#I291964`, `#I306274`, `#I305349`, `#I308409`, `#I310463`, `#I311260`, `#I312302`, `#I313526`, `#I314192`, `#I317340`, `#I319563` - Added support to preserve image position with square, in-front of text, behind text, top and bottom wrapping styles.
83-
- `#I165071`, `#I226674`, `#I229069`, `#I231373`, `#I241445`, `#I251719`, `#I251720`, `#I267474`, `#I284190`, `#I287633`, `#I291766`, `#I295055`, `#I295549`, `#I298036`, `#I297705`, `#I301313`, `#I291964`, `#I306274`, `#I305349`, `#I308409`, `#I310463`, `#I311260`, `#I312302`, `#I313526`, `#I314192`, `#I317340`, `#I319563` - Textbox shape with square, in-front of text, behind text, top and bottom wrapping styles.
124+
- `#I137901`,`#I158324`,`#I208312`,`#I219539`,`#I226018`,`#I226019`,`#I227643`,`#I238552`,`#I243495`,`#I246168`,`#I247514`,`#I248720`,`#I252754`,`#I253251`,`#I280213`,`#I280379`,`#I285871`,`#I290372`,`#I297705`,`#I298334`,`#I306415`,`#I306466`,`#I308411`,`#I310537`,`#I312846`,`#I314262`,`#I317497`,`#I319206`,`#I320434`,`#I324903`,`#I333100` - Textbox shape with square, in-front of text, behind text, top and bottom wrapping styles.
84125
- `#I307321` - Added support to preserve table positioning properties.
85126
- `#I298019` - Added support for exporting the document pages as image.
86127
- `#I324911` - Provided support for inserting non-breaking space character on Ctrl + Shift + Space key combination.

controls/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-documenteditor",
3-
"version": "19.2.49",
3+
"version": "19.2.55",
44
"description": "Feature-rich document editor control with built-in support for context menu, options pane and dialogs.",
55
"keywords": [
66
"ej2",

0 commit comments

Comments
 (0)