@bigbinary/neeto-molecules 3.16.92 → 3.16.94
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/ShareViaLink.js +9 -7
- package/dist/ShareViaLink.js.map +1 -1
- package/dist/StatusDropdown.js +22 -7
- package/dist/StatusDropdown.js.map +1 -1
- package/dist/cjs/ShareViaLink.js +9 -7
- package/dist/cjs/ShareViaLink.js.map +1 -1
- package/dist/cjs/StatusDropdown.js +22 -7
- package/dist/cjs/StatusDropdown.js.map +1 -1
- package/package.json +1 -1
- package/src/translations/de.json +2 -1
- package/src/translations/en.json +2 -1
- package/src/translations/es.json +2 -1
- package/src/translations/fr.json +2 -1
- package/src/translations/nl.json +2 -1
- package/src/translations/pl.json +2 -1
- package/src/translations/pt.json +2 -1
package/dist/ShareViaLink.js
CHANGED
|
@@ -565,13 +565,15 @@ var Card = function Card(_ref) {
|
|
|
565
565
|
children: [Icon && /*#__PURE__*/jsx(Icon, {
|
|
566
566
|
className: "neeto-ui-text-gray-500 flex-shrink-0",
|
|
567
567
|
size: 24
|
|
568
|
-
}), /*#__PURE__*/
|
|
569
|
-
className: "min-w-0 flex-grow break-words",
|
|
568
|
+
}), /*#__PURE__*/jsxs(Typography, {
|
|
569
|
+
className: "neeto-molecules-share-landing__card-title min-w-0 flex-grow break-words",
|
|
570
570
|
style: "h4",
|
|
571
|
-
children: title
|
|
572
|
-
|
|
571
|
+
children: [title, helpPopoverProps && /*#__PURE__*/jsxs(Fragment, {
|
|
572
|
+
children: [" ", /*#__PURE__*/jsx(HelpPopover, _objectSpread({}, helpPopoverProps))]
|
|
573
|
+
})]
|
|
574
|
+
})]
|
|
573
575
|
}), description && /*#__PURE__*/jsx(Typography, {
|
|
574
|
-
className: "break-words",
|
|
576
|
+
className: "neeto-molecules-share-landing__card-desc break-words",
|
|
575
577
|
lineHeight: "normal",
|
|
576
578
|
style: "body2",
|
|
577
579
|
children: description
|
|
@@ -596,7 +598,7 @@ var ShareBlock = function ShareBlock(_ref) {
|
|
|
596
598
|
};
|
|
597
599
|
var hasMoreOptions = isPresent(moreOptions);
|
|
598
600
|
return /*#__PURE__*/jsxs("div", {
|
|
599
|
-
className: "neeto-ui-border-gray-200 mt-8 grid grid-cols-1 gap-4 border-t pt-8 sm:grid-cols-2 md:grid-cols-3
|
|
601
|
+
className: "neeto-ui-border-gray-200 mt-8 grid grid-cols-1 gap-4 border-t pt-8 sm:grid-cols-2 md:grid-cols-3",
|
|
600
602
|
children: [hasMoreOptions && moreOptions.filter(function (_ref2) {
|
|
601
603
|
var permissions = _ref2.permissions;
|
|
602
604
|
return isNotPresent(permissions) || globalProps.permissions.some(includes(__, permissions));
|
|
@@ -1664,7 +1666,7 @@ var QRCode = function QRCode(_ref) {
|
|
|
1664
1666
|
});
|
|
1665
1667
|
};
|
|
1666
1668
|
|
|
1667
|
-
var css = ".neeto-molecules-share-landing__card{outline:1px solid rgb(var(--neeto-ui-white))!important;transition:all .3s!important}.neeto-molecules-share-landing__card:hover{border-color:rgb(var(--neeto-ui-primary-500))!important;outline:1px solid rgb(var(--neeto-ui-primary-500))!important}";
|
|
1669
|
+
var css = ".neeto-molecules-share-landing__card{outline:1px solid rgb(var(--neeto-ui-white))!important;transition:all .3s!important}.neeto-molecules-share-landing__card:hover{border-color:rgb(var(--neeto-ui-primary-500))!important;outline:1px solid rgb(var(--neeto-ui-primary-500))!important}.neeto-molecules-share-landing__card-title .neeto-molecule-help-popover-trigger{display:inline-block!important;vertical-align:middle}";
|
|
1668
1670
|
n(css,{});
|
|
1669
1671
|
|
|
1670
1672
|
var SocialMedia = function SocialMedia(_ref) {
|