@atlaskit/rovo-agent-selector 2.0.0 → 2.0.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,14 @@
1
1
  # @atlaskit/rovo-agent-selector
2
2
 
3
+ ## 2.0.1
4
+
5
+ ### Patch Changes
6
+
7
+ - [`267b2bb06c564`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/267b2bb06c564) -
8
+ Internal dependency change: switch from pinned Relay v17 aliases to root:\* and upgraded root to
9
+ Relay v20.1.1. No public API changes.
10
+ - Updated dependencies
11
+
3
12
  ## 2.0.0
4
13
 
5
14
  ### Major Changes
@@ -9,7 +9,7 @@ var messages = (0, _reactIntl.defineMessages)({
9
9
  selectorLabel: {
10
10
  id: 'rovo-agent-selector.label',
11
11
  defaultMessage: 'Select agent',
12
- description: 'Label for the agent selector dropdown'
12
+ description: 'The text is shown as the visible label for the drop-down selector component that allows the user to choose a Rovo AI agent from a list of available agents.'
13
13
  },
14
14
  rovoAgentPlaceholder: {
15
15
  id: 'rovo-agent-selector.lplaceholder',
@@ -3,7 +3,7 @@ const messages = defineMessages({
3
3
  selectorLabel: {
4
4
  id: 'rovo-agent-selector.label',
5
5
  defaultMessage: 'Select agent',
6
- description: 'Label for the agent selector dropdown'
6
+ description: 'The text is shown as the visible label for the drop-down selector component that allows the user to choose a Rovo AI agent from a list of available agents.'
7
7
  },
8
8
  rovoAgentPlaceholder: {
9
9
  id: 'rovo-agent-selector.lplaceholder',
@@ -3,7 +3,7 @@ var messages = defineMessages({
3
3
  selectorLabel: {
4
4
  id: 'rovo-agent-selector.label',
5
5
  defaultMessage: 'Select agent',
6
- description: 'Label for the agent selector dropdown'
6
+ description: 'The text is shown as the visible label for the drop-down selector component that allows the user to choose a Rovo AI agent from a list of available agents.'
7
7
  },
8
8
  rovoAgentPlaceholder: {
9
9
  id: 'rovo-agent-selector.lplaceholder',
package/package.json CHANGED
@@ -28,12 +28,12 @@
28
28
  "@atlaskit/form": "^15.5.0",
29
29
  "@atlaskit/platform-feature-flags": "^1.1.0",
30
30
  "@atlaskit/primitives": "^19.0.0",
31
- "@atlaskit/rovo-agent-components": "^4.1.0",
31
+ "@atlaskit/rovo-agent-components": "^4.4.0",
32
32
  "@atlaskit/select": "^21.10.0",
33
33
  "@babel/runtime": "^7.0.0",
34
34
  "@compiled/react": "^0.20.0",
35
- "react-relay": "npm:atl-react-relay@0.0.0-main-39e79f66",
36
- "relay-runtime": "npm:atl-relay-runtime@0.0.0-main-39e79f66"
35
+ "react-relay": "^20.1.1",
36
+ "relay-runtime": "^20.1.1"
37
37
  },
38
38
  "peerDependencies": {
39
39
  "react": "^18.2.0",
@@ -48,7 +48,7 @@
48
48
  "react-dom": "^18.2.0",
49
49
  "react-intl": "^6.6.2",
50
50
  "react-magnetic-di": "^3.1.4",
51
- "relay-test-utils": "npm:atl-relay-test-utils@0.0.0-main-39e79f66"
51
+ "relay-test-utils": "^20.1.1"
52
52
  },
53
53
  "techstack": {
54
54
  "@atlassian/frontend": {
@@ -89,7 +89,7 @@
89
89
  }
90
90
  },
91
91
  "name": "@atlaskit/rovo-agent-selector",
92
- "version": "2.0.0",
92
+ "version": "2.0.1",
93
93
  "description": "rovo agent selector",
94
94
  "author": "Atlassian Pty Ltd",
95
95
  "license": "Apache-2.0",
package/stories/index.tsx CHANGED
@@ -76,7 +76,7 @@ function BasicTemplateComponent() {
76
76
  );
77
77
  }
78
78
 
79
- export const Story = () => {
79
+ export const Story = (): JSX.Element => {
80
80
  return <BasicTemplateComponent />;
81
81
  };
82
82