Commit 9bb41e89 authored by Sarah Groff Hennigh-Palermo's avatar Sarah Groff Hennigh-Palermo Committed by Filipa Lacerda

Adds EE validators to CE file

parent 9b812763
...@@ -4,10 +4,16 @@ export default { ...@@ -4,10 +4,16 @@ export default {
colors: { colors: {
type: Array, type: Array,
required: true, required: true,
validator(value) {
return value.length === 2;
},
}, },
opacity: { opacity: {
type: Array, type: Array,
required: true, required: true,
validator(value) {
return value.length === 2;
},
}, },
identifierName: { identifierName: {
type: String, type: String,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment