@atlaskit/quick-search 8.2.1 → 8.2.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/quick-search
|
|
2
2
|
|
|
3
|
+
## 8.2.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#163815](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/163815)
|
|
8
|
+
[`c4cc01fa62da2`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/c4cc01fa62da2) -
|
|
9
|
+
Typography uplift work
|
|
10
|
+
|
|
11
|
+
## 8.2.2
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- Updated dependencies
|
|
16
|
+
|
|
3
17
|
## 8.2.1
|
|
4
18
|
|
|
5
19
|
### Patch Changes
|
|
@@ -18,9 +18,9 @@ var ResultItemGroupHeader = exports.ResultItemGroupHeader = _styledComponents.de
|
|
|
18
18
|
|
|
19
19
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-styled, @atlaskit/ui-styling-standard/no-exported-styles -- Ignored via go/DSP-18766
|
|
20
20
|
var ResultItemGroupTitle = exports.ResultItemGroupTitle = _styledComponents.default.div({
|
|
21
|
-
|
|
21
|
+
font: "var(--ds-font-body-small, normal 400 11px/16px ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif)",
|
|
22
22
|
lineHeight: '16px',
|
|
23
|
-
fontWeight: 600
|
|
23
|
+
fontWeight: "var(--ds-font-weight-semibold, 600)"
|
|
24
24
|
});
|
|
25
25
|
|
|
26
26
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-styled, @atlaskit/ui-styling-standard/no-exported-styles, @atlaskit/ui-styling-standard/no-dynamic-styles -- Ignored via go/DSP-18766
|
|
@@ -39,13 +39,13 @@ var ResultItemAfterWrapper = exports.ResultItemAfterWrapper = _styledComponents.
|
|
|
39
39
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-styled, @atlaskit/ui-styling-standard/no-exported-styles -- Ignored via go/DSP-18766
|
|
40
40
|
var ResultItemCaption = exports.ResultItemCaption = _styledComponents.default.span({
|
|
41
41
|
color: _colors.N200,
|
|
42
|
-
|
|
42
|
+
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)",
|
|
43
43
|
marginLeft: "var(--ds-space-100, 8px)"
|
|
44
44
|
});
|
|
45
45
|
|
|
46
46
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-styled, @atlaskit/ui-styling-standard/no-exported-styles -- Ignored via go/DSP-18766
|
|
47
47
|
var ResultItemSubText = exports.ResultItemSubText = _styledComponents.default.span({
|
|
48
|
-
|
|
48
|
+
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)",
|
|
49
49
|
color: _colors.N200
|
|
50
50
|
});
|
|
51
51
|
|
|
@@ -10,9 +10,9 @@ export const ResultItemGroupHeader = styled.div({
|
|
|
10
10
|
|
|
11
11
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-styled, @atlaskit/ui-styling-standard/no-exported-styles -- Ignored via go/DSP-18766
|
|
12
12
|
export const ResultItemGroupTitle = styled.div({
|
|
13
|
-
|
|
13
|
+
font: "var(--ds-font-body-small, normal 400 11px/16px ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif)",
|
|
14
14
|
lineHeight: '16px',
|
|
15
|
-
fontWeight: 600
|
|
15
|
+
fontWeight: "var(--ds-font-weight-semibold, 600)"
|
|
16
16
|
});
|
|
17
17
|
|
|
18
18
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-styled, @atlaskit/ui-styling-standard/no-exported-styles, @atlaskit/ui-styling-standard/no-dynamic-styles -- Ignored via go/DSP-18766
|
|
@@ -29,13 +29,13 @@ export const ResultItemAfterWrapper = styled.div({
|
|
|
29
29
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-styled, @atlaskit/ui-styling-standard/no-exported-styles -- Ignored via go/DSP-18766
|
|
30
30
|
export const ResultItemCaption = styled.span({
|
|
31
31
|
color: N200,
|
|
32
|
-
|
|
32
|
+
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)",
|
|
33
33
|
marginLeft: "var(--ds-space-100, 8px)"
|
|
34
34
|
});
|
|
35
35
|
|
|
36
36
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-styled, @atlaskit/ui-styling-standard/no-exported-styles -- Ignored via go/DSP-18766
|
|
37
37
|
export const ResultItemSubText = styled.span({
|
|
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
|
color: N200
|
|
40
40
|
});
|
|
41
41
|
|
|
@@ -10,9 +10,9 @@ export var ResultItemGroupHeader = styled.div({
|
|
|
10
10
|
|
|
11
11
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-styled, @atlaskit/ui-styling-standard/no-exported-styles -- Ignored via go/DSP-18766
|
|
12
12
|
export var ResultItemGroupTitle = styled.div({
|
|
13
|
-
|
|
13
|
+
font: "var(--ds-font-body-small, normal 400 11px/16px ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif)",
|
|
14
14
|
lineHeight: '16px',
|
|
15
|
-
fontWeight: 600
|
|
15
|
+
fontWeight: "var(--ds-font-weight-semibold, 600)"
|
|
16
16
|
});
|
|
17
17
|
|
|
18
18
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-styled, @atlaskit/ui-styling-standard/no-exported-styles, @atlaskit/ui-styling-standard/no-dynamic-styles -- Ignored via go/DSP-18766
|
|
@@ -31,13 +31,13 @@ export var ResultItemAfterWrapper = styled.div({
|
|
|
31
31
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-styled, @atlaskit/ui-styling-standard/no-exported-styles -- Ignored via go/DSP-18766
|
|
32
32
|
export var ResultItemCaption = styled.span({
|
|
33
33
|
color: N200,
|
|
34
|
-
|
|
34
|
+
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)",
|
|
35
35
|
marginLeft: "var(--ds-space-100, 8px)"
|
|
36
36
|
});
|
|
37
37
|
|
|
38
38
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-styled, @atlaskit/ui-styling-standard/no-exported-styles -- Ignored via go/DSP-18766
|
|
39
39
|
export var ResultItemSubText = styled.span({
|
|
40
|
-
|
|
40
|
+
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)",
|
|
41
41
|
color: N200
|
|
42
42
|
});
|
|
43
43
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/quick-search",
|
|
3
|
-
"version": "8.2.
|
|
3
|
+
"version": "8.2.3",
|
|
4
4
|
"description": "A quick-search component",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -29,11 +29,11 @@
|
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
31
|
"@atlaskit/analytics": "^8.1.0",
|
|
32
|
-
"@atlaskit/avatar": "^21.
|
|
32
|
+
"@atlaskit/avatar": "^21.17.0",
|
|
33
33
|
"@atlaskit/item": "^12.1.0",
|
|
34
34
|
"@atlaskit/spinner": "^16.3.0",
|
|
35
|
-
"@atlaskit/theme": "^
|
|
36
|
-
"@atlaskit/tokens": "^2.
|
|
35
|
+
"@atlaskit/theme": "^14.0.0",
|
|
36
|
+
"@atlaskit/tokens": "^2.2.0",
|
|
37
37
|
"@babel/runtime": "^7.0.0",
|
|
38
38
|
"keycode": "^2.1.7"
|
|
39
39
|
},
|