@nocobase/utils 1.6.0-alpha.8 → 1.6.0-beta.1

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.
Files changed (2) hide show
  1. package/lib/date.js +1 -1
  2. 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 + timeFormat || "HH:mm:ss";
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-alpha.8",
3
+ "version": "1.6.0-beta.1",
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": "f7ab757a5d7fb723c96bc9c1340291e4deec03ea"
19
+ "gitHead": "69a79d1ed9660beb14ee956ec634f0c6d142acfa"
20
20
  }