@atlaskit/rovo-agent-selector 3.0.2 → 3.0.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,11 @@
1
1
  # @atlaskit/rovo-agent-selector
2
2
 
3
+ ## 3.0.3
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+
3
9
  ## 3.0.2
4
10
 
5
11
  ### Patch Changes
package/compass.yml ADDED
@@ -0,0 +1,38 @@
1
+ configVersion: 1
2
+ id: ari:cloud:compass:a436116f-02ce-4520-8fbb-7301462a1674:component/c5751cc6-3513-4070-9deb-af31e86aed34/7aec16f7-1149-42fa-afca-63d430c0971d
3
+ name: '@atlaskit/rovo-agent-selector'
4
+ ownerId: ari:cloud:identity::team/85495c60-df35-49e8-88f9-7dec2cfecf4c # Servo
5
+ labels:
6
+ - platform-code
7
+ - platform-afm
8
+ typeId: OTHER
9
+ fields:
10
+ tier: 4
11
+ lifecycle: Active
12
+ isMonorepoProject: true
13
+ links:
14
+ - name: Root Repository
15
+ type: REPOSITORY
16
+ url: https://bitbucket.org/atlassian/atlassian-frontend-monorepo/src/master
17
+ - name: Slack Channel
18
+ type: CHAT_CHANNEL
19
+ url: https://atlassian.enterprise.slack.com/app_redirect?channel=rovo-for-service-servo
20
+ - name: Rovo Agent Selector
21
+ type: REPOSITORY
22
+ url: https://bitbucket.org/atlassian/atlassian-frontend-monorepo/src/master/platform/packages/servo/rovo-agent-selector
23
+ customFields:
24
+ - name: Department
25
+ type: text
26
+ value: Eng - Servo
27
+ - name: Technical Owner
28
+ type: user
29
+ value: ari:cloud:identity::user/712020:ddf8a008-6f8e-4662-8cb0-c9e8e9e1dd02 # Benjamin Caldwell
30
+ - name: Required Reviewers Opt In
31
+ type: boolean
32
+ value: true
33
+ - name: Reviewer Selection Mechanism
34
+ type: text
35
+ value: random(2)
36
+ - name: Required Reviewer Approvals
37
+ type: number
38
+ value: 1
package/package.json CHANGED
@@ -17,11 +17,11 @@
17
17
  "atlaskit:src": "src/index.ts",
18
18
  "dependencies": {
19
19
  "@atlaskit/css": "^1.0.0",
20
- "@atlaskit/form": "^16.0.0",
20
+ "@atlaskit/form": "^16.1.0",
21
21
  "@atlaskit/platform-feature-flags": "^2.0.0",
22
- "@atlaskit/primitives": "^20.0.0",
23
- "@atlaskit/rovo-agent-components": "^7.0.0",
24
- "@atlaskit/select": "^22.0.0",
22
+ "@atlaskit/primitives": "^21.0.0",
23
+ "@atlaskit/rovo-agent-components": "^7.5.0",
24
+ "@atlaskit/select": "^22.5.0",
25
25
  "@babel/runtime": "^7.0.0",
26
26
  "@compiled/react": "^0.20.0",
27
27
  "react-relay": "^20.1.1",
@@ -36,10 +36,10 @@
36
36
  "@af/suppress-react-warnings": "workspace:^",
37
37
  "@af/visual-regression": "workspace:^",
38
38
  "@atlaskit/ssr": "workspace:^",
39
- "@atlassian/testing-library": "^0.6.0",
39
+ "@atlassian/testing-library": "^0.11.0",
40
40
  "react": "^18.2.0",
41
41
  "react-dom": "^18.2.0",
42
- "react-intl": "^6.6.2",
42
+ "react-intl": "^7.0.0",
43
43
  "react-magnetic-di": "^3.1.4",
44
44
  "relay-test-utils": "^20.1.1"
45
45
  },
@@ -82,7 +82,7 @@
82
82
  }
83
83
  },
84
84
  "name": "@atlaskit/rovo-agent-selector",
85
- "version": "3.0.2",
85
+ "version": "3.0.3",
86
86
  "description": "rovo agent selector",
87
87
  "author": "Atlassian Pty Ltd",
88
88
  "license": "Apache-2.0",
@@ -0,0 +1,39 @@
1
+ import path from 'path';
2
+
3
+ import type { StructuredContentSource } from '@atlassian/structured-docs-types/types';
4
+
5
+ import packageJson from './package.json';
6
+
7
+ const packagePath = path.resolve(__dirname);
8
+
9
+ const documentation: StructuredContentSource = {
10
+ components: [
11
+ {
12
+ name: 'RovoAgentSelector',
13
+ description: 'A component that allows users to select a Rovo agent from a list.',
14
+ status: 'general-availability',
15
+ import: {
16
+ name: 'RovoAgentSelector',
17
+ package: '@atlaskit/rovo-agent-selector',
18
+ type: 'named',
19
+ packagePath,
20
+ packageJson,
21
+ },
22
+ usageGuidelines: [
23
+ 'Use RovoAgentSelector to allow users to choose which Rovo agent to interact with.',
24
+ 'Typically used in chat or assistance contexts.',
25
+ ],
26
+ examples: [
27
+ {
28
+ name: 'Basic',
29
+ description: 'Standard Rovo agent selector display.',
30
+ source: path.resolve(packagePath, './examples/basic.tsx'),
31
+ },
32
+ ],
33
+ keywords: ['rovo', 'agent', 'selector', 'ai', 'assistance'],
34
+ categories: ['interaction'],
35
+ },
36
+ ],
37
+ };
38
+
39
+ export default documentation;