-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add fleet management grid sample (#10)
- Loading branch information
1 parent
80fb7d8
commit 71cbe5d
Showing
202 changed files
with
12,363 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
legacy-peer-deps=true |
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,59 @@ | ||
# MasterDetailGrid | ||
|
||
This project was generated using [Angular CLI](https://github.com/angular/angular-cli) version 19.0.3. | ||
|
||
## Development server | ||
|
||
To start a local development server, run: | ||
|
||
```bash | ||
ng serve | ||
``` | ||
|
||
Once the server is running, open your browser and navigate to `http://localhost:4200/`. The application will automatically reload whenever you modify any of the source files. | ||
|
||
## Code scaffolding | ||
|
||
Angular CLI includes powerful code scaffolding tools. To generate a new component, run: | ||
|
||
```bash | ||
ng generate component component-name | ||
``` | ||
|
||
For a complete list of available schematics (such as `components`, `directives`, or `pipes`), run: | ||
|
||
```bash | ||
ng generate --help | ||
``` | ||
|
||
## Building | ||
|
||
To build the project run: | ||
|
||
```bash | ||
ng build | ||
``` | ||
|
||
This will compile your project and store the build artifacts in the `dist/` directory. By default, the production build optimizes your application for performance and speed. | ||
|
||
## Running unit tests | ||
|
||
To execute unit tests with the [Karma](https://karma-runner.github.io) test runner, use the following command: | ||
|
||
```bash | ||
ng test | ||
``` | ||
|
||
## Running end-to-end tests | ||
|
||
For end-to-end (e2e) testing, run: | ||
|
||
```bash | ||
ng e2e | ||
``` | ||
|
||
Angular CLI does not come with an end-to-end testing framework by default. You can choose one that suits your needs. | ||
|
||
## Additional Resources | ||
|
||
For more information on using the Angular CLI, including detailed command references, visit the [Angular CLI Overview and Command Reference](https://angular.dev/tools/cli) page. |
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,108 @@ | ||
{ | ||
"$schema": "./node_modules/@angular/cli/lib/config/schema.json", | ||
"version": 1, | ||
"newProjectRoot": "projects", | ||
"projects": { | ||
"master-detail-grid": { | ||
"projectType": "application", | ||
"schematics": { | ||
"@schematics/angular:component": { | ||
"style": "scss" | ||
} | ||
}, | ||
"root": "", | ||
"sourceRoot": "src", | ||
"prefix": "app", | ||
"architect": { | ||
"build": { | ||
"builder": "@angular-devkit/build-angular:application", | ||
"options": { | ||
"outputPath": "dist/master-detail-grid", | ||
"index": "src/index.html", | ||
"browser": "src/main.ts", | ||
"polyfills": [ | ||
"zone.js" | ||
], | ||
"tsConfig": "tsconfig.app.json", | ||
"inlineStyleLanguage": "scss", | ||
"assets": [ | ||
{ | ||
"glob": "**/*", | ||
"input": "public" | ||
} | ||
], | ||
"styles": [ | ||
"src/styles.scss" | ||
], | ||
"stylePreprocessorOptions": { | ||
"includePaths": ["node_modules"] | ||
}, | ||
"scripts": [] | ||
}, | ||
"configurations": { | ||
"production": { | ||
"budgets": [ | ||
{ | ||
"type": "initial", | ||
"maximumWarning": "500kB", | ||
"maximumError": "1MB" | ||
}, | ||
{ | ||
"type": "anyComponentStyle", | ||
"maximumWarning": "4kB", | ||
"maximumError": "8kB" | ||
} | ||
], | ||
"outputHashing": "all" | ||
}, | ||
"development": { | ||
"optimization": false, | ||
"extractLicenses": false, | ||
"sourceMap": true | ||
} | ||
}, | ||
"defaultConfiguration": "production" | ||
}, | ||
"serve": { | ||
"builder": "@angular-devkit/build-angular:dev-server", | ||
"configurations": { | ||
"production": { | ||
"buildTarget": "master-detail-grid:build:production" | ||
}, | ||
"development": { | ||
"buildTarget": "master-detail-grid:build:development" | ||
} | ||
}, | ||
"defaultConfiguration": "development" | ||
}, | ||
"extract-i18n": { | ||
"builder": "@angular-devkit/build-angular:extract-i18n" | ||
}, | ||
"test": { | ||
"builder": "@angular-devkit/build-angular:karma", | ||
"options": { | ||
"polyfills": [ | ||
"zone.js", | ||
"zone.js/testing" | ||
], | ||
"tsConfig": "tsconfig.spec.json", | ||
"inlineStyleLanguage": "scss", | ||
"assets": [ | ||
{ | ||
"glob": "**/*", | ||
"input": "public" | ||
} | ||
], | ||
"styles": [ | ||
"src/styles.scss" | ||
], | ||
"scripts": [] | ||
} | ||
} | ||
} | ||
} | ||
}, | ||
"cli": { | ||
"analytics": false | ||
} | ||
} |
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,44 @@ | ||
{ | ||
"name": "master-detail-grid", | ||
"homepage": "https://github.com/IgniteUI/grid-demos/tree/master/projects/fleet-management-grid", | ||
"version": "1.0.0", | ||
"scripts": { | ||
"ng": "ng", | ||
"start": "ng serve", | ||
"build": "ng build", | ||
"watch": "ng build --watch --configuration development", | ||
"test": "ng test" | ||
}, | ||
"private": true, | ||
"dependencies": { | ||
"@angular/animations": "^19.0.0", | ||
"@angular/common": "^19.0.0", | ||
"@angular/compiler": "^19.0.0", | ||
"@angular/core": "^19.0.0", | ||
"@angular/forms": "^19.0.0", | ||
"@angular/platform-browser": "^19.0.0", | ||
"@angular/platform-browser-dynamic": "^19.0.0", | ||
"@angular/router": "^19.0.0", | ||
"@igniteui/material-icons-extended": "^3.1.0", | ||
"igniteui-angular": "^19.0.1", | ||
"igniteui-angular-charts": "^18.2.0", | ||
"igniteui-angular-core": "^18.2.0", | ||
"igniteui-angular-maps": "^18.2.0", | ||
"rxjs": "~7.8.0", | ||
"tslib": "^2.3.0", | ||
"zone.js": "~0.15.0" | ||
}, | ||
"devDependencies": { | ||
"@angular-devkit/build-angular": "^19.0.3", | ||
"@angular/cli": "^19.0.3", | ||
"@angular/compiler-cli": "^19.0.0", | ||
"@types/jasmine": "~5.1.0", | ||
"jasmine-core": "~5.4.0", | ||
"karma": "~6.4.0", | ||
"karma-chrome-launcher": "~3.2.0", | ||
"karma-coverage": "~2.2.0", | ||
"karma-jasmine": "~5.1.0", | ||
"karma-jasmine-html-reporter": "~2.1.0", | ||
"typescript": "~5.6.2" | ||
} | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+99.6 KB
...blic/cars/photos/Ford F-150 blue/Ford-F150-caleb-white-XGJBSkoqX_I-unsplash.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+121 KB
...lic/cars/photos/Ford F-150 blue/Ford-F150-caleb-white-XGJBSkoqX_I-unsplash1.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+121 KB
...lic/cars/photos/Ford F-150 blue/Ford-F150-caleb-white-XGJBSkoqX_I-unsplash2.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+119 KB
...et-management-grid/public/cars/photos/Ford F-150 red/Ford-f150-7572360_1920.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+120 KB
...t-management-grid/public/cars/photos/Ford F-150 red/Ford-f150-7572360_19201.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+146 KB
...t-management-grid/public/cars/photos/Ford F-150 red/Ford-f150-7572360_19202.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+104 KB
...-management-grid/public/cars/photos/Ford Focus blue/ford-focus-5167838_1280.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+94.6 KB
...management-grid/public/cars/photos/Ford Focus blue/ford-focus-5167838_12801.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+93.2 KB
...management-grid/public/cars/photos/Ford Focus blue/ford-focus-5167838_12802.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+112 KB
...rid/public/cars/photos/Ford Focus dark gray/1-1-Ford-Focus-car-3300587_1280.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+114 KB
...rid/public/cars/photos/Ford Focus dark gray/1-2-Ford-Focus-car-3300588_1280.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+114 KB
...rid/public/cars/photos/Ford Focus dark gray/1-3-Ford-Focus-car-3300587_1280.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+181 KB
...d/public/cars/photos/Ford Mustang blue/Ford-Mustang-automobile-1450573_1920.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+138 KB
.../public/cars/photos/Ford Mustang blue/Ford-Mustang-automobile-1450573_19201.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+141 KB
.../public/cars/photos/Ford Mustang blue/Ford-Mustang-automobile-1450573_19202.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+276 KB
...d/public/cars/photos/Ford Mustang red/Ford-Mustang-convertible-1630448_1920.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+182 KB
.../public/cars/photos/Ford Mustang red/Ford-Mustang-convertible-1630448_19201.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+194 KB
.../public/cars/photos/Ford Mustang red/Ford-Mustang-convertible-1630448_19202.jpg
Oops, something went wrong.
Binary file added
BIN
+196 KB
...eet-management-grid/public/cars/photos/Honda Civic/honda-civic-4967605_1920.jpg
Oops, something went wrong.
Binary file added
BIN
+200 KB
...et-management-grid/public/cars/photos/Honda Civic/honda-civic-4967605_19201.jpg
Oops, something went wrong.
Binary file added
BIN
+189 KB
...et-management-grid/public/cars/photos/Honda Civic/honda-civic-4967605_19202.jpg
Oops, something went wrong.
Binary file added
BIN
+112 KB
...ent-grid/public/cars/photos/Hyundai Kona/Hyundai-Kona-electric-4964667_1920.jpg
Oops, something went wrong.
Binary file added
BIN
+106 KB
...nt-grid/public/cars/photos/Hyundai Kona/Hyundai-Kona-electric-4964667_19201.jpg
Oops, something went wrong.
Binary file added
BIN
+92.9 KB
...nt-grid/public/cars/photos/Hyundai Kona/Hyundai-Kona-electric-4964667_19202.jpg
Oops, something went wrong.
Binary file added
BIN
+161 KB
...t-management-grid/public/cars/photos/Hyundai ix35/Hyundai-ix35-5505817_1920.jpg
Oops, something went wrong.
Binary file added
BIN
+140 KB
...-management-grid/public/cars/photos/Hyundai ix35/Hyundai-ix35-5505817_19201.jpg
Oops, something went wrong.
Binary file added
BIN
+169 KB
...-management-grid/public/cars/photos/Hyundai ix35/Hyundai-ix35-5505817_19202.jpg
Oops, something went wrong.
Binary file added
BIN
+118 KB
...t-management-grid/public/cars/photos/Kia Ceed red/Kia-Ceed-car-3305685_1280.jpg
Oops, something went wrong.
Binary file added
BIN
+111 KB
...t-management-grid/public/cars/photos/Kia Ceed red/Kia-Ceed-car-3305699_1280.jpg
Oops, something went wrong.
Binary file added
BIN
+113 KB
...t-management-grid/public/cars/photos/Kia Ceed red/Kia-ceed-car-3305686_1920.jpg
Oops, something went wrong.
Binary file added
BIN
+136 KB
...management-grid/public/cars/photos/Kia Ceed white/Kia-Ceed-car-6097887_1920.jpg
Oops, something went wrong.
Binary file added
BIN
+142 KB
...anagement-grid/public/cars/photos/Kia Ceed white/Kia-Ceed-car-6097887_19201.jpg
Oops, something went wrong.
Binary file added
BIN
+148 KB
...anagement-grid/public/cars/photos/Kia Ceed white/Kia-Ceed-car-6097887_19202.jpg
Oops, something went wrong.
Binary file added
BIN
+140 KB
...T/KIA-EV6-GT-line (edited) hyundai-motor-group-ErBFxMkJpKk-unsplash-detail1.jpg
Oops, something went wrong.
Binary file added
BIN
+156 KB
...ia EV6 GT/KIA-EV6-GT-line (edited) hyundai-motor-group-ErBFxMkJpKk-unsplash.jpg
Oops, something went wrong.
Binary file added
BIN
+118 KB
...a EV6 GT/KIA-EV6-GT-line (edited) hyundai-motor-group-ErBFxMkJpKk-unsplash2.jpg
Oops, something went wrong.
Binary file added
BIN
+138 KB
...c/cars/photos/Kia EV6 gray/KIA-EV6-hyundai-motor-group-gKODwMitO-c-unsplash.jpg
Oops, something went wrong.
Binary file added
BIN
+110 KB
.../cars/photos/Kia EV6 gray/KIA-EV6-hyundai-motor-group-gKODwMitO-c-unsplash1.jpg
Oops, something went wrong.
Binary file added
BIN
+120 KB
.../cars/photos/Kia EV6 gray/KIA-EV6-hyundai-motor-group-gKODwMitO-c-unsplash2.jpg
Oops, something went wrong.
Binary file added
BIN
+144 KB
...ic/cars/photos/Kia EV6 red/KIA-EV6-hyundai-motor-group-jdjzmbw4GPg-unsplash.jpg
Oops, something went wrong.
Binary file added
BIN
+230 KB
...c/cars/photos/Kia EV6 red/KIA-EV6-hyundai-motor-group-jdjzmbw4GPg-unsplash1.jpg
Oops, something went wrong.
Binary file added
BIN
+119 KB
...c/cars/photos/Kia EV6 red/KIA-EV6-hyundai-motor-group-jdjzmbw4GPg-unsplash2.jpg
Oops, something went wrong.
Binary file added
BIN
+148 KB
...fleet-management-grid/public/cars/photos/Kia Soul/Kia-Soul-car-2441815_1920.jpg
Oops, something went wrong.
Binary file added
BIN
+110 KB
...leet-management-grid/public/cars/photos/Kia Soul/Kia-Soul-car-2441815_19201.jpg
Oops, something went wrong.
Binary file added
BIN
+118 KB
...leet-management-grid/public/cars/photos/Kia Soul/Kia-Soul-car-2441815_19202.jpg
Oops, something went wrong.
Binary file added
BIN
+221 KB
...t-management-grid/public/cars/photos/Kia Sportage/Kia-Sportage-2382086_1920.jpg
Oops, something went wrong.
Binary file added
BIN
+169 KB
...-management-grid/public/cars/photos/Kia Sportage/Kia-Sportage-2382086_19201.jpg
Oops, something went wrong.
Binary file added
BIN
+211 KB
...-management-grid/public/cars/photos/Kia Sportage/Kia-Sportage-2382086_19202.jpg
Oops, something went wrong.
Binary file added
BIN
+122 KB
projects/fleet-management-grid/public/cars/photos/Mazda 3/mazda-3-7498005_1920.jpg
Oops, something went wrong.
Binary file added
BIN
+87.2 KB
...ects/fleet-management-grid/public/cars/photos/Mazda 3/mazda-3-7498005_19201.jpg
Oops, something went wrong.
Binary file added
BIN
+95.6 KB
...ects/fleet-management-grid/public/cars/photos/Mazda 3/mazda-3-7498005_19202.jpg
Oops, something went wrong.
Binary file added
BIN
+96.5 KB
...eet-management-grid/public/cars/photos/Mazda 6/3-1-Mazda-6-car-6122178_1920.jpg
Oops, something went wrong.
Binary file added
BIN
+97.9 KB
...eet-management-grid/public/cars/photos/Mazda 6/3-2-Mazda-6-car-6122177_1920.jpg
Oops, something went wrong.
Binary file added
BIN
+83.9 KB
...eet-management-grid/public/cars/photos/Mazda 6/3-3-Mazda-6-car-6122177_1920.jpg
Oops, something went wrong.
Binary file added
BIN
+177 KB
...nt-grid/public/cars/photos/Mazda MX-5/2-1-Mazda-MX-5-cabriolet-3627312_1920.jpg
Oops, something went wrong.
Binary file added
BIN
+208 KB
...nt-grid/public/cars/photos/Mazda MX-5/2-2-Mazda-MX-5-cabriolet-3708152_1920.jpg
Oops, something went wrong.
Binary file added
BIN
+146 KB
...nt-grid/public/cars/photos/Mazda MX-5/2-3-Mazda-MX-5-cabriolet-3708152_1920.jpg
Oops, something went wrong.
Binary file added
BIN
+84.7 KB
...eet-management-grid/public/cars/photos/Tesla 3 red/Tesla-3-car-8607713_1920.jpg
Oops, something went wrong.
Binary file added
BIN
+108 KB
...et-management-grid/public/cars/photos/Tesla 3 red/Tesla-3-car-8607713_19201.jpg
Oops, something went wrong.
Binary file added
BIN
+115 KB
...et-management-grid/public/cars/photos/Tesla 3 red/Tesla-3-car-8607713_19202.jpg
Oops, something went wrong.
Binary file added
BIN
+156 KB
...eet-management-grid/public/cars/photos/Tesla 3 white 1/tesla-3-5937063_1920.jpg
Oops, something went wrong.
Binary file added
BIN
+139 KB
...et-management-grid/public/cars/photos/Tesla 3 white 1/tesla-3-5937063_19201.jpg
Oops, something went wrong.
Binary file added
BIN
+139 KB
...et-management-grid/public/cars/photos/Tesla 3 white 1/tesla-3-5937063_19202.jpg
Oops, something went wrong.
Binary file added
BIN
+120 KB
...blic/cars/photos/Tesla 3 white 2/Tesla-3-charlie-deets-AkgALppFIwo-unsplash.jpg
Oops, something went wrong.
Binary file added
BIN
+125 KB
...lic/cars/photos/Tesla 3 white 2/Tesla-3-charlie-deets-AkgALppFIwo-unsplash1.jpg
Oops, something went wrong.
Binary file added
BIN
+128 KB
...lic/cars/photos/Tesla 3 white 2/Tesla-3-charlie-deets-AkgALppFIwo-unsplash2.jpg
Oops, something went wrong.
Binary file added
BIN
+127 KB
...id/public/cars/photos/Tesla 3 white 3/Tesla-3-i-m-zion-A-JEMot0hWs-unsplash.jpg
Oops, something went wrong.
Binary file added
BIN
+105 KB
...d/public/cars/photos/Tesla 3 white 3/Tesla-3-i-m-zion-A-JEMot0hWs-unsplash1.jpg
Oops, something went wrong.
Binary file added
BIN
+112 KB
...d/public/cars/photos/Tesla 3 white 3/Tesla-3-i-m-zion-A-JEMot0hWs-unsplash2.jpg
Oops, something went wrong.
Binary file added
BIN
+143 KB
...anagement-grid/public/cars/photos/Toyota Corolla/toyota-corolla-347288_1920.jpg
Oops, something went wrong.
Binary file added
BIN
+115 KB
...nagement-grid/public/cars/photos/Toyota Corolla/toyota-corolla-347288_19201.jpg
Oops, something went wrong.
Binary file added
BIN
+124 KB
...nagement-grid/public/cars/photos/Toyota Corolla/toyota-corolla-347288_19202.jpg
Oops, something went wrong.
Binary file added
BIN
+175 KB
...yota RAV4 1/Toyota-RAV4-gino-marcelo-hernandez-sanchez-MN0-x2hDNrc-unsplash.jpg
Oops, something went wrong.
Binary file added
BIN
+160 KB
...ota RAV4 1/Toyota-RAV4-gino-marcelo-hernandez-sanchez-MN0-x2hDNrc-unsplash1.jpg
Oops, something went wrong.
Binary file added
BIN
+268 KB
...ota RAV4 1/Toyota-RAV4-gino-marcelo-hernandez-sanchez-MN0-x2hDNrc-unsplash2.jpg
Oops, something went wrong.
Binary file added
BIN
+133 KB
...lic/cars/photos/Toyota RAV4 2/Toyota-RAV4-krish-parmar-PmSwFm4Lw1c-unsplash.jpg
Oops, something went wrong.
Binary file added
BIN
+141 KB
...ic/cars/photos/Toyota RAV4 2/Toyota-RAV4-krish-parmar-PmSwFm4Lw1c-unsplash1.jpg
Oops, something went wrong.
Binary file added
BIN
+127 KB
...ic/cars/photos/Toyota RAV4 2/Toyota-RAV4-krish-parmar-PmSwFm4Lw1c-unsplash2.jpg
Oops, something went wrong.
Binary file added
BIN
+147 KB
.../cars/photos/Toyota RAV4 3/Toyota-RAV4-stephen-andrews-28Lmg9YaTFY-unsplash.jpg
Oops, something went wrong.
Binary file added
BIN
+147 KB
...cars/photos/Toyota RAV4 3/Toyota-RAV4-stephen-andrews-28Lmg9YaTFY-unsplash1.jpg
Oops, something went wrong.
Binary file added
BIN
+125 KB
...cars/photos/Toyota RAV4 3/Toyota-RAV4-stephen-andrews-28Lmg9YaTFY-unsplash2.jpg
Oops, something went wrong.
Binary file added
BIN
+118 KB
...management-grid/public/cars/photos/Toyota Tundra/toyota-tundra-1241658_1920.jpg
Oops, something went wrong.
Binary file added
BIN
+144 KB
...anagement-grid/public/cars/photos/Toyota Tundra/toyota-tundra-1241658_19201.jpg
Oops, something went wrong.
Binary file added
BIN
+128 KB
...anagement-grid/public/cars/photos/Toyota Tundra/toyota-tundra-1241658_19202.jpg
Oops, something went wrong.
Binary file added
BIN
+106 KB
...rid/public/cars/photos/VW Caddy 1/VW_Caddy-ollie-walls-jDo2IZm-uFc-unsplash.jpg
Oops, something went wrong.
Binary file added
BIN
+123 KB
...id/public/cars/photos/VW Caddy 1/VW_Caddy-ollie-walls-jDo2IZm-uFc-unsplash1.jpg
Oops, something went wrong.
Binary file added
BIN
+120 KB
...id/public/cars/photos/VW Caddy 1/VW_Caddy-ollie-walls-jDo2IZm-uFc-unsplash2.jpg
Oops, something went wrong.
Binary file added
BIN
+137 KB
...public/cars/photos/VW Caddy 2/VW-Caddy-daniil-lyusov-fesux3IvcVo-unsplash-2.jpg
Oops, something went wrong.
Binary file added
BIN
+92.4 KB
...ublic/cars/photos/VW Caddy 2/VW-Caddy-daniil-lyusov-fesux3IvcVo-unsplash-21.jpg
Oops, something went wrong.
Binary file added
BIN
+112 KB
...ublic/cars/photos/VW Caddy 2/VW-Caddy-daniil-lyusov-fesux3IvcVo-unsplash-22.jpg
Oops, something went wrong.
Binary file added
BIN
+73 KB
...s/fleet-management-grid/public/cars/photos/VW Golf/VW-Golf-car-5671331_1280.jpg
Oops, something went wrong.
Binary file added
BIN
+156 KB
projects/fleet-management-grid/public/cars/photos/VW Golf/vw-Golf-4332807_1280.jpg
Oops, something went wrong.
Binary file added
BIN
+115 KB
...ects/fleet-management-grid/public/cars/photos/VW Golf/vw-Golf-4332807_12801.jpg
Oops, something went wrong.
Binary file added
BIN
+127 KB
...et-management-grid/public/cars/photos/VW Passat black/VW-passat-768159_1280.jpg
Oops, something went wrong.
Binary file added
BIN
+269 KB
...t-management-grid/public/cars/photos/VW Passat black/VW-passat-768159_12801.jpg
Oops, something went wrong.
Binary file added
BIN
+297 KB
...t-management-grid/public/cars/photos/VW Passat black/VW-passat-768159_12802.jpg
Oops, something went wrong.
Binary file added
BIN
+137 KB
...management-grid/public/cars/photos/VW Passat gray/VW-Passat-car-866764_1280.jpg
Oops, something went wrong.
Binary file added
BIN
+197 KB
...management-grid/public/cars/photos/VW Passat gray/VW-Passat-car-866769_1280.jpg
Oops, something went wrong.
Binary file added
BIN
+175 KB
...anagement-grid/public/cars/photos/VW Passat gray/VW-Passat-car-866769_12801.jpg
Oops, something went wrong.
Binary file added
BIN
+112 KB
...nt-grid/public/cars/photos/VW Polo/VW-Polo-pexels-hellojoshwithers-16625624.jpg
Oops, something went wrong.
Binary file added
BIN
+108 KB
...t-grid/public/cars/photos/VW Polo/VW-Polo-pexels-hellojoshwithers-166256241.jpg
Oops, something went wrong.
Binary file added
BIN
+80 KB
...t-grid/public/cars/photos/VW Polo/VW-Polo-pexels-hellojoshwithers-166256242.jpg
Oops, something went wrong.
Binary file added
BIN
+174 KB
...grid/public/cars/photos/VW Touareg 1/4-1-VW-Touareg-automobile-4061855_1920.jpg
Oops, something went wrong.
Binary file added
BIN
+135 KB
...-management-grid/public/cars/photos/VW Touareg 1/4-2-VW-Touareg-338895_1920.jpg
Oops, something went wrong.
Binary file added
BIN
+193 KB
...grid/public/cars/photos/VW Touareg 1/4-3-VW-Touareg-automobile-4061855_1920.jpg
Oops, something went wrong.
Binary file added
BIN
+109 KB
...s/photos/VW Touareg 2/5-1-VW-Touareg-pexels-ardit-mbrati-216809103-16646414.jpg
Oops, something went wrong.
Binary file added
BIN
+128 KB
...s/photos/VW Touareg 2/5-2-VW-Touareg-pexels-ardit-mbrati-216809103-16646416.jpg
Oops, something went wrong.
Binary file added
BIN
+121 KB
...s/photos/VW Touareg 2/5-3-VW-Touareg-pexels-ardit-mbrati-216809103-16646412.jpg
Oops, something went wrong.
Binary file not shown.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
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 @@ | ||
<app-fleet-management-grid></app-fleet-management-grid> |
Empty file.
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,12 @@ | ||
import { Component } from '@angular/core'; | ||
import { FleetManagementGridComponent } from "./fleet-management-grid/fleet-management-grid.component"; | ||
|
||
@Component({ | ||
selector: 'app-root', | ||
imports: [ FleetManagementGridComponent], | ||
templateUrl: './app.component.html', | ||
styleUrl: './app.component.scss' | ||
}) | ||
export class AppComponent { | ||
title = 'master-detail-grid'; | ||
} |
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,15 @@ | ||
import { ApplicationConfig, provideZoneChangeDetection } from '@angular/core'; | ||
import { provideRouter } from '@angular/router'; | ||
|
||
import { routes } from './app.routes'; | ||
import { provideClientHydration, withEventReplay } from '@angular/platform-browser'; | ||
import { provideAnimations } from '@angular/platform-browser/animations'; | ||
|
||
export const appConfig: ApplicationConfig = { | ||
providers: [ | ||
provideZoneChangeDetection({ eventCoalescing: true }), | ||
provideRouter(routes), | ||
provideClientHydration(withEventReplay()), | ||
provideAnimations() | ||
] | ||
}; |
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,3 @@ | ||
import { Routes } from '@angular/router'; | ||
|
||
export const routes: Routes = []; |
Oops, something went wrong.