@syncfusion/ej2-react-popups
Advanced tools
Comparing version 16.2.41 to 16.2.45
@@ -5,2 +5,4 @@ # Changelog | ||
## 16.2.41 (2018-06-25) | ||
### Dialog | ||
@@ -7,0 +9,0 @@ |
@@ -1,8 +0,1 @@ | ||
define(["require", "exports", "./src/dialog/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/dialog/index'; |
/*! | ||
* filename: ej2-react-popups.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-popups", | ||
"version": "16.2.41", | ||
"version": "16.2.45", | ||
"description": "Essential JS 2 popup Component for React", | ||
@@ -17,9 +17,9 @@ "author": "Syncfusion Inc.", | ||
"main": "./dist/ej2-react-popups.umd.min.js", | ||
"module": "dist/es6/ej2-react-popups.es5.js", | ||
"module": "./src/index.js", | ||
"es2015": "dist/es6/ej2-react-popups.es2015.js", | ||
"readme": "ReadMe.md", | ||
"dependencies": { | ||
"@syncfusion/ej2-base": "~16.2.41", | ||
"@syncfusion/ej2-react-base": "~16.2.41", | ||
"@syncfusion/ej2-popups": "16.2.41" | ||
"@syncfusion/ej2-base": "~16.2.45", | ||
"@syncfusion/ej2-react-base": "~16.2.45", | ||
"@syncfusion/ej2-popups": "16.2.45" | ||
}, | ||
@@ -26,0 +26,0 @@ "devDependencies": { |
@@ -11,24 +11,21 @@ var __extends = (this && this.__extends) || (function () { | ||
})(); | ||
define(["require", "exports", "@syncfusion/ej2-react-base"], function (require, exports, ej2_react_base_1) { | ||
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
var DialogButtonDirective = (function (_super) { | ||
__extends(DialogButtonDirective, _super); | ||
function DialogButtonDirective() { | ||
return _super !== null && _super.apply(this, arguments) || this; | ||
} | ||
DialogButtonDirective.moduleName = 'dialogButton'; | ||
return DialogButtonDirective; | ||
}(ej2_react_base_1.ComplexBase)); | ||
exports.DialogButtonDirective = DialogButtonDirective; | ||
var ButtonsDirective = (function (_super) { | ||
__extends(ButtonsDirective, _super); | ||
function ButtonsDirective() { | ||
return _super !== null && _super.apply(this, arguments) || this; | ||
} | ||
ButtonsDirective.propertyName = 'buttons'; | ||
ButtonsDirective.moduleName = 'buttons'; | ||
return ButtonsDirective; | ||
}(ej2_react_base_1.ComplexBase)); | ||
exports.ButtonsDirective = ButtonsDirective; | ||
}); | ||
import { ComplexBase } from '@syncfusion/ej2-react-base'; | ||
var DialogButtonDirective = (function (_super) { | ||
__extends(DialogButtonDirective, _super); | ||
function DialogButtonDirective() { | ||
return _super !== null && _super.apply(this, arguments) || this; | ||
} | ||
DialogButtonDirective.moduleName = 'dialogButton'; | ||
return DialogButtonDirective; | ||
}(ComplexBase)); | ||
export { DialogButtonDirective }; | ||
var ButtonsDirective = (function (_super) { | ||
__extends(ButtonsDirective, _super); | ||
function ButtonsDirective() { | ||
return _super !== null && _super.apply(this, arguments) || this; | ||
} | ||
ButtonsDirective.propertyName = 'buttons'; | ||
ButtonsDirective.moduleName = 'buttons'; | ||
return ButtonsDirective; | ||
}(ComplexBase)); | ||
export { ButtonsDirective }; |
@@ -29,3 +29,3 @@ /// <reference types="react" /> | ||
children?: React.ReactNode | React.ReactNode[]; | ||
}> & Readonly<DialogModel & DefaultHtmlAttributes>; | ||
}> & Readonly<DialogModel & DefaultHtmlAttributes | DialogTypecast>; | ||
forceUpdate: (callBack?: () => any) => void; | ||
@@ -32,0 +32,0 @@ context: Object; |
@@ -11,28 +11,27 @@ var __extends = (this && this.__extends) || (function () { | ||
})(); | ||
define(["require", "exports", "react", "@syncfusion/ej2-popups", "@syncfusion/ej2-react-base"], function (require, exports, React, ej2_popups_1, ej2_react_base_1) { | ||
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
var DialogComponent = (function (_super) { | ||
__extends(DialogComponent, _super); | ||
function DialogComponent(props) { | ||
var _this = _super.call(this, props) || this; | ||
_this.initRenderCalled = false; | ||
_this.checkInjectedModules = false; | ||
_this.directivekeys = { 'buttons': 'dialogButton' }; | ||
_this.state = props; | ||
return _this; | ||
import * as React from 'react'; | ||
import { Dialog } from '@syncfusion/ej2-popups'; | ||
import { ComponentBase, applyMixins } from '@syncfusion/ej2-react-base'; | ||
var DialogComponent = (function (_super) { | ||
__extends(DialogComponent, _super); | ||
function DialogComponent(props) { | ||
var _this = _super.call(this, props) || this; | ||
_this.initRenderCalled = false; | ||
_this.checkInjectedModules = false; | ||
_this.directivekeys = { 'buttons': 'dialogButton' }; | ||
_this.state = props; | ||
return _this; | ||
} | ||
DialogComponent.prototype.render = function () { | ||
if ((this.element && !this.initRenderCalled) || this.refreshing) { | ||
_super.prototype.render.call(this); | ||
this.initRenderCalled = true; | ||
} | ||
DialogComponent.prototype.render = function () { | ||
if ((this.element && !this.initRenderCalled) || this.refreshing) { | ||
_super.prototype.render.call(this); | ||
this.initRenderCalled = true; | ||
} | ||
else { | ||
return React.createElement('div', this.getDefaultAttributes(), this.props.children); | ||
} | ||
}; | ||
return DialogComponent; | ||
}(ej2_popups_1.Dialog)); | ||
exports.DialogComponent = DialogComponent; | ||
ej2_react_base_1.applyMixins(DialogComponent, [ej2_react_base_1.ComponentBase, React.PureComponent]); | ||
}); | ||
else { | ||
return React.createElement('div', this.getDefaultAttributes(), this.props.children); | ||
} | ||
}; | ||
return DialogComponent; | ||
}(Dialog)); | ||
export { DialogComponent }; | ||
applyMixins(DialogComponent, [ComponentBase, React.PureComponent]); |
@@ -1,9 +0,2 @@ | ||
define(["require", "exports", "./buttons-directive", "./dialog.component"], function (require, exports, buttons_directive_1, dialog_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(buttons_directive_1); | ||
__export(dialog_component_1); | ||
}); | ||
export * from './buttons-directive'; | ||
export * from './dialog.component'; |
@@ -1,10 +0,3 @@ | ||
define(["require", "exports", "./dialog", "./tooltip", "@syncfusion/ej2-popups"], function (require, exports, dialog_1, tooltip_1, ej2_popups_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(dialog_1); | ||
__export(tooltip_1); | ||
__export(ej2_popups_1); | ||
}); | ||
export * from './dialog'; | ||
export * from './tooltip'; | ||
export * from '@syncfusion/ej2-popups'; |
@@ -1,8 +0,1 @@ | ||
define(["require", "exports", "./tooltip.component"], function (require, exports, tooltip_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(tooltip_component_1); | ||
}); | ||
export * from './tooltip.component'; |
@@ -24,3 +24,3 @@ /// <reference types="react" /> | ||
children?: React.ReactNode | React.ReactNode[]; | ||
}> & Readonly<TooltipModel & DefaultHtmlAttributes>; | ||
}> & Readonly<TooltipModel & DefaultHtmlAttributes | TooltipTypecast>; | ||
forceUpdate: (callBack?: () => any) => void; | ||
@@ -27,0 +27,0 @@ context: Object; |
@@ -11,27 +11,26 @@ var __extends = (this && this.__extends) || (function () { | ||
})(); | ||
define(["require", "exports", "react", "@syncfusion/ej2-popups", "@syncfusion/ej2-react-base"], function (require, exports, React, ej2_popups_1, ej2_react_base_1) { | ||
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
var TooltipComponent = (function (_super) { | ||
__extends(TooltipComponent, _super); | ||
function TooltipComponent(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 { Tooltip } from '@syncfusion/ej2-popups'; | ||
import { ComponentBase, applyMixins } from '@syncfusion/ej2-react-base'; | ||
var TooltipComponent = (function (_super) { | ||
__extends(TooltipComponent, _super); | ||
function TooltipComponent(props) { | ||
var _this = _super.call(this, props) || this; | ||
_this.initRenderCalled = false; | ||
_this.checkInjectedModules = false; | ||
_this.state = props; | ||
return _this; | ||
} | ||
TooltipComponent.prototype.render = function () { | ||
if ((this.element && !this.initRenderCalled) || this.refreshing) { | ||
_super.prototype.render.call(this); | ||
this.initRenderCalled = true; | ||
} | ||
TooltipComponent.prototype.render = function () { | ||
if ((this.element && !this.initRenderCalled) || this.refreshing) { | ||
_super.prototype.render.call(this); | ||
this.initRenderCalled = true; | ||
} | ||
else { | ||
return React.createElement('div', this.getDefaultAttributes(), this.props.children); | ||
} | ||
}; | ||
return TooltipComponent; | ||
}(ej2_popups_1.Tooltip)); | ||
exports.TooltipComponent = TooltipComponent; | ||
ej2_react_base_1.applyMixins(TooltipComponent, [ej2_react_base_1.ComponentBase, React.PureComponent]); | ||
}); | ||
else { | ||
return React.createElement('div', this.getDefaultAttributes(), this.props.children); | ||
} | ||
}; | ||
return TooltipComponent; | ||
}(Tooltip)); | ||
export { TooltipComponent }; | ||
applyMixins(TooltipComponent, [ComponentBase, React.PureComponent]); |
@@ -1,8 +0,1 @@ | ||
define(["require", "exports", "./src/tooltip/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/tooltip/index'; |
6347507
47703
+ Added@syncfusion/ej2-popups@16.2.45(transitive)
- Removed@syncfusion/ej2-popups@16.2.41(transitive)