subshadow select event + better styles for preview

This commit is contained in:
Henry Jameson 2024-09-29 19:20:09 +03:00
parent dd4cab74d1
commit c2dfe62481
2 changed files with 17 additions and 6 deletions

View file

@ -166,12 +166,19 @@
} }
.preview-block { .preview-block {
width: 33%;
height: 33%;
border-radius: var(--roundness);
background: var(--background); background: var(--background);
display: flex;
justify-content: center;
align-items: center;
min-width: 33%;
min-height: 33%;
max-width: 80%;
max-height: 80%;
border-width: 0;
border-style: solid;
border-color: var(--border);
border-radius: var(--roundness);
box-shadow: var(--shadow); box-shadow: var(--shadow);
border: 1px solid var(--border);
} }
} }
} }

View file

@ -36,7 +36,7 @@ export default {
props: [ props: [
'modelValue', 'fallback', 'separateInset', 'noPreview', 'disabled' 'modelValue', 'fallback', 'separateInset', 'noPreview', 'disabled'
], ],
emits: ['update:modelValue'], emits: ['update:modelValue', 'subShadowSelected'],
data () { data () {
return { return {
selectedId: 0, selectedId: 0,
@ -93,9 +93,13 @@ export default {
} }
} }
}, },
watch: {
selected (value) {
this.$emit('subShadowSelected', this.selectedId)
}
},
methods: { methods: {
updateProperty: throttle(function (prop, value) { updateProperty: throttle(function (prop, value) {
console.log(prop, value)
this.cValue[this.selectedId][prop] = value this.cValue[this.selectedId][prop] = value
if (prop === 'inset' && value === false && this.separateInset) { if (prop === 'inset' && value === false && this.separateInset) {
this.cValue[this.selectedId].spread = 0 this.cValue[this.selectedId].spread = 0