UNPKG

@pilotlab/lux-tools

Version:

A luxurious user experience framework, developed by your friends at Pilot.

15 lines 708 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const attributes_1 = require("@pilotlab/attributes"); const styleLine_1 = require("./styleLine"); class StyleBorder extends styleLine_1.default { constructor(data) { super(data); this.p_insetFactor = this.children.get('insetFactor', 0, attributes_1.DataType.NUMBER_DOUBLE, null, attributes_1.AttributeChangeOptions.zero); } get insetFactor() { return this.p_insetFactor.value; } set insetFactor(value) { this.p_insetFactor.set(value, attributes_1.AttributeChangeOptions.save.durationZero); } } exports.StyleBorder = StyleBorder; exports.default = StyleBorder; //# sourceMappingURL=styleBorder.js.map