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