@atlaskit/rovo-agent-components 4.0.0 → 4.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 +7 -0
- package/dist/cjs/ui/agent-menu-item-skeleton/index.js +0 -1
- package/dist/cjs/ui/agent-profile-info/agent-star-count/index.js +1 -2
- package/dist/cjs/ui/agent-profile-info/index.js +1 -2
- package/dist/es2019/ui/agent-menu-item-skeleton/index.js +0 -1
- package/dist/es2019/ui/agent-profile-info/agent-star-count/index.js +1 -2
- package/dist/es2019/ui/agent-profile-info/index.js +1 -2
- package/dist/esm/ui/agent-menu-item-skeleton/index.js +0 -1
- package/dist/esm/ui/agent-profile-info/agent-star-count/index.js +1 -2
- package/dist/esm/ui/agent-profile-info/index.js +1 -2
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# @atlaskit/rovo-agent-components
|
|
2
2
|
|
|
3
|
+
## 4.1.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`af7c97b639e4f`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/af7c97b639e4f) -
|
|
8
|
+
Removed hardcoded `borderRadius` pixel values from `Skeleton` components
|
|
9
|
+
|
|
3
10
|
## 4.0.0
|
|
4
11
|
|
|
5
12
|
### Major Changes
|
|
@@ -43,7 +43,6 @@ var AgentMenuItemSkeleton = exports.AgentMenuItemSkeleton = function AgentMenuIt
|
|
|
43
43
|
}), /*#__PURE__*/_react.default.createElement(_skeleton.default, {
|
|
44
44
|
width: skeletonTextWidth,
|
|
45
45
|
height: skeletonTextHeight,
|
|
46
|
-
borderRadius: 4,
|
|
47
46
|
isShimmering: true,
|
|
48
47
|
testId: "loading-agents-text-skeleton-".concat(index)
|
|
49
48
|
}));
|
|
@@ -38,8 +38,7 @@ var AgentStarCount = exports.AgentStarCount = function AgentStarCount(_ref) {
|
|
|
38
38
|
testId: "agent-profile-info-star-count-skeleton",
|
|
39
39
|
isShimmering: true,
|
|
40
40
|
height: 16,
|
|
41
|
-
width: 75
|
|
42
|
-
borderRadius: 3
|
|
41
|
+
width: 75
|
|
43
42
|
}) : formatMessage(_messages.messages.starredCount, {
|
|
44
43
|
starCount: (0, _utils.formatNumber)(starCount !== null && starCount !== void 0 ? starCount : 0)
|
|
45
44
|
}));
|
|
@@ -31,8 +31,7 @@ export const AgentStarCount = ({
|
|
|
31
31
|
testId: "agent-profile-info-star-count-skeleton",
|
|
32
32
|
isShimmering: true,
|
|
33
33
|
height: 16,
|
|
34
|
-
width: 75
|
|
35
|
-
borderRadius: 3
|
|
34
|
+
width: 75
|
|
36
35
|
}) : formatMessage(messages.starredCount, {
|
|
37
36
|
starCount: formatNumber(starCount !== null && starCount !== void 0 ? starCount : 0)
|
|
38
37
|
}));
|
|
@@ -36,7 +36,6 @@ export var AgentMenuItemSkeleton = function AgentMenuItemSkeleton(_ref) {
|
|
|
36
36
|
}), /*#__PURE__*/React.createElement(Skeleton, {
|
|
37
37
|
width: skeletonTextWidth,
|
|
38
38
|
height: skeletonTextHeight,
|
|
39
|
-
borderRadius: 4,
|
|
40
39
|
isShimmering: true,
|
|
41
40
|
testId: "loading-agents-text-skeleton-".concat(index)
|
|
42
41
|
}));
|
|
@@ -29,8 +29,7 @@ export var AgentStarCount = function AgentStarCount(_ref) {
|
|
|
29
29
|
testId: "agent-profile-info-star-count-skeleton",
|
|
30
30
|
isShimmering: true,
|
|
31
31
|
height: 16,
|
|
32
|
-
width: 75
|
|
33
|
-
borderRadius: 3
|
|
32
|
+
width: 75
|
|
34
33
|
}) : formatMessage(messages.starredCount, {
|
|
35
34
|
starCount: formatNumber(starCount !== null && starCount !== void 0 ? starCount : 0)
|
|
36
35
|
}));
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/rovo-agent-components",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.1.0",
|
|
4
4
|
"description": "This package host public components related to rovo agents, the components here are needed for other public atlaskit packages",
|
|
5
5
|
"repository": "https://bitbucket.org/atlassian/atlassian-frontend-monorepo",
|
|
6
6
|
"atlassian": {
|
|
@@ -47,7 +47,7 @@
|
|
|
47
47
|
"@atlaskit/dropdown-menu": "^16.8.0",
|
|
48
48
|
"@atlaskit/flag": "^17.9.0",
|
|
49
49
|
"@atlaskit/heading": "^5.4.0",
|
|
50
|
-
"@atlaskit/icon": "^34.
|
|
50
|
+
"@atlaskit/icon": "^34.1.0",
|
|
51
51
|
"@atlaskit/link": "^3.4.0",
|
|
52
52
|
"@atlaskit/logo": "^20.0.0",
|
|
53
53
|
"@atlaskit/platform-feature-flags": "^1.1.0",
|