@dataloop-ai/components 0.17.108 → 0.17.109

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dataloop-ai/components",
3
- "version": "0.17.108",
3
+ "version": "0.17.109",
4
4
  "exports": {
5
5
  ".": "./index.ts",
6
6
  "./models": "./models.ts",
@@ -416,7 +416,16 @@ export default defineComponent({
416
416
  this.$emit('set-type', value)
417
417
  },
418
418
  updateDateInterval(value: DateInterval | null) {
419
- this.dateInterval = value
419
+ this.dateInterval = {
420
+ from: value.from,
421
+ to: new Date(
422
+ value.from.getFullYear(),
423
+ value.from.getMonth(),
424
+ value.from.getDate(),
425
+ 23,
426
+ 59
427
+ )
428
+ }
420
429
  this.$emit('update:modelValue', value)
421
430
  this.$emit('change', value)
422
431
  },