comment quill

This commit is contained in:
Andreas Knuth 2026-02-06 19:13:16 -06:00
parent a545b84f6c
commit dc79ac3df7
2 changed files with 8 additions and 15 deletions

View File

@ -129,26 +129,19 @@
mask="(000) 000-0000"></app-validated-input> mask="(000) 000-0000"></app-validated-input>
<app-validated-input label="Company Website" name="companyWebsite" <app-validated-input label="Company Website" name="companyWebsite"
[(ngModel)]="user.companyWebsite"></app-validated-input> [(ngModel)]="user.companyWebsite"></app-validated-input>
<!-- <app-validated-input label="Company Location" name="companyLocation" [(ngModel)]="user.companyLocation"></app-validated-input> -->
<!-- <app-validated-city label="Company Location" name="location" [(ngModel)]="user.location"></app-validated-city> -->
<app-validated-location label="Company Location" name="location" <app-validated-location label="Company Location" name="location"
[(ngModel)]="user.location"></app-validated-location> [(ngModel)]="user.location"></app-validated-location>
</div> </div>
<!-- <div>
<label for="companyOverview" class="block text-sm font-medium text-gray-700">Company Overview</label> <!-- <div>
<quill-editor [(ngModel)]="user.companyOverview" name="companyOverview" [modules]="quillModules"></quill-editor>
</div> -->
<div>
<app-validated-quill label="Company Overview" name="companyOverview" <app-validated-quill label="Company Overview" name="companyOverview"
[(ngModel)]="user.companyOverview"></app-validated-quill> [(ngModel)]="user.companyOverview"></app-validated-quill>
</div> </div>
<div> <div>
<!-- <label for="offeredServices" class="block text-sm font-medium text-gray-700">Services We Offer</label>
<quill-editor [(ngModel)]="user.offeredServices" name="offeredServices" [modules]="quillModules"></quill-editor> -->
<app-validated-quill label="Services We Offer" name="offeredServices" <app-validated-quill label="Services We Offer" name="offeredServices"
[(ngModel)]="user.offeredServices"></app-validated-quill> [(ngModel)]="user.offeredServices"></app-validated-quill>
</div> </div> -->
<div> <div>
<h3 class="text-lg font-medium text-gray-700 mb-2 relative w-fit"> <h3 class="text-lg font-medium text-gray-700 mb-2 relative w-fit">

View File

@ -34,13 +34,13 @@ import { TOOLBAR_OPTIONS } from '../../utils/defaults';
standalone: true, standalone: true,
imports: [ imports: [
SharedModule, SharedModule,
QuillModule, //QuillModule,
NgSelectModule, NgSelectModule,
ConfirmationComponent, ConfirmationComponent,
ImageCropAndUploadComponent, ImageCropAndUploadComponent,
ValidatedInputComponent, ValidatedInputComponent,
ValidatedSelectComponent, ValidatedSelectComponent,
ValidatedQuillComponent, //ValidatedQuillComponent,
TooltipComponent, TooltipComponent,
ValidatedCountyComponent, ValidatedCountyComponent,
ValidatedLocationComponent, ValidatedLocationComponent,
@ -48,7 +48,7 @@ import { TOOLBAR_OPTIONS } from '../../utils/defaults';
providers: [ providers: [
TitleCasePipe, TitleCasePipe,
DatePipe, DatePipe,
provideQuillConfig({ /* provideQuillConfig({
modules: { modules: {
syntax: true, syntax: true,
toolbar: [ toolbar: [
@ -59,12 +59,12 @@ import { TOOLBAR_OPTIONS } from '../../utils/defaults';
['clean'], ['clean'],
], ],
}, },
}) as any, }) as any, */
], ],
templateUrl: './account.component.html', templateUrl: './account.component.html',
styleUrls: [ styleUrls: [
'./account.component.scss', './account.component.scss',
'../../../../../node_modules/quill/dist/quill.snow.css' // '../../../../../node_modules/quill/dist/quill.snow.css'
], ],
}) })
export class AccountComponent { export class AccountComponent {