10000 fix(devtools): component input styles · romhml/compodium@c7472d0 · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Commit c7472d0

Browse files
committed
fix(devtools): component input styles
1 parent 4f25b6f commit c7472d0

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

packages/devtools/app/components/inputs/DateInput.vue

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ const calendarDate = computed({
2121
</script>
2222

2323
<template>
24-
<UPopover mode="hover">
24+
<UPopover>
2525
<UButton
2626
color="neutral"
27-
variant="subtle"
27+
variant="outline"
2828
icon="i-lucide-calendar"
2929
>
3030
{{ modelValue ? df.format(modelValue) : 'Select a date' }}

packages/devtools/app/components/inputs/IconInput.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ const visibleIcons = computed(() => {
5353
</script>
5454

5555
<template>
56-
<UPopover mode="hover">
56+
<UPopover>
5757
<UButtonGroup>
5858
<UButton
5959
:icon="modelValue"

playgrounds/nuxt/components/SupportedProps.vue

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ const _props = defineProps<{
44
string?: string
55
number?: number
66
boolean?: boolean
7+
date?: Date
78
primitiveUnion?: string | number | boolean
89
910
// Arrays

0 commit comments

Comments
 (0)
0