Files
nocodb/packages/nc-gui/components/nc/Checkbox.vue
mertmit 69a29568c7 chore: sync
Signed-off-by: mertmit <mertmit99@gmail.com>
2026-01-10 00:21:02 +03:00

74 lines
1.6 KiB
Vue

<script lang="ts" setup>
interface Props {
checked?: boolean
size?: 'small' | 'default' | 'large'
disabled?: boolean
theme?: 'default' | 'ai'
readonly?: boolean
}
const props = withDefaults(defineProps<Props>(), {
size: 'default',
disabled: false,
theme: 'default',
readonly: false,
})
const emit = defineEmits(['change', 'update:checked'])
const checked = useVModel(props, 'checked', emit)
const onChange = (e: Event) => {
emit('change', e, (e.target as HTMLInputElement).checked)
}
</script>
<template>
<a-checkbox
v-model:checked="checked"
class="nc-checkbox"
:class="`theme-${props.theme}`"
:disabled="props.disabled"
:readonly="props.readonly"
@change="onChange"
>
<slot />
</a-checkbox>
</template>
<style lang="scss">
.nc-checkbox {
@apply flex flex-row !items-center text-nc-content-gray;
&.theme-ai {
.ant-checkbox-input:focus + .ant-checkbox-inner,
&.ant-checkbox-wrapper:hover .ant-checkbox-inner,
.ant-checkbox:hover .ant-checkbox-inner {
@apply border-purple-400;
}
& > .ant-checkbox-checked {
&:not(.ant-checkbox-disabled) > .ant-checkbox-inner {
@apply bg-purple-500 border-purple-500;
}
}
}
input[readonly] {
@apply cursor-not-allowed;
}
}
.nc-checkbox > .ant-checkbox {
@apply flex !border-0 !p-0 !h-4 !w-4 !rounded !-mt-1.5 mr-0.75 shadow-sm shadow-nc-bg-gray-light;
}
.nc-checkbox > .ant-checkbox > .ant-checkbox-input {
@apply !p-0 !h-4 !w-4 !border-0;
}
.nc-checkbox > .ant-checkbox::after {
@apply !border-0 !h-4 !w-4 !rounded;
}
.nc-checkbox > .ant-checkbox > .ant-checkbox-inner {
@apply !h-4 !w-4 !rounded;
}
</style>