html: createTextField()

in src/elements/pullquote/PullquoteSpec.tsx [7:19]


  html: createTextField({
    rows: 4,
    validators: [
      required("Pullquote cannot be empty"),
      //To display a warning to users
      maxLength(120, undefined, "WARN"),
      //To prevent publication
      maxLength(1000, "Pullquote is too long", "ERROR"),
    ],
    absentOnEmpty: true,
    placeholder: "Enter a pull quote here…",
    attrs: useTyperighterAttrs,
  }),