This commit is contained in:
pipeline 2020-01-07 09:48:46 +00:00
Родитель 849414b6c7
Коммит fb27901799
42 изменённых файлов: 242 добавлений и 44 удалений

Просмотреть файл

@ -2,7 +2,7 @@
## [Unreleased]
## 17.4.40 (2019-12-24)
## 17.4.41 (2020-01-07)
### Common
@ -10,7 +10,7 @@
- Resolved the React `Lifecycle` warnings in the console.
## 17.3.16 (2019-10-09)
## 17.4.39 (2019-12-17)
### Common

Просмотреть файл

@ -1,13 +1,13 @@
{
"name": "@syncfusion/ej2-react-base",
"version": "17.3.16",
"version": "17.4.39",
"description": "A common package of Essential JS 2 React base, methods and class definitions",
"author": "Syncfusion Inc.",
"license": "SEE LICENSE IN license",
"keywords": [
"ej2",
"syncfusion",
"web-components",
"web-component",
"react",
"react-base",
"syncfusion react",
@ -24,15 +24,15 @@
"module": "./index.js",
"readme": "ReadMe.md",
"peerDependencies": {
"react": "15.5.4 - 16.10.2",
"react-dom": "15.5.4 - 16.10.2"
"react": "15.5.4 - 16.12.0",
"react-dom": "15.5.4 - 16.12.0"
},
"dependencies": {
"@syncfusion/ej2-base": "*"
},
"devDependencies": {
"react": "15.5.4 - 16.10.2",
"react-dom": "15.5.4 - 16.10.2",
"react": "15.5.4 - 16.12.0",
"react-dom": "15.5.4 - 16.12.0",
"@types/chai": "^3.4.28",
"@types/es6-promise": "0.0.28",
"@types/jasmine": "^2.2.29",

Просмотреть файл

@ -2,6 +2,14 @@
## [Unreleased]
## 17.4.41 (2020-01-07)
### Calendar
#### Bug Fixes
- Issue with "change event triggered while again click on the selected month in month view" has been resolved.
## 17.4.40 (2019-12-24)
### DateRangePicker

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "@syncfusion/ej2-react-calendars",
"version": "17.4.39",
"version": "17.4.40",
"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 React",
"author": "Syncfusion Inc.",
"license": "SEE LICENSE IN license",

Просмотреть файл

@ -2,13 +2,27 @@
## [Unreleased]
## 17.4.41 (2020-01-07)
### Stock Chart
#### New Features
- `#257199` - Provided support to enable/disable the Date Range Picker in Stock Chart's period selector.
#### Bug Fixes
- `#257199` - Tooltip stops showing after resizing window issue has fixed.
## 17.4.40 (2019-12-24)
### Chart
#### Bug Fixes
- `#257935` - Axis labels rotated at 90 degree alignment issue now fixed.
- `#149930` - Chart with DataManager in offline mode makes a request to the server for multiple times issue got fixed.
- Issue in Stacking line series with multiple axes is fixed now.
- `#257935` - Alignment issue in axis labels when rotated at 90 degree is fixed now.
## 17.4.39 (2019-12-17)

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "@syncfusion/ej2-react-charts",
"version": "17.4.39",
"version": "17.4.40",
"description": "Feature-rich chart control with built-in support for over 25 chart types, technical indictors, trendline, zooming, tooltip, selection, crosshair and trackball. for React",
"author": "Syncfusion Inc.",
"license": "SEE LICENSE IN license",

Просмотреть файл

@ -5,6 +5,14 @@
## [Unreleased]
## 17.4.41 (2020-01-07)
### CircularGauge
#### Bug Fixes
- `#256184` - The unwanted div element appended in the DOM is removed now.
## 17.3.9-beta (2019-09-20)
### CircularGauge

Просмотреть файл

@ -2,6 +2,16 @@
## [Unreleased]
## 17.4.41 (2020-01-07)
### Diagram
#### New Features
- `#232055` - Support has been provided to Clip/Ellipsis the annotation when textWrapping as WrapWithOverflow in the diagram.
- `#253884` - Template support for HTML node has been provided.
- `#236612`, `#242275` - The support has been provided to get the In and Out edges from ports.
## 17.4.40 (2019-12-24)
### Diagram

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

Просмотреть файл

@ -162,7 +162,7 @@ class DiagramComponent extends Diagram {
this.initRenderCalled = false;
this.checkInjectedModules = true;
this.directivekeys = { 'layers': 'layer', 'customCursors': 'customCursor', 'connectors': { 'connector': { 'connectorAnnotations': 'connectorAnnotation' } }, 'nodes': { 'node': { 'nodeAnnotations': 'nodeAnnotation', 'ports': 'port' } } };
this.immediateRender = true;
this.immediateRender = false;
}
render() {
if ((this.element && !this.initRenderCalled) || this.refreshing) {

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "@syncfusion/ej2-react-diagrams",
"version": "17.4.39",
"version": "17.4.40",
"description": "Feature-rich diagram control to create diagrams like flow charts, organizational charts, mind maps, and BPMN diagrams. Its rich feature set includes built-in shapes, editing, serializing, exporting, printing, overview, data binding, and automatic layouts. for React",
"author": "Syncfusion Inc.",
"license": "SEE LICENSE IN license",

Просмотреть файл

@ -3,7 +3,10 @@ import { Diagram, DiagramModel } from '@syncfusion/ej2-diagrams';
import { ComponentBase, applyMixins, DefaultHtmlAttributes } from '@syncfusion/ej2-react-base';
export interface DiagramTypecast {
annotationTemplate?: string | Function | any;
nodeTemplate?: string | Function | any;
}
/**
* Represents react Diagram Component
* ```tsx
@ -12,15 +15,15 @@ import { ComponentBase, applyMixins, DefaultHtmlAttributes } from '@syncfusion/e
*/
export class DiagramComponent extends Diagram {
public state: Readonly<{ children?: React.ReactNode | React.ReactNode[] }>
& Readonly<DiagramModel & DefaultHtmlAttributes>;
& Readonly<DiagramModel & DefaultHtmlAttributes| DiagramTypecast>;
public setState: any;
private getDefaultAttributes: Function;
public initRenderCalled: boolean = false;
private checkInjectedModules: boolean = true;
public directivekeys: { [key: string]: Object } = {'layers': 'layer', 'customCursors': 'customCursor', 'connectors': {'connector': {'connectorAnnotations': 'connectorAnnotation'}}, 'nodes': {'node': {'nodeAnnotations': 'nodeAnnotation', 'ports': 'port'}}};
private immediateRender: boolean = true;
private immediateRender: boolean = false;
public props: Readonly<{ children?: React.ReactNode | React.ReactNode[] }>
& Readonly<DiagramModel & DefaultHtmlAttributes>;
& Readonly<DiagramModel & DefaultHtmlAttributes| DiagramTypecast>;
public forceUpdate: (callBack?: () => any) => void;
public context: Object;
public isReactComponent: Object;

Просмотреть файл

@ -2,6 +2,26 @@
## [Unreleased]
## 17.4.41 (2020-01-07)
### Document Editor
#### New Features
- `#256487` - Enhancements for mouse and keyboard selection.
#### Bug Fixes
- `#256903` - Resolved bookmarks API issue when bookmark is in table.
- `#256758` - Resolved selection issue after correcting the spelling mistake.
- `#258938` - Resolved typo error in place holder of comments text area.
- `#257481` - Font family in font dialog is now update properly based on current selection.
- `#257171` - Bookmarks is now update properly after paste with formatting.
- `#257161` - List number is now update properly when hidden field contains list paragraph.
- `#246365` - Borders are now render properly when copy and paste from excel.
- `#257455` - Font colour is now update properly in modify style dialog.
- `#250770` - Line is now arranged properly when insert field.
## 17.4.40 (2019-12-24)
### Document Editor

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "@syncfusion/ej2-react-documenteditor",
"version": "17.4.39",
"version": "17.4.40",
"description": "Feature-rich document editor control with built-in support for context menu, options pane and dialogs. for React",
"author": "Syncfusion Inc.",
"license": "SEE LICENSE IN license",

Просмотреть файл

@ -2,6 +2,14 @@
## [Unreleased]
## 17.4.41 (2020-01-07)
### ListBox
#### Bug Fixes
- `#255830` - filter and grouping are not working on drag and drop and toolbar button states not updated properly has been resolved.
## 17.4.40 (2019-12-24)
### DropDownList

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "@syncfusion/ej2-react-dropdowns",
"version": "17.4.39",
"version": "17.4.40",
"description": "Essential JS 2 DropDown Components for React",
"author": "Syncfusion Inc.",
"license": "SEE LICENSE IN license",

Просмотреть файл

@ -2,6 +2,14 @@
## [Unreleased]
## 17.4.41 (2020-01-07)
### File Manager
#### Bug Fixes
- `#258121` - Resolved the CSS warnings in Firefox 71.0 version.
## 17.4.39 (2019-12-17)
### File Manager

Просмотреть файл

@ -2,6 +2,14 @@
## [Unreleased]
## 17.4.41 (2020-01-07)
### Gantt
#### New Features
- `#253076` - Provided support to focus Gantt on tab key press.
## 17.4.40 (2019-12-24)
### Gantt

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "@syncfusion/ej2-react-gantt",
"version": "17.4.39",
"version": "17.4.40",
"description": "Essential JS 2 Gantt Component for React",
"author": "Syncfusion Inc.",
"license": "SEE LICENSE IN license",

Просмотреть файл

@ -2,6 +2,19 @@
## [Unreleased]
## 17.4.41 (2020-01-07)
### Grid
#### Bug Fixes
- `#257854` - Multiple requests while pager dropdown change has been fixed.
- `#258463` - CheckBox filter search list query issue has been fixed.
- `#258467` - Command button duplicate id issue has been fixed.
- `#258196` - command column with frozen content issue has been fixed.
- `#258555` - Unnecessary row selected event while paging issue has been fixed.
- `#258341` - Incorrect arguments of clear filtering events has been fixed.
## 17.4.40 (2019-12-24)
### Grid

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "@syncfusion/ej2-react-grids",
"version": "17.4.39",
"version": "17.4.40",
"description": "Feature-rich JavaScript datagrid (datatable) control with built-in support for editing, filtering, grouping, paging, sorting, and exporting to Excel. for React",
"author": "Syncfusion Inc.",
"license": "SEE LICENSE IN license",

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "@syncfusion/ej2-react-inplace-editor",
"version": "17.4.39",
"version": "17.4.40",
"description": "A package of Essential JS 2 Inplace editor components, which is used to edit and update the value dynamically in server. for React",
"author": "Syncfusion Inc.",
"license": "SEE LICENSE IN license",

Просмотреть файл

@ -2,6 +2,14 @@
## [Unreleased]
## 17.4.41 (2020-01-07)
### Slider
#### Bug Fixes
- `#259186` - Now, the tooltip is displayed correctly for the slider component while rendering it inside the dialog component.
## 17.3.29 (2019-11-26)
### Form Validator

Просмотреть файл

@ -2,6 +2,30 @@
## [Unreleased]
## 17.4.41 (2020-01-07)
### Dashboard Layout
#### Bug Fixes
- `#258121` - Resolved the CSS warnings in Firefox 71.0 version.
### Splitter
#### Bug Fixes
- `#254606` - Web accessibility issues resolved.
#### New Features
- Provided `Keyboard navigation support` for splitter. The available keyboard shortcuts are,
- `Up Arrow` - will move separator towards up in vertical splitter.
- `Down Arrow` - will move separator towards down in vertical splitter.
- `Right Arrow` - will move separator towards right in horizontal splitter.
- `Left Arrow` - will move separator towards left in horizontal splitter.
- `Enter key` - will toggle nearest collapsible pane of focused separator.
## 17.4.40 (2019-12-24)
### Dashboard Layout

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "@syncfusion/ej2-react-layouts",
"version": "17.4.39",
"version": "17.4.40",
"description": "A package of Essential JS 2 layout pure CSS components such as card and avatar. The card is used as small container to show content in specific structure, whereas the avatars are icons, initials or figures representing particular person. for React",
"author": "Syncfusion Inc.",
"license": "SEE LICENSE IN license",

Просмотреть файл

@ -2,6 +2,14 @@
## [Unreleased]
## 17.4.41 (2020-01-07)
### ListBox
#### Bug Fixes
- Provided `items` argument support for `beforeDrop` event.
## 17.4.40 (2019-12-24)
### ListBox

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "@syncfusion/ej2-react-lists",
"version": "17.4.39",
"version": "17.4.40",
"description": "The listview control allows you to select an item or multiple items from a list-like interface and represents the data in interactive hierarchical structure across different layouts or views. for React",
"author": "Syncfusion Inc.",
"license": "SEE LICENSE IN license",

Просмотреть файл

@ -8,6 +8,15 @@
## [Unreleased]
## 17.4.41 (2020-01-07)
### Maps
#### Bug Fixes
- `#258541` - Local storage is now maintained properly without clearing the user data.
- `#258541` - The performance of the marker template rendering is improved.
## 17.4.40 (2019-12-24)
### Maps

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "@syncfusion/ej2-react-maps",
"version": "17.4.39",
"version": "17.4.40",
"description": "The Maps component is used to visualize the geographical data and represent the statistical data of a particular geographical area on earth with user interactivity, and provides various customizing options for React",
"author": "Syncfusion Inc.",
"license": "SEE LICENSE IN license",

Просмотреть файл

@ -2,6 +2,14 @@
## [Unreleased]
## 17.4.41 (2020-01-07)
### TreeView
#### Bug Fixes
- `#258993` - Now, expand and collapse is working properly after enabling the ripple effect.
## 17.4.39 (2019-12-17)
### TreeView

Просмотреть файл

@ -2,7 +2,7 @@
## [Unreleased]
## 17.4.40 (2019-12-24)
## 17.4.41 (2020-01-07)
### Toast

Просмотреть файл

@ -2,6 +2,27 @@
## [Unreleased]
## 17.4.41 (2020-01-07)
### PDF Viewer
#### New Features
- `#257514` – Provided the support for import/export the custom stamp annotations.
- `#257231` – Exposed the property to access the search count value.
- `#258386` – Exposed the API to retrieve the text content and bounds along with page size details.
#### Bug Fixes
- `#259524` – Annotations are rendered properly in the large page size document if the page rendered in fitToPage mode initially.
- `#259523` – Errors will no longer occur while exporting the annotation if the document contains text web link annotation.
- `#259134` – The annotationSelect event now triggers properly if we add the multiple annotations to a page.
- `#258949` – The opacity value is now applied properly if set it on annotation during initialization.
- `#259383` – The errors will no longer occur if we import the annotations after deleting the added annotations.
-`#259166` – The text content will be selected properly at the end of the page.
- `#259078` – The annotations will now be created if we resize the annotation through multipage.
- `#259564` – The Null reference error will no longer occur while loading the provided PDF document.
## 17.4.40 (2019-12-24)
### PDF Viewer

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "@syncfusion/ej2-react-pdfviewer",
"version": "17.4.39",
"version": "17.4.40",
"description": "Essential JS 2 PDF viewer Component for React",
"author": "Syncfusion Inc.",
"license": "SEE LICENSE IN license",

Просмотреть файл

@ -2,7 +2,15 @@
## [Unreleased]
## 17.4.40 (2019-12-24)
## 17.4.41 (2020-01-07)
### QueryBuilder
#### Bug Fixes
- Issue with 'setRulesFromSql' method is fixed.
## 17.4.39 (2019-12-17)
### QueryBuilder

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "@syncfusion/ej2-react-querybuilder",
"version": "17.2.48",
"version": "17.4.39",
"description": "Essential JS 2 QueryBuilder for React",
"author": "Syncfusion Inc.",
"license": "SEE LICENSE IN license",

Просмотреть файл

@ -2,7 +2,7 @@
## [Unreleased]
## 17.4.40 (2019-12-24)
## 17.4.41 (2020-01-07)
### RichTextEditor

Просмотреть файл

@ -2,6 +2,18 @@
## [Unreleased]
## 17.4.41 (2020-01-07)
### Schedule
#### Bug Fixes
- `#150069` - An issue with recurrence count limitation has been fixed.
- `#148560` - An issue with drag interval has been fixed.
- `#258735` - An issue with event rendering in Timeline mode with `startHour` property has been fixed.
- `#149868` - An issue with event resizing in Vertical mode with `startHour` property has been fixed.
- `#257355` - An issue with displaying the clicked date's event details in Month Agenda view with read only mode has been fixed.
## 17.4.39 (2019-12-17)
### Schedule

Просмотреть файл

@ -2,6 +2,15 @@
## [Unreleased]
## 17.4.41 (2020-01-07)
### Spreadsheet
#### Bug Fixes
`#F149335` - Excel export issue has been fixed.
## 17.4.39 (2019-12-17)
### Spreadsheet
@ -13,15 +22,6 @@
- **Collaborative Editing:** Provides the option for real time changes across multiple users in the Spreadsheet.
- **Hyperlink:** Provides the option to navigate the web links or cell reference within the sheet or to other sheets in spreadsheet.
## 17.3.29 (2019-11-26)
### Spreadsheet
#### Bug Fixes
`#F149335` - Excel export issue has been fixed.
## 17.3.16 (2019-10-09)
### Spreadsheet

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "@syncfusion/ej2-react-spreadsheet",
"version": "17.4.39",
"version": "17.4.40",
"description": "Feature-rich JavaScript Spreadsheet (Excel) control with built-in support for selection, editing, formatting, importing and exporting to Excel for React",
"author": "Syncfusion Inc.",
"license": "SEE LICENSE IN license",

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "@syncfusion/ej2-react-treegrid",
"version": "17.4.39",
"version": "17.4.40",
"description": "Essential JS 2 TreeGrid Component for React",
"author": "Syncfusion Inc.",
"license": "SEE LICENSE IN license",