@atlaskit/editor-common 102.18.0 → 102.18.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 +8 -0
- package/dist/cjs/media-single/ExternalImageBadge.js +14 -8
- package/dist/cjs/monitoring/error.js +1 -1
- package/dist/cjs/ui/DropList/index.js +1 -1
- package/dist/es2019/media-single/ExternalImageBadge.js +16 -9
- package/dist/es2019/monitoring/error.js +1 -1
- package/dist/es2019/ui/DropList/index.js +1 -1
- package/dist/esm/media-single/ExternalImageBadge.js +14 -8
- package/dist/esm/monitoring/error.js +1 -1
- package/dist/esm/ui/DropList/index.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# @atlaskit/editor-common
|
|
2
2
|
|
|
3
|
+
## 102.18.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#134366](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/134366)
|
|
8
|
+
[`6dc568b170746`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/6dc568b170746) -
|
|
9
|
+
updated handling of urls on export to exclude marking data urls as external for images
|
|
10
|
+
|
|
3
11
|
## 102.18.0
|
|
4
12
|
|
|
5
13
|
### Minor Changes
|
|
@@ -20,17 +20,23 @@ var baseStyles = (0, _primitives.xcss)({
|
|
|
20
20
|
});
|
|
21
21
|
var NO_EXTERNAL_BADGE_HOSTS = ['atlassian.com'];
|
|
22
22
|
var isUnbadgedUrl = exports.isUnbadgedUrl = function isUnbadgedUrl(url) {
|
|
23
|
-
|
|
23
|
+
if (!url) {
|
|
24
|
+
return false;
|
|
25
|
+
}
|
|
26
|
+
// Check if URL is valid
|
|
24
27
|
try {
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
} catch (e) {
|
|
28
|
-
// If the URL is invalid (or empty), just carry on showing the badge
|
|
28
|
+
new URL(url);
|
|
29
|
+
} catch (_unused) {
|
|
29
30
|
return false;
|
|
30
31
|
}
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
32
|
+
var parsedUrl = new URL(url || '');
|
|
33
|
+
var hostname = parsedUrl.hostname,
|
|
34
|
+
pathname = parsedUrl.pathname,
|
|
35
|
+
protocol = parsedUrl.protocol;
|
|
36
|
+
if (protocol === 'data:') {
|
|
37
|
+
return pathname === null || pathname === void 0 ? void 0 : pathname.startsWith('image/');
|
|
38
|
+
}
|
|
39
|
+
return Boolean(hostname && NO_EXTERNAL_BADGE_HOSTS.some(function (host) {
|
|
34
40
|
return hostname === host || hostname.endsWith(".".concat(host));
|
|
35
41
|
}));
|
|
36
42
|
};
|
|
@@ -17,7 +17,7 @@ function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return
|
|
|
17
17
|
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != _typeof(e) && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
|
|
18
18
|
var SENTRY_DSN = 'https://0b10c8e02fb44d8796c047b102c9bee8@o55978.ingest.sentry.io/4505129224110080';
|
|
19
19
|
var packageName = 'editor-common'; // Sentry doesn't accept '/' in its releases https://docs.sentry.io/platforms/javascript/configuration/releases/
|
|
20
|
-
var packageVersion = "102.18.
|
|
20
|
+
var packageVersion = "102.18.1";
|
|
21
21
|
var sanitiseSentryEvents = function sanitiseSentryEvents(data, _hint) {
|
|
22
22
|
// Remove URL as it has UGC
|
|
23
23
|
// Ignored via go/ees007
|
|
@@ -23,7 +23,7 @@ function _isNativeReflectConstruct() { try { var t = !Boolean.prototype.valueOf.
|
|
|
23
23
|
* @jsx jsx
|
|
24
24
|
*/ // eslint-disable-next-line @atlaskit/ui-styling-standard/use-compiled -- Ignored via go/DSP-18766
|
|
25
25
|
var packageName = "@atlaskit/editor-common";
|
|
26
|
-
var packageVersion = "102.18.
|
|
26
|
+
var packageVersion = "102.18.1";
|
|
27
27
|
var halfFocusRing = 1;
|
|
28
28
|
var dropOffset = '0, 8';
|
|
29
29
|
// Ignored via go/ees005
|
|
@@ -13,18 +13,25 @@ const baseStyles = xcss({
|
|
|
13
13
|
});
|
|
14
14
|
const NO_EXTERNAL_BADGE_HOSTS = ['atlassian.com'];
|
|
15
15
|
export const isUnbadgedUrl = url => {
|
|
16
|
-
|
|
16
|
+
if (!url) {
|
|
17
|
+
return false;
|
|
18
|
+
}
|
|
19
|
+
// Check if URL is valid
|
|
17
20
|
try {
|
|
18
|
-
(
|
|
19
|
-
|
|
20
|
-
} = new URL(url || ''));
|
|
21
|
-
} catch (e) {
|
|
22
|
-
// If the URL is invalid (or empty), just carry on showing the badge
|
|
21
|
+
new URL(url);
|
|
22
|
+
} catch {
|
|
23
23
|
return false;
|
|
24
24
|
}
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
25
|
+
const parsedUrl = new URL(url || '');
|
|
26
|
+
const {
|
|
27
|
+
hostname,
|
|
28
|
+
pathname,
|
|
29
|
+
protocol
|
|
30
|
+
} = parsedUrl;
|
|
31
|
+
if (protocol === 'data:') {
|
|
32
|
+
return pathname === null || pathname === void 0 ? void 0 : pathname.startsWith('image/');
|
|
33
|
+
}
|
|
34
|
+
return Boolean(hostname && NO_EXTERNAL_BADGE_HOSTS.some(host => hostname === host || hostname.endsWith(`.${host}`)));
|
|
28
35
|
};
|
|
29
36
|
export const ExternalImageBadge = ({
|
|
30
37
|
type,
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { isFedRamp } from './environment';
|
|
2
2
|
const SENTRY_DSN = 'https://0b10c8e02fb44d8796c047b102c9bee8@o55978.ingest.sentry.io/4505129224110080';
|
|
3
3
|
const packageName = 'editor-common'; // Sentry doesn't accept '/' in its releases https://docs.sentry.io/platforms/javascript/configuration/releases/
|
|
4
|
-
const packageVersion = "102.18.
|
|
4
|
+
const packageVersion = "102.18.1";
|
|
5
5
|
const sanitiseSentryEvents = (data, _hint) => {
|
|
6
6
|
// Remove URL as it has UGC
|
|
7
7
|
// Ignored via go/ees007
|
|
@@ -13,7 +13,7 @@ import withAnalyticsContext from '@atlaskit/analytics-next/withAnalyticsContext'
|
|
|
13
13
|
import withAnalyticsEvents from '@atlaskit/analytics-next/withAnalyticsEvents';
|
|
14
14
|
import Layer from '../Layer';
|
|
15
15
|
const packageName = "@atlaskit/editor-common";
|
|
16
|
-
const packageVersion = "102.18.
|
|
16
|
+
const packageVersion = "102.18.1";
|
|
17
17
|
const halfFocusRing = 1;
|
|
18
18
|
const dropOffset = '0, 8';
|
|
19
19
|
// Ignored via go/ees005
|
|
@@ -13,17 +13,23 @@ var baseStyles = xcss({
|
|
|
13
13
|
});
|
|
14
14
|
var NO_EXTERNAL_BADGE_HOSTS = ['atlassian.com'];
|
|
15
15
|
export var isUnbadgedUrl = function isUnbadgedUrl(url) {
|
|
16
|
-
|
|
16
|
+
if (!url) {
|
|
17
|
+
return false;
|
|
18
|
+
}
|
|
19
|
+
// Check if URL is valid
|
|
17
20
|
try {
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
} catch (e) {
|
|
21
|
-
// If the URL is invalid (or empty), just carry on showing the badge
|
|
21
|
+
new URL(url);
|
|
22
|
+
} catch (_unused) {
|
|
22
23
|
return false;
|
|
23
24
|
}
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
25
|
+
var parsedUrl = new URL(url || '');
|
|
26
|
+
var hostname = parsedUrl.hostname,
|
|
27
|
+
pathname = parsedUrl.pathname,
|
|
28
|
+
protocol = parsedUrl.protocol;
|
|
29
|
+
if (protocol === 'data:') {
|
|
30
|
+
return pathname === null || pathname === void 0 ? void 0 : pathname.startsWith('image/');
|
|
31
|
+
}
|
|
32
|
+
return Boolean(hostname && NO_EXTERNAL_BADGE_HOSTS.some(function (host) {
|
|
27
33
|
return hostname === host || hostname.endsWith(".".concat(host));
|
|
28
34
|
}));
|
|
29
35
|
};
|
|
@@ -7,7 +7,7 @@ function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t =
|
|
|
7
7
|
import { isFedRamp } from './environment';
|
|
8
8
|
var SENTRY_DSN = 'https://0b10c8e02fb44d8796c047b102c9bee8@o55978.ingest.sentry.io/4505129224110080';
|
|
9
9
|
var packageName = 'editor-common'; // Sentry doesn't accept '/' in its releases https://docs.sentry.io/platforms/javascript/configuration/releases/
|
|
10
|
-
var packageVersion = "102.18.
|
|
10
|
+
var packageVersion = "102.18.1";
|
|
11
11
|
var sanitiseSentryEvents = function sanitiseSentryEvents(data, _hint) {
|
|
12
12
|
// Remove URL as it has UGC
|
|
13
13
|
// Ignored via go/ees007
|
|
@@ -20,7 +20,7 @@ import withAnalyticsContext from '@atlaskit/analytics-next/withAnalyticsContext'
|
|
|
20
20
|
import withAnalyticsEvents from '@atlaskit/analytics-next/withAnalyticsEvents';
|
|
21
21
|
import Layer from '../Layer';
|
|
22
22
|
var packageName = "@atlaskit/editor-common";
|
|
23
|
-
var packageVersion = "102.18.
|
|
23
|
+
var packageVersion = "102.18.1";
|
|
24
24
|
var halfFocusRing = 1;
|
|
25
25
|
var dropOffset = '0, 8';
|
|
26
26
|
// Ignored via go/ees005
|
package/package.json
CHANGED