@shieldiot/ngx-pulseiot-lib 2.20.1352 → 2.20.1355
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.
|
@@ -2008,7 +2008,7 @@ class Location {
|
|
|
2008
2008
|
|
|
2009
2009
|
// AccountSettings is a set of account attributes
|
|
2010
2010
|
class AccountSettings {
|
|
2011
|
-
constructor(defaultHomePageView, logo, logoDark, tabTitle, tabIcon, footer) {
|
|
2011
|
+
constructor(defaultHomePageView, logo, logoDark, tabTitle, tabIcon, footer, brandPrimary, brandSidebarFrom, brandSidebarTo, brandSidebarWash) {
|
|
2012
2012
|
if (defaultHomePageView !== undefined) {
|
|
2013
2013
|
this.defaultHomePageView = defaultHomePageView;
|
|
2014
2014
|
}
|
|
@@ -2027,6 +2027,18 @@ class AccountSettings {
|
|
|
2027
2027
|
if (footer !== undefined) {
|
|
2028
2028
|
this.footer = footer;
|
|
2029
2029
|
}
|
|
2030
|
+
if (brandPrimary !== undefined) {
|
|
2031
|
+
this.brandPrimary = brandPrimary;
|
|
2032
|
+
}
|
|
2033
|
+
if (brandSidebarFrom !== undefined) {
|
|
2034
|
+
this.brandSidebarFrom = brandSidebarFrom;
|
|
2035
|
+
}
|
|
2036
|
+
if (brandSidebarTo !== undefined) {
|
|
2037
|
+
this.brandSidebarTo = brandSidebarTo;
|
|
2038
|
+
}
|
|
2039
|
+
if (brandSidebarWash !== undefined) {
|
|
2040
|
+
this.brandSidebarWash = brandSidebarWash;
|
|
2041
|
+
}
|
|
2030
2042
|
}
|
|
2031
2043
|
}
|
|
2032
2044
|
|