Socket
Socket
Sign inDemoInstall

@syncfusion/ej2-react-buttons

Package Overview
Dependencies
Maintainers
2
Versions
180
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@syncfusion/ej2-react-buttons - npm Package Compare versions

Comparing version 16.2.41 to 16.2.45

9

button.js

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

define(["require", "exports", "./src/button/index"], function (require, exports, index_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(index_1);
});
export * from './src/button/index';

2

CHANGELOG.md

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

## 16.2.41 (2018-06-25)
### Button

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

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

define(["require", "exports", "./src/check-box/index"], function (require, exports, index_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(index_1);
});
export * from './src/check-box/index';
{
"name": "Buttons",
"description": "Button Components",
"keywords": "ej2, syncfusion, buttons, ej2-ng-buttons checkbox checkboxes",
"keywords": {
"common": ["ej2", "syncfusion", "ej2-buttons", "button", "ej2 button", "checkbox", "ej2 checkbox", "checkboxes", "radio button", "radiobutton", "radiobuttons", "ej2 radiobutton", "switch", "ej2 switch", "primary button", "flat button", "round button", "icon button", "togglebutton", "toggle button", "form control", "form controls", "input"],
"angular": ["angular", "ng", "ej2-ng-buttons", "ng-button", "ng-checkbox", "ng-radiobutton", "ng-switch" ],
"react": ["react", "reactjs", "ej2-react-buttons", "react-button", "react-checkbox", "react-radiobutton", "react-switch"],
"vue": ["vue", "vuejs", "ej2-vue-buttons", "vue-button", "vue-checkbox", "vue-radiobutton", "vue-switch"]
},
"repository": {

@@ -6,0 +11,0 @@ "type": "git",

/*!
* filename: ej2-react-buttons.umd.min.js
* version : 16.1.26
* version : 16.2.41
* Copyright Syncfusion Inc. 2001 - 2018. All rights reserved.

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

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

define(["require", "exports", "./src/index"], function (require, exports, index_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(index_1);
});
export * from './src/index';
{
"name": "@syncfusion/ej2-react-buttons",
"version": "16.2.41",
"version": "16.2.45",
"description": "Essential JS 2 Button Components for React",

@@ -17,9 +17,9 @@ "author": "Syncfusion Inc.",

"main": "./dist/ej2-react-buttons.umd.min.js",
"module": "dist/es6/ej2-react-buttons.es5.js",
"module": "./src/index.js",
"es2015": "dist/es6/ej2-react-buttons.es2015.js",
"readme": "ReadMe.md",
"dependencies": {
"@syncfusion/ej2-base": "~16.2.41",
"@syncfusion/ej2-react-base": "~16.2.41",
"@syncfusion/ej2-buttons": "16.2.41"
"@syncfusion/ej2-base": "~16.2.45",
"@syncfusion/ej2-react-base": "~16.2.45",
"@syncfusion/ej2-buttons": "16.2.45"
},

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

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

define(["require", "exports", "./src/radio-button/index"], function (require, exports, index_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(index_1);
});
export * from './src/radio-button/index';

@@ -11,27 +11,26 @@ var __extends = (this && this.__extends) || (function () {

})();
define(["require", "exports", "react", "@syncfusion/ej2-buttons", "@syncfusion/ej2-react-base"], function (require, exports, React, ej2_buttons_1, ej2_react_base_1) {
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
var ButtonComponent = (function (_super) {
__extends(ButtonComponent, _super);
function ButtonComponent(props) {
var _this = _super.call(this, props) || this;
_this.initRenderCalled = false;
_this.checkInjectedModules = false;
_this.state = props;
return _this;
import * as React from 'react';
import { Button } from '@syncfusion/ej2-buttons';
import { ComponentBase, applyMixins } from '@syncfusion/ej2-react-base';
var ButtonComponent = (function (_super) {
__extends(ButtonComponent, _super);
function ButtonComponent(props) {
var _this = _super.call(this, props) || this;
_this.initRenderCalled = false;
_this.checkInjectedModules = false;
_this.state = props;
return _this;
}
ButtonComponent.prototype.render = function () {
if ((this.element && !this.initRenderCalled) || this.refreshing) {
_super.prototype.render.call(this);
this.initRenderCalled = true;
}
ButtonComponent.prototype.render = function () {
if ((this.element && !this.initRenderCalled) || this.refreshing) {
_super.prototype.render.call(this);
this.initRenderCalled = true;
}
else {
return React.createElement('button', this.getDefaultAttributes(), this.props.children);
}
};
return ButtonComponent;
}(ej2_buttons_1.Button));
exports.ButtonComponent = ButtonComponent;
ej2_react_base_1.applyMixins(ButtonComponent, [ej2_react_base_1.ComponentBase, React.PureComponent]);
});
else {
return React.createElement('button', this.getDefaultAttributes(), this.props.children);
}
};
return ButtonComponent;
}(Button));
export { ButtonComponent };
applyMixins(ButtonComponent, [ComponentBase, React.PureComponent]);

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

define(["require", "exports", "./button.component"], function (require, exports, button_component_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(button_component_1);
});
export * from './button.component';

@@ -11,27 +11,26 @@ var __extends = (this && this.__extends) || (function () {

})();
define(["require", "exports", "react", "@syncfusion/ej2-buttons", "@syncfusion/ej2-react-base"], function (require, exports, React, ej2_buttons_1, ej2_react_base_1) {
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
var CheckBoxComponent = (function (_super) {
__extends(CheckBoxComponent, _super);
function CheckBoxComponent(props) {
var _this = _super.call(this, props) || this;
_this.initRenderCalled = false;
_this.checkInjectedModules = false;
_this.state = props;
return _this;
import * as React from 'react';
import { CheckBox } from '@syncfusion/ej2-buttons';
import { ComponentBase, applyMixins } from '@syncfusion/ej2-react-base';
var CheckBoxComponent = (function (_super) {
__extends(CheckBoxComponent, _super);
function CheckBoxComponent(props) {
var _this = _super.call(this, props) || this;
_this.initRenderCalled = false;
_this.checkInjectedModules = false;
_this.state = props;
return _this;
}
CheckBoxComponent.prototype.render = function () {
if ((this.element && !this.initRenderCalled) || this.refreshing) {
_super.prototype.render.call(this);
this.initRenderCalled = true;
}
CheckBoxComponent.prototype.render = function () {
if ((this.element && !this.initRenderCalled) || this.refreshing) {
_super.prototype.render.call(this);
this.initRenderCalled = true;
}
else {
return React.createElement('input', this.getDefaultAttributes());
}
};
return CheckBoxComponent;
}(ej2_buttons_1.CheckBox));
exports.CheckBoxComponent = CheckBoxComponent;
ej2_react_base_1.applyMixins(CheckBoxComponent, [ej2_react_base_1.ComponentBase, React.PureComponent]);
});
else {
return React.createElement('input', this.getDefaultAttributes());
}
};
return CheckBoxComponent;
}(CheckBox));
export { CheckBoxComponent };
applyMixins(CheckBoxComponent, [ComponentBase, React.PureComponent]);

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

define(["require", "exports", "./checkbox.component"], function (require, exports, checkbox_component_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(checkbox_component_1);
});
export * from './checkbox.component';

@@ -1,12 +0,5 @@

define(["require", "exports", "./button", "./check-box", "./radio-button", "./switch", "@syncfusion/ej2-buttons"], function (require, exports, button_1, check_box_1, radio_button_1, switch_1, ej2_buttons_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(button_1);
__export(check_box_1);
__export(radio_button_1);
__export(switch_1);
__export(ej2_buttons_1);
});
export * from './button';
export * from './check-box';
export * from './radio-button';
export * from './switch';
export * from '@syncfusion/ej2-buttons';

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

define(["require", "exports", "./radiobutton.component"], function (require, exports, radiobutton_component_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(radiobutton_component_1);
});
export * from './radiobutton.component';

@@ -11,27 +11,26 @@ var __extends = (this && this.__extends) || (function () {

})();
define(["require", "exports", "react", "@syncfusion/ej2-buttons", "@syncfusion/ej2-react-base"], function (require, exports, React, ej2_buttons_1, ej2_react_base_1) {
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
var RadioButtonComponent = (function (_super) {
__extends(RadioButtonComponent, _super);
function RadioButtonComponent(props) {
var _this = _super.call(this, props) || this;
_this.initRenderCalled = false;
_this.checkInjectedModules = false;
_this.state = props;
return _this;
import * as React from 'react';
import { RadioButton } from '@syncfusion/ej2-buttons';
import { ComponentBase, applyMixins } from '@syncfusion/ej2-react-base';
var RadioButtonComponent = (function (_super) {
__extends(RadioButtonComponent, _super);
function RadioButtonComponent(props) {
var _this = _super.call(this, props) || this;
_this.initRenderCalled = false;
_this.checkInjectedModules = false;
_this.state = props;
return _this;
}
RadioButtonComponent.prototype.render = function () {
if ((this.element && !this.initRenderCalled) || this.refreshing) {
_super.prototype.render.call(this);
this.initRenderCalled = true;
}
RadioButtonComponent.prototype.render = function () {
if ((this.element && !this.initRenderCalled) || this.refreshing) {
_super.prototype.render.call(this);
this.initRenderCalled = true;
}
else {
return React.createElement('input', this.getDefaultAttributes());
}
};
return RadioButtonComponent;
}(ej2_buttons_1.RadioButton));
exports.RadioButtonComponent = RadioButtonComponent;
ej2_react_base_1.applyMixins(RadioButtonComponent, [ej2_react_base_1.ComponentBase, React.PureComponent]);
});
else {
return React.createElement('input', this.getDefaultAttributes());
}
};
return RadioButtonComponent;
}(RadioButton));
export { RadioButtonComponent };
applyMixins(RadioButtonComponent, [ComponentBase, React.PureComponent]);

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

define(["require", "exports", "./switch.component"], function (require, exports, switch_component_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(switch_component_1);
});
export * from './switch.component';

@@ -11,27 +11,26 @@ var __extends = (this && this.__extends) || (function () {

})();
define(["require", "exports", "react", "@syncfusion/ej2-buttons", "@syncfusion/ej2-react-base"], function (require, exports, React, ej2_buttons_1, ej2_react_base_1) {
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
var SwitchComponent = (function (_super) {
__extends(SwitchComponent, _super);
function SwitchComponent(props) {
var _this = _super.call(this, props) || this;
_this.initRenderCalled = false;
_this.checkInjectedModules = false;
_this.state = props;
return _this;
import * as React from 'react';
import { Switch } from '@syncfusion/ej2-buttons';
import { ComponentBase, applyMixins } from '@syncfusion/ej2-react-base';
var SwitchComponent = (function (_super) {
__extends(SwitchComponent, _super);
function SwitchComponent(props) {
var _this = _super.call(this, props) || this;
_this.initRenderCalled = false;
_this.checkInjectedModules = false;
_this.state = props;
return _this;
}
SwitchComponent.prototype.render = function () {
if ((this.element && !this.initRenderCalled) || this.refreshing) {
_super.prototype.render.call(this);
this.initRenderCalled = true;
}
SwitchComponent.prototype.render = function () {
if ((this.element && !this.initRenderCalled) || this.refreshing) {
_super.prototype.render.call(this);
this.initRenderCalled = true;
}
else {
return React.createElement('input', this.getDefaultAttributes());
}
};
return SwitchComponent;
}(ej2_buttons_1.Switch));
exports.SwitchComponent = SwitchComponent;
ej2_react_base_1.applyMixins(SwitchComponent, [ej2_react_base_1.ComponentBase, React.PureComponent]);
});
else {
return React.createElement('input', this.getDefaultAttributes());
}
};
return SwitchComponent;
}(Switch));
export { SwitchComponent };
applyMixins(SwitchComponent, [ComponentBase, React.PureComponent]);

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

define(["require", "exports", "./src/switch/index"], function (require, exports, index_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(index_1);
});
export * from './src/switch/index';
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