* add template * Rename template * Add test for insert 2 images * image marker regex * Ajout d'un test pour vérifier que le texte du template est bon * WORK IN PROGRESS - trouver et évaluer la balise image * Create OfjsImage type * create addImageToOdtFile * Regenerate yo odt to inspect it * Add a draw image and a draw frame into odt file * Test if there are two draw:image in the generated document * Add pictures in manifest.xml to fix corrupted file * Adapt anchor type * Fix images aspect with ratio
21 lines
514 B
JavaScript
21 lines
514 B
JavaScript
|
|
/**
|
|
* @typedef SheetCellRawContent
|
|
* @prop {string | null | undefined} value
|
|
* @prop {'float' | 'percentage' | 'currency' | 'date' | 'time' | 'boolean' | 'string' | 'b' | 'd' | 'e' | 'inlineStr' | 'n' | 's' | 'str'} type
|
|
*/
|
|
|
|
/** @typedef {SheetCellRawContent[]} SheetRowRawContent */
|
|
/** @typedef {SheetRowRawContent[]} SheetRawContent */
|
|
|
|
/** @typedef {string} SheetName */
|
|
|
|
/**
|
|
* @typedef OdfjsImage
|
|
* @prop {ArrayBuffer} content
|
|
* @prop {string} fileName
|
|
* @prop {string} mediaType
|
|
*
|
|
*/
|
|
|
|
export {} |