@atlaskit/analytics-next 9.0.2 → 9.1.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 +12 -0
- package/README.md +1 -1
- package/dist/cjs/version.json +1 -1
- package/dist/es2019/version.json +1 -1
- package/dist/esm/version.json +1 -1
- package/docs/0-intro.tsx +23 -3
- package/package.json +4 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @atlaskit/analytics-next
|
|
2
2
|
|
|
3
|
+
## 9.1.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`7cc1e8f18ec`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7cc1e8f18ec) - Move analytics-next to maintenance mode
|
|
8
|
+
|
|
9
|
+
## 9.1.0
|
|
10
|
+
|
|
11
|
+
### Minor Changes
|
|
12
|
+
|
|
13
|
+
- [`56507598609`](https://bitbucket.org/atlassian/atlassian-frontend/commits/56507598609) - Skip minor dependency bump
|
|
14
|
+
|
|
3
15
|
## 9.0.2
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
Tools for tracking interactions with UI components. Easily capture UI context and state when these events occur.
|
|
3
3
|
|
|
4
4
|
> **_Maintaince Mode:_** \
|
|
5
|
-
This package is officially in maintenance mode, which means only bugfixes or VULN fixes are currently being accepted and no breaking changes will be approved in the PR process. \
|
|
5
|
+
This package is officially in maintenance mode, which means only bugfixes or VULN fixes are currently being accepted and no known breaking changes will be approved in the PR process. \
|
|
6
6
|
Please refer to this [DACI](https://hello.atlassian.net/wiki/spaces/APD/pages/2470435075/DACI+analytics-next+in+a+maintenance+mode) for more details.
|
|
7
7
|
|
|
8
8
|
## Installation
|
package/dist/cjs/version.json
CHANGED
package/dist/es2019/version.json
CHANGED
package/dist/esm/version.json
CHANGED
package/docs/0-intro.tsx
CHANGED
|
@@ -1,9 +1,29 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
|
|
1
3
|
import { md } from '@atlaskit/docs';
|
|
4
|
+
import SectionMessage from '@atlaskit/section-message';
|
|
2
5
|
|
|
3
6
|
export default md`
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
+
|
|
8
|
+
${(
|
|
9
|
+
<SectionMessage
|
|
10
|
+
appearance="warning"
|
|
11
|
+
title="Maintaince Mode: @atlaskit/analytics is in maintenance mode."
|
|
12
|
+
>
|
|
13
|
+
This package is officially in maintenance mode, which means only bugfixes or
|
|
14
|
+
VULN fixes are currently being accepted and no known breaking changes will
|
|
15
|
+
be approved in the PR process. <br />
|
|
16
|
+
Please refer to this
|
|
17
|
+
<a
|
|
18
|
+
href="https://hello.atlassian.net/wiki/spaces/APD/pages/2470435075/DACI+analytics-next+in+a+maintenance+mode"
|
|
19
|
+
target="_blank"
|
|
20
|
+
>
|
|
21
|
+
{' '}
|
|
22
|
+
DACI{' '}
|
|
23
|
+
</a>{' '}
|
|
24
|
+
for more details.
|
|
25
|
+
</SectionMessage>
|
|
26
|
+
)}
|
|
7
27
|
|
|
8
28
|
This package aims to help assist consumers track the way their React components are being used.
|
|
9
29
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/analytics-next",
|
|
3
|
-
"version": "9.
|
|
3
|
+
"version": "9.1.1",
|
|
4
4
|
"description": "React components, HOCs and hooks to assist with tracking user activity with React components",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -51,10 +51,11 @@
|
|
|
51
51
|
"react": "^16.8.0"
|
|
52
52
|
},
|
|
53
53
|
"devDependencies": {
|
|
54
|
-
"@atlaskit/button": "^16.
|
|
54
|
+
"@atlaskit/button": "^16.7.0",
|
|
55
55
|
"@atlaskit/docs": "*",
|
|
56
|
+
"@atlaskit/section-message": "^6.4.0",
|
|
56
57
|
"@atlaskit/ssr": "*",
|
|
57
|
-
"@atlaskit/textfield": "^5.
|
|
58
|
+
"@atlaskit/textfield": "^5.4.0",
|
|
58
59
|
"@atlassian/atlassian-frontend-prettier-config-1.0.1": "npm:@atlassian/atlassian-frontend-prettier-config@1.0.1",
|
|
59
60
|
"@testing-library/react": "^12.1.5",
|
|
60
61
|
"enzyme": "^3.10.0",
|