@quillforms/blocklib-long-text-block
Version:
Long text block for quillforms
42 lines (41 loc) • 832 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.name = exports.metadata = void 0;
/**
* Internal Dependencies
*/
const metadata = exports.metadata = {
name: "long-text",
supports: {
editable: true,
required: true,
attachment: true,
description: true,
placeholder: true,
defaultValue: true,
logic: true,
theme: true
},
attributes: {
minCharacters: {
type: ["boolean", "number"],
"default": false
},
setMaxCharacters: {
type: "boolean",
"default": false
},
maxCharacters: {
type: "number",
multipleOf: 1
}
},
logicalOperators: ["is", "is_not", "starts_with", "ends_with", "contains", "not_contains"]
};
const {
name
} = metadata;
exports.name = name;
//# sourceMappingURL=index.js.map