@atlaskit/link-create 6.8.3 → 6.9.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 +11 -0
- package/analytics.spec.yaml +2 -2
- package/dist/cjs/common/constants.js +1 -1
- package/dist/cjs/common/ui/error-boundary-modal/index.js +1 -1
- package/dist/cjs/ui/create-form/select/main.js +1 -1
- package/dist/es2019/common/constants.js +1 -1
- package/dist/es2019/common/ui/error-boundary-modal/index.js +1 -1
- package/dist/es2019/ui/create-form/select/main.js +1 -1
- package/dist/esm/common/constants.js +1 -1
- package/dist/esm/common/ui/error-boundary-modal/index.js +1 -1
- package/dist/esm/ui/create-form/select/main.js +1 -1
- package/example-helpers/mock-plugin-form.tsx +0 -1
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# @atlaskit/link-create
|
|
2
2
|
|
|
3
|
+
## 6.9.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`69cbbe9ee0f63`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/69cbbe9ee0f63) -
|
|
8
|
+
Update i18n NPM package versions for linking-platform,smart-experiences (Group 15)
|
|
9
|
+
|
|
10
|
+
### Patch Changes
|
|
11
|
+
|
|
12
|
+
- Updated dependencies
|
|
13
|
+
|
|
3
14
|
## 6.8.3
|
|
4
15
|
|
|
5
16
|
### Patch Changes
|
package/analytics.spec.yaml
CHANGED
|
@@ -141,8 +141,8 @@ events:
|
|
|
141
141
|
type: number
|
|
142
142
|
required: false
|
|
143
143
|
description:
|
|
144
|
-
the HTTP status code, when the failure originated from a non-OK network response.
|
|
145
|
-
|
|
144
|
+
the HTTP status code, when the failure originated from a non-OK network response. Absent
|
|
145
|
+
otherwise
|
|
146
146
|
|
|
147
147
|
- linkCreateExperience failed:
|
|
148
148
|
type: operational
|
|
@@ -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: "6.8.
|
|
19
|
+
packageVersion: "6.8.3" || '',
|
|
20
20
|
component: COMPONENT_NAME,
|
|
21
21
|
componentName: COMPONENT_NAME
|
|
22
22
|
};
|
|
@@ -6,8 +6,8 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
6
6
|
});
|
|
7
7
|
exports.ErrorBoundaryModal = void 0;
|
|
8
8
|
var _react = _interopRequireDefault(require("react"));
|
|
9
|
-
var _modalDialog = _interopRequireDefault(require("@atlaskit/modal-dialog/modal-dialog"));
|
|
10
9
|
var _modalBody = _interopRequireDefault(require("@atlaskit/modal-dialog/modal-body"));
|
|
10
|
+
var _modalDialog = _interopRequireDefault(require("@atlaskit/modal-dialog/modal-dialog"));
|
|
11
11
|
var _modalHeader = _interopRequireDefault(require("@atlaskit/modal-dialog/modal-header"));
|
|
12
12
|
var _modalTransition = _interopRequireDefault(require("@atlaskit/modal-dialog/modal-transition"));
|
|
13
13
|
var _constants = require("../../constants");
|
|
@@ -12,8 +12,8 @@ var _objectWithoutProperties2 = _interopRequireDefault(require("@babel/runtime/h
|
|
|
12
12
|
var _react = _interopRequireDefault(require("react"));
|
|
13
13
|
var _reactIntl = require("react-intl");
|
|
14
14
|
var _compiled = require("@atlaskit/primitives/compiled");
|
|
15
|
-
var _default = _interopRequireDefault(require("@atlaskit/select/default"));
|
|
16
15
|
var _components = require("@atlaskit/react-select/components");
|
|
16
|
+
var _default = _interopRequireDefault(require("@atlaskit/select/default"));
|
|
17
17
|
var _constants = require("@atlaskit/theme/constants");
|
|
18
18
|
var _icon = require("../../../common/ui/icon");
|
|
19
19
|
var _main = require("../../../controllers/create-field/main");
|
|
@@ -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: "6.8.
|
|
13
|
+
packageVersion: "6.8.3" || '',
|
|
14
14
|
component: COMPONENT_NAME,
|
|
15
15
|
componentName: COMPONENT_NAME
|
|
16
16
|
};
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import Modal from '@atlaskit/modal-dialog/modal-dialog';
|
|
3
2
|
import ModalBody from '@atlaskit/modal-dialog/modal-body';
|
|
3
|
+
import Modal from '@atlaskit/modal-dialog/modal-dialog';
|
|
4
4
|
import ModalHeader from '@atlaskit/modal-dialog/modal-header';
|
|
5
5
|
import ModalTransition from '@atlaskit/modal-dialog/modal-transition';
|
|
6
6
|
import { CREATE_FORM_MAX_WIDTH_IN_PX } from '../../constants';
|
|
@@ -2,8 +2,8 @@ import _extends from "@babel/runtime/helpers/extends";
|
|
|
2
2
|
import React from 'react';
|
|
3
3
|
import { useIntl } from 'react-intl';
|
|
4
4
|
import { Inline } from '@atlaskit/primitives/compiled';
|
|
5
|
-
import AkSelect from '@atlaskit/select/default';
|
|
6
5
|
import { components } from '@atlaskit/react-select/components';
|
|
6
|
+
import AkSelect from '@atlaskit/select/default';
|
|
7
7
|
import { layers } from '@atlaskit/theme/constants';
|
|
8
8
|
import { UrlIcon } from '../../../common/ui/icon';
|
|
9
9
|
import { CreateField } from '../../../controllers/create-field/main';
|
|
@@ -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: "6.8.
|
|
13
|
+
packageVersion: "6.8.3" || '',
|
|
14
14
|
component: COMPONENT_NAME,
|
|
15
15
|
componentName: COMPONENT_NAME
|
|
16
16
|
};
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import Modal from '@atlaskit/modal-dialog/modal-dialog';
|
|
3
2
|
import ModalBody from '@atlaskit/modal-dialog/modal-body';
|
|
3
|
+
import Modal from '@atlaskit/modal-dialog/modal-dialog';
|
|
4
4
|
import ModalHeader from '@atlaskit/modal-dialog/modal-header';
|
|
5
5
|
import ModalTransition from '@atlaskit/modal-dialog/modal-transition';
|
|
6
6
|
import { CREATE_FORM_MAX_WIDTH_IN_PX } from '../../constants';
|
|
@@ -10,8 +10,8 @@ function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t =
|
|
|
10
10
|
import React from 'react';
|
|
11
11
|
import { useIntl } from 'react-intl';
|
|
12
12
|
import { Inline } from '@atlaskit/primitives/compiled';
|
|
13
|
-
import AkSelect from '@atlaskit/select/default';
|
|
14
13
|
import { components } from '@atlaskit/react-select/components';
|
|
14
|
+
import AkSelect from '@atlaskit/select/default';
|
|
15
15
|
import { layers } from '@atlaskit/theme/constants';
|
|
16
16
|
import { UrlIcon } from '../../../common/ui/icon';
|
|
17
17
|
import { CreateField } from '../../../controllers/create-field/main';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/link-create",
|
|
3
|
-
"version": "6.
|
|
3
|
+
"version": "6.9.0",
|
|
4
4
|
"description": "The driver component of meta creation flow",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -34,10 +34,10 @@
|
|
|
34
34
|
],
|
|
35
35
|
"atlaskit:src": "src/index.ts",
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@atlaskit/afm-i18n-platform-linking-platform-link-create": "2.
|
|
37
|
+
"@atlaskit/afm-i18n-platform-linking-platform-link-create": "2.258.0",
|
|
38
38
|
"@atlaskit/analytics-next": "^12.5.0",
|
|
39
39
|
"@atlaskit/atlassian-context": "^1.2.0",
|
|
40
|
-
"@atlaskit/button": "^25.
|
|
40
|
+
"@atlaskit/button": "^25.4.0",
|
|
41
41
|
"@atlaskit/css": "^1.1.0",
|
|
42
42
|
"@atlaskit/empty-state": "^12.2.0",
|
|
43
43
|
"@atlaskit/form": "^17.2.0",
|
|
@@ -53,11 +53,11 @@
|
|
|
53
53
|
"@atlaskit/react-compiler-gating": "^0.2.0",
|
|
54
54
|
"@atlaskit/react-select": "^4.9.0",
|
|
55
55
|
"@atlaskit/select": "^22.11.0",
|
|
56
|
-
"@atlaskit/smart-user-picker": "^11.
|
|
56
|
+
"@atlaskit/smart-user-picker": "^11.9.0",
|
|
57
57
|
"@atlaskit/spinner": "^20.4.0",
|
|
58
58
|
"@atlaskit/textfield": "^10.2.0",
|
|
59
59
|
"@atlaskit/theme": "^28.2.0",
|
|
60
|
-
"@atlaskit/tokens": "^18.
|
|
60
|
+
"@atlaskit/tokens": "^18.3.0",
|
|
61
61
|
"@babel/runtime": "^7.0.0",
|
|
62
62
|
"@compiled/react": "^1.0.2",
|
|
63
63
|
"debounce-promise": "^3.1.2",
|
|
@@ -73,7 +73,7 @@
|
|
|
73
73
|
"@af/integration-testing": "workspace:^",
|
|
74
74
|
"@af/visual-regression": "workspace:^",
|
|
75
75
|
"@atlaskit/drawer": "^14.3.0",
|
|
76
|
-
"@atlaskit/link-picker": "^6.
|
|
76
|
+
"@atlaskit/link-picker": "^6.9.0",
|
|
77
77
|
"@atlaskit/link-test-helpers": "^11.2.0",
|
|
78
78
|
"@atlaskit/popup": "^6.3.0",
|
|
79
79
|
"@atlassian/a11y-jest-testing": "^0.17.0",
|