@atlaskit/link-picker 4.1.1 → 4.2.1
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 +19 -0
- package/dist/cjs/ui/link-picker/form-footer/index.js +0 -3
- package/dist/cjs/ui/link-picker/text-input/index.js +2 -2
- package/dist/cjs/ui/main.js +1 -1
- package/dist/es2019/ui/link-picker/form-footer/index.js +0 -3
- package/dist/es2019/ui/link-picker/text-input/index.js +1 -1
- package/dist/es2019/ui/main.js +1 -1
- package/dist/esm/ui/link-picker/form-footer/index.js +0 -3
- package/dist/esm/ui/link-picker/text-input/index.js +1 -1
- package/dist/esm/ui/main.js +1 -1
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,24 @@
|
|
|
1
1
|
# @atlaskit/link-picker
|
|
2
2
|
|
|
3
|
+
## 4.2.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`6a82d7964a37b`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/6a82d7964a37b) -
|
|
8
|
+
Icon entrypoint migration
|
|
9
|
+
- Updated dependencies
|
|
10
|
+
|
|
11
|
+
## 4.2.0
|
|
12
|
+
|
|
13
|
+
### Minor Changes
|
|
14
|
+
|
|
15
|
+
- [`762b79e21f96a`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/762b79e21f96a) -
|
|
16
|
+
Migrated and cleaned up legacy iconography usage.
|
|
17
|
+
|
|
18
|
+
### Patch Changes
|
|
19
|
+
|
|
20
|
+
- Updated dependencies
|
|
21
|
+
|
|
3
22
|
## 4.1.1
|
|
4
23
|
|
|
5
24
|
### Patch Changes
|
|
@@ -17,7 +17,6 @@ var _reactIntlNext = require("react-intl-next");
|
|
|
17
17
|
var _button = require("@atlaskit/button");
|
|
18
18
|
var _new = _interopRequireDefault(require("@atlaskit/button/new"));
|
|
19
19
|
var _add = _interopRequireDefault(require("@atlaskit/icon/core/add"));
|
|
20
|
-
var _add2 = _interopRequireDefault(require("@atlaskit/icon/glyph/editor/add"));
|
|
21
20
|
var _visuallyHidden = _interopRequireDefault(require("@atlaskit/visually-hidden"));
|
|
22
21
|
var _errors = require("../../../common/utils/errors");
|
|
23
22
|
var _linkPickerSubmitButton = require("./link-picker-submit-button");
|
|
@@ -71,8 +70,6 @@ var FormFooter = exports.FormFooter = /*#__PURE__*/(0, _react.memo)(function (_r
|
|
|
71
70
|
iconBefore: function iconBefore() {
|
|
72
71
|
return /*#__PURE__*/React.createElement(_add.default, {
|
|
73
72
|
label: "",
|
|
74
|
-
LEGACY_size: "medium",
|
|
75
|
-
LEGACY_fallbackIcon: _add2.default,
|
|
76
73
|
color: "currentColor",
|
|
77
74
|
size: "small"
|
|
78
75
|
});
|
|
@@ -14,7 +14,7 @@ var _objectWithoutProperties2 = _interopRequireDefault(require("@babel/runtime/h
|
|
|
14
14
|
var _react = _interopRequireWildcard(require("react"));
|
|
15
15
|
var _useCallbackRef = require("use-callback-ref");
|
|
16
16
|
var _form = require("@atlaskit/form");
|
|
17
|
-
var
|
|
17
|
+
var _crossCircle = _interopRequireDefault(require("@atlaskit/icon/core/cross-circle"));
|
|
18
18
|
var _compiled = require("@atlaskit/primitives/compiled");
|
|
19
19
|
var _textfield = _interopRequireDefault(require("@atlaskit/textfield"));
|
|
20
20
|
var _tooltip = _interopRequireDefault(require("@atlaskit/tooltip"));
|
|
@@ -100,7 +100,7 @@ var TextInput = exports.TextInput = function TextInput(_ref) {
|
|
|
100
100
|
xcss: styles.clearTextButton,
|
|
101
101
|
onClick: handleClear,
|
|
102
102
|
testId: testIds.clearUrlButton
|
|
103
|
-
}, /*#__PURE__*/_react.default.createElement(
|
|
103
|
+
}, /*#__PURE__*/_react.default.createElement(_crossCircle.default, {
|
|
104
104
|
LEGACY_size: "medium",
|
|
105
105
|
label: clearLabel || '',
|
|
106
106
|
color: "var(--ds-icon-subtle, #505258)",
|
package/dist/cjs/ui/main.js
CHANGED
|
@@ -25,7 +25,7 @@ var testIds = exports.testIds = {
|
|
|
25
25
|
};
|
|
26
26
|
var PACKAGE_DATA = exports.PACKAGE_DATA = {
|
|
27
27
|
packageName: "@atlaskit/link-picker" || '',
|
|
28
|
-
packageVersion: "
|
|
28
|
+
packageVersion: "0.0.0-development" || '',
|
|
29
29
|
componentName: _constants.COMPONENT_NAME,
|
|
30
30
|
source: _constants.COMPONENT_NAME
|
|
31
31
|
};
|
|
@@ -8,7 +8,6 @@ import { defineMessages, useIntl } from 'react-intl-next';
|
|
|
8
8
|
import { ButtonGroup } from '@atlaskit/button';
|
|
9
9
|
import Button from '@atlaskit/button/new';
|
|
10
10
|
import EditorAddIcon from '@atlaskit/icon/core/add';
|
|
11
|
-
import EditorAddIconLegacy from '@atlaskit/icon/glyph/editor/add';
|
|
12
11
|
import VisuallyHidden from '@atlaskit/visually-hidden';
|
|
13
12
|
import { UnauthenticatedError } from '../../../common/utils/errors';
|
|
14
13
|
import { LinkPickerSubmitButton } from './link-picker-submit-button';
|
|
@@ -58,8 +57,6 @@ export const FormFooter = /*#__PURE__*/memo(({
|
|
|
58
57
|
appearance: "default",
|
|
59
58
|
iconBefore: () => /*#__PURE__*/React.createElement(EditorAddIcon, {
|
|
60
59
|
label: "",
|
|
61
|
-
LEGACY_size: "medium",
|
|
62
|
-
LEGACY_fallbackIcon: EditorAddIconLegacy,
|
|
63
60
|
color: "currentColor",
|
|
64
61
|
size: "small"
|
|
65
62
|
}),
|
|
@@ -5,7 +5,7 @@ import { ax, ix } from "@compiled/react/runtime";
|
|
|
5
5
|
import React, { Fragment, useCallback, useMemo, useRef } from 'react';
|
|
6
6
|
import { useMergeRefs } from 'use-callback-ref';
|
|
7
7
|
import { ErrorMessage, Field } from '@atlaskit/form';
|
|
8
|
-
import Selectclear from '@atlaskit/icon/core/
|
|
8
|
+
import Selectclear from '@atlaskit/icon/core/cross-circle';
|
|
9
9
|
import { Box, Pressable } from '@atlaskit/primitives/compiled';
|
|
10
10
|
import Textfield from '@atlaskit/textfield';
|
|
11
11
|
import Tooltip from '@atlaskit/tooltip';
|
package/dist/es2019/ui/main.js
CHANGED
|
@@ -10,7 +10,6 @@ import { defineMessages, useIntl } from 'react-intl-next';
|
|
|
10
10
|
import { ButtonGroup } from '@atlaskit/button';
|
|
11
11
|
import Button from '@atlaskit/button/new';
|
|
12
12
|
import EditorAddIcon from '@atlaskit/icon/core/add';
|
|
13
|
-
import EditorAddIconLegacy from '@atlaskit/icon/glyph/editor/add';
|
|
14
13
|
import VisuallyHidden from '@atlaskit/visually-hidden';
|
|
15
14
|
import { UnauthenticatedError } from '../../../common/utils/errors';
|
|
16
15
|
import { LinkPickerSubmitButton } from './link-picker-submit-button';
|
|
@@ -62,8 +61,6 @@ export var FormFooter = /*#__PURE__*/memo(function (_ref) {
|
|
|
62
61
|
iconBefore: function iconBefore() {
|
|
63
62
|
return /*#__PURE__*/React.createElement(EditorAddIcon, {
|
|
64
63
|
label: "",
|
|
65
|
-
LEGACY_size: "medium",
|
|
66
|
-
LEGACY_fallbackIcon: EditorAddIconLegacy,
|
|
67
64
|
color: "currentColor",
|
|
68
65
|
size: "small"
|
|
69
66
|
});
|
|
@@ -7,7 +7,7 @@ import { ax, ix } from "@compiled/react/runtime";
|
|
|
7
7
|
import React, { Fragment, useCallback, useMemo, useRef } from 'react';
|
|
8
8
|
import { useMergeRefs } from 'use-callback-ref';
|
|
9
9
|
import { ErrorMessage, Field } from '@atlaskit/form';
|
|
10
|
-
import Selectclear from '@atlaskit/icon/core/
|
|
10
|
+
import Selectclear from '@atlaskit/icon/core/cross-circle';
|
|
11
11
|
import { Box, Pressable } from '@atlaskit/primitives/compiled';
|
|
12
12
|
import Textfield from '@atlaskit/textfield';
|
|
13
13
|
import Tooltip from '@atlaskit/tooltip';
|
package/dist/esm/ui/main.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/link-picker",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.2.1",
|
|
4
4
|
"description": "Standalone link picker",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"publishConfig": {
|
|
@@ -52,25 +52,25 @@
|
|
|
52
52
|
"@atlaskit/afm-i18n-platform-linking-platform-link-picker": "2.7.0",
|
|
53
53
|
"@atlaskit/analytics-next": "^11.1.0",
|
|
54
54
|
"@atlaskit/atlassian-context": "^0.6.0",
|
|
55
|
-
"@atlaskit/button": "^23.
|
|
56
|
-
"@atlaskit/css": "^0.
|
|
57
|
-
"@atlaskit/form": "^15.
|
|
55
|
+
"@atlaskit/button": "^23.9.0",
|
|
56
|
+
"@atlaskit/css": "^0.19.0",
|
|
57
|
+
"@atlaskit/form": "^15.1.0",
|
|
58
58
|
"@atlaskit/frontend-utilities": "^3.2.0",
|
|
59
59
|
"@atlaskit/heading": "^5.2.0",
|
|
60
|
-
"@atlaskit/icon": "^29.
|
|
60
|
+
"@atlaskit/icon": "^29.3.0",
|
|
61
61
|
"@atlaskit/intl-messages-provider": "^2.0.0",
|
|
62
62
|
"@atlaskit/link": "^3.2.0",
|
|
63
63
|
"@atlaskit/link-provider": "^4.0.0",
|
|
64
64
|
"@atlaskit/linking-common": "^9.9.0",
|
|
65
65
|
"@atlaskit/onboarding": "^14.4.0",
|
|
66
66
|
"@atlaskit/platform-feature-flags": "^1.1.0",
|
|
67
|
-
"@atlaskit/primitives": "^
|
|
68
|
-
"@atlaskit/smart-card": "^43.
|
|
67
|
+
"@atlaskit/primitives": "^17.0.0",
|
|
68
|
+
"@atlaskit/smart-card": "^43.17.0",
|
|
69
69
|
"@atlaskit/spinner": "^19.0.0",
|
|
70
70
|
"@atlaskit/tabs": "^18.3.0",
|
|
71
71
|
"@atlaskit/textfield": "^8.2.0",
|
|
72
72
|
"@atlaskit/theme": "^21.0.0",
|
|
73
|
-
"@atlaskit/tokens": "^
|
|
73
|
+
"@atlaskit/tokens": "^9.0.0",
|
|
74
74
|
"@atlaskit/tooltip": "^20.11.0",
|
|
75
75
|
"@atlaskit/ufo": "^0.4.0",
|
|
76
76
|
"@atlaskit/visually-hidden": "^3.0.0",
|