@syncfusion/ej2-layouts
Advanced tools
Comparing version 17.2.48-beta to 17.2.49
@@ -5,2 +5,10 @@ # Changelog | ||
### Dashboard Layout | ||
#### Bug Fixes | ||
- Issue with "panels jumping while dragging" has been resolved. | ||
## 17.2.46 (2019-08-22) | ||
### Splitter | ||
@@ -10,6 +18,16 @@ | ||
- #241183 - Issue with "show the expand and collapse arrow on hovering middle of split bar" has been resolved. | ||
- #245067 - Resolved the issue with pane resizing on rendering nested split panes. | ||
- #242579 - Resolved the issue with "Split-bar rendering while change orientation dynamically" | ||
## 17.2.41 (2019-08-14) | ||
### Dashboard Layout | ||
#### Bug Fixes | ||
- Issue with "panel resizing after window resize" has been resolved. | ||
### Splitter | ||
#### Bug Fixes | ||
- #243003 - Resolved the issue with enabling expand and collapse arrow based on collapsible property. | ||
@@ -21,2 +39,32 @@ | ||
## 17.2.40 (2019-08-06) | ||
### Dashboard Layout | ||
#### Bug Fixes | ||
- #243056 - Issue with "dashboard panels moving out of the layout on resizing" has been fixed. | ||
## 17.2.39 (2019-07-30) | ||
### Splitter | ||
#### Bug Fixes | ||
- #242579 - Resolved the issue with "Split-bar rendering while change orientation dynamically" | ||
## 17.2.36 (2019-07-24) | ||
### Dashboard Layout | ||
#### Bug Fixes | ||
- #241653 - ContentTemplate issue in Dashboard Layout has been fixed. | ||
### Splitter | ||
#### Bug Fixes | ||
- #241183 - Issue with "show the expand and collapse arrow on hovering middle of split bar" has been resolved. | ||
## 17.1.51 (2019-06-11) | ||
@@ -23,0 +71,0 @@ |
/*! | ||
* filename: index.d.ts | ||
* version : 17.2.48-beta | ||
* version : 17.2.49 | ||
* Copyright Syncfusion Inc. 2001 - 2019. All rights reserved. | ||
@@ -5,0 +5,0 @@ * Use of this code is subject to the terms of our license. |
{ | ||
"_from": "@syncfusion/ej2-layouts@*", | ||
"_id": "@syncfusion/ej2-layouts@17.2.34", | ||
"_id": "@syncfusion/ej2-layouts@17.2.47", | ||
"_inBundle": false, | ||
"_integrity": "sha512-YUx1avPdclsQeJ74tyVYpPXNXhDDIwBaDobUO8lPpBWo4pgZfc5zHlIrZvrNyzayCZGY8JWfzI/C8+SfcZXSqA==", | ||
"_integrity": "sha512-3yxxPu+ybP4Fze/HDYgJgGw+MABqpHGlE+hXG14L7kQwkxPzEZI6KiAFn37FJgCshsYd+y9dnRwQ6S/an6j9NA==", | ||
"_location": "/@syncfusion/ej2-layouts", | ||
@@ -28,6 +28,6 @@ "_phantomChildren": {}, | ||
], | ||
"_resolved": "http://nexus.syncfusion.com/repository/ej2-production/@syncfusion/ej2-layouts/-/ej2-layouts-17.2.34.tgz", | ||
"_shasum": "b965e45635818d92bcd3380b963bd8be4355975d", | ||
"_resolved": "http://nexus.syncfusion.com/repository/ej2-release/@syncfusion/ej2-layouts/-/ej2-layouts-17.2.47.tgz", | ||
"_shasum": "3f786ec6d3c9666827f526800358093354e266f9", | ||
"_spec": "@syncfusion/ej2-layouts@*", | ||
"_where": "/jenkins/workspace/ation_hotfix_16.4.0.42_Vol4-CJVRBFC7Z7RSISPRJNEMNQSRMCB6XTG67IJD6R2DVNXFIKQEITTQ/packages/included", | ||
"_where": "/jenkins/workspace/ation_hotfix_17.2.0.34_Vol2-DDPJ6C2YEWTWLLKKNA7AG2JBE6DYTCTNGMHGORWGAYAVCL6L7OLQ/packages/included", | ||
"author": { | ||
@@ -38,3 +38,3 @@ "name": "Syncfusion Inc." | ||
"dependencies": { | ||
"@syncfusion/ej2-base": "17.2.48-beta" | ||
"@syncfusion/ej2-base": "~17.2.49" | ||
}, | ||
@@ -79,4 +79,4 @@ "deprecated": false, | ||
"typings": "index.d.ts", | ||
"version": "17.2.48-beta", | ||
"version": "17.2.49", | ||
"sideEffects": false | ||
} |
@@ -358,3 +358,3 @@ import { Component, INotifyPropertyChanged } from '@syncfusion/ej2-base'; | ||
protected calculateCellSize(): void; | ||
protected maxRow(): number; | ||
protected maxRow(recheck?: boolean): number; | ||
protected maxCol(): number; | ||
@@ -437,2 +437,4 @@ protected updateOldRowColumn(): void; | ||
protected updatePanels(): void; | ||
protected updateDragArea(): void; | ||
protected updateRowsHeight(row: number, sizeY: number, addRows: number): void; | ||
private onDraggingStart; | ||
@@ -447,2 +449,4 @@ private cloneModels; | ||
* Allows to add a panel to the Dashboardlayout. | ||
* @param {panel: [`PanelModel`](./panelModel)} panel - Defines the panel element. | ||
* @returns void | ||
*/ | ||
@@ -452,2 +456,4 @@ addPanel(panel: PanelModel): void; | ||
* Allows to update a panel in the DashboardLayout. | ||
* @param {panel: [`panelModel`](./panelModel)} panel - Defines the panel element. | ||
* @returns void | ||
*/ | ||
@@ -458,2 +464,3 @@ updatePanel(panel: PanelModel): void; | ||
* Returns the panels object of the DashboardLayout. | ||
* @returns [`PanelModel[]`](./panelModel) | ||
*/ | ||
@@ -467,2 +474,4 @@ serialize(): PanelModel[]; | ||
* Removes the panel from the DashboardLayout. | ||
* @param {id: string} id - Defines the panel ID. | ||
* @returns void | ||
*/ | ||
@@ -473,2 +482,6 @@ removePanel(id: string): void; | ||
* Moves the panel in the DashboardLayout. | ||
* @param {id: string} id - Defines the panel ID. | ||
* @param {row: number} row - Defines the row of dashboard layout. | ||
* @param {col: number} col - Defines the column of dashboard layout. | ||
* @returns void | ||
*/ | ||
@@ -479,2 +492,5 @@ movePanel(id: string, row: number, col: number): void; | ||
* Resize the panel in the DashboardLayout. | ||
* @param {id: string} id - Defines the panel ID. | ||
* @param {sizeX: number} sizeX - Defines the sizeX of dashboard layout. | ||
* @param {sizeY: number} sizeY - Defines the sizeY of dashboard layout. | ||
*/ | ||
@@ -484,2 +500,3 @@ resizePanel(id: string, sizeX: number, sizeY: number): void; | ||
* Destroys the DashboardLayout component | ||
* @returns void | ||
*/ | ||
@@ -486,0 +503,0 @@ destroy(): void; |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
No v1
QualityPackage is not semver >=1. This means it is not stable and does not support ^ ranges.
Found 1 instance in 1 package
3169331
39041
2
+ Added@syncfusion/ej2-base@17.2.49(transitive)
+ Added@syncfusion/ej2-icons@17.2.47(transitive)
- Removed@syncfusion/ej2-base@17.2.48-beta(transitive)
- Removed@syncfusion/ej2-icons@17.2.48-beta(transitive)