@mjhls/mjh-framework 1.0.114 → 1.0.115

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.js CHANGED
@@ -11415,6 +11415,98 @@ var QueueDeckExpanded = function QueueDeckExpanded(props) {
11415
11415
  );
11416
11416
  };
11417
11417
 
11418
+ var DefaultContext = {
11419
+ color: undefined,
11420
+ size: undefined,
11421
+ className: undefined,
11422
+ style: undefined,
11423
+ attr: undefined
11424
+ };
11425
+ var IconContext = React.createContext && React.createContext(DefaultContext);
11426
+
11427
+ var __assign$1 = undefined && undefined.__assign || function () {
11428
+ __assign$1 = Object.assign || function (t) {
11429
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
11430
+ s = arguments[i];
11431
+
11432
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
11433
+ }
11434
+
11435
+ return t;
11436
+ };
11437
+
11438
+ return __assign$1.apply(this, arguments);
11439
+ };
11440
+
11441
+ var __rest = undefined && undefined.__rest || function (s, e) {
11442
+ var t = {};
11443
+
11444
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0) t[p] = s[p];
11445
+
11446
+ if (s != null && typeof Object.getOwnPropertySymbols === "function") for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) if (e.indexOf(p[i]) < 0) t[p[i]] = s[p[i]];
11447
+ return t;
11448
+ };
11449
+
11450
+ function Tree2Element(tree) {
11451
+ return tree && tree.map(function (node, i) {
11452
+ return React.createElement(node.tag, __assign$1({
11453
+ key: i
11454
+ }, node.attr), Tree2Element(node.child));
11455
+ });
11456
+ }
11457
+
11458
+ function GenIcon(data) {
11459
+ return function (props) {
11460
+ return React.createElement(IconBase, __assign$1({
11461
+ attr: __assign$1({}, data.attr)
11462
+ }, props), Tree2Element(data.child));
11463
+ };
11464
+ }
11465
+ function IconBase(props) {
11466
+ var elem = function (conf) {
11467
+ var computedSize = props.size || conf.size || "1em";
11468
+ var className;
11469
+ if (conf.className) className = conf.className;
11470
+ if (props.className) className = (className ? className + ' ' : '') + props.className;
11471
+
11472
+ var attr = props.attr,
11473
+ title = props.title,
11474
+ svgProps = __rest(props, ["attr", "title"]);
11475
+
11476
+ return React.createElement("svg", __assign$1({
11477
+ stroke: "currentColor",
11478
+ fill: "currentColor",
11479
+ strokeWidth: "0"
11480
+ }, conf.attr, attr, svgProps, {
11481
+ className: className,
11482
+ style: __assign$1({
11483
+ color: props.color || conf.color
11484
+ }, conf.style, props.style),
11485
+ height: computedSize,
11486
+ width: computedSize,
11487
+ xmlns: "http://www.w3.org/2000/svg"
11488
+ }), title && React.createElement("title", null, title), props.children);
11489
+ };
11490
+
11491
+ return IconContext !== undefined ? React.createElement(IconContext.Consumer, null, function (conf) {
11492
+ return elem(conf);
11493
+ }) : elem(DefaultContext);
11494
+ }
11495
+
11496
+ // THIS FILE IS AUTO GENERATED
11497
+ var IoIosArrowForward = function (props) {
11498
+ return GenIcon({"tag":"svg","attr":{"viewBox":"0 0 512 512"},"child":[{"tag":"path","attr":{"d":"M294.1 256L167 129c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.3 34 0L345 239c9.1 9.1 9.3 23.7.7 33.1L201.1 417c-4.7 4.7-10.9 7-17 7s-12.3-2.3-17-7c-9.4-9.4-9.4-24.6 0-33.9l127-127.1z"}}]})(props);
11499
+ };
11500
+ IoIosArrowForward.displayName = "IoIosArrowForward";
11501
+ var IoIosHome = function (props) {
11502
+ return GenIcon({"tag":"svg","attr":{"viewBox":"0 0 512 512"},"child":[{"tag":"path","attr":{"d":"M258.5 104.1c-1.5-1.2-3.5-1.2-5 0l-156 124.8c-.9.8-1.5 1.9-1.5 3.1v230c0 1.1.9 2 2 2h108c1.1 0 2-.9 2-2V322c0-1.1.9-2 2-2h92c1.1 0 2 .9 2 2v140c0 1.1.9 2 2 2h108c1.1 0 2-.9 2-2V232c0-1.2-.6-2.4-1.5-3.1l-156-124.8z"}},{"tag":"path","attr":{"d":"M458.7 204.2l-189-151.4C265.9 49.7 261 48 256 48s-9.9 1.7-13.7 4.8L160 119.7V77.5c0-1.1-.9-2-2-2H98c-1.1 0-2 .9-2 2v92.2l-42.7 35.1c-3.1 2.5-5.1 6.2-5.3 10.2-.2 4 1.3 7.9 4.1 10.7 2.6 2.6 6.1 4.1 9.9 4.1 3.2 0 6.3-1.1 8.8-3.1l183.9-148c.5-.4.9-.4 1.3-.4s.8.1 1.3.4l183.9 147.4c2.5 2 5.6 3.1 8.8 3.1 3.7 0 7.2-1.4 9.9-4.1 2.9-2.8 4.4-6.7 4.2-10.7-.3-4-2.2-7.7-5.4-10.2z"}}]})(props);
11503
+ };
11504
+ IoIosHome.displayName = "IoIosHome";
11505
+ var IoMdArrowDropdown = function (props) {
11506
+ return GenIcon({"tag":"svg","attr":{"viewBox":"0 0 512 512"},"child":[{"tag":"path","attr":{"d":"M128 192l128 128 128-128z"}}]})(props);
11507
+ };
11508
+ IoMdArrowDropdown.displayName = "IoMdArrowDropdown";
11509
+
11418
11510
  var VideoSeriesListing = function (_React$Component) {
11419
11511
  inherits(VideoSeriesListing, _React$Component);
11420
11512
 
@@ -11591,8 +11683,8 @@ var VideoSeriesListing = function (_React$Component) {
11591
11683
  docSeries.title,
11592
11684
  React__default.createElement(
11593
11685
  'span',
11594
- { style: { fontSize: '.9rem', color: 'grey', marginLeft: '1rem' } },
11595
- 'View Topic'
11686
+ { style: { fontSize: '.9rem', color: 'grey', marginLeft: '1rem', transform: 'translateY(-2px)' } },
11687
+ React__default.createElement(IoIosArrowForward, null)
11596
11688
  )
11597
11689
  )
11598
11690
  )
@@ -11991,94 +12083,6 @@ var Header = function Header(props) {
11991
12083
  );
11992
12084
  };
11993
12085
 
11994
- var DefaultContext = {
11995
- color: undefined,
11996
- size: undefined,
11997
- className: undefined,
11998
- style: undefined,
11999
- attr: undefined
12000
- };
12001
- var IconContext = React.createContext && React.createContext(DefaultContext);
12002
-
12003
- var __assign$1 = undefined && undefined.__assign || function () {
12004
- __assign$1 = Object.assign || function (t) {
12005
- for (var s, i = 1, n = arguments.length; i < n; i++) {
12006
- s = arguments[i];
12007
-
12008
- for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
12009
- }
12010
-
12011
- return t;
12012
- };
12013
-
12014
- return __assign$1.apply(this, arguments);
12015
- };
12016
-
12017
- var __rest = undefined && undefined.__rest || function (s, e) {
12018
- var t = {};
12019
-
12020
- for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0) t[p] = s[p];
12021
-
12022
- if (s != null && typeof Object.getOwnPropertySymbols === "function") for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) if (e.indexOf(p[i]) < 0) t[p[i]] = s[p[i]];
12023
- return t;
12024
- };
12025
-
12026
- function Tree2Element(tree) {
12027
- return tree && tree.map(function (node, i) {
12028
- return React.createElement(node.tag, __assign$1({
12029
- key: i
12030
- }, node.attr), Tree2Element(node.child));
12031
- });
12032
- }
12033
-
12034
- function GenIcon(data) {
12035
- return function (props) {
12036
- return React.createElement(IconBase, __assign$1({
12037
- attr: __assign$1({}, data.attr)
12038
- }, props), Tree2Element(data.child));
12039
- };
12040
- }
12041
- function IconBase(props) {
12042
- var elem = function (conf) {
12043
- var computedSize = props.size || conf.size || "1em";
12044
- var className;
12045
- if (conf.className) className = conf.className;
12046
- if (props.className) className = (className ? className + ' ' : '') + props.className;
12047
-
12048
- var attr = props.attr,
12049
- title = props.title,
12050
- svgProps = __rest(props, ["attr", "title"]);
12051
-
12052
- return React.createElement("svg", __assign$1({
12053
- stroke: "currentColor",
12054
- fill: "currentColor",
12055
- strokeWidth: "0"
12056
- }, conf.attr, attr, svgProps, {
12057
- className: className,
12058
- style: __assign$1({
12059
- color: props.color || conf.color
12060
- }, conf.style, props.style),
12061
- height: computedSize,
12062
- width: computedSize,
12063
- xmlns: "http://www.w3.org/2000/svg"
12064
- }), title && React.createElement("title", null, title), props.children);
12065
- };
12066
-
12067
- return IconContext !== undefined ? React.createElement(IconContext.Consumer, null, function (conf) {
12068
- return elem(conf);
12069
- }) : elem(DefaultContext);
12070
- }
12071
-
12072
- // THIS FILE IS AUTO GENERATED
12073
- var IoIosHome = function (props) {
12074
- return GenIcon({"tag":"svg","attr":{"viewBox":"0 0 512 512"},"child":[{"tag":"path","attr":{"d":"M258.5 104.1c-1.5-1.2-3.5-1.2-5 0l-156 124.8c-.9.8-1.5 1.9-1.5 3.1v230c0 1.1.9 2 2 2h108c1.1 0 2-.9 2-2V322c0-1.1.9-2 2-2h92c1.1 0 2 .9 2 2v140c0 1.1.9 2 2 2h108c1.1 0 2-.9 2-2V232c0-1.2-.6-2.4-1.5-3.1l-156-124.8z"}},{"tag":"path","attr":{"d":"M458.7 204.2l-189-151.4C265.9 49.7 261 48 256 48s-9.9 1.7-13.7 4.8L160 119.7V77.5c0-1.1-.9-2-2-2H98c-1.1 0-2 .9-2 2v92.2l-42.7 35.1c-3.1 2.5-5.1 6.2-5.3 10.2-.2 4 1.3 7.9 4.1 10.7 2.6 2.6 6.1 4.1 9.9 4.1 3.2 0 6.3-1.1 8.8-3.1l183.9-148c.5-.4.9-.4 1.3-.4s.8.1 1.3.4l183.9 147.4c2.5 2 5.6 3.1 8.8 3.1 3.7 0 7.2-1.4 9.9-4.1 2.9-2.8 4.4-6.7 4.2-10.7-.3-4-2.2-7.7-5.4-10.2z"}}]})(props);
12075
- };
12076
- IoIosHome.displayName = "IoIosHome";
12077
- var IoMdArrowDropdown = function (props) {
12078
- return GenIcon({"tag":"svg","attr":{"viewBox":"0 0 512 512"},"child":[{"tag":"path","attr":{"d":"M128 192l128 128 128-128z"}}]})(props);
12079
- };
12080
- IoMdArrowDropdown.displayName = "IoMdArrowDropdown";
12081
-
12082
12086
  var AccordionPanel = function AccordionPanel(props) {
12083
12087
  var accordionClassName = props.accordionClassName,
12084
12088
  data = props.data;