@atlaskit/navigation-system 5.3.2 → 5.3.3
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,14 @@
|
|
|
1
1
|
# @atlassian/navigation-system
|
|
2
2
|
|
|
3
|
+
## 5.3.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`5e4877d22ecd0`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/5e4877d22ecd0) -
|
|
8
|
+
Renames the `viewed` analytics event behind the `platform_dst_nav4_fhs_instrumentation_1` feature
|
|
9
|
+
gate to use `viewedOnLoad` as the action name. This is to avoid a conflict with an existing event
|
|
10
|
+
in Global Side Navigation.
|
|
11
|
+
|
|
3
12
|
## 5.3.2
|
|
4
13
|
|
|
5
14
|
### Patch Changes
|
|
@@ -163,7 +163,7 @@ function SideNavInternal(_ref) {
|
|
|
163
163
|
var navigationAnalyticsEvent = createAnalyticsEvent({
|
|
164
164
|
source: 'topNav',
|
|
165
165
|
actionSubject: 'sideNav',
|
|
166
|
-
action: '
|
|
166
|
+
action: 'viewedOnLoad',
|
|
167
167
|
actionSubjectId: 'sideNavMenu',
|
|
168
168
|
attributes: {
|
|
169
169
|
screen: 'desktop'
|
|
@@ -145,7 +145,7 @@ function SideNavInternal({
|
|
|
145
145
|
const navigationAnalyticsEvent = createAnalyticsEvent({
|
|
146
146
|
source: 'topNav',
|
|
147
147
|
actionSubject: 'sideNav',
|
|
148
|
-
action: '
|
|
148
|
+
action: 'viewedOnLoad',
|
|
149
149
|
actionSubjectId: 'sideNavMenu',
|
|
150
150
|
attributes: {
|
|
151
151
|
screen: 'desktop'
|
|
@@ -153,7 +153,7 @@ function SideNavInternal(_ref) {
|
|
|
153
153
|
var navigationAnalyticsEvent = createAnalyticsEvent({
|
|
154
154
|
source: 'topNav',
|
|
155
155
|
actionSubject: 'sideNav',
|
|
156
|
-
action: '
|
|
156
|
+
action: 'viewedOnLoad',
|
|
157
157
|
actionSubjectId: 'sideNavMenu',
|
|
158
158
|
attributes: {
|
|
159
159
|
screen: 'desktop'
|
package/package.json
CHANGED