@mjhls/mjh-framework 1.0.167 → 1.0.169
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 +5 -15
- package/dist/index.es.js.map +1 -1
- package/dist/index.js +5 -15
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -12922,11 +12922,7 @@ var cardLoader = function cardLoader(data, builder, mapping, values, seoPaginate
|
|
|
12922
12922
|
} },
|
|
12923
12923
|
article.contentCategory.name.slice(0, article.contentCategory.name.length - 1)
|
|
12924
12924
|
),
|
|
12925
|
-
article.summary && React__default.createElement(
|
|
12926
|
-
'p',
|
|
12927
|
-
{ className: 'pt-2 card-text' },
|
|
12928
|
-
article.summary
|
|
12929
|
-
)
|
|
12925
|
+
article.summary && React__default.createElement('p', { className: 'pt-2 card-text', dangerouslySetInnerHTML: { __html: article.summary } })
|
|
12930
12926
|
)
|
|
12931
12927
|
)
|
|
12932
12928
|
)
|
|
@@ -13003,11 +12999,7 @@ var cardLoader = function cardLoader(data, builder, mapping, values, seoPaginate
|
|
|
13003
12999
|
} },
|
|
13004
13000
|
article.contentCategory.name.slice(0, article.contentCategory.name.length - 1)
|
|
13005
13001
|
),
|
|
13006
|
-
article.summary && React__default.createElement(
|
|
13007
|
-
'p',
|
|
13008
|
-
{ className: 'pt-2 card-text' },
|
|
13009
|
-
article.summary
|
|
13010
|
-
)
|
|
13002
|
+
article.summary && React__default.createElement('p', { className: 'pt-2 card-text', dangerouslySetInnerHTML: { __html: article.summary } })
|
|
13011
13003
|
)
|
|
13012
13004
|
)
|
|
13013
13005
|
)
|
|
@@ -13085,11 +13077,7 @@ var cardLoader = function cardLoader(data, builder, mapping, values, seoPaginate
|
|
|
13085
13077
|
} },
|
|
13086
13078
|
article.contentCategory.name.slice(0, article.contentCategory.name.length - 1)
|
|
13087
13079
|
),
|
|
13088
|
-
article.summary && React__default.createElement(
|
|
13089
|
-
'p',
|
|
13090
|
-
{ className: 'pt-2 card-text' },
|
|
13091
|
-
article.summary
|
|
13092
|
-
)
|
|
13080
|
+
article.summary && React__default.createElement('p', { className: 'pt-2 card-text', dangerouslySetInnerHTML: { __html: article.summary } })
|
|
13093
13081
|
)
|
|
13094
13082
|
)
|
|
13095
13083
|
)
|
|
@@ -16952,6 +16940,8 @@ var FigureComponent = function FigureComponent(_ref) {
|
|
|
16952
16940
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
16953
16941
|
}, []);
|
|
16954
16942
|
|
|
16943
|
+
if (!node$$1.asset) return null;
|
|
16944
|
+
|
|
16955
16945
|
return React__default.createElement(
|
|
16956
16946
|
reactBootstrap.Figure,
|
|
16957
16947
|
{ className: 'd-block', style: { width: imageWidth, maxWidth: '100%', clear: 'both', float: imgFloat, margin: figureMargin } },
|