@atlaskit/editor-common 106.5.1 → 106.5.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 +18 -0
- package/dist/cjs/monitoring/error.js +1 -1
- package/dist/cjs/ui/DropList/index.js +1 -1
- package/dist/es2019/monitoring/error.js +1 -1
- package/dist/es2019/ui/DropList/index.js +1 -1
- package/dist/esm/monitoring/error.js +1 -1
- package/dist/esm/ui/DropList/index.js +1 -1
- package/dist/types/analytics/index.d.ts +1 -1
- package/dist/types/analytics/types/activity-session-events.d.ts +1 -0
- package/dist/types/analytics/types/breakout-events.d.ts +1 -2
- package/dist/types-ts4.5/analytics/index.d.ts +1 -1
- package/dist/types-ts4.5/analytics/types/activity-session-events.d.ts +1 -0
- package/dist/types-ts4.5/analytics/types/breakout-events.d.ts +1 -2
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# @atlaskit/editor-common
|
|
2
2
|
|
|
3
|
+
## 106.5.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#168315](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/168315)
|
|
8
|
+
[`9b42791b3f3c2`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/9b42791b3f3c2) -
|
|
9
|
+
ED-28215 Add toolbar docking preference to activitySession ended event
|
|
10
|
+
- Updated dependencies
|
|
11
|
+
|
|
12
|
+
## 106.5.2
|
|
13
|
+
|
|
14
|
+
### Patch Changes
|
|
15
|
+
|
|
16
|
+
- [#168573](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/168573)
|
|
17
|
+
[`8c337a8701dfb`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/8c337a8701dfb) -
|
|
18
|
+
Adds resized analytics for nodes that support breakout mark.
|
|
19
|
+
- Updated dependencies
|
|
20
|
+
|
|
3
21
|
## 106.5.1
|
|
4
22
|
|
|
5
23
|
### Patch Changes
|
|
@@ -16,7 +16,7 @@ function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t =
|
|
|
16
16
|
function _interopRequireWildcard(e, t) { if ("function" == typeof WeakMap) var r = new WeakMap(), n = new WeakMap(); return (_interopRequireWildcard = function _interopRequireWildcard(e, t) { if (!t && e && e.__esModule) return e; var o, i, f = { __proto__: null, default: e }; if (null === e || "object" != _typeof(e) && "function" != typeof e) return f; if (o = t ? n : r) { if (o.has(e)) return o.get(e); o.set(e, f); } for (var _t in e) "default" !== _t && {}.hasOwnProperty.call(e, _t) && ((i = (o = Object.defineProperty) && Object.getOwnPropertyDescriptor(e, _t)) && (i.get || i.set) ? o(f, _t, i) : f[_t] = e[_t]); return f; })(e, t); }
|
|
17
17
|
var SENTRY_DSN = 'https://0b10c8e02fb44d8796c047b102c9bee8@o55978.ingest.sentry.io/4505129224110080';
|
|
18
18
|
var packageName = 'editor-common'; // Sentry doesn't accept '/' in its releases https://docs.sentry.io/platforms/javascript/configuration/releases/
|
|
19
|
-
var packageVersion = "106.5.
|
|
19
|
+
var packageVersion = "106.5.3";
|
|
20
20
|
var sanitiseSentryEvents = function sanitiseSentryEvents(data, _hint) {
|
|
21
21
|
// Remove URL as it has UGC
|
|
22
22
|
// 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 = "106.5.
|
|
26
|
+
var packageVersion = "106.5.3";
|
|
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 = "106.5.
|
|
4
|
+
const packageVersion = "106.5.3";
|
|
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 = "106.5.
|
|
16
|
+
const packageVersion = "106.5.3";
|
|
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 = "106.5.
|
|
10
|
+
var packageVersion = "106.5.3";
|
|
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 = "106.5.
|
|
23
|
+
var packageVersion = "106.5.3";
|
|
24
24
|
var halfFocusRing = 1;
|
|
25
25
|
var dropOffset = '0, 8';
|
|
26
26
|
// Ignored via go/ees005
|
|
@@ -50,4 +50,4 @@ export type { ActiveSessionEventPayload, ActiveSessionEventAttributes, } from '.
|
|
|
50
50
|
export { type AIInlineSuggestionPayload, AI_SUGGESTION_TRIGGERED_FROM, } from './types/ai-inline-suggestion-events';
|
|
51
51
|
export { type TelepointerClickPayload } from './types/telepointer-events';
|
|
52
52
|
export { type NcsSessionStepEventAEP, type NcsSessionStepMetrics, } from './types/ncs-session-step-events';
|
|
53
|
-
export type { BreakoutEventPayload } from './types/breakout-events';
|
|
53
|
+
export type { BreakoutEventPayload, BreakoutSupportedNodes } from './types/breakout-events';
|
|
@@ -22,6 +22,7 @@ export type ActiveSessionEventAttributes = {
|
|
|
22
22
|
safeInsertCount: number;
|
|
23
23
|
};
|
|
24
24
|
contentSizeChanged: number;
|
|
25
|
+
toolbarDocking?: 'top' | 'none';
|
|
25
26
|
};
|
|
26
27
|
export type ActiveSessionEventAEP = TrackAEP<ACTION.ENDED, ACTION_SUBJECT.ACTIVITY_SESSION, ACTION_SUBJECT_ID.ACTIVITY, ActiveSessionEventAttributes, undefined>;
|
|
27
28
|
export type ActiveSessionEventPayload = ActiveSessionEventAEP;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { ACTION, ACTION_SUBJECT } from './enums';
|
|
2
2
|
import type { OperationalAEP, TrackAEP } from './utils';
|
|
3
|
-
type BreakoutSupportedNodes = 'layoutSection' | 'expand' | 'codeBlock';
|
|
3
|
+
export type BreakoutSupportedNodes = 'layoutSection' | 'expand' | 'codeBlock';
|
|
4
4
|
export type BreakoutResizedAEP = TrackAEP<ACTION.RESIZED, ACTION_SUBJECT.ELEMENT, undefined, {
|
|
5
5
|
nodeType: BreakoutSupportedNodes;
|
|
6
6
|
prevWidth?: number;
|
|
@@ -14,4 +14,3 @@ export type BreakoutResizedPerfSamplingAEP = OperationalAEP<ACTION.RESIZED_PERF_
|
|
|
14
14
|
isInitialSample: boolean;
|
|
15
15
|
}>;
|
|
16
16
|
export type BreakoutEventPayload = BreakoutResizedAEP | BreakoutResizedPerfSamplingAEP;
|
|
17
|
-
export {};
|
|
@@ -50,4 +50,4 @@ export type { ActiveSessionEventPayload, ActiveSessionEventAttributes, } from '.
|
|
|
50
50
|
export { type AIInlineSuggestionPayload, AI_SUGGESTION_TRIGGERED_FROM, } from './types/ai-inline-suggestion-events';
|
|
51
51
|
export { type TelepointerClickPayload } from './types/telepointer-events';
|
|
52
52
|
export { type NcsSessionStepEventAEP, type NcsSessionStepMetrics, } from './types/ncs-session-step-events';
|
|
53
|
-
export type { BreakoutEventPayload } from './types/breakout-events';
|
|
53
|
+
export type { BreakoutEventPayload, BreakoutSupportedNodes } from './types/breakout-events';
|
|
@@ -22,6 +22,7 @@ export type ActiveSessionEventAttributes = {
|
|
|
22
22
|
safeInsertCount: number;
|
|
23
23
|
};
|
|
24
24
|
contentSizeChanged: number;
|
|
25
|
+
toolbarDocking?: 'top' | 'none';
|
|
25
26
|
};
|
|
26
27
|
export type ActiveSessionEventAEP = TrackAEP<ACTION.ENDED, ACTION_SUBJECT.ACTIVITY_SESSION, ACTION_SUBJECT_ID.ACTIVITY, ActiveSessionEventAttributes, undefined>;
|
|
27
28
|
export type ActiveSessionEventPayload = ActiveSessionEventAEP;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { ACTION, ACTION_SUBJECT } from './enums';
|
|
2
2
|
import type { OperationalAEP, TrackAEP } from './utils';
|
|
3
|
-
type BreakoutSupportedNodes = 'layoutSection' | 'expand' | 'codeBlock';
|
|
3
|
+
export type BreakoutSupportedNodes = 'layoutSection' | 'expand' | 'codeBlock';
|
|
4
4
|
export type BreakoutResizedAEP = TrackAEP<ACTION.RESIZED, ACTION_SUBJECT.ELEMENT, undefined, {
|
|
5
5
|
nodeType: BreakoutSupportedNodes;
|
|
6
6
|
prevWidth?: number;
|
|
@@ -14,4 +14,3 @@ export type BreakoutResizedPerfSamplingAEP = OperationalAEP<ACTION.RESIZED_PERF_
|
|
|
14
14
|
isInitialSample: boolean;
|
|
15
15
|
}>;
|
|
16
16
|
export type BreakoutEventPayload = BreakoutResizedAEP | BreakoutResizedPerfSamplingAEP;
|
|
17
|
-
export {};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-common",
|
|
3
|
-
"version": "106.5.
|
|
3
|
+
"version": "106.5.3",
|
|
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/"
|
|
@@ -164,13 +164,13 @@
|
|
|
164
164
|
"@atlaskit/profilecard": "^23.18.0",
|
|
165
165
|
"@atlaskit/react-ufo": "^3.13.0",
|
|
166
166
|
"@atlaskit/section-message": "^8.2.0",
|
|
167
|
-
"@atlaskit/smart-card": "^38.
|
|
167
|
+
"@atlaskit/smart-card": "^38.9.0",
|
|
168
168
|
"@atlaskit/smart-user-picker": "^8.0.0",
|
|
169
169
|
"@atlaskit/spinner": "^18.0.0",
|
|
170
170
|
"@atlaskit/task-decision": "^19.2.0",
|
|
171
171
|
"@atlaskit/textfield": "^8.0.0",
|
|
172
172
|
"@atlaskit/theme": "^18.0.0",
|
|
173
|
-
"@atlaskit/tmp-editor-statsig": "^6.
|
|
173
|
+
"@atlaskit/tmp-editor-statsig": "^6.1.0",
|
|
174
174
|
"@atlaskit/tokens": "^5.1.0",
|
|
175
175
|
"@atlaskit/tooltip": "^20.3.0",
|
|
176
176
|
"@atlaskit/width-detector": "^5.0.0",
|