cleek 2.5.1 → 2.5.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/dist/cleek.es.js CHANGED
@@ -58226,7 +58226,8 @@ const _sfc_main$l = /* @__PURE__ */ defineComponent$1({
58226
58226
  const props = __props;
58227
58227
  const date = computed$3({
58228
58228
  get() {
58229
- return `${props.modelValue}T00:00:00`;
58229
+ const stringValue = `${props.modelValue}`;
58230
+ return `${stringValue.substring(0, 10)}T00:00:00`;
58230
58231
  },
58231
58232
  set(val) {
58232
58233
  emits("update:modelValue", val);