diff --git a/src/@fuse/components/shortcuts/shortcuts.component.scss b/src/@fuse/components/shortcuts/shortcuts.component.scss
index 2fd8d648..63428a1c 100644
--- a/src/@fuse/components/shortcuts/shortcuts.component.scss
+++ b/src/@fuse/components/shortcuts/shortcuts.component.scss
@@ -2,7 +2,7 @@
:host {
- @include media-breakpoint-down('sm') {
+ @include media-breakpoint('lt-md') {
#fuse-shortcuts {
diff --git a/src/@fuse/components/shortcuts/shortcuts.component.ts b/src/@fuse/components/shortcuts/shortcuts.component.ts
index 05f49f47..9984310c 100644
--- a/src/@fuse/components/shortcuts/shortcuts.component.ts
+++ b/src/@fuse/components/shortcuts/shortcuts.component.ts
@@ -70,9 +70,7 @@ export class FuseShortcutsComponent implements OnInit, OnDestroy
// Get the navigation items and flatten them
this.filteredNavigationItems = this.navigationItems = this._fuseNavigationService.getFlatNavigation(this.navigation);
- const cookieExists = this._cookieService.check('FUSE2.shortcuts');
-
- if ( cookieExists )
+ if ( this._cookieService.check('FUSE2.shortcuts') )
{
this.shortcutItems = JSON.parse(this._cookieService.get('FUSE2.shortcuts'));
}
@@ -107,6 +105,7 @@ export class FuseShortcutsComponent implements OnInit, OnDestroy
];
}
+ // Subscribe to media changes
this._fuseMatchMediaService.onMediaChange
.pipe(takeUntil(this._unsubscribeAll))
.subscribe(() => {
diff --git a/src/@fuse/components/sidebar/sidebar.component.scss b/src/@fuse/components/sidebar/sidebar.component.scss
index 955c5669..b67ac4ef 100644
--- a/src/@fuse/components/sidebar/sidebar.component.scss
+++ b/src/@fuse/components/sidebar/sidebar.component.scss
@@ -16,7 +16,7 @@ fuse-sidebar {
z-index: 1000;
box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.35);
- @include media-breakpoint-down('xs') {
+ @include media-breakpoint('xs') {
min-width: 0 !important;
max-width: 80vw !important;
width: 80vw !important;
diff --git a/src/@fuse/components/widget/widget.component.scss b/src/@fuse/components/widget/widget.component.scss
index 7efe1b83..d50b5def 100644
--- a/src/@fuse/components/widget/widget.component.scss
+++ b/src/@fuse/components/widget/widget.component.scss
@@ -20,11 +20,13 @@ fuse-widget {
width: 100%;
opacity: 1;
z-index: 10;
- border-radius: 2px;
+ border-radius: 8px;
transition: transform 0.5s ease-out 0s, visibility 0s ease-in 0.2s, opacity 0s ease-in 0.2s;
transform: rotateY(0deg);
backface-visibility: hidden;
+ border: 1px solid;
}
+
> .fuse-widget-back {
display: block;
position: absolute;
@@ -36,9 +38,11 @@ fuse-widget {
visibility: hidden;
opacity: 0;
z-index: 10;
+ border-radius: 8px;
transition: transform 0.5s ease-out 0s, visibility 0s ease-in 0.2s, opacity 0s ease-in 0.2s;
transform: rotateY(180deg);
backface-visibility: hidden;
+ border: 1px solid;
[fuseWidgetToggle] {
position: absolute;
diff --git a/src/@fuse/components/widget/widget.theme.scss b/src/@fuse/components/widget/widget.theme.scss
index 667412c3..c9bf1a40 100644
--- a/src/@fuse/components/widget/widget.theme.scss
+++ b/src/@fuse/components/widget/widget.theme.scss
@@ -8,6 +8,7 @@
> .fuse-widget-front,
> .fuse-widget-back {
background: map-get($background, card);
+ border-color: map-get($foreground, divider);
}
}
}
\ No newline at end of file
diff --git a/src/@fuse/scss/fuse.scss b/src/@fuse/scss/fuse.scss
index 20e8b847..61dce32e 100644
--- a/src/@fuse/scss/fuse.scss
+++ b/src/@fuse/scss/fuse.scss
@@ -2,4 +2,4 @@
@import '~@angular/material/theming';
// Breakpoint mixins
-@import "mixins/breakpoints";
\ No newline at end of file
+@import "partials/breakpoints";
\ No newline at end of file
diff --git a/src/@fuse/scss/mixins/_breakpoints.scss b/src/@fuse/scss/mixins/_breakpoints.scss
deleted file mode 100644
index 3533c6a4..00000000
--- a/src/@fuse/scss/mixins/_breakpoints.scss
+++ /dev/null
@@ -1,126 +0,0 @@
-// Media step breakpoint mixin based on Angular Material lib
-$breakpoints: (
- xs: 'screen and (max-width: 599px)',
- sm: 'screen and (min-width: 600px) and (max-width: 959px)',
- md: 'screen and (min-width: 960px) and (max-width: 1279px)',
- lg: 'screen and (min-width: 1280px) and (max-width: 1919px)',
- xl: 'screen and (min-width: 1920px) and (max-width: 5000px)',
- lt-sm: 'screen and (max-width: 599px)',
- lt-md: 'screen and (max-width: 959px)',
- lt-lg: 'screen and (max-width: 1279px)',
- lt-xl: 'screen and (max-width: 1919px)',
- gt-xs: 'screen and (min-width: 600px)',
- gt-sm: 'screen and (min-width: 960px)',
- gt-md: 'screen and (min-width: 1280px)',
- gt-lg: 'screen and (min-width: 1920px)'
-) !default;
-
-$grid-breakpoints: (
- xs: 0,
- sm: 600px,
- md: 960px,
- lg: 1280px,
- xl: 1920px
-) !default;
-
-@mixin media-breakpoint($breakpointName) {
-
- $mediaQuery: map-get($breakpoints, $breakpointName);
-
- @if ($mediaQuery != null) {
-
- @media #{$mediaQuery} {
- @content
- }
- }
-}
-
-// >> breakpoint-next(sm)
-// md
-// >> breakpoint-next(sm, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px))
-// md
-// >> breakpoint-next(sm, $breakpoint-names: (xs sm md lg xl))
-// md
-@function breakpoint-next($name, $breakpoints: $grid-breakpoints, $breakpoint-names: map-keys($breakpoints)) {
- $n: index($breakpoint-names, $name);
- @return if($n < length($breakpoint-names), nth($breakpoint-names, $n + 1), null);
-}
-
-// Minimum breakpoint width. Null for the smallest (first) breakpoint.
-//
-// >> breakpoint-min(sm, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px))
-// 576px
-@function breakpoint-min($name, $breakpoints: $grid-breakpoints) {
- $min: map-get($breakpoints, $name);
- @return if($min != 0, $min, null);
-}
-
-// Maximum breakpoint width. Null for the largest (last) breakpoint.
-// The maximum value is calculated as the minimum of the next one less 0.1.
-//
-// >> breakpoint-max(sm, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px))
-// 767px
-@function breakpoint-max($name, $breakpoints: $grid-breakpoints) {
- $next: breakpoint-next($name, $breakpoints);
- @return if($next, breakpoint-min($next, $breakpoints) - 1px, null);
-}
-
-// Returns a blank string if smallest breakpoint, otherwise returns the name with a dash infront.
-// Useful for making responsive utilities.
-//
-// >> breakpoint-infix(xs, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px))
-// "" (Returns a blank string)
-// >> breakpoint-infix(sm, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px))
-// "-sm"
-@function breakpoint-infix($name, $breakpoints: $grid-breakpoints) {
- @return if(breakpoint-min($name, $breakpoints) == null, "", "-#{$name}");
-}
-
-// Media of at least the minimum breakpoint width. No query for the smallest breakpoint.
-// Makes the @content apply to the given breakpoint and wider.
-@mixin media-breakpoint-up($name, $breakpoints: $grid-breakpoints) {
- $min: breakpoint-min($name, $breakpoints);
- @if $min {
- @media (min-width: $min) {
- @content;
- }
- } @else {
- @content;
- }
-}
-
-// Media of at most the maximum breakpoint width. No query for the largest breakpoint.
-// Makes the @content apply to the given breakpoint and narrower.
-@mixin media-breakpoint-down($name, $breakpoints: $grid-breakpoints) {
- $max: breakpoint-max($name, $breakpoints);
- @if $max {
- @media (max-width: $max) {
- @content;
- }
- } @else {
- @content;
- }
-}
-
-// Media that spans multiple breakpoint widths.
-// Makes the @content apply between the min and max breakpoints
-@mixin media-breakpoint-between($lower, $upper, $breakpoints: $grid-breakpoints) {
- $min: breakpoint-max($lower, $breakpoints);
- $max: breakpoint-max($upper, $breakpoints);
-
- @media (min-width: $min) and (max-width: $max) {
- @content;
- }
-}
-
-// Media between the breakpoint's minimum and maximum widths.
-// No minimum for the smallest breakpoint, and no maximum for the largest one.
-// Makes the @content apply only to the given breakpoint, not viewports any wider or narrower.
-@mixin media-breakpoint-only($name, $breakpoints: $grid-breakpoints) {
- $min: breakpoint-min($name, $breakpoints);
- $max: breakpoint-max($name, $breakpoints);
-
- @media (min-width: $min) and (max-width: $max) {
- @content;
- }
-}
diff --git a/src/@fuse/scss/partials/_angular-material-fix.scss b/src/@fuse/scss/partials/_angular-material-fix.scss
index 43debd21..07c9ae06 100644
--- a/src/@fuse/scss/partials/_angular-material-fix.scss
+++ b/src/@fuse/scss/partials/_angular-material-fix.scss
@@ -1,3 +1,31 @@
+// Fix: "Remove the cdk-global-scrollblock effects from the HTML"
+// Fuse already blocks the body scroll so it doesn't need this feature. We are disabling it
+// because on Windows, it causes a scrollbar to show up.
+html {
+
+ &.cdk-global-scrollblock {
+ position: relative !important;
+ overflow: hidden !important;
+ }
+}
+
+// Fix: "Inconsistent button heights due to inconsistent line heights"
+button {
+
+ .mat-button-wrapper {
+ line-height: normal;
+ }
+}
+
+.mat-icon {
+
+ // Fix: "Font-weight config affecting the icons"
+ font-weight: 400 !important;
+
+ // Fix: "Inconsistent positioning on custom font icons"
+ line-height: 1;
+}
+
// Fix: "Icon button ripple radius is not correct on Edge & Safari"
.mat-icon-button {
@@ -30,9 +58,9 @@
background-color: rgba(0, 0, 0, 0.12);
}
-// Fix: "Table-cell and inline-table in mat-select"
.mat-form-field {
+ // Fix: "Table-cell and inline-table in mat-select"
&.mat-form-field-type-mat-select {
.mat-form-field-infix {
@@ -58,6 +86,17 @@
}
}
+// Fix: "Inconsistent input heights"
+.mat-form-field-appearance-outline {
+
+ input[type="time"] {
+
+ &.mat-input-element {
+ height: 18px;
+ }
+ }
+}
+
// Fix: Stepper icons are broken due to Fuse's icon helpers
mat-horizontal-stepper,
mat-vertical-stepper {
diff --git a/src/@fuse/scss/partials/_breakpoints.scss b/src/@fuse/scss/partials/_breakpoints.scss
new file mode 100644
index 00000000..3ba38f93
--- /dev/null
+++ b/src/@fuse/scss/partials/_breakpoints.scss
@@ -0,0 +1,38 @@
+// Media step breakpoint mixin based on Angular Material lib
+$breakpoints: (
+ xs: 'screen and (max-width: 599px)',
+ sm: 'screen and (min-width: 600px) and (max-width: 959px)',
+ md: 'screen and (min-width: 960px) and (max-width: 1279px)',
+ lg: 'screen and (min-width: 1280px) and (max-width: 1919px)',
+ xl: 'screen and (min-width: 1920px) and (max-width: 5000px)',
+ lt-sm: 'screen and (max-width: 599px)',
+ lt-md: 'screen and (max-width: 959px)',
+ lt-lg: 'screen and (max-width: 1279px)',
+ lt-xl: 'screen and (max-width: 1919px)',
+ gt-xs: 'screen and (min-width: 600px)',
+ gt-sm: 'screen and (min-width: 960px)',
+ gt-md: 'screen and (min-width: 1280px)',
+ gt-lg: 'screen and (min-width: 1920px)'
+) !default;
+
+// Re-map the breakpoints for the helper classes
+$helper-breakpoints: (
+ xs: null,
+ sm: 'gt-xs',
+ md: 'gt-sm',
+ lg: 'gt-md',
+ xl: 'gt-lg'
+);
+
+@mixin media-breakpoint($breakpointName) {
+
+ $mediaQuery: map-get($breakpoints, $breakpointName);
+
+ @if ($mediaQuery == null) {
+ @content
+ } @else {
+ @media #{$mediaQuery} {
+ @content
+ }
+ }
+}
diff --git a/src/@fuse/scss/partials/_cards.scss b/src/@fuse/scss/partials/_cards.scss
index 9d3788b4..3ddd6647 100644
--- a/src/@fuse/scss/partials/_cards.scss
+++ b/src/@fuse/scss/partials/_cards.scss
@@ -8,6 +8,7 @@
.fuse-card {
background: map-get($background, card);
+ border-color: map-get($foreground, divider);
.card-divider {
border-top: 1px solid map-get($foreground, divider);
@@ -21,8 +22,8 @@
.fuse-card {
max-width: 320px;
min-width: 320px;
- border-radius: 2px;
- @include mat-elevation(2);
+ border-radius: 8px;
+ border: 1px solid;
&.variable-width {
min-width: 0;
diff --git a/src/@fuse/scss/partials/_general.scss b/src/@fuse/scss/partials/_general.scss
index a3598600..d3f0d402 100644
--- a/src/@fuse/scss/partials/_general.scss
+++ b/src/@fuse/scss/partials/_general.scss
@@ -59,4 +59,12 @@ img {
height: auto;
vertical-align: top;
border: none;
+}
+
+// -----------------------------------------------------------------------------------------------------
+// @ Input
+// -----------------------------------------------------------------------------------------------------
+input {
+ border: none;
+ padding: 0 16px;
}
\ No newline at end of file
diff --git a/src/@fuse/scss/partials/_helpers.scss b/src/@fuse/scss/partials/_helpers.scss
index b8e0a4cc..e2950acd 100644
--- a/src/@fuse/scss/partials/_helpers.scss
+++ b/src/@fuse/scss/partials/_helpers.scss
@@ -1,11 +1,11 @@
// -----------------------------------------------------------------------------------------------------
// @ Position helpers
// -----------------------------------------------------------------------------------------------------
-@each $breakpoint in map-keys($grid-breakpoints) {
+@each $breakpoint, $materialBreakpoint in $helper-breakpoints {
- @include media-breakpoint-up($breakpoint) {
+ @include media-breakpoint($materialBreakpoint) {
- $infix: breakpoint-infix($breakpoint, $grid-breakpoints);
+ $infix: if($materialBreakpoint == null, "", "-#{$breakpoint}");
.position#{$infix}-relative {
position: relative;
@@ -24,11 +24,11 @@
// -----------------------------------------------------------------------------------------------------
// @ Absolute position alignment helpers
// -----------------------------------------------------------------------------------------------------
-@each $breakpoint in map-keys($grid-breakpoints) {
+@each $breakpoint, $materialBreakpoint in $helper-breakpoints {
- @include media-breakpoint-up($breakpoint) {
+ @include media-breakpoint($materialBreakpoint) {
- $infix: breakpoint-infix($breakpoint, $grid-breakpoints);
+ $infix: if($materialBreakpoint == null, "", "-#{$breakpoint}");
.align#{$infix}-top {
top: 0;
@@ -78,11 +78,11 @@
// -----------------------------------------------------------------------------------------------------
// @ Spacing helpers
// -----------------------------------------------------------------------------------------------------
-@each $breakpoint in map-keys($grid-breakpoints) {
+@each $breakpoint, $materialBreakpoint in $helper-breakpoints {
- @include media-breakpoint-up($breakpoint) {
+ @include media-breakpoint($materialBreakpoint) {
- $infix: breakpoint-infix($breakpoint, $grid-breakpoints);
+ $infix: if($materialBreakpoint == null, "", "-#{$breakpoint}");
@each $prop, $abbrev in (margin: m, padding: p) {
diff --git a/src/@fuse/scss/partials/_icons.scss b/src/@fuse/scss/partials/_icons.scss
index 91774833..e5f61394 100644
--- a/src/@fuse/scss/partials/_icons.scss
+++ b/src/@fuse/scss/partials/_icons.scss
@@ -14,11 +14,11 @@ mat-icon {
min-height: 24px;
line-height: 24px;
- @each $breakpoint in map-keys($grid-breakpoints) {
+ @each $breakpoint, $materialBreakpoint in $helper-breakpoints {
- @include media-breakpoint-up($breakpoint) {
+ @include media-breakpoint($materialBreakpoint) {
- $infix: breakpoint-infix($breakpoint, $grid-breakpoints);
+ $infix: if($materialBreakpoint == null, "", "-#{$breakpoint}");
@for $size from 2 through 128 {
diff --git a/src/@fuse/scss/partials/_material.scss b/src/@fuse/scss/partials/_material.scss
index 1247ea81..67e6780a 100644
--- a/src/@fuse/scss/partials/_material.scss
+++ b/src/@fuse/scss/partials/_material.scss
@@ -230,13 +230,12 @@ mat-icon.status {
color: #F44336;
&:before {
- content: "do_not_disturb_on";
+ content: "remove_circle_outline";
}
}
&.away {
- background-color: #FFC107;
- color: #FFFFFF;
+ color: #FFC107;
&:before {
content: "access_time";
@@ -245,7 +244,6 @@ mat-icon.status {
&.offline {
color: #646464;
- background-color: #FFFFFF;
&:before {
content: "not_interested";
diff --git a/src/@fuse/scss/partials/_navigation.scss b/src/@fuse/scss/partials/_navigation.scss
index c02a10ce..492d9a43 100644
--- a/src/@fuse/scss/partials/_navigation.scss
+++ b/src/@fuse/scss/partials/_navigation.scss
@@ -219,24 +219,27 @@
}
}
- // Material style
- &.material {
+ // Material 2 style
+ &.material2,
+ .material2 & {
.nav-subheader {
- border-top: 1px solid rgba(0, 0, 0, 0.12);
-
- &:first-child {
- border-top: none;
- }
+ height: 40px;
}
+ .nav-group {
+
+ > .group-title {
+ height: 40px;
+ }
+ }
.nav-item {
.nav-link {
height: 40px;
- padding: 0 16px;
- margin: 4px 8px;
- border-radius: 4px;
+ padding: 0 12px 0 24px;
+ border-radius: 0 20px 20px 0;
+ margin-right: 16px;
}
}
}
diff --git a/src/@fuse/scss/partials/_page-layouts.scss b/src/@fuse/scss/partials/_page-layouts.scss
index f28cc535..3d1a45e1 100644
--- a/src/@fuse/scss/partials/_page-layouts.scss
+++ b/src/@fuse/scss/partials/_page-layouts.scss
@@ -18,6 +18,7 @@
> .content-card {
background: map-get($background, card);
+ border-radius: 8px 8px 0 0;
> .toolbar {
border-bottom-color: map-get($foreground, divider);
@@ -34,6 +35,7 @@
> .content-card {
background: map-get($background, card);
+ border-radius: 8px 8px 0 0;
> .toolbar {
border-bottom-color: map-get($foreground, divider);
@@ -79,15 +81,11 @@
// @ Page Layouts
// -----------------------------------------------------------------------------------------------------
$carded-header-height: 200px !default;
-$carded-header-height-sm: 160px !default;
$carded-toolbar-height: 64px !default;
-
$header-height: 120px !default;
-$header-height-sm: 100px !default;
-// Calculate toolbarless header height
+// Calculate toolbar-less carded header height
$carded-header-height-without-toolbar: $carded-header-height - $carded-toolbar-height;
-$carded-header-height-without-toolbar-sm: $carded-header-height-sm - $carded-toolbar-height;
.page-layout {
position: relative;
@@ -109,10 +107,6 @@ $carded-header-height-without-toolbar-sm: $carded-header-height-sm - $carded-too
right: 0;
left: 0;
height: $carded-header-height;
-
- @include media-breakpoint-down('sm') {
- height: $carded-header-height-sm;
- }
}
// Fullwidth
@@ -136,12 +130,6 @@ $carded-header-height-without-toolbar-sm: $carded-header-height-sm - $carded-too
height: $carded-header-height-without-toolbar !important;
min-height: $carded-header-height-without-toolbar !important;
max-height: $carded-header-height-without-toolbar !important;
-
- @include media-breakpoint-down('sm') {
- height: $carded-header-height-without-toolbar-sm !important;
- min-height: $carded-header-height-without-toolbar-sm !important;
- max-height: $carded-header-height-without-toolbar-sm !important;
- }
}
> .content-card {
@@ -149,7 +137,7 @@ $carded-header-height-without-toolbar-sm: $carded-header-height-sm - $carded-too
flex-direction: column;
flex: 1 0 auto;
overflow: hidden;
- @include mat-elevation(7);
+ @include mat-elevation(1);
> .toolbar {
display: flex;
@@ -303,12 +291,6 @@ $carded-header-height-without-toolbar-sm: $carded-header-height-sm - $carded-too
height: $carded-header-height;
min-height: $carded-header-height;
max-height: $carded-header-height;
-
- @include media-breakpoint-down('sm') {
- height: $carded-header-height-sm;
- min-height: $carded-header-height-sm;
- max-height: $carded-header-height-sm;
- }
}
.content {
@@ -334,12 +316,6 @@ $carded-header-height-without-toolbar-sm: $carded-header-height-sm - $carded-too
height: $carded-header-height-without-toolbar;
min-height: $carded-header-height-without-toolbar;
max-height: $carded-header-height-without-toolbar;
-
- @include media-breakpoint-down('sm') {
- height: $carded-header-height-without-toolbar-sm;
- min-height: $carded-header-height-without-toolbar-sm;
- max-height: $carded-header-height-without-toolbar-sm;
- }
}
> .content-card {
@@ -347,7 +323,7 @@ $carded-header-height-without-toolbar-sm: $carded-header-height-sm - $carded-too
flex-direction: column;
flex: 1 1 auto;
overflow: hidden;
- @include mat-elevation(7);
+ @include mat-elevation(1);
> .toolbar {
display: flex;
@@ -379,7 +355,7 @@ $carded-header-height-without-toolbar-sm: $carded-header-height-sm - $carded-too
width: calc(100% - 32px);
min-width: 0;
- @include media-breakpoint-down('md') {
+ @include media-breakpoint('lt-lg') {
width: calc(100% - 64px);
}
@@ -566,7 +542,7 @@ $carded-header-height-without-toolbar-sm: $carded-header-height-sm - $carded-too
z-index: 3;
min-width: 0;
width: 100%;
- @include mat-elevation(7);
+ @include mat-elevation(1);
> .header {
height: $header-height;
@@ -625,6 +601,11 @@ $carded-header-height-without-toolbar-sm: $carded-header-height-sm - $carded-too
flex: 1 1 auto;
overflow: auto;
-webkit-overflow-scrolling: touch;
+
+ > .content {
+ border-radius: 8px;
+ @include mat-elevation(1);
+ }
}
}
}
@@ -685,7 +666,7 @@ $carded-header-height-without-toolbar-sm: $carded-header-height-sm - $carded-too
min-height: 100%;
}
- @include media-breakpoint-down('xs') {
+ @include media-breakpoint('xs') {
// Smaller margins
&.carded {
diff --git a/src/@fuse/scss/partials/_typography.scss b/src/@fuse/scss/partials/_typography.scss
index dd8521fa..fa98cc2e 100644
--- a/src/@fuse/scss/partials/_typography.scss
+++ b/src/@fuse/scss/partials/_typography.scss
@@ -41,7 +41,7 @@
// -----------------------------------------------------------------------------------------------------
html {
font-size: 62.5%;
- font-family: 'Muli', 'Helvetica Neue', 'Arial', sans-serif;
+ font-family: 'Nunito', 'Helvetica Neue', 'Arial', sans-serif;
line-height: 1.4 !important;
letter-spacing: -0.1px !important;
}
diff --git a/src/app/app.component.scss b/src/app/app.component.scss
index e1b40cd1..41964781 100644
--- a/src/app/app.component.scss
+++ b/src/app/app.component.scss
@@ -25,7 +25,7 @@
&.right-side-panel {
- @include media-breakpoint-up('lg') {
+ @include media-breakpoint('gt-md') {
right: 70px;
}
}
diff --git a/src/app/app.theme.scss b/src/app/app.theme.scss
index cc807163..923884d3 100644
--- a/src/app/app.theme.scss
+++ b/src/app/app.theme.scss
@@ -63,8 +63,11 @@ $custom_palettes: (
// Force the input field font sizes to 16px
$typography: mat-typography-config(
- $font-family: 'Muli, Helvetica Neue, Arial, sans-serif',
- $input: mat-typography-level(16px, 1.125, 400)
+ $font-family: 'Nunito, Helvetica Neue, Arial, sans-serif',
+ $title: mat-typography-level(20px, 32px, 600),
+ $body-2: mat-typography-level(14px, 24px, 600),
+ $button: mat-typography-level(14px, 14px, 600),
+ $input: mat-typography-level(16px, 1.125, 400) // line-height must be unitless !!!
);
// Setup the typography
diff --git a/src/app/fake-db/calendar.ts b/src/app/fake-db/calendar.ts
index 9eef3f3b..1a92c79c 100644
--- a/src/app/fake-db/calendar.ts
+++ b/src/app/fake-db/calendar.ts
@@ -22,8 +22,8 @@ export class CalendarFakeDb
title : 'A 3 day event',
allDay : true,
color : {
- primary : '#ad2121',
- secondary: '#FAE3E3'
+ primary : '#F44336',
+ secondary: '#FFCDD2'
},
resizable: {
beforeStart: true,
@@ -40,8 +40,8 @@ export class CalendarFakeDb
title : 'An event with no end date',
allDay : false,
color : {
- primary : '#e3bc08',
- secondary: '#FDF1BA'
+ primary : '#FF9800',
+ secondary: '#FFE0B2'
},
resizable: {
beforeStart: true,
@@ -59,7 +59,7 @@ export class CalendarFakeDb
title : 'A long event that spans 2 months',
allDay : false,
color : {
- primary : '#1e90ff',
+ primary : '#1E90FF',
secondary: '#D1E8FF'
},
resizable: {
@@ -78,8 +78,8 @@ export class CalendarFakeDb
title : 'A draggable and resizable event',
allDay : false,
color : {
- primary : '#e3bc08',
- secondary: '#FDF1BA'
+ primary : '#673AB7',
+ secondary: '#D1C4E9'
},
resizable: {
beforeStart: true,
diff --git a/src/app/fake-db/contacts.ts b/src/app/fake-db/contacts.ts
index 67d36ea9..bcbf7acc 100644
--- a/src/app/fake-db/contacts.ts
+++ b/src/app/fake-db/contacts.ts
@@ -12,7 +12,7 @@ export class ContactsFakeDb
'email' : 'abbott@withinpixels.com',
'phone' : '+1-202-555-0175',
'address' : '933 8th Street Stamford, CT 06902',
- 'birthday': null,
+ 'birthday': '',
'notes' : ''
},
{
@@ -26,7 +26,7 @@ export class ContactsFakeDb
'email' : 'arnold@withinpixels.com',
'phone' : '+1-202-555-0141',
'address' : '906 Valley Road Michigan City, IN 46360',
- 'birthday': null,
+ 'birthday': '',
'notes' : ''
},
{
@@ -40,7 +40,7 @@ export class ContactsFakeDb
'email' : 'barrera@withinpixels.com',
'phone' : '+1-202-555-0196',
'address' : '183 River Street Passaic, NJ 07055',
- 'birthday': null,
+ 'birthday': '',
'notes' : ''
},
{
@@ -54,7 +54,7 @@ export class ContactsFakeDb
'email' : 'blair@withinpixels.com',
'phone' : '+1-202-555-0118',
'address' : '143 Jones Street Eau Claire, WI 54701',
- 'birthday': null,
+ 'birthday': '',
'notes' : ''
},
{
@@ -68,7 +68,7 @@ export class ContactsFakeDb
'email' : 'boyle@withinpixels.com',
'phone' : '+1-202-555-0177',
'address' : '218 Pearl Street Brandon, FL 33510',
- 'birthday': null,
+ 'birthday': '',
'notes' : ''
},
{
@@ -82,7 +82,7 @@ export class ContactsFakeDb
'email' : 'christy@withinpixels.com',
'phone' : '+1-202-555-0136',
'address' : '329 Bridge Street Desoto, TX 75115',
- 'birthday': null,
+ 'birthday': '',
'notes' : ''
},
{
@@ -96,7 +96,7 @@ export class ContactsFakeDb
'email' : 'copeland@withinpixels.com',
'phone' : '+1-202-555-0107',
'address' : '956 6th Avenue North Bergen, NJ 0704',
- 'birthday': null,
+ 'birthday': '',
'notes' : ''
},
{
@@ -110,7 +110,7 @@ export class ContactsFakeDb
'email' : 'estes@withinpixels.com',
'phone' : '+1-202-555-0113',
'address' : '664 York Street Cambridge, MA 02138',
- 'birthday': null,
+ 'birthday': '',
'notes' : ''
},
{
@@ -124,7 +124,7 @@ export class ContactsFakeDb
'email' : 'harper@withinpixels.com',
'phone' : '+1-202-555-0173',
'address' : '738 Route 11 Cornelius, NC 28031',
- 'birthday': null,
+ 'birthday': '',
'notes' : ''
},
{
@@ -138,7 +138,7 @@ export class ContactsFakeDb
'email' : 'helen@withinpixels.com',
'phone' : '+1-202-555-0163',
'address' : '194 Washington Avenue Saint Petersburg, FL 33702',
- 'birthday': null,
+ 'birthday': '',
'notes' : ''
},
{
@@ -152,7 +152,7 @@ export class ContactsFakeDb
'email' : 'henderson@withinpixels.com',
'phone' : '+1-202-555-0151',
'address' : '686 Roosevelt Avenue Oviedo, FL 32765',
- 'birthday': null,
+ 'birthday': '',
'notes' : ''
},
{
@@ -166,7 +166,7 @@ export class ContactsFakeDb
'email' : 'josefina@withinpixels.com',
'phone' : '+1-202-555-0160',
'address' : '202 Hartford Road Lynchburg, VA 24502',
- 'birthday': null,
+ 'birthday': '',
'notes' : ''
},
{
@@ -180,7 +180,7 @@ export class ContactsFakeDb
'email' : 'katina@withinpixels.com',
'phone' : '+1-202-555-0186',
'address' : '219 Woodland Road Valrico, FL 33594',
- 'birthday': null,
+ 'birthday': '',
'notes' : ''
},
{
@@ -194,7 +194,7 @@ export class ContactsFakeDb
'email' : 'lily@withinpixels.com',
'phone' : '+1-202-555-0115',
'address' : '305 Willow Drive Superior, WI 54880',
- 'birthday': null,
+ 'birthday': '',
'notes' : ''
},
{
@@ -208,7 +208,7 @@ export class ContactsFakeDb
'email' : 'mai@withinpixels.com',
'phone' : '+1-202-555-0199',
'address' : '148 Heather Lane Mcminnville, TN 37110',
- 'birthday': null,
+ 'birthday': '',
'notes' : ''
},
{
@@ -222,7 +222,7 @@ export class ContactsFakeDb
'email' : 'nancy@withinpixels.com',
'phone' : '+1-202-555-0120',
'address' : '345 Laurel Lane Union City, NJ 07087',
- 'birthday': null,
+ 'birthday': '',
'notes' : ''
},
{
@@ -236,7 +236,7 @@ export class ContactsFakeDb
'email' : 'nora@withinpixels.com',
'phone' : '+1-202-555-0172',
'address' : '572 Rose Street Summerfield, FL 34491',
- 'birthday': null,
+ 'birthday': '',
'notes' : ''
},
{
@@ -250,7 +250,7 @@ export class ContactsFakeDb
'email' : 'odessa@withinpixels.com',
'phone' : '+1-202-555-0190',
'address' : '527 Jefferson Court Conyers, GA 30012',
- 'birthday': null,
+ 'birthday': '',
'notes' : ''
},
{
@@ -264,7 +264,7 @@ export class ContactsFakeDb
'email' : 'reyna@withinpixels.com',
'phone' : '+1-202-555-0116',
'address' : '297 Strawberry Lane Faribault, MN 55021',
- 'birthday': null,
+ 'birthday': '',
'notes' : ''
},
{
@@ -278,7 +278,7 @@ export class ContactsFakeDb
'email' : 'shauna@withinpixels.com',
'phone' : '+1-202-555-0159',
'address' : '928 Canterbury Court Pittsburgh, PA 15206',
- 'birthday': null,
+ 'birthday': '',
'notes' : ''
},
{
@@ -292,7 +292,7 @@ export class ContactsFakeDb
'email' : 'shepard@withinpixels.com',
'phone' : '+1-202-555-0173',
'address' : '904 Ridge Road Pickerington, OH 43147',
- 'birthday': null,
+ 'birthday': '',
'notes' : ''
},
{
@@ -306,7 +306,7 @@ export class ContactsFakeDb
'email' : 'tillman@withinpixels.com',
'phone' : '+1-202-555-0183',
'address' : '447 Charles Street Dorchester, MA 02125',
- 'birthday': null,
+ 'birthday': '',
'notes' : ''
},
{
@@ -320,7 +320,7 @@ export class ContactsFakeDb
'email' : 'trevino@withinpixels.com',
'phone' : '+1-202-555-0138',
'address' : '84 Valley View Road Norman, OK 73072',
- 'birthday': null,
+ 'birthday': '',
'notes' : ''
},
{
@@ -334,7 +334,7 @@ export class ContactsFakeDb
'email' : 'tyson@withinpixels.com',
'phone' : '+1-202-555-0146',
'address' : '204 Clark Street Monsey, NY 10952',
- 'birthday': null,
+ 'birthday': '',
'notes' : ''
},
{
@@ -348,7 +348,7 @@ export class ContactsFakeDb
'email' : 'velezquez@withinpixels.com',
'phone' : '+1-202-555-0146',
'address' : '261 Cleveland Street Riverside, NJ 08075',
- 'birthday': null,
+ 'birthday': '',
'notes' : ''
}
];
diff --git a/src/app/fake-db/e-commerce.ts b/src/app/fake-db/e-commerce.ts
index cee5a72c..eb1fee6a 100644
--- a/src/app/fake-db/e-commerce.ts
+++ b/src/app/fake-db/e-commerce.ts
@@ -3,66 +3,67 @@ export class ECommerceFakeDb
public static products = [
{
'id' : '1',
- 'name' : 'Printed Dress',
- 'handle' : 'printed-dress',
+ 'name' : 'A Walk Amongst Friends - Canvas Print',
+ 'handle' : 'a-walk-amongst-friends-canvas-print',
'description' : 'Officia amet eiusmod eu sunt tempor voluptate laboris velit nisi amet enim proident et. Consequat laborum non eiusmod cillum eu exercitation. Qui adipisicing est fugiat eiusmod esse. Sint aliqua cupidatat pariatur mollit ad est proident reprehenderit. Eiusmod adipisicing laborum incididunt sit aliqua ullamco.',
'categories' : [
- 'Dresses',
- 'Women'
+ 'Canvas Print',
+ 'Nature'
],
'tags' : [
- 'dress',
- 'printed'
+ 'canvas-print',
+ 'nature'
],
+ 'featuredImageId' : 1,
'images' : [
+ {
+ 'id' : 0,
+ 'url' : 'assets/images/ecommerce/a-walk-amongst-friends.jpg',
+ 'type': 'image'
+ },
{
'id' : 1,
- 'url' : 'assets/images/ecommerce/product-image-placeholder.png',
+ 'url' : 'assets/images/ecommerce/braies-lake.jpg',
'type': 'image'
},
{
'id' : 2,
- 'url' : 'assets/images/etc/air-balloons.jpg',
+ 'url' : 'assets/images/ecommerce/fall-glow.jpg',
'type': 'image'
},
{
'id' : 3,
- 'url' : 'assets/images/etc/avenue.jpg',
+ 'url' : 'assets/images/ecommerce/first-snow.jpg',
'type': 'image'
},
{
'id' : 4,
- 'url' : 'assets/images/etc/cactus.jpg',
+ 'url' : 'assets/images/ecommerce/lago-di-braies.jpg',
'type': 'image'
},
{
'id' : 5,
- 'url' : 'assets/images/etc/early-sunrise.jpg',
+ 'url' : 'assets/images/ecommerce/lago-di-sorapis.jpg',
'type': 'image'
},
{
'id' : 6,
- 'url' : 'assets/images/etc/mountain-lake.jpg',
+ 'url' : 'assets/images/ecommerce/never-stop-changing.jpg',
'type': 'image'
},
{
'id' : 7,
- 'url' : 'assets/images/etc/road-trip.jpg',
+ 'url' : 'assets/images/ecommerce/reaching.jpg',
'type': 'image'
},
{
'id' : 8,
- 'url' : 'assets/images/etc/snow.jpg',
+ 'url' : 'assets/images/ecommerce/morain-lake.jpg',
'type': 'image'
},
{
'id' : 9,
- 'url' : 'assets/images/etc/tropical-beach.jpg',
- 'type': 'image'
- },
- {
- 'id' : 10,
- 'url' : 'assets/images/etc/mountain-sunset.jpg',
+ 'url' : 'assets/images/ecommerce/yosemite.jpg',
'type': 'image'
}
],
@@ -81,66 +82,67 @@ export class ECommerceFakeDb
},
{
'id' : '2',
- 'name' : 'Green Skirt',
- 'handle' : 'green-skirt',
+ 'name' : 'Braies Lake - Canvas Print',
+ 'handle' : 'braies-lake-canvas-print',
'description' : 'Duis anim est non exercitation consequat. Ullamco ut ipsum dolore est elit est ea elit ad fugiat exercitation. Adipisicing eu ad sit culpa sint. Minim irure Lorem eiusmod minim nisi sit est consectetur.',
'categories' : [
- 'Skirts',
- 'Women'
+ 'Canvas Print',
+ 'Nature'
],
'tags' : [
- 'dress',
- 'printed'
+ 'canvas-print',
+ 'nature'
],
+ 'featuredImageId' : 2,
'images' : [
+ {
+ 'id' : 0,
+ 'url' : 'assets/images/ecommerce/a-walk-amongst-friends.jpg',
+ 'type': 'image'
+ },
{
'id' : 1,
- 'url' : 'assets/images/ecommerce/product-image-placeholder.png',
+ 'url' : 'assets/images/ecommerce/braies-lake.jpg',
'type': 'image'
},
{
'id' : 2,
- 'url' : 'assets/images/etc/air-balloons.jpg',
+ 'url' : 'assets/images/ecommerce/fall-glow.jpg',
'type': 'image'
},
{
'id' : 3,
- 'url' : 'assets/images/etc/avenue.jpg',
+ 'url' : 'assets/images/ecommerce/first-snow.jpg',
'type': 'image'
},
{
'id' : 4,
- 'url' : 'assets/images/etc/cactus.jpg',
+ 'url' : 'assets/images/ecommerce/lago-di-braies.jpg',
'type': 'image'
},
{
'id' : 5,
- 'url' : 'assets/images/etc/early-sunrise.jpg',
+ 'url' : 'assets/images/ecommerce/lago-di-sorapis.jpg',
'type': 'image'
},
{
'id' : 6,
- 'url' : 'assets/images/etc/mountain-lake.jpg',
+ 'url' : 'assets/images/ecommerce/never-stop-changing.jpg',
'type': 'image'
},
{
'id' : 7,
- 'url' : 'assets/images/etc/road-trip.jpg',
+ 'url' : 'assets/images/ecommerce/reaching.jpg',
'type': 'image'
},
{
'id' : 8,
- 'url' : 'assets/images/etc/snow.jpg',
+ 'url' : 'assets/images/ecommerce/morain-lake.jpg',
'type': 'image'
},
{
'id' : 9,
- 'url' : 'assets/images/etc/tropical-beach.jpg',
- 'type': 'image'
- },
- {
- 'id' : 10,
- 'url' : 'assets/images/etc/mountain-sunset.jpg',
+ 'url' : 'assets/images/ecommerce/yosemite.jpg',
'type': 'image'
}
],
@@ -159,66 +161,67 @@ export class ECommerceFakeDb
},
{
'id' : '3',
- 'name' : 'Printed Dress',
- 'handle' : 'printed-dress',
+ 'name' : 'Fall Glow - Canvas Print',
+ 'handle' : 'fall-glow-canvas-print',
'description' : 'Sit ipsum esse eu consequat veniam sit consectetur consectetur anim. Ut Lorem dolor ullamco do. Laboris excepteur consectetur tempor nisi commodo amet deserunt duis.',
'categories' : [
- 'Dresses',
- 'Women'
+ 'Canvas Print',
+ 'Nature'
],
'tags' : [
- 'dress',
- 'printed'
+ 'canvas-print',
+ 'nature'
],
+ 'featuredImageId' : 3,
'images' : [
+ {
+ 'id' : 0,
+ 'url' : 'assets/images/ecommerce/a-walk-amongst-friends.jpg',
+ 'type': 'image'
+ },
{
'id' : 1,
- 'url' : 'assets/images/ecommerce/product-image-placeholder.png',
+ 'url' : 'assets/images/ecommerce/braies-lake.jpg',
'type': 'image'
},
{
'id' : 2,
- 'url' : 'assets/images/etc/air-balloons.jpg',
+ 'url' : 'assets/images/ecommerce/fall-glow.jpg',
'type': 'image'
},
{
'id' : 3,
- 'url' : 'assets/images/etc/avenue.jpg',
+ 'url' : 'assets/images/ecommerce/first-snow.jpg',
'type': 'image'
},
{
'id' : 4,
- 'url' : 'assets/images/etc/cactus.jpg',
+ 'url' : 'assets/images/ecommerce/lago-di-braies.jpg',
'type': 'image'
},
{
'id' : 5,
- 'url' : 'assets/images/etc/early-sunrise.jpg',
+ 'url' : 'assets/images/ecommerce/lago-di-sorapis.jpg',
'type': 'image'
},
{
'id' : 6,
- 'url' : 'assets/images/etc/mountain-lake.jpg',
+ 'url' : 'assets/images/ecommerce/never-stop-changing.jpg',
'type': 'image'
},
{
'id' : 7,
- 'url' : 'assets/images/etc/road-trip.jpg',
+ 'url' : 'assets/images/ecommerce/reaching.jpg',
'type': 'image'
},
{
'id' : 8,
- 'url' : 'assets/images/etc/snow.jpg',
+ 'url' : 'assets/images/ecommerce/morain-lake.jpg',
'type': 'image'
},
{
'id' : 9,
- 'url' : 'assets/images/etc/tropical-beach.jpg',
- 'type': 'image'
- },
- {
- 'id' : 10,
- 'url' : 'assets/images/etc/mountain-sunset.jpg',
+ 'url' : 'assets/images/ecommerce/yosemite.jpg',
'type': 'image'
}
],
@@ -237,66 +240,67 @@ export class ECommerceFakeDb
},
{
'id' : '4',
- 'name' : 'White T-Shirt',
- 'handle' : 'white-t-shirt',
+ 'name' : 'First Snow - Canvas Print',
+ 'handle' : 'first-snow-canvas-print',
'description' : 'Incididunt nostrud culpa labore nostrud veniam nostrud dolore velit sunt laborum ad reprehenderit. Excepteur enim irure ut labore elit ut deserunt qui qui consequat quis do nostrud ad. Aliqua dolor labore ut occaecat laborum irure. Aute in deserunt do aute laborum sit et reprehenderit minim voluptate proident do est.',
'categories' : [
- 'T-Shirts',
- 'Women'
+ 'Canvas Print',
+ 'Nature'
],
'tags' : [
- 'dress',
- 'printed'
+ 'canvas-print',
+ 'nature'
],
+ 'featuredImageId' : 4,
'images' : [
+ {
+ 'id' : 0,
+ 'url' : 'assets/images/ecommerce/a-walk-amongst-friends.jpg',
+ 'type': 'image'
+ },
{
'id' : 1,
- 'url' : 'assets/images/ecommerce/product-image-placeholder.png',
+ 'url' : 'assets/images/ecommerce/braies-lake.jpg',
'type': 'image'
},
{
'id' : 2,
- 'url' : 'assets/images/etc/air-balloons.jpg',
+ 'url' : 'assets/images/ecommerce/fall-glow.jpg',
'type': 'image'
},
{
'id' : 3,
- 'url' : 'assets/images/etc/avenue.jpg',
+ 'url' : 'assets/images/ecommerce/first-snow.jpg',
'type': 'image'
},
{
'id' : 4,
- 'url' : 'assets/images/etc/cactus.jpg',
+ 'url' : 'assets/images/ecommerce/lago-di-braies.jpg',
'type': 'image'
},
{
'id' : 5,
- 'url' : 'assets/images/etc/early-sunrise.jpg',
+ 'url' : 'assets/images/ecommerce/lago-di-sorapis.jpg',
'type': 'image'
},
{
'id' : 6,
- 'url' : 'assets/images/etc/mountain-lake.jpg',
+ 'url' : 'assets/images/ecommerce/never-stop-changing.jpg',
'type': 'image'
},
{
'id' : 7,
- 'url' : 'assets/images/etc/road-trip.jpg',
+ 'url' : 'assets/images/ecommerce/reaching.jpg',
'type': 'image'
},
{
'id' : 8,
- 'url' : 'assets/images/etc/snow.jpg',
+ 'url' : 'assets/images/ecommerce/morain-lake.jpg',
'type': 'image'
},
{
'id' : 9,
- 'url' : 'assets/images/etc/tropical-beach.jpg',
- 'type': 'image'
- },
- {
- 'id' : 10,
- 'url' : 'assets/images/etc/mountain-sunset.jpg',
+ 'url' : 'assets/images/ecommerce/yosemite.jpg',
'type': 'image'
}
],
@@ -315,66 +319,67 @@ export class ECommerceFakeDb
},
{
'id' : '5',
- 'name' : 'Red Hoodie',
- 'handle' : 'red-hoodie',
+ 'name' : 'Lago di Braies - Canvas Print',
+ 'handle' : 'lago-di-braies-canvas-print',
'description' : 'Laboris laborum minim qui reprehenderit duis fugiat ea anim labore incididunt duis. Officia adipisicing anim amet in sit aliqua fugiat quis do sint non velit eu. Labore occaecat labore elit voluptate Lorem adipisicing et ipsum id et reprehenderit ullamco. Elit in nulla laborum nulla quis dolor deserunt magna dolor ad anim magna. Esse aute reprehenderit anim sit est et quis est. Ex reprehenderit culpa deserunt qui sint eiusmod reprehenderit ipsum consequat ut.',
'categories' : [
- 'Hoodies',
- 'Women'
+ 'Canvas Print',
+ 'Nature'
],
'tags' : [
- 'dress',
- 'printed'
+ 'canvas-print',
+ 'nature'
],
+ 'featuredImageId' : 5,
'images' : [
+ {
+ 'id' : 0,
+ 'url' : 'assets/images/ecommerce/a-walk-amongst-friends.jpg',
+ 'type': 'image'
+ },
{
'id' : 1,
- 'url' : 'assets/images/ecommerce/product-image-placeholder.png',
+ 'url' : 'assets/images/ecommerce/braies-lake.jpg',
'type': 'image'
},
{
'id' : 2,
- 'url' : 'assets/images/etc/air-balloons.jpg',
+ 'url' : 'assets/images/ecommerce/fall-glow.jpg',
'type': 'image'
},
{
'id' : 3,
- 'url' : 'assets/images/etc/avenue.jpg',
+ 'url' : 'assets/images/ecommerce/first-snow.jpg',
'type': 'image'
},
{
'id' : 4,
- 'url' : 'assets/images/etc/cactus.jpg',
+ 'url' : 'assets/images/ecommerce/lago-di-braies.jpg',
'type': 'image'
},
{
'id' : 5,
- 'url' : 'assets/images/etc/early-sunrise.jpg',
+ 'url' : 'assets/images/ecommerce/lago-di-sorapis.jpg',
'type': 'image'
},
{
'id' : 6,
- 'url' : 'assets/images/etc/mountain-lake.jpg',
+ 'url' : 'assets/images/ecommerce/never-stop-changing.jpg',
'type': 'image'
},
{
'id' : 7,
- 'url' : 'assets/images/etc/road-trip.jpg',
+ 'url' : 'assets/images/ecommerce/reaching.jpg',
'type': 'image'
},
{
'id' : 8,
- 'url' : 'assets/images/etc/snow.jpg',
+ 'url' : 'assets/images/ecommerce/morain-lake.jpg',
'type': 'image'
},
{
'id' : 9,
- 'url' : 'assets/images/etc/tropical-beach.jpg',
- 'type': 'image'
- },
- {
- 'id' : 10,
- 'url' : 'assets/images/etc/mountain-sunset.jpg',
+ 'url' : 'assets/images/ecommerce/yosemite.jpg',
'type': 'image'
}
],
@@ -393,66 +398,67 @@ export class ECommerceFakeDb
},
{
'id' : '6',
- 'name' : 'Red Hoodie',
- 'handle' : 'red-hoodie',
+ 'name' : 'Lago di Sorapis - Canvas Print',
+ 'handle' : 'lago-di-sorapis-canvas-print',
'description' : 'Tempor sunt tempor veniam non culpa excepteur. Ea irure elit non cupidatat cillum dolore. Sit incididunt qui dolore ipsum commodo aliqua amet cupidatat incididunt nisi qui consectetur. Cillum eu aute qui irure aute adipisicing cupidatat magna.',
'categories' : [
- 'Hoodies',
- 'Women'
+ 'Canvas Print',
+ 'Nature'
],
'tags' : [
- 'dress',
- 'printed'
+ 'canvas-print',
+ 'nature'
],
+ 'featuredImageId' : 6,
'images' : [
+ {
+ 'id' : 0,
+ 'url' : 'assets/images/ecommerce/a-walk-amongst-friends.jpg',
+ 'type': 'image'
+ },
{
'id' : 1,
- 'url' : 'assets/images/ecommerce/product-image-placeholder.png',
+ 'url' : 'assets/images/ecommerce/braies-lake.jpg',
'type': 'image'
},
{
'id' : 2,
- 'url' : 'assets/images/etc/air-balloons.jpg',
+ 'url' : 'assets/images/ecommerce/fall-glow.jpg',
'type': 'image'
},
{
'id' : 3,
- 'url' : 'assets/images/etc/avenue.jpg',
+ 'url' : 'assets/images/ecommerce/first-snow.jpg',
'type': 'image'
},
{
'id' : 4,
- 'url' : 'assets/images/etc/cactus.jpg',
+ 'url' : 'assets/images/ecommerce/lago-di-braies.jpg',
'type': 'image'
},
{
'id' : 5,
- 'url' : 'assets/images/etc/early-sunrise.jpg',
+ 'url' : 'assets/images/ecommerce/lago-di-sorapis.jpg',
'type': 'image'
},
{
'id' : 6,
- 'url' : 'assets/images/etc/mountain-lake.jpg',
+ 'url' : 'assets/images/ecommerce/never-stop-changing.jpg',
'type': 'image'
},
{
'id' : 7,
- 'url' : 'assets/images/etc/road-trip.jpg',
+ 'url' : 'assets/images/ecommerce/reaching.jpg',
'type': 'image'
},
{
'id' : 8,
- 'url' : 'assets/images/etc/snow.jpg',
+ 'url' : 'assets/images/ecommerce/morain-lake.jpg',
'type': 'image'
},
{
'id' : 9,
- 'url' : 'assets/images/etc/tropical-beach.jpg',
- 'type': 'image'
- },
- {
- 'id' : 10,
- 'url' : 'assets/images/etc/mountain-sunset.jpg',
+ 'url' : 'assets/images/ecommerce/yosemite.jpg',
'type': 'image'
}
],
@@ -471,66 +477,67 @@ export class ECommerceFakeDb
},
{
'id' : '7',
- 'name' : 'Summer Dress',
- 'handle' : 'summer-dress',
+ 'name' : 'Never Stop Changing - Canvas Print',
+ 'handle' : 'never-stop-changing-canvas-print',
'description' : 'Excepteur commodo ipsum in ex esse elit ea id voluptate id occaecat. Sunt Lorem ipsum ut proident eu aliquip velit non minim. Sunt velit deserunt veniam eu non veniam. Eiusmod sit ex et id incididunt labore aliqua eu aute dolor cillum ex mollit mollit. Incididunt voluptate adipisicing eiusmod non ipsum cupidatat excepteur enim in pariatur eu. Labore dolor qui exercitation amet labore laboris Lorem do adipisicing. Minim non consectetur adipisicing esse ut occaecat incididunt eiusmod commodo et cillum pariatur.',
'categories' : [
- 'Dresses',
- 'Women'
+ 'Canvas Print',
+ 'Nature'
],
'tags' : [
- 'dress',
- 'printed'
+ 'canvas-print',
+ 'nature'
],
+ 'featuredImageId' : 7,
'images' : [
+ {
+ 'id' : 0,
+ 'url' : 'assets/images/ecommerce/a-walk-amongst-friends.jpg',
+ 'type': 'image'
+ },
{
'id' : 1,
- 'url' : 'assets/images/ecommerce/product-image-placeholder.png',
+ 'url' : 'assets/images/ecommerce/braies-lake.jpg',
'type': 'image'
},
{
'id' : 2,
- 'url' : 'assets/images/etc/air-balloons.jpg',
+ 'url' : 'assets/images/ecommerce/fall-glow.jpg',
'type': 'image'
},
{
'id' : 3,
- 'url' : 'assets/images/etc/avenue.jpg',
+ 'url' : 'assets/images/ecommerce/first-snow.jpg',
'type': 'image'
},
{
'id' : 4,
- 'url' : 'assets/images/etc/cactus.jpg',
+ 'url' : 'assets/images/ecommerce/lago-di-braies.jpg',
'type': 'image'
},
{
'id' : 5,
- 'url' : 'assets/images/etc/early-sunrise.jpg',
+ 'url' : 'assets/images/ecommerce/lago-di-sorapis.jpg',
'type': 'image'
},
{
'id' : 6,
- 'url' : 'assets/images/etc/mountain-lake.jpg',
+ 'url' : 'assets/images/ecommerce/never-stop-changing.jpg',
'type': 'image'
},
{
'id' : 7,
- 'url' : 'assets/images/etc/road-trip.jpg',
+ 'url' : 'assets/images/ecommerce/reaching.jpg',
'type': 'image'
},
{
'id' : 8,
- 'url' : 'assets/images/etc/snow.jpg',
+ 'url' : 'assets/images/ecommerce/morain-lake.jpg',
'type': 'image'
},
{
'id' : 9,
- 'url' : 'assets/images/etc/tropical-beach.jpg',
- 'type': 'image'
- },
- {
- 'id' : 10,
- 'url' : 'assets/images/etc/mountain-sunset.jpg',
+ 'url' : 'assets/images/ecommerce/yosemite.jpg',
'type': 'image'
}
],
@@ -549,66 +556,67 @@ export class ECommerceFakeDb
},
{
'id' : '8',
- 'name' : 'Black Shoes',
- 'handle' : 'black-shoes',
+ 'name' : 'Reaching - Canvas Print',
+ 'handle' : 'reaching-canvas-print',
'description' : 'Velit cillum cupidatat eiusmod ea quis sit. Consequat dolore elit sunt sunt voluptate irure incididunt consectetur non. Dolore veniam ipsum anim commodo ex. Proident ipsum nostrud ullamco sit. Ad dolore nulla qui mollit laborum ex ipsum.',
'categories' : [
- 'Shoes',
- 'Women'
+ 'Canvas Print',
+ 'Nature'
],
'tags' : [
- 'dress',
- 'printed'
+ 'canvas-print',
+ 'nature'
],
+ 'featuredImageId' : 8,
'images' : [
+ {
+ 'id' : 0,
+ 'url' : 'assets/images/ecommerce/a-walk-amongst-friends.jpg',
+ 'type': 'image'
+ },
{
'id' : 1,
- 'url' : 'assets/images/ecommerce/product-image-placeholder.png',
+ 'url' : 'assets/images/ecommerce/braies-lake.jpg',
'type': 'image'
},
{
'id' : 2,
- 'url' : 'assets/images/etc/air-balloons.jpg',
+ 'url' : 'assets/images/ecommerce/fall-glow.jpg',
'type': 'image'
},
{
'id' : 3,
- 'url' : 'assets/images/etc/avenue.jpg',
+ 'url' : 'assets/images/ecommerce/first-snow.jpg',
'type': 'image'
},
{
'id' : 4,
- 'url' : 'assets/images/etc/cactus.jpg',
+ 'url' : 'assets/images/ecommerce/lago-di-braies.jpg',
'type': 'image'
},
{
'id' : 5,
- 'url' : 'assets/images/etc/early-sunrise.jpg',
+ 'url' : 'assets/images/ecommerce/lago-di-sorapis.jpg',
'type': 'image'
},
{
'id' : 6,
- 'url' : 'assets/images/etc/mountain-lake.jpg',
+ 'url' : 'assets/images/ecommerce/never-stop-changing.jpg',
'type': 'image'
},
{
'id' : 7,
- 'url' : 'assets/images/etc/road-trip.jpg',
+ 'url' : 'assets/images/ecommerce/reaching.jpg',
'type': 'image'
},
{
'id' : 8,
- 'url' : 'assets/images/etc/snow.jpg',
+ 'url' : 'assets/images/ecommerce/morain-lake.jpg',
'type': 'image'
},
{
'id' : 9,
- 'url' : 'assets/images/etc/tropical-beach.jpg',
- 'type': 'image'
- },
- {
- 'id' : 10,
- 'url' : 'assets/images/etc/mountain-sunset.jpg',
+ 'url' : 'assets/images/ecommerce/yosemite.jpg',
'type': 'image'
}
],
@@ -627,66 +635,67 @@ export class ECommerceFakeDb
},
{
'id' : '9',
- 'name' : 'Yellow Bag',
- 'handle' : 'yellow-bag',
+ 'name' : 'Morain Lake - Canvas Print',
+ 'handle' : 'morain-lake-canvas-print',
'description' : 'Consequat minim velit commodo Lorem ipsum velit elit amet ut. In deserunt id duis nisi labore. Proident cillum et reprehenderit excepteur ex nulla enim.',
'categories' : [
- 'Bags',
- 'Women'
+ 'Canvas Print',
+ 'Nature'
],
'tags' : [
- 'dress',
- 'printed'
+ 'canvas-print',
+ 'nature'
],
+ 'featuredImageId' : 9,
'images' : [
+ {
+ 'id' : 0,
+ 'url' : 'assets/images/ecommerce/a-walk-amongst-friends.jpg',
+ 'type': 'image'
+ },
{
'id' : 1,
- 'url' : 'assets/images/ecommerce/product-image-placeholder.png',
+ 'url' : 'assets/images/ecommerce/braies-lake.jpg',
'type': 'image'
},
{
'id' : 2,
- 'url' : 'assets/images/etc/air-balloons.jpg',
+ 'url' : 'assets/images/ecommerce/fall-glow.jpg',
'type': 'image'
},
{
'id' : 3,
- 'url' : 'assets/images/etc/avenue.jpg',
+ 'url' : 'assets/images/ecommerce/first-snow.jpg',
'type': 'image'
},
{
'id' : 4,
- 'url' : 'assets/images/etc/cactus.jpg',
+ 'url' : 'assets/images/ecommerce/lago-di-braies.jpg',
'type': 'image'
},
{
'id' : 5,
- 'url' : 'assets/images/etc/early-sunrise.jpg',
+ 'url' : 'assets/images/ecommerce/lago-di-sorapis.jpg',
'type': 'image'
},
{
'id' : 6,
- 'url' : 'assets/images/etc/mountain-lake.jpg',
+ 'url' : 'assets/images/ecommerce/never-stop-changing.jpg',
'type': 'image'
},
{
'id' : 7,
- 'url' : 'assets/images/etc/road-trip.jpg',
+ 'url' : 'assets/images/ecommerce/reaching.jpg',
'type': 'image'
},
{
'id' : 8,
- 'url' : 'assets/images/etc/snow.jpg',
+ 'url' : 'assets/images/ecommerce/morain-lake.jpg',
'type': 'image'
},
{
'id' : 9,
- 'url' : 'assets/images/etc/tropical-beach.jpg',
- 'type': 'image'
- },
- {
- 'id' : 10,
- 'url' : 'assets/images/etc/mountain-sunset.jpg',
+ 'url' : 'assets/images/ecommerce/yosemite.jpg',
'type': 'image'
}
],
@@ -705,66 +714,67 @@ export class ECommerceFakeDb
},
{
'id' : '10',
- 'name' : 'Brown Shoes',
- 'handle' : 'brown-shoes',
+ 'name' : 'Yosemite - Canvas Print',
+ 'handle' : 'yosemite-canvas-print',
'description' : 'Proident do sunt dolor tempor aliquip adipisicing dolor reprehenderit officia proident. Culpa non reprehenderit velit anim consequat velit elit eu culpa quis incididunt id. Eu incididunt exercitation nostrud est mollit officia. Laboris deserunt dolore sit occaecat exercitation quis sunt sunt nisi commodo.',
'categories' : [
- 'Shoes',
- 'Women'
+ 'Canvas Print',
+ 'Nature'
],
'tags' : [
- 'dress',
- 'printed'
+ 'canvas-print',
+ 'nature'
],
+ 'featuredImageId' : 9,
'images' : [
+ {
+ 'id' : 0,
+ 'url' : 'assets/images/ecommerce/a-walk-amongst-friends.jpg',
+ 'type': 'image'
+ },
{
'id' : 1,
- 'url' : 'assets/images/ecommerce/product-image-placeholder.png',
+ 'url' : 'assets/images/ecommerce/braies-lake.jpg',
'type': 'image'
},
{
'id' : 2,
- 'url' : 'assets/images/etc/air-balloons.jpg',
+ 'url' : 'assets/images/ecommerce/fall-glow.jpg',
'type': 'image'
},
{
'id' : 3,
- 'url' : 'assets/images/etc/avenue.jpg',
+ 'url' : 'assets/images/ecommerce/first-snow.jpg',
'type': 'image'
},
{
'id' : 4,
- 'url' : 'assets/images/etc/cactus.jpg',
+ 'url' : 'assets/images/ecommerce/lago-di-braies.jpg',
'type': 'image'
},
{
'id' : 5,
- 'url' : 'assets/images/etc/early-sunrise.jpg',
+ 'url' : 'assets/images/ecommerce/lago-di-sorapis.jpg',
'type': 'image'
},
{
'id' : 6,
- 'url' : 'assets/images/etc/mountain-lake.jpg',
+ 'url' : 'assets/images/ecommerce/never-stop-changing.jpg',
'type': 'image'
},
{
'id' : 7,
- 'url' : 'assets/images/etc/road-trip.jpg',
+ 'url' : 'assets/images/ecommerce/reaching.jpg',
'type': 'image'
},
{
'id' : 8,
- 'url' : 'assets/images/etc/snow.jpg',
+ 'url' : 'assets/images/ecommerce/morain-lake.jpg',
'type': 'image'
},
{
'id' : 9,
- 'url' : 'assets/images/etc/tropical-beach.jpg',
- 'type': 'image'
- },
- {
- 'id' : 10,
- 'url' : 'assets/images/etc/mountain-sunset.jpg',
+ 'url' : 'assets/images/ecommerce/yosemite.jpg',
'type': 'image'
}
],
@@ -783,74 +793,75 @@ export class ECommerceFakeDb
},
{
'id' : '11',
- 'name' : 'Brown Shoes',
- 'handle' : 'brown-shoes',
- 'description' : 'Aute do cupidatat amet excepteur. Adipisicing est exercitation ullamco velit pariatur ex id laborum ex consectetur velit et eiusmod. Do laborum commodo veniam adipisicing aute cillum. Adipisicing est minim voluptate aliqua nostrud.',
+ 'name' : 'A Walk Amongst Friends - Canvas Print',
+ 'handle' : 'a-walk-amongst-friends-canvas-print',
+ 'description' : 'Officia amet eiusmod eu sunt tempor voluptate laboris velit nisi amet enim proident et. Consequat laborum non eiusmod cillum eu exercitation. Qui adipisicing est fugiat eiusmod esse. Sint aliqua cupidatat pariatur mollit ad est proident reprehenderit. Eiusmod adipisicing laborum incididunt sit aliqua ullamco.',
'categories' : [
- 'Shoes',
- 'Women'
+ 'Canvas Print',
+ 'Nature'
],
'tags' : [
- 'dress',
- 'printed'
+ 'canvas-print',
+ 'nature'
],
+ 'featuredImageId' : 1,
'images' : [
+ {
+ 'id' : 0,
+ 'url' : 'assets/images/ecommerce/a-walk-amongst-friends.jpg',
+ 'type': 'image'
+ },
{
'id' : 1,
- 'url' : 'assets/images/ecommerce/product-image-placeholder.png',
+ 'url' : 'assets/images/ecommerce/braies-lake.jpg',
'type': 'image'
},
{
'id' : 2,
- 'url' : 'assets/images/etc/air-balloons.jpg',
+ 'url' : 'assets/images/ecommerce/fall-glow.jpg',
'type': 'image'
},
{
'id' : 3,
- 'url' : 'assets/images/etc/avenue.jpg',
+ 'url' : 'assets/images/ecommerce/first-snow.jpg',
'type': 'image'
},
{
'id' : 4,
- 'url' : 'assets/images/etc/cactus.jpg',
+ 'url' : 'assets/images/ecommerce/lago-di-braies.jpg',
'type': 'image'
},
{
'id' : 5,
- 'url' : 'assets/images/etc/early-sunrise.jpg',
+ 'url' : 'assets/images/ecommerce/lago-di-sorapis.jpg',
'type': 'image'
},
{
'id' : 6,
- 'url' : 'assets/images/etc/mountain-lake.jpg',
+ 'url' : 'assets/images/ecommerce/never-stop-changing.jpg',
'type': 'image'
},
{
'id' : 7,
- 'url' : 'assets/images/etc/road-trip.jpg',
+ 'url' : 'assets/images/ecommerce/reaching.jpg',
'type': 'image'
},
{
'id' : 8,
- 'url' : 'assets/images/etc/snow.jpg',
+ 'url' : 'assets/images/ecommerce/morain-lake.jpg',
'type': 'image'
},
{
'id' : 9,
- 'url' : 'assets/images/etc/tropical-beach.jpg',
- 'type': 'image'
- },
- {
- 'id' : 10,
- 'url' : 'assets/images/etc/mountain-sunset.jpg',
+ 'url' : 'assets/images/ecommerce/yosemite.jpg',
'type': 'image'
}
],
- 'priceTaxExcl' : 48.727,
- 'priceTaxIncl' : 53.60,
+ 'priceTaxExcl' : 9.309,
+ 'priceTaxIncl' : 10.24,
'taxRate' : 10,
- 'comparedPrice' : 69.90,
- 'quantity' : 27,
+ 'comparedPrice' : 19.90,
+ 'quantity' : 3,
'sku' : 'A445BV',
'width' : '22cm',
'height' : '24cm',
@@ -861,74 +872,75 @@ export class ECommerceFakeDb
},
{
'id' : '12',
- 'name' : 'Night Dress',
- 'handle' : 'night-dress',
- 'description' : 'Ex culpa et enim aute labore deserunt. Culpa occaecat nostrud culpa elit Lorem deserunt qui nulla ea elit veniam ea. Qui ullamco ullamco minim esse excepteur magna aliquip Lorem tempor ut aliqua sunt ad. Lorem minim tempor aliqua in in. In nisi esse ea eiusmod consequat sint.',
+ 'name' : 'Never Stop Changing - Canvas Print',
+ 'handle' : 'never-stop-changing-canvas-print',
+ 'description' : 'Excepteur commodo ipsum in ex esse elit ea id voluptate id occaecat. Sunt Lorem ipsum ut proident eu aliquip velit non minim. Sunt velit deserunt veniam eu non veniam. Eiusmod sit ex et id incididunt labore aliqua eu aute dolor cillum ex mollit mollit. Incididunt voluptate adipisicing eiusmod non ipsum cupidatat excepteur enim in pariatur eu. Labore dolor qui exercitation amet labore laboris Lorem do adipisicing. Minim non consectetur adipisicing esse ut occaecat incididunt eiusmod commodo et cillum pariatur.',
'categories' : [
- 'Dresses',
- 'Women'
+ 'Canvas Print',
+ 'Nature'
],
'tags' : [
- 'dress',
- 'printed'
+ 'canvas-print',
+ 'nature'
],
+ 'featuredImageId' : 7,
'images' : [
+ {
+ 'id' : 0,
+ 'url' : 'assets/images/ecommerce/a-walk-amongst-friends.jpg',
+ 'type': 'image'
+ },
{
'id' : 1,
- 'url' : 'assets/images/ecommerce/product-image-placeholder.png',
+ 'url' : 'assets/images/ecommerce/braies-lake.jpg',
'type': 'image'
},
{
'id' : 2,
- 'url' : 'assets/images/etc/air-balloons.jpg',
+ 'url' : 'assets/images/ecommerce/fall-glow.jpg',
'type': 'image'
},
{
'id' : 3,
- 'url' : 'assets/images/etc/avenue.jpg',
+ 'url' : 'assets/images/ecommerce/first-snow.jpg',
'type': 'image'
},
{
'id' : 4,
- 'url' : 'assets/images/etc/cactus.jpg',
+ 'url' : 'assets/images/ecommerce/lago-di-braies.jpg',
'type': 'image'
},
{
'id' : 5,
- 'url' : 'assets/images/etc/early-sunrise.jpg',
+ 'url' : 'assets/images/ecommerce/lago-di-sorapis.jpg',
'type': 'image'
},
{
'id' : 6,
- 'url' : 'assets/images/etc/mountain-lake.jpg',
+ 'url' : 'assets/images/ecommerce/never-stop-changing.jpg',
'type': 'image'
},
{
'id' : 7,
- 'url' : 'assets/images/etc/road-trip.jpg',
+ 'url' : 'assets/images/ecommerce/reaching.jpg',
'type': 'image'
},
{
'id' : 8,
- 'url' : 'assets/images/etc/snow.jpg',
+ 'url' : 'assets/images/ecommerce/morain-lake.jpg',
'type': 'image'
},
{
'id' : 9,
- 'url' : 'assets/images/etc/tropical-beach.jpg',
- 'type': 'image'
- },
- {
- 'id' : 10,
- 'url' : 'assets/images/etc/mountain-sunset.jpg',
+ 'url' : 'assets/images/ecommerce/yosemite.jpg',
'type': 'image'
}
],
- 'priceTaxExcl' : 9.309,
- 'priceTaxIncl' : 10.24,
+ 'priceTaxExcl' : 58.372,
+ 'priceTaxIncl' : 64.21,
'taxRate' : 10,
- 'comparedPrice' : 19.90,
- 'quantity' : 188,
+ 'comparedPrice' : 69.90,
+ 'quantity' : 34,
'sku' : 'A445BV',
'width' : '22cm',
'height' : '24cm',
@@ -939,66 +951,146 @@ export class ECommerceFakeDb
},
{
'id' : '13',
- 'name' : 'Red Hoodie',
- 'handle' : 'red-hoodie',
- 'description' : 'Aliquip cillum qui in consectetur ullamco ipsum ea esse eu non nostrud cillum velit minim. Deserunt est do non mollit incididunt enim non consectetur dolore ullamco do ad enim aliqua. Velit ipsum duis sunt sint dolore reprehenderit aute sint sunt esse laborum.',
+ 'name' : 'Morain Lake - Canvas Print',
+ 'handle' : 'morain-lake-canvas-print',
+ 'description' : 'Consequat minim velit commodo Lorem ipsum velit elit amet ut. In deserunt id duis nisi labore. Proident cillum et reprehenderit excepteur ex nulla enim.',
'categories' : [
- 'Hoodies',
- 'Women'
+ 'Canvas Print',
+ 'Nature'
],
'tags' : [
- 'dress',
- 'printed'
+ 'canvas-print',
+ 'nature'
],
+ 'featuredImageId' : 9,
'images' : [
+ {
+ 'id' : 0,
+ 'url' : 'assets/images/ecommerce/a-walk-amongst-friends.jpg',
+ 'type': 'image'
+ },
{
'id' : 1,
- 'url' : 'assets/images/ecommerce/product-image-placeholder.png',
+ 'url' : 'assets/images/ecommerce/braies-lake.jpg',
'type': 'image'
},
{
'id' : 2,
- 'url' : 'assets/images/etc/air-balloons.jpg',
+ 'url' : 'assets/images/ecommerce/fall-glow.jpg',
'type': 'image'
},
{
'id' : 3,
- 'url' : 'assets/images/etc/avenue.jpg',
+ 'url' : 'assets/images/ecommerce/first-snow.jpg',
'type': 'image'
},
{
'id' : 4,
- 'url' : 'assets/images/etc/cactus.jpg',
+ 'url' : 'assets/images/ecommerce/lago-di-braies.jpg',
'type': 'image'
},
{
'id' : 5,
- 'url' : 'assets/images/etc/early-sunrise.jpg',
+ 'url' : 'assets/images/ecommerce/lago-di-sorapis.jpg',
'type': 'image'
},
{
'id' : 6,
- 'url' : 'assets/images/etc/mountain-lake.jpg',
+ 'url' : 'assets/images/ecommerce/never-stop-changing.jpg',
'type': 'image'
},
{
'id' : 7,
- 'url' : 'assets/images/etc/road-trip.jpg',
+ 'url' : 'assets/images/ecommerce/reaching.jpg',
'type': 'image'
},
{
'id' : 8,
- 'url' : 'assets/images/etc/snow.jpg',
+ 'url' : 'assets/images/ecommerce/morain-lake.jpg',
'type': 'image'
},
{
'id' : 9,
- 'url' : 'assets/images/etc/tropical-beach.jpg',
+ 'url' : 'assets/images/ecommerce/yosemite.jpg',
+ 'type': 'image'
+ }
+ ],
+ 'priceTaxExcl' : 52.154,
+ 'priceTaxIncl' : 57.37,
+ 'taxRate' : 10,
+ 'comparedPrice' : 59.90,
+ 'quantity' : 58,
+ 'sku' : 'A445BV',
+ 'width' : '22cm',
+ 'height' : '24cm',
+ 'depth' : '15cm',
+ 'weight' : '3kg',
+ 'extraShippingFee': 3.00,
+ 'active' : true
+ },
+ {
+ 'id' : '14',
+ 'name' : 'Braies Lake - Canvas Print',
+ 'handle' : 'braies-lake-canvas-print',
+ 'description' : 'Duis anim est non exercitation consequat. Ullamco ut ipsum dolore est elit est ea elit ad fugiat exercitation. Adipisicing eu ad sit culpa sint. Minim irure Lorem eiusmod minim nisi sit est consectetur.',
+ 'categories' : [
+ 'Canvas Print',
+ 'Nature'
+ ],
+ 'tags' : [
+ 'canvas-print',
+ 'nature'
+ ],
+ 'featuredImageId' : 2,
+ 'images' : [
+ {
+ 'id' : 0,
+ 'url' : 'assets/images/ecommerce/a-walk-amongst-friends.jpg',
'type': 'image'
},
{
- 'id' : 10,
- 'url' : 'assets/images/etc/mountain-sunset.jpg',
+ 'id' : 1,
+ 'url' : 'assets/images/ecommerce/braies-lake.jpg',
+ 'type': 'image'
+ },
+ {
+ 'id' : 2,
+ 'url' : 'assets/images/ecommerce/fall-glow.jpg',
+ 'type': 'image'
+ },
+ {
+ 'id' : 3,
+ 'url' : 'assets/images/ecommerce/first-snow.jpg',
+ 'type': 'image'
+ },
+ {
+ 'id' : 4,
+ 'url' : 'assets/images/ecommerce/lago-di-braies.jpg',
+ 'type': 'image'
+ },
+ {
+ 'id' : 5,
+ 'url' : 'assets/images/ecommerce/lago-di-sorapis.jpg',
+ 'type': 'image'
+ },
+ {
+ 'id' : 6,
+ 'url' : 'assets/images/ecommerce/never-stop-changing.jpg',
+ 'type': 'image'
+ },
+ {
+ 'id' : 7,
+ 'url' : 'assets/images/ecommerce/reaching.jpg',
+ 'type': 'image'
+ },
+ {
+ 'id' : 8,
+ 'url' : 'assets/images/ecommerce/morain-lake.jpg',
+ 'type': 'image'
+ },
+ {
+ 'id' : 9,
+ 'url' : 'assets/images/ecommerce/yosemite.jpg',
'type': 'image'
}
],
@@ -1006,163 +1098,86 @@ export class ECommerceFakeDb
'priceTaxIncl' : 24.62,
'taxRate' : 10,
'comparedPrice' : 29.90,
- 'quantity' : 147,
+ 'quantity' : 92,
'sku' : 'A445BV',
'width' : '22cm',
'height' : '24cm',
'depth' : '15cm',
'weight' : '3kg',
'extraShippingFee': 3.00,
- 'active' : false
- },
- {
- 'id' : '14',
- 'name' : 'Red Hoodie',
- 'handle' : 'red-hoodie',
- 'description' : 'Proident excepteur consectetur elit eiusmod ipsum in pariatur voluptate laborum ex ullamco. Nisi cupidatat officia veniam eiusmod enim do aute labore dolor in nostrud sunt pariatur ex. Dolore elit non excepteur sint proident aliqua in aliquip irure elit.',
- 'categories' : [
- 'Hoodies',
- 'Women'
- ],
- 'tags' : [
- 'dress',
- 'printed'
- ],
- 'images' : [
- {
- 'id' : 1,
- 'url' : 'assets/images/ecommerce/product-image-placeholder.png',
- 'type': 'image'
- },
- {
- 'id' : 2,
- 'url' : 'assets/images/etc/air-balloons.jpg',
- 'type': 'image'
- },
- {
- 'id' : 3,
- 'url' : 'assets/images/etc/avenue.jpg',
- 'type': 'image'
- },
- {
- 'id' : 4,
- 'url' : 'assets/images/etc/cactus.jpg',
- 'type': 'image'
- },
- {
- 'id' : 5,
- 'url' : 'assets/images/etc/early-sunrise.jpg',
- 'type': 'image'
- },
- {
- 'id' : 6,
- 'url' : 'assets/images/etc/mountain-lake.jpg',
- 'type': 'image'
- },
- {
- 'id' : 7,
- 'url' : 'assets/images/etc/road-trip.jpg',
- 'type': 'image'
- },
- {
- 'id' : 8,
- 'url' : 'assets/images/etc/snow.jpg',
- 'type': 'image'
- },
- {
- 'id' : 9,
- 'url' : 'assets/images/etc/tropical-beach.jpg',
- 'type': 'image'
- },
- {
- 'id' : 10,
- 'url' : 'assets/images/etc/mountain-sunset.jpg',
- 'type': 'image'
- }
- ],
- 'priceTaxExcl' : 44.809,
- 'priceTaxIncl' : 49.29,
- 'taxRate' : 10,
- 'comparedPrice' : 59.90,
- 'quantity' : 21,
- 'sku' : 'A445BV',
- 'width' : '22cm',
- 'height' : '24cm',
- 'depth' : '15cm',
- 'weight' : '3kg',
- 'extraShippingFee': 3.00,
- 'active' : false
+ 'active' : true
},
{
'id' : '15',
- 'name' : 'Summer Dress',
- 'handle' : 'summer-dress',
- 'description' : 'Exercitation consectetur eiusmod nisi aliqua adipisicing nisi sit eiusmod. Quis ex est in cillum sit consequat ut mollit excepteur ipsum. Culpa Lorem magna cillum qui tempor nisi eiusmod occaecat veniam eiusmod officia culpa. Incididunt est nulla incididunt quis dolore duis id laborum magna veniam velit amet nostrud. Ad deserunt velit dolor irure exercitation reprehenderit nisi occaecat officia anim. Minim eiusmod aliquip eu do ipsum excepteur in reprehenderit voluptate laborum ullamco anim.',
+ 'name' : 'Lago di Braies - Canvas Print',
+ 'handle' : 'lago-di-braies-canvas-print',
+ 'description' : 'Laboris laborum minim qui reprehenderit duis fugiat ea anim labore incididunt duis. Officia adipisicing anim amet in sit aliqua fugiat quis do sint non velit eu. Labore occaecat labore elit voluptate Lorem adipisicing et ipsum id et reprehenderit ullamco. Elit in nulla laborum nulla quis dolor deserunt magna dolor ad anim magna. Esse aute reprehenderit anim sit est et quis est. Ex reprehenderit culpa deserunt qui sint eiusmod reprehenderit ipsum consequat ut.',
'categories' : [
- 'Dresses',
- 'Women'
+ 'Canvas Print',
+ 'Nature'
],
'tags' : [
- 'dress',
- 'printed'
+ 'canvas-print',
+ 'nature'
],
+ 'featuredImageId' : 5,
'images' : [
+ {
+ 'id' : 0,
+ 'url' : 'assets/images/ecommerce/a-walk-amongst-friends.jpg',
+ 'type': 'image'
+ },
{
'id' : 1,
- 'url' : 'assets/images/ecommerce/product-image-placeholder.png',
+ 'url' : 'assets/images/ecommerce/braies-lake.jpg',
'type': 'image'
},
{
'id' : 2,
- 'url' : 'assets/images/etc/air-balloons.jpg',
+ 'url' : 'assets/images/ecommerce/fall-glow.jpg',
'type': 'image'
},
{
'id' : 3,
- 'url' : 'assets/images/etc/avenue.jpg',
+ 'url' : 'assets/images/ecommerce/first-snow.jpg',
'type': 'image'
},
{
'id' : 4,
- 'url' : 'assets/images/etc/cactus.jpg',
+ 'url' : 'assets/images/ecommerce/lago-di-braies.jpg',
'type': 'image'
},
{
'id' : 5,
- 'url' : 'assets/images/etc/early-sunrise.jpg',
+ 'url' : 'assets/images/ecommerce/lago-di-sorapis.jpg',
'type': 'image'
},
{
'id' : 6,
- 'url' : 'assets/images/etc/mountain-lake.jpg',
+ 'url' : 'assets/images/ecommerce/never-stop-changing.jpg',
'type': 'image'
},
{
'id' : 7,
- 'url' : 'assets/images/etc/road-trip.jpg',
+ 'url' : 'assets/images/ecommerce/reaching.jpg',
'type': 'image'
},
{
'id' : 8,
- 'url' : 'assets/images/etc/snow.jpg',
+ 'url' : 'assets/images/ecommerce/morain-lake.jpg',
'type': 'image'
},
{
'id' : 9,
- 'url' : 'assets/images/etc/tropical-beach.jpg',
- 'type': 'image'
- },
- {
- 'id' : 10,
- 'url' : 'assets/images/etc/mountain-sunset.jpg',
+ 'url' : 'assets/images/ecommerce/yosemite.jpg',
'type': 'image'
}
],
- 'priceTaxExcl' : 62.827,
- 'priceTaxIncl' : 69.11,
+ 'priceTaxExcl' : 9.309,
+ 'priceTaxIncl' : 10.24,
'taxRate' : 10,
- 'comparedPrice' : 79.90,
- 'quantity' : 10,
+ 'comparedPrice' : 19.90,
+ 'quantity' : 19,
'sku' : 'A445BV',
'width' : '22cm',
'height' : '24cm',
@@ -1173,229 +1188,74 @@ export class ECommerceFakeDb
},
{
'id' : '16',
- 'name' : 'Red Hoodie',
- 'handle' : 'red-hoodie',
- 'description' : 'Deserunt exercitation Lorem est tempor. Elit magna irure dolore pariatur culpa elit labore laborum anim ad excepteur esse. Irure qui proident irure elit exercitation qui cupidatat mollit in excepteur nulla. Laboris exercitation culpa irure non ea in incididunt est. Dolor ipsum proident esse ea ipsum culpa nulla officia ad ipsum excepteur. Commodo veniam cillum non eu anim exercitation.',
+ 'name' : 'Fall Glow - Canvas Print',
+ 'handle' : 'fall-glow-canvas-print',
+ 'description' : 'Sit ipsum esse eu consequat veniam sit consectetur consectetur anim. Ut Lorem dolor ullamco do. Laboris excepteur consectetur tempor nisi commodo amet deserunt duis.',
'categories' : [
- 'Hoodies',
- 'Women'
+ 'Canvas Print',
+ 'Nature'
],
'tags' : [
- 'dress',
- 'printed'
+ 'canvas-print',
+ 'nature'
],
+ 'featuredImageId' : 3,
'images' : [
+ {
+ 'id' : 0,
+ 'url' : 'assets/images/ecommerce/a-walk-amongst-friends.jpg',
+ 'type': 'image'
+ },
{
'id' : 1,
- 'url' : 'assets/images/ecommerce/product-image-placeholder.png',
+ 'url' : 'assets/images/ecommerce/braies-lake.jpg',
'type': 'image'
},
{
'id' : 2,
- 'url' : 'assets/images/etc/air-balloons.jpg',
+ 'url' : 'assets/images/ecommerce/fall-glow.jpg',
'type': 'image'
},
{
'id' : 3,
- 'url' : 'assets/images/etc/avenue.jpg',
+ 'url' : 'assets/images/ecommerce/first-snow.jpg',
'type': 'image'
},
{
'id' : 4,
- 'url' : 'assets/images/etc/cactus.jpg',
+ 'url' : 'assets/images/ecommerce/lago-di-braies.jpg',
'type': 'image'
},
{
'id' : 5,
- 'url' : 'assets/images/etc/early-sunrise.jpg',
+ 'url' : 'assets/images/ecommerce/lago-di-sorapis.jpg',
'type': 'image'
},
{
'id' : 6,
- 'url' : 'assets/images/etc/mountain-lake.jpg',
+ 'url' : 'assets/images/ecommerce/never-stop-changing.jpg',
'type': 'image'
},
{
'id' : 7,
- 'url' : 'assets/images/etc/road-trip.jpg',
+ 'url' : 'assets/images/ecommerce/reaching.jpg',
'type': 'image'
},
{
'id' : 8,
- 'url' : 'assets/images/etc/snow.jpg',
+ 'url' : 'assets/images/ecommerce/morain-lake.jpg',
'type': 'image'
},
{
'id' : 9,
- 'url' : 'assets/images/etc/tropical-beach.jpg',
- 'type': 'image'
- },
- {
- 'id' : 10,
- 'url' : 'assets/images/etc/mountain-sunset.jpg',
+ 'url' : 'assets/images/ecommerce/yosemite.jpg',
'type': 'image'
}
],
- 'priceTaxExcl' : 9.309,
- 'priceTaxIncl' : 10.24,
+ 'priceTaxExcl' : 44.809,
+ 'priceTaxIncl' : 49.29,
'taxRate' : 10,
- 'comparedPrice' : 19.90,
- 'quantity' : 68,
- 'sku' : 'A445BV',
- 'width' : '22cm',
- 'height' : '24cm',
- 'depth' : '15cm',
- 'weight' : '3kg',
- 'extraShippingFee': 3.00,
- 'active' : true
- },
- {
- 'id' : '17',
- 'name' : 'Printed Dress',
- 'handle' : 'printed-dress',
- 'description' : 'Labore adipisicing exercitation velit minim nostrud excepteur eu esse. Dolor ullamco exercitation consequat cupidatat amet qui occaecat anim pariatur aute anim enim aute fugiat. Enim sint eiusmod amet nulla consequat aute culpa elit. Laborum laboris duis do quis do dolor incididunt id culpa laborum non est. Commodo ullamco labore duis occaecat est pariatur voluptate occaecat et voluptate occaecat sit.',
- 'categories' : [
- 'Dresses',
- 'Women'
- ],
- 'tags' : [
- 'dress',
- 'printed'
- ],
- 'images' : [
- {
- 'id' : 1,
- 'url' : 'assets/images/ecommerce/product-image-placeholder.png',
- 'type': 'image'
- },
- {
- 'id' : 2,
- 'url' : 'assets/images/etc/air-balloons.jpg',
- 'type': 'image'
- },
- {
- 'id' : 3,
- 'url' : 'assets/images/etc/avenue.jpg',
- 'type': 'image'
- },
- {
- 'id' : 4,
- 'url' : 'assets/images/etc/cactus.jpg',
- 'type': 'image'
- },
- {
- 'id' : 5,
- 'url' : 'assets/images/etc/early-sunrise.jpg',
- 'type': 'image'
- },
- {
- 'id' : 6,
- 'url' : 'assets/images/etc/mountain-lake.jpg',
- 'type': 'image'
- },
- {
- 'id' : 7,
- 'url' : 'assets/images/etc/road-trip.jpg',
- 'type': 'image'
- },
- {
- 'id' : 8,
- 'url' : 'assets/images/etc/snow.jpg',
- 'type': 'image'
- },
- {
- 'id' : 9,
- 'url' : 'assets/images/etc/tropical-beach.jpg',
- 'type': 'image'
- },
- {
- 'id' : 10,
- 'url' : 'assets/images/etc/mountain-sunset.jpg',
- 'type': 'image'
- }
- ],
- 'priceTaxExcl' : 53.963,
- 'priceTaxIncl' : 59.36,
- 'taxRate' : 10,
- 'comparedPrice' : 69.90,
- 'quantity' : 66,
- 'sku' : 'A445BV',
- 'width' : '22cm',
- 'height' : '24cm',
- 'depth' : '15cm',
- 'weight' : '3kg',
- 'extraShippingFee': 3.00,
- 'active' : false
- },
- {
- 'id' : '18',
- 'name' : 'Blouse',
- 'handle' : 'blouse',
- 'description' : 'Id dolor sunt deserunt adipisicing nostrud sit enim magna. Eu ut ea qui ullamco aute. Elit do non anim labore culpa aliquip eu ullamco magna aliqua culpa velit. Culpa nisi laboris cupidatat ea in officia est ex.',
- 'categories' : [
- 'Dresses',
- 'Women'
- ],
- 'tags' : [
- 'dress',
- 'printed'
- ],
- 'images' : [
- {
- 'id' : 1,
- 'url' : 'assets/images/ecommerce/product-image-placeholder.png',
- 'type': 'image'
- },
- {
- 'id' : 2,
- 'url' : 'assets/images/etc/air-balloons.jpg',
- 'type': 'image'
- },
- {
- 'id' : 3,
- 'url' : 'assets/images/etc/avenue.jpg',
- 'type': 'image'
- },
- {
- 'id' : 4,
- 'url' : 'assets/images/etc/cactus.jpg',
- 'type': 'image'
- },
- {
- 'id' : 5,
- 'url' : 'assets/images/etc/early-sunrise.jpg',
- 'type': 'image'
- },
- {
- 'id' : 6,
- 'url' : 'assets/images/etc/mountain-lake.jpg',
- 'type': 'image'
- },
- {
- 'id' : 7,
- 'url' : 'assets/images/etc/road-trip.jpg',
- 'type': 'image'
- },
- {
- 'id' : 8,
- 'url' : 'assets/images/etc/snow.jpg',
- 'type': 'image'
- },
- {
- 'id' : 9,
- 'url' : 'assets/images/etc/tropical-beach.jpg',
- 'type': 'image'
- },
- {
- 'id' : 10,
- 'url' : 'assets/images/etc/mountain-sunset.jpg',
- 'type': 'image'
- }
- ],
- 'priceTaxExcl' : 58.372,
- 'priceTaxIncl' : 64.21,
- 'taxRate' : 10,
- 'comparedPrice' : 69.90,
+ 'comparedPrice' : 59.90,
'quantity' : 60,
'sku' : 'A445BV',
'width' : '22cm',
@@ -1406,75 +1266,76 @@ export class ECommerceFakeDb
'active' : true
},
{
- 'id' : '19',
- 'name' : 'Leather Belt',
- 'handle' : 'leather-belt',
- 'description' : 'Enim adipisicing commodo laboris voluptate minim officia irure aliqua exercitation ad. Laboris in elit culpa aute aliquip ex fugiat enim labore. Ut commodo magna dolore dolore officia exercitation non enim id. Est proident enim incididunt consectetur consequat magna consequat esse veniam ea cillum laboris fugiat incididunt.',
+ 'id' : '17',
+ 'name' : 'Lago di Sorapis - Canvas Print',
+ 'handle' : 'lago-di-sorapis-canvas-print',
+ 'description' : 'Tempor sunt tempor veniam non culpa excepteur. Ea irure elit non cupidatat cillum dolore. Sit incididunt qui dolore ipsum commodo aliqua amet cupidatat incididunt nisi qui consectetur. Cillum eu aute qui irure aute adipisicing cupidatat magna.',
'categories' : [
- 'Belts',
- 'Women'
+ 'Canvas Print',
+ 'Nature'
],
'tags' : [
- 'dress',
- 'printed'
+ 'canvas-print',
+ 'nature'
],
+ 'featuredImageId' : 6,
'images' : [
+ {
+ 'id' : 0,
+ 'url' : 'assets/images/ecommerce/a-walk-amongst-friends.jpg',
+ 'type': 'image'
+ },
{
'id' : 1,
- 'url' : 'assets/images/ecommerce/product-image-placeholder.png',
+ 'url' : 'assets/images/ecommerce/braies-lake.jpg',
'type': 'image'
},
{
'id' : 2,
- 'url' : 'assets/images/etc/air-balloons.jpg',
+ 'url' : 'assets/images/ecommerce/fall-glow.jpg',
'type': 'image'
},
{
'id' : 3,
- 'url' : 'assets/images/etc/avenue.jpg',
+ 'url' : 'assets/images/ecommerce/first-snow.jpg',
'type': 'image'
},
{
'id' : 4,
- 'url' : 'assets/images/etc/cactus.jpg',
+ 'url' : 'assets/images/ecommerce/lago-di-braies.jpg',
'type': 'image'
},
{
'id' : 5,
- 'url' : 'assets/images/etc/early-sunrise.jpg',
+ 'url' : 'assets/images/ecommerce/lago-di-sorapis.jpg',
'type': 'image'
},
{
'id' : 6,
- 'url' : 'assets/images/etc/mountain-lake.jpg',
+ 'url' : 'assets/images/ecommerce/never-stop-changing.jpg',
'type': 'image'
},
{
'id' : 7,
- 'url' : 'assets/images/etc/road-trip.jpg',
+ 'url' : 'assets/images/ecommerce/reaching.jpg',
'type': 'image'
},
{
'id' : 8,
- 'url' : 'assets/images/etc/snow.jpg',
+ 'url' : 'assets/images/ecommerce/morain-lake.jpg',
'type': 'image'
},
{
'id' : 9,
- 'url' : 'assets/images/etc/tropical-beach.jpg',
- 'type': 'image'
- },
- {
- 'id' : 10,
- 'url' : 'assets/images/etc/mountain-sunset.jpg',
+ 'url' : 'assets/images/ecommerce/yosemite.jpg',
'type': 'image'
}
],
- 'priceTaxExcl' : 63.390,
- 'priceTaxIncl' : 69.73,
+ 'priceTaxExcl' : 53.963,
+ 'priceTaxIncl' : 59.36,
'taxRate' : 10,
- 'comparedPrice' : 79.90,
- 'quantity' : 78,
+ 'comparedPrice' : 69.90,
+ 'quantity' : 101,
'sku' : 'A445BV',
'width' : '22cm',
'height' : '24cm',
@@ -1484,75 +1345,234 @@ export class ECommerceFakeDb
'active' : true
},
{
- 'id' : '20',
- 'name' : 'Leather Belt',
- 'handle' : 'leather-belt',
- 'description' : 'Id et id ad consequat non exercitation laboris enim. Cillum nulla nulla elit ipsum in aliquip culpa fugiat est nulla id adipisicing et. Occaecat aliqua esse dolor aliquip veniam ad amet nisi ipsum. Et aliquip culpa adipisicing Lorem ipsum aute non dolor eu deserunt ex consequat.',
+ 'id' : '18',
+ 'name' : 'Reaching - Canvas Print',
+ 'handle' : 'reaching-canvas-print',
+ 'description' : 'Velit cillum cupidatat eiusmod ea quis sit. Consequat dolore elit sunt sunt voluptate irure incididunt consectetur non. Dolore veniam ipsum anim commodo ex. Proident ipsum nostrud ullamco sit. Ad dolore nulla qui mollit laborum ex ipsum.',
'categories' : [
- 'Belts',
- 'Women'
+ 'Canvas Print',
+ 'Nature'
],
'tags' : [
- 'dress',
- 'printed'
+ 'canvas-print',
+ 'nature'
],
+ 'featuredImageId' : 8,
'images' : [
+ {
+ 'id' : 0,
+ 'url' : 'assets/images/ecommerce/a-walk-amongst-friends.jpg',
+ 'type': 'image'
+ },
{
'id' : 1,
- 'url' : 'assets/images/ecommerce/product-image-placeholder.png',
+ 'url' : 'assets/images/ecommerce/braies-lake.jpg',
'type': 'image'
},
{
'id' : 2,
- 'url' : 'assets/images/etc/air-balloons.jpg',
+ 'url' : 'assets/images/ecommerce/fall-glow.jpg',
'type': 'image'
},
{
'id' : 3,
- 'url' : 'assets/images/etc/avenue.jpg',
+ 'url' : 'assets/images/ecommerce/first-snow.jpg',
'type': 'image'
},
{
'id' : 4,
- 'url' : 'assets/images/etc/cactus.jpg',
+ 'url' : 'assets/images/ecommerce/lago-di-braies.jpg',
'type': 'image'
},
{
'id' : 5,
- 'url' : 'assets/images/etc/early-sunrise.jpg',
+ 'url' : 'assets/images/ecommerce/lago-di-sorapis.jpg',
'type': 'image'
},
{
'id' : 6,
- 'url' : 'assets/images/etc/mountain-lake.jpg',
+ 'url' : 'assets/images/ecommerce/never-stop-changing.jpg',
'type': 'image'
},
{
'id' : 7,
- 'url' : 'assets/images/etc/road-trip.jpg',
+ 'url' : 'assets/images/ecommerce/reaching.jpg',
'type': 'image'
},
{
'id' : 8,
- 'url' : 'assets/images/etc/snow.jpg',
+ 'url' : 'assets/images/ecommerce/morain-lake.jpg',
'type': 'image'
},
{
'id' : 9,
- 'url' : 'assets/images/etc/tropical-beach.jpg',
- 'type': 'image'
- },
- {
- 'id' : 10,
- 'url' : 'assets/images/etc/mountain-sunset.jpg',
+ 'url' : 'assets/images/ecommerce/yosemite.jpg',
'type': 'image'
}
],
- 'priceTaxExcl' : 52.154,
- 'priceTaxIncl' : 57.37,
+ 'priceTaxExcl' : 63.390,
+ 'priceTaxIncl' : 69.73,
'taxRate' : 10,
- 'comparedPrice' : 59.90,
- 'quantity' : 2,
+ 'comparedPrice' : 79.90,
+ 'quantity' : 4,
+ 'sku' : 'A445BV',
+ 'width' : '22cm',
+ 'height' : '24cm',
+ 'depth' : '15cm',
+ 'weight' : '3kg',
+ 'extraShippingFee': 3.00,
+ 'active' : false
+ },
+ {
+ 'id' : '19',
+ 'name' : 'First Snow - Canvas Print',
+ 'handle' : 'first-snow-canvas-print',
+ 'description' : 'Incididunt nostrud culpa labore nostrud veniam nostrud dolore velit sunt laborum ad reprehenderit. Excepteur enim irure ut labore elit ut deserunt qui qui consequat quis do nostrud ad. Aliqua dolor labore ut occaecat laborum irure. Aute in deserunt do aute laborum sit et reprehenderit minim voluptate proident do est.',
+ 'categories' : [
+ 'Canvas Print',
+ 'Nature'
+ ],
+ 'tags' : [
+ 'canvas-print',
+ 'nature'
+ ],
+ 'featuredImageId' : 4,
+ 'images' : [
+ {
+ 'id' : 0,
+ 'url' : 'assets/images/ecommerce/a-walk-amongst-friends.jpg',
+ 'type': 'image'
+ },
+ {
+ 'id' : 1,
+ 'url' : 'assets/images/ecommerce/braies-lake.jpg',
+ 'type': 'image'
+ },
+ {
+ 'id' : 2,
+ 'url' : 'assets/images/ecommerce/fall-glow.jpg',
+ 'type': 'image'
+ },
+ {
+ 'id' : 3,
+ 'url' : 'assets/images/ecommerce/first-snow.jpg',
+ 'type': 'image'
+ },
+ {
+ 'id' : 4,
+ 'url' : 'assets/images/ecommerce/lago-di-braies.jpg',
+ 'type': 'image'
+ },
+ {
+ 'id' : 5,
+ 'url' : 'assets/images/ecommerce/lago-di-sorapis.jpg',
+ 'type': 'image'
+ },
+ {
+ 'id' : 6,
+ 'url' : 'assets/images/ecommerce/never-stop-changing.jpg',
+ 'type': 'image'
+ },
+ {
+ 'id' : 7,
+ 'url' : 'assets/images/ecommerce/reaching.jpg',
+ 'type': 'image'
+ },
+ {
+ 'id' : 8,
+ 'url' : 'assets/images/ecommerce/morain-lake.jpg',
+ 'type': 'image'
+ },
+ {
+ 'id' : 9,
+ 'url' : 'assets/images/ecommerce/yosemite.jpg',
+ 'type': 'image'
+ }
+ ],
+ 'priceTaxExcl' : 62.827,
+ 'priceTaxIncl' : 69.11,
+ 'taxRate' : 10,
+ 'comparedPrice' : 79.90,
+ 'quantity' : 101,
+ 'sku' : 'A445BV',
+ 'width' : '22cm',
+ 'height' : '24cm',
+ 'depth' : '15cm',
+ 'weight' : '3kg',
+ 'extraShippingFee': 3.00,
+ 'active' : false
+ },
+ {
+ 'id' : '20',
+ 'name' : 'Yosemite - Canvas Print',
+ 'handle' : 'yosemite-canvas-print',
+ 'description' : 'Proident do sunt dolor tempor aliquip adipisicing dolor reprehenderit officia proident. Culpa non reprehenderit velit anim consequat velit elit eu culpa quis incididunt id. Eu incididunt exercitation nostrud est mollit officia. Laboris deserunt dolore sit occaecat exercitation quis sunt sunt nisi commodo.',
+ 'categories' : [
+ 'Canvas Print',
+ 'Nature'
+ ],
+ 'tags' : [
+ 'canvas-print',
+ 'nature'
+ ],
+ 'featuredImageId' : 9,
+ 'images' : [
+ {
+ 'id' : 0,
+ 'url' : 'assets/images/ecommerce/a-walk-amongst-friends.jpg',
+ 'type': 'image'
+ },
+ {
+ 'id' : 1,
+ 'url' : 'assets/images/ecommerce/braies-lake.jpg',
+ 'type': 'image'
+ },
+ {
+ 'id' : 2,
+ 'url' : 'assets/images/ecommerce/fall-glow.jpg',
+ 'type': 'image'
+ },
+ {
+ 'id' : 3,
+ 'url' : 'assets/images/ecommerce/first-snow.jpg',
+ 'type': 'image'
+ },
+ {
+ 'id' : 4,
+ 'url' : 'assets/images/ecommerce/lago-di-braies.jpg',
+ 'type': 'image'
+ },
+ {
+ 'id' : 5,
+ 'url' : 'assets/images/ecommerce/lago-di-sorapis.jpg',
+ 'type': 'image'
+ },
+ {
+ 'id' : 6,
+ 'url' : 'assets/images/ecommerce/never-stop-changing.jpg',
+ 'type': 'image'
+ },
+ {
+ 'id' : 7,
+ 'url' : 'assets/images/ecommerce/reaching.jpg',
+ 'type': 'image'
+ },
+ {
+ 'id' : 8,
+ 'url' : 'assets/images/ecommerce/morain-lake.jpg',
+ 'type': 'image'
+ },
+ {
+ 'id' : 9,
+ 'url' : 'assets/images/ecommerce/yosemite.jpg',
+ 'type': 'image'
+ }
+ ],
+ 'priceTaxExcl' : 62.18,
+ 'priceTaxIncl' : 68.40,
+ 'taxRate' : 10,
+ 'comparedPrice' : 69.90,
+ 'quantity' : 125,
'sku' : 'A445BV',
'width' : '22cm',
'height' : '24cm',
@@ -1595,27 +1615,27 @@ export class ECommerceFakeDb
'products' : [
{
'id' : 1,
- 'name' : 'Printed Dress',
+ 'name' : 'A Walk Amongst Friends - Canvas Print',
'price' : '10.24',
'quantity': 1,
'total' : '10.24',
- 'image' : 'assets/images/ecommerce/product-image-placeholder.png'
+ 'image' : 'assets/images/ecommerce/a-walk-amongst-friends.jpg'
},
{
'id' : 2,
- 'name' : 'Green Skirt',
+ 'name' : 'Lago di Braies - Canvas Print',
'price' : '24.62',
'quantity': 1,
'total' : '24.62',
- 'image' : 'assets/images/ecommerce/product-image-placeholder.png'
+ 'image' : 'assets/images/ecommerce/lago-di-braies.jpg'
},
{
'id' : 3,
- 'name' : 'Printed Dress',
+ 'name' : 'Never Stop Changing - Canvas Print',
'price' : '49.29',
'quantity': 1,
'total' : '49.29',
- 'image' : 'assets/images/ecommerce/product-image-placeholder.png'
+ 'image' : 'assets/images/ecommerce/never-stop-changing.jpg'
}
],
'status' : [
@@ -1679,27 +1699,27 @@ export class ECommerceFakeDb
'products' : [
{
'id' : 1,
- 'name' : 'Printed Dress',
+ 'name' : 'A Walk Amongst Friends - Canvas Print',
'price' : '10.24',
'quantity': 1,
'total' : '10.24',
- 'image' : 'assets/images/ecommerce/product-image-placeholder.png'
+ 'image' : 'assets/images/ecommerce/a-walk-amongst-friends.jpg'
},
{
'id' : 2,
- 'name' : 'Green Skirt',
+ 'name' : 'Lago di Braies - Canvas Print',
'price' : '24.62',
'quantity': 1,
'total' : '24.62',
- 'image' : 'assets/images/ecommerce/product-image-placeholder.png'
+ 'image' : 'assets/images/ecommerce/lago-di-braies.jpg'
},
{
'id' : 3,
- 'name' : 'Printed Dress',
+ 'name' : 'Never Stop Changing - Canvas Print',
'price' : '49.29',
'quantity': 1,
'total' : '49.29',
- 'image' : 'assets/images/ecommerce/product-image-placeholder.png'
+ 'image' : 'assets/images/ecommerce/never-stop-changing.jpg'
}
],
'status' : [
@@ -1763,27 +1783,27 @@ export class ECommerceFakeDb
'products' : [
{
'id' : 1,
- 'name' : 'Printed Dress',
+ 'name' : 'A Walk Amongst Friends - Canvas Print',
'price' : '10.24',
'quantity': 1,
'total' : '10.24',
- 'image' : 'assets/images/ecommerce/product-image-placeholder.png'
+ 'image' : 'assets/images/ecommerce/a-walk-amongst-friends.jpg'
},
{
'id' : 2,
- 'name' : 'Green Skirt',
+ 'name' : 'Lago di Braies - Canvas Print',
'price' : '24.62',
'quantity': 1,
'total' : '24.62',
- 'image' : 'assets/images/ecommerce/product-image-placeholder.png'
+ 'image' : 'assets/images/ecommerce/lago-di-braies.jpg'
},
{
'id' : 3,
- 'name' : 'Printed Dress',
+ 'name' : 'Never Stop Changing - Canvas Print',
'price' : '49.29',
'quantity': 1,
'total' : '49.29',
- 'image' : 'assets/images/ecommerce/product-image-placeholder.png'
+ 'image' : 'assets/images/ecommerce/never-stop-changing.jpg'
}
],
'status' : [
@@ -1847,27 +1867,27 @@ export class ECommerceFakeDb
'products' : [
{
'id' : 1,
- 'name' : 'Printed Dress',
+ 'name' : 'A Walk Amongst Friends - Canvas Print',
'price' : '10.24',
'quantity': 1,
'total' : '10.24',
- 'image' : 'assets/images/ecommerce/product-image-placeholder.png'
+ 'image' : 'assets/images/ecommerce/a-walk-amongst-friends.jpg'
},
{
'id' : 2,
- 'name' : 'Green Skirt',
+ 'name' : 'Lago di Braies - Canvas Print',
'price' : '24.62',
'quantity': 1,
'total' : '24.62',
- 'image' : 'assets/images/ecommerce/product-image-placeholder.png'
+ 'image' : 'assets/images/ecommerce/lago-di-braies.jpg'
},
{
'id' : 3,
- 'name' : 'Printed Dress',
+ 'name' : 'Never Stop Changing - Canvas Print',
'price' : '49.29',
'quantity': 1,
'total' : '49.29',
- 'image' : 'assets/images/ecommerce/product-image-placeholder.png'
+ 'image' : 'assets/images/ecommerce/never-stop-changing.jpg'
}
],
'status' : [
@@ -1931,27 +1951,27 @@ export class ECommerceFakeDb
'products' : [
{
'id' : 1,
- 'name' : 'Printed Dress',
+ 'name' : 'A Walk Amongst Friends - Canvas Print',
'price' : '10.24',
'quantity': 1,
'total' : '10.24',
- 'image' : 'assets/images/ecommerce/product-image-placeholder.png'
+ 'image' : 'assets/images/ecommerce/a-walk-amongst-friends.jpg'
},
{
'id' : 2,
- 'name' : 'Green Skirt',
+ 'name' : 'Lago di Braies - Canvas Print',
'price' : '24.62',
'quantity': 1,
'total' : '24.62',
- 'image' : 'assets/images/ecommerce/product-image-placeholder.png'
+ 'image' : 'assets/images/ecommerce/lago-di-braies.jpg'
},
{
'id' : 3,
- 'name' : 'Printed Dress',
+ 'name' : 'Never Stop Changing - Canvas Print',
'price' : '49.29',
'quantity': 1,
'total' : '49.29',
- 'image' : 'assets/images/ecommerce/product-image-placeholder.png'
+ 'image' : 'assets/images/ecommerce/never-stop-changing.jpg'
}
],
'status' : [
@@ -2015,27 +2035,27 @@ export class ECommerceFakeDb
'products' : [
{
'id' : 1,
- 'name' : 'Printed Dress',
+ 'name' : 'A Walk Amongst Friends - Canvas Print',
'price' : '10.24',
'quantity': 1,
'total' : '10.24',
- 'image' : 'assets/images/ecommerce/product-image-placeholder.png'
+ 'image' : 'assets/images/ecommerce/a-walk-amongst-friends.jpg'
},
{
'id' : 2,
- 'name' : 'Green Skirt',
+ 'name' : 'Lago di Braies - Canvas Print',
'price' : '24.62',
'quantity': 1,
'total' : '24.62',
- 'image' : 'assets/images/ecommerce/product-image-placeholder.png'
+ 'image' : 'assets/images/ecommerce/lago-di-braies.jpg'
},
{
'id' : 3,
- 'name' : 'Printed Dress',
+ 'name' : 'Never Stop Changing - Canvas Print',
'price' : '49.29',
'quantity': 1,
'total' : '49.29',
- 'image' : 'assets/images/ecommerce/product-image-placeholder.png'
+ 'image' : 'assets/images/ecommerce/never-stop-changing.jpg'
}
],
'status' : [
@@ -2099,27 +2119,27 @@ export class ECommerceFakeDb
'products' : [
{
'id' : 1,
- 'name' : 'Printed Dress',
+ 'name' : 'A Walk Amongst Friends - Canvas Print',
'price' : '10.24',
'quantity': 1,
'total' : '10.24',
- 'image' : 'assets/images/ecommerce/product-image-placeholder.png'
+ 'image' : 'assets/images/ecommerce/a-walk-amongst-friends.jpg'
},
{
'id' : 2,
- 'name' : 'Green Skirt',
+ 'name' : 'Lago di Braies - Canvas Print',
'price' : '24.62',
'quantity': 1,
'total' : '24.62',
- 'image' : 'assets/images/ecommerce/product-image-placeholder.png'
+ 'image' : 'assets/images/ecommerce/lago-di-braies.jpg'
},
{
'id' : 3,
- 'name' : 'Printed Dress',
+ 'name' : 'Never Stop Changing - Canvas Print',
'price' : '49.29',
'quantity': 1,
'total' : '49.29',
- 'image' : 'assets/images/ecommerce/product-image-placeholder.png'
+ 'image' : 'assets/images/ecommerce/never-stop-changing.jpg'
}
],
'status' : [
@@ -2183,27 +2203,27 @@ export class ECommerceFakeDb
'products' : [
{
'id' : 1,
- 'name' : 'Printed Dress',
+ 'name' : 'A Walk Amongst Friends - Canvas Print',
'price' : '10.24',
'quantity': 1,
'total' : '10.24',
- 'image' : 'assets/images/ecommerce/product-image-placeholder.png'
+ 'image' : 'assets/images/ecommerce/a-walk-amongst-friends.jpg'
},
{
'id' : 2,
- 'name' : 'Green Skirt',
+ 'name' : 'Lago di Braies - Canvas Print',
'price' : '24.62',
'quantity': 1,
'total' : '24.62',
- 'image' : 'assets/images/ecommerce/product-image-placeholder.png'
+ 'image' : 'assets/images/ecommerce/lago-di-braies.jpg'
},
{
'id' : 3,
- 'name' : 'Printed Dress',
+ 'name' : 'Never Stop Changing - Canvas Print',
'price' : '49.29',
'quantity': 1,
'total' : '49.29',
- 'image' : 'assets/images/ecommerce/product-image-placeholder.png'
+ 'image' : 'assets/images/ecommerce/never-stop-changing.jpg'
}
],
'status' : [
@@ -2267,27 +2287,27 @@ export class ECommerceFakeDb
'products' : [
{
'id' : 1,
- 'name' : 'Printed Dress',
+ 'name' : 'A Walk Amongst Friends - Canvas Print',
'price' : '10.24',
'quantity': 1,
'total' : '10.24',
- 'image' : 'assets/images/ecommerce/product-image-placeholder.png'
+ 'image' : 'assets/images/ecommerce/a-walk-amongst-friends.jpg'
},
{
'id' : 2,
- 'name' : 'Green Skirt',
+ 'name' : 'Lago di Braies - Canvas Print',
'price' : '24.62',
'quantity': 1,
'total' : '24.62',
- 'image' : 'assets/images/ecommerce/product-image-placeholder.png'
+ 'image' : 'assets/images/ecommerce/lago-di-braies.jpg'
},
{
'id' : 3,
- 'name' : 'Printed Dress',
+ 'name' : 'Never Stop Changing - Canvas Print',
'price' : '49.29',
'quantity': 1,
'total' : '49.29',
- 'image' : 'assets/images/ecommerce/product-image-placeholder.png'
+ 'image' : 'assets/images/ecommerce/never-stop-changing.jpg'
}
],
'status' : [
@@ -2351,27 +2371,27 @@ export class ECommerceFakeDb
'products' : [
{
'id' : 1,
- 'name' : 'Printed Dress',
+ 'name' : 'A Walk Amongst Friends - Canvas Print',
'price' : '10.24',
'quantity': 1,
'total' : '10.24',
- 'image' : 'assets/images/ecommerce/product-image-placeholder.png'
+ 'image' : 'assets/images/ecommerce/a-walk-amongst-friends.jpg'
},
{
'id' : 2,
- 'name' : 'Green Skirt',
+ 'name' : 'Lago di Braies - Canvas Print',
'price' : '24.62',
'quantity': 1,
'total' : '24.62',
- 'image' : 'assets/images/ecommerce/product-image-placeholder.png'
+ 'image' : 'assets/images/ecommerce/lago-di-braies.jpg'
},
{
'id' : 3,
- 'name' : 'Printed Dress',
+ 'name' : 'Never Stop Changing - Canvas Print',
'price' : '49.29',
'quantity': 1,
'total' : '49.29',
- 'image' : 'assets/images/ecommerce/product-image-placeholder.png'
+ 'image' : 'assets/images/ecommerce/never-stop-changing.jpg'
}
],
'status' : [
@@ -2435,27 +2455,27 @@ export class ECommerceFakeDb
'products' : [
{
'id' : 1,
- 'name' : 'Printed Dress',
+ 'name' : 'A Walk Amongst Friends - Canvas Print',
'price' : '10.24',
'quantity': 1,
'total' : '10.24',
- 'image' : 'assets/images/ecommerce/product-image-placeholder.png'
+ 'image' : 'assets/images/ecommerce/a-walk-amongst-friends.jpg'
},
{
'id' : 2,
- 'name' : 'Green Skirt',
+ 'name' : 'Lago di Braies - Canvas Print',
'price' : '24.62',
'quantity': 1,
'total' : '24.62',
- 'image' : 'assets/images/ecommerce/product-image-placeholder.png'
+ 'image' : 'assets/images/ecommerce/lago-di-braies.jpg'
},
{
'id' : 3,
- 'name' : 'Printed Dress',
+ 'name' : 'Never Stop Changing - Canvas Print',
'price' : '49.29',
'quantity': 1,
'total' : '49.29',
- 'image' : 'assets/images/ecommerce/product-image-placeholder.png'
+ 'image' : 'assets/images/ecommerce/never-stop-changing.jpg'
}
],
'status' : [
@@ -2519,27 +2539,27 @@ export class ECommerceFakeDb
'products' : [
{
'id' : 1,
- 'name' : 'Printed Dress',
+ 'name' : 'A Walk Amongst Friends - Canvas Print',
'price' : '10.24',
'quantity': 1,
'total' : '10.24',
- 'image' : 'assets/images/ecommerce/product-image-placeholder.png'
+ 'image' : 'assets/images/ecommerce/a-walk-amongst-friends.jpg'
},
{
'id' : 2,
- 'name' : 'Green Skirt',
+ 'name' : 'Lago di Braies - Canvas Print',
'price' : '24.62',
'quantity': 1,
'total' : '24.62',
- 'image' : 'assets/images/ecommerce/product-image-placeholder.png'
+ 'image' : 'assets/images/ecommerce/lago-di-braies.jpg'
},
{
'id' : 3,
- 'name' : 'Printed Dress',
+ 'name' : 'Never Stop Changing - Canvas Print',
'price' : '49.29',
'quantity': 1,
'total' : '49.29',
- 'image' : 'assets/images/ecommerce/product-image-placeholder.png'
+ 'image' : 'assets/images/ecommerce/never-stop-changing.jpg'
}
],
'status' : [
@@ -2603,27 +2623,27 @@ export class ECommerceFakeDb
'products' : [
{
'id' : 1,
- 'name' : 'Printed Dress',
+ 'name' : 'A Walk Amongst Friends - Canvas Print',
'price' : '10.24',
'quantity': 1,
'total' : '10.24',
- 'image' : 'assets/images/ecommerce/product-image-placeholder.png'
+ 'image' : 'assets/images/ecommerce/a-walk-amongst-friends.jpg'
},
{
'id' : 2,
- 'name' : 'Green Skirt',
+ 'name' : 'Lago di Braies - Canvas Print',
'price' : '24.62',
'quantity': 1,
'total' : '24.62',
- 'image' : 'assets/images/ecommerce/product-image-placeholder.png'
+ 'image' : 'assets/images/ecommerce/lago-di-braies.jpg'
},
{
'id' : 3,
- 'name' : 'Printed Dress',
+ 'name' : 'Never Stop Changing - Canvas Print',
'price' : '49.29',
'quantity': 1,
'total' : '49.29',
- 'image' : 'assets/images/ecommerce/product-image-placeholder.png'
+ 'image' : 'assets/images/ecommerce/never-stop-changing.jpg'
}
],
'status' : [
@@ -2687,27 +2707,27 @@ export class ECommerceFakeDb
'products' : [
{
'id' : 1,
- 'name' : 'Printed Dress',
+ 'name' : 'A Walk Amongst Friends - Canvas Print',
'price' : '10.24',
'quantity': 1,
'total' : '10.24',
- 'image' : 'assets/images/ecommerce/product-image-placeholder.png'
+ 'image' : 'assets/images/ecommerce/a-walk-amongst-friends.jpg'
},
{
'id' : 2,
- 'name' : 'Green Skirt',
+ 'name' : 'Lago di Braies - Canvas Print',
'price' : '24.62',
'quantity': 1,
'total' : '24.62',
- 'image' : 'assets/images/ecommerce/product-image-placeholder.png'
+ 'image' : 'assets/images/ecommerce/lago-di-braies.jpg'
},
{
'id' : 3,
- 'name' : 'Printed Dress',
+ 'name' : 'Never Stop Changing - Canvas Print',
'price' : '49.29',
'quantity': 1,
'total' : '49.29',
- 'image' : 'assets/images/ecommerce/product-image-placeholder.png'
+ 'image' : 'assets/images/ecommerce/never-stop-changing.jpg'
}
],
'status' : [
@@ -2771,27 +2791,27 @@ export class ECommerceFakeDb
'products' : [
{
'id' : 1,
- 'name' : 'Printed Dress',
+ 'name' : 'A Walk Amongst Friends - Canvas Print',
'price' : '10.24',
'quantity': 1,
'total' : '10.24',
- 'image' : 'assets/images/ecommerce/product-image-placeholder.png'
+ 'image' : 'assets/images/ecommerce/a-walk-amongst-friends.jpg'
},
{
'id' : 2,
- 'name' : 'Green Skirt',
+ 'name' : 'Lago di Braies - Canvas Print',
'price' : '24.62',
'quantity': 1,
'total' : '24.62',
- 'image' : 'assets/images/ecommerce/product-image-placeholder.png'
+ 'image' : 'assets/images/ecommerce/lago-di-braies.jpg'
},
{
'id' : 3,
- 'name' : 'Printed Dress',
+ 'name' : 'Never Stop Changing - Canvas Print',
'price' : '49.29',
'quantity': 1,
'total' : '49.29',
- 'image' : 'assets/images/ecommerce/product-image-placeholder.png'
+ 'image' : 'assets/images/ecommerce/never-stop-changing.jpg'
}
],
'status' : [
@@ -2855,27 +2875,27 @@ export class ECommerceFakeDb
'products' : [
{
'id' : 1,
- 'name' : 'Printed Dress',
+ 'name' : 'A Walk Amongst Friends - Canvas Print',
'price' : '10.24',
'quantity': 1,
'total' : '10.24',
- 'image' : 'assets/images/ecommerce/product-image-placeholder.png'
+ 'image' : 'assets/images/ecommerce/a-walk-amongst-friends.jpg'
},
{
'id' : 2,
- 'name' : 'Green Skirt',
+ 'name' : 'Lago di Braies - Canvas Print',
'price' : '24.62',
'quantity': 1,
'total' : '24.62',
- 'image' : 'assets/images/ecommerce/product-image-placeholder.png'
+ 'image' : 'assets/images/ecommerce/lago-di-braies.jpg'
},
{
'id' : 3,
- 'name' : 'Printed Dress',
+ 'name' : 'Never Stop Changing - Canvas Print',
'price' : '49.29',
'quantity': 1,
'total' : '49.29',
- 'image' : 'assets/images/ecommerce/product-image-placeholder.png'
+ 'image' : 'assets/images/ecommerce/never-stop-changing.jpg'
}
],
'status' : [
@@ -2939,27 +2959,27 @@ export class ECommerceFakeDb
'products' : [
{
'id' : 1,
- 'name' : 'Printed Dress',
+ 'name' : 'A Walk Amongst Friends - Canvas Print',
'price' : '10.24',
'quantity': 1,
'total' : '10.24',
- 'image' : 'assets/images/ecommerce/product-image-placeholder.png'
+ 'image' : 'assets/images/ecommerce/a-walk-amongst-friends.jpg'
},
{
'id' : 2,
- 'name' : 'Green Skirt',
+ 'name' : 'Lago di Braies - Canvas Print',
'price' : '24.62',
'quantity': 1,
'total' : '24.62',
- 'image' : 'assets/images/ecommerce/product-image-placeholder.png'
+ 'image' : 'assets/images/ecommerce/lago-di-braies.jpg'
},
{
'id' : 3,
- 'name' : 'Printed Dress',
+ 'name' : 'Never Stop Changing - Canvas Print',
'price' : '49.29',
'quantity': 1,
'total' : '49.29',
- 'image' : 'assets/images/ecommerce/product-image-placeholder.png'
+ 'image' : 'assets/images/ecommerce/never-stop-changing.jpg'
}
],
'status' : [
@@ -3023,27 +3043,27 @@ export class ECommerceFakeDb
'products' : [
{
'id' : 1,
- 'name' : 'Printed Dress',
+ 'name' : 'A Walk Amongst Friends - Canvas Print',
'price' : '10.24',
'quantity': 1,
'total' : '10.24',
- 'image' : 'assets/images/ecommerce/product-image-placeholder.png'
+ 'image' : 'assets/images/ecommerce/a-walk-amongst-friends.jpg'
},
{
'id' : 2,
- 'name' : 'Green Skirt',
+ 'name' : 'Lago di Braies - Canvas Print',
'price' : '24.62',
'quantity': 1,
'total' : '24.62',
- 'image' : 'assets/images/ecommerce/product-image-placeholder.png'
+ 'image' : 'assets/images/ecommerce/lago-di-braies.jpg'
},
{
'id' : 3,
- 'name' : 'Printed Dress',
+ 'name' : 'Never Stop Changing - Canvas Print',
'price' : '49.29',
'quantity': 1,
'total' : '49.29',
- 'image' : 'assets/images/ecommerce/product-image-placeholder.png'
+ 'image' : 'assets/images/ecommerce/never-stop-changing.jpg'
}
],
'status' : [
@@ -3107,27 +3127,27 @@ export class ECommerceFakeDb
'products' : [
{
'id' : 1,
- 'name' : 'Printed Dress',
+ 'name' : 'A Walk Amongst Friends - Canvas Print',
'price' : '10.24',
'quantity': 1,
'total' : '10.24',
- 'image' : 'assets/images/ecommerce/product-image-placeholder.png'
+ 'image' : 'assets/images/ecommerce/a-walk-amongst-friends.jpg'
},
{
'id' : 2,
- 'name' : 'Green Skirt',
+ 'name' : 'Lago di Braies - Canvas Print',
'price' : '24.62',
'quantity': 1,
'total' : '24.62',
- 'image' : 'assets/images/ecommerce/product-image-placeholder.png'
+ 'image' : 'assets/images/ecommerce/lago-di-braies.jpg'
},
{
'id' : 3,
- 'name' : 'Printed Dress',
+ 'name' : 'Never Stop Changing - Canvas Print',
'price' : '49.29',
'quantity': 1,
'total' : '49.29',
- 'image' : 'assets/images/ecommerce/product-image-placeholder.png'
+ 'image' : 'assets/images/ecommerce/never-stop-changing.jpg'
}
],
'status' : [
@@ -3191,27 +3211,27 @@ export class ECommerceFakeDb
'products' : [
{
'id' : 1,
- 'name' : 'Printed Dress',
+ 'name' : 'A Walk Amongst Friends - Canvas Print',
'price' : '10.24',
'quantity': 1,
'total' : '10.24',
- 'image' : 'assets/images/ecommerce/product-image-placeholder.png'
+ 'image' : 'assets/images/ecommerce/a-walk-amongst-friends.jpg'
},
{
'id' : 2,
- 'name' : 'Green Skirt',
+ 'name' : 'Lago di Braies - Canvas Print',
'price' : '24.62',
'quantity': 1,
'total' : '24.62',
- 'image' : 'assets/images/ecommerce/product-image-placeholder.png'
+ 'image' : 'assets/images/ecommerce/lago-di-braies.jpg'
},
{
'id' : 3,
- 'name' : 'Printed Dress',
+ 'name' : 'Never Stop Changing - Canvas Print',
'price' : '49.29',
'quantity': 1,
'total' : '49.29',
- 'image' : 'assets/images/ecommerce/product-image-placeholder.png'
+ 'image' : 'assets/images/ecommerce/never-stop-changing.jpg'
}
],
'status' : [
diff --git a/src/app/fake-db/mail.ts b/src/app/fake-db/mail.ts
index e0b5c0ab..21f0d9f2 100644
--- a/src/app/fake-db/mail.ts
+++ b/src/app/fake-db/mail.ts
@@ -25,23 +25,22 @@ export class MailFakeDb
{
'type' : 'image',
'fileName': 'flowers',
- 'preview' : 'assets/images/etc/flowers-thumb.jpg',
+ 'preview' : 'assets/images/mail/attachment-1.jpg',
'url' : '',
'size' : '1.1Mb'
},
{
'type' : 'image',
'fileName': 'snow',
- 'preview' : 'assets/images/etc/snow-thumb.jpg',
+ 'preview' : 'assets/images/mail/attachment-2.jpg',
'url' : '',
'size' : '380kb'
},
{
'type' : 'image',
'fileName': 'sunrise',
- 'preview' : 'assets/images/etc/sunrise-thumb.jpg',
- 'url' : 'assets/images/etc/early-sunrise.jpg',
- 'size' : '17Mb'
+ 'preview' : 'assets/images/mail/attachment-3.jpg',
+ 'size': '17Mb'
}
],
'labels' : [
diff --git a/src/app/fake-db/scrumboard.ts b/src/app/fake-db/scrumboard.ts
index e055fabd..ddb06cbd 100644
--- a/src/app/fake-db/scrumboard.ts
+++ b/src/app/fake-db/scrumboard.ts
@@ -94,14 +94,14 @@ export class ScrumboardFakeDb
'id' : '67027cahbe3b52ecf2dc631c',
'name': 'mail.jpg',
'src' : 'assets/images/scrumboard/mail.jpg',
- 'time': 'Added Nov 3 at 15:22AM',
+ 'time': 'Nov 3 at 15:22AM',
'type': 'image'
},
{
'id' : '56027cfcbe1b72ecf1fc452a',
'name': 'calendar.jpg',
'src' : 'assets/images/scrumboard/calendar.jpg',
- 'time': 'Added Nov 1 at 12:34PM',
+ 'time': 'Nov 1 at 12:34PM',
'type': 'image'
}
],
@@ -383,14 +383,14 @@ export class ScrumboardFakeDb
'id' : '12027cafbe3b52ecf2ef632c',
'name': 'header-.jpg',
'src' : 'assets/images/scrumboard/header-1.jpg',
- 'time': 'Added Nov 3 at 15:22AM',
+ 'time': 'Nov 3 at 15:22AM',
'type': 'image'
},
{
'id' : '55027ced1e1a12ecf1fced2a',
'name': 'header-2.jpg',
'src' : 'assets/images/scrumboard/header-2.jpg',
- 'time': 'Added Nov 1 at 12:34PM',
+ 'time': 'Nov 1 at 12:34PM',
'type': 'image'
}
],
@@ -628,13 +628,13 @@ export class ScrumboardFakeDb
'id' : '56027cfcbe1b72ecf1fc452a',
'name': 'calendar-app-design.jpg',
'src' : 'assets/images/scrumboard/calendar.jpg',
- 'time': 'Added Nov 1 at 12:34PM',
+ 'time': 'Nov 1 at 12:34PM',
'type': 'image'
},
{
'id' : '67027cahbe3b52ecf2dc631c',
'url' : 'assets/images/scrumboard/calendar.jpg',
- 'time': 'Added Nov 3 at 15:22AM',
+ 'time': 'Nov 3 at 15:22AM',
'type': 'link'
}
],
@@ -730,7 +730,7 @@ export class ScrumboardFakeDb
'id' : '5603a2ae2bbd55bb2db57478',
'name': 'mail-app-design.jpg',
'src' : 'assets/images/scrumboard/mail.jpg',
- 'time': 'Added Nov 1 at 12:34PM',
+ 'time': 'Nov 1 at 12:34PM',
'type': 'image'
}
],
diff --git a/src/app/layout/components/chat-panel/chat-panel.component.scss b/src/app/layout/components/chat-panel/chat-panel.component.scss
index 4e8eff6c..7ea4f187 100644
--- a/src/app/layout/components/chat-panel/chat-panel.component.scss
+++ b/src/app/layout/components/chat-panel/chat-panel.component.scss
@@ -10,7 +10,7 @@ chat-panel {
z-index: 99;
overflow: hidden;
- @include media-breakpoint-down('xs') {
+ @include media-breakpoint('xs') {
max-width: none !important;
width: 100% !important;
}
@@ -381,7 +381,7 @@ fuse-sidebar {
min-width: 360px;
max-width: 360px;
- @include media-breakpoint-down('xs') {
+ @include media-breakpoint('xs') {
min-width: 0 !important;
max-width: 100vw !important;
width: 100vw !important;
diff --git a/src/app/layout/components/content/content.module.ts b/src/app/layout/components/content/content.module.ts
index 410b821c..7d8c9888 100644
--- a/src/app/layout/components/content/content.module.ts
+++ b/src/app/layout/components/content/content.module.ts
@@ -11,9 +11,9 @@ import { ContentComponent } from 'app/layout/components/content/content.componen
],
imports : [
RouterModule,
- FuseSharedModule,
+ FuseSharedModule
],
- exports: [
+ exports : [
ContentComponent
]
})
diff --git a/src/app/layout/components/footer/footer.component.html b/src/app/layout/components/footer/footer.component.html
index 93cffc40..b03c42d4 100644
--- a/src/app/layout/components/footer/footer.component.html
+++ b/src/app/layout/components/footer/footer.component.html
@@ -15,7 +15,6 @@
Changelog