Socket
Socket
Sign inDemoInstall

@syncfusion/ej2-popups

Package Overview
Dependencies
Maintainers
2
Versions
227
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@syncfusion/ej2-popups - npm Package Compare versions

Comparing version 16.3.24 to 16.3.25

8

CHANGELOG.md

@@ -7,2 +7,10 @@ # Changelog

#### Bug Fixes
- Resolved the issue with maximum z-index value calculation in dialog.
## 16.3.24 (2018-10-09)
### Dialog
#### New Features

@@ -9,0 +17,0 @@

6

dist/global/index.d.ts
/*!
* filename: index.d.ts
* version : 16.3.24
* version : 16.3.25
* Copyright Syncfusion Inc. 2001 - 2018. All rights reserved.

@@ -11,5 +11,9 @@ * Use of this code is subject to the terms of our license.

import * as _popups from '@syncfusion/ej2-popups';
import * as _base from '@syncfusion/ej2-base';
import * as _buttons from '@syncfusion/ej2-buttons';
export declare namespace ej {
const popups: typeof _popups;
const base: typeof _base;
const buttons: typeof _buttons;
}

4

package.json
{
"name": "@syncfusion/ej2-popups",
"version": "16.3.24",
"version": "16.3.25",
"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.",

@@ -12,3 +12,3 @@ "author": "Syncfusion Inc.",

"@syncfusion/ej2-base": "~16.3.24",
"@syncfusion/ej2-buttons": "~16.3.24"
"@syncfusion/ej2-buttons": "~16.3.25"
},

@@ -15,0 +15,0 @@ "devDependencies": {

@@ -1,1 +0,4 @@

export * from './index';
import * as popups from './index';
import * as base from '@syncfusion/ej2-base';
import * as buttons from '@syncfusion/ej2-buttons';
export { popups, base, buttons };

@@ -12,2 +12,3 @@ import { setStyleAttribute, addClass, removeClass, ChildProperty, Complex } from '@syncfusion/ej2-base';import { isNullOrUndefined, formatUnit } from '@syncfusion/ej2-base';import { Browser } from '@syncfusion/ej2-base';import { calculatePosition, OffsetPosition, calculateRelativeBasedPosition } from '../common/position';import { Animation, AnimationModel, Property, Event, EmitType, Component } from '@syncfusion/ej2-base';import { NotifyPropertyChanges, INotifyPropertyChanged } from '@syncfusion/ej2-base';import { EventHandler } from '@syncfusion/ej2-base';import { flip, fit, isCollide , CollisionCoordinates } from '../common/collision';

* specify the offset left value
* @asptype object
*/

@@ -18,2 +19,3 @@ X?: string | number;

* specify the offset top value.
* @asptype object
*/

@@ -20,0 +22,0 @@ Y?: string | number;

@@ -11,2 +11,3 @@ import { ChildProperty } from '@syncfusion/ej2-base';

* specify the offset left value
* @asptype object
*/

@@ -16,2 +17,3 @@ X: string | number;

* specify the offset top value.
* @asptype object
*/

@@ -18,0 +20,0 @@ Y: string | number;

@@ -686,3 +686,5 @@ var __extends = (this && this.__extends) || (function () {

var finalValue = parentZindex.concat(childrenZindex, siblingsZindex);
return Math.max.apply(Math, finalValue) + 1;
var currentZindexValue = Math.max.apply(Math, finalValue) + 1;
// Checking the max-zindex value
return currentZindexValue > 2147483647 ? 2147483647 : currentZindexValue;
}

@@ -707,3 +709,4 @@ /**

}
return Math.max.apply(Math, maxZindex) + 1;
var currentZindexValue = Math.max.apply(Math, maxZindex) + 1;
return currentZindexValue > 2147483647 ? 2147483647 : currentZindexValue;
}

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 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

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc