@mjhls/mjh-framework 1.0.666 → 1.0.668
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/README.md +1 -1
- package/dist/cjs/ExternalResources.js +1 -1
- package/dist/cjs/MasterDeck.js +1 -9
- package/dist/cjs/PartnerDetailListing.js +1 -1
- package/dist/cjs/View.js +1 -1
- package/dist/cjs/getSerializers.js +1 -1
- package/dist/cjs/{index-6f1ee5f0.js → index-94d2f1de.js} +10 -0
- package/dist/cjs/index.js +1 -1
- package/dist/esm/ExternalResources.js +1 -1
- package/dist/esm/MasterDeck.js +1 -9
- package/dist/esm/PartnerDetailListing.js +1 -1
- package/dist/esm/View.js +1 -1
- package/dist/esm/getSerializers.js +1 -1
- package/dist/esm/{index-3a33f7d6.js → index-1fa94c3a.js} +10 -0
- package/dist/esm/index.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -45,7 +45,7 @@ require('./GroupDeck.js');
|
|
|
45
45
|
require('react-bootstrap');
|
|
46
46
|
var Button = _interopDefault(require('react-bootstrap/Button'));
|
|
47
47
|
var index$3 = require('./index-5be2866f.js');
|
|
48
|
-
var getSerializers = require('./index-
|
|
48
|
+
var getSerializers = require('./index-94d2f1de.js');
|
|
49
49
|
require('./util-f2c1b65b.js');
|
|
50
50
|
require('./brightcove-react-player-loader.es-156bd4d6.js');
|
|
51
51
|
require('react-bootstrap/Pagination');
|
package/dist/cjs/MasterDeck.js
CHANGED
|
@@ -509,7 +509,7 @@ var MasterDeck = function (_React$Component) {
|
|
|
509
509
|
React__default.createElement(
|
|
510
510
|
'div',
|
|
511
511
|
{ style: { padding: '0px 10px' } },
|
|
512
|
-
this.state.scrolling
|
|
512
|
+
this.state.scrolling && React__default.createElement(
|
|
513
513
|
'button',
|
|
514
514
|
{
|
|
515
515
|
className: 'btn',
|
|
@@ -527,14 +527,6 @@ var MasterDeck = function (_React$Component) {
|
|
|
527
527
|
_this3.loadMore();
|
|
528
528
|
} },
|
|
529
529
|
'Load More'
|
|
530
|
-
) : React__default.createElement(
|
|
531
|
-
'p',
|
|
532
|
-
{ style: { textAlign: 'center' } },
|
|
533
|
-
React__default.createElement(
|
|
534
|
-
'b',
|
|
535
|
-
null,
|
|
536
|
-
'End of data'
|
|
537
|
-
)
|
|
538
530
|
)
|
|
539
531
|
),
|
|
540
532
|
React__default.createElement(
|
|
@@ -52,7 +52,7 @@ require('./GroupDeck.js');
|
|
|
52
52
|
require('react-bootstrap');
|
|
53
53
|
var QueueDeckExpanded = require('./QueueDeckExpanded.js');
|
|
54
54
|
require('react-bootstrap/Button');
|
|
55
|
-
var getSerializers = require('./index-
|
|
55
|
+
var getSerializers = require('./index-94d2f1de.js');
|
|
56
56
|
require('./util-f2c1b65b.js');
|
|
57
57
|
require('./brightcove-react-player-loader.es-156bd4d6.js');
|
|
58
58
|
require('react-bootstrap/Pagination');
|
package/dist/cjs/View.js
CHANGED
|
@@ -48,7 +48,7 @@ require('./iconBase-68959171.js');
|
|
|
48
48
|
var Button = _interopDefault(require('react-bootstrap/Button'));
|
|
49
49
|
var defineProperty$1 = require('./defineProperty-55548b25.js');
|
|
50
50
|
var Form = _interopDefault(require('react-bootstrap/Form'));
|
|
51
|
-
var getSerializers = require('./index-
|
|
51
|
+
var getSerializers = require('./index-94d2f1de.js');
|
|
52
52
|
require('./util-f2c1b65b.js');
|
|
53
53
|
require('./brightcove-react-player-loader.es-156bd4d6.js');
|
|
54
54
|
require('react-bootstrap/Pagination');
|
|
@@ -40,7 +40,7 @@ require('./smoothscroll-95231a70.js');
|
|
|
40
40
|
require('./GroupDeck.js');
|
|
41
41
|
require('react-bootstrap');
|
|
42
42
|
require('react-bootstrap/Button');
|
|
43
|
-
var getSerializers = require('./index-
|
|
43
|
+
var getSerializers = require('./index-94d2f1de.js');
|
|
44
44
|
require('./util-f2c1b65b.js');
|
|
45
45
|
require('./brightcove-react-player-loader.es-156bd4d6.js');
|
|
46
46
|
require('react-bootstrap/Pagination');
|
|
@@ -8936,6 +8936,16 @@ var getSerializers = function getSerializers() {
|
|
|
8936
8936
|
{ style: { textAlign: 'justify' } },
|
|
8937
8937
|
children
|
|
8938
8938
|
);
|
|
8939
|
+
},
|
|
8940
|
+
coloredText: function coloredText(props) {
|
|
8941
|
+
var children = props.children,
|
|
8942
|
+
color = props.mark.color;
|
|
8943
|
+
|
|
8944
|
+
return React__default.createElement(
|
|
8945
|
+
'span',
|
|
8946
|
+
{ style: { color: color ? color.hex : null } },
|
|
8947
|
+
children
|
|
8948
|
+
);
|
|
8939
8949
|
}
|
|
8940
8950
|
}
|
|
8941
8951
|
};
|
package/dist/cjs/index.js
CHANGED
|
@@ -79,7 +79,7 @@ require('react-bootstrap/Form');
|
|
|
79
79
|
require('./index-5be2866f.js');
|
|
80
80
|
require('./js.cookie-a511c430.js');
|
|
81
81
|
var CMEDeck = require('./CMEDeck.js');
|
|
82
|
-
var getSerializers = require('./index-
|
|
82
|
+
var getSerializers = require('./index-94d2f1de.js');
|
|
83
83
|
require('./util-f2c1b65b.js');
|
|
84
84
|
require('./brightcove-react-player-loader.es-156bd4d6.js');
|
|
85
85
|
require('react-bootstrap/Pagination');
|
|
@@ -39,7 +39,7 @@ import './GroupDeck.js';
|
|
|
39
39
|
import 'react-bootstrap';
|
|
40
40
|
import Button from 'react-bootstrap/Button';
|
|
41
41
|
import { m as momentTimezone } from './index-d2f90501.js';
|
|
42
|
-
import { g as getSerializers } from './index-
|
|
42
|
+
import { g as getSerializers } from './index-1fa94c3a.js';
|
|
43
43
|
import './util-7700fc59.js';
|
|
44
44
|
import './brightcove-react-player-loader.es-83f53e4e.js';
|
|
45
45
|
import 'react-bootstrap/Pagination';
|
package/dist/esm/MasterDeck.js
CHANGED
|
@@ -503,7 +503,7 @@ var MasterDeck = function (_React$Component) {
|
|
|
503
503
|
React__default.createElement(
|
|
504
504
|
'div',
|
|
505
505
|
{ style: { padding: '0px 10px' } },
|
|
506
|
-
this.state.scrolling
|
|
506
|
+
this.state.scrolling && React__default.createElement(
|
|
507
507
|
'button',
|
|
508
508
|
{
|
|
509
509
|
className: 'btn',
|
|
@@ -521,14 +521,6 @@ var MasterDeck = function (_React$Component) {
|
|
|
521
521
|
_this3.loadMore();
|
|
522
522
|
} },
|
|
523
523
|
'Load More'
|
|
524
|
-
) : React__default.createElement(
|
|
525
|
-
'p',
|
|
526
|
-
{ style: { textAlign: 'center' } },
|
|
527
|
-
React__default.createElement(
|
|
528
|
-
'b',
|
|
529
|
-
null,
|
|
530
|
-
'End of data'
|
|
531
|
-
)
|
|
532
524
|
)
|
|
533
525
|
),
|
|
534
526
|
React__default.createElement(
|
|
@@ -47,7 +47,7 @@ import './GroupDeck.js';
|
|
|
47
47
|
import 'react-bootstrap';
|
|
48
48
|
import QueueDeckExpanded from './QueueDeckExpanded.js';
|
|
49
49
|
import 'react-bootstrap/Button';
|
|
50
|
-
import { g as getSerializers } from './index-
|
|
50
|
+
import { g as getSerializers } from './index-1fa94c3a.js';
|
|
51
51
|
import './util-7700fc59.js';
|
|
52
52
|
import './brightcove-react-player-loader.es-83f53e4e.js';
|
|
53
53
|
import 'react-bootstrap/Pagination';
|
package/dist/esm/View.js
CHANGED
|
@@ -42,7 +42,7 @@ import './iconBase-602d52fe.js';
|
|
|
42
42
|
import Button from 'react-bootstrap/Button';
|
|
43
43
|
import { _ as _defineProperty } from './defineProperty-b798470d.js';
|
|
44
44
|
import Form from 'react-bootstrap/Form';
|
|
45
|
-
import { I as InscreenSensor, r as renderAuthor, g as getSerializers } from './index-
|
|
45
|
+
import { I as InscreenSensor, r as renderAuthor, g as getSerializers } from './index-1fa94c3a.js';
|
|
46
46
|
import './util-7700fc59.js';
|
|
47
47
|
import './brightcove-react-player-loader.es-83f53e4e.js';
|
|
48
48
|
import 'react-bootstrap/Pagination';
|
|
@@ -38,7 +38,7 @@ import './smoothscroll-4b699764.js';
|
|
|
38
38
|
import './GroupDeck.js';
|
|
39
39
|
import 'react-bootstrap';
|
|
40
40
|
import 'react-bootstrap/Button';
|
|
41
|
-
export { g as default } from './index-
|
|
41
|
+
export { g as default } from './index-1fa94c3a.js';
|
|
42
42
|
import './util-7700fc59.js';
|
|
43
43
|
import './brightcove-react-player-loader.es-83f53e4e.js';
|
|
44
44
|
import 'react-bootstrap/Pagination';
|
|
@@ -8929,6 +8929,16 @@ var getSerializers = function getSerializers() {
|
|
|
8929
8929
|
{ style: { textAlign: 'justify' } },
|
|
8930
8930
|
children
|
|
8931
8931
|
);
|
|
8932
|
+
},
|
|
8933
|
+
coloredText: function coloredText(props) {
|
|
8934
|
+
var children = props.children,
|
|
8935
|
+
color = props.mark.color;
|
|
8936
|
+
|
|
8937
|
+
return React__default.createElement(
|
|
8938
|
+
'span',
|
|
8939
|
+
{ style: { color: color ? color.hex : null } },
|
|
8940
|
+
children
|
|
8941
|
+
);
|
|
8932
8942
|
}
|
|
8933
8943
|
}
|
|
8934
8944
|
};
|
package/dist/esm/index.js
CHANGED
|
@@ -75,7 +75,7 @@ import 'react-bootstrap/Form';
|
|
|
75
75
|
import './index-d2f90501.js';
|
|
76
76
|
import './js.cookie-6874175c.js';
|
|
77
77
|
export { default as CMEDeck } from './CMEDeck.js';
|
|
78
|
-
export { g as getSerializers } from './index-
|
|
78
|
+
export { g as getSerializers } from './index-1fa94c3a.js';
|
|
79
79
|
import './util-7700fc59.js';
|
|
80
80
|
import './brightcove-react-player-loader.es-83f53e4e.js';
|
|
81
81
|
import 'react-bootstrap/Pagination';
|