@atlaskit/menu 1.4.4 → 1.4.5
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 +6 -0
- package/dist/cjs/menu-item/heading-item.js +1 -1
- package/dist/cjs/version.json +1 -1
- package/dist/es2019/menu-item/heading-item.js +1 -1
- package/dist/es2019/version.json +1 -1
- package/dist/esm/menu-item/heading-item.js +1 -1
- package/dist/esm/version.json +1 -1
- package/package.json +2 -2
- package/report.api.md +14 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# @atlaskit/menu
|
|
2
2
|
|
|
3
|
+
## 1.4.5
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`b0f6dd0bc35`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b0f6dd0bc35) - Updated to use typography tokens. There is no expected behaviour or visual change.
|
|
8
|
+
|
|
3
9
|
## 1.4.4
|
|
4
10
|
|
|
5
11
|
### Patch Changes
|
|
@@ -32,7 +32,7 @@ var headingStyles = (0, _react2.css)({
|
|
|
32
32
|
padding: "0 ".concat(itemSidePadding, "px"),
|
|
33
33
|
color: "var(--ds-text-subtle, ".concat(_colors.N300, ")"),
|
|
34
34
|
fontSize: itemHeadingFontSize,
|
|
35
|
-
fontWeight: 700,
|
|
35
|
+
fontWeight: "var(--ds-font-weight-bold, 700)",
|
|
36
36
|
lineHeight: itemHeadingContentHeight / itemHeadingFontSize,
|
|
37
37
|
textTransform: 'uppercase'
|
|
38
38
|
});
|
package/dist/cjs/version.json
CHANGED
|
@@ -15,7 +15,7 @@ const headingStyles = css({
|
|
|
15
15
|
padding: `0 ${itemSidePadding}px`,
|
|
16
16
|
color: `var(--ds-text-subtle, ${N300})`,
|
|
17
17
|
fontSize: itemHeadingFontSize,
|
|
18
|
-
fontWeight: 700,
|
|
18
|
+
fontWeight: "var(--ds-font-weight-bold, 700)",
|
|
19
19
|
lineHeight: itemHeadingContentHeight / itemHeadingFontSize,
|
|
20
20
|
textTransform: 'uppercase'
|
|
21
21
|
});
|
package/dist/es2019/version.json
CHANGED
|
@@ -17,7 +17,7 @@ var headingStyles = css({
|
|
|
17
17
|
padding: "0 ".concat(itemSidePadding, "px"),
|
|
18
18
|
color: "var(--ds-text-subtle, ".concat(N300, ")"),
|
|
19
19
|
fontSize: itemHeadingFontSize,
|
|
20
|
-
fontWeight: 700,
|
|
20
|
+
fontWeight: "var(--ds-font-weight-bold, 700)",
|
|
21
21
|
lineHeight: itemHeadingContentHeight / itemHeadingFontSize,
|
|
22
22
|
textTransform: 'uppercase'
|
|
23
23
|
});
|
package/dist/esm/version.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/menu",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.5",
|
|
4
4
|
"description": "A collection of composable menu components that can be used anywhere.",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
".": "./src/index.tsx"
|
|
38
38
|
},
|
|
39
39
|
"dependencies": {
|
|
40
|
-
"@atlaskit/ds-explorations": "^1.
|
|
40
|
+
"@atlaskit/ds-explorations": "^1.7.0",
|
|
41
41
|
"@atlaskit/ds-lib": "^2.1.0",
|
|
42
42
|
"@atlaskit/focus-ring": "^1.2.0",
|
|
43
43
|
"@atlaskit/theme": "^12.2.0",
|
package/report.api.md
CHANGED
|
@@ -8,6 +8,7 @@
|
|
|
8
8
|
### Table of contents
|
|
9
9
|
|
|
10
10
|
- [Main Entry Types](#main-entry-types)
|
|
11
|
+
- [Peer Dependencies](#peer-dependencies)
|
|
11
12
|
|
|
12
13
|
### Main Entry Types
|
|
13
14
|
|
|
@@ -260,3 +261,16 @@ export interface TitleOverrides {
|
|
|
260
261
|
```
|
|
261
262
|
|
|
262
263
|
<!--SECTION END: Main Entry Types-->
|
|
264
|
+
|
|
265
|
+
### Peer Dependencies
|
|
266
|
+
|
|
267
|
+
<!--SECTION START: Peer Dependencies-->
|
|
268
|
+
|
|
269
|
+
```json
|
|
270
|
+
{
|
|
271
|
+
"react": "^16.8.0",
|
|
272
|
+
"react-dom": "^16.8.0"
|
|
273
|
+
}
|
|
274
|
+
```
|
|
275
|
+
|
|
276
|
+
<!--SECTION END: Peer Dependencies-->
|