Compare commits
No commits in common. "698375b1bf36bb203efe247a4c2e83619f8441de" and "270782cb78601dc3ca40a7d188232515b1bdddbf" have entirely different histories.
698375b1bf
...
270782cb78
@ -1 +1 @@
|
||||
flake-profile-4-link
|
||||
flake-profile-2-link
|
@ -1 +0,0 @@
|
||||
/nix/store/rsadgr5y0wa25gvk7j7zcml5pf9ym3h5-nix-shell-env
|
@ -1 +0,0 @@
|
||||
/nix/store/amb6zvwfmy0l7yfdhrfaclcy4997fy03-nix-shell-env
|
23
devenv.nix
23
devenv.nix
@ -1,23 +0,0 @@
|
||||
{
|
||||
name = "hotel-manager";
|
||||
|
||||
inputs = {
|
||||
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
|
||||
};
|
||||
|
||||
packages = [
|
||||
pkgs.nodePackages."@angular/cli"
|
||||
pkgs.git
|
||||
pkgs.bun
|
||||
];
|
||||
|
||||
services.ng-serve = {
|
||||
description = "Angular Development Server";
|
||||
start = ''
|
||||
echo "Starting Angular server..."
|
||||
ng serve --host 0.0.0.0 --port 4200
|
||||
'';
|
||||
restartIfChanged = true;
|
||||
after = [ "network-online.target" ];
|
||||
};
|
||||
}
|
2848
package-lock.json
generated
2848
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
22
package.json
22
package.json
@ -10,22 +10,22 @@
|
||||
},
|
||||
"private": true,
|
||||
"dependencies": {
|
||||
"@angular/animations": "^18.2.3",
|
||||
"@angular/common": "^18.2.3",
|
||||
"@angular/compiler": "^18.2.3",
|
||||
"@angular/core": "^18.2.3",
|
||||
"@angular/forms": "^18.2.3",
|
||||
"@angular/platform-browser": "^18.2.3",
|
||||
"@angular/platform-browser-dynamic": "^18.2.3",
|
||||
"@angular/router": "^18.2.3",
|
||||
"@angular/animations": "^18.1.0",
|
||||
"@angular/common": "^18.1.0",
|
||||
"@angular/compiler": "^18.1.0",
|
||||
"@angular/core": "^18.1.0",
|
||||
"@angular/forms": "^18.1.0",
|
||||
"@angular/platform-browser": "^18.1.0",
|
||||
"@angular/platform-browser-dynamic": "^18.1.0",
|
||||
"@angular/router": "^18.1.0",
|
||||
"rxjs": "~7.8.0",
|
||||
"tslib": "^2.3.0",
|
||||
"zone.js": "~0.14.3"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@angular-devkit/build-angular": "^18.2.3",
|
||||
"@angular/cli": "^18.2.3",
|
||||
"@angular/compiler-cli": "^18.2.3",
|
||||
"@angular-devkit/build-angular": "^18.1.4",
|
||||
"@angular/cli": "^18.1.4",
|
||||
"@angular/compiler-cli": "^18.1.0",
|
||||
"@types/jasmine": "~5.1.0",
|
||||
"autoprefixer": "^10.4.20",
|
||||
"jasmine-core": "~5.1.0",
|
||||
|
@ -1,6 +1,4 @@
|
||||
<app-search [(input)]="search"></app-search>
|
||||
<div *ngFor="let hotel of hotels">
|
||||
@if (hotel.hotelName.includes(search)) {
|
||||
<app-hotel-item [hotel]="hotel"></app-hotel-item>
|
||||
}
|
||||
<app-hotel-item *ngIf="hotel.hotelName.includes(search)" [hotel]="hotel"></app-hotel-item>
|
||||
</div>
|
||||
|
Loading…
Reference in New Issue
Block a user