@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.es.js
CHANGED
|
@@ -12515,5 +12515,72 @@ var Normal$1 = function Normal$$1(props) {
|
|
|
12515
12515
|
);
|
|
12516
12516
|
};
|
|
12517
12517
|
|
|
12518
|
-
|
|
12518
|
+
var AD300x250 = function (_Component) {
|
|
12519
|
+
inherits(AD300x250, _Component);
|
|
12520
|
+
|
|
12521
|
+
function AD300x250(props) {
|
|
12522
|
+
classCallCheck(this, AD300x250);
|
|
12523
|
+
|
|
12524
|
+
var _this = possibleConstructorReturn(this, (AD300x250.__proto__ || Object.getPrototypeOf(AD300x250)).call(this, props));
|
|
12525
|
+
|
|
12526
|
+
_this.option = {
|
|
12527
|
+
networkID: props.networkID,
|
|
12528
|
+
adUnit: props.adUnit
|
|
12529
|
+
};
|
|
12530
|
+
return _this;
|
|
12531
|
+
}
|
|
12532
|
+
|
|
12533
|
+
createClass(AD300x250, [{
|
|
12534
|
+
key: 'render',
|
|
12535
|
+
value: function render() {
|
|
12536
|
+
return React__default.createElement(
|
|
12537
|
+
lib_1,
|
|
12538
|
+
{ dfpNetworkId: this.option.networkID },
|
|
12539
|
+
React__default.createElement(
|
|
12540
|
+
'div',
|
|
12541
|
+
{ className: 'AD300x250' },
|
|
12542
|
+
React__default.createElement(lib_2, { sizes: [[300, 250]], adUnit: this.option.adUnit })
|
|
12543
|
+
)
|
|
12544
|
+
);
|
|
12545
|
+
}
|
|
12546
|
+
}]);
|
|
12547
|
+
return AD300x250;
|
|
12548
|
+
}(Component);
|
|
12549
|
+
|
|
12550
|
+
var AD300x250x600 = function (_Component) {
|
|
12551
|
+
inherits(AD300x250x600, _Component);
|
|
12552
|
+
|
|
12553
|
+
function AD300x250x600(props) {
|
|
12554
|
+
classCallCheck(this, AD300x250x600);
|
|
12555
|
+
|
|
12556
|
+
var _this = possibleConstructorReturn(this, (AD300x250x600.__proto__ || Object.getPrototypeOf(AD300x250x600)).call(this, props));
|
|
12557
|
+
|
|
12558
|
+
_this.option = {
|
|
12559
|
+
networkID: props.networkID,
|
|
12560
|
+
adUnit: props.adUnit
|
|
12561
|
+
};
|
|
12562
|
+
return _this;
|
|
12563
|
+
}
|
|
12564
|
+
|
|
12565
|
+
createClass(AD300x250x600, [{
|
|
12566
|
+
key: 'render',
|
|
12567
|
+
value: function render() {
|
|
12568
|
+
return React__default.createElement(
|
|
12569
|
+
lib_1,
|
|
12570
|
+
{ dfpNetworkId: this.option.networkID },
|
|
12571
|
+
React__default.createElement(
|
|
12572
|
+
'div',
|
|
12573
|
+
{ className: 'AD300x250' },
|
|
12574
|
+
React__default.createElement(lib_2, {
|
|
12575
|
+
sizes: [[300, 250], [300, 600]],
|
|
12576
|
+
adUnit: this.option.adUnit
|
|
12577
|
+
})
|
|
12578
|
+
)
|
|
12579
|
+
);
|
|
12580
|
+
}
|
|
12581
|
+
}]);
|
|
12582
|
+
return AD300x250x600;
|
|
12583
|
+
}(Component);
|
|
12584
|
+
|
|
12585
|
+
export { Content as DeckContent, Queue as DeckQueue, Column2, Column3, Header, LeftNav, Magazine as NavMagazine, Native as NavNative, Normal as NavNormal, Normal$1 as TemplateNormal, AD300x250, AD300x250x600, AD728x90 };
|
|
12519
12586
|
//# sourceMappingURL=index.es.js.map
|