@wordpress/block-library
Version:
Block library for the WordPress editor.
75 lines (74 loc) • 2.21 kB
JavaScript
// packages/block-library/src/form-input/variations.js
import { __ } from "@wordpress/i18n";
var variations = [
{
name: "text",
title: __("Text Input"),
description: __("A generic text input."),
attributes: { type: "text" },
isDefault: true,
scope: ["inserter", "transform"],
isActive: (blockAttributes) => !blockAttributes?.type || blockAttributes?.type === "text"
},
{
name: "textarea",
title: __("Textarea Input"),
description: __(
"A textarea input to allow entering multiple lines of text."
),
attributes: { type: "textarea" },
isDefault: true,
scope: ["inserter", "transform"],
isActive: (blockAttributes) => blockAttributes?.type === "textarea"
},
{
name: "checkbox",
title: __("Checkbox Input"),
description: __("A simple checkbox input."),
attributes: { type: "checkbox", inlineLabel: true },
isDefault: true,
scope: ["inserter", "transform"],
isActive: (blockAttributes) => blockAttributes?.type === "checkbox"
},
{
name: "email",
title: __("Email Input"),
description: __("Used for email addresses."),
attributes: { type: "email" },
isDefault: true,
scope: ["inserter", "transform"],
isActive: (blockAttributes) => blockAttributes?.type === "email"
},
{
name: "url",
title: __("URL Input"),
description: __("Used for URLs."),
attributes: { type: "url" },
isDefault: true,
scope: ["inserter", "transform"],
isActive: (blockAttributes) => blockAttributes?.type === "url"
},
{
name: "tel",
title: __("Telephone Input"),
description: __("Used for phone numbers."),
attributes: { type: "tel" },
isDefault: true,
scope: ["inserter", "transform"],
isActive: (blockAttributes) => blockAttributes?.type === "tel"
},
{
name: "number",
title: __("Number Input"),
description: __("A numeric input."),
attributes: { type: "number" },
isDefault: true,
scope: ["inserter", "transform"],
isActive: (blockAttributes) => blockAttributes?.type === "number"
}
];
var variations_default = variations;
export {
variations_default as default
};
//# sourceMappingURL=variations.mjs.map