@atlaskit/editor-plugin-selection-marker 15.0.0 → 15.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md
CHANGED
|
@@ -16,7 +16,6 @@ var _view = require("@atlaskit/editor-prosemirror/view");
|
|
|
16
16
|
// Ignored via go/ees005
|
|
17
17
|
// eslint-disable-next-line require-unicode-regexp
|
|
18
18
|
var MS_PREFIX_REGEX = /^ms/;
|
|
19
|
-
// @ts-ignore - TS1501 Older versions of TypeScript don't play nice with the u flag. With the current AFM TypeScript version, this *should* be fine, but the pipeline type check fails, hence why a ts-ignore is needed (over a ts-expect-error)
|
|
20
19
|
var NON_WHITESPACE_REGEX = /(?:[\0-\x08\x0E-\x1F!-\x9F\xA1-\u167F\u1681-\u1FFF\u200B-\u2027\u202A-\u202E\u2030-\u205E\u2060-\u2FFF\u3001-\uD7FF\uE000-\uFEFE\uFF00-\uFFFF]|[\uD800-\uDBFF][\uDC00-\uDFFF]|[\uD800-\uDBFF](?![\uDC00-\uDFFF])|(?:[^\uD800-\uDBFF]|^)[\uDC00-\uDFFF])/;
|
|
21
20
|
var selectionMarkerHighlightStyles = {
|
|
22
21
|
content: "''",
|
|
@@ -8,7 +8,6 @@ import { Decoration } from '@atlaskit/editor-prosemirror/view';
|
|
|
8
8
|
// Ignored via go/ees005
|
|
9
9
|
// eslint-disable-next-line require-unicode-regexp
|
|
10
10
|
const MS_PREFIX_REGEX = /^ms/;
|
|
11
|
-
// @ts-ignore - TS1501 Older versions of TypeScript don't play nice with the u flag. With the current AFM TypeScript version, this *should* be fine, but the pipeline type check fails, hence why a ts-ignore is needed (over a ts-expect-error)
|
|
12
11
|
const NON_WHITESPACE_REGEX = /\S/u;
|
|
13
12
|
const selectionMarkerHighlightStyles = {
|
|
14
13
|
content: "''",
|
|
@@ -9,7 +9,6 @@ import { Decoration } from '@atlaskit/editor-prosemirror/view';
|
|
|
9
9
|
// Ignored via go/ees005
|
|
10
10
|
// eslint-disable-next-line require-unicode-regexp
|
|
11
11
|
var MS_PREFIX_REGEX = /^ms/;
|
|
12
|
-
// @ts-ignore - TS1501 Older versions of TypeScript don't play nice with the u flag. With the current AFM TypeScript version, this *should* be fine, but the pipeline type check fails, hence why a ts-ignore is needed (over a ts-expect-error)
|
|
13
12
|
var NON_WHITESPACE_REGEX = /(?:[\0-\x08\x0E-\x1F!-\x9F\xA1-\u167F\u1681-\u1FFF\u200B-\u2027\u202A-\u202E\u2030-\u205E\u2060-\u2FFF\u3001-\uD7FF\uE000-\uFEFE\uFF00-\uFFFF]|[\uD800-\uDBFF][\uDC00-\uDFFF]|[\uD800-\uDBFF](?![\uDC00-\uDFFF])|(?:[^\uD800-\uDBFF]|^)[\uDC00-\uDFFF])/;
|
|
14
13
|
var selectionMarkerHighlightStyles = {
|
|
15
14
|
content: "''",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-plugin-selection-marker",
|
|
3
|
-
"version": "15.0.
|
|
3
|
+
"version": "15.0.2",
|
|
4
4
|
"description": "Selection marker plugin for @atlaskit/editor-core.",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -24,20 +24,20 @@
|
|
|
24
24
|
"@atlaskit/editor-plugin-editor-disabled": "^15.0.0",
|
|
25
25
|
"@atlaskit/editor-plugin-focus": "^14.0.0",
|
|
26
26
|
"@atlaskit/editor-plugin-toolbar": "^12.0.0",
|
|
27
|
-
"@atlaskit/editor-plugin-type-ahead": "^16.
|
|
27
|
+
"@atlaskit/editor-plugin-type-ahead": "^16.1.0",
|
|
28
28
|
"@atlaskit/editor-plugin-user-intent": "^13.0.0",
|
|
29
29
|
"@atlaskit/editor-prosemirror": "^8.0.0",
|
|
30
30
|
"@atlaskit/link": "^5.0.0",
|
|
31
31
|
"@atlaskit/platform-feature-flags": "^2.1.0",
|
|
32
32
|
"@atlaskit/theme": "^28.0.0",
|
|
33
|
-
"@atlaskit/tmp-editor-statsig": "^
|
|
33
|
+
"@atlaskit/tmp-editor-statsig": "^149.0.0",
|
|
34
34
|
"@atlaskit/tokens": "^16.7.0",
|
|
35
35
|
"@babel/runtime": "^7.0.0",
|
|
36
36
|
"@emotion/react": "^11.7.1",
|
|
37
37
|
"lodash": "^4.17.21"
|
|
38
38
|
},
|
|
39
39
|
"peerDependencies": {
|
|
40
|
-
"@atlaskit/editor-common": "^119.
|
|
40
|
+
"@atlaskit/editor-common": "^119.7.0",
|
|
41
41
|
"react": "^18.2.0 || ^19.2.0",
|
|
42
42
|
"react-dom": "^18.2.0 || ^19.2.0"
|
|
43
43
|
},
|