@atlaskit/util-data-test 18.0.24 → 18.1.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
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# @atlaskit/util-data-test
|
|
2
2
|
|
|
3
|
+
## 18.1.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`44102fe3bc0dd`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/44102fe3bc0dd) -
|
|
8
|
+
[ux] Hiding agent duplicate entrypoints when user does not have rovo agent create permissions
|
|
9
|
+
|
|
10
|
+
### Patch Changes
|
|
11
|
+
|
|
12
|
+
- Updated dependencies
|
|
13
|
+
|
|
14
|
+
## 18.0.25
|
|
15
|
+
|
|
16
|
+
### Patch Changes
|
|
17
|
+
|
|
18
|
+
- Updated dependencies
|
|
19
|
+
|
|
3
20
|
## 18.0.24
|
|
4
21
|
|
|
5
22
|
### Patch Changes
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
{
|
|
2
|
+
"extends": "../../../../tsconfig.entry-points.townsquare.json",
|
|
3
|
+
"compilerOptions": {
|
|
4
|
+
"declaration": true,
|
|
5
|
+
"target": "es5",
|
|
6
|
+
"outDir": "../../../../../townsquare/tsDist/@atlaskit__util-data-test/app",
|
|
7
|
+
"rootDir": "../",
|
|
8
|
+
"composite": true
|
|
9
|
+
},
|
|
10
|
+
"include": [
|
|
11
|
+
"../src/**/*.ts",
|
|
12
|
+
"../src/**/*.tsx"
|
|
13
|
+
],
|
|
14
|
+
"exclude": [
|
|
15
|
+
"../src/**/__tests__/*",
|
|
16
|
+
"../src/**/*.test.*",
|
|
17
|
+
"../src/**/test.*",
|
|
18
|
+
"../src/**/examples.*",
|
|
19
|
+
"../src/**/examples/*",
|
|
20
|
+
"../src/**/examples/**/*",
|
|
21
|
+
"../src/**/*.stories.*",
|
|
22
|
+
"../src/**/stories/*",
|
|
23
|
+
"../src/**/stories/**/*"
|
|
24
|
+
],
|
|
25
|
+
"references": [
|
|
26
|
+
{
|
|
27
|
+
"path": "../../../analytics/analytics-next/afm-townsquare/tsconfig.json"
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
"path": "../../emoji/afm-townsquare/tsconfig.json"
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"path": "../../../design-system/icon/afm-townsquare/tsconfig.json"
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
"path": "../../mention/afm-townsquare/tsconfig.json"
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
"path": "../../../design-system/primitives/afm-townsquare/tsconfig.json"
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
"path": "../../../people-and-teams/profilecard/afm-townsquare/tsconfig.json"
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
"path": "../../../design-system/theme/afm-townsquare/tsconfig.json"
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
"path": "../../../design-system/tokens/afm-townsquare/tsconfig.json"
|
|
49
|
+
},
|
|
50
|
+
{
|
|
51
|
+
"path": "../../user-picker/afm-townsquare/tsconfig.json"
|
|
52
|
+
},
|
|
53
|
+
{
|
|
54
|
+
"path": "../../util-service-support/afm-townsquare/tsconfig.json"
|
|
55
|
+
}
|
|
56
|
+
]
|
|
57
|
+
}
|
|
@@ -173,6 +173,9 @@ function simpleMockProfilecardClient(props) {
|
|
|
173
173
|
getRovoAgentPermissions: function getRovoAgentPermissions() {
|
|
174
174
|
return Promise.resolve({
|
|
175
175
|
permissions: {
|
|
176
|
+
AGENT_CREATE: {
|
|
177
|
+
permitted: true
|
|
178
|
+
},
|
|
176
179
|
AGENT_UPDATE: {
|
|
177
180
|
permitted: true
|
|
178
181
|
},
|
|
@@ -165,6 +165,9 @@ export function simpleMockProfilecardClient(props) {
|
|
|
165
165
|
getRovoAgentPermissions: function getRovoAgentPermissions() {
|
|
166
166
|
return Promise.resolve({
|
|
167
167
|
permissions: {
|
|
168
|
+
AGENT_CREATE: {
|
|
169
|
+
permitted: true
|
|
170
|
+
},
|
|
168
171
|
AGENT_UPDATE: {
|
|
169
172
|
permitted: true
|
|
170
173
|
},
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/util-data-test",
|
|
3
|
-
"version": "18.0
|
|
3
|
+
"version": "18.1.0",
|
|
4
4
|
"description": "Shared test and story data",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -68,12 +68,12 @@
|
|
|
68
68
|
"dependencies": {
|
|
69
69
|
"@atlaskit/analytics-next": "^11.1.0",
|
|
70
70
|
"@atlaskit/emoji": "^69.3.0",
|
|
71
|
-
"@atlaskit/icon": "^27.
|
|
71
|
+
"@atlaskit/icon": "^27.10.0",
|
|
72
72
|
"@atlaskit/mention": "^24.2.0",
|
|
73
73
|
"@atlaskit/primitives": "^14.11.0",
|
|
74
|
-
"@atlaskit/profilecard": "^24.
|
|
74
|
+
"@atlaskit/profilecard": "^24.3.0",
|
|
75
75
|
"@atlaskit/theme": "^19.0.0",
|
|
76
|
-
"@atlaskit/tokens": "^
|
|
76
|
+
"@atlaskit/tokens": "^6.0.0",
|
|
77
77
|
"@atlaskit/user-picker": "^11.4.0",
|
|
78
78
|
"@atlaskit/util-service-support": "^6.3.0",
|
|
79
79
|
"@babel/runtime": "^7.0.0",
|
|
@@ -86,9 +86,6 @@
|
|
|
86
86
|
"react": "^18.2.0",
|
|
87
87
|
"react-dom": "^18.2.0"
|
|
88
88
|
},
|
|
89
|
-
"devDependencies": {
|
|
90
|
-
"typescript": "~5.4.2"
|
|
91
|
-
},
|
|
92
89
|
"keywords": [
|
|
93
90
|
"fabric",
|
|
94
91
|
"ui",
|