@syncfusion/ej2-layouts
Advanced tools
Comparing version 17.4.46 to 17.4.47
@@ -5,2 +5,8 @@ # Changelog | ||
### Splitter | ||
#### Bug Fixes | ||
- `#261892` - Issue with removePane public method does not update the value of the paneSettings property. | ||
### Dashboard Layout | ||
@@ -10,2 +16,10 @@ | ||
- `#262675` - Provided the support to prevent the XSS attacks using the `enableHtmlSanitizer` property. | ||
## 17.4.46 (2020-01-30) | ||
### Dashboard Layout | ||
#### Bug Fixes | ||
- `#F150686` - The issue "Panels overlapping when you drag from top to bottom" has been resolved. | ||
@@ -45,2 +59,4 @@ | ||
- `#258254` - Resolved the issue with the public method `addPane` that does not work when rendered a single pane. | ||
## 17.4.41 (2020-01-07) | ||
@@ -47,0 +63,0 @@ |
/*! | ||
* filename: index.d.ts | ||
* version : 17.4.46 | ||
* version : 17.4.47 | ||
* 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.44", | ||
"_id": "@syncfusion/ej2-layouts@17.4.46", | ||
"_inBundle": false, | ||
"_integrity": "sha512-mLRLWz3QTf8rwGksNpWek/C8y5esqL6A3P+f+aIlrwVlpDqCglqWDLDQNVEerT2jsRI21XaK1tHOilZm0n8Rrw==", | ||
"_integrity": "sha512-DmF2odOzu1xQOjPccJUkUiLax/m3sZQKAgVwu7qkWLMkhs0uxTLeu13VvrxKNguYDPTEqg8Tx1slHL66ikwQMg==", | ||
"_location": "/@syncfusion/ej2-layouts", | ||
@@ -29,4 +29,4 @@ "_phantomChildren": {}, | ||
], | ||
"_resolved": "http://nexus.syncfusion.com/repository/ej2-hotfix/@syncfusion/ej2-layouts/-/ej2-layouts-17.4.44.tgz", | ||
"_shasum": "14fcfa9932a54970d9251142c360f2e62314d2c6", | ||
"_resolved": "http://nexus.syncfusion.com/repository/ej2-hotfix/@syncfusion/ej2-layouts/-/ej2-layouts-17.4.46.tgz", | ||
"_shasum": "a0e708cbf100ef0c85eb42bf887a9bdf890fbb1e", | ||
"_spec": "@syncfusion/ej2-layouts@*", | ||
@@ -39,3 +39,3 @@ "_where": "/jenkins/workspace/ation_hotfix_17.2.0.34_Vol2-DDPJ6C2YEWTWLLKKNA7AG2JBE6DYTCTNGMHGORWGAYAVCL6L7OLQ/packages/included", | ||
"dependencies": { | ||
"@syncfusion/ej2-base": "~17.4.46" | ||
"@syncfusion/ej2-base": "~17.4.47" | ||
}, | ||
@@ -80,4 +80,4 @@ "deprecated": false, | ||
"typings": "index.d.ts", | ||
"version": "17.4.46", | ||
"version": "17.4.47", | ||
"sideEffects": false | ||
} |
@@ -1,2 +0,2 @@ | ||
import { Component, Property, NotifyPropertyChanges, INotifyPropertyChanged, isUndefined, BlazorDragEventArgs } from '@syncfusion/ej2-base';import { Collection, Draggable, isNullOrUndefined, DragEventArgs, append, updateBlazorTemplate } from '@syncfusion/ej2-base';import { EmitType, Event, formatUnit, ChildProperty, compile, closest, isBlazor } from '@syncfusion/ej2-base';import { setStyleAttribute as setStyle, addClass, detach, removeClass, EventHandler, Browser } from '@syncfusion/ej2-base'; | ||
import { Component, Property, NotifyPropertyChanges, INotifyPropertyChanged, isUndefined, BlazorDragEventArgs } from '@syncfusion/ej2-base';import { Collection, Draggable, isNullOrUndefined, DragEventArgs, append, updateBlazorTemplate } from '@syncfusion/ej2-base';import { EmitType, Event, formatUnit, ChildProperty, compile, closest, isBlazor, SanitizeHtmlHelper } from '@syncfusion/ej2-base';import { setStyleAttribute as setStyle, addClass, detach, removeClass, EventHandler, Browser } from '@syncfusion/ej2-base'; | ||
import {ChangeEventArgs,DragStartArgs,DraggedEventArgs,DragStopArgs,ResizeArgs} from "./dashboard-layout"; | ||
@@ -146,2 +146,8 @@ import {ComponentModel} from '@syncfusion/ej2-base'; | ||
/** | ||
* Defines whether to allow the cross-scripting site or not. | ||
* @default true | ||
*/ | ||
enableHtmlSanitizer?: boolean; | ||
/** | ||
* If allowFloating is set to true, then the DashboardLayout automatically move the panels upwards to fill the empty available | ||
@@ -148,0 +154,0 @@ * cells while dragging or resizing the panels. |
@@ -213,2 +213,3 @@ import { Component, INotifyPropertyChanged } from '@syncfusion/ej2-base'; | ||
protected isMouseUpBound: boolean; | ||
protected isMouseMoveBound: boolean; | ||
protected contentTemplateChild: HTMLElement[]; | ||
@@ -237,2 +238,7 @@ private isBlazor; | ||
/** | ||
* Defines whether to allow the cross-scripting site or not. | ||
* @default true | ||
*/ | ||
enableHtmlSanitizer: boolean; | ||
/** | ||
* If allowFloating is set to true, then the DashboardLayout automatically move the panels upwards to fill the empty available | ||
@@ -459,5 +465,3 @@ * cells while dragging or resizing the panels. | ||
* @param {panel: [`PanelModel`](./panelModel)} panel - Defines the panel element. | ||
* @returns void | ||
* @deprecated | ||
*/ | ||
* @returns void */ | ||
addPanel(panel: PanelModel): void; | ||
@@ -467,5 +471,3 @@ /** | ||
* @param {panel: [`panelModel`](./panelModel)} panel - Defines the panel element. | ||
* @returns void | ||
* @deprecated | ||
*/ | ||
* @returns void */ | ||
updatePanel(panel: PanelModel): void; | ||
@@ -530,2 +532,3 @@ protected updateCloneArrayObject(): void; | ||
* @returns string | ||
* @private | ||
*/ | ||
@@ -532,0 +535,0 @@ getPersistData(): string; |
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
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
3438634
40813