121 lines
2.5 KiB
Vue
121 lines
2.5 KiB
Vue
|
<script>
|
||
|
import BaseComponent from 'primevue/basecomponent';
|
||
|
import { useStyle } from 'primevue/usestyle';
|
||
|
|
||
|
const styles = `
|
||
|
.p-checkbox {
|
||
|
display: inline-flex;
|
||
|
cursor: pointer;
|
||
|
user-select: none;
|
||
|
vertical-align: bottom;
|
||
|
position: relative;
|
||
|
}
|
||
|
|
||
|
.p-checkbox.p-checkbox-disabled {
|
||
|
cursor: default;
|
||
|
}
|
||
|
|
||
|
.p-checkbox-box {
|
||
|
display: flex;
|
||
|
justify-content: center;
|
||
|
align-items: center;
|
||
|
}
|
||
|
`;
|
||
|
|
||
|
const classes = {
|
||
|
root: ({ instance, props }) => [
|
||
|
'p-checkbox p-component',
|
||
|
{
|
||
|
'p-checkbox-checked': instance.checked,
|
||
|
'p-checkbox-disabled': props.disabled,
|
||
|
'p-checkbox-focused': instance.focused
|
||
|
}
|
||
|
],
|
||
|
hiddenInputWrapper: 'p-hidden-accessible',
|
||
|
input: ({ instance, props }) => [
|
||
|
'p-checkbox-box',
|
||
|
{
|
||
|
'p-highlight': instance.checked,
|
||
|
'p-disabled': props.disabled,
|
||
|
'p-focus': instance.focused
|
||
|
}
|
||
|
],
|
||
|
icon: 'p-checkbox-icon'
|
||
|
};
|
||
|
|
||
|
const { load: loadStyle, unload: unloadStyle } = useStyle(styles, { id: 'primevue_checkbox_style', manual: true });
|
||
|
|
||
|
export default {
|
||
|
name: 'BaseCheckbox',
|
||
|
extends: BaseComponent,
|
||
|
props: {
|
||
|
value: null,
|
||
|
modelValue: null,
|
||
|
binary: Boolean,
|
||
|
name: {
|
||
|
type: String,
|
||
|
default: null
|
||
|
},
|
||
|
trueValue: {
|
||
|
type: null,
|
||
|
default: true
|
||
|
},
|
||
|
falseValue: {
|
||
|
type: null,
|
||
|
default: false
|
||
|
},
|
||
|
disabled: {
|
||
|
type: Boolean,
|
||
|
default: false
|
||
|
},
|
||
|
readonly: {
|
||
|
type: Boolean,
|
||
|
default: false
|
||
|
},
|
||
|
required: {
|
||
|
type: Boolean,
|
||
|
default: false
|
||
|
},
|
||
|
tabindex: {
|
||
|
type: Number,
|
||
|
default: null
|
||
|
},
|
||
|
inputId: {
|
||
|
type: String,
|
||
|
default: null
|
||
|
},
|
||
|
inputClass: {
|
||
|
type: [String, Object],
|
||
|
default: null
|
||
|
},
|
||
|
inputStyle: {
|
||
|
type: Object,
|
||
|
default: null
|
||
|
},
|
||
|
inputProps: {
|
||
|
type: null,
|
||
|
default: null
|
||
|
},
|
||
|
'aria-labelledby': {
|
||
|
type: String,
|
||
|
default: null
|
||
|
},
|
||
|
'aria-label': {
|
||
|
type: String,
|
||
|
default: null
|
||
|
}
|
||
|
},
|
||
|
css: {
|
||
|
classes
|
||
|
},
|
||
|
watch: {
|
||
|
isUnstyled: {
|
||
|
immediate: true,
|
||
|
handler(newValue) {
|
||
|
!newValue && loadStyle();
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
};
|
||
|
</script>
|