@atlaskit/analytics-namespaced-context 7.0.0 → 7.0.2
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/AtlasAnalyticsContext/package.json +1 -1
- package/CHANGELOG.md +16 -0
- package/FabricEditorAnalyticsContext/package.json +1 -1
- package/LinkingPlatformAnalyticsContext/package.json +1 -1
- package/MediaAnalyticsContext/package.json +1 -1
- package/NavigationAnalyticsContext/package.json +1 -1
- package/PeopleTeamsAnalyticsContext/package.json +1 -1
- package/PostOfficeAnalyticsContext/package.json +1 -1
- package/RecentWorkAnalyticsContext/package.json +1 -1
- package/afm-cc/tsconfig.json +28 -22
- package/afm-dev-agents/tsconfig.json +30 -0
- package/afm-jira/tsconfig.json +7 -1
- package/afm-passionfruit/tsconfig.json +30 -0
- package/afm-post-office/tsconfig.json +7 -1
- package/afm-rovo-extension/tsconfig.json +30 -0
- package/afm-townsquare/tsconfig.json +30 -0
- package/afm-volt/tsconfig.json +30 -0
- package/build/tsconfig.json +8 -2
- package/dist/cjs/OmniChannelAnalyticsContext.js +10 -0
- package/dist/cjs/index.js +14 -1
- package/dist/es2019/OmniChannelAnalyticsContext.js +3 -0
- package/dist/es2019/index.js +2 -1
- package/dist/esm/OmniChannelAnalyticsContext.js +3 -0
- package/dist/esm/index.js +2 -1
- package/dist/types/FabricEditorAnalyticsContext.d.ts +2 -2
- package/dist/types/GrowthAnalyticsContext.d.ts +0 -1
- package/dist/types/OmniChannelAnalyticsContext.d.ts +4 -0
- package/dist/types/index.d.ts +1 -0
- package/dist/types-ts4.5/FabricEditorAnalyticsContext.d.ts +2 -2
- package/dist/types-ts4.5/GrowthAnalyticsContext.d.ts +0 -1
- package/dist/types-ts4.5/OmniChannelAnalyticsContext.d.ts +4 -0
- package/dist/types-ts4.5/index.d.ts +1 -0
- package/package.json +4 -6
- package/tsconfig.json +8 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @atlaskit/analytics-namespaced-context
|
|
2
2
|
|
|
3
|
+
## 7.0.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`3298a6307027c`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/3298a6307027c) -
|
|
8
|
+
Sorted type and interface props to improve Atlaskit docs
|
|
9
|
+
- Updated dependencies
|
|
10
|
+
|
|
11
|
+
## 7.0.1
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- [#174338](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/174338)
|
|
16
|
+
[`8e0f35b2c60f3`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/8e0f35b2c60f3) -
|
|
17
|
+
Add omni channel analytics listner and namespaced context
|
|
18
|
+
|
|
3
19
|
## 7.0.0
|
|
4
20
|
|
|
5
21
|
### Major Changes
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
"module:es2019": "../dist/es2019/LinkingPlatformAnalyticsContext.js",
|
|
6
6
|
"types": "../dist/types/LinkingPlatformAnalyticsContext.d.ts",
|
|
7
7
|
"typesVersions": {
|
|
8
|
-
">=4.5 <5.
|
|
8
|
+
">=4.5 <5.9": {
|
|
9
9
|
"*": [
|
|
10
10
|
"../dist/types-ts4.5/LinkingPlatformAnalyticsContext.d.ts"
|
|
11
11
|
]
|
package/afm-cc/tsconfig.json
CHANGED
|
@@ -1,24 +1,30 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
2
|
+
"extends": "../../../../tsconfig.entry-points.confluence.json",
|
|
3
|
+
"compilerOptions": {
|
|
4
|
+
"declaration": true,
|
|
5
|
+
"target": "es5",
|
|
6
|
+
"composite": true,
|
|
7
|
+
"outDir": "../../../../../confluence/tsDist/@atlaskit__analytics-namespaced-context",
|
|
8
|
+
"rootDir": "../"
|
|
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-next/afm-cc/tsconfig.json"
|
|
28
|
+
}
|
|
29
|
+
]
|
|
24
30
|
}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
{
|
|
2
|
+
"extends": "../../../../tsconfig.entry-points.dev-agents.json",
|
|
3
|
+
"compilerOptions": {
|
|
4
|
+
"declaration": true,
|
|
5
|
+
"target": "es5",
|
|
6
|
+
"outDir": "../../../../../dev-agents/tsDist/@atlaskit__analytics-namespaced-context/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-next/afm-dev-agents/tsconfig.json"
|
|
28
|
+
}
|
|
29
|
+
]
|
|
30
|
+
}
|
package/afm-jira/tsconfig.json
CHANGED
|
@@ -14,7 +14,13 @@
|
|
|
14
14
|
"exclude": [
|
|
15
15
|
"../src/**/__tests__/*",
|
|
16
16
|
"../src/**/*.test.*",
|
|
17
|
-
"../src/**/test.*"
|
|
17
|
+
"../src/**/test.*",
|
|
18
|
+
"../src/**/examples.*",
|
|
19
|
+
"../src/**/examples/*",
|
|
20
|
+
"../src/**/examples/**/*",
|
|
21
|
+
"../src/**/*.stories.*",
|
|
22
|
+
"../src/**/stories/*",
|
|
23
|
+
"../src/**/stories/**/*"
|
|
18
24
|
],
|
|
19
25
|
"references": [
|
|
20
26
|
{
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
{
|
|
2
|
+
"extends": "../../../../tsconfig.entry-points.passionfruit.json",
|
|
3
|
+
"compilerOptions": {
|
|
4
|
+
"declaration": true,
|
|
5
|
+
"target": "es5",
|
|
6
|
+
"outDir": "../../../../../passionfruit/tsDist/@atlaskit__analytics-namespaced-context/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-next/afm-passionfruit/tsconfig.json"
|
|
28
|
+
}
|
|
29
|
+
]
|
|
30
|
+
}
|
|
@@ -14,7 +14,13 @@
|
|
|
14
14
|
"exclude": [
|
|
15
15
|
"../src/**/__tests__/*",
|
|
16
16
|
"../src/**/*.test.*",
|
|
17
|
-
"../src/**/test.*"
|
|
17
|
+
"../src/**/test.*",
|
|
18
|
+
"../src/**/examples.*",
|
|
19
|
+
"../src/**/examples/*",
|
|
20
|
+
"../src/**/examples/**/*",
|
|
21
|
+
"../src/**/*.stories.*",
|
|
22
|
+
"../src/**/stories/*",
|
|
23
|
+
"../src/**/stories/**/*"
|
|
18
24
|
],
|
|
19
25
|
"references": [
|
|
20
26
|
{
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
{
|
|
2
|
+
"extends": "../../../../tsconfig.entry-points.rovo-extension.json",
|
|
3
|
+
"compilerOptions": {
|
|
4
|
+
"declaration": true,
|
|
5
|
+
"target": "es5",
|
|
6
|
+
"outDir": "../../../../../rovo-extension/tsDist/@atlaskit__analytics-namespaced-context/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-next/afm-rovo-extension/tsconfig.json"
|
|
28
|
+
}
|
|
29
|
+
]
|
|
30
|
+
}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
{
|
|
2
|
+
"extends": "../../../../tsconfig.entry-points.townsquare.json",
|
|
3
|
+
"compilerOptions": {
|
|
4
|
+
"declaration": true,
|
|
5
|
+
"target": "es5",
|
|
6
|
+
"outDir": "../../../../../townsquare/tsDist/@atlaskit__analytics-namespaced-context/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-next/afm-townsquare/tsconfig.json"
|
|
28
|
+
}
|
|
29
|
+
]
|
|
30
|
+
}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
{
|
|
2
|
+
"extends": "../../../../tsconfig.entry-points.volt.json",
|
|
3
|
+
"compilerOptions": {
|
|
4
|
+
"declaration": true,
|
|
5
|
+
"target": "es5",
|
|
6
|
+
"outDir": "../../../../../volt/tsDist/@atlaskit__analytics-namespaced-context/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-next/afm-volt/tsconfig.json"
|
|
28
|
+
}
|
|
29
|
+
]
|
|
30
|
+
}
|
package/build/tsconfig.json
CHANGED
|
@@ -12,6 +12,12 @@
|
|
|
12
12
|
"exclude": [
|
|
13
13
|
"../src/**/__tests__/*",
|
|
14
14
|
"../src/**/*.test.*",
|
|
15
|
-
"../src/**/test.*"
|
|
15
|
+
"../src/**/test.*",
|
|
16
|
+
"../src/**/examples.*",
|
|
17
|
+
"../src/**/examples/*",
|
|
18
|
+
"../src/**/examples/**/*",
|
|
19
|
+
"../src/**/*.stories.*",
|
|
20
|
+
"../src/**/stories/*",
|
|
21
|
+
"../src/**/stories/**/*"
|
|
16
22
|
]
|
|
17
|
-
}
|
|
23
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
4
|
+
Object.defineProperty(exports, "__esModule", {
|
|
5
|
+
value: true
|
|
6
|
+
});
|
|
7
|
+
exports.OmniChannelAnalyticsContext = exports.OMNI_CHANNEL_CONTEXT = void 0;
|
|
8
|
+
var _createNamespaceContext = _interopRequireDefault(require("./helper/createNamespaceContext"));
|
|
9
|
+
var OMNI_CHANNEL_CONTEXT = exports.OMNI_CHANNEL_CONTEXT = 'omniChannelCtx';
|
|
10
|
+
var OmniChannelAnalyticsContext = exports.OmniChannelAnalyticsContext = (0, _createNamespaceContext.default)(OMNI_CHANNEL_CONTEXT, 'OmniChannelAnalyticsContext');
|
package/dist/cjs/index.js
CHANGED
|
@@ -123,6 +123,18 @@ Object.defineProperty(exports, "NotificationsAnalyticsContext", {
|
|
|
123
123
|
return _NotificationsAnalyticsContext.NotificationsAnalyticsContext;
|
|
124
124
|
}
|
|
125
125
|
});
|
|
126
|
+
Object.defineProperty(exports, "OMNI_CHANNEL_CONTEXT", {
|
|
127
|
+
enumerable: true,
|
|
128
|
+
get: function get() {
|
|
129
|
+
return _OmniChannelAnalyticsContext.OMNI_CHANNEL_CONTEXT;
|
|
130
|
+
}
|
|
131
|
+
});
|
|
132
|
+
Object.defineProperty(exports, "OmniChannelAnalyticsContext", {
|
|
133
|
+
enumerable: true,
|
|
134
|
+
get: function get() {
|
|
135
|
+
return _OmniChannelAnalyticsContext.OmniChannelAnalyticsContext;
|
|
136
|
+
}
|
|
137
|
+
});
|
|
126
138
|
Object.defineProperty(exports, "PEOPLE_TEAMS_CONTEXT", {
|
|
127
139
|
enumerable: true,
|
|
128
140
|
get: function get() {
|
|
@@ -171,4 +183,5 @@ var _LinkingPlatformAnalyticsContext = require("./LinkingPlatformAnalyticsContex
|
|
|
171
183
|
var _PostOfficeAnalyticsContext = require("./PostOfficeAnalyticsContext");
|
|
172
184
|
var _AIMateAnalyticsContext = require("./AIMateAnalyticsContext");
|
|
173
185
|
var _AVPAnalyticsContext = require("./AVPAnalyticsContext");
|
|
174
|
-
var _GrowthAnalyticsContext = require("./GrowthAnalyticsContext");
|
|
186
|
+
var _GrowthAnalyticsContext = require("./GrowthAnalyticsContext");
|
|
187
|
+
var _OmniChannelAnalyticsContext = require("./OmniChannelAnalyticsContext");
|
package/dist/es2019/index.js
CHANGED
|
@@ -10,4 +10,5 @@ export { LINKING_PLATFORM_CONTEXT, LinkingPlatformAnalyticsContext } from './Lin
|
|
|
10
10
|
export { POST_OFFICE_CONTEXT, PostOfficeAnalyticsContext } from './PostOfficeAnalyticsContext';
|
|
11
11
|
export { AI_MATE_CONTEXT, AIMateAnalyticsContext } from './AIMateAnalyticsContext';
|
|
12
12
|
export { AVP_CONTEXT, AVPAnalyticsContext } from './AVPAnalyticsContext';
|
|
13
|
-
export { GROWTH_CONTEXT, GrowthAnalyticsContext } from './GrowthAnalyticsContext';
|
|
13
|
+
export { GROWTH_CONTEXT, GrowthAnalyticsContext } from './GrowthAnalyticsContext';
|
|
14
|
+
export { OMNI_CHANNEL_CONTEXT, OmniChannelAnalyticsContext } from './OmniChannelAnalyticsContext';
|
package/dist/esm/index.js
CHANGED
|
@@ -10,4 +10,5 @@ export { LINKING_PLATFORM_CONTEXT, LinkingPlatformAnalyticsContext } from './Lin
|
|
|
10
10
|
export { POST_OFFICE_CONTEXT, PostOfficeAnalyticsContext } from './PostOfficeAnalyticsContext';
|
|
11
11
|
export { AI_MATE_CONTEXT, AIMateAnalyticsContext } from './AIMateAnalyticsContext';
|
|
12
12
|
export { AVP_CONTEXT, AVPAnalyticsContext } from './AVPAnalyticsContext';
|
|
13
|
-
export { GROWTH_CONTEXT, GrowthAnalyticsContext } from './GrowthAnalyticsContext';
|
|
13
|
+
export { GROWTH_CONTEXT, GrowthAnalyticsContext } from './GrowthAnalyticsContext';
|
|
14
|
+
export { OMNI_CHANNEL_CONTEXT, OmniChannelAnalyticsContext } from './OmniChannelAnalyticsContext';
|
|
@@ -11,10 +11,10 @@ export declare enum EDITOR_APPEARANCE_CONTEXT {
|
|
|
11
11
|
type FabricEditorAnalyticsContextProps = Props & {
|
|
12
12
|
data: {
|
|
13
13
|
appearance: EDITOR_APPEARANCE_CONTEXT | undefined;
|
|
14
|
-
packageName: string;
|
|
15
|
-
packageVersion: string;
|
|
16
14
|
componentName: 'renderer' | 'editorCore';
|
|
17
15
|
editorSessionId: string;
|
|
16
|
+
packageName: string;
|
|
17
|
+
packageVersion: string;
|
|
18
18
|
};
|
|
19
19
|
};
|
|
20
20
|
export declare const FabricEditorAnalyticsContext: FunctionComponent<FabricEditorAnalyticsContextProps>;
|
package/dist/types/index.d.ts
CHANGED
|
@@ -11,3 +11,4 @@ export { POST_OFFICE_CONTEXT, PostOfficeAnalyticsContext } from './PostOfficeAna
|
|
|
11
11
|
export { AI_MATE_CONTEXT, AIMateAnalyticsContext } from './AIMateAnalyticsContext';
|
|
12
12
|
export { AVP_CONTEXT, AVPAnalyticsContext } from './AVPAnalyticsContext';
|
|
13
13
|
export { GROWTH_CONTEXT, GrowthAnalyticsContext } from './GrowthAnalyticsContext';
|
|
14
|
+
export { OMNI_CHANNEL_CONTEXT, OmniChannelAnalyticsContext } from './OmniChannelAnalyticsContext';
|
|
@@ -11,10 +11,10 @@ export declare enum EDITOR_APPEARANCE_CONTEXT {
|
|
|
11
11
|
type FabricEditorAnalyticsContextProps = Props & {
|
|
12
12
|
data: {
|
|
13
13
|
appearance: EDITOR_APPEARANCE_CONTEXT | undefined;
|
|
14
|
-
packageName: string;
|
|
15
|
-
packageVersion: string;
|
|
16
14
|
componentName: 'renderer' | 'editorCore';
|
|
17
15
|
editorSessionId: string;
|
|
16
|
+
packageName: string;
|
|
17
|
+
packageVersion: string;
|
|
18
18
|
};
|
|
19
19
|
};
|
|
20
20
|
export declare const FabricEditorAnalyticsContext: FunctionComponent<FabricEditorAnalyticsContextProps>;
|
|
@@ -11,3 +11,4 @@ export { POST_OFFICE_CONTEXT, PostOfficeAnalyticsContext } from './PostOfficeAna
|
|
|
11
11
|
export { AI_MATE_CONTEXT, AIMateAnalyticsContext } from './AIMateAnalyticsContext';
|
|
12
12
|
export { AVP_CONTEXT, AVPAnalyticsContext } from './AVPAnalyticsContext';
|
|
13
13
|
export { GROWTH_CONTEXT, GrowthAnalyticsContext } from './GrowthAnalyticsContext';
|
|
14
|
+
export { OMNI_CHANNEL_CONTEXT, OmniChannelAnalyticsContext } from './OmniChannelAnalyticsContext';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/analytics-namespaced-context",
|
|
3
|
-
"version": "7.0.
|
|
3
|
+
"version": "7.0.2",
|
|
4
4
|
"description": "Provides a namespace for AnalyticsContext data (@atlaskit/analytics-next)",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -33,22 +33,20 @@
|
|
|
33
33
|
".": "./src/index.ts"
|
|
34
34
|
},
|
|
35
35
|
"atlassian": {
|
|
36
|
-
"team": "UIP Frontend Observability"
|
|
37
|
-
"runReact18": true
|
|
36
|
+
"team": "UIP Frontend Observability"
|
|
38
37
|
},
|
|
39
38
|
"config": {
|
|
40
39
|
"access": "public"
|
|
41
40
|
},
|
|
42
41
|
"dependencies": {
|
|
43
|
-
"@atlaskit/analytics-next": "^11.
|
|
42
|
+
"@atlaskit/analytics-next": "^11.1.0",
|
|
44
43
|
"@babel/runtime": "^7.0.0"
|
|
45
44
|
},
|
|
46
45
|
"peerDependencies": {
|
|
47
46
|
"react": "^18.2.0"
|
|
48
47
|
},
|
|
49
48
|
"devDependencies": {
|
|
50
|
-
"@testing-library/react": "^13.4.0"
|
|
51
|
-
"typescript": "~5.4.2"
|
|
49
|
+
"@testing-library/react": "^13.4.0"
|
|
52
50
|
},
|
|
53
51
|
"keywords": [
|
|
54
52
|
"fabric",
|
package/tsconfig.json
CHANGED
|
@@ -6,8 +6,13 @@
|
|
|
6
6
|
"./docs/**/*.ts",
|
|
7
7
|
"./docs/**/*.tsx",
|
|
8
8
|
"./examples/**/*.ts",
|
|
9
|
-
"./examples/**/*.tsx"
|
|
9
|
+
"./examples/**/*.tsx",
|
|
10
|
+
"**/stories.ts",
|
|
11
|
+
"**/stories.tsx",
|
|
12
|
+
"**/stories/*.ts",
|
|
13
|
+
"**/stories/*.tsx",
|
|
14
|
+
"**/stories/**/*.ts",
|
|
15
|
+
"**/stories/**/*.tsx"
|
|
10
16
|
],
|
|
11
|
-
"compilerOptions": {
|
|
12
|
-
}
|
|
17
|
+
"compilerOptions": {}
|
|
13
18
|
}
|