@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/README.md
CHANGED
package/dist/index.es.js
CHANGED
|
@@ -12914,11 +12914,7 @@ var cardLoader = function cardLoader(data, builder, mapping, values, seoPaginate
|
|
|
12914
12914
|
} },
|
|
12915
12915
|
article.contentCategory.name.slice(0, article.contentCategory.name.length - 1)
|
|
12916
12916
|
),
|
|
12917
|
-
article.summary && React__default.createElement(
|
|
12918
|
-
'p',
|
|
12919
|
-
{ className: 'pt-2 card-text' },
|
|
12920
|
-
article.summary
|
|
12921
|
-
)
|
|
12917
|
+
article.summary && React__default.createElement('p', { className: 'pt-2 card-text', dangerouslySetInnerHTML: { __html: article.summary } })
|
|
12922
12918
|
)
|
|
12923
12919
|
)
|
|
12924
12920
|
)
|
|
@@ -12995,11 +12991,7 @@ var cardLoader = function cardLoader(data, builder, mapping, values, seoPaginate
|
|
|
12995
12991
|
} },
|
|
12996
12992
|
article.contentCategory.name.slice(0, article.contentCategory.name.length - 1)
|
|
12997
12993
|
),
|
|
12998
|
-
article.summary && React__default.createElement(
|
|
12999
|
-
'p',
|
|
13000
|
-
{ className: 'pt-2 card-text' },
|
|
13001
|
-
article.summary
|
|
13002
|
-
)
|
|
12994
|
+
article.summary && React__default.createElement('p', { className: 'pt-2 card-text', dangerouslySetInnerHTML: { __html: article.summary } })
|
|
13003
12995
|
)
|
|
13004
12996
|
)
|
|
13005
12997
|
)
|
|
@@ -13077,11 +13069,7 @@ var cardLoader = function cardLoader(data, builder, mapping, values, seoPaginate
|
|
|
13077
13069
|
} },
|
|
13078
13070
|
article.contentCategory.name.slice(0, article.contentCategory.name.length - 1)
|
|
13079
13071
|
),
|
|
13080
|
-
article.summary && React__default.createElement(
|
|
13081
|
-
'p',
|
|
13082
|
-
{ className: 'pt-2 card-text' },
|
|
13083
|
-
article.summary
|
|
13084
|
-
)
|
|
13072
|
+
article.summary && React__default.createElement('p', { className: 'pt-2 card-text', dangerouslySetInnerHTML: { __html: article.summary } })
|
|
13085
13073
|
)
|
|
13086
13074
|
)
|
|
13087
13075
|
)
|
|
@@ -16944,6 +16932,8 @@ var FigureComponent = function FigureComponent(_ref) {
|
|
|
16944
16932
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
16945
16933
|
}, []);
|
|
16946
16934
|
|
|
16935
|
+
if (!node$$1.asset) return null;
|
|
16936
|
+
|
|
16947
16937
|
return React__default.createElement(
|
|
16948
16938
|
Figure,
|
|
16949
16939
|
{ className: 'd-block', style: { width: imageWidth, maxWidth: '100%', clear: 'both', float: imgFloat, margin: figureMargin } },
|