@trackunit/filters-asset-filter-definitions 0.0.270 → 0.0.274
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/index.cjs.js +3 -3
- package/index.esm.js +3 -3
- package/package.json +1 -1
- package/src/FilterEvents.d.ts +1 -1
package/index.cjs.js
CHANGED
|
@@ -1762,7 +1762,7 @@ const FollowedFiltersView = (props) => {
|
|
|
1762
1762
|
const [t] = useTranslation();
|
|
1763
1763
|
const { logEvent } = reactCoreHooks.useAnalytics(filtersFilterBar.FilterEvents);
|
|
1764
1764
|
const handleChange = (newValue) => {
|
|
1765
|
-
logEvent("
|
|
1765
|
+
logEvent("Filters Applied - V2", {
|
|
1766
1766
|
type: "FollowFilter",
|
|
1767
1767
|
value: newValue,
|
|
1768
1768
|
});
|
|
@@ -1893,7 +1893,7 @@ const LastSeenFiltersView = (props) => {
|
|
|
1893
1893
|
const [t] = useTranslation();
|
|
1894
1894
|
const { logEvent } = reactCoreHooks.useAnalytics(filtersFilterBar.FilterEvents);
|
|
1895
1895
|
const handleChange = (value) => {
|
|
1896
|
-
logEvent("
|
|
1896
|
+
logEvent("Filters Applied - V2", {
|
|
1897
1897
|
type: "LastSeenFilter",
|
|
1898
1898
|
value: value,
|
|
1899
1899
|
});
|
|
@@ -2131,7 +2131,7 @@ const PeriodFilterView = (props) => {
|
|
|
2131
2131
|
const [t] = useTranslation();
|
|
2132
2132
|
const { logEvent } = reactCoreHooks.useAnalytics(filtersFilterBar.FilterEvents);
|
|
2133
2133
|
const handleChange = (value) => {
|
|
2134
|
-
logEvent("
|
|
2134
|
+
logEvent("Filters Applied - V2", {
|
|
2135
2135
|
type: "PeriodFilter",
|
|
2136
2136
|
value: value,
|
|
2137
2137
|
});
|
package/index.esm.js
CHANGED
|
@@ -1738,7 +1738,7 @@ const FollowedFiltersView = (props) => {
|
|
|
1738
1738
|
const [t] = useTranslation();
|
|
1739
1739
|
const { logEvent } = useAnalytics(FilterEvents);
|
|
1740
1740
|
const handleChange = (newValue) => {
|
|
1741
|
-
logEvent("
|
|
1741
|
+
logEvent("Filters Applied - V2", {
|
|
1742
1742
|
type: "FollowFilter",
|
|
1743
1743
|
value: newValue,
|
|
1744
1744
|
});
|
|
@@ -1869,7 +1869,7 @@ const LastSeenFiltersView = (props) => {
|
|
|
1869
1869
|
const [t] = useTranslation();
|
|
1870
1870
|
const { logEvent } = useAnalytics(FilterEvents);
|
|
1871
1871
|
const handleChange = (value) => {
|
|
1872
|
-
logEvent("
|
|
1872
|
+
logEvent("Filters Applied - V2", {
|
|
1873
1873
|
type: "LastSeenFilter",
|
|
1874
1874
|
value: value,
|
|
1875
1875
|
});
|
|
@@ -2107,7 +2107,7 @@ const PeriodFilterView = (props) => {
|
|
|
2107
2107
|
const [t] = useTranslation();
|
|
2108
2108
|
const { logEvent } = useAnalytics(FilterEvents);
|
|
2109
2109
|
const handleChange = (value) => {
|
|
2110
|
-
logEvent("
|
|
2110
|
+
logEvent("Filters Applied - V2", {
|
|
2111
2111
|
type: "PeriodFilter",
|
|
2112
2112
|
value: value,
|
|
2113
2113
|
});
|
package/package.json
CHANGED
package/src/FilterEvents.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import { BaseEvent } from "@trackunit/react-core-contexts-api";
|
|
2
2
|
export declare const FilterEvents: {
|
|
3
|
-
|
|
3
|
+
"Filters Applied - V2": import("@trackunit/react-core-contexts-api").Event<BaseEvent>;
|
|
4
4
|
};
|