@mjhls/mjh-framework 1.0.839-article-time-v2 → 1.0.839-article-time-v3
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/cjs/View.js +3 -1
- package/dist/esm/View.js +3 -1
- package/package.json +1 -1
package/dist/cjs/View.js
CHANGED
|
@@ -1076,7 +1076,9 @@ var Article = React.forwardRef(function (props, ref) {
|
|
|
1076
1076
|
null,
|
|
1077
1077
|
React__default['default'].createElement(
|
|
1078
1078
|
'time',
|
|
1079
|
-
{
|
|
1079
|
+
{
|
|
1080
|
+
'class': 'meta-date',
|
|
1081
|
+
datetime: moment.moment(published).utc().format(moment.moment.HTML5_FMT.DATETIME_LOCAL_MS) },
|
|
1080
1082
|
moment.moment(published).format('LL')
|
|
1081
1083
|
)
|
|
1082
1084
|
)
|
package/dist/esm/View.js
CHANGED
|
@@ -1066,7 +1066,9 @@ var Article = forwardRef(function (props, ref) {
|
|
|
1066
1066
|
null,
|
|
1067
1067
|
React.createElement(
|
|
1068
1068
|
'time',
|
|
1069
|
-
{
|
|
1069
|
+
{
|
|
1070
|
+
'class': 'meta-date',
|
|
1071
|
+
datetime: moment(published).utc().format(moment.HTML5_FMT.DATETIME_LOCAL_MS) },
|
|
1070
1072
|
moment(published).format('LL')
|
|
1071
1073
|
)
|
|
1072
1074
|
)
|