From a2ff6c62bc8ca748e28c5e9a11e87273a2c7a029 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tu=C4=9F=C3=A7e=20K=C3=BC=C3=A7=C3=BCko=C4=9Flu?= Date: Thu, 17 Aug 2023 11:13:04 +0300 Subject: [PATCH] Refactor on ColorPicker --- components/lib/colorpicker/ColorPicker.vue | 39 ---------------------- 1 file changed, 39 deletions(-) diff --git a/components/lib/colorpicker/ColorPicker.vue b/components/lib/colorpicker/ColorPicker.vue index 972096a56..5fffba530 100755 --- a/components/lib/colorpicker/ColorPicker.vue +++ b/components/lib/colorpicker/ColorPicker.vue @@ -30,45 +30,6 @@ export default { name: 'ColorPicker', extends: BaseColorPicker, emits: ['update:modelValue', 'change', 'show', 'hide'], - props: { - modelValue: { - type: null, - default: null - }, - defaultColor: { - type: null, - default: 'ff0000' - }, - inline: { - type: Boolean, - default: false - }, - format: { - type: String, - default: 'hex' - }, - disabled: { - type: Boolean, - default: false - }, - tabindex: { - type: String, - default: null - }, - autoZIndex: { - type: Boolean, - default: true - }, - baseZIndex: { - type: Number, - default: 0 - }, - appendTo: { - type: String, - default: 'body' - }, - panelClass: null - }, data() { return { overlayVisible: false