@atlaskit/link-create 4.0.12 → 4.1.0
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 +17 -0
- package/compass.yml +43 -0
- package/dist/cjs/common/constants.js +1 -1
- package/dist/cjs/common/ui/error-boundary-ui/index.js +1 -0
- package/dist/es2019/common/constants.js +1 -1
- package/dist/es2019/common/ui/error-boundary-ui/index.js +1 -0
- package/dist/esm/common/constants.js +1 -1
- package/dist/esm/common/ui/error-boundary-ui/index.js +1 -0
- package/package.json +12 -9
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# @atlaskit/link-create
|
|
2
2
|
|
|
3
|
+
## 4.1.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#157092](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/157092)
|
|
8
|
+
[`87491e7b53b65`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/87491e7b53b65) -
|
|
9
|
+
We are testing the migration to the ADS Link component behind a feature flag. If this fix is
|
|
10
|
+
successful it will be available in a later release.
|
|
11
|
+
|
|
12
|
+
## 4.0.13
|
|
13
|
+
|
|
14
|
+
### Patch Changes
|
|
15
|
+
|
|
16
|
+
- [#155005](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/155005)
|
|
17
|
+
[`bb18fc47c1bac`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/bb18fc47c1bac) -
|
|
18
|
+
EDM-12330 adding heading level declaration to empty state to fix a11y error
|
|
19
|
+
|
|
3
20
|
## 4.0.12
|
|
4
21
|
|
|
5
22
|
### Patch Changes
|
package/compass.yml
ADDED
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
id: 'ari:cloud:compass:a436116f-02ce-4520-8fbb-7301462a1674:component/c5751cc6-3513-4070-9deb-af31e86aed34/499f4b5a-fe41-4a10-86fc-78bcfb4064f6'
|
|
2
|
+
name: '@atlaskit/link-create'
|
|
3
|
+
description:
|
|
4
|
+
This is the core driver component for the Link Create experience. It provides the main UI and
|
|
5
|
+
logic for enabling users to create new objects — such as Jira issues or Confluence pages—directly
|
|
6
|
+
from their current context (like an editor or application), and then automatically insert or link
|
|
7
|
+
to the newly created object
|
|
8
|
+
configVersion: 1
|
|
9
|
+
typeId: LIBRARY
|
|
10
|
+
ownerId: 'ari:cloud:identity::team/9683a6ac-2d3f-44c8-a0fe-56128ca69e20'
|
|
11
|
+
fields:
|
|
12
|
+
tier: 4
|
|
13
|
+
lifecycle: Active
|
|
14
|
+
isMonorepoProject: true
|
|
15
|
+
labels:
|
|
16
|
+
- atlassian-platform
|
|
17
|
+
links:
|
|
18
|
+
- name: Bandicoots
|
|
19
|
+
type: PROJECT
|
|
20
|
+
url: 'https://product-fabric.atlassian.net/jira/software/c/projects/EDM/boards/5176'
|
|
21
|
+
- name: '#help-twg-linking-platform'
|
|
22
|
+
type: CHAT_CHANNEL
|
|
23
|
+
url: 'https://atlassian.enterprise.slack.com/archives/CFKGAQZRV'
|
|
24
|
+
- name: 'On-Call Schedule'
|
|
25
|
+
type: ON_CALL
|
|
26
|
+
url: 'https://atlassian.app.opsgenie.com/settings/schedule/detail/b9c8b313-dd6d-4a41-8eeb-d7a9df55be9d'
|
|
27
|
+
- name: source code
|
|
28
|
+
type: REPOSITORY
|
|
29
|
+
url: 'https://bitbucket.org/atlassian/atlassian-frontend/src/master/packages/linking-platform/link-create'
|
|
30
|
+
customFields:
|
|
31
|
+
- name: 'FinOps_COGS_Cost_Center'
|
|
32
|
+
type: single_select
|
|
33
|
+
value: 'a681c808-9c58-45e5-9b3a-b5cc330c4b3a'
|
|
34
|
+
- name: 'FinOps_R&D_Cost_Center'
|
|
35
|
+
type: single_select
|
|
36
|
+
value: 'd9c71b12-1c77-4c68-a769-ba0e26bc8cac'
|
|
37
|
+
- name: 'FinOps_Service_Group'
|
|
38
|
+
type: single_select
|
|
39
|
+
value: '9120e03c-440b-489d-ac42-07903a2c611d'
|
|
40
|
+
- name: 'business-unit'
|
|
41
|
+
type: text
|
|
42
|
+
value: 'Eng - X Product Collab'
|
|
43
|
+
relationships: {}
|
|
@@ -16,7 +16,7 @@ var CREATE_FORM_MIN_HEIGHT_IN_PX = exports.CREATE_FORM_MIN_HEIGHT_IN_PX = '200';
|
|
|
16
16
|
var LINK_CREATE_FORM_POST_CREATE_FIELD = exports.LINK_CREATE_FORM_POST_CREATE_FIELD = '__post_create__';
|
|
17
17
|
var PACKAGE_DATA = exports.PACKAGE_DATA = {
|
|
18
18
|
packageName: "@atlaskit/link-create" || '',
|
|
19
|
-
packageVersion: "4.0
|
|
19
|
+
packageVersion: "4.1.0" || '',
|
|
20
20
|
component: COMPONENT_NAME,
|
|
21
21
|
componentName: COMPONENT_NAME
|
|
22
22
|
};
|
|
@@ -24,6 +24,7 @@ var ErrorBoundaryUI = exports.ErrorBoundaryUI = function ErrorBoundaryUI() {
|
|
|
24
24
|
maxImageWidth: 82,
|
|
25
25
|
testId: 'link-create-error-boundary-ui',
|
|
26
26
|
header: intl.formatMessage(_messages.default.genericErrorMessage),
|
|
27
|
+
headingLevel: 2,
|
|
27
28
|
description: /*#__PURE__*/_react.default.createElement(_reactIntlNext.FormattedMessage, (0, _extends2.default)({}, _messages2.default.description, {
|
|
28
29
|
values: {
|
|
29
30
|
a: function a(label) {
|
|
@@ -10,7 +10,7 @@ export const CREATE_FORM_MIN_HEIGHT_IN_PX = '200';
|
|
|
10
10
|
export const LINK_CREATE_FORM_POST_CREATE_FIELD = '__post_create__';
|
|
11
11
|
export const PACKAGE_DATA = {
|
|
12
12
|
packageName: "@atlaskit/link-create" || '',
|
|
13
|
-
packageVersion: "4.0
|
|
13
|
+
packageVersion: "4.1.0" || '',
|
|
14
14
|
component: COMPONENT_NAME,
|
|
15
15
|
componentName: COMPONENT_NAME
|
|
16
16
|
};
|
|
@@ -17,6 +17,7 @@ export const ErrorBoundaryUI = () => {
|
|
|
17
17
|
maxImageWidth: 82,
|
|
18
18
|
testId: 'link-create-error-boundary-ui',
|
|
19
19
|
header: intl.formatMessage(commonMessages.genericErrorMessage),
|
|
20
|
+
headingLevel: 2,
|
|
20
21
|
description: /*#__PURE__*/React.createElement(FormattedMessage, _extends({}, messages.description, {
|
|
21
22
|
values: {
|
|
22
23
|
a: label => fg('platform-link-create-button-migration') ? /*#__PURE__*/React.createElement(Link, {
|
|
@@ -10,7 +10,7 @@ export var CREATE_FORM_MIN_HEIGHT_IN_PX = '200';
|
|
|
10
10
|
export var LINK_CREATE_FORM_POST_CREATE_FIELD = '__post_create__';
|
|
11
11
|
export var PACKAGE_DATA = {
|
|
12
12
|
packageName: "@atlaskit/link-create" || '',
|
|
13
|
-
packageVersion: "4.0
|
|
13
|
+
packageVersion: "4.1.0" || '',
|
|
14
14
|
component: COMPONENT_NAME,
|
|
15
15
|
componentName: COMPONENT_NAME
|
|
16
16
|
};
|
|
@@ -17,6 +17,7 @@ export var ErrorBoundaryUI = function ErrorBoundaryUI() {
|
|
|
17
17
|
maxImageWidth: 82,
|
|
18
18
|
testId: 'link-create-error-boundary-ui',
|
|
19
19
|
header: intl.formatMessage(commonMessages.genericErrorMessage),
|
|
20
|
+
headingLevel: 2,
|
|
20
21
|
description: /*#__PURE__*/React.createElement(FormattedMessage, _extends({}, messages.description, {
|
|
21
22
|
values: {
|
|
22
23
|
a: function a(label) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/link-create",
|
|
3
|
-
"version": "4.0
|
|
3
|
+
"version": "4.1.0",
|
|
4
4
|
"description": "The driver component of meta creation flow",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -38,26 +38,26 @@
|
|
|
38
38
|
"dependencies": {
|
|
39
39
|
"@atlaskit/analytics-next": "^11.0.0",
|
|
40
40
|
"@atlaskit/atlassian-context": "^0.2.0",
|
|
41
|
-
"@atlaskit/button": "^23.
|
|
41
|
+
"@atlaskit/button": "^23.2.0",
|
|
42
42
|
"@atlaskit/css": "^0.10.0",
|
|
43
43
|
"@atlaskit/empty-state": "^10.0.0",
|
|
44
44
|
"@atlaskit/form": "^12.0.0",
|
|
45
|
-
"@atlaskit/icon": "^26.
|
|
45
|
+
"@atlaskit/icon": "^26.1.0",
|
|
46
46
|
"@atlaskit/icon-file-type": "^7.0.0",
|
|
47
47
|
"@atlaskit/icon-object": "^7.1.0",
|
|
48
48
|
"@atlaskit/intl-messages-provider": "^2.0.0",
|
|
49
49
|
"@atlaskit/layering": "^2.1.0",
|
|
50
|
-
"@atlaskit/link": "^3.
|
|
50
|
+
"@atlaskit/link": "^3.2.0",
|
|
51
51
|
"@atlaskit/linking-common": "^9.0.0",
|
|
52
|
-
"@atlaskit/modal-dialog": "^14.
|
|
52
|
+
"@atlaskit/modal-dialog": "^14.2.0",
|
|
53
53
|
"@atlaskit/platform-feature-flags": "^1.1.0",
|
|
54
|
-
"@atlaskit/primitives": "^14.
|
|
55
|
-
"@atlaskit/select": "^20.
|
|
54
|
+
"@atlaskit/primitives": "^14.8.0",
|
|
55
|
+
"@atlaskit/select": "^20.6.0",
|
|
56
56
|
"@atlaskit/smart-user-picker": "^8.0.0",
|
|
57
57
|
"@atlaskit/spinner": "^18.0.0",
|
|
58
58
|
"@atlaskit/textfield": "^8.0.0",
|
|
59
59
|
"@atlaskit/theme": "^18.0.0",
|
|
60
|
-
"@atlaskit/tokens": "^4.
|
|
60
|
+
"@atlaskit/tokens": "^4.9.0",
|
|
61
61
|
"@babel/runtime": "^7.0.0",
|
|
62
62
|
"@compiled/react": "^0.18.3",
|
|
63
63
|
"debounce-promise": "^3.1.2",
|
|
@@ -74,7 +74,7 @@
|
|
|
74
74
|
"@af/visual-regression": "workspace:^",
|
|
75
75
|
"@atlaskit/drawer": "^10.1.0",
|
|
76
76
|
"@atlaskit/link-test-helpers": "^8.0.0",
|
|
77
|
-
"@atlaskit/popup": "^4.
|
|
77
|
+
"@atlaskit/popup": "^4.2.0",
|
|
78
78
|
"@atlaskit/visual-regression": "workspace:^",
|
|
79
79
|
"@atlassian/feature-flags-test-utils": "^0.3.0",
|
|
80
80
|
"@testing-library/react": "^13.4.0",
|
|
@@ -128,6 +128,9 @@
|
|
|
128
128
|
"platform-feature-flags": {
|
|
129
129
|
"platform-link-create-button-migration": {
|
|
130
130
|
"type": "boolean"
|
|
131
|
+
},
|
|
132
|
+
"dst-a11y__replace-anchor-with-link__linking-platfo": {
|
|
133
|
+
"type": "boolean"
|
|
131
134
|
}
|
|
132
135
|
}
|
|
133
136
|
}
|