From 99eca9ce8baa3b5f0bac9c581db7000e3bb887be Mon Sep 17 00:00:00 2001 From: carteronm Date: Thu, 11 Dec 2025 17:54:55 +0100 Subject: [PATCH] last commit --- src/app/app.html | 1 + src/app/app.routes.ts | 8 +- .../contact-add-form/contact-add-form.css} | 0 .../contact-add-form/contact-add-form.html | 1 + .../contact-add-form/contact-add-form.ts | 11 +++ .../contact-get-all-form.css} | 0 .../contact-get-all-form.html | 1 + .../contact-get-all-form.ts | 11 +++ .../contact-get-all/contact-get-all.css} | 0 .../contact-get-all/contact-get-all.html | 1 + .../contact-get-all/contact-get-all.ts | 11 +++ .../contact.css} | 0 src/app/pages/contact/contact.html | 1 + src/app/pages/contact/contact.ts | 11 +++ .../customers-card-form.html | 0 .../customers-card-form.ts | 12 ++- .../customers-add-form/customers-add-form.css | 19 +++++ .../customers-add-form.html | 56 ++++--------- .../customers-add-form/customers-add-form.ts | 84 ++++++++++++++----- .../customers-card/customers-card.html | 1 - .../customers-card/customers-card.ts | 11 --- .../get-all-customers-card.html | 0 .../get-all-customers-card.ts | 2 +- .../customers-get-all/customers-get-all.html | 9 -- .../customers-get-all/customers-get-all.ts | 41 --------- src/app/pages/customers/customers.html | 12 ++- src/app/pages/customers/customers.ts | 38 +++++++-- .../providers-card/providers-card.html | 1 - .../providers-card/providers-card.ts | 12 --- .../pages/staff/staff-card/staff-card.html | 1 - src/app/pages/staff/staff-card/staff-card.ts | 11 --- src/theme.less | 65 ++++++++++++++ 32 files changed, 269 insertions(+), 163 deletions(-) rename src/app/pages/{customers/customers-card-form/customers-card-form.css => contact/contact-add-form/contact-add-form.css} (100%) create mode 100644 src/app/pages/contact/contact-add-form/contact-add-form.html create mode 100644 src/app/pages/contact/contact-add-form/contact-add-form.ts rename src/app/pages/{customers/customers-card/customers-card.css => contact/contact-get-all-form/contact-get-all-form.css} (100%) create mode 100644 src/app/pages/contact/contact-get-all-form/contact-get-all-form.html create mode 100644 src/app/pages/contact/contact-get-all-form/contact-get-all-form.ts rename src/app/pages/{customers/customers-get-all/customers-get-all.css => contact/contact-get-all/contact-get-all.css} (100%) create mode 100644 src/app/pages/contact/contact-get-all/contact-get-all.html create mode 100644 src/app/pages/contact/contact-get-all/contact-get-all.ts rename src/app/pages/{customers/get-all-customers-card/get-all-customers-card.css => contact/contact.css} (100%) create mode 100644 src/app/pages/contact/contact.html create mode 100644 src/app/pages/contact/contact.ts rename src/app/pages/customers/{customers-card-form => create-customers-modal}/customers-card-form.html (100%) rename src/app/pages/customers/{customers-card-form => create-customers-modal}/customers-card-form.ts (86%) delete mode 100644 src/app/pages/customers/customers-card/customers-card.html delete mode 100644 src/app/pages/customers/customers-card/customers-card.ts rename src/app/pages/customers/{get-all-customers-card => customers-card}/get-all-customers-card.html (100%) rename src/app/pages/customers/{get-all-customers-card => customers-card}/get-all-customers-card.ts (98%) delete mode 100644 src/app/pages/customers/customers-get-all/customers-get-all.html delete mode 100644 src/app/pages/customers/customers-get-all/customers-get-all.ts delete mode 100644 src/app/pages/providers/providers-card/providers-card.html delete mode 100644 src/app/pages/providers/providers-card/providers-card.ts delete mode 100644 src/app/pages/staff/staff-card/staff-card.html delete mode 100644 src/app/pages/staff/staff-card/staff-card.ts diff --git a/src/app/app.html b/src/app/app.html index 9ed2e07..43a740b 100644 --- a/src/app/app.html +++ b/src/app/app.html @@ -7,6 +7,7 @@