lint
This commit is contained in:
parent
e876c98d5e
commit
424da4c311
|
@ -1,11 +1,11 @@
|
||||||
<template>
|
<template>
|
||||||
<div
|
<div
|
||||||
class="ComponentPreview"
|
class="ComponentPreview"
|
||||||
:class="{ '-shadow-controls': shadowControl }"
|
:class="{ '-shadow-controls': shadowControl }"
|
||||||
>
|
>
|
||||||
<label
|
<label
|
||||||
class="header"
|
|
||||||
v-show="shadowControl"
|
v-show="shadowControl"
|
||||||
|
class="header"
|
||||||
:class="{ faint: disabled }"
|
:class="{ faint: disabled }"
|
||||||
>
|
>
|
||||||
{{ $t('settings.style.shadows.offset') }}
|
{{ $t('settings.style.shadows.offset') }}
|
||||||
|
@ -70,9 +70,36 @@
|
||||||
>
|
>
|
||||||
{{ $t('settings.style.shadows.light_grid') }}
|
{{ $t('settings.style.shadows.light_grid') }}
|
||||||
</Checkbox>
|
</Checkbox>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import Checkbox from 'src/components/checkbox/checkbox.vue'
|
||||||
|
|
||||||
|
export default {
|
||||||
|
components: {
|
||||||
|
Checkbox
|
||||||
|
},
|
||||||
|
props: [
|
||||||
|
'shadow',
|
||||||
|
'shadowControl',
|
||||||
|
'previewClass',
|
||||||
|
'previewStyle',
|
||||||
|
'disabled'
|
||||||
|
],
|
||||||
|
emits: ['update:shadow'],
|
||||||
|
data () {
|
||||||
|
return {
|
||||||
|
lightGrid: false
|
||||||
|
}
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
updateProperty (axis, value) {
|
||||||
|
this.$emit('update:shadow', { axis, value })
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
<style lang="scss">
|
<style lang="scss">
|
||||||
.ComponentPreview {
|
.ComponentPreview {
|
||||||
display: grid;
|
display: grid;
|
||||||
|
@ -185,30 +212,3 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
<script>
|
|
||||||
import Checkbox from 'src/components/checkbox/checkbox.vue'
|
|
||||||
|
|
||||||
export default {
|
|
||||||
props: [
|
|
||||||
'shadow',
|
|
||||||
'shadowControl',
|
|
||||||
'previewClass',
|
|
||||||
'previewStyle',
|
|
||||||
'disabled'
|
|
||||||
],
|
|
||||||
data () {
|
|
||||||
return {
|
|
||||||
lightGrid: false
|
|
||||||
}
|
|
||||||
},
|
|
||||||
emits: ['update:shadow'],
|
|
||||||
components: {
|
|
||||||
Checkbox
|
|
||||||
},
|
|
||||||
methods: {
|
|
||||||
updateProperty (axis, value) {
|
|
||||||
this.$emit('update:shadow', { axis, value })
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
</script>
|
|
||||||
|
|
Loading…
Reference in a new issue