@syncfusion/ej2-layouts
Advanced tools
Comparing version 17.1.47 to 17.1.48
@@ -5,2 +5,8 @@ # Changelog | ||
### Dashboard Layout | ||
#### Bug Fixes | ||
- #144602 - Issue on panel resizing after adding a new panel dynamically has been fixed. | ||
## 17.1.43 (2019-04-30) | ||
@@ -7,0 +13,0 @@ |
/*! | ||
* filename: index.d.ts | ||
* version : 17.1.47 | ||
* version : 17.1.48 | ||
* Copyright Syncfusion Inc. 2001 - 2019. All rights reserved. | ||
@@ -5,0 +5,0 @@ * Use of this code is subject to the terms of our license. |
{ | ||
"name": "@syncfusion/ej2-layouts", | ||
"version": "17.1.47", | ||
"version": "17.1.48", | ||
"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.", | ||
@@ -8,3 +8,3 @@ "author": "Syncfusion Inc.", | ||
"dependencies": { | ||
"@syncfusion/ej2-base": "~17.1.47" | ||
"@syncfusion/ej2-base": "~17.1.48" | ||
}, | ||
@@ -11,0 +11,0 @@ "devDependencies": {}, |
import { Component, Property, NotifyPropertyChanges, INotifyPropertyChanged, isUndefined } from '@syncfusion/ej2-base';import { Collection, Draggable, isNullOrUndefined, DragEventArgs, append } from '@syncfusion/ej2-base';import { EmitType, Event, formatUnit, ChildProperty, compile, closest } from '@syncfusion/ej2-base';import { setStyleAttribute as setStyle, addClass, detach, removeClass, EventHandler } from '@syncfusion/ej2-base'; | ||
import {ChangeEventArgs,DragStartArgs,DraggedEventArgs,DragStopArgs,ResizeArgs} from "./dashboard-layout"; | ||
import {ComponentModel} from '@syncfusion/ej2-base'; | ||
@@ -214,3 +215,3 @@ | ||
*/ | ||
change?: EmitType<object>; | ||
change?: EmitType<ChangeEventArgs>; | ||
@@ -221,3 +222,3 @@ /** | ||
*/ | ||
dragStart?: EmitType<DragEventArgs>; | ||
dragStart?: EmitType<DragStartArgs>; | ||
@@ -228,3 +229,3 @@ /** | ||
*/ | ||
drag?: EmitType<DragEventArgs>; | ||
drag?: EmitType<DraggedEventArgs>; | ||
@@ -235,3 +236,3 @@ /** | ||
*/ | ||
dragStop?: EmitType<DragEventArgs>; | ||
dragStop?: EmitType<DragStopArgs>; | ||
@@ -242,3 +243,3 @@ /** | ||
*/ | ||
resizeStart?: EmitType<Object>; | ||
resizeStart?: EmitType<ResizeArgs>; | ||
@@ -249,3 +250,3 @@ /** | ||
*/ | ||
resize?: EmitType<Object>; | ||
resize?: EmitType<ResizeArgs>; | ||
@@ -256,3 +257,3 @@ /** | ||
*/ | ||
resizeStop?: EmitType<Object>; | ||
resizeStop?: EmitType<ResizeArgs>; | ||
@@ -259,0 +260,0 @@ /** |
@@ -290,3 +290,3 @@ import { Component, INotifyPropertyChanged } from '@syncfusion/ej2-base'; | ||
*/ | ||
change: EmitType<object>; | ||
change: EmitType<ChangeEventArgs>; | ||
/** | ||
@@ -296,3 +296,3 @@ * Triggers when a panel is about to drag. | ||
*/ | ||
dragStart: EmitType<DragEventArgs>; | ||
dragStart: EmitType<DragStartArgs>; | ||
/** | ||
@@ -302,3 +302,3 @@ * Triggers while a panel is dragged continuously. | ||
*/ | ||
drag: EmitType<DragEventArgs>; | ||
drag: EmitType<DraggedEventArgs>; | ||
/** | ||
@@ -308,3 +308,3 @@ * Triggers when a dragged panel is dropped. | ||
*/ | ||
dragStop: EmitType<DragEventArgs>; | ||
dragStop: EmitType<DragStopArgs>; | ||
/** | ||
@@ -314,3 +314,3 @@ * Triggers when a panel is about to resize. | ||
*/ | ||
resizeStart: EmitType<Object>; | ||
resizeStart: EmitType<ResizeArgs>; | ||
/** | ||
@@ -320,3 +320,3 @@ * Triggers when a panel is being resized continuously. | ||
*/ | ||
resize: EmitType<Object>; | ||
resize: EmitType<ResizeArgs>; | ||
/** | ||
@@ -326,3 +326,3 @@ * Triggers when a panel resize ends. | ||
*/ | ||
resizeStop: EmitType<Object>; | ||
resizeStop: EmitType<ResizeArgs>; | ||
/** | ||
@@ -509,2 +509,11 @@ * Triggers when Dashboard Layout is created. | ||
/** | ||
* Defines the change event arguments | ||
*/ | ||
export interface ChangeEventArgs { | ||
/** | ||
* Specifies the model values of the position changed panels. | ||
*/ | ||
changedPanels: PanelModel[]; | ||
} | ||
/** | ||
* Defines the Drag event arguments | ||
@@ -511,0 +520,0 @@ */ |
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
2994981
37729