@atlaskit/rovo-agent-components 2.4.0 → 2.5.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
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# @atlaskit/rovo-agent-components
|
|
2
2
|
|
|
3
|
+
## 2.5.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#136047](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/136047)
|
|
8
|
+
[`8fea349c76752`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/8fea349c76752) -
|
|
9
|
+
[ux] Icon changes for Ops Guide and RCA agent
|
|
10
|
+
|
|
3
11
|
## 2.4.0
|
|
4
12
|
|
|
5
13
|
### Minor Changes
|
|
@@ -150,6 +150,26 @@ var colorList = [yellowColor, purpleColor, greenColor, blueColor];
|
|
|
150
150
|
var avatarList = [CustomerInsightAvatar, BacklogBuddyAvatar, DecisionDirectorAvatar, CommsCrafterAvatar, AutoDevAvatar, OkrOracleAvatar, CultureAvatar, SocialMediaScribeAvatar, TeamConnectionAvatar, HireWriterAvatar, OpsAgentAvatar, ResearchScoutAvatar, ReleaseNotesAvatar, MyUserManualAvatar, PitchPerfectorAvatar, AutoDevAvatar, AutoFixAvatar, AutoReviewAvatar, MarketingMessageMaestroAvatar, FeatureFlagAvatar, ProductRequirementAvatar];
|
|
151
151
|
var TOTAL_AVATAR_COMBINATIONS = exports.TOTAL_AVATAR_COMBINATIONS = avatarList.length * colorList.length;
|
|
152
152
|
var outOfTheBoxAgentAvatar = {
|
|
153
|
+
autodev_code_documentation_writer_agent: {
|
|
154
|
+
getRender: function getRender(size) {
|
|
155
|
+
return /*#__PURE__*/_react.default.createElement(SocialMediaScribeAvatar, {
|
|
156
|
+
size: _avatar.AVATAR_SIZES[size],
|
|
157
|
+
primaryColor: greenColor.primary,
|
|
158
|
+
secondaryColor: greenColor.secondary
|
|
159
|
+
});
|
|
160
|
+
},
|
|
161
|
+
color: greenColor
|
|
162
|
+
},
|
|
163
|
+
autodev_feature_flag_cleaner_agent: {
|
|
164
|
+
getRender: function getRender(size) {
|
|
165
|
+
return /*#__PURE__*/_react.default.createElement(FeatureFlagAvatar, {
|
|
166
|
+
size: _avatar.AVATAR_SIZES[size],
|
|
167
|
+
primaryColor: greenColor.primary,
|
|
168
|
+
secondaryColor: greenColor.secondary
|
|
169
|
+
});
|
|
170
|
+
},
|
|
171
|
+
color: greenColor
|
|
172
|
+
},
|
|
153
173
|
decision_director_agent: {
|
|
154
174
|
getRender: function getRender(size) {
|
|
155
175
|
return /*#__PURE__*/_react.default.createElement(DecisionDirectorAvatar, {
|
|
@@ -190,15 +210,15 @@ var outOfTheBoxAgentAvatar = {
|
|
|
190
210
|
},
|
|
191
211
|
color: greenColor
|
|
192
212
|
},
|
|
193
|
-
|
|
213
|
+
ops_guide_agent: {
|
|
194
214
|
getRender: function getRender(size) {
|
|
195
215
|
return /*#__PURE__*/_react.default.createElement(OpsAgentAvatar, {
|
|
196
216
|
size: _avatar.AVATAR_SIZES[size],
|
|
197
|
-
primaryColor:
|
|
198
|
-
secondaryColor:
|
|
217
|
+
primaryColor: yellowColor.primary,
|
|
218
|
+
secondaryColor: yellowColor.secondary
|
|
199
219
|
});
|
|
200
220
|
},
|
|
201
|
-
color:
|
|
221
|
+
color: yellowColor
|
|
202
222
|
},
|
|
203
223
|
jira_workflow_wizard_agent: {
|
|
204
224
|
getRender: function getRender(size) {
|
|
@@ -209,6 +229,16 @@ var outOfTheBoxAgentAvatar = {
|
|
|
209
229
|
});
|
|
210
230
|
},
|
|
211
231
|
color: blueColor
|
|
232
|
+
},
|
|
233
|
+
itops_rca_agent: {
|
|
234
|
+
getRender: function getRender(size) {
|
|
235
|
+
return /*#__PURE__*/_react.default.createElement(AutoReviewAvatar, {
|
|
236
|
+
size: _avatar.AVATAR_SIZES[size],
|
|
237
|
+
primaryColor: yellowColor.primary,
|
|
238
|
+
secondaryColor: yellowColor.secondary
|
|
239
|
+
});
|
|
240
|
+
},
|
|
241
|
+
color: yellowColor
|
|
212
242
|
}
|
|
213
243
|
};
|
|
214
244
|
|
|
@@ -52,6 +52,22 @@ const colorList = [yellowColor, purpleColor, greenColor, blueColor];
|
|
|
52
52
|
const avatarList = [CustomerInsightAvatar, BacklogBuddyAvatar, DecisionDirectorAvatar, CommsCrafterAvatar, AutoDevAvatar, OkrOracleAvatar, CultureAvatar, SocialMediaScribeAvatar, TeamConnectionAvatar, HireWriterAvatar, OpsAgentAvatar, ResearchScoutAvatar, ReleaseNotesAvatar, MyUserManualAvatar, PitchPerfectorAvatar, AutoDevAvatar, AutoFixAvatar, AutoReviewAvatar, MarketingMessageMaestroAvatar, FeatureFlagAvatar, ProductRequirementAvatar];
|
|
53
53
|
export const TOTAL_AVATAR_COMBINATIONS = avatarList.length * colorList.length;
|
|
54
54
|
const outOfTheBoxAgentAvatar = {
|
|
55
|
+
autodev_code_documentation_writer_agent: {
|
|
56
|
+
getRender: size => /*#__PURE__*/React.createElement(SocialMediaScribeAvatar, {
|
|
57
|
+
size: AVATAR_SIZES[size],
|
|
58
|
+
primaryColor: greenColor.primary,
|
|
59
|
+
secondaryColor: greenColor.secondary
|
|
60
|
+
}),
|
|
61
|
+
color: greenColor
|
|
62
|
+
},
|
|
63
|
+
autodev_feature_flag_cleaner_agent: {
|
|
64
|
+
getRender: size => /*#__PURE__*/React.createElement(FeatureFlagAvatar, {
|
|
65
|
+
size: AVATAR_SIZES[size],
|
|
66
|
+
primaryColor: greenColor.primary,
|
|
67
|
+
secondaryColor: greenColor.secondary
|
|
68
|
+
}),
|
|
69
|
+
color: greenColor
|
|
70
|
+
},
|
|
55
71
|
decision_director_agent: {
|
|
56
72
|
getRender: size => /*#__PURE__*/React.createElement(DecisionDirectorAvatar, {
|
|
57
73
|
size: AVATAR_SIZES[size],
|
|
@@ -84,13 +100,13 @@ const outOfTheBoxAgentAvatar = {
|
|
|
84
100
|
}),
|
|
85
101
|
color: greenColor
|
|
86
102
|
},
|
|
87
|
-
|
|
103
|
+
ops_guide_agent: {
|
|
88
104
|
getRender: size => /*#__PURE__*/React.createElement(OpsAgentAvatar, {
|
|
89
105
|
size: AVATAR_SIZES[size],
|
|
90
|
-
primaryColor:
|
|
91
|
-
secondaryColor:
|
|
106
|
+
primaryColor: yellowColor.primary,
|
|
107
|
+
secondaryColor: yellowColor.secondary
|
|
92
108
|
}),
|
|
93
|
-
color:
|
|
109
|
+
color: yellowColor
|
|
94
110
|
},
|
|
95
111
|
jira_workflow_wizard_agent: {
|
|
96
112
|
getRender: size => /*#__PURE__*/React.createElement(WorkflowBuilderAvatar, {
|
|
@@ -99,6 +115,14 @@ const outOfTheBoxAgentAvatar = {
|
|
|
99
115
|
secondaryColor: blueColor.secondary
|
|
100
116
|
}),
|
|
101
117
|
color: blueColor
|
|
118
|
+
},
|
|
119
|
+
itops_rca_agent: {
|
|
120
|
+
getRender: size => /*#__PURE__*/React.createElement(AutoReviewAvatar, {
|
|
121
|
+
size: AVATAR_SIZES[size],
|
|
122
|
+
primaryColor: yellowColor.primary,
|
|
123
|
+
secondaryColor: yellowColor.secondary
|
|
124
|
+
}),
|
|
125
|
+
color: yellowColor
|
|
102
126
|
}
|
|
103
127
|
};
|
|
104
128
|
|
|
@@ -96,6 +96,26 @@ var colorList = [yellowColor, purpleColor, greenColor, blueColor];
|
|
|
96
96
|
var avatarList = [CustomerInsightAvatar, BacklogBuddyAvatar, DecisionDirectorAvatar, CommsCrafterAvatar, AutoDevAvatar, OkrOracleAvatar, CultureAvatar, SocialMediaScribeAvatar, TeamConnectionAvatar, HireWriterAvatar, OpsAgentAvatar, ResearchScoutAvatar, ReleaseNotesAvatar, MyUserManualAvatar, PitchPerfectorAvatar, AutoDevAvatar, AutoFixAvatar, AutoReviewAvatar, MarketingMessageMaestroAvatar, FeatureFlagAvatar, ProductRequirementAvatar];
|
|
97
97
|
export var TOTAL_AVATAR_COMBINATIONS = avatarList.length * colorList.length;
|
|
98
98
|
var outOfTheBoxAgentAvatar = {
|
|
99
|
+
autodev_code_documentation_writer_agent: {
|
|
100
|
+
getRender: function getRender(size) {
|
|
101
|
+
return /*#__PURE__*/React.createElement(SocialMediaScribeAvatar, {
|
|
102
|
+
size: AVATAR_SIZES[size],
|
|
103
|
+
primaryColor: greenColor.primary,
|
|
104
|
+
secondaryColor: greenColor.secondary
|
|
105
|
+
});
|
|
106
|
+
},
|
|
107
|
+
color: greenColor
|
|
108
|
+
},
|
|
109
|
+
autodev_feature_flag_cleaner_agent: {
|
|
110
|
+
getRender: function getRender(size) {
|
|
111
|
+
return /*#__PURE__*/React.createElement(FeatureFlagAvatar, {
|
|
112
|
+
size: AVATAR_SIZES[size],
|
|
113
|
+
primaryColor: greenColor.primary,
|
|
114
|
+
secondaryColor: greenColor.secondary
|
|
115
|
+
});
|
|
116
|
+
},
|
|
117
|
+
color: greenColor
|
|
118
|
+
},
|
|
99
119
|
decision_director_agent: {
|
|
100
120
|
getRender: function getRender(size) {
|
|
101
121
|
return /*#__PURE__*/React.createElement(DecisionDirectorAvatar, {
|
|
@@ -136,15 +156,15 @@ var outOfTheBoxAgentAvatar = {
|
|
|
136
156
|
},
|
|
137
157
|
color: greenColor
|
|
138
158
|
},
|
|
139
|
-
|
|
159
|
+
ops_guide_agent: {
|
|
140
160
|
getRender: function getRender(size) {
|
|
141
161
|
return /*#__PURE__*/React.createElement(OpsAgentAvatar, {
|
|
142
162
|
size: AVATAR_SIZES[size],
|
|
143
|
-
primaryColor:
|
|
144
|
-
secondaryColor:
|
|
163
|
+
primaryColor: yellowColor.primary,
|
|
164
|
+
secondaryColor: yellowColor.secondary
|
|
145
165
|
});
|
|
146
166
|
},
|
|
147
|
-
color:
|
|
167
|
+
color: yellowColor
|
|
148
168
|
},
|
|
149
169
|
jira_workflow_wizard_agent: {
|
|
150
170
|
getRender: function getRender(size) {
|
|
@@ -155,6 +175,16 @@ var outOfTheBoxAgentAvatar = {
|
|
|
155
175
|
});
|
|
156
176
|
},
|
|
157
177
|
color: blueColor
|
|
178
|
+
},
|
|
179
|
+
itops_rca_agent: {
|
|
180
|
+
getRender: function getRender(size) {
|
|
181
|
+
return /*#__PURE__*/React.createElement(AutoReviewAvatar, {
|
|
182
|
+
size: AVATAR_SIZES[size],
|
|
183
|
+
primaryColor: yellowColor.primary,
|
|
184
|
+
secondaryColor: yellowColor.secondary
|
|
185
|
+
});
|
|
186
|
+
},
|
|
187
|
+
color: yellowColor
|
|
158
188
|
}
|
|
159
189
|
};
|
|
160
190
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/rovo-agent-components",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.5.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
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
"@atlaskit/css": "^0.10.0",
|
|
43
43
|
"@atlaskit/dropdown-menu": "^14.0.0",
|
|
44
44
|
"@atlaskit/heading": "^5.1.0",
|
|
45
|
-
"@atlaskit/icon": "^25.
|
|
45
|
+
"@atlaskit/icon": "^25.5.0",
|
|
46
46
|
"@atlaskit/legacy-custom-icons": "^0.22.0",
|
|
47
47
|
"@atlaskit/logo": "^16.0.0",
|
|
48
48
|
"@atlaskit/platform-feature-flags": "^1.1.0",
|