@atlaskit/analytics-namespaced-context 6.5.0 → 6.5.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 +6 -0
- package/dist/cjs/version.json +1 -1
- package/dist/es2019/version.json +1 -1
- package/dist/esm/version.json +1 -1
- package/package.json +2 -2
- package/report.api.md +65 -0
package/CHANGELOG.md
CHANGED
package/dist/cjs/version.json
CHANGED
package/dist/es2019/version.json
CHANGED
package/dist/esm/version.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/analytics-namespaced-context",
|
|
3
|
-
"version": "6.5.
|
|
3
|
+
"version": "6.5.1",
|
|
4
4
|
"description": "Provides a namespace for AnalyticsContext data (@atlaskit/analytics-next)",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
"enzyme": "^3.10.0",
|
|
43
43
|
"enzyme-adapter-react-16": "^1.15.1",
|
|
44
44
|
"react": "^16.8.0",
|
|
45
|
-
"typescript": "4.
|
|
45
|
+
"typescript": "4.3.5"
|
|
46
46
|
},
|
|
47
47
|
"keywords": [
|
|
48
48
|
"fabric",
|
package/report.api.md
ADDED
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
## API Report File for "@atlaskit/analytics-namespaced-context".
|
|
2
|
+
|
|
3
|
+
> Do not edit this file. This report is auto-generated by [API Extractor](https://api-extractor.com/).
|
|
4
|
+
|
|
5
|
+
[Learn more about API reports](https://hello.atlassian.net/wiki/spaces/UR/pages/1825484529/Package+API+Reports)
|
|
6
|
+
|
|
7
|
+
```ts
|
|
8
|
+
import { ReactNode } from 'react';
|
|
9
|
+
import { StatelessComponent } from 'react';
|
|
10
|
+
|
|
11
|
+
export declare const ATLAS_CONTEXT = 'atlasCtx';
|
|
12
|
+
|
|
13
|
+
export declare const AtlasAnalyticsContext: StatelessComponent<Props>;
|
|
14
|
+
|
|
15
|
+
export declare enum EDITOR_APPEARANCE_CONTEXT {
|
|
16
|
+
FIXED_WIDTH = 'fixedWidth',
|
|
17
|
+
FULL_WIDTH = 'fullWidth',
|
|
18
|
+
COMMENT = 'comment',
|
|
19
|
+
CHROMELESS = 'chromeless',
|
|
20
|
+
MOBILE = 'mobile',
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
export declare const EDITOR_CONTEXT = 'fabricEditorCtx';
|
|
24
|
+
|
|
25
|
+
export declare const ELEMENTS_CONTEXT = 'fabricElementsCtx';
|
|
26
|
+
|
|
27
|
+
export declare const FabricEditorAnalyticsContext: StatelessComponent<FabricEditorAnalyticsContextProps>;
|
|
28
|
+
|
|
29
|
+
declare type FabricEditorAnalyticsContextProps = Props & {
|
|
30
|
+
data: {
|
|
31
|
+
appearance: EDITOR_APPEARANCE_CONTEXT | undefined;
|
|
32
|
+
packageName: string;
|
|
33
|
+
packageVersion: string;
|
|
34
|
+
componentName: 'renderer' | 'editorCore';
|
|
35
|
+
editorSessionId: string;
|
|
36
|
+
};
|
|
37
|
+
};
|
|
38
|
+
|
|
39
|
+
export declare const FabricElementsAnalyticsContext: StatelessComponent<Props>;
|
|
40
|
+
|
|
41
|
+
export declare const MEDIA_CONTEXT = 'mediaCtx';
|
|
42
|
+
|
|
43
|
+
export declare const NAVIGATION_CONTEXT = 'navigationCtx';
|
|
44
|
+
|
|
45
|
+
export declare const NavigationAnalyticsContext: StatelessComponent<Props>;
|
|
46
|
+
|
|
47
|
+
export declare const NOTIFICATIONS_CONTEXT = 'NotificationsCtx';
|
|
48
|
+
|
|
49
|
+
export declare const NotificationsAnalyticsContext: StatelessComponent<Props>;
|
|
50
|
+
|
|
51
|
+
export declare const PEOPLE_TEAMS_CONTEXT = 'peopleTeamsCtx';
|
|
52
|
+
|
|
53
|
+
export declare const PeopleTeamsAnalyticsContext: StatelessComponent<Props>;
|
|
54
|
+
|
|
55
|
+
declare type Props = {
|
|
56
|
+
children?: ReactNode;
|
|
57
|
+
data: {};
|
|
58
|
+
};
|
|
59
|
+
|
|
60
|
+
export declare const RECENT_WORK_CONTEXT = 'RecentWorkCtx';
|
|
61
|
+
|
|
62
|
+
export declare const RecentWorkAnalyticsContext: StatelessComponent<Props>;
|
|
63
|
+
|
|
64
|
+
export {};
|
|
65
|
+
```
|