docx-templates
Advanced tools
Comparing version 4.9.1 to 4.9.2
@@ -0,1 +1,4 @@ | ||
## 4.9.2 (2022-04-04) | ||
- [PR 266](https://github.com/guigrpa/docx-templates/pull/266) Fix types for Deno bundle (by @mathe42). | ||
## 4.9.1 (2022-02-18) | ||
@@ -2,0 +5,0 @@ - [Issue #259](https://github.com/guigrpa/docx-templates/issues/259) Fix issue that caused inserted images to be overwritten when `createReport()` was invoked a second time on the resulting template. |
@@ -1,4 +0,13 @@ | ||
/// <reference types="node" /> | ||
import { QualifiedAttribute } from 'sax'; | ||
type Buffer = ArrayBufferLike; | ||
interface QualifiedName { | ||
name: string; | ||
prefix: string; | ||
local: string; | ||
uri: string; | ||
} | ||
interface QualifiedAttribute extends QualifiedName { | ||
value: string; | ||
} | ||
declare type Node = TextNode | NonTextNode; | ||
@@ -5,0 +14,0 @@ declare type BaseNode = { |
{ | ||
"name": "docx-templates", | ||
"version": "4.9.1", | ||
"version": "4.9.2", | ||
"description": "Template-based docx report creation", | ||
@@ -5,0 +5,0 @@ "main": "lib/index.js", |
@@ -119,2 +119,4 @@ # Docx-templates [![Build Status](https://travis-ci.org/guigrpa/docx-templates.svg)](https://travis-ci.org/guigrpa/docx-templates) [![Coverage Status](https://coveralls.io/repos/github/guigrpa/docx-templates/badge.svg?branch=master)](https://coveralls.io/github/guigrpa/docx-templates?branch=master) [![npm version](https://img.shields.io/npm/v/docx-templates.svg)](https://www.npmjs.com/package/docx-templates) | ||
> Note that you have to set `noSandbox: true` or bring your own sandbox with the `runJs` option. | ||
# Browser usage | ||
@@ -121,0 +123,0 @@ |
1447954
3598
610