Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@remirror/core-helpers

Package Overview
Dependencies
Maintainers
1
Versions
264
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@remirror/core-helpers - npm Package Compare versions

Comparing version 1.0.0-next.1 to 1.0.0-next.4

LICENSE

11

CHANGELOG.md
# @remirror/core-helpers
## 1.0.0-next.4
> 2020-07-16
### Patch Changes
- 5d5970ae: Update repository and website field to point to HEAD rather than a specific branch.
- Updated dependencies [5d5970ae]
- @remirror/core-constants@1.0.0-next.4
- @remirror/core-types@1.0.0-next.4
## 1.0.0-next.1

@@ -4,0 +15,0 @@

4

dist/core-helpers.cjs.dev.js

@@ -1034,3 +1034,3 @@ 'use strict';

[coreConstants.ErrorConstant.REACT_PROVIDER_CONTEXT]: '`useRemirror` was called outside of the `remirror` context. It can only be used within an active remirror context created by the `<RemirrorProvider />`.',
[coreConstants.ErrorConstant.REACT_GET_ROOT_PROPS]: '`getRootProps` has been called MULTIPLE times. It should only be called ONCE during render.',
[coreConstants.ErrorConstant.REACT_GET_ROOT_PROPS]: '`getRootProps` has been attached to the DOM more than once. It should only be attached to the dom once per editor.',
[coreConstants.ErrorConstant.REACT_EDITOR_VIEW]: 'A problem occurred adding the editor view to the dom.',

@@ -1058,3 +1058,3 @@ [coreConstants.ErrorConstant.REACT_CONTROLLED]: 'There is a problem with your controlled editor setup.',

var customMessage = extraMessage ? "".concat(extraMessage, "\n\n") : '';
return "".concat(prefix).concat(customMessage, "For more information visit ").concat(ERROR_INFORMATION_URL, "#").concat(code);
return "".concat(prefix).concat(customMessage, "For more information visit ").concat(ERROR_INFORMATION_URL, "#").concat(code.toLowerCase());
}

@@ -1061,0 +1061,0 @@ /**

@@ -432,3 +432,3 @@ "use strict";

var message = errorMessageMap[code], prefix = message ? "".concat(message, "\n\n") : "", customMessage = extraMessage ? "".concat(extraMessage, "\n\n") : "";
return "".concat(prefix).concat(customMessage, "For more information visit ").concat(ERROR_INFORMATION_URL, "#").concat(code);
return "".concat(prefix).concat(customMessage, "For more information visit ").concat(ERROR_INFORMATION_URL, "#").concat(code.toLowerCase());
}

@@ -435,0 +435,0 @@

@@ -1029,3 +1029,3 @@ import { BaseError } from 'make-error';

[ErrorConstant.REACT_PROVIDER_CONTEXT]: '`useRemirror` was called outside of the `remirror` context. It can only be used within an active remirror context created by the `<RemirrorProvider />`.',
[ErrorConstant.REACT_GET_ROOT_PROPS]: '`getRootProps` has been called MULTIPLE times. It should only be called ONCE during render.',
[ErrorConstant.REACT_GET_ROOT_PROPS]: '`getRootProps` has been attached to the DOM more than once. It should only be attached to the dom once per editor.',
[ErrorConstant.REACT_EDITOR_VIEW]: 'A problem occurred adding the editor view to the dom.',

@@ -1053,3 +1053,3 @@ [ErrorConstant.REACT_CONTROLLED]: 'There is a problem with your controlled editor setup.',

var customMessage = extraMessage ? "".concat(extraMessage, "\n\n") : '';
return "".concat(prefix).concat(customMessage, "For more information visit ").concat(ERROR_INFORMATION_URL, "#").concat(code);
return "".concat(prefix).concat(customMessage, "For more information visit ").concat(ERROR_INFORMATION_URL, "#").concat(code.toLowerCase());
}

@@ -1056,0 +1056,0 @@ /**

{
"name": "@remirror/core-helpers",
"version": "1.0.0-next.1",
"description": "Provide helper functions for the remirror codebase, kinda like a tiny lodash",
"homepage": "https://github.com/remirror/remirror/tree/next/packages/@remirror/core-helpers",
"repository": "https://github.com/remirror/remirror/tree/master/packages/@remirror/core-helpers",
"license": "MIT",
"contributors": [
"Ifiok Jr. <ifiokotung@gmail.com>"
],
"sideEffects": false,
"main": "dist/core-helpers.cjs.js",
"module": "dist/core-helpers.esm.js",
"types": "dist/core-helpers.cjs.d.ts",
"files": [
"dist"
],
"dependencies": {
"@babel/runtime": "^7.10.4",
"@remirror/core-constants": "^1.0.0-next.1",
"@remirror/core-types": "^1.0.0-next.1",
"@types/object.omit": "^3.0.0",
"@types/object.pick": "^1.3.0",
"@types/throttle-debounce": "^2.1.0",
"case-anything": "^1.1.1",
"deepmerge": "^4.2.2",
"fast-deep-equal": "^3.1.3",
"make-error": "^1.3.6",
"object.omit": "^3.0.0",
"object.pick": "^1.3.0",
"throttle-debounce": "^2.2.1",
"type-fest": "^0.16.0"
},
"publishConfig": {
"access": "public"
},
"cjs": "lib/dist/core-helpers.cjs.js"
"name": "@remirror/core-helpers",
"version": "1.0.0-next.4",
"description": "Provide helper functions for the remirror codebase, kinda like a tiny lodash",
"homepage": "https://github.com/remirror/remirror/tree/HEAD/packages/@remirror/core-helpers",
"repository": "https://github.com/remirror/remirror/tree/HEAD/packages/@remirror/core-helpers",
"license": "MIT",
"contributors": [
"Ifiok Jr. <ifiokotung@gmail.com>"
],
"sideEffects": false,
"main": "dist/core-helpers.cjs.js",
"module": "dist/core-helpers.esm.js",
"types": "dist/core-helpers.cjs.d.ts",
"files": [
"dist"
],
"dependencies": {
"@babel/runtime": "^7.10.4",
"@remirror/core-constants": "^1.0.0-next.4",
"@remirror/core-types": "^1.0.0-next.4",
"@types/object.omit": "^3.0.0",
"@types/object.pick": "^1.3.0",
"@types/throttle-debounce": "^2.1.0",
"case-anything": "^1.1.1",
"deepmerge": "^4.2.2",
"fast-deep-equal": "^3.1.3",
"make-error": "^1.3.6",
"object.omit": "^3.0.0",
"object.pick": "^1.3.0",
"throttle-debounce": "^2.2.1",
"type-fest": "^0.16.0"
},
"publishConfig": {
"access": "public"
},
"cjs": "lib/dist/core-helpers.cjs.js"
}
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