@social-mail/social-mail-hosted-web 1.0.4 → 1.0.6
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/AppIndex.pack.js +211 -11
- package/dist/AppIndex.pack.js.map +1 -1
- package/dist/AppIndex.pack.min.js +105 -8
- package/dist/AppIndex.pack.min.js.map +1 -1
- package/dist/pages/home/HomePage.js +209 -9
- package/dist/pages/home/HomePage.js.map +1 -1
- package/dist/style/GlobalStyle.js +1 -1
- package/dist/style/OverrideAppStyle.js +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/images/logo-plain.svg +41 -0
- package/package.json +1 -1
- package/src/pages/home/HomePage.tsx +181 -18
- package/src/style/GlobalStyle.ts +1 -1
- package/src/style/OverrideAppStyle.ts +1 -1
package/dist/AppIndex.pack.js
CHANGED
|
@@ -11793,7 +11793,7 @@ System.register(["@web-atoms/core/dist/style/styled"], function (_export, _conte
|
|
|
11793
11793
|
styled.css`
|
|
11794
11794
|
|
|
11795
11795
|
div[data-desktop-app=desktop-app] {
|
|
11796
|
-
width:
|
|
11796
|
+
width: 100vw;
|
|
11797
11797
|
}
|
|
11798
11798
|
|
|
11799
11799
|
div[data-base-page] {
|
|
@@ -11939,7 +11939,7 @@ body {
|
|
|
11939
11939
|
background-image: linear-gradient(19deg, #000000 45%, #B721FF 100%);
|
|
11940
11940
|
font-family: trebuchet ms, "Source Sans Pro";
|
|
11941
11941
|
font-size: 16px;
|
|
11942
|
-
|
|
11942
|
+
width: 100vw;
|
|
11943
11943
|
|
|
11944
11944
|
& * {
|
|
11945
11945
|
font-family: trebuchet ms, "Source Sans Pro";
|
|
@@ -11972,24 +11972,50 @@ body {
|
|
|
11972
11972
|
|
|
11973
11973
|
AmdLoader.instance.setup("@social-mail/social-mail-hosted-web/dist/style/GlobalStyle");
|
|
11974
11974
|
|
|
11975
|
-
System.register(["tslib", "@web-atoms/core/dist/core/XNode", "@web-atoms/core/dist/style/styled", "@web-atoms/web-controls/dist/mobile-app/MobileApp"], function (_export, _context) {
|
|
11975
|
+
System.register(["tslib", "@web-atoms/core/dist/core/XNode", "@web-atoms/core/dist/core/types", "@web-atoms/core/dist/style/styled", "@web-atoms/web-controls/dist/mobile-app/MobileApp"], function (_export, _context) {
|
|
11976
11976
|
"use strict";
|
|
11977
11977
|
|
|
11978
|
-
var __awaiter, XNode, styled, ContentPage, HomePage, css;
|
|
11978
|
+
var __awaiter, XNode, UMD, styled, ContentPage, HomePage, logo, css;
|
|
11979
11979
|
_export("default", void 0);
|
|
11980
11980
|
return {
|
|
11981
11981
|
setters: [function (_tslib) {
|
|
11982
11982
|
__awaiter = _tslib.__awaiter;
|
|
11983
11983
|
}, function (_webAtomsCoreDistCoreXNode) {
|
|
11984
11984
|
XNode = _webAtomsCoreDistCoreXNode.default;
|
|
11985
|
+
}, function (_webAtomsCoreDistCoreTypes) {
|
|
11986
|
+
UMD = _webAtomsCoreDistCoreTypes.UMD;
|
|
11985
11987
|
}, function (_webAtomsCoreDistStyleStyled) {
|
|
11986
11988
|
styled = _webAtomsCoreDistStyleStyled.default;
|
|
11987
11989
|
}, function (_webAtomsWebControlsDistMobileAppMobileApp) {
|
|
11988
11990
|
ContentPage = _webAtomsWebControlsDistMobileAppMobileApp.ContentPage;
|
|
11989
11991
|
}],
|
|
11990
11992
|
execute: function () {
|
|
11993
|
+
logo = UMD.resolvePath("@social-mail/social-mail-hosted-web/images/logo-plain.svg");
|
|
11991
11994
|
css = styled.css`
|
|
11992
11995
|
|
|
11996
|
+
& > [data-page-element=title], & > [data-page-element=icon], & > [data-page-element=action-bar] {
|
|
11997
|
+
display: none;
|
|
11998
|
+
}
|
|
11999
|
+
|
|
12000
|
+
& .app-bar {
|
|
12001
|
+
backdrop-filter: blur(14px) saturate(180%);
|
|
12002
|
+
-webkit-backdrop-filter: blur(14px) saturate(180%);
|
|
12003
|
+
background-color: rgba(17, 25, 40, 0.56);
|
|
12004
|
+
border-radius: 12px;
|
|
12005
|
+
border: 1px solid rgba(255, 255, 255, 0.125);
|
|
12006
|
+
position: sticky;
|
|
12007
|
+
top: 5px;
|
|
12008
|
+
z-index: 200;
|
|
12009
|
+
display: flex;
|
|
12010
|
+
gap: 5px;
|
|
12011
|
+
font-size: 2em;
|
|
12012
|
+
align-items: center;
|
|
12013
|
+
flex-wrap: wrap;
|
|
12014
|
+
& > img {
|
|
12015
|
+
max-height: 50px;
|
|
12016
|
+
}
|
|
12017
|
+
}
|
|
12018
|
+
|
|
11993
12019
|
& .center {
|
|
11994
12020
|
text-align: center;
|
|
11995
12021
|
}
|
|
@@ -12000,13 +12026,13 @@ System.register(["tslib", "@web-atoms/core/dist/core/XNode", "@web-atoms/core/di
|
|
|
12000
12026
|
}
|
|
12001
12027
|
|
|
12002
12028
|
& .sub-heading {
|
|
12003
|
-
font-size: 1.
|
|
12029
|
+
font-size: 1.6em;
|
|
12004
12030
|
text-align: center;
|
|
12005
12031
|
}
|
|
12006
12032
|
|
|
12007
12033
|
& .spacer {
|
|
12008
12034
|
width: 1px;
|
|
12009
|
-
height:
|
|
12035
|
+
height: 50px;
|
|
12010
12036
|
}
|
|
12011
12037
|
|
|
12012
12038
|
& .space {
|
|
@@ -12021,17 +12047,91 @@ System.register(["tslib", "@web-atoms/core/dist/core/XNode", "@web-atoms/core/di
|
|
|
12021
12047
|
padding: 30px;
|
|
12022
12048
|
border-radius: 30px;
|
|
12023
12049
|
margin: 50px;
|
|
12024
|
-
|
|
12025
|
-
|
|
12050
|
+
backdrop-filter: blur(11px) saturate(180%);
|
|
12051
|
+
-webkit-backdrop-filter: blur(11px) saturate(180%);
|
|
12052
|
+
background-color: rgba(255, 255, 255, 0.27);
|
|
12053
|
+
border-radius: 12px;
|
|
12054
|
+
border: 1px solid rgba(255, 255, 255, 0.125);
|
|
12055
|
+
color: white;
|
|
12026
12056
|
display: flex;
|
|
12027
12057
|
gap: 30px;
|
|
12028
12058
|
flex-direction: column;
|
|
12059
|
+
contain: content;
|
|
12060
|
+
& > header {
|
|
12061
|
+
background-color: #0093E9;
|
|
12062
|
+
background-image: linear-gradient(160deg, #0093E9 0%, #80D0C7 100%);
|
|
12063
|
+
opacity: 0.8;
|
|
12064
|
+
color: var(--primary-color);
|
|
12065
|
+
margin: -30px;
|
|
12066
|
+
padding: 25px;
|
|
12067
|
+
margin-bottom: 10px;
|
|
12068
|
+
|
|
12069
|
+
&.green {
|
|
12070
|
+
background-color: #85FFBD;
|
|
12071
|
+
background-image: linear-gradient(45deg, #85FFBD 0%, #FFFB7D 100%);
|
|
12072
|
+
}
|
|
12073
|
+
|
|
12074
|
+
&.yellow {
|
|
12075
|
+
background-color: #FBAB7E;
|
|
12076
|
+
background-image: linear-gradient(62deg, #FBAB7E 0%, #F7CE68 100%);
|
|
12077
|
+
}
|
|
12078
|
+
|
|
12079
|
+
&.fuschia {
|
|
12080
|
+
background-color: #4158D0;
|
|
12081
|
+
background-image: linear-gradient(43deg, #4158D0 0%, #C850C0 46%, #FFCC70 100%);
|
|
12082
|
+
color: white;
|
|
12083
|
+
}
|
|
12084
|
+
}
|
|
12029
12085
|
}
|
|
12030
12086
|
|
|
12031
12087
|
& .description {
|
|
12032
12088
|
font-size: 1.2em;
|
|
12033
12089
|
}
|
|
12034
12090
|
|
|
12091
|
+
& .feature-list {
|
|
12092
|
+
display: flex;
|
|
12093
|
+
flex-direction: column;
|
|
12094
|
+
gap: 20px;
|
|
12095
|
+
padding: 10px;
|
|
12096
|
+
align-items: stretch;
|
|
12097
|
+
& > div {
|
|
12098
|
+
display: flex;
|
|
12099
|
+
flex-direction: row;
|
|
12100
|
+
gap: 20px;
|
|
12101
|
+
align-items: center;
|
|
12102
|
+
font-size: 1.3em;
|
|
12103
|
+
& > i {
|
|
12104
|
+
min-width: 40px;
|
|
12105
|
+
text-align: center;
|
|
12106
|
+
color: #ff98ff;
|
|
12107
|
+
font-size: 1.4em;
|
|
12108
|
+
}
|
|
12109
|
+
}
|
|
12110
|
+
}
|
|
12111
|
+
|
|
12112
|
+
& .table {
|
|
12113
|
+
display: flex;
|
|
12114
|
+
flex-wrap: wrap;
|
|
12115
|
+
justify-content: space-evenly;
|
|
12116
|
+
& > .box {
|
|
12117
|
+
padding: 20px;
|
|
12118
|
+
& > header {
|
|
12119
|
+
margin:-20px;
|
|
12120
|
+
padding: 20px;
|
|
12121
|
+
margin-bottom: 0;
|
|
12122
|
+
}
|
|
12123
|
+
& > div {
|
|
12124
|
+
font-size: 0.8em;
|
|
12125
|
+
}
|
|
12126
|
+
& i {
|
|
12127
|
+
min-width: 30px;
|
|
12128
|
+
}
|
|
12129
|
+
}
|
|
12130
|
+
& > * {
|
|
12131
|
+
width: 200px;
|
|
12132
|
+
}
|
|
12133
|
+
}
|
|
12134
|
+
|
|
12035
12135
|
`.installLocal();
|
|
12036
12136
|
_export("default", HomePage = class HomePage extends ContentPage {
|
|
12037
12137
|
init() {
|
|
@@ -12040,7 +12140,11 @@ System.register(["tslib", "@web-atoms/core/dist/core/XNode", "@web-atoms/core/di
|
|
|
12040
12140
|
this.title = "Social Mail - Social Network Over Email";
|
|
12041
12141
|
this.render(XNode.create("div", null, XNode.create("div", {
|
|
12042
12142
|
"data-layout": "center-page-900px"
|
|
12043
|
-
}, XNode.create("
|
|
12143
|
+
}, XNode.create("header", {
|
|
12144
|
+
class: "app-bar"
|
|
12145
|
+
}, XNode.create("img", {
|
|
12146
|
+
src: logo
|
|
12147
|
+
}), XNode.create("span", null, "Social Mail")), XNode.create("div", {
|
|
12044
12148
|
class: "space"
|
|
12045
12149
|
}, XNode.create("header", {
|
|
12046
12150
|
class: "heading"
|
|
@@ -12053,8 +12157,104 @@ System.register(["tslib", "@web-atoms/core/dist/core/XNode", "@web-atoms/core/di
|
|
|
12053
12157
|
}, XNode.create("header", {
|
|
12054
12158
|
class: "sub-heading"
|
|
12055
12159
|
}, "On Premisis, On Your Own Cloud, On Our Cloud"), XNode.create("div", {
|
|
12056
|
-
class: "
|
|
12057
|
-
}, XNode.create("
|
|
12160
|
+
class: "feature-list"
|
|
12161
|
+
}, XNode.create("div", null, XNode.create("i", {
|
|
12162
|
+
class: "fa-duotone fa-server"
|
|
12163
|
+
}), "Containerized NodeJS on Linux"), XNode.create("div", null, XNode.create("i", {
|
|
12164
|
+
class: "fa-duotone fa-file-code"
|
|
12165
|
+
}), "Open Source"), XNode.create("div", null, XNode.create("i", {
|
|
12166
|
+
class: "fa-duotone fa-database"
|
|
12167
|
+
}), "Database on PostGres/Sql Server"), XNode.create("div", null, XNode.create("i", {
|
|
12168
|
+
class: "fa-duotone fa-cloud-binary"
|
|
12169
|
+
}), "Storage on Disk/S3/Azure Blob"), XNode.create("div", null, XNode.create("i", {
|
|
12170
|
+
class: "fa-duotone fa-users"
|
|
12171
|
+
}), "Unlimited Domains/Users (Self Hosted)"), XNode.create("div", null, XNode.create("i", {
|
|
12172
|
+
class: "fa-duotone fa-hand-holding-dollar"
|
|
12173
|
+
}), "Deduplication to reduce storage cost"), XNode.create("div", null, XNode.create("i", {
|
|
12174
|
+
class: "fa-duotone fa-file-magnifying-glass"
|
|
12175
|
+
}), "Search email contents"), XNode.create("div", null, XNode.create("i", {
|
|
12176
|
+
class: "fa-duotone fa-print-magnifying-glass"
|
|
12177
|
+
}), "Optional index attachments"), XNode.create("div", null, XNode.create("i", {
|
|
12178
|
+
class: "fa-duotone fa-inbox-in"
|
|
12179
|
+
}), "Backup IMAP Accounts (Archiving)"), XNode.create("div", null, XNode.create("i", {
|
|
12180
|
+
class: "fa-duotone fa-rotate"
|
|
12181
|
+
}), "Sync Out IMAP Accounts (Forwarding)"), XNode.create("div", null, XNode.create("i", {
|
|
12182
|
+
class: "fa-duotone fa-envelopes-bulk"
|
|
12183
|
+
}), "Mailing List (Social Channels)"), XNode.create("div", null, XNode.create("i", {
|
|
12184
|
+
class: "fa-duotone fa-circle-video"
|
|
12185
|
+
}), "Upcoming (Audio/Video in Email)"))), XNode.create("div", {
|
|
12186
|
+
class: "table"
|
|
12187
|
+
}, XNode.create("div", {
|
|
12188
|
+
class: "box"
|
|
12189
|
+
}, XNode.create("header", {
|
|
12190
|
+
class: "green sub-heading"
|
|
12191
|
+
}, "Shared"), XNode.create("div", {
|
|
12192
|
+
class: "feature-list"
|
|
12193
|
+
}, XNode.create("div", null, XNode.create("i", {
|
|
12194
|
+
class: "fa-duotone fa-microchip"
|
|
12195
|
+
}), " Shared"), XNode.create("div", null, XNode.create("i", {
|
|
12196
|
+
class: "fa-duotone fa-memory"
|
|
12197
|
+
}), " Shared"), XNode.create("div", null, XNode.create("i", {
|
|
12198
|
+
class: "fa-duotone fa-globe"
|
|
12199
|
+
}), " Single Domain"), XNode.create("div", null, XNode.create("i", {
|
|
12200
|
+
class: "fa-duotone fa-users"
|
|
12201
|
+
}), "Unlimited Mailboxes"), XNode.create("div", null, XNode.create("i", {
|
|
12202
|
+
class: "fa-duotone fa-database"
|
|
12203
|
+
}), " 1 TB Storage"), XNode.create("div", null, XNode.create("i", {
|
|
12204
|
+
class: "fa-duotone fa-file-invoice"
|
|
12205
|
+
}), " 18% GST"), XNode.create("div", null, XNode.create("i", {
|
|
12206
|
+
class: "fa-duotone fa-indian-rupee-sign"
|
|
12207
|
+
}), "30,000/yr"))), XNode.create("div", {
|
|
12208
|
+
class: "box"
|
|
12209
|
+
}, XNode.create("header", {
|
|
12210
|
+
class: "fuschia sub-heading"
|
|
12211
|
+
}, "Cloud"), XNode.create("div", {
|
|
12212
|
+
class: "feature-list"
|
|
12213
|
+
}, XNode.create("div", null, XNode.create("i", {
|
|
12214
|
+
class: "fa-duotone fa-microchip"
|
|
12215
|
+
}), " 2 vCPU"), XNode.create("div", null, XNode.create("i", {
|
|
12216
|
+
class: "fa-duotone fa-memory"
|
|
12217
|
+
}), " 4GB RAM"), XNode.create("div", null, XNode.create("i", {
|
|
12218
|
+
class: "fa-duotone fa-globe"
|
|
12219
|
+
}), " Unlimited Domains"), XNode.create("div", null, XNode.create("i", {
|
|
12220
|
+
class: "fa-duotone fa-users"
|
|
12221
|
+
}), "Unlimited Mailboxes"), XNode.create("div", null, XNode.create("i", {
|
|
12222
|
+
class: "fa-duotone fa-database"
|
|
12223
|
+
}), " 1 TB Storage"), XNode.create("div", null, XNode.create("i", {
|
|
12224
|
+
class: "fa-duotone fa-file-invoice"
|
|
12225
|
+
}), " 18% GST"), XNode.create("div", null, XNode.create("i", {
|
|
12226
|
+
class: "fa-duotone fa-indian-rupee-sign"
|
|
12227
|
+
}), "9,000/mo"))), XNode.create("div", {
|
|
12228
|
+
class: "box"
|
|
12229
|
+
}, XNode.create("header", {
|
|
12230
|
+
class: "yellow sub-heading"
|
|
12231
|
+
}, "On Prem"), XNode.create("div", {
|
|
12232
|
+
class: "feature-list"
|
|
12233
|
+
}, XNode.create("div", null, XNode.create("i", {
|
|
12234
|
+
class: "fa-duotone fa-microchip"
|
|
12235
|
+
}), " 2 vCPU"), XNode.create("div", null, XNode.create("i", {
|
|
12236
|
+
class: "fa-duotone fa-memory"
|
|
12237
|
+
}), " Max "), XNode.create("div", null, XNode.create("i", {
|
|
12238
|
+
class: "fa-duotone fa-globe"
|
|
12239
|
+
}), " Unlimited Domains"), XNode.create("div", null, XNode.create("i", {
|
|
12240
|
+
class: "fa-duotone fa-users"
|
|
12241
|
+
}), "Unlimited Mailboxes"), XNode.create("div", null, XNode.create("i", {
|
|
12242
|
+
class: "fa-duotone fa-database"
|
|
12243
|
+
}), " Max Storage"), XNode.create("div", null, XNode.create("i", {
|
|
12244
|
+
class: "fa-duotone fa-file-invoice"
|
|
12245
|
+
}), " 18% GST"), XNode.create("div", null, XNode.create("i", {
|
|
12246
|
+
class: "fa-duotone fa-indian-rupee-sign"
|
|
12247
|
+
}), "30,000"), XNode.create("div", null, "Software License with One year free upgrades.")))), XNode.create("div", {
|
|
12248
|
+
class: "box"
|
|
12249
|
+
}, XNode.create("header", {
|
|
12250
|
+
class: "sub-heading"
|
|
12251
|
+
}, "Support - Contact"), XNode.create("div", {
|
|
12252
|
+
class: "feature-list"
|
|
12253
|
+
}, XNode.create("div", null, "NeuroSpeech Technologies Pvt Ltd"), XNode.create("div", null, XNode.create("i", {
|
|
12254
|
+
class: "fa-duotone fa-envelope-circle-check"
|
|
12255
|
+
}), XNode.create("a", {
|
|
12256
|
+
href: "mailto:support@neurospeech.com?subject=Social Mail Partnership"
|
|
12257
|
+
}, "support@neurospeech.com"), XNode.create("br", null)))), XNode.create("div", null, "\u00A9 All rights reserved, NeuroSpeech Technologies Pvt Ltd, 2023"))));
|
|
12058
12258
|
});
|
|
12059
12259
|
}
|
|
12060
12260
|
});
|