@mjhls/mjh-framework 1.0.90 → 1.0.91
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/index.es.js +8 -8
- package/dist/index.es.js.map +1 -1
- package/dist/index.js +7 -7
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
package/dist/index.es.js
CHANGED
|
@@ -8,7 +8,7 @@ import Card from 'react-bootstrap/Card';
|
|
|
8
8
|
import Link from 'next/link';
|
|
9
9
|
import { withRouter, useRouter } from 'next/router';
|
|
10
10
|
import Media from 'react-bootstrap/Media';
|
|
11
|
-
import { Media as Media$1,
|
|
11
|
+
import { Media as Media$1, Container as Container$1, Figure, Carousel, Table } from 'react-bootstrap';
|
|
12
12
|
import moment from 'moment';
|
|
13
13
|
import ListGroup from 'react-bootstrap/ListGroup';
|
|
14
14
|
import Head from 'next/head';
|
|
@@ -8424,13 +8424,13 @@ var FigureComponent = function FigureComponent(_ref) {
|
|
|
8424
8424
|
var imgFloat = alignment.toLowerCase() === 'center' ? 'none' : alignment.toLowerCase();
|
|
8425
8425
|
var figureMargin = void 0;
|
|
8426
8426
|
if (imgFloat === 'none') {
|
|
8427
|
-
figureMargin = '0 auto
|
|
8427
|
+
figureMargin = '0 auto 1rem';
|
|
8428
8428
|
}
|
|
8429
8429
|
if (imgFloat === 'left') {
|
|
8430
|
-
figureMargin = '0
|
|
8430
|
+
figureMargin = '0 1rem 1rem 10%';
|
|
8431
8431
|
}
|
|
8432
8432
|
if (imgFloat === 'right') {
|
|
8433
|
-
figureMargin = '0
|
|
8433
|
+
figureMargin = '0 10% 1rem 1rem';
|
|
8434
8434
|
}
|
|
8435
8435
|
return React__default.createElement(
|
|
8436
8436
|
Figure,
|
|
@@ -12040,13 +12040,13 @@ var Sidebar = function Sidebar(_ref) {
|
|
|
12040
12040
|
content = _ref.content;
|
|
12041
12041
|
|
|
12042
12042
|
return React__default.createElement(
|
|
12043
|
-
|
|
12044
|
-
{ className: 'sidebar' },
|
|
12043
|
+
'article',
|
|
12044
|
+
{ className: 'sidebar', style: { background: '#eee', marginRight: '10%', marginLeft: '1rem', width: '40%', padding: '1rem 0 0' } },
|
|
12045
12045
|
React__default.createElement(
|
|
12046
|
-
|
|
12046
|
+
'div',
|
|
12047
12047
|
null,
|
|
12048
12048
|
React__default.createElement(
|
|
12049
|
-
|
|
12049
|
+
'h3',
|
|
12050
12050
|
null,
|
|
12051
12051
|
caption
|
|
12052
12052
|
),
|