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

@remirror/extension-mention

Package Overview
Dependencies
Maintainers
1
Versions
333
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@remirror/extension-mention - npm Package Compare versions

Comparing version

to
1.0.0-next.0

dist/extension-mention.cjs.d.ts

36

CHANGELOG.md
# @remirror/extension-mention
## 1.0.0-next.0
> 2020-07-05
### Major Changes
- The whole API for remirror has completely changed. These pre-release versions are a breaking
change across all packages. The best way to know what's changed is to read the documentaion on the
new documentation site `https://remirror.io`.
- 28bd8bea: This is a breaking change to the structure of published npm packages.
- Move build directory from `lib` to `dist`
- Remove option for multiple entry points. It is no longer possible to import module from
'@remirror/core/lib/custom'
- Only use one entry file.
- Remove declaration source mapping for declaration files
- Remove the src directory from being published.
- 7b817ac2: Rename all types and interfaces postfixed with `Params` to use the postfix `Parameter`.
If your code was importing any matching interface you will need to update the name.
### Patch Changes
- Updated dependencies [undefined]
- Updated dependencies [28bd8bea]
- Updated dependencies [7b817ac2]
- Updated dependencies [undefined]
- Updated dependencies [09e990cb]
- @remirror/core@1.0.0-next.0
- @remirror/pm@1.0.0-next.0
## 0.11.1

@@ -7,4 +38,5 @@

- bd606ca0: Fixes #263 by adding `this.getExtraAttrs(node)` to the `MentionExtension.schema.parseDOM`
attribute. Now custom attributes passed into the `extraAttrs` options will be parsed from the DOM.
- bd606ca0: Fixes #263 by adding `this.getExtraAttrs(node)` to the
`MentionExtension.schema.parseDOM` attribute. Now custom attributes passed into the `extraAttrs`
options will be parsed from the DOM.

@@ -11,0 +43,0 @@ ## 0.11.0

41

package.json
{
"name": "@remirror/extension-mention",
"version": "0.11.1",
"version": "1.0.0-next.0",
"description": "Mention extension for the remirror wysiwyg editor",
"homepage": "https://github.com/remirror/remirror/tree/master/@remirror/extension-mention",
"repository": "https://github.com/remirror/remirror/tree/master/@remirror/extension-mention",
"homepage": "https://github.com/remirror/remirror/tree/next/packages/@remirror/extension-mention",
"repository": "https://github.com/remirror/remirror/tree/master/packages/@remirror/extension-mention",
"license": "MIT",
"author": "Ifiok Jr. <ifiokotung@gmail.com>",
"contributors": [
"Ifiok Jr. <ifiokotung@gmail.com>"
],
"sideEffects": false,
"main": "dist/extension-mention.cjs.js",
"module": "dist/extension-mention.esm.js",
"types": "dist/extension-mention.cjs.d.ts",
"files": [
"lib",
"src"
"dist"
],
"sideEffects": false,
"main": "lib/index.js",
"module": "lib/dist/extension-mention.esm.js",
"types": "lib/index.d.ts",
"dependencies": {
"@babel/runtime": "^7",
"@remirror/core": "^0.11.0",
"@types/prosemirror-keymap": "^1.0.1",
"@types/prosemirror-state": "^1.2.3",
"@types/prosemirror-view": "^1.11.2",
"prosemirror-keymap": "^1.0.2",
"prosemirror-state": "^1.3.2",
"prosemirror-suggest": "^0.7.6",
"prosemirror-view": "^1.14.4"
"@babel/runtime": "^7.10.4"
},
"devDependencies": {
"@remirror/core": "^1.0.0-next.0",
"@remirror/pm": "^1.0.0-next.0"
},
"peerDependencies": {
"@emotion/core": "^10"
"@remirror/core": "^1.0.0-next.0",
"@remirror/pm": "^1.0.0-next.0"
},

@@ -34,6 +32,5 @@ "publishConfig": {

},
"cjs": "lib/dist/extension-mention.cjs.js",
"meta": {
"sizeLimit": "90 KB"
"sizeLimit": "5 KB"
}
}

@@ -6,3 +6,3 @@ # @remirror/extension-mention

Add mention and suggestions support to remirror.
Add mention and suggesters support to remirror.

@@ -12,3 +12,5 @@ ## Installation

```bash
yarn add @remirror/extension-mention
yarn add @remirror/extension-mention@next @remirror/pm@next # yarn
pnpm add @remirror/extension-mention@next @remirror/pm@next # pnpm
npm install @remirror/extension-mention@next @remirror/pm@next # npm
```