This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import type * as CSS from 'csstype'; | |
| import { createSvgStr, convertForPdfLayoutProps, isEditable, addAlphaToHex, createErrorElm} | |
| from '@pdfme/schemas/utils'; | |
| import { Plugin, UIRenderProps } from '@pdfme/common'; | |
| import type { PDFRenderProps, Schema } from '@pdfme/common'; | |
| import * as Lucide from 'lucide'; | |
| import QRCode from 'qrcode'; | |
| const DEFAULT_OPACITY = 1; | |
| const HEX_COLOR_PATTERN = '^#(?:[A-Fa-f0-9]{6})$'; | |
| const DEFAULT_BARCODE_BG_COLOR = '#ffffff'; |