26 lines
427 B
JavaScript
26 lines
427 B
JavaScript
|
|
const defaults = {
|
|
width: 2,
|
|
height: 60,
|
|
format: "auto",
|
|
displayValue: true,
|
|
fontOptions: "",
|
|
font: "serif",
|
|
text: "123 456 89",
|
|
textAlign: "center",
|
|
textPosition: "bottom",
|
|
textMargin: 2,
|
|
fontSize: 20,
|
|
background: "#ffffff",
|
|
lineColor: "#000000",
|
|
margin: 10,
|
|
marginTop: undefined,
|
|
marginBottom: undefined,
|
|
marginLeft: undefined,
|
|
marginRight: undefined,
|
|
valid: function () { }
|
|
};
|
|
|
|
|
|
export default defaults;
|