vevet
Version:
Vevet is a JavaScript library for creative development that simplifies crafting rich interactions like split text animations, carousels, marquees, preloading, and more.
28 lines • 884 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.MUTABLE_PROPS = exports.GET_STATIC_PROPS = void 0;
var GET_STATIC_PROPS = function (prefix) { return ({
__staticProp: true,
container: null,
ariaLabel: true,
letters: false,
lines: false,
linesWrapper: false,
letterTag: 'span',
wordTag: 'span',
lineTag: 'span',
letterClass: "".concat(prefix, "__letter"),
wordClass: "".concat(prefix, "__word"),
lineClass: "".concat(prefix, "__line"),
lineWrapperClass: "".concat(prefix, "__line-wrapper"),
resizeDebounce: 0,
ignore: null,
prepareText: function (text) { return text; },
wordDelimiter: String.fromCharCode(32),
wordDelimiterOutput: null,
}); };
exports.GET_STATIC_PROPS = GET_STATIC_PROPS;
exports.MUTABLE_PROPS = {
__mutableProp: true,
};
//# sourceMappingURL=props.js.map