65 lines
1.3 KiB
Vue
65 lines
1.3 KiB
Vue
<script>
|
|
import BaseComponent from 'primevue/basecomponent';
|
|
import ToggleButtonStyle from 'primevue/togglebutton/style';
|
|
|
|
export default {
|
|
name: 'BaseToggleButton',
|
|
extends: BaseComponent,
|
|
props: {
|
|
modelValue: Boolean,
|
|
onIcon: String,
|
|
offIcon: String,
|
|
onLabel: {
|
|
type: String,
|
|
default: 'Yes'
|
|
},
|
|
offLabel: {
|
|
type: String,
|
|
default: 'No'
|
|
},
|
|
iconPos: {
|
|
type: String,
|
|
default: 'left'
|
|
},
|
|
disabled: {
|
|
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
|
|
},
|
|
ariaLabelledby: {
|
|
type: String,
|
|
default: null
|
|
},
|
|
ariaLabel: {
|
|
type: String,
|
|
default: null
|
|
}
|
|
},
|
|
style: ToggleButtonStyle,
|
|
provide() {
|
|
return {
|
|
$parentInstance: this
|
|
};
|
|
}
|
|
};
|
|
</script>
|