-
Notifications
You must be signed in to change notification settings - Fork 64
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
996f0db
commit c107807
Showing
29 changed files
with
3,108 additions
and
2,324 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
import { Routes } from '@angular/router'; | ||
|
||
export const APP_ROUTES: Routes = [ | ||
{ | ||
path: 'playground', | ||
loadChildren: () => import('./playground/playground.routes').then(m => m.PLAYGROUND_ROUTES), | ||
}, | ||
{ | ||
path: '', | ||
redirectTo: 'playground', | ||
pathMatch: 'full' | ||
}, | ||
{ | ||
path: 'custom-handles', | ||
loadChildren: () => import('./custom-handles/custom-handles.routes').then(m => m.CUSTOM_ROUTES), | ||
}, | ||
{ | ||
path: 'real-life-example', | ||
loadChildren: () => import('./real-life-example/real-life-example.routes').then(m => m.REAL_LIFE_ROUTES), | ||
}, | ||
{ | ||
path: 'scroll-test', | ||
loadChildren: () => import('./scroll-test/scroll-test.routes').then(m => m.SCROLL_TEST_ROUTES), | ||
}, | ||
{ | ||
path: 'row-height-fit', | ||
loadComponent: () => import('./row-height-fit/row-height-fit.component').then(m => m.KtdRowHeightFitComponent), | ||
data: {title: 'Angular Grid Layout - Row Height Fit'} | ||
}, | ||
{ | ||
path: '**', | ||
redirectTo: 'playground' | ||
}, | ||
]; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
import { ApplicationConfig, importProvidersFrom } from '@angular/core'; | ||
import { BrowserAnimationsModule } from '@angular/platform-browser/animations'; | ||
import { MAT_FORM_FIELD_DEFAULT_OPTIONS } from '@angular/material/form-field'; | ||
import { provideRouter } from '@angular/router'; | ||
import { APP_ROUTES } from './app-routing.routes'; | ||
import { provideHttpClient } from '@angular/common/http'; | ||
|
||
export const appConfig: ApplicationConfig = { | ||
providers: [ | ||
{ provide: MAT_FORM_FIELD_DEFAULT_OPTIONS, useValue: { appearance: 'outline' } }, | ||
provideRouter(APP_ROUTES), | ||
provideHttpClient(), | ||
importProvidersFrom( | ||
BrowserAnimationsModule | ||
) | ||
] | ||
}; |
This file was deleted.
Oops, something went wrong.
10 changes: 7 additions & 3 deletions
10
projects/demo-app/src/app/custom-handles/custom-handles.component.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
27 changes: 0 additions & 27 deletions
27
projects/demo-app/src/app/custom-handles/custom-handles.module.ts
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.