aboutsummaryrefslogtreecommitdiff
path: root/src/components/opacity_input/opacity_input.vue
diff options
context:
space:
mode:
authorHenry Jameson <me@hjkos.com>2020-01-02 21:36:01 +0200
committerHenry Jameson <me@hjkos.com>2020-01-02 21:36:01 +0200
commitadbab6ad2a413357b24edbd5b9beec3baae695fa (patch)
tree639401e36960f16f2a31260a85b2822987fac910 /src/components/opacity_input/opacity_input.vue
parent4bb1c98e0f28bcf1d0dff2d90d01013cd5487522 (diff)
added optional checkbox for opacity, similar to color input
Diffstat (limited to 'src/components/opacity_input/opacity_input.vue')
-rw-r--r--src/components/opacity_input/opacity_input.vue37
1 files changed, 33 insertions, 4 deletions
diff --git a/src/components/opacity_input/opacity_input.vue b/src/components/opacity_input/opacity_input.vue
index c677f18c..f7b10d30 100644
--- a/src/components/opacity_input/opacity_input.vue
+++ b/src/components/opacity_input/opacity_input.vue
@@ -18,7 +18,7 @@
@input="$emit('input', !present ? fallback : undefined)"
>
<label
- v-if="typeof fallback !== 'undefined'"
+ v-if="typeof fallback !== 'undefined' && showOptionalTickbox"
class="opt-l"
:for="name + '-o'"
/>
@@ -38,9 +38,38 @@
<script>
export default {
- props: [
- 'name', 'value', 'fallback', 'disabled'
- ],
+ props: {
+ // Name of opacity, used for identifying
+ name: {
+ required: true,
+ type: String
+ },
+ // Opacity value, should be required but vue cannot tell the difference
+ // between "property missing" and "property set to undefined"
+ value: {
+ required: false,
+ type: Number,
+ default: undefined
+ },
+ // Opacity fallback to use when value is not defeind
+ fallback: {
+ required: false,
+ type: Number,
+ default: undefined
+ },
+ // Disable the control
+ disabled: {
+ required: false,
+ type: Boolean,
+ default: false
+ },
+ // Show "optional" tickbox, for when value might become mandatory
+ showOptionalTickbox: {
+ required: false,
+ type: Boolean,
+ default: true
+ }
+ },
computed: {
present () {
return typeof this.value !== 'undefined'