@mjhls/mjh-framework 1.0.160 → 1.0.161
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 +7 -2
- package/dist/index.es.js.map +1 -1
- package/dist/index.js +5 -0
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
package/dist/index.es.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import React__default, { Component, useState, useEffect, useRef,
|
|
1
|
+
import React__default, { Component, useState, useEffect, useRef, createElement, createContext } from 'react';
|
|
2
2
|
import PropTypes from 'prop-types';
|
|
3
3
|
import reactDom from 'react-dom';
|
|
4
4
|
import Container from 'react-bootstrap/Container';
|
|
@@ -18,7 +18,7 @@ import ListGroup from 'react-bootstrap/ListGroup';
|
|
|
18
18
|
import Head from 'next/head';
|
|
19
19
|
import Accordion from 'react-bootstrap/Accordion';
|
|
20
20
|
import { useAccordionToggle } from 'react-bootstrap/AccordionToggle';
|
|
21
|
-
import { FacebookShareButton, TwitterShareButton, PinterestShareButton, EmailShareButton, FacebookIcon, TwitterIcon, PinterestIcon, EmailIcon } from 'react-share';
|
|
21
|
+
import { FacebookShareButton, TwitterShareButton, LinkedinShareButton, PinterestShareButton, EmailShareButton, FacebookIcon, TwitterIcon, LinkedinIcon, PinterestIcon, EmailIcon } from 'react-share';
|
|
22
22
|
import Form from 'react-bootstrap/Form';
|
|
23
23
|
import FormControl from 'react-bootstrap/FormControl';
|
|
24
24
|
import Nav from 'react-bootstrap/Nav';
|
|
@@ -9480,6 +9480,11 @@ var SocialShare = function SocialShare(props) {
|
|
|
9480
9480
|
{ url: shareUrl, title: shareTitle, via: shareVia },
|
|
9481
9481
|
React__default.createElement(TwitterIcon, { size: size, round: true })
|
|
9482
9482
|
),
|
|
9483
|
+
React__default.createElement(
|
|
9484
|
+
LinkedinShareButton,
|
|
9485
|
+
{ url: shareUrl, title: shareTitle, via: shareVia },
|
|
9486
|
+
React__default.createElement(LinkedinIcon, { size: size, round: true })
|
|
9487
|
+
),
|
|
9483
9488
|
React__default.createElement(
|
|
9484
9489
|
PinterestShareButton,
|
|
9485
9490
|
{ url: shareUrl, media: shareImage, description: shareSummary },
|