UNPKG

@pdfme/schemas

Version:

TypeScript base PDF generator and React base UI. Open source, developed by the community, and completely free to use under the MIT license!

17 lines (15 loc) 492 B
import type { Plugin } from '@pdfme/common'; import { pdfRender } from './pdfRender.js'; import { propPanel } from './propPanel.js'; import { uiRender } from './uiRender.js'; import type { MultiVariableTextSchema } from './types.js'; import { Type } from 'lucide'; import { createSvgStr } from '../utils.js'; const schema: Plugin<MultiVariableTextSchema> = { pdf: pdfRender, ui: uiRender, propPanel, icon: createSvgStr(Type), uninterruptedEditMode: true, }; export default schema;