@tiptap/extension-gapcursor
Advanced tools
Comparing version 2.0.0-alpha.4 to 2.0.0-alpha.5
@@ -6,2 +6,10 @@ # Change Log | ||
# [2.0.0-alpha.5](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-gapcursor@2.0.0-alpha.4...@tiptap/extension-gapcursor@2.0.0-alpha.5) (2020-12-18) | ||
**Note:** Version bump only for package @tiptap/extension-gapcursor | ||
# [2.0.0-alpha.4](https://github.com/ueberdosis/tiptap-next/compare/@tiptap/extension-gapcursor@2.0.0-alpha.3...@tiptap/extension-gapcursor@2.0.0-alpha.4) (2020-12-02) | ||
@@ -8,0 +16,0 @@ |
@@ -1,8 +0,3 @@ | ||
import { Extension } from '@tiptap/core'; | ||
declare const Gapcursor: Extension<unknown, unknown>; | ||
import { Gapcursor } from './gapcursor'; | ||
export * from './gapcursor'; | ||
export default Gapcursor; | ||
declare module '@tiptap/core' { | ||
interface AllExtensions { | ||
Gapcursor: typeof Gapcursor; | ||
} | ||
} |
'use strict'; | ||
Object.defineProperty(exports, '__esModule', { value: true }); | ||
var core = require('@tiptap/core'); | ||
@@ -15,3 +17,4 @@ var prosemirrorGapcursor = require('prosemirror-gapcursor'); | ||
module.exports = Gapcursor; | ||
exports.Gapcursor = Gapcursor; | ||
exports.default = Gapcursor; | ||
//# sourceMappingURL=tiptap-extension-gapcursor.cjs.js.map |
@@ -14,2 +14,3 @@ import { Extension } from '@tiptap/core'; | ||
export default Gapcursor; | ||
export { Gapcursor }; | ||
//# sourceMappingURL=tiptap-extension-gapcursor.esm.js.map |
(function (global, factory) { | ||
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory(require('@tiptap/core'), require('prosemirror-gapcursor')) : | ||
typeof define === 'function' && define.amd ? define(['@tiptap/core', 'prosemirror-gapcursor'], factory) : | ||
(global = typeof globalThis !== 'undefined' ? globalThis : global || self, global['@tiptap/extension-gapcursor'] = factory(global.core, global.prosemirrorGapcursor)); | ||
}(this, (function (core, prosemirrorGapcursor) { 'use strict'; | ||
typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('@tiptap/core'), require('prosemirror-gapcursor')) : | ||
typeof define === 'function' && define.amd ? define(['exports', '@tiptap/core', 'prosemirror-gapcursor'], factory) : | ||
(global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory(global['@tiptap/extension-gapcursor'] = {}, global.core, global.prosemirrorGapcursor)); | ||
}(this, (function (exports, core, prosemirrorGapcursor) { 'use strict'; | ||
@@ -16,5 +16,8 @@ const Gapcursor = core.Extension.create({ | ||
return Gapcursor; | ||
exports.Gapcursor = Gapcursor; | ||
exports.default = Gapcursor; | ||
Object.defineProperty(exports, '__esModule', { value: true }); | ||
}))); | ||
//# sourceMappingURL=tiptap-extension-gapcursor.umd.js.map |
{ | ||
"name": "@tiptap/extension-gapcursor", | ||
"description": "gapcursor extension for tiptap", | ||
"version": "2.0.0-alpha.4", | ||
"version": "2.0.0-alpha.5", | ||
"homepage": "https://tiptap.dev", | ||
@@ -31,3 +31,3 @@ "keywords": [ | ||
}, | ||
"gitHead": "a884cb81de8783d0097741c1ddb97a82ea88ae0e" | ||
"gitHead": "0371cb0a5d803a44d93532aa34419ec7ffffdc24" | ||
} |
@@ -1,20 +0,5 @@ | ||
import { Extension } from '@tiptap/core' | ||
import { gapCursor } from 'prosemirror-gapcursor' | ||
import { Gapcursor } from './gapcursor' | ||
const Gapcursor = Extension.create({ | ||
name: 'gapCursor', | ||
export * from './gapcursor' | ||
addProseMirrorPlugins() { | ||
return [ | ||
gapCursor(), | ||
] | ||
}, | ||
}) | ||
export default Gapcursor | ||
declare module '@tiptap/core' { | ||
interface AllExtensions { | ||
Gapcursor: typeof Gapcursor, | ||
} | ||
} |
Sorry, the diff of this file is too big to display
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
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
878459
16
741