prosemirror-utils
Advanced tools
Comparing version 0.9.5 to 0.9.6
@@ -0,1 +1,12 @@ | ||
## 0.9.6 (2018-08-07) | ||
### Changed | ||
- Upgrade prosemirror-tables dependecy to 0.9.1 | ||
### Fixed | ||
- Fix types for convertTableNodeToArrayOfRows and convertArrayOfRowsToTableNode, they were using ProsemirrorModel[] instead of Array<ProsemirrorModel[] | null> | ||
## 0.5.0 (2018-06-04) | ||
@@ -2,0 +13,0 @@ |
{ | ||
"name": "prosemirror-utils", | ||
"version": "0.9.5", | ||
"version": "0.9.6", | ||
"description": "Utils library for ProseMirror", | ||
@@ -51,3 +51,3 @@ "main": "dist/index.js", | ||
"prosemirror-state": "^1.0.1", | ||
"prosemirror-tables": "^0.7.9" | ||
"prosemirror-tables": "^0.9.1" | ||
}, | ||
@@ -68,3 +68,3 @@ "devDependencies": { | ||
"prosemirror-state": "^1.0.1", | ||
"prosemirror-tables": "^0.7.9", | ||
"prosemirror-tables": "^0.9.1", | ||
"prosemirror-test-builder": "^1.0.1", | ||
@@ -71,0 +71,0 @@ "prosemirror-view": "^1.1.1", |
@@ -136,5 +136,5 @@ import { Node as ProsemirrorNode, Schema, NodeType, Mark, MarkType, ResolvedPos, Fragment } from 'prosemirror-model'; | ||
export function convertTableNodeToArrayOfRows(tableNode: ProsemirrorNode): ProsemirrorNode[]; | ||
export function convertTableNodeToArrayOfRows(tableNode: ProsemirrorNode): Array<Array<ProsemirrorNode | null>>; | ||
export function convertArrayOfRowsToTableNode(tableNode: ProsemirrorNode, tableArray: ProsemirrorNode[]): ProsemirrorNode; | ||
export function convertArrayOfRowsToTableNode(tableNode: ProsemirrorNode, tableArray: Array<Array<ProsemirrorNode | null>>): ProsemirrorNode; | ||
@@ -141,0 +141,0 @@ export function canInsert($pos: ResolvedPos, node: ProsemirrorNode | Fragment): boolean; |
New author
Supply chain riskA new npm collaborator published a version of the package for the first time. New collaborators are usually benign additions to a project, but do indicate a change to the security surface area of a package.
Found 1 instance in 1 package
239156
1