@atlaskit/link-create 1.15.4 → 1.15.5
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/controllers/experience-tracker/index.js +1 -2
- package/dist/cjs/ui/main.js +1 -1
- package/dist/es2019/controllers/experience-tracker/index.js +1 -2
- package/dist/es2019/ui/main.js +1 -1
- package/dist/esm/controllers/experience-tracker/index.js +1 -2
- package/dist/esm/ui/main.js +1 -1
- package/package.json +3 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# @atlaskit/link-create
|
|
2
2
|
|
|
3
|
+
## 1.15.5
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#88102](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/88102) [`e424cbf4d842`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/e424cbf4d842) - Cleans up internal observability feature flag. No expected functional changes.
|
|
8
|
+
- Updated dependencies
|
|
9
|
+
|
|
3
10
|
## 1.15.4
|
|
4
11
|
|
|
5
12
|
### Patch Changes
|
|
@@ -10,7 +10,6 @@ var _defineProperty2 = _interopRequireDefault(require("@babel/runtime/helpers/de
|
|
|
10
10
|
var _react = _interopRequireWildcard(require("react"));
|
|
11
11
|
var _analyticsNext = require("@atlaskit/analytics-next");
|
|
12
12
|
var _sentry = require("@atlaskit/linking-common/sentry");
|
|
13
|
-
var _platformFeatureFlags = require("@atlaskit/platform-feature-flags");
|
|
14
13
|
var _constants = require("../../common/constants");
|
|
15
14
|
var _analytics = _interopRequireDefault(require("../../common/utils/analytics/analytics.codegen"));
|
|
16
15
|
var _errors = require("../../common/utils/errors");
|
|
@@ -78,7 +77,7 @@ var Experience = exports.Experience = function Experience(_ref) {
|
|
|
78
77
|
/**
|
|
79
78
|
* Error message if instanceof Error
|
|
80
79
|
*/
|
|
81
|
-
errorMessage:
|
|
80
|
+
errorMessage: error instanceof Error ? error.message : null,
|
|
82
81
|
/**
|
|
83
82
|
* The current status of the experience (has failed)
|
|
84
83
|
*/
|
package/dist/cjs/ui/main.js
CHANGED
|
@@ -31,7 +31,7 @@ var LinkCreateWithAnalyticsContext = (0, _analytics.withLinkCreateAnalyticsConte
|
|
|
31
31
|
}));
|
|
32
32
|
var PACKAGE_DATA = exports.PACKAGE_DATA = {
|
|
33
33
|
packageName: "@atlaskit/link-create" || '',
|
|
34
|
-
packageVersion: "1.15.
|
|
34
|
+
packageVersion: "1.15.5" || '',
|
|
35
35
|
component: _constants.COMPONENT_NAME,
|
|
36
36
|
componentName: _constants.COMPONENT_NAME
|
|
37
37
|
};
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import React, { createContext, useContext, useMemo, useRef } from 'react';
|
|
2
2
|
import { useAnalyticsEvents } from '@atlaskit/analytics-next';
|
|
3
3
|
import { captureException } from '@atlaskit/linking-common/sentry';
|
|
4
|
-
import { getBooleanFF } from '@atlaskit/platform-feature-flags';
|
|
5
4
|
import { ANALYTICS_CHANNEL } from '../../common/constants';
|
|
6
5
|
import createEventPayload from '../../common/utils/analytics/analytics.codegen';
|
|
7
6
|
import { getErrorType, getNetworkFields } from '../../common/utils/errors';
|
|
@@ -64,7 +63,7 @@ export const Experience = ({
|
|
|
64
63
|
/**
|
|
65
64
|
* Error message if instanceof Error
|
|
66
65
|
*/
|
|
67
|
-
errorMessage:
|
|
66
|
+
errorMessage: error instanceof Error ? error.message : null,
|
|
68
67
|
/**
|
|
69
68
|
* The current status of the experience (has failed)
|
|
70
69
|
*/
|
package/dist/es2019/ui/main.js
CHANGED
|
@@ -23,7 +23,7 @@ const LinkCreateWithAnalyticsContext = withLinkCreateAnalyticsContext( /*#__PURE
|
|
|
23
23
|
}));
|
|
24
24
|
export const PACKAGE_DATA = {
|
|
25
25
|
packageName: "@atlaskit/link-create" || '',
|
|
26
|
-
packageVersion: "1.15.
|
|
26
|
+
packageVersion: "1.15.5" || '',
|
|
27
27
|
component: COMPONENT_NAME,
|
|
28
28
|
componentName: COMPONENT_NAME
|
|
29
29
|
};
|
|
@@ -4,7 +4,6 @@ function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t =
|
|
|
4
4
|
import React, { createContext, useContext, useMemo, useRef } from 'react';
|
|
5
5
|
import { useAnalyticsEvents } from '@atlaskit/analytics-next';
|
|
6
6
|
import { captureException } from '@atlaskit/linking-common/sentry';
|
|
7
|
-
import { getBooleanFF } from '@atlaskit/platform-feature-flags';
|
|
8
7
|
import { ANALYTICS_CHANNEL } from '../../common/constants';
|
|
9
8
|
import createEventPayload from '../../common/utils/analytics/analytics.codegen';
|
|
10
9
|
import { getErrorType, getNetworkFields } from '../../common/utils/errors';
|
|
@@ -68,7 +67,7 @@ export var Experience = function Experience(_ref) {
|
|
|
68
67
|
/**
|
|
69
68
|
* Error message if instanceof Error
|
|
70
69
|
*/
|
|
71
|
-
errorMessage:
|
|
70
|
+
errorMessage: error instanceof Error ? error.message : null,
|
|
72
71
|
/**
|
|
73
72
|
* The current status of the experience (has failed)
|
|
74
73
|
*/
|
package/dist/esm/ui/main.js
CHANGED
|
@@ -23,7 +23,7 @@ var LinkCreateWithAnalyticsContext = withLinkCreateAnalyticsContext( /*#__PURE__
|
|
|
23
23
|
}));
|
|
24
24
|
export var PACKAGE_DATA = {
|
|
25
25
|
packageName: "@atlaskit/link-create" || '',
|
|
26
|
-
packageVersion: "1.15.
|
|
26
|
+
packageVersion: "1.15.5" || '',
|
|
27
27
|
component: COMPONENT_NAME,
|
|
28
28
|
componentName: COMPONENT_NAME
|
|
29
29
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/link-create",
|
|
3
|
-
"version": "1.15.
|
|
3
|
+
"version": "1.15.5",
|
|
4
4
|
"description": "The driver component of meta creation flow",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
},
|
|
40
40
|
"dependencies": {
|
|
41
41
|
"@atlaskit/analytics-next": "^9.2.0",
|
|
42
|
-
"@atlaskit/button": "^17.
|
|
42
|
+
"@atlaskit/button": "^17.10.0",
|
|
43
43
|
"@atlaskit/empty-state": "^7.7.0",
|
|
44
44
|
"@atlaskit/form": "^9.1.0",
|
|
45
45
|
"@atlaskit/icon": "^22.1.0",
|
|
@@ -48,7 +48,7 @@
|
|
|
48
48
|
"@atlaskit/modal-dialog": "^12.10.0",
|
|
49
49
|
"@atlaskit/platform-feature-flags": "^0.2.1",
|
|
50
50
|
"@atlaskit/primitives": "^5.5.0",
|
|
51
|
-
"@atlaskit/select": "^17.
|
|
51
|
+
"@atlaskit/select": "^17.5.0",
|
|
52
52
|
"@atlaskit/spinner": "^16.0.0",
|
|
53
53
|
"@atlaskit/textfield": "^6.1.0",
|
|
54
54
|
"@atlaskit/tokens": "^1.43.0",
|
|
@@ -121,9 +121,6 @@
|
|
|
121
121
|
"platform.linking-platform.link-create.better-observability": {
|
|
122
122
|
"type": "boolean"
|
|
123
123
|
},
|
|
124
|
-
"platform.linking-platform.link-create.tmp-log-error-message": {
|
|
125
|
-
"type": "boolean"
|
|
126
|
-
},
|
|
127
124
|
"platform.linking-platform.link-create.enable-expected-field-errors": {
|
|
128
125
|
"type": "boolean"
|
|
129
126
|
}
|