@coreui/vue-pro 4.7.0-alpha.0 → 4.7.0-alpha.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.
package/dist/index.es.js CHANGED
@@ -13006,11 +13006,13 @@ const CDateRangePicker = defineComponent({
13006
13006
  watch(() => props.startDate, () => {
13007
13007
  if (props.startDate) {
13008
13008
  calendarDate.value = new Date(props.startDate);
13009
+ startDate.value = new Date(props.startDate);
13009
13010
  }
13010
13011
  });
13011
13012
  watch(() => props.endDate, () => {
13012
13013
  if (props.endDate) {
13013
13014
  calendarDate.value = new Date(props.endDate);
13015
+ endDate.value = new Date(props.endDate);
13014
13016
  }
13015
13017
  });
13016
13018
  watch(() => props.maxDate, () => {