1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
| <script setup lang="ts">
| import type { HTMLAttributes } from 'vue';
|
| import { cn } from '..\..\..\..\..\base\shared\src\utils';
|
| import { NumberFieldInput } from 'reka-ui';
|
| const props = defineProps<{
| class?: HTMLAttributes['class'];
| }>();
| </script>
|
| <template>
| <NumberFieldInput
| data-slot="input"
| :class="
| cn(
| 'flex h-9 w-full rounded-md border border-input bg-transparent py-1 text-sm text-center shadow-sm transition-colors placeholder:text-muted-foreground focus-visible:outline-none focus-visible:ring-1 focus-visible:ring-ring disabled:cursor-not-allowed disabled:opacity-50',
| props.class,
| )
| "
| />
| </template>
|
|