| 1 | "use client"; |
| 2 | |
| 3 | import { TextAlignPlugin } from "@platejs/basic-styles/react"; |
| 4 | import { KEYS } from "platejs"; |
| 5 | |
| 6 | export const AlignKit = [ |
| 7 | TextAlignPlugin.configure({ |
| 8 | inject: { |
| 9 | nodeProps: { |
| 10 | defaultNodeValue: "start", |
| 11 | nodeKey: "align", |
| 12 | styleKey: "textAlign", |
| 13 | validNodeValues: ["start", "left", "center", "right", "end", "justify"], |
| 14 | }, |
| 15 | targetPlugins: [...KEYS.heading, KEYS.p, KEYS.img, KEYS.mediaEmbed], |
| 16 | }, |
| 17 | }), |
| 18 | ]; |
| 19 |