@social-mail/social-mail-client 1.8.300 → 1.8.302
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/dist/admin/AdminAppIndex.pack.js +4 -5
- package/dist/admin/AdminAppIndex.pack.js.map +1 -1
- package/dist/admin/AdminAppIndex.pack.min.js +1 -1
- package/dist/admin/AdminAppIndex.pack.min.js.map +1 -1
- package/dist/common/pages/websites/detail/reports/ChartDataBuilder.js +0 -1
- package/dist/common/pages/websites/detail/reports/ChartDataBuilder.js.map +1 -1
- package/dist/common/pages/websites/detail/reports/DailyVisitors.d.ts.map +1 -1
- package/dist/common/pages/websites/detail/reports/DailyVisitors.js +1 -1
- package/dist/common/pages/websites/detail/reports/DailyVisitors.js.map +1 -1
- package/dist/common/pages/websites/detail/reports/DailyVisitorsByCountry.d.ts.map +1 -1
- package/dist/common/pages/websites/detail/reports/DailyVisitorsByCountry.js +1 -1
- package/dist/common/pages/websites/detail/reports/DailyVisitorsByCountry.js.map +1 -1
- package/dist/common/pages/websites/detail/reports/DailyVisitorsByDevices.d.ts.map +1 -1
- package/dist/common/pages/websites/detail/reports/DailyVisitorsByDevices.js +1 -1
- package/dist/common/pages/websites/detail/reports/DailyVisitorsByDevices.js.map +1 -1
- package/dist/common/pages/websites/detail/reports/DailyVisitorsBySources.d.ts.map +1 -1
- package/dist/common/pages/websites/detail/reports/DailyVisitorsBySources.js +1 -1
- package/dist/common/pages/websites/detail/reports/DailyVisitorsBySources.js.map +1 -1
- package/dist/site-editor-app/SiteEditorApp.pack.js +4 -5
- package/dist/site-editor-app/SiteEditorApp.pack.js.map +1 -1
- package/dist/site-editor-app/SiteEditorApp.pack.min.js +1 -1
- package/dist/site-editor-app/SiteEditorApp.pack.min.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/dist/web/AppIndex.pack.js +4 -5
- package/dist/web/AppIndex.pack.js.map +1 -1
- package/dist/web/AppIndex.pack.min.js +1 -1
- package/dist/web/AppIndex.pack.min.js.map +1 -1
- package/package.json +1 -1
- package/src/common/pages/websites/detail/reports/ChartDataBuilder.ts +1 -1
- package/src/common/pages/websites/detail/reports/DailyVisitors.tsx +1 -0
- package/src/common/pages/websites/detail/reports/DailyVisitorsByCountry.tsx +1 -0
- package/src/common/pages/websites/detail/reports/DailyVisitorsByDevices.tsx +1 -0
- package/src/common/pages/websites/detail/reports/DailyVisitorsBySources.tsx +1 -0
|
@@ -41704,7 +41704,7 @@ System.register(["tslib", "@web-atoms/core/dist/core/InjectProperty", "../../../
|
|
|
41704
41704
|
siteID,
|
|
41705
41705
|
start,
|
|
41706
41706
|
end
|
|
41707
|
-
}, p => x => x.siteID === p.siteID && x.date >= p.start && x.date <= p.end && x.duration === "daily" && x.category === "").toArray();
|
|
41707
|
+
}, p => x => x.siteID === p.siteID && x.date >= p.start && x.date <= p.end && x.duration === "daily" && x.category === "").orderBy(x => x.date).toArray();
|
|
41708
41708
|
this.renderChart({
|
|
41709
41709
|
title: "Daily",
|
|
41710
41710
|
type: "line",
|
|
@@ -41769,7 +41769,6 @@ System.register([], function (_export, _context) {
|
|
|
41769
41769
|
}
|
|
41770
41770
|
segment.set(x, y);
|
|
41771
41771
|
}
|
|
41772
|
-
labels.sort();
|
|
41773
41772
|
for (const [group, segment] of map) {
|
|
41774
41773
|
const data = [];
|
|
41775
41774
|
const dataset = {
|
|
@@ -41832,7 +41831,7 @@ System.register(["tslib", "@web-atoms/core/dist/core/InjectProperty", "../../../
|
|
|
41832
41831
|
siteID,
|
|
41833
41832
|
start,
|
|
41834
41833
|
end
|
|
41835
|
-
}, p => x => x.siteID === p.siteID && x.date >= p.start && x.date <= p.end && x.duration === "daily" && Sql.text.like(x.category, "/country/%")).toArray();
|
|
41834
|
+
}, p => x => x.siteID === p.siteID && x.date >= p.start && x.date <= p.end && x.duration === "daily" && Sql.text.like(x.category, "/country/%")).orderBy(x => x.date).toArray();
|
|
41836
41835
|
const data = new ChartDataBuilder(daily, x => ({
|
|
41837
41836
|
x: x.date.day,
|
|
41838
41837
|
group: x.category.split("/").pop(),
|
|
@@ -41895,7 +41894,7 @@ System.register(["tslib", "@web-atoms/core/dist/core/InjectProperty", "../../../
|
|
|
41895
41894
|
siteID,
|
|
41896
41895
|
start,
|
|
41897
41896
|
end
|
|
41898
|
-
}, p => x => x.siteID === p.siteID && x.date >= p.start && x.date <= p.end && x.duration === "daily" && Sql.text.like(x.category, "/devices/%") && Sql.text.indexOf(Sql.text.right(x.category, Sql.text.length(x.category) - 9), "/") === -1).toArray();
|
|
41897
|
+
}, p => x => x.siteID === p.siteID && x.date >= p.start && x.date <= p.end && x.duration === "daily" && Sql.text.like(x.category, "/devices/%") && Sql.text.indexOf(Sql.text.right(x.category, Sql.text.length(x.category) - 9), "/") === -1).orderBy(x => x.date).toArray();
|
|
41899
41898
|
const data = new ChartDataBuilder(daily, x => ({
|
|
41900
41899
|
x: x.date.day,
|
|
41901
41900
|
group: x.category.split("/").pop(),
|
|
@@ -41972,7 +41971,7 @@ System.register(["tslib", "@web-atoms/core/dist/core/InjectProperty", "../../../
|
|
|
41972
41971
|
siteID,
|
|
41973
41972
|
start,
|
|
41974
41973
|
end
|
|
41975
|
-
}, p => x => x.siteID === p.siteID && x.date >= p.start && x.date <= p.end && x.duration === "daily" && Sql.text.like(x.category, "/source/%")).toArray();
|
|
41974
|
+
}, p => x => x.siteID === p.siteID && x.date >= p.start && x.date <= p.end && x.duration === "daily" && Sql.text.like(x.category, "/source/%")).orderBy(x => x.date).toArray();
|
|
41976
41975
|
const data = new ChartDataBuilder(daily, x => ({
|
|
41977
41976
|
x: x.date.day,
|
|
41978
41977
|
group: getHost(x.category),
|