@nocobase/utils 1.6.0-alpha.9 → 1.6.0-beta.2
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/lib/date.js +1 -1
- package/package.json +2 -2
package/lib/date.js
CHANGED
|
@@ -209,7 +209,7 @@ const getPickerFormat = /* @__PURE__ */ __name((picker) => {
|
|
|
209
209
|
const getDateTimeFormat = /* @__PURE__ */ __name((picker, format, showTime, timeFormat) => {
|
|
210
210
|
if (picker === "date") {
|
|
211
211
|
if (showTime) {
|
|
212
|
-
return format
|
|
212
|
+
return `${format} ${timeFormat || "HH:mm:ss"}`;
|
|
213
213
|
}
|
|
214
214
|
return format;
|
|
215
215
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nocobase/utils",
|
|
3
|
-
"version": "1.6.0-
|
|
3
|
+
"version": "1.6.0-beta.2",
|
|
4
4
|
"main": "lib/index.js",
|
|
5
5
|
"types": "./lib/index.d.ts",
|
|
6
6
|
"license": "AGPL-3.0",
|
|
@@ -16,5 +16,5 @@
|
|
|
16
16
|
"multer": "^1.4.5-lts.1",
|
|
17
17
|
"object-path": "^0.11.8"
|
|
18
18
|
},
|
|
19
|
-
"gitHead": "
|
|
19
|
+
"gitHead": "476ab2f424d86f585c8fba1459568c8aec49a5c6"
|
|
20
20
|
}
|