@atlaskit/editor-common 98.2.3 → 98.2.4
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 +6 -0
- package/dist/cjs/monitoring/error.js +1 -1
- package/dist/cjs/type-ahead/messages.js +10 -0
- package/dist/cjs/ui/DropList/index.js +1 -1
- package/dist/es2019/monitoring/error.js +1 -1
- package/dist/es2019/type-ahead/messages.js +10 -0
- package/dist/es2019/ui/DropList/index.js +1 -1
- package/dist/esm/monitoring/error.js +1 -1
- package/dist/esm/type-ahead/messages.js +10 -0
- package/dist/esm/ui/DropList/index.js +1 -1
- package/dist/types/type-ahead/messages.d.ts +10 -0
- package/dist/types-ts4.5/type-ahead/messages.d.ts +10 -0
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -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 = "98.2.
|
|
20
|
+
var packageVersion = "98.2.4";
|
|
21
21
|
var sanitiseSentryEvents = function sanitiseSentryEvents(data, _hint) {
|
|
22
22
|
// Remove URL as it has UGC
|
|
23
23
|
// TODO: Sanitise the URL instead of just removing it
|
|
@@ -75,5 +75,15 @@ var typeAheadListMessages = exports.typeAheadListMessages = (0, _reactIntlNext.d
|
|
|
75
75
|
id: 'fabric.editor.shortcut',
|
|
76
76
|
defaultMessage: 'Text shortcut',
|
|
77
77
|
description: 'Text shortcut'
|
|
78
|
+
},
|
|
79
|
+
offlineErrorFallbackHeading: {
|
|
80
|
+
id: 'fabric.editor.offlineErrorFallbackHeading',
|
|
81
|
+
defaultMessage: 'Something went wrong!',
|
|
82
|
+
description: 'heading for offline error fallback when mentions are not available'
|
|
83
|
+
},
|
|
84
|
+
offlineErrorFallbackDesc: {
|
|
85
|
+
id: 'fabric.editor.offlineErrorFallbackDescription',
|
|
86
|
+
defaultMessage: 'Try reloading the page.',
|
|
87
|
+
description: 'description for offline error fallback when mentions are not available'
|
|
78
88
|
}
|
|
79
89
|
});
|
|
@@ -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 = "98.2.
|
|
26
|
+
var packageVersion = "98.2.4";
|
|
27
27
|
var halfFocusRing = 1;
|
|
28
28
|
var dropOffset = '0, 8';
|
|
29
29
|
// Ignored via go/ees005
|
|
@@ -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 = "98.2.
|
|
4
|
+
const packageVersion = "98.2.4";
|
|
5
5
|
const sanitiseSentryEvents = (data, _hint) => {
|
|
6
6
|
// Remove URL as it has UGC
|
|
7
7
|
// TODO: Sanitise the URL instead of just removing it
|
|
@@ -69,5 +69,15 @@ export const typeAheadListMessages = defineMessages({
|
|
|
69
69
|
id: 'fabric.editor.shortcut',
|
|
70
70
|
defaultMessage: 'Text shortcut',
|
|
71
71
|
description: 'Text shortcut'
|
|
72
|
+
},
|
|
73
|
+
offlineErrorFallbackHeading: {
|
|
74
|
+
id: 'fabric.editor.offlineErrorFallbackHeading',
|
|
75
|
+
defaultMessage: 'Something went wrong!',
|
|
76
|
+
description: 'heading for offline error fallback when mentions are not available'
|
|
77
|
+
},
|
|
78
|
+
offlineErrorFallbackDesc: {
|
|
79
|
+
id: 'fabric.editor.offlineErrorFallbackDescription',
|
|
80
|
+
defaultMessage: 'Try reloading the page.',
|
|
81
|
+
description: 'description for offline error fallback when mentions are not available'
|
|
72
82
|
}
|
|
73
83
|
});
|
|
@@ -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 = "98.2.
|
|
16
|
+
const packageVersion = "98.2.4";
|
|
17
17
|
const halfFocusRing = 1;
|
|
18
18
|
const dropOffset = '0, 8';
|
|
19
19
|
// Ignored via go/ees005
|
|
@@ -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 = "98.2.
|
|
10
|
+
var packageVersion = "98.2.4";
|
|
11
11
|
var sanitiseSentryEvents = function sanitiseSentryEvents(data, _hint) {
|
|
12
12
|
// Remove URL as it has UGC
|
|
13
13
|
// TODO: Sanitise the URL instead of just removing it
|
|
@@ -69,5 +69,15 @@ export var typeAheadListMessages = defineMessages({
|
|
|
69
69
|
id: 'fabric.editor.shortcut',
|
|
70
70
|
defaultMessage: 'Text shortcut',
|
|
71
71
|
description: 'Text shortcut'
|
|
72
|
+
},
|
|
73
|
+
offlineErrorFallbackHeading: {
|
|
74
|
+
id: 'fabric.editor.offlineErrorFallbackHeading',
|
|
75
|
+
defaultMessage: 'Something went wrong!',
|
|
76
|
+
description: 'heading for offline error fallback when mentions are not available'
|
|
77
|
+
},
|
|
78
|
+
offlineErrorFallbackDesc: {
|
|
79
|
+
id: 'fabric.editor.offlineErrorFallbackDescription',
|
|
80
|
+
defaultMessage: 'Try reloading the page.',
|
|
81
|
+
description: 'description for offline error fallback when mentions are not available'
|
|
72
82
|
}
|
|
73
83
|
});
|
|
@@ -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 = "98.2.
|
|
23
|
+
var packageVersion = "98.2.4";
|
|
24
24
|
var halfFocusRing = 1;
|
|
25
25
|
var dropOffset = '0, 8';
|
|
26
26
|
// Ignored via go/ees005
|
|
@@ -69,4 +69,14 @@ export declare const typeAheadListMessages: {
|
|
|
69
69
|
defaultMessage: string;
|
|
70
70
|
description: string;
|
|
71
71
|
};
|
|
72
|
+
offlineErrorFallbackHeading: {
|
|
73
|
+
id: string;
|
|
74
|
+
defaultMessage: string;
|
|
75
|
+
description: string;
|
|
76
|
+
};
|
|
77
|
+
offlineErrorFallbackDesc: {
|
|
78
|
+
id: string;
|
|
79
|
+
defaultMessage: string;
|
|
80
|
+
description: string;
|
|
81
|
+
};
|
|
72
82
|
};
|
|
@@ -69,4 +69,14 @@ export declare const typeAheadListMessages: {
|
|
|
69
69
|
defaultMessage: string;
|
|
70
70
|
description: string;
|
|
71
71
|
};
|
|
72
|
+
offlineErrorFallbackHeading: {
|
|
73
|
+
id: string;
|
|
74
|
+
defaultMessage: string;
|
|
75
|
+
description: string;
|
|
76
|
+
};
|
|
77
|
+
offlineErrorFallbackDesc: {
|
|
78
|
+
id: string;
|
|
79
|
+
defaultMessage: string;
|
|
80
|
+
description: string;
|
|
81
|
+
};
|
|
72
82
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-common",
|
|
3
|
-
"version": "98.2.
|
|
3
|
+
"version": "98.2.4",
|
|
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/"
|
|
@@ -133,14 +133,14 @@
|
|
|
133
133
|
"@atlaskit/icon-object": "^6.9.0",
|
|
134
134
|
"@atlaskit/link-datasource": "^3.15.0",
|
|
135
135
|
"@atlaskit/link-picker": "^1.47.0",
|
|
136
|
-
"@atlaskit/media-card": "^78.
|
|
136
|
+
"@atlaskit/media-card": "^78.18.0",
|
|
137
137
|
"@atlaskit/media-client": "^29.0.0",
|
|
138
138
|
"@atlaskit/media-client-react": "^2.5.0",
|
|
139
139
|
"@atlaskit/media-common": "^11.7.0",
|
|
140
140
|
"@atlaskit/media-file-preview": "^0.9.0",
|
|
141
141
|
"@atlaskit/media-picker": "^67.0.0",
|
|
142
|
-
"@atlaskit/media-ui": "^27.
|
|
143
|
-
"@atlaskit/media-viewer": "49.
|
|
142
|
+
"@atlaskit/media-ui": "^27.3.0",
|
|
143
|
+
"@atlaskit/media-viewer": "49.6.0",
|
|
144
144
|
"@atlaskit/mention": "^23.7.0",
|
|
145
145
|
"@atlaskit/menu": "^2.13.0",
|
|
146
146
|
"@atlaskit/onboarding": "^12.2.0",
|