@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
|
@@ -44797,7 +44797,7 @@ System.register(["tslib", "@web-atoms/core/dist/core/InjectProperty", "../../../
|
|
|
44797
44797
|
siteID,
|
|
44798
44798
|
start,
|
|
44799
44799
|
end
|
|
44800
|
-
}, p => x => x.siteID === p.siteID && x.date >= p.start && x.date <= p.end && x.duration === "daily" && x.category === "").toArray();
|
|
44800
|
+
}, p => x => x.siteID === p.siteID && x.date >= p.start && x.date <= p.end && x.duration === "daily" && x.category === "").orderBy(x => x.date).toArray();
|
|
44801
44801
|
this.renderChart({
|
|
44802
44802
|
title: "Daily",
|
|
44803
44803
|
type: "line",
|
|
@@ -44862,7 +44862,6 @@ System.register([], function (_export, _context) {
|
|
|
44862
44862
|
}
|
|
44863
44863
|
segment.set(x, y);
|
|
44864
44864
|
}
|
|
44865
|
-
labels.sort();
|
|
44866
44865
|
for (const [group, segment] of map) {
|
|
44867
44866
|
const data = [];
|
|
44868
44867
|
const dataset = {
|
|
@@ -44925,7 +44924,7 @@ System.register(["tslib", "@web-atoms/core/dist/core/InjectProperty", "../../../
|
|
|
44925
44924
|
siteID,
|
|
44926
44925
|
start,
|
|
44927
44926
|
end
|
|
44928
|
-
}, p => x => x.siteID === p.siteID && x.date >= p.start && x.date <= p.end && x.duration === "daily" && Sql.text.like(x.category, "/country/%")).toArray();
|
|
44927
|
+
}, 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();
|
|
44929
44928
|
const data = new ChartDataBuilder(daily, x => ({
|
|
44930
44929
|
x: x.date.day,
|
|
44931
44930
|
group: x.category.split("/").pop(),
|
|
@@ -44988,7 +44987,7 @@ System.register(["tslib", "@web-atoms/core/dist/core/InjectProperty", "../../../
|
|
|
44988
44987
|
siteID,
|
|
44989
44988
|
start,
|
|
44990
44989
|
end
|
|
44991
|
-
}, 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();
|
|
44990
|
+
}, 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();
|
|
44992
44991
|
const data = new ChartDataBuilder(daily, x => ({
|
|
44993
44992
|
x: x.date.day,
|
|
44994
44993
|
group: x.category.split("/").pop(),
|
|
@@ -45065,7 +45064,7 @@ System.register(["tslib", "@web-atoms/core/dist/core/InjectProperty", "../../../
|
|
|
45065
45064
|
siteID,
|
|
45066
45065
|
start,
|
|
45067
45066
|
end
|
|
45068
|
-
}, p => x => x.siteID === p.siteID && x.date >= p.start && x.date <= p.end && x.duration === "daily" && Sql.text.like(x.category, "/source/%")).toArray();
|
|
45067
|
+
}, 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();
|
|
45069
45068
|
const data = new ChartDataBuilder(daily, x => ({
|
|
45070
45069
|
x: x.date.day,
|
|
45071
45070
|
group: getHost(x.category),
|