diff --git a/src/app/_modules/auth/login/login.component.html b/src/app/_modules/auth/login/login.component.html index 482cb7b..2a114a0 100644 --- a/src/app/_modules/auth/login/login.component.html +++ b/src/app/_modules/auth/login/login.component.html @@ -24,7 +24,7 @@ diff --git a/src/app/_modules/form-fields/types/date/form-field-date.component.spec.ts b/src/app/_modules/form-fields/types/date/form-field-date.component.spec.ts new file mode 100644 index 0000000..56a044e --- /dev/null +++ b/src/app/_modules/form-fields/types/date/form-field-date.component.spec.ts @@ -0,0 +1,10 @@ +import { Injectable } from "@angular/core"; +import { NativeDateAdapter } from "@angular/material/core"; + +@Injectable() export class FormDateAdapter extends NativeDateAdapter{ + getFirstDayOfWeek(): number { + return 1; + } +} + +export const DATE_FORMAT = {} \ No newline at end of file diff --git a/src/app/_modules/form-fields/types/date/form-field-date.module.ts b/src/app/_modules/form-fields/types/date/form-field-date.module.ts index 2b1847e..90c3d8b 100644 --- a/src/app/_modules/form-fields/types/date/form-field-date.module.ts +++ b/src/app/_modules/form-fields/types/date/form-field-date.module.ts @@ -10,6 +10,8 @@ import {MatFormFieldModule} from "@angular/material/form-field"; import {MatNativeDateModule} from "@angular/material/core"; import {MatInputModule} from "@angular/material/input"; import {NoopAnimationsModule} from "@angular/platform-browser/animations"; +import { DateAdapter } from '@angular/material/core'; +import { FormDateAdapter } from './form-field-date.component.spec'; @NgModule({ imports: [ @@ -31,7 +33,8 @@ import {NoopAnimationsModule} from "@angular/platform-browser/animations"; FieldDateSingleComponent ], providers: [ - DatePipe + DatePipe, + { provide: DateAdapter, useClass: FormDateAdapter } ] }) export class FormFieldDateModule {} diff --git a/src/app/_modules/form-fields/types/document/form-field-document.component.scss b/src/app/_modules/form-fields/types/document/form-field-document.component.scss index ce62dc3..48eab06 100644 --- a/src/app/_modules/form-fields/types/document/form-field-document.component.scss +++ b/src/app/_modules/form-fields/types/document/form-field-document.component.scss @@ -55,7 +55,7 @@ .values { .item { - background: transparent url('~src/assets/images/icons/document_pdf_60dp.svg') 0 0 no-repeat; + background: transparent url('~src/assets/images/icons/document/document_pdf_60dp.svg') 0 0 no-repeat; min-height: 60px; padding-left: 72px; font-size: 20px; diff --git a/src/app/_modules/layout/footer/footer.component.html b/src/app/_modules/layout/footer/footer.component.html index 191018b..d2484c7 100644 --- a/src/app/_modules/layout/footer/footer.component.html +++ b/src/app/_modules/layout/footer/footer.component.html @@ -24,27 +24,27 @@