@atlaskit/link-datasource 4.19.3 → 4.19.5
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 +16 -0
- package/dist/cjs/ui/assets-modal/search-container/object-schema-select/index.js +1 -15
- package/dist/cjs/ui/issue-like-table/messages.js +5 -0
- package/dist/cjs/ui/jira-issues-modal/basic-filters/ui/async-popup-select/messages.js +5 -0
- package/dist/cjs/ui/table-footer/powered-by-jsm-assets/index.js +2 -3
- package/dist/cjs/ui/table-footer/provider-link/index.js +2 -3
- package/dist/es2019/ui/assets-modal/search-container/object-schema-select/index.js +2 -14
- package/dist/es2019/ui/issue-like-table/messages.js +5 -0
- package/dist/es2019/ui/jira-issues-modal/basic-filters/ui/async-popup-select/messages.js +5 -0
- package/dist/es2019/ui/table-footer/powered-by-jsm-assets/index.js +2 -3
- package/dist/es2019/ui/table-footer/provider-link/index.js +2 -3
- package/dist/esm/ui/assets-modal/search-container/object-schema-select/index.js +2 -16
- package/dist/esm/ui/issue-like-table/messages.js +5 -0
- package/dist/esm/ui/jira-issues-modal/basic-filters/ui/async-popup-select/messages.js +5 -0
- package/dist/esm/ui/table-footer/powered-by-jsm-assets/index.js +2 -3
- package/dist/esm/ui/table-footer/provider-link/index.js +2 -3
- package/dist/types/ui/issue-like-table/messages.d.ts +5 -0
- package/dist/types/ui/jira-issues-modal/basic-filters/ui/async-popup-select/messages.d.ts +5 -0
- package/dist/types-ts4.5/ui/issue-like-table/messages.d.ts +5 -0
- package/dist/types-ts4.5/ui/jira-issues-modal/basic-filters/ui/async-popup-select/messages.d.ts +5 -0
- package/package.json +3 -10
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @atlaskit/link-datasource
|
|
2
2
|
|
|
3
|
+
## 4.19.5
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`1e4c85cd1dbd7`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/1e4c85cd1dbd7) -
|
|
8
|
+
NAVX-1053 cleaning up linking-platform-assests-schema-selector-refresh
|
|
9
|
+
|
|
10
|
+
## 4.19.4
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- [#200297](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/200297)
|
|
15
|
+
[`20899a090b218`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/20899a090b218) -
|
|
16
|
+
Internal changes to Logo package usage
|
|
17
|
+
- Updated dependencies
|
|
18
|
+
|
|
3
19
|
## 4.19.3
|
|
4
20
|
|
|
5
21
|
### Patch Changes
|
|
@@ -22,7 +22,6 @@ var _reactIntlNext = require("react-intl-next");
|
|
|
22
22
|
var _new = _interopRequireDefault(require("@atlaskit/button/new"));
|
|
23
23
|
var _form = require("@atlaskit/form");
|
|
24
24
|
var _chevronDown = _interopRequireDefault(require("@atlaskit/icon/core/chevron-down"));
|
|
25
|
-
var _platformFeatureFlags = require("@atlaskit/platform-feature-flags");
|
|
26
25
|
var _select = require("@atlaskit/select");
|
|
27
26
|
var _constants = require("@atlaskit/theme/constants");
|
|
28
27
|
var _useObjectSchemas2 = require("../../../../hooks/useObjectSchemas");
|
|
@@ -176,7 +175,7 @@ var AssetsObjectSchemaSelect = exports.AssetsObjectSchemaSelect = function Asset
|
|
|
176
175
|
_onChange = _ref6$fieldProps.onChange,
|
|
177
176
|
onFocus = _ref6$fieldProps.onFocus,
|
|
178
177
|
restFieldProps = (0, _objectWithoutProperties2.default)(_ref6$fieldProps, _excluded2);
|
|
179
|
-
return
|
|
178
|
+
return /*#__PURE__*/React.createElement(_select.PopupSelect, (0, _extends2.default)({
|
|
180
179
|
autoFocus: true,
|
|
181
180
|
maxMenuWidth: 300,
|
|
182
181
|
minMenuWidth: 300,
|
|
@@ -208,19 +207,6 @@ var AssetsObjectSchemaSelect = exports.AssetsObjectSchemaSelect = function Asset
|
|
|
208
207
|
}
|
|
209
208
|
}), ((_restFieldProps$value = restFieldProps.value) === null || _restFieldProps$value === void 0 ? void 0 : _restFieldProps$value.label) || formatMessage(_messages.objectSchemaSelectMessages.placeholder));
|
|
210
209
|
}
|
|
211
|
-
})) : /*#__PURE__*/React.createElement(_select.AsyncSelect, (0, _extends2.default)({
|
|
212
|
-
autoFocus: true,
|
|
213
|
-
classNamePrefix: classNamePrefix,
|
|
214
|
-
isLoading: objectSchemasLoading,
|
|
215
|
-
defaultOptions: mapObjectSchemasToOptions(initialObjectSchemas),
|
|
216
|
-
isSearchable: true,
|
|
217
|
-
loadOptions: debouncedLoadOptions,
|
|
218
|
-
placeholder: formatMessage(_messages.objectSchemaSelectMessages.placeholder),
|
|
219
|
-
onChange: function onChange(newOption) {
|
|
220
|
-
return newOption && _onChange(newOption);
|
|
221
|
-
}
|
|
222
|
-
}, selectInAModalStyleFixProps, restFieldProps, {
|
|
223
|
-
label: formatMessage(_messages.objectSchemaSelectMessages.placeholder)
|
|
224
210
|
}));
|
|
225
211
|
}));
|
|
226
212
|
};
|
|
@@ -45,5 +45,10 @@ var issueLikeTableMessages = exports.issueLikeTableMessages = (0, _reactIntlNext
|
|
|
45
45
|
id: 'linkDataSource.issue-line-table.unwrap-text',
|
|
46
46
|
description: 'Table header Dropdown item for making whole column to not wrap text',
|
|
47
47
|
defaultMessage: 'Unwrap text'
|
|
48
|
+
},
|
|
49
|
+
fetchActionErrorGenericDescriptionGalaxia: {
|
|
50
|
+
id: 'linkDataSource.issue-line-table.fetch-action-error-generic-description-galaxia',
|
|
51
|
+
description: 'Generic error message description shown when fetching inline edit dropdown field fails',
|
|
52
|
+
defaultMessage: 'Wait a few minutes, then try again. Check your space settings or contact support if this keeps happening.'
|
|
48
53
|
}
|
|
49
54
|
});
|
|
@@ -50,5 +50,10 @@ var asyncPopupSelectMessages = exports.asyncPopupSelectMessages = (0, _reactIntl
|
|
|
50
50
|
id: 'linkDataSource.basic-filter.assignee.searchPlaceholder',
|
|
51
51
|
description: 'Placeholder to be displayed for assignee filter dropdown search input.',
|
|
52
52
|
defaultMessage: 'Search for assignee'
|
|
53
|
+
},
|
|
54
|
+
projectLabelGalaxia: {
|
|
55
|
+
id: 'linkDataSource.basic-filter.project.label-galaxia',
|
|
56
|
+
description: 'Label to be displayed for project filter dropdown button.',
|
|
57
|
+
defaultMessage: 'Space'
|
|
53
58
|
}
|
|
54
59
|
});
|
|
@@ -12,7 +12,6 @@ var _react = _interopRequireDefault(require("react"));
|
|
|
12
12
|
var _logo = require("@atlaskit/logo");
|
|
13
13
|
var _platformFeatureFlags = require("@atlaskit/platform-feature-flags");
|
|
14
14
|
var _compiled = require("@atlaskit/primitives/compiled");
|
|
15
|
-
var _assets = require("@atlaskit/temp-nav-app-icons/assets");
|
|
16
15
|
var _analytics = require("../../../analytics");
|
|
17
16
|
var styles = {
|
|
18
17
|
jsmTextStyles: "_syaz1gjq _18u012x7 _30l316c2",
|
|
@@ -43,8 +42,8 @@ var PoweredByJSMAssets = exports.PoweredByJSMAssets = function PoweredByJSMAsset
|
|
|
43
42
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/enforce-style-prop -- Ignored via go/DSP-18766
|
|
44
43
|
alignItems: 'center'
|
|
45
44
|
}
|
|
46
|
-
}, (0, _platformFeatureFlags.fg)('assets_as_an_app_v2') ? /*#__PURE__*/_react.default.createElement(
|
|
47
|
-
size: "
|
|
45
|
+
}, (0, _platformFeatureFlags.fg)('assets_as_an_app_v2') ? /*#__PURE__*/_react.default.createElement(_logo.AssetsIcon, {
|
|
46
|
+
size: "small"
|
|
48
47
|
}) : /*#__PURE__*/_react.default.createElement(_logo.JiraServiceManagementIcon, {
|
|
49
48
|
size: "xxsmall",
|
|
50
49
|
appearance: "brand",
|
|
@@ -13,7 +13,6 @@ var _reactIntlNext = require("react-intl-next");
|
|
|
13
13
|
var _logo = require("@atlaskit/logo");
|
|
14
14
|
var _platformFeatureFlags = require("@atlaskit/platform-feature-flags");
|
|
15
15
|
var _compiled = require("@atlaskit/primitives/compiled");
|
|
16
|
-
var _assets = require("@atlaskit/temp-nav-app-icons/assets");
|
|
17
16
|
var _analytics = require("../../../analytics");
|
|
18
17
|
var _assetsModal = require("../../assets-modal");
|
|
19
18
|
var _messages = require("../messages");
|
|
@@ -31,8 +30,8 @@ var ProviderLink = exports.ProviderLink = function ProviderLink(_ref) {
|
|
|
31
30
|
return (0, _platformFeatureFlags.fg)('assets_as_an_app_v2') ? {
|
|
32
31
|
content: intl.formatMessage(_messages.footerMessages.poweredByAssets),
|
|
33
32
|
extensionKey: 'jsm-cmdb-gateway',
|
|
34
|
-
icon: /*#__PURE__*/_react.default.createElement(
|
|
35
|
-
size: "
|
|
33
|
+
icon: /*#__PURE__*/_react.default.createElement(_logo.AssetsIcon, {
|
|
34
|
+
size: "xsmall"
|
|
36
35
|
}),
|
|
37
36
|
interactionName: 'atlas-link',
|
|
38
37
|
url: '/jira/assets'
|
|
@@ -10,8 +10,7 @@ import { useIntl } from 'react-intl-next';
|
|
|
10
10
|
import Button from '@atlaskit/button/new';
|
|
11
11
|
import { Field } from '@atlaskit/form';
|
|
12
12
|
import ChevronDownIcon from '@atlaskit/icon/core/chevron-down';
|
|
13
|
-
import {
|
|
14
|
-
import { AsyncSelect, PopupSelect } from '@atlaskit/select';
|
|
13
|
+
import { PopupSelect } from '@atlaskit/select';
|
|
15
14
|
import { layers } from '@atlaskit/theme/constants';
|
|
16
15
|
import { useObjectSchemas } from '../../../../hooks/useObjectSchemas';
|
|
17
16
|
import { objectSchemaKey } from '../../../../types/assets/types';
|
|
@@ -108,7 +107,7 @@ export const AssetsObjectSchemaSelect = ({
|
|
|
108
107
|
onFocus,
|
|
109
108
|
...restFieldProps
|
|
110
109
|
}
|
|
111
|
-
}) =>
|
|
110
|
+
}) => /*#__PURE__*/React.createElement(PopupSelect, _extends({
|
|
112
111
|
autoFocus: true,
|
|
113
112
|
maxMenuWidth: 300,
|
|
114
113
|
minMenuWidth: 300,
|
|
@@ -137,16 +136,5 @@ export const AssetsObjectSchemaSelect = ({
|
|
|
137
136
|
})
|
|
138
137
|
}), ((_restFieldProps$value = restFieldProps.value) === null || _restFieldProps$value === void 0 ? void 0 : _restFieldProps$value.label) || formatMessage(objectSchemaSelectMessages.placeholder));
|
|
139
138
|
}
|
|
140
|
-
})) : /*#__PURE__*/React.createElement(AsyncSelect, _extends({
|
|
141
|
-
autoFocus: true,
|
|
142
|
-
classNamePrefix: classNamePrefix,
|
|
143
|
-
isLoading: objectSchemasLoading,
|
|
144
|
-
defaultOptions: mapObjectSchemasToOptions(initialObjectSchemas),
|
|
145
|
-
isSearchable: true,
|
|
146
|
-
loadOptions: debouncedLoadOptions,
|
|
147
|
-
placeholder: formatMessage(objectSchemaSelectMessages.placeholder),
|
|
148
|
-
onChange: newOption => newOption && onChange(newOption)
|
|
149
|
-
}, selectInAModalStyleFixProps, restFieldProps, {
|
|
150
|
-
label: formatMessage(objectSchemaSelectMessages.placeholder)
|
|
151
139
|
}))));
|
|
152
140
|
};
|
|
@@ -39,5 +39,10 @@ export const issueLikeTableMessages = defineMessages({
|
|
|
39
39
|
id: 'linkDataSource.issue-line-table.unwrap-text',
|
|
40
40
|
description: 'Table header Dropdown item for making whole column to not wrap text',
|
|
41
41
|
defaultMessage: 'Unwrap text'
|
|
42
|
+
},
|
|
43
|
+
fetchActionErrorGenericDescriptionGalaxia: {
|
|
44
|
+
id: 'linkDataSource.issue-line-table.fetch-action-error-generic-description-galaxia',
|
|
45
|
+
description: 'Generic error message description shown when fetching inline edit dropdown field fails',
|
|
46
|
+
defaultMessage: 'Wait a few minutes, then try again. Check your space settings or contact support if this keeps happening.'
|
|
42
47
|
}
|
|
43
48
|
});
|
|
@@ -44,5 +44,10 @@ export const asyncPopupSelectMessages = defineMessages({
|
|
|
44
44
|
id: 'linkDataSource.basic-filter.assignee.searchPlaceholder',
|
|
45
45
|
description: 'Placeholder to be displayed for assignee filter dropdown search input.',
|
|
46
46
|
defaultMessage: 'Search for assignee'
|
|
47
|
+
},
|
|
48
|
+
projectLabelGalaxia: {
|
|
49
|
+
id: 'linkDataSource.basic-filter.project.label-galaxia',
|
|
50
|
+
description: 'Label to be displayed for project filter dropdown button.',
|
|
51
|
+
defaultMessage: 'Space'
|
|
47
52
|
}
|
|
48
53
|
});
|
|
@@ -2,10 +2,9 @@
|
|
|
2
2
|
import "./index.compiled.css";
|
|
3
3
|
import { ax, ix } from "@compiled/react/runtime";
|
|
4
4
|
import React from 'react';
|
|
5
|
-
import { JiraServiceManagementIcon } from '@atlaskit/logo';
|
|
5
|
+
import { AssetsIcon, JiraServiceManagementIcon } from '@atlaskit/logo';
|
|
6
6
|
import { fg } from '@atlaskit/platform-feature-flags';
|
|
7
7
|
import { Box } from '@atlaskit/primitives/compiled';
|
|
8
|
-
import { AssetsIcon } from '@atlaskit/temp-nav-app-icons/assets';
|
|
9
8
|
import { useDatasourceAnalyticsEvents } from '../../../analytics';
|
|
10
9
|
const styles = {
|
|
11
10
|
jsmTextStyles: "_syaz1gjq _18u012x7 _30l316c2",
|
|
@@ -36,7 +35,7 @@ export const PoweredByJSMAssets = props => {
|
|
|
36
35
|
alignItems: 'center'
|
|
37
36
|
}
|
|
38
37
|
}, fg('assets_as_an_app_v2') ? /*#__PURE__*/React.createElement(AssetsIcon, {
|
|
39
|
-
size: "
|
|
38
|
+
size: "small"
|
|
40
39
|
}) : /*#__PURE__*/React.createElement(JiraServiceManagementIcon, {
|
|
41
40
|
size: "xxsmall",
|
|
42
41
|
appearance: "brand",
|
|
@@ -3,10 +3,9 @@ import "./index.compiled.css";
|
|
|
3
3
|
import { ax, ix } from "@compiled/react/runtime";
|
|
4
4
|
import React, { useMemo } from 'react';
|
|
5
5
|
import { useIntl } from 'react-intl-next';
|
|
6
|
-
import { JiraServiceManagementIcon } from '@atlaskit/logo';
|
|
6
|
+
import { AssetsIcon, JiraServiceManagementIcon } from '@atlaskit/logo';
|
|
7
7
|
import { fg } from '@atlaskit/platform-feature-flags';
|
|
8
8
|
import { Anchor, Inline } from '@atlaskit/primitives/compiled';
|
|
9
|
-
import { AssetsIcon } from '@atlaskit/temp-nav-app-icons/assets';
|
|
10
9
|
import { useDatasourceAnalyticsEvents } from '../../../analytics';
|
|
11
10
|
import { ASSETS_LIST_OF_LINKS_DATASOURCE_ID } from '../../assets-modal';
|
|
12
11
|
import { footerMessages } from '../messages';
|
|
@@ -26,7 +25,7 @@ export const ProviderLink = ({
|
|
|
26
25
|
content: intl.formatMessage(footerMessages.poweredByAssets),
|
|
27
26
|
extensionKey: 'jsm-cmdb-gateway',
|
|
28
27
|
icon: /*#__PURE__*/React.createElement(AssetsIcon, {
|
|
29
|
-
size: "
|
|
28
|
+
size: "xsmall"
|
|
30
29
|
}),
|
|
31
30
|
interactionName: 'atlas-link',
|
|
32
31
|
url: '/jira/assets'
|
|
@@ -20,8 +20,7 @@ import { useIntl } from 'react-intl-next';
|
|
|
20
20
|
import Button from '@atlaskit/button/new';
|
|
21
21
|
import { Field } from '@atlaskit/form';
|
|
22
22
|
import ChevronDownIcon from '@atlaskit/icon/core/chevron-down';
|
|
23
|
-
import {
|
|
24
|
-
import { AsyncSelect, PopupSelect } from '@atlaskit/select';
|
|
23
|
+
import { PopupSelect } from '@atlaskit/select';
|
|
25
24
|
import { layers } from '@atlaskit/theme/constants';
|
|
26
25
|
import { useObjectSchemas } from '../../../../hooks/useObjectSchemas';
|
|
27
26
|
import { objectSchemaKey } from '../../../../types/assets/types';
|
|
@@ -169,7 +168,7 @@ export var AssetsObjectSchemaSelect = function AssetsObjectSchemaSelect(_ref2) {
|
|
|
169
168
|
_onChange = _ref6$fieldProps.onChange,
|
|
170
169
|
onFocus = _ref6$fieldProps.onFocus,
|
|
171
170
|
restFieldProps = _objectWithoutProperties(_ref6$fieldProps, _excluded2);
|
|
172
|
-
return
|
|
171
|
+
return /*#__PURE__*/React.createElement(PopupSelect, _extends({
|
|
173
172
|
autoFocus: true,
|
|
174
173
|
maxMenuWidth: 300,
|
|
175
174
|
minMenuWidth: 300,
|
|
@@ -201,19 +200,6 @@ export var AssetsObjectSchemaSelect = function AssetsObjectSchemaSelect(_ref2) {
|
|
|
201
200
|
}
|
|
202
201
|
}), ((_restFieldProps$value = restFieldProps.value) === null || _restFieldProps$value === void 0 ? void 0 : _restFieldProps$value.label) || formatMessage(objectSchemaSelectMessages.placeholder));
|
|
203
202
|
}
|
|
204
|
-
})) : /*#__PURE__*/React.createElement(AsyncSelect, _extends({
|
|
205
|
-
autoFocus: true,
|
|
206
|
-
classNamePrefix: classNamePrefix,
|
|
207
|
-
isLoading: objectSchemasLoading,
|
|
208
|
-
defaultOptions: mapObjectSchemasToOptions(initialObjectSchemas),
|
|
209
|
-
isSearchable: true,
|
|
210
|
-
loadOptions: debouncedLoadOptions,
|
|
211
|
-
placeholder: formatMessage(objectSchemaSelectMessages.placeholder),
|
|
212
|
-
onChange: function onChange(newOption) {
|
|
213
|
-
return newOption && _onChange(newOption);
|
|
214
|
-
}
|
|
215
|
-
}, selectInAModalStyleFixProps, restFieldProps, {
|
|
216
|
-
label: formatMessage(objectSchemaSelectMessages.placeholder)
|
|
217
203
|
}));
|
|
218
204
|
}));
|
|
219
205
|
};
|
|
@@ -39,5 +39,10 @@ export var issueLikeTableMessages = defineMessages({
|
|
|
39
39
|
id: 'linkDataSource.issue-line-table.unwrap-text',
|
|
40
40
|
description: 'Table header Dropdown item for making whole column to not wrap text',
|
|
41
41
|
defaultMessage: 'Unwrap text'
|
|
42
|
+
},
|
|
43
|
+
fetchActionErrorGenericDescriptionGalaxia: {
|
|
44
|
+
id: 'linkDataSource.issue-line-table.fetch-action-error-generic-description-galaxia',
|
|
45
|
+
description: 'Generic error message description shown when fetching inline edit dropdown field fails',
|
|
46
|
+
defaultMessage: 'Wait a few minutes, then try again. Check your space settings or contact support if this keeps happening.'
|
|
42
47
|
}
|
|
43
48
|
});
|
|
@@ -44,5 +44,10 @@ export var asyncPopupSelectMessages = defineMessages({
|
|
|
44
44
|
id: 'linkDataSource.basic-filter.assignee.searchPlaceholder',
|
|
45
45
|
description: 'Placeholder to be displayed for assignee filter dropdown search input.',
|
|
46
46
|
defaultMessage: 'Search for assignee'
|
|
47
|
+
},
|
|
48
|
+
projectLabelGalaxia: {
|
|
49
|
+
id: 'linkDataSource.basic-filter.project.label-galaxia',
|
|
50
|
+
description: 'Label to be displayed for project filter dropdown button.',
|
|
51
|
+
defaultMessage: 'Space'
|
|
47
52
|
}
|
|
48
53
|
});
|
|
@@ -2,10 +2,9 @@
|
|
|
2
2
|
import "./index.compiled.css";
|
|
3
3
|
import { ax, ix } from "@compiled/react/runtime";
|
|
4
4
|
import React from 'react';
|
|
5
|
-
import { JiraServiceManagementIcon } from '@atlaskit/logo';
|
|
5
|
+
import { AssetsIcon, JiraServiceManagementIcon } from '@atlaskit/logo';
|
|
6
6
|
import { fg } from '@atlaskit/platform-feature-flags';
|
|
7
7
|
import { Box } from '@atlaskit/primitives/compiled';
|
|
8
|
-
import { AssetsIcon } from '@atlaskit/temp-nav-app-icons/assets';
|
|
9
8
|
import { useDatasourceAnalyticsEvents } from '../../../analytics';
|
|
10
9
|
var styles = {
|
|
11
10
|
jsmTextStyles: "_syaz1gjq _18u012x7 _30l316c2",
|
|
@@ -37,7 +36,7 @@ export var PoweredByJSMAssets = function PoweredByJSMAssets(props) {
|
|
|
37
36
|
alignItems: 'center'
|
|
38
37
|
}
|
|
39
38
|
}, fg('assets_as_an_app_v2') ? /*#__PURE__*/React.createElement(AssetsIcon, {
|
|
40
|
-
size: "
|
|
39
|
+
size: "small"
|
|
41
40
|
}) : /*#__PURE__*/React.createElement(JiraServiceManagementIcon, {
|
|
42
41
|
size: "xxsmall",
|
|
43
42
|
appearance: "brand",
|
|
@@ -3,10 +3,9 @@ import "./index.compiled.css";
|
|
|
3
3
|
import { ax, ix } from "@compiled/react/runtime";
|
|
4
4
|
import React, { useMemo } from 'react';
|
|
5
5
|
import { useIntl } from 'react-intl-next';
|
|
6
|
-
import { JiraServiceManagementIcon } from '@atlaskit/logo';
|
|
6
|
+
import { AssetsIcon, JiraServiceManagementIcon } from '@atlaskit/logo';
|
|
7
7
|
import { fg } from '@atlaskit/platform-feature-flags';
|
|
8
8
|
import { Anchor, Inline } from '@atlaskit/primitives/compiled';
|
|
9
|
-
import { AssetsIcon } from '@atlaskit/temp-nav-app-icons/assets';
|
|
10
9
|
import { useDatasourceAnalyticsEvents } from '../../../analytics';
|
|
11
10
|
import { ASSETS_LIST_OF_LINKS_DATASOURCE_ID } from '../../assets-modal';
|
|
12
11
|
import { footerMessages } from '../messages';
|
|
@@ -24,7 +23,7 @@ export var ProviderLink = function ProviderLink(_ref) {
|
|
|
24
23
|
content: intl.formatMessage(footerMessages.poweredByAssets),
|
|
25
24
|
extensionKey: 'jsm-cmdb-gateway',
|
|
26
25
|
icon: /*#__PURE__*/React.createElement(AssetsIcon, {
|
|
27
|
-
size: "
|
|
26
|
+
size: "xsmall"
|
|
28
27
|
}),
|
|
29
28
|
interactionName: 'atlas-link',
|
|
30
29
|
url: '/jira/assets'
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/link-datasource",
|
|
3
|
-
"version": "4.19.
|
|
3
|
+
"version": "4.19.5",
|
|
4
4
|
"description": "UI Components to support linking platform dataset feature",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -51,7 +51,7 @@
|
|
|
51
51
|
"@atlaskit/flag": "^17.3.0",
|
|
52
52
|
"@atlaskit/form": "^12.0.0",
|
|
53
53
|
"@atlaskit/heading": "^5.2.0",
|
|
54
|
-
"@atlaskit/icon": "^27.
|
|
54
|
+
"@atlaskit/icon": "^27.12.0",
|
|
55
55
|
"@atlaskit/icon-object": "^7.2.0",
|
|
56
56
|
"@atlaskit/image": "^3.0.0",
|
|
57
57
|
"@atlaskit/inline-edit": "^15.3.0",
|
|
@@ -77,11 +77,10 @@
|
|
|
77
77
|
"@atlaskit/primitives": "^14.11.0",
|
|
78
78
|
"@atlaskit/react-select": "^3.4.0",
|
|
79
79
|
"@atlaskit/select": "^21.2.0",
|
|
80
|
-
"@atlaskit/smart-card": "^40.
|
|
80
|
+
"@atlaskit/smart-card": "^40.10.0",
|
|
81
81
|
"@atlaskit/smart-user-picker": "^8.1.0",
|
|
82
82
|
"@atlaskit/spinner": "^19.0.0",
|
|
83
83
|
"@atlaskit/tag": "^14.1.0",
|
|
84
|
-
"@atlaskit/temp-nav-app-icons": "^0.10.0",
|
|
85
84
|
"@atlaskit/textfield": "^8.0.0",
|
|
86
85
|
"@atlaskit/theme": "^19.0.0",
|
|
87
86
|
"@atlaskit/tokens": "^6.0.0",
|
|
@@ -171,18 +170,12 @@
|
|
|
171
170
|
"assets_as_an_app_v2": {
|
|
172
171
|
"type": "boolean"
|
|
173
172
|
},
|
|
174
|
-
"replace-legacy-button-in-sllv": {
|
|
175
|
-
"type": "boolean"
|
|
176
|
-
},
|
|
177
173
|
"dst-a11y__replace-anchor-with-link__linking-platfo": {
|
|
178
174
|
"type": "boolean"
|
|
179
175
|
},
|
|
180
176
|
"should-render-to-parent-should-be-true-linking-pla": {
|
|
181
177
|
"type": "boolean"
|
|
182
178
|
},
|
|
183
|
-
"linking-platform-assests-schema-selector-refresh": {
|
|
184
|
-
"type": "boolean"
|
|
185
|
-
},
|
|
186
179
|
"platform-linking-sllv-show-more-aria-label": {
|
|
187
180
|
"type": "boolean"
|
|
188
181
|
},
|