Compare commits

..

4 Commits

Author SHA1 Message Date
sercan
466bf50de4 Increased the version number
Updated the changelog
2021-05-24 14:32:45 +03:00
sercan
95bc7dc4db (apps/ecommerce/inventory) Performance improvements, decreased the mockApi delay 2021-05-24 09:22:18 +03:00
sercan
cfca19dc68 (mockApi) Removed typings from data files 2021-05-23 07:11:58 +03:00
sercan
a0c20f8d59 (pages/settings) Fixed: Settings container component width is not filling the container 2021-05-22 21:14:42 +03:00
14 changed files with 36 additions and 21 deletions

2
package-lock.json generated
View File

@@ -1,6 +1,6 @@
{
"name": "@fuse/demo",
"version": "13.0.0",
"version": "13.0.2",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

View File

@@ -1,6 +1,6 @@
{
"name": "@fuse/demo",
"version": "13.0.1",
"version": "13.0.2",
"license": "https://themeforest.net/licenses/standard",
"private": true,
"scripts": {

View File

@@ -1,3 +1,3 @@
import { Version } from '@fuse/version/version';
export const FUSE_VERSION = new Version('13.0.1').full;
export const FUSE_VERSION = new Version('13.0.2').full;

View File

@@ -50,7 +50,7 @@ export class ECommerceInventoryMockApi
// @ Products - GET
// -----------------------------------------------------------------------------------------------------
this._fuseMockApiService
.onGet('api/apps/ecommerce/inventory/products', 625)
.onGet('api/apps/ecommerce/inventory/products', 300)
.reply(({request}) => {
// Get available queries

View File

@@ -1,8 +1,7 @@
/* eslint-disable */
import * as moment from 'moment';
import { Message } from 'app/layout/common/messages/messages.types';
export const messages: Message[] = [
export const messages = [
{
id : '832276cc-c5e9-4fcc-8e23-d38e2e267bc9',
image : 'assets/images/avatars/male-01.jpg',

View File

@@ -927,7 +927,7 @@ export const defaultNavigation: FuseNavigationItem[] = [
icon : 'heroicons_outline:speakerphone',
link : '/docs/changelog',
badge: {
title : '13.0.1',
title : '13.0.2',
classes: 'px-2 bg-yellow-300 text-black rounded-full'
}
},

View File

@@ -1,8 +1,7 @@
/* eslint-disable */
import * as moment from 'moment';
import { Notification } from 'app/layout/common/notifications/notifications.types';
export const notifications: Notification[] = [
export const notifications = [
{
id : '493190c9-5b61-4912-afe5-78c21f1044d7',
icon : 'heroicons_outline:star',

View File

@@ -1,7 +1,5 @@
/* eslint-disable */
import { Shortcut } from 'app/layout/common/shortcuts/shortcuts.types';
export const shortcuts: Shortcut[] = [
export const shortcuts = [
{
id : 'a1ae91d3-e2cb-459b-9be9-a184694f548b',
label : 'Changelog',

View File

@@ -1,5 +1,5 @@
/* eslint-disable */
export const user: any = {
export const user = {
id : 'cfaad35d-07a3-4447-a6c3-d8c3d54fd5df',
name : 'Brian Hughes',
email : 'hughes.brian@company.com',

View File

@@ -1,8 +1,7 @@
/* eslint-disable */
import * as moment from 'moment';
import { Activity } from 'app/modules/admin/pages/activities/activities.types';
export const activities: Activity[] = [
export const activities = [
{
id : '493190c9-5b61-4912-afe5-78c21f1044d7',
icon : 'heroicons_solid:star',

View File

@@ -221,6 +221,14 @@
mat-cell
*matCellDef="let product"
[attr.colspan]="productsTableColumns.length">
<ng-container *ngIf="selectedProduct?.id === product.id">
<ng-container *ngTemplateOutlet="rowDetailsTemplate; context: {$implicit: product}"></ng-container>
</ng-container>
</td>
<ng-template
#rowDetailsTemplate
let-product>
<div
class="shadow-lg overflow-hidden"
[@expandCollapse]="selectedProduct?.id === product.id ? 'expanded' : 'collapsed'">
@@ -403,7 +411,7 @@
<!-- Tags -->
<ng-container *ngIf="selectedProduct && selectedProduct.tags.length">
<span class="font-semibold">Tags</span>
<div class="mt-1 rounded-md border shadow-sm overflow-hidden">
<div class="mt-1 rounded-md border border-gray-300 shadow-sm overflow-hidden">
<!-- Header -->
<div class="flex items-center my-2 mx-3">
<div class="flex items-center flex-auto min-w-0">
@@ -525,7 +533,7 @@
</form>
</div>
</div>
</td>
</ng-template>
</ng-container>
<tr

View File

@@ -239,9 +239,6 @@ export class InventoryListComponent implements OnInit, AfterViewInit, OnDestroy
// Set the selected product
this.selectedProduct = product;
// Mark for check
this._changeDetectorRef.markForCheck();
// Fill the form
this.selectedProductForm.patchValue(product);

View File

@@ -11,6 +11,21 @@ export class ChangelogComponent
{
changelog: any[] = [
// v13.0.2
{
version : 'v13.0.2',
releaseDate: 'May 24, 2021',
changes : [
{
type: 'Changed',
list: [
'(mockApi) Removed typings from data files',
'(apps/ecommerce/inventory) Performance improvements, decreased the mockApi delay',
'(pages/settings) Fixed: Settings container component width is not filling the container'
]
}
]
},
// v13.0.1
{
version : 'v13.0.1',

View File

@@ -1,4 +1,4 @@
<div class="flex flex-col min-w-0 sm:absolute sm:inset-0 sm:overflow-hidden">
<div class="flex flex-col w-full min-w-0 sm:absolute sm:inset-0 sm:overflow-hidden">
<mat-drawer-container class="flex-auto sm:h-full">