diff --git a/src/components/NcCheckboxRadioSwitch/NcCheckboxContent.vue b/src/components/NcCheckboxRadioSwitch/NcCheckboxContent.vue index 14b06dd63f..dd2ff56bd5 100644 --- a/src/components/NcCheckboxRadioSwitch/NcCheckboxContent.vue +++ b/src/components/NcCheckboxRadioSwitch/NcCheckboxContent.vue @@ -125,6 +125,14 @@ export default { default: false, }, + /** + * Indeterminate state + */ + indeterminate: { + type: Boolean, + default: false, + }, + /** * Loading state */ diff --git a/src/components/NcCheckboxRadioSwitch/NcCheckboxRadioSwitch.vue b/src/components/NcCheckboxRadioSwitch/NcCheckboxRadioSwitch.vue index 37bc0859c5..bfaca1bd5c 100644 --- a/src/components/NcCheckboxRadioSwitch/NcCheckboxRadioSwitch.vue +++ b/src/components/NcCheckboxRadioSwitch/NcCheckboxRadioSwitch.vue @@ -287,6 +287,7 @@ export default { icon-class="checkbox-radio-switch__icon" text-class="checkbox-radio-switch__text" :type="type" + :indeterminate="indeterminate" :button-variant="buttonVariant" :is-checked="isChecked" :loading="loading"