Socket
Socket
Sign inDemoInstall

@syncfusion/ej2-buttons

Package Overview
Dependencies
Maintainers
3
Versions
182
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@syncfusion/ej2-buttons - npm Package Compare versions

Comparing version 21.2.10 to 22.1.34

styles/button/_material3-dark-definition.scss

1

.eslintrc.json

@@ -40,2 +40,3 @@ {

"security/detect-new-buffer":"error",
"security/detect-bidi-characters":"error",
"@typescript-eslint/no-inferrable-types": "off",

@@ -42,0 +43,0 @@ "@typescript-eslint/ban-types": ["warn", {

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

## 21.2.10 (2023-06-13)
### RadioButton

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

2

dist/global/index.d.ts
/*!
* filename: index.d.ts
* version : 21.2.10
* version : 22.1.34
* 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-buttons@*",
"_id": "@syncfusion/ej2-buttons@21.2.6",
"_id": "@syncfusion/ej2-buttons@18.60.1",
"_inBundle": false,
"_integrity": "sha512-nW6BtPgcgDYGuJcC39I1QdlyeY6lJFD/kKx3mee2isS1YMtKpcD7Fyzzun9DoOH2z18Flnxd1qwVws2NfQR1TQ==",
"_integrity": "sha512-RsRUMQ2kQK0VRorPQKe9pvah30/83TPJ3+anjTYM6h5qd37kn21Wst4HVzY/oT6C3VNjqJCkt6YPabXABR1MWA==",
"_location": "/@syncfusion/ej2-buttons",

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

],
"_resolved": "https://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-buttons/-/ej2-buttons-21.2.6.tgz",
"_shasum": "2b0186c7c3a568f2c3b23b55b1033f6d633408ce",
"_resolved": "https://nexus.syncfusion.com/repository/ej2-release/@syncfusion/ej2-buttons/-/ej2-buttons-18.60.1.tgz",
"_shasum": "5d45e62059eb0500df4b5cbc4945a093961faddc",
"_spec": "@syncfusion/ej2-buttons@*",

@@ -60,3 +60,3 @@ "_where": "/jenkins/workspace/elease-automation_release_21.1.1/packages/included",

"dependencies": {
"@syncfusion/ej2-base": "~21.2.9"
"@syncfusion/ej2-base": "~22.1.34"
},

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

"typings": "index.d.ts",
"version": "21.2.10",
"version": "22.1.34",
"sideEffects": false
}

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

};
// eslint-disable-next-line @typescript-eslint/no-explicit-any
CheckBox.prototype.setText = function (text) {

@@ -426,0 +427,0 @@ var wrapper = this.getWrapper();

@@ -7,28 +7,18 @@ import { Component, INotifyPropertyChanged } from '@syncfusion/ej2-base';

export declare const classNames: ClassNames;
export declare type selectionType =
/**
* Refers to the position of the selected chip in the list of chips
*/
'index' |
* ```props
* index :- Refers to the position of the selected chip in the list of chips
* value :- Refers to the underlying data value associated with the selected chip.
* text :-Refers to the displayed text on the selected chip.
* ```
*/
export declare type selectionType = 'index' | 'value' | 'text';
/**
* Refers to the underlying data value associated with the selected chip.
*/
'value' |
/**
* Refers to the displayed text on the selected chip.
*/
'text';
export declare type Selection =
/**
* Allows the user to select single chip at the same time.
*/
'Single' |
/**
* Allows the user to select multiple chips at the same time.
*/
'Multiple' |
/**
* Chips are displayed as read-only.
*/
'None';
* ```props
* Single :- Allows the user to select single chip at the same time.
* Multiple :- Allows the user to select multiple chips at the same time.
* None :- Chips are displayed as read-only.
* ```
*/
export declare type Selection = 'Single' | 'Multiple' | 'None';
export interface ClassNames {

@@ -35,0 +25,0 @@ chipSet: string;

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

}
if (this.isVue && value && value === this.value) {
this.checked = true;
}
if (this.isVue ? this.value && type !== 'boolean' && !value : this.value) {

@@ -381,2 +378,3 @@ this.element.setAttribute('value', this.value);

};
// eslint-disable-next-line @typescript-eslint/no-explicit-any
RadioButton.prototype.setText = function (text) {

@@ -383,0 +381,0 @@ var label = this.getLabel();

@@ -207,4 +207,5 @@ import { BaseEventArgs, EmitType, Event, ChildProperty, Collection, Complex, Component, INotifyPropertyChanged, NotifyPropertyChanges, Property, getUniqueID, EventHandler, isRippleEnabled, removeClass, addClass, attributes } from '@syncfusion/ej2-base';import { select, extend, deleteObject, KeyboardEvents, append, rippleEffect, remove, closest, selectAll, KeyboardEventArgs, isNullOrUndefined, compile, formatUnit, Animation, AnimationModel, Effect as baseEffect } from '@syncfusion/ej2-base';import { Fab, FabPosition } from './../floating-action-button/index';import { IconPosition } from './../button/index';

* @default ''
* @aspType string
*/
itemTemplate?: string;
itemTemplate?: string | Function;

@@ -275,4 +276,5 @@ /**

* @default ''
* @aspType string
*/
popupTemplate?: string;
popupTemplate?: string | Function;

@@ -279,0 +281,0 @@ /**

@@ -351,4 +351,5 @@ import { BaseEventArgs, EmitType, ChildProperty, Component, INotifyPropertyChanged } from '@syncfusion/ej2-base';

* @default ''
* @aspType string
*/
itemTemplate: string;
itemTemplate: string | Function;
/**

@@ -413,4 +414,5 @@ * Defines the display mode of speed dial action items.

* @default ''
* @aspType string
*/
popupTemplate: string;
popupTemplate: string | Function;
/**

@@ -417,0 +419,0 @@ * Provides the options to customize the speed dial action buttons when mode of speed dial is radial

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

var tempEle = select(template);
if (tempEle) {
if (typeof template !== 'function' && tempEle) {
//Return innerHTML incase of jsrenderer script else outerHTML

@@ -459,0 +459,0 @@ stringContent = tempEle.tagName === 'SCRIPT' ? tempEle.innerHTML : tempEle.outerHTML;

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

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

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