mirror of https://github.com/nocodb/nocodb
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
964 B
45 lines
964 B
<script lang="ts" setup> |
|
import type { VNodeRef } from '@vue/runtime-core' |
|
import { EditModeInj, inject, useVModel } from '#imports' |
|
|
|
interface Props { |
|
modelValue?: number | null |
|
} |
|
|
|
interface Emits { |
|
(event: 'update:modelValue', model: number): void |
|
} |
|
|
|
const props = defineProps<Props>() |
|
|
|
const emits = defineEmits<Emits>() |
|
|
|
const editEnabled = inject(EditModeInj) |
|
|
|
const vModel = useVModel(props, 'modelValue', emits) |
|
|
|
const focus: VNodeRef = (el) => (el as HTMLInputElement)?.focus() |
|
</script> |
|
|
|
<template> |
|
<input |
|
v-if="editEnabled" |
|
:ref="focus" |
|
v-model="vModel" |
|
class="outline-none p-0 border-none w-full h-full text-sm" |
|
type="number" |
|
step="0.1" |
|
@blur="editEnabled = false" |
|
@keydown.down.stop |
|
@keydown.left.stop |
|
@keydown.right.stop |
|
@keydown.up.stop |
|
/> |
|
<span v-else class="text-sm">{{ vModel }}</span> |
|
</template> |
|
|
|
<style scoped lang="scss"> |
|
input[type='number']:focus { |
|
@apply ring-transparent; |
|
} |
|
</style>
|
|
|