@atlaskit/link-datasource 3.15.9 → 3.15.11
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/dist/cjs/ui/common/modal/mode-switcher/index.js +1 -0
- package/dist/cjs/ui/table-footer/index.js +1 -1
- package/dist/es2019/ui/common/modal/mode-switcher/index.js +1 -0
- package/dist/es2019/ui/table-footer/index.js +2 -2
- package/dist/esm/ui/common/modal/mode-switcher/index.js +1 -0
- package/dist/esm/ui/table-footer/index.js +2 -2
- package/package.json +9 -9
package/CHANGELOG.md
CHANGED
|
@@ -45,6 +45,7 @@ var modeSwitcherLabelStyles = (0, _react2.css)({
|
|
|
45
45
|
color: "var(--ds-text-subtlest, ".concat(_colors.N700, ")"),
|
|
46
46
|
font: "var(--ds-font-body-UNSAFE_small, normal 400 12px/16px ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif)",
|
|
47
47
|
fontWeight: "var(--ds-font-weight-semibold, 600)",
|
|
48
|
+
// eslint-disable-next-line @atlaskit/design-system/use-tokens-typography
|
|
48
49
|
textTransform: 'uppercase',
|
|
49
50
|
padding: "var(--ds-space-050, 4px)",
|
|
50
51
|
borderRadius: "var(--ds-space-050, 4px)",
|
|
@@ -54,7 +54,7 @@ var TopBorderWrapper = _styled.default.div({
|
|
|
54
54
|
var SyncWrapper = _styled.default.div({
|
|
55
55
|
display: 'flex',
|
|
56
56
|
alignItems: 'center',
|
|
57
|
-
color: "var(--ds-text-accent-gray,
|
|
57
|
+
color: "var(--ds-text-accent-gray, #44546F)"
|
|
58
58
|
});
|
|
59
59
|
|
|
60
60
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-styled -- To migrate as part of go/ui-styling-standard
|
|
@@ -37,6 +37,7 @@ const modeSwitcherLabelStyles = css({
|
|
|
37
37
|
color: `var(--ds-text-subtlest, ${N700})`,
|
|
38
38
|
font: "var(--ds-font-body-UNSAFE_small, normal 400 12px/16px ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif)",
|
|
39
39
|
fontWeight: "var(--ds-font-weight-semibold, 600)",
|
|
40
|
+
// eslint-disable-next-line @atlaskit/design-system/use-tokens-typography
|
|
40
41
|
textTransform: 'uppercase',
|
|
41
42
|
padding: `${"var(--ds-space-050, 4px)"}`,
|
|
42
43
|
borderRadius: "var(--ds-space-050, 4px)",
|
|
@@ -12,7 +12,7 @@ import { FormattedMessage, useIntl } from 'react-intl-next';
|
|
|
12
12
|
import Button from '@atlaskit/button';
|
|
13
13
|
import RefreshIcon from '@atlaskit/icon/core/migration/refresh';
|
|
14
14
|
import { Flex } from '@atlaskit/primitives';
|
|
15
|
-
import { N0, N40
|
|
15
|
+
import { N0, N40 } from '@atlaskit/theme/colors';
|
|
16
16
|
import { ASSETS_LIST_OF_LINKS_DATASOURCE_ID } from '../assets-modal';
|
|
17
17
|
import TableSearchCount, { AssetsItemCount } from '../common/modal/search-count';
|
|
18
18
|
import { footerMessages } from './messages';
|
|
@@ -41,7 +41,7 @@ const TopBorderWrapper = styled.div({
|
|
|
41
41
|
const SyncWrapper = styled.div({
|
|
42
42
|
display: 'flex',
|
|
43
43
|
alignItems: 'center',
|
|
44
|
-
color:
|
|
44
|
+
color: "var(--ds-text-accent-gray, #44546F)"
|
|
45
45
|
});
|
|
46
46
|
|
|
47
47
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-styled -- To migrate as part of go/ui-styling-standard
|
|
@@ -37,6 +37,7 @@ var modeSwitcherLabelStyles = css({
|
|
|
37
37
|
color: "var(--ds-text-subtlest, ".concat(N700, ")"),
|
|
38
38
|
font: "var(--ds-font-body-UNSAFE_small, normal 400 12px/16px ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif)",
|
|
39
39
|
fontWeight: "var(--ds-font-weight-semibold, 600)",
|
|
40
|
+
// eslint-disable-next-line @atlaskit/design-system/use-tokens-typography
|
|
40
41
|
textTransform: 'uppercase',
|
|
41
42
|
padding: "var(--ds-space-050, 4px)",
|
|
42
43
|
borderRadius: "var(--ds-space-050, 4px)",
|
|
@@ -13,7 +13,7 @@ import { FormattedMessage, useIntl } from 'react-intl-next';
|
|
|
13
13
|
import Button from '@atlaskit/button';
|
|
14
14
|
import RefreshIcon from '@atlaskit/icon/core/migration/refresh';
|
|
15
15
|
import { Flex } from '@atlaskit/primitives';
|
|
16
|
-
import { N0, N40
|
|
16
|
+
import { N0, N40 } from '@atlaskit/theme/colors';
|
|
17
17
|
import { ASSETS_LIST_OF_LINKS_DATASOURCE_ID } from '../assets-modal';
|
|
18
18
|
import TableSearchCount, { AssetsItemCount } from '../common/modal/search-count';
|
|
19
19
|
import { footerMessages } from './messages';
|
|
@@ -42,7 +42,7 @@ var TopBorderWrapper = styled.div({
|
|
|
42
42
|
var SyncWrapper = styled.div({
|
|
43
43
|
display: 'flex',
|
|
44
44
|
alignItems: 'center',
|
|
45
|
-
color: "var(--ds-text-accent-gray,
|
|
45
|
+
color: "var(--ds-text-accent-gray, #44546F)"
|
|
46
46
|
});
|
|
47
47
|
|
|
48
48
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-styled -- To migrate as part of go/ui-styling-standard
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/link-datasource",
|
|
3
|
-
"version": "3.15.
|
|
3
|
+
"version": "3.15.11",
|
|
4
4
|
"description": "UI Components to support linking platform dataset feature",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -39,19 +39,19 @@
|
|
|
39
39
|
"@atlaskit/atlassian-context": "^0.0.2",
|
|
40
40
|
"@atlaskit/avatar": "^21.17.0",
|
|
41
41
|
"@atlaskit/avatar-group": "^10.1.0",
|
|
42
|
-
"@atlaskit/badge": "^
|
|
42
|
+
"@atlaskit/badge": "^17.0.0",
|
|
43
43
|
"@atlaskit/button": "^20.3.0",
|
|
44
|
-
"@atlaskit/datetime-picker": "^15.
|
|
45
|
-
"@atlaskit/dropdown-menu": "^12.
|
|
44
|
+
"@atlaskit/datetime-picker": "^15.11.0",
|
|
45
|
+
"@atlaskit/dropdown-menu": "^12.24.0",
|
|
46
46
|
"@atlaskit/editor-prosemirror": "6.2.1",
|
|
47
47
|
"@atlaskit/empty-state": "^8.1.0",
|
|
48
48
|
"@atlaskit/flag": "^15.8.0",
|
|
49
49
|
"@atlaskit/form": "^11.0.0",
|
|
50
50
|
"@atlaskit/heading": "^4.0.0",
|
|
51
|
-
"@atlaskit/icon": "^23.
|
|
51
|
+
"@atlaskit/icon": "^23.3.0",
|
|
52
52
|
"@atlaskit/icon-object": "^6.9.0",
|
|
53
53
|
"@atlaskit/image": "^1.3.0",
|
|
54
|
-
"@atlaskit/inline-edit": "^14.
|
|
54
|
+
"@atlaskit/inline-edit": "^14.1.0",
|
|
55
55
|
"@atlaskit/intl-messages-provider": "^1.0.0",
|
|
56
56
|
"@atlaskit/jql-ast": "^3.3.0",
|
|
57
57
|
"@atlaskit/jql-editor": "^4.13.0",
|
|
@@ -73,13 +73,13 @@
|
|
|
73
73
|
"@atlaskit/primitives": "^13.3.0",
|
|
74
74
|
"@atlaskit/react-select": "^1.6.0",
|
|
75
75
|
"@atlaskit/select": "^18.9.0",
|
|
76
|
-
"@atlaskit/smart-card": "^34.
|
|
76
|
+
"@atlaskit/smart-card": "^34.2.0",
|
|
77
77
|
"@atlaskit/smart-user-picker": "6.11.2",
|
|
78
78
|
"@atlaskit/spinner": "^16.3.0",
|
|
79
79
|
"@atlaskit/tag": "^12.6.0",
|
|
80
|
-
"@atlaskit/textfield": "6.7.
|
|
80
|
+
"@atlaskit/textfield": "6.7.1",
|
|
81
81
|
"@atlaskit/theme": "^14.0.0",
|
|
82
|
-
"@atlaskit/tokens": "^
|
|
82
|
+
"@atlaskit/tokens": "^3.0.0",
|
|
83
83
|
"@atlaskit/tooltip": "^19.0.0",
|
|
84
84
|
"@atlaskit/ufo": "^0.3.0",
|
|
85
85
|
"@atlaskit/width-detector": "^4.3.0",
|