ywana-core8 0.0.862 → 0.0.864
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/index.cjs +12 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.modern.js +12 -2
- package/dist/index.modern.js.map +1 -1
- package/dist/index.umd.js +12 -2
- package/dist/index.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/domain2/CollectionPage.js +0 -1
- package/src/html/table.js +3 -0
- package/src/http/client.js +2 -2
package/dist/index.modern.js
CHANGED
@@ -127,9 +127,9 @@ var HTTPClient = function HTTPClient(domain, securityCtx) {
|
|
127
127
|
var token = securityCtx ? securityCtx.token() : null;
|
128
128
|
return fetchAsync('PATCH', domain + URL, body, token, headers);
|
129
129
|
},
|
130
|
-
DELETE: function DELETE(URL, headers) {
|
130
|
+
DELETE: function DELETE(URL, body, headers) {
|
131
131
|
var token = securityCtx ? securityCtx.token() : null;
|
132
|
-
return fetchAsync('DELETE', domain + URL,
|
132
|
+
return fetchAsync('DELETE', domain + URL, body, token, headers);
|
133
133
|
}
|
134
134
|
};
|
135
135
|
};
|
@@ -2164,6 +2164,16 @@ var StringCellViewer = function StringCellViewer(_ref8) {
|
|
2164
2164
|
day: 'second'
|
2165
2165
|
});
|
2166
2166
|
break;
|
2167
|
+
case FORMATS$1.DATETIME:
|
2168
|
+
text = new Date(text).toLocaleString(locale, {
|
2169
|
+
year: 'numeric',
|
2170
|
+
month: 'numeric',
|
2171
|
+
day: 'numeric',
|
2172
|
+
hour: 'numeric',
|
2173
|
+
minute: 'numeric',
|
2174
|
+
second: 'numeric'
|
2175
|
+
});
|
2176
|
+
break;
|
2167
2177
|
}
|
2168
2178
|
return /*#__PURE__*/React.createElement("div", {
|
2169
2179
|
className: "field-editor string-viewer " + className,
|