@atlaskit/editor-common 63.0.0 → 63.0.1
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
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# @atlaskit/editor-common
|
|
2
2
|
|
|
3
|
+
## 63.0.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`b921ec55066`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b921ec55066) - Fix chrome version parsing logic to accept 3 digits instead of just 2
|
|
8
|
+
|
|
3
9
|
## 63.0.0
|
|
4
10
|
|
|
5
11
|
### Major Changes
|
|
@@ -28,7 +28,7 @@ if (typeof navigator !== 'undefined') {
|
|
|
28
28
|
result.ie_version = ieUpTo10 ? document.documentMode || 6 : ie11up ? +ie11up[1] : ieEdge ? +ieEdge[1] : null;
|
|
29
29
|
result.gecko = !ie && /gecko\/\d/i.test(navigator.userAgent);
|
|
30
30
|
result.chrome = !ie && /Chrome\//.test(navigator.userAgent);
|
|
31
|
-
result.chrome_version = parseInt((navigator.userAgent.match(/Chrome\/(\d
|
|
31
|
+
result.chrome_version = parseInt((navigator.userAgent.match(/Chrome\/(\d+)/) || [])[1], 10);
|
|
32
32
|
result.android = /Android \d/.test(navigator.userAgent);
|
|
33
33
|
result.ios = !ie && /AppleWebKit/.test(navigator.userAgent) && /Mobile\/\w+/.test(navigator.userAgent);
|
|
34
34
|
result.webkit = !ie && !!document.documentElement && 'WebkitAppearance' in document.documentElement.style;
|
package/dist/cjs/version.json
CHANGED
|
@@ -22,7 +22,7 @@ if (typeof navigator !== 'undefined') {
|
|
|
22
22
|
result.ie_version = ieUpTo10 ? document.documentMode || 6 : ie11up ? +ie11up[1] : ieEdge ? +ieEdge[1] : null;
|
|
23
23
|
result.gecko = !ie && /gecko\/\d/i.test(navigator.userAgent);
|
|
24
24
|
result.chrome = !ie && /Chrome\//.test(navigator.userAgent);
|
|
25
|
-
result.chrome_version = parseInt((navigator.userAgent.match(/Chrome\/(\d
|
|
25
|
+
result.chrome_version = parseInt((navigator.userAgent.match(/Chrome\/(\d+)/) || [])[1], 10);
|
|
26
26
|
result.android = /Android \d/.test(navigator.userAgent);
|
|
27
27
|
result.ios = !ie && /AppleWebKit/.test(navigator.userAgent) && /Mobile\/\w+/.test(navigator.userAgent);
|
|
28
28
|
result.webkit = !ie && !!document.documentElement && 'WebkitAppearance' in document.documentElement.style;
|
package/dist/es2019/version.json
CHANGED
|
@@ -22,7 +22,7 @@ if (typeof navigator !== 'undefined') {
|
|
|
22
22
|
result.ie_version = ieUpTo10 ? document.documentMode || 6 : ie11up ? +ie11up[1] : ieEdge ? +ieEdge[1] : null;
|
|
23
23
|
result.gecko = !ie && /gecko\/\d/i.test(navigator.userAgent);
|
|
24
24
|
result.chrome = !ie && /Chrome\//.test(navigator.userAgent);
|
|
25
|
-
result.chrome_version = parseInt((navigator.userAgent.match(/Chrome\/(\d
|
|
25
|
+
result.chrome_version = parseInt((navigator.userAgent.match(/Chrome\/(\d+)/) || [])[1], 10);
|
|
26
26
|
result.android = /Android \d/.test(navigator.userAgent);
|
|
27
27
|
result.ios = !ie && /AppleWebKit/.test(navigator.userAgent) && /Mobile\/\w+/.test(navigator.userAgent);
|
|
28
28
|
result.webkit = !ie && !!document.documentElement && 'WebkitAppearance' in document.documentElement.style;
|
package/dist/esm/version.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-common",
|
|
3
|
-
"version": "63.0.
|
|
3
|
+
"version": "63.0.1",
|
|
4
4
|
"description": "A package that contains common classes and components for editor and renderer",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
"@atlaskit/activity-provider": "^2.3.0",
|
|
45
45
|
"@atlaskit/adf-schema": "^21.0.0",
|
|
46
46
|
"@atlaskit/adf-utils": "^15.0.0",
|
|
47
|
-
"@atlaskit/analytics-namespaced-context": "^6.
|
|
47
|
+
"@atlaskit/analytics-namespaced-context": "^6.4.0",
|
|
48
48
|
"@atlaskit/analytics-next": "^8.2.0",
|
|
49
49
|
"@atlaskit/code": "^14.3.0",
|
|
50
50
|
"@atlaskit/editor-json-transformer": "^8.7.0",
|
|
@@ -62,7 +62,7 @@
|
|
|
62
62
|
"@atlaskit/theme": "^12.1.0",
|
|
63
63
|
"@atlaskit/tooltip": "^17.5.0",
|
|
64
64
|
"@atlaskit/ufo": "^0.0.6",
|
|
65
|
-
"@atlaskit/user-picker": "^8.
|
|
65
|
+
"@atlaskit/user-picker": "^8.4.0",
|
|
66
66
|
"@atlaskit/width-detector": "^3.0.0",
|
|
67
67
|
"@babel/runtime": "^7.0.0",
|
|
68
68
|
"@types/prosemirror-model": "^1.11.0",
|