@atlaskit/link-picker 3.16.5 → 3.16.7
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 +12 -0
- package/compass.yml +3 -0
- package/dist/cjs/controllers/session-provider/index.js +3 -0
- package/dist/cjs/ui/link-picker/index.js +3 -1
- package/dist/cjs/ui/link-picker/search-results/link-search-list/index.compiled.css +1 -1
- package/dist/cjs/ui/link-picker/search-results/link-search-list/index.js +2 -2
- package/dist/cjs/ui/link-picker/text-input/index.js +1 -1
- package/dist/cjs/ui/main.js +1 -1
- package/dist/es2019/controllers/session-provider/index.js +3 -0
- package/dist/es2019/ui/link-picker/index.js +3 -0
- package/dist/es2019/ui/link-picker/search-results/link-search-list/index.compiled.css +1 -1
- package/dist/es2019/ui/link-picker/search-results/link-search-list/index.js +2 -2
- package/dist/es2019/ui/link-picker/text-input/index.js +1 -1
- package/dist/es2019/ui/main.js +1 -1
- package/dist/esm/controllers/session-provider/index.js +3 -0
- package/dist/esm/ui/link-picker/index.js +3 -0
- package/dist/esm/ui/link-picker/search-results/link-search-list/index.compiled.css +1 -1
- package/dist/esm/ui/link-picker/search-results/link-search-list/index.js +2 -2
- package/dist/esm/ui/link-picker/text-input/index.js +1 -1
- package/dist/esm/ui/main.js +1 -1
- package/package.json +7 -10
package/CHANGELOG.md
CHANGED
package/compass.yml
CHANGED
|
@@ -13,6 +13,9 @@ fields:
|
|
|
13
13
|
tier: 4
|
|
14
14
|
lifecycle: Active
|
|
15
15
|
links:
|
|
16
|
+
- name: Root Repository
|
|
17
|
+
type: REPOSITORY
|
|
18
|
+
url: https://bitbucket.org/atlassian/atlassian-frontend-monorepo/src/master
|
|
16
19
|
- name: SignalFx - Link Picker
|
|
17
20
|
type: DASHBOARD
|
|
18
21
|
url: 'https://atlassian.signalfx.com/#/dashboard/FdExWKXA4AY?groupId=Fcva05QA4AA&configId=FpAl8Y3AwAA&startTime=-31d&endTime=Now'
|
|
@@ -9,6 +9,8 @@ var _react = _interopRequireWildcard(require("react"));
|
|
|
9
9
|
var _uuid = require("uuid");
|
|
10
10
|
var _experiences = require("../../common/analytics/experiences");
|
|
11
11
|
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); }
|
|
12
|
+
// eslint-disable-next-line @atlaskit/platform/prefer-crypto-random-uuid -- Use crypto.randomUUID instead
|
|
13
|
+
|
|
12
14
|
var INIT_CONTEXT = exports.INIT_CONTEXT = 'SESSION_UNINITIALIZED';
|
|
13
15
|
var SessionContext = exports.SessionContext = /*#__PURE__*/(0, _react.createContext)(INIT_CONTEXT);
|
|
14
16
|
var useConstructor = function useConstructor(callback) {
|
|
@@ -21,6 +23,7 @@ var useConstructor = function useConstructor(callback) {
|
|
|
21
23
|
};
|
|
22
24
|
var LinkPickerSessionProvider = exports.LinkPickerSessionProvider = function LinkPickerSessionProvider(_ref) {
|
|
23
25
|
var children = _ref.children;
|
|
26
|
+
// eslint-disable-next-line @atlaskit/platform/prefer-crypto-random-uuid -- Use crypto.randomUUID instead
|
|
24
27
|
var _useRef = (0, _react.useRef)((0, _uuid.v4)()),
|
|
25
28
|
sessionId = _useRef.current;
|
|
26
29
|
(0, _react.useEffect)(function () {
|
|
@@ -46,7 +46,7 @@ var _trackMount = require("./track-mount");
|
|
|
46
46
|
var _utils = require("./utils");
|
|
47
47
|
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); }
|
|
48
48
|
function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
|
|
49
|
-
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { (0, _defineProperty2.default)(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
|
|
49
|
+
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { (0, _defineProperty2.default)(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; } // eslint-disable-next-line @atlaskit/platform/prefer-crypto-random-uuid -- Use crypto.randomUUID instead
|
|
50
50
|
var styles = {
|
|
51
51
|
fullWidthSubmitButton: "_19pkpxbi _1e0c1txw _2lx21bp4",
|
|
52
52
|
linkDisplayHelperTextContainer: "_19pk1b66 _syaz1be1",
|
|
@@ -166,6 +166,8 @@ var LinkPicker = exports.LinkPicker = (0, _analytics.withLinkPickerAnalyticsCont
|
|
|
166
166
|
var _useLinkPickerAnalyti = (0, _analytics.useLinkPickerAnalytics)(),
|
|
167
167
|
trackAttribute = _useLinkPickerAnalyti.trackAttribute,
|
|
168
168
|
getAttributes = _useLinkPickerAnalyti.getAttributes;
|
|
169
|
+
|
|
170
|
+
// eslint-disable-next-line @atlaskit/platform/prefer-crypto-random-uuid -- Use crypto.randomUUID instead
|
|
169
171
|
var submitMessageId = (0, _react.useMemo)(function () {
|
|
170
172
|
return (0, _uuid.default)();
|
|
171
173
|
}, []);
|
|
@@ -19,5 +19,5 @@
|
|
|
19
19
|
._otyr1b66{margin-bottom:var(--ds-space-050,4px)}
|
|
20
20
|
._otyrpxbi{margin-bottom:var(--ds-space-200,1pc)}
|
|
21
21
|
._otyrze3t{margin-bottom:var(--ds-space-0,0)}
|
|
22
|
-
.
|
|
22
|
+
._syazazsu{color:var(--ds-text-subtle,#505258)}
|
|
23
23
|
._u5f3ze3t{padding-right:var(--ds-space-0,0)}
|
|
@@ -40,7 +40,7 @@ var listTitleStyles = {
|
|
|
40
40
|
font: "var(--ds-font-body-small, normal 400 11px/16px ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, \"Helvetica Neue\", sans-serif)",
|
|
41
41
|
fontWeight: "var(--ds-font-weight-bold, 700)",
|
|
42
42
|
marginBottom: "var(--ds-space-050, 4px)",
|
|
43
|
-
color: "var(--ds-text-subtle, #
|
|
43
|
+
color: "var(--ds-text-subtle, #505258)"
|
|
44
44
|
};
|
|
45
45
|
var messages = exports.messages = (0, _reactIntlNext.defineMessages)({
|
|
46
46
|
titleRecentlyViewed: {
|
|
@@ -161,7 +161,7 @@ var LinkSearchList = exports.LinkSearchList = /*#__PURE__*/(0, _react.forwardRef
|
|
|
161
161
|
}, /*#__PURE__*/React.createElement(_reactIntlNext.FormattedMessage, linkListTitle)) : /*#__PURE__*/React.createElement("div", {
|
|
162
162
|
id: testIds.resultListTitle,
|
|
163
163
|
"data-testid": testIds.resultListTitle,
|
|
164
|
-
className: (0, _runtime.ax)(["_11c81o8v _k48pmoej _otyr1b66", "
|
|
164
|
+
className: (0, _runtime.ax)(["_11c81o8v _k48pmoej _otyr1b66", "_syazazsu"])
|
|
165
165
|
}, /*#__PURE__*/React.createElement(_reactIntlNext.FormattedMessage, linkListTitle)), /*#__PURE__*/React.createElement(_visuallyHidden.default, {
|
|
166
166
|
id: "fabric.smartcard.linkpicker.suggested.results"
|
|
167
167
|
}, hasSearchTerm && /*#__PURE__*/React.createElement(_reactIntlNext.FormattedMessage, (0, _extends2.default)({}, messages.searchLinkResults, {
|
|
@@ -103,7 +103,7 @@ var TextInput = exports.TextInput = function TextInput(_ref) {
|
|
|
103
103
|
}, /*#__PURE__*/_react.default.createElement(_crossCircleSelectClear.default, {
|
|
104
104
|
LEGACY_size: "medium",
|
|
105
105
|
label: clearLabel || '',
|
|
106
|
-
color: "var(--ds-icon-subtle, #
|
|
106
|
+
color: "var(--ds-icon-subtle, #505258)",
|
|
107
107
|
spacing: "spacious"
|
|
108
108
|
})));
|
|
109
109
|
return /*#__PURE__*/_react.default.createElement("div", {
|
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: "3.16.
|
|
28
|
+
packageVersion: "3.16.6" || '',
|
|
29
29
|
componentName: _constants.COMPONENT_NAME,
|
|
30
30
|
source: _constants.COMPONENT_NAME
|
|
31
31
|
};
|
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
import React, { createContext, useContext, useEffect, useRef } from 'react';
|
|
2
|
+
|
|
3
|
+
// eslint-disable-next-line @atlaskit/platform/prefer-crypto-random-uuid -- Use crypto.randomUUID instead
|
|
2
4
|
import { v4 as uuidv4 } from 'uuid';
|
|
3
5
|
import { abortUfoExperience, startUfoExperience, ufoExperience } from '../../common/analytics/experiences';
|
|
4
6
|
export const INIT_CONTEXT = 'SESSION_UNINITIALIZED';
|
|
@@ -14,6 +16,7 @@ const useConstructor = callback => {
|
|
|
14
16
|
export const LinkPickerSessionProvider = ({
|
|
15
17
|
children
|
|
16
18
|
}) => {
|
|
19
|
+
// eslint-disable-next-line @atlaskit/platform/prefer-crypto-random-uuid -- Use crypto.randomUUID instead
|
|
17
20
|
const {
|
|
18
21
|
current: sessionId
|
|
19
22
|
} = useRef(uuidv4());
|
|
@@ -5,6 +5,7 @@ import * as React from 'react';
|
|
|
5
5
|
import { ax, ix } from "@compiled/react/runtime";
|
|
6
6
|
import { Fragment, memo, useCallback, useLayoutEffect, useMemo, useReducer } from 'react';
|
|
7
7
|
import { FormattedMessage, useIntl } from 'react-intl-next';
|
|
8
|
+
// eslint-disable-next-line @atlaskit/platform/prefer-crypto-random-uuid -- Use crypto.randomUUID instead
|
|
8
9
|
import uuid from 'uuid';
|
|
9
10
|
import { useAnalyticsEvents } from '@atlaskit/analytics-next';
|
|
10
11
|
import FeatureGates from '@atlaskit/feature-gate-js-client';
|
|
@@ -157,6 +158,8 @@ export const LinkPicker = withLinkPickerAnalyticsContext( /*#__PURE__*/memo(({
|
|
|
157
158
|
trackAttribute,
|
|
158
159
|
getAttributes
|
|
159
160
|
} = useLinkPickerAnalytics();
|
|
161
|
+
|
|
162
|
+
// eslint-disable-next-line @atlaskit/platform/prefer-crypto-random-uuid -- Use crypto.randomUUID instead
|
|
160
163
|
const submitMessageId = useMemo(() => uuid(), []);
|
|
161
164
|
useLayoutEffect(() => {
|
|
162
165
|
if (onContentResize) {
|
|
@@ -19,5 +19,5 @@
|
|
|
19
19
|
._otyr1b66{margin-bottom:var(--ds-space-050,4px)}
|
|
20
20
|
._otyrpxbi{margin-bottom:var(--ds-space-200,1pc)}
|
|
21
21
|
._otyrze3t{margin-bottom:var(--ds-space-0,0)}
|
|
22
|
-
.
|
|
22
|
+
._syazazsu{color:var(--ds-text-subtle,#505258)}
|
|
23
23
|
._u5f3ze3t{padding-right:var(--ds-space-0,0)}
|
|
@@ -26,7 +26,7 @@ const listTitleStyles = {
|
|
|
26
26
|
font: "var(--ds-font-body-small, normal 400 11px/16px ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, \"Helvetica Neue\", sans-serif)",
|
|
27
27
|
fontWeight: "var(--ds-font-weight-bold, 700)",
|
|
28
28
|
marginBottom: "var(--ds-space-050, 4px)",
|
|
29
|
-
color: "var(--ds-text-subtle, #
|
|
29
|
+
color: "var(--ds-text-subtle, #505258)"
|
|
30
30
|
};
|
|
31
31
|
export const messages = defineMessages({
|
|
32
32
|
titleRecentlyViewed: {
|
|
@@ -150,7 +150,7 @@ export const LinkSearchList = /*#__PURE__*/forwardRef(({
|
|
|
150
150
|
}, /*#__PURE__*/React.createElement(FormattedMessage, linkListTitle)) : /*#__PURE__*/React.createElement("div", {
|
|
151
151
|
id: testIds.resultListTitle,
|
|
152
152
|
"data-testid": testIds.resultListTitle,
|
|
153
|
-
className: ax(["_11c81o8v _k48pmoej _otyr1b66", "
|
|
153
|
+
className: ax(["_11c81o8v _k48pmoej _otyr1b66", "_syazazsu"])
|
|
154
154
|
}, /*#__PURE__*/React.createElement(FormattedMessage, linkListTitle)), /*#__PURE__*/React.createElement(VisuallyHidden, {
|
|
155
155
|
id: "fabric.smartcard.linkpicker.suggested.results"
|
|
156
156
|
}, hasSearchTerm && /*#__PURE__*/React.createElement(FormattedMessage, _extends({}, messages.searchLinkResults, {
|
|
@@ -90,7 +90,7 @@ export const TextInput = ({
|
|
|
90
90
|
}, /*#__PURE__*/React.createElement(Selectclear, {
|
|
91
91
|
LEGACY_size: "medium",
|
|
92
92
|
label: clearLabel || '',
|
|
93
|
-
color: "var(--ds-icon-subtle, #
|
|
93
|
+
color: "var(--ds-icon-subtle, #505258)",
|
|
94
94
|
spacing: "spacious"
|
|
95
95
|
})));
|
|
96
96
|
return /*#__PURE__*/React.createElement("div", {
|
package/dist/es2019/ui/main.js
CHANGED
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
import React, { createContext, useContext, useEffect, useRef } from 'react';
|
|
2
|
+
|
|
3
|
+
// eslint-disable-next-line @atlaskit/platform/prefer-crypto-random-uuid -- Use crypto.randomUUID instead
|
|
2
4
|
import { v4 as uuidv4 } from 'uuid';
|
|
3
5
|
import { abortUfoExperience, startUfoExperience, ufoExperience } from '../../common/analytics/experiences';
|
|
4
6
|
export var INIT_CONTEXT = 'SESSION_UNINITIALIZED';
|
|
@@ -13,6 +15,7 @@ var useConstructor = function useConstructor(callback) {
|
|
|
13
15
|
};
|
|
14
16
|
export var LinkPickerSessionProvider = function LinkPickerSessionProvider(_ref) {
|
|
15
17
|
var children = _ref.children;
|
|
18
|
+
// eslint-disable-next-line @atlaskit/platform/prefer-crypto-random-uuid -- Use crypto.randomUUID instead
|
|
16
19
|
var _useRef = useRef(uuidv4()),
|
|
17
20
|
sessionId = _useRef.current;
|
|
18
21
|
useEffect(function () {
|
|
@@ -11,6 +11,7 @@ function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbol
|
|
|
11
11
|
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
|
|
12
12
|
import { Fragment, memo, useCallback, useLayoutEffect, useMemo, useReducer } from 'react';
|
|
13
13
|
import { FormattedMessage, useIntl } from 'react-intl-next';
|
|
14
|
+
// eslint-disable-next-line @atlaskit/platform/prefer-crypto-random-uuid -- Use crypto.randomUUID instead
|
|
14
15
|
import uuid from 'uuid';
|
|
15
16
|
import { useAnalyticsEvents } from '@atlaskit/analytics-next';
|
|
16
17
|
import FeatureGates from '@atlaskit/feature-gate-js-client';
|
|
@@ -157,6 +158,8 @@ export var LinkPicker = withLinkPickerAnalyticsContext( /*#__PURE__*/memo(functi
|
|
|
157
158
|
var _useLinkPickerAnalyti = useLinkPickerAnalytics(),
|
|
158
159
|
trackAttribute = _useLinkPickerAnalyti.trackAttribute,
|
|
159
160
|
getAttributes = _useLinkPickerAnalyti.getAttributes;
|
|
161
|
+
|
|
162
|
+
// eslint-disable-next-line @atlaskit/platform/prefer-crypto-random-uuid -- Use crypto.randomUUID instead
|
|
160
163
|
var submitMessageId = useMemo(function () {
|
|
161
164
|
return uuid();
|
|
162
165
|
}, []);
|
|
@@ -19,5 +19,5 @@
|
|
|
19
19
|
._otyr1b66{margin-bottom:var(--ds-space-050,4px)}
|
|
20
20
|
._otyrpxbi{margin-bottom:var(--ds-space-200,1pc)}
|
|
21
21
|
._otyrze3t{margin-bottom:var(--ds-space-0,0)}
|
|
22
|
-
.
|
|
22
|
+
._syazazsu{color:var(--ds-text-subtle,#505258)}
|
|
23
23
|
._u5f3ze3t{padding-right:var(--ds-space-0,0)}
|
|
@@ -31,7 +31,7 @@ var listTitleStyles = {
|
|
|
31
31
|
font: "var(--ds-font-body-small, normal 400 11px/16px ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, \"Helvetica Neue\", sans-serif)",
|
|
32
32
|
fontWeight: "var(--ds-font-weight-bold, 700)",
|
|
33
33
|
marginBottom: "var(--ds-space-050, 4px)",
|
|
34
|
-
color: "var(--ds-text-subtle, #
|
|
34
|
+
color: "var(--ds-text-subtle, #505258)"
|
|
35
35
|
};
|
|
36
36
|
export var messages = defineMessages({
|
|
37
37
|
titleRecentlyViewed: {
|
|
@@ -152,7 +152,7 @@ export var LinkSearchList = /*#__PURE__*/forwardRef(function (_ref, ref) {
|
|
|
152
152
|
}, /*#__PURE__*/React.createElement(FormattedMessage, linkListTitle)) : /*#__PURE__*/React.createElement("div", {
|
|
153
153
|
id: testIds.resultListTitle,
|
|
154
154
|
"data-testid": testIds.resultListTitle,
|
|
155
|
-
className: ax(["_11c81o8v _k48pmoej _otyr1b66", "
|
|
155
|
+
className: ax(["_11c81o8v _k48pmoej _otyr1b66", "_syazazsu"])
|
|
156
156
|
}, /*#__PURE__*/React.createElement(FormattedMessage, linkListTitle)), /*#__PURE__*/React.createElement(VisuallyHidden, {
|
|
157
157
|
id: "fabric.smartcard.linkpicker.suggested.results"
|
|
158
158
|
}, hasSearchTerm && /*#__PURE__*/React.createElement(FormattedMessage, _extends({}, messages.searchLinkResults, {
|
|
@@ -94,7 +94,7 @@ export var TextInput = function TextInput(_ref) {
|
|
|
94
94
|
}, /*#__PURE__*/React.createElement(Selectclear, {
|
|
95
95
|
LEGACY_size: "medium",
|
|
96
96
|
label: clearLabel || '',
|
|
97
|
-
color: "var(--ds-icon-subtle, #
|
|
97
|
+
color: "var(--ds-icon-subtle, #505258)",
|
|
98
98
|
spacing: "spacious"
|
|
99
99
|
})));
|
|
100
100
|
return /*#__PURE__*/React.createElement("div", {
|
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": "3.16.
|
|
3
|
+
"version": "3.16.7",
|
|
4
4
|
"description": "Standalone link picker",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"publishConfig": {
|
|
@@ -35,9 +35,6 @@
|
|
|
35
35
|
"platform-linking-link-picker-previewable-only": {
|
|
36
36
|
"type": "boolean"
|
|
37
37
|
},
|
|
38
|
-
"platform-visual-refresh-icons": {
|
|
39
|
-
"type": "boolean"
|
|
40
|
-
},
|
|
41
38
|
"dst-a11y__replace-anchor-with-link__linking-platfo": {
|
|
42
39
|
"type": "boolean"
|
|
43
40
|
},
|
|
@@ -55,27 +52,27 @@
|
|
|
55
52
|
"@atlaskit/afm-i18n-platform-linking-platform-link-picker": "2.7.0",
|
|
56
53
|
"@atlaskit/analytics-next": "^11.1.0",
|
|
57
54
|
"@atlaskit/atlassian-context": "^0.6.0",
|
|
58
|
-
"@atlaskit/button": "^23.
|
|
55
|
+
"@atlaskit/button": "^23.6.0",
|
|
59
56
|
"@atlaskit/css": "^0.15.0",
|
|
60
57
|
"@atlaskit/feature-gate-js-client": "^5.5.0",
|
|
61
58
|
"@atlaskit/form": "^14.2.0",
|
|
62
59
|
"@atlaskit/frontend-utilities": "^3.2.0",
|
|
63
60
|
"@atlaskit/heading": "^5.2.0",
|
|
64
|
-
"@atlaskit/icon": "^
|
|
61
|
+
"@atlaskit/icon": "^29.0.0",
|
|
65
62
|
"@atlaskit/intl-messages-provider": "^2.0.0",
|
|
66
63
|
"@atlaskit/link": "^3.2.0",
|
|
67
64
|
"@atlaskit/link-provider": "^4.0.0",
|
|
68
|
-
"@atlaskit/linking-common": "^9.
|
|
65
|
+
"@atlaskit/linking-common": "^9.8.0",
|
|
69
66
|
"@atlaskit/onboarding": "^14.4.0",
|
|
70
67
|
"@atlaskit/platform-feature-flags": "^1.1.0",
|
|
71
68
|
"@atlaskit/primitives": "^16.1.0",
|
|
72
|
-
"@atlaskit/smart-card": "^43.
|
|
69
|
+
"@atlaskit/smart-card": "^43.6.0",
|
|
73
70
|
"@atlaskit/spinner": "^19.0.0",
|
|
74
71
|
"@atlaskit/tabs": "^18.2.0",
|
|
75
72
|
"@atlaskit/textfield": "^8.0.0",
|
|
76
73
|
"@atlaskit/theme": "^21.0.0",
|
|
77
|
-
"@atlaskit/tokens": "^
|
|
78
|
-
"@atlaskit/tooltip": "^20.
|
|
74
|
+
"@atlaskit/tokens": "^8.0.0",
|
|
75
|
+
"@atlaskit/tooltip": "^20.8.0",
|
|
79
76
|
"@atlaskit/ufo": "^0.4.0",
|
|
80
77
|
"@atlaskit/visually-hidden": "^3.0.0",
|
|
81
78
|
"@babel/runtime": "^7.0.0",
|