Socket
Socket
Sign inDemoInstall

abstract-document

Package Overview
Dependencies
Maintainers
12
Versions
140
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

abstract-document - npm Package Compare versions

Comparing version 6.8.2 to 6.8.4

0

CHANGELOG.md

@@ -0,0 +0,0 @@ # Change Log

6

package.json
{
"name": "abstract-document",
"version": "6.8.2",
"version": "6.8.4",
"description": "Dynamically create documents using code or JSX and render to any format",

@@ -18,3 +18,3 @@ "repository": "https://github.com/dividab/abstract-visuals/tree/master/packages/abstract-document",

"dependencies": {
"abstract-image": "^3.2.1",
"abstract-image": "^3.2.3",
"base64-js": "^1.2.0",

@@ -43,3 +43,3 @@ "blob-stream": "^0.1.3",

},
"gitHead": "cbfc86239a9ed075054485b8ca835a702a0659b8"
"gitHead": "81109d0f47e5d8c0539e47ff83372f6c4ab9182a"
}

@@ -0,0 +0,0 @@ # abstract-document

@@ -0,0 +0,0 @@ import { RefContainer } from "./ref-container";

@@ -0,0 +0,0 @@ // tslint:disable:variable-name

@@ -0,0 +0,0 @@ import * as DocxConstants from "./docx-constants";

@@ -0,0 +0,0 @@ // https://github.com/google/closure-library/blob/e877b1eac410c0d842bcda118689759512e0e26f/closure/goog/crypt/crypt.js

@@ -0,0 +0,0 @@ // interface XmlElement {

@@ -0,0 +0,0 @@ import * as AbstractImage from "abstract-image";

@@ -0,0 +0,0 @@ import * as AD from "../../abstract-document";

@@ -0,0 +0,0 @@ import * as Pdf from "./pdf/render";

@@ -0,0 +0,0 @@ import * as AD from "../../abstract-document/index";

@@ -0,0 +0,0 @@ import * as R from "ramda";

@@ -0,0 +0,0 @@ import * as R from "ramda";

@@ -0,0 +0,0 @@ import * as R from "ramda";

@@ -0,0 +0,0 @@ import * as AbstractImage from "abstract-image";

@@ -0,0 +0,0 @@ import * as AD from "../../abstract-document/index";

@@ -0,0 +0,0 @@ import * as AD from "../../abstract-document/index";

@@ -0,0 +0,0 @@ import * as AD from "../../abstract-document/index";

@@ -0,0 +0,0 @@ import * as R from "ramda";

@@ -0,0 +0,0 @@ import { Section } from "./page/section";

@@ -0,0 +0,0 @@ import { Image } from "./image";

@@ -0,0 +0,0 @@ import * as TextStyle from "../styles/text-style";

@@ -0,0 +0,0 @@ import { ImageResource } from "../primitives/image-resource";

@@ -0,0 +0,0 @@ export interface LinkTarget {

@@ -0,0 +0,0 @@ import * as TextStyle from "../styles/text-style";

@@ -0,0 +0,0 @@ import * as TextStyle from "../styles/text-style";

@@ -0,0 +0,0 @@ // TODO: This should be part of some kind of table of content API that better maps to Word file generation.

@@ -0,0 +0,0 @@ import * as R from "ramda";

@@ -0,0 +0,0 @@ import * as AbstractDoc from "./abstract-doc";

@@ -0,0 +0,0 @@ import unified from "unified";

@@ -0,0 +0,0 @@ import * as AD from "../../abstract-document/index";

@@ -0,0 +0,0 @@ import { NumberingLevelDefinition } from "./numbering-level-definition";

@@ -0,0 +0,0 @@ export type NumberingFormat =

@@ -0,0 +0,0 @@ import * as TextStyle from "../styles/text-style";

export interface Numbering {
readonly definitionId: string;
}

@@ -0,0 +0,0 @@ import * as PageStyle from "../styles/page-style";

@@ -0,0 +0,0 @@ import { Resources } from "../resources";

@@ -0,0 +0,0 @@ export interface Font {

@@ -0,0 +0,0 @@ import { AbstractImage } from "abstract-image";

@@ -0,0 +0,0 @@ export interface LayoutFoundationColor {

@@ -0,0 +0,0 @@ export interface LayoutFoundation {

@@ -0,0 +0,0 @@ export function fromTwips(twips: number): number {

@@ -0,0 +0,0 @@ export interface Point {

@@ -0,0 +0,0 @@ export interface Rect {

@@ -0,0 +0,0 @@ export interface Size {

@@ -0,0 +0,0 @@ import * as R from "ramda";

@@ -0,0 +0,0 @@ import { Resources } from "../resources";

@@ -0,0 +0,0 @@ import { Resources } from "../resources";

@@ -0,0 +0,0 @@ export interface ParagraphNumbering {

@@ -0,0 +0,0 @@ import { Resources } from "../resources";

@@ -0,0 +0,0 @@ import * as Group from "./group";

@@ -0,0 +0,0 @@ import { Resources } from "../resources";

@@ -0,0 +0,0 @@ import * as LayoutFoundation from "../primitives/layout-foundation";

@@ -0,0 +0,0 @@ import * as LayoutFoundation from "../primitives/layout-foundation";

@@ -0,0 +0,0 @@ import * as TextStyle from "./text-style";

@@ -0,0 +0,0 @@ import * as SectionElement from "../section-elements/section-element";

@@ -0,0 +0,0 @@ export type StyleKey = string;

@@ -0,0 +0,0 @@ import * as ParagraphStyle from "./paragraph-style";

@@ -0,0 +0,0 @@ import * as LayoutFoundation from "../primitives/layout-foundation";

@@ -0,0 +0,0 @@ import * as LayoutFoundation from "../primitives/layout-foundation";

@@ -0,0 +0,0 @@ export type TextAlignment = "left" | "center" | "right" | "justify";

@@ -0,0 +0,0 @@ import * as SectionElement from "../section-elements/section-element";

@@ -0,0 +0,0 @@ import { TableCell } from "./table-cell";

// tslint:disable-next-line:readonly-keyword
export type Indexer<T> = { [key: string]: T };
export type Guid = string;
declare module "@textlint/markdown-to-ast";
declare module "diff-json";
declare module "markdown-parser";
declare module "pdf2json";
declare module "remark-parse";
declare module "remark-sub-super";
declare module "svg-to-pdfkit";
declare module "unified";

@@ -0,0 +0,0 @@ import * as AbstractDoc from "./abstract-document/index";

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc