@atlaskit/link-picker 3.11.4 → 3.12.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 +8 -0
- package/dist/cjs/services/use-plugins/index.js +4 -4
- package/dist/cjs/ui/link-picker/index.js +6 -3
- package/dist/cjs/ui/link-picker/search-results/index.js +5 -2
- package/dist/cjs/ui/main.js +1 -1
- package/dist/es2019/services/use-plugins/index.js +4 -4
- package/dist/es2019/ui/link-picker/index.js +6 -3
- package/dist/es2019/ui/link-picker/search-results/index.js +5 -2
- package/dist/es2019/ui/main.js +1 -1
- package/dist/esm/services/use-plugins/index.js +4 -4
- package/dist/esm/ui/link-picker/index.js +6 -3
- package/dist/esm/ui/link-picker/search-results/index.js +5 -2
- package/dist/esm/ui/main.js +1 -1
- package/dist/types/services/use-plugins/index.d.ts +1 -1
- package/dist/types-ts4.5/services/use-plugins/index.d.ts +1 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# @atlaskit/link-picker
|
|
2
2
|
|
|
3
|
+
## 3.12.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`123919fe0f440`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/123919fe0f440) -
|
|
8
|
+
[ux] Added support for a OneDrive tab with the same functionality as the Google Drive tab in link
|
|
9
|
+
picker
|
|
10
|
+
|
|
3
11
|
## 3.11.4
|
|
4
12
|
|
|
5
13
|
### Patch Changes
|
|
@@ -20,7 +20,7 @@ var _utils = require("./utils");
|
|
|
20
20
|
|
|
21
21
|
function usePlugins(state, activeTab, plugins) {
|
|
22
22
|
var _activePlugin$tabKey;
|
|
23
|
-
var
|
|
23
|
+
var thirdPartyTabExperimentEnabled = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : false;
|
|
24
24
|
var _useAnalyticsEvents = (0, _analyticsNext.useAnalyticsEvents)(),
|
|
25
25
|
createAnalyticsEvent = _useAnalyticsEvents.createAnalyticsEvent;
|
|
26
26
|
var _useState = (0, _react.useState)(0),
|
|
@@ -136,13 +136,13 @@ function usePlugins(state, activeTab, plugins) {
|
|
|
136
136
|
isLoading = pluginState.isLoading,
|
|
137
137
|
error = pluginState.error;
|
|
138
138
|
|
|
139
|
-
// This is needed for the
|
|
139
|
+
// This is needed for the 3P tab experiments to show a persistent banner across tabs. Will be removed once the experiment is over regardless of outcome.
|
|
140
140
|
var pluginBanner = (0, _react.useMemo)(function () {
|
|
141
141
|
var _plugins$find;
|
|
142
|
-
return
|
|
142
|
+
return thirdPartyTabExperimentEnabled ? plugins === null || plugins === void 0 || (_plugins$find = plugins.find(function (plugin) {
|
|
143
143
|
return plugin.banner;
|
|
144
144
|
})) === null || _plugins$find === void 0 ? void 0 : _plugins$find.banner : undefined;
|
|
145
|
-
}, [plugins,
|
|
145
|
+
}, [plugins, thirdPartyTabExperimentEnabled]);
|
|
146
146
|
return {
|
|
147
147
|
tabs: tabs,
|
|
148
148
|
items: items,
|
|
@@ -137,10 +137,13 @@ var LinkPicker = exports.LinkPicker = (0, _analytics.withLinkPickerAnalyticsCont
|
|
|
137
137
|
var intl = (0, _reactIntlNext.useIntl)();
|
|
138
138
|
var queryState = (0, _useSearchQuery.useSearchQuery)(state);
|
|
139
139
|
|
|
140
|
-
// Experiment with new 3P tabs in link picker
|
|
140
|
+
// Experiment with new 3P tabs in link picker. For more info, please see: go/link-picker-3p-drive-one-pager.
|
|
141
141
|
var linkPicker3pDriveExperimentCohort = _featureGateJsClient.default.initializeCalled() ? _featureGateJsClient.default.getExperimentValue('link_picker_3p_drive_experiment', 'cohort', 'control') : 'control';
|
|
142
142
|
var googleDriveTabExperimentEnabled = linkPicker3pDriveExperimentCohort === 'show_google_drive_tab';
|
|
143
|
-
var
|
|
143
|
+
var linkPicker3pOneDriveExperimentCohort = _featureGateJsClient.default.initializeCalled() ? _featureGateJsClient.default.getExperimentValue('link_picker_3p_onedrive_experiment', 'cohort', 'control') : 'control';
|
|
144
|
+
var oneDriveTabExperimentEnabled = linkPicker3pOneDriveExperimentCohort === 'show_onedrive_tab';
|
|
145
|
+
var thirdPartyTabExperimentEnabled = googleDriveTabExperimentEnabled || oneDriveTabExperimentEnabled;
|
|
146
|
+
var _usePlugins = (0, _usePlugins2.usePlugins)(queryState, activeTab, plugins, thirdPartyTabExperimentEnabled),
|
|
144
147
|
items = _usePlugins.items,
|
|
145
148
|
isLoadingResults = _usePlugins.isLoading,
|
|
146
149
|
isActivePlugin = _usePlugins.isActivePlugin,
|
|
@@ -478,7 +481,7 @@ var LinkPicker = exports.LinkPicker = (0, _analytics.withLinkPickerAnalyticsCont
|
|
|
478
481
|
submitMessageId: submitMessageId,
|
|
479
482
|
testId: testIds.insertButton,
|
|
480
483
|
url: url
|
|
481
|
-
})),
|
|
484
|
+
})), thirdPartyTabExperimentEnabled && pluginBanner && pluginBanner(), !!queryState && (isLoadingPlugins || isActivePlugin) && /*#__PURE__*/React.createElement(_searchResults.SearchResults, {
|
|
482
485
|
activeTab: activeTab,
|
|
483
486
|
tabs: tabs,
|
|
484
487
|
activePlugin: activePlugin,
|
|
@@ -55,10 +55,13 @@ var SearchResults = exports.SearchResults = function SearchResults(_ref) {
|
|
|
55
55
|
adaptiveHeight = _ref.adaptiveHeight,
|
|
56
56
|
retry = _ref.retry;
|
|
57
57
|
var isActivePlugin = !!activePlugin;
|
|
58
|
-
// Experiment with new 3P tabs in link picker
|
|
58
|
+
// Experiment with new 3P tabs in link picker. For more info, please see: go/link-picker-3p-drive-one-pager.
|
|
59
59
|
var linkPicker3pDriveExperimentCohort = _featureGateJsClient.default.initializeCalled() ? _featureGateJsClient.default.getExperimentValue('link_picker_3p_drive_experiment', 'cohort', 'control') : 'control';
|
|
60
60
|
var googleDriveTabExperimentEnabled = linkPicker3pDriveExperimentCohort === 'show_google_drive_tab';
|
|
61
|
-
var
|
|
61
|
+
var linkPicker3pOneDriveExperimentCohort = _featureGateJsClient.default.initializeCalled() ? _featureGateJsClient.default.getExperimentValue('link_picker_3p_onedrive_experiment', 'cohort', 'control') : 'control';
|
|
62
|
+
var oneDriveTabExperimentEnabled = linkPicker3pOneDriveExperimentCohort === 'show_onedrive_tab';
|
|
63
|
+
var thirdPartyTabExperimentEnabled = googleDriveTabExperimentEnabled || oneDriveTabExperimentEnabled;
|
|
64
|
+
var showScrollingTabList = (featureFlags === null || featureFlags === void 0 ? void 0 : featureFlags.scrollingTabs) || thirdPartyTabExperimentEnabled;
|
|
62
65
|
var tabList = /*#__PURE__*/React.createElement(_tabs.TabList, null, tabs.map(function (tab) {
|
|
63
66
|
return /*#__PURE__*/React.createElement(_tabs.Tab, {
|
|
64
67
|
key: tab.tabTitle,
|
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
|
};
|
|
@@ -7,7 +7,7 @@ import { ANALYTICS_CHANNEL, RECENT_SEARCH_LIST_SIZE } from '../../common/constan
|
|
|
7
7
|
import createEventPayload from '../../common/utils/analytics/analytics.codegen';
|
|
8
8
|
import { usePluginReducer } from './reducer';
|
|
9
9
|
import { CancellationError, resolvePluginUpdates } from './utils';
|
|
10
|
-
export function usePlugins(state, activeTab, plugins,
|
|
10
|
+
export function usePlugins(state, activeTab, plugins, thirdPartyTabExperimentEnabled = false) {
|
|
11
11
|
var _activePlugin$tabKey;
|
|
12
12
|
const {
|
|
13
13
|
createAnalyticsEvent
|
|
@@ -92,11 +92,11 @@ export function usePlugins(state, activeTab, plugins, googleDriveTabExperimentEn
|
|
|
92
92
|
error
|
|
93
93
|
} = pluginState;
|
|
94
94
|
|
|
95
|
-
// This is needed for the
|
|
95
|
+
// This is needed for the 3P tab experiments to show a persistent banner across tabs. Will be removed once the experiment is over regardless of outcome.
|
|
96
96
|
const pluginBanner = useMemo(() => {
|
|
97
97
|
var _plugins$find;
|
|
98
|
-
return
|
|
99
|
-
}, [plugins,
|
|
98
|
+
return thirdPartyTabExperimentEnabled ? plugins === null || plugins === void 0 ? void 0 : (_plugins$find = plugins.find(plugin => plugin.banner)) === null || _plugins$find === void 0 ? void 0 : _plugins$find.banner : undefined;
|
|
99
|
+
}, [plugins, thirdPartyTabExperimentEnabled]);
|
|
100
100
|
return {
|
|
101
101
|
tabs,
|
|
102
102
|
items,
|
|
@@ -127,9 +127,12 @@ export const LinkPicker = withLinkPickerAnalyticsContext( /*#__PURE__*/memo(({
|
|
|
127
127
|
const intl = useIntl();
|
|
128
128
|
const queryState = useSearchQuery(state);
|
|
129
129
|
|
|
130
|
-
// Experiment with new 3P tabs in link picker
|
|
130
|
+
// Experiment with new 3P tabs in link picker. For more info, please see: go/link-picker-3p-drive-one-pager.
|
|
131
131
|
const linkPicker3pDriveExperimentCohort = FeatureGates.initializeCalled() ? FeatureGates.getExperimentValue('link_picker_3p_drive_experiment', 'cohort', 'control') : 'control';
|
|
132
132
|
const googleDriveTabExperimentEnabled = linkPicker3pDriveExperimentCohort === 'show_google_drive_tab';
|
|
133
|
+
const linkPicker3pOneDriveExperimentCohort = FeatureGates.initializeCalled() ? FeatureGates.getExperimentValue('link_picker_3p_onedrive_experiment', 'cohort', 'control') : 'control';
|
|
134
|
+
const oneDriveTabExperimentEnabled = linkPicker3pOneDriveExperimentCohort === 'show_onedrive_tab';
|
|
135
|
+
const thirdPartyTabExperimentEnabled = googleDriveTabExperimentEnabled || oneDriveTabExperimentEnabled;
|
|
133
136
|
const {
|
|
134
137
|
items,
|
|
135
138
|
isLoading: isLoadingResults,
|
|
@@ -140,7 +143,7 @@ export const LinkPicker = withLinkPickerAnalyticsContext( /*#__PURE__*/memo(({
|
|
|
140
143
|
retry,
|
|
141
144
|
pluginAction,
|
|
142
145
|
pluginBanner
|
|
143
|
-
} = usePlugins(queryState, activeTab, plugins,
|
|
146
|
+
} = usePlugins(queryState, activeTab, plugins, thirdPartyTabExperimentEnabled);
|
|
144
147
|
const isEditing = !!initUrl;
|
|
145
148
|
const selectedItem = items === null || items === void 0 ? void 0 : items[selectedIndex];
|
|
146
149
|
const isSelectedItem = (selectedItem === null || selectedItem === void 0 ? void 0 : selectedItem.url) === url;
|
|
@@ -433,7 +436,7 @@ export const LinkPicker = withLinkPickerAnalyticsContext( /*#__PURE__*/memo(({
|
|
|
433
436
|
submitMessageId: submitMessageId,
|
|
434
437
|
testId: testIds.insertButton,
|
|
435
438
|
url: url
|
|
436
|
-
})),
|
|
439
|
+
})), thirdPartyTabExperimentEnabled && pluginBanner && pluginBanner(), !!queryState && (isLoadingPlugins || isActivePlugin) && /*#__PURE__*/React.createElement(SearchResults, {
|
|
437
440
|
activeTab: activeTab,
|
|
438
441
|
tabs: tabs,
|
|
439
442
|
activePlugin: activePlugin,
|
|
@@ -46,10 +46,13 @@ export const SearchResults = ({
|
|
|
46
46
|
}) => {
|
|
47
47
|
var _activePlugin$errorFa, _activePlugin$errorFa2;
|
|
48
48
|
const isActivePlugin = !!activePlugin;
|
|
49
|
-
// Experiment with new 3P tabs in link picker
|
|
49
|
+
// Experiment with new 3P tabs in link picker. For more info, please see: go/link-picker-3p-drive-one-pager.
|
|
50
50
|
const linkPicker3pDriveExperimentCohort = FeatureGates.initializeCalled() ? FeatureGates.getExperimentValue('link_picker_3p_drive_experiment', 'cohort', 'control') : 'control';
|
|
51
51
|
const googleDriveTabExperimentEnabled = linkPicker3pDriveExperimentCohort === 'show_google_drive_tab';
|
|
52
|
-
const
|
|
52
|
+
const linkPicker3pOneDriveExperimentCohort = FeatureGates.initializeCalled() ? FeatureGates.getExperimentValue('link_picker_3p_onedrive_experiment', 'cohort', 'control') : 'control';
|
|
53
|
+
const oneDriveTabExperimentEnabled = linkPicker3pOneDriveExperimentCohort === 'show_onedrive_tab';
|
|
54
|
+
const thirdPartyTabExperimentEnabled = googleDriveTabExperimentEnabled || oneDriveTabExperimentEnabled;
|
|
55
|
+
const showScrollingTabList = (featureFlags === null || featureFlags === void 0 ? void 0 : featureFlags.scrollingTabs) || thirdPartyTabExperimentEnabled;
|
|
53
56
|
const tabList = /*#__PURE__*/React.createElement(TabList, null, tabs.map(tab => /*#__PURE__*/React.createElement(Tab, {
|
|
54
57
|
key: tab.tabTitle,
|
|
55
58
|
testId: testIds.tabItem
|
package/dist/es2019/ui/main.js
CHANGED
|
@@ -12,7 +12,7 @@ import { usePluginReducer } from './reducer';
|
|
|
12
12
|
import { CancellationError, resolvePluginUpdates } from './utils';
|
|
13
13
|
export function usePlugins(state, activeTab, plugins) {
|
|
14
14
|
var _activePlugin$tabKey;
|
|
15
|
-
var
|
|
15
|
+
var thirdPartyTabExperimentEnabled = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : false;
|
|
16
16
|
var _useAnalyticsEvents = useAnalyticsEvents(),
|
|
17
17
|
createAnalyticsEvent = _useAnalyticsEvents.createAnalyticsEvent;
|
|
18
18
|
var _useState = useState(0),
|
|
@@ -128,13 +128,13 @@ export function usePlugins(state, activeTab, plugins) {
|
|
|
128
128
|
isLoading = pluginState.isLoading,
|
|
129
129
|
error = pluginState.error;
|
|
130
130
|
|
|
131
|
-
// This is needed for the
|
|
131
|
+
// This is needed for the 3P tab experiments to show a persistent banner across tabs. Will be removed once the experiment is over regardless of outcome.
|
|
132
132
|
var pluginBanner = useMemo(function () {
|
|
133
133
|
var _plugins$find;
|
|
134
|
-
return
|
|
134
|
+
return thirdPartyTabExperimentEnabled ? plugins === null || plugins === void 0 || (_plugins$find = plugins.find(function (plugin) {
|
|
135
135
|
return plugin.banner;
|
|
136
136
|
})) === null || _plugins$find === void 0 ? void 0 : _plugins$find.banner : undefined;
|
|
137
|
-
}, [plugins,
|
|
137
|
+
}, [plugins, thirdPartyTabExperimentEnabled]);
|
|
138
138
|
return {
|
|
139
139
|
tabs: tabs,
|
|
140
140
|
items: items,
|
|
@@ -128,10 +128,13 @@ export var LinkPicker = withLinkPickerAnalyticsContext( /*#__PURE__*/memo(functi
|
|
|
128
128
|
var intl = useIntl();
|
|
129
129
|
var queryState = useSearchQuery(state);
|
|
130
130
|
|
|
131
|
-
// Experiment with new 3P tabs in link picker
|
|
131
|
+
// Experiment with new 3P tabs in link picker. For more info, please see: go/link-picker-3p-drive-one-pager.
|
|
132
132
|
var linkPicker3pDriveExperimentCohort = FeatureGates.initializeCalled() ? FeatureGates.getExperimentValue('link_picker_3p_drive_experiment', 'cohort', 'control') : 'control';
|
|
133
133
|
var googleDriveTabExperimentEnabled = linkPicker3pDriveExperimentCohort === 'show_google_drive_tab';
|
|
134
|
-
var
|
|
134
|
+
var linkPicker3pOneDriveExperimentCohort = FeatureGates.initializeCalled() ? FeatureGates.getExperimentValue('link_picker_3p_onedrive_experiment', 'cohort', 'control') : 'control';
|
|
135
|
+
var oneDriveTabExperimentEnabled = linkPicker3pOneDriveExperimentCohort === 'show_onedrive_tab';
|
|
136
|
+
var thirdPartyTabExperimentEnabled = googleDriveTabExperimentEnabled || oneDriveTabExperimentEnabled;
|
|
137
|
+
var _usePlugins = usePlugins(queryState, activeTab, plugins, thirdPartyTabExperimentEnabled),
|
|
135
138
|
items = _usePlugins.items,
|
|
136
139
|
isLoadingResults = _usePlugins.isLoading,
|
|
137
140
|
isActivePlugin = _usePlugins.isActivePlugin,
|
|
@@ -469,7 +472,7 @@ export var LinkPicker = withLinkPickerAnalyticsContext( /*#__PURE__*/memo(functi
|
|
|
469
472
|
submitMessageId: submitMessageId,
|
|
470
473
|
testId: testIds.insertButton,
|
|
471
474
|
url: url
|
|
472
|
-
})),
|
|
475
|
+
})), thirdPartyTabExperimentEnabled && pluginBanner && pluginBanner(), !!queryState && (isLoadingPlugins || isActivePlugin) && /*#__PURE__*/React.createElement(SearchResults, {
|
|
473
476
|
activeTab: activeTab,
|
|
474
477
|
tabs: tabs,
|
|
475
478
|
activePlugin: activePlugin,
|
|
@@ -46,10 +46,13 @@ export var SearchResults = function SearchResults(_ref) {
|
|
|
46
46
|
adaptiveHeight = _ref.adaptiveHeight,
|
|
47
47
|
retry = _ref.retry;
|
|
48
48
|
var isActivePlugin = !!activePlugin;
|
|
49
|
-
// Experiment with new 3P tabs in link picker
|
|
49
|
+
// Experiment with new 3P tabs in link picker. For more info, please see: go/link-picker-3p-drive-one-pager.
|
|
50
50
|
var linkPicker3pDriveExperimentCohort = FeatureGates.initializeCalled() ? FeatureGates.getExperimentValue('link_picker_3p_drive_experiment', 'cohort', 'control') : 'control';
|
|
51
51
|
var googleDriveTabExperimentEnabled = linkPicker3pDriveExperimentCohort === 'show_google_drive_tab';
|
|
52
|
-
var
|
|
52
|
+
var linkPicker3pOneDriveExperimentCohort = FeatureGates.initializeCalled() ? FeatureGates.getExperimentValue('link_picker_3p_onedrive_experiment', 'cohort', 'control') : 'control';
|
|
53
|
+
var oneDriveTabExperimentEnabled = linkPicker3pOneDriveExperimentCohort === 'show_onedrive_tab';
|
|
54
|
+
var thirdPartyTabExperimentEnabled = googleDriveTabExperimentEnabled || oneDriveTabExperimentEnabled;
|
|
55
|
+
var showScrollingTabList = (featureFlags === null || featureFlags === void 0 ? void 0 : featureFlags.scrollingTabs) || thirdPartyTabExperimentEnabled;
|
|
53
56
|
var tabList = /*#__PURE__*/React.createElement(TabList, null, tabs.map(function (tab) {
|
|
54
57
|
return /*#__PURE__*/React.createElement(Tab, {
|
|
55
58
|
key: tab.tabTitle,
|
package/dist/esm/ui/main.js
CHANGED
|
@@ -13,4 +13,4 @@ export interface LinkPickerPluginsService {
|
|
|
13
13
|
pluginAction?: LinkPickerPluginAction;
|
|
14
14
|
pluginBanner?: LinkPickerPluginBanner;
|
|
15
15
|
}
|
|
16
|
-
export declare function usePlugins(state: LinkPickerState | null, activeTab: number, plugins?: LinkPickerPlugin[],
|
|
16
|
+
export declare function usePlugins(state: LinkPickerState | null, activeTab: number, plugins?: LinkPickerPlugin[], thirdPartyTabExperimentEnabled?: boolean): LinkPickerPluginsService;
|
|
@@ -13,4 +13,4 @@ export interface LinkPickerPluginsService {
|
|
|
13
13
|
pluginAction?: LinkPickerPluginAction;
|
|
14
14
|
pluginBanner?: LinkPickerPluginBanner;
|
|
15
15
|
}
|
|
16
|
-
export declare function usePlugins(state: LinkPickerState | null, activeTab: number, plugins?: LinkPickerPlugin[],
|
|
16
|
+
export declare function usePlugins(state: LinkPickerState | null, activeTab: number, plugins?: LinkPickerPlugin[], thirdPartyTabExperimentEnabled?: boolean): LinkPickerPluginsService;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/link-picker",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.12.0",
|
|
4
4
|
"description": "Standalone link picker",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"publishConfig": {
|
|
@@ -56,7 +56,7 @@
|
|
|
56
56
|
"@atlaskit/css": "^0.14.0",
|
|
57
57
|
"@atlaskit/feature-gate-js-client": "^5.5.0",
|
|
58
58
|
"@atlaskit/form": "^14.2.0",
|
|
59
|
-
"@atlaskit/frontend-utilities": "^3.
|
|
59
|
+
"@atlaskit/frontend-utilities": "^3.2.0",
|
|
60
60
|
"@atlaskit/heading": "^5.2.0",
|
|
61
61
|
"@atlaskit/icon": "^28.3.0",
|
|
62
62
|
"@atlaskit/intl-messages-provider": "^2.0.0",
|
|
@@ -68,7 +68,7 @@
|
|
|
68
68
|
"@atlaskit/primitives": "^14.15.0",
|
|
69
69
|
"@atlaskit/smart-card": "^42.3.0",
|
|
70
70
|
"@atlaskit/spinner": "^19.0.0",
|
|
71
|
-
"@atlaskit/tabs": "^18.
|
|
71
|
+
"@atlaskit/tabs": "^18.2.0",
|
|
72
72
|
"@atlaskit/textfield": "^8.0.0",
|
|
73
73
|
"@atlaskit/theme": "^21.0.0",
|
|
74
74
|
"@atlaskit/tokens": "^6.4.0",
|