@atlaskit/rovo-triggers 5.3.0 → 5.4.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 +15 -0
- package/chat-context/package.json +17 -0
- package/jsm-journey-builder-types/package.json +17 -0
- package/main/package.json +17 -0
- package/package.json +2 -3
- package/params/package.json +17 -0
- package/post-message-to-pubsub/package.json +17 -0
- package/solution-architect-types/package.json +17 -0
- package/types/package.json +17 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# @atlaskit/rovo-triggers
|
|
2
2
|
|
|
3
|
+
## 5.4.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`92866a25d8694`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/92866a25d8694) -
|
|
8
|
+
Added new subpath exports to enable direct imports from source modules instead of root barrel
|
|
9
|
+
file.
|
|
10
|
+
|
|
11
|
+
## 5.3.1
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- [`2367bfbab903a`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/2367bfbab903a) -
|
|
16
|
+
Add iframe title to integration test
|
|
17
|
+
|
|
3
18
|
## 5.3.0
|
|
4
19
|
|
|
5
20
|
### Minor Changes
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@atlaskit/rovo-triggers/chat-context",
|
|
3
|
+
"main": "../dist/cjs/common/utils/chat-context/index.js",
|
|
4
|
+
"module": "../dist/esm/common/utils/chat-context/index.js",
|
|
5
|
+
"module:es2019": "../dist/es2019/common/utils/chat-context/index.js",
|
|
6
|
+
"sideEffects": [
|
|
7
|
+
"*.compiled.css"
|
|
8
|
+
],
|
|
9
|
+
"types": "../dist/types/common/utils/chat-context/index.d.ts",
|
|
10
|
+
"typesVersions": {
|
|
11
|
+
">=4.5 <5.9": {
|
|
12
|
+
"*": [
|
|
13
|
+
"../dist/types-ts4.5/common/utils/chat-context/index.d.ts"
|
|
14
|
+
]
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@atlaskit/rovo-triggers/jsm-journey-builder-types",
|
|
3
|
+
"main": "../dist/cjs/common/types/jsm-journey-builder/index.js",
|
|
4
|
+
"module": "../dist/esm/common/types/jsm-journey-builder/index.js",
|
|
5
|
+
"module:es2019": "../dist/es2019/common/types/jsm-journey-builder/index.js",
|
|
6
|
+
"sideEffects": [
|
|
7
|
+
"*.compiled.css"
|
|
8
|
+
],
|
|
9
|
+
"types": "../dist/types/common/types/jsm-journey-builder/index.d.ts",
|
|
10
|
+
"typesVersions": {
|
|
11
|
+
">=4.5 <5.9": {
|
|
12
|
+
"*": [
|
|
13
|
+
"../dist/types-ts4.5/common/types/jsm-journey-builder/index.d.ts"
|
|
14
|
+
]
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@atlaskit/rovo-triggers/main",
|
|
3
|
+
"main": "../dist/cjs/main.js",
|
|
4
|
+
"module": "../dist/esm/main.js",
|
|
5
|
+
"module:es2019": "../dist/es2019/main.js",
|
|
6
|
+
"sideEffects": [
|
|
7
|
+
"*.compiled.css"
|
|
8
|
+
],
|
|
9
|
+
"types": "../dist/types/main.d.ts",
|
|
10
|
+
"typesVersions": {
|
|
11
|
+
">=4.5 <5.9": {
|
|
12
|
+
"*": [
|
|
13
|
+
"../dist/types-ts4.5/main.d.ts"
|
|
14
|
+
]
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/rovo-triggers",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.4.0",
|
|
4
4
|
"description": "Provides various trigger events to drive Rovo Chat functionality, such as a publish-subscribe and URL parameter hooks",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"publishConfig": {
|
|
@@ -43,8 +43,7 @@
|
|
|
43
43
|
"@atlaskit/primitives": "^17.0.0",
|
|
44
44
|
"@atlaskit/ssr": "workspace:^",
|
|
45
45
|
"@atlassian/feature-flags-test-utils": "^1.0.0",
|
|
46
|
-
"@testing-library/react": "^
|
|
47
|
-
"@testing-library/react-hooks": "^8.0.1",
|
|
46
|
+
"@testing-library/react": "^16.3.0",
|
|
48
47
|
"react-dom": "^18.2.0",
|
|
49
48
|
"wait-for-expect": "^1.2.0"
|
|
50
49
|
},
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@atlaskit/rovo-triggers/params",
|
|
3
|
+
"main": "../dist/cjs/common/utils/params/index.js",
|
|
4
|
+
"module": "../dist/esm/common/utils/params/index.js",
|
|
5
|
+
"module:es2019": "../dist/es2019/common/utils/params/index.js",
|
|
6
|
+
"sideEffects": [
|
|
7
|
+
"*.compiled.css"
|
|
8
|
+
],
|
|
9
|
+
"types": "../dist/types/common/utils/params/index.d.ts",
|
|
10
|
+
"typesVersions": {
|
|
11
|
+
">=4.5 <5.9": {
|
|
12
|
+
"*": [
|
|
13
|
+
"../dist/types-ts4.5/common/utils/params/index.d.ts"
|
|
14
|
+
]
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@atlaskit/rovo-triggers/post-message-to-pubsub",
|
|
3
|
+
"main": "../dist/cjs/common/utils/post-message-to-pubsub/index.js",
|
|
4
|
+
"module": "../dist/esm/common/utils/post-message-to-pubsub/index.js",
|
|
5
|
+
"module:es2019": "../dist/es2019/common/utils/post-message-to-pubsub/index.js",
|
|
6
|
+
"sideEffects": [
|
|
7
|
+
"*.compiled.css"
|
|
8
|
+
],
|
|
9
|
+
"types": "../dist/types/common/utils/post-message-to-pubsub/index.d.ts",
|
|
10
|
+
"typesVersions": {
|
|
11
|
+
">=4.5 <5.9": {
|
|
12
|
+
"*": [
|
|
13
|
+
"../dist/types-ts4.5/common/utils/post-message-to-pubsub/index.d.ts"
|
|
14
|
+
]
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@atlaskit/rovo-triggers/solution-architect-types",
|
|
3
|
+
"main": "../dist/cjs/common/types/solution-architect/index.js",
|
|
4
|
+
"module": "../dist/esm/common/types/solution-architect/index.js",
|
|
5
|
+
"module:es2019": "../dist/es2019/common/types/solution-architect/index.js",
|
|
6
|
+
"sideEffects": [
|
|
7
|
+
"*.compiled.css"
|
|
8
|
+
],
|
|
9
|
+
"types": "../dist/types/common/types/solution-architect/index.d.ts",
|
|
10
|
+
"typesVersions": {
|
|
11
|
+
">=4.5 <5.9": {
|
|
12
|
+
"*": [
|
|
13
|
+
"../dist/types-ts4.5/common/types/solution-architect/index.d.ts"
|
|
14
|
+
]
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@atlaskit/rovo-triggers/types",
|
|
3
|
+
"main": "../dist/cjs/types.js",
|
|
4
|
+
"module": "../dist/esm/types.js",
|
|
5
|
+
"module:es2019": "../dist/es2019/types.js",
|
|
6
|
+
"sideEffects": [
|
|
7
|
+
"*.compiled.css"
|
|
8
|
+
],
|
|
9
|
+
"types": "../dist/types/types.d.ts",
|
|
10
|
+
"typesVersions": {
|
|
11
|
+
">=4.5 <5.9": {
|
|
12
|
+
"*": [
|
|
13
|
+
"../dist/types-ts4.5/types.d.ts"
|
|
14
|
+
]
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|