@remirror/core-constants
Advanced tools
Comparing version 1.0.0-next.33 to 1.0.0-next.34
# @remirror/core-constants | ||
## 1.0.0-next.34 | ||
> 2020-09-10 | ||
### Minor Changes | ||
- [`27b358e4`](https://github.com/remirror/remirror/commit/27b358e4cb877a1e8df61c9d5326f366e66f30dc) [#668](https://github.com/remirror/remirror/pull/668) Thanks [@ifiokjr](https://github.com/ifiokjr)! - Add `MarkSupportsExit` tag to `ExtensionTag` constant export. | ||
Add `KeymapExtension` option `exitMarksOnArrowPress` which allows the user to exit marks with the `MarkSupportExit` tag from the beginning or the end of the document. | ||
Store tags as `markTags`, `nodeTags`, `plainTags` and deprecate the helper methods which were previously doing this. | ||
Add `extraTags` option to the extension and `RemirrorManager` now extra can be added as part of the configuration. | ||
## 1.0.0-next.33 | ||
@@ -4,0 +18,0 @@ |
@@ -207,3 +207,9 @@ 'use strict'; | ||
*/ | ||
ExcludeInputRules: 'excludeFromInputRules' | ||
ExcludeInputRules: 'excludeFromInputRules', | ||
/** | ||
* A mark that can be exited when at the end and beginning of the document | ||
* with an arrow key. | ||
*/ | ||
MarkSupportsExit: 'markSupportsExits' | ||
}; | ||
@@ -210,0 +216,0 @@ /** |
@@ -203,3 +203,9 @@ /** | ||
*/ | ||
ExcludeInputRules: 'excludeFromInputRules' | ||
ExcludeInputRules: 'excludeFromInputRules', | ||
/** | ||
* A mark that can be exited when at the end and beginning of the document | ||
* with an arrow key. | ||
*/ | ||
MarkSupportsExit: 'markSupportsExits' | ||
}; | ||
@@ -206,0 +212,0 @@ /** |
@@ -207,3 +207,9 @@ 'use strict'; | ||
*/ | ||
ExcludeInputRules: 'excludeFromInputRules' | ||
ExcludeInputRules: 'excludeFromInputRules', | ||
/** | ||
* A mark that can be exited when at the end and beginning of the document | ||
* with an arrow key. | ||
*/ | ||
MarkSupportsExit: 'markSupportsExits' | ||
}; | ||
@@ -210,0 +216,0 @@ /** |
@@ -37,3 +37,4 @@ "use strict"; | ||
BlockNode: "block", | ||
ExcludeInputRules: "excludeFromInputRules" | ||
ExcludeInputRules: "excludeFromInputRules", | ||
MarkSupportsExit: "markSupportsExits" | ||
}, ExtensionTag = BaseExtensionTag; | ||
@@ -40,0 +41,0 @@ |
@@ -203,3 +203,9 @@ /** | ||
*/ | ||
ExcludeInputRules: 'excludeFromInputRules' | ||
ExcludeInputRules: 'excludeFromInputRules', | ||
/** | ||
* A mark that can be exited when at the end and beginning of the document | ||
* with an arrow key. | ||
*/ | ||
MarkSupportsExit: 'markSupportsExits' | ||
}; | ||
@@ -206,0 +212,0 @@ /** |
@@ -179,2 +179,7 @@ /** | ||
readonly ExcludeInputRules: "excludeFromInputRules"; | ||
/** | ||
* A mark that can be exited when at the end and beginning of the document | ||
* with an arrow key. | ||
*/ | ||
readonly MarkSupportsExit: "markSupportsExits"; | ||
}; | ||
@@ -181,0 +186,0 @@ /** |
{ | ||
"name": "@remirror/core-constants", | ||
"version": "1.0.0-next.33", | ||
"version": "1.0.0-next.34", | ||
"description": "The core constants used throughout the remirror codebase", | ||
@@ -5,0 +5,0 @@ "homepage": "https://github.com/remirror/remirror/tree/HEAD/packages/@remirror/core-constants", |
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
74027
1967