SInputCheckboxes
<SInputCheckboxes>
is a multiple checkboxes input component.
Usage
Import <SInputCheckboxes>
component and pass in options
and value
props.
<script setup lang="ts">
import { ref } from 'vue'
import SInputCheckboxes from '@globalbrain/sefirot/lib/components/SInputCheckboxes.vue'
const input = ref([])
const options = [
{ label: 'Item 001', value: 1 },
{ label: 'Item 002', value: 2 },
{ label: 'Item 003', value: 3 }
]
</script>
<template>
<SInputCheckboxes :options="options" v-model="input" />
</template>
<script setup lang="ts">
import { ref } from 'vue'
import SInputCheckboxes from '@globalbrain/sefirot/lib/components/SInputCheckboxes.vue'
const input = ref([])
const options = [
{ label: 'Item 001', value: 1 },
{ label: 'Item 002', value: 2 },
{ label: 'Item 003', value: 3 }
]
</script>
<template>
<SInputCheckboxes :options="options" v-model="input" />
</template>
Props
Here are the list of props you may pass to the component.
:size
Defines the size of the input. The default is small
.
interface Props {
size?: 'mini' | 'small' | 'medium'
}
interface Props {
size?: 'mini' | 'small' | 'medium'
}
<SInputCheckboxes
size="small"
:options="[...]"
v-model="..."
/>
<SInputCheckboxes
size="small"
:options="[...]"
v-model="..."
/>
:label
Defines the label text of the input.
interface Props {
label?: string
}
interface Props {
label?: string
}
<SInputCheckboxes
label="Name"
:options="[...]"
v-model="..."
/>
<SInputCheckboxes
label="Name"
:options="[...]"
v-model="..."
/>
:info
Shows help icon after the label and shows info in a tooltip when the user hovers the label.
interface Props {
info?: string
}
interface Props {
info?: string
}
<SInputCheckboxes
label="Domain"
info="Some helpful information."
v-model="..."
/>
<SInputCheckboxes
label="Domain"
info="Some helpful information."
v-model="..."
/>
:note
Adds small help text after the label. Best used along with label
prop.
interface Props {
note?: string
}
interface Props {
note?: string
}
<SInputCheckboxes
label="Domain"
note="Optional"
:options="[...]"
v-model="..."
/>
<SInputCheckboxes
label="Domain"
note="Optional"
:options="[...]"
v-model="..."
/>
:check-icon
Icon to display at corner right of label. Useful to show the status of a particular input.
import { IconifyIcon } from '@iconify/vue/dist/offline'
interface Props {
checkIcon?: IconifyIcon
}
import { IconifyIcon } from '@iconify/vue/dist/offline'
interface Props {
checkIcon?: IconifyIcon
}
<SInputCheckboxes :check-icon="IconCheckCircle" />
<SInputCheckboxes :check-icon="IconCheckCircle" />
:check-text
Text to display alongside check-icon
.
interface Props {
checkText?: string
}
interface Props {
checkText?: string
}
<SInputCheckboxes :check-text="Saved" />
<SInputCheckboxes :check-text="Saved" />
:check-color
Defines the color of check-icon
and check-text
. The default is neutral
.
interface Props {
checkColor?: Color
}
type Color =
| 'neutral'
| 'mute'
| 'info'
| 'success'
| 'warning'
| 'danger'
interface Props {
checkColor?: Color
}
type Color =
| 'neutral'
| 'mute'
| 'info'
| 'success'
| 'warning'
| 'danger'
<SInputCheckboxes
:check-icon="IconCheckCircle"
check-text="Uploaded"
check-color="success"
/>
<SInputCheckboxes
:check-icon="IconCheckCircle"
check-text="Uploaded"
check-color="success"
/>
:options
The list of selectable options for the input.
interface Props {
options?: Option[]
}
export interface Option {
label: string
value: string | number | boolean
disabled?: boolean
}
interface Props {
options?: Option[]
}
export interface Option {
label: string
value: string | number | boolean
disabled?: boolean
}
<SInputCheckboxes
:options="[
{ label: 'Item 001', value: 1 },
{ label: 'Item 002', value: 2 },
{ label: 'Item 003', value: 3 }
]"
v-model="..."
/>
<SInputCheckboxes
:options="[
{ label: 'Item 001', value: 1 },
{ label: 'Item 002', value: 2 },
{ label: 'Item 003', value: 3 }
]"
v-model="..."
/>
:nullable
Enables the user to deselect options. The default is true
.
interface Props {
nullable?: boolean
}
interface Props {
nullable?: boolean
}
<SInputCheckboxes
:options="[...]"
nullable
v-model="..."
/>
<SInputCheckboxes
:options="[...]"
nullable
v-model="..."
/>
:disabled
Mark input as disabled. When this prop is set, users may not be able to focus the element not trigger any events.
interface Props {
disabled?: boolean
}
interface Props {
disabled?: boolean
}
<SInputCheckboxes
:options="[...]"
disabled
v-model="..."
/>
<SInputCheckboxes
:options="[...]"
disabled
v-model="..."
/>
:value
Sets the input value. When model-value
prop is set (e.g. via v-model
directive), this prop gets ignored.
interface Props {
value?: (string | number | boolean)[]
}
interface Props {
value?: (string | number | boolean)[]
}
<SInputCheckboxes
:options="[...]"
:value="[1]"
/>
<SInputCheckboxes
:options="[...]"
:value="[1]"
/>
:model-value
The v-model
binding for the input.
interface Props {
modelValue?: (string | number | boolean)[]
}
interface Props {
modelValue?: (string | number | boolean)[]
}
<SInputCheckboxes
:options="[...]"
v-model="[1]"
/>
<SInputCheckboxes
:options="[...]"
v-model="[1]"
/>
:validation
The validation object for the input. It accepts Vuelidate like validation object and displays error if there're any.
import { Ref } from 'vue'
interface Props {
validation?: Validatable
}
export interface Validatable {
readonly $dirty: boolean
readonly $invalid: boolean
readonly $errors: ValidatableError[]
readonly $touch: () => void
}
export interface ValidatableError {
readonly $message: string | Ref<string>
}
import { Ref } from 'vue'
interface Props {
validation?: Validatable
}
export interface Validatable {
readonly $dirty: boolean
readonly $invalid: boolean
readonly $errors: ValidatableError[]
readonly $touch: () => void
}
export interface ValidatableError {
readonly $message: string | Ref<string>
}
<SInputCheckboxes
:options="[...]"
v-model="..."
:validation="validation"
/>
<SInputCheckboxes
:options="[...]"
v-model="..."
:validation="validation"
/>
:hide-error
Stop showing validation error message even when there are errors. This prop will not prevent the error color from appearing.
interface Props {
hideError?: boolean
}
interface Props {
hideError?: boolean
}
<SInputCheckboxes
:options="[...]"
v-model="..."
:validation="validation"
hide-error
/>
<SInputCheckboxes
:options="[...]"
v-model="..."
:validation="validation"
hide-error
/>
Slots
Here are the list of slots you may define within the component.
#info
Same as info
prop. When info
prop and this slot are defined at the same time, this slot will take precedence.
<SInputCheckboxes label="Domain" v-model="...">
<template #info>
Learn more about this field <SLink href="...">here</SLink>.
</template>
</SInputCheckboxes>
<SInputCheckboxes label="Domain" v-model="...">
<template #info>
Learn more about this field <SLink href="...">here</SLink>.
</template>
</SInputCheckboxes>
Events
Here are the list of events the component may emit.
@update:model-value
Emits when the user selects the item. This event is always emitted together with change
event.
interface Emits {
(e: 'update:model-value', value: Value): void
}
type Value = (string | number | boolean)[]
interface Emits {
(e: 'update:model-value', value: Value): void
}
type Value = (string | number | boolean)[]
@change
Emits when the user selects the item. This event is always emitted together with update:model-value
event.
interface Emits {
(e: 'change', value: Value): void
}
type Value = (string | number | boolean)[]
interface Emits {
(e: 'change', value: Value): void
}
type Value = (string | number | boolean)[]
Styles
You may customize the styles by overriding --input
prefixed CSS variables.
Global input styles
You may customize the various styles of the component via global input related CSS variables. Please refer to Styles: Input Styles page.