Added three new props for use with the "border-style" messages:
/**
* The background colour opacity when using border-style messages
*/
backgroundOpacity: {
type: [String, Number],
default: 0.12,
validator: (v) => {
return !isNaN(parseFloat(v)) && isFinite(v);
},
},
/**
* Background colour when using border-style messages
*/
backgroundColor: {
type: String,
default: "currentColor",
},
/**
* Base layor background colour when using border-style messages
*/
baseBackgroundColor: {
type: String,
default: "#fff",
},