@atlaskit/rovo-agent-components 0.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 +1 -0
- package/LICENSE.md +11 -0
- package/README.md +15 -0
- package/dist/cjs/index.js +9 -0
- package/dist/es2019/index.js +1 -0
- package/dist/esm/index.js +3 -0
- package/dist/types/index.d.ts +2 -0
- package/dist/types-ts4.5/index.d.ts +2 -0
- package/package.json +92 -0
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
# @atlaskit/rovo-agent-components
|
package/LICENSE.md
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
Copyright 2023 Atlassian Pty Ltd
|
|
2
|
+
|
|
3
|
+
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in
|
|
4
|
+
compliance with the License. You may obtain a copy of the License at
|
|
5
|
+
|
|
6
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
7
|
+
|
|
8
|
+
Unless required by applicable law or agreed to in writing, software distributed under the License is
|
|
9
|
+
distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
10
|
+
implied. See the License for the specific language governing permissions and limitations under the
|
|
11
|
+
License.
|
package/README.md
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
# RovoAgentComponents
|
|
2
|
+
|
|
3
|
+
This package host public components related to rovo agents, the components here are needed for other public atlaskit packages
|
|
4
|
+
|
|
5
|
+
## Usage
|
|
6
|
+
|
|
7
|
+
`import RovoAgentComponents from '@atlaskit/rovo-agent-components';`
|
|
8
|
+
|
|
9
|
+
Detailed docs and example usage can be found [here](https://atlaskit.atlassian.com/packages/ai-mate/rovo-agent-components).
|
|
10
|
+
|
|
11
|
+
## What's the difference between this package and `@atlassian/conversation-assistant-ui-components`?
|
|
12
|
+
|
|
13
|
+
This package was created mainly because there are other `@atlaskit/` packages that require some shared components
|
|
14
|
+
|
|
15
|
+
If possible, try build the components in `@atlassian/conversation-assistant-ui-components`, and only create one here if it's needed by other `@atlaskit/` packages
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export default (() => 'Test');
|
package/package.json
ADDED
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@atlaskit/rovo-agent-components",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "This package host public components related to rovo agents, the components here are needed for other public atlaskit packages",
|
|
5
|
+
"author": "Atlassian Pty Ltd",
|
|
6
|
+
"license": "Apache-2.0",
|
|
7
|
+
"publishConfig": {
|
|
8
|
+
"registry": "https://registry.npmjs.org/"
|
|
9
|
+
},
|
|
10
|
+
"atlassian": {
|
|
11
|
+
"team": "AI Mate",
|
|
12
|
+
"releaseModel": "continuous",
|
|
13
|
+
"website": {
|
|
14
|
+
"name": "RovoAgentComponents",
|
|
15
|
+
"category": "Components"
|
|
16
|
+
}
|
|
17
|
+
},
|
|
18
|
+
"repository": "https://stash.atlassian.com/projects/ATLASSIAN/repos/atlassian-frontend-monorepo",
|
|
19
|
+
"main": "dist/cjs/index.js",
|
|
20
|
+
"module": "dist/esm/index.js",
|
|
21
|
+
"module:es2019": "dist/es2019/index.js",
|
|
22
|
+
"types": "dist/types/index.d.ts",
|
|
23
|
+
"typesVersions": {
|
|
24
|
+
">=4.5 <5.4": {
|
|
25
|
+
"*": [
|
|
26
|
+
"dist/types-ts4.5/*",
|
|
27
|
+
"dist/types-ts4.5/index.d.ts"
|
|
28
|
+
]
|
|
29
|
+
}
|
|
30
|
+
},
|
|
31
|
+
"sideEffects": [
|
|
32
|
+
"*.compiled.css"
|
|
33
|
+
],
|
|
34
|
+
"atlaskit:src": "src/index.ts",
|
|
35
|
+
"af:exports": {
|
|
36
|
+
".": "./src/index.ts"
|
|
37
|
+
},
|
|
38
|
+
"dependencies": {
|
|
39
|
+
"@babel/runtime": "^7.0.0"
|
|
40
|
+
},
|
|
41
|
+
"peerDependencies": {
|
|
42
|
+
"react": "^16.8.0"
|
|
43
|
+
},
|
|
44
|
+
"devDependencies": {
|
|
45
|
+
"@af/integration-testing": "*",
|
|
46
|
+
"@af/visual-regression": "*",
|
|
47
|
+
"@atlaskit/ssr": "*",
|
|
48
|
+
"@atlaskit/visual-regression": "*",
|
|
49
|
+
"@testing-library/react": "^12.1.5",
|
|
50
|
+
"react-dom": "^16.8.0",
|
|
51
|
+
"typescript": "~5.4.2",
|
|
52
|
+
"wait-for-expect": "^1.2.0"
|
|
53
|
+
},
|
|
54
|
+
"techstack": {
|
|
55
|
+
"@atlassian/frontend": {
|
|
56
|
+
"code-structure": [
|
|
57
|
+
"tangerine-next"
|
|
58
|
+
],
|
|
59
|
+
"import-structure": [
|
|
60
|
+
"atlassian-conventions"
|
|
61
|
+
],
|
|
62
|
+
"circular-dependencies": [
|
|
63
|
+
"file-and-folder-level"
|
|
64
|
+
]
|
|
65
|
+
},
|
|
66
|
+
"@repo/internal": {
|
|
67
|
+
"dom-events": "use-bind-event-listener",
|
|
68
|
+
"analytics": [
|
|
69
|
+
"analytics-next"
|
|
70
|
+
],
|
|
71
|
+
"design-tokens": [
|
|
72
|
+
"color"
|
|
73
|
+
],
|
|
74
|
+
"theming": [
|
|
75
|
+
"react-context"
|
|
76
|
+
],
|
|
77
|
+
"ui-components": [
|
|
78
|
+
"lite-mode"
|
|
79
|
+
],
|
|
80
|
+
"deprecation": [
|
|
81
|
+
"no-deprecated-imports"
|
|
82
|
+
],
|
|
83
|
+
"styling": [
|
|
84
|
+
"static",
|
|
85
|
+
"compiled"
|
|
86
|
+
],
|
|
87
|
+
"imports": [
|
|
88
|
+
"import-no-extraneous-disable-for-examples-and-docs"
|
|
89
|
+
]
|
|
90
|
+
}
|
|
91
|
+
}
|
|
92
|
+
}
|