@atlaskit/rovo-agent-components 7.4.0 → 7.4.1
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,12 @@
|
|
|
1
1
|
# @atlaskit/rovo-agent-components
|
|
2
2
|
|
|
3
|
+
## 7.4.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`6b27fa50e913b`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/6b27fa50e913b) -
|
|
8
|
+
Add fixed OOTB avatar mappings for Planner, Discovery and Feedback, and Daily Brief agents.
|
|
9
|
+
|
|
3
10
|
## 7.4.0
|
|
4
11
|
|
|
5
12
|
### Minor Changes
|
|
@@ -340,6 +340,16 @@ var outOfTheBoxAgentAvatar = {
|
|
|
340
340
|
},
|
|
341
341
|
color: greenColor
|
|
342
342
|
},
|
|
343
|
+
planner_agent: {
|
|
344
|
+
getRender: function getRender(size) {
|
|
345
|
+
return /*#__PURE__*/_react.default.createElement(OpsAgentAvatar, {
|
|
346
|
+
size: _avatar.AVATAR_SIZES[size],
|
|
347
|
+
primaryColor: purpleColor.primary,
|
|
348
|
+
secondaryColor: purpleColor.secondary
|
|
349
|
+
});
|
|
350
|
+
},
|
|
351
|
+
color: purpleColor
|
|
352
|
+
},
|
|
343
353
|
user_manual_writer_agent: {
|
|
344
354
|
getRender: function getRender(size) {
|
|
345
355
|
return /*#__PURE__*/_react.default.createElement(MyUserManualAvatar, {
|
|
@@ -380,6 +390,16 @@ var outOfTheBoxAgentAvatar = {
|
|
|
380
390
|
},
|
|
381
391
|
color: yellowColor
|
|
382
392
|
},
|
|
393
|
+
discovery_and_feedback_agent: {
|
|
394
|
+
getRender: function getRender(size) {
|
|
395
|
+
return /*#__PURE__*/_react.default.createElement(CommsCrafterAvatar, {
|
|
396
|
+
size: _avatar.AVATAR_SIZES[size],
|
|
397
|
+
primaryColor: greenColor.primary,
|
|
398
|
+
secondaryColor: greenColor.secondary
|
|
399
|
+
});
|
|
400
|
+
},
|
|
401
|
+
color: greenColor
|
|
402
|
+
},
|
|
383
403
|
jira_workflow_builder_agent: {
|
|
384
404
|
getRender: function getRender(size) {
|
|
385
405
|
return /*#__PURE__*/_react.default.createElement(WorkflowBuilderAvatar, {
|
|
@@ -410,6 +430,16 @@ var outOfTheBoxAgentAvatar = {
|
|
|
410
430
|
},
|
|
411
431
|
color: blueColor
|
|
412
432
|
},
|
|
433
|
+
daily_brief_agent: {
|
|
434
|
+
getRender: function getRender(size) {
|
|
435
|
+
return /*#__PURE__*/_react.default.createElement(TrialGuideAvatar, {
|
|
436
|
+
size: _avatar.AVATAR_SIZES[size],
|
|
437
|
+
primaryColor: yellowColor.primary,
|
|
438
|
+
secondaryColor: yellowColor.secondary
|
|
439
|
+
});
|
|
440
|
+
},
|
|
441
|
+
color: yellowColor
|
|
442
|
+
},
|
|
413
443
|
jira_admin_agent: {
|
|
414
444
|
getRender: function getRender(size) {
|
|
415
445
|
return /*#__PURE__*/_react.default.createElement(AutoDevAvatar, {
|
|
@@ -162,6 +162,14 @@ const outOfTheBoxAgentAvatar = {
|
|
|
162
162
|
}),
|
|
163
163
|
color: greenColor
|
|
164
164
|
},
|
|
165
|
+
planner_agent: {
|
|
166
|
+
getRender: size => /*#__PURE__*/React.createElement(OpsAgentAvatar, {
|
|
167
|
+
size: AVATAR_SIZES[size],
|
|
168
|
+
primaryColor: purpleColor.primary,
|
|
169
|
+
secondaryColor: purpleColor.secondary
|
|
170
|
+
}),
|
|
171
|
+
color: purpleColor
|
|
172
|
+
},
|
|
165
173
|
user_manual_writer_agent: {
|
|
166
174
|
getRender: size => /*#__PURE__*/React.createElement(MyUserManualAvatar, {
|
|
167
175
|
size: AVATAR_SIZES[size],
|
|
@@ -194,6 +202,14 @@ const outOfTheBoxAgentAvatar = {
|
|
|
194
202
|
}),
|
|
195
203
|
color: yellowColor
|
|
196
204
|
},
|
|
205
|
+
discovery_and_feedback_agent: {
|
|
206
|
+
getRender: size => /*#__PURE__*/React.createElement(CommsCrafterAvatar, {
|
|
207
|
+
size: AVATAR_SIZES[size],
|
|
208
|
+
primaryColor: greenColor.primary,
|
|
209
|
+
secondaryColor: greenColor.secondary
|
|
210
|
+
}),
|
|
211
|
+
color: greenColor
|
|
212
|
+
},
|
|
197
213
|
jira_workflow_builder_agent: {
|
|
198
214
|
getRender: size => /*#__PURE__*/React.createElement(WorkflowBuilderAvatar, {
|
|
199
215
|
size: AVATAR_SIZES[size],
|
|
@@ -218,6 +234,14 @@ const outOfTheBoxAgentAvatar = {
|
|
|
218
234
|
}),
|
|
219
235
|
color: blueColor
|
|
220
236
|
},
|
|
237
|
+
daily_brief_agent: {
|
|
238
|
+
getRender: size => /*#__PURE__*/React.createElement(TrialGuideAvatar, {
|
|
239
|
+
size: AVATAR_SIZES[size],
|
|
240
|
+
primaryColor: yellowColor.primary,
|
|
241
|
+
secondaryColor: yellowColor.secondary
|
|
242
|
+
}),
|
|
243
|
+
color: yellowColor
|
|
244
|
+
},
|
|
221
245
|
jira_admin_agent: {
|
|
222
246
|
getRender: size => /*#__PURE__*/React.createElement(AutoDevAvatar, {
|
|
223
247
|
size: AVATAR_SIZES[size],
|
|
@@ -255,6 +255,16 @@ var outOfTheBoxAgentAvatar = {
|
|
|
255
255
|
},
|
|
256
256
|
color: greenColor
|
|
257
257
|
},
|
|
258
|
+
planner_agent: {
|
|
259
|
+
getRender: function getRender(size) {
|
|
260
|
+
return /*#__PURE__*/React.createElement(OpsAgentAvatar, {
|
|
261
|
+
size: AVATAR_SIZES[size],
|
|
262
|
+
primaryColor: purpleColor.primary,
|
|
263
|
+
secondaryColor: purpleColor.secondary
|
|
264
|
+
});
|
|
265
|
+
},
|
|
266
|
+
color: purpleColor
|
|
267
|
+
},
|
|
258
268
|
user_manual_writer_agent: {
|
|
259
269
|
getRender: function getRender(size) {
|
|
260
270
|
return /*#__PURE__*/React.createElement(MyUserManualAvatar, {
|
|
@@ -295,6 +305,16 @@ var outOfTheBoxAgentAvatar = {
|
|
|
295
305
|
},
|
|
296
306
|
color: yellowColor
|
|
297
307
|
},
|
|
308
|
+
discovery_and_feedback_agent: {
|
|
309
|
+
getRender: function getRender(size) {
|
|
310
|
+
return /*#__PURE__*/React.createElement(CommsCrafterAvatar, {
|
|
311
|
+
size: AVATAR_SIZES[size],
|
|
312
|
+
primaryColor: greenColor.primary,
|
|
313
|
+
secondaryColor: greenColor.secondary
|
|
314
|
+
});
|
|
315
|
+
},
|
|
316
|
+
color: greenColor
|
|
317
|
+
},
|
|
298
318
|
jira_workflow_builder_agent: {
|
|
299
319
|
getRender: function getRender(size) {
|
|
300
320
|
return /*#__PURE__*/React.createElement(WorkflowBuilderAvatar, {
|
|
@@ -325,6 +345,16 @@ var outOfTheBoxAgentAvatar = {
|
|
|
325
345
|
},
|
|
326
346
|
color: blueColor
|
|
327
347
|
},
|
|
348
|
+
daily_brief_agent: {
|
|
349
|
+
getRender: function getRender(size) {
|
|
350
|
+
return /*#__PURE__*/React.createElement(TrialGuideAvatar, {
|
|
351
|
+
size: AVATAR_SIZES[size],
|
|
352
|
+
primaryColor: yellowColor.primary,
|
|
353
|
+
secondaryColor: yellowColor.secondary
|
|
354
|
+
});
|
|
355
|
+
},
|
|
356
|
+
color: yellowColor
|
|
357
|
+
},
|
|
328
358
|
jira_admin_agent: {
|
|
329
359
|
getRender: function getRender(size) {
|
|
330
360
|
return /*#__PURE__*/React.createElement(AutoDevAvatar, {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/rovo-agent-components",
|
|
3
|
-
"version": "7.4.
|
|
3
|
+
"version": "7.4.1",
|
|
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": {
|
|
@@ -27,7 +27,9 @@
|
|
|
27
27
|
"module:es2019": "dist/es2019/index.js",
|
|
28
28
|
"types": "dist/types/index.d.ts",
|
|
29
29
|
"atlaskit:src": "src/index.ts",
|
|
30
|
-
"sideEffects": [
|
|
30
|
+
"sideEffects": [
|
|
31
|
+
"*.compiled.css"
|
|
32
|
+
],
|
|
31
33
|
"dependencies": {
|
|
32
34
|
"@atlaskit/afm-i18n-platform-ai-mate-rovo-agent-components": "2.172.0",
|
|
33
35
|
"@atlaskit/analytics-next": "^12.2.0",
|
|
@@ -44,7 +46,7 @@
|
|
|
44
46
|
"@atlaskit/platform-feature-flags": "^2.0.0",
|
|
45
47
|
"@atlaskit/primitives": "^20.5.0",
|
|
46
48
|
"@atlaskit/react-compiler-gating": "^0.2.0",
|
|
47
|
-
"@atlaskit/rovo-agent-analytics": "^5.
|
|
49
|
+
"@atlaskit/rovo-agent-analytics": "^5.3.0",
|
|
48
50
|
"@atlaskit/skeleton": "^4.1.0",
|
|
49
51
|
"@atlaskit/spinner": "^20.1.0",
|
|
50
52
|
"@atlaskit/tokens": "^15.5.0",
|
|
@@ -61,7 +63,7 @@
|
|
|
61
63
|
"@atlaskit/ssr": "workspace:^",
|
|
62
64
|
"@atlassian/agent-studio-test-utils": "workspace:^",
|
|
63
65
|
"@atlassian/feature-flags-test-utils": "^1.1.0",
|
|
64
|
-
"@atlassian/testing-library": "^0.
|
|
66
|
+
"@atlassian/testing-library": "^0.11.0",
|
|
65
67
|
"@testing-library/react": "^16.3.0",
|
|
66
68
|
"@testing-library/user-event": "^14.4.3",
|
|
67
69
|
"@types/relay-test-utils": "^19.0.0",
|
|
@@ -76,18 +78,37 @@
|
|
|
76
78
|
},
|
|
77
79
|
"techstack": {
|
|
78
80
|
"@atlassian/frontend": {
|
|
79
|
-
"import-structure": [
|
|
80
|
-
|
|
81
|
+
"import-structure": [
|
|
82
|
+
"atlassian-conventions"
|
|
83
|
+
],
|
|
84
|
+
"circular-dependencies": [
|
|
85
|
+
"file-and-folder-level"
|
|
86
|
+
]
|
|
81
87
|
},
|
|
82
88
|
"@repo/internal": {
|
|
83
89
|
"dom-events": "use-bind-event-listener",
|
|
84
|
-
"analytics": [
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
"
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
"
|
|
90
|
+
"analytics": [
|
|
91
|
+
"analytics-next"
|
|
92
|
+
],
|
|
93
|
+
"design-tokens": [
|
|
94
|
+
"color"
|
|
95
|
+
],
|
|
96
|
+
"theming": [
|
|
97
|
+
"react-context"
|
|
98
|
+
],
|
|
99
|
+
"ui-components": [
|
|
100
|
+
"lite-mode"
|
|
101
|
+
],
|
|
102
|
+
"deprecation": [
|
|
103
|
+
"no-deprecated-imports"
|
|
104
|
+
],
|
|
105
|
+
"styling": [
|
|
106
|
+
"static",
|
|
107
|
+
"compiled"
|
|
108
|
+
],
|
|
109
|
+
"imports": [
|
|
110
|
+
"import-no-extraneous-disable-for-examples-and-docs"
|
|
111
|
+
]
|
|
91
112
|
}
|
|
92
113
|
},
|
|
93
114
|
"platform-feature-flags": {
|