@atlaskit/link-datasource 4.25.1 → 4.25.3
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
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @atlaskit/link-datasource
|
|
2
2
|
|
|
3
|
+
## 4.25.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`861f5f62c7aaa`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/861f5f62c7aaa) -
|
|
8
|
+
NAVX-1902 cleaning up navx-1241-sllv-text-gets-cut-off-when-text-spacing-styles-are-applied
|
|
9
|
+
- Updated dependencies
|
|
10
|
+
|
|
11
|
+
## 4.25.2
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- Updated dependencies
|
|
16
|
+
|
|
3
17
|
## 4.25.1
|
|
4
18
|
|
|
5
19
|
### Patch Changes
|
|
@@ -12,7 +12,6 @@ var React = _interopRequireWildcard(require("react"));
|
|
|
12
12
|
var _runtime = require("@compiled/react/runtime");
|
|
13
13
|
var _extends2 = _interopRequireDefault(require("@babel/runtime/helpers/extends"));
|
|
14
14
|
var _objectWithoutProperties2 = _interopRequireDefault(require("@babel/runtime/helpers/objectWithoutProperties"));
|
|
15
|
-
var _platformFeatureFlags = require("@atlaskit/platform-feature-flags");
|
|
16
15
|
var _select = require("@atlaskit/select");
|
|
17
16
|
var _tooltip = _interopRequireDefault(require("@atlaskit/tooltip"));
|
|
18
17
|
var _excluded = ["children"];
|
|
@@ -23,15 +22,11 @@ var checkboxFocusedStyles = null;
|
|
|
23
22
|
var CustomCheckboxOption = exports.CustomCheckboxOption = function CustomCheckboxOption(_ref) {
|
|
24
23
|
var children = _ref.children,
|
|
25
24
|
props = (0, _objectWithoutProperties2.default)(_ref, _excluded);
|
|
26
|
-
return
|
|
25
|
+
return /*#__PURE__*/React.createElement(_tooltip.default, {
|
|
27
26
|
content: props.label
|
|
28
27
|
}, /*#__PURE__*/React.createElement(_select.CheckboxOption
|
|
29
28
|
// eslint-disable-next-line @atlaskit/design-system/no-unsafe-style-overrides
|
|
30
29
|
, (0, _extends2.default)({}, props, {
|
|
31
30
|
className: (0, _runtime.ax)(["_189e1dm9 _1dqonqa1 _1h6d1j28 _16qsglyw _bfhk1j9a _1q511b66 _85i51b66 _bozgpxbi _y4tipxbi _irr3166n _1di61dty", props.isSelected && "_bfhkfg4m _irr3i1yw _1di619ru", props.isFocused && "_1h6d1p6i"])
|
|
32
|
-
}), children))
|
|
33
|
-
// eslint-disable-next-line @atlaskit/design-system/no-unsafe-style-overrides
|
|
34
|
-
, (0, _extends2.default)({}, props, {
|
|
35
|
-
className: (0, _runtime.ax)(["_189e1dm9 _1dqonqa1 _1h6d1j28 _16qsglyw _bfhk1j9a _1q511b66 _85i51b66 _bozgpxbi _y4tipxbi _irr3166n _1di61dty", props.isSelected && "_bfhkfg4m _irr3i1yw _1di619ru", props.isFocused && "_1h6d1p6i"])
|
|
36
|
-
}), children);
|
|
31
|
+
}), children));
|
|
37
32
|
};
|
|
@@ -3,7 +3,6 @@ import _extends from "@babel/runtime/helpers/extends";
|
|
|
3
3
|
import "./custom-checkbox-option.compiled.css";
|
|
4
4
|
import * as React from 'react';
|
|
5
5
|
import { ax, ix } from "@compiled/react/runtime";
|
|
6
|
-
import { fg } from '@atlaskit/platform-feature-flags';
|
|
7
6
|
import { CheckboxOption } from '@atlaskit/select';
|
|
8
7
|
import Tooltip from '@atlaskit/tooltip';
|
|
9
8
|
const checkboxStyles = null;
|
|
@@ -12,16 +11,10 @@ const checkboxFocusedStyles = null;
|
|
|
12
11
|
export const CustomCheckboxOption = ({
|
|
13
12
|
children,
|
|
14
13
|
...props
|
|
15
|
-
}) => {
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
}), children)) : /*#__PURE__*/React.createElement(CheckboxOption
|
|
23
|
-
// eslint-disable-next-line @atlaskit/design-system/no-unsafe-style-overrides
|
|
24
|
-
, _extends({}, props, {
|
|
25
|
-
className: ax(["_189e1dm9 _1dqonqa1 _1h6d1j28 _16qsglyw _bfhk1j9a _1q511b66 _85i51b66 _bozgpxbi _y4tipxbi _irr3166n _1di61dty", props.isSelected && "_bfhkfg4m _irr3i1yw _1di619ru", props.isFocused && "_1h6d1p6i"])
|
|
26
|
-
}), children);
|
|
27
|
-
};
|
|
14
|
+
}) => /*#__PURE__*/React.createElement(Tooltip, {
|
|
15
|
+
content: props.label
|
|
16
|
+
}, /*#__PURE__*/React.createElement(CheckboxOption
|
|
17
|
+
// eslint-disable-next-line @atlaskit/design-system/no-unsafe-style-overrides
|
|
18
|
+
, _extends({}, props, {
|
|
19
|
+
className: ax(["_189e1dm9 _1dqonqa1 _1h6d1j28 _16qsglyw _bfhk1j9a _1q511b66 _85i51b66 _bozgpxbi _y4tipxbi _irr3166n _1di61dty", props.isSelected && "_bfhkfg4m _irr3i1yw _1di619ru", props.isFocused && "_1h6d1p6i"])
|
|
20
|
+
}), children));
|
|
@@ -5,7 +5,6 @@ var _excluded = ["children"];
|
|
|
5
5
|
import "./custom-checkbox-option.compiled.css";
|
|
6
6
|
import * as React from 'react';
|
|
7
7
|
import { ax, ix } from "@compiled/react/runtime";
|
|
8
|
-
import { fg } from '@atlaskit/platform-feature-flags';
|
|
9
8
|
import { CheckboxOption } from '@atlaskit/select';
|
|
10
9
|
import Tooltip from '@atlaskit/tooltip';
|
|
11
10
|
var checkboxStyles = null;
|
|
@@ -14,15 +13,11 @@ var checkboxFocusedStyles = null;
|
|
|
14
13
|
export var CustomCheckboxOption = function CustomCheckboxOption(_ref) {
|
|
15
14
|
var children = _ref.children,
|
|
16
15
|
props = _objectWithoutProperties(_ref, _excluded);
|
|
17
|
-
return
|
|
16
|
+
return /*#__PURE__*/React.createElement(Tooltip, {
|
|
18
17
|
content: props.label
|
|
19
18
|
}, /*#__PURE__*/React.createElement(CheckboxOption
|
|
20
19
|
// eslint-disable-next-line @atlaskit/design-system/no-unsafe-style-overrides
|
|
21
20
|
, _extends({}, props, {
|
|
22
21
|
className: ax(["_189e1dm9 _1dqonqa1 _1h6d1j28 _16qsglyw _bfhk1j9a _1q511b66 _85i51b66 _bozgpxbi _y4tipxbi _irr3166n _1di61dty", props.isSelected && "_bfhkfg4m _irr3i1yw _1di619ru", props.isFocused && "_1h6d1p6i"])
|
|
23
|
-
}), children))
|
|
24
|
-
// eslint-disable-next-line @atlaskit/design-system/no-unsafe-style-overrides
|
|
25
|
-
, _extends({}, props, {
|
|
26
|
-
className: ax(["_189e1dm9 _1dqonqa1 _1h6d1j28 _16qsglyw _bfhk1j9a _1q511b66 _85i51b66 _bozgpxbi _y4tipxbi _irr3166n _1di61dty", props.isSelected && "_bfhkfg4m _irr3i1yw _1di619ru", props.isFocused && "_1h6d1p6i"])
|
|
27
|
-
}), children);
|
|
22
|
+
}), children));
|
|
28
23
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/link-datasource",
|
|
3
|
-
"version": "4.25.
|
|
3
|
+
"version": "4.25.3",
|
|
4
4
|
"description": "UI Components to support linking platform dataset feature",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -40,12 +40,12 @@
|
|
|
40
40
|
"@atlaskit/afm-i18n-platform-linking-platform-link-datasource": "2.7.0",
|
|
41
41
|
"@atlaskit/analytics-next": "^11.1.0",
|
|
42
42
|
"@atlaskit/atlassian-context": "^0.6.0",
|
|
43
|
-
"@atlaskit/avatar": "^25.
|
|
44
|
-
"@atlaskit/avatar-group": "^12.
|
|
45
|
-
"@atlaskit/badge": "^18.
|
|
46
|
-
"@atlaskit/button": "^23.
|
|
43
|
+
"@atlaskit/avatar": "^25.4.0",
|
|
44
|
+
"@atlaskit/avatar-group": "^12.3.0",
|
|
45
|
+
"@atlaskit/badge": "^18.2.0",
|
|
46
|
+
"@atlaskit/button": "^23.5.0",
|
|
47
47
|
"@atlaskit/css": "^0.14.0",
|
|
48
|
-
"@atlaskit/datetime-picker": "^17.
|
|
48
|
+
"@atlaskit/datetime-picker": "^17.1.0",
|
|
49
49
|
"@atlaskit/dropdown-menu": "^16.3.0",
|
|
50
50
|
"@atlaskit/editor-prosemirror": "7.0.0",
|
|
51
51
|
"@atlaskit/empty-state": "^10.1.0",
|
|
@@ -53,22 +53,22 @@
|
|
|
53
53
|
"@atlaskit/flag": "^17.4.0",
|
|
54
54
|
"@atlaskit/form": "^14.2.0",
|
|
55
55
|
"@atlaskit/heading": "^5.2.0",
|
|
56
|
-
"@atlaskit/icon": "^28.
|
|
56
|
+
"@atlaskit/icon": "^28.5.0",
|
|
57
57
|
"@atlaskit/icon-object": "^7.2.0",
|
|
58
58
|
"@atlaskit/image": "^3.0.0",
|
|
59
59
|
"@atlaskit/inline-edit": "^15.3.0",
|
|
60
60
|
"@atlaskit/intl-messages-provider": "^2.0.0",
|
|
61
61
|
"@atlaskit/jql-ast": "^3.3.0",
|
|
62
|
-
"@atlaskit/jql-editor": "^5.
|
|
62
|
+
"@atlaskit/jql-editor": "^5.6.0",
|
|
63
63
|
"@atlaskit/jql-editor-autocomplete-rest": "^3.0.0",
|
|
64
|
-
"@atlaskit/layering": "^3.
|
|
64
|
+
"@atlaskit/layering": "^3.1.0",
|
|
65
65
|
"@atlaskit/link": "^3.2.0",
|
|
66
66
|
"@atlaskit/link-client-extension": "^6.0.0",
|
|
67
67
|
"@atlaskit/linking-common": "^9.7.0",
|
|
68
68
|
"@atlaskit/linking-types": "^14.0.0",
|
|
69
|
-
"@atlaskit/logo": "^19.
|
|
69
|
+
"@atlaskit/logo": "^19.9.0",
|
|
70
70
|
"@atlaskit/lozenge": "^13.0.0",
|
|
71
|
-
"@atlaskit/modal-dialog": "^14.
|
|
71
|
+
"@atlaskit/modal-dialog": "^14.5.0",
|
|
72
72
|
"@atlaskit/outbound-auth-flow-client": "^3.4.0",
|
|
73
73
|
"@atlaskit/platform-feature-flags": "^1.1.0",
|
|
74
74
|
"@atlaskit/popup": "^4.4.0",
|
|
@@ -77,9 +77,9 @@
|
|
|
77
77
|
"@atlaskit/pragmatic-drag-and-drop-react-beautiful-dnd-autoscroll": "^2.0.0",
|
|
78
78
|
"@atlaskit/pragmatic-drag-and-drop-react-drop-indicator": "^3.2.0",
|
|
79
79
|
"@atlaskit/primitives": "^14.15.0",
|
|
80
|
-
"@atlaskit/react-select": "^3.
|
|
80
|
+
"@atlaskit/react-select": "^3.8.0",
|
|
81
81
|
"@atlaskit/select": "^21.3.0",
|
|
82
|
-
"@atlaskit/smart-card": "^
|
|
82
|
+
"@atlaskit/smart-card": "^43.1.0",
|
|
83
83
|
"@atlaskit/smart-user-picker": "^8.3.0",
|
|
84
84
|
"@atlaskit/spinner": "^19.0.0",
|
|
85
85
|
"@atlaskit/tag": "^14.1.0",
|
|
@@ -185,9 +185,6 @@
|
|
|
185
185
|
"navx-1334-datasource-deep-compare-params": {
|
|
186
186
|
"type": "boolean"
|
|
187
187
|
},
|
|
188
|
-
"navx-1241-sllv-filters-add-tooltip-to-options": {
|
|
189
|
-
"type": "boolean"
|
|
190
|
-
},
|
|
191
188
|
"navx-1819-link-create-confluence-site-migration": {
|
|
192
189
|
"type": "boolean"
|
|
193
190
|
},
|