@syncfusion/ej2-layouts
Advanced tools
Comparing version 17.4.47 to 17.4.50
@@ -9,2 +9,16 @@ # Changelog | ||
- `#263496` - Resolved the issue with the splitter paneSettings `collapsed` property that is not updated properly when the panes are expanded or collapsed. | ||
### Dashboard Layout | ||
#### New Features | ||
- `#262900` - The `change` event now triggers when a panel is resized and then the adjacent panel position changes. | ||
## 17.4.47 (2020-02-05) | ||
### Splitter | ||
#### Bug Fixes | ||
- `#261892` - Issue with removePane public method does not update the value of the paneSettings property. | ||
@@ -11,0 +25,0 @@ |
/*! | ||
* filename: index.d.ts | ||
* version : 17.4.47 | ||
* version : 17.4.50 | ||
* 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.4.46", | ||
"_id": "@syncfusion/ej2-layouts@17.4.47", | ||
"_inBundle": false, | ||
"_integrity": "sha512-DmF2odOzu1xQOjPccJUkUiLax/m3sZQKAgVwu7qkWLMkhs0uxTLeu13VvrxKNguYDPTEqg8Tx1slHL66ikwQMg==", | ||
"_integrity": "sha512-B2BbVpnpeDo/tM0VjBUCq4nOUGOaWpE9jGvWsTArrTXPsml19YvlomVWNMrCQhng2IBCmtzuvXj3mAWn8n49fg==", | ||
"_location": "/@syncfusion/ej2-layouts", | ||
@@ -29,4 +29,4 @@ "_phantomChildren": {}, | ||
], | ||
"_resolved": "http://nexus.syncfusion.com/repository/ej2-hotfix/@syncfusion/ej2-layouts/-/ej2-layouts-17.4.46.tgz", | ||
"_shasum": "a0e708cbf100ef0c85eb42bf887a9bdf890fbb1e", | ||
"_resolved": "http://nexus.syncfusion.com/repository/ej2-hotfix/@syncfusion/ej2-layouts/-/ej2-layouts-17.4.47.tgz", | ||
"_shasum": "276c743beedb8cb6e08cd5d3af554d4df0385c97", | ||
"_spec": "@syncfusion/ej2-layouts@*", | ||
@@ -79,4 +79,4 @@ "_where": "/jenkins/workspace/ation_hotfix_17.2.0.34_Vol2-DDPJ6C2YEWTWLLKKNA7AG2JBE6DYTCTNGMHGORWGAYAVCL6L7OLQ/packages/included", | ||
"typings": "index.d.ts", | ||
"version": "17.4.47", | ||
"version": "17.4.50", | ||
"sideEffects": false | ||
} |
@@ -192,2 +192,3 @@ import { Component, INotifyPropertyChanged } from '@syncfusion/ej2-base'; | ||
protected topAdjustable: boolean; | ||
protected restrictDynamicUpdate: boolean; | ||
protected spacedColumnValue: number; | ||
@@ -218,2 +219,3 @@ protected checkingElement: HTMLElement; | ||
private isInlineRendering; | ||
private removeAllCalled; | ||
/** | ||
@@ -371,2 +373,3 @@ * If allowDragging is set to true, then the DashboardLayout allows you to drag and reorder the panels. | ||
protected render(): void; | ||
private updateServerPanelData; | ||
private initGridLines; | ||
@@ -452,2 +455,3 @@ private initialize; | ||
protected getRowColumnDragValues(args: DragEventArgs): number[]; | ||
protected checkForChanges(isInteracted: boolean, added?: PanelModel[], removed?: PanelModel[]): void; | ||
protected enableDraggingContent(collections: HTMLElement[]): void; | ||
@@ -467,3 +471,5 @@ protected updatePanels(): void; | ||
* @param {panel: [`PanelModel`](./panelModel)} panel - Defines the panel element. | ||
* @returns void */ | ||
* @returns void | ||
* @deprecated | ||
*/ | ||
addPanel(panel: PanelModel): void; | ||
@@ -473,3 +479,5 @@ /** | ||
* @param {panel: [`panelModel`](./panelModel)} panel - Defines the panel element. | ||
* @returns void */ | ||
* @returns void | ||
* @deprecated | ||
*/ | ||
updatePanel(panel: PanelModel): void; | ||
@@ -569,2 +577,14 @@ protected updateCloneArrayObject(): void; | ||
changedPanels: PanelModel[]; | ||
/** | ||
* Specifies that event has triggered by user interaction. | ||
*/ | ||
isInteracted: boolean; | ||
/** | ||
* Specifies the panel added to the DashboardLayout. | ||
*/ | ||
addedPanels: PanelModel[]; | ||
/** | ||
* Specifies the panels removed from the DashboardLayout. | ||
*/ | ||
removedPanels: PanelModel[]; | ||
} | ||
@@ -613,2 +633,6 @@ /** | ||
element: HTMLElement; | ||
/** | ||
* Specifies that event has triggered by user interaction. | ||
*/ | ||
isInteracted: boolean; | ||
} | ||
@@ -615,0 +639,0 @@ interface IAttributes { |
@@ -261,2 +261,3 @@ import { Component, ChildProperty } from '@syncfusion/ej2-base'; | ||
onPropertyChanged(newProp: SplitterModel, oldProp: SplitterModel): void; | ||
private updatePaneSize; | ||
protected preRender(): void; | ||
@@ -355,2 +356,3 @@ protected getPersistData(): string; | ||
private convertPixelToNumber; | ||
private updatePaneSettings; | ||
private calcDragPosition; | ||
@@ -357,0 +359,0 @@ private getSeparatorPosition; |
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
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
3498189
41200