@atlaskit/link-picker 1.47.16 → 1.47.18
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 +14 -0
- package/dist/cjs/common/ui/empty-state/index.js +2 -1
- package/dist/cjs/ui/error-boundary/error-boundary-fallback/index.js +1 -0
- package/dist/cjs/ui/link-picker/index.js +1 -0
- package/dist/cjs/ui/main.js +1 -1
- package/dist/es2019/common/ui/empty-state/index.js +2 -1
- package/dist/es2019/ui/error-boundary/error-boundary-fallback/index.js +1 -0
- package/dist/es2019/ui/link-picker/index.js +1 -0
- package/dist/es2019/ui/main.js +1 -1
- package/dist/esm/common/ui/empty-state/index.js +2 -1
- package/dist/esm/ui/error-boundary/error-boundary-fallback/index.js +1 -0
- package/dist/esm/ui/link-picker/index.js +1 -0
- package/dist/esm/ui/main.js +1 -1
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @atlaskit/link-picker
|
|
2
2
|
|
|
3
|
+
## 1.47.18
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
|
|
9
|
+
## 1.47.17
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- [#99456](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/99456)
|
|
14
|
+
[`9301bc6f44edf`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/9301bc6f44edf) -
|
|
15
|
+
[ux] Fix the incorrect heading structure on the link picker with no results
|
|
16
|
+
|
|
3
17
|
## 1.47.16
|
|
4
18
|
|
|
5
19
|
### Patch Changes
|
|
@@ -29,7 +29,8 @@ var EmptyState = exports.EmptyState = function EmptyState(_ref) {
|
|
|
29
29
|
alignItems: "center",
|
|
30
30
|
gap: "space.200"
|
|
31
31
|
}, /*#__PURE__*/_react.default.createElement(_heading.default, {
|
|
32
|
-
size: "medium"
|
|
32
|
+
size: "medium",
|
|
33
|
+
as: "h2"
|
|
33
34
|
}, header), description && /*#__PURE__*/_react.default.createElement(_primitives.Text, {
|
|
34
35
|
as: "p",
|
|
35
36
|
color: "color.text"
|
|
@@ -17,6 +17,7 @@ var _minHeightContainer = require("../../../common/ui/min-height-container");
|
|
|
17
17
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/use-compiled -- Ignored via go/DSP-18766
|
|
18
18
|
|
|
19
19
|
var errorBoundaryFallbackStyles = (0, _react.css)({
|
|
20
|
+
// eslint-disable-next-line @atlaskit/design-system/use-tokens-typography
|
|
20
21
|
lineHeight: 'initial'
|
|
21
22
|
});
|
|
22
23
|
var messages = (0, _reactIntlNext.defineMessages)({
|
|
@@ -43,6 +43,7 @@ var rootContainerStyles = (0, _react2.css)({
|
|
|
43
43
|
paddingTop: 'var(--link-picker-padding-top)',
|
|
44
44
|
paddingBottom: 'var(--link-picker-padding-bottom)',
|
|
45
45
|
boxSizing: 'border-box',
|
|
46
|
+
// eslint-disable-next-line @atlaskit/design-system/use-tokens-typography
|
|
46
47
|
lineHeight: 'initial',
|
|
47
48
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-important-styles
|
|
48
49
|
display: 'block !important'
|
package/dist/cjs/ui/main.js
CHANGED
|
@@ -31,7 +31,7 @@ var testIds = exports.testIds = {
|
|
|
31
31
|
};
|
|
32
32
|
var PACKAGE_DATA = exports.PACKAGE_DATA = {
|
|
33
33
|
packageName: "@atlaskit/link-picker" || '',
|
|
34
|
-
packageVersion: "1.47.
|
|
34
|
+
packageVersion: "1.47.18" || '',
|
|
35
35
|
componentName: _constants.COMPONENT_NAME,
|
|
36
36
|
source: _constants.COMPONENT_NAME
|
|
37
37
|
};
|
|
@@ -23,7 +23,8 @@ export const EmptyState = ({
|
|
|
23
23
|
alignItems: "center",
|
|
24
24
|
gap: "space.200"
|
|
25
25
|
}, /*#__PURE__*/React.createElement(Heading, {
|
|
26
|
-
size: "medium"
|
|
26
|
+
size: "medium",
|
|
27
|
+
as: "h2"
|
|
27
28
|
}, header), description && /*#__PURE__*/React.createElement(Text, {
|
|
28
29
|
as: "p",
|
|
29
30
|
color: "color.text"
|
|
@@ -10,6 +10,7 @@ import { GenericErrorSVG } from '../../../common/generic-error-svg';
|
|
|
10
10
|
import { EmptyState } from '../../../common/ui/empty-state';
|
|
11
11
|
import { MinHeightContainer } from '../../../common/ui/min-height-container';
|
|
12
12
|
const errorBoundaryFallbackStyles = css({
|
|
13
|
+
// eslint-disable-next-line @atlaskit/design-system/use-tokens-typography
|
|
13
14
|
lineHeight: 'initial'
|
|
14
15
|
});
|
|
15
16
|
const messages = defineMessages({
|
|
@@ -35,6 +35,7 @@ const rootContainerStyles = css({
|
|
|
35
35
|
paddingTop: 'var(--link-picker-padding-top)',
|
|
36
36
|
paddingBottom: 'var(--link-picker-padding-bottom)',
|
|
37
37
|
boxSizing: 'border-box',
|
|
38
|
+
// eslint-disable-next-line @atlaskit/design-system/use-tokens-typography
|
|
38
39
|
lineHeight: 'initial',
|
|
39
40
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-important-styles
|
|
40
41
|
display: 'block !important'
|
package/dist/es2019/ui/main.js
CHANGED
|
@@ -22,7 +22,8 @@ export var EmptyState = function EmptyState(_ref) {
|
|
|
22
22
|
alignItems: "center",
|
|
23
23
|
gap: "space.200"
|
|
24
24
|
}, /*#__PURE__*/React.createElement(Heading, {
|
|
25
|
-
size: "medium"
|
|
25
|
+
size: "medium",
|
|
26
|
+
as: "h2"
|
|
26
27
|
}, header), description && /*#__PURE__*/React.createElement(Text, {
|
|
27
28
|
as: "p",
|
|
28
29
|
color: "color.text"
|
|
@@ -10,6 +10,7 @@ import { GenericErrorSVG } from '../../../common/generic-error-svg';
|
|
|
10
10
|
import { EmptyState } from '../../../common/ui/empty-state';
|
|
11
11
|
import { MinHeightContainer } from '../../../common/ui/min-height-container';
|
|
12
12
|
var errorBoundaryFallbackStyles = css({
|
|
13
|
+
// eslint-disable-next-line @atlaskit/design-system/use-tokens-typography
|
|
13
14
|
lineHeight: 'initial'
|
|
14
15
|
});
|
|
15
16
|
var messages = defineMessages({
|
|
@@ -39,6 +39,7 @@ var rootContainerStyles = css({
|
|
|
39
39
|
paddingTop: 'var(--link-picker-padding-top)',
|
|
40
40
|
paddingBottom: 'var(--link-picker-padding-bottom)',
|
|
41
41
|
boxSizing: 'border-box',
|
|
42
|
+
// eslint-disable-next-line @atlaskit/design-system/use-tokens-typography
|
|
42
43
|
lineHeight: 'initial',
|
|
43
44
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-important-styles
|
|
44
45
|
display: 'block !important'
|
package/dist/esm/ui/main.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/link-picker",
|
|
3
|
-
"version": "1.47.
|
|
3
|
+
"version": "1.47.18",
|
|
4
4
|
"description": "Standalone link picker",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"publishConfig": {
|
|
@@ -47,9 +47,9 @@
|
|
|
47
47
|
"@atlaskit/atlassian-context": "^0.0.2",
|
|
48
48
|
"@atlaskit/button": "^20.3.0",
|
|
49
49
|
"@atlaskit/form": "^11.0.0",
|
|
50
|
-
"@atlaskit/frontend-utilities": "^2.
|
|
50
|
+
"@atlaskit/frontend-utilities": "^2.8.0",
|
|
51
51
|
"@atlaskit/heading": "^4.0.0",
|
|
52
|
-
"@atlaskit/icon": "^23.
|
|
52
|
+
"@atlaskit/icon": "^23.3.0",
|
|
53
53
|
"@atlaskit/intl-messages-provider": "^1.0.2",
|
|
54
54
|
"@atlaskit/linking-common": "^6.1.0",
|
|
55
55
|
"@atlaskit/onboarding": "^12.2.0",
|
|
@@ -59,7 +59,7 @@
|
|
|
59
59
|
"@atlaskit/tabs": "^17.0.0",
|
|
60
60
|
"@atlaskit/textfield": "^6.7.0",
|
|
61
61
|
"@atlaskit/theme": "^14.0.0",
|
|
62
|
-
"@atlaskit/tokens": "^
|
|
62
|
+
"@atlaskit/tokens": "^3.0.0",
|
|
63
63
|
"@atlaskit/tooltip": "^19.0.0",
|
|
64
64
|
"@atlaskit/ufo": "^0.3.0",
|
|
65
65
|
"@atlaskit/visually-hidden": "^1.5.0",
|
|
@@ -79,7 +79,7 @@
|
|
|
79
79
|
"@af/analytics-codegen": "^0.1.0",
|
|
80
80
|
"@af/integration-testing": "*",
|
|
81
81
|
"@af/visual-regression": "*",
|
|
82
|
-
"@atlaskit/dropdown-menu": "^12.
|
|
82
|
+
"@atlaskit/dropdown-menu": "^12.24.0",
|
|
83
83
|
"@atlaskit/link-provider": "^1.18.0",
|
|
84
84
|
"@atlaskit/link-test-helpers": "^7.5.0",
|
|
85
85
|
"@atlaskit/visual-regression": "*",
|