@atlaskit/editor-common 116.19.2 → 116.19.3
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 +7 -0
- package/dist/cjs/messages/native-embed-toolbar.js +8 -0
- package/dist/cjs/monitoring/error.js +1 -1
- package/dist/cjs/ui/DropList/index.js +1 -1
- package/dist/es2019/messages/native-embed-toolbar.js +9 -0
- package/dist/es2019/monitoring/error.js +1 -1
- package/dist/es2019/ui/DropList/index.js +1 -1
- package/dist/esm/messages/native-embed-toolbar.js +9 -0
- package/dist/esm/monitoring/error.js +1 -1
- package/dist/esm/ui/DropList/index.js +1 -1
- package/dist/types/messages/native-embed-toolbar.d.ts +8 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# @atlaskit/editor-common
|
|
2
2
|
|
|
3
|
+
## 116.19.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`7156c5346ce34`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/7156c5346ce34) -
|
|
8
|
+
Move native embed toolbar messages to the native embeds plugin
|
|
9
|
+
|
|
3
10
|
## 116.19.2
|
|
4
11
|
|
|
5
12
|
### Patch Changes
|
|
@@ -5,6 +5,14 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
5
5
|
});
|
|
6
6
|
exports.nativeEmbedToolbarMessages = void 0;
|
|
7
7
|
var _reactIntl = require("react-intl");
|
|
8
|
+
/**
|
|
9
|
+
* @private
|
|
10
|
+
* @deprecated Native embed toolbar messages are now owned by
|
|
11
|
+
* `@atlassian/editor-plugin-native-embeds`. Use
|
|
12
|
+
* `nativeEmbedToolbarMessages` from
|
|
13
|
+
* `@atlassian/editor-plugin-native-embeds/src/messages/native-embed-toolbar`
|
|
14
|
+
* instead. This export is kept temporarily for backwards compatibility.
|
|
15
|
+
*/
|
|
8
16
|
var nativeEmbedToolbarMessages = exports.nativeEmbedToolbarMessages = (0, _reactIntl.defineMessages)({
|
|
9
17
|
alwaysShowTitle: {
|
|
10
18
|
id: 'fabric.editor.nativeEmbeds.alwaysShowTitle',
|
|
@@ -28,7 +28,7 @@ var NETWORK_FAILURE_REGEX = /^network failure/i;
|
|
|
28
28
|
var RESIZE_OBSERVER_LOOP_REGEX = /ResizeObserver loop completed with undelivered notifications/;
|
|
29
29
|
var SENTRY_DSN = 'https://0b10c8e02fb44d8796c047b102c9bee8@o55978.ingest.sentry.io/4505129224110080';
|
|
30
30
|
var packageName = 'editor-common'; // Sentry doesn't accept '/' in its releases https://docs.sentry.io/platforms/javascript/configuration/releases/
|
|
31
|
-
var packageVersion = "116.19.
|
|
31
|
+
var packageVersion = "116.19.2";
|
|
32
32
|
var sanitiseSentryEvents = function sanitiseSentryEvents(data, _hint) {
|
|
33
33
|
// Remove URL as it has UGC
|
|
34
34
|
// Ignored via go/ees007
|
|
@@ -24,7 +24,7 @@ function _isNativeReflectConstruct() { try { var t = !Boolean.prototype.valueOf.
|
|
|
24
24
|
* @jsx jsx
|
|
25
25
|
*/ // eslint-disable-next-line @atlaskit/ui-styling-standard/use-compiled -- Ignored via go/DSP-18766
|
|
26
26
|
var packageName = "@atlaskit/editor-common";
|
|
27
|
-
var packageVersion = "116.19.
|
|
27
|
+
var packageVersion = "116.19.2";
|
|
28
28
|
var halfFocusRing = 1;
|
|
29
29
|
var dropOffset = '0, 8';
|
|
30
30
|
var fadeIn = (0, _react2.keyframes)({
|
|
@@ -1,4 +1,13 @@
|
|
|
1
1
|
import { defineMessages } from 'react-intl';
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* @private
|
|
5
|
+
* @deprecated Native embed toolbar messages are now owned by
|
|
6
|
+
* `@atlassian/editor-plugin-native-embeds`. Use
|
|
7
|
+
* `nativeEmbedToolbarMessages` from
|
|
8
|
+
* `@atlassian/editor-plugin-native-embeds/src/messages/native-embed-toolbar`
|
|
9
|
+
* instead. This export is kept temporarily for backwards compatibility.
|
|
10
|
+
*/
|
|
2
11
|
export const nativeEmbedToolbarMessages = defineMessages({
|
|
3
12
|
alwaysShowTitle: {
|
|
4
13
|
id: 'fabric.editor.nativeEmbeds.alwaysShowTitle',
|
|
@@ -14,7 +14,7 @@ const NETWORK_FAILURE_REGEX = /^network failure/i;
|
|
|
14
14
|
const RESIZE_OBSERVER_LOOP_REGEX = /ResizeObserver loop completed with undelivered notifications/;
|
|
15
15
|
const SENTRY_DSN = 'https://0b10c8e02fb44d8796c047b102c9bee8@o55978.ingest.sentry.io/4505129224110080';
|
|
16
16
|
const packageName = 'editor-common'; // Sentry doesn't accept '/' in its releases https://docs.sentry.io/platforms/javascript/configuration/releases/
|
|
17
|
-
const packageVersion = "116.19.
|
|
17
|
+
const packageVersion = "116.19.2";
|
|
18
18
|
const sanitiseSentryEvents = (data, _hint) => {
|
|
19
19
|
// Remove URL as it has UGC
|
|
20
20
|
// Ignored via go/ees007
|
|
@@ -14,7 +14,7 @@ import withAnalyticsEvents from '@atlaskit/analytics-next/withAnalyticsEvents';
|
|
|
14
14
|
import { fg } from '@atlaskit/platform-feature-flags';
|
|
15
15
|
import Layer from '../Layer';
|
|
16
16
|
const packageName = "@atlaskit/editor-common";
|
|
17
|
-
const packageVersion = "116.19.
|
|
17
|
+
const packageVersion = "116.19.2";
|
|
18
18
|
const halfFocusRing = 1;
|
|
19
19
|
const dropOffset = '0, 8';
|
|
20
20
|
const fadeIn = keyframes({
|
|
@@ -1,4 +1,13 @@
|
|
|
1
1
|
import { defineMessages } from 'react-intl';
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* @private
|
|
5
|
+
* @deprecated Native embed toolbar messages are now owned by
|
|
6
|
+
* `@atlassian/editor-plugin-native-embeds`. Use
|
|
7
|
+
* `nativeEmbedToolbarMessages` from
|
|
8
|
+
* `@atlassian/editor-plugin-native-embeds/src/messages/native-embed-toolbar`
|
|
9
|
+
* instead. This export is kept temporarily for backwards compatibility.
|
|
10
|
+
*/
|
|
2
11
|
export var nativeEmbedToolbarMessages = defineMessages({
|
|
3
12
|
alwaysShowTitle: {
|
|
4
13
|
id: 'fabric.editor.nativeEmbeds.alwaysShowTitle',
|
|
@@ -20,7 +20,7 @@ var NETWORK_FAILURE_REGEX = /^network failure/i;
|
|
|
20
20
|
var RESIZE_OBSERVER_LOOP_REGEX = /ResizeObserver loop completed with undelivered notifications/;
|
|
21
21
|
var SENTRY_DSN = 'https://0b10c8e02fb44d8796c047b102c9bee8@o55978.ingest.sentry.io/4505129224110080';
|
|
22
22
|
var packageName = 'editor-common'; // Sentry doesn't accept '/' in its releases https://docs.sentry.io/platforms/javascript/configuration/releases/
|
|
23
|
-
var packageVersion = "116.19.
|
|
23
|
+
var packageVersion = "116.19.2";
|
|
24
24
|
var sanitiseSentryEvents = function sanitiseSentryEvents(data, _hint) {
|
|
25
25
|
// Remove URL as it has UGC
|
|
26
26
|
// Ignored via go/ees007
|
|
@@ -21,7 +21,7 @@ import withAnalyticsEvents from '@atlaskit/analytics-next/withAnalyticsEvents';
|
|
|
21
21
|
import { fg } from '@atlaskit/platform-feature-flags';
|
|
22
22
|
import Layer from '../Layer';
|
|
23
23
|
var packageName = "@atlaskit/editor-common";
|
|
24
|
-
var packageVersion = "116.19.
|
|
24
|
+
var packageVersion = "116.19.2";
|
|
25
25
|
var halfFocusRing = 1;
|
|
26
26
|
var dropOffset = '0, 8';
|
|
27
27
|
var fadeIn = keyframes({
|
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @private
|
|
3
|
+
* @deprecated Native embed toolbar messages are now owned by
|
|
4
|
+
* `@atlassian/editor-plugin-native-embeds`. Use
|
|
5
|
+
* `nativeEmbedToolbarMessages` from
|
|
6
|
+
* `@atlassian/editor-plugin-native-embeds/src/messages/native-embed-toolbar`
|
|
7
|
+
* instead. This export is kept temporarily for backwards compatibility.
|
|
8
|
+
*/
|
|
1
9
|
export declare const nativeEmbedToolbarMessages: {
|
|
2
10
|
alwaysShowTitle: {
|
|
3
11
|
defaultMessage: string;
|
package/package.json
CHANGED