frappe-ui 0.1.247 → 0.1.248
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
|
@@ -127,7 +127,7 @@
|
|
|
127
127
|
:disabled="dateObj.disabled"
|
|
128
128
|
@click="
|
|
129
129
|
!dateObj.disabled &&
|
|
130
|
-
|
|
130
|
+
handleDateCellClick(dateObj.date, togglePopover)
|
|
131
131
|
"
|
|
132
132
|
>
|
|
133
133
|
{{ dateObj.date.date() }}
|
|
@@ -268,7 +268,7 @@ const view = ref<ViewMode>('date')
|
|
|
268
268
|
const currentYear = ref<number>(dayjs().year())
|
|
269
269
|
const currentMonth = ref<number>(dayjs().month())
|
|
270
270
|
const DATE_FORMAT = 'YYYY-MM-DD'
|
|
271
|
-
const DATE_TIME_FORMAT = 'YYYY-MM-DD
|
|
271
|
+
const DATE_TIME_FORMAT = 'YYYY-MM-DD HH:mm:ss'
|
|
272
272
|
|
|
273
273
|
const selectedDate = ref<string>('') // YYYY-MM-DD
|
|
274
274
|
const timeValue = ref<string>('') // HH:mm:ss
|