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 19.4.53 to 20.1.47

styles/dialog/_fluent-dark-definition.scss

40

CHANGELOG.md

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

### Common
#### Bug Fixes
- `#FB-31050` - Now, the resizing works property while rendering `File Manager` inside the `Dialog`.
## 19.4.52 (2022-02-15)
### Tooltip
#### Bug Fixes
- `#I362431` - The issue with "Collision doesn't work property while specify the container property in Tooltip component" has been resolved.
## 19.4.50 (2022-02-08)
### Dialog
#### Bug Fixes
- `#F171863` - Now, setting the `showCloseIcon` to `false` prevents from rendering the close icon in the dialog header.
## 19.4.47 (2022-01-25)
### Common
#### Bug Fixes
- `I339589` - Resolved the `DropdownButton` issue with react component as target.
## 19.4.41 (2022-01-04)
### Tooltip
#### Bug Fixes
- `#I357096` - Now, dynamically adding the container property of tooltip works properly.
## 19.4.38 (2021-12-17)

@@ -50,3 +12,3 @@

- `#I322737` - The `container` property support has been provided which allows to place the tooltip's pop-up within any user preferred element.
- `#322737` - The `container` property support has been provided which allows to place the tooltip's pop-up within any user preferred element.

@@ -53,0 +15,0 @@ ## 19.3.47 (2021-10-26)

/*!
* filename: index.d.ts
* version : 19.4.53
* version : 20.1.47
* Copyright Syncfusion Inc. 2001 - 2020. All rights reserved.

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

{
"_from": "@syncfusion/ej2-popups@*",
"_id": "@syncfusion/ej2-popups@19.4.52",
"_id": "@syncfusion/ej2-popups@19.16.2",
"_inBundle": false,
"_integrity": "sha512-pHoHizrrgUCKI4Nxn9cQL1dTgbllshgktFetLcaGjX5ZXg7u0sfwCG11m2rTFZbbZxQneJiBwscG2VrgBCG2NQ==",
"_integrity": "sha512-p0QQ3Xazc6+9G5E0FtCpBd4GJQilkWNMCz9qyeHYM3Jf1aI/GWXiBIlU9rgqym4YDk8rBO3KjTMzUfPIc6sbOw==",
"_location": "/@syncfusion/ej2-popups",

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

],
"_resolved": "http://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-popups/-/ej2-popups-19.4.52.tgz",
"_shasum": "e1b6cb7fe14eac3d5e200a958ad398ed3936df5f",
"_resolved": "http://nexus.syncfusion.com/repository/ej2-release/@syncfusion/ej2-popups/-/ej2-popups-19.16.2.tgz",
"_shasum": "a39e4512fb29b0b66e12bca20ed4c12c6b5d6bcd",
"_spec": "@syncfusion/ej2-popups@*",

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

"dependencies": {
"@syncfusion/ej2-base": "~19.4.52",
"@syncfusion/ej2-buttons": "~19.4.53"
"@syncfusion/ej2-base": "~20.1.47",
"@syncfusion/ej2-buttons": "~20.1.47"
},

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

"typings": "index.d.ts",
"version": "19.4.53",
"version": "20.1.47",
"sideEffects": false
}

@@ -91,2 +91,2 @@ # ej2-popups

© Copyright 2019 Syncfusion, Inc. All Rights Reserved. The Syncfusion Essential Studio license and copyright applies to this distribution.
© Copyright 2022 Syncfusion, Inc. All Rights Reserved. The Syncfusion Essential Studio license and copyright applies to this distribution.

@@ -13,3 +13,3 @@ export declare type createElementParams = (tag: string, prop?: {

*/
export declare type SpinnerType = 'Material' | 'Fabric' | 'Bootstrap' | 'HighContrast' | 'Bootstrap4' | 'Tailwind' | 'Bootstrap5';
export declare type SpinnerType = 'Material' | 'Fabric' | 'Bootstrap' | 'HighContrast' | 'Bootstrap4' | 'Tailwind' | 'Bootstrap5' | 'Fluent';
/**

@@ -16,0 +16,0 @@ * Function to change the Spinners in a page globally from application end.

@@ -5,2 +5,3 @@ import { isNullOrUndefined, classList, createElement } from '@syncfusion/ej2-base';

var DEFT_FAB_WIDTH = 30;
var DEFT_FLUENT_WIDTH = 30;
var DEFT_TAIL_WIDTH = 24;

@@ -14,2 +15,3 @@ var DEFT_BOOT_WIDTH = 30;

var CLS_FABRICSPIN = 'e-spin-fabric';
var CLS_FLUENTSPIN = 'e-spin-fluent';
var CLS_TAILWINDSPIN = 'e-spin-tailwind';

@@ -186,2 +188,15 @@ var CLS_BOOTSPIN = 'e-spin-bootstrap';

}
/**
*
* @param {HTMLElement} container - specifies the element
* @param {number} radius - specifies the radius
* @param {createElementParams} makeElement - specifies the element
* @returns {void}
*/
function createFluentSinner(container, radius, makeElement) {
var uniqueID = random_generator();
globalTimeOut[uniqueID] = { timeOut: 0, type: 'Fluent', radius: radius };
create_fabric_element(container, uniqueID, CLS_FLUENTSPIN, makeElement);
fb_calculate_attributes(radius, container, CLS_FLUENTSPIN);
}
function createTailwindSpinner(container, radius, makeElement) {

@@ -236,2 +251,5 @@ var uniqueID = random_generator();

break;
case 'Fluent':
createFluentSinner(innerContainer, radius, makeElement);
break;
case 'Bootstrap':

@@ -432,2 +450,5 @@ createBootstrapSpinner(innerContainer, radius, makeElement);

break;
case 'Fluent':
defaultSize = DEFT_FLUENT_WIDTH;
break;
case 'Bootstrap4':

@@ -434,0 +455,0 @@ defaultSize = DEFT_BOOT4_WIDTH;

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

}
tooltipContent[this.enableHtmlParse ? 'innerHTML' : 'textContent'] = this.content;
// eslint-disable-next-line
var tempFunction = compile(this.content);
var tempArr = tempFunction({}, this, 'content', this.element.id + 'content', undefined, undefined, tooltipContent);
if (tempArr) {
if (this.enableHtmlParse) {
var nodeList = tempArr.length;
for (var i = 0; i < nodeList; i++) {
append(tempArr, tooltipContent);
}
}
else {
tooltipContent['textContent'] = this.content;
}
this.enableHtmlParse ? append(tempArr, tooltipContent) : tooltipContent['textContent'] = this.content;
}
}

@@ -335,0 +349,0 @@ else {

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

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