mirror of
https://github.com/richard-loafle/fuse-angular.git
synced 2025-01-10 12:35:07 +00:00
Merge branch 'master' into skeleton
This commit is contained in:
commit
0982d5369b
2
package-lock.json
generated
2
package-lock.json
generated
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "fuse",
|
"name": "fuse",
|
||||||
"version": "6.2.1",
|
"version": "6.2.2",
|
||||||
"lockfileVersion": 1,
|
"lockfileVersion": 1,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "fuse",
|
"name": "fuse",
|
||||||
"version": "6.2.1",
|
"version": "6.2.2",
|
||||||
"license": "https://themeforest.net/licenses/terms/regular",
|
"license": "https://themeforest.net/licenses/terms/regular",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"ng": "ng",
|
"ng": "ng",
|
||||||
|
|
|
@ -132,6 +132,23 @@
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<!-- SIDE PANEL -->
|
||||||
|
<div class="group" formGroupName="sidepanel">
|
||||||
|
|
||||||
|
<h2>Side Panel</h2>
|
||||||
|
|
||||||
|
<mat-slide-toggle formControlName="hidden">
|
||||||
|
Hide
|
||||||
|
</mat-slide-toggle>
|
||||||
|
|
||||||
|
<h3 class="mt-24">Position:</h3>
|
||||||
|
<mat-radio-group fxLayout="column" fxLayoutAlign="start start" formControlName="position">
|
||||||
|
<mat-radio-button class="mb-12" value="left">Left</mat-radio-button>
|
||||||
|
<mat-radio-button class="mb-12" value="right">Right</mat-radio-button>
|
||||||
|
</mat-radio-group>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
</ng-container>
|
</ng-container>
|
||||||
|
|
||||||
<!-- VERTICAL LAYOUT #2 -->
|
<!-- VERTICAL LAYOUT #2 -->
|
||||||
|
@ -226,6 +243,23 @@
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<!-- SIDE PANEL -->
|
||||||
|
<div class="group" formGroupName="sidepanel">
|
||||||
|
|
||||||
|
<h2>Side Panel</h2>
|
||||||
|
|
||||||
|
<mat-slide-toggle formControlName="hidden">
|
||||||
|
Hide
|
||||||
|
</mat-slide-toggle>
|
||||||
|
|
||||||
|
<h3 class="mt-24">Position:</h3>
|
||||||
|
<mat-radio-group fxLayout="column" fxLayoutAlign="start start" formControlName="position">
|
||||||
|
<mat-radio-button class="mb-12" value="left">Left</mat-radio-button>
|
||||||
|
<mat-radio-button class="mb-12" value="right">Right</mat-radio-button>
|
||||||
|
</mat-radio-group>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
</ng-container>
|
</ng-container>
|
||||||
|
|
||||||
<!-- VERTICAL LAYOUT #3 -->
|
<!-- VERTICAL LAYOUT #3 -->
|
||||||
|
@ -318,6 +352,23 @@
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<!-- SIDE PANEL -->
|
||||||
|
<div class="group" formGroupName="sidepanel">
|
||||||
|
|
||||||
|
<h2>Side Panel</h2>
|
||||||
|
|
||||||
|
<mat-slide-toggle formControlName="hidden">
|
||||||
|
Hide
|
||||||
|
</mat-slide-toggle>
|
||||||
|
|
||||||
|
<h3 class="mt-24">Position:</h3>
|
||||||
|
<mat-radio-group fxLayout="column" fxLayoutAlign="start start" formControlName="position">
|
||||||
|
<mat-radio-button class="mb-12" value="left">Left</mat-radio-button>
|
||||||
|
<mat-radio-button class="mb-12" value="right">Right</mat-radio-button>
|
||||||
|
</mat-radio-group>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
</ng-container>
|
</ng-container>
|
||||||
|
|
||||||
<!-- HORIZONTAL LAYOUT #1 -->
|
<!-- HORIZONTAL LAYOUT #1 -->
|
||||||
|
@ -405,6 +456,23 @@
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<!-- SIDE PANEL -->
|
||||||
|
<div class="group" formGroupName="sidepanel">
|
||||||
|
|
||||||
|
<h2>Side Panel</h2>
|
||||||
|
|
||||||
|
<mat-slide-toggle formControlName="hidden">
|
||||||
|
Hide
|
||||||
|
</mat-slide-toggle>
|
||||||
|
|
||||||
|
<h3 class="mt-24">Position:</h3>
|
||||||
|
<mat-radio-group fxLayout="column" fxLayoutAlign="start start" formControlName="position">
|
||||||
|
<mat-radio-button class="mb-12" value="left">Left</mat-radio-button>
|
||||||
|
<mat-radio-button class="mb-12" value="right">Right</mat-radio-button>
|
||||||
|
</mat-radio-group>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
</ng-container>
|
</ng-container>
|
||||||
|
|
||||||
</ng-container>
|
</ng-container>
|
||||||
|
|
|
@ -71,7 +71,7 @@ export class FuseThemeOptionsComponent implements OnInit, OnDestroy
|
||||||
position : new FormControl(),
|
position : new FormControl(),
|
||||||
variant : new FormControl()
|
variant : new FormControl()
|
||||||
}),
|
}),
|
||||||
toolbar: this._formBuilder.group({
|
toolbar : this._formBuilder.group({
|
||||||
background: new FormControl(),
|
background: new FormControl(),
|
||||||
hidden : new FormControl(),
|
hidden : new FormControl(),
|
||||||
position : new FormControl()
|
position : new FormControl()
|
||||||
|
@ -80,6 +80,10 @@ export class FuseThemeOptionsComponent implements OnInit, OnDestroy
|
||||||
background: new FormControl(),
|
background: new FormControl(),
|
||||||
hidden : new FormControl(),
|
hidden : new FormControl(),
|
||||||
position : new FormControl()
|
position : new FormControl()
|
||||||
|
}),
|
||||||
|
sidepanel: this._formBuilder.group({
|
||||||
|
hidden: new FormControl(),
|
||||||
|
position : new FormControl()
|
||||||
})
|
})
|
||||||
}),
|
}),
|
||||||
customScrollbars: new FormControl()
|
customScrollbars: new FormControl()
|
||||||
|
|
|
@ -19,6 +19,10 @@ export interface FuseConfig
|
||||||
background: string,
|
background: string,
|
||||||
hidden: boolean,
|
hidden: boolean,
|
||||||
position: 'above' | 'above-static' | 'above-fixed' | 'below' | 'below-static' | 'below-fixed'
|
position: 'above' | 'above-static' | 'above-fixed' | 'below' | 'below-static' | 'below-fixed'
|
||||||
|
},
|
||||||
|
sidepanel: {
|
||||||
|
hidden: boolean,
|
||||||
|
position: 'left' | 'right'
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
customScrollbars: boolean;
|
customScrollbars: boolean;
|
||||||
|
|
|
@ -20,6 +20,8 @@
|
||||||
|
|
||||||
<!-- THEME OPTIONS PANEL -->
|
<!-- THEME OPTIONS PANEL -->
|
||||||
<button mat-icon-button class="mat-primary-bg mat-elevation-z2 theme-options-button"
|
<button mat-icon-button class="mat-primary-bg mat-elevation-z2 theme-options-button"
|
||||||
|
[ngClass]="{'right-side-panel': fuseConfig.layout.sidepanel.position === 'right',
|
||||||
|
'side-panel-hidden': fuseConfig.layout.sidepanel.hidden === true}"
|
||||||
(click)="toggleSidebarOpen('themeOptionsPanel')">
|
(click)="toggleSidebarOpen('themeOptionsPanel')">
|
||||||
<mat-icon>settings</mat-icon>
|
<mat-icon>settings</mat-icon>
|
||||||
</button>
|
</button>
|
||||||
|
|
|
@ -19,7 +19,7 @@ export const fuseConfig: FuseConfig = {
|
||||||
position : 'left',
|
position : 'left',
|
||||||
variant : 'vertical-style-1'
|
variant : 'vertical-style-1'
|
||||||
},
|
},
|
||||||
toolbar: {
|
toolbar : {
|
||||||
background: 'mat-white-500-bg',
|
background: 'mat-white-500-bg',
|
||||||
hidden : false,
|
hidden : false,
|
||||||
position : 'below-static'
|
position : 'below-static'
|
||||||
|
@ -28,6 +28,10 @@ export const fuseConfig: FuseConfig = {
|
||||||
background: 'mat-fuse-dark-900-bg',
|
background: 'mat-fuse-dark-900-bg',
|
||||||
hidden : false,
|
hidden : false,
|
||||||
position : 'below-fixed'
|
position : 'below-fixed'
|
||||||
|
},
|
||||||
|
sidepanel: {
|
||||||
|
hidden : false,
|
||||||
|
position: 'right'
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
customScrollbars: true
|
customScrollbars: true
|
||||||
|
|
|
@ -1,3 +1,17 @@
|
||||||
|
<!-- SIDE PANEL -->
|
||||||
|
<ng-container *ngIf="!fuseConfig.layout.sidepanel.hidden && fuseConfig.layout.sidepanel.position === 'left'">
|
||||||
|
|
||||||
|
<!-- CHAT PANEL -->
|
||||||
|
<fuse-sidebar name="chatPanel" position="left" class="chat-panel left-chat-panel"
|
||||||
|
[folded]="true" [foldedWidth]="70" [foldedAutoTriggerOnHover]="false"
|
||||||
|
lockedOpen="gt-md">
|
||||||
|
<chat-panel></chat-panel>
|
||||||
|
</fuse-sidebar>
|
||||||
|
<!-- / CHAT PANEL -->
|
||||||
|
|
||||||
|
</ng-container>
|
||||||
|
<!-- / SIDE PANEL -->
|
||||||
|
|
||||||
<div id="main" [ngClass]="{'boxed':fuseConfig.layout.width === 'boxed'}">
|
<div id="main" [ngClass]="{'boxed':fuseConfig.layout.width === 'boxed'}">
|
||||||
|
|
||||||
<!-- TOOLBAR: Above -->
|
<!-- TOOLBAR: Above -->
|
||||||
|
@ -55,6 +69,20 @@
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<!-- SIDE PANEL -->
|
||||||
|
<ng-container *ngIf="!fuseConfig.layout.sidepanel.hidden && fuseConfig.layout.sidepanel.position === 'right'">
|
||||||
|
|
||||||
|
<!-- CHAT PANEL -->
|
||||||
|
<fuse-sidebar name="chatPanel" position="right" class="chat-panel right-chat-panel"
|
||||||
|
[folded]="true" [foldedWidth]="70" [foldedAutoTriggerOnHover]="false"
|
||||||
|
lockedOpen="gt-md">
|
||||||
|
<chat-panel></chat-panel>
|
||||||
|
</fuse-sidebar>
|
||||||
|
<!-- / CHAT PANEL -->
|
||||||
|
|
||||||
|
</ng-container>
|
||||||
|
<!-- / SIDE PANEL -->
|
||||||
|
|
||||||
<!-- QUICK PANEL -->
|
<!-- QUICK PANEL -->
|
||||||
<fuse-sidebar name="quickPanel" position="right" class="quick-panel">
|
<fuse-sidebar name="quickPanel" position="right" class="quick-panel">
|
||||||
<quick-panel></quick-panel>
|
<quick-panel></quick-panel>
|
||||||
|
|
|
@ -1,3 +1,17 @@
|
||||||
|
<!-- SIDE PANEL -->
|
||||||
|
<ng-container *ngIf="!fuseConfig.layout.sidepanel.hidden && fuseConfig.layout.sidepanel.position === 'left'">
|
||||||
|
|
||||||
|
<!-- CHAT PANEL -->
|
||||||
|
<fuse-sidebar name="chatPanel" position="left" class="chat-panel left-chat-panel"
|
||||||
|
[folded]="true" [foldedWidth]="70" [foldedAutoTriggerOnHover]="false"
|
||||||
|
lockedOpen="gt-md">
|
||||||
|
<chat-panel></chat-panel>
|
||||||
|
</fuse-sidebar>
|
||||||
|
<!-- / CHAT PANEL -->
|
||||||
|
|
||||||
|
</ng-container>
|
||||||
|
<!-- / SIDE PANEL -->
|
||||||
|
|
||||||
<div id="main" [ngClass]="{'boxed':fuseConfig.layout.width === 'boxed'}">
|
<div id="main" [ngClass]="{'boxed':fuseConfig.layout.width === 'boxed'}">
|
||||||
|
|
||||||
<!-- TOOLBAR: Above -->
|
<!-- TOOLBAR: Above -->
|
||||||
|
@ -67,6 +81,20 @@
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<!-- SIDE PANEL -->
|
||||||
|
<ng-container *ngIf="!fuseConfig.layout.sidepanel.hidden && fuseConfig.layout.sidepanel.position === 'right'">
|
||||||
|
|
||||||
|
<!-- CHAT PANEL -->
|
||||||
|
<fuse-sidebar name="chatPanel" position="right" class="chat-panel right-chat-panel"
|
||||||
|
[folded]="true" [foldedWidth]="70" [foldedAutoTriggerOnHover]="false"
|
||||||
|
lockedOpen="gt-md">
|
||||||
|
<chat-panel></chat-panel>
|
||||||
|
</fuse-sidebar>
|
||||||
|
<!-- / CHAT PANEL -->
|
||||||
|
|
||||||
|
</ng-container>
|
||||||
|
<!-- / SIDE PANEL -->
|
||||||
|
|
||||||
<!-- QUICK PANEL -->
|
<!-- QUICK PANEL -->
|
||||||
<fuse-sidebar name="quickPanel" position="right" class="quick-panel">
|
<fuse-sidebar name="quickPanel" position="right" class="quick-panel">
|
||||||
<quick-panel></quick-panel>
|
<quick-panel></quick-panel>
|
||||||
|
|
|
@ -1,3 +1,17 @@
|
||||||
|
<!-- SIDE PANEL -->
|
||||||
|
<ng-container *ngIf="!fuseConfig.layout.sidepanel.hidden && fuseConfig.layout.sidepanel.position === 'left'">
|
||||||
|
|
||||||
|
<!-- CHAT PANEL -->
|
||||||
|
<fuse-sidebar name="chatPanel" position="left" class="chat-panel left-chat-panel"
|
||||||
|
[folded]="true" [foldedWidth]="70" [foldedAutoTriggerOnHover]="false"
|
||||||
|
lockedOpen="gt-md">
|
||||||
|
<chat-panel></chat-panel>
|
||||||
|
</fuse-sidebar>
|
||||||
|
<!-- / CHAT PANEL -->
|
||||||
|
|
||||||
|
</ng-container>
|
||||||
|
<!-- / SIDE PANEL -->
|
||||||
|
|
||||||
<div id="main" [ngClass]="{'boxed':fuseConfig.layout.width === 'boxed'}">
|
<div id="main" [ngClass]="{'boxed':fuseConfig.layout.width === 'boxed'}">
|
||||||
|
|
||||||
<!-- TOOLBAR: Above fixed -->
|
<!-- TOOLBAR: Above fixed -->
|
||||||
|
@ -67,6 +81,20 @@
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<!-- SIDE PANEL -->
|
||||||
|
<ng-container *ngIf="!fuseConfig.layout.sidepanel.hidden && fuseConfig.layout.sidepanel.position === 'right'">
|
||||||
|
|
||||||
|
<!-- CHAT PANEL -->
|
||||||
|
<fuse-sidebar name="chatPanel" position="right" class="chat-panel right-chat-panel"
|
||||||
|
[folded]="true" [foldedWidth]="70" [foldedAutoTriggerOnHover]="false"
|
||||||
|
lockedOpen="gt-md">
|
||||||
|
<chat-panel></chat-panel>
|
||||||
|
</fuse-sidebar>
|
||||||
|
<!-- / CHAT PANEL -->
|
||||||
|
|
||||||
|
</ng-container>
|
||||||
|
<!-- / SIDE PANEL -->
|
||||||
|
|
||||||
<!-- QUICK PANEL -->
|
<!-- QUICK PANEL -->
|
||||||
<fuse-sidebar name="quickPanel" position="right" class="quick-panel">
|
<fuse-sidebar name="quickPanel" position="right" class="quick-panel">
|
||||||
<quick-panel></quick-panel>
|
<quick-panel></quick-panel>
|
||||||
|
|
|
@ -1,3 +1,17 @@
|
||||||
|
<!-- SIDE PANEL -->
|
||||||
|
<ng-container *ngIf="!fuseConfig.layout.sidepanel.hidden && fuseConfig.layout.sidepanel.position === 'left'">
|
||||||
|
|
||||||
|
<!-- CHAT PANEL -->
|
||||||
|
<fuse-sidebar name="chatPanel" position="left" class="chat-panel left-chat-panel"
|
||||||
|
[folded]="true" [foldedWidth]="70" [foldedAutoTriggerOnHover]="false"
|
||||||
|
lockedOpen="gt-md">
|
||||||
|
<chat-panel></chat-panel>
|
||||||
|
</fuse-sidebar>
|
||||||
|
<!-- / CHAT PANEL -->
|
||||||
|
|
||||||
|
</ng-container>
|
||||||
|
<!-- / SIDE PANEL -->
|
||||||
|
|
||||||
<div id="main" [ngClass]="{'boxed':fuseConfig.layout.width === 'boxed'}">
|
<div id="main" [ngClass]="{'boxed':fuseConfig.layout.width === 'boxed'}">
|
||||||
|
|
||||||
<!-- TOOLBAR: Above fixed -->
|
<!-- TOOLBAR: Above fixed -->
|
||||||
|
@ -53,6 +67,20 @@
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<!-- SIDE PANEL -->
|
||||||
|
<ng-container *ngIf="!fuseConfig.layout.sidepanel.hidden && fuseConfig.layout.sidepanel.position === 'right'">
|
||||||
|
|
||||||
|
<!-- CHAT PANEL -->
|
||||||
|
<fuse-sidebar name="chatPanel" position="right" class="chat-panel right-chat-panel"
|
||||||
|
[folded]="true" [foldedWidth]="70" [foldedAutoTriggerOnHover]="false"
|
||||||
|
lockedOpen="gt-md">
|
||||||
|
<chat-panel></chat-panel>
|
||||||
|
</fuse-sidebar>
|
||||||
|
<!-- / CHAT PANEL -->
|
||||||
|
|
||||||
|
</ng-container>
|
||||||
|
<!-- / SIDE PANEL -->
|
||||||
|
|
||||||
<!-- QUICK PANEL -->
|
<!-- QUICK PANEL -->
|
||||||
<fuse-sidebar name="quickPanel" position="right" class="quick-panel">
|
<fuse-sidebar name="quickPanel" position="right" class="quick-panel">
|
||||||
<quick-panel></quick-panel>
|
<quick-panel></quick-panel>
|
||||||
|
|
Loading…
Reference in New Issue
Block a user