@mjhls/mjh-framework 1.0.8 → 1.0.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.es.js +68 -1
- package/dist/index.es.js.map +1 -1
- package/dist/index.js +70 -0
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -12522,6 +12522,73 @@ var Normal$1 = function Normal$$1(props) {
|
|
|
12522
12522
|
);
|
|
12523
12523
|
};
|
|
12524
12524
|
|
|
12525
|
+
var AD300x250 = function (_Component) {
|
|
12526
|
+
inherits(AD300x250, _Component);
|
|
12527
|
+
|
|
12528
|
+
function AD300x250(props) {
|
|
12529
|
+
classCallCheck(this, AD300x250);
|
|
12530
|
+
|
|
12531
|
+
var _this = possibleConstructorReturn(this, (AD300x250.__proto__ || Object.getPrototypeOf(AD300x250)).call(this, props));
|
|
12532
|
+
|
|
12533
|
+
_this.option = {
|
|
12534
|
+
networkID: props.networkID,
|
|
12535
|
+
adUnit: props.adUnit
|
|
12536
|
+
};
|
|
12537
|
+
return _this;
|
|
12538
|
+
}
|
|
12539
|
+
|
|
12540
|
+
createClass(AD300x250, [{
|
|
12541
|
+
key: 'render',
|
|
12542
|
+
value: function render() {
|
|
12543
|
+
return React__default.createElement(
|
|
12544
|
+
lib_1,
|
|
12545
|
+
{ dfpNetworkId: this.option.networkID },
|
|
12546
|
+
React__default.createElement(
|
|
12547
|
+
'div',
|
|
12548
|
+
{ className: 'AD300x250' },
|
|
12549
|
+
React__default.createElement(lib_2, { sizes: [[300, 250]], adUnit: this.option.adUnit })
|
|
12550
|
+
)
|
|
12551
|
+
);
|
|
12552
|
+
}
|
|
12553
|
+
}]);
|
|
12554
|
+
return AD300x250;
|
|
12555
|
+
}(React.Component);
|
|
12556
|
+
|
|
12557
|
+
var AD300x250x600 = function (_Component) {
|
|
12558
|
+
inherits(AD300x250x600, _Component);
|
|
12559
|
+
|
|
12560
|
+
function AD300x250x600(props) {
|
|
12561
|
+
classCallCheck(this, AD300x250x600);
|
|
12562
|
+
|
|
12563
|
+
var _this = possibleConstructorReturn(this, (AD300x250x600.__proto__ || Object.getPrototypeOf(AD300x250x600)).call(this, props));
|
|
12564
|
+
|
|
12565
|
+
_this.option = {
|
|
12566
|
+
networkID: props.networkID,
|
|
12567
|
+
adUnit: props.adUnit
|
|
12568
|
+
};
|
|
12569
|
+
return _this;
|
|
12570
|
+
}
|
|
12571
|
+
|
|
12572
|
+
createClass(AD300x250x600, [{
|
|
12573
|
+
key: 'render',
|
|
12574
|
+
value: function render() {
|
|
12575
|
+
return React__default.createElement(
|
|
12576
|
+
lib_1,
|
|
12577
|
+
{ dfpNetworkId: this.option.networkID },
|
|
12578
|
+
React__default.createElement(
|
|
12579
|
+
'div',
|
|
12580
|
+
{ className: 'AD300x250' },
|
|
12581
|
+
React__default.createElement(lib_2, {
|
|
12582
|
+
sizes: [[300, 250], [300, 600]],
|
|
12583
|
+
adUnit: this.option.adUnit
|
|
12584
|
+
})
|
|
12585
|
+
)
|
|
12586
|
+
);
|
|
12587
|
+
}
|
|
12588
|
+
}]);
|
|
12589
|
+
return AD300x250x600;
|
|
12590
|
+
}(React.Component);
|
|
12591
|
+
|
|
12525
12592
|
exports.DeckContent = Content;
|
|
12526
12593
|
exports.DeckQueue = Queue;
|
|
12527
12594
|
exports.Column2 = Column2;
|
|
@@ -12532,4 +12599,7 @@ exports.NavMagazine = Magazine;
|
|
|
12532
12599
|
exports.NavNative = Native;
|
|
12533
12600
|
exports.NavNormal = Normal;
|
|
12534
12601
|
exports.TemplateNormal = Normal$1;
|
|
12602
|
+
exports.AD300x250 = AD300x250;
|
|
12603
|
+
exports.AD300x250x600 = AD300x250x600;
|
|
12604
|
+
exports.AD728x90 = AD728x90;
|
|
12535
12605
|
//# sourceMappingURL=index.js.map
|