@syncfusion/ej2-popups
Advanced tools
Comparing version 16.4.42 to 16.4.44
@@ -5,2 +5,10 @@ # Changelog | ||
### Popup library | ||
#### Bug Fixes | ||
- The issue with collision while displays popup on scrollable viewport element has been resolved. | ||
## 16.4.40-beta (2018-12-10) | ||
### Dialog | ||
@@ -7,0 +15,0 @@ |
/*! | ||
* filename: index.d.ts | ||
* version : 16.4.42 | ||
* version : 16.4.44 | ||
* Copyright Syncfusion Inc. 2001 - 2018. All rights reserved. | ||
@@ -10,11 +10,2 @@ * Use of this code is subject to the terms of our license. | ||
*/ | ||
/*! | ||
* filename: index.d.ts | ||
* version : 16.4.40-beta | ||
* Copyright Syncfusion Inc. 2001 - 2018. All rights reserved. | ||
* Use of this code is subject to the terms of our license. | ||
* A copy of the current license can be obtained at any time by e-mailing | ||
* licensing@syncfusion.com. Any infringement will be prosecuted under | ||
* applicable laws. | ||
*/ | ||
import * as _popups from '@syncfusion/ej2-popups'; | ||
@@ -21,0 +12,0 @@ |
{ | ||
"name": "@syncfusion/ej2-popups", | ||
"version": "16.4.42", | ||
"version": "16.4.44", | ||
"description": "A package of Essential JS 2 popup components such as Dialog and Tooltip that is used to display information or messages in separate pop-ups.", | ||
@@ -5,0 +5,0 @@ "author": "Syncfusion Inc.", |
@@ -5,2 +5,3 @@ /** | ||
import { calculatePosition } from './position'; | ||
import { isNullOrUndefined } from '@syncfusion/ej2-base'; | ||
var parentDocument; | ||
@@ -285,3 +286,5 @@ var targetContainer; | ||
function getViewPortWidth() { | ||
return window.innerWidth; | ||
var windowWidth = window.innerWidth; | ||
var offsetWidth = (isNullOrUndefined(document.documentElement)) ? 0 : document.documentElement.offsetWidth; | ||
return windowWidth - (windowWidth - offsetWidth); | ||
} |
@@ -162,3 +162,3 @@ import { Component, Property, Event, Collection, L10n, Browser, EmitType, Complex, compile, createElement } from '@syncfusion/ej2-base';import { addClass, removeClass, detach, attributes, prepend, setStyleAttribute } from '@syncfusion/ej2-base';import { NotifyPropertyChanges, INotifyPropertyChanged, ChildProperty } from '@syncfusion/ej2-base';import { isNullOrUndefined, formatUnit, append } from '@syncfusion/ej2-base';import { EventHandler } from '@syncfusion/ej2-base';import { Draggable } from '@syncfusion/ej2-base';import { Popup, PositionData, getZindexPartial } from '../popup/popup';import { PositionDataModel } from '../popup/popup-model';import { Button, ButtonModel } from '@syncfusion/ej2-buttons';import { createResize, removeResize, setMinHeight } from '../common/resize'; | ||
* | ||
* > More information on the footer template configuration can be found on this [documentation](./template.html#footer) section. | ||
* > More information on the footer template configuration can be found on this [documentation](../../dialog/template/#footer) section. | ||
* | ||
@@ -173,3 +173,3 @@ * @default '' | ||
* | ||
* > More information on the draggable behavior can be found on this [documentation](./getting-started.html#draggable) section. | ||
* > More information on the draggable behavior can be found on this [documentation](../../dialog/getting-started/#draggable) section. | ||
* | ||
@@ -184,3 +184,4 @@ * @default false | ||
* | ||
* > More information on the button configuration can be found on this [documentation](./getting-started.html#enable-footer) section. | ||
* > More information on the button configuration can be found on this | ||
* [documentation](../../dialog/getting-started/#enable-footer) section. | ||
* | ||
@@ -205,3 +206,3 @@ * {% codeBlock src="dialog/buttons-api/index.ts" %}{% endcodeBlock %} | ||
* | ||
* > More information on the animation settings in dialog can be found on this [documentation](./animation.html) section. | ||
* > More information on the animation settings in dialog can be found on this [documentation](../../dialog/animation/) section. | ||
* | ||
@@ -208,0 +209,0 @@ * {% codeBlock src="dialog/animation-api/index.ts" %}{% endcodeBlock %} |
@@ -224,3 +224,3 @@ import { Component, EmitType } from '@syncfusion/ej2-base'; | ||
* | ||
* > More information on the footer template configuration can be found on this [documentation](./template.html#footer) section. | ||
* > More information on the footer template configuration can be found on this [documentation](../../dialog/template/#footer) section. | ||
* | ||
@@ -234,3 +234,3 @@ * @default '' | ||
* | ||
* > More information on the draggable behavior can be found on this [documentation](./getting-started.html#draggable) section. | ||
* > More information on the draggable behavior can be found on this [documentation](../../dialog/getting-started/#draggable) section. | ||
* | ||
@@ -244,3 +244,4 @@ * @default false | ||
* | ||
* > More information on the button configuration can be found on this [documentation](./getting-started.html#enable-footer) section. | ||
* > More information on the button configuration can be found on this | ||
* [documentation](../../dialog/getting-started/#enable-footer) section. | ||
* | ||
@@ -263,3 +264,3 @@ * {% codeBlock src="dialog/buttons-api/index.ts" %}{% endcodeBlock %} | ||
* | ||
* > More information on the animation settings in dialog can be found on this [documentation](./animation.html) section. | ||
* > More information on the animation settings in dialog can be found on this [documentation](../../dialog/animation/) section. | ||
* | ||
@@ -266,0 +267,0 @@ * {% codeBlock src="dialog/animation-api/index.ts" %}{% endcodeBlock %} |
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
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
2300214
25271