New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@tiptap/extension-strike

Package Overview
Dependencies
Maintainers
2
Versions
182
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@tiptap/extension-strike - npm Package Compare versions

Comparing version 2.0.0-beta.15 to 2.0.0-beta.16

8

CHANGELOG.md

@@ -6,2 +6,10 @@ # Change Log

# [2.0.0-beta.16](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-strike@2.0.0-beta.15...@tiptap/extension-strike@2.0.0-beta.16) (2021-06-07)
**Note:** Version bump only for package @tiptap/extension-strike
# [2.0.0-beta.15](https://github.com/ueberdosis/tiptap/compare/@tiptap/extension-strike@2.0.0-beta.14...@tiptap/extension-strike@2.0.0-beta.15) (2021-05-27)

@@ -8,0 +16,0 @@

10

dist/packages/extension-strike/src/strike.d.ts

@@ -1,2 +0,2 @@

import { Command, Mark } from '@tiptap/core';
import { Mark } from '@tiptap/core';
export interface StrikeOptions {

@@ -6,3 +6,3 @@ HTMLAttributes: Record<string, any>;

declare module '@tiptap/core' {
interface Commands {
interface Commands<ReturnType> {
strike: {

@@ -12,11 +12,11 @@ /**

*/
setStrike: () => Command;
setStrike: () => ReturnType;
/**
* Toggle a strike mark
*/
toggleStrike: () => Command;
toggleStrike: () => ReturnType;
/**
* Unset a strike mark
*/
unsetStrike: () => Command;
unsetStrike: () => ReturnType;
};

@@ -23,0 +23,0 @@ }

{
"name": "@tiptap/extension-strike",
"description": "strike extension for tiptap",
"version": "2.0.0-beta.15",
"version": "2.0.0-beta.16",
"homepage": "https://tiptap.dev",

@@ -26,3 +26,3 @@ "keywords": [

},
"gitHead": "5b9395ee742838b542dad5182e014a8146b40116"
"gitHead": "5c8e46b0d48aa09ba0d2e8337ae6bbb2d7503e82"
}
import {
Command,
Mark,

@@ -14,3 +13,3 @@ markInputRule,

declare module '@tiptap/core' {
interface Commands {
interface Commands<ReturnType> {
strike: {

@@ -20,11 +19,11 @@ /**

*/
setStrike: () => Command,
setStrike: () => ReturnType,
/**
* Toggle a strike mark
*/
toggleStrike: () => Command,
toggleStrike: () => ReturnType,
/**
* Unset a strike mark
*/
unsetStrike: () => Command,
unsetStrike: () => ReturnType,
}

@@ -31,0 +30,0 @@ }

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