@atlaskit/link-datasource 3.0.4 → 3.1.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
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# @atlaskit/link-datasource
|
|
2
2
|
|
|
3
|
+
## 3.1.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#142268](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/142268)
|
|
8
|
+
[`f54558fb5ccd1`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/f54558fb5ccd1) -
|
|
9
|
+
Enable new icons behind a feature flag.
|
|
10
|
+
|
|
3
11
|
## 3.0.4
|
|
4
12
|
|
|
5
13
|
### Patch Changes
|
|
@@ -12,7 +12,7 @@ var _react2 = require("@emotion/react");
|
|
|
12
12
|
var _styled = _interopRequireDefault(require("@emotion/styled"));
|
|
13
13
|
var _reactIntlNext = require("react-intl-next");
|
|
14
14
|
var _button = _interopRequireDefault(require("@atlaskit/button"));
|
|
15
|
-
var _refresh = _interopRequireDefault(require("@atlaskit/icon/
|
|
15
|
+
var _refresh = _interopRequireDefault(require("@atlaskit/icon/core/migration/refresh"));
|
|
16
16
|
var _platformFeatureFlags = require("@atlaskit/platform-feature-flags");
|
|
17
17
|
var _primitives = require("@atlaskit/primitives");
|
|
18
18
|
var _colors = require("@atlaskit/theme/colors");
|
|
@@ -102,11 +102,11 @@ var TableFooter = exports.TableFooter = function TableFooter(_ref) {
|
|
|
102
102
|
lastSyncTime: lastSyncTime
|
|
103
103
|
})), (0, _react2.jsx)(_button.default, {
|
|
104
104
|
onClick: onRefresh,
|
|
105
|
-
appearance: "subtle"
|
|
106
|
-
// eslint-disable-next-line @atlaskit/design-system/no-legacy-icons -- TODO - https://product-fabric.atlassian.net/browse/DSP-19585
|
|
107
|
-
,
|
|
105
|
+
appearance: "subtle",
|
|
108
106
|
iconBefore: (0, _react2.jsx)(_refresh.default, {
|
|
109
|
-
label: intl.formatMessage(_messages.footerMessages.refreshLabel)
|
|
107
|
+
label: intl.formatMessage(_messages.footerMessages.refreshLabel),
|
|
108
|
+
color: "currentColor",
|
|
109
|
+
spacing: "spacious"
|
|
110
110
|
}),
|
|
111
111
|
isDisabled: isLoading,
|
|
112
112
|
testId: "refresh-button"
|
|
@@ -10,7 +10,7 @@ import { jsx } from '@emotion/react';
|
|
|
10
10
|
import styled from '@emotion/styled';
|
|
11
11
|
import { FormattedMessage, useIntl } from 'react-intl-next';
|
|
12
12
|
import Button from '@atlaskit/button';
|
|
13
|
-
import RefreshIcon from '@atlaskit/icon/
|
|
13
|
+
import RefreshIcon from '@atlaskit/icon/core/migration/refresh';
|
|
14
14
|
import { fg } from '@atlaskit/platform-feature-flags';
|
|
15
15
|
import { Flex } from '@atlaskit/primitives';
|
|
16
16
|
import { N0, N40, N90 } from '@atlaskit/theme/colors';
|
|
@@ -87,11 +87,11 @@ export const TableFooter = ({
|
|
|
87
87
|
lastSyncTime: lastSyncTime
|
|
88
88
|
})), jsx(Button, {
|
|
89
89
|
onClick: onRefresh,
|
|
90
|
-
appearance: "subtle"
|
|
91
|
-
// eslint-disable-next-line @atlaskit/design-system/no-legacy-icons -- TODO - https://product-fabric.atlassian.net/browse/DSP-19585
|
|
92
|
-
,
|
|
90
|
+
appearance: "subtle",
|
|
93
91
|
iconBefore: jsx(RefreshIcon, {
|
|
94
|
-
label: intl.formatMessage(footerMessages.refreshLabel)
|
|
92
|
+
label: intl.formatMessage(footerMessages.refreshLabel),
|
|
93
|
+
color: "currentColor",
|
|
94
|
+
spacing: "spacious"
|
|
95
95
|
}),
|
|
96
96
|
isDisabled: isLoading,
|
|
97
97
|
testId: "refresh-button"
|
|
@@ -11,7 +11,7 @@ import { jsx } from '@emotion/react';
|
|
|
11
11
|
import styled from '@emotion/styled';
|
|
12
12
|
import { FormattedMessage, useIntl } from 'react-intl-next';
|
|
13
13
|
import Button from '@atlaskit/button';
|
|
14
|
-
import RefreshIcon from '@atlaskit/icon/
|
|
14
|
+
import RefreshIcon from '@atlaskit/icon/core/migration/refresh';
|
|
15
15
|
import { fg } from '@atlaskit/platform-feature-flags';
|
|
16
16
|
import { Flex } from '@atlaskit/primitives';
|
|
17
17
|
import { N0, N40, N90 } from '@atlaskit/theme/colors';
|
|
@@ -90,11 +90,11 @@ export var TableFooter = function TableFooter(_ref) {
|
|
|
90
90
|
lastSyncTime: lastSyncTime
|
|
91
91
|
})), jsx(Button, {
|
|
92
92
|
onClick: onRefresh,
|
|
93
|
-
appearance: "subtle"
|
|
94
|
-
// eslint-disable-next-line @atlaskit/design-system/no-legacy-icons -- TODO - https://product-fabric.atlassian.net/browse/DSP-19585
|
|
95
|
-
,
|
|
93
|
+
appearance: "subtle",
|
|
96
94
|
iconBefore: jsx(RefreshIcon, {
|
|
97
|
-
label: intl.formatMessage(footerMessages.refreshLabel)
|
|
95
|
+
label: intl.formatMessage(footerMessages.refreshLabel),
|
|
96
|
+
color: "currentColor",
|
|
97
|
+
spacing: "spacious"
|
|
98
98
|
}),
|
|
99
99
|
isDisabled: isLoading,
|
|
100
100
|
testId: "refresh-button"
|