@social-mail/social-mail-client 1.8.300 → 1.8.301
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 -4
- 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/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 -4
- 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 -4
- 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/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",
|
|
@@ -44925,7 +44925,7 @@ System.register(["tslib", "@web-atoms/core/dist/core/InjectProperty", "../../../
|
|
|
44925
44925
|
siteID,
|
|
44926
44926
|
start,
|
|
44927
44927
|
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();
|
|
44928
|
+
}, 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
44929
|
const data = new ChartDataBuilder(daily, x => ({
|
|
44930
44930
|
x: x.date.day,
|
|
44931
44931
|
group: x.category.split("/").pop(),
|
|
@@ -44988,7 +44988,7 @@ System.register(["tslib", "@web-atoms/core/dist/core/InjectProperty", "../../../
|
|
|
44988
44988
|
siteID,
|
|
44989
44989
|
start,
|
|
44990
44990
|
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();
|
|
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).orderBy(x => x.date).toArray();
|
|
44992
44992
|
const data = new ChartDataBuilder(daily, x => ({
|
|
44993
44993
|
x: x.date.day,
|
|
44994
44994
|
group: x.category.split("/").pop(),
|
|
@@ -45065,7 +45065,7 @@ System.register(["tslib", "@web-atoms/core/dist/core/InjectProperty", "../../../
|
|
|
45065
45065
|
siteID,
|
|
45066
45066
|
start,
|
|
45067
45067
|
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();
|
|
45068
|
+
}, 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
45069
|
const data = new ChartDataBuilder(daily, x => ({
|
|
45070
45070
|
x: x.date.day,
|
|
45071
45071
|
group: getHost(x.category),
|