Skip to content

Commit

Permalink
Align min rich text dep versions to lock file
Browse files Browse the repository at this point in the history
  • Loading branch information
rajsite committed Dec 4, 2024
1 parent 9840253 commit adfba04
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 33 deletions.
32 changes: 16 additions & 16 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

32 changes: 16 additions & 16 deletions packages/nimble-components/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -66,20 +66,20 @@
"@ni/nimble-tokens": "^8.5.0",
"@tanstack/table-core": "^8.19.3",
"@tanstack/virtual-core": "^3.10.6",
"@tiptap/core": "^2.2.2",
"@tiptap/extension-bold": "^2.2.2",
"@tiptap/extension-bullet-list": "^2.2.2",
"@tiptap/extension-document": "^2.2.2",
"@tiptap/extension-hard-break": "^2.2.2",
"@tiptap/extension-history": "^2.2.2",
"@tiptap/extension-italic": "^2.2.2",
"@tiptap/extension-link": "^2.2.2",
"@tiptap/extension-list-item": "^2.2.2",
"@tiptap/extension-mention": "^2.2.2",
"@tiptap/extension-ordered-list": "^2.2.2",
"@tiptap/extension-paragraph": "^2.2.2",
"@tiptap/extension-placeholder": "^2.2.2",
"@tiptap/extension-text": "^2.2.2",
"@tiptap/core": "^2.10.3",
"@tiptap/extension-bold": "^2.10.3",
"@tiptap/extension-bullet-list": "^2.10.3",
"@tiptap/extension-document": "^2.10.3",
"@tiptap/extension-hard-break": "^2.10.3",
"@tiptap/extension-history": "^2.10.3",
"@tiptap/extension-italic": "^2.10.3",
"@tiptap/extension-link": "^2.10.3",
"@tiptap/extension-list-item": "^2.10.3",
"@tiptap/extension-mention": "^2.10.3",
"@tiptap/extension-ordered-list": "^2.10.3",
"@tiptap/extension-paragraph": "^2.10.3",
"@tiptap/extension-placeholder": "^2.10.3",
"@tiptap/extension-text": "^2.10.3",
"@types/d3-array": "^3.0.4",
"@types/d3-random": "^3.0.1",
"@types/d3-scale": "^4.0.2",
Expand All @@ -92,8 +92,8 @@
"d3-scale": "^4.0.2",
"d3-selection": "^3.0.0",
"d3-zoom": "^3.0.0",
"prosemirror-markdown": "^1.11.2",
"prosemirror-model": "^1.19.2",
"prosemirror-markdown": "^1.13.1",
"prosemirror-model": "^1.24.0",
"prosemirror-state": "^1.4.3",
"tslib": "^2.2.0"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ function createCustomLinkExtension(): Mark {
// linkOnPaste can be enabled when hyperlink support added
// See: https://github.com/ni/nimble/issues/1527
linkOnPaste: false,
validate: href => validAbsoluteLinkRegex.test(href)
shouldAutoLink: href => validAbsoluteLinkRegex.test(href)
});
}

Expand Down

0 comments on commit adfba04

Please sign in to comment.