Socket
Socket
Sign inDemoInstall

@syncfusion/ej2-popups

Package Overview
Dependencies
Maintainers
3
Versions
226
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 20.1.58 to 20.2.36

styles/dialog/_fusionnew-definition.scss

2

CHANGELOG.md

@@ -5,2 +5,4 @@ # Changelog

## 20.1.58 (2022-05-31)
### Popup

@@ -7,0 +9,0 @@

2

dist/global/index.d.ts
/*!
* filename: index.d.ts
* version : 20.1.58
* version : 20.2.36
* Copyright Syncfusion Inc. 2001 - 2020. All rights reserved.

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

@@ -1,67 +0,83 @@

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
const e2e_1 = require("@syncfusion/ej2-base/helpers/e2e");
class DialogHelper extends e2e_1.TestHelper {
constructor(id, wrapperFn) {
super();
this.id = id;
if (wrapperFn !== undefined) {
this.wrapperFn = wrapperFn;
var __extends = (this && this.__extends) || (function () {
var extendStatics = function (d, b) {
extendStatics = Object.setPrototypeOf ||
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
return extendStatics(d, b);
};
return function (d, b) {
extendStatics(d, b);
function __() { this.constructor = d; }
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
};
})();
define(["require", "exports", "@syncfusion/ej2-base/helpers/e2e"], function (require, exports, e2e_1) {
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
var DialogHelper = /** @class */ (function (_super) {
__extends(DialogHelper, _super);
function DialogHelper(id, wrapperFn) {
var _this = _super.call(this) || this;
_this.id = id;
if (wrapperFn !== undefined) {
_this.wrapperFn = wrapperFn;
}
return _this;
}
return this;
}
/**
* The method which returns Dialog control's root element.
*/
getDialog() {
return this.selector('#' + this.id);
}
/**
* The method which returns content container of the Dialog control.
*/
getContentElement() {
return this.selector('#' + this.id + ' div.e-dlg-content');
}
/**
* The method which returns header container of the Dialog control.
*/
getHeaderElement() {
return this.selector('#' + this.id + ' div.e-dlg-header-content');
}
/**
* The method which returns footer buttons of the Dialog control.
*/
getFooterButtons() {
return this.selector('#' + this.id + ' div.e-footer-content .e-btn');
}
/**
* The method which returns close icon's button of the Dialog control.
*/
getCloseButton() {
return this.selector('#' + this.id + ' div.e-dlg-header-content .e-dlg-closeicon-btn');
}
/**
* The getModel method is used to return value of the property.
* @param property - Specifies name of the property. It must be string type.
*/
getModel(property) {
this.getModel(property);
}
/**
* The setModel method is used to set value for the property. It will accepts two arguments.
* @param property - Specifices name of the property which value is to be updated.
* @param value - Specifies corresponding value of the property.
*/
setModel(property, value) {
this.setModel(property, value);
}
/**
* The invoke method is used to access the public methods available in Dialog control.
* @param fName - Specifies method name of the Dialog control. It must be string type.
* @param args - Specifies arguments. This is optional.
*/
invoke(fName, args) {
this.invoke(fName, args);
}
}
exports.DialogHelper = DialogHelper;
/**
* The method which returns Dialog control's root element.
*/
DialogHelper.prototype.getDialog = function () {
return this.selector('#' + this.id);
};
/**
* The method which returns content container of the Dialog control.
*/
DialogHelper.prototype.getContentElement = function () {
return this.selector('#' + this.id + ' div.e-dlg-content');
};
/**
* The method which returns header container of the Dialog control.
*/
DialogHelper.prototype.getHeaderElement = function () {
return this.selector('#' + this.id + ' div.e-dlg-header-content');
};
/**
* The method which returns footer buttons of the Dialog control.
*/
DialogHelper.prototype.getFooterButtons = function () {
return this.selector('#' + this.id + ' div.e-footer-content .e-btn');
};
/**
* The method which returns close icon's button of the Dialog control.
*/
DialogHelper.prototype.getCloseButton = function () {
return this.selector('#' + this.id + ' div.e-dlg-header-content .e-dlg-closeicon-btn');
};
/**
* The getModel method is used to return value of the property.
* @param property - Specifies name of the property. It must be string type.
*/
DialogHelper.prototype.getModel = function (property) {
this.getModel(property);
};
/**
* The setModel method is used to set value for the property. It will accepts two arguments.
* @param property - Specifices name of the property which value is to be updated.
* @param value - Specifies corresponding value of the property.
*/
DialogHelper.prototype.setModel = function (property, value) {
this.setModel(property, value);
};
/**
* The invoke method is used to access the public methods available in Dialog control.
* @param fName - Specifies method name of the Dialog control. It must be string type.
* @param args - Specifies arguments. This is optional.
*/
DialogHelper.prototype.invoke = function (fName, args) {
this.invoke(fName, args);
};
return DialogHelper;
}(e2e_1.TestHelper));
exports.DialogHelper = DialogHelper;
});

@@ -1,8 +0,10 @@

"use strict";
function __export(m) {
for (var p in m) if (!exports.hasOwnProperty(p)) exports[p] = m[p];
}
Object.defineProperty(exports, "__esModule", { value: true });
__export(require("./spinner-helper"));
__export(require("./dialog-helper"));
__export(require("./tooltip"));
define(["require", "exports", "./spinner-helper", "./dialog-helper", "./tooltip"], function (require, exports, spinner_helper_1, dialog_helper_1, tooltip_1) {
"use strict";
function __export(m) {
for (var p in m) if (!exports.hasOwnProperty(p)) exports[p] = m[p];
}
Object.defineProperty(exports, "__esModule", { value: true });
__export(spinner_helper_1);
__export(dialog_helper_1);
__export(tooltip_1);
});

@@ -1,55 +0,71 @@

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
const e2e_1 = require("@syncfusion/ej2-base/helpers/e2e");
class SpinnerHelper extends e2e_1.TestHelper {
constructor(id, wrapperFn) {
super();
this.id = id;
if (wrapperFn !== undefined) {
this.wrapperFn = wrapperFn;
var __extends = (this && this.__extends) || (function () {
var extendStatics = function (d, b) {
extendStatics = Object.setPrototypeOf ||
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
return extendStatics(d, b);
};
return function (d, b) {
extendStatics(d, b);
function __() { this.constructor = d; }
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
};
})();
define(["require", "exports", "@syncfusion/ej2-base/helpers/e2e"], function (require, exports, e2e_1) {
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
var SpinnerHelper = /** @class */ (function (_super) {
__extends(SpinnerHelper, _super);
function SpinnerHelper(id, wrapperFn) {
var _this = _super.call(this) || this;
_this.id = id;
if (wrapperFn !== undefined) {
_this.wrapperFn = wrapperFn;
}
return _this;
}
return this;
}
/**
* The method which returns target element of the Spinner control.
*/
getSpinner() {
return this.selector('#' + this.id);
}
/**
* The getSpinnerPane method which returns wrapper element of the Spinner control.
*/
getSpinnerPane() {
return this.selector('#' + this.id + ' div.e-spinner-pane');
}
/**
* The method which returns Spinner image.
*/
getSpinnerImage() {
return this.selector('#' + this.id + ' div.e-spinner-pane .e-spinner-inner svg');
}
/**
* The getModel method is used to return value of the property.
* @param property - Specifies name of the property. It must be string type.
*/
getModel(property) {
this.getModel(property);
}
/**
* The setModel method is used to set value for the property. It will accepts two arguments.
* @param property - Specifices name of the property which value is to be updated.
* @param value - Specifies corresponding value of the property.
*/
setModel(property, value) {
this.setModel(property, value);
}
/**
* The invoke method is used to access the public methods available in Spinner control.
* @param fName - Specifies method name of the Spinner control. It must be string type.
* @param args - Specifies arguments. This is optional.
*/
invoke(fName, args) {
this.invoke(fName, args);
}
}
exports.SpinnerHelper = SpinnerHelper;
/**
* The method which returns target element of the Spinner control.
*/
SpinnerHelper.prototype.getSpinner = function () {
return this.selector('#' + this.id);
};
/**
* The getSpinnerPane method which returns wrapper element of the Spinner control.
*/
SpinnerHelper.prototype.getSpinnerPane = function () {
return this.selector('#' + this.id + ' div.e-spinner-pane');
};
/**
* The method which returns Spinner image.
*/
SpinnerHelper.prototype.getSpinnerImage = function () {
return this.selector('#' + this.id + ' div.e-spinner-pane .e-spinner-inner svg');
};
/**
* The getModel method is used to return value of the property.
* @param property - Specifies name of the property. It must be string type.
*/
SpinnerHelper.prototype.getModel = function (property) {
this.getModel(property);
};
/**
* The setModel method is used to set value for the property. It will accepts two arguments.
* @param property - Specifices name of the property which value is to be updated.
* @param value - Specifies corresponding value of the property.
*/
SpinnerHelper.prototype.setModel = function (property, value) {
this.setModel(property, value);
};
/**
* The invoke method is used to access the public methods available in Spinner control.
* @param fName - Specifies method name of the Spinner control. It must be string type.
* @param args - Specifies arguments. This is optional.
*/
SpinnerHelper.prototype.invoke = function (fName, args) {
this.invoke(fName, args);
};
return SpinnerHelper;
}(e2e_1.TestHelper));
exports.SpinnerHelper = SpinnerHelper;
});

@@ -1,41 +0,57 @@

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
const e2e_1 = require("@syncfusion/ej2-base/helpers/e2e");
/**
* E2E test helpers for Tooltip to easily interact and the test the component
*/
class TooltipHelper extends e2e_1.TestHelper {
var __extends = (this && this.__extends) || (function () {
var extendStatics = function (d, b) {
extendStatics = Object.setPrototypeOf ||
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
return extendStatics(d, b);
};
return function (d, b) {
extendStatics(d, b);
function __() { this.constructor = d; }
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
};
})();
define(["require", "exports", "@syncfusion/ej2-base/helpers/e2e"], function (require, exports, e2e_1) {
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
/**
* Initialize the Tooltip E2E helpers
* @param id Element id of the tooltip element
* @param wrapperFn Pass the wrapper function
* E2E test helpers for Tooltip to easily interact and the test the component
*/
constructor(id, wrapperFn) {
super();
this.id = id;
if (wrapperFn !== undefined) {
this.wrapperFn = wrapperFn;
var TooltipHelper = /** @class */ (function (_super) {
__extends(TooltipHelper, _super);
/**
* Initialize the Tooltip E2E helpers
* @param id Element id of the tooltip element
* @param wrapperFn Pass the wrapper function
*/
function TooltipHelper(id, wrapperFn) {
var _this = _super.call(this) || this;
_this.id = id;
if (wrapperFn !== undefined) {
_this.wrapperFn = wrapperFn;
}
return _this;
}
return this;
}
/**
* Used to get root element of the Tooltip component
*/
getElement() {
return this.selector('#' + this.id);
}
/**
* Used to get the opened tooltip popup element
*/
getTooltipPopup() {
return this.selector(`[id^="${this.id}_"]`);
}
/**
* Used to get the opened tooltip close button.
* Works only when `isSticky` is enabled
*/
getTooltipPopupCloseButton() {
return this.selector(`[id^="${this.id}_"] > div.e-icons.e-tooltip-close`);
}
}
exports.TooltipHelper = TooltipHelper;
/**
* Used to get root element of the Tooltip component
*/
TooltipHelper.prototype.getElement = function () {
return this.selector('#' + this.id);
};
/**
* Used to get the opened tooltip popup element
*/
TooltipHelper.prototype.getTooltipPopup = function () {
return this.selector("[id^=\"" + this.id + "_\"]");
};
/**
* Used to get the opened tooltip close button.
* Works only when `isSticky` is enabled
*/
TooltipHelper.prototype.getTooltipPopupCloseButton = function () {
return this.selector("[id^=\"" + this.id + "_\"] > div.e-icons.e-tooltip-close");
};
return TooltipHelper;
}(e2e_1.TestHelper));
exports.TooltipHelper = TooltipHelper;
});
{
"_from": "@syncfusion/ej2-popups@*",
"_id": "@syncfusion/ej2-popups@20.1.57",
"_id": "@syncfusion/ej2-popups@19.19.2",
"_inBundle": false,
"_integrity": "sha512-1oLRXx4PbEV5ddHAYNtmCCJpRZeIJ3XpDLo5S9z1SsDM4dXf0U4XUmEkXgzQe84VhLO3NhD/HDCuy507rZZZEw==",
"_integrity": "sha512-/1mORi1Kr7I4ZxxymjUUOfjSjsC0zR+EQSDfk1PybXLiRXU6ztEQHhp3H8yTx/NtUmDswgmAsMjzEhqERVwYbA==",
"_location": "/@syncfusion/ej2-popups",

@@ -44,4 +44,4 @@ "_phantomChildren": {},

],
"_resolved": "http://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-popups/-/ej2-popups-20.1.57.tgz",
"_shasum": "b5bf6ecb28ca3ee254b90a2c261a2ce3118f7c66",
"_resolved": "http://nexus.syncfusion.com/repository/ej2-release/@syncfusion/ej2-popups/-/ej2-popups-19.19.2.tgz",
"_shasum": "458a38924337fb185747b2b79e31e2c27959ff8f",
"_spec": "@syncfusion/ej2-popups@*",

@@ -57,4 +57,4 @@ "_where": "/jenkins/workspace/automation_release_19.1.0.1-ZPMUBNQ6AUYH6YGEFBPVYMEQLRRW2SLD4XCZ6GATNZJFYJ3RIAOA/packages/included",

"dependencies": {
"@syncfusion/ej2-base": "~20.1.57",
"@syncfusion/ej2-buttons": "~20.1.55"
"@syncfusion/ej2-base": "~20.2.36",
"@syncfusion/ej2-buttons": "~20.2.36"
},

@@ -94,4 +94,4 @@ "deprecated": false,

"typings": "index.d.ts",
"version": "20.1.58",
"version": "20.2.36",
"sideEffects": false
}

@@ -282,5 +282,5 @@ import { Component, Property, Event, Collection, L10n, EmitType, Complex, compile, createElement } from '@syncfusion/ej2-base';import { addClass, removeClass, detach, attributes, prepend, setStyleAttribute } from '@syncfusion/ej2-base';import { NotifyPropertyChanges, INotifyPropertyChanged, ChildProperty, isBlazor } from '@syncfusion/ej2-base';import { isNullOrUndefined, formatUnit, append, EventHandler, Draggable, extend } from '@syncfusion/ej2-base';import { BlazorDragEventArgs, SanitizeHtmlHelper, Browser } from '@syncfusion/ej2-base';import { Button, ButtonModel } from '@syncfusion/ej2-buttons';import { Popup, PositionData, getZindexPartial } from '../popup/popup';import { PositionDataModel } from '../popup/popup-model';import { createResize, removeResize, setMinHeight, setMaxWidth, setMaxHeight } from '../common/resize';

* * `Y value`: top, center, bottom, or offset value.
*
*
* > More information on the positioning in dialog can be found on this [documentation](../../dialog/getting-started/#positioning) section.
*
*
* {% codeBlock src='dialog/position/index.md' %}{% endcodeBlock %}

@@ -287,0 +287,0 @@ *

@@ -653,2 +653,3 @@ import { Component, EmitType } from '@syncfusion/ej2-base';

render(): void;
private initializeValue;
/**

@@ -655,0 +656,0 @@ *Initialize the event handler

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